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.
 
 
 

65808 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. }
  2419. //species
  2420. function getSpeciesInfo(speciesList) {
  2421. let result = new Set();
  2422. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2423. result.add(entry)
  2424. });
  2425. return Array.from(result);
  2426. };
  2427. function getSpeciesInfoHelper(species) {
  2428. if (!speciesData[species]) {
  2429. console.warn(species + " doesn't exist");
  2430. return [];
  2431. }
  2432. if (speciesData[species].parents) {
  2433. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2434. } else {
  2435. return [species];
  2436. }
  2437. }
  2438. characterMakers.push(() => makeCharacter(
  2439. {
  2440. name: "Fen",
  2441. species: ["crux"],
  2442. description: {
  2443. title: "Bio",
  2444. text: "Very furry. Sheds on everything."
  2445. },
  2446. tags: [
  2447. "anthro",
  2448. "goo"
  2449. ]
  2450. },
  2451. {
  2452. front: {
  2453. height: math.unit(12, "feet"),
  2454. weight: math.unit(2400, "lb"),
  2455. preyCapacity: math.unit(1, "people"),
  2456. name: "Front",
  2457. image: {
  2458. source: "./media/characters/fen/front.svg",
  2459. extra: 1804/1562,
  2460. bottom: 205/2009
  2461. },
  2462. extraAttributes: {
  2463. pawSize: {
  2464. name: "Paw Size",
  2465. power: 2,
  2466. type: "area",
  2467. base: math.unit(0.35, "m^2")
  2468. }
  2469. }
  2470. },
  2471. diving: {
  2472. height: math.unit(4.9, "meters"),
  2473. weight: math.unit(2400, "lb"),
  2474. name: "Diving",
  2475. image: {
  2476. source: "./media/characters/fen/diving.svg"
  2477. }
  2478. },
  2479. sleeby: {
  2480. height: math.unit(3.45, "meters"),
  2481. weight: math.unit(2400, "lb"),
  2482. name: "Sleeby",
  2483. image: {
  2484. source: "./media/characters/fen/sleeby.svg"
  2485. }
  2486. },
  2487. goo: {
  2488. height: math.unit(12, "feet"),
  2489. weight: math.unit(3600, "lb"),
  2490. volume: math.unit(1000, "liters"),
  2491. preyCapacity: math.unit(6, "people"),
  2492. name: "Goo",
  2493. image: {
  2494. source: "./media/characters/fen/goo.svg",
  2495. extra: 1307/1071,
  2496. bottom: 134/1441
  2497. }
  2498. },
  2499. horror: {
  2500. height: math.unit(13.6, "feet"),
  2501. weight: math.unit(2400, "lb"),
  2502. preyCapacity: math.unit(1, "people"),
  2503. name: "Horror",
  2504. image: {
  2505. source: "./media/characters/fen/horror.svg",
  2506. extra: 893/797,
  2507. bottom: 0/893
  2508. }
  2509. },
  2510. gooNsfw: {
  2511. height: math.unit(12, "feet"),
  2512. weight: math.unit(3750, "lb"),
  2513. volume: math.unit(1000, "liters"),
  2514. preyCapacity: math.unit(6, "people"),
  2515. name: "Goo (NSFW)",
  2516. image: {
  2517. source: "./media/characters/fen/goo-nsfw.svg",
  2518. extra: 1875/1734,
  2519. bottom: 122/1997
  2520. }
  2521. },
  2522. maw: {
  2523. height: math.unit(5.03, "feet"),
  2524. name: "Maw",
  2525. image: {
  2526. source: "./media/characters/fen/maw.svg"
  2527. }
  2528. },
  2529. gooCeiling: {
  2530. height: math.unit(6.6, "feet"),
  2531. weight: math.unit(3000, "lb"),
  2532. volume: math.unit(1000, "liters"),
  2533. preyCapacity: math.unit(6, "people"),
  2534. name: "Maw (Goo)",
  2535. image: {
  2536. source: "./media/characters/fen/goo-maw.svg"
  2537. }
  2538. },
  2539. paw: {
  2540. height: math.unit(3.77, "feet"),
  2541. name: "Paw",
  2542. image: {
  2543. source: "./media/characters/fen/paw.svg"
  2544. },
  2545. extraAttributes: {
  2546. "toeSize": {
  2547. name: "Toe Size",
  2548. power: 2,
  2549. type: "area",
  2550. base: math.unit(0.02875, "m^2")
  2551. },
  2552. "pawSize": {
  2553. name: "Paw Size",
  2554. power: 2,
  2555. type: "area",
  2556. base: math.unit(0.378, "m^2")
  2557. },
  2558. }
  2559. },
  2560. tail: {
  2561. height: math.unit(12.1, "feet"),
  2562. name: "Tail",
  2563. image: {
  2564. source: "./media/characters/fen/tail.svg"
  2565. }
  2566. },
  2567. tailFull: {
  2568. height: math.unit(12.1, "feet"),
  2569. name: "Full Tail",
  2570. image: {
  2571. source: "./media/characters/fen/tail-full.svg"
  2572. }
  2573. },
  2574. back: {
  2575. height: math.unit(12, "feet"),
  2576. weight: math.unit(2400, "lb"),
  2577. name: "Back",
  2578. image: {
  2579. source: "./media/characters/fen/back.svg",
  2580. },
  2581. info: {
  2582. description: {
  2583. mode: "append",
  2584. text: "\n\nHe is not currently looking at you."
  2585. }
  2586. }
  2587. },
  2588. full: {
  2589. height: math.unit(1.85, "meter"),
  2590. weight: math.unit(3200, "lb"),
  2591. preyCapacity: math.unit(3, "people"),
  2592. name: "Full",
  2593. image: {
  2594. source: "./media/characters/fen/full.svg",
  2595. extra: 1133/859,
  2596. bottom: 145/1278
  2597. },
  2598. info: {
  2599. description: {
  2600. mode: "append",
  2601. text: "\n\nMunch."
  2602. }
  2603. }
  2604. },
  2605. gooLounging: {
  2606. height: math.unit(4.53, "feet"),
  2607. weight: math.unit(3000, "lb"),
  2608. preyCapacity: math.unit(6, "people"),
  2609. name: "Goo (Lounging)",
  2610. image: {
  2611. source: "./media/characters/fen/goo-lounging.svg",
  2612. bottom: 116 / 613
  2613. }
  2614. },
  2615. lounging: {
  2616. height: math.unit(10.52, "feet"),
  2617. weight: math.unit(2400, "lb"),
  2618. name: "Lounging",
  2619. image: {
  2620. source: "./media/characters/fen/lounging.svg"
  2621. }
  2622. },
  2623. },
  2624. [
  2625. {
  2626. name: "Small",
  2627. height: math.unit(2.2428, "meter")
  2628. },
  2629. {
  2630. name: "Normal",
  2631. height: math.unit(12, "feet"),
  2632. default: true,
  2633. },
  2634. {
  2635. name: "Big",
  2636. height: math.unit(20, "feet")
  2637. },
  2638. {
  2639. name: "Minimacro",
  2640. height: math.unit(40, "feet"),
  2641. info: {
  2642. description: {
  2643. mode: "append",
  2644. text: "\n\nTOO DAMN BIG"
  2645. }
  2646. }
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(100, "feet"),
  2651. info: {
  2652. description: {
  2653. mode: "append",
  2654. text: "\n\nTOO DAMN BIG"
  2655. }
  2656. }
  2657. },
  2658. {
  2659. name: "Megamacro",
  2660. height: math.unit(2, "miles")
  2661. },
  2662. {
  2663. name: "Gigamacro",
  2664. height: math.unit(10, "earths")
  2665. },
  2666. ]
  2667. ))
  2668. characterMakers.push(() => makeCharacter(
  2669. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2670. {
  2671. front: {
  2672. height: math.unit(183, "cm"),
  2673. weight: math.unit(80, "kg"),
  2674. name: "Front",
  2675. image: {
  2676. source: "./media/characters/sofia-fluttertail/front.svg",
  2677. bottom: 0.01,
  2678. extra: 2154 / 2081
  2679. }
  2680. },
  2681. frontAlt: {
  2682. height: math.unit(183, "cm"),
  2683. weight: math.unit(80, "kg"),
  2684. name: "Front (alt)",
  2685. image: {
  2686. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2687. }
  2688. },
  2689. back: {
  2690. height: math.unit(183, "cm"),
  2691. weight: math.unit(80, "kg"),
  2692. name: "Back",
  2693. image: {
  2694. source: "./media/characters/sofia-fluttertail/back.svg"
  2695. }
  2696. },
  2697. kneeling: {
  2698. height: math.unit(125, "cm"),
  2699. weight: math.unit(80, "kg"),
  2700. name: "Kneeling",
  2701. image: {
  2702. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2703. extra: 1033 / 977,
  2704. bottom: 23.7 / 1057
  2705. }
  2706. },
  2707. maw: {
  2708. height: math.unit(183 / 5, "cm"),
  2709. name: "Maw",
  2710. image: {
  2711. source: "./media/characters/sofia-fluttertail/maw.svg"
  2712. }
  2713. },
  2714. mawcloseup: {
  2715. height: math.unit(183 / 5 * 0.41, "cm"),
  2716. name: "Maw (Closeup)",
  2717. image: {
  2718. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2719. }
  2720. },
  2721. paws: {
  2722. height: math.unit(1.17, "feet"),
  2723. name: "Paws",
  2724. image: {
  2725. source: "./media/characters/sofia-fluttertail/paws.svg",
  2726. extra: 851 / 851,
  2727. bottom: 17 / 868
  2728. }
  2729. },
  2730. },
  2731. [
  2732. {
  2733. name: "Normal",
  2734. height: math.unit(1.83, "meter")
  2735. },
  2736. {
  2737. name: "Size Thief",
  2738. height: math.unit(18, "feet")
  2739. },
  2740. {
  2741. name: "50 Foot Collie",
  2742. height: math.unit(50, "feet")
  2743. },
  2744. {
  2745. name: "Macro",
  2746. height: math.unit(96, "feet"),
  2747. default: true
  2748. },
  2749. {
  2750. name: "Megamerger",
  2751. height: math.unit(650, "feet")
  2752. },
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2757. {
  2758. front: {
  2759. height: math.unit(7, "feet"),
  2760. weight: math.unit(100, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/march/front.svg",
  2764. extra: 1992/1851,
  2765. bottom: 39/2031
  2766. }
  2767. },
  2768. foot: {
  2769. height: math.unit(0.9, "feet"),
  2770. name: "Foot",
  2771. image: {
  2772. source: "./media/characters/march/foot.svg"
  2773. }
  2774. },
  2775. },
  2776. [
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(7.9, "feet")
  2780. },
  2781. {
  2782. name: "Macro",
  2783. height: math.unit(220, "meters")
  2784. },
  2785. {
  2786. name: "Megamacro",
  2787. height: math.unit(2.98, "km"),
  2788. default: true
  2789. },
  2790. {
  2791. name: "Gigamacro",
  2792. height: math.unit(15963, "km")
  2793. },
  2794. {
  2795. name: "Teramacro",
  2796. height: math.unit(2980000000, "km")
  2797. },
  2798. {
  2799. name: "Examacro",
  2800. height: math.unit(250, "parsecs")
  2801. },
  2802. ]
  2803. ))
  2804. characterMakers.push(() => makeCharacter(
  2805. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2806. {
  2807. front: {
  2808. height: math.unit(6, "feet"),
  2809. weight: math.unit(60, "kg"),
  2810. name: "Front",
  2811. image: {
  2812. source: "./media/characters/noir/front.svg",
  2813. extra: 1,
  2814. bottom: 0.032
  2815. }
  2816. },
  2817. },
  2818. [
  2819. {
  2820. name: "Normal",
  2821. height: math.unit(6.6, "feet")
  2822. },
  2823. {
  2824. name: "Macro",
  2825. height: math.unit(500, "feet")
  2826. },
  2827. {
  2828. name: "Megamacro",
  2829. height: math.unit(2.5, "km"),
  2830. default: true
  2831. },
  2832. {
  2833. name: "Gigamacro",
  2834. height: math.unit(22500, "km")
  2835. },
  2836. {
  2837. name: "Teramacro",
  2838. height: math.unit(2500000000, "km")
  2839. },
  2840. {
  2841. name: "Examacro",
  2842. height: math.unit(200, "parsecs")
  2843. },
  2844. ]
  2845. ))
  2846. characterMakers.push(() => makeCharacter(
  2847. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2848. {
  2849. front: {
  2850. height: math.unit(7, "feet"),
  2851. weight: math.unit(100, "kg"),
  2852. name: "Front",
  2853. image: {
  2854. source: "./media/characters/okuri/front.svg",
  2855. extra: 739/665,
  2856. bottom: 39/778
  2857. }
  2858. },
  2859. back: {
  2860. height: math.unit(7, "feet"),
  2861. weight: math.unit(100, "kg"),
  2862. name: "Back",
  2863. image: {
  2864. source: "./media/characters/okuri/back.svg",
  2865. extra: 734/653,
  2866. bottom: 13/747
  2867. }
  2868. },
  2869. sitting: {
  2870. height: math.unit(2.95, "feet"),
  2871. weight: math.unit(100, "kg"),
  2872. name: "Sitting",
  2873. image: {
  2874. source: "./media/characters/okuri/sitting.svg",
  2875. extra: 370/318,
  2876. bottom: 99/469
  2877. }
  2878. },
  2879. },
  2880. [
  2881. {
  2882. name: "Smallest",
  2883. height: math.unit(5 + 2/12, "feet")
  2884. },
  2885. {
  2886. name: "Smaller",
  2887. height: math.unit(300, "feet")
  2888. },
  2889. {
  2890. name: "Small",
  2891. height: math.unit(1000, "feet")
  2892. },
  2893. {
  2894. name: "Macro",
  2895. height: math.unit(1, "mile")
  2896. },
  2897. {
  2898. name: "Mega Macro (Small)",
  2899. height: math.unit(20, "km")
  2900. },
  2901. {
  2902. name: "Mega Macro (Large)",
  2903. height: math.unit(600, "km")
  2904. },
  2905. {
  2906. name: "Giga Macro",
  2907. height: math.unit(10000, "km")
  2908. },
  2909. {
  2910. name: "Normal",
  2911. height: math.unit(577560, "km"),
  2912. default: true
  2913. },
  2914. {
  2915. name: "Large",
  2916. height: math.unit(4, "galaxies")
  2917. },
  2918. {
  2919. name: "Largest",
  2920. height: math.unit(15, "multiverses")
  2921. },
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2926. {
  2927. front: {
  2928. height: math.unit(7, "feet"),
  2929. weight: math.unit(100, "kg"),
  2930. name: "Front",
  2931. image: {
  2932. source: "./media/characters/manny/front.svg",
  2933. extra: 1,
  2934. bottom: 0.06
  2935. }
  2936. },
  2937. back: {
  2938. height: math.unit(7, "feet"),
  2939. weight: math.unit(100, "kg"),
  2940. name: "Back",
  2941. image: {
  2942. source: "./media/characters/manny/back.svg",
  2943. extra: 1,
  2944. bottom: 0.014
  2945. }
  2946. },
  2947. },
  2948. [
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(7, "feet"),
  2952. },
  2953. {
  2954. name: "Macro",
  2955. height: math.unit(78, "feet"),
  2956. default: true
  2957. },
  2958. {
  2959. name: "Macro+",
  2960. height: math.unit(300, "meters")
  2961. },
  2962. {
  2963. name: "Macro++",
  2964. height: math.unit(2400, "meters")
  2965. },
  2966. {
  2967. name: "Megamacro",
  2968. height: math.unit(5167, "meters")
  2969. },
  2970. {
  2971. name: "Gigamacro",
  2972. height: math.unit(41769, "miles")
  2973. },
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2978. {
  2979. front: {
  2980. height: math.unit(7, "feet"),
  2981. weight: math.unit(100, "kg"),
  2982. name: "Front",
  2983. image: {
  2984. source: "./media/characters/adake/front-1.svg"
  2985. }
  2986. },
  2987. frontAlt: {
  2988. height: math.unit(7, "feet"),
  2989. weight: math.unit(100, "kg"),
  2990. name: "Front (Alt)",
  2991. image: {
  2992. source: "./media/characters/adake/front-2.svg",
  2993. extra: 1,
  2994. bottom: 0.01
  2995. }
  2996. },
  2997. back: {
  2998. height: math.unit(7, "feet"),
  2999. weight: math.unit(100, "kg"),
  3000. name: "Back",
  3001. image: {
  3002. source: "./media/characters/adake/back.svg",
  3003. }
  3004. },
  3005. kneel: {
  3006. height: math.unit(5.385, "feet"),
  3007. weight: math.unit(100, "kg"),
  3008. name: "Kneeling",
  3009. image: {
  3010. source: "./media/characters/adake/kneel.svg",
  3011. bottom: 0.052
  3012. }
  3013. },
  3014. },
  3015. [
  3016. {
  3017. name: "Normal",
  3018. height: math.unit(7, "feet"),
  3019. },
  3020. {
  3021. name: "Macro",
  3022. height: math.unit(78, "feet"),
  3023. default: true
  3024. },
  3025. {
  3026. name: "Macro+",
  3027. height: math.unit(300, "meters")
  3028. },
  3029. {
  3030. name: "Macro++",
  3031. height: math.unit(2400, "meters")
  3032. },
  3033. {
  3034. name: "Megamacro",
  3035. height: math.unit(5167, "meters")
  3036. },
  3037. {
  3038. name: "Gigamacro",
  3039. height: math.unit(41769, "miles")
  3040. },
  3041. ]
  3042. ))
  3043. characterMakers.push(() => makeCharacter(
  3044. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3045. {
  3046. front: {
  3047. height: math.unit(1.65, "meters"),
  3048. weight: math.unit(50, "kg"),
  3049. name: "Front",
  3050. image: {
  3051. source: "./media/characters/elijah/front.svg",
  3052. extra: 858 / 830,
  3053. bottom: 95.5 / 953.8559
  3054. }
  3055. },
  3056. back: {
  3057. height: math.unit(1.65, "meters"),
  3058. weight: math.unit(50, "kg"),
  3059. name: "Back",
  3060. image: {
  3061. source: "./media/characters/elijah/back.svg",
  3062. extra: 895 / 850,
  3063. bottom: 5.3 / 897.956
  3064. }
  3065. },
  3066. frontNsfw: {
  3067. height: math.unit(1.65, "meters"),
  3068. weight: math.unit(50, "kg"),
  3069. name: "Front (NSFW)",
  3070. image: {
  3071. source: "./media/characters/elijah/front-nsfw.svg",
  3072. extra: 858 / 830,
  3073. bottom: 95.5 / 953.8559
  3074. }
  3075. },
  3076. backNsfw: {
  3077. height: math.unit(1.65, "meters"),
  3078. weight: math.unit(50, "kg"),
  3079. name: "Back (NSFW)",
  3080. image: {
  3081. source: "./media/characters/elijah/back-nsfw.svg",
  3082. extra: 895 / 850,
  3083. bottom: 5.3 / 897.956
  3084. }
  3085. },
  3086. dick: {
  3087. height: math.unit(1, "feet"),
  3088. name: "Dick",
  3089. image: {
  3090. source: "./media/characters/elijah/dick.svg"
  3091. }
  3092. },
  3093. beakOpen: {
  3094. height: math.unit(1.25, "feet"),
  3095. name: "Beak (Open)",
  3096. image: {
  3097. source: "./media/characters/elijah/beak-open.svg"
  3098. }
  3099. },
  3100. beakShut: {
  3101. height: math.unit(1.25, "feet"),
  3102. name: "Beak (Shut)",
  3103. image: {
  3104. source: "./media/characters/elijah/beak-shut.svg"
  3105. }
  3106. },
  3107. footFlexing: {
  3108. height: math.unit(1.61, "feet"),
  3109. name: "Foot (Flexing)",
  3110. image: {
  3111. source: "./media/characters/elijah/foot-flexing.svg"
  3112. }
  3113. },
  3114. footStepping: {
  3115. height: math.unit(1.44, "feet"),
  3116. name: "Foot (Stepping)",
  3117. image: {
  3118. source: "./media/characters/elijah/foot-stepping.svg"
  3119. }
  3120. },
  3121. plantigradeLeg: {
  3122. height: math.unit(2.34, "feet"),
  3123. name: "Plantigrade Leg",
  3124. image: {
  3125. source: "./media/characters/elijah/plantigrade-leg.svg"
  3126. }
  3127. },
  3128. plantigradeFootLeft: {
  3129. height: math.unit(0.9, "feet"),
  3130. name: "Plantigrade Foot (Left)",
  3131. image: {
  3132. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3133. }
  3134. },
  3135. plantigradeFootRight: {
  3136. height: math.unit(0.9, "feet"),
  3137. name: "Plantigrade Foot (Right)",
  3138. image: {
  3139. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3140. }
  3141. },
  3142. },
  3143. [
  3144. {
  3145. name: "Normal",
  3146. height: math.unit(1.65, "meters")
  3147. },
  3148. {
  3149. name: "Macro",
  3150. height: math.unit(55, "meters"),
  3151. default: true
  3152. },
  3153. {
  3154. name: "Macro+",
  3155. height: math.unit(105, "meters")
  3156. },
  3157. ]
  3158. ))
  3159. characterMakers.push(() => makeCharacter(
  3160. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3161. {
  3162. front: {
  3163. height: math.unit(7 + 2/12, "feet"),
  3164. weight: math.unit(320, "kg"),
  3165. preyCapacity: math.unit(0.276549935, "people"),
  3166. name: "Front",
  3167. image: {
  3168. source: "./media/characters/rai/front.svg",
  3169. extra: 1802/1696,
  3170. bottom: 68/1870
  3171. },
  3172. form: "anthro",
  3173. default: true
  3174. },
  3175. frontDressed: {
  3176. height: math.unit(7 + 2/12, "feet"),
  3177. weight: math.unit(320, "kg"),
  3178. preyCapacity: math.unit(0.276549935, "people"),
  3179. name: "Front (Dressed)",
  3180. image: {
  3181. source: "./media/characters/rai/front-dressed.svg",
  3182. extra: 1802/1696,
  3183. bottom: 68/1870
  3184. },
  3185. form: "anthro"
  3186. },
  3187. side: {
  3188. height: math.unit(7 + 2/12, "feet"),
  3189. weight: math.unit(320, "kg"),
  3190. preyCapacity: math.unit(0.276549935, "people"),
  3191. name: "Side",
  3192. image: {
  3193. source: "./media/characters/rai/side.svg",
  3194. extra: 1789/1710,
  3195. bottom: 115/1904
  3196. },
  3197. form: "anthro"
  3198. },
  3199. back: {
  3200. height: math.unit(7 + 2/12, "feet"),
  3201. weight: math.unit(320, "kg"),
  3202. preyCapacity: math.unit(0.276549935, "people"),
  3203. name: "Back",
  3204. image: {
  3205. source: "./media/characters/rai/back.svg",
  3206. extra: 1770/1707,
  3207. bottom: 28/1798
  3208. },
  3209. form: "anthro"
  3210. },
  3211. feral: {
  3212. height: math.unit(9.5, "feet"),
  3213. weight: math.unit(640, "kg"),
  3214. preyCapacity: math.unit(4, "people"),
  3215. name: "Feral",
  3216. image: {
  3217. source: "./media/characters/rai/feral.svg",
  3218. extra: 945/553,
  3219. bottom: 176/1121
  3220. },
  3221. form: "feral",
  3222. default: true
  3223. },
  3224. dragon: {
  3225. height: math.unit(23, "feet"),
  3226. weight: math.unit(50000, "lb"),
  3227. name: "Dragon",
  3228. image: {
  3229. source: "./media/characters/rai/dragon.svg",
  3230. extra: 2498 / 2030,
  3231. bottom: 85.2 / 2584
  3232. },
  3233. form: "dragon",
  3234. default: true
  3235. },
  3236. maw: {
  3237. height: math.unit(1.69, "feet"),
  3238. name: "Maw",
  3239. image: {
  3240. source: "./media/characters/rai/maw.svg"
  3241. },
  3242. form: "anthro"
  3243. },
  3244. },
  3245. [
  3246. {
  3247. name: "Normal",
  3248. height: math.unit(7 + 2/12, "feet"),
  3249. form: "anthro"
  3250. },
  3251. {
  3252. name: "Big",
  3253. height: math.unit(11, "feet"),
  3254. form: "anthro"
  3255. },
  3256. {
  3257. name: "Minimacro",
  3258. height: math.unit(77, "feet"),
  3259. form: "anthro"
  3260. },
  3261. {
  3262. name: "Macro",
  3263. height: math.unit(302, "feet"),
  3264. default: true,
  3265. form: "anthro"
  3266. },
  3267. {
  3268. name: "Normal",
  3269. height: math.unit(9.5, "feet"),
  3270. form: "feral",
  3271. default: true
  3272. },
  3273. {
  3274. name: "Normal",
  3275. height: math.unit(23, "feet"),
  3276. form: "dragon",
  3277. default: true
  3278. }
  3279. ],
  3280. {
  3281. "anthro": {
  3282. name: "Anthro",
  3283. default: true
  3284. },
  3285. "feral": {
  3286. name: "Feral",
  3287. },
  3288. "dragon": {
  3289. name: "Dragon",
  3290. },
  3291. }
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3295. {
  3296. frontDressed: {
  3297. height: math.unit(216, "feet"),
  3298. weight: math.unit(7000000, "lb"),
  3299. preyCapacity: math.unit(1321, "people"),
  3300. name: "Front (Dressed)",
  3301. image: {
  3302. source: "./media/characters/jazzy/front-dressed.svg",
  3303. extra: 2738 / 2651,
  3304. bottom: 41.8 / 2786
  3305. }
  3306. },
  3307. backDressed: {
  3308. height: math.unit(216, "feet"),
  3309. weight: math.unit(7000000, "lb"),
  3310. preyCapacity: math.unit(1321, "people"),
  3311. name: "Back (Dressed)",
  3312. image: {
  3313. source: "./media/characters/jazzy/back-dressed.svg",
  3314. extra: 2775 / 2673,
  3315. bottom: 36.8 / 2817
  3316. }
  3317. },
  3318. front: {
  3319. height: math.unit(216, "feet"),
  3320. weight: math.unit(7000000, "lb"),
  3321. preyCapacity: math.unit(1321, "people"),
  3322. name: "Front",
  3323. image: {
  3324. source: "./media/characters/jazzy/front.svg",
  3325. extra: 2738 / 2651,
  3326. bottom: 41.8 / 2786
  3327. }
  3328. },
  3329. back: {
  3330. height: math.unit(216, "feet"),
  3331. weight: math.unit(7000000, "lb"),
  3332. preyCapacity: math.unit(1321, "people"),
  3333. name: "Back",
  3334. image: {
  3335. source: "./media/characters/jazzy/back.svg",
  3336. extra: 2775 / 2673,
  3337. bottom: 36.8 / 2817
  3338. }
  3339. },
  3340. maw: {
  3341. height: math.unit(20, "feet"),
  3342. name: "Maw",
  3343. image: {
  3344. source: "./media/characters/jazzy/maw.svg"
  3345. }
  3346. },
  3347. paws: {
  3348. height: math.unit(27.5, "feet"),
  3349. name: "Paws",
  3350. image: {
  3351. source: "./media/characters/jazzy/paws.svg"
  3352. }
  3353. },
  3354. eye: {
  3355. height: math.unit(4.4, "feet"),
  3356. name: "Eye",
  3357. image: {
  3358. source: "./media/characters/jazzy/eye.svg"
  3359. }
  3360. },
  3361. droneOffense: {
  3362. height: math.unit(9.5, "inches"),
  3363. name: "Drone (Offense)",
  3364. image: {
  3365. source: "./media/characters/jazzy/drone-offense.svg"
  3366. }
  3367. },
  3368. droneRecon: {
  3369. height: math.unit(9.5, "inches"),
  3370. name: "Drone (Recon)",
  3371. image: {
  3372. source: "./media/characters/jazzy/drone-recon.svg"
  3373. }
  3374. },
  3375. droneDefense: {
  3376. height: math.unit(9.5, "inches"),
  3377. name: "Drone (Defense)",
  3378. image: {
  3379. source: "./media/characters/jazzy/drone-defense.svg"
  3380. }
  3381. },
  3382. },
  3383. [
  3384. {
  3385. name: "Macro",
  3386. height: math.unit(216, "feet"),
  3387. default: true
  3388. },
  3389. ]
  3390. ))
  3391. characterMakers.push(() => makeCharacter(
  3392. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3393. {
  3394. front: {
  3395. height: math.unit(9 + 6/12, "feet"),
  3396. weight: math.unit(700, "lb"),
  3397. name: "Front",
  3398. image: {
  3399. source: "./media/characters/flamm/front.svg",
  3400. extra: 1736/1596,
  3401. bottom: 93/1829
  3402. }
  3403. },
  3404. buff: {
  3405. height: math.unit(9 + 6/12, "feet"),
  3406. weight: math.unit(950, "lb"),
  3407. name: "Buff",
  3408. image: {
  3409. source: "./media/characters/flamm/buff.svg",
  3410. extra: 3018/2874,
  3411. bottom: 221/3239
  3412. }
  3413. },
  3414. },
  3415. [
  3416. {
  3417. name: "Normal",
  3418. height: math.unit(9.5, "feet")
  3419. },
  3420. {
  3421. name: "Macro",
  3422. height: math.unit(200, "feet"),
  3423. default: true
  3424. },
  3425. ]
  3426. ))
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3429. {
  3430. front: {
  3431. height: math.unit(5 + 3/12, "feet"),
  3432. weight: math.unit(60, "kg"),
  3433. name: "Front",
  3434. image: {
  3435. source: "./media/characters/zephiro/front.svg",
  3436. extra: 1873/1761,
  3437. bottom: 147/2020
  3438. }
  3439. },
  3440. side: {
  3441. height: math.unit(5 + 3/12, "feet"),
  3442. weight: math.unit(60, "kg"),
  3443. name: "Side",
  3444. image: {
  3445. source: "./media/characters/zephiro/side.svg",
  3446. extra: 1929/1827,
  3447. bottom: 65/1994
  3448. }
  3449. },
  3450. back: {
  3451. height: math.unit(5 + 3/12, "feet"),
  3452. weight: math.unit(60, "kg"),
  3453. name: "Back",
  3454. image: {
  3455. source: "./media/characters/zephiro/back.svg",
  3456. extra: 1926/1816,
  3457. bottom: 41/1967
  3458. }
  3459. },
  3460. hand: {
  3461. height: math.unit(0.68, "feet"),
  3462. name: "Hand",
  3463. image: {
  3464. source: "./media/characters/zephiro/hand.svg"
  3465. }
  3466. },
  3467. paw: {
  3468. height: math.unit(1, "feet"),
  3469. name: "Paw",
  3470. image: {
  3471. source: "./media/characters/zephiro/paw.svg"
  3472. }
  3473. },
  3474. beans: {
  3475. height: math.unit(0.93, "feet"),
  3476. name: "Beans",
  3477. image: {
  3478. source: "./media/characters/zephiro/beans.svg"
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Micro",
  3485. height: math.unit(3, "inches")
  3486. },
  3487. {
  3488. name: "Normal",
  3489. height: math.unit(5 + 3 / 12, "feet"),
  3490. default: true
  3491. },
  3492. {
  3493. name: "Macro",
  3494. height: math.unit(118, "feet")
  3495. },
  3496. ]
  3497. ))
  3498. characterMakers.push(() => makeCharacter(
  3499. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3500. {
  3501. front: {
  3502. height: math.unit(5, "feet"),
  3503. weight: math.unit(90, "kg"),
  3504. preyCapacity: math.unit(14, "people"),
  3505. name: "Front",
  3506. image: {
  3507. source: "./media/characters/fory/front.svg",
  3508. extra: 2862 / 2674,
  3509. bottom: 180 / 3043.8
  3510. },
  3511. form: "weaselbun",
  3512. default: true,
  3513. extraAttributes: {
  3514. "pawSize": {
  3515. name: "Paw Size",
  3516. power: 2,
  3517. type: "area",
  3518. base: math.unit(0.1596, "m^2")
  3519. },
  3520. "pawLength": {
  3521. name: "Paw Length",
  3522. power: 1,
  3523. type: "length",
  3524. base: math.unit(0.7, "m")
  3525. }
  3526. }
  3527. },
  3528. back: {
  3529. height: math.unit(5, "feet"),
  3530. weight: math.unit(90, "kg"),
  3531. preyCapacity: math.unit(14, "people"),
  3532. name: "Back",
  3533. image: {
  3534. source: "./media/characters/fory/back.svg",
  3535. extra: 1790/1672,
  3536. bottom: 84/1874
  3537. },
  3538. form: "weaselbun",
  3539. extraAttributes: {
  3540. "pawSize": {
  3541. name: "Paw Size",
  3542. power: 2,
  3543. type: "area",
  3544. base: math.unit(0.1596, "m^2")
  3545. },
  3546. "pawLength": {
  3547. name: "Paw Length",
  3548. power: 1,
  3549. type: "length",
  3550. base: math.unit(0.7, "m")
  3551. }
  3552. }
  3553. },
  3554. paw: {
  3555. height: math.unit(2.14, "feet"),
  3556. name: "Paw",
  3557. image: {
  3558. source: "./media/characters/fory/paw.svg"
  3559. },
  3560. form: "weaselbun",
  3561. extraAttributes: {
  3562. "pawSize": {
  3563. name: "Paw Size",
  3564. power: 2,
  3565. type: "area",
  3566. base: math.unit(0.1596, "m^2")
  3567. },
  3568. "pawLength": {
  3569. name: "Paw Length",
  3570. power: 1,
  3571. type: "length",
  3572. base: math.unit(0.48, "m")
  3573. }
  3574. }
  3575. },
  3576. bunBack: {
  3577. height: math.unit(3, "feet"),
  3578. weight: math.unit(20, "kg"),
  3579. preyCapacity: math.unit(3, "people"),
  3580. name: "Back",
  3581. image: {
  3582. source: "./media/characters/fory/bun-back.svg",
  3583. extra: 1749/1564,
  3584. bottom: 246/1995
  3585. },
  3586. form: "bun",
  3587. default: true,
  3588. extraAttributes: {
  3589. "pawSize": {
  3590. name: "Paw Size",
  3591. power: 2,
  3592. type: "area",
  3593. base: math.unit(0.072, "m^2")
  3594. },
  3595. "pawLength": {
  3596. name: "Paw Length",
  3597. power: 1,
  3598. type: "length",
  3599. base: math.unit(0.45, "m")
  3600. }
  3601. }
  3602. },
  3603. },
  3604. [
  3605. {
  3606. name: "Normal",
  3607. height: math.unit(5, "feet"),
  3608. form: "weaselbun"
  3609. },
  3610. {
  3611. name: "Macro",
  3612. height: math.unit(50, "feet"),
  3613. default: true,
  3614. form: "weaselbun"
  3615. },
  3616. {
  3617. name: "Megamacro",
  3618. height: math.unit(10, "miles"),
  3619. form: "weaselbun"
  3620. },
  3621. {
  3622. name: "Gigamacro",
  3623. height: math.unit(5, "earths"),
  3624. form: "weaselbun"
  3625. },
  3626. {
  3627. name: "Normal",
  3628. height: math.unit(3, "feet"),
  3629. default: true,
  3630. form: "bun"
  3631. },
  3632. {
  3633. name: "Fun-Size",
  3634. height: math.unit(12, "feet"),
  3635. form: "bun"
  3636. },
  3637. {
  3638. name: "Macro",
  3639. height: math.unit(100, "feet"),
  3640. form: "bun"
  3641. },
  3642. {
  3643. name: "Planetary",
  3644. height: math.unit(3, "earths"),
  3645. form: "bun"
  3646. },
  3647. ],
  3648. {
  3649. "weaselbun": {
  3650. name: "Weaselbun",
  3651. default: true
  3652. },
  3653. "bun": {
  3654. name: "Bun",
  3655. },
  3656. }
  3657. ))
  3658. characterMakers.push(() => makeCharacter(
  3659. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3660. {
  3661. front: {
  3662. height: math.unit(7, "feet"),
  3663. weight: math.unit(90, "kg"),
  3664. name: "Front",
  3665. image: {
  3666. source: "./media/characters/kurrikage/front.svg",
  3667. extra: 1845/1733,
  3668. bottom: 119/1964
  3669. }
  3670. },
  3671. back: {
  3672. height: math.unit(7, "feet"),
  3673. weight: math.unit(90, "kg"),
  3674. name: "Back",
  3675. image: {
  3676. source: "./media/characters/kurrikage/back.svg",
  3677. extra: 1790/1677,
  3678. bottom: 61/1851
  3679. }
  3680. },
  3681. dressed: {
  3682. height: math.unit(7, "feet"),
  3683. weight: math.unit(90, "kg"),
  3684. name: "Dressed",
  3685. image: {
  3686. source: "./media/characters/kurrikage/dressed.svg",
  3687. extra: 1845/1733,
  3688. bottom: 119/1964
  3689. }
  3690. },
  3691. foot: {
  3692. height: math.unit(1.5, "feet"),
  3693. name: "Foot",
  3694. image: {
  3695. source: "./media/characters/kurrikage/foot.svg"
  3696. }
  3697. },
  3698. staff: {
  3699. height: math.unit(6.7, "feet"),
  3700. name: "Staff",
  3701. image: {
  3702. source: "./media/characters/kurrikage/staff.svg"
  3703. }
  3704. },
  3705. peek: {
  3706. height: math.unit(1.05, "feet"),
  3707. name: "Peeking",
  3708. image: {
  3709. source: "./media/characters/kurrikage/peek.svg",
  3710. bottom: 0.08
  3711. }
  3712. },
  3713. },
  3714. [
  3715. {
  3716. name: "Normal",
  3717. height: math.unit(12, "feet"),
  3718. default: true
  3719. },
  3720. {
  3721. name: "Big",
  3722. height: math.unit(20, "feet")
  3723. },
  3724. {
  3725. name: "Macro",
  3726. height: math.unit(500, "feet")
  3727. },
  3728. {
  3729. name: "Megamacro",
  3730. height: math.unit(20, "miles")
  3731. },
  3732. ]
  3733. ))
  3734. characterMakers.push(() => makeCharacter(
  3735. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3736. {
  3737. front: {
  3738. height: math.unit(6, "feet"),
  3739. weight: math.unit(75, "kg"),
  3740. name: "Front",
  3741. image: {
  3742. source: "./media/characters/shingo/front.svg",
  3743. extra: 1900/1825,
  3744. bottom: 82/1982
  3745. }
  3746. },
  3747. side: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(75, "kg"),
  3750. name: "Side",
  3751. image: {
  3752. source: "./media/characters/shingo/side.svg",
  3753. extra: 1930/1865,
  3754. bottom: 16/1946
  3755. }
  3756. },
  3757. back: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Back",
  3761. image: {
  3762. source: "./media/characters/shingo/back.svg",
  3763. extra: 1922/1852,
  3764. bottom: 16/1938
  3765. }
  3766. },
  3767. frontDressed: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(150, "lb"),
  3770. name: "Front-dressed",
  3771. image: {
  3772. source: "./media/characters/shingo/front-dressed.svg",
  3773. extra: 1900/1825,
  3774. bottom: 82/1982
  3775. }
  3776. },
  3777. paw: {
  3778. height: math.unit(1.29, "feet"),
  3779. name: "Paw",
  3780. image: {
  3781. source: "./media/characters/shingo/paw.svg"
  3782. }
  3783. },
  3784. hand: {
  3785. height: math.unit(1.07, "feet"),
  3786. name: "Hand",
  3787. image: {
  3788. source: "./media/characters/shingo/hand.svg"
  3789. }
  3790. },
  3791. frontAlt: {
  3792. height: math.unit(6, "feet"),
  3793. weight: math.unit(75, "kg"),
  3794. name: "Front (Alt)",
  3795. image: {
  3796. source: "./media/characters/shingo/front-alt.svg",
  3797. extra: 3511 / 3338,
  3798. bottom: 0.005
  3799. }
  3800. },
  3801. frontAlt2: {
  3802. height: math.unit(6, "feet"),
  3803. weight: math.unit(75, "kg"),
  3804. name: "Front (Alt 2)",
  3805. image: {
  3806. source: "./media/characters/shingo/front-alt-2.svg",
  3807. extra: 706/681,
  3808. bottom: 11/717
  3809. }
  3810. },
  3811. pawAlt: {
  3812. height: math.unit(1, "feet"),
  3813. name: "Paw (Alt)",
  3814. image: {
  3815. source: "./media/characters/shingo/paw-alt.svg"
  3816. }
  3817. },
  3818. },
  3819. [
  3820. {
  3821. name: "Micro",
  3822. height: math.unit(4, "inches")
  3823. },
  3824. {
  3825. name: "Normal",
  3826. height: math.unit(6, "feet"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Macro",
  3831. height: math.unit(108, "feet")
  3832. },
  3833. {
  3834. name: "Macro+",
  3835. height: math.unit(1500, "feet")
  3836. },
  3837. ]
  3838. ))
  3839. characterMakers.push(() => makeCharacter(
  3840. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3841. {
  3842. side: {
  3843. height: math.unit(6, "feet"),
  3844. weight: math.unit(75, "kg"),
  3845. name: "Side",
  3846. image: {
  3847. source: "./media/characters/aigey/side.svg"
  3848. }
  3849. },
  3850. },
  3851. [
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(200, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Megamacro",
  3859. height: math.unit(100, "miles")
  3860. },
  3861. ]
  3862. )
  3863. )
  3864. characterMakers.push(() => makeCharacter(
  3865. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3866. {
  3867. front: {
  3868. height: math.unit(13, "feet"),
  3869. weight: math.unit(1036.80, "kg"),
  3870. name: "Front",
  3871. image: {
  3872. source: "./media/characters/natasha/front.svg",
  3873. extra: 1301/1210,
  3874. bottom: 39/1340
  3875. }
  3876. },
  3877. back: {
  3878. height: math.unit(13, "feet"),
  3879. weight: math.unit(1036.80, "kg"),
  3880. name: "Back",
  3881. image: {
  3882. source: "./media/characters/natasha/back.svg",
  3883. extra: 1342/1252,
  3884. bottom: 20/1362
  3885. }
  3886. },
  3887. head: {
  3888. height: math.unit(3.48, "feet"),
  3889. name: "Head",
  3890. image: {
  3891. source: "./media/characters/natasha/head.svg"
  3892. }
  3893. },
  3894. jaws: {
  3895. height: math.unit(3.52, "feet"),
  3896. name: "Jaws",
  3897. image: {
  3898. source: "./media/characters/natasha/jaws.svg"
  3899. }
  3900. },
  3901. paws: {
  3902. height: math.unit(2.7, "feet"),
  3903. name: "Paws",
  3904. image: {
  3905. source: "./media/characters/natasha/paws.svg"
  3906. }
  3907. },
  3908. collar: {
  3909. height: math.unit(0.89, "feet"),
  3910. name: "Collar",
  3911. image: {
  3912. source: "./media/characters/natasha/collar.svg"
  3913. }
  3914. },
  3915. gauge: {
  3916. height: math.unit(0.36, "feet"),
  3917. name: "Gauge",
  3918. image: {
  3919. source: "./media/characters/natasha/gauge.svg"
  3920. }
  3921. },
  3922. },
  3923. [
  3924. {
  3925. name: "Shortstack",
  3926. height: math.unit(3, "feet")
  3927. },
  3928. {
  3929. name: "Normal",
  3930. height: math.unit(13, "feet"),
  3931. default: true
  3932. },
  3933. {
  3934. name: "Macro",
  3935. height: math.unit(100, "feet")
  3936. },
  3937. {
  3938. name: "Macro+",
  3939. height: math.unit(260, "feet")
  3940. },
  3941. {
  3942. name: "Macro++",
  3943. height: math.unit(1, "mile")
  3944. },
  3945. ]
  3946. ))
  3947. characterMakers.push(() => makeCharacter(
  3948. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3949. {
  3950. front: {
  3951. height: math.unit(6, "feet"),
  3952. weight: math.unit(75, "kg"),
  3953. name: "Front",
  3954. image: {
  3955. source: "./media/characters/malik/front.svg",
  3956. extra: 1750/1561,
  3957. bottom: 80/1830
  3958. },
  3959. extraAttributes: {
  3960. "toeSize": {
  3961. name: "Toe Size",
  3962. power: 2,
  3963. type: "area",
  3964. base: math.unit(0.0159, "m^2")
  3965. },
  3966. "pawSize": {
  3967. name: "Paw Size",
  3968. power: 2,
  3969. type: "area",
  3970. base: math.unit(0.09834, "m^2")
  3971. },
  3972. }
  3973. },
  3974. side: {
  3975. height: math.unit(6, "feet"),
  3976. weight: math.unit(75, "kg"),
  3977. name: "Side",
  3978. image: {
  3979. source: "./media/characters/malik/side.svg",
  3980. extra: 1802/1685,
  3981. bottom: 42/1844
  3982. },
  3983. extraAttributes: {
  3984. "toeSize": {
  3985. name: "Toe Size",
  3986. power: 2,
  3987. type: "area",
  3988. base: math.unit(0.0159, "m^2")
  3989. },
  3990. "pawSize": {
  3991. name: "Paw Size",
  3992. power: 2,
  3993. type: "area",
  3994. base: math.unit(0.09834, "m^2")
  3995. },
  3996. }
  3997. },
  3998. back: {
  3999. height: math.unit(6, "feet"),
  4000. weight: math.unit(75, "kg"),
  4001. name: "Back",
  4002. image: {
  4003. source: "./media/characters/malik/back.svg",
  4004. extra: 1803/1607,
  4005. bottom: 33/1836
  4006. },
  4007. extraAttributes: {
  4008. "toeSize": {
  4009. name: "Toe Size",
  4010. power: 2,
  4011. type: "area",
  4012. base: math.unit(0.0159, "m^2")
  4013. },
  4014. "pawSize": {
  4015. name: "Paw Size",
  4016. power: 2,
  4017. type: "area",
  4018. base: math.unit(0.09834, "m^2")
  4019. },
  4020. }
  4021. },
  4022. },
  4023. [
  4024. {
  4025. name: "Macro",
  4026. height: math.unit(156, "feet"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Macro+",
  4031. height: math.unit(1188, "feet")
  4032. },
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(6, "feet"),
  4040. weight: math.unit(75, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/sefer/front.svg",
  4044. extra: 848 / 659,
  4045. bottom: 28.3 / 876.442
  4046. }
  4047. },
  4048. back: {
  4049. height: math.unit(6, "feet"),
  4050. weight: math.unit(75, "kg"),
  4051. name: "Back",
  4052. image: {
  4053. source: "./media/characters/sefer/back.svg",
  4054. extra: 864 / 695,
  4055. bottom: 10 / 871
  4056. }
  4057. },
  4058. frontDressed: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(75, "kg"),
  4061. name: "Dressed",
  4062. image: {
  4063. source: "./media/characters/sefer/dressed.svg",
  4064. extra: 839 / 653,
  4065. bottom: 37.6 / 878
  4066. }
  4067. },
  4068. },
  4069. [
  4070. {
  4071. name: "Normal",
  4072. height: math.unit(6, "feet"),
  4073. default: true
  4074. },
  4075. {
  4076. name: "Big",
  4077. height: math.unit(8, "meters")
  4078. },
  4079. ]
  4080. ))
  4081. characterMakers.push(() => makeCharacter(
  4082. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4083. {
  4084. body: {
  4085. height: math.unit(2.2428, "meter"),
  4086. weight: math.unit(124.738, "kg"),
  4087. name: "Body",
  4088. image: {
  4089. extra: 1225 / 1050,
  4090. source: "./media/characters/north/front.svg"
  4091. }
  4092. }
  4093. },
  4094. [
  4095. {
  4096. name: "Micro",
  4097. height: math.unit(4, "inches")
  4098. },
  4099. {
  4100. name: "Macro",
  4101. height: math.unit(63, "meters")
  4102. },
  4103. {
  4104. name: "Megamacro",
  4105. height: math.unit(101, "miles"),
  4106. default: true
  4107. }
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4112. {
  4113. angled: {
  4114. height: math.unit(4, "meter"),
  4115. weight: math.unit(150, "kg"),
  4116. name: "Angled",
  4117. image: {
  4118. source: "./media/characters/talan/angled-sfw.svg",
  4119. bottom: 29 / 3734
  4120. }
  4121. },
  4122. angledNsfw: {
  4123. height: math.unit(4, "meter"),
  4124. weight: math.unit(150, "kg"),
  4125. name: "Angled (NSFW)",
  4126. image: {
  4127. source: "./media/characters/talan/angled-nsfw.svg",
  4128. bottom: 29 / 3734
  4129. }
  4130. },
  4131. frontNsfw: {
  4132. height: math.unit(4, "meter"),
  4133. weight: math.unit(150, "kg"),
  4134. name: "Front (NSFW)",
  4135. image: {
  4136. source: "./media/characters/talan/front-nsfw.svg",
  4137. bottom: 29 / 3734
  4138. }
  4139. },
  4140. sideNsfw: {
  4141. height: math.unit(4, "meter"),
  4142. weight: math.unit(150, "kg"),
  4143. name: "Side (NSFW)",
  4144. image: {
  4145. source: "./media/characters/talan/side-nsfw.svg",
  4146. bottom: 29 / 3734
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(4, "meter"),
  4151. weight: math.unit(150, "kg"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/talan/back.svg"
  4155. }
  4156. },
  4157. dickBottom: {
  4158. height: math.unit(0.621, "meter"),
  4159. name: "Dick (Bottom)",
  4160. image: {
  4161. source: "./media/characters/talan/dick-bottom.svg"
  4162. }
  4163. },
  4164. dickTop: {
  4165. height: math.unit(0.621, "meter"),
  4166. name: "Dick (Top)",
  4167. image: {
  4168. source: "./media/characters/talan/dick-top.svg"
  4169. }
  4170. },
  4171. dickSide: {
  4172. height: math.unit(0.305, "meter"),
  4173. name: "Dick (Side)",
  4174. image: {
  4175. source: "./media/characters/talan/dick-side.svg"
  4176. }
  4177. },
  4178. dickFront: {
  4179. height: math.unit(0.305, "meter"),
  4180. name: "Dick (Front)",
  4181. image: {
  4182. source: "./media/characters/talan/dick-front.svg"
  4183. }
  4184. },
  4185. },
  4186. [
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(4, "meters")
  4190. },
  4191. {
  4192. name: "Macro",
  4193. height: math.unit(100, "meters")
  4194. },
  4195. {
  4196. name: "Megamacro",
  4197. height: math.unit(2, "miles"),
  4198. default: true
  4199. },
  4200. {
  4201. name: "Gigamacro",
  4202. height: math.unit(5000, "miles")
  4203. },
  4204. {
  4205. name: "Teramacro",
  4206. height: math.unit(100, "parsecs")
  4207. }
  4208. ]
  4209. ))
  4210. characterMakers.push(() => makeCharacter(
  4211. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4212. {
  4213. front: {
  4214. height: math.unit(2, "meter"),
  4215. weight: math.unit(90, "kg"),
  4216. name: "Front",
  4217. image: {
  4218. source: "./media/characters/gael'rathus/front.svg"
  4219. }
  4220. },
  4221. frontAlt: {
  4222. height: math.unit(2, "meter"),
  4223. weight: math.unit(90, "kg"),
  4224. name: "Front (alt)",
  4225. image: {
  4226. source: "./media/characters/gael'rathus/front-alt.svg"
  4227. }
  4228. },
  4229. frontAlt2: {
  4230. height: math.unit(2, "meter"),
  4231. weight: math.unit(90, "kg"),
  4232. name: "Front (alt 2)",
  4233. image: {
  4234. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4235. }
  4236. }
  4237. },
  4238. [
  4239. {
  4240. name: "Normal",
  4241. height: math.unit(9, "feet"),
  4242. default: true
  4243. },
  4244. {
  4245. name: "Large",
  4246. height: math.unit(25, "feet")
  4247. },
  4248. {
  4249. name: "Macro",
  4250. height: math.unit(0.25, "miles")
  4251. },
  4252. {
  4253. name: "Megamacro",
  4254. height: math.unit(10, "miles")
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4260. {
  4261. side: {
  4262. height: math.unit(2, "meter"),
  4263. weight: math.unit(140, "kg"),
  4264. name: "Side",
  4265. image: {
  4266. source: "./media/characters/sosha/side.svg",
  4267. extra: 1170/1006,
  4268. bottom: 94/1264
  4269. }
  4270. },
  4271. maw: {
  4272. height: math.unit(2.87, "feet"),
  4273. name: "Maw",
  4274. image: {
  4275. source: "./media/characters/sosha/maw.svg",
  4276. extra: 966/865,
  4277. bottom: 0/966
  4278. }
  4279. },
  4280. cooch: {
  4281. height: math.unit(5.6, "feet"),
  4282. name: "Cooch",
  4283. image: {
  4284. source: "./media/characters/sosha/cooch.svg"
  4285. }
  4286. },
  4287. },
  4288. [
  4289. {
  4290. name: "Normal",
  4291. height: math.unit(12, "feet"),
  4292. default: true
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4298. {
  4299. side: {
  4300. height: math.unit(5 + 5 / 12, "feet"),
  4301. weight: math.unit(170, "kg"),
  4302. name: "Side",
  4303. image: {
  4304. source: "./media/characters/runnola/side.svg",
  4305. extra: 741 / 448,
  4306. bottom: 0.05
  4307. }
  4308. },
  4309. },
  4310. [
  4311. {
  4312. name: "Small",
  4313. height: math.unit(3, "feet")
  4314. },
  4315. {
  4316. name: "Normal",
  4317. height: math.unit(5 + 5 / 12, "feet"),
  4318. default: true
  4319. },
  4320. {
  4321. name: "Big",
  4322. height: math.unit(10, "feet")
  4323. },
  4324. ]
  4325. ))
  4326. characterMakers.push(() => makeCharacter(
  4327. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4328. {
  4329. front: {
  4330. height: math.unit(2, "meter"),
  4331. weight: math.unit(50, "kg"),
  4332. name: "Front",
  4333. image: {
  4334. source: "./media/characters/kurribird/front.svg",
  4335. bottom: 0.015
  4336. }
  4337. },
  4338. frontAlt: {
  4339. height: math.unit(1.5, "meter"),
  4340. weight: math.unit(50, "kg"),
  4341. name: "Front (Alt)",
  4342. image: {
  4343. source: "./media/characters/kurribird/front-alt.svg",
  4344. extra: 1.45
  4345. }
  4346. },
  4347. },
  4348. [
  4349. {
  4350. name: "Normal",
  4351. height: math.unit(7, "feet")
  4352. },
  4353. {
  4354. name: "Big",
  4355. height: math.unit(12, "feet"),
  4356. default: true
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(1500, "feet")
  4361. },
  4362. {
  4363. name: "Megamacro",
  4364. height: math.unit(2, "miles")
  4365. }
  4366. ]
  4367. ))
  4368. characterMakers.push(() => makeCharacter(
  4369. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4370. {
  4371. front: {
  4372. height: math.unit(2, "meter"),
  4373. weight: math.unit(80, "kg"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/elbial/front.svg",
  4377. extra: 1643 / 1556,
  4378. bottom: 60.2 / 1696
  4379. }
  4380. },
  4381. side: {
  4382. height: math.unit(2, "meter"),
  4383. weight: math.unit(80, "kg"),
  4384. name: "Side",
  4385. image: {
  4386. source: "./media/characters/elbial/side.svg",
  4387. extra: 1601/1528,
  4388. bottom: 97/1698
  4389. }
  4390. },
  4391. back: {
  4392. height: math.unit(2, "meter"),
  4393. weight: math.unit(80, "kg"),
  4394. name: "Back",
  4395. image: {
  4396. source: "./media/characters/elbial/back.svg",
  4397. extra: 1653/1569,
  4398. bottom: 20/1673
  4399. }
  4400. },
  4401. frontDressed: {
  4402. height: math.unit(2, "meter"),
  4403. weight: math.unit(80, "kg"),
  4404. name: "Front (Dressed)",
  4405. image: {
  4406. source: "./media/characters/elbial/front-dressed.svg",
  4407. extra: 1638/1569,
  4408. bottom: 70/1708
  4409. }
  4410. },
  4411. genitals: {
  4412. height: math.unit(2 / 3.367, "meter"),
  4413. name: "Genitals",
  4414. image: {
  4415. source: "./media/characters/elbial/genitals.svg"
  4416. }
  4417. },
  4418. },
  4419. [
  4420. {
  4421. name: "Large",
  4422. height: math.unit(100, "feet")
  4423. },
  4424. {
  4425. name: "Macro",
  4426. height: math.unit(500, "feet"),
  4427. default: true
  4428. },
  4429. {
  4430. name: "Megamacro",
  4431. height: math.unit(10, "miles")
  4432. },
  4433. {
  4434. name: "Gigamacro",
  4435. height: math.unit(25000, "miles")
  4436. },
  4437. {
  4438. name: "Full-Size",
  4439. height: math.unit(8000000, "gigaparsecs")
  4440. }
  4441. ]
  4442. ))
  4443. characterMakers.push(() => makeCharacter(
  4444. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4445. {
  4446. front: {
  4447. height: math.unit(2, "meter"),
  4448. weight: math.unit(60, "kg"),
  4449. name: "Front",
  4450. image: {
  4451. source: "./media/characters/noah/front.svg",
  4452. extra: 1383/1313,
  4453. bottom: 104/1487
  4454. }
  4455. },
  4456. hand: {
  4457. height: math.unit(0.6, "feet"),
  4458. name: "Hand",
  4459. image: {
  4460. source: "./media/characters/noah/hand.svg"
  4461. }
  4462. },
  4463. talons: {
  4464. height: math.unit(1.385, "feet"),
  4465. name: "Talons",
  4466. image: {
  4467. source: "./media/characters/noah/talons.svg"
  4468. }
  4469. },
  4470. beak: {
  4471. height: math.unit(0.43, "feet"),
  4472. name: "Beak",
  4473. image: {
  4474. source: "./media/characters/noah/beak.svg"
  4475. }
  4476. },
  4477. collar: {
  4478. height: math.unit(0.88, "feet"),
  4479. name: "Collar",
  4480. image: {
  4481. source: "./media/characters/noah/collar.svg"
  4482. }
  4483. },
  4484. eyeNarrow: {
  4485. height: math.unit(0.18, "feet"),
  4486. name: "Eye (Narrow)",
  4487. image: {
  4488. source: "./media/characters/noah/eye-narrow.svg"
  4489. }
  4490. },
  4491. eyeNormal: {
  4492. height: math.unit(0.18, "feet"),
  4493. name: "Eye (Normal)",
  4494. image: {
  4495. source: "./media/characters/noah/eye-normal.svg"
  4496. }
  4497. },
  4498. eyeWide: {
  4499. height: math.unit(0.18, "feet"),
  4500. name: "Eye (Wide)",
  4501. image: {
  4502. source: "./media/characters/noah/eye-wide.svg"
  4503. }
  4504. },
  4505. ear: {
  4506. height: math.unit(0.64, "feet"),
  4507. name: "Ear",
  4508. image: {
  4509. source: "./media/characters/noah/ear.svg"
  4510. }
  4511. },
  4512. },
  4513. [
  4514. {
  4515. name: "Large",
  4516. height: math.unit(50, "feet")
  4517. },
  4518. {
  4519. name: "Macro",
  4520. height: math.unit(750, "feet"),
  4521. default: true
  4522. },
  4523. {
  4524. name: "Megamacro",
  4525. height: math.unit(50, "miles")
  4526. },
  4527. {
  4528. name: "Gigamacro",
  4529. height: math.unit(100000, "miles")
  4530. },
  4531. {
  4532. name: "Full-Size",
  4533. height: math.unit(3000000000, "miles")
  4534. }
  4535. ]
  4536. ))
  4537. characterMakers.push(() => makeCharacter(
  4538. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4539. {
  4540. front: {
  4541. height: math.unit(2, "meter"),
  4542. weight: math.unit(80, "kg"),
  4543. name: "Front",
  4544. image: {
  4545. source: "./media/characters/natalya/front.svg"
  4546. }
  4547. },
  4548. back: {
  4549. height: math.unit(2, "meter"),
  4550. weight: math.unit(80, "kg"),
  4551. name: "Back",
  4552. image: {
  4553. source: "./media/characters/natalya/back.svg"
  4554. }
  4555. }
  4556. },
  4557. [
  4558. {
  4559. name: "Normal",
  4560. height: math.unit(150, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Megamacro",
  4565. height: math.unit(5, "miles")
  4566. },
  4567. {
  4568. name: "Full-Size",
  4569. height: math.unit(600, "kiloparsecs")
  4570. }
  4571. ]
  4572. ))
  4573. characterMakers.push(() => makeCharacter(
  4574. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4575. {
  4576. front: {
  4577. height: math.unit(2, "meter"),
  4578. weight: math.unit(50, "kg"),
  4579. name: "Front",
  4580. image: {
  4581. source: "./media/characters/erestrebah/front.svg",
  4582. extra: 1262/1162,
  4583. bottom: 96/1358
  4584. }
  4585. },
  4586. back: {
  4587. height: math.unit(2, "meter"),
  4588. weight: math.unit(50, "kg"),
  4589. name: "Back",
  4590. image: {
  4591. source: "./media/characters/erestrebah/back.svg",
  4592. extra: 1257/1139,
  4593. bottom: 13/1270
  4594. }
  4595. },
  4596. wing: {
  4597. height: math.unit(2, "meter"),
  4598. weight: math.unit(50, "kg"),
  4599. name: "Wing",
  4600. image: {
  4601. source: "./media/characters/erestrebah/wing.svg",
  4602. extra: 1262/1162,
  4603. bottom: 96/1358
  4604. }
  4605. },
  4606. mouth: {
  4607. height: math.unit(0.39, "feet"),
  4608. name: "Mouth",
  4609. image: {
  4610. source: "./media/characters/erestrebah/mouth.svg"
  4611. }
  4612. }
  4613. },
  4614. [
  4615. {
  4616. name: "Normal",
  4617. height: math.unit(10, "feet")
  4618. },
  4619. {
  4620. name: "Large",
  4621. height: math.unit(50, "feet"),
  4622. default: true
  4623. },
  4624. {
  4625. name: "Macro",
  4626. height: math.unit(300, "feet")
  4627. },
  4628. {
  4629. name: "Macro+",
  4630. height: math.unit(750, "feet")
  4631. },
  4632. {
  4633. name: "Megamacro",
  4634. height: math.unit(3, "miles")
  4635. }
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4640. {
  4641. front: {
  4642. height: math.unit(2, "meter"),
  4643. weight: math.unit(80, "kg"),
  4644. name: "Front",
  4645. image: {
  4646. source: "./media/characters/jennifer/front.svg",
  4647. bottom: 0.11,
  4648. extra: 1.16
  4649. }
  4650. },
  4651. frontAlt: {
  4652. height: math.unit(2, "meter"),
  4653. weight: math.unit(80, "kg"),
  4654. name: "Front (Alt)",
  4655. image: {
  4656. source: "./media/characters/jennifer/front-alt.svg"
  4657. }
  4658. }
  4659. },
  4660. [
  4661. {
  4662. name: "Canon Height",
  4663. height: math.unit(120, "feet"),
  4664. default: true
  4665. },
  4666. {
  4667. name: "Macro+",
  4668. height: math.unit(300, "feet")
  4669. },
  4670. {
  4671. name: "Megamacro",
  4672. height: math.unit(20000, "feet")
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(2, "meter"),
  4681. weight: math.unit(50, "kg"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/kalista/front.svg",
  4685. extra: 1314/1145,
  4686. bottom: 101/1415
  4687. }
  4688. },
  4689. back: {
  4690. height: math.unit(2, "meter"),
  4691. weight: math.unit(50, "kg"),
  4692. name: "Back",
  4693. image: {
  4694. source: "./media/characters/kalista/back.svg",
  4695. extra: 1366 / 1156,
  4696. bottom: 33.9 / 1362.78
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Uncomfortably Small",
  4703. height: math.unit(10, "feet")
  4704. },
  4705. {
  4706. name: "Small",
  4707. height: math.unit(30, "feet")
  4708. },
  4709. {
  4710. name: "Macro",
  4711. height: math.unit(100, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Macro+",
  4716. height: math.unit(2000, "feet")
  4717. },
  4718. {
  4719. name: "True Form",
  4720. height: math.unit(8924, "miles")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(2, "meter"),
  4729. weight: math.unit(120, "kg"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/ggv/front.svg"
  4733. }
  4734. },
  4735. side: {
  4736. height: math.unit(2, "meter"),
  4737. weight: math.unit(120, "kg"),
  4738. name: "Side",
  4739. image: {
  4740. source: "./media/characters/ggv/side.svg"
  4741. }
  4742. }
  4743. },
  4744. [
  4745. {
  4746. name: "Extremely Puny",
  4747. height: math.unit(9 + 5 / 12, "feet")
  4748. },
  4749. {
  4750. name: "Horribly Small",
  4751. height: math.unit(47.7, "miles"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Reasonably Sized",
  4756. height: math.unit(25000, "parsecs")
  4757. },
  4758. {
  4759. name: "Slightly Uncompressed",
  4760. height: math.unit(7.77e31, "parsecs")
  4761. },
  4762. {
  4763. name: "Omniversal",
  4764. height: math.unit(1e300, "meters")
  4765. },
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(2, "meter"),
  4773. weight: math.unit(75, "lb"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/napalm/front.svg"
  4777. }
  4778. },
  4779. back: {
  4780. height: math.unit(2, "meter"),
  4781. weight: math.unit(75, "lb"),
  4782. name: "Back",
  4783. image: {
  4784. source: "./media/characters/napalm/back.svg"
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Standard",
  4791. height: math.unit(55, "feet"),
  4792. default: true
  4793. }
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(7 + 5 / 6, "feet"),
  4801. weight: math.unit(325, "lb"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/asana/front.svg",
  4805. extra: 1133 / 1060,
  4806. bottom: 15.2 / 1148.6
  4807. }
  4808. },
  4809. back: {
  4810. height: math.unit(7 + 5 / 6, "feet"),
  4811. weight: math.unit(325, "lb"),
  4812. name: "Back",
  4813. image: {
  4814. source: "./media/characters/asana/back.svg",
  4815. extra: 1114 / 1043,
  4816. bottom: 5 / 1120
  4817. }
  4818. },
  4819. dressedDark: {
  4820. height: math.unit(7 + 5 / 6, "feet"),
  4821. weight: math.unit(325, "lb"),
  4822. name: "Dressed (Dark)",
  4823. image: {
  4824. source: "./media/characters/asana/dressed-dark.svg",
  4825. extra: 1133 / 1060,
  4826. bottom: 15.2 / 1148.6
  4827. }
  4828. },
  4829. dressedLight: {
  4830. height: math.unit(7 + 5 / 6, "feet"),
  4831. weight: math.unit(325, "lb"),
  4832. name: "Dressed (Light)",
  4833. image: {
  4834. source: "./media/characters/asana/dressed-light.svg",
  4835. extra: 1133 / 1060,
  4836. bottom: 15.2 / 1148.6
  4837. }
  4838. },
  4839. },
  4840. [
  4841. {
  4842. name: "Standard",
  4843. height: math.unit(7 + 5 / 6, "feet"),
  4844. default: true
  4845. },
  4846. {
  4847. name: "Large",
  4848. height: math.unit(10, "meters")
  4849. },
  4850. {
  4851. name: "Macro",
  4852. height: math.unit(2500, "meters")
  4853. },
  4854. {
  4855. name: "Megamacro",
  4856. height: math.unit(5e6, "meters")
  4857. },
  4858. {
  4859. name: "Examacro",
  4860. height: math.unit(5e12, "lightyears")
  4861. },
  4862. {
  4863. name: "Max Size",
  4864. height: math.unit(1e31, "lightyears")
  4865. }
  4866. ]
  4867. ))
  4868. characterMakers.push(() => makeCharacter(
  4869. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4870. {
  4871. front: {
  4872. height: math.unit(2, "meter"),
  4873. weight: math.unit(60, "kg"),
  4874. name: "Front",
  4875. image: {
  4876. source: "./media/characters/ebony/front.svg",
  4877. bottom: 0.03,
  4878. extra: 1045 / 810 + 0.03
  4879. }
  4880. },
  4881. side: {
  4882. height: math.unit(2, "meter"),
  4883. weight: math.unit(60, "kg"),
  4884. name: "Side",
  4885. image: {
  4886. source: "./media/characters/ebony/side.svg",
  4887. bottom: 0.03,
  4888. extra: 1045 / 810 + 0.03
  4889. }
  4890. },
  4891. back: {
  4892. height: math.unit(2, "meter"),
  4893. weight: math.unit(60, "kg"),
  4894. name: "Back",
  4895. image: {
  4896. source: "./media/characters/ebony/back.svg",
  4897. bottom: 0.01,
  4898. extra: 1045 / 810 + 0.01
  4899. }
  4900. },
  4901. },
  4902. [
  4903. // TODO check why I did this lol
  4904. {
  4905. name: "Standard",
  4906. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4907. default: true
  4908. },
  4909. {
  4910. name: "Macro",
  4911. height: math.unit(200, "feet")
  4912. },
  4913. {
  4914. name: "Gigamacro",
  4915. height: math.unit(13000, "km")
  4916. }
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4921. {
  4922. front: {
  4923. height: math.unit(6, "feet"),
  4924. weight: math.unit(175, "lb"),
  4925. name: "Front",
  4926. image: {
  4927. source: "./media/characters/mountain/front.svg",
  4928. extra: 972 / 955,
  4929. bottom: 64 / 1036.6
  4930. }
  4931. },
  4932. back: {
  4933. height: math.unit(6, "feet"),
  4934. weight: math.unit(175, "lb"),
  4935. name: "Back",
  4936. image: {
  4937. source: "./media/characters/mountain/back.svg",
  4938. extra: 970 / 950,
  4939. bottom: 28.25 / 999
  4940. }
  4941. },
  4942. },
  4943. [
  4944. {
  4945. name: "Large",
  4946. height: math.unit(20, "meters")
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(300, "meters")
  4951. },
  4952. {
  4953. name: "Gigamacro",
  4954. height: math.unit(10000, "km"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Examacro",
  4959. height: math.unit(10e9, "lightyears")
  4960. }
  4961. ]
  4962. ))
  4963. characterMakers.push(() => makeCharacter(
  4964. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4965. {
  4966. front: {
  4967. height: math.unit(8, "feet"),
  4968. weight: math.unit(500, "lb"),
  4969. name: "Front",
  4970. image: {
  4971. source: "./media/characters/rick/front.svg"
  4972. }
  4973. }
  4974. },
  4975. [
  4976. {
  4977. name: "Normal",
  4978. height: math.unit(8, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Macro",
  4983. height: math.unit(5, "km")
  4984. }
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(8, "feet"),
  4992. weight: math.unit(120, "lb"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/ona/front.svg"
  4996. }
  4997. },
  4998. frontAlt: {
  4999. height: math.unit(8, "feet"),
  5000. weight: math.unit(120, "lb"),
  5001. name: "Front (Alt)",
  5002. image: {
  5003. source: "./media/characters/ona/front-alt.svg"
  5004. }
  5005. },
  5006. back: {
  5007. height: math.unit(8, "feet"),
  5008. weight: math.unit(120, "lb"),
  5009. name: "Back",
  5010. image: {
  5011. source: "./media/characters/ona/back.svg"
  5012. }
  5013. },
  5014. foot: {
  5015. height: math.unit(1.1, "feet"),
  5016. name: "Foot",
  5017. image: {
  5018. source: "./media/characters/ona/foot.svg"
  5019. }
  5020. }
  5021. },
  5022. [
  5023. {
  5024. name: "Megamacro",
  5025. height: math.unit(70, "km"),
  5026. default: true
  5027. },
  5028. {
  5029. name: "Gigamacro",
  5030. height: math.unit(681818, "miles")
  5031. },
  5032. {
  5033. name: "Examacro",
  5034. height: math.unit(3800000, "lightyears")
  5035. },
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5040. {
  5041. front: {
  5042. height: math.unit(12, "feet"),
  5043. weight: math.unit(3000, "lb"),
  5044. name: "Front",
  5045. image: {
  5046. source: "./media/characters/mech/front.svg",
  5047. extra: 2900 / 2770,
  5048. bottom: 110 / 3010
  5049. }
  5050. },
  5051. back: {
  5052. height: math.unit(12, "feet"),
  5053. weight: math.unit(3000, "lb"),
  5054. name: "Back",
  5055. image: {
  5056. source: "./media/characters/mech/back.svg",
  5057. extra: 3011 / 2890,
  5058. bottom: 94 / 3105
  5059. }
  5060. },
  5061. maw: {
  5062. height: math.unit(3.07, "feet"),
  5063. name: "Maw",
  5064. image: {
  5065. source: "./media/characters/mech/maw.svg"
  5066. }
  5067. },
  5068. head: {
  5069. height: math.unit(3.07, "feet"),
  5070. name: "Head",
  5071. image: {
  5072. source: "./media/characters/mech/head.svg"
  5073. }
  5074. },
  5075. dick: {
  5076. height: math.unit(1.43, "feet"),
  5077. name: "Dick",
  5078. image: {
  5079. source: "./media/characters/mech/dick.svg"
  5080. }
  5081. },
  5082. },
  5083. [
  5084. {
  5085. name: "Normal",
  5086. height: math.unit(12, "feet")
  5087. },
  5088. {
  5089. name: "Macro",
  5090. height: math.unit(300, "feet"),
  5091. default: true
  5092. },
  5093. {
  5094. name: "Macro+",
  5095. height: math.unit(1500, "feet")
  5096. },
  5097. ]
  5098. ))
  5099. characterMakers.push(() => makeCharacter(
  5100. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5101. {
  5102. front: {
  5103. height: math.unit(1.3, "meter"),
  5104. weight: math.unit(30, "kg"),
  5105. name: "Front",
  5106. image: {
  5107. source: "./media/characters/gregory/front.svg",
  5108. }
  5109. }
  5110. },
  5111. [
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(1.3, "meter"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Macro",
  5119. height: math.unit(20, "meter")
  5120. }
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5125. {
  5126. front: {
  5127. height: math.unit(2.8, "meter"),
  5128. weight: math.unit(200, "kg"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/elory/front.svg",
  5132. }
  5133. }
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(2.8, "meter"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Macro",
  5143. height: math.unit(38, "meter")
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(470, "feet"),
  5152. weight: math.unit(924, "tons"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/angelpatamon/front.svg",
  5156. }
  5157. }
  5158. },
  5159. [
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(470, "feet"),
  5163. default: true
  5164. },
  5165. {
  5166. name: "Deity Size I",
  5167. height: math.unit(28651.2, "km")
  5168. },
  5169. {
  5170. name: "Deity Size II",
  5171. height: math.unit(171907.2, "km")
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5177. {
  5178. side: {
  5179. height: math.unit(7.2, "meter"),
  5180. weight: math.unit(8.2, "tons"),
  5181. name: "Side",
  5182. image: {
  5183. source: "./media/characters/cryae/side.svg",
  5184. extra: 3500 / 1500
  5185. }
  5186. }
  5187. },
  5188. [
  5189. {
  5190. name: "Normal",
  5191. height: math.unit(7.2, "meter"),
  5192. default: true
  5193. }
  5194. ]
  5195. ))
  5196. characterMakers.push(() => makeCharacter(
  5197. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5198. {
  5199. front: {
  5200. height: math.unit(6, "feet"),
  5201. weight: math.unit(175, "lb"),
  5202. name: "Front",
  5203. image: {
  5204. source: "./media/characters/xera/front.svg",
  5205. extra: 2377 / 1972,
  5206. bottom: 75.5 / 2452
  5207. }
  5208. },
  5209. side: {
  5210. height: math.unit(6, "feet"),
  5211. weight: math.unit(175, "lb"),
  5212. name: "Side",
  5213. image: {
  5214. source: "./media/characters/xera/side.svg",
  5215. extra: 2345 / 2019,
  5216. bottom: 39.7 / 2384
  5217. }
  5218. },
  5219. back: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(175, "lb"),
  5222. name: "Back",
  5223. image: {
  5224. source: "./media/characters/xera/back.svg",
  5225. extra: 2095 / 1984,
  5226. bottom: 67 / 2166
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Small",
  5233. height: math.unit(10, "feet")
  5234. },
  5235. {
  5236. name: "Macro",
  5237. height: math.unit(500, "meters"),
  5238. default: true
  5239. },
  5240. {
  5241. name: "Macro+",
  5242. height: math.unit(10, "km")
  5243. },
  5244. {
  5245. name: "Gigamacro",
  5246. height: math.unit(25000, "km")
  5247. },
  5248. {
  5249. name: "Teramacro",
  5250. height: math.unit(3e6, "km")
  5251. }
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5256. {
  5257. front: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(175, "lb"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/nebula/front.svg",
  5263. extra: 2566 / 2362,
  5264. bottom: 81 / 2644
  5265. }
  5266. }
  5267. },
  5268. [
  5269. {
  5270. name: "Small",
  5271. height: math.unit(4.5, "meters")
  5272. },
  5273. {
  5274. name: "Macro",
  5275. height: math.unit(1500, "meters"),
  5276. default: true
  5277. },
  5278. {
  5279. name: "Megamacro",
  5280. height: math.unit(150, "km")
  5281. },
  5282. {
  5283. name: "Gigamacro",
  5284. height: math.unit(27000, "km")
  5285. }
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5290. {
  5291. front: {
  5292. height: math.unit(6, "feet"),
  5293. weight: math.unit(225, "lb"),
  5294. name: "Front",
  5295. image: {
  5296. source: "./media/characters/abysgar/front.svg",
  5297. extra: 1739/1614,
  5298. bottom: 71/1810
  5299. }
  5300. },
  5301. frontNsfw: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(225, "lb"),
  5304. name: "Front (NSFW)",
  5305. image: {
  5306. source: "./media/characters/abysgar/front-nsfw.svg",
  5307. extra: 1739/1614,
  5308. bottom: 71/1810
  5309. }
  5310. },
  5311. back: {
  5312. height: math.unit(4.6, "feet"),
  5313. weight: math.unit(225, "lb"),
  5314. name: "Back",
  5315. image: {
  5316. source: "./media/characters/abysgar/back.svg",
  5317. extra: 1384/1327,
  5318. bottom: 0/1384
  5319. }
  5320. },
  5321. head: {
  5322. height: math.unit(1.25, "feet"),
  5323. name: "Head",
  5324. image: {
  5325. source: "./media/characters/abysgar/head.svg",
  5326. extra: 669/569,
  5327. bottom: 0/669
  5328. }
  5329. },
  5330. },
  5331. [
  5332. {
  5333. name: "Small",
  5334. height: math.unit(4.5, "meters")
  5335. },
  5336. {
  5337. name: "Macro",
  5338. height: math.unit(1250, "meters"),
  5339. default: true
  5340. },
  5341. {
  5342. name: "Megamacro",
  5343. height: math.unit(125, "km")
  5344. },
  5345. {
  5346. name: "Gigamacro",
  5347. height: math.unit(26000, "km")
  5348. }
  5349. ]
  5350. ))
  5351. characterMakers.push(() => makeCharacter(
  5352. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5353. {
  5354. front: {
  5355. height: math.unit(6, "feet"),
  5356. weight: math.unit(180, "lb"),
  5357. name: "Front",
  5358. image: {
  5359. source: "./media/characters/yakuz/front.svg"
  5360. }
  5361. }
  5362. },
  5363. [
  5364. {
  5365. name: "Small",
  5366. height: math.unit(5, "meters")
  5367. },
  5368. {
  5369. name: "Macro",
  5370. height: math.unit(1500, "meters"),
  5371. default: true
  5372. },
  5373. {
  5374. name: "Megamacro",
  5375. height: math.unit(200, "km")
  5376. },
  5377. {
  5378. name: "Gigamacro",
  5379. height: math.unit(100000, "km")
  5380. }
  5381. ]
  5382. ))
  5383. characterMakers.push(() => makeCharacter(
  5384. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5385. {
  5386. front: {
  5387. height: math.unit(6, "feet"),
  5388. weight: math.unit(175, "lb"),
  5389. name: "Front",
  5390. image: {
  5391. source: "./media/characters/mirova/front.svg",
  5392. extra: 3334 / 3071,
  5393. bottom: 42 / 3375.6
  5394. }
  5395. }
  5396. },
  5397. [
  5398. {
  5399. name: "Small",
  5400. height: math.unit(5, "meters")
  5401. },
  5402. {
  5403. name: "Macro",
  5404. height: math.unit(900, "meters"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Megamacro",
  5409. height: math.unit(135, "km")
  5410. },
  5411. {
  5412. name: "Gigamacro",
  5413. height: math.unit(20000, "km")
  5414. }
  5415. ]
  5416. ))
  5417. characterMakers.push(() => makeCharacter(
  5418. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5419. {
  5420. side: {
  5421. height: math.unit(28.35, "feet"),
  5422. weight: math.unit(99.75, "tons"),
  5423. name: "Side",
  5424. image: {
  5425. source: "./media/characters/asana-mech/side.svg",
  5426. extra: 923 / 699,
  5427. bottom: 50 / 975
  5428. }
  5429. },
  5430. chaingun: {
  5431. height: math.unit(7, "feet"),
  5432. weight: math.unit(2400, "lb"),
  5433. name: "Chaingun",
  5434. image: {
  5435. source: "./media/characters/asana-mech/chaingun.svg"
  5436. }
  5437. },
  5438. laser: {
  5439. height: math.unit(7.12, "feet"),
  5440. weight: math.unit(2000, "lb"),
  5441. name: "Laser",
  5442. image: {
  5443. source: "./media/characters/asana-mech/laser.svg"
  5444. }
  5445. },
  5446. },
  5447. [
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(28.35, "feet"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(2500, "feet")
  5456. },
  5457. {
  5458. name: "Megamacro",
  5459. height: math.unit(25, "miles")
  5460. },
  5461. {
  5462. name: "Examacro",
  5463. height: math.unit(6e8, "lightyears")
  5464. },
  5465. ]
  5466. ))
  5467. characterMakers.push(() => makeCharacter(
  5468. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5469. {
  5470. front: {
  5471. height: math.unit(5, "meters"),
  5472. weight: math.unit(1000, "kg"),
  5473. name: "Front",
  5474. image: {
  5475. source: "./media/characters/asche/front.svg",
  5476. extra: 1258 / 1190,
  5477. bottom: 47 / 1305
  5478. }
  5479. },
  5480. frontUnderwear: {
  5481. height: math.unit(5, "meters"),
  5482. weight: math.unit(1000, "kg"),
  5483. name: "Front (Underwear)",
  5484. image: {
  5485. source: "./media/characters/asche/front-underwear.svg",
  5486. extra: 1258 / 1190,
  5487. bottom: 47 / 1305
  5488. }
  5489. },
  5490. frontDressed: {
  5491. height: math.unit(5, "meters"),
  5492. weight: math.unit(1000, "kg"),
  5493. name: "Front (Dressed)",
  5494. image: {
  5495. source: "./media/characters/asche/front-dressed.svg",
  5496. extra: 1258 / 1190,
  5497. bottom: 47 / 1305
  5498. }
  5499. },
  5500. frontArmor: {
  5501. height: math.unit(5, "meters"),
  5502. weight: math.unit(1000, "kg"),
  5503. name: "Front (Armored)",
  5504. image: {
  5505. source: "./media/characters/asche/front-armored.svg",
  5506. extra: 1374 / 1308,
  5507. bottom: 23 / 1397
  5508. }
  5509. },
  5510. mp724: {
  5511. height: math.unit(0.96, "meters"),
  5512. weight: math.unit(38, "kg"),
  5513. name: "H&K MP724",
  5514. image: {
  5515. source: "./media/characters/asche/h&k-mp724.svg"
  5516. }
  5517. },
  5518. side: {
  5519. height: math.unit(5, "meters"),
  5520. weight: math.unit(1000, "kg"),
  5521. name: "Side",
  5522. image: {
  5523. source: "./media/characters/asche/side.svg",
  5524. extra: 1717 / 1609,
  5525. bottom: 0.005
  5526. }
  5527. },
  5528. back: {
  5529. height: math.unit(5, "meters"),
  5530. weight: math.unit(1000, "kg"),
  5531. name: "Back",
  5532. image: {
  5533. source: "./media/characters/asche/back.svg",
  5534. extra: 1570 / 1501
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "DEFCON 5",
  5541. height: math.unit(5, "meters")
  5542. },
  5543. {
  5544. name: "DEFCON 4",
  5545. height: math.unit(500, "meters"),
  5546. default: true
  5547. },
  5548. {
  5549. name: "DEFCON 3",
  5550. height: math.unit(5, "km")
  5551. },
  5552. {
  5553. name: "DEFCON 2",
  5554. height: math.unit(500, "km")
  5555. },
  5556. {
  5557. name: "DEFCON 1",
  5558. height: math.unit(500000, "km")
  5559. },
  5560. {
  5561. name: "DEFCON 0",
  5562. height: math.unit(3, "gigaparsecs")
  5563. },
  5564. ]
  5565. ))
  5566. characterMakers.push(() => makeCharacter(
  5567. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5568. {
  5569. front: {
  5570. height: math.unit(7, "feet"),
  5571. weight: math.unit(92.7, "kg"),
  5572. name: "Front",
  5573. image: {
  5574. source: "./media/characters/gale/front.svg",
  5575. extra: 977/919,
  5576. bottom: 105/1082
  5577. }
  5578. },
  5579. side: {
  5580. height: math.unit(6.7, "feet"),
  5581. weight: math.unit(92.7, "kg"),
  5582. name: "Side",
  5583. image: {
  5584. source: "./media/characters/gale/side.svg",
  5585. extra: 978/922,
  5586. bottom: 140/1118
  5587. }
  5588. },
  5589. back: {
  5590. height: math.unit(7, "feet"),
  5591. weight: math.unit(92.7, "kg"),
  5592. name: "Back",
  5593. image: {
  5594. source: "./media/characters/gale/back.svg",
  5595. extra: 966/920,
  5596. bottom: 61/1027
  5597. }
  5598. },
  5599. maw: {
  5600. height: math.unit(2.23, "feet"),
  5601. name: "Maw",
  5602. image: {
  5603. source: "./media/characters/gale/maw.svg"
  5604. }
  5605. },
  5606. foot: {
  5607. height: math.unit(2.1, "feet"),
  5608. name: "Foot",
  5609. image: {
  5610. source: "./media/characters/gale/foot.svg"
  5611. }
  5612. },
  5613. },
  5614. [
  5615. {
  5616. name: "Normal",
  5617. height: math.unit(7, "feet")
  5618. },
  5619. {
  5620. name: "Macro",
  5621. height: math.unit(150, "feet"),
  5622. default: true
  5623. },
  5624. {
  5625. name: "Macro+",
  5626. height: math.unit(300, "feet")
  5627. },
  5628. ]
  5629. ))
  5630. characterMakers.push(() => makeCharacter(
  5631. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5632. {
  5633. front: {
  5634. height: math.unit(5 + 10/12, "feet"),
  5635. weight: math.unit(67, "kg"),
  5636. name: "Front",
  5637. image: {
  5638. source: "./media/characters/draylen/front.svg",
  5639. extra: 832/777,
  5640. bottom: 85/917
  5641. }
  5642. }
  5643. },
  5644. [
  5645. {
  5646. name: "Normal",
  5647. height: math.unit(5 + 10/12, "feet")
  5648. },
  5649. {
  5650. name: "Macro",
  5651. height: math.unit(150, "feet"),
  5652. default: true
  5653. }
  5654. ]
  5655. ))
  5656. characterMakers.push(() => makeCharacter(
  5657. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5658. {
  5659. front: {
  5660. height: math.unit(7 + 9 / 12, "feet"),
  5661. weight: math.unit(379, "lbs"),
  5662. name: "Front",
  5663. image: {
  5664. source: "./media/characters/chez/front.svg"
  5665. }
  5666. },
  5667. side: {
  5668. height: math.unit(7 + 9 / 12, "feet"),
  5669. weight: math.unit(379, "lbs"),
  5670. name: "Side",
  5671. image: {
  5672. source: "./media/characters/chez/side.svg"
  5673. }
  5674. }
  5675. },
  5676. [
  5677. {
  5678. name: "Normal",
  5679. height: math.unit(7 + 9 / 12, "feet"),
  5680. default: true
  5681. },
  5682. {
  5683. name: "God King",
  5684. height: math.unit(9750000, "meters")
  5685. }
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5690. {
  5691. front: {
  5692. height: math.unit(6, "feet"),
  5693. weight: math.unit(275, "lbs"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/kaylum/front.svg",
  5697. bottom: 0.01,
  5698. extra: 1166 / 1031
  5699. }
  5700. },
  5701. frontWingless: {
  5702. height: math.unit(6, "feet"),
  5703. weight: math.unit(275, "lbs"),
  5704. name: "Front (Wingless)",
  5705. image: {
  5706. source: "./media/characters/kaylum/front-wingless.svg",
  5707. bottom: 0.01,
  5708. extra: 1117 / 1031
  5709. }
  5710. }
  5711. },
  5712. [
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(3.05, "meters")
  5716. },
  5717. {
  5718. name: "Master",
  5719. height: math.unit(5.5, "meters")
  5720. },
  5721. {
  5722. name: "Rampage",
  5723. height: math.unit(19, "meters")
  5724. },
  5725. {
  5726. name: "Macro Lite",
  5727. height: math.unit(37, "meters")
  5728. },
  5729. {
  5730. name: "Hyper Predator",
  5731. height: math.unit(61, "meters")
  5732. },
  5733. {
  5734. name: "Macro",
  5735. height: math.unit(138, "meters"),
  5736. default: true
  5737. }
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5742. {
  5743. front: {
  5744. height: math.unit(5 + 5 / 12, "feet"),
  5745. weight: math.unit(120, "lbs"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/geta/front.svg",
  5749. extra: 1003/933,
  5750. bottom: 21/1024
  5751. }
  5752. },
  5753. paw: {
  5754. height: math.unit(0.35, "feet"),
  5755. name: "Paw",
  5756. image: {
  5757. source: "./media/characters/geta/paw.svg"
  5758. }
  5759. },
  5760. },
  5761. [
  5762. {
  5763. name: "Micro",
  5764. height: math.unit(3, "inches"),
  5765. default: true
  5766. },
  5767. {
  5768. name: "Normal",
  5769. height: math.unit(5 + 5 / 12, "feet")
  5770. }
  5771. ]
  5772. ))
  5773. characterMakers.push(() => makeCharacter(
  5774. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5775. {
  5776. front: {
  5777. height: math.unit(6, "feet"),
  5778. weight: math.unit(300, "lbs"),
  5779. name: "Front",
  5780. image: {
  5781. source: "./media/characters/tyrnn/front.svg"
  5782. }
  5783. }
  5784. },
  5785. [
  5786. {
  5787. name: "Main Height",
  5788. height: math.unit(355, "feet"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "Fave. Height",
  5793. height: math.unit(2400, "feet")
  5794. }
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5799. {
  5800. front: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(300, "lbs"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/appledectomy/front.svg"
  5806. }
  5807. }
  5808. },
  5809. [
  5810. {
  5811. name: "Macro",
  5812. height: math.unit(2500, "feet")
  5813. },
  5814. {
  5815. name: "Megamacro",
  5816. height: math.unit(50, "miles"),
  5817. default: true
  5818. },
  5819. {
  5820. name: "Gigamacro",
  5821. height: math.unit(5000, "miles")
  5822. },
  5823. {
  5824. name: "Teramacro",
  5825. height: math.unit(250000, "miles")
  5826. },
  5827. ]
  5828. ))
  5829. characterMakers.push(() => makeCharacter(
  5830. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5831. {
  5832. front: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(200, "lbs"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/vulpes/front.svg",
  5838. extra: 573 / 543,
  5839. bottom: 0.033
  5840. }
  5841. },
  5842. side: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(200, "lbs"),
  5845. name: "Side",
  5846. image: {
  5847. source: "./media/characters/vulpes/side.svg",
  5848. extra: 577 / 549,
  5849. bottom: 11 / 588
  5850. }
  5851. },
  5852. back: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(200, "lbs"),
  5855. name: "Back",
  5856. image: {
  5857. source: "./media/characters/vulpes/back.svg",
  5858. extra: 573 / 549,
  5859. bottom: 20 / 593
  5860. }
  5861. },
  5862. feet: {
  5863. height: math.unit(1.276, "feet"),
  5864. name: "Feet",
  5865. image: {
  5866. source: "./media/characters/vulpes/feet.svg"
  5867. }
  5868. },
  5869. maw: {
  5870. height: math.unit(1.18, "feet"),
  5871. name: "Maw",
  5872. image: {
  5873. source: "./media/characters/vulpes/maw.svg"
  5874. }
  5875. },
  5876. },
  5877. [
  5878. {
  5879. name: "Micro",
  5880. height: math.unit(2, "inches")
  5881. },
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(6.3, "feet")
  5885. },
  5886. {
  5887. name: "Macro",
  5888. height: math.unit(850, "feet")
  5889. },
  5890. {
  5891. name: "Megamacro",
  5892. height: math.unit(7500, "feet"),
  5893. default: true
  5894. },
  5895. {
  5896. name: "Gigamacro",
  5897. height: math.unit(570000, "miles")
  5898. }
  5899. ]
  5900. ))
  5901. characterMakers.push(() => makeCharacter(
  5902. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5903. {
  5904. front: {
  5905. height: math.unit(6, "feet"),
  5906. weight: math.unit(210, "lbs"),
  5907. name: "Front",
  5908. image: {
  5909. source: "./media/characters/rain-fallen/front.svg"
  5910. }
  5911. },
  5912. side: {
  5913. height: math.unit(6, "feet"),
  5914. weight: math.unit(210, "lbs"),
  5915. name: "Side",
  5916. image: {
  5917. source: "./media/characters/rain-fallen/side.svg"
  5918. }
  5919. },
  5920. back: {
  5921. height: math.unit(6, "feet"),
  5922. weight: math.unit(210, "lbs"),
  5923. name: "Back",
  5924. image: {
  5925. source: "./media/characters/rain-fallen/back.svg"
  5926. }
  5927. },
  5928. feral: {
  5929. height: math.unit(9, "feet"),
  5930. weight: math.unit(700, "lbs"),
  5931. name: "Feral",
  5932. image: {
  5933. source: "./media/characters/rain-fallen/feral.svg"
  5934. }
  5935. },
  5936. },
  5937. [
  5938. {
  5939. name: "Meddling with Mortals",
  5940. height: math.unit(8 + 8/12, "feet")
  5941. },
  5942. {
  5943. name: "Normal",
  5944. height: math.unit(5, "meter")
  5945. },
  5946. {
  5947. name: "Macro",
  5948. height: math.unit(150, "meter"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Megamacro",
  5953. height: math.unit(278e6, "meter")
  5954. },
  5955. {
  5956. name: "Gigamacro",
  5957. height: math.unit(2e9, "meter")
  5958. },
  5959. {
  5960. name: "Teramacro",
  5961. height: math.unit(8e12, "meter")
  5962. },
  5963. {
  5964. name: "Devourer",
  5965. height: math.unit(14, "zettameters")
  5966. },
  5967. {
  5968. name: "Scarlet King",
  5969. height: math.unit(18, "yottameters")
  5970. },
  5971. {
  5972. name: "Void",
  5973. height: math.unit(1e88, "yottameters")
  5974. }
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5979. {
  5980. standing: {
  5981. height: math.unit(6, "feet"),
  5982. weight: math.unit(180, "lbs"),
  5983. name: "Standing",
  5984. image: {
  5985. source: "./media/characters/zaakira/standing.svg",
  5986. extra: 1599/1504,
  5987. bottom: 39/1638
  5988. }
  5989. },
  5990. laying: {
  5991. height: math.unit(3.3, "feet"),
  5992. weight: math.unit(180, "lbs"),
  5993. name: "Laying",
  5994. image: {
  5995. source: "./media/characters/zaakira/laying.svg"
  5996. }
  5997. },
  5998. },
  5999. [
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(12, "feet")
  6003. },
  6004. {
  6005. name: "Macro",
  6006. height: math.unit(279, "feet"),
  6007. default: true
  6008. }
  6009. ]
  6010. ))
  6011. characterMakers.push(() => makeCharacter(
  6012. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6013. {
  6014. femSfw: {
  6015. height: math.unit(8, "feet"),
  6016. weight: math.unit(350, "lb"),
  6017. name: "Fem",
  6018. image: {
  6019. source: "./media/characters/sigvald/fem-sfw.svg",
  6020. extra: 182 / 164,
  6021. bottom: 8.7 / 190.5
  6022. }
  6023. },
  6024. femNsfw: {
  6025. height: math.unit(8, "feet"),
  6026. weight: math.unit(350, "lb"),
  6027. name: "Fem (NSFW)",
  6028. image: {
  6029. source: "./media/characters/sigvald/fem-nsfw.svg",
  6030. extra: 182 / 164,
  6031. bottom: 8.7 / 190.5
  6032. }
  6033. },
  6034. maleNsfw: {
  6035. height: math.unit(8, "feet"),
  6036. weight: math.unit(350, "lb"),
  6037. name: "Male (NSFW)",
  6038. image: {
  6039. source: "./media/characters/sigvald/male-nsfw.svg",
  6040. extra: 182 / 164,
  6041. bottom: 8.7 / 190.5
  6042. }
  6043. },
  6044. hermNsfw: {
  6045. height: math.unit(8, "feet"),
  6046. weight: math.unit(350, "lb"),
  6047. name: "Herm (NSFW)",
  6048. image: {
  6049. source: "./media/characters/sigvald/herm-nsfw.svg",
  6050. extra: 182 / 164,
  6051. bottom: 8.7 / 190.5
  6052. }
  6053. },
  6054. dick: {
  6055. height: math.unit(2.36, "feet"),
  6056. name: "Dick",
  6057. image: {
  6058. source: "./media/characters/sigvald/dick.svg"
  6059. }
  6060. },
  6061. eye: {
  6062. height: math.unit(0.31, "feet"),
  6063. name: "Eye",
  6064. image: {
  6065. source: "./media/characters/sigvald/eye.svg"
  6066. }
  6067. },
  6068. mouth: {
  6069. height: math.unit(0.92, "feet"),
  6070. name: "Mouth",
  6071. image: {
  6072. source: "./media/characters/sigvald/mouth.svg"
  6073. }
  6074. },
  6075. paws: {
  6076. height: math.unit(2.2, "feet"),
  6077. name: "Paws",
  6078. image: {
  6079. source: "./media/characters/sigvald/paws.svg"
  6080. }
  6081. }
  6082. },
  6083. [
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(8, "feet")
  6087. },
  6088. {
  6089. name: "Large",
  6090. height: math.unit(12, "feet")
  6091. },
  6092. {
  6093. name: "Larger",
  6094. height: math.unit(20, "feet")
  6095. },
  6096. {
  6097. name: "Macro",
  6098. height: math.unit(150, "feet")
  6099. },
  6100. {
  6101. name: "Macro+",
  6102. height: math.unit(200, "feet"),
  6103. default: true
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6109. {
  6110. side: {
  6111. height: math.unit(12, "feet"),
  6112. weight: math.unit(2000, "kg"),
  6113. name: "Side",
  6114. image: {
  6115. source: "./media/characters/scott/side.svg",
  6116. extra: 754 / 724,
  6117. bottom: 0.069
  6118. }
  6119. },
  6120. upright: {
  6121. height: math.unit(12, "feet"),
  6122. weight: math.unit(2000, "kg"),
  6123. name: "Upright",
  6124. image: {
  6125. source: "./media/characters/scott/upright.svg",
  6126. extra: 3881 / 3722,
  6127. bottom: 0.05
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(12, "feet"),
  6135. default: true
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6141. {
  6142. side: {
  6143. height: math.unit(8, "meters"),
  6144. weight: math.unit(84755, "lbs"),
  6145. name: "Side",
  6146. image: {
  6147. source: "./media/characters/tobias/side.svg",
  6148. extra: 1474 / 1096,
  6149. bottom: 38.9 / 1513.1235
  6150. }
  6151. },
  6152. maw: {
  6153. height: math.unit(2.3, "meters"),
  6154. name: "Maw",
  6155. image: {
  6156. source: "./media/characters/tobias/maw.svg"
  6157. }
  6158. },
  6159. burp: {
  6160. height: math.unit(2.85, "meters"),
  6161. name: "Burp",
  6162. image: {
  6163. source: "./media/characters/tobias/burp.svg"
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(8, "meters"),
  6171. default: true
  6172. },
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6177. {
  6178. front: {
  6179. height: math.unit(5.5, "feet"),
  6180. weight: math.unit(400, "lbs"),
  6181. name: "Front",
  6182. image: {
  6183. source: "./media/characters/kieran/front.svg",
  6184. extra: 2694 / 2364,
  6185. bottom: 217 / 2908
  6186. }
  6187. },
  6188. side: {
  6189. height: math.unit(5.5, "feet"),
  6190. weight: math.unit(400, "lbs"),
  6191. name: "Side",
  6192. image: {
  6193. source: "./media/characters/kieran/side.svg",
  6194. extra: 875 / 777,
  6195. bottom: 84.6 / 959
  6196. }
  6197. },
  6198. },
  6199. [
  6200. {
  6201. name: "Normal",
  6202. height: math.unit(5.5, "feet"),
  6203. default: true
  6204. },
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6209. {
  6210. side: {
  6211. height: math.unit(2, "meters"),
  6212. weight: math.unit(70, "kg"),
  6213. name: "Side",
  6214. image: {
  6215. source: "./media/characters/sanya/side.svg",
  6216. bottom: 0.02,
  6217. extra: 1.02
  6218. }
  6219. },
  6220. },
  6221. [
  6222. {
  6223. name: "Small",
  6224. height: math.unit(2, "meters")
  6225. },
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(3, "meters")
  6229. },
  6230. {
  6231. name: "Macro",
  6232. height: math.unit(16, "meters"),
  6233. default: true
  6234. },
  6235. ]
  6236. ))
  6237. characterMakers.push(() => makeCharacter(
  6238. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6239. {
  6240. front: {
  6241. height: math.unit(2, "meters"),
  6242. weight: math.unit(120, "kg"),
  6243. name: "Front",
  6244. image: {
  6245. source: "./media/characters/miranda/front.svg",
  6246. extra: 195 / 185,
  6247. bottom: 10.9 / 206.5
  6248. }
  6249. },
  6250. back: {
  6251. height: math.unit(2, "meters"),
  6252. weight: math.unit(120, "kg"),
  6253. name: "Back",
  6254. image: {
  6255. source: "./media/characters/miranda/back.svg",
  6256. extra: 201 / 193,
  6257. bottom: 2.3 / 203.7
  6258. }
  6259. },
  6260. },
  6261. [
  6262. {
  6263. name: "Normal",
  6264. height: math.unit(10, "feet"),
  6265. default: true
  6266. }
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "James", species: ["deer"], tags: ["anthro"] },
  6271. {
  6272. side: {
  6273. height: math.unit(2, "meters"),
  6274. weight: math.unit(100, "kg"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/james/front.svg",
  6278. extra: 10 / 8.5
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(8.5, "feet"),
  6286. default: true
  6287. }
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6292. {
  6293. side: {
  6294. height: math.unit(9.5, "feet"),
  6295. weight: math.unit(2500, "lbs"),
  6296. name: "Side",
  6297. image: {
  6298. source: "./media/characters/heather/side.svg"
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(9.5, "feet"),
  6306. default: true
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6312. {
  6313. side: {
  6314. height: math.unit(6.5, "feet"),
  6315. weight: math.unit(400, "lbs"),
  6316. name: "Side",
  6317. image: {
  6318. source: "./media/characters/lukas/side.svg",
  6319. extra: 7.25 / 6.5
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Normal",
  6326. height: math.unit(6.5, "feet"),
  6327. default: true
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6333. {
  6334. side: {
  6335. height: math.unit(5, "feet"),
  6336. weight: math.unit(3000, "lbs"),
  6337. name: "Side",
  6338. image: {
  6339. source: "./media/characters/louise/side.svg"
  6340. }
  6341. },
  6342. },
  6343. [
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(5, "feet"),
  6347. default: true
  6348. }
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6353. {
  6354. side: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(150, "lbs"),
  6357. name: "Side",
  6358. image: {
  6359. source: "./media/characters/ramona/side.svg",
  6360. extra: 871/854,
  6361. bottom: 41/912
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Normal",
  6368. height: math.unit(6 + 4/12, "feet")
  6369. },
  6370. {
  6371. name: "Minimacro",
  6372. height: math.unit(5.3, "meters"),
  6373. default: true
  6374. },
  6375. {
  6376. name: "Macro",
  6377. height: math.unit(20, "stories")
  6378. },
  6379. {
  6380. name: "Macro+",
  6381. height: math.unit(50, "stories")
  6382. },
  6383. ]
  6384. ))
  6385. characterMakers.push(() => makeCharacter(
  6386. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6387. {
  6388. standing: {
  6389. height: math.unit(5.75, "feet"),
  6390. weight: math.unit(160, "lbs"),
  6391. name: "Standing",
  6392. image: {
  6393. source: "./media/characters/deerpuff/standing.svg",
  6394. extra: 682 / 624
  6395. }
  6396. },
  6397. sitting: {
  6398. height: math.unit(5.75 / 1.79, "feet"),
  6399. weight: math.unit(160, "lbs"),
  6400. name: "Sitting",
  6401. image: {
  6402. source: "./media/characters/deerpuff/sitting.svg",
  6403. bottom: 44 / 400,
  6404. extra: 1
  6405. }
  6406. },
  6407. taurLaying: {
  6408. height: math.unit(6, "feet"),
  6409. weight: math.unit(400, "lbs"),
  6410. name: "Taur (Laying)",
  6411. image: {
  6412. source: "./media/characters/deerpuff/taur-laying.svg"
  6413. }
  6414. },
  6415. },
  6416. [
  6417. {
  6418. name: "Puffball",
  6419. height: math.unit(6, "inches")
  6420. },
  6421. {
  6422. name: "Normalpuff",
  6423. height: math.unit(5.75, "feet")
  6424. },
  6425. {
  6426. name: "Macropuff",
  6427. height: math.unit(1500, "feet"),
  6428. default: true
  6429. },
  6430. {
  6431. name: "Megapuff",
  6432. height: math.unit(500, "miles")
  6433. },
  6434. {
  6435. name: "Gigapuff",
  6436. height: math.unit(250000, "miles")
  6437. },
  6438. {
  6439. name: "Omegapuff",
  6440. height: math.unit(1000, "lightyears")
  6441. },
  6442. ]
  6443. ))
  6444. characterMakers.push(() => makeCharacter(
  6445. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6446. {
  6447. stomping: {
  6448. height: math.unit(6, "feet"),
  6449. weight: math.unit(170, "lbs"),
  6450. name: "Stomping",
  6451. image: {
  6452. source: "./media/characters/vivian/stomping.svg"
  6453. }
  6454. },
  6455. sitting: {
  6456. height: math.unit(6 / 1.75, "feet"),
  6457. weight: math.unit(170, "lbs"),
  6458. name: "Sitting",
  6459. image: {
  6460. source: "./media/characters/vivian/sitting.svg",
  6461. bottom: 1 / 6.4,
  6462. extra: 1,
  6463. }
  6464. },
  6465. },
  6466. [
  6467. {
  6468. name: "Normal",
  6469. height: math.unit(7, "feet"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(10, "stories")
  6475. },
  6476. {
  6477. name: "Macro+",
  6478. height: math.unit(30, "stories")
  6479. },
  6480. {
  6481. name: "Megamacro",
  6482. height: math.unit(10, "miles")
  6483. },
  6484. {
  6485. name: "Megamacro+",
  6486. height: math.unit(2750000, "meters")
  6487. },
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(6, "feet"),
  6495. weight: math.unit(160, "lbs"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/prince/front.svg",
  6499. extra: 1938/1682,
  6500. bottom: 45/1983
  6501. }
  6502. },
  6503. back: {
  6504. height: math.unit(6, "feet"),
  6505. weight: math.unit(160, "lbs"),
  6506. name: "Back",
  6507. image: {
  6508. source: "./media/characters/prince/back.svg",
  6509. extra: 1955/1726,
  6510. bottom: 6/1961
  6511. }
  6512. },
  6513. },
  6514. [
  6515. {
  6516. name: "Normal",
  6517. height: math.unit(7.75, "feet"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Not cute",
  6522. height: math.unit(17, "feet")
  6523. },
  6524. {
  6525. name: "I said NOT",
  6526. height: math.unit(91, "feet")
  6527. },
  6528. {
  6529. name: "Please stop",
  6530. height: math.unit(560, "feet")
  6531. },
  6532. {
  6533. name: "What have you done",
  6534. height: math.unit(2200, "feet")
  6535. },
  6536. {
  6537. name: "Deer God",
  6538. height: math.unit(3.6, "miles")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6544. {
  6545. standing: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(300, "lbs"),
  6548. name: "Standing",
  6549. image: {
  6550. source: "./media/characters/psymon/standing.svg",
  6551. extra: 1888 / 1810,
  6552. bottom: 0.05
  6553. }
  6554. },
  6555. slithering: {
  6556. height: math.unit(6, "feet"),
  6557. weight: math.unit(300, "lbs"),
  6558. name: "Slithering",
  6559. image: {
  6560. source: "./media/characters/psymon/slithering.svg",
  6561. extra: 1330 / 1224
  6562. }
  6563. },
  6564. slitheringAlt: {
  6565. height: math.unit(6, "feet"),
  6566. weight: math.unit(300, "lbs"),
  6567. name: "Slithering (Alt)",
  6568. image: {
  6569. source: "./media/characters/psymon/slithering-alt.svg",
  6570. extra: 1330 / 1224
  6571. }
  6572. },
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(11.25, "feet"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Large",
  6582. height: math.unit(27, "feet")
  6583. },
  6584. {
  6585. name: "Giant",
  6586. height: math.unit(87, "feet")
  6587. },
  6588. {
  6589. name: "Macro",
  6590. height: math.unit(365, "feet")
  6591. },
  6592. {
  6593. name: "Megamacro",
  6594. height: math.unit(3, "miles")
  6595. },
  6596. {
  6597. name: "World Serpent",
  6598. height: math.unit(8000, "miles")
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(180, "lbs"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/daimos/front.svg",
  6611. extra: 4160 / 3897,
  6612. bottom: 0.021
  6613. }
  6614. }
  6615. },
  6616. [
  6617. {
  6618. name: "Normal",
  6619. height: math.unit(8, "feet"),
  6620. default: true
  6621. },
  6622. {
  6623. name: "Big Dog",
  6624. height: math.unit(22, "feet")
  6625. },
  6626. {
  6627. name: "Macro",
  6628. height: math.unit(127, "feet")
  6629. },
  6630. {
  6631. name: "Megamacro",
  6632. height: math.unit(3600, "feet")
  6633. },
  6634. ]
  6635. ))
  6636. characterMakers.push(() => makeCharacter(
  6637. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6638. {
  6639. side: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(180, "lbs"),
  6642. name: "Side",
  6643. image: {
  6644. source: "./media/characters/blake/side.svg",
  6645. extra: 1212 / 1120,
  6646. bottom: 0.05
  6647. }
  6648. },
  6649. crouched: {
  6650. height: math.unit(6 * 0.57, "feet"),
  6651. weight: math.unit(180, "lbs"),
  6652. name: "Crouched",
  6653. image: {
  6654. source: "./media/characters/blake/crouched.svg",
  6655. extra: 840 / 587,
  6656. bottom: 0.04
  6657. }
  6658. },
  6659. bent: {
  6660. height: math.unit(6 * 0.75, "feet"),
  6661. weight: math.unit(180, "lbs"),
  6662. name: "Bent",
  6663. image: {
  6664. source: "./media/characters/blake/bent.svg",
  6665. extra: 592 / 544,
  6666. bottom: 0.035
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Normal",
  6673. height: math.unit(8 + 1 / 6, "feet"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Big Backside",
  6678. height: math.unit(37, "feet")
  6679. },
  6680. {
  6681. name: "Subway Shredder",
  6682. height: math.unit(72, "feet")
  6683. },
  6684. {
  6685. name: "City Carver",
  6686. height: math.unit(1675, "feet")
  6687. },
  6688. {
  6689. name: "Tectonic Tweaker",
  6690. height: math.unit(2300, "miles")
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(180, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/guisetto/front.svg",
  6703. extra: 856 / 817,
  6704. bottom: 0.06
  6705. }
  6706. },
  6707. airborne: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(180, "lbs"),
  6710. name: "Airborne",
  6711. image: {
  6712. source: "./media/characters/guisetto/airborne.svg",
  6713. extra: 584 / 525
  6714. }
  6715. },
  6716. },
  6717. [
  6718. {
  6719. name: "Normal",
  6720. height: math.unit(10 + 11 / 12, "feet"),
  6721. default: true
  6722. },
  6723. {
  6724. name: "Large",
  6725. height: math.unit(35, "feet")
  6726. },
  6727. {
  6728. name: "Macro",
  6729. height: math.unit(475, "feet")
  6730. },
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6735. {
  6736. front: {
  6737. height: math.unit(6, "feet"),
  6738. weight: math.unit(180, "lbs"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/luxor/front.svg",
  6742. extra: 2940 / 2152
  6743. }
  6744. },
  6745. back: {
  6746. height: math.unit(6, "feet"),
  6747. weight: math.unit(180, "lbs"),
  6748. name: "Back",
  6749. image: {
  6750. source: "./media/characters/luxor/back.svg",
  6751. extra: 1083 / 960
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(5 + 5 / 6, "feet"),
  6759. default: true
  6760. },
  6761. {
  6762. name: "Lamp",
  6763. height: math.unit(50, "feet")
  6764. },
  6765. {
  6766. name: "Lämp",
  6767. height: math.unit(300, "feet")
  6768. },
  6769. {
  6770. name: "The sun is a lamp",
  6771. height: math.unit(250000, "miles")
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(50, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/huoyan/front.svg"
  6784. }
  6785. },
  6786. side: {
  6787. height: math.unit(6, "feet"),
  6788. weight: math.unit(180, "lbs"),
  6789. name: "Side",
  6790. image: {
  6791. source: "./media/characters/huoyan/side.svg"
  6792. }
  6793. },
  6794. },
  6795. [
  6796. {
  6797. name: "Chef",
  6798. height: math.unit(9, "feet")
  6799. },
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(65, "feet"),
  6803. default: true
  6804. },
  6805. {
  6806. name: "Macro",
  6807. height: math.unit(780, "feet")
  6808. },
  6809. {
  6810. name: "Flaming Mountain",
  6811. height: math.unit(4.8, "miles")
  6812. },
  6813. {
  6814. name: "Celestial",
  6815. height: math.unit(765000, "miles")
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(5 + 3 / 4, "feet"),
  6824. weight: math.unit(120, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/tails/front.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(5 + 3 / 4, "feet"),
  6835. default: true
  6836. }
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(4, "feet"),
  6844. weight: math.unit(50, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/rainy/front.svg"
  6848. }
  6849. }
  6850. },
  6851. [
  6852. {
  6853. name: "Macro",
  6854. height: math.unit(800, "feet"),
  6855. default: true
  6856. }
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(150, "lbs"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/rainier/front.svg"
  6868. }
  6869. }
  6870. },
  6871. [
  6872. {
  6873. name: "Micro",
  6874. height: math.unit(2, "mm"),
  6875. default: true
  6876. }
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(8 + 4/12, "feet"),
  6884. weight: math.unit(450, "kilograms"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/andy-renard/front.svg",
  6888. extra: 862/809,
  6889. bottom: 85/947
  6890. },
  6891. extraAttributes: {
  6892. "pawSize": {
  6893. name: "Paw Size",
  6894. power: 2,
  6895. type: "area",
  6896. base: math.unit(0.45*0.3, "meters^2")
  6897. },
  6898. "handSize": {
  6899. name: "Hand Size",
  6900. power: 2,
  6901. type: "area",
  6902. base: math.unit(0.4 * 0.3, "meters^2")
  6903. },
  6904. "cockSize": {
  6905. name: "Cock Length",
  6906. power: 1,
  6907. type: "length",
  6908. base: math.unit(0.75, "meters")
  6909. },
  6910. "ballDiameter": {
  6911. name: "Ball Diameter",
  6912. power: 1,
  6913. type: "length",
  6914. base: math.unit(0.3, "meters")
  6915. },
  6916. "ballVolume": {
  6917. name: "Ball Volume",
  6918. power: 3,
  6919. type: "volume",
  6920. base: math.unit(0.01413716694, "meters^3")
  6921. },
  6922. }
  6923. },
  6924. back: {
  6925. height: math.unit(8 + 4/12, "feet"),
  6926. weight: math.unit(450, "kilograms"),
  6927. name: "Back",
  6928. image: {
  6929. source: "./media/characters/andy-renard/back.svg",
  6930. extra: 1112/1033,
  6931. bottom: 64/1176
  6932. },
  6933. extraAttributes: {
  6934. "pawSize": {
  6935. name: "Paw Size",
  6936. power: 2,
  6937. type: "area",
  6938. base: math.unit(0.45*0.3, "meters^2")
  6939. },
  6940. "handSize": {
  6941. name: "Hand Size",
  6942. power: 2,
  6943. type: "area",
  6944. base: math.unit(0.4 * 0.3, "meters^2")
  6945. },
  6946. "cockSize": {
  6947. name: "Cock Length",
  6948. power: 1,
  6949. type: "length",
  6950. base: math.unit(0.75, "meters")
  6951. },
  6952. "ballDiameter": {
  6953. name: "Ball Diameter",
  6954. power: 1,
  6955. type: "length",
  6956. base: math.unit(0.3, "meters")
  6957. },
  6958. "ballVolume": {
  6959. name: "Ball Volume",
  6960. power: 3,
  6961. type: "volume",
  6962. base: math.unit(0.01413716694, "meters^3")
  6963. },
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Tall",
  6970. height: math.unit(6 + 8/12, "feet")
  6971. },
  6972. {
  6973. name: "Very Tall",
  6974. height: math.unit(8 + 4/12, "feet")
  6975. },
  6976. {
  6977. name: "Mini Macro",
  6978. height: math.unit(15, "feet"),
  6979. default: true
  6980. },
  6981. {
  6982. name: "Giant",
  6983. height: math.unit(50, "feet")
  6984. },
  6985. {
  6986. name: "Nice",
  6987. height: math.unit(69, "feet")
  6988. },
  6989. {
  6990. name: "Macro",
  6991. height: math.unit(100, "feet")
  6992. },
  6993. {
  6994. name: "Enormous",
  6995. height: math.unit(500, "feet")
  6996. },
  6997. {
  6998. name: "Gargantuan",
  6999. height: math.unit(1000, "feet")
  7000. },
  7001. {
  7002. name: "Mega",
  7003. height: math.unit(1, "mile")
  7004. },
  7005. {
  7006. name: "Giga",
  7007. height: math.unit(50, "miles")
  7008. },
  7009. {
  7010. name: "Tera",
  7011. height: math.unit(1000, "miles")
  7012. },
  7013. {
  7014. name: "Cosmic",
  7015. height: math.unit(1.5, "galaxies")
  7016. },
  7017. {
  7018. name: "God",
  7019. height: math.unit(1.5, "universes")
  7020. },
  7021. {
  7022. name: "Chief Execute God",
  7023. height: math.unit(1.5, "multiverses")
  7024. },
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(210, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/cimmaron/front-sfw.svg",
  7036. extra: 701 / 676,
  7037. bottom: 0.046
  7038. }
  7039. },
  7040. back: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(210, "lbs"),
  7043. name: "Back",
  7044. image: {
  7045. source: "./media/characters/cimmaron/back-sfw.svg",
  7046. extra: 701 / 676,
  7047. bottom: 0.046
  7048. }
  7049. },
  7050. frontNsfw: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(210, "lbs"),
  7053. name: "Front (NSFW)",
  7054. image: {
  7055. source: "./media/characters/cimmaron/front-nsfw.svg",
  7056. extra: 701 / 676,
  7057. bottom: 0.046
  7058. }
  7059. },
  7060. backNsfw: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(210, "lbs"),
  7063. name: "Back (NSFW)",
  7064. image: {
  7065. source: "./media/characters/cimmaron/back-nsfw.svg",
  7066. extra: 701 / 676,
  7067. bottom: 0.046
  7068. }
  7069. },
  7070. dick: {
  7071. height: math.unit(1.714, "feet"),
  7072. name: "Dick",
  7073. image: {
  7074. source: "./media/characters/cimmaron/dick.svg"
  7075. }
  7076. },
  7077. },
  7078. [
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(6, "feet"),
  7082. default: true
  7083. },
  7084. {
  7085. name: "Macro Mayor",
  7086. height: math.unit(350, "meters")
  7087. },
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7092. {
  7093. front: {
  7094. height: math.unit(6, "feet"),
  7095. weight: math.unit(200, "lbs"),
  7096. name: "Front",
  7097. image: {
  7098. source: "./media/characters/akari/front.svg",
  7099. extra: 962 / 901,
  7100. bottom: 0.04
  7101. }
  7102. }
  7103. },
  7104. [
  7105. {
  7106. name: "Micro",
  7107. height: math.unit(5, "inches"),
  7108. default: true
  7109. },
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(7, "feet")
  7113. },
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7118. {
  7119. front: {
  7120. height: math.unit(6, "feet"),
  7121. weight: math.unit(140, "lbs"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/cynosura/front.svg",
  7125. extra: 437/410,
  7126. bottom: 9/446
  7127. }
  7128. },
  7129. back: {
  7130. height: math.unit(6, "feet"),
  7131. weight: math.unit(140, "lbs"),
  7132. name: "Back",
  7133. image: {
  7134. source: "./media/characters/cynosura/back.svg",
  7135. extra: 1304/1160,
  7136. bottom: 71/1375
  7137. }
  7138. },
  7139. },
  7140. [
  7141. {
  7142. name: "Micro",
  7143. height: math.unit(4, "inches")
  7144. },
  7145. {
  7146. name: "Normal",
  7147. height: math.unit(5.75, "feet"),
  7148. default: true
  7149. },
  7150. {
  7151. name: "Tall",
  7152. height: math.unit(10, "feet")
  7153. },
  7154. {
  7155. name: "Big",
  7156. height: math.unit(20, "feet")
  7157. },
  7158. {
  7159. name: "Macro",
  7160. height: math.unit(50, "feet")
  7161. },
  7162. ]
  7163. ))
  7164. characterMakers.push(() => makeCharacter(
  7165. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7166. {
  7167. front: {
  7168. height: math.unit(13 + 2/12, "feet"),
  7169. weight: math.unit(800, "kg"),
  7170. name: "Front",
  7171. image: {
  7172. source: "./media/characters/gin/front.svg",
  7173. extra: 1312/1191,
  7174. bottom: 45/1357
  7175. }
  7176. },
  7177. mouth: {
  7178. height: math.unit(2.39 * 1.8, "feet"),
  7179. name: "Mouth",
  7180. image: {
  7181. source: "./media/characters/gin/mouth.svg"
  7182. }
  7183. },
  7184. hand: {
  7185. height: math.unit(1.57 * 2.19, "feet"),
  7186. name: "Hand",
  7187. image: {
  7188. source: "./media/characters/gin/hand.svg"
  7189. }
  7190. },
  7191. foot: {
  7192. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7193. name: "Foot",
  7194. image: {
  7195. source: "./media/characters/gin/foot.svg"
  7196. }
  7197. },
  7198. sole: {
  7199. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7200. name: "Sole",
  7201. image: {
  7202. source: "./media/characters/gin/sole.svg"
  7203. }
  7204. },
  7205. },
  7206. [
  7207. {
  7208. name: "Very Small",
  7209. height: math.unit(13 + 2 / 12, "feet")
  7210. },
  7211. {
  7212. name: "Micro",
  7213. height: math.unit(600, "miles")
  7214. },
  7215. {
  7216. name: "Regular",
  7217. height: math.unit(20, "earths"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Macro",
  7222. height: math.unit(2.2, "solarradii")
  7223. },
  7224. {
  7225. name: "Teramacro",
  7226. height: math.unit(1.2, "galaxies")
  7227. },
  7228. {
  7229. name: "Omegamacro",
  7230. height: math.unit(200, "universes")
  7231. },
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7236. {
  7237. front: {
  7238. height: math.unit(6 + 1 / 6, "feet"),
  7239. weight: math.unit(178, "lbs"),
  7240. name: "Front",
  7241. image: {
  7242. source: "./media/characters/guy/front.svg"
  7243. }
  7244. }
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(6 + 1 / 6, "feet"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Large",
  7254. height: math.unit(25 + 7 / 12, "feet")
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(60 + 9 / 12, "feet")
  7259. },
  7260. {
  7261. name: "Macro+",
  7262. height: math.unit(246, "feet")
  7263. },
  7264. {
  7265. name: "Macro++",
  7266. height: math.unit(878, "feet")
  7267. }
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(9, "feet"),
  7275. weight: math.unit(800, "lbs"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/tiberius/front.svg",
  7279. extra: 2295 / 2071
  7280. }
  7281. },
  7282. back: {
  7283. height: math.unit(9, "feet"),
  7284. weight: math.unit(800, "lbs"),
  7285. name: "Back",
  7286. image: {
  7287. source: "./media/characters/tiberius/back.svg",
  7288. extra: 2373 / 2160
  7289. }
  7290. },
  7291. },
  7292. [
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(9, "feet"),
  7296. default: true
  7297. }
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7302. {
  7303. front: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(600, "lbs"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/surgo/front.svg",
  7309. extra: 3591 / 2227
  7310. }
  7311. },
  7312. back: {
  7313. height: math.unit(6, "feet"),
  7314. weight: math.unit(600, "lbs"),
  7315. name: "Back",
  7316. image: {
  7317. source: "./media/characters/surgo/back.svg",
  7318. extra: 3557 / 2228
  7319. }
  7320. },
  7321. laying: {
  7322. height: math.unit(6 * 0.85, "feet"),
  7323. weight: math.unit(600, "lbs"),
  7324. name: "Laying",
  7325. image: {
  7326. source: "./media/characters/surgo/laying.svg"
  7327. }
  7328. },
  7329. },
  7330. [
  7331. {
  7332. name: "Normal",
  7333. height: math.unit(6, "feet"),
  7334. default: true
  7335. }
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7340. {
  7341. side: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(150, "lbs"),
  7344. name: "Side",
  7345. image: {
  7346. source: "./media/characters/cibus/side.svg",
  7347. extra: 800 / 400
  7348. }
  7349. },
  7350. },
  7351. [
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(6, "feet"),
  7355. default: true
  7356. }
  7357. ]
  7358. ))
  7359. characterMakers.push(() => makeCharacter(
  7360. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7361. {
  7362. front: {
  7363. height: math.unit(6, "feet"),
  7364. weight: math.unit(240, "lbs"),
  7365. name: "Front",
  7366. image: {
  7367. source: "./media/characters/nibbles/front.svg"
  7368. }
  7369. },
  7370. side: {
  7371. height: math.unit(6, "feet"),
  7372. weight: math.unit(240, "lbs"),
  7373. name: "Side",
  7374. image: {
  7375. source: "./media/characters/nibbles/side.svg"
  7376. }
  7377. },
  7378. },
  7379. [
  7380. {
  7381. name: "Normal",
  7382. height: math.unit(9, "feet"),
  7383. default: true
  7384. }
  7385. ]
  7386. ))
  7387. characterMakers.push(() => makeCharacter(
  7388. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7389. {
  7390. side: {
  7391. height: math.unit(5 + 1 / 6, "feet"),
  7392. weight: math.unit(130, "lbs"),
  7393. name: "Side",
  7394. image: {
  7395. source: "./media/characters/rikky/side.svg",
  7396. extra: 851 / 801
  7397. }
  7398. },
  7399. },
  7400. [
  7401. {
  7402. name: "Normal",
  7403. height: math.unit(5 + 1 / 6, "feet")
  7404. },
  7405. {
  7406. name: "Macro",
  7407. height: math.unit(152, "feet"),
  7408. default: true
  7409. },
  7410. {
  7411. name: "Megamacro",
  7412. height: math.unit(7, "miles")
  7413. }
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7418. {
  7419. side: {
  7420. height: math.unit(370, "cm"),
  7421. weight: math.unit(350, "lbs"),
  7422. name: "Side",
  7423. image: {
  7424. source: "./media/characters/malfressa/side.svg"
  7425. }
  7426. },
  7427. walking: {
  7428. height: math.unit(370, "cm"),
  7429. weight: math.unit(350, "lbs"),
  7430. name: "Walking",
  7431. image: {
  7432. source: "./media/characters/malfressa/walking.svg"
  7433. }
  7434. },
  7435. feral: {
  7436. height: math.unit(2500, "cm"),
  7437. weight: math.unit(100000, "lbs"),
  7438. name: "Feral",
  7439. image: {
  7440. source: "./media/characters/malfressa/feral.svg",
  7441. extra: 2108 / 837,
  7442. bottom: 0.02
  7443. }
  7444. },
  7445. },
  7446. [
  7447. {
  7448. name: "Normal",
  7449. height: math.unit(370, "cm")
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(300, "meters"),
  7454. default: true
  7455. }
  7456. ]
  7457. ))
  7458. characterMakers.push(() => makeCharacter(
  7459. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7460. {
  7461. front: {
  7462. height: math.unit(6, "feet"),
  7463. weight: math.unit(60, "kg"),
  7464. name: "Front",
  7465. image: {
  7466. source: "./media/characters/jaro/front.svg",
  7467. extra: 845/817,
  7468. bottom: 45/890
  7469. }
  7470. },
  7471. back: {
  7472. height: math.unit(6, "feet"),
  7473. weight: math.unit(60, "kg"),
  7474. name: "Back",
  7475. image: {
  7476. source: "./media/characters/jaro/back.svg",
  7477. extra: 847/817,
  7478. bottom: 34/881
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Micro",
  7485. height: math.unit(7, "inches")
  7486. },
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(5.5, "feet"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Minimacro",
  7494. height: math.unit(20, "feet")
  7495. },
  7496. {
  7497. name: "Macro",
  7498. height: math.unit(200, "meters")
  7499. }
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(6, "feet"),
  7507. weight: math.unit(195, "lb"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/rogue/front.svg"
  7511. }
  7512. },
  7513. },
  7514. [
  7515. {
  7516. name: "Macro",
  7517. height: math.unit(90, "feet"),
  7518. default: true
  7519. },
  7520. ]
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7524. {
  7525. standing: {
  7526. height: math.unit(5 + 8 / 12, "feet"),
  7527. weight: math.unit(140, "lb"),
  7528. name: "Standing",
  7529. image: {
  7530. source: "./media/characters/piper/standing.svg",
  7531. extra: 1440/1284,
  7532. bottom: 66/1506
  7533. }
  7534. },
  7535. running: {
  7536. height: math.unit(5 + 8 / 12, "feet"),
  7537. weight: math.unit(140, "lb"),
  7538. name: "Running",
  7539. image: {
  7540. source: "./media/characters/piper/running.svg",
  7541. extra: 3948/3655,
  7542. bottom: 0/3948
  7543. }
  7544. },
  7545. sole: {
  7546. height: math.unit(0.81, "feet"),
  7547. weight: math.unit(2, "kg"),
  7548. name: "Sole",
  7549. image: {
  7550. source: "./media/characters/piper/sole.svg"
  7551. }
  7552. },
  7553. nipple: {
  7554. height: math.unit(0.25, "feet"),
  7555. weight: math.unit(1.5, "lb"),
  7556. name: "Nipple",
  7557. image: {
  7558. source: "./media/characters/piper/nipple.svg"
  7559. }
  7560. },
  7561. head: {
  7562. height: math.unit(1.1, "feet"),
  7563. name: "Head",
  7564. image: {
  7565. source: "./media/characters/piper/head.svg"
  7566. }
  7567. },
  7568. },
  7569. [
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(2, "inches")
  7573. },
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(5 + 8 / 12, "feet")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(250, "feet"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Megamacro",
  7585. height: math.unit(7, "miles")
  7586. },
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7591. {
  7592. front: {
  7593. height: math.unit(6, "feet"),
  7594. weight: math.unit(220, "lb"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/gemini/front.svg"
  7598. }
  7599. },
  7600. back: {
  7601. height: math.unit(6, "feet"),
  7602. weight: math.unit(220, "lb"),
  7603. name: "Back",
  7604. image: {
  7605. source: "./media/characters/gemini/back.svg"
  7606. }
  7607. },
  7608. kneeling: {
  7609. height: math.unit(6 / 1.5, "feet"),
  7610. weight: math.unit(220, "lb"),
  7611. name: "Kneeling",
  7612. image: {
  7613. source: "./media/characters/gemini/kneeling.svg",
  7614. bottom: 0.02
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(300, "meters"),
  7622. default: true
  7623. },
  7624. {
  7625. name: "Megamacro",
  7626. height: math.unit(6900, "meters")
  7627. },
  7628. ]
  7629. ))
  7630. characterMakers.push(() => makeCharacter(
  7631. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7632. {
  7633. anthro: {
  7634. height: math.unit(2.35, "meters"),
  7635. weight: math.unit(73, "kg"),
  7636. name: "Anthro",
  7637. image: {
  7638. source: "./media/characters/alicia/anthro.svg",
  7639. extra: 2571 / 2385,
  7640. bottom: 75 / 2648
  7641. }
  7642. },
  7643. paw: {
  7644. height: math.unit(1.32, "feet"),
  7645. name: "Paw",
  7646. image: {
  7647. source: "./media/characters/alicia/paw.svg"
  7648. }
  7649. },
  7650. feral: {
  7651. height: math.unit(1.69, "meters"),
  7652. weight: math.unit(73, "kg"),
  7653. name: "Feral",
  7654. image: {
  7655. source: "./media/characters/alicia/feral.svg",
  7656. extra: 2123 / 1715,
  7657. bottom: 222 / 2349
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(2.35, "meters")
  7665. },
  7666. {
  7667. name: "Macro",
  7668. height: math.unit(60, "meters"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(10000, "kilometers")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(7, "feet"),
  7682. weight: math.unit(250, "lbs"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/archy/front.svg"
  7686. }
  7687. }
  7688. },
  7689. [
  7690. {
  7691. name: "Micro",
  7692. height: math.unit(1, "inch")
  7693. },
  7694. {
  7695. name: "Shorty",
  7696. height: math.unit(5, "feet")
  7697. },
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(7, "feet")
  7701. },
  7702. {
  7703. name: "Macro",
  7704. height: math.unit(600, "meters"),
  7705. default: true
  7706. },
  7707. {
  7708. name: "Megamacro",
  7709. height: math.unit(1, "mile")
  7710. },
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(1.65, "meters"),
  7718. weight: math.unit(74, "kg"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/berri/front.svg",
  7722. extra: 857 / 837,
  7723. bottom: 18 / 877
  7724. }
  7725. },
  7726. bum: {
  7727. height: math.unit(1.46, "feet"),
  7728. name: "Bum",
  7729. image: {
  7730. source: "./media/characters/berri/bum.svg"
  7731. }
  7732. },
  7733. mouth: {
  7734. height: math.unit(0.44, "feet"),
  7735. name: "Mouth",
  7736. image: {
  7737. source: "./media/characters/berri/mouth.svg"
  7738. }
  7739. },
  7740. paw: {
  7741. height: math.unit(0.826, "feet"),
  7742. name: "Paw",
  7743. image: {
  7744. source: "./media/characters/berri/paw.svg"
  7745. }
  7746. },
  7747. },
  7748. [
  7749. {
  7750. name: "Normal",
  7751. height: math.unit(1.65, "meters")
  7752. },
  7753. {
  7754. name: "Macro",
  7755. height: math.unit(60, "m"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Megamacro",
  7760. height: math.unit(9.213, "km")
  7761. },
  7762. {
  7763. name: "Planet Eater",
  7764. height: math.unit(489, "megameters")
  7765. },
  7766. {
  7767. name: "Teramacro",
  7768. height: math.unit(2471635000000, "meters")
  7769. },
  7770. {
  7771. name: "Examacro",
  7772. height: math.unit(8.0624e+26, "meters")
  7773. }
  7774. ]
  7775. ))
  7776. characterMakers.push(() => makeCharacter(
  7777. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7778. {
  7779. front: {
  7780. height: math.unit(1.72, "meters"),
  7781. weight: math.unit(68, "kg"),
  7782. name: "Front",
  7783. image: {
  7784. source: "./media/characters/lexi/front.svg"
  7785. }
  7786. }
  7787. },
  7788. [
  7789. {
  7790. name: "Very Smol",
  7791. height: math.unit(10, "mm")
  7792. },
  7793. {
  7794. name: "Micro",
  7795. height: math.unit(6.8, "cm"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(1.72, "m")
  7801. }
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(1.69, "meters"),
  7809. weight: math.unit(68, "kg"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/martin/front.svg",
  7813. extra: 596 / 581
  7814. }
  7815. }
  7816. },
  7817. [
  7818. {
  7819. name: "Micro",
  7820. height: math.unit(6.85, "cm"),
  7821. default: true
  7822. },
  7823. {
  7824. name: "Normal",
  7825. height: math.unit(1.69, "m")
  7826. }
  7827. ]
  7828. ))
  7829. characterMakers.push(() => makeCharacter(
  7830. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7831. {
  7832. front: {
  7833. height: math.unit(1.69, "meters"),
  7834. weight: math.unit(68, "kg"),
  7835. name: "Front",
  7836. image: {
  7837. source: "./media/characters/juno/front.svg"
  7838. }
  7839. }
  7840. },
  7841. [
  7842. {
  7843. name: "Micro",
  7844. height: math.unit(7, "cm")
  7845. },
  7846. {
  7847. name: "Normal",
  7848. height: math.unit(1.89, "m")
  7849. },
  7850. {
  7851. name: "Macro",
  7852. height: math.unit(353, "meters"),
  7853. default: true
  7854. }
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(1.93, "meters"),
  7862. weight: math.unit(83, "kg"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/samantha/front.svg"
  7866. }
  7867. },
  7868. frontClothed: {
  7869. height: math.unit(1.93, "meters"),
  7870. weight: math.unit(83, "kg"),
  7871. name: "Front (Clothed)",
  7872. image: {
  7873. source: "./media/characters/samantha/front-clothed.svg"
  7874. }
  7875. },
  7876. back: {
  7877. height: math.unit(1.93, "meters"),
  7878. weight: math.unit(83, "kg"),
  7879. name: "Back",
  7880. image: {
  7881. source: "./media/characters/samantha/back.svg"
  7882. }
  7883. },
  7884. },
  7885. [
  7886. {
  7887. name: "Normal",
  7888. height: math.unit(1.93, "m")
  7889. },
  7890. {
  7891. name: "Macro",
  7892. height: math.unit(74, "meters"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Macro+",
  7897. height: math.unit(223, "meters"),
  7898. },
  7899. {
  7900. name: "Megamacro",
  7901. height: math.unit(8381, "meters"),
  7902. },
  7903. {
  7904. name: "Megamacro+",
  7905. height: math.unit(12000, "kilometers")
  7906. },
  7907. ]
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7911. {
  7912. front: {
  7913. height: math.unit(1.92, "meters"),
  7914. weight: math.unit(80, "kg"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/dr-clay/front.svg"
  7918. }
  7919. },
  7920. frontClothed: {
  7921. height: math.unit(1.92, "meters"),
  7922. weight: math.unit(80, "kg"),
  7923. name: "Front (Clothed)",
  7924. image: {
  7925. source: "./media/characters/dr-clay/front-clothed.svg"
  7926. }
  7927. }
  7928. },
  7929. [
  7930. {
  7931. name: "Normal",
  7932. height: math.unit(1.92, "m")
  7933. },
  7934. {
  7935. name: "Macro",
  7936. height: math.unit(214, "meters"),
  7937. default: true
  7938. },
  7939. {
  7940. name: "Macro+",
  7941. height: math.unit(12.237, "meters"),
  7942. },
  7943. {
  7944. name: "Megamacro",
  7945. height: math.unit(557, "megameters"),
  7946. },
  7947. {
  7948. name: "Unimaginable",
  7949. height: math.unit(120e9, "lightyears")
  7950. },
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7955. {
  7956. front: {
  7957. height: math.unit(2, "meters"),
  7958. weight: math.unit(80, "kg"),
  7959. name: "Front",
  7960. image: {
  7961. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7962. }
  7963. }
  7964. },
  7965. [
  7966. {
  7967. name: "Teramacro",
  7968. height: math.unit(500000, "lightyears"),
  7969. default: true
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7975. {
  7976. crux: {
  7977. height: math.unit(2, "meters"),
  7978. weight: math.unit(150, "kg"),
  7979. name: "Crux",
  7980. image: {
  7981. source: "./media/characters/vemus/crux.svg",
  7982. extra: 1074/936,
  7983. bottom: 23/1097
  7984. }
  7985. },
  7986. skunkTanuki: {
  7987. height: math.unit(2, "meters"),
  7988. weight: math.unit(150, "kg"),
  7989. name: "Skunk-Tanuki",
  7990. image: {
  7991. source: "./media/characters/vemus/skunk-tanuki.svg",
  7992. extra: 926/893,
  7993. bottom: 20/946
  7994. }
  7995. },
  7996. },
  7997. [
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(4, "meters"),
  8001. default: true
  8002. },
  8003. {
  8004. name: "Big",
  8005. height: math.unit(8, "meters")
  8006. },
  8007. {
  8008. name: "Macro",
  8009. height: math.unit(100, "meters")
  8010. },
  8011. {
  8012. name: "Macro+",
  8013. height: math.unit(1500, "meters")
  8014. },
  8015. {
  8016. name: "Stellar",
  8017. height: math.unit(14e8, "meters")
  8018. },
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8023. {
  8024. front: {
  8025. height: math.unit(2, "meters"),
  8026. weight: math.unit(70, "kg"),
  8027. name: "Front",
  8028. image: {
  8029. source: "./media/characters/beherit/front.svg",
  8030. extra: 1234/1109,
  8031. bottom: 55/1289
  8032. }
  8033. }
  8034. },
  8035. [
  8036. {
  8037. name: "Normal",
  8038. height: math.unit(6, "feet")
  8039. },
  8040. {
  8041. name: "Lorg",
  8042. height: math.unit(25, "feet"),
  8043. default: true
  8044. },
  8045. {
  8046. name: "Lorger",
  8047. height: math.unit(75, "feet")
  8048. },
  8049. {
  8050. name: "Macro",
  8051. height: math.unit(200, "meters")
  8052. },
  8053. ]
  8054. ))
  8055. characterMakers.push(() => makeCharacter(
  8056. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8057. {
  8058. front: {
  8059. height: math.unit(2, "meters"),
  8060. weight: math.unit(150, "kg"),
  8061. name: "Front",
  8062. image: {
  8063. source: "./media/characters/everett/front.svg",
  8064. extra: 1017/866,
  8065. bottom: 86/1103
  8066. }
  8067. },
  8068. paw: {
  8069. height: math.unit(2 / 3.6, "meters"),
  8070. name: "Paw",
  8071. image: {
  8072. source: "./media/characters/everett/paw.svg"
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Normal",
  8079. height: math.unit(15, "feet"),
  8080. default: true
  8081. },
  8082. {
  8083. name: "Lorg",
  8084. height: math.unit(70, "feet"),
  8085. default: true
  8086. },
  8087. {
  8088. name: "Lorger",
  8089. height: math.unit(250, "feet")
  8090. },
  8091. {
  8092. name: "Macro",
  8093. height: math.unit(500, "meters")
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(2, "meters"),
  8102. weight: math.unit(86, "kg"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/rose/front.svg",
  8106. extra: 1785/1636,
  8107. bottom: 30/1815
  8108. },
  8109. form: "liom",
  8110. default: true
  8111. },
  8112. frontSporty: {
  8113. height: math.unit(2, "meters"),
  8114. weight: math.unit(86, "kg"),
  8115. name: "Front (Sporty)",
  8116. image: {
  8117. source: "./media/characters/rose/front-sporty.svg",
  8118. extra: 350/335,
  8119. bottom: 10/360
  8120. },
  8121. form: "liom"
  8122. },
  8123. frontAlt: {
  8124. height: math.unit(1.6, "meters"),
  8125. weight: math.unit(86, "kg"),
  8126. name: "Front (Alt)",
  8127. image: {
  8128. source: "./media/characters/rose/front-alt.svg",
  8129. extra: 299/283,
  8130. bottom: 3/302
  8131. },
  8132. form: "liom"
  8133. },
  8134. plush: {
  8135. height: math.unit(2, "meters"),
  8136. weight: math.unit(86/3, "kg"),
  8137. name: "Plush",
  8138. image: {
  8139. source: "./media/characters/rose/plush.svg",
  8140. extra: 361/337,
  8141. bottom: 11/372
  8142. },
  8143. form: "plush",
  8144. default: true
  8145. },
  8146. faeStanding: {
  8147. height: math.unit(10, "cm"),
  8148. weight: math.unit(10, "grams"),
  8149. name: "Standing",
  8150. image: {
  8151. source: "./media/characters/rose/fae-standing.svg",
  8152. extra: 1189/1060,
  8153. bottom: 27/1216
  8154. },
  8155. form: "fae",
  8156. default: true
  8157. },
  8158. faeSitting: {
  8159. height: math.unit(5, "cm"),
  8160. weight: math.unit(10, "grams"),
  8161. name: "Sitting",
  8162. image: {
  8163. source: "./media/characters/rose/fae-sitting.svg",
  8164. extra: 737/577,
  8165. bottom: 356/1093
  8166. },
  8167. form: "fae"
  8168. },
  8169. faePaw: {
  8170. height: math.unit(1.35, "cm"),
  8171. name: "Paw",
  8172. image: {
  8173. source: "./media/characters/rose/fae-paw.svg"
  8174. },
  8175. form: "fae"
  8176. },
  8177. },
  8178. [
  8179. {
  8180. name: "True Micro",
  8181. height: math.unit(9, "cm"),
  8182. form: "liom"
  8183. },
  8184. {
  8185. name: "Micro",
  8186. height: math.unit(16, "cm"),
  8187. form: "liom"
  8188. },
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(1.85, "meters"),
  8192. default: true,
  8193. form: "liom"
  8194. },
  8195. {
  8196. name: "Mini-Macro",
  8197. height: math.unit(5, "meters"),
  8198. form: "liom"
  8199. },
  8200. {
  8201. name: "Macro",
  8202. height: math.unit(15, "meters"),
  8203. form: "liom"
  8204. },
  8205. {
  8206. name: "True Macro",
  8207. height: math.unit(40, "meters"),
  8208. form: "liom"
  8209. },
  8210. {
  8211. name: "City Scale",
  8212. height: math.unit(1, "km"),
  8213. form: "liom"
  8214. },
  8215. {
  8216. name: "Plushie",
  8217. height: math.unit(9, "cm"),
  8218. form: "plush",
  8219. default: true
  8220. },
  8221. {
  8222. name: "Fae",
  8223. height: math.unit(10, "cm"),
  8224. form: "fae",
  8225. default: true
  8226. },
  8227. ],
  8228. {
  8229. "liom": {
  8230. name: "Liom"
  8231. },
  8232. "plush": {
  8233. name: "Plush"
  8234. },
  8235. "fae": {
  8236. name: "Fae Fox",
  8237. default: true
  8238. }
  8239. }
  8240. ))
  8241. characterMakers.push(() => makeCharacter(
  8242. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8243. {
  8244. front: {
  8245. height: math.unit(2, "meters"),
  8246. weight: math.unit(350, "lbs"),
  8247. name: "Front",
  8248. image: {
  8249. source: "./media/characters/regal/front.svg"
  8250. }
  8251. },
  8252. back: {
  8253. height: math.unit(2, "meters"),
  8254. weight: math.unit(350, "lbs"),
  8255. name: "Back",
  8256. image: {
  8257. source: "./media/characters/regal/back.svg"
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Macro",
  8264. height: math.unit(350, "feet"),
  8265. default: true
  8266. }
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8271. {
  8272. standing: {
  8273. height: math.unit(4 + 11/12, "feet"),
  8274. weight: math.unit(100, "lb"),
  8275. name: "Standing",
  8276. image: {
  8277. source: "./media/characters/opal/standing.svg",
  8278. extra: 1588/1513,
  8279. bottom: 23/1611
  8280. }
  8281. },
  8282. sitting: {
  8283. height: math.unit(2.3, "feet"),
  8284. weight: math.unit(100, "lb"),
  8285. name: "Sitting",
  8286. image: {
  8287. source: "./media/characters/opal/sitting.svg",
  8288. extra: 1031/892,
  8289. bottom: 142/1173
  8290. }
  8291. },
  8292. hand: {
  8293. height: math.unit(0.59, "feet"),
  8294. name: "Hand",
  8295. image: {
  8296. source: "./media/characters/opal/hand.svg"
  8297. }
  8298. },
  8299. foot: {
  8300. height: math.unit(0.61, "feet"),
  8301. name: "Foot",
  8302. image: {
  8303. source: "./media/characters/opal/foot.svg"
  8304. }
  8305. },
  8306. },
  8307. [
  8308. {
  8309. name: "Small",
  8310. height: math.unit(4 + 11 / 12, "feet")
  8311. },
  8312. {
  8313. name: "Normal",
  8314. height: math.unit(20, "feet"),
  8315. default: true
  8316. },
  8317. {
  8318. name: "Macro",
  8319. height: math.unit(120, "feet")
  8320. },
  8321. {
  8322. name: "Megamacro",
  8323. height: math.unit(80, "miles")
  8324. },
  8325. {
  8326. name: "True Size",
  8327. height: math.unit(100000, "lightyears")
  8328. },
  8329. ]
  8330. ))
  8331. characterMakers.push(() => makeCharacter(
  8332. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8333. {
  8334. front: {
  8335. height: math.unit(6, "feet"),
  8336. weight: math.unit(200, "lbs"),
  8337. name: "Front",
  8338. image: {
  8339. source: "./media/characters/vector-wuff/front.svg"
  8340. }
  8341. }
  8342. },
  8343. [
  8344. {
  8345. name: "Normal",
  8346. height: math.unit(2.8, "meters")
  8347. },
  8348. {
  8349. name: "Macro",
  8350. height: math.unit(450, "meters"),
  8351. default: true
  8352. },
  8353. {
  8354. name: "Megamacro",
  8355. height: math.unit(15, "kilometers")
  8356. }
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(6, "feet"),
  8364. weight: math.unit(256, "lbs"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/dannik/front.svg"
  8368. }
  8369. }
  8370. },
  8371. [
  8372. {
  8373. name: "Macro",
  8374. height: math.unit(69.57, "meters"),
  8375. default: true
  8376. },
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8381. {
  8382. front: {
  8383. height: math.unit(6, "feet"),
  8384. weight: math.unit(120, "lbs"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/azura-saharah/front.svg"
  8388. }
  8389. },
  8390. back: {
  8391. height: math.unit(6, "feet"),
  8392. weight: math.unit(120, "lbs"),
  8393. name: "Back",
  8394. image: {
  8395. source: "./media/characters/azura-saharah/back.svg"
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(100, "feet"),
  8403. default: true
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8409. {
  8410. side: {
  8411. height: math.unit(5 + 4 / 12, "feet"),
  8412. weight: math.unit(163, "lbs"),
  8413. name: "Side",
  8414. image: {
  8415. source: "./media/characters/kennedy/side.svg"
  8416. }
  8417. }
  8418. },
  8419. [
  8420. {
  8421. name: "Standard Doggo",
  8422. height: math.unit(5 + 4 / 12, "feet")
  8423. },
  8424. {
  8425. name: "Big Doggo",
  8426. height: math.unit(25 + 3 / 12, "feet"),
  8427. default: true
  8428. },
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(5 + 5/12, "feet"),
  8436. weight: math.unit(100, "lbs"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/odios-de-lunar/front.svg",
  8440. extra: 1468/1323,
  8441. bottom: 22/1490
  8442. }
  8443. }
  8444. },
  8445. [
  8446. {
  8447. name: "Micro",
  8448. height: math.unit(3, "inches")
  8449. },
  8450. {
  8451. name: "Normal",
  8452. height: math.unit(5.5, "feet"),
  8453. default: true
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(100, "feet")
  8458. },
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8463. {
  8464. back: {
  8465. height: math.unit(6, "feet"),
  8466. weight: math.unit(220, "lbs"),
  8467. name: "Back",
  8468. image: {
  8469. source: "./media/characters/mandake/back.svg"
  8470. }
  8471. }
  8472. },
  8473. [
  8474. {
  8475. name: "Normal",
  8476. height: math.unit(7, "feet"),
  8477. default: true
  8478. },
  8479. {
  8480. name: "Macro",
  8481. height: math.unit(78, "feet")
  8482. },
  8483. {
  8484. name: "Macro+",
  8485. height: math.unit(300, "meters")
  8486. },
  8487. {
  8488. name: "Macro++",
  8489. height: math.unit(2400, "feet")
  8490. },
  8491. {
  8492. name: "Megamacro",
  8493. height: math.unit(5167, "meters")
  8494. },
  8495. {
  8496. name: "Gigamacro",
  8497. height: math.unit(41769, "miles")
  8498. },
  8499. ]
  8500. ))
  8501. characterMakers.push(() => makeCharacter(
  8502. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8503. {
  8504. front: {
  8505. height: math.unit(6, "feet"),
  8506. weight: math.unit(120, "lbs"),
  8507. name: "Front",
  8508. image: {
  8509. source: "./media/characters/yozey/front.svg"
  8510. }
  8511. },
  8512. frontAlt: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(120, "lbs"),
  8515. name: "Front (Alt)",
  8516. image: {
  8517. source: "./media/characters/yozey/front-alt.svg"
  8518. }
  8519. },
  8520. side: {
  8521. height: math.unit(6, "feet"),
  8522. weight: math.unit(120, "lbs"),
  8523. name: "Side",
  8524. image: {
  8525. source: "./media/characters/yozey/side.svg"
  8526. }
  8527. },
  8528. },
  8529. [
  8530. {
  8531. name: "Micro",
  8532. height: math.unit(3, "inches"),
  8533. default: true
  8534. },
  8535. {
  8536. name: "Normal",
  8537. height: math.unit(6, "feet")
  8538. }
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8543. {
  8544. front: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(103, "lbs"),
  8547. name: "Front",
  8548. image: {
  8549. source: "./media/characters/valeska-voss/front.svg"
  8550. }
  8551. }
  8552. },
  8553. [
  8554. {
  8555. name: "Mini-Sized Sub",
  8556. height: math.unit(3.1, "inches")
  8557. },
  8558. {
  8559. name: "Mid-Sized Sub",
  8560. height: math.unit(6.2, "inches")
  8561. },
  8562. {
  8563. name: "Full-Sized Sub",
  8564. height: math.unit(9.3, "inches")
  8565. },
  8566. {
  8567. name: "Normal",
  8568. height: math.unit(5 + 2 / 12, "foot"),
  8569. default: true
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(6, "feet"),
  8578. weight: math.unit(160, "lbs"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/gene-zeta/front.svg",
  8582. extra: 3006 / 2826,
  8583. bottom: 182 / 3188
  8584. }
  8585. }
  8586. },
  8587. [
  8588. {
  8589. name: "Micro",
  8590. height: math.unit(6, "inches")
  8591. },
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(5 + 11 / 12, "foot"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(140, "feet")
  8600. },
  8601. {
  8602. name: "Supercharged",
  8603. height: math.unit(2500, "feet")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(6, "feet"),
  8612. weight: math.unit(350, "lbs"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/razinox/front.svg",
  8616. extra: 1686 / 1548,
  8617. bottom: 28.2 / 1868
  8618. }
  8619. },
  8620. back: {
  8621. height: math.unit(6, "feet"),
  8622. weight: math.unit(350, "lbs"),
  8623. name: "Back",
  8624. image: {
  8625. source: "./media/characters/razinox/back.svg",
  8626. extra: 1660 / 1590,
  8627. bottom: 15 / 1665
  8628. }
  8629. },
  8630. },
  8631. [
  8632. {
  8633. name: "Normal",
  8634. height: math.unit(10 + 8 / 12, "foot")
  8635. },
  8636. {
  8637. name: "Minimacro",
  8638. height: math.unit(15, "foot")
  8639. },
  8640. {
  8641. name: "Macro",
  8642. height: math.unit(60, "foot"),
  8643. default: true
  8644. },
  8645. {
  8646. name: "Megamacro",
  8647. height: math.unit(5, "miles")
  8648. },
  8649. {
  8650. name: "Gigamacro",
  8651. height: math.unit(6000, "miles")
  8652. },
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8657. {
  8658. front: {
  8659. height: math.unit(6, "feet"),
  8660. weight: math.unit(150, "lbs"),
  8661. name: "Front",
  8662. image: {
  8663. source: "./media/characters/cobalt/front.svg"
  8664. }
  8665. }
  8666. },
  8667. [
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(8 + 1 / 12, "foot")
  8671. },
  8672. {
  8673. name: "Macro",
  8674. height: math.unit(111, "foot"),
  8675. default: true
  8676. },
  8677. {
  8678. name: "Supracosmic",
  8679. height: math.unit(1e42, "feet")
  8680. },
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8685. {
  8686. front: {
  8687. height: math.unit(5, "inches"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/amanda/front.svg",
  8691. extra: 926/791,
  8692. bottom: 38/964
  8693. }
  8694. },
  8695. back: {
  8696. height: math.unit(5, "inches"),
  8697. name: "Back",
  8698. image: {
  8699. source: "./media/characters/amanda/back.svg",
  8700. extra: 909/805,
  8701. bottom: 43/952
  8702. }
  8703. },
  8704. },
  8705. [
  8706. {
  8707. name: "Micro",
  8708. height: math.unit(5, "inches"),
  8709. default: true
  8710. },
  8711. ]
  8712. ))
  8713. characterMakers.push(() => makeCharacter(
  8714. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8715. {
  8716. front: {
  8717. height: math.unit(2.75, "meters"),
  8718. weight: math.unit(1200, "lb"),
  8719. name: "Front",
  8720. image: {
  8721. source: "./media/characters/teal/front.svg",
  8722. extra: 2463 / 2320,
  8723. bottom: 166 / 2629
  8724. }
  8725. },
  8726. back: {
  8727. height: math.unit(2.75, "meters"),
  8728. weight: math.unit(1200, "lb"),
  8729. name: "Back",
  8730. image: {
  8731. source: "./media/characters/teal/back.svg",
  8732. extra: 2580 / 2489,
  8733. bottom: 151 / 2731
  8734. }
  8735. },
  8736. sitting: {
  8737. height: math.unit(1.9, "meters"),
  8738. weight: math.unit(1200, "lb"),
  8739. name: "Sitting",
  8740. image: {
  8741. source: "./media/characters/teal/sitting.svg",
  8742. extra: 623 / 590,
  8743. bottom: 121 / 744
  8744. }
  8745. },
  8746. standing: {
  8747. height: math.unit(2.75, "meters"),
  8748. weight: math.unit(1200, "lb"),
  8749. name: "Standing",
  8750. image: {
  8751. source: "./media/characters/teal/standing.svg",
  8752. extra: 923 / 893,
  8753. bottom: 60 / 983
  8754. }
  8755. },
  8756. stretching: {
  8757. height: math.unit(3.65, "meters"),
  8758. weight: math.unit(1200, "lb"),
  8759. name: "Stretching",
  8760. image: {
  8761. source: "./media/characters/teal/stretching.svg",
  8762. extra: 1276 / 1244,
  8763. bottom: 0 / 1276
  8764. }
  8765. },
  8766. legged: {
  8767. height: math.unit(1.3, "meters"),
  8768. weight: math.unit(100, "lb"),
  8769. name: "Legged",
  8770. image: {
  8771. source: "./media/characters/teal/legged.svg",
  8772. extra: 462 / 437,
  8773. bottom: 24 / 486
  8774. }
  8775. },
  8776. naga: {
  8777. height: math.unit(5.4, "meters"),
  8778. weight: math.unit(4000, "lb"),
  8779. name: "Naga",
  8780. image: {
  8781. source: "./media/characters/teal/naga.svg",
  8782. extra: 1902 / 1858,
  8783. bottom: 0 / 1902
  8784. }
  8785. },
  8786. hand: {
  8787. height: math.unit(0.52, "meters"),
  8788. name: "Hand",
  8789. image: {
  8790. source: "./media/characters/teal/hand.svg"
  8791. }
  8792. },
  8793. maw: {
  8794. height: math.unit(0.43, "meters"),
  8795. name: "Maw",
  8796. image: {
  8797. source: "./media/characters/teal/maw.svg"
  8798. }
  8799. },
  8800. slit: {
  8801. height: math.unit(0.25, "meters"),
  8802. name: "Slit",
  8803. image: {
  8804. source: "./media/characters/teal/slit.svg"
  8805. }
  8806. },
  8807. },
  8808. [
  8809. {
  8810. name: "Normal",
  8811. height: math.unit(2.75, "meters"),
  8812. default: true
  8813. },
  8814. {
  8815. name: "Macro",
  8816. height: math.unit(300, "feet")
  8817. },
  8818. {
  8819. name: "Macro+",
  8820. height: math.unit(2000, "feet")
  8821. },
  8822. ]
  8823. ))
  8824. characterMakers.push(() => makeCharacter(
  8825. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8826. {
  8827. frontCat: {
  8828. height: math.unit(6, "feet"),
  8829. weight: math.unit(180, "lbs"),
  8830. name: "Front (Cat)",
  8831. image: {
  8832. source: "./media/characters/ravin-amulet/front-cat.svg"
  8833. }
  8834. },
  8835. frontCatAlt: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(180, "lbs"),
  8838. name: "Front (Alt, Cat)",
  8839. image: {
  8840. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8841. }
  8842. },
  8843. frontWerewolf: {
  8844. height: math.unit(6 * 1.2, "feet"),
  8845. weight: math.unit(225, "lbs"),
  8846. name: "Front (Werewolf)",
  8847. image: {
  8848. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8849. }
  8850. },
  8851. backWerewolf: {
  8852. height: math.unit(6 * 1.2, "feet"),
  8853. weight: math.unit(225, "lbs"),
  8854. name: "Back (Werewolf)",
  8855. image: {
  8856. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Nano",
  8863. height: math.unit(1, "micrometer")
  8864. },
  8865. {
  8866. name: "Micro",
  8867. height: math.unit(1, "inch")
  8868. },
  8869. {
  8870. name: "Normal",
  8871. height: math.unit(6, "feet"),
  8872. default: true
  8873. },
  8874. {
  8875. name: "Macro",
  8876. height: math.unit(60, "feet")
  8877. }
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8882. {
  8883. front: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(165, "lbs"),
  8886. name: "Front",
  8887. image: {
  8888. source: "./media/characters/fluoresce/front.svg"
  8889. }
  8890. }
  8891. },
  8892. [
  8893. {
  8894. name: "Micro",
  8895. height: math.unit(6, "cm")
  8896. },
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(5 + 7 / 12, "feet"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(56, "feet")
  8905. },
  8906. {
  8907. name: "Megamacro",
  8908. height: math.unit(1.9, "miles")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(9 + 6 / 12, "feet"),
  8917. weight: math.unit(523, "lbs"),
  8918. name: "Side",
  8919. image: {
  8920. source: "./media/characters/aurora/side.svg",
  8921. extra: 474/393,
  8922. bottom: 5/479
  8923. }
  8924. }
  8925. },
  8926. [
  8927. {
  8928. name: "Normal",
  8929. height: math.unit(9 + 6 / 12, "feet")
  8930. },
  8931. {
  8932. name: "Macro",
  8933. height: math.unit(96, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Macro+",
  8938. height: math.unit(243, "feet")
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8944. {
  8945. front: {
  8946. height: math.unit(194, "cm"),
  8947. weight: math.unit(90, "kg"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/ranek/front.svg",
  8951. extra: 1862/1791,
  8952. bottom: 80/1942
  8953. }
  8954. },
  8955. back: {
  8956. height: math.unit(194, "cm"),
  8957. weight: math.unit(90, "kg"),
  8958. name: "Back",
  8959. image: {
  8960. source: "./media/characters/ranek/back.svg",
  8961. extra: 1853/1787,
  8962. bottom: 74/1927
  8963. }
  8964. },
  8965. feral: {
  8966. height: math.unit(30, "cm"),
  8967. weight: math.unit(1.6, "lbs"),
  8968. name: "Feral",
  8969. image: {
  8970. source: "./media/characters/ranek/feral.svg",
  8971. extra: 990/631,
  8972. bottom: 29/1019
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(194, "cm"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Macro",
  8984. height: math.unit(100, "meters")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(5 + 6 / 12, "feet"),
  8993. weight: math.unit(153, "lbs"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/andrew-cooper/front.svg"
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Nano",
  9003. height: math.unit(1, "mm")
  9004. },
  9005. {
  9006. name: "Micro",
  9007. height: math.unit(2, "inches")
  9008. },
  9009. {
  9010. name: "Normal",
  9011. height: math.unit(5 + 6 / 12, "feet"),
  9012. default: true
  9013. }
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9018. {
  9019. front: {
  9020. height: math.unit(6, "feet"),
  9021. weight: math.unit(180, "lbs"),
  9022. name: "Front",
  9023. image: {
  9024. source: "./media/characters/akane-sato/front.svg",
  9025. extra: 1219 / 1140
  9026. }
  9027. },
  9028. back: {
  9029. height: math.unit(6, "feet"),
  9030. weight: math.unit(180, "lbs"),
  9031. name: "Back",
  9032. image: {
  9033. source: "./media/characters/akane-sato/back.svg",
  9034. extra: 1219 / 1170
  9035. }
  9036. },
  9037. },
  9038. [
  9039. {
  9040. name: "Normal",
  9041. height: math.unit(2.5, "meters")
  9042. },
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(250, "meters"),
  9046. default: true
  9047. },
  9048. {
  9049. name: "Megamacro",
  9050. height: math.unit(25, "km")
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(65, "kg"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/rook/front.svg",
  9063. extra: 960 / 950
  9064. }
  9065. }
  9066. },
  9067. [
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(8.8, "feet")
  9071. },
  9072. {
  9073. name: "Macro",
  9074. height: math.unit(88, "feet"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Megamacro",
  9079. height: math.unit(8, "miles")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(12 + 2 / 12, "feet"),
  9088. weight: math.unit(808, "lbs"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/prodigy/front.svg"
  9092. }
  9093. }
  9094. },
  9095. [
  9096. {
  9097. name: "Normal",
  9098. height: math.unit(12 + 2 / 12, "feet"),
  9099. default: true
  9100. },
  9101. {
  9102. name: "Macro",
  9103. height: math.unit(143, "feet")
  9104. },
  9105. {
  9106. name: "Macro+",
  9107. height: math.unit(400, "feet")
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9113. {
  9114. front: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(225, "lbs"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/daniel/front.svg"
  9120. }
  9121. },
  9122. leaning: {
  9123. height: math.unit(6, "feet"),
  9124. weight: math.unit(225, "lbs"),
  9125. name: "Leaning",
  9126. image: {
  9127. source: "./media/characters/daniel/leaning.svg"
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Macro",
  9134. height: math.unit(1000, "feet"),
  9135. default: true
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9141. {
  9142. front: {
  9143. height: math.unit(6, "feet"),
  9144. weight: math.unit(88, "lbs"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/chiros/front.svg",
  9148. extra: 306 / 226
  9149. }
  9150. },
  9151. side: {
  9152. height: math.unit(6, "feet"),
  9153. weight: math.unit(88, "lbs"),
  9154. name: "Side",
  9155. image: {
  9156. source: "./media/characters/chiros/side.svg",
  9157. extra: 306 / 226
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Normal",
  9164. height: math.unit(6, "cm"),
  9165. default: true
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9171. {
  9172. front: {
  9173. height: math.unit(6, "feet"),
  9174. weight: math.unit(100, "lbs"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/selka/front.svg",
  9178. extra: 947 / 887
  9179. }
  9180. }
  9181. },
  9182. [
  9183. {
  9184. name: "Normal",
  9185. height: math.unit(5, "cm"),
  9186. default: true
  9187. },
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9192. {
  9193. front: {
  9194. height: math.unit(8 + 3 / 12, "feet"),
  9195. weight: math.unit(424, "lbs"),
  9196. name: "Front",
  9197. image: {
  9198. source: "./media/characters/verin/front.svg",
  9199. extra: 1845 / 1550
  9200. }
  9201. },
  9202. frontArmored: {
  9203. height: math.unit(8 + 3 / 12, "feet"),
  9204. weight: math.unit(424, "lbs"),
  9205. name: "Front (Armored)",
  9206. image: {
  9207. source: "./media/characters/verin/front-armor.svg",
  9208. extra: 1845 / 1550,
  9209. bottom: 0.01
  9210. }
  9211. },
  9212. back: {
  9213. height: math.unit(8 + 3 / 12, "feet"),
  9214. weight: math.unit(424, "lbs"),
  9215. name: "Back",
  9216. image: {
  9217. source: "./media/characters/verin/back.svg",
  9218. bottom: 0.1,
  9219. extra: 1
  9220. }
  9221. },
  9222. foot: {
  9223. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9224. name: "Foot",
  9225. image: {
  9226. source: "./media/characters/verin/foot.svg"
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Normal",
  9233. height: math.unit(8 + 3 / 12, "feet")
  9234. },
  9235. {
  9236. name: "Minimacro",
  9237. height: math.unit(21, "feet"),
  9238. default: true
  9239. },
  9240. {
  9241. name: "Macro",
  9242. height: math.unit(626, "feet")
  9243. },
  9244. ]
  9245. ))
  9246. characterMakers.push(() => makeCharacter(
  9247. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9248. {
  9249. front: {
  9250. height: math.unit(2.718, "meters"),
  9251. weight: math.unit(150, "lbs"),
  9252. name: "Front",
  9253. image: {
  9254. source: "./media/characters/sovrim-terraquian/front.svg",
  9255. extra: 1752/1689,
  9256. bottom: 36/1788
  9257. }
  9258. },
  9259. back: {
  9260. height: math.unit(2.718, "meters"),
  9261. weight: math.unit(150, "lbs"),
  9262. name: "Back",
  9263. image: {
  9264. source: "./media/characters/sovrim-terraquian/back.svg",
  9265. extra: 1698/1657,
  9266. bottom: 58/1756
  9267. }
  9268. },
  9269. tongue: {
  9270. height: math.unit(2.865, "feet"),
  9271. name: "Tongue",
  9272. image: {
  9273. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9274. }
  9275. },
  9276. hand: {
  9277. height: math.unit(1.61, "feet"),
  9278. name: "Hand",
  9279. image: {
  9280. source: "./media/characters/sovrim-terraquian/hand.svg"
  9281. }
  9282. },
  9283. foot: {
  9284. height: math.unit(1.05, "feet"),
  9285. name: "Foot",
  9286. image: {
  9287. source: "./media/characters/sovrim-terraquian/foot.svg"
  9288. }
  9289. },
  9290. footAlt: {
  9291. height: math.unit(0.88, "feet"),
  9292. name: "Foot (Alt)",
  9293. image: {
  9294. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Micro",
  9301. height: math.unit(2, "inches")
  9302. },
  9303. {
  9304. name: "Small",
  9305. height: math.unit(1, "meter")
  9306. },
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(Math.E, "meters"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Macro",
  9314. height: math.unit(20, "meters")
  9315. },
  9316. {
  9317. name: "Macro+",
  9318. height: math.unit(400, "meters")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(7, "feet"),
  9327. weight: math.unit(489, "lbs"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/reece-silvermane/front.svg",
  9331. bottom: 0.02,
  9332. extra: 1
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Macro",
  9339. height: math.unit(1.5, "miles"),
  9340. default: true
  9341. },
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9346. {
  9347. front: {
  9348. height: math.unit(6, "feet"),
  9349. weight: math.unit(78, "kg"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/kane/front.svg",
  9353. extra: 978 / 899
  9354. }
  9355. },
  9356. back: {
  9357. height: math.unit(6, "feet"),
  9358. weight: math.unit(78, "kg"),
  9359. name: "Back",
  9360. image: {
  9361. source: "./media/characters/kane/back.svg",
  9362. extra: 1966/1800,
  9363. bottom: 0/1966
  9364. }
  9365. },
  9366. head: {
  9367. height: math.unit(1.4, "feet"),
  9368. name: "Head",
  9369. image: {
  9370. source: "./media/characters/kane/head.svg"
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Normal",
  9377. height: math.unit(2.1, "m"),
  9378. },
  9379. {
  9380. name: "Macro",
  9381. height: math.unit(1, "km"),
  9382. default: true
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(6, "feet"),
  9391. weight: math.unit(200, "kg"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/tegon/front.svg",
  9395. bottom: 0.01,
  9396. extra: 1
  9397. }
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Micro",
  9403. height: math.unit(1, "inch")
  9404. },
  9405. {
  9406. name: "Normal",
  9407. height: math.unit(6 + 3 / 12, "feet"),
  9408. default: true
  9409. },
  9410. {
  9411. name: "Macro",
  9412. height: math.unit(300, "feet")
  9413. },
  9414. {
  9415. name: "Megamacro",
  9416. height: math.unit(69, "miles")
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9422. {
  9423. side: {
  9424. height: math.unit(6, "feet"),
  9425. weight: math.unit(2304, "lbs"),
  9426. name: "Side",
  9427. image: {
  9428. source: "./media/characters/arcturax/side.svg",
  9429. extra: 790 / 376,
  9430. bottom: 0.01
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Micro",
  9437. height: math.unit(2, "inch")
  9438. },
  9439. {
  9440. name: "Normal",
  9441. height: math.unit(6, "feet")
  9442. },
  9443. {
  9444. name: "Macro",
  9445. height: math.unit(39, "feet"),
  9446. default: true
  9447. },
  9448. {
  9449. name: "Megamacro",
  9450. height: math.unit(7, "miles")
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(50, "lbs"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/sentri/front.svg",
  9463. extra: 1750 / 1570,
  9464. bottom: 0.025
  9465. }
  9466. },
  9467. frontAlt: {
  9468. height: math.unit(6, "feet"),
  9469. weight: math.unit(50, "lbs"),
  9470. name: "Front (Alt)",
  9471. image: {
  9472. source: "./media/characters/sentri/front-alt.svg",
  9473. extra: 1750 / 1570,
  9474. bottom: 0.025
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(15, "feet"),
  9482. default: true
  9483. },
  9484. {
  9485. name: "Macro",
  9486. height: math.unit(2500, "feet")
  9487. }
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9492. {
  9493. front: {
  9494. height: math.unit(5 + 8 / 12, "feet"),
  9495. weight: math.unit(130, "lbs"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/corvin/front.svg",
  9499. extra: 1803 / 1629
  9500. }
  9501. },
  9502. frontShirt: {
  9503. height: math.unit(5 + 8 / 12, "feet"),
  9504. weight: math.unit(130, "lbs"),
  9505. name: "Front (Shirt)",
  9506. image: {
  9507. source: "./media/characters/corvin/front-shirt.svg",
  9508. extra: 1803 / 1629
  9509. }
  9510. },
  9511. frontPoncho: {
  9512. height: math.unit(5 + 8 / 12, "feet"),
  9513. weight: math.unit(130, "lbs"),
  9514. name: "Front (Poncho)",
  9515. image: {
  9516. source: "./media/characters/corvin/front-poncho.svg",
  9517. extra: 1803 / 1629
  9518. }
  9519. },
  9520. side: {
  9521. height: math.unit(5 + 8 / 12, "feet"),
  9522. weight: math.unit(130, "lbs"),
  9523. name: "Side",
  9524. image: {
  9525. source: "./media/characters/corvin/side.svg",
  9526. extra: 1012 / 945
  9527. }
  9528. },
  9529. back: {
  9530. height: math.unit(5 + 8 / 12, "feet"),
  9531. weight: math.unit(130, "lbs"),
  9532. name: "Back",
  9533. image: {
  9534. source: "./media/characters/corvin/back.svg",
  9535. extra: 1803 / 1629
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Micro",
  9542. height: math.unit(3, "inches")
  9543. },
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(5 + 8 / 12, "feet")
  9547. },
  9548. {
  9549. name: "Macro",
  9550. height: math.unit(300, "feet"),
  9551. default: true
  9552. },
  9553. {
  9554. name: "Megamacro",
  9555. height: math.unit(500, "miles")
  9556. }
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(6, "feet"),
  9564. weight: math.unit(135, "lbs"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/q/front.svg",
  9568. extra: 854 / 752,
  9569. bottom: 0.005
  9570. }
  9571. },
  9572. back: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(130, "lbs"),
  9575. name: "Back",
  9576. image: {
  9577. source: "./media/characters/q/back.svg",
  9578. extra: 854 / 752
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Macro",
  9585. height: math.unit(90, "feet"),
  9586. default: true
  9587. },
  9588. {
  9589. name: "Extra Macro",
  9590. height: math.unit(300, "feet"),
  9591. },
  9592. {
  9593. name: "BIG WALF",
  9594. height: math.unit(750, "feet"),
  9595. },
  9596. ]
  9597. ))
  9598. characterMakers.push(() => makeCharacter(
  9599. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9600. {
  9601. front: {
  9602. height: math.unit(3, "feet"),
  9603. weight: math.unit(28, "lbs"),
  9604. name: "Front",
  9605. image: {
  9606. source: "./media/characters/citrine/front.svg"
  9607. }
  9608. }
  9609. },
  9610. [
  9611. {
  9612. name: "Normal",
  9613. height: math.unit(3, "feet"),
  9614. default: true
  9615. }
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9620. {
  9621. front: {
  9622. height: math.unit(14, "feet"),
  9623. weight: math.unit(1450, "kg"),
  9624. preyCapacity: math.unit(15, "people"),
  9625. name: "Front",
  9626. image: {
  9627. source: "./media/characters/aura-starwind/front.svg",
  9628. extra: 1440/1327,
  9629. bottom: 11/1451
  9630. }
  9631. },
  9632. side: {
  9633. height: math.unit(14, "feet"),
  9634. weight: math.unit(1450, "kg"),
  9635. preyCapacity: math.unit(15, "people"),
  9636. name: "Side",
  9637. image: {
  9638. source: "./media/characters/aura-starwind/side.svg",
  9639. extra: 1654 / 1497
  9640. }
  9641. },
  9642. taur: {
  9643. height: math.unit(18, "feet"),
  9644. weight: math.unit(5500, "kg"),
  9645. preyCapacity: math.unit(50, "people"),
  9646. name: "Taur",
  9647. image: {
  9648. source: "./media/characters/aura-starwind/taur.svg",
  9649. extra: 1760 / 1650
  9650. }
  9651. },
  9652. feral: {
  9653. height: math.unit(46, "feet"),
  9654. weight: math.unit(25000, "kg"),
  9655. preyCapacity: math.unit(120, "people"),
  9656. name: "Feral",
  9657. image: {
  9658. source: "./media/characters/aura-starwind/feral.svg"
  9659. }
  9660. },
  9661. },
  9662. [
  9663. {
  9664. name: "Normal",
  9665. height: math.unit(14, "feet"),
  9666. default: true
  9667. },
  9668. {
  9669. name: "Macro",
  9670. height: math.unit(50, "meters")
  9671. },
  9672. {
  9673. name: "Megamacro",
  9674. height: math.unit(5000, "meters")
  9675. },
  9676. {
  9677. name: "Gigamacro",
  9678. height: math.unit(100000, "kilometers")
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(2 + 7 / 12, "feet"),
  9687. weight: math.unit(32, "lbs"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/rivet/front.svg",
  9691. extra: 1716 / 1658,
  9692. bottom: 0.03
  9693. }
  9694. },
  9695. foot: {
  9696. height: math.unit(0.551, "feet"),
  9697. name: "Rivet's Foot",
  9698. image: {
  9699. source: "./media/characters/rivet/foot.svg"
  9700. },
  9701. rename: true
  9702. }
  9703. },
  9704. [
  9705. {
  9706. name: "Micro",
  9707. height: math.unit(1.5, "inches"),
  9708. },
  9709. {
  9710. name: "Normal",
  9711. height: math.unit(2 + 7 / 12, "feet"),
  9712. default: true
  9713. },
  9714. {
  9715. name: "Macro",
  9716. height: math.unit(85, "feet")
  9717. },
  9718. {
  9719. name: "Megamacro",
  9720. height: math.unit(2.2, "km")
  9721. }
  9722. ]
  9723. ))
  9724. characterMakers.push(() => makeCharacter(
  9725. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9726. {
  9727. front: {
  9728. height: math.unit(5 + 9 / 12, "feet"),
  9729. weight: math.unit(150, "lbs"),
  9730. name: "Front",
  9731. image: {
  9732. source: "./media/characters/coffee/front.svg",
  9733. extra: 946/880,
  9734. bottom: 66/1012
  9735. }
  9736. },
  9737. foot: {
  9738. height: math.unit(1.29, "feet"),
  9739. name: "Foot",
  9740. image: {
  9741. source: "./media/characters/coffee/foot.svg"
  9742. }
  9743. },
  9744. },
  9745. [
  9746. {
  9747. name: "Micro",
  9748. height: math.unit(2, "inches"),
  9749. },
  9750. {
  9751. name: "Normal",
  9752. height: math.unit(5 + 9 / 12, "feet"),
  9753. default: true
  9754. },
  9755. {
  9756. name: "Macro",
  9757. height: math.unit(800, "feet")
  9758. },
  9759. {
  9760. name: "Megamacro",
  9761. height: math.unit(25, "miles")
  9762. }
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(200, "lbs"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/chari-gal/front.svg",
  9774. extra: 735/649,
  9775. bottom: 55/790
  9776. },
  9777. form: "normal",
  9778. default: true
  9779. },
  9780. back: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(200, "lb"),
  9783. name: "Back",
  9784. image: {
  9785. source: "./media/characters/chari-gal/back.svg",
  9786. extra: 762/666,
  9787. bottom: 31/793
  9788. },
  9789. form: "normal"
  9790. },
  9791. mouth: {
  9792. height: math.unit(1.35, "feet"),
  9793. name: "Mouth",
  9794. image: {
  9795. source: "./media/characters/chari-gal/mouth.svg"
  9796. },
  9797. form: "normal"
  9798. },
  9799. gigantamax: {
  9800. height: math.unit(6 * 16, "feet"),
  9801. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9802. name: "Gigantamax",
  9803. image: {
  9804. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9805. extra: 1507/1149,
  9806. bottom: 254/1761
  9807. },
  9808. form: "gigantamax",
  9809. default: true
  9810. },
  9811. },
  9812. [
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(5 + 7 / 12, "feet"),
  9816. form: "normal",
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(200, "feet"),
  9821. default: true,
  9822. form: "normal"
  9823. },
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9827. form: "gigantamax",
  9828. },
  9829. {
  9830. name: "Macro",
  9831. height: math.unit(16 * 200, "feet"),
  9832. default: true,
  9833. form: "gigantamax"
  9834. },
  9835. ],
  9836. {
  9837. "normal": {
  9838. name: "Normal",
  9839. default: true
  9840. },
  9841. "gigantamax": {
  9842. name: "Gigantamax",
  9843. },
  9844. }
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(150, "lbs"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/nova/front.svg",
  9855. extra: 5000 / 4722,
  9856. bottom: 0.02
  9857. }
  9858. }
  9859. },
  9860. [
  9861. {
  9862. name: "Micro-",
  9863. height: math.unit(0.8, "inches")
  9864. },
  9865. {
  9866. name: "Micro",
  9867. height: math.unit(2, "inches"),
  9868. default: true
  9869. },
  9870. ]
  9871. ))
  9872. characterMakers.push(() => makeCharacter(
  9873. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9874. {
  9875. koboldFront: {
  9876. height: math.unit(3 + 1 / 12, "feet"),
  9877. weight: math.unit(21.7, "lbs"),
  9878. name: "Front",
  9879. image: {
  9880. source: "./media/characters/argent/kobold-front.svg",
  9881. extra: 1471 / 1331,
  9882. bottom: 100.8 / 1575.5
  9883. },
  9884. form: "kobold",
  9885. default: true
  9886. },
  9887. dragonFront: {
  9888. height: math.unit(75, "inches"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/argent/dragon-front.svg",
  9892. extra: 1389/1248,
  9893. bottom: 54/1443
  9894. },
  9895. form: "dragon",
  9896. },
  9897. dragonBack: {
  9898. height: math.unit(75, "inches"),
  9899. name: "Back",
  9900. image: {
  9901. source: "./media/characters/argent/dragon-back.svg",
  9902. extra: 1399/1271,
  9903. bottom: 23/1422
  9904. },
  9905. form: "dragon",
  9906. },
  9907. dragonDressed: {
  9908. height: math.unit(75, "inches"),
  9909. name: "Dressed",
  9910. image: {
  9911. source: "./media/characters/argent/dragon-dressed.svg",
  9912. extra: 1350/1215,
  9913. bottom: 26/1376
  9914. },
  9915. form: "dragon"
  9916. },
  9917. dragonHead: {
  9918. height: math.unit(23.5, "inches"),
  9919. name: "Head",
  9920. image: {
  9921. source: "./media/characters/argent/dragon-head.svg"
  9922. },
  9923. form: "dragon",
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(2, "inches"),
  9930. form: "kobold",
  9931. },
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(3 + 1 / 12, "feet"),
  9935. form: "kobold",
  9936. default: true
  9937. },
  9938. {
  9939. name: "Macro",
  9940. height: math.unit(120, "feet"),
  9941. form: "kobold",
  9942. },
  9943. {
  9944. name: "Speck",
  9945. height: math.unit(1, "mm"),
  9946. form: "dragon",
  9947. },
  9948. {
  9949. name: "Tiny",
  9950. height: math.unit(1, "cm"),
  9951. form: "dragon",
  9952. },
  9953. {
  9954. name: "Micro",
  9955. height: math.unit(5, "cm"),
  9956. form: "dragon",
  9957. },
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(75, "inches"),
  9961. form: "dragon",
  9962. default: true
  9963. },
  9964. {
  9965. name: "Extra Tall",
  9966. height: math.unit(9, "feet"),
  9967. form: "dragon",
  9968. },
  9969. {
  9970. name: "Inconvenient",
  9971. height: math.unit(5, "meters"),
  9972. form: "dragon",
  9973. },
  9974. {
  9975. name: "Macro",
  9976. height: math.unit(70, "meters"),
  9977. form: "dragon",
  9978. },
  9979. {
  9980. name: "Macro+",
  9981. height: math.unit(250, "meters"),
  9982. form: "dragon",
  9983. },
  9984. {
  9985. name: "Megamacro",
  9986. height: math.unit(20, "km"),
  9987. form: "dragon",
  9988. },
  9989. {
  9990. name: "Mountainous",
  9991. height: math.unit(100, "km"),
  9992. form: "dragon",
  9993. },
  9994. {
  9995. name: "Continental",
  9996. height: math.unit(2, "megameters"),
  9997. form: "dragon",
  9998. },
  9999. {
  10000. name: "Too Big",
  10001. height: math.unit(900, "megameters"),
  10002. form: "dragon",
  10003. },
  10004. ],
  10005. {
  10006. "kobold": {
  10007. name: "Kobold",
  10008. default: true
  10009. },
  10010. "dragon": {
  10011. name: "Dragon",
  10012. },
  10013. }
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10017. {
  10018. lamp: {
  10019. height: math.unit(7 * 1559 / 989, "feet"),
  10020. name: "Magic Lamp",
  10021. image: {
  10022. source: "./media/characters/mira-al-cul/lamp.svg",
  10023. extra: 1617 / 1559
  10024. }
  10025. },
  10026. front: {
  10027. height: math.unit(7, "feet"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/mira-al-cul/front.svg",
  10031. extra: 1044 / 990
  10032. }
  10033. },
  10034. },
  10035. [
  10036. {
  10037. name: "Heavily Restricted",
  10038. height: math.unit(7 * 1559 / 989, "feet")
  10039. },
  10040. {
  10041. name: "Freshly Freed",
  10042. height: math.unit(50 * 1559 / 989, "feet")
  10043. },
  10044. {
  10045. name: "World Encompassing",
  10046. height: math.unit(10000 * 1559 / 989, "miles")
  10047. },
  10048. {
  10049. name: "Galactic",
  10050. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10051. },
  10052. {
  10053. name: "Palmed Universe",
  10054. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10055. default: true
  10056. },
  10057. {
  10058. name: "Multiversal Matriarch",
  10059. height: math.unit(8.87e10, "yottameters")
  10060. },
  10061. {
  10062. name: "Void Mother",
  10063. height: math.unit(3.14e110, "yottaparsecs")
  10064. },
  10065. {
  10066. name: "Toying with Transcendence",
  10067. height: math.unit(1e307, "meters")
  10068. },
  10069. ]
  10070. ))
  10071. characterMakers.push(() => makeCharacter(
  10072. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10073. {
  10074. front: {
  10075. height: math.unit(17 + 1 / 12, "feet"),
  10076. weight: math.unit(476.2 * 5, "lbs"),
  10077. name: "Front",
  10078. image: {
  10079. source: "./media/characters/kuro-shi-uchū/front.svg",
  10080. extra: 2329 / 1835,
  10081. bottom: 0.02
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Micro",
  10088. height: math.unit(2, "inches")
  10089. },
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(12, "meters")
  10093. },
  10094. {
  10095. name: "Planetary",
  10096. height: math.unit(0.00929, "AU"),
  10097. default: true
  10098. },
  10099. {
  10100. name: "Universal",
  10101. height: math.unit(20, "gigaparsecs")
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10107. {
  10108. front: {
  10109. height: math.unit(5 + 2 / 12, "feet"),
  10110. weight: math.unit(120, "lbs"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/katherine/front.svg",
  10114. extra: 2075 / 1969
  10115. }
  10116. },
  10117. dress: {
  10118. height: math.unit(5 + 2 / 12, "feet"),
  10119. weight: math.unit(120, "lbs"),
  10120. name: "Dress",
  10121. image: {
  10122. source: "./media/characters/katherine/dress.svg",
  10123. extra: 2258 / 2064
  10124. }
  10125. },
  10126. },
  10127. [
  10128. {
  10129. name: "Micro",
  10130. height: math.unit(1, "inches"),
  10131. default: true
  10132. },
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(5 + 2 / 12, "feet")
  10136. },
  10137. {
  10138. name: "Macro",
  10139. height: math.unit(100, "meters")
  10140. },
  10141. {
  10142. name: "Megamacro",
  10143. height: math.unit(80, "miles")
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10149. {
  10150. front: {
  10151. height: math.unit(7 + 8 / 12, "feet"),
  10152. weight: math.unit(250, "lbs"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/yevis/front.svg",
  10156. extra: 1938 / 1755
  10157. }
  10158. }
  10159. },
  10160. [
  10161. {
  10162. name: "Mortal",
  10163. height: math.unit(7 + 8 / 12, "feet")
  10164. },
  10165. {
  10166. name: "Battle",
  10167. height: math.unit(25 + 11 / 12, "feet")
  10168. },
  10169. {
  10170. name: "Wrath",
  10171. height: math.unit(1654 + 11 / 12, "feet")
  10172. },
  10173. {
  10174. name: "Planet Destroyer",
  10175. height: math.unit(12000, "miles")
  10176. },
  10177. {
  10178. name: "Galaxy Conqueror",
  10179. height: math.unit(1.45, "zettameters"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Universal War",
  10184. height: math.unit(184, "gigaparsecs")
  10185. },
  10186. {
  10187. name: "Eternity War",
  10188. height: math.unit(1.98e55, "yottaparsecs")
  10189. },
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(5 + 8 / 12, "feet"),
  10197. weight: math.unit(63, "kg"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/xavier/front.svg",
  10201. extra: 944 / 883
  10202. }
  10203. },
  10204. frontStretch: {
  10205. height: math.unit(5 + 8 / 12, "feet"),
  10206. weight: math.unit(63, "kg"),
  10207. name: "Stretching",
  10208. image: {
  10209. source: "./media/characters/xavier/front-stretch.svg",
  10210. extra: 962 / 820
  10211. }
  10212. },
  10213. },
  10214. [
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(5 + 8 / 12, "feet")
  10218. },
  10219. {
  10220. name: "Macro",
  10221. height: math.unit(100, "meters"),
  10222. default: true
  10223. },
  10224. {
  10225. name: "McLargeHuge",
  10226. height: math.unit(10, "miles")
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(5 + 5 / 12, "feet"),
  10235. weight: math.unit(150, "lb"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/joshii/front.svg",
  10239. extra: 765 / 653,
  10240. bottom: 51 / 816
  10241. }
  10242. },
  10243. foot: {
  10244. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10245. name: "Foot",
  10246. image: {
  10247. source: "./media/characters/joshii/foot.svg"
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Micro",
  10254. height: math.unit(2, "inches")
  10255. },
  10256. {
  10257. name: "Normal",
  10258. height: math.unit(5 + 5 / 12, "feet")
  10259. },
  10260. {
  10261. name: "Macro",
  10262. height: math.unit(785, "feet"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "Megamacro",
  10267. height: math.unit(24.5, "miles")
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10273. {
  10274. front: {
  10275. height: math.unit(6, "feet"),
  10276. weight: math.unit(150, "lb"),
  10277. name: "Front",
  10278. image: {
  10279. source: "./media/characters/goddess-elizabeth/front.svg",
  10280. extra: 1800 / 1525,
  10281. bottom: 0.005
  10282. }
  10283. },
  10284. foot: {
  10285. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10286. name: "Foot",
  10287. image: {
  10288. source: "./media/characters/goddess-elizabeth/foot.svg"
  10289. }
  10290. },
  10291. mouth: {
  10292. height: math.unit(6, "feet"),
  10293. name: "Mouth",
  10294. image: {
  10295. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10296. }
  10297. },
  10298. },
  10299. [
  10300. {
  10301. name: "Micro",
  10302. height: math.unit(12, "feet")
  10303. },
  10304. {
  10305. name: "Normal",
  10306. height: math.unit(80, "miles"),
  10307. default: true
  10308. },
  10309. {
  10310. name: "Macro",
  10311. height: math.unit(15000, "parsecs")
  10312. },
  10313. ]
  10314. ))
  10315. characterMakers.push(() => makeCharacter(
  10316. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10317. {
  10318. front: {
  10319. height: math.unit(5 + 9 / 12, "feet"),
  10320. weight: math.unit(144, "lb"),
  10321. name: "Front",
  10322. image: {
  10323. source: "./media/characters/kara/front.svg"
  10324. }
  10325. },
  10326. feet: {
  10327. height: math.unit(6 / 6.765, "feet"),
  10328. name: "Kara's Feet",
  10329. rename: true,
  10330. image: {
  10331. source: "./media/characters/kara/feet.svg"
  10332. }
  10333. },
  10334. },
  10335. [
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(5 + 9 / 12, "feet")
  10339. },
  10340. {
  10341. name: "Macro",
  10342. height: math.unit(174, "feet"),
  10343. default: true
  10344. },
  10345. ]
  10346. ))
  10347. characterMakers.push(() => makeCharacter(
  10348. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10349. {
  10350. front: {
  10351. height: math.unit(18, "feet"),
  10352. weight: math.unit(4050, "lb"),
  10353. name: "Front",
  10354. image: {
  10355. source: "./media/characters/tyrone/front.svg",
  10356. extra: 2405 / 2270,
  10357. bottom: 182 / 2587
  10358. }
  10359. },
  10360. },
  10361. [
  10362. {
  10363. name: "Normal",
  10364. height: math.unit(18, "feet"),
  10365. default: true
  10366. },
  10367. {
  10368. name: "Macro",
  10369. height: math.unit(300, "feet")
  10370. },
  10371. {
  10372. name: "Megamacro",
  10373. height: math.unit(15, "km")
  10374. },
  10375. {
  10376. name: "Gigamacro",
  10377. height: math.unit(500, "km")
  10378. },
  10379. {
  10380. name: "Teramacro",
  10381. height: math.unit(0.5, "gigameters")
  10382. },
  10383. {
  10384. name: "Omnimacro",
  10385. height: math.unit(1e252, "yottauniverse")
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10391. {
  10392. front: {
  10393. height: math.unit(7 + 8 / 12, "feet"),
  10394. weight: math.unit(120, "lb"),
  10395. name: "Front",
  10396. image: {
  10397. source: "./media/characters/danny/front.svg",
  10398. extra: 1490 / 1350
  10399. }
  10400. },
  10401. back: {
  10402. height: math.unit(7 + 8 / 12, "feet"),
  10403. weight: math.unit(120, "lb"),
  10404. name: "Back",
  10405. image: {
  10406. source: "./media/characters/danny/back.svg",
  10407. extra: 1490 / 1350
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Normal",
  10414. height: math.unit(7 + 8 / 12, "feet"),
  10415. default: true
  10416. },
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(3.5, "inches"),
  10424. weight: math.unit(19, "grams"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/mallow/front.svg",
  10428. extra: 471 / 431
  10429. }
  10430. },
  10431. back: {
  10432. height: math.unit(3.5, "inches"),
  10433. weight: math.unit(19, "grams"),
  10434. name: "Back",
  10435. image: {
  10436. source: "./media/characters/mallow/back.svg",
  10437. extra: 471 / 431
  10438. }
  10439. },
  10440. },
  10441. [
  10442. {
  10443. name: "Normal",
  10444. height: math.unit(3.5, "inches"),
  10445. default: true
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(9, "feet"),
  10454. weight: math.unit(230, "kg"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/starry-aqua/front.svg"
  10458. }
  10459. },
  10460. back: {
  10461. height: math.unit(9, "feet"),
  10462. weight: math.unit(230, "kg"),
  10463. name: "Back",
  10464. image: {
  10465. source: "./media/characters/starry-aqua/back.svg"
  10466. }
  10467. },
  10468. hand: {
  10469. height: math.unit(9 * 0.1168, "feet"),
  10470. name: "Hand",
  10471. image: {
  10472. source: "./media/characters/starry-aqua/hand.svg"
  10473. }
  10474. },
  10475. foot: {
  10476. height: math.unit(9 * 0.18, "feet"),
  10477. name: "Foot",
  10478. image: {
  10479. source: "./media/characters/starry-aqua/foot.svg"
  10480. }
  10481. }
  10482. },
  10483. [
  10484. {
  10485. name: "Micro",
  10486. height: math.unit(3, "inches")
  10487. },
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(9, "feet")
  10491. },
  10492. {
  10493. name: "Macro",
  10494. height: math.unit(300, "feet"),
  10495. default: true
  10496. },
  10497. {
  10498. name: "Megamacro",
  10499. height: math.unit(3200, "feet")
  10500. }
  10501. ]
  10502. ))
  10503. characterMakers.push(() => makeCharacter(
  10504. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10505. {
  10506. front: {
  10507. height: math.unit(15, "feet"),
  10508. weight: math.unit(5026, "lb"),
  10509. name: "Front",
  10510. image: {
  10511. source: "./media/characters/luka-towers/front.svg",
  10512. extra: 1269/1133,
  10513. bottom: 51/1320
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(15, "feet"),
  10521. default: true
  10522. },
  10523. {
  10524. name: "Minimacro",
  10525. height: math.unit(25, "feet")
  10526. },
  10527. {
  10528. name: "Macro",
  10529. height: math.unit(320, "feet")
  10530. },
  10531. {
  10532. name: "Megamacro",
  10533. height: math.unit(35000, "feet")
  10534. },
  10535. {
  10536. name: "Gigamacro",
  10537. height: math.unit(4000, "miles")
  10538. },
  10539. {
  10540. name: "Teramacro",
  10541. height: math.unit(15000, "miles")
  10542. },
  10543. ]
  10544. ))
  10545. characterMakers.push(() => makeCharacter(
  10546. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10547. {
  10548. front: {
  10549. height: math.unit(6, "feet"),
  10550. weight: math.unit(150, "lb"),
  10551. name: "Front",
  10552. image: {
  10553. source: "./media/characters/natalie-nightring/front.svg",
  10554. extra: 1,
  10555. bottom: 0.06
  10556. }
  10557. },
  10558. },
  10559. [
  10560. {
  10561. name: "Uh Oh",
  10562. height: math.unit(0.1, "mm")
  10563. },
  10564. {
  10565. name: "Small",
  10566. height: math.unit(3, "inches")
  10567. },
  10568. {
  10569. name: "Human Scale",
  10570. height: math.unit(6, "feet")
  10571. },
  10572. {
  10573. name: "Librarian",
  10574. height: math.unit(50, "feet"),
  10575. default: true
  10576. },
  10577. {
  10578. name: "Immense",
  10579. height: math.unit(200, "miles")
  10580. },
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10585. {
  10586. front: {
  10587. height: math.unit(6, "feet"),
  10588. weight: math.unit(180, "lbs"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/danni-rosie/front.svg",
  10592. extra: 1260 / 1128,
  10593. bottom: 0.022
  10594. }
  10595. },
  10596. },
  10597. [
  10598. {
  10599. name: "Micro",
  10600. height: math.unit(2, "inches"),
  10601. default: true
  10602. },
  10603. ]
  10604. ))
  10605. characterMakers.push(() => makeCharacter(
  10606. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10607. {
  10608. front: {
  10609. height: math.unit(5 + 9 / 12, "feet"),
  10610. weight: math.unit(220, "lb"),
  10611. name: "Front",
  10612. image: {
  10613. source: "./media/characters/samantha-kruse/front.svg",
  10614. extra: (985 / 935),
  10615. bottom: 0.03
  10616. }
  10617. },
  10618. frontUndressed: {
  10619. height: math.unit(5 + 9 / 12, "feet"),
  10620. weight: math.unit(220, "lb"),
  10621. name: "Front (Undressed)",
  10622. image: {
  10623. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10624. extra: (973 / 923),
  10625. bottom: 0.025
  10626. }
  10627. },
  10628. fat: {
  10629. height: math.unit(5 + 9 / 12, "feet"),
  10630. weight: math.unit(900, "lb"),
  10631. name: "Front (Fat)",
  10632. image: {
  10633. source: "./media/characters/samantha-kruse/fat.svg",
  10634. extra: 2688 / 2561
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Normal",
  10641. height: math.unit(5 + 9 / 12, "feet"),
  10642. default: true
  10643. }
  10644. ]
  10645. ))
  10646. characterMakers.push(() => makeCharacter(
  10647. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10648. {
  10649. back: {
  10650. height: math.unit(5 + 4 / 12, "feet"),
  10651. weight: math.unit(4963, "lb"),
  10652. name: "Back",
  10653. image: {
  10654. source: "./media/characters/amelia-rosie/back.svg",
  10655. extra: 1113 / 963,
  10656. bottom: 0.01
  10657. }
  10658. },
  10659. },
  10660. [
  10661. {
  10662. name: "Level 0",
  10663. height: math.unit(5 + 4 / 12, "feet")
  10664. },
  10665. {
  10666. name: "Level 1",
  10667. height: math.unit(164597, "feet"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Level 2",
  10672. height: math.unit(956243, "miles")
  10673. },
  10674. {
  10675. name: "Level 3",
  10676. height: math.unit(29421709423, "miles")
  10677. },
  10678. {
  10679. name: "Level 4",
  10680. height: math.unit(154, "lightyears")
  10681. },
  10682. {
  10683. name: "Level 5",
  10684. height: math.unit(4738272, "lightyears")
  10685. },
  10686. {
  10687. name: "Level 6",
  10688. height: math.unit(145787152896, "lightyears")
  10689. },
  10690. ]
  10691. ))
  10692. characterMakers.push(() => makeCharacter(
  10693. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10694. {
  10695. front: {
  10696. height: math.unit(5 + 11 / 12, "feet"),
  10697. weight: math.unit(65, "kg"),
  10698. name: "Front",
  10699. image: {
  10700. source: "./media/characters/rook-kitara/front.svg",
  10701. extra: 1347 / 1274,
  10702. bottom: 0.005
  10703. }
  10704. },
  10705. },
  10706. [
  10707. {
  10708. name: "Totally Unfair",
  10709. height: math.unit(1.8, "mm")
  10710. },
  10711. {
  10712. name: "Lap Rookie",
  10713. height: math.unit(1.4, "feet")
  10714. },
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(5 + 11 / 12, "feet"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "How Did This Happen",
  10722. height: math.unit(80, "miles")
  10723. }
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(7, "feet"),
  10731. weight: math.unit(300, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/pisces/front.svg",
  10735. extra: 2255 / 2115,
  10736. bottom: 0.03
  10737. }
  10738. },
  10739. back: {
  10740. height: math.unit(7, "feet"),
  10741. weight: math.unit(300, "lb"),
  10742. name: "Back",
  10743. image: {
  10744. source: "./media/characters/pisces/back.svg",
  10745. extra: 2146 / 2055,
  10746. bottom: 0.04
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(7, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Swimming Pool",
  10758. height: math.unit(12.2, "meters")
  10759. },
  10760. {
  10761. name: "Olympic Swimming Pool",
  10762. height: math.unit(56.3, "meters")
  10763. },
  10764. {
  10765. name: "Lake Superior",
  10766. height: math.unit(93900, "meters")
  10767. },
  10768. {
  10769. name: "Mediterranean Sea",
  10770. height: math.unit(644457, "meters")
  10771. },
  10772. {
  10773. name: "World's Oceans",
  10774. height: math.unit(4567491, "meters")
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10780. {
  10781. front: {
  10782. height: math.unit(2.3, "meters"),
  10783. weight: math.unit(120, "kg"),
  10784. name: "Front",
  10785. image: {
  10786. source: "./media/characters/zelas/front.svg"
  10787. }
  10788. },
  10789. side: {
  10790. height: math.unit(2.3, "meters"),
  10791. weight: math.unit(120, "kg"),
  10792. name: "Side",
  10793. image: {
  10794. source: "./media/characters/zelas/side.svg"
  10795. }
  10796. },
  10797. back: {
  10798. height: math.unit(2.3, "meters"),
  10799. weight: math.unit(120, "kg"),
  10800. name: "Back",
  10801. image: {
  10802. source: "./media/characters/zelas/back.svg"
  10803. }
  10804. },
  10805. foot: {
  10806. height: math.unit(1.116, "feet"),
  10807. name: "Foot",
  10808. image: {
  10809. source: "./media/characters/zelas/foot.svg"
  10810. }
  10811. },
  10812. },
  10813. [
  10814. {
  10815. name: "Normal",
  10816. height: math.unit(2.3, "meters")
  10817. },
  10818. {
  10819. name: "Macro",
  10820. height: math.unit(30, "meters"),
  10821. default: true
  10822. },
  10823. ]
  10824. ))
  10825. characterMakers.push(() => makeCharacter(
  10826. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10827. {
  10828. front: {
  10829. height: math.unit(1, "inch"),
  10830. weight: math.unit(0.21, "grams"),
  10831. name: "Front",
  10832. image: {
  10833. source: "./media/characters/talbot/front.svg",
  10834. extra: 594 / 544
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Micro",
  10841. height: math.unit(1, "inch"),
  10842. default: true
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10848. {
  10849. front: {
  10850. height: math.unit(3 + 3 / 12, "feet"),
  10851. weight: math.unit(51.8, "lb"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/fliss/front.svg",
  10855. extra: 840 / 640
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Teeny Tiny",
  10862. height: math.unit(1, "mm")
  10863. },
  10864. {
  10865. name: "Small",
  10866. height: math.unit(1, "inch"),
  10867. default: true
  10868. },
  10869. {
  10870. name: "Standard Sylveon",
  10871. height: math.unit(3 + 3 / 12, "feet")
  10872. },
  10873. {
  10874. name: "Large Nuisance",
  10875. height: math.unit(33, "feet")
  10876. },
  10877. {
  10878. name: "City Filler",
  10879. height: math.unit(3000, "feet")
  10880. },
  10881. {
  10882. name: "New Horizon",
  10883. height: math.unit(6000, "miles")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(5, "cm"),
  10892. weight: math.unit(1.94, "g"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/fleta/front.svg",
  10896. extra: 835 / 803
  10897. }
  10898. },
  10899. back: {
  10900. height: math.unit(5, "cm"),
  10901. weight: math.unit(1.94, "g"),
  10902. name: "Back",
  10903. image: {
  10904. source: "./media/characters/fleta/back.svg",
  10905. extra: 835 / 803
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Micro",
  10912. height: math.unit(5, "cm"),
  10913. default: true
  10914. },
  10915. ]
  10916. ))
  10917. characterMakers.push(() => makeCharacter(
  10918. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10919. {
  10920. front: {
  10921. height: math.unit(6, "feet"),
  10922. weight: math.unit(225, "lb"),
  10923. name: "Front",
  10924. image: {
  10925. source: "./media/characters/dominic/front.svg",
  10926. extra: 1770 / 1620,
  10927. bottom: 0.025
  10928. }
  10929. },
  10930. back: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(225, "lb"),
  10933. name: "Back",
  10934. image: {
  10935. source: "./media/characters/dominic/back.svg",
  10936. extra: 1745 / 1620,
  10937. bottom: 0.065
  10938. }
  10939. },
  10940. },
  10941. [
  10942. {
  10943. name: "Nano",
  10944. height: math.unit(0.1, "mm")
  10945. },
  10946. {
  10947. name: "Micro-",
  10948. height: math.unit(1, "mm")
  10949. },
  10950. {
  10951. name: "Micro",
  10952. height: math.unit(4, "inches")
  10953. },
  10954. {
  10955. name: "Normal",
  10956. height: math.unit(6 + 4 / 12, "feet"),
  10957. default: true
  10958. },
  10959. {
  10960. name: "Macro",
  10961. height: math.unit(115, "feet")
  10962. },
  10963. {
  10964. name: "Macro+",
  10965. height: math.unit(955, "feet")
  10966. },
  10967. {
  10968. name: "Megamacro",
  10969. height: math.unit(8990, "feet")
  10970. },
  10971. {
  10972. name: "Gigmacro",
  10973. height: math.unit(9310, "miles")
  10974. },
  10975. {
  10976. name: "Teramacro",
  10977. height: math.unit(1567005010, "miles")
  10978. },
  10979. {
  10980. name: "Examacro",
  10981. height: math.unit(1425, "parsecs")
  10982. },
  10983. ]
  10984. ))
  10985. characterMakers.push(() => makeCharacter(
  10986. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10987. {
  10988. front: {
  10989. height: math.unit(400, "feet"),
  10990. weight: math.unit(44444444, "lb"),
  10991. name: "Front",
  10992. image: {
  10993. source: "./media/characters/major-colonel/front.svg"
  10994. }
  10995. },
  10996. back: {
  10997. height: math.unit(400, "feet"),
  10998. weight: math.unit(44444444, "lb"),
  10999. name: "Back",
  11000. image: {
  11001. source: "./media/characters/major-colonel/back.svg"
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(400, "feet"),
  11009. default: true
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11015. {
  11016. catFront: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(120, "lb"),
  11019. name: "Front (Cat Side)",
  11020. image: {
  11021. source: "./media/characters/axel-lycan/cat-front.svg",
  11022. extra: 430 / 402,
  11023. bottom: 43 / 472.35
  11024. }
  11025. },
  11026. catBack: {
  11027. height: math.unit(6, "feet"),
  11028. weight: math.unit(120, "lb"),
  11029. name: "Back (Cat Side)",
  11030. image: {
  11031. source: "./media/characters/axel-lycan/cat-back.svg",
  11032. extra: 447 / 419,
  11033. bottom: 23.3 / 469
  11034. }
  11035. },
  11036. wolfFront: {
  11037. height: math.unit(6, "feet"),
  11038. weight: math.unit(120, "lb"),
  11039. name: "Front (Wolf Side)",
  11040. image: {
  11041. source: "./media/characters/axel-lycan/wolf-front.svg",
  11042. extra: 485 / 456,
  11043. bottom: 19 / 504
  11044. }
  11045. },
  11046. wolfBack: {
  11047. height: math.unit(6, "feet"),
  11048. weight: math.unit(120, "lb"),
  11049. name: "Back (Wolf Side)",
  11050. image: {
  11051. source: "./media/characters/axel-lycan/wolf-back.svg",
  11052. extra: 475 / 438,
  11053. bottom: 39.2 / 514
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(1, "km"),
  11061. default: true
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11067. {
  11068. front: {
  11069. height: math.unit(5 + 9 / 12, "feet"),
  11070. weight: math.unit(175, "lb"),
  11071. name: "Front",
  11072. image: {
  11073. source: "./media/characters/vanrel-hyena/front.svg",
  11074. extra: 1086 / 1010,
  11075. bottom: 0.04
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Normal",
  11082. height: math.unit(5 + 9 / 12, "feet"),
  11083. default: true
  11084. },
  11085. ]
  11086. ))
  11087. characterMakers.push(() => makeCharacter(
  11088. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11089. {
  11090. front: {
  11091. height: math.unit(6, "feet"),
  11092. weight: math.unit(103, "lb"),
  11093. name: "Front",
  11094. image: {
  11095. source: "./media/characters/abbott-absol/front.svg",
  11096. extra: 765/694,
  11097. bottom: 47/812
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Megamicro",
  11104. height: math.unit(0.1, "mm")
  11105. },
  11106. {
  11107. name: "Micro",
  11108. height: math.unit(1, "inch")
  11109. },
  11110. {
  11111. name: "Normal",
  11112. height: math.unit(6, "feet"),
  11113. default: true
  11114. },
  11115. ]
  11116. ))
  11117. characterMakers.push(() => makeCharacter(
  11118. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11119. {
  11120. front: {
  11121. height: math.unit(6, "feet"),
  11122. weight: math.unit(264, "lb"),
  11123. name: "Front",
  11124. image: {
  11125. source: "./media/characters/hector/front.svg",
  11126. extra: 2280 / 2130,
  11127. bottom: 0.07
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Normal",
  11134. height: math.unit(12.25, "foot"),
  11135. default: true
  11136. },
  11137. {
  11138. name: "Macro",
  11139. height: math.unit(160, "feet")
  11140. },
  11141. ]
  11142. ))
  11143. characterMakers.push(() => makeCharacter(
  11144. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11145. {
  11146. front: {
  11147. height: math.unit(6, "feet"),
  11148. weight: math.unit(150, "lb"),
  11149. name: "Front",
  11150. image: {
  11151. source: "./media/characters/sal/front.svg",
  11152. extra: 1846 / 1699,
  11153. bottom: 0.04
  11154. }
  11155. },
  11156. },
  11157. [
  11158. {
  11159. name: "Megamacro",
  11160. height: math.unit(10, "miles"),
  11161. default: true
  11162. },
  11163. ]
  11164. ))
  11165. characterMakers.push(() => makeCharacter(
  11166. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11167. {
  11168. front: {
  11169. height: math.unit(3, "meters"),
  11170. weight: math.unit(450, "kg"),
  11171. name: "front",
  11172. image: {
  11173. source: "./media/characters/ranger/front.svg",
  11174. extra: 2401 / 2243,
  11175. bottom: 0.05
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Normal",
  11182. height: math.unit(3, "meters"),
  11183. default: true
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11189. {
  11190. front: {
  11191. height: math.unit(14, "feet"),
  11192. weight: math.unit(800, "kg"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/theresa/front.svg",
  11196. extra: 3575 / 3346,
  11197. bottom: 0.03
  11198. }
  11199. },
  11200. },
  11201. [
  11202. {
  11203. name: "Normal",
  11204. height: math.unit(14, "feet"),
  11205. default: true
  11206. },
  11207. ]
  11208. ))
  11209. characterMakers.push(() => makeCharacter(
  11210. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11211. {
  11212. front: {
  11213. height: math.unit(6, "feet"),
  11214. weight: math.unit(3, "kg"),
  11215. name: "Front",
  11216. image: {
  11217. source: "./media/characters/ine/front.svg",
  11218. extra: 678 / 539,
  11219. bottom: 0.023
  11220. }
  11221. },
  11222. },
  11223. [
  11224. {
  11225. name: "Normal",
  11226. height: math.unit(2.265, "feet"),
  11227. default: true
  11228. },
  11229. ]
  11230. ))
  11231. characterMakers.push(() => makeCharacter(
  11232. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11233. {
  11234. front: {
  11235. height: math.unit(5, "feet"),
  11236. weight: math.unit(30, "kg"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/vial/front.svg",
  11240. extra: 1365 / 1277,
  11241. bottom: 0.04
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Normal",
  11248. height: math.unit(5, "feet"),
  11249. default: true
  11250. },
  11251. ]
  11252. ))
  11253. characterMakers.push(() => makeCharacter(
  11254. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11255. {
  11256. side: {
  11257. height: math.unit(3.4, "meters"),
  11258. weight: math.unit(1000, "lb"),
  11259. name: "Side",
  11260. image: {
  11261. source: "./media/characters/rovoska/side.svg",
  11262. extra: 4403 / 1515
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(3.4, "meters"),
  11270. default: true
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(8, "feet"),
  11279. weight: math.unit(315, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/gunner-rotthbauer/front.svg"
  11283. }
  11284. },
  11285. back: {
  11286. height: math.unit(8, "feet"),
  11287. weight: math.unit(315, "lb"),
  11288. name: "Back",
  11289. image: {
  11290. source: "./media/characters/gunner-rotthbauer/back.svg"
  11291. }
  11292. },
  11293. },
  11294. [
  11295. {
  11296. name: "Micro",
  11297. height: math.unit(3.5, "inches")
  11298. },
  11299. {
  11300. name: "Normal",
  11301. height: math.unit(8, "feet"),
  11302. default: true
  11303. },
  11304. {
  11305. name: "Macro",
  11306. height: math.unit(250, "feet")
  11307. },
  11308. {
  11309. name: "Megamacro",
  11310. height: math.unit(1, "AU")
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11316. {
  11317. front: {
  11318. height: math.unit(5 + 5 / 12, "feet"),
  11319. weight: math.unit(140, "lb"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/allatia/front.svg",
  11323. extra: 1227 / 1180,
  11324. bottom: 0.027
  11325. }
  11326. },
  11327. },
  11328. [
  11329. {
  11330. name: "Normal",
  11331. height: math.unit(5 + 5 / 12, "feet")
  11332. },
  11333. {
  11334. name: "Macro",
  11335. height: math.unit(250, "feet"),
  11336. default: true
  11337. },
  11338. {
  11339. name: "Megamacro",
  11340. height: math.unit(8, "miles")
  11341. }
  11342. ]
  11343. ))
  11344. characterMakers.push(() => makeCharacter(
  11345. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11346. {
  11347. front: {
  11348. height: math.unit(6, "feet"),
  11349. weight: math.unit(120, "lb"),
  11350. name: "Front",
  11351. image: {
  11352. source: "./media/characters/tene/front.svg",
  11353. extra: 814/750,
  11354. bottom: 36/850
  11355. }
  11356. },
  11357. stomping: {
  11358. height: math.unit(2.025, "meters"),
  11359. weight: math.unit(120, "lb"),
  11360. name: "Stomping",
  11361. image: {
  11362. source: "./media/characters/tene/stomping.svg",
  11363. extra: 885/821,
  11364. bottom: 15/900
  11365. }
  11366. },
  11367. sitting: {
  11368. height: math.unit(1, "meter"),
  11369. weight: math.unit(120, "lb"),
  11370. name: "Sitting",
  11371. image: {
  11372. source: "./media/characters/tene/sitting.svg",
  11373. extra: 396/366,
  11374. bottom: 79/475
  11375. }
  11376. },
  11377. smiling: {
  11378. height: math.unit(1.2, "feet"),
  11379. name: "Smiling",
  11380. image: {
  11381. source: "./media/characters/tene/smiling.svg",
  11382. extra: 1364/1071,
  11383. bottom: 0/1364
  11384. }
  11385. },
  11386. smug: {
  11387. height: math.unit(1.3, "feet"),
  11388. name: "Smug",
  11389. image: {
  11390. source: "./media/characters/tene/smug.svg",
  11391. extra: 1323/1082,
  11392. bottom: 0/1323
  11393. }
  11394. },
  11395. feral: {
  11396. height: math.unit(3.9, "feet"),
  11397. weight: math.unit(250, "lb"),
  11398. name: "Feral",
  11399. image: {
  11400. source: "./media/characters/tene/feral.svg",
  11401. extra: 717 / 458,
  11402. bottom: 0.179
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(6, "feet")
  11410. },
  11411. {
  11412. name: "Macro",
  11413. height: math.unit(300, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(5, "miles")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11424. {
  11425. side: {
  11426. height: math.unit(6, "feet"),
  11427. name: "Side",
  11428. image: {
  11429. source: "./media/characters/evander/side.svg",
  11430. extra: 877 / 477
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(0.83, "meters"),
  11438. default: true
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(12, "feet"),
  11447. weight: math.unit(1000, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11451. extra: 1762 / 1611
  11452. }
  11453. },
  11454. back: {
  11455. height: math.unit(12, "feet"),
  11456. weight: math.unit(1000, "lb"),
  11457. name: "Back",
  11458. image: {
  11459. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11460. extra: 1762 / 1611
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Normal",
  11467. height: math.unit(12, "feet"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Kaiju",
  11472. height: math.unit(150, "feet")
  11473. },
  11474. ]
  11475. ))
  11476. characterMakers.push(() => makeCharacter(
  11477. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11478. {
  11479. front: {
  11480. height: math.unit(6, "feet"),
  11481. weight: math.unit(150, "lb"),
  11482. name: "Front",
  11483. image: {
  11484. source: "./media/characters/zero-alurus/front.svg"
  11485. }
  11486. },
  11487. back: {
  11488. height: math.unit(6, "feet"),
  11489. weight: math.unit(150, "lb"),
  11490. name: "Back",
  11491. image: {
  11492. source: "./media/characters/zero-alurus/back.svg"
  11493. }
  11494. },
  11495. },
  11496. [
  11497. {
  11498. name: "Normal",
  11499. height: math.unit(5 + 10 / 12, "feet")
  11500. },
  11501. {
  11502. name: "Macro",
  11503. height: math.unit(60, "feet"),
  11504. default: true
  11505. },
  11506. {
  11507. name: "Macro+",
  11508. height: math.unit(450, "feet")
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11514. {
  11515. front: {
  11516. height: math.unit(6, "feet"),
  11517. weight: math.unit(200, "lb"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/mega-shi/front.svg",
  11521. extra: 1279 / 1250,
  11522. bottom: 0.02
  11523. }
  11524. },
  11525. back: {
  11526. height: math.unit(6, "feet"),
  11527. weight: math.unit(200, "lb"),
  11528. name: "Back",
  11529. image: {
  11530. source: "./media/characters/mega-shi/back.svg",
  11531. extra: 1279 / 1250,
  11532. bottom: 0.02
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Micro",
  11539. height: math.unit(16 + 6 / 12, "feet")
  11540. },
  11541. {
  11542. name: "Third Dimension",
  11543. height: math.unit(40, "meters")
  11544. },
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(660, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(10, "miles")
  11553. },
  11554. {
  11555. name: "Planetary Launch",
  11556. height: math.unit(500, "miles")
  11557. },
  11558. {
  11559. name: "Interstellar",
  11560. height: math.unit(1e9, "miles")
  11561. },
  11562. {
  11563. name: "Leaving the Universe",
  11564. height: math.unit(1, "gigaparsec")
  11565. },
  11566. {
  11567. name: "Travelling Universes",
  11568. height: math.unit(30e15, "parsecs")
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(5 + 4/12, "feet"),
  11577. weight: math.unit(120, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/odyssey/front.svg",
  11581. extra: 1747/1571,
  11582. bottom: 47/1794
  11583. }
  11584. },
  11585. side: {
  11586. height: math.unit(5.1, "feet"),
  11587. weight: math.unit(120, "lb"),
  11588. name: "Side",
  11589. image: {
  11590. source: "./media/characters/odyssey/side.svg",
  11591. extra: 1847/1619,
  11592. bottom: 47/1894
  11593. }
  11594. },
  11595. lounging: {
  11596. height: math.unit(1.464, "feet"),
  11597. weight: math.unit(120, "lb"),
  11598. name: "Lounging",
  11599. image: {
  11600. source: "./media/characters/odyssey/lounging.svg",
  11601. extra: 1235/837,
  11602. bottom: 551/1786
  11603. }
  11604. },
  11605. },
  11606. [
  11607. {
  11608. name: "Normal",
  11609. height: math.unit(5 + 4 / 12, "feet")
  11610. },
  11611. {
  11612. name: "Macro",
  11613. height: math.unit(1, "km")
  11614. },
  11615. {
  11616. name: "Megamacro",
  11617. height: math.unit(3000, "km")
  11618. },
  11619. {
  11620. name: "Gigamacro",
  11621. height: math.unit(1, "AU"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Omniversal",
  11626. height: math.unit(100e14, "lightyears")
  11627. },
  11628. ]
  11629. ))
  11630. characterMakers.push(() => makeCharacter(
  11631. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11632. {
  11633. front: {
  11634. height: math.unit(5 + 10/12, "feet"),
  11635. name: "Front",
  11636. image: {
  11637. source: "./media/characters/mekuto/front.svg",
  11638. extra: 875/835,
  11639. bottom: 46/921
  11640. }
  11641. },
  11642. },
  11643. [
  11644. {
  11645. name: "Minimicro",
  11646. height: math.unit(0.2, "inches")
  11647. },
  11648. {
  11649. name: "Micro",
  11650. height: math.unit(1.5, "inches")
  11651. },
  11652. {
  11653. name: "Normal",
  11654. height: math.unit(5 + 10 / 12, "feet"),
  11655. default: true
  11656. },
  11657. {
  11658. name: "Minimacro",
  11659. height: math.unit(17 + 9 / 12, "feet")
  11660. },
  11661. {
  11662. name: "Macro",
  11663. height: math.unit(177.5, "feet")
  11664. },
  11665. {
  11666. name: "Megamacro",
  11667. height: math.unit(152, "miles")
  11668. },
  11669. ]
  11670. ))
  11671. characterMakers.push(() => makeCharacter(
  11672. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11673. {
  11674. front: {
  11675. height: math.unit(6.5, "inches"),
  11676. weight: math.unit(13, "oz"),
  11677. name: "Front",
  11678. image: {
  11679. source: "./media/characters/dafydd-tomos/front.svg",
  11680. extra: 2990 / 2603,
  11681. bottom: 0.03
  11682. }
  11683. },
  11684. },
  11685. [
  11686. {
  11687. name: "Micro",
  11688. height: math.unit(6.5, "inches"),
  11689. default: true
  11690. },
  11691. ]
  11692. ))
  11693. characterMakers.push(() => makeCharacter(
  11694. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11695. {
  11696. front: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(150, "lb"),
  11699. name: "Front",
  11700. image: {
  11701. source: "./media/characters/splinter/front.svg",
  11702. extra: 2990 / 2882,
  11703. bottom: 0.04
  11704. }
  11705. },
  11706. back: {
  11707. height: math.unit(6, "feet"),
  11708. weight: math.unit(150, "lb"),
  11709. name: "Back",
  11710. image: {
  11711. source: "./media/characters/splinter/back.svg",
  11712. extra: 2990 / 2882,
  11713. bottom: 0.04
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Normal",
  11720. height: math.unit(6, "feet")
  11721. },
  11722. {
  11723. name: "Macro",
  11724. height: math.unit(230, "meters"),
  11725. default: true
  11726. },
  11727. ]
  11728. ))
  11729. characterMakers.push(() => makeCharacter(
  11730. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11731. {
  11732. front: {
  11733. height: math.unit(4 + 10 / 12, "feet"),
  11734. weight: math.unit(480, "lb"),
  11735. name: "Front",
  11736. image: {
  11737. source: "./media/characters/snow-gabumon/front.svg",
  11738. extra: 1140 / 963,
  11739. bottom: 0.058
  11740. }
  11741. },
  11742. back: {
  11743. height: math.unit(4 + 10 / 12, "feet"),
  11744. weight: math.unit(480, "lb"),
  11745. name: "Back",
  11746. image: {
  11747. source: "./media/characters/snow-gabumon/back.svg",
  11748. extra: 1115 / 962,
  11749. bottom: 0.041
  11750. }
  11751. },
  11752. frontUndresed: {
  11753. height: math.unit(4 + 10 / 12, "feet"),
  11754. weight: math.unit(480, "lb"),
  11755. name: "Front (Undressed)",
  11756. image: {
  11757. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11758. extra: 1061 / 960,
  11759. bottom: 0.045
  11760. }
  11761. },
  11762. },
  11763. [
  11764. {
  11765. name: "Micro",
  11766. height: math.unit(1, "inch")
  11767. },
  11768. {
  11769. name: "Normal",
  11770. height: math.unit(4 + 10 / 12, "feet"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Macro",
  11775. height: math.unit(200, "feet")
  11776. },
  11777. {
  11778. name: "Megamacro",
  11779. height: math.unit(120, "miles")
  11780. },
  11781. {
  11782. name: "Gigamacro",
  11783. height: math.unit(9800, "miles")
  11784. },
  11785. ]
  11786. ))
  11787. characterMakers.push(() => makeCharacter(
  11788. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11789. {
  11790. front: {
  11791. height: math.unit(1.7, "meters"),
  11792. weight: math.unit(140, "lb"),
  11793. name: "Front",
  11794. image: {
  11795. source: "./media/characters/moody/front.svg",
  11796. extra: 3226 / 3007,
  11797. bottom: 0.087
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Micro",
  11804. height: math.unit(1, "mm")
  11805. },
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(1.7, "meters"),
  11809. default: true
  11810. },
  11811. {
  11812. name: "Macro",
  11813. height: math.unit(80, "meters")
  11814. },
  11815. {
  11816. name: "Macro+",
  11817. height: math.unit(500, "meters")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(150, "lb"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/zyas/front.svg",
  11830. extra: 1180 / 1120,
  11831. bottom: 0.045
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Normal",
  11838. height: math.unit(10, "feet"),
  11839. default: true
  11840. },
  11841. {
  11842. name: "Macro",
  11843. height: math.unit(500, "feet")
  11844. },
  11845. {
  11846. name: "Megamacro",
  11847. height: math.unit(5, "miles")
  11848. },
  11849. {
  11850. name: "Teramacro",
  11851. height: math.unit(150000, "miles")
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11857. {
  11858. front: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(150, "lb"),
  11861. name: "Front",
  11862. image: {
  11863. source: "./media/characters/cuon/front.svg",
  11864. extra: 1390 / 1320,
  11865. bottom: 0.008
  11866. }
  11867. },
  11868. },
  11869. [
  11870. {
  11871. name: "Micro",
  11872. height: math.unit(3, "inches")
  11873. },
  11874. {
  11875. name: "Normal",
  11876. height: math.unit(18 + 9 / 12, "feet"),
  11877. default: true
  11878. },
  11879. {
  11880. name: "Macro",
  11881. height: math.unit(360, "feet")
  11882. },
  11883. {
  11884. name: "Megamacro",
  11885. height: math.unit(360, "miles")
  11886. },
  11887. ]
  11888. ))
  11889. characterMakers.push(() => makeCharacter(
  11890. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11891. {
  11892. front: {
  11893. height: math.unit(2.4, "meters"),
  11894. weight: math.unit(70, "kg"),
  11895. name: "Front",
  11896. image: {
  11897. source: "./media/characters/nyanuxk/front.svg",
  11898. extra: 1172 / 1084,
  11899. bottom: 0.065
  11900. }
  11901. },
  11902. side: {
  11903. height: math.unit(2.4, "meters"),
  11904. weight: math.unit(70, "kg"),
  11905. name: "Side",
  11906. image: {
  11907. source: "./media/characters/nyanuxk/side.svg",
  11908. extra: 1190 / 1132,
  11909. bottom: 0.007
  11910. }
  11911. },
  11912. back: {
  11913. height: math.unit(2.4, "meters"),
  11914. weight: math.unit(70, "kg"),
  11915. name: "Back",
  11916. image: {
  11917. source: "./media/characters/nyanuxk/back.svg",
  11918. extra: 1200 / 1141,
  11919. bottom: 0.015
  11920. }
  11921. },
  11922. foot: {
  11923. height: math.unit(0.52, "meters"),
  11924. name: "Foot",
  11925. image: {
  11926. source: "./media/characters/nyanuxk/foot.svg"
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Micro",
  11933. height: math.unit(2, "cm")
  11934. },
  11935. {
  11936. name: "Normal",
  11937. height: math.unit(2.4, "meters"),
  11938. default: true
  11939. },
  11940. {
  11941. name: "Smaller Macro",
  11942. height: math.unit(120, "meters")
  11943. },
  11944. {
  11945. name: "Bigger Macro",
  11946. height: math.unit(1.2, "km")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(15, "kilometers")
  11951. },
  11952. {
  11953. name: "Gigamacro",
  11954. height: math.unit(2000, "km")
  11955. },
  11956. {
  11957. name: "Teramacro",
  11958. height: math.unit(500000, "km")
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11964. {
  11965. side: {
  11966. height: math.unit(6, "feet"),
  11967. name: "Side",
  11968. image: {
  11969. source: "./media/characters/ailbhe/side.svg",
  11970. extra: 757 / 464,
  11971. bottom: 0.041
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(1.07, "meters"),
  11979. default: true
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(120, "kg"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/zevulfius/front.svg",
  11992. extra: 965 / 903
  11993. }
  11994. },
  11995. side: {
  11996. height: math.unit(6, "feet"),
  11997. weight: math.unit(120, "kg"),
  11998. name: "Side",
  11999. image: {
  12000. source: "./media/characters/zevulfius/side.svg",
  12001. extra: 939 / 900
  12002. }
  12003. },
  12004. back: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(120, "kg"),
  12007. name: "Back",
  12008. image: {
  12009. source: "./media/characters/zevulfius/back.svg",
  12010. extra: 918 / 854,
  12011. bottom: 0.005
  12012. }
  12013. },
  12014. foot: {
  12015. height: math.unit(6 / 3.72, "feet"),
  12016. name: "Foot",
  12017. image: {
  12018. source: "./media/characters/zevulfius/foot.svg"
  12019. }
  12020. },
  12021. },
  12022. [
  12023. {
  12024. name: "Macro",
  12025. height: math.unit(750, "meters")
  12026. },
  12027. {
  12028. name: "Megamacro",
  12029. height: math.unit(20, "km"),
  12030. default: true
  12031. },
  12032. {
  12033. name: "Gigamacro",
  12034. height: math.unit(2000, "km")
  12035. },
  12036. {
  12037. name: "Teramacro",
  12038. height: math.unit(250000, "km")
  12039. },
  12040. ]
  12041. ))
  12042. characterMakers.push(() => makeCharacter(
  12043. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12044. {
  12045. front: {
  12046. height: math.unit(100, "feet"),
  12047. weight: math.unit(350, "kg"),
  12048. name: "Front",
  12049. image: {
  12050. source: "./media/characters/rikes/front.svg",
  12051. extra: 1565 / 1483,
  12052. bottom: 0.017
  12053. }
  12054. },
  12055. },
  12056. [
  12057. {
  12058. name: "Macro",
  12059. height: math.unit(100, "feet"),
  12060. default: true
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12066. {
  12067. front: {
  12068. height: math.unit(8, "feet"),
  12069. weight: math.unit(356, "lb"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/adam-silver-mane/front.svg",
  12073. extra: 1036/937,
  12074. bottom: 63/1099
  12075. }
  12076. },
  12077. side: {
  12078. height: math.unit(8, "feet"),
  12079. weight: math.unit(356, "lb"),
  12080. name: "Side",
  12081. image: {
  12082. source: "./media/characters/adam-silver-mane/side.svg",
  12083. extra: 997/901,
  12084. bottom: 59/1056
  12085. }
  12086. },
  12087. frontNsfw: {
  12088. height: math.unit(8, "feet"),
  12089. weight: math.unit(356, "lb"),
  12090. name: "Front (NSFW)",
  12091. image: {
  12092. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12093. extra: 1036/937,
  12094. bottom: 63/1099
  12095. }
  12096. },
  12097. sideNsfw: {
  12098. height: math.unit(8, "feet"),
  12099. weight: math.unit(356, "lb"),
  12100. name: "Side (NSFW)",
  12101. image: {
  12102. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12103. extra: 997/901,
  12104. bottom: 59/1056
  12105. }
  12106. },
  12107. dick: {
  12108. height: math.unit(2.1, "feet"),
  12109. name: "Dick",
  12110. image: {
  12111. source: "./media/characters/adam-silver-mane/dick.svg"
  12112. }
  12113. },
  12114. taur: {
  12115. height: math.unit(16, "feet"),
  12116. weight: math.unit(1500, "kg"),
  12117. name: "Taur",
  12118. image: {
  12119. source: "./media/characters/adam-silver-mane/taur.svg",
  12120. extra: 1713 / 1571,
  12121. bottom: 0.01
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Normal",
  12128. height: math.unit(8, "feet")
  12129. },
  12130. {
  12131. name: "Minimacro",
  12132. height: math.unit(80, "feet")
  12133. },
  12134. {
  12135. name: "MDA",
  12136. height: math.unit(80, "meters")
  12137. },
  12138. {
  12139. name: "Macro",
  12140. height: math.unit(800, "feet"),
  12141. default: true
  12142. },
  12143. {
  12144. name: "Megamacro",
  12145. height: math.unit(8000, "feet")
  12146. },
  12147. {
  12148. name: "Gigamacro",
  12149. height: math.unit(800, "miles")
  12150. },
  12151. {
  12152. name: "Teramacro",
  12153. height: math.unit(80000, "miles")
  12154. },
  12155. {
  12156. name: "Celestial",
  12157. height: math.unit(8e6, "miles")
  12158. },
  12159. {
  12160. name: "Star Dragon",
  12161. height: math.unit(800000, "parsecs")
  12162. },
  12163. {
  12164. name: "Godly",
  12165. height: math.unit(800, "teraparsecs")
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12171. {
  12172. front: {
  12173. height: math.unit(6, "feet"),
  12174. weight: math.unit(150, "lb"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/ky'owin/front.svg",
  12178. extra: 3862/3053,
  12179. bottom: 74/3936
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(6 + 8 / 12, "feet")
  12187. },
  12188. {
  12189. name: "Large",
  12190. height: math.unit(68, "feet")
  12191. },
  12192. {
  12193. name: "Macro",
  12194. height: math.unit(132, "feet")
  12195. },
  12196. {
  12197. name: "Macro+",
  12198. height: math.unit(340, "feet")
  12199. },
  12200. {
  12201. name: "Macro++",
  12202. height: math.unit(680, "feet"),
  12203. default: true
  12204. },
  12205. {
  12206. name: "Megamacro",
  12207. height: math.unit(1, "mile")
  12208. },
  12209. {
  12210. name: "Megamacro+",
  12211. height: math.unit(10, "miles")
  12212. },
  12213. ]
  12214. ))
  12215. characterMakers.push(() => makeCharacter(
  12216. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12217. {
  12218. front: {
  12219. height: math.unit(4, "feet"),
  12220. weight: math.unit(50, "lb"),
  12221. name: "Front",
  12222. image: {
  12223. source: "./media/characters/mal/front.svg",
  12224. extra: 785 / 724,
  12225. bottom: 0.07
  12226. }
  12227. },
  12228. },
  12229. [
  12230. {
  12231. name: "Micro",
  12232. height: math.unit(4, "inches")
  12233. },
  12234. {
  12235. name: "Normal",
  12236. height: math.unit(4, "feet"),
  12237. default: true
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(200, "feet")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(150, "lb"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/jordan-deware/front.svg",
  12254. extra: 1191 / 1012
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Nano",
  12261. height: math.unit(0.01, "mm")
  12262. },
  12263. {
  12264. name: "Minimicro",
  12265. height: math.unit(1, "mm")
  12266. },
  12267. {
  12268. name: "Micro",
  12269. height: math.unit(0.5, "inches")
  12270. },
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(4, "feet"),
  12274. default: true
  12275. },
  12276. {
  12277. name: "Minimacro",
  12278. height: math.unit(40, "meters")
  12279. },
  12280. {
  12281. name: "Small Macro",
  12282. height: math.unit(400, "meters")
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(4, "miles")
  12287. },
  12288. {
  12289. name: "Megamacro",
  12290. height: math.unit(40, "miles")
  12291. },
  12292. {
  12293. name: "Megamacro+",
  12294. height: math.unit(400, "miles")
  12295. },
  12296. {
  12297. name: "Gigamacro",
  12298. height: math.unit(400000, "miles")
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12304. {
  12305. side: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(150, "lb"),
  12308. name: "Side",
  12309. image: {
  12310. source: "./media/characters/kimiko/side.svg",
  12311. extra: 600 / 358
  12312. }
  12313. },
  12314. },
  12315. [
  12316. {
  12317. name: "Normal",
  12318. height: math.unit(15, "feet"),
  12319. default: true
  12320. },
  12321. {
  12322. name: "Macro",
  12323. height: math.unit(220, "feet")
  12324. },
  12325. {
  12326. name: "Macro+",
  12327. height: math.unit(1450, "feet")
  12328. },
  12329. {
  12330. name: "Megamacro",
  12331. height: math.unit(11500, "feet")
  12332. },
  12333. {
  12334. name: "Gigamacro",
  12335. height: math.unit(9500, "miles")
  12336. },
  12337. {
  12338. name: "Teramacro",
  12339. height: math.unit(2208005005, "miles")
  12340. },
  12341. {
  12342. name: "Examacro",
  12343. height: math.unit(2750, "parsecs")
  12344. },
  12345. {
  12346. name: "Zettamacro",
  12347. height: math.unit(101500, "parsecs")
  12348. },
  12349. ]
  12350. ))
  12351. characterMakers.push(() => makeCharacter(
  12352. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12353. {
  12354. front: {
  12355. height: math.unit(6, "feet"),
  12356. weight: math.unit(70, "kg"),
  12357. name: "Front",
  12358. image: {
  12359. source: "./media/characters/andrew-sleepy/front.svg"
  12360. }
  12361. },
  12362. side: {
  12363. height: math.unit(6, "feet"),
  12364. weight: math.unit(70, "kg"),
  12365. name: "Side",
  12366. image: {
  12367. source: "./media/characters/andrew-sleepy/side.svg"
  12368. }
  12369. },
  12370. },
  12371. [
  12372. {
  12373. name: "Micro",
  12374. height: math.unit(1, "mm"),
  12375. default: true
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(150, "lb"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/judio/front.svg",
  12388. extra: 1258 / 1110
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Normal",
  12395. height: math.unit(5 + 6 / 12, "feet")
  12396. },
  12397. {
  12398. name: "Macro",
  12399. height: math.unit(1000, "feet"),
  12400. default: true
  12401. },
  12402. {
  12403. name: "Megamacro",
  12404. height: math.unit(10, "miles")
  12405. },
  12406. ]
  12407. ))
  12408. characterMakers.push(() => makeCharacter(
  12409. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12410. {
  12411. frontDressed: {
  12412. height: math.unit(6, "feet"),
  12413. weight: math.unit(68, "kg"),
  12414. name: "Front (Dressed)",
  12415. image: {
  12416. source: "./media/characters/nomaxice/front-dressed.svg",
  12417. extra: 1137/824,
  12418. bottom: 74/1211
  12419. }
  12420. },
  12421. frontShorts: {
  12422. height: math.unit(6, "feet"),
  12423. weight: math.unit(68, "kg"),
  12424. name: "Front (Shorts)",
  12425. image: {
  12426. source: "./media/characters/nomaxice/front-shorts.svg",
  12427. extra: 1137/824,
  12428. bottom: 74/1211
  12429. }
  12430. },
  12431. back: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(68, "kg"),
  12434. name: "Back",
  12435. image: {
  12436. source: "./media/characters/nomaxice/back.svg",
  12437. extra: 822/786,
  12438. bottom: 39/861
  12439. }
  12440. },
  12441. hand: {
  12442. height: math.unit(0.565, "feet"),
  12443. name: "Hand",
  12444. image: {
  12445. source: "./media/characters/nomaxice/hand.svg"
  12446. }
  12447. },
  12448. foot: {
  12449. height: math.unit(1, "feet"),
  12450. name: "Foot",
  12451. image: {
  12452. source: "./media/characters/nomaxice/foot.svg"
  12453. }
  12454. },
  12455. },
  12456. [
  12457. {
  12458. name: "Micro",
  12459. height: math.unit(8, "cm")
  12460. },
  12461. {
  12462. name: "Norm",
  12463. height: math.unit(1.82, "m")
  12464. },
  12465. {
  12466. name: "Norm+",
  12467. height: math.unit(8.8, "feet"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Big",
  12472. height: math.unit(8, "meters")
  12473. },
  12474. {
  12475. name: "Macro",
  12476. height: math.unit(18, "meters")
  12477. },
  12478. {
  12479. name: "Macro+",
  12480. height: math.unit(88, "meters")
  12481. },
  12482. ]
  12483. ))
  12484. characterMakers.push(() => makeCharacter(
  12485. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12486. {
  12487. front: {
  12488. height: math.unit(12, "feet"),
  12489. weight: math.unit(1.5, "tons"),
  12490. name: "Front",
  12491. image: {
  12492. source: "./media/characters/dydros/front.svg",
  12493. extra: 863 / 800,
  12494. bottom: 0.015
  12495. }
  12496. },
  12497. back: {
  12498. height: math.unit(12, "feet"),
  12499. weight: math.unit(1.5, "tons"),
  12500. name: "Back",
  12501. image: {
  12502. source: "./media/characters/dydros/back.svg",
  12503. extra: 900 / 843,
  12504. bottom: 0.005
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(12, "feet"),
  12512. default: true
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(100, "kg"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/riggi/front.svg",
  12525. extra: 5787 / 5303
  12526. }
  12527. },
  12528. hyper: {
  12529. height: math.unit(6 * 5 / 3, "feet"),
  12530. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12531. name: "Hyper",
  12532. image: {
  12533. source: "./media/characters/riggi/hyper.svg",
  12534. extra: 3595 / 3485
  12535. }
  12536. },
  12537. },
  12538. [
  12539. {
  12540. name: "Small Macro",
  12541. height: math.unit(50, "feet")
  12542. },
  12543. {
  12544. name: "Default",
  12545. height: math.unit(200, "feet"),
  12546. default: true
  12547. },
  12548. {
  12549. name: "Loom",
  12550. height: math.unit(10000, "feet")
  12551. },
  12552. {
  12553. name: "Cruising Altitude",
  12554. height: math.unit(30000, "feet")
  12555. },
  12556. {
  12557. name: "Megamacro",
  12558. height: math.unit(100, "miles")
  12559. },
  12560. {
  12561. name: "Continent Sized",
  12562. height: math.unit(2800, "miles")
  12563. },
  12564. {
  12565. name: "Earth Sized",
  12566. height: math.unit(8000, "miles")
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(6, "feet"),
  12575. weight: math.unit(250, "lb"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/alexi/front.svg",
  12579. extra: 3483 / 3291,
  12580. bottom: 0.04
  12581. }
  12582. },
  12583. back: {
  12584. height: math.unit(6, "feet"),
  12585. weight: math.unit(250, "lb"),
  12586. name: "Back",
  12587. image: {
  12588. source: "./media/characters/alexi/back.svg",
  12589. extra: 3533 / 3356,
  12590. bottom: 0.021
  12591. }
  12592. },
  12593. frontTransforming: {
  12594. height: math.unit(8.58, "feet"),
  12595. weight: math.unit(1300, "lb"),
  12596. name: "Transforming",
  12597. image: {
  12598. source: "./media/characters/alexi/front-transforming.svg",
  12599. extra: 437 / 409,
  12600. bottom: 19 / 458.66
  12601. }
  12602. },
  12603. frontTransformed: {
  12604. height: math.unit(12.5, "feet"),
  12605. weight: math.unit(4000, "lb"),
  12606. name: "Transformed",
  12607. image: {
  12608. source: "./media/characters/alexi/front-transformed.svg",
  12609. extra: 639 / 614,
  12610. bottom: 30.55 / 671
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(14, "feet"),
  12618. default: true
  12619. },
  12620. {
  12621. name: "Minimacro",
  12622. height: math.unit(30, "meters")
  12623. },
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(500, "meters")
  12627. },
  12628. {
  12629. name: "Megamacro",
  12630. height: math.unit(9000, "km")
  12631. },
  12632. {
  12633. name: "Teramacro",
  12634. height: math.unit(384000, "km")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6, "feet"),
  12643. weight: math.unit(150, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/kayroo/front.svg",
  12647. extra: 1153 / 1038,
  12648. bottom: 0.06
  12649. }
  12650. },
  12651. foot: {
  12652. height: math.unit(6, "feet"),
  12653. weight: math.unit(150, "lb"),
  12654. name: "Foot",
  12655. image: {
  12656. source: "./media/characters/kayroo/foot.svg"
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Normal",
  12663. height: math.unit(8, "feet"),
  12664. default: true
  12665. },
  12666. {
  12667. name: "Minimacro",
  12668. height: math.unit(250, "feet")
  12669. },
  12670. {
  12671. name: "Macro",
  12672. height: math.unit(2800, "feet")
  12673. },
  12674. {
  12675. name: "Megamacro",
  12676. height: math.unit(5200, "feet")
  12677. },
  12678. {
  12679. name: "Gigamacro",
  12680. height: math.unit(27000, "feet")
  12681. },
  12682. {
  12683. name: "Omega",
  12684. height: math.unit(45000, "feet")
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12690. {
  12691. front: {
  12692. height: math.unit(18, "feet"),
  12693. weight: math.unit(5800, "lb"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/rhys/front.svg",
  12697. extra: 3386 / 3090,
  12698. bottom: 0.07
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Normal",
  12705. height: math.unit(18, "feet"),
  12706. default: true
  12707. },
  12708. {
  12709. name: "Working Size",
  12710. height: math.unit(200, "feet")
  12711. },
  12712. {
  12713. name: "Demolition Size",
  12714. height: math.unit(2000, "feet")
  12715. },
  12716. {
  12717. name: "Maximum Licensed Size",
  12718. height: math.unit(5, "miles")
  12719. },
  12720. {
  12721. name: "Maximum Observed Size",
  12722. height: math.unit(10, "yottameters")
  12723. },
  12724. ]
  12725. ))
  12726. characterMakers.push(() => makeCharacter(
  12727. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12728. {
  12729. front: {
  12730. height: math.unit(6, "feet"),
  12731. weight: math.unit(250, "lb"),
  12732. name: "Front",
  12733. image: {
  12734. source: "./media/characters/toto/front.svg",
  12735. extra: 527 / 479,
  12736. bottom: 0.05
  12737. }
  12738. },
  12739. },
  12740. [
  12741. {
  12742. name: "Micro",
  12743. height: math.unit(3, "feet")
  12744. },
  12745. {
  12746. name: "Normal",
  12747. height: math.unit(10, "feet")
  12748. },
  12749. {
  12750. name: "Macro",
  12751. height: math.unit(150, "feet"),
  12752. default: true
  12753. },
  12754. {
  12755. name: "Megamacro",
  12756. height: math.unit(1200, "feet")
  12757. },
  12758. ]
  12759. ))
  12760. characterMakers.push(() => makeCharacter(
  12761. { name: "King", species: ["lion"], tags: ["anthro"] },
  12762. {
  12763. back: {
  12764. height: math.unit(6, "feet"),
  12765. weight: math.unit(150, "lb"),
  12766. name: "Back",
  12767. image: {
  12768. source: "./media/characters/king/back.svg"
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Micro",
  12775. height: math.unit(2, "inches")
  12776. },
  12777. {
  12778. name: "Normal",
  12779. height: math.unit(8, "feet")
  12780. },
  12781. {
  12782. name: "Macro",
  12783. height: math.unit(200, "feet"),
  12784. default: true
  12785. },
  12786. {
  12787. name: "Megamacro",
  12788. height: math.unit(50, "miles")
  12789. },
  12790. ]
  12791. ))
  12792. characterMakers.push(() => makeCharacter(
  12793. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12794. {
  12795. front: {
  12796. height: math.unit(11, "feet"),
  12797. weight: math.unit(1400, "lb"),
  12798. name: "Front",
  12799. image: {
  12800. source: "./media/characters/cordite/front.svg",
  12801. extra: 1919/1827,
  12802. bottom: 40/1959
  12803. }
  12804. },
  12805. side: {
  12806. height: math.unit(11, "feet"),
  12807. weight: math.unit(1400, "lb"),
  12808. name: "Side",
  12809. image: {
  12810. source: "./media/characters/cordite/side.svg",
  12811. extra: 1908/1793,
  12812. bottom: 38/1946
  12813. }
  12814. },
  12815. back: {
  12816. height: math.unit(11, "feet"),
  12817. weight: math.unit(1400, "lb"),
  12818. name: "Back",
  12819. image: {
  12820. source: "./media/characters/cordite/back.svg",
  12821. extra: 1938/1837,
  12822. bottom: 10/1948
  12823. }
  12824. },
  12825. feral: {
  12826. height: math.unit(2, "feet"),
  12827. weight: math.unit(90, "lb"),
  12828. name: "Feral",
  12829. image: {
  12830. source: "./media/characters/cordite/feral.svg",
  12831. extra: 1260 / 755,
  12832. bottom: 0.05
  12833. }
  12834. },
  12835. },
  12836. [
  12837. {
  12838. name: "Normal",
  12839. height: math.unit(11, "feet"),
  12840. default: true
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12846. {
  12847. front: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(150, "lb"),
  12850. name: "Front",
  12851. image: {
  12852. source: "./media/characters/pianostrong/front.svg",
  12853. extra: 6577 / 6254,
  12854. bottom: 0.02
  12855. }
  12856. },
  12857. side: {
  12858. height: math.unit(6, "feet"),
  12859. weight: math.unit(150, "lb"),
  12860. name: "Side",
  12861. image: {
  12862. source: "./media/characters/pianostrong/side.svg",
  12863. extra: 6106 / 5730
  12864. }
  12865. },
  12866. back: {
  12867. height: math.unit(6, "feet"),
  12868. weight: math.unit(150, "lb"),
  12869. name: "Back",
  12870. image: {
  12871. source: "./media/characters/pianostrong/back.svg",
  12872. extra: 6085 / 5733,
  12873. bottom: 0.01
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Macro",
  12880. height: math.unit(100, "feet")
  12881. },
  12882. {
  12883. name: "Macro+",
  12884. height: math.unit(300, "feet"),
  12885. default: true
  12886. },
  12887. {
  12888. name: "Macro++",
  12889. height: math.unit(1000, "feet")
  12890. },
  12891. ]
  12892. ))
  12893. characterMakers.push(() => makeCharacter(
  12894. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12895. {
  12896. front: {
  12897. height: math.unit(6, "feet"),
  12898. weight: math.unit(150, "lb"),
  12899. name: "Front",
  12900. image: {
  12901. source: "./media/characters/kona/front.svg",
  12902. extra: 2960 / 2629,
  12903. bottom: 0.005
  12904. }
  12905. },
  12906. },
  12907. [
  12908. {
  12909. name: "Normal",
  12910. height: math.unit(11 + 8 / 12, "feet")
  12911. },
  12912. {
  12913. name: "Macro",
  12914. height: math.unit(850, "feet"),
  12915. default: true
  12916. },
  12917. {
  12918. name: "Macro+",
  12919. height: math.unit(1.5, "km"),
  12920. default: true
  12921. },
  12922. {
  12923. name: "Megamacro",
  12924. height: math.unit(80, "miles")
  12925. },
  12926. {
  12927. name: "Gigamacro",
  12928. height: math.unit(3500, "miles")
  12929. },
  12930. ]
  12931. ))
  12932. characterMakers.push(() => makeCharacter(
  12933. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12934. {
  12935. side: {
  12936. height: math.unit(1.9, "meters"),
  12937. weight: math.unit(326, "kg"),
  12938. name: "Side",
  12939. image: {
  12940. source: "./media/characters/levi/side.svg",
  12941. extra: 1704 / 1334,
  12942. bottom: 0.02
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(1.9, "meters"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Macro",
  12954. height: math.unit(20, "meters")
  12955. },
  12956. {
  12957. name: "Macro+",
  12958. height: math.unit(200, "meters")
  12959. },
  12960. {
  12961. name: "Megamacro",
  12962. height: math.unit(2, "km")
  12963. },
  12964. {
  12965. name: "Megamacro+",
  12966. height: math.unit(20, "km")
  12967. },
  12968. {
  12969. name: "Gigamacro",
  12970. height: math.unit(2500, "km")
  12971. },
  12972. {
  12973. name: "Gigamacro+",
  12974. height: math.unit(120000, "km")
  12975. },
  12976. {
  12977. name: "Teramacro",
  12978. height: math.unit(7.77e6, "km")
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12984. {
  12985. front: {
  12986. height: math.unit(6 + 4/12, "feet"),
  12987. weight: math.unit(190, "lb"),
  12988. name: "Front",
  12989. image: {
  12990. source: "./media/characters/bmc/front.svg",
  12991. extra: 1626/1472,
  12992. bottom: 79/1705
  12993. }
  12994. },
  12995. back: {
  12996. height: math.unit(6 + 4/12, "feet"),
  12997. weight: math.unit(190, "lb"),
  12998. name: "Back",
  12999. image: {
  13000. source: "./media/characters/bmc/back.svg",
  13001. extra: 1640/1479,
  13002. bottom: 45/1685
  13003. }
  13004. },
  13005. frontArmor: {
  13006. height: math.unit(6 + 4/12, "feet"),
  13007. weight: math.unit(190, "lb"),
  13008. name: "Front-armor",
  13009. image: {
  13010. source: "./media/characters/bmc/front-armor.svg",
  13011. extra: 1538/1468,
  13012. bottom: 79/1617
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Human-sized",
  13019. height: math.unit(6 + 4 / 12, "feet")
  13020. },
  13021. {
  13022. name: "Interactive Size",
  13023. height: math.unit(25, "feet")
  13024. },
  13025. {
  13026. name: "Small",
  13027. height: math.unit(250, "feet")
  13028. },
  13029. {
  13030. name: "Normal",
  13031. height: math.unit(1250, "feet"),
  13032. default: true
  13033. },
  13034. {
  13035. name: "Good Day",
  13036. height: math.unit(88, "miles")
  13037. },
  13038. {
  13039. name: "Largest Measured Size",
  13040. height: math.unit(105.960, "galaxies")
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13046. {
  13047. front: {
  13048. height: math.unit(20, "feet"),
  13049. weight: math.unit(2016, "kg"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/sven-the-kaiju/front.svg",
  13053. extra: 1277/1250,
  13054. bottom: 35/1312
  13055. }
  13056. },
  13057. mouth: {
  13058. height: math.unit(1.85, "feet"),
  13059. name: "Mouth",
  13060. image: {
  13061. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13062. }
  13063. },
  13064. },
  13065. [
  13066. {
  13067. name: "Fairy",
  13068. height: math.unit(6, "inches")
  13069. },
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(20, "feet"),
  13073. default: true
  13074. },
  13075. {
  13076. name: "Rampage",
  13077. height: math.unit(200, "feet")
  13078. },
  13079. {
  13080. name: "Archfey Forest Guardian",
  13081. height: math.unit(1, "mile")
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(4, "meters"),
  13090. weight: math.unit(2, "tons"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/marik/front.svg",
  13094. extra: 1057 / 1003,
  13095. bottom: 0.08
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Normal",
  13102. height: math.unit(4, "meters"),
  13103. default: true
  13104. },
  13105. {
  13106. name: "Macro",
  13107. height: math.unit(20, "meters")
  13108. },
  13109. {
  13110. name: "Megamacro",
  13111. height: math.unit(50, "km")
  13112. },
  13113. {
  13114. name: "Gigamacro",
  13115. height: math.unit(100, "km")
  13116. },
  13117. {
  13118. name: "Alpha Macro",
  13119. height: math.unit(7.88e7, "yottameters")
  13120. },
  13121. ]
  13122. ))
  13123. characterMakers.push(() => makeCharacter(
  13124. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13125. {
  13126. front: {
  13127. height: math.unit(6, "feet"),
  13128. weight: math.unit(110, "lb"),
  13129. name: "Front",
  13130. image: {
  13131. source: "./media/characters/mel/front.svg",
  13132. extra: 736 / 617,
  13133. bottom: 0.017
  13134. }
  13135. },
  13136. },
  13137. [
  13138. {
  13139. name: "Pico",
  13140. height: math.unit(3, "pm")
  13141. },
  13142. {
  13143. name: "Nano",
  13144. height: math.unit(3, "nm")
  13145. },
  13146. {
  13147. name: "Micro",
  13148. height: math.unit(0.3, "mm"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Micro+",
  13153. height: math.unit(3, "mm")
  13154. },
  13155. {
  13156. name: "Normal",
  13157. height: math.unit(5 + 10.5 / 12, "feet")
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13163. {
  13164. kaiju: {
  13165. height: math.unit(1.75, "meters"),
  13166. weight: math.unit(55, "kg"),
  13167. name: "Kaiju",
  13168. image: {
  13169. source: "./media/characters/lykonous/kaiju.svg",
  13170. extra: 1055 / 946,
  13171. bottom: 0.135
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Normal",
  13178. height: math.unit(2.5, "meters"),
  13179. default: true
  13180. },
  13181. {
  13182. name: "Kaiju Dragon",
  13183. height: math.unit(60, "meters")
  13184. },
  13185. {
  13186. name: "Mega Kaiju",
  13187. height: math.unit(120, "km")
  13188. },
  13189. {
  13190. name: "Giga Kaiju",
  13191. height: math.unit(200, "megameters")
  13192. },
  13193. {
  13194. name: "Terra Kaiju",
  13195. height: math.unit(400, "gigameters")
  13196. },
  13197. {
  13198. name: "Kaiju Dragon God",
  13199. height: math.unit(13000, "exaparsecs")
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6, "feet"),
  13208. weight: math.unit(150, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/blü/front.svg",
  13212. extra: 1883 / 1564,
  13213. bottom: 0.031
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Normal",
  13220. height: math.unit(13, "feet"),
  13221. default: true
  13222. },
  13223. {
  13224. name: "Big Boi",
  13225. height: math.unit(150, "meters")
  13226. },
  13227. {
  13228. name: "Mini Stomper",
  13229. height: math.unit(300, "meters")
  13230. },
  13231. {
  13232. name: "Macro",
  13233. height: math.unit(1000, "meters")
  13234. },
  13235. {
  13236. name: "Megamacro",
  13237. height: math.unit(11000, "meters")
  13238. },
  13239. {
  13240. name: "Gigamacro",
  13241. height: math.unit(11000, "km")
  13242. },
  13243. {
  13244. name: "Teramacro",
  13245. height: math.unit(420000, "km")
  13246. },
  13247. {
  13248. name: "Examacro",
  13249. height: math.unit(120, "parsecs")
  13250. },
  13251. {
  13252. name: "God Tho",
  13253. height: math.unit(98000000000, "parsecs")
  13254. },
  13255. ]
  13256. ))
  13257. characterMakers.push(() => makeCharacter(
  13258. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13259. {
  13260. taurFront: {
  13261. height: math.unit(6, "feet"),
  13262. weight: math.unit(200, "lb"),
  13263. name: "Taur (Front)",
  13264. image: {
  13265. source: "./media/characters/scales/taur-front.svg",
  13266. extra: 1,
  13267. bottom: 0.05
  13268. }
  13269. },
  13270. taurBack: {
  13271. height: math.unit(6, "feet"),
  13272. weight: math.unit(200, "lb"),
  13273. name: "Taur (Back)",
  13274. image: {
  13275. source: "./media/characters/scales/taur-back.svg",
  13276. extra: 1,
  13277. bottom: 0.08
  13278. }
  13279. },
  13280. anthro: {
  13281. height: math.unit(6 * 7 / 12, "feet"),
  13282. weight: math.unit(100, "lb"),
  13283. name: "Anthro",
  13284. image: {
  13285. source: "./media/characters/scales/anthro.svg",
  13286. extra: 1,
  13287. bottom: 0.06
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Normal",
  13294. height: math.unit(12, "feet"),
  13295. default: true
  13296. },
  13297. ]
  13298. ))
  13299. characterMakers.push(() => makeCharacter(
  13300. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13301. {
  13302. front: {
  13303. height: math.unit(6, "feet"),
  13304. weight: math.unit(150, "lb"),
  13305. name: "Front",
  13306. image: {
  13307. source: "./media/characters/koragos/front.svg",
  13308. extra: 841 / 794,
  13309. bottom: 0.035
  13310. }
  13311. },
  13312. back: {
  13313. height: math.unit(6, "feet"),
  13314. weight: math.unit(150, "lb"),
  13315. name: "Back",
  13316. image: {
  13317. source: "./media/characters/koragos/back.svg",
  13318. extra: 841 / 810,
  13319. bottom: 0.022
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Normal",
  13326. height: math.unit(6 + 11 / 12, "feet"),
  13327. default: true
  13328. },
  13329. {
  13330. name: "Macro",
  13331. height: math.unit(490, "feet")
  13332. },
  13333. {
  13334. name: "Megamacro",
  13335. height: math.unit(10, "miles")
  13336. },
  13337. {
  13338. name: "Gigamacro",
  13339. height: math.unit(50, "miles")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13345. {
  13346. front: {
  13347. height: math.unit(6, "feet"),
  13348. weight: math.unit(250, "lb"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/xylrem/front.svg",
  13352. extra: 3323 / 3050,
  13353. bottom: 0.065
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Micro",
  13360. height: math.unit(4, "feet")
  13361. },
  13362. {
  13363. name: "Normal",
  13364. height: math.unit(16, "feet"),
  13365. default: true
  13366. },
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(2720, "feet")
  13370. },
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(25000, "miles")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(8, "feet"),
  13382. weight: math.unit(250, "kg"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/ikideru/front.svg",
  13386. extra: 930 / 870,
  13387. bottom: 0.087
  13388. }
  13389. },
  13390. back: {
  13391. height: math.unit(8, "feet"),
  13392. weight: math.unit(250, "kg"),
  13393. name: "Back",
  13394. image: {
  13395. source: "./media/characters/ikideru/back.svg",
  13396. extra: 919 / 852,
  13397. bottom: 0.055
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Rare",
  13404. height: math.unit(8, "feet"),
  13405. default: true
  13406. },
  13407. {
  13408. name: "Playful Loom",
  13409. height: math.unit(80, "feet")
  13410. },
  13411. {
  13412. name: "City Leaner",
  13413. height: math.unit(230, "feet")
  13414. },
  13415. {
  13416. name: "Megamacro",
  13417. height: math.unit(2500, "feet")
  13418. },
  13419. {
  13420. name: "Gigamacro",
  13421. height: math.unit(26400, "feet")
  13422. },
  13423. {
  13424. name: "Tectonic Shifter",
  13425. height: math.unit(1.7, "megameters")
  13426. },
  13427. {
  13428. name: "Planet Carer",
  13429. height: math.unit(21, "megameters")
  13430. },
  13431. {
  13432. name: "God",
  13433. height: math.unit(11157.22, "parsecs")
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13439. {
  13440. front: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(120, "lb"),
  13443. name: "Front",
  13444. image: {
  13445. source: "./media/characters/neo/front.svg"
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Micro",
  13452. height: math.unit(2, "inches"),
  13453. default: true
  13454. },
  13455. {
  13456. name: "Human Size",
  13457. height: math.unit(5 + 8 / 12, "feet")
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(13 + 10 / 12, "feet"),
  13466. weight: math.unit(5320, "lb"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/chauncey-chantz/front.svg",
  13470. extra: 1587 / 1435,
  13471. bottom: 0.02
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Normal",
  13478. height: math.unit(13 + 10 / 12, "feet"),
  13479. default: true
  13480. },
  13481. {
  13482. name: "Macro",
  13483. height: math.unit(45, "feet")
  13484. },
  13485. {
  13486. name: "Megamacro",
  13487. height: math.unit(250, "miles")
  13488. },
  13489. {
  13490. name: "Planetary",
  13491. height: math.unit(10000, "miles")
  13492. },
  13493. {
  13494. name: "Galactic",
  13495. height: math.unit(40000, "parsecs")
  13496. },
  13497. {
  13498. name: "Universal",
  13499. height: math.unit(1, "yottameter")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13505. {
  13506. front: {
  13507. height: math.unit(6, "feet"),
  13508. weight: math.unit(150, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/epifox/front.svg",
  13512. extra: 1,
  13513. bottom: 0.075
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Micro",
  13520. height: math.unit(6, "inches")
  13521. },
  13522. {
  13523. name: "Normal",
  13524. height: math.unit(12, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Macro",
  13529. height: math.unit(3810, "feet")
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(500, "miles")
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(1.8796, "m"),
  13542. weight: math.unit(230, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/colin-t/front.svg",
  13546. extra: 1272 / 1193,
  13547. bottom: 0.07
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Micro",
  13554. height: math.unit(0.571, "meters")
  13555. },
  13556. {
  13557. name: "Normal",
  13558. height: math.unit(1.8796, "meters"),
  13559. default: true
  13560. },
  13561. {
  13562. name: "Tall",
  13563. height: math.unit(4, "meters")
  13564. },
  13565. {
  13566. name: "Macro",
  13567. height: math.unit(67.241, "meters")
  13568. },
  13569. {
  13570. name: "Megamacro",
  13571. height: math.unit(371.856, "meters")
  13572. },
  13573. {
  13574. name: "Planetary",
  13575. height: math.unit(12631.5689, "km")
  13576. },
  13577. ]
  13578. ))
  13579. characterMakers.push(() => makeCharacter(
  13580. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13581. {
  13582. front: {
  13583. height: math.unit(1.85, "meters"),
  13584. weight: math.unit(80, "kg"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/matvei/front.svg",
  13588. extra: 456/447,
  13589. bottom: 8/464
  13590. }
  13591. },
  13592. back: {
  13593. height: math.unit(1.85, "meters"),
  13594. weight: math.unit(80, "kg"),
  13595. name: "Back",
  13596. image: {
  13597. source: "./media/characters/matvei/back.svg",
  13598. extra: 434/427,
  13599. bottom: 11/445
  13600. }
  13601. },
  13602. },
  13603. [
  13604. {
  13605. name: "Normal",
  13606. height: math.unit(1.85, "meters"),
  13607. default: true
  13608. },
  13609. ]
  13610. ))
  13611. characterMakers.push(() => makeCharacter(
  13612. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13613. {
  13614. front: {
  13615. height: math.unit(5 + 9 / 12, "feet"),
  13616. weight: math.unit(70, "lb"),
  13617. name: "Front",
  13618. image: {
  13619. source: "./media/characters/quincy/front.svg",
  13620. extra: 3041 / 2751
  13621. }
  13622. },
  13623. back: {
  13624. height: math.unit(5 + 9 / 12, "feet"),
  13625. weight: math.unit(70, "lb"),
  13626. name: "Back",
  13627. image: {
  13628. source: "./media/characters/quincy/back.svg",
  13629. extra: 3041 / 2751
  13630. }
  13631. },
  13632. flying: {
  13633. height: math.unit(5 + 4 / 12, "feet"),
  13634. weight: math.unit(70, "lb"),
  13635. name: "Flying",
  13636. image: {
  13637. source: "./media/characters/quincy/flying.svg",
  13638. extra: 1044 / 930
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Micro",
  13645. height: math.unit(3, "cm")
  13646. },
  13647. {
  13648. name: "Normal",
  13649. height: math.unit(5 + 9 / 12, "feet")
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(200, "meters"),
  13654. default: true
  13655. },
  13656. {
  13657. name: "Megamacro",
  13658. height: math.unit(1000, "meters")
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13664. {
  13665. front: {
  13666. height: math.unit(3 + 11/12, "feet"),
  13667. weight: math.unit(50, "lb"),
  13668. name: "Front",
  13669. image: {
  13670. source: "./media/characters/vanrel/front.svg",
  13671. extra: 1104/949,
  13672. bottom: 52/1156
  13673. }
  13674. },
  13675. back: {
  13676. height: math.unit(3 + 11/12, "feet"),
  13677. weight: math.unit(50, "lb"),
  13678. name: "Back",
  13679. image: {
  13680. source: "./media/characters/vanrel/back.svg",
  13681. extra: 1119/976,
  13682. bottom: 37/1156
  13683. }
  13684. },
  13685. tome: {
  13686. height: math.unit(1.35, "feet"),
  13687. weight: math.unit(10, "lb"),
  13688. name: "Vanrel's Tome",
  13689. rename: true,
  13690. image: {
  13691. source: "./media/characters/vanrel/tome.svg"
  13692. }
  13693. },
  13694. beans: {
  13695. height: math.unit(0.89, "feet"),
  13696. name: "Beans",
  13697. image: {
  13698. source: "./media/characters/vanrel/beans.svg"
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Normal",
  13705. height: math.unit(3 + 11/12, "feet"),
  13706. default: true
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(7 + 5 / 12, "feet"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/kuiper-vanrel/front.svg",
  13718. extra: 1219/1169,
  13719. bottom: 69/1288
  13720. }
  13721. },
  13722. back: {
  13723. height: math.unit(7 + 5 / 12, "feet"),
  13724. name: "Back",
  13725. image: {
  13726. source: "./media/characters/kuiper-vanrel/back.svg",
  13727. extra: 1236/1193,
  13728. bottom: 27/1263
  13729. }
  13730. },
  13731. foot: {
  13732. height: math.unit(0.55, "meters"),
  13733. name: "Foot",
  13734. image: {
  13735. source: "./media/characters/kuiper-vanrel/foot.svg",
  13736. }
  13737. },
  13738. battle: {
  13739. height: math.unit(6.824, "feet"),
  13740. name: "Battle",
  13741. image: {
  13742. source: "./media/characters/kuiper-vanrel/battle.svg",
  13743. extra: 1466 / 1327,
  13744. bottom: 29 / 1492.5
  13745. }
  13746. },
  13747. meerkui: {
  13748. height: math.unit(18, "inches"),
  13749. name: "Meerkui",
  13750. image: {
  13751. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13752. extra: 1354/1289,
  13753. bottom: 69/1423
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Normal",
  13760. height: math.unit(7 + 5 / 12, "feet"),
  13761. default: true
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13767. {
  13768. front: {
  13769. height: math.unit(8 + 5 / 12, "feet"),
  13770. name: "Front",
  13771. image: {
  13772. source: "./media/characters/keset-vanrel/front.svg",
  13773. extra: 1231/1148,
  13774. bottom: 82/1313
  13775. }
  13776. },
  13777. back: {
  13778. height: math.unit(8 + 5 / 12, "feet"),
  13779. name: "Back",
  13780. image: {
  13781. source: "./media/characters/keset-vanrel/back.svg",
  13782. extra: 1240/1174,
  13783. bottom: 33/1273
  13784. }
  13785. },
  13786. hand: {
  13787. height: math.unit(0.6, "meters"),
  13788. name: "Hand",
  13789. image: {
  13790. source: "./media/characters/keset-vanrel/hand.svg"
  13791. }
  13792. },
  13793. foot: {
  13794. height: math.unit(0.94978, "meters"),
  13795. name: "Foot",
  13796. image: {
  13797. source: "./media/characters/keset-vanrel/foot.svg"
  13798. }
  13799. },
  13800. battle: {
  13801. height: math.unit(7.408, "feet"),
  13802. name: "Battle",
  13803. image: {
  13804. source: "./media/characters/keset-vanrel/battle.svg",
  13805. extra: 1890 / 1386,
  13806. bottom: 73.28 / 1970
  13807. }
  13808. },
  13809. },
  13810. [
  13811. {
  13812. name: "Normal",
  13813. height: math.unit(8 + 5 / 12, "feet"),
  13814. default: true
  13815. },
  13816. ]
  13817. ))
  13818. characterMakers.push(() => makeCharacter(
  13819. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13820. {
  13821. front: {
  13822. height: math.unit(6, "feet"),
  13823. weight: math.unit(150, "lb"),
  13824. name: "Front",
  13825. image: {
  13826. source: "./media/characters/neos/front.svg",
  13827. extra: 1696 / 992,
  13828. bottom: 0.14
  13829. }
  13830. },
  13831. },
  13832. [
  13833. {
  13834. name: "Normal",
  13835. height: math.unit(54, "cm"),
  13836. default: true
  13837. },
  13838. {
  13839. name: "Macro",
  13840. height: math.unit(100, "m")
  13841. },
  13842. {
  13843. name: "Megamacro",
  13844. height: math.unit(10, "km")
  13845. },
  13846. {
  13847. name: "Megamacro+",
  13848. height: math.unit(100, "km")
  13849. },
  13850. {
  13851. name: "Gigamacro",
  13852. height: math.unit(100, "Mm")
  13853. },
  13854. {
  13855. name: "Teramacro",
  13856. height: math.unit(100, "Gm")
  13857. },
  13858. {
  13859. name: "Examacro",
  13860. height: math.unit(100, "Em")
  13861. },
  13862. {
  13863. name: "Godly",
  13864. height: math.unit(10000, "Ym")
  13865. },
  13866. {
  13867. name: "Beyond Godly",
  13868. height: math.unit(25, "multiverses")
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13874. {
  13875. fluide_tame: {
  13876. height: math.unit(5, "feet"),
  13877. name: "Tame",
  13878. image: {
  13879. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13880. extra: 1655/1574,
  13881. bottom: 231/1886
  13882. },
  13883. form: "fluide",
  13884. default: true
  13885. },
  13886. fluide_nude: {
  13887. height: math.unit(5, "feet"),
  13888. name: "Nude",
  13889. image: {
  13890. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13891. extra: 1655/1574,
  13892. bottom: 231/1886
  13893. },
  13894. form: "fluide",
  13895. },
  13896. male_tame: {
  13897. height: math.unit(5, "feet"),
  13898. name: "Tame",
  13899. image: {
  13900. source: "./media/characters/sammy-mouse/male-tame.svg",
  13901. extra: 1655/1574,
  13902. bottom: 231/1886
  13903. },
  13904. form: "male",
  13905. default: true
  13906. },
  13907. male_nude: {
  13908. height: math.unit(5, "feet"),
  13909. name: "Nude",
  13910. image: {
  13911. source: "./media/characters/sammy-mouse/male-nude.svg",
  13912. extra: 1655/1574,
  13913. bottom: 231/1886
  13914. },
  13915. form: "male",
  13916. },
  13917. female_nude: {
  13918. height: math.unit(5, "feet"),
  13919. name: "Nude",
  13920. image: {
  13921. source: "./media/characters/sammy-mouse/female-nude.svg",
  13922. extra: 1655/1574,
  13923. bottom: 231/1886
  13924. },
  13925. form: "female",
  13926. default: true
  13927. },
  13928. mouth: {
  13929. height: math.unit(0.32, "feet"),
  13930. name: "Mouth",
  13931. image: {
  13932. source: "./media/characters/sammy-mouse/mouth.svg"
  13933. },
  13934. allForms: true
  13935. },
  13936. paw: {
  13937. height: math.unit(0.42, "feet"),
  13938. name: "Paw",
  13939. image: {
  13940. source: "./media/characters/sammy-mouse/paw.svg"
  13941. },
  13942. allForms: true
  13943. },
  13944. },
  13945. [
  13946. {
  13947. name: "Micro",
  13948. height: math.unit(5, "inches"),
  13949. allForms: true
  13950. },
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(5, "feet"),
  13954. default: true,
  13955. allForms: true
  13956. },
  13957. {
  13958. name: "Macro",
  13959. height: math.unit(60, "feet"),
  13960. allForms: true
  13961. },
  13962. ],
  13963. {
  13964. "fluide": {
  13965. name: "Fluide",
  13966. default: true
  13967. },
  13968. "male": {
  13969. name: "Male",
  13970. },
  13971. "female": {
  13972. name: "Female",
  13973. },
  13974. }
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13978. {
  13979. front: {
  13980. height: math.unit(4, "feet"),
  13981. weight: math.unit(50, "lb"),
  13982. name: "Front",
  13983. image: {
  13984. source: "./media/characters/kole/front.svg",
  13985. extra: 1423 / 1303,
  13986. bottom: 0.025
  13987. }
  13988. },
  13989. back: {
  13990. height: math.unit(4, "feet"),
  13991. weight: math.unit(50, "lb"),
  13992. name: "Back",
  13993. image: {
  13994. source: "./media/characters/kole/back.svg",
  13995. extra: 1426 / 1280,
  13996. bottom: 0.02
  13997. }
  13998. },
  13999. },
  14000. [
  14001. {
  14002. name: "Normal",
  14003. height: math.unit(4, "feet"),
  14004. default: true
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14010. {
  14011. front: {
  14012. height: math.unit(2.5, "feet"),
  14013. weight: math.unit(32, "lb"),
  14014. name: "Front",
  14015. image: {
  14016. source: "./media/characters/rufran/front.svg",
  14017. extra: 1313/885,
  14018. bottom: 94/1407
  14019. }
  14020. },
  14021. side: {
  14022. height: math.unit(2.5, "feet"),
  14023. weight: math.unit(32, "lb"),
  14024. name: "Side",
  14025. image: {
  14026. source: "./media/characters/rufran/side.svg",
  14027. extra: 1109/852,
  14028. bottom: 118/1227
  14029. }
  14030. },
  14031. back: {
  14032. height: math.unit(2.5, "feet"),
  14033. weight: math.unit(32, "lb"),
  14034. name: "Back",
  14035. image: {
  14036. source: "./media/characters/rufran/back.svg",
  14037. extra: 1280/878,
  14038. bottom: 131/1411
  14039. }
  14040. },
  14041. mouth: {
  14042. height: math.unit(1.13, "feet"),
  14043. name: "Mouth",
  14044. image: {
  14045. source: "./media/characters/rufran/mouth.svg"
  14046. }
  14047. },
  14048. foot: {
  14049. height: math.unit(1.33, "feet"),
  14050. name: "Foot",
  14051. image: {
  14052. source: "./media/characters/rufran/foot.svg"
  14053. }
  14054. },
  14055. koboldFront: {
  14056. height: math.unit(2 + 6 / 12, "feet"),
  14057. weight: math.unit(20, "lb"),
  14058. name: "Front (Kobold)",
  14059. image: {
  14060. source: "./media/characters/rufran/kobold-front.svg",
  14061. extra: 2041 / 1839,
  14062. bottom: 0.055
  14063. }
  14064. },
  14065. koboldBack: {
  14066. height: math.unit(2 + 6 / 12, "feet"),
  14067. weight: math.unit(20, "lb"),
  14068. name: "Back (Kobold)",
  14069. image: {
  14070. source: "./media/characters/rufran/kobold-back.svg",
  14071. extra: 2054 / 1839,
  14072. bottom: 0.01
  14073. }
  14074. },
  14075. koboldHand: {
  14076. height: math.unit(0.2166, "meters"),
  14077. name: "Hand (Kobold)",
  14078. image: {
  14079. source: "./media/characters/rufran/kobold-hand.svg"
  14080. }
  14081. },
  14082. koboldFoot: {
  14083. height: math.unit(0.185, "meters"),
  14084. name: "Foot (Kobold)",
  14085. image: {
  14086. source: "./media/characters/rufran/kobold-foot.svg"
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Micro",
  14093. height: math.unit(1, "inch")
  14094. },
  14095. {
  14096. name: "Normal",
  14097. height: math.unit(2 + 6 / 12, "feet"),
  14098. default: true
  14099. },
  14100. {
  14101. name: "Big",
  14102. height: math.unit(60, "feet")
  14103. },
  14104. {
  14105. name: "Macro",
  14106. height: math.unit(325, "feet")
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14112. {
  14113. front: {
  14114. height: math.unit(0.3, "meters"),
  14115. weight: math.unit(3.5, "kg"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/chip/front.svg",
  14119. extra: 748 / 674
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Micro",
  14126. height: math.unit(1, "inch"),
  14127. default: true
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14133. {
  14134. side: {
  14135. height: math.unit(2.3, "meters"),
  14136. weight: math.unit(3500, "lb"),
  14137. name: "Side",
  14138. image: {
  14139. source: "./media/characters/torvid/side.svg",
  14140. extra: 1972 / 722,
  14141. bottom: 0.035
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Normal",
  14148. height: math.unit(2.3, "meters"),
  14149. default: true
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14155. {
  14156. front: {
  14157. height: math.unit(2, "meters"),
  14158. weight: math.unit(150.5, "kg"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/susan/front.svg",
  14162. extra: 693 / 635,
  14163. bottom: 0.05
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Megamacro",
  14170. height: math.unit(505, "miles"),
  14171. default: true
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(6, "feet"),
  14180. weight: math.unit(150, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/raindrops/front.svg",
  14184. extra: 2655 / 2461,
  14185. bottom: 49 / 2705
  14186. }
  14187. },
  14188. back: {
  14189. height: math.unit(6, "feet"),
  14190. weight: math.unit(150, "lb"),
  14191. name: "Back",
  14192. image: {
  14193. source: "./media/characters/raindrops/back.svg",
  14194. extra: 2574 / 2400,
  14195. bottom: 65 / 2634
  14196. }
  14197. },
  14198. },
  14199. [
  14200. {
  14201. name: "Micro",
  14202. height: math.unit(6, "inches")
  14203. },
  14204. {
  14205. name: "Normal",
  14206. height: math.unit(6 + 2 / 12, "feet")
  14207. },
  14208. {
  14209. name: "Macro",
  14210. height: math.unit(131, "feet"),
  14211. default: true
  14212. },
  14213. {
  14214. name: "Megamacro",
  14215. height: math.unit(15, "miles")
  14216. },
  14217. {
  14218. name: "Gigamacro",
  14219. height: math.unit(4000, "miles")
  14220. },
  14221. {
  14222. name: "Teramacro",
  14223. height: math.unit(315000, "miles")
  14224. },
  14225. ]
  14226. ))
  14227. characterMakers.push(() => makeCharacter(
  14228. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14229. {
  14230. front: {
  14231. height: math.unit(2.794, "meters"),
  14232. weight: math.unit(325, "kg"),
  14233. name: "Front",
  14234. image: {
  14235. source: "./media/characters/tezwa/front.svg",
  14236. extra: 2083 / 1906,
  14237. bottom: 0.031
  14238. }
  14239. },
  14240. foot: {
  14241. height: math.unit(0.687, "meters"),
  14242. name: "Foot",
  14243. image: {
  14244. source: "./media/characters/tezwa/foot.svg"
  14245. }
  14246. },
  14247. },
  14248. [
  14249. {
  14250. name: "Normal",
  14251. height: math.unit(9 + 2 / 12, "feet"),
  14252. default: true
  14253. },
  14254. ]
  14255. ))
  14256. characterMakers.push(() => makeCharacter(
  14257. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14258. {
  14259. front: {
  14260. height: math.unit(58, "feet"),
  14261. weight: math.unit(89000, "lb"),
  14262. name: "Front",
  14263. image: {
  14264. source: "./media/characters/typhus/front.svg",
  14265. extra: 816 / 800,
  14266. bottom: 0.065
  14267. }
  14268. },
  14269. },
  14270. [
  14271. {
  14272. name: "Macro",
  14273. height: math.unit(58, "feet"),
  14274. default: true
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14280. {
  14281. front: {
  14282. height: math.unit(12, "feet"),
  14283. weight: math.unit(6, "tonnes"),
  14284. name: "Front",
  14285. image: {
  14286. source: "./media/characters/lyra-von-wulf/front.svg",
  14287. extra: 1,
  14288. bottom: 0.10
  14289. }
  14290. },
  14291. frontMecha: {
  14292. height: math.unit(12, "feet"),
  14293. weight: math.unit(12, "tonnes"),
  14294. name: "Front (Mecha)",
  14295. image: {
  14296. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14297. extra: 1,
  14298. bottom: 0.042
  14299. }
  14300. },
  14301. maw: {
  14302. height: math.unit(2.2, "feet"),
  14303. name: "Maw",
  14304. image: {
  14305. source: "./media/characters/lyra-von-wulf/maw.svg"
  14306. }
  14307. },
  14308. },
  14309. [
  14310. {
  14311. name: "Normal",
  14312. height: math.unit(12, "feet"),
  14313. default: true
  14314. },
  14315. {
  14316. name: "Classic",
  14317. height: math.unit(50, "feet")
  14318. },
  14319. {
  14320. name: "Macro",
  14321. height: math.unit(500, "feet")
  14322. },
  14323. {
  14324. name: "Megamacro",
  14325. height: math.unit(1, "mile")
  14326. },
  14327. {
  14328. name: "Gigamacro",
  14329. height: math.unit(400, "miles")
  14330. },
  14331. {
  14332. name: "Teramacro",
  14333. height: math.unit(22000, "miles")
  14334. },
  14335. {
  14336. name: "Solarmacro",
  14337. height: math.unit(8600000, "miles")
  14338. },
  14339. {
  14340. name: "Galactic",
  14341. height: math.unit(1057000, "lightyears")
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(6 + 10 / 12, "feet"),
  14350. weight: math.unit(150, "lb"),
  14351. name: "Front",
  14352. image: {
  14353. source: "./media/characters/dixon/front.svg",
  14354. extra: 3361 / 3209,
  14355. bottom: 0.01
  14356. }
  14357. },
  14358. },
  14359. [
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(6 + 10 / 12, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Big",
  14367. height: math.unit(12, "meters")
  14368. },
  14369. {
  14370. name: "Macro",
  14371. height: math.unit(500, "meters")
  14372. },
  14373. {
  14374. name: "Megamacro",
  14375. height: math.unit(2, "km")
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14381. {
  14382. front: {
  14383. height: math.unit(185, "cm"),
  14384. weight: math.unit(68, "kg"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/kauko/front.svg",
  14388. extra: 1455 / 1421,
  14389. bottom: 0.03
  14390. }
  14391. },
  14392. back: {
  14393. height: math.unit(185, "cm"),
  14394. weight: math.unit(68, "kg"),
  14395. name: "Back",
  14396. image: {
  14397. source: "./media/characters/kauko/back.svg",
  14398. extra: 1455 / 1421,
  14399. bottom: 0.004
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(185, "cm"),
  14407. default: true
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14413. {
  14414. frontSfw: {
  14415. height: math.unit(5, "meters"),
  14416. weight: math.unit(4250, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/varg/front-sfw.svg",
  14420. extra: 1103/1010,
  14421. bottom: 50/1153
  14422. },
  14423. form: "anthro",
  14424. default: true
  14425. },
  14426. backSfw: {
  14427. height: math.unit(5, "meters"),
  14428. weight: math.unit(4250, "lb"),
  14429. name: "Back",
  14430. image: {
  14431. source: "./media/characters/varg/back-sfw.svg",
  14432. extra: 1038/1022,
  14433. bottom: 36/1074
  14434. },
  14435. form: "anthro"
  14436. },
  14437. frontNsfw: {
  14438. height: math.unit(5, "meters"),
  14439. weight: math.unit(4250, "lb"),
  14440. name: "Front (NSFW)",
  14441. image: {
  14442. source: "./media/characters/varg/front-nsfw.svg",
  14443. extra: 1103/1010,
  14444. bottom: 50/1153
  14445. },
  14446. form: "anthro"
  14447. },
  14448. sheath: {
  14449. height: math.unit(3.8, "feet"),
  14450. weight: math.unit(90, "kilograms"),
  14451. name: "Sheath",
  14452. image: {
  14453. source: "./media/characters/varg/sheath.svg"
  14454. },
  14455. form: "anthro"
  14456. },
  14457. dick: {
  14458. height: math.unit(4.6, "feet"),
  14459. weight: math.unit(451, "kilograms"),
  14460. name: "Dick",
  14461. image: {
  14462. source: "./media/characters/varg/dick.svg"
  14463. },
  14464. form: "anthro"
  14465. },
  14466. feralSfw: {
  14467. height: math.unit(5, "meters"),
  14468. weight: math.unit(100000, "lb"),
  14469. name: "Side",
  14470. image: {
  14471. source: "./media/characters/varg/feral-sfw.svg",
  14472. extra: 1065/511,
  14473. bottom: 211/1276
  14474. },
  14475. form: "feral",
  14476. default: true
  14477. },
  14478. feralNsfw: {
  14479. height: math.unit(5, "meters"),
  14480. weight: math.unit(100000, "lb"),
  14481. name: "Side (NSFW)",
  14482. image: {
  14483. source: "./media/characters/varg/feral-nsfw.svg",
  14484. extra: 1065/511,
  14485. bottom: 211/1276
  14486. },
  14487. form: "feral",
  14488. },
  14489. feralSheath: {
  14490. height: math.unit(9.8, "feet"),
  14491. weight: math.unit(2000, "kilograms"),
  14492. name: "Sheath",
  14493. image: {
  14494. source: "./media/characters/varg/sheath.svg"
  14495. },
  14496. form: "feral"
  14497. },
  14498. feralDick: {
  14499. height: math.unit(13.11, "feet"),
  14500. weight: math.unit(10440, "kilograms"),
  14501. name: "Dick",
  14502. image: {
  14503. source: "./media/characters/varg/dick.svg"
  14504. },
  14505. form: "feral"
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Normal",
  14511. height: math.unit(5, "meters"),
  14512. form: "anthro"
  14513. },
  14514. {
  14515. name: "Macro",
  14516. height: math.unit(200, "meters"),
  14517. form: "anthro"
  14518. },
  14519. {
  14520. name: "Megamacro",
  14521. height: math.unit(20, "kilometers"),
  14522. form: "anthro"
  14523. },
  14524. {
  14525. name: "True Size",
  14526. height: math.unit(211, "km"),
  14527. form: "anthro",
  14528. default: true
  14529. },
  14530. {
  14531. name: "Gigamacro",
  14532. height: math.unit(1000, "km"),
  14533. form: "anthro"
  14534. },
  14535. {
  14536. name: "Gigamacro+",
  14537. height: math.unit(8000, "km"),
  14538. form: "anthro"
  14539. },
  14540. {
  14541. name: "Teramacro",
  14542. height: math.unit(1000000, "km"),
  14543. form: "anthro"
  14544. },
  14545. {
  14546. name: "Normal",
  14547. height: math.unit(5, "meters"),
  14548. form: "feral"
  14549. },
  14550. {
  14551. name: "Macro",
  14552. height: math.unit(200, "meters"),
  14553. form: "feral"
  14554. },
  14555. {
  14556. name: "Megamacro",
  14557. height: math.unit(20, "kilometers"),
  14558. form: "feral"
  14559. },
  14560. {
  14561. name: "True Size",
  14562. height: math.unit(211, "km"),
  14563. form: "feral",
  14564. default: true
  14565. },
  14566. {
  14567. name: "Gigamacro",
  14568. height: math.unit(1000, "km"),
  14569. form: "feral"
  14570. },
  14571. {
  14572. name: "Gigamacro+",
  14573. height: math.unit(8000, "km"),
  14574. form: "feral"
  14575. },
  14576. {
  14577. name: "Teramacro",
  14578. height: math.unit(1000000, "km"),
  14579. form: "feral"
  14580. },
  14581. ],
  14582. {
  14583. "anthro": {
  14584. name: "Anthro",
  14585. default: true
  14586. },
  14587. "feral": {
  14588. name: "Feral",
  14589. },
  14590. }
  14591. ))
  14592. characterMakers.push(() => makeCharacter(
  14593. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14594. {
  14595. front: {
  14596. height: math.unit(7 + 7 / 12, "feet"),
  14597. weight: math.unit(267, "lb"),
  14598. name: "Front",
  14599. image: {
  14600. source: "./media/characters/dayza/front.svg",
  14601. extra: 1262 / 1200,
  14602. bottom: 0.035
  14603. }
  14604. },
  14605. side: {
  14606. height: math.unit(7 + 7 / 12, "feet"),
  14607. weight: math.unit(267, "lb"),
  14608. name: "Side",
  14609. image: {
  14610. source: "./media/characters/dayza/side.svg",
  14611. extra: 1295 / 1245,
  14612. bottom: 0.05
  14613. }
  14614. },
  14615. back: {
  14616. height: math.unit(7 + 7 / 12, "feet"),
  14617. weight: math.unit(267, "lb"),
  14618. name: "Back",
  14619. image: {
  14620. source: "./media/characters/dayza/back.svg",
  14621. extra: 1241 / 1170
  14622. }
  14623. },
  14624. },
  14625. [
  14626. {
  14627. name: "Normal",
  14628. height: math.unit(7 + 7 / 12, "feet"),
  14629. default: true
  14630. },
  14631. {
  14632. name: "Macro",
  14633. height: math.unit(155, "feet")
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(6 + 5 / 12, "feet"),
  14642. weight: math.unit(160, "lb"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/xanthos/front.svg",
  14646. extra: 1,
  14647. bottom: 0.04
  14648. }
  14649. },
  14650. back: {
  14651. height: math.unit(6 + 5 / 12, "feet"),
  14652. weight: math.unit(160, "lb"),
  14653. name: "Back",
  14654. image: {
  14655. source: "./media/characters/xanthos/back.svg",
  14656. extra: 1,
  14657. bottom: 0.03
  14658. }
  14659. },
  14660. hand: {
  14661. height: math.unit(0.928, "feet"),
  14662. name: "Hand",
  14663. image: {
  14664. source: "./media/characters/xanthos/hand.svg"
  14665. }
  14666. },
  14667. foot: {
  14668. height: math.unit(1.286, "feet"),
  14669. name: "Foot",
  14670. image: {
  14671. source: "./media/characters/xanthos/foot.svg"
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Normal",
  14678. height: math.unit(6 + 5 / 12, "feet"),
  14679. default: true
  14680. },
  14681. {
  14682. name: "Normal+",
  14683. height: math.unit(6, "meters")
  14684. },
  14685. {
  14686. name: "Macro",
  14687. height: math.unit(40, "feet")
  14688. },
  14689. {
  14690. name: "Macro+",
  14691. height: math.unit(200, "meters")
  14692. },
  14693. {
  14694. name: "Megamacro",
  14695. height: math.unit(20, "km")
  14696. },
  14697. {
  14698. name: "Megamacro+",
  14699. height: math.unit(100, "km")
  14700. },
  14701. {
  14702. name: "Gigamacro",
  14703. height: math.unit(200, "megameters")
  14704. },
  14705. {
  14706. name: "Gigamacro+",
  14707. height: math.unit(1.5, "gigameters")
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(6 + 3 / 12, "feet"),
  14716. weight: math.unit(215, "lb"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/grynn/front.svg",
  14720. extra: 4627 / 4209,
  14721. bottom: 0.047
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Micro",
  14728. height: math.unit(6, "inches")
  14729. },
  14730. {
  14731. name: "Normal",
  14732. height: math.unit(6 + 3 / 12, "feet"),
  14733. default: true
  14734. },
  14735. {
  14736. name: "Big",
  14737. height: math.unit(104, "feet")
  14738. },
  14739. {
  14740. name: "Macro",
  14741. height: math.unit(944, "feet")
  14742. },
  14743. {
  14744. name: "Macro+",
  14745. height: math.unit(9480, "feet")
  14746. },
  14747. {
  14748. name: "Megamacro",
  14749. height: math.unit(78752, "feet")
  14750. },
  14751. {
  14752. name: "Megamacro+",
  14753. height: math.unit(630128, "feet")
  14754. },
  14755. {
  14756. name: "Megamacro++",
  14757. height: math.unit(3150695, "feet")
  14758. },
  14759. ]
  14760. ))
  14761. characterMakers.push(() => makeCharacter(
  14762. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14763. {
  14764. front: {
  14765. height: math.unit(7 + 5 / 12, "feet"),
  14766. weight: math.unit(450, "lb"),
  14767. name: "Front",
  14768. image: {
  14769. source: "./media/characters/mocha-aura/front.svg",
  14770. extra: 1907 / 1817,
  14771. bottom: 0.04
  14772. }
  14773. },
  14774. back: {
  14775. height: math.unit(7 + 5 / 12, "feet"),
  14776. weight: math.unit(450, "lb"),
  14777. name: "Back",
  14778. image: {
  14779. source: "./media/characters/mocha-aura/back.svg",
  14780. extra: 1900 / 1825,
  14781. bottom: 0.045
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Nano",
  14788. height: math.unit(1, "nm")
  14789. },
  14790. {
  14791. name: "Megamicro",
  14792. height: math.unit(1, "mm")
  14793. },
  14794. {
  14795. name: "Micro",
  14796. height: math.unit(3, "inches")
  14797. },
  14798. {
  14799. name: "Normal",
  14800. height: math.unit(7 + 5 / 12, "feet"),
  14801. default: true
  14802. },
  14803. {
  14804. name: "Macro",
  14805. height: math.unit(30, "feet")
  14806. },
  14807. {
  14808. name: "Megamacro",
  14809. height: math.unit(3500, "feet")
  14810. },
  14811. {
  14812. name: "Teramacro",
  14813. height: math.unit(500000, "miles")
  14814. },
  14815. {
  14816. name: "Petamacro",
  14817. height: math.unit(50000000000000000, "parsecs")
  14818. },
  14819. ]
  14820. ))
  14821. characterMakers.push(() => makeCharacter(
  14822. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14823. {
  14824. front: {
  14825. height: math.unit(6, "feet"),
  14826. weight: math.unit(150, "lb"),
  14827. name: "Front",
  14828. image: {
  14829. source: "./media/characters/ilisha-devya/front.svg",
  14830. extra: 1053/1049,
  14831. bottom: 270/1323
  14832. }
  14833. },
  14834. back: {
  14835. height: math.unit(6, "feet"),
  14836. weight: math.unit(150, "lb"),
  14837. name: "Back",
  14838. image: {
  14839. source: "./media/characters/ilisha-devya/back.svg",
  14840. extra: 1131/1128,
  14841. bottom: 39/1170
  14842. }
  14843. },
  14844. },
  14845. [
  14846. {
  14847. name: "Macro",
  14848. height: math.unit(500, "feet"),
  14849. default: true
  14850. },
  14851. {
  14852. name: "Megamacro",
  14853. height: math.unit(10, "miles")
  14854. },
  14855. {
  14856. name: "Gigamacro",
  14857. height: math.unit(100000, "miles")
  14858. },
  14859. {
  14860. name: "Examacro",
  14861. height: math.unit(1e9, "lightyears")
  14862. },
  14863. {
  14864. name: "Omniversal",
  14865. height: math.unit(1e33, "lightyears")
  14866. },
  14867. {
  14868. name: "Beyond Infinite",
  14869. height: math.unit(1e100, "lightyears")
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14875. {
  14876. Side: {
  14877. height: math.unit(6, "feet"),
  14878. weight: math.unit(150, "lb"),
  14879. name: "Side",
  14880. image: {
  14881. source: "./media/characters/mira/side.svg",
  14882. extra: 900 / 799,
  14883. bottom: 0.02
  14884. }
  14885. },
  14886. },
  14887. [
  14888. {
  14889. name: "Human Size",
  14890. height: math.unit(6, "feet")
  14891. },
  14892. {
  14893. name: "Macro",
  14894. height: math.unit(100, "feet"),
  14895. default: true
  14896. },
  14897. {
  14898. name: "Megamacro",
  14899. height: math.unit(10, "miles")
  14900. },
  14901. {
  14902. name: "Gigamacro",
  14903. height: math.unit(25000, "miles")
  14904. },
  14905. {
  14906. name: "Teramacro",
  14907. height: math.unit(300, "AU")
  14908. },
  14909. {
  14910. name: "Full Size",
  14911. height: math.unit(4.5e10, "lightyears")
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(6, "feet"),
  14920. weight: math.unit(150, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/holly/front.svg",
  14924. extra: 639 / 606
  14925. }
  14926. },
  14927. back: {
  14928. height: math.unit(6, "feet"),
  14929. weight: math.unit(150, "lb"),
  14930. name: "Back",
  14931. image: {
  14932. source: "./media/characters/holly/back.svg",
  14933. extra: 623 / 598
  14934. }
  14935. },
  14936. frontWorking: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Front (Working)",
  14940. image: {
  14941. source: "./media/characters/holly/front-working.svg",
  14942. extra: 607 / 577,
  14943. bottom: 0.048
  14944. }
  14945. },
  14946. },
  14947. [
  14948. {
  14949. name: "Normal",
  14950. height: math.unit(12 + 3 / 12, "feet"),
  14951. default: true
  14952. },
  14953. ]
  14954. ))
  14955. characterMakers.push(() => makeCharacter(
  14956. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14957. {
  14958. front: {
  14959. height: math.unit(6, "feet"),
  14960. weight: math.unit(150, "lb"),
  14961. name: "Front",
  14962. image: {
  14963. source: "./media/characters/porter/front.svg",
  14964. extra: 1,
  14965. bottom: 0.01
  14966. }
  14967. },
  14968. frontRobes: {
  14969. height: math.unit(6, "feet"),
  14970. weight: math.unit(150, "lb"),
  14971. name: "Front (Robes)",
  14972. image: {
  14973. source: "./media/characters/porter/front-robes.svg",
  14974. extra: 1.01,
  14975. bottom: 0.01
  14976. }
  14977. },
  14978. },
  14979. [
  14980. {
  14981. name: "Normal",
  14982. height: math.unit(11 + 9 / 12, "feet"),
  14983. default: true
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14989. {
  14990. legendary: {
  14991. height: math.unit(6, "feet"),
  14992. weight: math.unit(150, "lb"),
  14993. name: "Legendary",
  14994. image: {
  14995. source: "./media/characters/lucy/legendary.svg",
  14996. extra: 1355 / 1100,
  14997. bottom: 0.045
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Legendary",
  15004. height: math.unit(86882 * 2, "miles"),
  15005. default: true
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15011. {
  15012. front: {
  15013. height: math.unit(6, "feet"),
  15014. weight: math.unit(150, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/drusilla/front.svg",
  15018. extra: 678 / 635,
  15019. bottom: 0.03
  15020. }
  15021. },
  15022. back: {
  15023. height: math.unit(6, "feet"),
  15024. weight: math.unit(150, "lb"),
  15025. name: "Back",
  15026. image: {
  15027. source: "./media/characters/drusilla/back.svg",
  15028. extra: 678 / 635,
  15029. bottom: 0.005
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Macro",
  15036. height: math.unit(100, "feet")
  15037. },
  15038. {
  15039. name: "Canon Height",
  15040. height: math.unit(2000, "feet"),
  15041. default: true
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(180, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/renard-thatch/front.svg",
  15054. extra: 2411 / 2275,
  15055. bottom: 0.01
  15056. }
  15057. },
  15058. frontPosing: {
  15059. height: math.unit(6, "feet"),
  15060. weight: math.unit(180, "lb"),
  15061. name: "Front (Posing)",
  15062. image: {
  15063. source: "./media/characters/renard-thatch/front-posing.svg",
  15064. extra: 2381 / 2261,
  15065. bottom: 0.01
  15066. }
  15067. },
  15068. back: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(180, "lb"),
  15071. name: "Back",
  15072. image: {
  15073. source: "./media/characters/renard-thatch/back.svg",
  15074. extra: 2428 / 2288
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Micro",
  15081. height: math.unit(3, "inches")
  15082. },
  15083. {
  15084. name: "Default",
  15085. height: math.unit(6, "feet"),
  15086. default: true
  15087. },
  15088. {
  15089. name: "Macro",
  15090. height: math.unit(75, "feet")
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15096. {
  15097. front: {
  15098. height: math.unit(1450, "feet"),
  15099. weight: math.unit(1.21e6, "tons"),
  15100. name: "Front",
  15101. image: {
  15102. source: "./media/characters/sekvra/front.svg",
  15103. extra: 1193/1190,
  15104. bottom: 78/1271
  15105. }
  15106. },
  15107. side: {
  15108. height: math.unit(1450, "feet"),
  15109. weight: math.unit(1.21e6, "tons"),
  15110. name: "Side",
  15111. image: {
  15112. source: "./media/characters/sekvra/side.svg",
  15113. extra: 1193/1190,
  15114. bottom: 52/1245
  15115. }
  15116. },
  15117. back: {
  15118. height: math.unit(1450, "feet"),
  15119. weight: math.unit(1.21e6, "tons"),
  15120. name: "Back",
  15121. image: {
  15122. source: "./media/characters/sekvra/back.svg",
  15123. extra: 1219/1216,
  15124. bottom: 21/1240
  15125. }
  15126. },
  15127. frontClothed: {
  15128. height: math.unit(1450, "feet"),
  15129. weight: math.unit(1.21e6, "tons"),
  15130. name: "Front (Clothed)",
  15131. image: {
  15132. source: "./media/characters/sekvra/front-clothed.svg",
  15133. extra: 1192/1189,
  15134. bottom: 79/1271
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Macro",
  15141. height: math.unit(1450, "feet"),
  15142. default: true
  15143. },
  15144. {
  15145. name: "Megamacro",
  15146. height: math.unit(15000, "feet")
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(150, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/carmine/front.svg",
  15159. extra: 1557/1538,
  15160. bottom: 68/1625
  15161. }
  15162. },
  15163. frontArmor: {
  15164. height: math.unit(6, "feet"),
  15165. weight: math.unit(150, "lb"),
  15166. name: "Front (Armor)",
  15167. image: {
  15168. source: "./media/characters/carmine/front-armor.svg",
  15169. extra: 1549/1530,
  15170. bottom: 82/1631
  15171. }
  15172. },
  15173. mouth: {
  15174. height: math.unit(0.55, "feet"),
  15175. name: "Mouth",
  15176. image: {
  15177. source: "./media/characters/carmine/mouth.svg"
  15178. }
  15179. },
  15180. hand: {
  15181. height: math.unit(1.05, "feet"),
  15182. name: "Hand",
  15183. image: {
  15184. source: "./media/characters/carmine/hand.svg"
  15185. }
  15186. },
  15187. foot: {
  15188. height: math.unit(0.6, "feet"),
  15189. name: "Foot",
  15190. image: {
  15191. source: "./media/characters/carmine/foot.svg"
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Large",
  15198. height: math.unit(1, "mile")
  15199. },
  15200. {
  15201. name: "Huge",
  15202. height: math.unit(40, "miles"),
  15203. default: true
  15204. },
  15205. {
  15206. name: "Colossal",
  15207. height: math.unit(2500, "miles")
  15208. },
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15213. {
  15214. front: {
  15215. height: math.unit(6, "feet"),
  15216. weight: math.unit(150, "lb"),
  15217. name: "Front",
  15218. image: {
  15219. source: "./media/characters/elyssia/front.svg",
  15220. extra: 2201 / 2035,
  15221. bottom: 0.05
  15222. }
  15223. },
  15224. frontClothed: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(150, "lb"),
  15227. name: "Front (Clothed)",
  15228. image: {
  15229. source: "./media/characters/elyssia/front-clothed.svg",
  15230. extra: 2201 / 2035,
  15231. bottom: 0.05
  15232. }
  15233. },
  15234. back: {
  15235. height: math.unit(6, "feet"),
  15236. weight: math.unit(150, "lb"),
  15237. name: "Back",
  15238. image: {
  15239. source: "./media/characters/elyssia/back.svg",
  15240. extra: 2201 / 2035,
  15241. bottom: 0.013
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Smaller",
  15248. height: math.unit(150, "feet")
  15249. },
  15250. {
  15251. name: "Standard",
  15252. height: math.unit(1400, "feet"),
  15253. default: true
  15254. },
  15255. {
  15256. name: "Distracted",
  15257. height: math.unit(15000, "feet")
  15258. },
  15259. ]
  15260. ))
  15261. characterMakers.push(() => makeCharacter(
  15262. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15263. {
  15264. front: {
  15265. height: math.unit(7 + 4/12, "feet"),
  15266. weight: math.unit(690, "lb"),
  15267. name: "Front",
  15268. image: {
  15269. source: "./media/characters/geno-maxwell/front.svg",
  15270. extra: 984/856,
  15271. bottom: 87/1071
  15272. }
  15273. },
  15274. back: {
  15275. height: math.unit(7 + 4/12, "feet"),
  15276. weight: math.unit(690, "lb"),
  15277. name: "Back",
  15278. image: {
  15279. source: "./media/characters/geno-maxwell/back.svg",
  15280. extra: 981/854,
  15281. bottom: 57/1038
  15282. }
  15283. },
  15284. frontCostume: {
  15285. height: math.unit(7 + 4/12, "feet"),
  15286. weight: math.unit(690, "lb"),
  15287. name: "Front (Costume)",
  15288. image: {
  15289. source: "./media/characters/geno-maxwell/front-costume.svg",
  15290. extra: 984/856,
  15291. bottom: 87/1071
  15292. }
  15293. },
  15294. backcostume: {
  15295. height: math.unit(7 + 4/12, "feet"),
  15296. weight: math.unit(690, "lb"),
  15297. name: "Back (Costume)",
  15298. image: {
  15299. source: "./media/characters/geno-maxwell/back-costume.svg",
  15300. extra: 981/854,
  15301. bottom: 57/1038
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Micro",
  15308. height: math.unit(3, "inches")
  15309. },
  15310. {
  15311. name: "Normal",
  15312. height: math.unit(7 + 4 / 12, "feet"),
  15313. default: true
  15314. },
  15315. {
  15316. name: "Macro",
  15317. height: math.unit(220, "feet")
  15318. },
  15319. {
  15320. name: "Megamacro",
  15321. height: math.unit(11, "miles")
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15327. {
  15328. front: {
  15329. height: math.unit(7 + 4/12, "feet"),
  15330. weight: math.unit(750, "lb"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/regena-maxwell/front.svg",
  15334. extra: 984/856,
  15335. bottom: 87/1071
  15336. }
  15337. },
  15338. back: {
  15339. height: math.unit(7 + 4/12, "feet"),
  15340. weight: math.unit(750, "lb"),
  15341. name: "Back",
  15342. image: {
  15343. source: "./media/characters/regena-maxwell/back.svg",
  15344. extra: 981/854,
  15345. bottom: 57/1038
  15346. }
  15347. },
  15348. frontCostume: {
  15349. height: math.unit(7 + 4/12, "feet"),
  15350. weight: math.unit(750, "lb"),
  15351. name: "Front (Costume)",
  15352. image: {
  15353. source: "./media/characters/regena-maxwell/front-costume.svg",
  15354. extra: 984/856,
  15355. bottom: 87/1071
  15356. }
  15357. },
  15358. backcostume: {
  15359. height: math.unit(7 + 4/12, "feet"),
  15360. weight: math.unit(750, "lb"),
  15361. name: "Back (Costume)",
  15362. image: {
  15363. source: "./media/characters/regena-maxwell/back-costume.svg",
  15364. extra: 981/854,
  15365. bottom: 57/1038
  15366. }
  15367. },
  15368. },
  15369. [
  15370. {
  15371. name: "Normal",
  15372. height: math.unit(7 + 4 / 12, "feet"),
  15373. default: true
  15374. },
  15375. {
  15376. name: "Macro",
  15377. height: math.unit(220, "feet")
  15378. },
  15379. {
  15380. name: "Megamacro",
  15381. height: math.unit(11, "miles")
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(6, "feet"),
  15390. weight: math.unit(150, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15394. extra: 860 / 690,
  15395. bottom: 0.03
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(1.7, "meters"),
  15403. default: true
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(6, "feet"),
  15412. weight: math.unit(150, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/quilly/front.svg",
  15416. extra: 890 / 776
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Gigamacro",
  15423. height: math.unit(404090, "miles"),
  15424. default: true
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15430. {
  15431. front: {
  15432. height: math.unit(7 + 8 / 12, "feet"),
  15433. weight: math.unit(350, "lb"),
  15434. name: "Front",
  15435. image: {
  15436. source: "./media/characters/tempest/front.svg",
  15437. extra: 1175 / 1086,
  15438. bottom: 0.02
  15439. }
  15440. },
  15441. },
  15442. [
  15443. {
  15444. name: "Normal",
  15445. height: math.unit(7 + 8 / 12, "feet"),
  15446. default: true
  15447. },
  15448. ]
  15449. ))
  15450. characterMakers.push(() => makeCharacter(
  15451. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15452. {
  15453. side: {
  15454. height: math.unit(4 + 5 / 12, "feet"),
  15455. weight: math.unit(80, "lb"),
  15456. name: "Side",
  15457. image: {
  15458. source: "./media/characters/rodger/side.svg",
  15459. extra: 1235 / 1118
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Micro",
  15466. height: math.unit(1, "inch")
  15467. },
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(4 + 5 / 12, "feet"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(120, "feet")
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(150, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/danyel/front.svg",
  15488. extra: 1185 / 1123,
  15489. bottom: 0.05
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Shrunken",
  15496. height: math.unit(0.5, "mm")
  15497. },
  15498. {
  15499. name: "Micro",
  15500. height: math.unit(1, "mm"),
  15501. default: true
  15502. },
  15503. {
  15504. name: "Upsized",
  15505. height: math.unit(5 + 5 / 12, "feet")
  15506. },
  15507. ]
  15508. ))
  15509. characterMakers.push(() => makeCharacter(
  15510. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15511. {
  15512. front: {
  15513. height: math.unit(5 + 6 / 12, "feet"),
  15514. weight: math.unit(200, "lb"),
  15515. name: "Front",
  15516. image: {
  15517. source: "./media/characters/vivian-bijoux/front.svg",
  15518. extra: 1217/1209,
  15519. bottom: 76/1293
  15520. }
  15521. },
  15522. back: {
  15523. height: math.unit(5 + 6 / 12, "feet"),
  15524. weight: math.unit(200, "lb"),
  15525. name: "Back",
  15526. image: {
  15527. source: "./media/characters/vivian-bijoux/back.svg",
  15528. extra: 1214/1208,
  15529. bottom: 51/1265
  15530. }
  15531. },
  15532. dressed: {
  15533. height: math.unit(5 + 6 / 12, "feet"),
  15534. weight: math.unit(200, "lb"),
  15535. name: "Dressed",
  15536. image: {
  15537. source: "./media/characters/vivian-bijoux/dressed.svg",
  15538. extra: 1217/1209,
  15539. bottom: 76/1293
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Normal",
  15546. height: math.unit(5 + 6 / 12, "feet"),
  15547. default: true
  15548. },
  15549. {
  15550. name: "Bad Dream",
  15551. height: math.unit(500, "feet")
  15552. },
  15553. {
  15554. name: "Nightmare",
  15555. height: math.unit(500, "miles")
  15556. },
  15557. ]
  15558. ))
  15559. characterMakers.push(() => makeCharacter(
  15560. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15561. {
  15562. front: {
  15563. height: math.unit(6 + 1 / 12, "feet"),
  15564. weight: math.unit(260, "lb"),
  15565. name: "Front",
  15566. image: {
  15567. source: "./media/characters/zeta/front.svg",
  15568. extra: 1968 / 1889,
  15569. bottom: 0.06
  15570. }
  15571. },
  15572. back: {
  15573. height: math.unit(6 + 1 / 12, "feet"),
  15574. weight: math.unit(260, "lb"),
  15575. name: "Back",
  15576. image: {
  15577. source: "./media/characters/zeta/back.svg",
  15578. extra: 1944 / 1858,
  15579. bottom: 0.03
  15580. }
  15581. },
  15582. hand: {
  15583. height: math.unit(1.112, "feet"),
  15584. name: "Hand",
  15585. image: {
  15586. source: "./media/characters/zeta/hand.svg"
  15587. }
  15588. },
  15589. foot: {
  15590. height: math.unit(1.48, "feet"),
  15591. name: "Foot",
  15592. image: {
  15593. source: "./media/characters/zeta/foot.svg"
  15594. }
  15595. },
  15596. },
  15597. [
  15598. {
  15599. name: "Micro",
  15600. height: math.unit(6, "inches")
  15601. },
  15602. {
  15603. name: "Normal",
  15604. height: math.unit(6 + 1 / 12, "feet"),
  15605. default: true
  15606. },
  15607. {
  15608. name: "Macro",
  15609. height: math.unit(20, "feet")
  15610. },
  15611. ]
  15612. ))
  15613. characterMakers.push(() => makeCharacter(
  15614. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15615. {
  15616. front: {
  15617. height: math.unit(6, "feet"),
  15618. weight: math.unit(150, "lb"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/jamie-larsen/front.svg",
  15622. extra: 962 / 933,
  15623. bottom: 0.02
  15624. }
  15625. },
  15626. back: {
  15627. height: math.unit(6, "feet"),
  15628. weight: math.unit(150, "lb"),
  15629. name: "Back",
  15630. image: {
  15631. source: "./media/characters/jamie-larsen/back.svg",
  15632. extra: 997 / 946
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Macro",
  15639. height: math.unit(28 + 7 / 12, "feet"),
  15640. default: true
  15641. },
  15642. {
  15643. name: "Macro+",
  15644. height: math.unit(180, "feet")
  15645. },
  15646. {
  15647. name: "Megamacro",
  15648. height: math.unit(10, "miles")
  15649. },
  15650. {
  15651. name: "Gigamacro",
  15652. height: math.unit(200000, "miles")
  15653. },
  15654. ]
  15655. ))
  15656. characterMakers.push(() => makeCharacter(
  15657. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15658. {
  15659. front: {
  15660. height: math.unit(6, "feet"),
  15661. weight: math.unit(120, "lb"),
  15662. name: "Front",
  15663. image: {
  15664. source: "./media/characters/vance/front.svg",
  15665. extra: 1980 / 1890,
  15666. bottom: 0.09
  15667. }
  15668. },
  15669. back: {
  15670. height: math.unit(6, "feet"),
  15671. weight: math.unit(120, "lb"),
  15672. name: "Back",
  15673. image: {
  15674. source: "./media/characters/vance/back.svg",
  15675. extra: 2081 / 1994,
  15676. bottom: 0.014
  15677. }
  15678. },
  15679. hand: {
  15680. height: math.unit(0.88, "feet"),
  15681. name: "Hand",
  15682. image: {
  15683. source: "./media/characters/vance/hand.svg"
  15684. }
  15685. },
  15686. foot: {
  15687. height: math.unit(0.64, "feet"),
  15688. name: "Foot",
  15689. image: {
  15690. source: "./media/characters/vance/foot.svg"
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Small",
  15697. height: math.unit(90, "feet"),
  15698. default: true
  15699. },
  15700. {
  15701. name: "Macro",
  15702. height: math.unit(100, "meters")
  15703. },
  15704. {
  15705. name: "Megamacro",
  15706. height: math.unit(15, "miles")
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(6, "feet"),
  15715. weight: math.unit(180, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/xochitl/front.svg",
  15719. extra: 2297 / 2261,
  15720. bottom: 0.065
  15721. }
  15722. },
  15723. back: {
  15724. height: math.unit(6, "feet"),
  15725. weight: math.unit(180, "lb"),
  15726. name: "Back",
  15727. image: {
  15728. source: "./media/characters/xochitl/back.svg",
  15729. extra: 2386 / 2354,
  15730. bottom: 0.01
  15731. }
  15732. },
  15733. foot: {
  15734. height: math.unit(6 / 5 * 1.15, "feet"),
  15735. weight: math.unit(150, "lb"),
  15736. name: "Foot",
  15737. image: {
  15738. source: "./media/characters/xochitl/foot.svg"
  15739. }
  15740. },
  15741. },
  15742. [
  15743. {
  15744. name: "Macro",
  15745. height: math.unit(80, "feet")
  15746. },
  15747. {
  15748. name: "Macro+",
  15749. height: math.unit(400, "feet"),
  15750. default: true
  15751. },
  15752. {
  15753. name: "Gigamacro",
  15754. height: math.unit(80000, "miles")
  15755. },
  15756. {
  15757. name: "Gigamacro+",
  15758. height: math.unit(400000, "miles")
  15759. },
  15760. {
  15761. name: "Teramacro",
  15762. height: math.unit(300, "AU")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(6, "feet"),
  15771. weight: math.unit(150, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/vincent/front.svg",
  15775. extra: 1130 / 1080,
  15776. bottom: 0.055
  15777. }
  15778. },
  15779. beak: {
  15780. height: math.unit(6 * 0.1, "feet"),
  15781. name: "Beak",
  15782. image: {
  15783. source: "./media/characters/vincent/beak.svg"
  15784. }
  15785. },
  15786. hand: {
  15787. height: math.unit(6 * 0.85, "feet"),
  15788. weight: math.unit(150, "lb"),
  15789. name: "Hand",
  15790. image: {
  15791. source: "./media/characters/vincent/hand.svg"
  15792. }
  15793. },
  15794. foot: {
  15795. height: math.unit(6 * 0.19, "feet"),
  15796. weight: math.unit(150, "lb"),
  15797. name: "Foot",
  15798. image: {
  15799. source: "./media/characters/vincent/foot.svg"
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Base",
  15806. height: math.unit(6 + 5 / 12, "feet"),
  15807. default: true
  15808. },
  15809. {
  15810. name: "Macro",
  15811. height: math.unit(300, "feet")
  15812. },
  15813. {
  15814. name: "Megamacro",
  15815. height: math.unit(2, "miles")
  15816. },
  15817. {
  15818. name: "Gigamacro",
  15819. height: math.unit(1000, "miles")
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15825. {
  15826. front: {
  15827. height: math.unit(2, "meters"),
  15828. weight: math.unit(500, "kg"),
  15829. name: "Front",
  15830. image: {
  15831. source: "./media/characters/coatl/front.svg",
  15832. extra: 3948 / 3500,
  15833. bottom: 0.082
  15834. }
  15835. },
  15836. },
  15837. [
  15838. {
  15839. name: "Normal",
  15840. height: math.unit(4, "meters")
  15841. },
  15842. {
  15843. name: "Macro",
  15844. height: math.unit(100, "meters"),
  15845. default: true
  15846. },
  15847. {
  15848. name: "Macro+",
  15849. height: math.unit(300, "meters")
  15850. },
  15851. {
  15852. name: "Megamacro",
  15853. height: math.unit(3, "gigameters")
  15854. },
  15855. {
  15856. name: "Megamacro+",
  15857. height: math.unit(300, "terameters")
  15858. },
  15859. {
  15860. name: "Megamacro++",
  15861. height: math.unit(3, "lightyears")
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(6, "feet"),
  15870. weight: math.unit(50, "kg"),
  15871. name: "front",
  15872. image: {
  15873. source: "./media/characters/shiroryu/front.svg",
  15874. extra: 1990 / 1935
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Mortal Mingling",
  15881. height: math.unit(3, "meters")
  15882. },
  15883. {
  15884. name: "Kaiju-ish",
  15885. height: math.unit(250, "meters")
  15886. },
  15887. {
  15888. name: "Somewhat Godly",
  15889. height: math.unit(400, "km"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Planetary",
  15894. height: math.unit(300, "megameters")
  15895. },
  15896. {
  15897. name: "Galaxy-dwarfing",
  15898. height: math.unit(450, "kiloparsecs")
  15899. },
  15900. {
  15901. name: "Universe Eater",
  15902. height: math.unit(150, "gigaparsecs")
  15903. },
  15904. {
  15905. name: "Almost Immeasurable",
  15906. height: math.unit(1.3e266, "yottaparsecs")
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15912. {
  15913. front: {
  15914. height: math.unit(6, "feet"),
  15915. weight: math.unit(150, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/umeko/front.svg",
  15919. extra: 1,
  15920. bottom: 0.019
  15921. }
  15922. },
  15923. frontArmored: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(150, "lb"),
  15926. name: "Front (Armored)",
  15927. image: {
  15928. source: "./media/characters/umeko/front-armored.svg",
  15929. extra: 1,
  15930. bottom: 0.021
  15931. }
  15932. },
  15933. },
  15934. [
  15935. {
  15936. name: "Macro",
  15937. height: math.unit(220, "feet"),
  15938. default: true
  15939. },
  15940. {
  15941. name: "Guardian Dragon",
  15942. height: math.unit(50, "miles")
  15943. },
  15944. {
  15945. name: "Cosmic",
  15946. height: math.unit(800000, "miles")
  15947. },
  15948. ]
  15949. ))
  15950. characterMakers.push(() => makeCharacter(
  15951. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15952. {
  15953. front: {
  15954. height: math.unit(6, "feet"),
  15955. weight: math.unit(150, "lb"),
  15956. name: "Front",
  15957. image: {
  15958. source: "./media/characters/cassidy/front.svg",
  15959. extra: 810/808,
  15960. bottom: 41/851
  15961. }
  15962. },
  15963. },
  15964. [
  15965. {
  15966. name: "Canon Height",
  15967. height: math.unit(120, "feet"),
  15968. default: true
  15969. },
  15970. {
  15971. name: "Macro+",
  15972. height: math.unit(400, "feet")
  15973. },
  15974. {
  15975. name: "Macro++",
  15976. height: math.unit(4000, "feet")
  15977. },
  15978. {
  15979. name: "Megamacro",
  15980. height: math.unit(3, "miles")
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15986. {
  15987. front: {
  15988. height: math.unit(6, "feet"),
  15989. weight: math.unit(150, "lb"),
  15990. name: "Front",
  15991. image: {
  15992. source: "./media/characters/isaac/front.svg",
  15993. extra: 896 / 815,
  15994. bottom: 0.11
  15995. }
  15996. },
  15997. },
  15998. [
  15999. {
  16000. name: "Human Size",
  16001. height: math.unit(8, "feet"),
  16002. default: true
  16003. },
  16004. {
  16005. name: "Macro",
  16006. height: math.unit(400, "feet")
  16007. },
  16008. {
  16009. name: "Megamacro",
  16010. height: math.unit(50, "miles")
  16011. },
  16012. {
  16013. name: "Canon Height",
  16014. height: math.unit(200, "AU")
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16020. {
  16021. front: {
  16022. height: math.unit(6, "feet"),
  16023. weight: math.unit(72, "kg"),
  16024. name: "Front",
  16025. image: {
  16026. source: "./media/characters/sleekit/front.svg",
  16027. extra: 4693 / 4487,
  16028. bottom: 0.012
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Minimum Height",
  16035. height: math.unit(10, "meters")
  16036. },
  16037. {
  16038. name: "Smaller",
  16039. height: math.unit(25, "meters")
  16040. },
  16041. {
  16042. name: "Larger",
  16043. height: math.unit(38, "meters"),
  16044. default: true
  16045. },
  16046. {
  16047. name: "Maximum height",
  16048. height: math.unit(100, "meters")
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16054. {
  16055. front: {
  16056. height: math.unit(6, "feet"),
  16057. weight: math.unit(150, "lb"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/nillia/front.svg",
  16061. extra: 719/665,
  16062. bottom: 6/725
  16063. }
  16064. },
  16065. back: {
  16066. height: math.unit(6, "feet"),
  16067. weight: math.unit(150, "lb"),
  16068. name: "Back",
  16069. image: {
  16070. source: "./media/characters/nillia/back.svg",
  16071. extra: 705/651,
  16072. bottom: 5/710
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Canon Height",
  16079. height: math.unit(489, "feet"),
  16080. default: true
  16081. }
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16086. {
  16087. front: {
  16088. height: math.unit(6, "feet"),
  16089. weight: math.unit(150, "lb"),
  16090. name: "Front",
  16091. image: {
  16092. source: "./media/characters/mesmyriza/front.svg",
  16093. extra: 1541/1291,
  16094. bottom: 87/1628
  16095. }
  16096. },
  16097. foot: {
  16098. height: math.unit(6 / (250 / 35), "feet"),
  16099. name: "Foot",
  16100. image: {
  16101. source: "./media/characters/mesmyriza/foot.svg"
  16102. }
  16103. },
  16104. },
  16105. [
  16106. {
  16107. name: "Macro",
  16108. height: math.unit(457, "meters"),
  16109. default: true
  16110. },
  16111. {
  16112. name: "Megamacro",
  16113. height: math.unit(8, "megameters")
  16114. },
  16115. ]
  16116. ))
  16117. characterMakers.push(() => makeCharacter(
  16118. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16119. {
  16120. front: {
  16121. height: math.unit(6, "feet"),
  16122. weight: math.unit(250, "lb"),
  16123. name: "Front",
  16124. image: {
  16125. source: "./media/characters/saudade/front.svg",
  16126. extra: 1172 / 1139,
  16127. bottom: 0.035
  16128. }
  16129. },
  16130. },
  16131. [
  16132. {
  16133. name: "Micro",
  16134. height: math.unit(3, "inches")
  16135. },
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(6, "feet"),
  16139. default: true
  16140. },
  16141. {
  16142. name: "Macro",
  16143. height: math.unit(50, "feet")
  16144. },
  16145. {
  16146. name: "Megamacro",
  16147. height: math.unit(2800, "feet")
  16148. },
  16149. ]
  16150. ))
  16151. characterMakers.push(() => makeCharacter(
  16152. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16153. {
  16154. front: {
  16155. height: math.unit(5 + 4 / 12, "feet"),
  16156. weight: math.unit(100, "lb"),
  16157. name: "Front",
  16158. image: {
  16159. source: "./media/characters/keireer/front.svg",
  16160. extra: 716 / 666,
  16161. bottom: 0.05
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(5 + 4 / 12, "feet"),
  16169. default: true
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(5.5, "feet"),
  16178. weight: math.unit(90, "kg"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/mirja/front.svg",
  16182. extra: 1452/1262,
  16183. bottom: 67/1519
  16184. }
  16185. },
  16186. frontDressed: {
  16187. height: math.unit(5.5, "feet"),
  16188. weight: math.unit(90, "lb"),
  16189. name: "Front (Dressed)",
  16190. image: {
  16191. source: "./media/characters/mirja/dressed.svg",
  16192. extra: 1452/1262,
  16193. bottom: 67/1519
  16194. }
  16195. },
  16196. back: {
  16197. height: math.unit(6, "feet"),
  16198. weight: math.unit(90, "lb"),
  16199. name: "Back",
  16200. image: {
  16201. source: "./media/characters/mirja/back.svg",
  16202. extra: 1892/1795,
  16203. bottom: 48/1940
  16204. }
  16205. },
  16206. maw: {
  16207. height: math.unit(1.312, "feet"),
  16208. name: "Maw",
  16209. image: {
  16210. source: "./media/characters/mirja/maw.svg"
  16211. }
  16212. },
  16213. paw: {
  16214. height: math.unit(1.15, "feet"),
  16215. name: "Paw",
  16216. image: {
  16217. source: "./media/characters/mirja/paw.svg"
  16218. }
  16219. },
  16220. },
  16221. [
  16222. {
  16223. name: "\"Incognito\"",
  16224. height: math.unit(3, "meters")
  16225. },
  16226. {
  16227. name: "Strolling Size",
  16228. height: math.unit(15, "km")
  16229. },
  16230. {
  16231. name: "Larger Strolling Size",
  16232. height: math.unit(400, "km")
  16233. },
  16234. {
  16235. name: "Preferred Size",
  16236. height: math.unit(5000, "km"),
  16237. default: true
  16238. },
  16239. {
  16240. name: "True Size",
  16241. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16247. {
  16248. front: {
  16249. height: math.unit(15, "feet"),
  16250. weight: math.unit(880, "kg"),
  16251. name: "Front",
  16252. image: {
  16253. source: "./media/characters/nightraver/front.svg",
  16254. extra: 2444 / 2160,
  16255. bottom: 0.027
  16256. }
  16257. },
  16258. back: {
  16259. height: math.unit(15, "feet"),
  16260. weight: math.unit(880, "kg"),
  16261. name: "Back",
  16262. image: {
  16263. source: "./media/characters/nightraver/back.svg",
  16264. extra: 2309 / 2180,
  16265. bottom: 0.005
  16266. }
  16267. },
  16268. sole: {
  16269. height: math.unit(2.878, "feet"),
  16270. name: "Sole",
  16271. image: {
  16272. source: "./media/characters/nightraver/sole.svg"
  16273. }
  16274. },
  16275. foot: {
  16276. height: math.unit(2.285, "feet"),
  16277. name: "Foot",
  16278. image: {
  16279. source: "./media/characters/nightraver/foot.svg"
  16280. }
  16281. },
  16282. maw: {
  16283. height: math.unit(2.67, "feet"),
  16284. name: "Maw",
  16285. image: {
  16286. source: "./media/characters/nightraver/maw.svg"
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Micro",
  16293. height: math.unit(1, "cm")
  16294. },
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(15, "feet"),
  16298. default: true
  16299. },
  16300. {
  16301. name: "Macro",
  16302. height: math.unit(300, "feet")
  16303. },
  16304. {
  16305. name: "Megamacro",
  16306. height: math.unit(300, "miles")
  16307. },
  16308. {
  16309. name: "Gigamacro",
  16310. height: math.unit(10000, "miles")
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16316. {
  16317. side: {
  16318. height: math.unit(2, "inches"),
  16319. weight: math.unit(5, "grams"),
  16320. name: "Side",
  16321. image: {
  16322. source: "./media/characters/arc/side.svg"
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Micro",
  16329. height: math.unit(2, "inches"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(1.1938, "meters"),
  16339. weight: math.unit(54, "kg"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/nebula-shahar/front.svg",
  16343. extra: 1642 / 1436,
  16344. bottom: 0.06
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Megamicro",
  16351. height: math.unit(0.3, "mm")
  16352. },
  16353. {
  16354. name: "Micro",
  16355. height: math.unit(3, "cm")
  16356. },
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(138, "cm"),
  16360. default: true
  16361. },
  16362. {
  16363. name: "Macro",
  16364. height: math.unit(30, "m")
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(5.24, "feet"),
  16373. weight: math.unit(150, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/shayla/front.svg",
  16377. extra: 1512 / 1414,
  16378. bottom: 0.01
  16379. }
  16380. },
  16381. back: {
  16382. height: math.unit(5.24, "feet"),
  16383. weight: math.unit(150, "lb"),
  16384. name: "Back",
  16385. image: {
  16386. source: "./media/characters/shayla/back.svg",
  16387. extra: 1512 / 1414
  16388. }
  16389. },
  16390. hand: {
  16391. height: math.unit(0.7781496062992126, "feet"),
  16392. name: "Hand",
  16393. image: {
  16394. source: "./media/characters/shayla/hand.svg"
  16395. }
  16396. },
  16397. foot: {
  16398. height: math.unit(1.4206036745406823, "feet"),
  16399. name: "Foot",
  16400. image: {
  16401. source: "./media/characters/shayla/foot.svg"
  16402. }
  16403. },
  16404. },
  16405. [
  16406. {
  16407. name: "Micro",
  16408. height: math.unit(0.32, "feet")
  16409. },
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(5.24, "feet"),
  16413. default: true
  16414. },
  16415. {
  16416. name: "Macro",
  16417. height: math.unit(492.12, "feet")
  16418. },
  16419. {
  16420. name: "Megamacro",
  16421. height: math.unit(186.41, "miles")
  16422. },
  16423. ]
  16424. ))
  16425. characterMakers.push(() => makeCharacter(
  16426. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16427. {
  16428. front: {
  16429. height: math.unit(2.2, "m"),
  16430. weight: math.unit(120, "kg"),
  16431. name: "Front",
  16432. image: {
  16433. source: "./media/characters/pia-jr/front.svg",
  16434. extra: 1000 / 970,
  16435. bottom: 0.035
  16436. }
  16437. },
  16438. hand: {
  16439. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16440. name: "Hand",
  16441. image: {
  16442. source: "./media/characters/pia-jr/hand.svg"
  16443. }
  16444. },
  16445. paw: {
  16446. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16447. name: "Paw",
  16448. image: {
  16449. source: "./media/characters/pia-jr/paw.svg"
  16450. }
  16451. },
  16452. },
  16453. [
  16454. {
  16455. name: "Micro",
  16456. height: math.unit(1.2, "cm")
  16457. },
  16458. {
  16459. name: "Normal",
  16460. height: math.unit(2.2, "m"),
  16461. default: true
  16462. },
  16463. {
  16464. name: "Macro",
  16465. height: math.unit(180, "m")
  16466. },
  16467. {
  16468. name: "Megamacro",
  16469. height: math.unit(420, "km")
  16470. },
  16471. ]
  16472. ))
  16473. characterMakers.push(() => makeCharacter(
  16474. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16475. {
  16476. front: {
  16477. height: math.unit(2, "m"),
  16478. weight: math.unit(115, "kg"),
  16479. name: "Front",
  16480. image: {
  16481. source: "./media/characters/pia-sr/front.svg",
  16482. extra: 760 / 730,
  16483. bottom: 0.015
  16484. }
  16485. },
  16486. back: {
  16487. height: math.unit(2, "m"),
  16488. weight: math.unit(115, "kg"),
  16489. name: "Back",
  16490. image: {
  16491. source: "./media/characters/pia-sr/back.svg",
  16492. extra: 760 / 730,
  16493. bottom: 0.01
  16494. }
  16495. },
  16496. hand: {
  16497. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16498. name: "Hand",
  16499. image: {
  16500. source: "./media/characters/pia-sr/hand.svg"
  16501. }
  16502. },
  16503. foot: {
  16504. height: math.unit(1.83, "feet"),
  16505. name: "Foot",
  16506. image: {
  16507. source: "./media/characters/pia-sr/foot.svg"
  16508. }
  16509. },
  16510. },
  16511. [
  16512. {
  16513. name: "Micro",
  16514. height: math.unit(88, "mm")
  16515. },
  16516. {
  16517. name: "Normal",
  16518. height: math.unit(2, "m"),
  16519. default: true
  16520. },
  16521. {
  16522. name: "Macro",
  16523. height: math.unit(200, "m")
  16524. },
  16525. {
  16526. name: "Megamacro",
  16527. height: math.unit(420, "km")
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16533. {
  16534. front: {
  16535. height: math.unit(8 + 2 / 12, "feet"),
  16536. weight: math.unit(300, "lb"),
  16537. name: "Front",
  16538. image: {
  16539. source: "./media/characters/kibibyte/front.svg",
  16540. extra: 2221 / 2098,
  16541. bottom: 0.04
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Normal",
  16548. height: math.unit(8 + 2 / 12, "feet"),
  16549. default: true
  16550. },
  16551. {
  16552. name: "Socialable Macro",
  16553. height: math.unit(50, "feet")
  16554. },
  16555. {
  16556. name: "Macro",
  16557. height: math.unit(300, "feet")
  16558. },
  16559. {
  16560. name: "Megamacro",
  16561. height: math.unit(500, "miles")
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16567. {
  16568. front: {
  16569. height: math.unit(6, "feet"),
  16570. weight: math.unit(150, "lb"),
  16571. name: "Front",
  16572. image: {
  16573. source: "./media/characters/felix/front.svg",
  16574. extra: 762 / 722,
  16575. bottom: 0.02
  16576. }
  16577. },
  16578. frontClothed: {
  16579. height: math.unit(6, "feet"),
  16580. weight: math.unit(150, "lb"),
  16581. name: "Front (Clothed)",
  16582. image: {
  16583. source: "./media/characters/felix/front-clothed.svg",
  16584. extra: 762 / 722,
  16585. bottom: 0.02
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(6 + 8 / 12, "feet"),
  16593. default: true
  16594. },
  16595. {
  16596. name: "Macro",
  16597. height: math.unit(2600, "feet")
  16598. },
  16599. {
  16600. name: "Megamacro",
  16601. height: math.unit(450, "miles")
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16607. {
  16608. front: {
  16609. height: math.unit(6 + 1 / 12, "feet"),
  16610. weight: math.unit(250, "lb"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/tobo/front.svg",
  16614. extra: 608 / 586,
  16615. bottom: 0.023
  16616. }
  16617. },
  16618. back: {
  16619. height: math.unit(6 + 1 / 12, "feet"),
  16620. weight: math.unit(250, "lb"),
  16621. name: "Back",
  16622. image: {
  16623. source: "./media/characters/tobo/back.svg",
  16624. extra: 608 / 586
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Nano",
  16631. height: math.unit(2, "nm")
  16632. },
  16633. {
  16634. name: "Megamicro",
  16635. height: math.unit(0.1, "mm")
  16636. },
  16637. {
  16638. name: "Micro",
  16639. height: math.unit(1, "inch"),
  16640. default: true
  16641. },
  16642. {
  16643. name: "Human-sized",
  16644. height: math.unit(6 + 1 / 12, "feet")
  16645. },
  16646. {
  16647. name: "Macro",
  16648. height: math.unit(250, "feet")
  16649. },
  16650. {
  16651. name: "Megamacro",
  16652. height: math.unit(75, "miles")
  16653. },
  16654. {
  16655. name: "Texas-sized",
  16656. height: math.unit(750, "miles")
  16657. },
  16658. {
  16659. name: "Teramacro",
  16660. height: math.unit(50000, "miles")
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16666. {
  16667. front: {
  16668. height: math.unit(6, "feet"),
  16669. weight: math.unit(269, "lb"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/danny-kapowsky/front.svg",
  16673. extra: 766 / 736,
  16674. bottom: 0.044
  16675. }
  16676. },
  16677. back: {
  16678. height: math.unit(6, "feet"),
  16679. weight: math.unit(269, "lb"),
  16680. name: "Back",
  16681. image: {
  16682. source: "./media/characters/danny-kapowsky/back.svg",
  16683. extra: 797 / 760,
  16684. bottom: 0.025
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Macro",
  16691. height: math.unit(150, "feet"),
  16692. default: true
  16693. },
  16694. {
  16695. name: "Macro+",
  16696. height: math.unit(200, "feet")
  16697. },
  16698. {
  16699. name: "Macro++",
  16700. height: math.unit(300, "feet")
  16701. },
  16702. {
  16703. name: "Macro+++",
  16704. height: math.unit(400, "feet")
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16710. {
  16711. side: {
  16712. height: math.unit(6, "feet"),
  16713. weight: math.unit(170, "lb"),
  16714. name: "Side",
  16715. image: {
  16716. source: "./media/characters/finn/side.svg",
  16717. extra: 1953 / 1807,
  16718. bottom: 0.057
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Megamacro",
  16725. height: math.unit(14445, "feet"),
  16726. default: true
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16732. {
  16733. front: {
  16734. height: math.unit(5 + 6 / 12, "feet"),
  16735. weight: math.unit(125, "lb"),
  16736. name: "Front",
  16737. image: {
  16738. source: "./media/characters/roy/front.svg",
  16739. extra: 1,
  16740. bottom: 0.11
  16741. }
  16742. },
  16743. },
  16744. [
  16745. {
  16746. name: "Micro",
  16747. height: math.unit(3, "inches"),
  16748. default: true
  16749. },
  16750. {
  16751. name: "Normal",
  16752. height: math.unit(5 + 6 / 12, "feet")
  16753. },
  16754. {
  16755. name: "Lesser Macro",
  16756. height: math.unit(60, "feet")
  16757. },
  16758. {
  16759. name: "Greater Macro",
  16760. height: math.unit(120, "feet")
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16766. {
  16767. front: {
  16768. height: math.unit(6, "feet"),
  16769. weight: math.unit(100, "lb"),
  16770. name: "Front",
  16771. image: {
  16772. source: "./media/characters/aevsivs/front.svg",
  16773. extra: 1,
  16774. bottom: 0.03
  16775. }
  16776. },
  16777. back: {
  16778. height: math.unit(6, "feet"),
  16779. weight: math.unit(100, "lb"),
  16780. name: "Back",
  16781. image: {
  16782. source: "./media/characters/aevsivs/back.svg"
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Micro",
  16789. height: math.unit(2, "inches"),
  16790. default: true
  16791. },
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(5, "feet")
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16800. {
  16801. front: {
  16802. height: math.unit(5 + 7 / 12, "feet"),
  16803. weight: math.unit(159, "lb"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/hildegard/front.svg",
  16807. extra: 289 / 269,
  16808. bottom: 7.63 / 297.8
  16809. }
  16810. },
  16811. back: {
  16812. height: math.unit(5 + 7 / 12, "feet"),
  16813. weight: math.unit(159, "lb"),
  16814. name: "Back",
  16815. image: {
  16816. source: "./media/characters/hildegard/back.svg",
  16817. extra: 280 / 260,
  16818. bottom: 2.3 / 282
  16819. }
  16820. },
  16821. },
  16822. [
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(5 + 7 / 12, "feet"),
  16826. default: true
  16827. },
  16828. ]
  16829. ))
  16830. characterMakers.push(() => makeCharacter(
  16831. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16832. {
  16833. bernard: {
  16834. height: math.unit(2 + 7 / 12, "feet"),
  16835. weight: math.unit(66, "lb"),
  16836. name: "Bernard",
  16837. rename: true,
  16838. image: {
  16839. source: "./media/characters/bernard-wilder/bernard.svg",
  16840. extra: 192 / 128,
  16841. bottom: 0.05
  16842. }
  16843. },
  16844. wilder: {
  16845. height: math.unit(5 + 8 / 12, "feet"),
  16846. weight: math.unit(143, "lb"),
  16847. name: "Wilder",
  16848. rename: true,
  16849. image: {
  16850. source: "./media/characters/bernard-wilder/wilder.svg",
  16851. extra: 361 / 312,
  16852. bottom: 0.02
  16853. }
  16854. },
  16855. },
  16856. [
  16857. {
  16858. name: "Normal",
  16859. height: math.unit(2 + 7 / 12, "feet"),
  16860. default: true
  16861. },
  16862. ]
  16863. ))
  16864. characterMakers.push(() => makeCharacter(
  16865. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16866. {
  16867. anthro: {
  16868. height: math.unit(6 + 1 / 12, "feet"),
  16869. weight: math.unit(155, "lb"),
  16870. name: "Anthro",
  16871. image: {
  16872. source: "./media/characters/hearth/anthro.svg",
  16873. extra: 1178/1136,
  16874. bottom: 28/1206
  16875. }
  16876. },
  16877. feral: {
  16878. height: math.unit(3.78, "feet"),
  16879. weight: math.unit(35, "kg"),
  16880. name: "Feral",
  16881. image: {
  16882. source: "./media/characters/hearth/feral.svg",
  16883. extra: 153 / 135,
  16884. bottom: 0.03
  16885. }
  16886. },
  16887. },
  16888. [
  16889. {
  16890. name: "Normal",
  16891. height: math.unit(6 + 1 / 12, "feet"),
  16892. default: true
  16893. },
  16894. ]
  16895. ))
  16896. characterMakers.push(() => makeCharacter(
  16897. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16898. {
  16899. front: {
  16900. height: math.unit(6, "feet"),
  16901. weight: math.unit(182, "lb"),
  16902. name: "Front",
  16903. image: {
  16904. source: "./media/characters/ingrid/front.svg",
  16905. extra: 294 / 268,
  16906. bottom: 0.027
  16907. }
  16908. },
  16909. },
  16910. [
  16911. {
  16912. name: "Normal",
  16913. height: math.unit(6, "feet"),
  16914. default: true
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16920. {
  16921. eevee: {
  16922. height: math.unit(2 + 10 / 12, "feet"),
  16923. weight: math.unit(86, "lb"),
  16924. name: "Malgam",
  16925. image: {
  16926. source: "./media/characters/malgam/eevee.svg",
  16927. extra: 952/784,
  16928. bottom: 38/990
  16929. }
  16930. },
  16931. sylveon: {
  16932. height: math.unit(4, "feet"),
  16933. weight: math.unit(101, "lb"),
  16934. name: "Future Malgam",
  16935. rename: true,
  16936. image: {
  16937. source: "./media/characters/malgam/sylveon.svg",
  16938. extra: 371 / 325,
  16939. bottom: 0.015
  16940. }
  16941. },
  16942. gigantamax: {
  16943. height: math.unit(50, "feet"),
  16944. name: "Gigantamax Malgam",
  16945. rename: true,
  16946. image: {
  16947. source: "./media/characters/malgam/gigantamax.svg"
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(2 + 10 / 12, "feet"),
  16955. default: true
  16956. },
  16957. ]
  16958. ))
  16959. characterMakers.push(() => makeCharacter(
  16960. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16961. {
  16962. front: {
  16963. height: math.unit(5 + 11 / 12, "feet"),
  16964. weight: math.unit(188, "lb"),
  16965. name: "Front",
  16966. image: {
  16967. source: "./media/characters/fleur/front.svg",
  16968. extra: 309 / 283,
  16969. bottom: 0.007
  16970. }
  16971. },
  16972. },
  16973. [
  16974. {
  16975. name: "Normal",
  16976. height: math.unit(5 + 11 / 12, "feet"),
  16977. default: true
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(5 + 4 / 12, "feet"),
  16986. weight: math.unit(122, "lb"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/jude/front.svg",
  16990. extra: 288 / 273,
  16991. bottom: 0.03
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(5 + 4 / 12, "feet"),
  16999. default: true
  17000. },
  17001. ]
  17002. ))
  17003. characterMakers.push(() => makeCharacter(
  17004. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17005. {
  17006. front: {
  17007. height: math.unit(5 + 11 / 12, "feet"),
  17008. weight: math.unit(190, "lb"),
  17009. name: "Front",
  17010. image: {
  17011. source: "./media/characters/seara/front.svg",
  17012. extra: 1,
  17013. bottom: 0.05
  17014. }
  17015. },
  17016. },
  17017. [
  17018. {
  17019. name: "Normal",
  17020. height: math.unit(5 + 11 / 12, "feet"),
  17021. default: true
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17027. {
  17028. front: {
  17029. height: math.unit(16 + 5 / 12, "feet"),
  17030. weight: math.unit(524, "lb"),
  17031. name: "Front",
  17032. image: {
  17033. source: "./media/characters/caspian-lugia/front.svg",
  17034. extra: 1,
  17035. bottom: 0.04
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(16 + 5 / 12, "feet"),
  17043. default: true
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17049. {
  17050. front: {
  17051. height: math.unit(5 + 7 / 12, "feet"),
  17052. weight: math.unit(170, "lb"),
  17053. name: "Front",
  17054. image: {
  17055. source: "./media/characters/mika/front.svg",
  17056. extra: 1,
  17057. bottom: 0.016
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Normal",
  17064. height: math.unit(5 + 7 / 12, "feet"),
  17065. default: true
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17071. {
  17072. front: {
  17073. height: math.unit(6 + 2 / 12, "feet"),
  17074. weight: math.unit(268, "lb"),
  17075. name: "Front",
  17076. image: {
  17077. source: "./media/characters/sol/front.svg",
  17078. extra: 247 / 231,
  17079. bottom: 0.05
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(6 + 2 / 12, "feet"),
  17087. default: true
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17093. {
  17094. buizel: {
  17095. height: math.unit(2 + 5 / 12, "feet"),
  17096. weight: math.unit(87, "lb"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/umiko/buizel.svg",
  17100. extra: 172 / 157,
  17101. bottom: 0.01
  17102. },
  17103. form: "buizel",
  17104. default: true
  17105. },
  17106. floatzel: {
  17107. height: math.unit(5 + 9 / 12, "feet"),
  17108. weight: math.unit(250, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/umiko/floatzel.svg",
  17112. extra: 1076/1006,
  17113. bottom: 15/1091
  17114. },
  17115. form: "floatzel",
  17116. default: true
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(2 + 5 / 12, "feet"),
  17123. form: "buizel",
  17124. default: true
  17125. },
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(5 + 9 / 12, "feet"),
  17129. form: "floatzel",
  17130. default: true
  17131. },
  17132. ],
  17133. {
  17134. "buizel": {
  17135. name: "Buizel"
  17136. },
  17137. "floatzel": {
  17138. name: "Floatzel",
  17139. default: true
  17140. }
  17141. }
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(6 + 2 / 12, "feet"),
  17148. weight: math.unit(146, "lb"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/iliac/front.svg",
  17152. extra: 389 / 365,
  17153. bottom: 0.035
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(6 + 2 / 12, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17167. {
  17168. front: {
  17169. height: math.unit(6, "feet"),
  17170. weight: math.unit(170, "lb"),
  17171. name: "Front",
  17172. image: {
  17173. source: "./media/characters/topaz/front.svg",
  17174. extra: 317 / 303,
  17175. bottom: 0.055
  17176. }
  17177. },
  17178. },
  17179. [
  17180. {
  17181. name: "Normal",
  17182. height: math.unit(6, "feet"),
  17183. default: true
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17189. {
  17190. front: {
  17191. height: math.unit(5 + 11 / 12, "feet"),
  17192. weight: math.unit(144, "lb"),
  17193. name: "Front",
  17194. image: {
  17195. source: "./media/characters/gabriel/front.svg",
  17196. extra: 285 / 262,
  17197. bottom: 0.004
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Normal",
  17204. height: math.unit(5 + 11 / 12, "feet"),
  17205. default: true
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17211. {
  17212. side: {
  17213. height: math.unit(6 + 5 / 12, "feet"),
  17214. weight: math.unit(300, "lb"),
  17215. name: "Side",
  17216. image: {
  17217. source: "./media/characters/tempest-suicune/side.svg",
  17218. extra: 195 / 154,
  17219. bottom: 0.04
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(6 + 5 / 12, "feet"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17233. {
  17234. front: {
  17235. height: math.unit(7 + 2 / 12, "feet"),
  17236. weight: math.unit(322, "lb"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/vulcan/front.svg",
  17240. extra: 154 / 147,
  17241. bottom: 0.04
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(7 + 2 / 12, "feet"),
  17249. default: true
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(5 + 10 / 12, "feet"),
  17258. weight: math.unit(264, "lb"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/gault/front.svg",
  17262. extra: 161 / 140,
  17263. bottom: 0.028
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(5 + 10 / 12, "feet"),
  17271. default: true
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(6, "feet"),
  17280. weight: math.unit(150, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/shard/front.svg",
  17284. extra: 273 / 238,
  17285. bottom: 0.02
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(3 + 6 / 12, "feet"),
  17293. default: true
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17299. {
  17300. front: {
  17301. height: math.unit(5 + 11 / 12, "feet"),
  17302. weight: math.unit(146, "lb"),
  17303. name: "Front",
  17304. image: {
  17305. source: "./media/characters/ashe/front.svg",
  17306. extra: 400 / 373,
  17307. bottom: 0.01
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Normal",
  17314. height: math.unit(5 + 11 / 12, "feet"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17321. {
  17322. front: {
  17323. height: math.unit(5 + 5 / 12, "feet"),
  17324. weight: math.unit(135, "lb"),
  17325. name: "Front",
  17326. image: {
  17327. source: "./media/characters/beatrix/front.svg",
  17328. extra: 392 / 379,
  17329. bottom: 0.01
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(6, "feet"),
  17337. default: true
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17343. {
  17344. front: {
  17345. height: math.unit(6 + 2/12, "feet"),
  17346. weight: math.unit(135, "lb"),
  17347. name: "Front",
  17348. image: {
  17349. source: "./media/characters/ignatius/front.svg",
  17350. extra: 1380/1259,
  17351. bottom: 27/1407
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(6 + 2/12, "feet"),
  17359. default: true
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(6 + 2 / 12, "feet"),
  17368. weight: math.unit(138, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/mei-li/front.svg",
  17372. extra: 237 / 229,
  17373. bottom: 0.03
  17374. }
  17375. },
  17376. },
  17377. [
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(6 + 2 / 12, "feet"),
  17381. default: true
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(2 + 4 / 12, "feet"),
  17390. weight: math.unit(62, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/puru/front.svg",
  17394. extra: 206 / 149,
  17395. bottom: 0.06
  17396. }
  17397. },
  17398. },
  17399. [
  17400. {
  17401. name: "Normal",
  17402. height: math.unit(2 + 4 / 12, "feet"),
  17403. default: true
  17404. },
  17405. ]
  17406. ))
  17407. characterMakers.push(() => makeCharacter(
  17408. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17409. {
  17410. anthro: {
  17411. height: math.unit(5 + 8/12, "feet"),
  17412. weight: math.unit(200, "lb"),
  17413. energyNeed: math.unit(2000, "kcal"),
  17414. name: "Anthro",
  17415. image: {
  17416. source: "./media/characters/kee/anthro.svg",
  17417. extra: 3251/3184,
  17418. bottom: 250/3501
  17419. }
  17420. },
  17421. taur: {
  17422. height: math.unit(11, "feet"),
  17423. weight: math.unit(500, "lb"),
  17424. energyNeed: math.unit(5000, "kcal"),
  17425. name: "Taur",
  17426. image: {
  17427. source: "./media/characters/kee/taur.svg",
  17428. extra: 1362/1320,
  17429. bottom: 83/1445
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(5 + 8/12, "feet"),
  17437. default: true
  17438. },
  17439. {
  17440. name: "Macro",
  17441. height: math.unit(35, "feet")
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17447. {
  17448. anthro: {
  17449. height: math.unit(7, "feet"),
  17450. weight: math.unit(190, "lb"),
  17451. name: "Anthro",
  17452. image: {
  17453. source: "./media/characters/cobalt-dracha/anthro.svg",
  17454. extra: 231 / 225,
  17455. bottom: 0.04
  17456. }
  17457. },
  17458. feral: {
  17459. height: math.unit(9 + 7 / 12, "feet"),
  17460. weight: math.unit(294, "lb"),
  17461. name: "Feral",
  17462. image: {
  17463. source: "./media/characters/cobalt-dracha/feral.svg",
  17464. extra: 692 / 633,
  17465. bottom: 0.05
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(7, "feet"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17479. {
  17480. fallen: {
  17481. height: math.unit(11 + 8 / 12, "feet"),
  17482. weight: math.unit(485, "lb"),
  17483. name: "Java (Fallen)",
  17484. rename: true,
  17485. image: {
  17486. source: "./media/characters/java/fallen.svg",
  17487. extra: 226 / 208,
  17488. bottom: 0.005
  17489. }
  17490. },
  17491. godkin: {
  17492. height: math.unit(10 + 6 / 12, "feet"),
  17493. weight: math.unit(328, "lb"),
  17494. name: "Java (Godkin)",
  17495. rename: true,
  17496. image: {
  17497. source: "./media/characters/java/godkin.svg",
  17498. extra: 1104/1068,
  17499. bottom: 36/1140
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(11 + 8 / 12, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(5 + 9 / 12, "feet"),
  17516. weight: math.unit(170, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/purna/front.svg",
  17520. extra: 239 / 229,
  17521. bottom: 0.01
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(5 + 9 / 12, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(5 + 9 / 12, "feet"),
  17538. weight: math.unit(142, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/kuva/front.svg",
  17542. extra: 281 / 271,
  17543. bottom: 0.006
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(5 + 9 / 12, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17557. {
  17558. anthro: {
  17559. height: math.unit(9 + 2 / 12, "feet"),
  17560. weight: math.unit(270, "lb"),
  17561. name: "Anthro",
  17562. image: {
  17563. source: "./media/characters/embra/anthro.svg",
  17564. extra: 200 / 187,
  17565. bottom: 0.02
  17566. }
  17567. },
  17568. feral: {
  17569. height: math.unit(18 + 8 / 12, "feet"),
  17570. weight: math.unit(576, "lb"),
  17571. name: "Feral",
  17572. image: {
  17573. source: "./media/characters/embra/feral.svg",
  17574. extra: 152 / 137,
  17575. bottom: 0.037
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(9 + 2 / 12, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17589. {
  17590. anthro: {
  17591. height: math.unit(10 + 9 / 12, "feet"),
  17592. weight: math.unit(224, "lb"),
  17593. name: "Anthro",
  17594. image: {
  17595. source: "./media/characters/grottos/anthro.svg",
  17596. extra: 350 / 332,
  17597. bottom: 0.045
  17598. }
  17599. },
  17600. feral: {
  17601. height: math.unit(20 + 7 / 12, "feet"),
  17602. weight: math.unit(629, "lb"),
  17603. name: "Feral",
  17604. image: {
  17605. source: "./media/characters/grottos/feral.svg",
  17606. extra: 207 / 190,
  17607. bottom: 0.05
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Normal",
  17614. height: math.unit(10 + 9 / 12, "feet"),
  17615. default: true
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17621. {
  17622. anthro: {
  17623. height: math.unit(9 + 6 / 12, "feet"),
  17624. weight: math.unit(298, "lb"),
  17625. name: "Anthro",
  17626. image: {
  17627. source: "./media/characters/frifna/anthro.svg",
  17628. extra: 282 / 269,
  17629. bottom: 0.015
  17630. }
  17631. },
  17632. feral: {
  17633. height: math.unit(16 + 2 / 12, "feet"),
  17634. weight: math.unit(624, "lb"),
  17635. name: "Feral",
  17636. image: {
  17637. source: "./media/characters/frifna/feral.svg"
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(9 + 6 / 12, "feet"),
  17645. default: true
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17651. {
  17652. front: {
  17653. height: math.unit(6 + 2 / 12, "feet"),
  17654. weight: math.unit(168, "lb"),
  17655. name: "Front",
  17656. image: {
  17657. source: "./media/characters/elise/front.svg",
  17658. extra: 276 / 271
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(6 + 2 / 12, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(5 + 10 / 12, "feet"),
  17675. weight: math.unit(210, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/glade/front.svg",
  17679. extra: 258 / 247,
  17680. bottom: 0.008
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(5 + 10 / 12, "feet"),
  17688. default: true
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(5 + 10 / 12, "feet"),
  17697. weight: math.unit(129, "lb"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/rina/front.svg",
  17701. extra: 266 / 255,
  17702. bottom: 0.005
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Normal",
  17709. height: math.unit(5 + 10 / 12, "feet"),
  17710. default: true
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17716. {
  17717. front: {
  17718. height: math.unit(6 + 1 / 12, "feet"),
  17719. weight: math.unit(192, "lb"),
  17720. name: "Front",
  17721. image: {
  17722. source: "./media/characters/veronica/front.svg",
  17723. extra: 319 / 309,
  17724. bottom: 0.005
  17725. }
  17726. },
  17727. },
  17728. [
  17729. {
  17730. name: "Normal",
  17731. height: math.unit(6 + 1 / 12, "feet"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(9 + 3 / 12, "feet"),
  17741. weight: math.unit(1100, "lb"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/braxton/front.svg",
  17745. extra: 1057 / 984,
  17746. bottom: 0.05
  17747. }
  17748. },
  17749. },
  17750. [
  17751. {
  17752. name: "Normal",
  17753. height: math.unit(9 + 3 / 12, "feet")
  17754. },
  17755. {
  17756. name: "Giant",
  17757. height: math.unit(300, "feet"),
  17758. default: true
  17759. },
  17760. {
  17761. name: "Macro",
  17762. height: math.unit(700, "feet")
  17763. },
  17764. {
  17765. name: "Megamacro",
  17766. height: math.unit(6000, "feet")
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17772. {
  17773. front: {
  17774. height: math.unit(6 + 7 / 12, "feet"),
  17775. weight: math.unit(150, "lb"),
  17776. name: "Front",
  17777. image: {
  17778. source: "./media/characters/blue-feyonics/front.svg",
  17779. extra: 1403 / 1306,
  17780. bottom: 0.047
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(6 + 7 / 12, "feet"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(1.8, "meters"),
  17797. weight: math.unit(60, "kg"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/maxwell/front.svg",
  17801. extra: 2060 / 1873
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Micro",
  17808. height: math.unit(1, "mm")
  17809. },
  17810. {
  17811. name: "Normal",
  17812. height: math.unit(1.8, "meter"),
  17813. default: true
  17814. },
  17815. {
  17816. name: "Macro",
  17817. height: math.unit(30, "meters")
  17818. },
  17819. {
  17820. name: "Megamacro",
  17821. height: math.unit(10, "km")
  17822. },
  17823. ]
  17824. ))
  17825. characterMakers.push(() => makeCharacter(
  17826. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17827. {
  17828. front: {
  17829. height: math.unit(6, "feet"),
  17830. weight: math.unit(150, "lb"),
  17831. name: "Front",
  17832. image: {
  17833. source: "./media/characters/jack/front.svg",
  17834. extra: 1754 / 1640,
  17835. bottom: 0.01
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Normal",
  17842. height: math.unit(80000, "feet"),
  17843. default: true
  17844. },
  17845. {
  17846. name: "Max size",
  17847. height: math.unit(10, "lightyears")
  17848. },
  17849. ]
  17850. ))
  17851. characterMakers.push(() => makeCharacter(
  17852. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17853. {
  17854. urban: {
  17855. height: math.unit(5, "feet"),
  17856. weight: math.unit(240, "lb"),
  17857. name: "Urban",
  17858. image: {
  17859. source: "./media/characters/cafat/urban.svg",
  17860. extra: 1223/1126,
  17861. bottom: 205/1428
  17862. }
  17863. },
  17864. summer: {
  17865. height: math.unit(5, "feet"),
  17866. weight: math.unit(240, "lb"),
  17867. name: "Summer",
  17868. image: {
  17869. source: "./media/characters/cafat/summer.svg",
  17870. extra: 1223/1126,
  17871. bottom: 205/1428
  17872. }
  17873. },
  17874. winter: {
  17875. height: math.unit(5, "feet"),
  17876. weight: math.unit(240, "lb"),
  17877. name: "Winter",
  17878. image: {
  17879. source: "./media/characters/cafat/winter.svg",
  17880. extra: 1223/1126,
  17881. bottom: 205/1428
  17882. }
  17883. },
  17884. lingerie: {
  17885. height: math.unit(5, "feet"),
  17886. weight: math.unit(240, "lb"),
  17887. name: "Lingerie",
  17888. image: {
  17889. source: "./media/characters/cafat/lingerie.svg",
  17890. extra: 1223/1126,
  17891. bottom: 205/1428
  17892. }
  17893. },
  17894. upright: {
  17895. height: math.unit(6.3, "feet"),
  17896. weight: math.unit(240, "lb"),
  17897. name: "Upright",
  17898. image: {
  17899. source: "./media/characters/cafat/upright.svg",
  17900. bottom: 0.01
  17901. }
  17902. },
  17903. uprightFull: {
  17904. height: math.unit(6.3, "feet"),
  17905. weight: math.unit(240, "lb"),
  17906. name: "Upright (Full)",
  17907. image: {
  17908. source: "./media/characters/cafat/upright-full.svg",
  17909. bottom: 0.01
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Small",
  17916. height: math.unit(5, "feet"),
  17917. default: true
  17918. },
  17919. {
  17920. name: "Large",
  17921. height: math.unit(13, "feet")
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17927. {
  17928. front: {
  17929. height: math.unit(6, "feet"),
  17930. weight: math.unit(150, "lb"),
  17931. name: "Front",
  17932. image: {
  17933. source: "./media/characters/verin-raharra/front.svg",
  17934. extra: 5019 / 4835,
  17935. bottom: 0.023
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(7 + 5 / 12, "feet"),
  17943. default: true
  17944. },
  17945. {
  17946. name: "Upsized",
  17947. height: math.unit(20, "feet")
  17948. },
  17949. ]
  17950. ))
  17951. characterMakers.push(() => makeCharacter(
  17952. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17953. {
  17954. front: {
  17955. height: math.unit(7, "feet"),
  17956. weight: math.unit(230, "lb"),
  17957. name: "Front",
  17958. image: {
  17959. source: "./media/characters/nakata/front.svg",
  17960. extra: 1.005,
  17961. bottom: 0.01
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(7, "feet"),
  17969. default: true
  17970. },
  17971. {
  17972. name: "Big",
  17973. height: math.unit(14, "feet")
  17974. },
  17975. {
  17976. name: "Macro",
  17977. height: math.unit(400, "feet")
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17983. {
  17984. front: {
  17985. height: math.unit(4.91, "feet"),
  17986. weight: math.unit(100, "lb"),
  17987. name: "Front",
  17988. image: {
  17989. source: "./media/characters/lily/front.svg",
  17990. extra: 1585 / 1415,
  17991. bottom: 0.02
  17992. }
  17993. },
  17994. },
  17995. [
  17996. {
  17997. name: "Normal",
  17998. height: math.unit(4.91, "feet"),
  17999. default: true
  18000. },
  18001. ]
  18002. ))
  18003. characterMakers.push(() => makeCharacter(
  18004. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18005. {
  18006. laying: {
  18007. height: math.unit(4 + 4 / 12, "feet"),
  18008. weight: math.unit(600, "lb"),
  18009. name: "Laying",
  18010. image: {
  18011. source: "./media/characters/sheila/laying.svg",
  18012. extra: 1333 / 1265,
  18013. bottom: 0.16
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Normal",
  18020. height: math.unit(4 + 4 / 12, "feet"),
  18021. default: true
  18022. },
  18023. ]
  18024. ))
  18025. characterMakers.push(() => makeCharacter(
  18026. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18027. {
  18028. front: {
  18029. height: math.unit(6, "feet"),
  18030. weight: math.unit(190, "lb"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/sax/front.svg",
  18034. extra: 1187 / 973,
  18035. bottom: 0.042
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Micro",
  18042. height: math.unit(4, "inches"),
  18043. default: true
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18049. {
  18050. front: {
  18051. height: math.unit(6, "feet"),
  18052. weight: math.unit(150, "lb"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/pandora/front.svg",
  18056. extra: 2720 / 2556,
  18057. bottom: 0.015
  18058. }
  18059. },
  18060. back: {
  18061. height: math.unit(6, "feet"),
  18062. weight: math.unit(150, "lb"),
  18063. name: "Back",
  18064. image: {
  18065. source: "./media/characters/pandora/back.svg",
  18066. extra: 2720 / 2556,
  18067. bottom: 0.01
  18068. }
  18069. },
  18070. beans: {
  18071. height: math.unit(6 / 8, "feet"),
  18072. name: "Beans",
  18073. image: {
  18074. source: "./media/characters/pandora/beans.svg"
  18075. }
  18076. },
  18077. collar: {
  18078. height: math.unit(0.31, "feet"),
  18079. name: "Collar",
  18080. image: {
  18081. source: "./media/characters/pandora/collar.svg"
  18082. }
  18083. },
  18084. skirt: {
  18085. height: math.unit(6, "feet"),
  18086. weight: math.unit(150, "lb"),
  18087. name: "Skirt",
  18088. image: {
  18089. source: "./media/characters/pandora/skirt.svg",
  18090. extra: 1622 / 1525,
  18091. bottom: 0.015
  18092. }
  18093. },
  18094. hoodie: {
  18095. height: math.unit(6, "feet"),
  18096. weight: math.unit(150, "lb"),
  18097. name: "Hoodie",
  18098. image: {
  18099. source: "./media/characters/pandora/hoodie.svg",
  18100. extra: 1622 / 1525,
  18101. bottom: 0.015
  18102. }
  18103. },
  18104. casual: {
  18105. height: math.unit(6, "feet"),
  18106. weight: math.unit(150, "lb"),
  18107. name: "Casual",
  18108. image: {
  18109. source: "./media/characters/pandora/casual.svg",
  18110. extra: 1622 / 1525,
  18111. bottom: 0.015
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(6, "feet")
  18119. },
  18120. {
  18121. name: "Big Steppy",
  18122. height: math.unit(1, "km"),
  18123. default: true
  18124. },
  18125. {
  18126. name: "Galactic Steppy",
  18127. height: math.unit(2, "gigameters")
  18128. },
  18129. ]
  18130. ))
  18131. characterMakers.push(() => makeCharacter(
  18132. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18133. {
  18134. side: {
  18135. height: math.unit(10, "feet"),
  18136. weight: math.unit(800, "kg"),
  18137. name: "Side",
  18138. image: {
  18139. source: "./media/characters/venio-darcony/side.svg",
  18140. extra: 1373 / 1003,
  18141. bottom: 0.037
  18142. }
  18143. },
  18144. front: {
  18145. height: math.unit(19, "feet"),
  18146. weight: math.unit(800, "kg"),
  18147. name: "Front",
  18148. image: {
  18149. source: "./media/characters/venio-darcony/front.svg"
  18150. }
  18151. },
  18152. back: {
  18153. height: math.unit(19, "feet"),
  18154. weight: math.unit(800, "kg"),
  18155. name: "Back",
  18156. image: {
  18157. source: "./media/characters/venio-darcony/back.svg"
  18158. }
  18159. },
  18160. sideNsfw: {
  18161. height: math.unit(10, "feet"),
  18162. weight: math.unit(800, "kg"),
  18163. name: "Side (NSFW)",
  18164. image: {
  18165. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18166. extra: 1373 / 1003,
  18167. bottom: 0.037
  18168. }
  18169. },
  18170. frontNsfw: {
  18171. height: math.unit(19, "feet"),
  18172. weight: math.unit(800, "kg"),
  18173. name: "Front (NSFW)",
  18174. image: {
  18175. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18176. }
  18177. },
  18178. backNsfw: {
  18179. height: math.unit(19, "feet"),
  18180. weight: math.unit(800, "kg"),
  18181. name: "Back (NSFW)",
  18182. image: {
  18183. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18184. }
  18185. },
  18186. sideArmored: {
  18187. height: math.unit(10, "feet"),
  18188. weight: math.unit(800, "kg"),
  18189. name: "Side (Armored)",
  18190. image: {
  18191. source: "./media/characters/venio-darcony/side-armored.svg",
  18192. extra: 1373 / 1003,
  18193. bottom: 0.037
  18194. }
  18195. },
  18196. frontArmored: {
  18197. height: math.unit(19, "feet"),
  18198. weight: math.unit(900, "kg"),
  18199. name: "Front (Armored)",
  18200. image: {
  18201. source: "./media/characters/venio-darcony/front-armored.svg"
  18202. }
  18203. },
  18204. backArmored: {
  18205. height: math.unit(19, "feet"),
  18206. weight: math.unit(900, "kg"),
  18207. name: "Back (Armored)",
  18208. image: {
  18209. source: "./media/characters/venio-darcony/back-armored.svg"
  18210. }
  18211. },
  18212. sword: {
  18213. height: math.unit(10, "feet"),
  18214. weight: math.unit(50, "lb"),
  18215. name: "Sword",
  18216. image: {
  18217. source: "./media/characters/venio-darcony/sword.svg"
  18218. }
  18219. },
  18220. },
  18221. [
  18222. {
  18223. name: "Normal",
  18224. height: math.unit(10, "feet")
  18225. },
  18226. {
  18227. name: "Macro",
  18228. height: math.unit(130, "feet"),
  18229. default: true
  18230. },
  18231. {
  18232. name: "Macro+",
  18233. height: math.unit(240, "feet")
  18234. },
  18235. ]
  18236. ))
  18237. characterMakers.push(() => makeCharacter(
  18238. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18239. {
  18240. front: {
  18241. height: math.unit(6, "feet"),
  18242. weight: math.unit(150, "lb"),
  18243. name: "Front",
  18244. image: {
  18245. source: "./media/characters/veski/front.svg",
  18246. extra: 1299 / 1225,
  18247. bottom: 0.04
  18248. }
  18249. },
  18250. back: {
  18251. height: math.unit(6, "feet"),
  18252. weight: math.unit(150, "lb"),
  18253. name: "Back",
  18254. image: {
  18255. source: "./media/characters/veski/back.svg",
  18256. extra: 1299 / 1225,
  18257. bottom: 0.008
  18258. }
  18259. },
  18260. maw: {
  18261. height: math.unit(1.5 * 1.21, "feet"),
  18262. name: "Maw",
  18263. image: {
  18264. source: "./media/characters/veski/maw.svg"
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Macro",
  18271. height: math.unit(2, "km"),
  18272. default: true
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(5 + 7 / 12, "feet"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/isabelle/front.svg",
  18284. extra: 2130 / 1976,
  18285. bottom: 0.05
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Supermicro",
  18292. height: math.unit(10, "micrometers")
  18293. },
  18294. {
  18295. name: "Micro",
  18296. height: math.unit(1, "inch")
  18297. },
  18298. {
  18299. name: "Tiny",
  18300. height: math.unit(5, "inches")
  18301. },
  18302. {
  18303. name: "Standard",
  18304. height: math.unit(5 + 7 / 12, "inches")
  18305. },
  18306. {
  18307. name: "Macro",
  18308. height: math.unit(80, "meters"),
  18309. default: true
  18310. },
  18311. {
  18312. name: "Megamacro",
  18313. height: math.unit(250, "meters")
  18314. },
  18315. {
  18316. name: "Gigamacro",
  18317. height: math.unit(5, "km")
  18318. },
  18319. {
  18320. name: "Cosmic",
  18321. height: math.unit(2.5e6, "miles")
  18322. },
  18323. ]
  18324. ))
  18325. characterMakers.push(() => makeCharacter(
  18326. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18327. {
  18328. front: {
  18329. height: math.unit(6, "feet"),
  18330. weight: math.unit(150, "lb"),
  18331. name: "Front",
  18332. image: {
  18333. source: "./media/characters/hanzo/front.svg",
  18334. extra: 374 / 344,
  18335. bottom: 0.02
  18336. }
  18337. },
  18338. },
  18339. [
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(8, "feet"),
  18343. default: true
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(7, "feet"),
  18352. weight: math.unit(130, "lb"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/anna/front.svg",
  18356. extra: 169 / 145,
  18357. bottom: 0.06
  18358. }
  18359. },
  18360. full: {
  18361. height: math.unit(4.96, "feet"),
  18362. weight: math.unit(220, "lb"),
  18363. name: "Full",
  18364. image: {
  18365. source: "./media/characters/anna/full.svg",
  18366. extra: 138 / 114,
  18367. bottom: 0.15
  18368. }
  18369. },
  18370. tongue: {
  18371. height: math.unit(2.53, "feet"),
  18372. name: "Tongue",
  18373. image: {
  18374. source: "./media/characters/anna/tongue.svg"
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(7, "feet"),
  18382. default: true
  18383. },
  18384. ]
  18385. ))
  18386. characterMakers.push(() => makeCharacter(
  18387. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18388. {
  18389. front: {
  18390. height: math.unit(7, "feet"),
  18391. weight: math.unit(150, "lb"),
  18392. name: "Front",
  18393. image: {
  18394. source: "./media/characters/ian-corvid/front.svg",
  18395. extra: 150 / 142,
  18396. bottom: 0.02
  18397. }
  18398. },
  18399. back: {
  18400. height: math.unit(7, "feet"),
  18401. weight: math.unit(150, "lb"),
  18402. name: "Back",
  18403. image: {
  18404. source: "./media/characters/ian-corvid/back.svg",
  18405. extra: 150 / 143,
  18406. bottom: 0.01
  18407. }
  18408. },
  18409. stomping: {
  18410. height: math.unit(7, "feet"),
  18411. weight: math.unit(150, "lb"),
  18412. name: "Stomping",
  18413. image: {
  18414. source: "./media/characters/ian-corvid/stomping.svg",
  18415. extra: 76 / 72
  18416. }
  18417. },
  18418. sitting: {
  18419. height: math.unit(7 / 1.8, "feet"),
  18420. weight: math.unit(150, "lb"),
  18421. name: "Sitting",
  18422. image: {
  18423. source: "./media/characters/ian-corvid/sitting.svg",
  18424. extra: 1400 / 1269,
  18425. bottom: 0.15
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Tiny Microw",
  18432. height: math.unit(1, "inch")
  18433. },
  18434. {
  18435. name: "Microw",
  18436. height: math.unit(6, "inches")
  18437. },
  18438. {
  18439. name: "Crow",
  18440. height: math.unit(7 + 1 / 12, "feet"),
  18441. default: true
  18442. },
  18443. {
  18444. name: "Macrow",
  18445. height: math.unit(176, "feet")
  18446. },
  18447. ]
  18448. ))
  18449. characterMakers.push(() => makeCharacter(
  18450. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18451. {
  18452. front: {
  18453. height: math.unit(5 + 7 / 12, "feet"),
  18454. weight: math.unit(147, "lb"),
  18455. name: "Front",
  18456. image: {
  18457. source: "./media/characters/natalie-kellon/front.svg",
  18458. extra: 1214 / 1141,
  18459. bottom: 0.02
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Micro",
  18466. height: math.unit(1 / 16, "inch")
  18467. },
  18468. {
  18469. name: "Tiny",
  18470. height: math.unit(4, "inches")
  18471. },
  18472. {
  18473. name: "Normal",
  18474. height: math.unit(5 + 7 / 12, "feet"),
  18475. default: true
  18476. },
  18477. {
  18478. name: "Amazon",
  18479. height: math.unit(12, "feet")
  18480. },
  18481. {
  18482. name: "Giantess",
  18483. height: math.unit(160, "meters")
  18484. },
  18485. {
  18486. name: "Titaness",
  18487. height: math.unit(800, "meters")
  18488. },
  18489. ]
  18490. ))
  18491. characterMakers.push(() => makeCharacter(
  18492. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18493. {
  18494. front: {
  18495. height: math.unit(6, "feet"),
  18496. weight: math.unit(150, "lb"),
  18497. name: "Front",
  18498. image: {
  18499. source: "./media/characters/alluria/front.svg",
  18500. extra: 806 / 738,
  18501. bottom: 0.01
  18502. }
  18503. },
  18504. side: {
  18505. height: math.unit(6, "feet"),
  18506. weight: math.unit(150, "lb"),
  18507. name: "Side",
  18508. image: {
  18509. source: "./media/characters/alluria/side.svg",
  18510. extra: 800 / 750,
  18511. }
  18512. },
  18513. back: {
  18514. height: math.unit(6, "feet"),
  18515. weight: math.unit(150, "lb"),
  18516. name: "Back",
  18517. image: {
  18518. source: "./media/characters/alluria/back.svg",
  18519. extra: 806 / 738,
  18520. }
  18521. },
  18522. frontMaid: {
  18523. height: math.unit(6, "feet"),
  18524. weight: math.unit(150, "lb"),
  18525. name: "Front (Maid)",
  18526. image: {
  18527. source: "./media/characters/alluria/front-maid.svg",
  18528. extra: 806 / 738,
  18529. bottom: 0.01
  18530. }
  18531. },
  18532. sideMaid: {
  18533. height: math.unit(6, "feet"),
  18534. weight: math.unit(150, "lb"),
  18535. name: "Side (Maid)",
  18536. image: {
  18537. source: "./media/characters/alluria/side-maid.svg",
  18538. extra: 800 / 750,
  18539. bottom: 0.005
  18540. }
  18541. },
  18542. backMaid: {
  18543. height: math.unit(6, "feet"),
  18544. weight: math.unit(150, "lb"),
  18545. name: "Back (Maid)",
  18546. image: {
  18547. source: "./media/characters/alluria/back-maid.svg",
  18548. extra: 806 / 738,
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Micro",
  18555. height: math.unit(6, "inches"),
  18556. default: true
  18557. },
  18558. ]
  18559. ))
  18560. characterMakers.push(() => makeCharacter(
  18561. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18562. {
  18563. front: {
  18564. height: math.unit(6, "feet"),
  18565. weight: math.unit(150, "lb"),
  18566. name: "Front",
  18567. image: {
  18568. source: "./media/characters/kyle/front.svg",
  18569. extra: 1069 / 962,
  18570. bottom: 77.228 / 1727.45
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Macro",
  18577. height: math.unit(150, "feet"),
  18578. default: true
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18584. {
  18585. front: {
  18586. height: math.unit(6, "feet"),
  18587. weight: math.unit(300, "lb"),
  18588. name: "Front",
  18589. image: {
  18590. source: "./media/characters/duncan/front.svg",
  18591. extra: 1650 / 1482,
  18592. bottom: 0.05
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Macro",
  18599. height: math.unit(100, "feet"),
  18600. default: true
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18606. {
  18607. front: {
  18608. height: math.unit(5 + 4 / 12, "feet"),
  18609. weight: math.unit(220, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/memory/front.svg",
  18613. extra: 3641 / 3545,
  18614. bottom: 0.03
  18615. }
  18616. },
  18617. back: {
  18618. height: math.unit(5 + 4 / 12, "feet"),
  18619. weight: math.unit(220, "lb"),
  18620. name: "Back",
  18621. image: {
  18622. source: "./media/characters/memory/back.svg",
  18623. extra: 3641 / 3545,
  18624. bottom: 0.025
  18625. }
  18626. },
  18627. frontSkirt: {
  18628. height: math.unit(5 + 4 / 12, "feet"),
  18629. weight: math.unit(220, "lb"),
  18630. name: "Front (Skirt)",
  18631. image: {
  18632. source: "./media/characters/memory/front-skirt.svg",
  18633. extra: 3641 / 3545,
  18634. bottom: 0.03
  18635. }
  18636. },
  18637. frontDress: {
  18638. height: math.unit(5 + 4 / 12, "feet"),
  18639. weight: math.unit(220, "lb"),
  18640. name: "Front (Dress)",
  18641. image: {
  18642. source: "./media/characters/memory/front-dress.svg",
  18643. extra: 3641 / 3545,
  18644. bottom: 0.03
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Micro",
  18651. height: math.unit(6, "inches"),
  18652. default: true
  18653. },
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(5 + 4 / 12, "feet")
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(4 + 11 / 12, "feet"),
  18665. weight: math.unit(100, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/luno/front.svg",
  18669. extra: 1535 / 1487,
  18670. bottom: 0.03
  18671. }
  18672. },
  18673. },
  18674. [
  18675. {
  18676. name: "Micro",
  18677. height: math.unit(3, "inches")
  18678. },
  18679. {
  18680. name: "Normal",
  18681. height: math.unit(4 + 11 / 12, "feet"),
  18682. default: true
  18683. },
  18684. {
  18685. name: "Macro",
  18686. height: math.unit(300, "feet")
  18687. },
  18688. {
  18689. name: "Megamacro",
  18690. height: math.unit(700, "miles")
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(6 + 2 / 12, "feet"),
  18699. weight: math.unit(170, "lb"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/jamesy/front.svg",
  18703. extra: 440 / 382,
  18704. bottom: 0.005
  18705. }
  18706. },
  18707. },
  18708. [
  18709. {
  18710. name: "Micro",
  18711. height: math.unit(3, "inches")
  18712. },
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(6 + 2 / 12, "feet"),
  18716. default: true
  18717. },
  18718. {
  18719. name: "Macro",
  18720. height: math.unit(300, "feet")
  18721. },
  18722. {
  18723. name: "Megamacro",
  18724. height: math.unit(700, "miles")
  18725. },
  18726. ]
  18727. ))
  18728. characterMakers.push(() => makeCharacter(
  18729. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18730. {
  18731. front: {
  18732. height: math.unit(6, "feet"),
  18733. weight: math.unit(160, "lb"),
  18734. name: "Front",
  18735. image: {
  18736. source: "./media/characters/mark/front.svg",
  18737. extra: 3300 / 3100,
  18738. bottom: 136.42 / 3440.47
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Macro",
  18745. height: math.unit(120, "meters")
  18746. },
  18747. {
  18748. name: "Bigger Macro",
  18749. height: math.unit(350, "meters")
  18750. },
  18751. {
  18752. name: "Megamacro",
  18753. height: math.unit(8, "km"),
  18754. default: true
  18755. },
  18756. {
  18757. name: "Continental",
  18758. height: math.unit(4550, "km")
  18759. },
  18760. {
  18761. name: "Planetary",
  18762. height: math.unit(65000, "km")
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18768. {
  18769. front: {
  18770. height: math.unit(6, "feet"),
  18771. weight: math.unit(400, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/mac/front.svg",
  18775. extra: 1048 / 987.7,
  18776. bottom: 60 / 1107.6,
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Macro",
  18783. height: math.unit(500, "feet"),
  18784. default: true
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(5 + 2 / 12, "feet"),
  18793. weight: math.unit(190, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/bari/front.svg",
  18797. extra: 3156 / 2880,
  18798. bottom: 0.03
  18799. }
  18800. },
  18801. back: {
  18802. height: math.unit(5 + 2 / 12, "feet"),
  18803. weight: math.unit(190, "lb"),
  18804. name: "Back",
  18805. image: {
  18806. source: "./media/characters/bari/back.svg",
  18807. extra: 3260 / 2834,
  18808. bottom: 0.025
  18809. }
  18810. },
  18811. frontPlush: {
  18812. height: math.unit(5 + 2 / 12, "feet"),
  18813. weight: math.unit(190, "lb"),
  18814. name: "Front (Plush)",
  18815. image: {
  18816. source: "./media/characters/bari/front-plush.svg",
  18817. extra: 1112 / 1061,
  18818. bottom: 0.002
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Micro",
  18825. height: math.unit(3, "inches")
  18826. },
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(5 + 2 / 12, "feet"),
  18830. default: true
  18831. },
  18832. {
  18833. name: "Macro",
  18834. height: math.unit(20, "feet")
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18840. {
  18841. front: {
  18842. height: math.unit(6 + 1 / 12, "feet"),
  18843. weight: math.unit(275, "lb"),
  18844. name: "Front",
  18845. image: {
  18846. source: "./media/characters/hunter-misha-raven/front.svg"
  18847. }
  18848. },
  18849. },
  18850. [
  18851. {
  18852. name: "Mortal",
  18853. height: math.unit(6 + 1 / 12, "feet")
  18854. },
  18855. {
  18856. name: "Divine",
  18857. height: math.unit(1.12134e34, "parsecs"),
  18858. default: true
  18859. },
  18860. ]
  18861. ))
  18862. characterMakers.push(() => makeCharacter(
  18863. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18864. {
  18865. front: {
  18866. height: math.unit(6 + 3 / 12, "feet"),
  18867. weight: math.unit(220, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/max-calore/front.svg",
  18871. extra: 1700 / 1648,
  18872. bottom: 0.01
  18873. }
  18874. },
  18875. back: {
  18876. height: math.unit(6 + 3 / 12, "feet"),
  18877. weight: math.unit(220, "lb"),
  18878. name: "Back",
  18879. image: {
  18880. source: "./media/characters/max-calore/back.svg",
  18881. extra: 1700 / 1648,
  18882. bottom: 0.01
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(6 + 3 / 12, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18896. {
  18897. side: {
  18898. height: math.unit(2 + 8 / 12, "feet"),
  18899. weight: math.unit(99, "lb"),
  18900. name: "Side",
  18901. image: {
  18902. source: "./media/characters/aspen/side.svg",
  18903. extra: 152 / 138,
  18904. bottom: 0.032
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(2 + 8 / 12, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18918. {
  18919. side: {
  18920. height: math.unit(3 + 2 / 12, "feet"),
  18921. weight: math.unit(224, "lb"),
  18922. name: "Side",
  18923. image: {
  18924. source: "./media/characters/sheila-feral-wolf/side.svg",
  18925. extra: 179 / 166,
  18926. bottom: 0.03
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(3 + 2 / 12, "feet"),
  18934. default: true
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18940. {
  18941. side: {
  18942. height: math.unit(1 + 9 / 12, "feet"),
  18943. weight: math.unit(38, "lb"),
  18944. name: "Side",
  18945. image: {
  18946. source: "./media/characters/michelle/side.svg",
  18947. extra: 147 / 136.7,
  18948. bottom: 0.03
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(1 + 9 / 12, "feet"),
  18956. default: true
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(1.54, "feet"),
  18965. weight: math.unit(50, "lb"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/nino/front.svg"
  18969. }
  18970. },
  18971. },
  18972. [
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(1.54, "feet"),
  18976. default: true
  18977. },
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18982. {
  18983. front: {
  18984. height: math.unit(1.49, "feet"),
  18985. weight: math.unit(45, "lb"),
  18986. name: "Front",
  18987. image: {
  18988. source: "./media/characters/viola/front.svg"
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Normal",
  18995. height: math.unit(1.49, "feet"),
  18996. default: true
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19002. {
  19003. front: {
  19004. height: math.unit(6 + 5 / 12, "feet"),
  19005. weight: math.unit(580, "lb"),
  19006. name: "Front",
  19007. image: {
  19008. source: "./media/characters/atlas/front.svg",
  19009. extra: 298.5 / 290,
  19010. bottom: 0.015
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(6 + 5 / 12, "feet"),
  19018. default: true
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19024. {
  19025. side: {
  19026. height: math.unit(15.6, "inches"),
  19027. weight: math.unit(10, "lb"),
  19028. name: "Side",
  19029. image: {
  19030. source: "./media/characters/davy/side.svg",
  19031. extra: 200 / 170,
  19032. bottom: 0.01
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(15.6, "inches"),
  19040. default: true
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19046. {
  19047. side: {
  19048. height: math.unit(4 + 8 / 12, "feet"),
  19049. weight: math.unit(166, "lb"),
  19050. name: "Side",
  19051. image: {
  19052. source: "./media/characters/fiona/side.svg",
  19053. extra: 232 / 220,
  19054. bottom: 0.03
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(4 + 8 / 12, "feet"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19068. {
  19069. front: {
  19070. height: math.unit(26, "inches"),
  19071. weight: math.unit(35, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/lyla/front.svg",
  19075. bottom: 0.1
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Normal",
  19082. height: math.unit(3, "feet"),
  19083. default: true
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19089. {
  19090. side: {
  19091. height: math.unit(1.8, "feet"),
  19092. weight: math.unit(44, "lb"),
  19093. name: "Side",
  19094. image: {
  19095. source: "./media/characters/perseus/side.svg",
  19096. bottom: 0.21
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Normal",
  19103. height: math.unit(1.8, "feet"),
  19104. default: true
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19110. {
  19111. side: {
  19112. height: math.unit(4 + 2 / 12, "feet"),
  19113. weight: math.unit(20, "lb"),
  19114. name: "Side",
  19115. image: {
  19116. source: "./media/characters/remus/side.svg"
  19117. }
  19118. },
  19119. },
  19120. [
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(4 + 2 / 12, "feet"),
  19124. default: true
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(4 + 11 / 12, "feet"),
  19133. weight: math.unit(114, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/raf/front.svg",
  19137. extra: 1504/1339,
  19138. bottom: 26/1530
  19139. }
  19140. },
  19141. side: {
  19142. height: math.unit(4 + 11 / 12, "feet"),
  19143. weight: math.unit(114, "lb"),
  19144. name: "Side",
  19145. image: {
  19146. source: "./media/characters/raf/side.svg",
  19147. extra: 1466/1316,
  19148. bottom: 29/1495
  19149. }
  19150. },
  19151. paw: {
  19152. height: math.unit(1.45, "feet"),
  19153. name: "Paw",
  19154. image: {
  19155. source: "./media/characters/raf/paw.svg"
  19156. },
  19157. extraAttributes: {
  19158. "toeSize": {
  19159. name: "Toe Size",
  19160. power: 2,
  19161. type: "area",
  19162. base: math.unit(0.004, "m^2")
  19163. },
  19164. "padSize": {
  19165. name: "Pad Size",
  19166. power: 2,
  19167. type: "area",
  19168. base: math.unit(0.04, "m^2")
  19169. },
  19170. "footSize": {
  19171. name: "Foot Size",
  19172. power: 2,
  19173. type: "area",
  19174. base: math.unit(0.08, "m^2")
  19175. },
  19176. }
  19177. },
  19178. },
  19179. [
  19180. {
  19181. name: "Micro",
  19182. height: math.unit(2, "inches")
  19183. },
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(4 + 11 / 12, "feet"),
  19187. default: true
  19188. },
  19189. {
  19190. name: "Macro",
  19191. height: math.unit(70, "feet")
  19192. },
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19197. {
  19198. front: {
  19199. height: math.unit(1.5, "meters"),
  19200. weight: math.unit(68, "kg"),
  19201. name: "Front",
  19202. image: {
  19203. source: "./media/characters/liam-einarr/front.svg",
  19204. extra: 2822 / 2666
  19205. }
  19206. },
  19207. back: {
  19208. height: math.unit(1.5, "meters"),
  19209. weight: math.unit(68, "kg"),
  19210. name: "Back",
  19211. image: {
  19212. source: "./media/characters/liam-einarr/back.svg",
  19213. extra: 2822 / 2666,
  19214. bottom: 0.015
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(1.5, "meters"),
  19222. default: true
  19223. },
  19224. {
  19225. name: "Macro",
  19226. height: math.unit(150, "meters")
  19227. },
  19228. {
  19229. name: "Megamacro",
  19230. height: math.unit(35, "km")
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(6, "feet"),
  19239. weight: math.unit(75, "kg"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/linda/front.svg",
  19243. extra: 930 / 874,
  19244. bottom: 0.004
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(6, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(6 + 8 / 12, "feet"),
  19261. weight: math.unit(220, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/caylex/front.svg",
  19265. extra: 821 / 772,
  19266. bottom: 0.07
  19267. }
  19268. },
  19269. back: {
  19270. height: math.unit(6 + 8 / 12, "feet"),
  19271. weight: math.unit(220, "lb"),
  19272. name: "Back",
  19273. image: {
  19274. source: "./media/characters/caylex/back.svg",
  19275. extra: 821 / 772,
  19276. bottom: 0.022
  19277. }
  19278. },
  19279. hand: {
  19280. height: math.unit(1.25, "feet"),
  19281. name: "Hand",
  19282. image: {
  19283. source: "./media/characters/caylex/hand.svg"
  19284. }
  19285. },
  19286. foot: {
  19287. height: math.unit(1.6, "feet"),
  19288. name: "Foot",
  19289. image: {
  19290. source: "./media/characters/caylex/foot.svg"
  19291. }
  19292. },
  19293. armored: {
  19294. height: math.unit(6 + 8 / 12, "feet"),
  19295. weight: math.unit(250, "lb"),
  19296. name: "Armored",
  19297. image: {
  19298. source: "./media/characters/caylex/armored.svg",
  19299. extra: 1420 / 1310,
  19300. bottom: 0.045
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(6 + 8 / 12, "feet"),
  19308. default: true
  19309. },
  19310. {
  19311. name: "Normal+",
  19312. height: math.unit(12, "feet")
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19318. {
  19319. front: {
  19320. height: math.unit(7 + 6 / 12, "feet"),
  19321. weight: math.unit(288, "lb"),
  19322. name: "Front",
  19323. image: {
  19324. source: "./media/characters/alana/front.svg",
  19325. extra: 679 / 653,
  19326. bottom: 22.5 / 701
  19327. }
  19328. },
  19329. },
  19330. [
  19331. {
  19332. name: "Normal",
  19333. height: math.unit(7 + 6 / 12, "feet")
  19334. },
  19335. {
  19336. name: "Large",
  19337. height: math.unit(50, "feet")
  19338. },
  19339. {
  19340. name: "Macro",
  19341. height: math.unit(100, "feet"),
  19342. default: true
  19343. },
  19344. {
  19345. name: "Macro+",
  19346. height: math.unit(200, "feet")
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19352. {
  19353. front: {
  19354. height: math.unit(6 + 1 / 12, "feet"),
  19355. weight: math.unit(210, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/hasani/front.svg",
  19359. extra: 244 / 232,
  19360. bottom: 0.01
  19361. }
  19362. },
  19363. back: {
  19364. height: math.unit(6 + 1 / 12, "feet"),
  19365. weight: math.unit(210, "lb"),
  19366. name: "Back",
  19367. image: {
  19368. source: "./media/characters/hasani/back.svg",
  19369. extra: 244 / 232,
  19370. bottom: 0.01
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(6 + 1 / 12, "feet")
  19378. },
  19379. {
  19380. name: "Macro",
  19381. height: math.unit(175, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19388. {
  19389. front: {
  19390. height: math.unit(1.82, "meters"),
  19391. weight: math.unit(140, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/nita/front.svg",
  19395. extra: 2473 / 2363,
  19396. bottom: 0.01
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(1.82, "m")
  19404. },
  19405. {
  19406. name: "Macro",
  19407. height: math.unit(300, "m")
  19408. },
  19409. {
  19410. name: "Mistake Canon",
  19411. height: math.unit(0.5, "miles"),
  19412. default: true
  19413. },
  19414. {
  19415. name: "Big Mistake",
  19416. height: math.unit(13, "miles")
  19417. },
  19418. {
  19419. name: "Playing God",
  19420. height: math.unit(2450, "miles")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(4, "feet"),
  19429. weight: math.unit(120, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/shiriko/front.svg",
  19433. extra: 970/934,
  19434. bottom: 5/975
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(4, "feet"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19448. {
  19449. front: {
  19450. height: math.unit(6, "feet"),
  19451. name: "front",
  19452. image: {
  19453. source: "./media/characters/deja/front.svg",
  19454. extra: 926 / 840,
  19455. bottom: 0.07
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Planck Length",
  19462. height: math.unit(1.6e-35, "meters")
  19463. },
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(30.48, "meters"),
  19467. default: true
  19468. },
  19469. {
  19470. name: "Universal",
  19471. height: math.unit(8.8e26, "meters")
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19477. {
  19478. side: {
  19479. height: math.unit(8, "feet"),
  19480. weight: math.unit(6300, "lb"),
  19481. name: "Side",
  19482. image: {
  19483. source: "./media/characters/anima/side.svg",
  19484. bottom: 0.035
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(8, "feet"),
  19492. default: true
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(8, "feet"),
  19501. weight: math.unit(350, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/bianca/front.svg",
  19505. extra: 234 / 225,
  19506. bottom: 0.03
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(8, "feet"),
  19514. default: true
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19520. {
  19521. front: {
  19522. height: math.unit(11 + 5/12, "feet"),
  19523. weight: math.unit(1200, "lb"),
  19524. name: "Front",
  19525. image: {
  19526. source: "./media/characters/adinia/front.svg",
  19527. extra: 1767/1641,
  19528. bottom: 44/1811
  19529. },
  19530. extraAttributes: {
  19531. "energyIntake": {
  19532. name: "Energy Intake",
  19533. power: 3,
  19534. type: "energy",
  19535. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19536. },
  19537. }
  19538. },
  19539. back: {
  19540. height: math.unit(11 + 5/12, "feet"),
  19541. weight: math.unit(1200, "lb"),
  19542. name: "Back",
  19543. image: {
  19544. source: "./media/characters/adinia/back.svg",
  19545. extra: 1834/1684,
  19546. bottom: 14/1848
  19547. },
  19548. extraAttributes: {
  19549. "energyIntake": {
  19550. name: "Energy Intake",
  19551. power: 3,
  19552. type: "energy",
  19553. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19554. },
  19555. }
  19556. },
  19557. maw: {
  19558. height: math.unit(3.79, "feet"),
  19559. name: "Maw",
  19560. image: {
  19561. source: "./media/characters/adinia/maw.svg"
  19562. }
  19563. },
  19564. rump: {
  19565. height: math.unit(4.6, "feet"),
  19566. name: "Rump",
  19567. image: {
  19568. source: "./media/characters/adinia/rump.svg"
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(11 + 5 / 12, "feet"),
  19576. default: true
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(3, "meters"),
  19585. weight: math.unit(200, "kg"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/lykasa/front.svg",
  19589. extra: 1076 / 976,
  19590. bottom: 0.06
  19591. }
  19592. },
  19593. },
  19594. [
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(3, "meters")
  19598. },
  19599. {
  19600. name: "Kaiju",
  19601. height: math.unit(120, "meters"),
  19602. default: true
  19603. },
  19604. {
  19605. name: "Mega Kaiju",
  19606. height: math.unit(240, "km")
  19607. },
  19608. {
  19609. name: "Giga Kaiju",
  19610. height: math.unit(400, "megameters")
  19611. },
  19612. {
  19613. name: "Tera Kaiju",
  19614. height: math.unit(800, "gigameters")
  19615. },
  19616. {
  19617. name: "Kaiju Dragon Goddess",
  19618. height: math.unit(26, "zettaparsecs")
  19619. },
  19620. ]
  19621. ))
  19622. characterMakers.push(() => makeCharacter(
  19623. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19624. {
  19625. side: {
  19626. height: math.unit(283 / 124 * 6, "feet"),
  19627. weight: math.unit(35000, "lb"),
  19628. name: "Side",
  19629. image: {
  19630. source: "./media/characters/malfaren/side.svg",
  19631. extra: 1310/529,
  19632. bottom: 24/1334
  19633. }
  19634. },
  19635. front: {
  19636. height: math.unit(22.36, "feet"),
  19637. weight: math.unit(35000, "lb"),
  19638. name: "Front",
  19639. image: {
  19640. source: "./media/characters/malfaren/front.svg",
  19641. extra: 1237/1115,
  19642. bottom: 32/1269
  19643. }
  19644. },
  19645. maw: {
  19646. height: math.unit(6.9, "feet"),
  19647. name: "Maw",
  19648. image: {
  19649. source: "./media/characters/malfaren/maw.svg"
  19650. }
  19651. },
  19652. dick: {
  19653. height: math.unit(6.19, "feet"),
  19654. name: "Dick",
  19655. image: {
  19656. source: "./media/characters/malfaren/dick.svg"
  19657. }
  19658. },
  19659. eye: {
  19660. height: math.unit(0.69, "feet"),
  19661. name: "Eye",
  19662. image: {
  19663. source: "./media/characters/malfaren/eye.svg"
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Big",
  19670. height: math.unit(283 / 162 * 6, "feet"),
  19671. },
  19672. {
  19673. name: "Bigger",
  19674. height: math.unit(283 / 124 * 6, "feet")
  19675. },
  19676. {
  19677. name: "Massive",
  19678. height: math.unit(283 / 92 * 6, "feet"),
  19679. default: true
  19680. },
  19681. {
  19682. name: "👀💦",
  19683. height: math.unit(283 / 73 * 6, "feet"),
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19689. {
  19690. front: {
  19691. height: math.unit(1.7, "m"),
  19692. weight: math.unit(70, "kg"),
  19693. name: "Front",
  19694. image: {
  19695. source: "./media/characters/kernel/front.svg",
  19696. extra: 1960/1821,
  19697. bottom: 17/1977
  19698. }
  19699. },
  19700. },
  19701. [
  19702. {
  19703. name: "Nano",
  19704. height: math.unit(17, "micrometers")
  19705. },
  19706. {
  19707. name: "Micro",
  19708. height: math.unit(1.7, "mm")
  19709. },
  19710. {
  19711. name: "Small",
  19712. height: math.unit(1.7, "cm")
  19713. },
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(1.7, "m"),
  19717. default: true
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19723. {
  19724. front: {
  19725. height: math.unit(1.75, "meters"),
  19726. weight: math.unit(65, "kg"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/jayne-folest/front.svg",
  19730. extra: 2115 / 2007,
  19731. bottom: 0.02
  19732. }
  19733. },
  19734. back: {
  19735. height: math.unit(1.75, "meters"),
  19736. weight: math.unit(65, "kg"),
  19737. name: "Back",
  19738. image: {
  19739. source: "./media/characters/jayne-folest/back.svg",
  19740. extra: 2115 / 2007,
  19741. bottom: 0.005
  19742. }
  19743. },
  19744. frontClothed: {
  19745. height: math.unit(1.75, "meters"),
  19746. weight: math.unit(65, "kg"),
  19747. name: "Front (Clothed)",
  19748. image: {
  19749. source: "./media/characters/jayne-folest/front-clothed.svg",
  19750. extra: 2115 / 2007,
  19751. bottom: 0.035
  19752. }
  19753. },
  19754. hand: {
  19755. height: math.unit(1 / 1.260, "feet"),
  19756. name: "Hand",
  19757. image: {
  19758. source: "./media/characters/jayne-folest/hand.svg"
  19759. }
  19760. },
  19761. foot: {
  19762. height: math.unit(1 / 0.918, "feet"),
  19763. name: "Foot",
  19764. image: {
  19765. source: "./media/characters/jayne-folest/foot.svg"
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Micro",
  19772. height: math.unit(4, "cm")
  19773. },
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(1.75, "meters")
  19777. },
  19778. {
  19779. name: "Macro",
  19780. height: math.unit(47.5, "meters"),
  19781. default: true
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(180, "cm"),
  19790. weight: math.unit(70, "kg"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/algier/front.svg",
  19794. extra: 596 / 572,
  19795. bottom: 0.04
  19796. }
  19797. },
  19798. back: {
  19799. height: math.unit(180, "cm"),
  19800. weight: math.unit(70, "kg"),
  19801. name: "Back",
  19802. image: {
  19803. source: "./media/characters/algier/back.svg",
  19804. extra: 596 / 572,
  19805. bottom: 0.025
  19806. }
  19807. },
  19808. frontdressed: {
  19809. height: math.unit(180, "cm"),
  19810. weight: math.unit(150, "kg"),
  19811. name: "Front-dressed",
  19812. image: {
  19813. source: "./media/characters/algier/front-dressed.svg",
  19814. extra: 596 / 572,
  19815. bottom: 0.038
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Micro",
  19822. height: math.unit(5, "cm")
  19823. },
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(180, "cm"),
  19827. default: true
  19828. },
  19829. {
  19830. name: "Macro",
  19831. height: math.unit(64, "m")
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19837. {
  19838. upright: {
  19839. height: math.unit(7, "feet"),
  19840. weight: math.unit(300, "lb"),
  19841. name: "Upright",
  19842. image: {
  19843. source: "./media/characters/pretzel/upright.svg",
  19844. extra: 534 / 522,
  19845. bottom: 0.065
  19846. }
  19847. },
  19848. sprawling: {
  19849. height: math.unit(3.75, "feet"),
  19850. weight: math.unit(300, "lb"),
  19851. name: "Sprawling",
  19852. image: {
  19853. source: "./media/characters/pretzel/sprawling.svg",
  19854. extra: 314 / 281,
  19855. bottom: 0.1
  19856. }
  19857. },
  19858. tongue: {
  19859. height: math.unit(2, "feet"),
  19860. name: "Tongue",
  19861. image: {
  19862. source: "./media/characters/pretzel/tongue.svg"
  19863. }
  19864. },
  19865. },
  19866. [
  19867. {
  19868. name: "Normal",
  19869. height: math.unit(7, "feet"),
  19870. default: true
  19871. },
  19872. {
  19873. name: "Oversized",
  19874. height: math.unit(15, "feet")
  19875. },
  19876. {
  19877. name: "Huge",
  19878. height: math.unit(30, "feet")
  19879. },
  19880. {
  19881. name: "Macro",
  19882. height: math.unit(250, "feet")
  19883. },
  19884. ]
  19885. ))
  19886. characterMakers.push(() => makeCharacter(
  19887. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19888. {
  19889. sideFront: {
  19890. height: math.unit(5 + 2 / 12, "feet"),
  19891. weight: math.unit(120, "lb"),
  19892. name: "Front Side",
  19893. image: {
  19894. source: "./media/characters/roxi/side-front.svg",
  19895. extra: 2924 / 2717,
  19896. bottom: 0.08
  19897. }
  19898. },
  19899. sideBack: {
  19900. height: math.unit(5 + 2 / 12, "feet"),
  19901. weight: math.unit(120, "lb"),
  19902. name: "Back Side",
  19903. image: {
  19904. source: "./media/characters/roxi/side-back.svg",
  19905. extra: 2904 / 2693,
  19906. bottom: 0.06
  19907. }
  19908. },
  19909. front: {
  19910. height: math.unit(5 + 2 / 12, "feet"),
  19911. weight: math.unit(120, "lb"),
  19912. name: "Front",
  19913. image: {
  19914. source: "./media/characters/roxi/front.svg",
  19915. extra: 2028 / 1907,
  19916. bottom: 0.01
  19917. }
  19918. },
  19919. frontAlt: {
  19920. height: math.unit(5 + 2 / 12, "feet"),
  19921. weight: math.unit(120, "lb"),
  19922. name: "Front (Alt)",
  19923. image: {
  19924. source: "./media/characters/roxi/front-alt.svg",
  19925. extra: 1828 / 1798,
  19926. bottom: 0.01
  19927. }
  19928. },
  19929. sitting: {
  19930. height: math.unit(2.8, "feet"),
  19931. weight: math.unit(120, "lb"),
  19932. name: "Sitting",
  19933. image: {
  19934. source: "./media/characters/roxi/sitting.svg",
  19935. extra: 2660 / 2462,
  19936. bottom: 0.1
  19937. }
  19938. },
  19939. },
  19940. [
  19941. {
  19942. name: "Normal",
  19943. height: math.unit(5 + 2 / 12, "feet"),
  19944. default: true
  19945. },
  19946. ]
  19947. ))
  19948. characterMakers.push(() => makeCharacter(
  19949. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19950. {
  19951. side: {
  19952. height: math.unit(55, "feet"),
  19953. weight: math.unit(153, "tons"),
  19954. name: "Side",
  19955. image: {
  19956. source: "./media/characters/shadow/side.svg",
  19957. extra: 701 / 628,
  19958. bottom: 0.02
  19959. }
  19960. },
  19961. flying: {
  19962. height: math.unit(145, "feet"),
  19963. weight: math.unit(153, "tons"),
  19964. name: "Flying",
  19965. image: {
  19966. source: "./media/characters/shadow/flying.svg"
  19967. }
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Normal",
  19973. height: math.unit(55, "feet"),
  19974. default: true
  19975. },
  19976. ]
  19977. ))
  19978. characterMakers.push(() => makeCharacter(
  19979. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19980. {
  19981. front: {
  19982. height: math.unit(6, "feet"),
  19983. weight: math.unit(200, "lb"),
  19984. name: "Front",
  19985. image: {
  19986. source: "./media/characters/marcie/front.svg",
  19987. extra: 960 / 876,
  19988. bottom: 58 / 1017.87
  19989. }
  19990. },
  19991. },
  19992. [
  19993. {
  19994. name: "Macro",
  19995. height: math.unit(1, "mile"),
  19996. default: true
  19997. },
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20002. {
  20003. front: {
  20004. height: math.unit(7, "feet"),
  20005. weight: math.unit(200, "lb"),
  20006. name: "Front",
  20007. image: {
  20008. source: "./media/characters/kachina/front.svg",
  20009. extra: 1290.68 / 1119,
  20010. bottom: 36.5 / 1327.18
  20011. }
  20012. },
  20013. },
  20014. [
  20015. {
  20016. name: "Normal",
  20017. height: math.unit(7, "feet"),
  20018. default: true
  20019. },
  20020. ]
  20021. ))
  20022. characterMakers.push(() => makeCharacter(
  20023. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20024. {
  20025. looking: {
  20026. height: math.unit(2, "meters"),
  20027. weight: math.unit(300, "kg"),
  20028. name: "Looking",
  20029. image: {
  20030. source: "./media/characters/kash/looking.svg",
  20031. extra: 474 / 344,
  20032. bottom: 0.03
  20033. }
  20034. },
  20035. side: {
  20036. height: math.unit(2, "meters"),
  20037. weight: math.unit(300, "kg"),
  20038. name: "Side",
  20039. image: {
  20040. source: "./media/characters/kash/side.svg",
  20041. extra: 302 / 251,
  20042. bottom: 0.03
  20043. }
  20044. },
  20045. front: {
  20046. height: math.unit(2, "meters"),
  20047. weight: math.unit(300, "kg"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/kash/front.svg",
  20051. extra: 495 / 360,
  20052. bottom: 0.015
  20053. }
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Normal",
  20059. height: math.unit(2, "meters"),
  20060. default: true
  20061. },
  20062. {
  20063. name: "Big",
  20064. height: math.unit(3, "meters")
  20065. },
  20066. {
  20067. name: "Large",
  20068. height: math.unit(5, "meters")
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20074. {
  20075. feeding: {
  20076. height: math.unit(6.7, "feet"),
  20077. weight: math.unit(350, "lb"),
  20078. name: "Feeding",
  20079. image: {
  20080. source: "./media/characters/lalim/feeding.svg",
  20081. }
  20082. },
  20083. },
  20084. [
  20085. {
  20086. name: "Normal",
  20087. height: math.unit(6.7, "feet"),
  20088. default: true
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20094. {
  20095. front: {
  20096. height: math.unit(9.5, "feet"),
  20097. weight: math.unit(600, "lb"),
  20098. name: "Front",
  20099. image: {
  20100. source: "./media/characters/de'vout/front.svg",
  20101. extra: 1443 / 1328,
  20102. bottom: 0.025
  20103. }
  20104. },
  20105. back: {
  20106. height: math.unit(9.5, "feet"),
  20107. weight: math.unit(600, "lb"),
  20108. name: "Back",
  20109. image: {
  20110. source: "./media/characters/de'vout/back.svg",
  20111. extra: 1443 / 1328
  20112. }
  20113. },
  20114. frontDressed: {
  20115. height: math.unit(9.5, "feet"),
  20116. weight: math.unit(600, "lb"),
  20117. name: "Front (Dressed",
  20118. image: {
  20119. source: "./media/characters/de'vout/front-dressed.svg",
  20120. extra: 1443 / 1328,
  20121. bottom: 0.025
  20122. }
  20123. },
  20124. backDressed: {
  20125. height: math.unit(9.5, "feet"),
  20126. weight: math.unit(600, "lb"),
  20127. name: "Back (Dressed",
  20128. image: {
  20129. source: "./media/characters/de'vout/back-dressed.svg",
  20130. extra: 1443 / 1328
  20131. }
  20132. },
  20133. },
  20134. [
  20135. {
  20136. name: "Normal",
  20137. height: math.unit(9.5, "feet"),
  20138. default: true
  20139. },
  20140. ]
  20141. ))
  20142. characterMakers.push(() => makeCharacter(
  20143. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20144. {
  20145. front: {
  20146. height: math.unit(8, "feet"),
  20147. weight: math.unit(225, "lb"),
  20148. name: "Front",
  20149. image: {
  20150. source: "./media/characters/talana/front.svg",
  20151. extra: 1410 / 1300,
  20152. bottom: 0.015
  20153. }
  20154. },
  20155. frontDressed: {
  20156. height: math.unit(8, "feet"),
  20157. weight: math.unit(225, "lb"),
  20158. name: "Front (Dressed",
  20159. image: {
  20160. source: "./media/characters/talana/front-dressed.svg",
  20161. extra: 1410 / 1300,
  20162. bottom: 0.015
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(8, "feet"),
  20170. default: true
  20171. },
  20172. ]
  20173. ))
  20174. characterMakers.push(() => makeCharacter(
  20175. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20176. {
  20177. side: {
  20178. height: math.unit(7.2, "feet"),
  20179. weight: math.unit(150, "lb"),
  20180. name: "Side",
  20181. image: {
  20182. source: "./media/characters/xeauvok/side.svg",
  20183. extra: 1975 / 1523,
  20184. bottom: 0.07
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Normal",
  20191. height: math.unit(7.2, "feet"),
  20192. default: true
  20193. },
  20194. ]
  20195. ))
  20196. characterMakers.push(() => makeCharacter(
  20197. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20198. {
  20199. side: {
  20200. height: math.unit(4, "meters"),
  20201. weight: math.unit(2200, "kg"),
  20202. name: "Side",
  20203. image: {
  20204. source: "./media/characters/zara/side.svg",
  20205. extra: 765/744,
  20206. bottom: 156/921
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Normal",
  20213. height: math.unit(4, "meters"),
  20214. default: true
  20215. },
  20216. ]
  20217. ))
  20218. characterMakers.push(() => makeCharacter(
  20219. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20220. {
  20221. side: {
  20222. height: math.unit(6, "feet"),
  20223. weight: math.unit(150, "lb"),
  20224. name: "Side",
  20225. image: {
  20226. source: "./media/characters/richard-dragon/side.svg",
  20227. extra: 845 / 340,
  20228. bottom: 0.017
  20229. }
  20230. },
  20231. maw: {
  20232. height: math.unit(2.97, "feet"),
  20233. name: "Maw",
  20234. image: {
  20235. source: "./media/characters/richard-dragon/maw.svg"
  20236. }
  20237. },
  20238. },
  20239. [
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(4, "feet"),
  20247. weight: math.unit(100, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/richard-smeargle/front.svg",
  20251. extra: 2952 / 2820,
  20252. bottom: 0.028
  20253. }
  20254. },
  20255. },
  20256. [
  20257. {
  20258. name: "Normal",
  20259. height: math.unit(4, "feet"),
  20260. default: true
  20261. },
  20262. {
  20263. name: "Dynamax",
  20264. height: math.unit(20, "meters")
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20270. {
  20271. front: {
  20272. height: math.unit(6, "feet"),
  20273. weight: math.unit(110, "lb"),
  20274. name: "Front",
  20275. image: {
  20276. source: "./media/characters/klay/front.svg",
  20277. extra: 962 / 883,
  20278. bottom: 0.04
  20279. }
  20280. },
  20281. back: {
  20282. height: math.unit(6, "feet"),
  20283. weight: math.unit(110, "lb"),
  20284. name: "Back",
  20285. image: {
  20286. source: "./media/characters/klay/back.svg",
  20287. extra: 962 / 883
  20288. }
  20289. },
  20290. beans: {
  20291. height: math.unit(1.15, "feet"),
  20292. name: "Beans",
  20293. image: {
  20294. source: "./media/characters/klay/beans.svg"
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Micro",
  20301. height: math.unit(6, "inches")
  20302. },
  20303. {
  20304. name: "Mini",
  20305. height: math.unit(3, "feet")
  20306. },
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(6, "feet"),
  20310. default: true
  20311. },
  20312. {
  20313. name: "Big",
  20314. height: math.unit(25, "feet")
  20315. },
  20316. {
  20317. name: "Macro",
  20318. height: math.unit(100, "feet")
  20319. },
  20320. {
  20321. name: "Megamacro",
  20322. height: math.unit(400, "feet")
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20328. {
  20329. front: {
  20330. height: math.unit(6, "feet"),
  20331. weight: math.unit(160, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/marcus/front.svg",
  20335. extra: 734 / 676,
  20336. bottom: 0.03
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "Little",
  20343. height: math.unit(6, "feet")
  20344. },
  20345. {
  20346. name: "Normal",
  20347. height: math.unit(110, "feet"),
  20348. default: true
  20349. },
  20350. {
  20351. name: "Macro",
  20352. height: math.unit(250, "feet")
  20353. },
  20354. {
  20355. name: "Megamacro",
  20356. height: math.unit(1000, "feet")
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20362. {
  20363. front: {
  20364. height: math.unit(7, "feet"),
  20365. weight: math.unit(275, "lb"),
  20366. name: "Front",
  20367. image: {
  20368. source: "./media/characters/claude-delroute/front.svg",
  20369. extra: 902/827,
  20370. bottom: 26/928
  20371. }
  20372. },
  20373. side: {
  20374. height: math.unit(7, "feet"),
  20375. weight: math.unit(275, "lb"),
  20376. name: "Side",
  20377. image: {
  20378. source: "./media/characters/claude-delroute/side.svg",
  20379. extra: 908/853,
  20380. bottom: 16/924
  20381. }
  20382. },
  20383. back: {
  20384. height: math.unit(7, "feet"),
  20385. weight: math.unit(275, "lb"),
  20386. name: "Back",
  20387. image: {
  20388. source: "./media/characters/claude-delroute/back.svg",
  20389. extra: 911/829,
  20390. bottom: 18/929
  20391. }
  20392. },
  20393. maw: {
  20394. height: math.unit(0.6407, "meters"),
  20395. name: "Maw",
  20396. image: {
  20397. source: "./media/characters/claude-delroute/maw.svg"
  20398. }
  20399. },
  20400. },
  20401. [
  20402. {
  20403. name: "Normal",
  20404. height: math.unit(7, "feet"),
  20405. default: true
  20406. },
  20407. {
  20408. name: "Lorge",
  20409. height: math.unit(20, "feet")
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20415. {
  20416. front: {
  20417. height: math.unit(8 + 4 / 12, "feet"),
  20418. weight: math.unit(600, "lb"),
  20419. name: "Front",
  20420. image: {
  20421. source: "./media/characters/dragonien/front.svg",
  20422. extra: 100 / 94,
  20423. bottom: 3.3 / 103.3445
  20424. }
  20425. },
  20426. back: {
  20427. height: math.unit(8 + 4 / 12, "feet"),
  20428. weight: math.unit(600, "lb"),
  20429. name: "Back",
  20430. image: {
  20431. source: "./media/characters/dragonien/back.svg",
  20432. extra: 776 / 746,
  20433. bottom: 6.4 / 782.0616
  20434. }
  20435. },
  20436. foot: {
  20437. height: math.unit(1.54, "feet"),
  20438. name: "Foot",
  20439. image: {
  20440. source: "./media/characters/dragonien/foot.svg",
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(8 + 4 / 12, "feet"),
  20448. default: true
  20449. },
  20450. {
  20451. name: "Macro",
  20452. height: math.unit(200, "feet")
  20453. },
  20454. {
  20455. name: "Megamacro",
  20456. height: math.unit(1, "mile")
  20457. },
  20458. {
  20459. name: "Gigamacro",
  20460. height: math.unit(1000, "miles")
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20466. {
  20467. front: {
  20468. height: math.unit(5 + 2 / 12, "feet"),
  20469. weight: math.unit(110, "lb"),
  20470. name: "Front",
  20471. image: {
  20472. source: "./media/characters/desta/front.svg",
  20473. extra: 767 / 726,
  20474. bottom: 11.7 / 779
  20475. }
  20476. },
  20477. back: {
  20478. height: math.unit(5 + 2 / 12, "feet"),
  20479. weight: math.unit(110, "lb"),
  20480. name: "Back",
  20481. image: {
  20482. source: "./media/characters/desta/back.svg",
  20483. extra: 777 / 728,
  20484. bottom: 6 / 784
  20485. }
  20486. },
  20487. frontAlt: {
  20488. height: math.unit(5 + 2 / 12, "feet"),
  20489. weight: math.unit(110, "lb"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/desta/front-alt.svg",
  20493. extra: 1482 / 1417
  20494. }
  20495. },
  20496. side: {
  20497. height: math.unit(5 + 2 / 12, "feet"),
  20498. weight: math.unit(110, "lb"),
  20499. name: "Side",
  20500. image: {
  20501. source: "./media/characters/desta/side.svg",
  20502. extra: 2579 / 2491,
  20503. bottom: 0.053
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Micro",
  20510. height: math.unit(6, "inches")
  20511. },
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(5 + 2 / 12, "feet"),
  20515. default: true
  20516. },
  20517. {
  20518. name: "Macro",
  20519. height: math.unit(62, "feet")
  20520. },
  20521. {
  20522. name: "Megamacro",
  20523. height: math.unit(1800, "feet")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(10, "feet"),
  20532. weight: math.unit(700, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/storm-alystar/front.svg",
  20536. extra: 2112 / 1898,
  20537. bottom: 0.034
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Micro",
  20544. height: math.unit(3.5, "inches")
  20545. },
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(10, "feet"),
  20549. default: true
  20550. },
  20551. {
  20552. name: "Macro",
  20553. height: math.unit(400, "feet")
  20554. },
  20555. {
  20556. name: "Deific",
  20557. height: math.unit(60, "miles")
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(2.35, "meters"),
  20566. weight: math.unit(119, "kg"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/ilia/front.svg",
  20570. extra: 1285 / 1255,
  20571. bottom: 0.06
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(2.35, "meters")
  20579. },
  20580. {
  20581. name: "Macro",
  20582. height: math.unit(140, "meters"),
  20583. default: true
  20584. },
  20585. {
  20586. name: "Megamacro",
  20587. height: math.unit(100, "miles")
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(6 + 5 / 12, "feet"),
  20596. weight: math.unit(190, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/kingdead/front.svg",
  20600. extra: 1228 / 1177
  20601. }
  20602. },
  20603. },
  20604. [
  20605. {
  20606. name: "Micro",
  20607. height: math.unit(7, "inches")
  20608. },
  20609. {
  20610. name: "Normal",
  20611. height: math.unit(6 + 5 / 12, "feet")
  20612. },
  20613. {
  20614. name: "Macro",
  20615. height: math.unit(150, "feet"),
  20616. default: true
  20617. },
  20618. {
  20619. name: "Megamacro",
  20620. height: math.unit(200, "miles")
  20621. },
  20622. ]
  20623. ))
  20624. characterMakers.push(() => makeCharacter(
  20625. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20626. {
  20627. front: {
  20628. height: math.unit(8, "feet"),
  20629. weight: math.unit(600, "lb"),
  20630. name: "Front",
  20631. image: {
  20632. source: "./media/characters/kyrehx/front.svg",
  20633. extra: 1195 / 1095,
  20634. bottom: 0.034
  20635. }
  20636. },
  20637. },
  20638. [
  20639. {
  20640. name: "Micro",
  20641. height: math.unit(2, "inches")
  20642. },
  20643. {
  20644. name: "Normal",
  20645. height: math.unit(8, "feet"),
  20646. default: true
  20647. },
  20648. {
  20649. name: "Macro",
  20650. height: math.unit(255, "feet")
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20656. {
  20657. front: {
  20658. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20659. weight: math.unit(184, "lb"),
  20660. name: "Front",
  20661. image: {
  20662. source: "./media/characters/xang/front.svg",
  20663. extra: 845 / 755
  20664. }
  20665. },
  20666. },
  20667. [
  20668. {
  20669. name: "Normal",
  20670. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20671. default: true
  20672. },
  20673. {
  20674. name: "Macro",
  20675. height: math.unit(0.935 * 146, "feet")
  20676. },
  20677. {
  20678. name: "Megamacro",
  20679. height: math.unit(0.935 * 3, "miles")
  20680. },
  20681. ]
  20682. ))
  20683. characterMakers.push(() => makeCharacter(
  20684. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20685. {
  20686. frontDressed: {
  20687. height: math.unit(5 + 7 / 12, "feet"),
  20688. weight: math.unit(140, "lb"),
  20689. name: "Front (Dressed)",
  20690. image: {
  20691. source: "./media/characters/doc-weardno/front-dressed.svg",
  20692. extra: 263 / 234
  20693. }
  20694. },
  20695. backDressed: {
  20696. height: math.unit(5 + 7 / 12, "feet"),
  20697. weight: math.unit(140, "lb"),
  20698. name: "Back (Dressed)",
  20699. image: {
  20700. source: "./media/characters/doc-weardno/back-dressed.svg",
  20701. extra: 266 / 238
  20702. }
  20703. },
  20704. front: {
  20705. height: math.unit(5 + 7 / 12, "feet"),
  20706. weight: math.unit(140, "lb"),
  20707. name: "Front",
  20708. image: {
  20709. source: "./media/characters/doc-weardno/front.svg",
  20710. extra: 254 / 233
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Micro",
  20717. height: math.unit(3, "inches")
  20718. },
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(5 + 7 / 12, "feet"),
  20722. default: true
  20723. },
  20724. {
  20725. name: "Macro",
  20726. height: math.unit(25, "feet")
  20727. },
  20728. {
  20729. name: "Megamacro",
  20730. height: math.unit(2, "miles")
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(6 + 2 / 12, "feet"),
  20739. weight: math.unit(153, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/seth-whilst/front.svg",
  20743. bottom: 0.07
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Micro",
  20750. height: math.unit(5, "inches")
  20751. },
  20752. {
  20753. name: "Normal",
  20754. height: math.unit(6 + 2 / 12, "feet"),
  20755. default: true
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20761. {
  20762. front: {
  20763. height: math.unit(3, "inches"),
  20764. weight: math.unit(8, "grams"),
  20765. name: "Front",
  20766. image: {
  20767. source: "./media/characters/pocket-jabari/front.svg",
  20768. extra: 1024 / 974,
  20769. bottom: 0.039
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Minimicro",
  20776. height: math.unit(8, "mm")
  20777. },
  20778. {
  20779. name: "Micro",
  20780. height: math.unit(3, "inches"),
  20781. default: true
  20782. },
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(3, "feet")
  20786. },
  20787. ]
  20788. ))
  20789. characterMakers.push(() => makeCharacter(
  20790. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20791. {
  20792. frontDressed: {
  20793. height: math.unit(15, "feet"),
  20794. weight: math.unit(3280, "lb"),
  20795. name: "Front (Dressed)",
  20796. image: {
  20797. source: "./media/characters/sapphy/front-dressed.svg",
  20798. extra: 1951/1654,
  20799. bottom: 194/2145
  20800. },
  20801. form: "anthro",
  20802. default: true
  20803. },
  20804. backDressed: {
  20805. height: math.unit(15, "feet"),
  20806. weight: math.unit(3280, "lb"),
  20807. name: "Back (Dressed)",
  20808. image: {
  20809. source: "./media/characters/sapphy/back-dressed.svg",
  20810. extra: 2058/1918,
  20811. bottom: 125/2183
  20812. },
  20813. form: "anthro"
  20814. },
  20815. frontNude: {
  20816. height: math.unit(15, "feet"),
  20817. weight: math.unit(3280, "lb"),
  20818. name: "Front (Nude)",
  20819. image: {
  20820. source: "./media/characters/sapphy/front-nude.svg",
  20821. extra: 1951/1654,
  20822. bottom: 194/2145
  20823. },
  20824. form: "anthro"
  20825. },
  20826. backNude: {
  20827. height: math.unit(15, "feet"),
  20828. weight: math.unit(3280, "lb"),
  20829. name: "Back (Nude)",
  20830. image: {
  20831. source: "./media/characters/sapphy/back-nude.svg",
  20832. extra: 2058/1918,
  20833. bottom: 125/2183
  20834. },
  20835. form: "anthro"
  20836. },
  20837. full: {
  20838. height: math.unit(15, "feet"),
  20839. weight: math.unit(3280, "lb"),
  20840. name: "Full",
  20841. image: {
  20842. source: "./media/characters/sapphy/full.svg",
  20843. extra: 1396/1317,
  20844. bottom: 44/1440
  20845. },
  20846. form: "anthro"
  20847. },
  20848. dick: {
  20849. height: math.unit(3.8, "feet"),
  20850. name: "Dick",
  20851. image: {
  20852. source: "./media/characters/sapphy/dick.svg"
  20853. },
  20854. form: "anthro"
  20855. },
  20856. feral: {
  20857. height: math.unit(35, "feet"),
  20858. weight: math.unit(160, "tons"),
  20859. name: "Feral",
  20860. image: {
  20861. source: "./media/characters/sapphy/feral.svg",
  20862. extra: 1050/573,
  20863. bottom: 60/1110
  20864. },
  20865. form: "feral",
  20866. default: true
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(15, "feet"),
  20873. form: "anthro"
  20874. },
  20875. {
  20876. name: "Casual Macro",
  20877. height: math.unit(120, "feet"),
  20878. form: "anthro"
  20879. },
  20880. {
  20881. name: "Macro",
  20882. height: math.unit(2150, "feet"),
  20883. default: true,
  20884. form: "anthro"
  20885. },
  20886. {
  20887. name: "Megamacro",
  20888. height: math.unit(8, "miles"),
  20889. form: "anthro"
  20890. },
  20891. {
  20892. name: "Galaxy Mom",
  20893. height: math.unit(6, "megalightyears"),
  20894. form: "anthro"
  20895. },
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(35, "feet"),
  20899. form: "feral",
  20900. default: true
  20901. },
  20902. {
  20903. name: "Macro",
  20904. height: math.unit(300, "feet"),
  20905. form: "feral"
  20906. },
  20907. {
  20908. name: "Galaxy Mom",
  20909. height: math.unit(10, "megalightyears"),
  20910. form: "feral"
  20911. },
  20912. ],
  20913. {
  20914. "anthro": {
  20915. name: "Anthro",
  20916. default: true
  20917. },
  20918. "feral": {
  20919. name: "Feral"
  20920. }
  20921. }
  20922. ))
  20923. characterMakers.push(() => makeCharacter(
  20924. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20925. {
  20926. hyenaFront: {
  20927. height: math.unit(6, "feet"),
  20928. weight: math.unit(190, "lb"),
  20929. name: "Front",
  20930. image: {
  20931. source: "./media/characters/kiro/hyena-front.svg",
  20932. extra: 927/839,
  20933. bottom: 91/1018
  20934. },
  20935. form: "hyena",
  20936. default: true
  20937. },
  20938. front: {
  20939. height: math.unit(6, "feet"),
  20940. weight: math.unit(170, "lb"),
  20941. name: "Front",
  20942. image: {
  20943. source: "./media/characters/kiro/front.svg",
  20944. extra: 1064 / 1012,
  20945. bottom: 0.052
  20946. },
  20947. form: "folf",
  20948. default: true
  20949. },
  20950. },
  20951. [
  20952. {
  20953. name: "Micro",
  20954. height: math.unit(6, "inches"),
  20955. form: "folf"
  20956. },
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(6, "feet"),
  20960. form: "folf",
  20961. default: true
  20962. },
  20963. {
  20964. name: "Macro",
  20965. height: math.unit(72, "feet"),
  20966. form: "folf"
  20967. },
  20968. {
  20969. name: "Micro",
  20970. height: math.unit(6, "inches"),
  20971. form: "hyena"
  20972. },
  20973. {
  20974. name: "Normal",
  20975. height: math.unit(6, "feet"),
  20976. form: "hyena",
  20977. default: true
  20978. },
  20979. {
  20980. name: "Macro",
  20981. height: math.unit(72, "feet"),
  20982. form: "hyena"
  20983. },
  20984. ],
  20985. {
  20986. "hyena": {
  20987. name: "Hyena",
  20988. default: true
  20989. },
  20990. "folf": {
  20991. name: "Folf",
  20992. },
  20993. }
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20997. {
  20998. front: {
  20999. height: math.unit(5 + 9 / 12, "feet"),
  21000. weight: math.unit(175, "lb"),
  21001. name: "Front",
  21002. image: {
  21003. source: "./media/characters/irishfox/front.svg",
  21004. extra: 1912 / 1680,
  21005. bottom: 0.02
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Nano",
  21012. height: math.unit(1, "mm")
  21013. },
  21014. {
  21015. name: "Micro",
  21016. height: math.unit(2, "inches")
  21017. },
  21018. {
  21019. name: "Normal",
  21020. height: math.unit(5 + 9 / 12, "feet"),
  21021. default: true
  21022. },
  21023. {
  21024. name: "Macro",
  21025. height: math.unit(45, "feet")
  21026. },
  21027. ]
  21028. ))
  21029. characterMakers.push(() => makeCharacter(
  21030. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21031. {
  21032. front: {
  21033. height: math.unit(6 + 1 / 12, "feet"),
  21034. weight: math.unit(75, "lb"),
  21035. name: "Front",
  21036. image: {
  21037. source: "./media/characters/aronai-sieyes/front.svg",
  21038. extra: 1532/1450,
  21039. bottom: 42/1574
  21040. }
  21041. },
  21042. side: {
  21043. height: math.unit(6 + 1 / 12, "feet"),
  21044. weight: math.unit(75, "lb"),
  21045. name: "Side",
  21046. image: {
  21047. source: "./media/characters/aronai-sieyes/side.svg",
  21048. extra: 1422/1365,
  21049. bottom: 148/1570
  21050. }
  21051. },
  21052. back: {
  21053. height: math.unit(6 + 1 / 12, "feet"),
  21054. weight: math.unit(75, "lb"),
  21055. name: "Back",
  21056. image: {
  21057. source: "./media/characters/aronai-sieyes/back.svg",
  21058. extra: 1526/1464,
  21059. bottom: 51/1577
  21060. }
  21061. },
  21062. dressed: {
  21063. height: math.unit(6 + 1 / 12, "feet"),
  21064. weight: math.unit(75, "lb"),
  21065. name: "Dressed",
  21066. image: {
  21067. source: "./media/characters/aronai-sieyes/dressed.svg",
  21068. extra: 1559/1483,
  21069. bottom: 39/1598
  21070. }
  21071. },
  21072. slit: {
  21073. height: math.unit(1.3, "feet"),
  21074. name: "Slit",
  21075. image: {
  21076. source: "./media/characters/aronai-sieyes/slit.svg"
  21077. }
  21078. },
  21079. slitSpread: {
  21080. height: math.unit(0.9, "feet"),
  21081. name: "Slit (Spread)",
  21082. image: {
  21083. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21084. }
  21085. },
  21086. rump: {
  21087. height: math.unit(1.3, "feet"),
  21088. name: "Rump",
  21089. image: {
  21090. source: "./media/characters/aronai-sieyes/rump.svg"
  21091. }
  21092. },
  21093. maw: {
  21094. height: math.unit(1.25, "feet"),
  21095. name: "Maw",
  21096. image: {
  21097. source: "./media/characters/aronai-sieyes/maw.svg"
  21098. }
  21099. },
  21100. feral: {
  21101. height: math.unit(18, "feet"),
  21102. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21103. name: "Feral",
  21104. image: {
  21105. source: "./media/characters/aronai-sieyes/feral.svg",
  21106. extra: 1530 / 1240,
  21107. bottom: 0.035
  21108. }
  21109. },
  21110. },
  21111. [
  21112. {
  21113. name: "Micro",
  21114. height: math.unit(2, "inches")
  21115. },
  21116. {
  21117. name: "Normal",
  21118. height: math.unit(6 + 1 / 12, "feet"),
  21119. default: true
  21120. }
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21125. {
  21126. front: {
  21127. height: math.unit(12, "feet"),
  21128. weight: math.unit(410, "kg"),
  21129. name: "Front",
  21130. image: {
  21131. source: "./media/characters/xuna/front.svg",
  21132. extra: 2184 / 1980
  21133. }
  21134. },
  21135. side: {
  21136. height: math.unit(12, "feet"),
  21137. weight: math.unit(410, "kg"),
  21138. name: "Side",
  21139. image: {
  21140. source: "./media/characters/xuna/side.svg",
  21141. extra: 2184 / 1980
  21142. }
  21143. },
  21144. back: {
  21145. height: math.unit(12, "feet"),
  21146. weight: math.unit(410, "kg"),
  21147. name: "Back",
  21148. image: {
  21149. source: "./media/characters/xuna/back.svg",
  21150. extra: 2184 / 1980
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Nano glow",
  21157. height: math.unit(10, "nm")
  21158. },
  21159. {
  21160. name: "Micro floof",
  21161. height: math.unit(0.3, "m")
  21162. },
  21163. {
  21164. name: "Huggable softy boi",
  21165. height: math.unit(3.6576, "m"),
  21166. default: true
  21167. },
  21168. {
  21169. name: "Admirable floof",
  21170. height: math.unit(80, "meters")
  21171. },
  21172. {
  21173. name: "Gentle macro",
  21174. height: math.unit(300, "meters")
  21175. },
  21176. {
  21177. name: "Very careful floof",
  21178. height: math.unit(3200, "meters")
  21179. },
  21180. {
  21181. name: "The mega floof",
  21182. height: math.unit(36000, "meters")
  21183. },
  21184. {
  21185. name: "Giga-fur-Wicker",
  21186. height: math.unit(4800000, "meters")
  21187. },
  21188. {
  21189. name: "Licky world",
  21190. height: math.unit(20000000, "meters")
  21191. },
  21192. {
  21193. name: "Floofy cyan sun",
  21194. height: math.unit(1500000000, "meters")
  21195. },
  21196. {
  21197. name: "Milky Wicker",
  21198. height: math.unit(1000000000000000000000, "meters")
  21199. },
  21200. {
  21201. name: "The observing Wicker",
  21202. height: math.unit(999999999999999999999999999, "meters")
  21203. },
  21204. ]
  21205. ))
  21206. characterMakers.push(() => makeCharacter(
  21207. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21208. {
  21209. front: {
  21210. height: math.unit(5 + 9 / 12, "feet"),
  21211. weight: math.unit(150, "lb"),
  21212. name: "Front",
  21213. image: {
  21214. source: "./media/characters/arokha-sieyes/front.svg",
  21215. extra: 1425 / 1284,
  21216. bottom: 0.05
  21217. }
  21218. },
  21219. },
  21220. [
  21221. {
  21222. name: "Normal",
  21223. height: math.unit(5 + 9 / 12, "feet")
  21224. },
  21225. {
  21226. name: "Macro",
  21227. height: math.unit(30, "meters"),
  21228. default: true
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(6, "feet"),
  21237. weight: math.unit(180, "lb"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/arokh-sieyes/front.svg",
  21241. extra: 1830 / 1769,
  21242. bottom: 0.01
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(6, "feet")
  21250. },
  21251. {
  21252. name: "Macro",
  21253. height: math.unit(30, "meters"),
  21254. default: true
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21260. {
  21261. side: {
  21262. height: math.unit(13 + 1 / 12, "feet"),
  21263. weight: math.unit(8.5, "tonnes"),
  21264. preyCapacity: math.unit(36, "people"),
  21265. name: "Side",
  21266. image: {
  21267. source: "./media/characters/goldeneye/side.svg",
  21268. extra: 1139/741,
  21269. bottom: 98/1237
  21270. }
  21271. },
  21272. front: {
  21273. height: math.unit(5.1, "feet"),
  21274. weight: math.unit(8.5, "tonnes"),
  21275. preyCapacity: math.unit(36, "people"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/goldeneye/front.svg",
  21279. extra: 635/365,
  21280. bottom: 598/1233
  21281. }
  21282. },
  21283. maw: {
  21284. height: math.unit(6.6, "feet"),
  21285. name: "Maw",
  21286. image: {
  21287. source: "./media/characters/goldeneye/maw.svg"
  21288. }
  21289. },
  21290. headFront: {
  21291. height: math.unit(8, "feet"),
  21292. name: "Head (Front)",
  21293. image: {
  21294. source: "./media/characters/goldeneye/head-front.svg"
  21295. }
  21296. },
  21297. headSide: {
  21298. height: math.unit(6, "feet"),
  21299. name: "Head (Side)",
  21300. image: {
  21301. source: "./media/characters/goldeneye/head-side.svg"
  21302. }
  21303. },
  21304. headBack: {
  21305. height: math.unit(8, "feet"),
  21306. name: "Head (Back)",
  21307. image: {
  21308. source: "./media/characters/goldeneye/head-back.svg"
  21309. }
  21310. },
  21311. paw: {
  21312. height: math.unit(3.4, "feet"),
  21313. name: "Paw",
  21314. image: {
  21315. source: "./media/characters/goldeneye/paw.svg"
  21316. }
  21317. },
  21318. toering: {
  21319. height: math.unit(0.45, "feet"),
  21320. name: "Toering",
  21321. image: {
  21322. source: "./media/characters/goldeneye/toering.svg"
  21323. }
  21324. },
  21325. eyes: {
  21326. height: math.unit(0.5, "feet"),
  21327. name: "Eyes",
  21328. image: {
  21329. source: "./media/characters/goldeneye/eyes.svg"
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(13 + 1 / 12, "feet"),
  21337. default: true
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21343. {
  21344. front: {
  21345. height: math.unit(6 + 1 / 12, "feet"),
  21346. weight: math.unit(210, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/leonardo-lycheborne/front.svg",
  21350. extra: 776/723,
  21351. bottom: 34/810
  21352. }
  21353. },
  21354. side: {
  21355. height: math.unit(6 + 1 / 12, "feet"),
  21356. weight: math.unit(210, "lb"),
  21357. name: "Side",
  21358. image: {
  21359. source: "./media/characters/leonardo-lycheborne/side.svg",
  21360. extra: 780/728,
  21361. bottom: 12/792
  21362. }
  21363. },
  21364. back: {
  21365. height: math.unit(6 + 1 / 12, "feet"),
  21366. weight: math.unit(210, "lb"),
  21367. name: "Back",
  21368. image: {
  21369. source: "./media/characters/leonardo-lycheborne/back.svg",
  21370. extra: 775/721,
  21371. bottom: 17/792
  21372. }
  21373. },
  21374. hand: {
  21375. height: math.unit(1.08, "feet"),
  21376. name: "Hand",
  21377. image: {
  21378. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21379. }
  21380. },
  21381. foot: {
  21382. height: math.unit(1.32, "feet"),
  21383. name: "Foot",
  21384. image: {
  21385. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21386. }
  21387. },
  21388. maw: {
  21389. height: math.unit(1, "feet"),
  21390. name: "Maw",
  21391. image: {
  21392. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21393. }
  21394. },
  21395. were: {
  21396. height: math.unit(20, "feet"),
  21397. weight: math.unit(7800, "lb"),
  21398. name: "Were",
  21399. image: {
  21400. source: "./media/characters/leonardo-lycheborne/were.svg",
  21401. extra: 1224/1165,
  21402. bottom: 72/1296
  21403. }
  21404. },
  21405. feral: {
  21406. height: math.unit(7.5, "feet"),
  21407. weight: math.unit(600, "lb"),
  21408. name: "Feral",
  21409. image: {
  21410. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21411. extra: 797/702,
  21412. bottom: 139/936
  21413. }
  21414. },
  21415. taur: {
  21416. height: math.unit(11, "feet"),
  21417. weight: math.unit(3300, "lb"),
  21418. name: "Taur",
  21419. image: {
  21420. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21421. extra: 1271/1197,
  21422. bottom: 47/1318
  21423. }
  21424. },
  21425. barghest: {
  21426. height: math.unit(11, "feet"),
  21427. weight: math.unit(1300, "lb"),
  21428. name: "Barghest",
  21429. image: {
  21430. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21431. extra: 1291/1204,
  21432. bottom: 37/1328
  21433. }
  21434. },
  21435. dick: {
  21436. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21437. name: "Dick",
  21438. image: {
  21439. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21440. }
  21441. },
  21442. dickWere: {
  21443. height: math.unit((20) / 3.8, "feet"),
  21444. name: "Dick (Were)",
  21445. image: {
  21446. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Normal",
  21453. height: math.unit(6 + 1 / 12, "feet"),
  21454. default: true
  21455. },
  21456. ]
  21457. ))
  21458. characterMakers.push(() => makeCharacter(
  21459. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21460. {
  21461. front: {
  21462. height: math.unit(10, "feet"),
  21463. weight: math.unit(350, "lb"),
  21464. name: "Front",
  21465. image: {
  21466. source: "./media/characters/jet/front.svg",
  21467. extra: 2050 / 1980,
  21468. bottom: 0.013
  21469. }
  21470. },
  21471. back: {
  21472. height: math.unit(10, "feet"),
  21473. weight: math.unit(350, "lb"),
  21474. name: "Back",
  21475. image: {
  21476. source: "./media/characters/jet/back.svg",
  21477. extra: 2050 / 1980,
  21478. bottom: 0.013
  21479. }
  21480. },
  21481. },
  21482. [
  21483. {
  21484. name: "Micro",
  21485. height: math.unit(6, "inches")
  21486. },
  21487. {
  21488. name: "Normal",
  21489. height: math.unit(10, "feet"),
  21490. default: true
  21491. },
  21492. {
  21493. name: "Macro",
  21494. height: math.unit(100, "feet")
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21500. {
  21501. front: {
  21502. height: math.unit(15, "feet"),
  21503. weight: math.unit(2800, "lb"),
  21504. name: "Front",
  21505. image: {
  21506. source: "./media/characters/tanarath/front.svg",
  21507. extra: 2392 / 2220,
  21508. bottom: 0.03
  21509. }
  21510. },
  21511. back: {
  21512. height: math.unit(15, "feet"),
  21513. weight: math.unit(2800, "lb"),
  21514. name: "Back",
  21515. image: {
  21516. source: "./media/characters/tanarath/back.svg",
  21517. extra: 2392 / 2220,
  21518. bottom: 0.03
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Normal",
  21525. height: math.unit(15, "feet"),
  21526. default: true
  21527. },
  21528. ]
  21529. ))
  21530. characterMakers.push(() => makeCharacter(
  21531. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21532. {
  21533. front: {
  21534. height: math.unit(7 + 1 / 12, "feet"),
  21535. weight: math.unit(175, "lb"),
  21536. name: "Front",
  21537. image: {
  21538. source: "./media/characters/patty-cattybatty/front.svg",
  21539. extra: 908 / 874,
  21540. bottom: 0.025
  21541. }
  21542. },
  21543. },
  21544. [
  21545. {
  21546. name: "Micro",
  21547. height: math.unit(1, "inch")
  21548. },
  21549. {
  21550. name: "Normal",
  21551. height: math.unit(7 + 1 / 12, "feet")
  21552. },
  21553. {
  21554. name: "Mini Macro",
  21555. height: math.unit(155, "feet")
  21556. },
  21557. {
  21558. name: "Macro",
  21559. height: math.unit(1077, "feet")
  21560. },
  21561. {
  21562. name: "Mega Macro",
  21563. height: math.unit(47650, "feet"),
  21564. default: true
  21565. },
  21566. {
  21567. name: "Giga Macro",
  21568. height: math.unit(440, "miles")
  21569. },
  21570. {
  21571. name: "Tera Macro",
  21572. height: math.unit(8700, "miles")
  21573. },
  21574. {
  21575. name: "Planetary Macro",
  21576. height: math.unit(32700, "miles")
  21577. },
  21578. {
  21579. name: "Solar Macro",
  21580. height: math.unit(550000, "miles")
  21581. },
  21582. {
  21583. name: "Celestial Macro",
  21584. height: math.unit(2.5, "AU")
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21590. {
  21591. front: {
  21592. height: math.unit(4 + 5 / 12, "feet"),
  21593. weight: math.unit(90, "lb"),
  21594. name: "Front",
  21595. image: {
  21596. source: "./media/characters/cappu/front.svg",
  21597. extra: 1247 / 1152,
  21598. bottom: 0.012
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(4 + 5 / 12, "feet"),
  21606. default: true
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21612. {
  21613. frontDressed: {
  21614. height: math.unit(70, "cm"),
  21615. weight: math.unit(6, "kg"),
  21616. name: "Front (Dressed)",
  21617. image: {
  21618. source: "./media/characters/sebi/front-dressed.svg",
  21619. extra: 713.5 / 686.5,
  21620. bottom: 0.003
  21621. }
  21622. },
  21623. front: {
  21624. height: math.unit(70, "cm"),
  21625. weight: math.unit(5, "kg"),
  21626. name: "Front",
  21627. image: {
  21628. source: "./media/characters/sebi/front.svg",
  21629. extra: 713.5 / 686.5,
  21630. bottom: 0.003
  21631. }
  21632. }
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(70, "cm"),
  21638. default: true
  21639. },
  21640. {
  21641. name: "Macro",
  21642. height: math.unit(8, "meters")
  21643. },
  21644. ]
  21645. ))
  21646. characterMakers.push(() => makeCharacter(
  21647. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21648. {
  21649. front: {
  21650. height: math.unit(6, "feet"),
  21651. weight: math.unit(150, "lb"),
  21652. name: "Front",
  21653. image: {
  21654. source: "./media/characters/typhek/front.svg",
  21655. extra: 1948 / 1929,
  21656. bottom: 0.025
  21657. }
  21658. },
  21659. side: {
  21660. height: math.unit(6, "feet"),
  21661. weight: math.unit(150, "lb"),
  21662. name: "Side",
  21663. image: {
  21664. source: "./media/characters/typhek/side.svg",
  21665. extra: 2034 / 2010,
  21666. bottom: 0.003
  21667. }
  21668. },
  21669. back: {
  21670. height: math.unit(6, "feet"),
  21671. weight: math.unit(150, "lb"),
  21672. name: "Back",
  21673. image: {
  21674. source: "./media/characters/typhek/back.svg",
  21675. extra: 2005 / 1978,
  21676. bottom: 0.004
  21677. }
  21678. },
  21679. palm: {
  21680. height: math.unit(1.2, "feet"),
  21681. name: "Palm",
  21682. image: {
  21683. source: "./media/characters/typhek/palm.svg"
  21684. }
  21685. },
  21686. fist: {
  21687. height: math.unit(1.1, "feet"),
  21688. name: "Fist",
  21689. image: {
  21690. source: "./media/characters/typhek/fist.svg"
  21691. }
  21692. },
  21693. foot: {
  21694. height: math.unit(1.57, "feet"),
  21695. name: "Foot",
  21696. image: {
  21697. source: "./media/characters/typhek/foot.svg"
  21698. }
  21699. },
  21700. sole: {
  21701. height: math.unit(2.05, "feet"),
  21702. name: "Sole",
  21703. image: {
  21704. source: "./media/characters/typhek/sole.svg"
  21705. }
  21706. },
  21707. },
  21708. [
  21709. {
  21710. name: "Macro",
  21711. height: math.unit(40, "stories"),
  21712. default: true
  21713. },
  21714. {
  21715. name: "Megamacro",
  21716. height: math.unit(1, "mile")
  21717. },
  21718. {
  21719. name: "Gigamacro",
  21720. height: math.unit(4000, "solarradii")
  21721. },
  21722. {
  21723. name: "Universal",
  21724. height: math.unit(1.1, "universes")
  21725. }
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21730. {
  21731. side: {
  21732. height: math.unit(5 + 7 / 12, "feet"),
  21733. weight: math.unit(150, "lb"),
  21734. name: "Side",
  21735. image: {
  21736. source: "./media/characters/kassy/side.svg",
  21737. extra: 1280 / 1225,
  21738. bottom: 0.002
  21739. }
  21740. },
  21741. front: {
  21742. height: math.unit(5 + 7 / 12, "feet"),
  21743. weight: math.unit(150, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/kassy/front.svg",
  21747. extra: 1280 / 1225,
  21748. bottom: 0.025
  21749. }
  21750. },
  21751. back: {
  21752. height: math.unit(5 + 7 / 12, "feet"),
  21753. weight: math.unit(150, "lb"),
  21754. name: "Back",
  21755. image: {
  21756. source: "./media/characters/kassy/back.svg",
  21757. extra: 1280 / 1225,
  21758. bottom: 0.002
  21759. }
  21760. },
  21761. foot: {
  21762. height: math.unit(1.266, "feet"),
  21763. name: "Foot",
  21764. image: {
  21765. source: "./media/characters/kassy/foot.svg"
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(5 + 7 / 12, "feet")
  21773. },
  21774. {
  21775. name: "Macro",
  21776. height: math.unit(137, "feet"),
  21777. default: true
  21778. },
  21779. {
  21780. name: "Megamacro",
  21781. height: math.unit(1, "mile")
  21782. },
  21783. ]
  21784. ))
  21785. characterMakers.push(() => makeCharacter(
  21786. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21787. {
  21788. front: {
  21789. height: math.unit(6 + 1 / 12, "feet"),
  21790. weight: math.unit(200, "lb"),
  21791. name: "Front",
  21792. image: {
  21793. source: "./media/characters/neil/front.svg",
  21794. extra: 1326 / 1250,
  21795. bottom: 0.023
  21796. }
  21797. },
  21798. },
  21799. [
  21800. {
  21801. name: "Normal",
  21802. height: math.unit(6 + 1 / 12, "feet"),
  21803. default: true
  21804. },
  21805. {
  21806. name: "Macro",
  21807. height: math.unit(200, "feet")
  21808. },
  21809. ]
  21810. ))
  21811. characterMakers.push(() => makeCharacter(
  21812. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21813. {
  21814. front: {
  21815. height: math.unit(5 + 9 / 12, "feet"),
  21816. weight: math.unit(190, "lb"),
  21817. name: "Front",
  21818. image: {
  21819. source: "./media/characters/atticus/front.svg",
  21820. extra: 2934 / 2785,
  21821. bottom: 0.025
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(5 + 9 / 12, "feet"),
  21829. default: true
  21830. },
  21831. {
  21832. name: "Macro",
  21833. height: math.unit(180, "feet")
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21839. {
  21840. side: {
  21841. height: math.unit(9, "feet"),
  21842. weight: math.unit(650, "lb"),
  21843. name: "Side",
  21844. image: {
  21845. source: "./media/characters/milo/side.svg",
  21846. extra: 2644 / 2310,
  21847. bottom: 0.032
  21848. }
  21849. },
  21850. },
  21851. [
  21852. {
  21853. name: "Normal",
  21854. height: math.unit(9, "feet"),
  21855. default: true
  21856. },
  21857. {
  21858. name: "Macro",
  21859. height: math.unit(300, "feet")
  21860. },
  21861. ]
  21862. ))
  21863. characterMakers.push(() => makeCharacter(
  21864. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21865. {
  21866. side: {
  21867. height: math.unit(8, "meters"),
  21868. weight: math.unit(90000, "kg"),
  21869. name: "Side",
  21870. image: {
  21871. source: "./media/characters/ijzer/side.svg",
  21872. extra: 2756 / 1600,
  21873. bottom: 0.01
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Small",
  21880. height: math.unit(3, "meters")
  21881. },
  21882. {
  21883. name: "Normal",
  21884. height: math.unit(8, "meters"),
  21885. default: true
  21886. },
  21887. {
  21888. name: "Normal+",
  21889. height: math.unit(10, "meters")
  21890. },
  21891. {
  21892. name: "Bigger",
  21893. height: math.unit(24, "meters")
  21894. },
  21895. {
  21896. name: "Huge",
  21897. height: math.unit(80, "meters")
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21903. {
  21904. front: {
  21905. height: math.unit(6 + 2 / 12, "feet"),
  21906. weight: math.unit(153, "lb"),
  21907. name: "Front",
  21908. image: {
  21909. source: "./media/characters/luca-cervicum/front.svg",
  21910. extra: 370 / 327,
  21911. bottom: 0.015
  21912. }
  21913. },
  21914. back: {
  21915. height: math.unit(6 + 2 / 12, "feet"),
  21916. weight: math.unit(153, "lb"),
  21917. name: "Back",
  21918. image: {
  21919. source: "./media/characters/luca-cervicum/back.svg",
  21920. extra: 367 / 333,
  21921. bottom: 0.005
  21922. }
  21923. },
  21924. frontGear: {
  21925. height: math.unit(6 + 2 / 12, "feet"),
  21926. weight: math.unit(173, "lb"),
  21927. name: "Front (Gear)",
  21928. image: {
  21929. source: "./media/characters/luca-cervicum/front-gear.svg",
  21930. extra: 377 / 333,
  21931. bottom: 0.006
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(6 + 2 / 12, "feet"),
  21939. default: true
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(6 + 1 / 12, "feet"),
  21948. weight: math.unit(304, "lb"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/oliver/front.svg",
  21952. extra: 157 / 143,
  21953. bottom: 0.08
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(6 + 1 / 12, "feet"),
  21961. default: true
  21962. },
  21963. ]
  21964. ))
  21965. characterMakers.push(() => makeCharacter(
  21966. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21967. {
  21968. front: {
  21969. height: math.unit(5 + 7 / 12, "feet"),
  21970. weight: math.unit(140, "lb"),
  21971. name: "Front",
  21972. image: {
  21973. source: "./media/characters/shane/front.svg",
  21974. extra: 304 / 289,
  21975. bottom: 0.005
  21976. }
  21977. },
  21978. },
  21979. [
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(5 + 7 / 12, "feet"),
  21983. default: true
  21984. },
  21985. ]
  21986. ))
  21987. characterMakers.push(() => makeCharacter(
  21988. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21989. {
  21990. front: {
  21991. height: math.unit(5 + 9 / 12, "feet"),
  21992. weight: math.unit(178, "lb"),
  21993. name: "Front",
  21994. image: {
  21995. source: "./media/characters/shin/front.svg",
  21996. extra: 159 / 151,
  21997. bottom: 0.015
  21998. }
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Normal",
  22004. height: math.unit(5 + 9 / 12, "feet"),
  22005. default: true
  22006. },
  22007. ]
  22008. ))
  22009. characterMakers.push(() => makeCharacter(
  22010. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22011. {
  22012. front: {
  22013. height: math.unit(5 + 10 / 12, "feet"),
  22014. weight: math.unit(168, "lb"),
  22015. name: "Front",
  22016. image: {
  22017. source: "./media/characters/xerxes/front.svg",
  22018. extra: 282 / 260,
  22019. bottom: 0.045
  22020. }
  22021. },
  22022. },
  22023. [
  22024. {
  22025. name: "Normal",
  22026. height: math.unit(5 + 10 / 12, "feet"),
  22027. default: true
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22033. {
  22034. front: {
  22035. height: math.unit(6 + 7 / 12, "feet"),
  22036. weight: math.unit(208, "lb"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/chaska/front.svg",
  22040. extra: 332 / 319,
  22041. bottom: 0.015
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(6 + 7 / 12, "feet"),
  22049. default: true
  22050. },
  22051. ]
  22052. ))
  22053. characterMakers.push(() => makeCharacter(
  22054. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22055. {
  22056. front: {
  22057. height: math.unit(5 + 8 / 12, "feet"),
  22058. weight: math.unit(208, "lb"),
  22059. name: "Front",
  22060. image: {
  22061. source: "./media/characters/enuk/front.svg",
  22062. extra: 437 / 406,
  22063. bottom: 0.02
  22064. }
  22065. },
  22066. },
  22067. [
  22068. {
  22069. name: "Normal",
  22070. height: math.unit(5 + 8 / 12, "feet"),
  22071. default: true
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22077. {
  22078. front: {
  22079. height: math.unit(5 + 10 / 12, "feet"),
  22080. weight: math.unit(252, "lb"),
  22081. name: "Front",
  22082. image: {
  22083. source: "./media/characters/bruun/front.svg",
  22084. extra: 197 / 187,
  22085. bottom: 0.012
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Normal",
  22092. height: math.unit(5 + 10 / 12, "feet"),
  22093. default: true
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(6 + 10 / 12, "feet"),
  22102. weight: math.unit(255, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/alexeev/front.svg",
  22106. extra: 213 / 200,
  22107. bottom: 0.05
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(6 + 10 / 12, "feet"),
  22115. default: true
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22121. {
  22122. front: {
  22123. height: math.unit(2 + 8 / 12, "feet"),
  22124. weight: math.unit(22, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/evelyn/front.svg",
  22128. extra: 208 / 180
  22129. }
  22130. },
  22131. },
  22132. [
  22133. {
  22134. name: "Normal",
  22135. height: math.unit(2 + 8 / 12, "feet"),
  22136. default: true
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(5 + 9 / 12, "feet"),
  22145. weight: math.unit(139, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/inca/front.svg",
  22149. extra: 294 / 291,
  22150. bottom: 0.03
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Normal",
  22157. height: math.unit(5 + 9 / 12, "feet"),
  22158. default: true
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22164. {
  22165. front: {
  22166. height: math.unit(6 + 3 / 12, "feet"),
  22167. weight: math.unit(185, "lb"),
  22168. name: "Front",
  22169. image: {
  22170. source: "./media/characters/mera/front.svg",
  22171. extra: 291 / 277,
  22172. bottom: 0.03
  22173. }
  22174. },
  22175. },
  22176. [
  22177. {
  22178. name: "Normal",
  22179. height: math.unit(6 + 3 / 12, "feet"),
  22180. default: true
  22181. },
  22182. ]
  22183. ))
  22184. characterMakers.push(() => makeCharacter(
  22185. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22186. {
  22187. front: {
  22188. height: math.unit(6 + 7 / 12, "feet"),
  22189. weight: math.unit(160, "lb"),
  22190. name: "Front",
  22191. image: {
  22192. source: "./media/characters/ceres/front.svg",
  22193. extra: 1023 / 950,
  22194. bottom: 0.027
  22195. }
  22196. },
  22197. back: {
  22198. height: math.unit(6 + 7 / 12, "feet"),
  22199. weight: math.unit(160, "lb"),
  22200. name: "Back",
  22201. image: {
  22202. source: "./media/characters/ceres/back.svg",
  22203. extra: 1023 / 950
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(6 + 7 / 12, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22217. {
  22218. front: {
  22219. height: math.unit(5 + 10 / 12, "feet"),
  22220. weight: math.unit(150, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/kris/front.svg",
  22224. extra: 885 / 803,
  22225. bottom: 0.03
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(5 + 10 / 12, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22239. {
  22240. dragon_front: {
  22241. height: math.unit(5, "feet"),
  22242. name: "Front",
  22243. image: {
  22244. source: "./media/characters/taluthus/dragon-front.svg",
  22245. extra: 1203/1098,
  22246. bottom: 46/1249
  22247. },
  22248. form: "dragon",
  22249. default: true
  22250. },
  22251. dragon_maw: {
  22252. height: math.unit(2.35, "feet"),
  22253. name: "Maw",
  22254. image: {
  22255. source: "./media/characters/taluthus/dragon-maw.svg"
  22256. },
  22257. form: "dragon",
  22258. },
  22259. kitsune_front: {
  22260. height: math.unit(7, "feet"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/taluthus/kitsune-front.svg",
  22264. extra: 900/841,
  22265. bottom: 65/965
  22266. },
  22267. form: "kitsune",
  22268. default: true
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(5, "feet"),
  22275. form: "dragon",
  22276. default: true,
  22277. },
  22278. {
  22279. name: "Normal",
  22280. height: math.unit(7, "feet"),
  22281. form: "kitsune",
  22282. default: true
  22283. },
  22284. {
  22285. name: "Macro",
  22286. height: math.unit(300, "feet"),
  22287. allForms: true
  22288. },
  22289. ],
  22290. {
  22291. "dragon": {
  22292. name: "Dragon",
  22293. default: true
  22294. },
  22295. "kitsune": {
  22296. name: "Kitsune",
  22297. },
  22298. }
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22302. {
  22303. front: {
  22304. height: math.unit(5 + 9 / 12, "feet"),
  22305. weight: math.unit(145, "lb"),
  22306. name: "Front",
  22307. image: {
  22308. source: "./media/characters/dawn/front.svg",
  22309. extra: 2094 / 2016,
  22310. bottom: 0.025
  22311. }
  22312. },
  22313. back: {
  22314. height: math.unit(5 + 9 / 12, "feet"),
  22315. weight: math.unit(160, "lb"),
  22316. name: "Back",
  22317. image: {
  22318. source: "./media/characters/dawn/back.svg",
  22319. extra: 2112 / 2080,
  22320. bottom: 0.005
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Normal",
  22327. height: math.unit(6 + 7 / 12, "feet"),
  22328. default: true
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22334. {
  22335. anthro: {
  22336. height: math.unit(8 + 3 / 12, "feet"),
  22337. weight: math.unit(450, "lb"),
  22338. name: "Anthro",
  22339. image: {
  22340. source: "./media/characters/arador/anthro.svg",
  22341. extra: 1835 / 1718,
  22342. bottom: 0.025
  22343. }
  22344. },
  22345. feral: {
  22346. height: math.unit(4, "feet"),
  22347. weight: math.unit(200, "lb"),
  22348. name: "Feral",
  22349. image: {
  22350. source: "./media/characters/arador/feral.svg",
  22351. extra: 1683 / 1514,
  22352. bottom: 0.07
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(8 + 3 / 12, "feet")
  22360. },
  22361. {
  22362. name: "Macro",
  22363. height: math.unit(82.5, "feet"),
  22364. default: true
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22370. {
  22371. front: {
  22372. height: math.unit(5 + 10 / 12, "feet"),
  22373. weight: math.unit(125, "lb"),
  22374. name: "Front",
  22375. image: {
  22376. source: "./media/characters/dharsi/front.svg",
  22377. extra: 716 / 630,
  22378. bottom: 0.035
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Nano",
  22385. height: math.unit(100, "nm")
  22386. },
  22387. {
  22388. name: "Micro",
  22389. height: math.unit(2, "inches")
  22390. },
  22391. {
  22392. name: "Normal",
  22393. height: math.unit(5 + 10 / 12, "feet"),
  22394. default: true
  22395. },
  22396. {
  22397. name: "Macro",
  22398. height: math.unit(1000, "feet")
  22399. },
  22400. {
  22401. name: "Megamacro",
  22402. height: math.unit(10, "miles")
  22403. },
  22404. {
  22405. name: "Gigamacro",
  22406. height: math.unit(3000, "miles")
  22407. },
  22408. {
  22409. name: "Teramacro",
  22410. height: math.unit(500000, "miles")
  22411. },
  22412. {
  22413. name: "Teramacro+",
  22414. height: math.unit(30, "galaxies")
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22420. {
  22421. front: {
  22422. height: math.unit(6, "feet"),
  22423. weight: math.unit(150, "lb"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/deathy/front.svg",
  22427. extra: 1552 / 1463,
  22428. bottom: 0.025
  22429. }
  22430. },
  22431. side: {
  22432. height: math.unit(6, "feet"),
  22433. weight: math.unit(150, "lb"),
  22434. name: "Side",
  22435. image: {
  22436. source: "./media/characters/deathy/side.svg",
  22437. extra: 1604 / 1455,
  22438. bottom: 0.025
  22439. }
  22440. },
  22441. back: {
  22442. height: math.unit(6, "feet"),
  22443. weight: math.unit(150, "lb"),
  22444. name: "Back",
  22445. image: {
  22446. source: "./media/characters/deathy/back.svg",
  22447. extra: 1580 / 1463,
  22448. bottom: 0.005
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Micro",
  22455. height: math.unit(5, "millimeters")
  22456. },
  22457. {
  22458. name: "Normal",
  22459. height: math.unit(6 + 5 / 12, "feet"),
  22460. default: true
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22466. {
  22467. front: {
  22468. height: math.unit(16, "feet"),
  22469. weight: math.unit(4000, "lb"),
  22470. name: "Front",
  22471. image: {
  22472. source: "./media/characters/juniper/front.svg",
  22473. bottom: 0.04
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(16, "feet"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22487. {
  22488. front: {
  22489. height: math.unit(6, "feet"),
  22490. weight: math.unit(150, "lb"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/hipster/front.svg",
  22494. extra: 1312 / 1209,
  22495. bottom: 0.025
  22496. }
  22497. },
  22498. back: {
  22499. height: math.unit(6, "feet"),
  22500. weight: math.unit(150, "lb"),
  22501. name: "Back",
  22502. image: {
  22503. source: "./media/characters/hipster/back.svg",
  22504. extra: 1281 / 1196,
  22505. bottom: 0.01
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Micro",
  22512. height: math.unit(1, "mm")
  22513. },
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(4, "inches"),
  22517. default: true
  22518. },
  22519. {
  22520. name: "Macro",
  22521. height: math.unit(500, "feet")
  22522. },
  22523. {
  22524. name: "Megamacro",
  22525. height: math.unit(1000, "miles")
  22526. },
  22527. ]
  22528. ))
  22529. characterMakers.push(() => makeCharacter(
  22530. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22531. {
  22532. front: {
  22533. height: math.unit(6, "feet"),
  22534. weight: math.unit(150, "lb"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/tendirmuldr/front.svg",
  22538. extra: 1878 / 1772,
  22539. bottom: 0.015
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Megamacro",
  22546. height: math.unit(1500, "miles"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22553. {
  22554. front: {
  22555. height: math.unit(14, "feet"),
  22556. weight: math.unit(12000, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/mort/front.svg",
  22560. extra: 365 / 318,
  22561. bottom: 0.01
  22562. }
  22563. },
  22564. side: {
  22565. height: math.unit(14, "feet"),
  22566. weight: math.unit(12000, "lb"),
  22567. name: "Side",
  22568. image: {
  22569. source: "./media/characters/mort/side.svg",
  22570. extra: 365 / 318,
  22571. bottom: 0.052
  22572. },
  22573. default: true
  22574. },
  22575. back: {
  22576. height: math.unit(14, "feet"),
  22577. weight: math.unit(12000, "lb"),
  22578. name: "Back",
  22579. image: {
  22580. source: "./media/characters/mort/back.svg",
  22581. extra: 371 / 332,
  22582. bottom: 0.18
  22583. }
  22584. },
  22585. },
  22586. [
  22587. {
  22588. name: "Normal",
  22589. height: math.unit(14, "feet"),
  22590. default: true
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22596. {
  22597. front: {
  22598. height: math.unit(8, "feet"),
  22599. weight: math.unit(1, "ton"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/lycoa/front.svg",
  22603. extra: 1836/1728,
  22604. bottom: 81/1917
  22605. }
  22606. },
  22607. back: {
  22608. height: math.unit(8, "feet"),
  22609. weight: math.unit(1, "ton"),
  22610. name: "Back",
  22611. image: {
  22612. source: "./media/characters/lycoa/back.svg",
  22613. extra: 1785/1720,
  22614. bottom: 91/1876
  22615. }
  22616. },
  22617. head: {
  22618. height: math.unit(1.6243, "feet"),
  22619. name: "Head",
  22620. image: {
  22621. source: "./media/characters/lycoa/head.svg",
  22622. extra: 1011/782,
  22623. bottom: 0/1011
  22624. }
  22625. },
  22626. tailmaw: {
  22627. height: math.unit(1.9, "feet"),
  22628. name: "Tailmaw",
  22629. image: {
  22630. source: "./media/characters/lycoa/tailmaw.svg"
  22631. }
  22632. },
  22633. tentacles: {
  22634. height: math.unit(2.1, "feet"),
  22635. name: "Tentacles",
  22636. image: {
  22637. source: "./media/characters/lycoa/tentacles.svg"
  22638. }
  22639. },
  22640. dick: {
  22641. height: math.unit(1.73, "feet"),
  22642. name: "Dick",
  22643. image: {
  22644. source: "./media/characters/lycoa/dick.svg"
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Normal",
  22651. height: math.unit(8, "feet"),
  22652. default: true
  22653. },
  22654. {
  22655. name: "Macro",
  22656. height: math.unit(30, "feet")
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22662. {
  22663. front: {
  22664. height: math.unit(4 + 2 / 12, "feet"),
  22665. weight: math.unit(70, "lb"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/naldara/front.svg",
  22669. extra: 1664/1387,
  22670. bottom: 81/1745
  22671. },
  22672. form: "anthro",
  22673. default: true
  22674. },
  22675. naga: {
  22676. height: math.unit(20, "feet"),
  22677. weight: math.unit(15000, "kg"),
  22678. name: "Front",
  22679. image: {
  22680. source: "./media/characters/naldara/naga.svg",
  22681. extra: 1590/1396,
  22682. bottom: 285/1875
  22683. },
  22684. form: "naga",
  22685. default: true
  22686. },
  22687. },
  22688. [
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(4 + 2 / 12, "feet"),
  22692. form: "anthro",
  22693. default: true
  22694. },
  22695. {
  22696. name: "Normal",
  22697. height: math.unit(20, "feet"),
  22698. form: "naga",
  22699. default: true
  22700. },
  22701. ],
  22702. {
  22703. "anthro": {
  22704. name: "Anthro",
  22705. default: true
  22706. },
  22707. "naga": {
  22708. name: "Naga"
  22709. }
  22710. }
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22714. {
  22715. front: {
  22716. height: math.unit(13 + 7 / 12, "feet"),
  22717. weight: math.unit(1500, "lb"),
  22718. name: "Front",
  22719. image: {
  22720. source: "./media/characters/briar/front.svg",
  22721. extra: 1223/1157,
  22722. bottom: 123/1346
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(13 + 7 / 12, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22736. {
  22737. side: {
  22738. height: math.unit(16, "feet"),
  22739. weight: math.unit(500, "lb"),
  22740. name: "Side",
  22741. image: {
  22742. source: "./media/characters/vanguard/side.svg",
  22743. extra: 1022/914,
  22744. bottom: 30/1052
  22745. }
  22746. },
  22747. sideAlt: {
  22748. height: math.unit(10, "feet"),
  22749. weight: math.unit(500, "lb"),
  22750. name: "Side (Alt)",
  22751. image: {
  22752. source: "./media/characters/vanguard/side-alt.svg",
  22753. extra: 502 / 425,
  22754. bottom: 0.087
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(17.71, "feet"),
  22762. default: true
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22768. {
  22769. front: {
  22770. height: math.unit(7.5, "feet"),
  22771. weight: math.unit(2, "lb"),
  22772. name: "Front",
  22773. image: {
  22774. source: "./media/characters/artemis/work-safe-front.svg",
  22775. extra: 1192 / 1075,
  22776. bottom: 0.07
  22777. },
  22778. form: "work-safe",
  22779. default: true
  22780. },
  22781. frontNsfw: {
  22782. height: math.unit(7.5, "feet"),
  22783. weight: math.unit(2, "lb"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/artemis/calibrating-front.svg",
  22787. extra: 1192 / 1075,
  22788. bottom: 0.07
  22789. },
  22790. form: "calibrating",
  22791. default: true
  22792. },
  22793. frontNsfwer: {
  22794. height: math.unit(7.5, "feet"),
  22795. weight: math.unit(2, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/artemis/oversize-load-front.svg",
  22799. extra: 1192 / 1075,
  22800. bottom: 0.07
  22801. },
  22802. form: "oversize-load",
  22803. default: true
  22804. },
  22805. side: {
  22806. height: math.unit(7.5, "feet"),
  22807. weight: math.unit(2, "lb"),
  22808. name: "Side",
  22809. image: {
  22810. source: "./media/characters/artemis/work-safe-side.svg",
  22811. extra: 1192 / 1075,
  22812. bottom: 0.07
  22813. },
  22814. form: "work-safe"
  22815. },
  22816. sideNsfw: {
  22817. height: math.unit(7.5, "feet"),
  22818. weight: math.unit(2, "lb"),
  22819. name: "Side",
  22820. image: {
  22821. source: "./media/characters/artemis/calibrating-side.svg",
  22822. extra: 1192 / 1075,
  22823. bottom: 0.07
  22824. },
  22825. form: "calibrating"
  22826. },
  22827. sideNsfwer: {
  22828. height: math.unit(7.5, "feet"),
  22829. weight: math.unit(2, "lb"),
  22830. name: "Side",
  22831. image: {
  22832. source: "./media/characters/artemis/oversize-load-side.svg",
  22833. extra: 1192 / 1075,
  22834. bottom: 0.07
  22835. },
  22836. form: "oversize-load"
  22837. },
  22838. maw: {
  22839. height: math.unit(1.1, "feet"),
  22840. name: "Maw",
  22841. image: {
  22842. source: "./media/characters/artemis/maw.svg"
  22843. },
  22844. form: "work-safe"
  22845. },
  22846. stomach: {
  22847. height: math.unit(0.95, "feet"),
  22848. name: "Stomach",
  22849. image: {
  22850. source: "./media/characters/artemis/stomach.svg"
  22851. },
  22852. form: "work-safe"
  22853. },
  22854. dickCanine: {
  22855. height: math.unit(1, "feet"),
  22856. name: "Dick (Canine)",
  22857. image: {
  22858. source: "./media/characters/artemis/dick-canine.svg"
  22859. },
  22860. form: "calibrating"
  22861. },
  22862. dickEquine: {
  22863. height: math.unit(0.85, "feet"),
  22864. name: "Dick (Equine)",
  22865. image: {
  22866. source: "./media/characters/artemis/dick-equine.svg"
  22867. },
  22868. form: "calibrating"
  22869. },
  22870. dickExotic: {
  22871. height: math.unit(0.85, "feet"),
  22872. name: "Dick (Exotic)",
  22873. image: {
  22874. source: "./media/characters/artemis/dick-exotic.svg"
  22875. },
  22876. form: "calibrating"
  22877. },
  22878. dickCanineBigger: {
  22879. height: math.unit(1 * 1.33, "feet"),
  22880. name: "Dick (Canine)",
  22881. image: {
  22882. source: "./media/characters/artemis/dick-canine.svg"
  22883. },
  22884. form: "oversize-load"
  22885. },
  22886. dickEquineBigger: {
  22887. height: math.unit(0.85 * 1.33, "feet"),
  22888. name: "Dick (Equine)",
  22889. image: {
  22890. source: "./media/characters/artemis/dick-equine.svg"
  22891. },
  22892. form: "oversize-load"
  22893. },
  22894. dickExoticBigger: {
  22895. height: math.unit(0.85 * 1.33, "feet"),
  22896. name: "Dick (Exotic)",
  22897. image: {
  22898. source: "./media/characters/artemis/dick-exotic.svg"
  22899. },
  22900. form: "oversize-load"
  22901. },
  22902. },
  22903. [
  22904. {
  22905. name: "Normal",
  22906. height: math.unit(7.5, "feet"),
  22907. form: "work-safe",
  22908. default: true
  22909. },
  22910. {
  22911. name: "Normal",
  22912. height: math.unit(7.5, "feet"),
  22913. form: "calibrating",
  22914. default: true
  22915. },
  22916. {
  22917. name: "Normal",
  22918. height: math.unit(7.5, "feet"),
  22919. form: "oversize-load",
  22920. default: true
  22921. },
  22922. {
  22923. name: "Enlarged",
  22924. height: math.unit(12, "feet"),
  22925. form: "work-safe",
  22926. },
  22927. {
  22928. name: "Enlarged",
  22929. height: math.unit(12, "feet"),
  22930. form: "calibrating",
  22931. },
  22932. {
  22933. name: "Enlarged",
  22934. height: math.unit(12, "feet"),
  22935. form: "oversize-load",
  22936. },
  22937. ],
  22938. {
  22939. "work-safe": {
  22940. name: "Work-Safe",
  22941. default: true
  22942. },
  22943. "calibrating": {
  22944. name: "Calibrating"
  22945. },
  22946. "oversize-load": {
  22947. name: "Oversize Load"
  22948. }
  22949. }
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22953. {
  22954. front: {
  22955. height: math.unit(5 + 3 / 12, "feet"),
  22956. weight: math.unit(160, "lb"),
  22957. name: "Front",
  22958. image: {
  22959. source: "./media/characters/kira/front.svg",
  22960. extra: 906 / 786,
  22961. bottom: 0.01
  22962. }
  22963. },
  22964. back: {
  22965. height: math.unit(5 + 3 / 12, "feet"),
  22966. weight: math.unit(160, "lb"),
  22967. name: "Back",
  22968. image: {
  22969. source: "./media/characters/kira/back.svg",
  22970. extra: 882 / 757,
  22971. bottom: 0.005
  22972. }
  22973. },
  22974. frontDressed: {
  22975. height: math.unit(5 + 3 / 12, "feet"),
  22976. weight: math.unit(160, "lb"),
  22977. name: "Front (Dressed)",
  22978. image: {
  22979. source: "./media/characters/kira/front-dressed.svg",
  22980. extra: 906 / 786,
  22981. bottom: 0.01
  22982. }
  22983. },
  22984. beans: {
  22985. height: math.unit(0.92, "feet"),
  22986. name: "Beans",
  22987. image: {
  22988. source: "./media/characters/kira/beans.svg"
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(5 + 3 / 12, "feet"),
  22996. default: true
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23002. {
  23003. front: {
  23004. height: math.unit(5 + 4 / 12, "feet"),
  23005. weight: math.unit(145, "lb"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/scramble/front.svg",
  23009. extra: 763 / 727,
  23010. bottom: 0.05
  23011. }
  23012. },
  23013. back: {
  23014. height: math.unit(5 + 4 / 12, "feet"),
  23015. weight: math.unit(145, "lb"),
  23016. name: "Back",
  23017. image: {
  23018. source: "./media/characters/scramble/back.svg",
  23019. extra: 826 / 737,
  23020. bottom: 0.002
  23021. }
  23022. },
  23023. },
  23024. [
  23025. {
  23026. name: "Normal",
  23027. height: math.unit(5 + 4 / 12, "feet"),
  23028. default: true
  23029. },
  23030. ]
  23031. ))
  23032. characterMakers.push(() => makeCharacter(
  23033. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23034. {
  23035. side: {
  23036. height: math.unit(6 + 2 / 12, "feet"),
  23037. weight: math.unit(190, "lb"),
  23038. name: "Side",
  23039. image: {
  23040. source: "./media/characters/biscuit/side.svg",
  23041. extra: 858 / 791,
  23042. bottom: 0.044
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Normal",
  23049. height: math.unit(6 + 2 / 12, "feet"),
  23050. default: true
  23051. },
  23052. ]
  23053. ))
  23054. characterMakers.push(() => makeCharacter(
  23055. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23056. {
  23057. front: {
  23058. height: math.unit(5 + 2 / 12, "feet"),
  23059. weight: math.unit(120, "lb"),
  23060. name: "Front",
  23061. image: {
  23062. source: "./media/characters/poffin/front.svg",
  23063. extra: 786 / 680,
  23064. bottom: 0.005
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Normal",
  23071. height: math.unit(5 + 2 / 12, "feet"),
  23072. default: true
  23073. },
  23074. ]
  23075. ))
  23076. characterMakers.push(() => makeCharacter(
  23077. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23078. {
  23079. front: {
  23080. height: math.unit(6 + 3 / 12, "feet"),
  23081. weight: math.unit(519, "lb"),
  23082. name: "Front",
  23083. image: {
  23084. source: "./media/characters/dhari/front.svg",
  23085. extra: 1048 / 946,
  23086. bottom: 0.015
  23087. }
  23088. },
  23089. back: {
  23090. height: math.unit(6 + 3 / 12, "feet"),
  23091. weight: math.unit(519, "lb"),
  23092. name: "Back",
  23093. image: {
  23094. source: "./media/characters/dhari/back.svg",
  23095. extra: 1048 / 931,
  23096. bottom: 0.005
  23097. }
  23098. },
  23099. frontDressed: {
  23100. height: math.unit(6 + 3 / 12, "feet"),
  23101. weight: math.unit(519, "lb"),
  23102. name: "Front (Dressed)",
  23103. image: {
  23104. source: "./media/characters/dhari/front-dressed.svg",
  23105. extra: 1713 / 1546,
  23106. bottom: 0.02
  23107. }
  23108. },
  23109. backDressed: {
  23110. height: math.unit(6 + 3 / 12, "feet"),
  23111. weight: math.unit(519, "lb"),
  23112. name: "Back (Dressed)",
  23113. image: {
  23114. source: "./media/characters/dhari/back-dressed.svg",
  23115. extra: 1699 / 1537,
  23116. bottom: 0.01
  23117. }
  23118. },
  23119. maw: {
  23120. height: math.unit(0.95, "feet"),
  23121. name: "Maw",
  23122. image: {
  23123. source: "./media/characters/dhari/maw.svg"
  23124. }
  23125. },
  23126. wereFront: {
  23127. height: math.unit(12 + 8 / 12, "feet"),
  23128. weight: math.unit(4000, "lb"),
  23129. name: "Front (Were)",
  23130. image: {
  23131. source: "./media/characters/dhari/were-front.svg",
  23132. extra: 1065 / 969,
  23133. bottom: 0.015
  23134. }
  23135. },
  23136. wereBack: {
  23137. height: math.unit(12 + 8 / 12, "feet"),
  23138. weight: math.unit(4000, "lb"),
  23139. name: "Back (Were)",
  23140. image: {
  23141. source: "./media/characters/dhari/were-back.svg",
  23142. extra: 1065 / 969,
  23143. bottom: 0.012
  23144. }
  23145. },
  23146. wereMaw: {
  23147. height: math.unit(0.625, "meters"),
  23148. name: "Maw (Were)",
  23149. image: {
  23150. source: "./media/characters/dhari/were-maw.svg"
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(6 + 3 / 12, "feet"),
  23158. default: true
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23164. {
  23165. anthro: {
  23166. height: math.unit(5 + 7 / 12, "feet"),
  23167. weight: math.unit(175, "lb"),
  23168. name: "Anthro",
  23169. image: {
  23170. source: "./media/characters/rena-dyne/anthro.svg",
  23171. extra: 1849 / 1785,
  23172. bottom: 0.005
  23173. }
  23174. },
  23175. taur: {
  23176. height: math.unit(15 + 6 / 12, "feet"),
  23177. weight: math.unit(8000, "lb"),
  23178. name: "Taur",
  23179. image: {
  23180. source: "./media/characters/rena-dyne/taur.svg",
  23181. extra: 2315 / 2234,
  23182. bottom: 0.033
  23183. }
  23184. },
  23185. },
  23186. [
  23187. {
  23188. name: "Normal",
  23189. height: math.unit(5 + 7 / 12, "feet"),
  23190. default: true
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(8, "feet"),
  23199. weight: math.unit(600, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/weremeep/front.svg",
  23203. extra: 970/849,
  23204. bottom: 7/977
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Normal",
  23211. height: math.unit(8, "feet"),
  23212. default: true
  23213. },
  23214. {
  23215. name: "Lorg",
  23216. height: math.unit(12, "feet")
  23217. },
  23218. {
  23219. name: "Oh Lawd She Comin'",
  23220. height: math.unit(20, "feet")
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23226. {
  23227. front: {
  23228. height: math.unit(4, "feet"),
  23229. weight: math.unit(90, "lb"),
  23230. name: "Front",
  23231. image: {
  23232. source: "./media/characters/reza/front.svg",
  23233. extra: 1183 / 1111,
  23234. bottom: 0.017
  23235. }
  23236. },
  23237. back: {
  23238. height: math.unit(4, "feet"),
  23239. weight: math.unit(90, "lb"),
  23240. name: "Back",
  23241. image: {
  23242. source: "./media/characters/reza/back.svg",
  23243. extra: 1183 / 1111,
  23244. bottom: 0.01
  23245. }
  23246. },
  23247. drake: {
  23248. height: math.unit(30, "feet"),
  23249. weight: math.unit(246960, "lb"),
  23250. name: "Drake",
  23251. image: {
  23252. source: "./media/characters/reza/drake.svg",
  23253. extra: 2350 / 2024,
  23254. bottom: 60.7 / 2403
  23255. }
  23256. },
  23257. },
  23258. [
  23259. {
  23260. name: "Normal",
  23261. height: math.unit(4, "feet"),
  23262. default: true
  23263. },
  23264. ]
  23265. ))
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23268. {
  23269. side: {
  23270. height: math.unit(15, "feet"),
  23271. weight: math.unit(14, "tons"),
  23272. name: "Side",
  23273. image: {
  23274. source: "./media/characters/athea/side.svg",
  23275. extra: 960 / 540,
  23276. bottom: 0.003
  23277. }
  23278. },
  23279. sitting: {
  23280. height: math.unit(6 * 2.85, "feet"),
  23281. weight: math.unit(14, "tons"),
  23282. name: "Sitting",
  23283. image: {
  23284. source: "./media/characters/athea/sitting.svg",
  23285. extra: 621 / 581,
  23286. bottom: 0.075
  23287. }
  23288. },
  23289. maw: {
  23290. height: math.unit(7.59498031496063, "feet"),
  23291. name: "Maw",
  23292. image: {
  23293. source: "./media/characters/athea/maw.svg"
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Lap Cat",
  23300. height: math.unit(2.5, "feet")
  23301. },
  23302. {
  23303. name: "Minimacro",
  23304. height: math.unit(15, "feet"),
  23305. default: true
  23306. },
  23307. {
  23308. name: "Macro",
  23309. height: math.unit(120, "feet")
  23310. },
  23311. {
  23312. name: "Macro+",
  23313. height: math.unit(640, "feet")
  23314. },
  23315. {
  23316. name: "Colossus",
  23317. height: math.unit(2.2, "miles")
  23318. },
  23319. ]
  23320. ))
  23321. characterMakers.push(() => makeCharacter(
  23322. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23323. {
  23324. front: {
  23325. height: math.unit(8 + 8 / 12, "feet"),
  23326. weight: math.unit(130, "kg"),
  23327. name: "Front",
  23328. image: {
  23329. source: "./media/characters/seroko/front.svg",
  23330. extra: 1385 / 1280,
  23331. bottom: 0.025
  23332. }
  23333. },
  23334. back: {
  23335. height: math.unit(8 + 8 / 12, "feet"),
  23336. weight: math.unit(130, "kg"),
  23337. name: "Back",
  23338. image: {
  23339. source: "./media/characters/seroko/back.svg",
  23340. extra: 1369 / 1238,
  23341. bottom: 0.018
  23342. }
  23343. },
  23344. frontDressed: {
  23345. height: math.unit(8 + 8 / 12, "feet"),
  23346. weight: math.unit(130, "kg"),
  23347. name: "Front (Dressed)",
  23348. image: {
  23349. source: "./media/characters/seroko/front-dressed.svg",
  23350. extra: 1366 / 1275,
  23351. bottom: 0.03
  23352. }
  23353. },
  23354. },
  23355. [
  23356. {
  23357. name: "Normal",
  23358. height: math.unit(8 + 8 / 12, "feet"),
  23359. default: true
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(5.5, "feet"),
  23368. weight: math.unit(160, "lb"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/quatzi/front.svg",
  23372. extra: 2346 / 2242,
  23373. bottom: 0.015
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(5.5, "feet"),
  23381. default: true
  23382. },
  23383. {
  23384. name: "Big",
  23385. height: math.unit(7.7, "feet")
  23386. },
  23387. ]
  23388. ))
  23389. characterMakers.push(() => makeCharacter(
  23390. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23391. {
  23392. front: {
  23393. height: math.unit(5 + 11 / 12, "feet"),
  23394. weight: math.unit(180, "lb"),
  23395. name: "Front",
  23396. image: {
  23397. source: "./media/characters/sen/front.svg",
  23398. extra: 1321 / 1254,
  23399. bottom: 0.015
  23400. }
  23401. },
  23402. side: {
  23403. height: math.unit(5 + 11 / 12, "feet"),
  23404. weight: math.unit(180, "lb"),
  23405. name: "Side",
  23406. image: {
  23407. source: "./media/characters/sen/side.svg",
  23408. extra: 1321 / 1254,
  23409. bottom: 0.007
  23410. }
  23411. },
  23412. back: {
  23413. height: math.unit(5 + 11 / 12, "feet"),
  23414. weight: math.unit(180, "lb"),
  23415. name: "Back",
  23416. image: {
  23417. source: "./media/characters/sen/back.svg",
  23418. extra: 1321 / 1254
  23419. }
  23420. },
  23421. },
  23422. [
  23423. {
  23424. name: "Normal",
  23425. height: math.unit(5 + 11 / 12, "feet"),
  23426. default: true
  23427. },
  23428. ]
  23429. ))
  23430. characterMakers.push(() => makeCharacter(
  23431. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23432. {
  23433. front: {
  23434. height: math.unit(166.6, "cm"),
  23435. weight: math.unit(66.6, "kg"),
  23436. name: "Front",
  23437. image: {
  23438. source: "./media/characters/fruity/front.svg",
  23439. extra: 1510 / 1386,
  23440. bottom: 0.04
  23441. }
  23442. },
  23443. back: {
  23444. height: math.unit(166.6, "cm"),
  23445. weight: math.unit(66.6, "lb"),
  23446. name: "Back",
  23447. image: {
  23448. source: "./media/characters/fruity/back.svg",
  23449. extra: 1563 / 1435,
  23450. bottom: 0.005
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Normal",
  23457. height: math.unit(166.6, "cm"),
  23458. default: true
  23459. },
  23460. {
  23461. name: "Demonic",
  23462. height: math.unit(166.6, "feet")
  23463. },
  23464. ]
  23465. ))
  23466. characterMakers.push(() => makeCharacter(
  23467. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23468. {
  23469. side: {
  23470. height: math.unit(10, "feet"),
  23471. weight: math.unit(500, "lb"),
  23472. name: "Side",
  23473. image: {
  23474. source: "./media/characters/zost/side.svg",
  23475. extra: 2870/2533,
  23476. bottom: 252/3122
  23477. }
  23478. },
  23479. mawFront: {
  23480. height: math.unit(1.08, "meters"),
  23481. name: "Maw (Front)",
  23482. image: {
  23483. source: "./media/characters/zost/maw-front.svg"
  23484. }
  23485. },
  23486. mawSide: {
  23487. height: math.unit(2.66, "feet"),
  23488. name: "Maw (Side)",
  23489. image: {
  23490. source: "./media/characters/zost/maw-side.svg"
  23491. }
  23492. },
  23493. wingspan: {
  23494. height: math.unit(7.4, "feet"),
  23495. name: "Wingspan",
  23496. image: {
  23497. source: "./media/characters/zost/wingspan.svg"
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(10, "feet"),
  23505. default: true
  23506. },
  23507. ]
  23508. ))
  23509. characterMakers.push(() => makeCharacter(
  23510. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23511. {
  23512. front: {
  23513. height: math.unit(5 + 4 / 12, "feet"),
  23514. weight: math.unit(120, "lb"),
  23515. name: "Front",
  23516. image: {
  23517. source: "./media/characters/luci/front.svg",
  23518. extra: 1985 / 1884,
  23519. bottom: 0.04
  23520. }
  23521. },
  23522. back: {
  23523. height: math.unit(5 + 4 / 12, "feet"),
  23524. weight: math.unit(120, "lb"),
  23525. name: "Back",
  23526. image: {
  23527. source: "./media/characters/luci/back.svg",
  23528. extra: 1892 / 1791,
  23529. bottom: 0.002
  23530. }
  23531. },
  23532. },
  23533. [
  23534. {
  23535. name: "Normal",
  23536. height: math.unit(5 + 4 / 12, "feet"),
  23537. default: true
  23538. },
  23539. ]
  23540. ))
  23541. characterMakers.push(() => makeCharacter(
  23542. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23543. {
  23544. front: {
  23545. height: math.unit(1500, "feet"),
  23546. weight: math.unit(3.8e6, "tons"),
  23547. name: "Front",
  23548. image: {
  23549. source: "./media/characters/2th/front.svg",
  23550. extra: 3489 / 3350,
  23551. bottom: 0.1
  23552. }
  23553. },
  23554. foot: {
  23555. height: math.unit(461, "feet"),
  23556. name: "Foot",
  23557. image: {
  23558. source: "./media/characters/2th/foot.svg"
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "\"Micro\"",
  23565. height: math.unit(15 + 7 / 12, "feet")
  23566. },
  23567. {
  23568. name: "Normal",
  23569. height: math.unit(1500, "feet"),
  23570. default: true
  23571. },
  23572. {
  23573. name: "Macro",
  23574. height: math.unit(5000, "feet")
  23575. },
  23576. {
  23577. name: "Megamacro",
  23578. height: math.unit(15, "miles")
  23579. },
  23580. {
  23581. name: "Gigamacro",
  23582. height: math.unit(4000, "miles")
  23583. },
  23584. {
  23585. name: "Galactic",
  23586. height: math.unit(50, "AU")
  23587. },
  23588. ]
  23589. ))
  23590. characterMakers.push(() => makeCharacter(
  23591. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23592. {
  23593. front: {
  23594. height: math.unit(5 + 6 / 12, "feet"),
  23595. weight: math.unit(220, "lb"),
  23596. name: "Front",
  23597. image: {
  23598. source: "./media/characters/amethyst/front.svg",
  23599. extra: 2078 / 2040,
  23600. bottom: 0.045
  23601. }
  23602. },
  23603. back: {
  23604. height: math.unit(5 + 6 / 12, "feet"),
  23605. weight: math.unit(220, "lb"),
  23606. name: "Back",
  23607. image: {
  23608. source: "./media/characters/amethyst/back.svg",
  23609. extra: 2021 / 1989,
  23610. bottom: 0.02
  23611. }
  23612. },
  23613. },
  23614. [
  23615. {
  23616. name: "Normal",
  23617. height: math.unit(5 + 6 / 12, "feet"),
  23618. default: true
  23619. },
  23620. ]
  23621. ))
  23622. characterMakers.push(() => makeCharacter(
  23623. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23624. {
  23625. front: {
  23626. height: math.unit(4 + 11 / 12, "feet"),
  23627. weight: math.unit(120, "lb"),
  23628. name: "Front",
  23629. image: {
  23630. source: "./media/characters/yumi-akiyama/front.svg",
  23631. extra: 1327 / 1235,
  23632. bottom: 0.02
  23633. }
  23634. },
  23635. back: {
  23636. height: math.unit(4 + 11 / 12, "feet"),
  23637. weight: math.unit(120, "lb"),
  23638. name: "Back",
  23639. image: {
  23640. source: "./media/characters/yumi-akiyama/back.svg",
  23641. extra: 1287 / 1245,
  23642. bottom: 0.002
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Galactic",
  23649. height: math.unit(50, "galaxies"),
  23650. default: true
  23651. },
  23652. {
  23653. name: "Universal",
  23654. height: math.unit(100, "universes")
  23655. },
  23656. ]
  23657. ))
  23658. characterMakers.push(() => makeCharacter(
  23659. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23660. {
  23661. front: {
  23662. height: math.unit(8, "feet"),
  23663. weight: math.unit(500, "lb"),
  23664. name: "Front",
  23665. image: {
  23666. source: "./media/characters/rifter-yrmori/front.svg",
  23667. extra: 1180 / 1125,
  23668. bottom: 0.02
  23669. }
  23670. },
  23671. back: {
  23672. height: math.unit(8, "feet"),
  23673. weight: math.unit(500, "lb"),
  23674. name: "Back",
  23675. image: {
  23676. source: "./media/characters/rifter-yrmori/back.svg",
  23677. extra: 1190 / 1145,
  23678. bottom: 0.001
  23679. }
  23680. },
  23681. wings: {
  23682. height: math.unit(7.75, "feet"),
  23683. weight: math.unit(500, "lb"),
  23684. name: "Wings",
  23685. image: {
  23686. source: "./media/characters/rifter-yrmori/wings.svg",
  23687. extra: 1357 / 1285
  23688. }
  23689. },
  23690. maw: {
  23691. height: math.unit(0.8, "feet"),
  23692. name: "Maw",
  23693. image: {
  23694. source: "./media/characters/rifter-yrmori/maw.svg"
  23695. }
  23696. },
  23697. mawfront: {
  23698. height: math.unit(1.45, "feet"),
  23699. name: "Maw (Front)",
  23700. image: {
  23701. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(8, "feet"),
  23709. default: true
  23710. },
  23711. {
  23712. name: "Macro",
  23713. height: math.unit(42, "meters")
  23714. },
  23715. ]
  23716. ))
  23717. characterMakers.push(() => makeCharacter(
  23718. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23719. {
  23720. were: {
  23721. height: math.unit(25 + 6 / 12, "feet"),
  23722. weight: math.unit(10000, "lb"),
  23723. name: "Were",
  23724. image: {
  23725. source: "./media/characters/tahajin/were.svg",
  23726. extra: 801 / 770,
  23727. bottom: 0.042
  23728. }
  23729. },
  23730. aquatic: {
  23731. height: math.unit(6 + 4 / 12, "feet"),
  23732. weight: math.unit(160, "lb"),
  23733. name: "Aquatic",
  23734. image: {
  23735. source: "./media/characters/tahajin/aquatic.svg",
  23736. extra: 572 / 542,
  23737. bottom: 0.04
  23738. }
  23739. },
  23740. chow: {
  23741. height: math.unit(8 + 11 / 12, "feet"),
  23742. weight: math.unit(450, "lb"),
  23743. name: "Chow",
  23744. image: {
  23745. source: "./media/characters/tahajin/chow.svg",
  23746. extra: 660 / 640,
  23747. bottom: 0.015
  23748. }
  23749. },
  23750. demiNaga: {
  23751. height: math.unit(6 + 8 / 12, "feet"),
  23752. weight: math.unit(300, "lb"),
  23753. name: "Demi Naga",
  23754. image: {
  23755. source: "./media/characters/tahajin/demi-naga.svg",
  23756. extra: 643 / 615,
  23757. bottom: 0.1
  23758. }
  23759. },
  23760. data: {
  23761. height: math.unit(5, "inches"),
  23762. weight: math.unit(0.1, "lb"),
  23763. name: "Data",
  23764. image: {
  23765. source: "./media/characters/tahajin/data.svg"
  23766. }
  23767. },
  23768. fluu: {
  23769. height: math.unit(5 + 7 / 12, "feet"),
  23770. weight: math.unit(140, "lb"),
  23771. name: "Fluu",
  23772. image: {
  23773. source: "./media/characters/tahajin/fluu.svg",
  23774. extra: 628 / 592,
  23775. bottom: 0.02
  23776. }
  23777. },
  23778. starWarrior: {
  23779. height: math.unit(4 + 5 / 12, "feet"),
  23780. weight: math.unit(50, "lb"),
  23781. name: "Star Warrior",
  23782. image: {
  23783. source: "./media/characters/tahajin/star-warrior.svg"
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "Normal",
  23790. height: math.unit(25 + 6 / 12, "feet"),
  23791. default: true
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23797. {
  23798. front: {
  23799. height: math.unit(8, "feet"),
  23800. weight: math.unit(350, "lb"),
  23801. name: "Front",
  23802. image: {
  23803. source: "./media/characters/gabira/front.svg",
  23804. extra: 1261/1154,
  23805. bottom: 51/1312
  23806. }
  23807. },
  23808. back: {
  23809. height: math.unit(8, "feet"),
  23810. weight: math.unit(350, "lb"),
  23811. name: "Back",
  23812. image: {
  23813. source: "./media/characters/gabira/back.svg",
  23814. extra: 1265/1163,
  23815. bottom: 46/1311
  23816. }
  23817. },
  23818. head: {
  23819. height: math.unit(2.85, "feet"),
  23820. name: "Head",
  23821. image: {
  23822. source: "./media/characters/gabira/head.svg"
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Normal",
  23829. height: math.unit(8, "feet"),
  23830. default: true
  23831. },
  23832. ]
  23833. ))
  23834. characterMakers.push(() => makeCharacter(
  23835. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23836. {
  23837. front: {
  23838. height: math.unit(5 + 3 / 12, "feet"),
  23839. weight: math.unit(137, "lb"),
  23840. name: "Front",
  23841. image: {
  23842. source: "./media/characters/sasha-katraine/front.svg",
  23843. extra: 1745/1694,
  23844. bottom: 37/1782
  23845. }
  23846. },
  23847. back: {
  23848. height: math.unit(5 + 3 / 12, "feet"),
  23849. weight: math.unit(137, "lb"),
  23850. name: "Back",
  23851. image: {
  23852. source: "./media/characters/sasha-katraine/back.svg",
  23853. extra: 1776/1699,
  23854. bottom: 26/1802
  23855. }
  23856. },
  23857. },
  23858. [
  23859. {
  23860. name: "Micro",
  23861. height: math.unit(5, "inches")
  23862. },
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(5 + 3 / 12, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23872. {
  23873. side: {
  23874. height: math.unit(4, "inches"),
  23875. weight: math.unit(200, "grams"),
  23876. name: "Side",
  23877. image: {
  23878. source: "./media/characters/der/side.svg",
  23879. extra: 719 / 400,
  23880. bottom: 30.6 / 749.9187
  23881. }
  23882. },
  23883. },
  23884. [
  23885. {
  23886. name: "Micro",
  23887. height: math.unit(4, "inches"),
  23888. default: true
  23889. },
  23890. ]
  23891. ))
  23892. characterMakers.push(() => makeCharacter(
  23893. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23894. {
  23895. side: {
  23896. height: math.unit(30, "meters"),
  23897. weight: math.unit(700, "tonnes"),
  23898. name: "Side",
  23899. image: {
  23900. source: "./media/characters/fixerdragon/side.svg",
  23901. extra: (1293.0514 - 116.03) / 1106.86,
  23902. bottom: 116.03 / 1293.0514
  23903. }
  23904. },
  23905. },
  23906. [
  23907. {
  23908. name: "Planck",
  23909. height: math.unit(1.6e-35, "meters")
  23910. },
  23911. {
  23912. name: "Micro",
  23913. height: math.unit(0.4, "meters")
  23914. },
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(30, "meters"),
  23918. default: true
  23919. },
  23920. {
  23921. name: "Megamacro",
  23922. height: math.unit(1.2, "megameters")
  23923. },
  23924. {
  23925. name: "Teramacro",
  23926. height: math.unit(130, "terameters")
  23927. },
  23928. {
  23929. name: "Yottamacro",
  23930. height: math.unit(6200, "yottameters")
  23931. },
  23932. ]
  23933. ));
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(8, "feet"),
  23939. weight: math.unit(250, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/kite/front.svg",
  23943. extra: 2796 / 2659,
  23944. bottom: 0.002
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(8, "feet"),
  23952. default: true
  23953. },
  23954. {
  23955. name: "Macro",
  23956. height: math.unit(360, "feet")
  23957. },
  23958. {
  23959. name: "Megamacro",
  23960. height: math.unit(1500, "feet")
  23961. },
  23962. ]
  23963. ))
  23964. characterMakers.push(() => makeCharacter(
  23965. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23966. {
  23967. anthro_front: {
  23968. height: math.unit(5 + 11/12, "feet"),
  23969. weight: math.unit(170, "lb"),
  23970. name: "Front",
  23971. image: {
  23972. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23973. extra: 1735/1585,
  23974. bottom: 96/1831
  23975. },
  23976. form: "anthro",
  23977. default: true
  23978. },
  23979. anthro_back: {
  23980. height: math.unit(5 + 11/12, "feet"),
  23981. weight: math.unit(170, "lb"),
  23982. name: "Back",
  23983. image: {
  23984. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23985. extra: 1749/1607,
  23986. bottom: 28/1777
  23987. },
  23988. form: "anthro"
  23989. },
  23990. anthro_male: {
  23991. height: math.unit(5 + 11/12, "feet"),
  23992. weight: math.unit(170, "lb"),
  23993. name: "Male",
  23994. image: {
  23995. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23996. extra: 1855/1713,
  23997. bottom: 63/1918
  23998. },
  23999. form: "anthro"
  24000. },
  24001. taur_front: {
  24002. height: math.unit(5 + 7/12, "feet"),
  24003. weight: math.unit(170, "lb"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24007. extra: 1151/1059,
  24008. bottom: 356/1507
  24009. },
  24010. form: "taur",
  24011. default: true
  24012. },
  24013. anthro_frontDressed: {
  24014. height: math.unit(5 + 11/12, "feet"),
  24015. weight: math.unit(170, "lb"),
  24016. name: "Front (Dressed)",
  24017. image: {
  24018. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24019. extra: 1735/1585,
  24020. bottom: 96/1831
  24021. },
  24022. form: "anthro"
  24023. },
  24024. anthro_backDressed: {
  24025. height: math.unit(5 + 11/12, "feet"),
  24026. weight: math.unit(170, "lb"),
  24027. name: "Back (Dressed)",
  24028. image: {
  24029. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24030. extra: 1749/1607,
  24031. bottom: 28/1777
  24032. },
  24033. form: "anthro"
  24034. },
  24035. anthro_maleDressed: {
  24036. height: math.unit(5 + 11/12, "feet"),
  24037. weight: math.unit(170, "lb"),
  24038. name: "Male (Dressed)",
  24039. image: {
  24040. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24041. extra: 1855/1713,
  24042. bottom: 63/1918
  24043. },
  24044. form: "anthro"
  24045. },
  24046. taur_frontDressed: {
  24047. height: math.unit(5 + 7/12, "feet"),
  24048. weight: math.unit(170, "lb"),
  24049. name: "Front (Dressed)",
  24050. image: {
  24051. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24052. extra: 1151/1059,
  24053. bottom: 356/1507
  24054. },
  24055. form: "taur"
  24056. },
  24057. maw: {
  24058. height: math.unit(1.46, "feet"),
  24059. name: "Maw",
  24060. image: {
  24061. source: "./media/characters/poojawa-vynar/maw.svg"
  24062. },
  24063. allForms: true
  24064. },
  24065. head: {
  24066. height: math.unit(2.34, "feet"),
  24067. name: "Head",
  24068. image: {
  24069. source: "./media/characters/poojawa-vynar/head.svg"
  24070. },
  24071. allForms: true
  24072. },
  24073. leftPaw: {
  24074. height: math.unit(1.72, "feet"),
  24075. name: "Left Paw",
  24076. image: {
  24077. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24078. },
  24079. allForms: true
  24080. },
  24081. rightPaw: {
  24082. height: math.unit(1.61, "feet"),
  24083. name: "Right Paw",
  24084. image: {
  24085. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24086. },
  24087. allForms: true
  24088. },
  24089. toering: {
  24090. height: math.unit(2.9, "inches"),
  24091. name: "Toering",
  24092. image: {
  24093. source: "./media/characters/poojawa-vynar/toering.svg"
  24094. },
  24095. allForms: true
  24096. },
  24097. shaft: {
  24098. height: math.unit(0.625, "feet"),
  24099. name: "Shaft",
  24100. image: {
  24101. source: "./media/characters/poojawa-vynar/shaft.svg"
  24102. },
  24103. allForms: true
  24104. },
  24105. spade: {
  24106. height: math.unit(0.42, "feet"),
  24107. name: "Spade",
  24108. image: {
  24109. source: "./media/characters/poojawa-vynar/spade.svg"
  24110. },
  24111. allForms: true
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Shortstack",
  24117. height: math.unit(4, "feet"),
  24118. form: "anthro"
  24119. },
  24120. {
  24121. name: "Normal",
  24122. height: math.unit(5 + 11 / 12, "feet"),
  24123. form: "anthro",
  24124. default: true
  24125. },
  24126. {
  24127. name: "Tauric",
  24128. height: math.unit(4, "meters"),
  24129. form: "taur",
  24130. default: true
  24131. },
  24132. ],
  24133. {
  24134. "anthro": {
  24135. name: "Anthro",
  24136. default: true
  24137. },
  24138. "taur": {
  24139. name: "Taur",
  24140. },
  24141. }
  24142. ))
  24143. characterMakers.push(() => makeCharacter(
  24144. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24145. {
  24146. front: {
  24147. height: math.unit(293, "meters"),
  24148. weight: math.unit(70400, "tons"),
  24149. name: "Front",
  24150. image: {
  24151. source: "./media/characters/violette/front.svg",
  24152. extra: 1227 / 1180,
  24153. bottom: 0.005
  24154. }
  24155. },
  24156. back: {
  24157. height: math.unit(293, "meters"),
  24158. weight: math.unit(70400, "tons"),
  24159. name: "Back",
  24160. image: {
  24161. source: "./media/characters/violette/back.svg",
  24162. extra: 1227 / 1180,
  24163. bottom: 0.005
  24164. }
  24165. },
  24166. },
  24167. [
  24168. {
  24169. name: "Macro",
  24170. height: math.unit(293, "meters"),
  24171. default: true
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24177. {
  24178. front: {
  24179. height: math.unit(1050, "feet"),
  24180. weight: math.unit(200000, "tons"),
  24181. name: "Front",
  24182. image: {
  24183. source: "./media/characters/alessandra/front.svg",
  24184. extra: 960 / 912,
  24185. bottom: 0.06
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Macro",
  24192. height: math.unit(1050, "feet")
  24193. },
  24194. {
  24195. name: "Macro+",
  24196. height: math.unit(900, "meters"),
  24197. default: true
  24198. },
  24199. ]
  24200. ))
  24201. characterMakers.push(() => makeCharacter(
  24202. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24203. {
  24204. front: {
  24205. height: math.unit(5, "feet"),
  24206. weight: math.unit(187, "lb"),
  24207. name: "Front",
  24208. image: {
  24209. source: "./media/characters/person/front.svg",
  24210. extra: 3087 / 2945,
  24211. bottom: 91 / 3181
  24212. }
  24213. },
  24214. },
  24215. [
  24216. {
  24217. name: "Micro",
  24218. height: math.unit(3, "inches")
  24219. },
  24220. {
  24221. name: "Normal",
  24222. height: math.unit(5, "feet"),
  24223. default: true
  24224. },
  24225. {
  24226. name: "Macro",
  24227. height: math.unit(90, "feet")
  24228. },
  24229. {
  24230. name: "Max Size",
  24231. height: math.unit(280, "feet")
  24232. },
  24233. ]
  24234. ))
  24235. characterMakers.push(() => makeCharacter(
  24236. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24237. {
  24238. front: {
  24239. height: math.unit(4.5, "meters"),
  24240. weight: math.unit(3200, "lb"),
  24241. name: "Front",
  24242. image: {
  24243. source: "./media/characters/ty/front.svg",
  24244. extra: 1038 / 960,
  24245. bottom: 31.156 / 1068
  24246. }
  24247. },
  24248. back: {
  24249. height: math.unit(4.5, "meters"),
  24250. weight: math.unit(3200, "lb"),
  24251. name: "Back",
  24252. image: {
  24253. source: "./media/characters/ty/back.svg",
  24254. extra: 1044 / 966,
  24255. bottom: 7.48 / 1049
  24256. }
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "Normal",
  24262. height: math.unit(4.5, "meters"),
  24263. default: true
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24269. {
  24270. front: {
  24271. height: math.unit(5 + 4 / 12, "feet"),
  24272. weight: math.unit(115, "lb"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/rocky/front.svg",
  24276. extra: 1012 / 975,
  24277. bottom: 54 / 1066
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(5 + 4 / 12, "feet"),
  24285. default: true
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24291. {
  24292. upright: {
  24293. height: math.unit(6, "meters"),
  24294. weight: math.unit(4000, "kg"),
  24295. name: "Upright",
  24296. image: {
  24297. source: "./media/characters/ruin/upright.svg",
  24298. extra: 668 / 661,
  24299. bottom: 42 / 799.8396
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Normal",
  24306. height: math.unit(6, "meters"),
  24307. default: true
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24313. {
  24314. front: {
  24315. height: math.unit(5, "feet"),
  24316. weight: math.unit(106, "lb"),
  24317. name: "Front",
  24318. image: {
  24319. source: "./media/characters/robin/front.svg",
  24320. extra: 862 / 799,
  24321. bottom: 42.4 / 914.8856
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(5, "feet"),
  24329. default: true
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24335. {
  24336. side: {
  24337. height: math.unit(3, "feet"),
  24338. weight: math.unit(225, "lb"),
  24339. name: "Side",
  24340. image: {
  24341. source: "./media/characters/saian/side.svg",
  24342. extra: 566 / 356,
  24343. bottom: 79.7 / 643
  24344. }
  24345. },
  24346. maw: {
  24347. height: math.unit(2.85, "feet"),
  24348. name: "Maw",
  24349. image: {
  24350. source: "./media/characters/saian/maw.svg"
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Normal",
  24357. height: math.unit(3, "feet"),
  24358. default: true
  24359. },
  24360. ]
  24361. ))
  24362. characterMakers.push(() => makeCharacter(
  24363. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24364. {
  24365. side: {
  24366. height: math.unit(8, "feet"),
  24367. weight: math.unit(300, "lb"),
  24368. name: "Side",
  24369. image: {
  24370. source: "./media/characters/equus-silvermane/side.svg",
  24371. extra: 2176 / 2050,
  24372. bottom: 65.7 / 2245
  24373. }
  24374. },
  24375. front: {
  24376. height: math.unit(8, "feet"),
  24377. weight: math.unit(300, "lb"),
  24378. name: "Front",
  24379. image: {
  24380. source: "./media/characters/equus-silvermane/front.svg",
  24381. extra: 4633 / 4400,
  24382. bottom: 71.3 / 4706.915
  24383. }
  24384. },
  24385. sideStepping: {
  24386. height: math.unit(8, "feet"),
  24387. weight: math.unit(300, "lb"),
  24388. name: "Side (Stepping)",
  24389. image: {
  24390. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24391. extra: 1968 / 1860,
  24392. bottom: 16.4 / 1989
  24393. }
  24394. },
  24395. },
  24396. [
  24397. {
  24398. name: "Normal",
  24399. height: math.unit(8, "feet")
  24400. },
  24401. {
  24402. name: "Minimacro",
  24403. height: math.unit(75, "feet"),
  24404. default: true
  24405. },
  24406. {
  24407. name: "Macro",
  24408. height: math.unit(150, "feet")
  24409. },
  24410. {
  24411. name: "Macro+",
  24412. height: math.unit(1000, "feet")
  24413. },
  24414. {
  24415. name: "Megamacro",
  24416. height: math.unit(1, "mile")
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24422. {
  24423. side: {
  24424. height: math.unit(20, "feet"),
  24425. weight: math.unit(30000, "kg"),
  24426. name: "Side",
  24427. image: {
  24428. source: "./media/characters/windar/side.svg",
  24429. extra: 1491 / 1248,
  24430. bottom: 82.56 / 1568
  24431. }
  24432. },
  24433. },
  24434. [
  24435. {
  24436. name: "Normal",
  24437. height: math.unit(20, "feet"),
  24438. default: true
  24439. },
  24440. ]
  24441. ))
  24442. characterMakers.push(() => makeCharacter(
  24443. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24444. {
  24445. side: {
  24446. height: math.unit(15.66, "feet"),
  24447. weight: math.unit(150, "lb"),
  24448. name: "Side",
  24449. image: {
  24450. source: "./media/characters/melody/side.svg",
  24451. extra: 1097 / 944,
  24452. bottom: 11.8 / 1109
  24453. }
  24454. },
  24455. sideOutfit: {
  24456. height: math.unit(15.66, "feet"),
  24457. weight: math.unit(150, "lb"),
  24458. name: "Side (Outfit)",
  24459. image: {
  24460. source: "./media/characters/melody/side-outfit.svg",
  24461. extra: 1097 / 944,
  24462. bottom: 11.8 / 1109
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Normal",
  24469. height: math.unit(15.66, "feet"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24476. {
  24477. armoredFront: {
  24478. height: math.unit(8, "feet"),
  24479. weight: math.unit(325, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/windera/armored-front.svg",
  24483. extra: 1830/1598,
  24484. bottom: 151/1981
  24485. },
  24486. form: "armored",
  24487. default: true
  24488. },
  24489. macroFront: {
  24490. height: math.unit(70, "feet"),
  24491. weight: math.unit(315453, "lb"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/windera/macro-front.svg",
  24495. extra: 963/883,
  24496. bottom: 23/986
  24497. },
  24498. form: "macro",
  24499. default: true
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Normal",
  24505. height: math.unit(8, "feet"),
  24506. default: true,
  24507. form: "armored"
  24508. },
  24509. {
  24510. name: "Normal",
  24511. height: math.unit(70, "feet"),
  24512. default: true,
  24513. form: "macro"
  24514. },
  24515. ],
  24516. {
  24517. "armored": {
  24518. name: "Armored",
  24519. default: true
  24520. },
  24521. "macro": {
  24522. name: "Macro",
  24523. },
  24524. }
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24528. {
  24529. front: {
  24530. height: math.unit(28.75, "feet"),
  24531. weight: math.unit(2000, "kg"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/sonear/front.svg",
  24535. extra: 1041.1 / 964.9,
  24536. bottom: 53.7 / 1096.6
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Normal",
  24543. height: math.unit(28.75, "feet"),
  24544. default: true
  24545. },
  24546. ]
  24547. ))
  24548. characterMakers.push(() => makeCharacter(
  24549. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24550. {
  24551. side: {
  24552. height: math.unit(25.5, "feet"),
  24553. weight: math.unit(23000, "kg"),
  24554. name: "Side",
  24555. image: {
  24556. source: "./media/characters/kanara/side.svg"
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Normal",
  24563. height: math.unit(25.5, "feet"),
  24564. default: true
  24565. },
  24566. ]
  24567. ))
  24568. characterMakers.push(() => makeCharacter(
  24569. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24570. {
  24571. side: {
  24572. height: math.unit(10, "feet"),
  24573. weight: math.unit(1000, "kg"),
  24574. name: "Side",
  24575. image: {
  24576. source: "./media/characters/ereus/side.svg",
  24577. extra: 1157 / 959,
  24578. bottom: 153 / 1312.5
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(10, "feet"),
  24586. default: true
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24592. {
  24593. side: {
  24594. height: math.unit(4.5, "feet"),
  24595. weight: math.unit(500, "lb"),
  24596. name: "Side",
  24597. image: {
  24598. source: "./media/characters/e-ter/side.svg",
  24599. extra: 1550 / 1248,
  24600. bottom: 146 / 1694
  24601. }
  24602. },
  24603. },
  24604. [
  24605. {
  24606. name: "Normal",
  24607. height: math.unit(4.5, "feet"),
  24608. default: true
  24609. },
  24610. ]
  24611. ))
  24612. characterMakers.push(() => makeCharacter(
  24613. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24614. {
  24615. side: {
  24616. height: math.unit(9.7, "feet"),
  24617. weight: math.unit(4000, "kg"),
  24618. name: "Side",
  24619. image: {
  24620. source: "./media/characters/yamie/side.svg"
  24621. }
  24622. },
  24623. },
  24624. [
  24625. {
  24626. name: "Normal",
  24627. height: math.unit(9.7, "feet"),
  24628. default: true
  24629. },
  24630. ]
  24631. ))
  24632. characterMakers.push(() => makeCharacter(
  24633. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24634. {
  24635. front: {
  24636. height: math.unit(50, "feet"),
  24637. weight: math.unit(50000, "kg"),
  24638. name: "Front",
  24639. image: {
  24640. source: "./media/characters/anders/front.svg",
  24641. extra: 570 / 539,
  24642. bottom: 14.7 / 586.7
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Large",
  24649. height: math.unit(50, "feet")
  24650. },
  24651. {
  24652. name: "Macro",
  24653. height: math.unit(2000, "feet"),
  24654. default: true
  24655. },
  24656. {
  24657. name: "Megamacro",
  24658. height: math.unit(12, "miles")
  24659. },
  24660. ]
  24661. ))
  24662. characterMakers.push(() => makeCharacter(
  24663. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24664. {
  24665. front: {
  24666. height: math.unit(7 + 2 / 12, "feet"),
  24667. weight: math.unit(300, "lb"),
  24668. name: "Front",
  24669. image: {
  24670. source: "./media/characters/reban/front.svg",
  24671. extra: 1287/1212,
  24672. bottom: 148/1435
  24673. }
  24674. },
  24675. head: {
  24676. height: math.unit(1.95, "feet"),
  24677. name: "Head",
  24678. image: {
  24679. source: "./media/characters/reban/head.svg"
  24680. }
  24681. },
  24682. maw: {
  24683. height: math.unit(0.95, "feet"),
  24684. name: "Maw",
  24685. image: {
  24686. source: "./media/characters/reban/maw.svg"
  24687. }
  24688. },
  24689. foot: {
  24690. height: math.unit(1.65, "feet"),
  24691. name: "Foot",
  24692. image: {
  24693. source: "./media/characters/reban/foot.svg"
  24694. }
  24695. },
  24696. dick: {
  24697. height: math.unit(7 / 5, "feet"),
  24698. name: "Dick",
  24699. image: {
  24700. source: "./media/characters/reban/dick.svg"
  24701. }
  24702. },
  24703. },
  24704. [
  24705. {
  24706. name: "Natural Height",
  24707. height: math.unit(7 + 2 / 12, "feet")
  24708. },
  24709. {
  24710. name: "Macro",
  24711. height: math.unit(500, "feet"),
  24712. default: true
  24713. },
  24714. {
  24715. name: "Canon Height",
  24716. height: math.unit(50, "AU")
  24717. },
  24718. ]
  24719. ))
  24720. characterMakers.push(() => makeCharacter(
  24721. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24722. {
  24723. front: {
  24724. height: math.unit(6, "feet"),
  24725. weight: math.unit(150, "lb"),
  24726. name: "Front",
  24727. image: {
  24728. source: "./media/characters/terrance-keayes/front.svg",
  24729. extra: 1.005,
  24730. bottom: 151 / 1615
  24731. }
  24732. },
  24733. side: {
  24734. height: math.unit(6, "feet"),
  24735. weight: math.unit(150, "lb"),
  24736. name: "Side",
  24737. image: {
  24738. source: "./media/characters/terrance-keayes/side.svg",
  24739. extra: 1.005,
  24740. bottom: 129.4 / 1544
  24741. }
  24742. },
  24743. back: {
  24744. height: math.unit(6, "feet"),
  24745. weight: math.unit(150, "lb"),
  24746. name: "Back",
  24747. image: {
  24748. source: "./media/characters/terrance-keayes/back.svg",
  24749. extra: 1.005,
  24750. bottom: 58.4 / 1557.3
  24751. }
  24752. },
  24753. dick: {
  24754. height: math.unit(6 * 0.208, "feet"),
  24755. name: "Dick",
  24756. image: {
  24757. source: "./media/characters/terrance-keayes/dick.svg"
  24758. }
  24759. },
  24760. },
  24761. [
  24762. {
  24763. name: "Canon Height",
  24764. height: math.unit(35, "miles"),
  24765. default: true
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(6, "feet"),
  24774. weight: math.unit(150, "lb"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/ofelia/front.svg",
  24778. extra: 1130/1117,
  24779. bottom: 91/1221
  24780. }
  24781. },
  24782. back: {
  24783. height: math.unit(6, "feet"),
  24784. weight: math.unit(150, "lb"),
  24785. name: "Back",
  24786. image: {
  24787. source: "./media/characters/ofelia/back.svg",
  24788. extra: 1172/1159,
  24789. bottom: 28/1200
  24790. }
  24791. },
  24792. maw: {
  24793. height: math.unit(1, "feet"),
  24794. name: "Maw",
  24795. image: {
  24796. source: "./media/characters/ofelia/maw.svg"
  24797. }
  24798. },
  24799. foot: {
  24800. height: math.unit(1.949, "feet"),
  24801. name: "Foot",
  24802. image: {
  24803. source: "./media/characters/ofelia/foot.svg"
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Canon Height",
  24810. height: math.unit(2000, "miles"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(6, "feet"),
  24820. weight: math.unit(150, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/samuel/front.svg",
  24824. extra: 265 / 258,
  24825. bottom: 2 / 266.1566
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Macro",
  24832. height: math.unit(100, "feet"),
  24833. default: true
  24834. },
  24835. {
  24836. name: "Full Size",
  24837. height: math.unit(1000, "miles")
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24843. {
  24844. front: {
  24845. height: math.unit(6, "feet"),
  24846. weight: math.unit(300, "lb"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/beishir-kiel/front.svg",
  24850. extra: 569 / 547,
  24851. bottom: 41.9 / 609
  24852. }
  24853. },
  24854. maw: {
  24855. height: math.unit(6 * 0.202, "feet"),
  24856. name: "Maw",
  24857. image: {
  24858. source: "./media/characters/beishir-kiel/maw.svg"
  24859. }
  24860. },
  24861. },
  24862. [
  24863. {
  24864. name: "Macro",
  24865. height: math.unit(300, "feet"),
  24866. default: true
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24872. {
  24873. front: {
  24874. height: math.unit(5 + 7/12, "feet"),
  24875. weight: math.unit(120, "lb"),
  24876. name: "Front",
  24877. image: {
  24878. source: "./media/characters/logan-grey/front.svg",
  24879. extra: 1836/1738,
  24880. bottom: 108/1944
  24881. }
  24882. },
  24883. back: {
  24884. height: math.unit(5 + 7/12, "feet"),
  24885. weight: math.unit(120, "lb"),
  24886. name: "Back",
  24887. image: {
  24888. source: "./media/characters/logan-grey/back.svg",
  24889. extra: 1880/1794,
  24890. bottom: 24/1904
  24891. }
  24892. },
  24893. frontSfw: {
  24894. height: math.unit(5 + 7/12, "feet"),
  24895. weight: math.unit(120, "lb"),
  24896. name: "Front (SFW)",
  24897. image: {
  24898. source: "./media/characters/logan-grey/front-sfw.svg",
  24899. extra: 1836/1738,
  24900. bottom: 108/1944
  24901. }
  24902. },
  24903. backSfw: {
  24904. height: math.unit(5 + 7/12, "feet"),
  24905. weight: math.unit(120, "lb"),
  24906. name: "Back (SFW)",
  24907. image: {
  24908. source: "./media/characters/logan-grey/back-sfw.svg",
  24909. extra: 1880/1794,
  24910. bottom: 24/1904
  24911. }
  24912. },
  24913. hands: {
  24914. height: math.unit(0.84, "feet"),
  24915. name: "Hands",
  24916. image: {
  24917. source: "./media/characters/logan-grey/hands.svg"
  24918. }
  24919. },
  24920. paws: {
  24921. height: math.unit(0.72, "feet"),
  24922. name: "Paws",
  24923. image: {
  24924. source: "./media/characters/logan-grey/paws.svg"
  24925. }
  24926. },
  24927. cock: {
  24928. height: math.unit(1.45, "feet"),
  24929. name: "Cock",
  24930. image: {
  24931. source: "./media/characters/logan-grey/cock.svg"
  24932. }
  24933. },
  24934. cockAlt: {
  24935. height: math.unit(1.437, "feet"),
  24936. name: "Cock (alt)",
  24937. image: {
  24938. source: "./media/characters/logan-grey/cock-alt.svg"
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(5 + 8 / 12, "feet")
  24946. },
  24947. {
  24948. name: "The 500 Foot Femboy",
  24949. height: math.unit(500, "feet"),
  24950. default: true
  24951. },
  24952. {
  24953. name: "Megmacro",
  24954. height: math.unit(20, "miles")
  24955. },
  24956. ]
  24957. ))
  24958. characterMakers.push(() => makeCharacter(
  24959. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24960. {
  24961. front: {
  24962. height: math.unit(8 + 2 / 12, "feet"),
  24963. weight: math.unit(275, "lb"),
  24964. name: "Front",
  24965. image: {
  24966. source: "./media/characters/draganta/front.svg",
  24967. extra: 1177 / 1135,
  24968. bottom: 33.46 / 1212.1
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Normal",
  24975. height: math.unit(8 + 6 / 12, "feet"),
  24976. default: true
  24977. },
  24978. {
  24979. name: "Macro",
  24980. height: math.unit(150, "feet")
  24981. },
  24982. {
  24983. name: "Megamacro",
  24984. height: math.unit(1000, "miles")
  24985. },
  24986. ]
  24987. ))
  24988. characterMakers.push(() => makeCharacter(
  24989. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24990. {
  24991. front: {
  24992. height: math.unit(1.72, "m"),
  24993. weight: math.unit(80, "lb"),
  24994. name: "Front",
  24995. image: {
  24996. source: "./media/characters/voski/front.svg",
  24997. extra: 2076.22 / 2022.4,
  24998. bottom: 102.7 / 2177.3866
  24999. }
  25000. },
  25001. frontFlaccid: {
  25002. height: math.unit(1.72, "m"),
  25003. weight: math.unit(80, "lb"),
  25004. name: "Front (Flaccid)",
  25005. image: {
  25006. source: "./media/characters/voski/front-flaccid.svg",
  25007. extra: 2076.22 / 2022.4,
  25008. bottom: 102.7 / 2177.3866
  25009. }
  25010. },
  25011. frontErect: {
  25012. height: math.unit(1.72, "m"),
  25013. weight: math.unit(80, "lb"),
  25014. name: "Front (Erect)",
  25015. image: {
  25016. source: "./media/characters/voski/front-erect.svg",
  25017. extra: 2076.22 / 2022.4,
  25018. bottom: 102.7 / 2177.3866
  25019. }
  25020. },
  25021. back: {
  25022. height: math.unit(1.72, "m"),
  25023. weight: math.unit(80, "lb"),
  25024. name: "Back",
  25025. image: {
  25026. source: "./media/characters/voski/back.svg",
  25027. extra: 2104 / 2051,
  25028. bottom: 10.45 / 2113.63
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Normal",
  25035. height: math.unit(1.72, "m")
  25036. },
  25037. {
  25038. name: "Macro",
  25039. height: math.unit(55, "m"),
  25040. default: true
  25041. },
  25042. {
  25043. name: "Macro+",
  25044. height: math.unit(300, "m")
  25045. },
  25046. {
  25047. name: "Macro++",
  25048. height: math.unit(700, "m")
  25049. },
  25050. {
  25051. name: "Macro+++",
  25052. height: math.unit(4500, "m")
  25053. },
  25054. {
  25055. name: "Macro++++",
  25056. height: math.unit(45, "km")
  25057. },
  25058. {
  25059. name: "Macro+++++",
  25060. height: math.unit(1220, "km")
  25061. },
  25062. ]
  25063. ))
  25064. characterMakers.push(() => makeCharacter(
  25065. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25066. {
  25067. front: {
  25068. height: math.unit(2.3, "m"),
  25069. weight: math.unit(304, "kg"),
  25070. name: "Front",
  25071. image: {
  25072. source: "./media/characters/icowom-lee/front.svg",
  25073. extra: 985 / 955,
  25074. bottom: 25.4 / 1012
  25075. }
  25076. },
  25077. fronttentacles: {
  25078. height: math.unit(2.3, "m"),
  25079. weight: math.unit(304, "kg"),
  25080. name: "Front-tentacles",
  25081. image: {
  25082. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25083. extra: 985 / 955,
  25084. bottom: 25.4 / 1012
  25085. }
  25086. },
  25087. back: {
  25088. height: math.unit(2.3, "m"),
  25089. weight: math.unit(304, "kg"),
  25090. name: "Back",
  25091. image: {
  25092. source: "./media/characters/icowom-lee/back.svg",
  25093. extra: 975 / 954,
  25094. bottom: 9.5 / 985
  25095. }
  25096. },
  25097. backtentacles: {
  25098. height: math.unit(2.3, "m"),
  25099. weight: math.unit(304, "kg"),
  25100. name: "Back-tentacles",
  25101. image: {
  25102. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25103. extra: 975 / 954,
  25104. bottom: 9.5 / 985
  25105. }
  25106. },
  25107. frontDressed: {
  25108. height: math.unit(2.3, "m"),
  25109. weight: math.unit(304, "kg"),
  25110. name: "Front (Dressed)",
  25111. image: {
  25112. source: "./media/characters/icowom-lee/front-dressed.svg",
  25113. extra: 3076 / 2933,
  25114. bottom: 51.4 / 3125.1889
  25115. }
  25116. },
  25117. rump: {
  25118. height: math.unit(0.776, "meters"),
  25119. name: "Rump",
  25120. image: {
  25121. source: "./media/characters/icowom-lee/rump.svg"
  25122. }
  25123. },
  25124. genitals: {
  25125. height: math.unit(0.78, "meters"),
  25126. name: "Genitals",
  25127. image: {
  25128. source: "./media/characters/icowom-lee/genitals.svg"
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Normal",
  25135. height: math.unit(2.3, "meters"),
  25136. default: true
  25137. },
  25138. {
  25139. name: "Macro",
  25140. height: math.unit(94, "meters"),
  25141. default: true
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25147. {
  25148. front: {
  25149. height: math.unit(22, "meters"),
  25150. weight: math.unit(21000, "kg"),
  25151. name: "Front",
  25152. image: {
  25153. source: "./media/characters/shock-diamond/front.svg",
  25154. extra: 2204 / 2053,
  25155. bottom: 65 / 2239.47
  25156. }
  25157. },
  25158. frontNude: {
  25159. height: math.unit(22, "meters"),
  25160. weight: math.unit(21000, "kg"),
  25161. name: "Front (Nude)",
  25162. image: {
  25163. source: "./media/characters/shock-diamond/front-nude.svg",
  25164. extra: 2514 / 2285,
  25165. bottom: 13 / 2527.56
  25166. }
  25167. },
  25168. },
  25169. [
  25170. {
  25171. name: "Normal",
  25172. height: math.unit(3, "meters")
  25173. },
  25174. {
  25175. name: "Macro",
  25176. height: math.unit(22, "meters"),
  25177. default: true
  25178. },
  25179. ]
  25180. ))
  25181. characterMakers.push(() => makeCharacter(
  25182. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25183. {
  25184. front: {
  25185. height: math.unit(5 + 4/12, "feet"),
  25186. weight: math.unit(125, "lb"),
  25187. name: "Front",
  25188. image: {
  25189. source: "./media/characters/rory/front.svg",
  25190. extra: 1790/1681,
  25191. bottom: 66/1856
  25192. },
  25193. form: "normal",
  25194. default: true
  25195. },
  25196. back: {
  25197. height: math.unit(5 + 4/12, "feet"),
  25198. weight: math.unit(125, "lb"),
  25199. name: "Back",
  25200. image: {
  25201. source: "./media/characters/rory/back.svg",
  25202. extra: 1805/1690,
  25203. bottom: 56/1861
  25204. },
  25205. form: "normal"
  25206. },
  25207. frontDressed: {
  25208. height: math.unit(5 + 4/12, "feet"),
  25209. weight: math.unit(125, "lb"),
  25210. name: "Front (Dressed)",
  25211. image: {
  25212. source: "./media/characters/rory/front-dressed.svg",
  25213. extra: 1790/1681,
  25214. bottom: 66/1856
  25215. },
  25216. form: "normal"
  25217. },
  25218. backDressed: {
  25219. height: math.unit(5 + 4/12, "feet"),
  25220. weight: math.unit(125, "lb"),
  25221. name: "Back (Dressed)",
  25222. image: {
  25223. source: "./media/characters/rory/back-dressed.svg",
  25224. extra: 1805/1690,
  25225. bottom: 56/1861
  25226. },
  25227. form: "normal"
  25228. },
  25229. frontNsfw: {
  25230. height: math.unit(5 + 4/12, "feet"),
  25231. weight: math.unit(125, "lb"),
  25232. name: "Front (NSFW)",
  25233. image: {
  25234. source: "./media/characters/rory/front-nsfw.svg",
  25235. extra: 1790/1681,
  25236. bottom: 66/1856
  25237. },
  25238. form: "normal"
  25239. },
  25240. backNsfw: {
  25241. height: math.unit(5 + 4/12, "feet"),
  25242. weight: math.unit(125, "lb"),
  25243. name: "Back (NSFW)",
  25244. image: {
  25245. source: "./media/characters/rory/back-nsfw.svg",
  25246. extra: 1805/1690,
  25247. bottom: 56/1861
  25248. },
  25249. form: "normal"
  25250. },
  25251. dick: {
  25252. height: math.unit(0.8, "feet"),
  25253. name: "Dick",
  25254. image: {
  25255. source: "./media/characters/rory/dick.svg"
  25256. },
  25257. form: "normal"
  25258. },
  25259. thicc_front: {
  25260. height: math.unit(5 + 4/12, "feet"),
  25261. weight: math.unit(195, "lb"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/rory/thicc-front.svg",
  25265. extra: 1220/1100,
  25266. bottom: 103/1323
  25267. },
  25268. form: "thicc",
  25269. default: true
  25270. },
  25271. thicc_back: {
  25272. height: math.unit(5 + 4/12, "feet"),
  25273. weight: math.unit(195, "lb"),
  25274. name: "Back",
  25275. image: {
  25276. source: "./media/characters/rory/thicc-back.svg",
  25277. extra: 1166/1086,
  25278. bottom: 35/1201
  25279. },
  25280. form: "thicc"
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Micro",
  25286. height: math.unit(3, "inches"),
  25287. allForms: true
  25288. },
  25289. {
  25290. name: "Normal",
  25291. height: math.unit(5 + 4/12, "feet"),
  25292. allForms: true,
  25293. default: true
  25294. },
  25295. {
  25296. name: "Macro",
  25297. height: math.unit(90, "feet"),
  25298. allForms: true
  25299. },
  25300. {
  25301. name: "Supercharged",
  25302. height: math.unit(270, "feet"),
  25303. allForms: true
  25304. },
  25305. ],
  25306. {
  25307. "normal": {
  25308. name: "Normal",
  25309. default: true
  25310. },
  25311. "thicc": {
  25312. name: "Thicc",
  25313. },
  25314. }
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25318. {
  25319. front: {
  25320. height: math.unit(5 + 9 / 12, "feet"),
  25321. weight: math.unit(190, "lb"),
  25322. name: "Front",
  25323. image: {
  25324. source: "./media/characters/sprisk/front.svg",
  25325. extra: 1225 / 1180,
  25326. bottom: 42.7 / 1266.4
  25327. }
  25328. },
  25329. frontNsfw: {
  25330. height: math.unit(5 + 9 / 12, "feet"),
  25331. weight: math.unit(190, "lb"),
  25332. name: "Front (NSFW)",
  25333. image: {
  25334. source: "./media/characters/sprisk/front-nsfw.svg",
  25335. extra: 1225 / 1180,
  25336. bottom: 42.7 / 1266.4
  25337. }
  25338. },
  25339. back: {
  25340. height: math.unit(5 + 9 / 12, "feet"),
  25341. weight: math.unit(190, "lb"),
  25342. name: "Back",
  25343. image: {
  25344. source: "./media/characters/sprisk/back.svg",
  25345. extra: 1247 / 1200,
  25346. bottom: 5.6 / 1253.04
  25347. }
  25348. },
  25349. },
  25350. [
  25351. {
  25352. name: "Tiny",
  25353. height: math.unit(2, "inches")
  25354. },
  25355. {
  25356. name: "Normal",
  25357. height: math.unit(5 + 9 / 12, "feet"),
  25358. default: true
  25359. },
  25360. {
  25361. name: "Mini Macro",
  25362. height: math.unit(18, "feet")
  25363. },
  25364. {
  25365. name: "Macro",
  25366. height: math.unit(100, "feet")
  25367. },
  25368. {
  25369. name: "MACRO",
  25370. height: math.unit(50, "miles")
  25371. },
  25372. {
  25373. name: "M A C R O",
  25374. height: math.unit(300, "miles")
  25375. },
  25376. ]
  25377. ))
  25378. characterMakers.push(() => makeCharacter(
  25379. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25380. {
  25381. side: {
  25382. height: math.unit(15.6, "meters"),
  25383. weight: math.unit(700000, "kg"),
  25384. name: "Side",
  25385. image: {
  25386. source: "./media/characters/bunsen/side.svg",
  25387. extra: 1644 / 358
  25388. }
  25389. },
  25390. foot: {
  25391. height: math.unit(1.611 * 1644 / 358, "meter"),
  25392. name: "Foot",
  25393. image: {
  25394. source: "./media/characters/bunsen/foot.svg"
  25395. }
  25396. },
  25397. },
  25398. [
  25399. {
  25400. name: "Small",
  25401. height: math.unit(10, "feet")
  25402. },
  25403. {
  25404. name: "Normal",
  25405. height: math.unit(15.6, "meters"),
  25406. default: true
  25407. },
  25408. ]
  25409. ))
  25410. characterMakers.push(() => makeCharacter(
  25411. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25412. {
  25413. front: {
  25414. height: math.unit(4 + 11 / 12, "feet"),
  25415. weight: math.unit(140, "lb"),
  25416. name: "Front",
  25417. image: {
  25418. source: "./media/characters/sesh/front.svg",
  25419. extra: 3420 / 3231,
  25420. bottom: 72 / 3949.5
  25421. }
  25422. },
  25423. },
  25424. [
  25425. {
  25426. name: "Normal",
  25427. height: math.unit(4 + 11 / 12, "feet")
  25428. },
  25429. {
  25430. name: "Grown",
  25431. height: math.unit(15, "feet"),
  25432. default: true
  25433. },
  25434. {
  25435. name: "Macro",
  25436. height: math.unit(1500, "feet")
  25437. },
  25438. {
  25439. name: "Megamacro",
  25440. height: math.unit(30, "miles")
  25441. },
  25442. {
  25443. name: "Continental",
  25444. height: math.unit(3000, "miles")
  25445. },
  25446. {
  25447. name: "Gravity Mass",
  25448. height: math.unit(300000, "miles")
  25449. },
  25450. {
  25451. name: "Planet Buster",
  25452. height: math.unit(30000000, "miles")
  25453. },
  25454. {
  25455. name: "Big",
  25456. height: math.unit(3000000000, "miles")
  25457. },
  25458. ]
  25459. ))
  25460. characterMakers.push(() => makeCharacter(
  25461. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25462. {
  25463. front: {
  25464. height: math.unit(9, "feet"),
  25465. weight: math.unit(350, "lb"),
  25466. name: "Front",
  25467. image: {
  25468. source: "./media/characters/pepper/front.svg",
  25469. extra: 1448 / 1312,
  25470. bottom: 9.4 / 1457.88
  25471. }
  25472. },
  25473. back: {
  25474. height: math.unit(9, "feet"),
  25475. weight: math.unit(350, "lb"),
  25476. name: "Back",
  25477. image: {
  25478. source: "./media/characters/pepper/back.svg",
  25479. extra: 1423 / 1300,
  25480. bottom: 4.6 / 1429
  25481. }
  25482. },
  25483. maw: {
  25484. height: math.unit(0.932, "feet"),
  25485. name: "Maw",
  25486. image: {
  25487. source: "./media/characters/pepper/maw.svg"
  25488. }
  25489. },
  25490. },
  25491. [
  25492. {
  25493. name: "Normal",
  25494. height: math.unit(9, "feet"),
  25495. default: true
  25496. },
  25497. ]
  25498. ))
  25499. characterMakers.push(() => makeCharacter(
  25500. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25501. {
  25502. front: {
  25503. height: math.unit(6, "feet"),
  25504. weight: math.unit(150, "lb"),
  25505. name: "Front",
  25506. image: {
  25507. source: "./media/characters/maelstrom/front.svg",
  25508. extra: 2100 / 1883,
  25509. bottom: 94 / 2196.7
  25510. }
  25511. },
  25512. },
  25513. [
  25514. {
  25515. name: "Less Kaiju",
  25516. height: math.unit(200, "feet")
  25517. },
  25518. {
  25519. name: "Kaiju",
  25520. height: math.unit(400, "feet"),
  25521. default: true
  25522. },
  25523. {
  25524. name: "Kaiju-er",
  25525. height: math.unit(600, "feet")
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25531. {
  25532. front: {
  25533. height: math.unit(6 + 5 / 12, "feet"),
  25534. weight: math.unit(180, "lb"),
  25535. name: "Front",
  25536. image: {
  25537. source: "./media/characters/lexir/front.svg",
  25538. extra: 180 / 172,
  25539. bottom: 12 / 192
  25540. }
  25541. },
  25542. back: {
  25543. height: math.unit(6 + 5 / 12, "feet"),
  25544. weight: math.unit(180, "lb"),
  25545. name: "Back",
  25546. image: {
  25547. source: "./media/characters/lexir/back.svg",
  25548. extra: 1273/1201,
  25549. bottom: 39/1312
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Very Smal",
  25556. height: math.unit(1, "nm")
  25557. },
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(6 + 5 / 12, "feet"),
  25561. default: true
  25562. },
  25563. {
  25564. name: "Macro",
  25565. height: math.unit(1, "mile")
  25566. },
  25567. {
  25568. name: "Megamacro",
  25569. height: math.unit(50, "miles")
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(1.5, "meters"),
  25578. weight: math.unit(100, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/maksio/front.svg",
  25582. extra: 1549 / 1531,
  25583. bottom: 123.7 / 1674.5429
  25584. }
  25585. },
  25586. back: {
  25587. height: math.unit(1.5, "meters"),
  25588. weight: math.unit(100, "lb"),
  25589. name: "Back",
  25590. image: {
  25591. source: "./media/characters/maksio/back.svg",
  25592. extra: 1541 / 1509,
  25593. bottom: 97 / 1639
  25594. }
  25595. },
  25596. hand: {
  25597. height: math.unit(0.621, "feet"),
  25598. name: "Hand",
  25599. image: {
  25600. source: "./media/characters/maksio/hand.svg"
  25601. }
  25602. },
  25603. foot: {
  25604. height: math.unit(1.611, "feet"),
  25605. name: "Foot",
  25606. image: {
  25607. source: "./media/characters/maksio/foot.svg"
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Shrunken",
  25614. height: math.unit(10, "cm")
  25615. },
  25616. {
  25617. name: "Normal",
  25618. height: math.unit(150, "cm"),
  25619. default: true
  25620. },
  25621. ]
  25622. ))
  25623. characterMakers.push(() => makeCharacter(
  25624. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25625. {
  25626. front: {
  25627. height: math.unit(100, "feet"),
  25628. name: "Front",
  25629. image: {
  25630. source: "./media/characters/erza-bear/front.svg",
  25631. extra: 2449 / 2390,
  25632. bottom: 46 / 2494
  25633. }
  25634. },
  25635. back: {
  25636. height: math.unit(100, "feet"),
  25637. name: "Back",
  25638. image: {
  25639. source: "./media/characters/erza-bear/back.svg",
  25640. extra: 2489 / 2430,
  25641. bottom: 85.4 / 2480
  25642. }
  25643. },
  25644. tail: {
  25645. height: math.unit(42, "feet"),
  25646. name: "Tail",
  25647. image: {
  25648. source: "./media/characters/erza-bear/tail.svg"
  25649. }
  25650. },
  25651. tongue: {
  25652. height: math.unit(8, "feet"),
  25653. name: "Tongue",
  25654. image: {
  25655. source: "./media/characters/erza-bear/tongue.svg"
  25656. }
  25657. },
  25658. dick: {
  25659. height: math.unit(10.5, "feet"),
  25660. name: "Dick",
  25661. image: {
  25662. source: "./media/characters/erza-bear/dick.svg"
  25663. }
  25664. },
  25665. dickVertical: {
  25666. height: math.unit(16.9, "feet"),
  25667. name: "Dick (Vertical)",
  25668. image: {
  25669. source: "./media/characters/erza-bear/dick-vertical.svg"
  25670. }
  25671. },
  25672. },
  25673. [
  25674. {
  25675. name: "Macro",
  25676. height: math.unit(100, "feet"),
  25677. default: true
  25678. },
  25679. ]
  25680. ))
  25681. characterMakers.push(() => makeCharacter(
  25682. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25683. {
  25684. front: {
  25685. height: math.unit(172, "cm"),
  25686. weight: math.unit(73, "kg"),
  25687. name: "Front",
  25688. image: {
  25689. source: "./media/characters/violet-flor/front.svg",
  25690. extra: 1474/1379,
  25691. bottom: 113/1587
  25692. }
  25693. },
  25694. back: {
  25695. height: math.unit(180, "cm"),
  25696. weight: math.unit(73, "kg"),
  25697. name: "Back",
  25698. image: {
  25699. source: "./media/characters/violet-flor/back.svg",
  25700. extra: 1660/1567,
  25701. bottom: 49/1709
  25702. }
  25703. },
  25704. },
  25705. [
  25706. {
  25707. name: "Normal",
  25708. height: math.unit(172, "cm"),
  25709. default: true
  25710. },
  25711. ]
  25712. ))
  25713. characterMakers.push(() => makeCharacter(
  25714. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25715. {
  25716. front: {
  25717. height: math.unit(6, "feet"),
  25718. weight: math.unit(220, "lb"),
  25719. name: "Front",
  25720. image: {
  25721. source: "./media/characters/lynn-rhea/front.svg",
  25722. extra: 310 / 273
  25723. }
  25724. },
  25725. back: {
  25726. height: math.unit(6, "feet"),
  25727. weight: math.unit(220, "lb"),
  25728. name: "Back",
  25729. image: {
  25730. source: "./media/characters/lynn-rhea/back.svg",
  25731. extra: 310 / 273
  25732. }
  25733. },
  25734. dicks: {
  25735. height: math.unit(0.9, "feet"),
  25736. name: "Dicks",
  25737. image: {
  25738. source: "./media/characters/lynn-rhea/dicks.svg"
  25739. }
  25740. },
  25741. slit: {
  25742. height: math.unit(0.4, "feet"),
  25743. name: "Slit",
  25744. image: {
  25745. source: "./media/characters/lynn-rhea/slit.svg"
  25746. }
  25747. },
  25748. },
  25749. [
  25750. {
  25751. name: "Micro",
  25752. height: math.unit(1, "inch")
  25753. },
  25754. {
  25755. name: "Macro",
  25756. height: math.unit(60, "feet"),
  25757. default: true
  25758. },
  25759. {
  25760. name: "Megamacro",
  25761. height: math.unit(2, "miles")
  25762. },
  25763. {
  25764. name: "Gigamacro",
  25765. height: math.unit(3, "earths")
  25766. },
  25767. {
  25768. name: "Galactic",
  25769. height: math.unit(0.8, "galaxies")
  25770. },
  25771. ]
  25772. ))
  25773. characterMakers.push(() => makeCharacter(
  25774. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25775. {
  25776. front: {
  25777. height: math.unit(1600, "feet"),
  25778. weight: math.unit(85758785169, "kg"),
  25779. name: "Front",
  25780. image: {
  25781. source: "./media/characters/valathos/front.svg",
  25782. extra: 1451 / 1339
  25783. }
  25784. },
  25785. },
  25786. [
  25787. {
  25788. name: "Macro",
  25789. height: math.unit(1600, "feet"),
  25790. default: true
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25796. {
  25797. front: {
  25798. height: math.unit(7 + 5 / 12, "feet"),
  25799. weight: math.unit(300, "lb"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/azula/front.svg",
  25803. extra: 3208 / 2880,
  25804. bottom: 80.2 / 3277
  25805. }
  25806. },
  25807. back: {
  25808. height: math.unit(7 + 5 / 12, "feet"),
  25809. weight: math.unit(300, "lb"),
  25810. name: "Back",
  25811. image: {
  25812. source: "./media/characters/azula/back.svg",
  25813. extra: 3169 / 2822,
  25814. bottom: 150.6 / 3321
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Normal",
  25821. height: math.unit(7 + 5 / 12, "feet"),
  25822. default: true
  25823. },
  25824. {
  25825. name: "Big",
  25826. height: math.unit(20, "feet")
  25827. },
  25828. ]
  25829. ))
  25830. characterMakers.push(() => makeCharacter(
  25831. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25832. {
  25833. front: {
  25834. height: math.unit(5 + 1 / 12, "feet"),
  25835. weight: math.unit(110, "lb"),
  25836. name: "Front",
  25837. image: {
  25838. source: "./media/characters/rupert/front.svg",
  25839. extra: 1549 / 1495,
  25840. bottom: 54.2 / 1604.4
  25841. }
  25842. },
  25843. },
  25844. [
  25845. {
  25846. name: "Normal",
  25847. height: math.unit(5 + 1 / 12, "feet"),
  25848. default: true
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25854. {
  25855. front: {
  25856. height: math.unit(8 + 4 / 12, "feet"),
  25857. weight: math.unit(350, "lb"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/sheera-castellar/front.svg",
  25861. extra: 1957 / 1894,
  25862. bottom: 26.97 / 1975.017
  25863. }
  25864. },
  25865. side: {
  25866. height: math.unit(8 + 4 / 12, "feet"),
  25867. weight: math.unit(350, "lb"),
  25868. name: "Side",
  25869. image: {
  25870. source: "./media/characters/sheera-castellar/side.svg",
  25871. extra: 1957 / 1894
  25872. }
  25873. },
  25874. back: {
  25875. height: math.unit(8 + 4 / 12, "feet"),
  25876. weight: math.unit(350, "lb"),
  25877. name: "Back",
  25878. image: {
  25879. source: "./media/characters/sheera-castellar/back.svg",
  25880. extra: 1957 / 1894
  25881. }
  25882. },
  25883. angled: {
  25884. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25885. weight: math.unit(350, "lb"),
  25886. name: "Angled",
  25887. image: {
  25888. source: "./media/characters/sheera-castellar/angled.svg",
  25889. extra: 1807 / 1707,
  25890. bottom: 68 / 1875
  25891. }
  25892. },
  25893. genitals: {
  25894. height: math.unit(2.2, "feet"),
  25895. name: "Genitals",
  25896. image: {
  25897. source: "./media/characters/sheera-castellar/genitals.svg"
  25898. }
  25899. },
  25900. taur: {
  25901. height: math.unit(10 + 6/12, "feet"),
  25902. name: "Taur",
  25903. image: {
  25904. source: "./media/characters/sheera-castellar/taur.svg",
  25905. extra: 2017/1909,
  25906. bottom: 185/2202
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(8 + 4 / 12, "feet")
  25914. },
  25915. {
  25916. name: "Macro",
  25917. height: math.unit(150, "feet"),
  25918. default: true
  25919. },
  25920. {
  25921. name: "Macro+",
  25922. height: math.unit(800, "feet")
  25923. },
  25924. ]
  25925. ))
  25926. characterMakers.push(() => makeCharacter(
  25927. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25928. {
  25929. front: {
  25930. height: math.unit(6, "feet"),
  25931. weight: math.unit(150, "lb"),
  25932. name: "Front",
  25933. image: {
  25934. source: "./media/characters/jaipur/front.svg",
  25935. extra: 3860 / 3731,
  25936. bottom: 287 / 4140
  25937. }
  25938. },
  25939. back: {
  25940. height: math.unit(6, "feet"),
  25941. weight: math.unit(150, "lb"),
  25942. name: "Back",
  25943. image: {
  25944. source: "./media/characters/jaipur/back.svg",
  25945. extra: 1637/1561,
  25946. bottom: 154/1791
  25947. }
  25948. },
  25949. },
  25950. [
  25951. {
  25952. name: "Normal",
  25953. height: math.unit(1.85, "meters"),
  25954. default: true
  25955. },
  25956. {
  25957. name: "Macro",
  25958. height: math.unit(150, "meters")
  25959. },
  25960. {
  25961. name: "Macro+",
  25962. height: math.unit(0.5, "miles")
  25963. },
  25964. {
  25965. name: "Macro++",
  25966. height: math.unit(2.5, "miles")
  25967. },
  25968. {
  25969. name: "Macro+++",
  25970. height: math.unit(12, "miles")
  25971. },
  25972. {
  25973. name: "Macro++++",
  25974. height: math.unit(120, "miles")
  25975. },
  25976. {
  25977. name: "Macro+++++",
  25978. height: math.unit(1200, "miles")
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(6, "feet"),
  25987. weight: math.unit(150, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/sheila-wolf/front.svg",
  25991. extra: 1931 / 1808,
  25992. bottom: 29.5 / 1960
  25993. }
  25994. },
  25995. dick: {
  25996. height: math.unit(1.464, "feet"),
  25997. name: "Dick",
  25998. image: {
  25999. source: "./media/characters/sheila-wolf/dick.svg"
  26000. }
  26001. },
  26002. muzzle: {
  26003. height: math.unit(0.513, "feet"),
  26004. name: "Muzzle",
  26005. image: {
  26006. source: "./media/characters/sheila-wolf/muzzle.svg"
  26007. }
  26008. },
  26009. },
  26010. [
  26011. {
  26012. name: "Macro",
  26013. height: math.unit(70, "feet"),
  26014. default: true
  26015. },
  26016. ]
  26017. ))
  26018. characterMakers.push(() => makeCharacter(
  26019. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26020. {
  26021. front: {
  26022. height: math.unit(32, "meters"),
  26023. weight: math.unit(300000, "kg"),
  26024. name: "Front",
  26025. image: {
  26026. source: "./media/characters/almor/front.svg",
  26027. extra: 1408 / 1322,
  26028. bottom: 94.6 / 1506.5
  26029. }
  26030. },
  26031. },
  26032. [
  26033. {
  26034. name: "Macro",
  26035. height: math.unit(32, "meters"),
  26036. default: true
  26037. },
  26038. ]
  26039. ))
  26040. characterMakers.push(() => makeCharacter(
  26041. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26042. {
  26043. front: {
  26044. height: math.unit(7, "feet"),
  26045. weight: math.unit(200, "lb"),
  26046. name: "Front",
  26047. image: {
  26048. source: "./media/characters/silver/front.svg",
  26049. extra: 472.1 / 450.5,
  26050. bottom: 26.5 / 499.424
  26051. }
  26052. },
  26053. },
  26054. [
  26055. {
  26056. name: "Normal",
  26057. height: math.unit(7, "feet"),
  26058. default: true
  26059. },
  26060. {
  26061. name: "Macro",
  26062. height: math.unit(800, "feet")
  26063. },
  26064. {
  26065. name: "Megamacro",
  26066. height: math.unit(250, "miles")
  26067. },
  26068. ]
  26069. ))
  26070. characterMakers.push(() => makeCharacter(
  26071. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26072. {
  26073. front: {
  26074. height: math.unit(6, "feet"),
  26075. weight: math.unit(150, "lb"),
  26076. name: "Front",
  26077. image: {
  26078. source: "./media/characters/pliskin/front.svg",
  26079. extra: 1469 / 1359,
  26080. bottom: 70 / 1540
  26081. }
  26082. },
  26083. },
  26084. [
  26085. {
  26086. name: "Micro",
  26087. height: math.unit(3, "inches")
  26088. },
  26089. {
  26090. name: "Normal",
  26091. height: math.unit(5 + 11 / 12, "feet"),
  26092. default: true
  26093. },
  26094. {
  26095. name: "Macro",
  26096. height: math.unit(120, "feet")
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26102. {
  26103. front: {
  26104. height: math.unit(6, "feet"),
  26105. weight: math.unit(150, "lb"),
  26106. name: "Front",
  26107. image: {
  26108. source: "./media/characters/sammy/front.svg",
  26109. extra: 1193 / 1089,
  26110. bottom: 30.5 / 1226
  26111. }
  26112. },
  26113. },
  26114. [
  26115. {
  26116. name: "Macro",
  26117. height: math.unit(1700, "feet"),
  26118. default: true
  26119. },
  26120. {
  26121. name: "Examacro",
  26122. height: math.unit(2.5e9, "lightyears")
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26128. {
  26129. front: {
  26130. height: math.unit(21, "meters"),
  26131. weight: math.unit(12, "tonnes"),
  26132. name: "Front",
  26133. image: {
  26134. source: "./media/characters/kuru/front.svg",
  26135. extra: 4301 / 3785,
  26136. bottom: 371.3 / 4691
  26137. }
  26138. },
  26139. },
  26140. [
  26141. {
  26142. name: "Macro",
  26143. height: math.unit(21, "meters"),
  26144. default: true
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26150. {
  26151. front: {
  26152. height: math.unit(23, "meters"),
  26153. weight: math.unit(12.2, "tonnes"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/rakka/front.svg",
  26157. extra: 4670 / 4169,
  26158. bottom: 301 / 4968.7
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Macro",
  26165. height: math.unit(23, "meters"),
  26166. default: true
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26172. {
  26173. front: {
  26174. height: math.unit(6, "feet"),
  26175. weight: math.unit(150, "lb"),
  26176. name: "Front",
  26177. image: {
  26178. source: "./media/characters/rhys-feline/front.svg",
  26179. extra: 2488 / 2308,
  26180. bottom: 35.67 / 2519.19
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Really Small",
  26187. height: math.unit(1, "nm")
  26188. },
  26189. {
  26190. name: "Micro",
  26191. height: math.unit(4, "inches")
  26192. },
  26193. {
  26194. name: "Normal",
  26195. height: math.unit(4 + 10 / 12, "feet"),
  26196. default: true
  26197. },
  26198. {
  26199. name: "Macro",
  26200. height: math.unit(100, "feet")
  26201. },
  26202. {
  26203. name: "Megamacto",
  26204. height: math.unit(50, "miles")
  26205. },
  26206. ]
  26207. ))
  26208. characterMakers.push(() => makeCharacter(
  26209. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26210. {
  26211. side: {
  26212. height: math.unit(30, "feet"),
  26213. weight: math.unit(35000, "kg"),
  26214. name: "Side",
  26215. image: {
  26216. source: "./media/characters/alydar/side.svg",
  26217. extra: 234 / 222,
  26218. bottom: 6.5 / 241
  26219. }
  26220. },
  26221. front: {
  26222. height: math.unit(30, "feet"),
  26223. weight: math.unit(35000, "kg"),
  26224. name: "Front",
  26225. image: {
  26226. source: "./media/characters/alydar/front.svg",
  26227. extra: 223.37 / 210.2,
  26228. bottom: 22.3 / 246.76
  26229. }
  26230. },
  26231. top: {
  26232. height: math.unit(64.54, "feet"),
  26233. weight: math.unit(35000, "kg"),
  26234. name: "Top",
  26235. image: {
  26236. source: "./media/characters/alydar/top.svg"
  26237. }
  26238. },
  26239. anthro: {
  26240. height: math.unit(30, "feet"),
  26241. weight: math.unit(9000, "kg"),
  26242. name: "Anthro",
  26243. image: {
  26244. source: "./media/characters/alydar/anthro.svg",
  26245. extra: 432 / 421,
  26246. bottom: 7.18 / 440
  26247. }
  26248. },
  26249. maw: {
  26250. height: math.unit(11.693, "feet"),
  26251. name: "Maw",
  26252. image: {
  26253. source: "./media/characters/alydar/maw.svg"
  26254. }
  26255. },
  26256. head: {
  26257. height: math.unit(11.693, "feet"),
  26258. name: "Head",
  26259. image: {
  26260. source: "./media/characters/alydar/head.svg"
  26261. }
  26262. },
  26263. headAlt: {
  26264. height: math.unit(12.861, "feet"),
  26265. name: "Head (Alt)",
  26266. image: {
  26267. source: "./media/characters/alydar/head-alt.svg"
  26268. }
  26269. },
  26270. wing: {
  26271. height: math.unit(20.712, "feet"),
  26272. name: "Wing",
  26273. image: {
  26274. source: "./media/characters/alydar/wing.svg"
  26275. }
  26276. },
  26277. wingFeather: {
  26278. height: math.unit(9.662, "feet"),
  26279. name: "Wing Feather",
  26280. image: {
  26281. source: "./media/characters/alydar/wing-feather.svg"
  26282. }
  26283. },
  26284. countourFeather: {
  26285. height: math.unit(4.154, "feet"),
  26286. name: "Contour Feather",
  26287. image: {
  26288. source: "./media/characters/alydar/contour-feather.svg"
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Diplomatic",
  26295. height: math.unit(13, "feet"),
  26296. default: true
  26297. },
  26298. {
  26299. name: "Small",
  26300. height: math.unit(30, "feet")
  26301. },
  26302. {
  26303. name: "Normal",
  26304. height: math.unit(95, "feet"),
  26305. default: true
  26306. },
  26307. {
  26308. name: "Large",
  26309. height: math.unit(285, "feet")
  26310. },
  26311. {
  26312. name: "Incomprehensible",
  26313. height: math.unit(450, "megameters")
  26314. },
  26315. ]
  26316. ))
  26317. characterMakers.push(() => makeCharacter(
  26318. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26319. {
  26320. side: {
  26321. height: math.unit(11, "feet"),
  26322. weight: math.unit(1750, "kg"),
  26323. name: "Side",
  26324. image: {
  26325. source: "./media/characters/selicia/side.svg",
  26326. extra: 440 / 396,
  26327. bottom: 24.8 / 465.979
  26328. }
  26329. },
  26330. maw: {
  26331. height: math.unit(4.665, "feet"),
  26332. name: "Maw",
  26333. image: {
  26334. source: "./media/characters/selicia/maw.svg"
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(11, "feet"),
  26342. default: true
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26348. {
  26349. side: {
  26350. height: math.unit(2 + 6 / 12, "feet"),
  26351. weight: math.unit(30, "lb"),
  26352. name: "Side",
  26353. image: {
  26354. source: "./media/characters/layla/side.svg",
  26355. extra: 244 / 188,
  26356. bottom: 18.2 / 262.1
  26357. }
  26358. },
  26359. back: {
  26360. height: math.unit(2 + 6 / 12, "feet"),
  26361. weight: math.unit(30, "lb"),
  26362. name: "Back",
  26363. image: {
  26364. source: "./media/characters/layla/back.svg",
  26365. extra: 308 / 241.5,
  26366. bottom: 8.9 / 316.8
  26367. }
  26368. },
  26369. cumming: {
  26370. height: math.unit(2 + 6 / 12, "feet"),
  26371. weight: math.unit(30, "lb"),
  26372. name: "Cumming",
  26373. image: {
  26374. source: "./media/characters/layla/cumming.svg",
  26375. extra: 342 / 279,
  26376. bottom: 595 / 938
  26377. }
  26378. },
  26379. dickFlaccid: {
  26380. height: math.unit(2.595, "feet"),
  26381. name: "Flaccid Genitals",
  26382. image: {
  26383. source: "./media/characters/layla/dick-flaccid.svg"
  26384. }
  26385. },
  26386. dickErect: {
  26387. height: math.unit(2.359, "feet"),
  26388. name: "Erect Genitals",
  26389. image: {
  26390. source: "./media/characters/layla/dick-erect.svg"
  26391. }
  26392. },
  26393. dragon: {
  26394. height: math.unit(40, "feet"),
  26395. name: "Dragon",
  26396. image: {
  26397. source: "./media/characters/layla/dragon.svg",
  26398. extra: 610/535,
  26399. bottom: 367/977
  26400. }
  26401. },
  26402. taur: {
  26403. height: math.unit(30, "feet"),
  26404. name: "Taur",
  26405. image: {
  26406. source: "./media/characters/layla/taur.svg",
  26407. extra: 1268/1199,
  26408. bottom: 112/1380
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Micro",
  26415. height: math.unit(1, "inch")
  26416. },
  26417. {
  26418. name: "Small",
  26419. height: math.unit(1, "foot")
  26420. },
  26421. {
  26422. name: "Normal",
  26423. height: math.unit(2 + 6 / 12, "feet"),
  26424. default: true
  26425. },
  26426. {
  26427. name: "Macro",
  26428. height: math.unit(200, "feet")
  26429. },
  26430. {
  26431. name: "Megamacro",
  26432. height: math.unit(1000, "miles")
  26433. },
  26434. {
  26435. name: "Planetary",
  26436. height: math.unit(8000, "miles")
  26437. },
  26438. {
  26439. name: "True Layla",
  26440. height: math.unit(200000 * 7, "multiverses")
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26446. {
  26447. back: {
  26448. height: math.unit(10.5, "feet"),
  26449. weight: math.unit(800, "lb"),
  26450. name: "Back",
  26451. image: {
  26452. source: "./media/characters/knox/back.svg",
  26453. extra: 1486 / 1089,
  26454. bottom: 107 / 1601.4
  26455. }
  26456. },
  26457. side: {
  26458. height: math.unit(10.5, "feet"),
  26459. weight: math.unit(800, "lb"),
  26460. name: "Side",
  26461. image: {
  26462. source: "./media/characters/knox/side.svg",
  26463. extra: 244 / 218,
  26464. bottom: 14 / 260
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Compact",
  26471. height: math.unit(10.5, "feet"),
  26472. default: true
  26473. },
  26474. {
  26475. name: "Dynamax",
  26476. height: math.unit(210, "feet")
  26477. },
  26478. {
  26479. name: "Full Macro",
  26480. height: math.unit(850, "feet")
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26486. {
  26487. front: {
  26488. height: math.unit(28, "feet"),
  26489. weight: math.unit(10500, "lb"),
  26490. name: "Front",
  26491. image: {
  26492. source: "./media/characters/kayda/front.svg",
  26493. extra: 1536 / 1428,
  26494. bottom: 68.7 / 1603
  26495. }
  26496. },
  26497. back: {
  26498. height: math.unit(28, "feet"),
  26499. weight: math.unit(10500, "lb"),
  26500. name: "Back",
  26501. image: {
  26502. source: "./media/characters/kayda/back.svg",
  26503. extra: 1557 / 1464,
  26504. bottom: 39.5 / 1597.49
  26505. }
  26506. },
  26507. dick: {
  26508. height: math.unit(3.858, "feet"),
  26509. name: "Dick",
  26510. image: {
  26511. source: "./media/characters/kayda/dick.svg"
  26512. }
  26513. },
  26514. },
  26515. [
  26516. {
  26517. name: "Macro",
  26518. height: math.unit(28, "feet"),
  26519. default: true
  26520. },
  26521. ]
  26522. ))
  26523. characterMakers.push(() => makeCharacter(
  26524. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26525. {
  26526. front: {
  26527. height: math.unit(10 + 11 / 12, "feet"),
  26528. weight: math.unit(1400, "lb"),
  26529. name: "Front",
  26530. image: {
  26531. source: "./media/characters/brian/front.svg",
  26532. extra: 737 / 692,
  26533. bottom: 55.4 / 785
  26534. }
  26535. },
  26536. },
  26537. [
  26538. {
  26539. name: "Normal",
  26540. height: math.unit(10 + 11 / 12, "feet"),
  26541. default: true
  26542. },
  26543. ]
  26544. ))
  26545. characterMakers.push(() => makeCharacter(
  26546. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26547. {
  26548. front: {
  26549. height: math.unit(5 + 8 / 12, "feet"),
  26550. weight: math.unit(140, "lb"),
  26551. name: "Front",
  26552. image: {
  26553. source: "./media/characters/khemri/front.svg",
  26554. extra: 4780 / 4059,
  26555. bottom: 80.1 / 4859.25
  26556. }
  26557. },
  26558. },
  26559. [
  26560. {
  26561. name: "Micro",
  26562. height: math.unit(6, "inches")
  26563. },
  26564. {
  26565. name: "Normal",
  26566. height: math.unit(5 + 8 / 12, "feet"),
  26567. default: true
  26568. },
  26569. ]
  26570. ))
  26571. characterMakers.push(() => makeCharacter(
  26572. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26573. {
  26574. front: {
  26575. height: math.unit(13, "feet"),
  26576. weight: math.unit(1700, "lb"),
  26577. name: "Front",
  26578. image: {
  26579. source: "./media/characters/felix-braveheart/front.svg",
  26580. extra: 1222 / 1157,
  26581. bottom: 53.2 / 1280
  26582. }
  26583. },
  26584. back: {
  26585. height: math.unit(13, "feet"),
  26586. weight: math.unit(1700, "lb"),
  26587. name: "Back",
  26588. image: {
  26589. source: "./media/characters/felix-braveheart/back.svg",
  26590. extra: 1277 / 1203,
  26591. bottom: 50.2 / 1327
  26592. }
  26593. },
  26594. feral: {
  26595. height: math.unit(6, "feet"),
  26596. weight: math.unit(400, "lb"),
  26597. name: "Feral",
  26598. image: {
  26599. source: "./media/characters/felix-braveheart/feral.svg",
  26600. extra: 682 / 625,
  26601. bottom: 6.9 / 688
  26602. }
  26603. },
  26604. },
  26605. [
  26606. {
  26607. name: "Normal",
  26608. height: math.unit(13, "feet"),
  26609. default: true
  26610. },
  26611. ]
  26612. ))
  26613. characterMakers.push(() => makeCharacter(
  26614. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26615. {
  26616. side: {
  26617. height: math.unit(5 + 11 / 12, "feet"),
  26618. weight: math.unit(1400, "lb"),
  26619. name: "Side",
  26620. image: {
  26621. source: "./media/characters/shadow-blade/side.svg",
  26622. extra: 1726 / 1267,
  26623. bottom: 58.4 / 1785
  26624. }
  26625. },
  26626. },
  26627. [
  26628. {
  26629. name: "Normal",
  26630. height: math.unit(5 + 11 / 12, "feet"),
  26631. default: true
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26637. {
  26638. front: {
  26639. height: math.unit(1 + 6 / 12, "feet"),
  26640. weight: math.unit(25, "lb"),
  26641. name: "Front",
  26642. image: {
  26643. source: "./media/characters/karla-halldor/front.svg",
  26644. extra: 1459 / 1383,
  26645. bottom: 12 / 1472
  26646. }
  26647. },
  26648. },
  26649. [
  26650. {
  26651. name: "Normal",
  26652. height: math.unit(1 + 6 / 12, "feet"),
  26653. default: true
  26654. },
  26655. ]
  26656. ))
  26657. characterMakers.push(() => makeCharacter(
  26658. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26659. {
  26660. front: {
  26661. height: math.unit(6 + 2 / 12, "feet"),
  26662. weight: math.unit(160, "lb"),
  26663. name: "Front",
  26664. image: {
  26665. source: "./media/characters/ariam/front.svg",
  26666. extra: 1073/976,
  26667. bottom: 52/1125
  26668. }
  26669. },
  26670. back: {
  26671. height: math.unit(6 + 2/12, "feet"),
  26672. weight: math.unit(160, "lb"),
  26673. name: "Back",
  26674. image: {
  26675. source: "./media/characters/ariam/back.svg",
  26676. extra: 1103/1023,
  26677. bottom: 9/1112
  26678. }
  26679. },
  26680. dressed: {
  26681. height: math.unit(6 + 2/12, "feet"),
  26682. weight: math.unit(160, "lb"),
  26683. name: "Dressed",
  26684. image: {
  26685. source: "./media/characters/ariam/dressed.svg",
  26686. extra: 1099/1009,
  26687. bottom: 25/1124
  26688. }
  26689. },
  26690. squatting: {
  26691. height: math.unit(4.1, "feet"),
  26692. weight: math.unit(160, "lb"),
  26693. name: "Squatting",
  26694. image: {
  26695. source: "./media/characters/ariam/squatting.svg",
  26696. extra: 2617 / 2112,
  26697. bottom: 61.2 / 2681,
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(6 + 2 / 12, "feet"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Normal+",
  26709. height: math.unit(4, "meters")
  26710. },
  26711. {
  26712. name: "Macro",
  26713. height: math.unit(50, "meters")
  26714. },
  26715. {
  26716. name: "Macro+",
  26717. height: math.unit(100, "meters")
  26718. },
  26719. {
  26720. name: "Megamacro",
  26721. height: math.unit(20, "km")
  26722. },
  26723. {
  26724. name: "Caretaker",
  26725. height: math.unit(444, "megameters")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(1.67, "meters"),
  26734. weight: math.unit(140, "lb"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26738. extra: 438 / 410,
  26739. bottom: 0.75 / 439
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Shrunken",
  26746. height: math.unit(7.6, "cm")
  26747. },
  26748. {
  26749. name: "Human Scale",
  26750. height: math.unit(1.67, "meters")
  26751. },
  26752. {
  26753. name: "Wolxi Scale",
  26754. height: math.unit(36.7, "meters"),
  26755. default: true
  26756. },
  26757. ]
  26758. ))
  26759. characterMakers.push(() => makeCharacter(
  26760. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26761. {
  26762. front: {
  26763. height: math.unit(1.73, "meters"),
  26764. weight: math.unit(240, "lb"),
  26765. name: "Front",
  26766. image: {
  26767. source: "./media/characters/izue-two-mothers/front.svg",
  26768. extra: 469 / 437,
  26769. bottom: 1.24 / 470.6
  26770. }
  26771. },
  26772. },
  26773. [
  26774. {
  26775. name: "Shrunken",
  26776. height: math.unit(7.86, "cm")
  26777. },
  26778. {
  26779. name: "Human Scale",
  26780. height: math.unit(1.73, "meters")
  26781. },
  26782. {
  26783. name: "Wolxi Scale",
  26784. height: math.unit(38, "meters"),
  26785. default: true
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26791. {
  26792. front: {
  26793. height: math.unit(1.55, "meters"),
  26794. weight: math.unit(120, "lb"),
  26795. name: "Front",
  26796. image: {
  26797. source: "./media/characters/teeku-love-shack/front.svg",
  26798. extra: 387 / 362,
  26799. bottom: 1.51 / 388
  26800. }
  26801. },
  26802. },
  26803. [
  26804. {
  26805. name: "Shrunken",
  26806. height: math.unit(7, "cm")
  26807. },
  26808. {
  26809. name: "Human Scale",
  26810. height: math.unit(1.55, "meters")
  26811. },
  26812. {
  26813. name: "Wolxi Scale",
  26814. height: math.unit(34.1, "meters"),
  26815. default: true
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(1.83, "meters"),
  26824. weight: math.unit(135, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/dejma-the-red/front.svg",
  26828. extra: 480 / 458,
  26829. bottom: 1.8 / 482
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Shrunken",
  26836. height: math.unit(8.3, "cm")
  26837. },
  26838. {
  26839. name: "Human Scale",
  26840. height: math.unit(1.83, "meters")
  26841. },
  26842. {
  26843. name: "Wolxi Scale",
  26844. height: math.unit(40, "meters"),
  26845. default: true
  26846. },
  26847. ]
  26848. ))
  26849. characterMakers.push(() => makeCharacter(
  26850. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26851. {
  26852. front: {
  26853. height: math.unit(1.78, "meters"),
  26854. weight: math.unit(65, "kg"),
  26855. name: "Front",
  26856. image: {
  26857. source: "./media/characters/aki/front.svg",
  26858. extra: 452 / 415
  26859. }
  26860. },
  26861. frontNsfw: {
  26862. height: math.unit(1.78, "meters"),
  26863. weight: math.unit(65, "kg"),
  26864. name: "Front (NSFW)",
  26865. image: {
  26866. source: "./media/characters/aki/front-nsfw.svg",
  26867. extra: 452 / 415
  26868. }
  26869. },
  26870. back: {
  26871. height: math.unit(1.78, "meters"),
  26872. weight: math.unit(65, "kg"),
  26873. name: "Back",
  26874. image: {
  26875. source: "./media/characters/aki/back.svg",
  26876. extra: 452 / 415
  26877. }
  26878. },
  26879. rump: {
  26880. height: math.unit(2.05, "feet"),
  26881. name: "Rump",
  26882. image: {
  26883. source: "./media/characters/aki/rump.svg"
  26884. }
  26885. },
  26886. dick: {
  26887. height: math.unit(0.95, "feet"),
  26888. name: "Dick",
  26889. image: {
  26890. source: "./media/characters/aki/dick.svg"
  26891. }
  26892. },
  26893. },
  26894. [
  26895. {
  26896. name: "Micro",
  26897. height: math.unit(15, "cm")
  26898. },
  26899. {
  26900. name: "Normal",
  26901. height: math.unit(178, "cm"),
  26902. default: true
  26903. },
  26904. {
  26905. name: "Macro",
  26906. height: math.unit(214, "m")
  26907. },
  26908. {
  26909. name: "Macro+",
  26910. height: math.unit(534, "m")
  26911. },
  26912. ]
  26913. ))
  26914. characterMakers.push(() => makeCharacter(
  26915. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26916. {
  26917. front: {
  26918. height: math.unit(5 + 5 / 12, "feet"),
  26919. weight: math.unit(120, "lb"),
  26920. name: "Front",
  26921. image: {
  26922. source: "./media/characters/ari/front.svg",
  26923. extra: 1550/1471,
  26924. bottom: 39/1589
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Normal",
  26931. height: math.unit(5 + 5 / 12, "feet")
  26932. },
  26933. {
  26934. name: "Macro",
  26935. height: math.unit(100, "feet"),
  26936. default: true
  26937. },
  26938. {
  26939. name: "Megamacro",
  26940. height: math.unit(100, "miles")
  26941. },
  26942. {
  26943. name: "Gigamacro",
  26944. height: math.unit(80000, "miles")
  26945. },
  26946. ]
  26947. ))
  26948. characterMakers.push(() => makeCharacter(
  26949. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26950. {
  26951. side: {
  26952. height: math.unit(9, "feet"),
  26953. weight: math.unit(400, "kg"),
  26954. name: "Side",
  26955. image: {
  26956. source: "./media/characters/bolt/side.svg",
  26957. extra: 1126 / 896,
  26958. bottom: 60 / 1187.3,
  26959. }
  26960. },
  26961. },
  26962. [
  26963. {
  26964. name: "Micro",
  26965. height: math.unit(5, "inches")
  26966. },
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(9, "feet"),
  26970. default: true
  26971. },
  26972. {
  26973. name: "Macro",
  26974. height: math.unit(700, "feet")
  26975. },
  26976. {
  26977. name: "Max Size",
  26978. height: math.unit(1.52e22, "yottameters")
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(4.3, "meters"),
  26987. weight: math.unit(3, "tons"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/draekon-sylviar/front.svg",
  26991. extra: 2072/1512,
  26992. bottom: 74/2146
  26993. }
  26994. },
  26995. back: {
  26996. height: math.unit(4.3, "meters"),
  26997. weight: math.unit(3, "tons"),
  26998. name: "Back",
  26999. image: {
  27000. source: "./media/characters/draekon-sylviar/back.svg",
  27001. extra: 1639/1483,
  27002. bottom: 41/1680
  27003. }
  27004. },
  27005. feral: {
  27006. height: math.unit(1.15, "meters"),
  27007. weight: math.unit(3, "tons"),
  27008. name: "Feral",
  27009. image: {
  27010. source: "./media/characters/draekon-sylviar/feral.svg",
  27011. extra: 1033/395,
  27012. bottom: 130/1163
  27013. }
  27014. },
  27015. maw: {
  27016. height: math.unit(1.3, "meters"),
  27017. name: "Maw",
  27018. image: {
  27019. source: "./media/characters/draekon-sylviar/maw.svg"
  27020. }
  27021. },
  27022. mawSeparated: {
  27023. height: math.unit(1.53, "meters"),
  27024. name: "Separated Maw",
  27025. image: {
  27026. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27027. }
  27028. },
  27029. tail: {
  27030. height: math.unit(1.15, "meters"),
  27031. name: "Tail",
  27032. image: {
  27033. source: "./media/characters/draekon-sylviar/tail.svg"
  27034. }
  27035. },
  27036. tailDick: {
  27037. height: math.unit(1.15, "meters"),
  27038. name: "Tail (Dick)",
  27039. image: {
  27040. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27041. }
  27042. },
  27043. tailDickSeparated: {
  27044. height: math.unit(1.19, "meters"),
  27045. name: "Tail (Separated Dick)",
  27046. image: {
  27047. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27048. }
  27049. },
  27050. slit: {
  27051. height: math.unit(1, "meters"),
  27052. name: "Slit",
  27053. image: {
  27054. source: "./media/characters/draekon-sylviar/slit.svg"
  27055. }
  27056. },
  27057. dick: {
  27058. height: math.unit(1.15, "meters"),
  27059. name: "Dick",
  27060. image: {
  27061. source: "./media/characters/draekon-sylviar/dick.svg"
  27062. }
  27063. },
  27064. dickSeparated: {
  27065. height: math.unit(1.1, "meters"),
  27066. name: "Separated Dick",
  27067. image: {
  27068. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27069. }
  27070. },
  27071. sheath: {
  27072. height: math.unit(1.15, "meters"),
  27073. name: "Sheath",
  27074. image: {
  27075. source: "./media/characters/draekon-sylviar/sheath.svg"
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Small",
  27082. height: math.unit(4.53 / 2, "meters"),
  27083. default: true
  27084. },
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(4.53, "meters"),
  27088. default: true
  27089. },
  27090. {
  27091. name: "Large",
  27092. height: math.unit(4.53 * 2, "meters"),
  27093. },
  27094. ]
  27095. ))
  27096. characterMakers.push(() => makeCharacter(
  27097. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27098. {
  27099. front: {
  27100. height: math.unit(6 + 2 / 12, "feet"),
  27101. weight: math.unit(180, "lb"),
  27102. name: "Front",
  27103. image: {
  27104. source: "./media/characters/brawler/front.svg",
  27105. extra: 3301 / 3027,
  27106. bottom: 138 / 3439
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Normal",
  27113. height: math.unit(6 + 2 / 12, "feet"),
  27114. default: true
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27120. {
  27121. front: {
  27122. height: math.unit(11, "feet"),
  27123. weight: math.unit(1000, "lb"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/alex/front.svg",
  27127. bottom: 44.5 / 620
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Micro",
  27134. height: math.unit(5, "inches")
  27135. },
  27136. {
  27137. name: "Normal",
  27138. height: math.unit(11, "feet"),
  27139. default: true
  27140. },
  27141. {
  27142. name: "Macro",
  27143. height: math.unit(9.5e9, "feet")
  27144. },
  27145. {
  27146. name: "Max Size",
  27147. height: math.unit(1.4e283, "yottameters")
  27148. },
  27149. ]
  27150. ))
  27151. characterMakers.push(() => makeCharacter(
  27152. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27153. {
  27154. female: {
  27155. height: math.unit(29.9, "m"),
  27156. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27157. name: "Female",
  27158. image: {
  27159. source: "./media/characters/zenari/female.svg",
  27160. extra: 3281.6 / 3217,
  27161. bottom: 72.2 / 3353
  27162. }
  27163. },
  27164. male: {
  27165. height: math.unit(27.7, "m"),
  27166. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27167. name: "Male",
  27168. image: {
  27169. source: "./media/characters/zenari/male.svg",
  27170. extra: 3008 / 2991,
  27171. bottom: 54.6 / 3069
  27172. }
  27173. },
  27174. },
  27175. [
  27176. {
  27177. name: "Macro",
  27178. height: math.unit(29.7, "meters"),
  27179. default: true
  27180. },
  27181. ]
  27182. ))
  27183. characterMakers.push(() => makeCharacter(
  27184. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27185. {
  27186. female: {
  27187. height: math.unit(23.8, "m"),
  27188. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27189. name: "Female",
  27190. image: {
  27191. source: "./media/characters/mactarian/female.svg",
  27192. extra: 2662 / 2569,
  27193. bottom: 73 / 2736
  27194. }
  27195. },
  27196. male: {
  27197. height: math.unit(23.8, "m"),
  27198. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27199. name: "Male",
  27200. image: {
  27201. source: "./media/characters/mactarian/male.svg",
  27202. extra: 2673 / 2600,
  27203. bottom: 76 / 2750
  27204. }
  27205. },
  27206. },
  27207. [
  27208. {
  27209. name: "Macro",
  27210. height: math.unit(23.8, "meters"),
  27211. default: true
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27217. {
  27218. female: {
  27219. height: math.unit(19.3, "m"),
  27220. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27221. name: "Female",
  27222. image: {
  27223. source: "./media/characters/umok/female.svg",
  27224. extra: 2186 / 2078,
  27225. bottom: 87 / 2277
  27226. }
  27227. },
  27228. male: {
  27229. height: math.unit(19.5, "m"),
  27230. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27231. name: "Male",
  27232. image: {
  27233. source: "./media/characters/umok/male.svg",
  27234. extra: 2233 / 2140,
  27235. bottom: 24.4 / 2258
  27236. }
  27237. },
  27238. },
  27239. [
  27240. {
  27241. name: "Macro",
  27242. height: math.unit(19.3, "meters"),
  27243. default: true
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27249. {
  27250. female: {
  27251. height: math.unit(26.15, "m"),
  27252. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27253. name: "Female",
  27254. image: {
  27255. source: "./media/characters/joraxian/female.svg",
  27256. extra: 2912 / 2824,
  27257. bottom: 36 / 2956
  27258. }
  27259. },
  27260. male: {
  27261. height: math.unit(25.4, "m"),
  27262. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27263. name: "Male",
  27264. image: {
  27265. source: "./media/characters/joraxian/male.svg",
  27266. extra: 2877 / 2721,
  27267. bottom: 82 / 2967
  27268. }
  27269. },
  27270. },
  27271. [
  27272. {
  27273. name: "Macro",
  27274. height: math.unit(26.15, "meters"),
  27275. default: true
  27276. },
  27277. ]
  27278. ))
  27279. characterMakers.push(() => makeCharacter(
  27280. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27281. {
  27282. female: {
  27283. height: math.unit(21.6, "m"),
  27284. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27285. name: "Female",
  27286. image: {
  27287. source: "./media/characters/sthara/female.svg",
  27288. extra: 2516 / 2347,
  27289. bottom: 21.5 / 2537
  27290. }
  27291. },
  27292. male: {
  27293. height: math.unit(24, "m"),
  27294. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27295. name: "Male",
  27296. image: {
  27297. source: "./media/characters/sthara/male.svg",
  27298. extra: 2732 / 2607,
  27299. bottom: 23 / 2732
  27300. }
  27301. },
  27302. },
  27303. [
  27304. {
  27305. name: "Macro",
  27306. height: math.unit(21.6, "meters"),
  27307. default: true
  27308. },
  27309. ]
  27310. ))
  27311. characterMakers.push(() => makeCharacter(
  27312. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27313. {
  27314. front: {
  27315. height: math.unit(6 + 4 / 12, "feet"),
  27316. weight: math.unit(175, "lb"),
  27317. name: "Front",
  27318. image: {
  27319. source: "./media/characters/luka-bryzant/front.svg",
  27320. extra: 311 / 289,
  27321. bottom: 4 / 315
  27322. }
  27323. },
  27324. back: {
  27325. height: math.unit(6 + 4 / 12, "feet"),
  27326. weight: math.unit(175, "lb"),
  27327. name: "Back",
  27328. image: {
  27329. source: "./media/characters/luka-bryzant/back.svg",
  27330. extra: 311 / 289,
  27331. bottom: 3.8 / 313.7
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Micro",
  27338. height: math.unit(10, "inches")
  27339. },
  27340. {
  27341. name: "Normal",
  27342. height: math.unit(6 + 4 / 12, "feet"),
  27343. default: true
  27344. },
  27345. {
  27346. name: "Large",
  27347. height: math.unit(12, "feet")
  27348. },
  27349. ]
  27350. ))
  27351. characterMakers.push(() => makeCharacter(
  27352. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27353. {
  27354. front: {
  27355. height: math.unit(5 + 7 / 12, "feet"),
  27356. weight: math.unit(185, "lb"),
  27357. name: "Front",
  27358. image: {
  27359. source: "./media/characters/aman-aquila/front.svg",
  27360. extra: 1013 / 976,
  27361. bottom: 45.6 / 1057
  27362. }
  27363. },
  27364. side: {
  27365. height: math.unit(5 + 7 / 12, "feet"),
  27366. weight: math.unit(185, "lb"),
  27367. name: "Side",
  27368. image: {
  27369. source: "./media/characters/aman-aquila/side.svg",
  27370. extra: 1054 / 1011,
  27371. bottom: 15 / 1070
  27372. }
  27373. },
  27374. back: {
  27375. height: math.unit(5 + 7 / 12, "feet"),
  27376. weight: math.unit(185, "lb"),
  27377. name: "Back",
  27378. image: {
  27379. source: "./media/characters/aman-aquila/back.svg",
  27380. extra: 1026 / 970,
  27381. bottom: 12 / 1039
  27382. }
  27383. },
  27384. head: {
  27385. height: math.unit(1.211, "feet"),
  27386. name: "Head",
  27387. image: {
  27388. source: "./media/characters/aman-aquila/head.svg",
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Minimicro",
  27395. height: math.unit(0.057, "inches")
  27396. },
  27397. {
  27398. name: "Micro",
  27399. height: math.unit(7, "inches")
  27400. },
  27401. {
  27402. name: "Mini",
  27403. height: math.unit(3 + 7 / 12, "feet")
  27404. },
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(5 + 7 / 12, "feet"),
  27408. default: true
  27409. },
  27410. {
  27411. name: "Macro",
  27412. height: math.unit(157 + 7 / 12, "feet")
  27413. },
  27414. {
  27415. name: "Megamacro",
  27416. height: math.unit(1557 + 7 / 12, "feet")
  27417. },
  27418. {
  27419. name: "Gigamacro",
  27420. height: math.unit(15557 + 7 / 12, "feet")
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27426. {
  27427. front: {
  27428. height: math.unit(3 + 2 / 12, "inches"),
  27429. weight: math.unit(0.3, "ounces"),
  27430. name: "Front",
  27431. image: {
  27432. source: "./media/characters/hiphae/front.svg",
  27433. extra: 1931 / 1683,
  27434. bottom: 24 / 1955
  27435. }
  27436. },
  27437. },
  27438. [
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(3 + 1 / 2, "inches"),
  27442. default: true
  27443. },
  27444. ]
  27445. ))
  27446. characterMakers.push(() => makeCharacter(
  27447. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27448. {
  27449. front: {
  27450. height: math.unit(5 + 10 / 12, "feet"),
  27451. weight: math.unit(165, "lb"),
  27452. name: "Front",
  27453. image: {
  27454. source: "./media/characters/nicky/front.svg",
  27455. extra: 3144 / 2886,
  27456. bottom: 45.6 / 3192
  27457. }
  27458. },
  27459. back: {
  27460. height: math.unit(5 + 10 / 12, "feet"),
  27461. weight: math.unit(165, "lb"),
  27462. name: "Back",
  27463. image: {
  27464. source: "./media/characters/nicky/back.svg",
  27465. extra: 3055 / 2804,
  27466. bottom: 28.4 / 3087
  27467. }
  27468. },
  27469. frontclothed: {
  27470. height: math.unit(5 + 10 / 12, "feet"),
  27471. weight: math.unit(165, "lb"),
  27472. name: "Front-clothed",
  27473. image: {
  27474. source: "./media/characters/nicky/front-clothed.svg",
  27475. extra: 3184.9 / 2926.9,
  27476. bottom: 86.5 / 3239.9
  27477. }
  27478. },
  27479. foot: {
  27480. height: math.unit(1.16, "feet"),
  27481. name: "Foot",
  27482. image: {
  27483. source: "./media/characters/nicky/foot.svg"
  27484. }
  27485. },
  27486. feet: {
  27487. height: math.unit(1.34, "feet"),
  27488. name: "Feet",
  27489. image: {
  27490. source: "./media/characters/nicky/feet.svg"
  27491. }
  27492. },
  27493. maw: {
  27494. height: math.unit(0.9, "feet"),
  27495. name: "Maw",
  27496. image: {
  27497. source: "./media/characters/nicky/maw.svg"
  27498. }
  27499. },
  27500. },
  27501. [
  27502. {
  27503. name: "Normal",
  27504. height: math.unit(5 + 10 / 12, "feet"),
  27505. default: true
  27506. },
  27507. {
  27508. name: "Macro",
  27509. height: math.unit(60, "feet")
  27510. },
  27511. {
  27512. name: "Megamacro",
  27513. height: math.unit(1, "mile")
  27514. },
  27515. ]
  27516. ))
  27517. characterMakers.push(() => makeCharacter(
  27518. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27519. {
  27520. side: {
  27521. height: math.unit(10, "feet"),
  27522. weight: math.unit(600, "lb"),
  27523. name: "Side",
  27524. image: {
  27525. source: "./media/characters/blair/side.svg",
  27526. bottom: 16.6 / 475,
  27527. extra: 458 / 431
  27528. }
  27529. },
  27530. },
  27531. [
  27532. {
  27533. name: "Micro",
  27534. height: math.unit(8, "inches")
  27535. },
  27536. {
  27537. name: "Normal",
  27538. height: math.unit(10, "feet"),
  27539. default: true
  27540. },
  27541. {
  27542. name: "Macro",
  27543. height: math.unit(180, "feet")
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27549. {
  27550. front: {
  27551. height: math.unit(5 + 4 / 12, "feet"),
  27552. weight: math.unit(125, "lb"),
  27553. name: "Front",
  27554. image: {
  27555. source: "./media/characters/fisher/front.svg",
  27556. extra: 444 / 390,
  27557. bottom: 2 / 444.8
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Micro",
  27564. height: math.unit(4, "inches")
  27565. },
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(5 + 4 / 12, "feet"),
  27569. default: true
  27570. },
  27571. {
  27572. name: "Macro",
  27573. height: math.unit(100, "feet")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(6.71, "feet"),
  27582. weight: math.unit(200, "lb"),
  27583. preyCapacity: math.unit(1000000, "people"),
  27584. name: "Front",
  27585. image: {
  27586. source: "./media/characters/gliss/front.svg",
  27587. extra: 2347 / 2231,
  27588. bottom: 113 / 2462
  27589. }
  27590. },
  27591. hammerspaceSize: {
  27592. height: math.unit(6.71 * 717, "feet"),
  27593. weight: math.unit(200, "lb"),
  27594. preyCapacity: math.unit(1000000, "people"),
  27595. name: "Hammerspace Size",
  27596. image: {
  27597. source: "./media/characters/gliss/front.svg",
  27598. extra: 2347 / 2231,
  27599. bottom: 113 / 2462
  27600. }
  27601. },
  27602. },
  27603. [
  27604. {
  27605. name: "Normal",
  27606. height: math.unit(6.71, "feet"),
  27607. default: true
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27613. {
  27614. side: {
  27615. height: math.unit(1.44, "m"),
  27616. weight: math.unit(80, "kg"),
  27617. name: "Side",
  27618. image: {
  27619. source: "./media/characters/dune-anderson/side.svg",
  27620. bottom: 49 / 1426
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Wolf-sized",
  27627. height: math.unit(1.44, "meters")
  27628. },
  27629. {
  27630. name: "Normal",
  27631. height: math.unit(5.05, "meters"),
  27632. default: true
  27633. },
  27634. {
  27635. name: "Big",
  27636. height: math.unit(14.4, "meters")
  27637. },
  27638. {
  27639. name: "Huge",
  27640. height: math.unit(144, "meters")
  27641. },
  27642. ]
  27643. ))
  27644. characterMakers.push(() => makeCharacter(
  27645. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27646. {
  27647. front: {
  27648. height: math.unit(6, "feet"),
  27649. weight: math.unit(220, "lb"),
  27650. name: "Front",
  27651. image: {
  27652. source: "./media/characters/hind/front.svg",
  27653. extra: 1912/1787,
  27654. bottom: 52/1964
  27655. }
  27656. },
  27657. back: {
  27658. height: math.unit(6, "feet"),
  27659. weight: math.unit(220, "lb"),
  27660. name: "Back",
  27661. image: {
  27662. source: "./media/characters/hind/back.svg",
  27663. extra: 1901/1794,
  27664. bottom: 26/1927
  27665. }
  27666. },
  27667. },
  27668. [
  27669. {
  27670. name: "Normal",
  27671. height: math.unit(6, "feet"),
  27672. default: true
  27673. },
  27674. ]
  27675. ))
  27676. characterMakers.push(() => makeCharacter(
  27677. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27678. {
  27679. front: {
  27680. height: math.unit(2.1, "meters"),
  27681. weight: math.unit(150, "lb"),
  27682. name: "Front",
  27683. image: {
  27684. source: "./media/characters/tharquench-sizestealer/front.svg",
  27685. extra: 1605/1470,
  27686. bottom: 36/1641
  27687. }
  27688. },
  27689. frontAlt: {
  27690. height: math.unit(2.1, "meters"),
  27691. weight: math.unit(150, "lb"),
  27692. name: "Front (Alt)",
  27693. image: {
  27694. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27695. extra: 2318 / 2063,
  27696. bottom: 93.4 / 2410
  27697. }
  27698. },
  27699. },
  27700. [
  27701. {
  27702. name: "Nano",
  27703. height: math.unit(1, "mm")
  27704. },
  27705. {
  27706. name: "Micro",
  27707. height: math.unit(1, "cm")
  27708. },
  27709. {
  27710. name: "Normal",
  27711. height: math.unit(2.1, "meters"),
  27712. default: true
  27713. },
  27714. ]
  27715. ))
  27716. characterMakers.push(() => makeCharacter(
  27717. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27718. {
  27719. front: {
  27720. height: math.unit(7 + 5 / 12, "feet"),
  27721. weight: math.unit(357, "lb"),
  27722. name: "Front",
  27723. image: {
  27724. source: "./media/characters/solex-draconov/front.svg",
  27725. extra: 1993 / 1865,
  27726. bottom: 117 / 2111
  27727. }
  27728. },
  27729. },
  27730. [
  27731. {
  27732. name: "Natural Height",
  27733. height: math.unit(7 + 5 / 12, "feet"),
  27734. default: true
  27735. },
  27736. {
  27737. name: "Macro",
  27738. height: math.unit(350, "feet")
  27739. },
  27740. {
  27741. name: "Macro+",
  27742. height: math.unit(1000, "feet")
  27743. },
  27744. {
  27745. name: "Megamacro",
  27746. height: math.unit(20, "km")
  27747. },
  27748. {
  27749. name: "Megamacro+",
  27750. height: math.unit(1000, "km")
  27751. },
  27752. {
  27753. name: "Gigamacro",
  27754. height: math.unit(2.5, "Gm")
  27755. },
  27756. {
  27757. name: "Teramacro",
  27758. height: math.unit(15, "Tm")
  27759. },
  27760. {
  27761. name: "Galactic",
  27762. height: math.unit(30, "Zm")
  27763. },
  27764. {
  27765. name: "Universal",
  27766. height: math.unit(21000, "Ym")
  27767. },
  27768. {
  27769. name: "Omniversal",
  27770. height: math.unit(9.861e50, "Ym")
  27771. },
  27772. {
  27773. name: "Existential",
  27774. height: math.unit(1e300, "meters")
  27775. },
  27776. ]
  27777. ))
  27778. characterMakers.push(() => makeCharacter(
  27779. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27780. {
  27781. side: {
  27782. height: math.unit(25, "feet"),
  27783. weight: math.unit(90000, "lb"),
  27784. name: "Side",
  27785. image: {
  27786. source: "./media/characters/mandarax/side.svg",
  27787. extra: 614 / 332,
  27788. bottom: 55 / 630
  27789. }
  27790. },
  27791. lounging: {
  27792. height: math.unit(15.4, "feet"),
  27793. weight: math.unit(90000, "lb"),
  27794. name: "Lounging",
  27795. image: {
  27796. source: "./media/characters/mandarax/lounging.svg",
  27797. extra: 817/609,
  27798. bottom: 685/1502
  27799. }
  27800. },
  27801. head: {
  27802. height: math.unit(11.4, "feet"),
  27803. name: "Head",
  27804. image: {
  27805. source: "./media/characters/mandarax/head.svg"
  27806. }
  27807. },
  27808. belly: {
  27809. height: math.unit(33, "feet"),
  27810. name: "Belly",
  27811. preyCapacity: math.unit(500, "people"),
  27812. image: {
  27813. source: "./media/characters/mandarax/belly.svg"
  27814. }
  27815. },
  27816. dick: {
  27817. height: math.unit(8.46, "feet"),
  27818. name: "Dick",
  27819. image: {
  27820. source: "./media/characters/mandarax/dick.svg"
  27821. }
  27822. },
  27823. top: {
  27824. height: math.unit(28, "meters"),
  27825. name: "Top",
  27826. image: {
  27827. source: "./media/characters/mandarax/top.svg"
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Normal",
  27834. height: math.unit(25, "feet"),
  27835. default: true
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(5, "feet"),
  27844. weight: math.unit(90, "lb"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/pixil/front.svg",
  27848. extra: 2000 / 1618,
  27849. bottom: 12.3 / 2011
  27850. }
  27851. },
  27852. },
  27853. [
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(5, "feet"),
  27857. default: true
  27858. },
  27859. {
  27860. name: "Megamacro",
  27861. height: math.unit(10, "miles"),
  27862. },
  27863. ]
  27864. ))
  27865. characterMakers.push(() => makeCharacter(
  27866. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27867. {
  27868. front: {
  27869. height: math.unit(7 + 2 / 12, "feet"),
  27870. weight: math.unit(200, "lb"),
  27871. name: "Front",
  27872. image: {
  27873. source: "./media/characters/angel/front.svg",
  27874. extra: 1946/1840,
  27875. bottom: 30/1976
  27876. }
  27877. },
  27878. },
  27879. [
  27880. {
  27881. name: "Normal",
  27882. height: math.unit(7 + 2 / 12, "feet"),
  27883. default: true
  27884. },
  27885. {
  27886. name: "Macro",
  27887. height: math.unit(1000, "feet")
  27888. },
  27889. {
  27890. name: "Megamacro",
  27891. height: math.unit(2, "miles")
  27892. },
  27893. {
  27894. name: "Gigamacro",
  27895. height: math.unit(20, "earths")
  27896. },
  27897. ]
  27898. ))
  27899. characterMakers.push(() => makeCharacter(
  27900. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27901. {
  27902. front: {
  27903. height: math.unit(5, "feet"),
  27904. weight: math.unit(180, "lb"),
  27905. name: "Front",
  27906. image: {
  27907. source: "./media/characters/mekana/front.svg",
  27908. extra: 1671 / 1605,
  27909. bottom: 3.5 / 1691
  27910. }
  27911. },
  27912. side: {
  27913. height: math.unit(5, "feet"),
  27914. weight: math.unit(180, "lb"),
  27915. name: "Side",
  27916. image: {
  27917. source: "./media/characters/mekana/side.svg",
  27918. extra: 1671 / 1605,
  27919. bottom: 3.5 / 1691
  27920. }
  27921. },
  27922. back: {
  27923. height: math.unit(5, "feet"),
  27924. weight: math.unit(180, "lb"),
  27925. name: "Back",
  27926. image: {
  27927. source: "./media/characters/mekana/back.svg",
  27928. extra: 1671 / 1605,
  27929. bottom: 3.5 / 1691
  27930. }
  27931. },
  27932. },
  27933. [
  27934. {
  27935. name: "Normal",
  27936. height: math.unit(5, "feet"),
  27937. default: true
  27938. },
  27939. ]
  27940. ))
  27941. characterMakers.push(() => makeCharacter(
  27942. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27943. {
  27944. front: {
  27945. height: math.unit(4 + 6 / 12, "feet"),
  27946. weight: math.unit(80, "lb"),
  27947. name: "Front",
  27948. image: {
  27949. source: "./media/characters/pixie/front.svg",
  27950. extra: 1924 / 1825,
  27951. bottom: 22.4 / 1946
  27952. }
  27953. },
  27954. },
  27955. [
  27956. {
  27957. name: "Normal",
  27958. height: math.unit(4 + 6 / 12, "feet"),
  27959. default: true
  27960. },
  27961. {
  27962. name: "Macro",
  27963. height: math.unit(40, "feet")
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27969. {
  27970. front: {
  27971. height: math.unit(2.1, "meters"),
  27972. weight: math.unit(200, "lb"),
  27973. name: "Front",
  27974. image: {
  27975. source: "./media/characters/the-lascivious/front.svg",
  27976. extra: 1 / 0.893,
  27977. bottom: 3.5 / 573.7
  27978. }
  27979. },
  27980. },
  27981. [
  27982. {
  27983. name: "Human Scale",
  27984. height: math.unit(2.1, "meters")
  27985. },
  27986. {
  27987. name: "Wolxi Scale",
  27988. height: math.unit(46.2, "m"),
  27989. default: true
  27990. },
  27991. {
  27992. name: "Boinker of Buildings",
  27993. height: math.unit(10, "km")
  27994. },
  27995. {
  27996. name: "Shagger of Skyscrapers",
  27997. height: math.unit(40, "km")
  27998. },
  27999. {
  28000. name: "Banger of Boroughs",
  28001. height: math.unit(4000, "km")
  28002. },
  28003. {
  28004. name: "Screwer of States",
  28005. height: math.unit(100000, "km")
  28006. },
  28007. {
  28008. name: "Pounder of Planets",
  28009. height: math.unit(2000000, "km")
  28010. },
  28011. ]
  28012. ))
  28013. characterMakers.push(() => makeCharacter(
  28014. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28015. {
  28016. front: {
  28017. height: math.unit(6, "feet"),
  28018. weight: math.unit(150, "lb"),
  28019. name: "Front",
  28020. image: {
  28021. source: "./media/characters/aj/front.svg",
  28022. extra: 2039 / 1562,
  28023. bottom: 40 / 2079
  28024. }
  28025. },
  28026. },
  28027. [
  28028. {
  28029. name: "Normal",
  28030. height: math.unit(11 + 6 / 12, "feet"),
  28031. default: true
  28032. },
  28033. {
  28034. name: "Megamacro",
  28035. height: math.unit(60, "megameters")
  28036. },
  28037. ]
  28038. ))
  28039. characterMakers.push(() => makeCharacter(
  28040. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28041. {
  28042. side: {
  28043. height: math.unit(31 + 8 / 12, "feet"),
  28044. weight: math.unit(75000, "kg"),
  28045. name: "Side",
  28046. image: {
  28047. source: "./media/characters/koros/side.svg",
  28048. extra: 1442 / 1297,
  28049. bottom: 122.7 / 1562
  28050. }
  28051. },
  28052. dicksKingsCrown: {
  28053. height: math.unit(6, "feet"),
  28054. name: "Dicks (King's Crown)",
  28055. image: {
  28056. source: "./media/characters/koros/dicks-kings-crown.svg"
  28057. }
  28058. },
  28059. dicksTailSet: {
  28060. height: math.unit(3, "feet"),
  28061. name: "Dicks (Tail Set)",
  28062. image: {
  28063. source: "./media/characters/koros/dicks-tail-set.svg"
  28064. }
  28065. },
  28066. dickCumming: {
  28067. height: math.unit(7.98, "feet"),
  28068. name: "Dick (Cumming)",
  28069. image: {
  28070. source: "./media/characters/koros/dick-cumming.svg"
  28071. }
  28072. },
  28073. dicksBack: {
  28074. height: math.unit(5.9, "feet"),
  28075. name: "Dicks (Back)",
  28076. image: {
  28077. source: "./media/characters/koros/dicks-back.svg"
  28078. }
  28079. },
  28080. dicksFront: {
  28081. height: math.unit(3.72, "feet"),
  28082. name: "Dicks (Front)",
  28083. image: {
  28084. source: "./media/characters/koros/dicks-front.svg"
  28085. }
  28086. },
  28087. dicksPeeking: {
  28088. height: math.unit(3.0, "feet"),
  28089. name: "Dicks (Peeking)",
  28090. image: {
  28091. source: "./media/characters/koros/dicks-peeking.svg"
  28092. }
  28093. },
  28094. eye: {
  28095. height: math.unit(1.7, "feet"),
  28096. name: "Eye",
  28097. image: {
  28098. source: "./media/characters/koros/eye.svg"
  28099. }
  28100. },
  28101. headFront: {
  28102. height: math.unit(11.69, "feet"),
  28103. name: "Head (Front)",
  28104. image: {
  28105. source: "./media/characters/koros/head-front.svg"
  28106. }
  28107. },
  28108. headSide: {
  28109. height: math.unit(14, "feet"),
  28110. name: "Head (Side)",
  28111. image: {
  28112. source: "./media/characters/koros/head-side.svg"
  28113. }
  28114. },
  28115. leg: {
  28116. height: math.unit(17, "feet"),
  28117. name: "Leg",
  28118. image: {
  28119. source: "./media/characters/koros/leg.svg"
  28120. }
  28121. },
  28122. mawSide: {
  28123. height: math.unit(12.8, "feet"),
  28124. name: "Maw (Side)",
  28125. image: {
  28126. source: "./media/characters/koros/maw-side.svg"
  28127. }
  28128. },
  28129. mawSpitting: {
  28130. height: math.unit(17, "feet"),
  28131. name: "Maw (Spitting)",
  28132. image: {
  28133. source: "./media/characters/koros/maw-spitting.svg"
  28134. }
  28135. },
  28136. slit: {
  28137. height: math.unit(2.8, "feet"),
  28138. name: "Slit",
  28139. image: {
  28140. source: "./media/characters/koros/slit.svg"
  28141. }
  28142. },
  28143. stomach: {
  28144. height: math.unit(6.8, "feet"),
  28145. preyCapacity: math.unit(20, "people"),
  28146. name: "Stomach",
  28147. image: {
  28148. source: "./media/characters/koros/stomach.svg"
  28149. }
  28150. },
  28151. wingspanBottom: {
  28152. height: math.unit(114, "feet"),
  28153. name: "Wingspan (Bottom)",
  28154. image: {
  28155. source: "./media/characters/koros/wingspan-bottom.svg"
  28156. }
  28157. },
  28158. wingspanTop: {
  28159. height: math.unit(104, "feet"),
  28160. name: "Wingspan (Top)",
  28161. image: {
  28162. source: "./media/characters/koros/wingspan-top.svg"
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Normal",
  28169. height: math.unit(31 + 8 / 12, "feet"),
  28170. default: true
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28176. {
  28177. front: {
  28178. height: math.unit(18 + 5 / 12, "feet"),
  28179. weight: math.unit(3750, "kg"),
  28180. name: "Front",
  28181. image: {
  28182. source: "./media/characters/vexx/front.svg",
  28183. extra: 426 / 396,
  28184. bottom: 31.5 / 458
  28185. }
  28186. },
  28187. maw: {
  28188. height: math.unit(6, "feet"),
  28189. name: "Maw",
  28190. image: {
  28191. source: "./media/characters/vexx/maw.svg"
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(18 + 5 / 12, "feet"),
  28199. default: true
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28205. {
  28206. front: {
  28207. height: math.unit(17 + 6 / 12, "feet"),
  28208. weight: math.unit(150, "lb"),
  28209. name: "Front",
  28210. image: {
  28211. source: "./media/characters/baadra/front.svg",
  28212. extra: 1694/1553,
  28213. bottom: 179/1873
  28214. }
  28215. },
  28216. frontAlt: {
  28217. height: math.unit(17 + 6 / 12, "feet"),
  28218. weight: math.unit(150, "lb"),
  28219. name: "Front (Alt)",
  28220. image: {
  28221. source: "./media/characters/baadra/front-alt.svg",
  28222. extra: 3137 / 2890,
  28223. bottom: 168.4 / 3305
  28224. }
  28225. },
  28226. back: {
  28227. height: math.unit(17 + 6 / 12, "feet"),
  28228. weight: math.unit(150, "lb"),
  28229. name: "Back",
  28230. image: {
  28231. source: "./media/characters/baadra/back.svg",
  28232. extra: 3142 / 2890,
  28233. bottom: 220 / 3371
  28234. }
  28235. },
  28236. head: {
  28237. height: math.unit(5.45, "feet"),
  28238. name: "Head",
  28239. image: {
  28240. source: "./media/characters/baadra/head.svg"
  28241. }
  28242. },
  28243. headAngry: {
  28244. height: math.unit(4.95, "feet"),
  28245. name: "Head (Angry)",
  28246. image: {
  28247. source: "./media/characters/baadra/head-angry.svg"
  28248. }
  28249. },
  28250. headOpen: {
  28251. height: math.unit(6, "feet"),
  28252. name: "Head (Open)",
  28253. image: {
  28254. source: "./media/characters/baadra/head-open.svg"
  28255. }
  28256. },
  28257. },
  28258. [
  28259. {
  28260. name: "Normal",
  28261. height: math.unit(17 + 6 / 12, "feet"),
  28262. default: true
  28263. },
  28264. ]
  28265. ))
  28266. characterMakers.push(() => makeCharacter(
  28267. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28268. {
  28269. front: {
  28270. height: math.unit(7 + 3 / 12, "feet"),
  28271. weight: math.unit(180, "lb"),
  28272. name: "Front",
  28273. image: {
  28274. source: "./media/characters/juri/front.svg",
  28275. extra: 1401 / 1237,
  28276. bottom: 18.5 / 1418
  28277. }
  28278. },
  28279. side: {
  28280. height: math.unit(7 + 3 / 12, "feet"),
  28281. weight: math.unit(180, "lb"),
  28282. name: "Side",
  28283. image: {
  28284. source: "./media/characters/juri/side.svg",
  28285. extra: 1424 / 1242,
  28286. bottom: 18.5 / 1447
  28287. }
  28288. },
  28289. sitting: {
  28290. height: math.unit(6, "feet"),
  28291. weight: math.unit(180, "lb"),
  28292. name: "Sitting",
  28293. image: {
  28294. source: "./media/characters/juri/sitting.svg",
  28295. extra: 1270 / 1143,
  28296. bottom: 100 / 1343
  28297. }
  28298. },
  28299. back: {
  28300. height: math.unit(7 + 3 / 12, "feet"),
  28301. weight: math.unit(180, "lb"),
  28302. name: "Back",
  28303. image: {
  28304. source: "./media/characters/juri/back.svg",
  28305. extra: 1377 / 1240,
  28306. bottom: 23.7 / 1405
  28307. }
  28308. },
  28309. maw: {
  28310. height: math.unit(2.8, "feet"),
  28311. name: "Maw",
  28312. image: {
  28313. source: "./media/characters/juri/maw.svg"
  28314. }
  28315. },
  28316. stomach: {
  28317. height: math.unit(0.89, "feet"),
  28318. preyCapacity: math.unit(4, "liters"),
  28319. name: "Stomach",
  28320. image: {
  28321. source: "./media/characters/juri/stomach.svg"
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(7 + 3 / 12, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28335. {
  28336. fox: {
  28337. height: math.unit(5 + 6 / 12, "feet"),
  28338. weight: math.unit(140, "lb"),
  28339. name: "Fox",
  28340. image: {
  28341. source: "./media/characters/maxene-sita/fox.svg",
  28342. extra: 146 / 138,
  28343. bottom: 2.1 / 148.19
  28344. }
  28345. },
  28346. foxLaying: {
  28347. height: math.unit(1.70, "feet"),
  28348. weight: math.unit(140, "lb"),
  28349. name: "Fox (Laying)",
  28350. image: {
  28351. source: "./media/characters/maxene-sita/fox-laying.svg",
  28352. extra: 910 / 572,
  28353. bottom: 71 / 981
  28354. }
  28355. },
  28356. kitsune: {
  28357. height: math.unit(10, "feet"),
  28358. weight: math.unit(800, "lb"),
  28359. name: "Kitsune",
  28360. image: {
  28361. source: "./media/characters/maxene-sita/kitsune.svg",
  28362. extra: 185 / 176,
  28363. bottom: 4.7 / 189.9
  28364. }
  28365. },
  28366. hellhound: {
  28367. height: math.unit(10, "feet"),
  28368. weight: math.unit(700, "lb"),
  28369. name: "Hellhound",
  28370. image: {
  28371. source: "./media/characters/maxene-sita/hellhound.svg",
  28372. extra: 1600 / 1545,
  28373. bottom: 81 / 1681
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Normal",
  28380. height: math.unit(5 + 6 / 12, "feet"),
  28381. default: true
  28382. },
  28383. ]
  28384. ))
  28385. characterMakers.push(() => makeCharacter(
  28386. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28387. {
  28388. front: {
  28389. height: math.unit(3 + 4 / 12, "feet"),
  28390. weight: math.unit(70, "lb"),
  28391. name: "Front",
  28392. image: {
  28393. source: "./media/characters/maia/front.svg",
  28394. extra: 227 / 219.5,
  28395. bottom: 40 / 267
  28396. }
  28397. },
  28398. back: {
  28399. height: math.unit(3 + 4 / 12, "feet"),
  28400. weight: math.unit(70, "lb"),
  28401. name: "Back",
  28402. image: {
  28403. source: "./media/characters/maia/back.svg",
  28404. extra: 237 / 225
  28405. }
  28406. },
  28407. },
  28408. [
  28409. {
  28410. name: "Normal",
  28411. height: math.unit(3 + 4 / 12, "feet"),
  28412. default: true
  28413. },
  28414. ]
  28415. ))
  28416. characterMakers.push(() => makeCharacter(
  28417. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28418. {
  28419. front: {
  28420. height: math.unit(5 + 10 / 12, "feet"),
  28421. weight: math.unit(197, "lb"),
  28422. name: "Front",
  28423. image: {
  28424. source: "./media/characters/jabaro/front.svg",
  28425. extra: 225 / 216,
  28426. bottom: 5.06 / 230
  28427. }
  28428. },
  28429. back: {
  28430. height: math.unit(5 + 10 / 12, "feet"),
  28431. weight: math.unit(197, "lb"),
  28432. name: "Back",
  28433. image: {
  28434. source: "./media/characters/jabaro/back.svg",
  28435. extra: 225 / 219,
  28436. bottom: 1.9 / 227
  28437. }
  28438. },
  28439. },
  28440. [
  28441. {
  28442. name: "Normal",
  28443. height: math.unit(5 + 10 / 12, "feet"),
  28444. default: true
  28445. },
  28446. ]
  28447. ))
  28448. characterMakers.push(() => makeCharacter(
  28449. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28450. {
  28451. front: {
  28452. height: math.unit(5 + 8 / 12, "feet"),
  28453. weight: math.unit(139, "lb"),
  28454. name: "Front",
  28455. image: {
  28456. source: "./media/characters/risa/front.svg",
  28457. extra: 270 / 260,
  28458. bottom: 11.2 / 282
  28459. }
  28460. },
  28461. back: {
  28462. height: math.unit(5 + 8 / 12, "feet"),
  28463. weight: math.unit(139, "lb"),
  28464. name: "Back",
  28465. image: {
  28466. source: "./media/characters/risa/back.svg",
  28467. extra: 264 / 255,
  28468. bottom: 4 / 268
  28469. }
  28470. },
  28471. },
  28472. [
  28473. {
  28474. name: "Normal",
  28475. height: math.unit(5 + 8 / 12, "feet"),
  28476. default: true
  28477. },
  28478. ]
  28479. ))
  28480. characterMakers.push(() => makeCharacter(
  28481. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28482. {
  28483. front: {
  28484. height: math.unit(2 + 11 / 12, "feet"),
  28485. weight: math.unit(30, "lb"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/weatley/front.svg",
  28489. bottom: 10.7 / 414,
  28490. extra: 403.5 / 362
  28491. }
  28492. },
  28493. back: {
  28494. height: math.unit(2 + 11 / 12, "feet"),
  28495. weight: math.unit(30, "lb"),
  28496. name: "Back",
  28497. image: {
  28498. source: "./media/characters/weatley/back.svg",
  28499. bottom: 10.7 / 414,
  28500. extra: 403.5 / 362
  28501. }
  28502. },
  28503. },
  28504. [
  28505. {
  28506. name: "Normal",
  28507. height: math.unit(2 + 11 / 12, "feet"),
  28508. default: true
  28509. },
  28510. ]
  28511. ))
  28512. characterMakers.push(() => makeCharacter(
  28513. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28514. {
  28515. front: {
  28516. height: math.unit(5 + 2 / 12, "feet"),
  28517. weight: math.unit(50, "kg"),
  28518. name: "Front",
  28519. image: {
  28520. source: "./media/characters/mercury-crescent/front.svg",
  28521. extra: 1088 / 1033,
  28522. bottom: 18.9 / 1109
  28523. }
  28524. },
  28525. },
  28526. [
  28527. {
  28528. name: "Normal",
  28529. height: math.unit(5 + 2 / 12, "feet"),
  28530. default: true
  28531. },
  28532. ]
  28533. ))
  28534. characterMakers.push(() => makeCharacter(
  28535. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28536. {
  28537. front: {
  28538. height: math.unit(2, "feet"),
  28539. weight: math.unit(15, "kg"),
  28540. name: "Front",
  28541. image: {
  28542. source: "./media/characters/diamond-jones/front.svg",
  28543. extra: 727/723,
  28544. bottom: 46/773
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Normal",
  28551. height: math.unit(2, "feet"),
  28552. default: true
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(3, "feet"),
  28561. weight: math.unit(30, "kg"),
  28562. name: "Front",
  28563. image: {
  28564. source: "./media/characters/sweet-bit/front.svg",
  28565. extra: 675 / 567,
  28566. bottom: 27.7 / 703
  28567. }
  28568. },
  28569. },
  28570. [
  28571. {
  28572. name: "Normal",
  28573. height: math.unit(3, "feet"),
  28574. default: true
  28575. },
  28576. ]
  28577. ))
  28578. characterMakers.push(() => makeCharacter(
  28579. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28580. {
  28581. side: {
  28582. height: math.unit(9.178, "feet"),
  28583. weight: math.unit(500, "lb"),
  28584. name: "Side",
  28585. image: {
  28586. source: "./media/characters/umbrazen/side.svg",
  28587. extra: 1730 / 1473,
  28588. bottom: 34.6 / 1765
  28589. }
  28590. },
  28591. },
  28592. [
  28593. {
  28594. name: "Normal",
  28595. height: math.unit(9.178, "feet"),
  28596. default: true
  28597. },
  28598. ]
  28599. ))
  28600. characterMakers.push(() => makeCharacter(
  28601. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28602. {
  28603. front: {
  28604. height: math.unit(10, "feet"),
  28605. weight: math.unit(750, "lb"),
  28606. name: "Front",
  28607. image: {
  28608. source: "./media/characters/arlist/front.svg",
  28609. extra: 961 / 778,
  28610. bottom: 6.2 / 986
  28611. }
  28612. },
  28613. },
  28614. [
  28615. {
  28616. name: "Normal",
  28617. height: math.unit(10, "feet"),
  28618. default: true
  28619. },
  28620. ]
  28621. ))
  28622. characterMakers.push(() => makeCharacter(
  28623. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28624. {
  28625. front: {
  28626. height: math.unit(5 + 1 / 12, "feet"),
  28627. weight: math.unit(110, "lb"),
  28628. name: "Front",
  28629. image: {
  28630. source: "./media/characters/aradel/front.svg",
  28631. extra: 324 / 303,
  28632. bottom: 3.6 / 329.4
  28633. }
  28634. },
  28635. },
  28636. [
  28637. {
  28638. name: "Normal",
  28639. height: math.unit(5 + 1 / 12, "feet"),
  28640. default: true
  28641. },
  28642. ]
  28643. ))
  28644. characterMakers.push(() => makeCharacter(
  28645. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28646. {
  28647. dressed: {
  28648. height: math.unit(3 + 8 / 12, "feet"),
  28649. weight: math.unit(50, "lb"),
  28650. name: "Dressed",
  28651. image: {
  28652. source: "./media/characters/serryn/dressed.svg",
  28653. extra: 1792 / 1656,
  28654. bottom: 43.5 / 1840
  28655. }
  28656. },
  28657. nude: {
  28658. height: math.unit(3 + 8 / 12, "feet"),
  28659. weight: math.unit(50, "lb"),
  28660. name: "Nude",
  28661. image: {
  28662. source: "./media/characters/serryn/nude.svg",
  28663. extra: 1792 / 1656,
  28664. bottom: 43.5 / 1840
  28665. }
  28666. },
  28667. },
  28668. [
  28669. {
  28670. name: "Normal",
  28671. height: math.unit(3 + 8 / 12, "feet"),
  28672. default: true
  28673. },
  28674. ]
  28675. ))
  28676. characterMakers.push(() => makeCharacter(
  28677. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28678. {
  28679. front: {
  28680. height: math.unit(7 + 10 / 12, "feet"),
  28681. weight: math.unit(255, "lb"),
  28682. name: "Front",
  28683. image: {
  28684. source: "./media/characters/xavier-thyme/front.svg",
  28685. extra: 3733 / 3642,
  28686. bottom: 131 / 3869
  28687. }
  28688. },
  28689. frontRaven: {
  28690. height: math.unit(7 + 10 / 12, "feet"),
  28691. weight: math.unit(255, "lb"),
  28692. name: "Front (Raven)",
  28693. image: {
  28694. source: "./media/characters/xavier-thyme/front-raven.svg",
  28695. extra: 4385 / 3642,
  28696. bottom: 131 / 4517
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Normal",
  28703. height: math.unit(7 + 10 / 12, "feet"),
  28704. default: true
  28705. },
  28706. ]
  28707. ))
  28708. characterMakers.push(() => makeCharacter(
  28709. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28710. {
  28711. front: {
  28712. height: math.unit(1.6, "m"),
  28713. weight: math.unit(50, "kg"),
  28714. name: "Front",
  28715. image: {
  28716. source: "./media/characters/kiki/front.svg",
  28717. extra: 4682 / 3610,
  28718. bottom: 115 / 4777
  28719. }
  28720. },
  28721. },
  28722. [
  28723. {
  28724. name: "Normal",
  28725. height: math.unit(1.6, "meters"),
  28726. default: true
  28727. },
  28728. ]
  28729. ))
  28730. characterMakers.push(() => makeCharacter(
  28731. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28732. {
  28733. front: {
  28734. height: math.unit(50, "m"),
  28735. weight: math.unit(500, "tonnes"),
  28736. name: "Front",
  28737. image: {
  28738. source: "./media/characters/ryoko/front.svg",
  28739. extra: 4632 / 3926,
  28740. bottom: 193 / 4823
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Normal",
  28747. height: math.unit(50, "meters"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(30, "m"),
  28757. weight: math.unit(22, "tonnes"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/elio/front.svg",
  28761. extra: 4582 / 3720,
  28762. bottom: 236 / 4828
  28763. }
  28764. },
  28765. },
  28766. [
  28767. {
  28768. name: "Normal",
  28769. height: math.unit(30, "meters"),
  28770. default: true
  28771. },
  28772. ]
  28773. ))
  28774. characterMakers.push(() => makeCharacter(
  28775. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28776. {
  28777. front: {
  28778. height: math.unit(6 + 3 / 12, "feet"),
  28779. weight: math.unit(120, "lb"),
  28780. name: "Front",
  28781. image: {
  28782. source: "./media/characters/azura/front.svg",
  28783. extra: 1149 / 1135,
  28784. bottom: 45 / 1194
  28785. }
  28786. },
  28787. frontClothed: {
  28788. height: math.unit(6 + 3 / 12, "feet"),
  28789. weight: math.unit(120, "lb"),
  28790. name: "Front (Clothed)",
  28791. image: {
  28792. source: "./media/characters/azura/front-clothed.svg",
  28793. extra: 1149 / 1135,
  28794. bottom: 45 / 1194
  28795. }
  28796. },
  28797. },
  28798. [
  28799. {
  28800. name: "Normal",
  28801. height: math.unit(6 + 3 / 12, "feet"),
  28802. default: true
  28803. },
  28804. {
  28805. name: "Macro",
  28806. height: math.unit(20 + 6 / 12, "feet")
  28807. },
  28808. {
  28809. name: "Megamacro",
  28810. height: math.unit(12, "miles")
  28811. },
  28812. {
  28813. name: "Gigamacro",
  28814. height: math.unit(10000, "miles")
  28815. },
  28816. {
  28817. name: "Teramacro",
  28818. height: math.unit(900000, "miles")
  28819. },
  28820. ]
  28821. ))
  28822. characterMakers.push(() => makeCharacter(
  28823. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28824. {
  28825. front: {
  28826. height: math.unit(12, "feet"),
  28827. weight: math.unit(1, "ton"),
  28828. capacity: math.unit(660000, "gallons"),
  28829. name: "Front",
  28830. image: {
  28831. source: "./media/characters/zeus/front.svg",
  28832. extra: 5005 / 4717,
  28833. bottom: 363 / 5388
  28834. }
  28835. },
  28836. },
  28837. [
  28838. {
  28839. name: "Normal",
  28840. height: math.unit(12, "feet")
  28841. },
  28842. {
  28843. name: "Preferred Size",
  28844. height: math.unit(0.5, "miles"),
  28845. default: true
  28846. },
  28847. {
  28848. name: "Giga Horse",
  28849. height: math.unit(300, "miles")
  28850. },
  28851. {
  28852. name: "Riding Planets",
  28853. height: math.unit(30, "megameters")
  28854. },
  28855. {
  28856. name: "Cosmic Giant",
  28857. height: math.unit(3, "zettameters")
  28858. },
  28859. {
  28860. name: "Breeding God",
  28861. height: math.unit(9.92e22, "yottameters")
  28862. },
  28863. ]
  28864. ))
  28865. characterMakers.push(() => makeCharacter(
  28866. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28867. {
  28868. side: {
  28869. height: math.unit(9, "feet"),
  28870. weight: math.unit(1500, "kg"),
  28871. name: "Side",
  28872. image: {
  28873. source: "./media/characters/fang/side.svg",
  28874. extra: 924 / 866,
  28875. bottom: 47.5 / 972.3
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(9, "feet"),
  28883. default: true
  28884. },
  28885. {
  28886. name: "Macro",
  28887. height: math.unit(75 + 6 / 12, "feet")
  28888. },
  28889. {
  28890. name: "Teramacro",
  28891. height: math.unit(50000, "miles")
  28892. },
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28897. {
  28898. front: {
  28899. height: math.unit(10, "feet"),
  28900. weight: math.unit(2, "tons"),
  28901. name: "Front",
  28902. image: {
  28903. source: "./media/characters/rekhit/front.svg",
  28904. extra: 2796 / 2590,
  28905. bottom: 225 / 3022
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(10, "feet"),
  28913. default: true
  28914. },
  28915. {
  28916. name: "Macro",
  28917. height: math.unit(500, "feet")
  28918. },
  28919. ]
  28920. ))
  28921. characterMakers.push(() => makeCharacter(
  28922. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28923. {
  28924. front: {
  28925. height: math.unit(7 + 6.451 / 12, "feet"),
  28926. weight: math.unit(310, "lb"),
  28927. name: "Front",
  28928. image: {
  28929. source: "./media/characters/dahlia-verrick/front.svg",
  28930. extra: 1488 / 1365,
  28931. bottom: 6.2 / 1495
  28932. }
  28933. },
  28934. back: {
  28935. height: math.unit(7 + 6.451 / 12, "feet"),
  28936. weight: math.unit(310, "lb"),
  28937. name: "Back",
  28938. image: {
  28939. source: "./media/characters/dahlia-verrick/back.svg",
  28940. extra: 1472 / 1351,
  28941. bottom: 5.28 / 1477
  28942. }
  28943. },
  28944. frontBusiness: {
  28945. height: math.unit(7 + 6.451 / 12, "feet"),
  28946. weight: math.unit(200, "lb"),
  28947. name: "Front (Business)",
  28948. image: {
  28949. source: "./media/characters/dahlia-verrick/front-business.svg",
  28950. extra: 1478 / 1381,
  28951. bottom: 5.5 / 1484
  28952. }
  28953. },
  28954. frontCasual: {
  28955. height: math.unit(7 + 6.451 / 12, "feet"),
  28956. weight: math.unit(200, "lb"),
  28957. name: "Front (Casual)",
  28958. image: {
  28959. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28960. extra: 1478 / 1381,
  28961. bottom: 5.5 / 1484
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Travel-Sized",
  28968. height: math.unit(7.45, "inches")
  28969. },
  28970. {
  28971. name: "Normal",
  28972. height: math.unit(7 + 6.451 / 12, "feet"),
  28973. default: true
  28974. },
  28975. {
  28976. name: "Hitting the Town",
  28977. height: math.unit(37 + 8 / 12, "feet")
  28978. },
  28979. {
  28980. name: "Stomp in the Suburbs",
  28981. height: math.unit(964 + 9.728 / 12, "feet")
  28982. },
  28983. {
  28984. name: "Sit on the City",
  28985. height: math.unit(61747 + 10.592 / 12, "feet")
  28986. },
  28987. {
  28988. name: "Glomp the Globe",
  28989. height: math.unit(252919327 + 4.832 / 12, "feet")
  28990. },
  28991. ]
  28992. ))
  28993. characterMakers.push(() => makeCharacter(
  28994. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28995. {
  28996. front: {
  28997. height: math.unit(6 + 4 / 12, "feet"),
  28998. weight: math.unit(320, "lb"),
  28999. name: "Front",
  29000. image: {
  29001. source: "./media/characters/balina-mahigan/front.svg",
  29002. extra: 447 / 428,
  29003. bottom: 18 / 466
  29004. }
  29005. },
  29006. back: {
  29007. height: math.unit(6 + 4 / 12, "feet"),
  29008. weight: math.unit(320, "lb"),
  29009. name: "Back",
  29010. image: {
  29011. source: "./media/characters/balina-mahigan/back.svg",
  29012. extra: 445 / 428,
  29013. bottom: 4.07 / 448
  29014. }
  29015. },
  29016. arm: {
  29017. height: math.unit(1.88, "feet"),
  29018. name: "Arm",
  29019. image: {
  29020. source: "./media/characters/balina-mahigan/arm.svg"
  29021. }
  29022. },
  29023. backPort: {
  29024. height: math.unit(0.685, "feet"),
  29025. name: "Back Port",
  29026. image: {
  29027. source: "./media/characters/balina-mahigan/back-port.svg"
  29028. }
  29029. },
  29030. hoofpaw: {
  29031. height: math.unit(1.41, "feet"),
  29032. name: "Hoofpaw",
  29033. image: {
  29034. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29035. }
  29036. },
  29037. leftHandBack: {
  29038. height: math.unit(0.938, "feet"),
  29039. name: "Left Hand (Back)",
  29040. image: {
  29041. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29042. }
  29043. },
  29044. leftHandFront: {
  29045. height: math.unit(0.938, "feet"),
  29046. name: "Left Hand (Front)",
  29047. image: {
  29048. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29049. }
  29050. },
  29051. rightHandBack: {
  29052. height: math.unit(0.95, "feet"),
  29053. name: "Right Hand (Back)",
  29054. image: {
  29055. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29056. }
  29057. },
  29058. rightHandFront: {
  29059. height: math.unit(0.95, "feet"),
  29060. name: "Right Hand (Front)",
  29061. image: {
  29062. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(6 + 4 / 12, "feet"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(6, "feet"),
  29079. weight: math.unit(320, "lb"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/balina-mejeri/front.svg",
  29083. extra: 517 / 488,
  29084. bottom: 44.2 / 561
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Normal",
  29091. height: math.unit(6 + 4 / 12, "feet")
  29092. },
  29093. {
  29094. name: "Business",
  29095. height: math.unit(155, "feet"),
  29096. default: true
  29097. },
  29098. ]
  29099. ))
  29100. characterMakers.push(() => makeCharacter(
  29101. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29102. {
  29103. kneeling: {
  29104. height: math.unit(6 + 4 / 12, "feet"),
  29105. weight: math.unit(300 * 20, "lb"),
  29106. name: "Kneeling",
  29107. image: {
  29108. source: "./media/characters/balbarian/kneeling.svg",
  29109. extra: 922 / 862,
  29110. bottom: 42.4 / 965
  29111. }
  29112. },
  29113. },
  29114. [
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(6 + 4 / 12, "feet")
  29118. },
  29119. {
  29120. name: "Treasured",
  29121. height: math.unit(18 + 9 / 12, "feet"),
  29122. default: true
  29123. },
  29124. {
  29125. name: "Macro",
  29126. height: math.unit(900, "feet")
  29127. },
  29128. ]
  29129. ))
  29130. characterMakers.push(() => makeCharacter(
  29131. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29132. {
  29133. front: {
  29134. height: math.unit(6 + 4 / 12, "feet"),
  29135. weight: math.unit(325, "lb"),
  29136. name: "Front",
  29137. image: {
  29138. source: "./media/characters/balina-amarini/front.svg",
  29139. extra: 415 / 403,
  29140. bottom: 19 / 433.4
  29141. }
  29142. },
  29143. back: {
  29144. height: math.unit(6 + 4 / 12, "feet"),
  29145. weight: math.unit(325, "lb"),
  29146. name: "Back",
  29147. image: {
  29148. source: "./media/characters/balina-amarini/back.svg",
  29149. extra: 415 / 403,
  29150. bottom: 13.5 / 432
  29151. }
  29152. },
  29153. overdrive: {
  29154. height: math.unit(6 + 4 / 12, "feet"),
  29155. weight: math.unit(400, "lb"),
  29156. name: "Overdrive",
  29157. image: {
  29158. source: "./media/characters/balina-amarini/overdrive.svg",
  29159. extra: 269 / 259,
  29160. bottom: 12 / 282
  29161. }
  29162. },
  29163. },
  29164. [
  29165. {
  29166. name: "Boom",
  29167. height: math.unit(9 + 10 / 12, "feet"),
  29168. default: true
  29169. },
  29170. {
  29171. name: "Macro",
  29172. height: math.unit(280, "feet")
  29173. },
  29174. ]
  29175. ))
  29176. characterMakers.push(() => makeCharacter(
  29177. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29178. {
  29179. goddess: {
  29180. height: math.unit(600, "feet"),
  29181. weight: math.unit(2000000, "tons"),
  29182. name: "Goddess",
  29183. image: {
  29184. source: "./media/characters/lady-kubwa/goddess.svg",
  29185. extra: 1240.5 / 1223,
  29186. bottom: 22 / 1263
  29187. }
  29188. },
  29189. goddesser: {
  29190. height: math.unit(900, "feet"),
  29191. weight: math.unit(20000000, "lb"),
  29192. name: "Goddess-er",
  29193. image: {
  29194. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29195. extra: 899 / 888,
  29196. bottom: 12.6 / 912
  29197. }
  29198. },
  29199. },
  29200. [
  29201. {
  29202. name: "Macro",
  29203. height: math.unit(600, "feet"),
  29204. default: true
  29205. },
  29206. {
  29207. name: "Megamacro",
  29208. height: math.unit(250, "miles")
  29209. },
  29210. ]
  29211. ))
  29212. characterMakers.push(() => makeCharacter(
  29213. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29214. {
  29215. front: {
  29216. height: math.unit(7 + 7 / 12, "feet"),
  29217. weight: math.unit(250, "lb"),
  29218. name: "Front",
  29219. image: {
  29220. source: "./media/characters/tala-grovehorn/front.svg",
  29221. extra: 2636 / 2525,
  29222. bottom: 147 / 2781
  29223. }
  29224. },
  29225. back: {
  29226. height: math.unit(7 + 7 / 12, "feet"),
  29227. weight: math.unit(250, "lb"),
  29228. name: "Back",
  29229. image: {
  29230. source: "./media/characters/tala-grovehorn/back.svg",
  29231. extra: 2635 / 2539,
  29232. bottom: 100 / 2732.8
  29233. }
  29234. },
  29235. mouth: {
  29236. height: math.unit(1.15, "feet"),
  29237. name: "Mouth",
  29238. image: {
  29239. source: "./media/characters/tala-grovehorn/mouth.svg"
  29240. }
  29241. },
  29242. dick: {
  29243. height: math.unit(2.36, "feet"),
  29244. name: "Dick",
  29245. image: {
  29246. source: "./media/characters/tala-grovehorn/dick.svg"
  29247. }
  29248. },
  29249. slit: {
  29250. height: math.unit(0.61, "feet"),
  29251. name: "Slit",
  29252. image: {
  29253. source: "./media/characters/tala-grovehorn/slit.svg"
  29254. }
  29255. },
  29256. },
  29257. [
  29258. ]
  29259. ))
  29260. characterMakers.push(() => makeCharacter(
  29261. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29262. {
  29263. front: {
  29264. height: math.unit(7 + 7 / 12, "feet"),
  29265. weight: math.unit(225, "lb"),
  29266. name: "Front",
  29267. image: {
  29268. source: "./media/characters/epona/front.svg",
  29269. extra: 2445 / 2290,
  29270. bottom: 251 / 2696
  29271. }
  29272. },
  29273. back: {
  29274. height: math.unit(7 + 7 / 12, "feet"),
  29275. weight: math.unit(225, "lb"),
  29276. name: "Back",
  29277. image: {
  29278. source: "./media/characters/epona/back.svg",
  29279. extra: 2546 / 2408,
  29280. bottom: 44 / 2589
  29281. }
  29282. },
  29283. genitals: {
  29284. height: math.unit(1.5, "feet"),
  29285. name: "Genitals",
  29286. image: {
  29287. source: "./media/characters/epona/genitals.svg"
  29288. }
  29289. },
  29290. },
  29291. [
  29292. {
  29293. name: "Normal",
  29294. height: math.unit(7 + 7 / 12, "feet"),
  29295. default: true
  29296. },
  29297. ]
  29298. ))
  29299. characterMakers.push(() => makeCharacter(
  29300. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29301. {
  29302. front: {
  29303. height: math.unit(7, "feet"),
  29304. weight: math.unit(518, "lb"),
  29305. name: "Front",
  29306. image: {
  29307. source: "./media/characters/avia-bloodbourn/front.svg",
  29308. extra: 1466 / 1350,
  29309. bottom: 65 / 1527
  29310. }
  29311. },
  29312. },
  29313. [
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29318. {
  29319. front: {
  29320. height: math.unit(9.35, "feet"),
  29321. weight: math.unit(600, "lb"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/amera/front.svg",
  29325. extra: 891 / 818,
  29326. bottom: 30 / 922.7
  29327. }
  29328. },
  29329. back: {
  29330. height: math.unit(9.35, "feet"),
  29331. weight: math.unit(600, "lb"),
  29332. name: "Back",
  29333. image: {
  29334. source: "./media/characters/amera/back.svg",
  29335. extra: 876 / 824,
  29336. bottom: 6.8 / 884
  29337. }
  29338. },
  29339. dick: {
  29340. height: math.unit(2.14, "feet"),
  29341. name: "Dick",
  29342. image: {
  29343. source: "./media/characters/amera/dick.svg"
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Normal",
  29350. height: math.unit(9.35, "feet"),
  29351. default: true
  29352. },
  29353. ]
  29354. ))
  29355. characterMakers.push(() => makeCharacter(
  29356. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29357. {
  29358. kneeling: {
  29359. height: math.unit(3 + 4 / 12, "feet"),
  29360. weight: math.unit(90, "lb"),
  29361. name: "Kneeling",
  29362. image: {
  29363. source: "./media/characters/rosewen/kneeling.svg",
  29364. extra: 1835 / 1571,
  29365. bottom: 27.7 / 1862
  29366. }
  29367. },
  29368. },
  29369. [
  29370. {
  29371. name: "Normal",
  29372. height: math.unit(3 + 4 / 12, "feet"),
  29373. default: true
  29374. },
  29375. ]
  29376. ))
  29377. characterMakers.push(() => makeCharacter(
  29378. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29379. {
  29380. front: {
  29381. height: math.unit(5 + 10 / 12, "feet"),
  29382. weight: math.unit(200, "lb"),
  29383. name: "Front",
  29384. image: {
  29385. source: "./media/characters/sabah/front.svg",
  29386. extra: 849 / 763,
  29387. bottom: 33.9 / 881
  29388. }
  29389. },
  29390. },
  29391. [
  29392. {
  29393. name: "Normal",
  29394. height: math.unit(5 + 10 / 12, "feet"),
  29395. default: true
  29396. },
  29397. ]
  29398. ))
  29399. characterMakers.push(() => makeCharacter(
  29400. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29401. {
  29402. front: {
  29403. height: math.unit(3 + 5 / 12, "feet"),
  29404. weight: math.unit(40, "kg"),
  29405. name: "Front",
  29406. image: {
  29407. source: "./media/characters/purple-flame/front.svg",
  29408. extra: 1577 / 1412,
  29409. bottom: 97 / 1694
  29410. }
  29411. },
  29412. frontDressed: {
  29413. height: math.unit(3 + 5 / 12, "feet"),
  29414. weight: math.unit(40, "kg"),
  29415. name: "Front (Dressed)",
  29416. image: {
  29417. source: "./media/characters/purple-flame/front-dressed.svg",
  29418. extra: 1577 / 1412,
  29419. bottom: 97 / 1694
  29420. }
  29421. },
  29422. headphones: {
  29423. height: math.unit(0.85, "feet"),
  29424. name: "Headphones",
  29425. image: {
  29426. source: "./media/characters/purple-flame/headphones.svg"
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Really Small",
  29433. height: math.unit(5, "cm")
  29434. },
  29435. {
  29436. name: "Micro",
  29437. height: math.unit(1 + 5 / 12, "feet")
  29438. },
  29439. {
  29440. name: "Normal",
  29441. height: math.unit(3 + 5 / 12, "feet"),
  29442. default: true
  29443. },
  29444. {
  29445. name: "Minimacro",
  29446. height: math.unit(125, "feet")
  29447. },
  29448. {
  29449. name: "Macro",
  29450. height: math.unit(0.5, "miles")
  29451. },
  29452. {
  29453. name: "Megamacro",
  29454. height: math.unit(50, "miles")
  29455. },
  29456. {
  29457. name: "Gigantic",
  29458. height: math.unit(750, "miles")
  29459. },
  29460. {
  29461. name: "Planetary",
  29462. height: math.unit(15000, "miles")
  29463. },
  29464. ]
  29465. ))
  29466. characterMakers.push(() => makeCharacter(
  29467. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29468. {
  29469. front: {
  29470. height: math.unit(14, "feet"),
  29471. weight: math.unit(959, "lb"),
  29472. name: "Front",
  29473. image: {
  29474. source: "./media/characters/arsenal/front.svg",
  29475. extra: 2357 / 2157,
  29476. bottom: 93 / 2458
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Normal",
  29483. height: math.unit(14, "feet"),
  29484. default: true
  29485. },
  29486. ]
  29487. ))
  29488. characterMakers.push(() => makeCharacter(
  29489. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29490. {
  29491. front: {
  29492. height: math.unit(6, "feet"),
  29493. weight: math.unit(150, "lb"),
  29494. name: "Front",
  29495. image: {
  29496. source: "./media/characters/adira/front.svg",
  29497. extra: 1078 / 1029,
  29498. bottom: 87 / 1166
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Micro",
  29505. height: math.unit(4, "inches"),
  29506. default: true
  29507. },
  29508. {
  29509. name: "Macro",
  29510. height: math.unit(50, "feet")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(16, "feet"),
  29519. weight: math.unit(1000, "lb"),
  29520. name: "Front",
  29521. image: {
  29522. source: "./media/characters/grim/front.svg",
  29523. extra: 622 / 614,
  29524. bottom: 18.1 / 642
  29525. }
  29526. },
  29527. back: {
  29528. height: math.unit(16, "feet"),
  29529. weight: math.unit(1000, "lb"),
  29530. name: "Back",
  29531. image: {
  29532. source: "./media/characters/grim/back.svg",
  29533. extra: 610.6 / 602,
  29534. bottom: 40.8 / 652
  29535. }
  29536. },
  29537. hunched: {
  29538. height: math.unit(9.75, "feet"),
  29539. weight: math.unit(1000, "lb"),
  29540. name: "Hunched",
  29541. image: {
  29542. source: "./media/characters/grim/hunched.svg",
  29543. extra: 304 / 297,
  29544. bottom: 35.4 / 394
  29545. }
  29546. },
  29547. },
  29548. [
  29549. {
  29550. name: "Normal",
  29551. height: math.unit(16, "feet"),
  29552. default: true
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29558. {
  29559. front: {
  29560. height: math.unit(2.3, "meters"),
  29561. weight: math.unit(300, "lb"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/sinja/front-sfw.svg",
  29565. extra: 1393 / 1294,
  29566. bottom: 70 / 1463
  29567. }
  29568. },
  29569. frontNsfw: {
  29570. height: math.unit(2.3, "meters"),
  29571. weight: math.unit(300, "lb"),
  29572. name: "Front (NSFW)",
  29573. image: {
  29574. source: "./media/characters/sinja/front-nsfw.svg",
  29575. extra: 1393 / 1294,
  29576. bottom: 70 / 1463
  29577. }
  29578. },
  29579. back: {
  29580. height: math.unit(2.3, "meters"),
  29581. weight: math.unit(300, "lb"),
  29582. name: "Back",
  29583. image: {
  29584. source: "./media/characters/sinja/back.svg",
  29585. extra: 1393 / 1294,
  29586. bottom: 70 / 1463
  29587. }
  29588. },
  29589. head: {
  29590. height: math.unit(1.771, "feet"),
  29591. name: "Head",
  29592. image: {
  29593. source: "./media/characters/sinja/head.svg"
  29594. }
  29595. },
  29596. slit: {
  29597. height: math.unit(0.8, "feet"),
  29598. name: "Slit",
  29599. image: {
  29600. source: "./media/characters/sinja/slit.svg"
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Normal",
  29607. height: math.unit(2.3, "meters")
  29608. },
  29609. {
  29610. name: "Macro",
  29611. height: math.unit(91, "meters"),
  29612. default: true
  29613. },
  29614. {
  29615. name: "Megamacro",
  29616. height: math.unit(91440, "meters")
  29617. },
  29618. {
  29619. name: "Gigamacro",
  29620. height: math.unit(60960000, "meters")
  29621. },
  29622. {
  29623. name: "Teramacro",
  29624. height: math.unit(9144000000, "meters")
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(1.7, "meters"),
  29633. weight: math.unit(130, "lb"),
  29634. name: "Front",
  29635. image: {
  29636. source: "./media/characters/kyu/front.svg",
  29637. extra: 415 / 395,
  29638. bottom: 5 / 420
  29639. }
  29640. },
  29641. head: {
  29642. height: math.unit(1.75, "feet"),
  29643. name: "Head",
  29644. image: {
  29645. source: "./media/characters/kyu/head.svg"
  29646. }
  29647. },
  29648. foot: {
  29649. height: math.unit(0.81, "feet"),
  29650. name: "Foot",
  29651. image: {
  29652. source: "./media/characters/kyu/foot.svg"
  29653. }
  29654. },
  29655. },
  29656. [
  29657. {
  29658. name: "Normal",
  29659. height: math.unit(1.7, "meters")
  29660. },
  29661. {
  29662. name: "Macro",
  29663. height: math.unit(131, "feet"),
  29664. default: true
  29665. },
  29666. {
  29667. name: "Megamacro",
  29668. height: math.unit(91440, "meters")
  29669. },
  29670. {
  29671. name: "Gigamacro",
  29672. height: math.unit(60960000, "meters")
  29673. },
  29674. {
  29675. name: "Teramacro",
  29676. height: math.unit(9144000000, "meters")
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29682. {
  29683. front: {
  29684. height: math.unit(7 + 1 / 12, "feet"),
  29685. weight: math.unit(250, "lb"),
  29686. name: "Front",
  29687. image: {
  29688. source: "./media/characters/joey/front.svg",
  29689. extra: 1791 / 1537,
  29690. bottom: 28 / 1816
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Micro",
  29697. height: math.unit(3, "inches")
  29698. },
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(7 + 1 / 12, "feet"),
  29702. default: true
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29708. {
  29709. front: {
  29710. height: math.unit(165, "cm"),
  29711. weight: math.unit(140, "lb"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/sam-evans/front.svg",
  29715. extra: 3417 / 3230,
  29716. bottom: 41.3 / 3417
  29717. }
  29718. },
  29719. frontSixTails: {
  29720. height: math.unit(165, "cm"),
  29721. weight: math.unit(140, "lb"),
  29722. name: "Front-six-tails",
  29723. image: {
  29724. source: "./media/characters/sam-evans/front-six-tails.svg",
  29725. extra: 3417 / 3230,
  29726. bottom: 41.3 / 3417
  29727. }
  29728. },
  29729. back: {
  29730. height: math.unit(165, "cm"),
  29731. weight: math.unit(140, "lb"),
  29732. name: "Back",
  29733. image: {
  29734. source: "./media/characters/sam-evans/back.svg",
  29735. extra: 3227 / 3032,
  29736. bottom: 6.8 / 3234
  29737. }
  29738. },
  29739. face: {
  29740. height: math.unit(0.68, "feet"),
  29741. name: "Face",
  29742. image: {
  29743. source: "./media/characters/sam-evans/face.svg"
  29744. }
  29745. },
  29746. },
  29747. [
  29748. {
  29749. name: "Normal",
  29750. height: math.unit(165, "cm"),
  29751. default: true
  29752. },
  29753. {
  29754. name: "Macro",
  29755. height: math.unit(100, "meters")
  29756. },
  29757. {
  29758. name: "Macro+",
  29759. height: math.unit(800, "meters")
  29760. },
  29761. {
  29762. name: "Macro++",
  29763. height: math.unit(3, "km")
  29764. },
  29765. {
  29766. name: "Macro+++",
  29767. height: math.unit(30, "km")
  29768. },
  29769. ]
  29770. ))
  29771. characterMakers.push(() => makeCharacter(
  29772. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29773. {
  29774. front: {
  29775. height: math.unit(10, "feet"),
  29776. weight: math.unit(750, "lb"),
  29777. name: "Front",
  29778. image: {
  29779. source: "./media/characters/juliet-a/front.svg",
  29780. extra: 1766 / 1720,
  29781. bottom: 43 / 1809
  29782. }
  29783. },
  29784. back: {
  29785. height: math.unit(10, "feet"),
  29786. weight: math.unit(750, "lb"),
  29787. name: "Back",
  29788. image: {
  29789. source: "./media/characters/juliet-a/back.svg",
  29790. extra: 1781 / 1734,
  29791. bottom: 35 / 1810,
  29792. }
  29793. },
  29794. },
  29795. [
  29796. {
  29797. name: "Normal",
  29798. height: math.unit(10, "feet"),
  29799. default: true
  29800. },
  29801. {
  29802. name: "Dragon Form",
  29803. height: math.unit(250, "feet")
  29804. },
  29805. {
  29806. name: "Macro",
  29807. height: math.unit(1000, "feet")
  29808. },
  29809. {
  29810. name: "Megamacro",
  29811. height: math.unit(10000, "feet")
  29812. }
  29813. ]
  29814. ))
  29815. characterMakers.push(() => makeCharacter(
  29816. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29817. {
  29818. regular: {
  29819. height: math.unit(7 + 3 / 12, "feet"),
  29820. weight: math.unit(260, "lb"),
  29821. name: "Regular",
  29822. image: {
  29823. source: "./media/characters/wild/regular.svg",
  29824. extra: 97.45 / 92,
  29825. bottom: 6.8 / 104.3
  29826. }
  29827. },
  29828. biggums: {
  29829. height: math.unit(8 + 6 / 12, "feet"),
  29830. weight: math.unit(425, "lb"),
  29831. name: "Biggums",
  29832. image: {
  29833. source: "./media/characters/wild/biggums.svg",
  29834. extra: 97.45 / 92,
  29835. bottom: 7.5 / 132.34
  29836. }
  29837. },
  29838. mawRegular: {
  29839. height: math.unit(1.24, "feet"),
  29840. name: "Maw (Regular)",
  29841. image: {
  29842. source: "./media/characters/wild/maw.svg"
  29843. }
  29844. },
  29845. mawBiggums: {
  29846. height: math.unit(1.47, "feet"),
  29847. name: "Maw (Biggums)",
  29848. image: {
  29849. source: "./media/characters/wild/maw.svg"
  29850. }
  29851. },
  29852. },
  29853. [
  29854. {
  29855. name: "Normal",
  29856. height: math.unit(7 + 3 / 12, "feet"),
  29857. default: true
  29858. },
  29859. ]
  29860. ))
  29861. characterMakers.push(() => makeCharacter(
  29862. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29863. {
  29864. front: {
  29865. height: math.unit(2.5, "meters"),
  29866. weight: math.unit(200, "kg"),
  29867. name: "Front",
  29868. image: {
  29869. source: "./media/characters/vidar/front.svg",
  29870. extra: 2994 / 2795,
  29871. bottom: 56 / 3061
  29872. }
  29873. },
  29874. back: {
  29875. height: math.unit(2.5, "meters"),
  29876. weight: math.unit(200, "kg"),
  29877. name: "Back",
  29878. image: {
  29879. source: "./media/characters/vidar/back.svg",
  29880. extra: 3131 / 2928,
  29881. bottom: 13.5 / 3141.5
  29882. }
  29883. },
  29884. feral: {
  29885. height: math.unit(2.5, "meters"),
  29886. weight: math.unit(2000, "kg"),
  29887. name: "Feral",
  29888. image: {
  29889. source: "./media/characters/vidar/feral.svg",
  29890. extra: 2790 / 1765,
  29891. bottom: 6 / 2796
  29892. }
  29893. },
  29894. },
  29895. [
  29896. {
  29897. name: "Normal",
  29898. height: math.unit(2.5, "meters"),
  29899. default: true
  29900. },
  29901. {
  29902. name: "Macro",
  29903. height: math.unit(100, "meters")
  29904. },
  29905. ]
  29906. ))
  29907. characterMakers.push(() => makeCharacter(
  29908. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29909. {
  29910. front: {
  29911. height: math.unit(5 + 9 / 12, "feet"),
  29912. weight: math.unit(120, "lb"),
  29913. name: "Front",
  29914. image: {
  29915. source: "./media/characters/ash/front.svg",
  29916. extra: 2189 / 1961,
  29917. bottom: 5.2 / 2194
  29918. }
  29919. },
  29920. },
  29921. [
  29922. {
  29923. name: "Normal",
  29924. height: math.unit(5 + 9 / 12, "feet"),
  29925. default: true
  29926. },
  29927. ]
  29928. ))
  29929. characterMakers.push(() => makeCharacter(
  29930. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29931. {
  29932. front: {
  29933. height: math.unit(9, "feet"),
  29934. weight: math.unit(10000, "lb"),
  29935. name: "Front",
  29936. image: {
  29937. source: "./media/characters/gygabite/front.svg",
  29938. bottom: 31.7 / 537.8,
  29939. extra: 505 / 370
  29940. }
  29941. },
  29942. },
  29943. [
  29944. {
  29945. name: "Normal",
  29946. height: math.unit(9, "feet"),
  29947. default: true
  29948. },
  29949. ]
  29950. ))
  29951. characterMakers.push(() => makeCharacter(
  29952. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29953. {
  29954. front: {
  29955. height: math.unit(12, "feet"),
  29956. weight: math.unit(4000, "lb"),
  29957. name: "Front",
  29958. image: {
  29959. source: "./media/characters/p0tat0/front.svg",
  29960. extra: 1065 / 921,
  29961. bottom: 55.7 / 1121.25
  29962. }
  29963. },
  29964. },
  29965. [
  29966. {
  29967. name: "Normal",
  29968. height: math.unit(12, "feet"),
  29969. default: true
  29970. },
  29971. ]
  29972. ))
  29973. characterMakers.push(() => makeCharacter(
  29974. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29975. {
  29976. side: {
  29977. height: math.unit(6.5, "feet"),
  29978. weight: math.unit(800, "lb"),
  29979. name: "Side",
  29980. image: {
  29981. source: "./media/characters/dusk/side.svg",
  29982. extra: 615 / 373,
  29983. bottom: 53 / 664
  29984. }
  29985. },
  29986. sitting: {
  29987. height: math.unit(7, "feet"),
  29988. weight: math.unit(800, "lb"),
  29989. name: "Sitting",
  29990. image: {
  29991. source: "./media/characters/dusk/sitting.svg",
  29992. extra: 753 / 425,
  29993. bottom: 33 / 774
  29994. }
  29995. },
  29996. head: {
  29997. height: math.unit(6.1, "feet"),
  29998. name: "Head",
  29999. image: {
  30000. source: "./media/characters/dusk/head.svg"
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Normal",
  30007. height: math.unit(7, "feet"),
  30008. default: true
  30009. },
  30010. ]
  30011. ))
  30012. characterMakers.push(() => makeCharacter(
  30013. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30014. {
  30015. front: {
  30016. height: math.unit(15, "feet"),
  30017. weight: math.unit(7000, "lb"),
  30018. name: "Front",
  30019. image: {
  30020. source: "./media/characters/jay-direwolf/front.svg",
  30021. extra: 1810 / 1732,
  30022. bottom: 66 / 1892
  30023. }
  30024. },
  30025. },
  30026. [
  30027. {
  30028. name: "Normal",
  30029. height: math.unit(15, "feet"),
  30030. default: true
  30031. },
  30032. ]
  30033. ))
  30034. characterMakers.push(() => makeCharacter(
  30035. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30036. {
  30037. front: {
  30038. height: math.unit(4 + 9 / 12, "feet"),
  30039. weight: math.unit(130, "lb"),
  30040. name: "Front",
  30041. image: {
  30042. source: "./media/characters/anchovie/front.svg",
  30043. extra: 382 / 350,
  30044. bottom: 25 / 409
  30045. }
  30046. },
  30047. back: {
  30048. height: math.unit(4 + 9 / 12, "feet"),
  30049. weight: math.unit(130, "lb"),
  30050. name: "Back",
  30051. image: {
  30052. source: "./media/characters/anchovie/back.svg",
  30053. extra: 385 / 352,
  30054. bottom: 16.6 / 402
  30055. }
  30056. },
  30057. frontDressed: {
  30058. height: math.unit(4 + 9 / 12, "feet"),
  30059. weight: math.unit(130, "lb"),
  30060. name: "Front (Dressed)",
  30061. image: {
  30062. source: "./media/characters/anchovie/front-dressed.svg",
  30063. extra: 382 / 350,
  30064. bottom: 25 / 409
  30065. }
  30066. },
  30067. backDressed: {
  30068. height: math.unit(4 + 9 / 12, "feet"),
  30069. weight: math.unit(130, "lb"),
  30070. name: "Back (Dressed)",
  30071. image: {
  30072. source: "./media/characters/anchovie/back-dressed.svg",
  30073. extra: 385 / 352,
  30074. bottom: 16.6 / 402
  30075. }
  30076. },
  30077. },
  30078. [
  30079. {
  30080. name: "Micro",
  30081. height: math.unit(6.4, "inches")
  30082. },
  30083. {
  30084. name: "Normal",
  30085. height: math.unit(4 + 9 / 12, "feet"),
  30086. default: true
  30087. },
  30088. ]
  30089. ))
  30090. characterMakers.push(() => makeCharacter(
  30091. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30092. {
  30093. front: {
  30094. height: math.unit(2, "meters"),
  30095. weight: math.unit(180, "lb"),
  30096. name: "Front",
  30097. image: {
  30098. source: "./media/characters/acidrenamon/front.svg",
  30099. extra: 987 / 890,
  30100. bottom: 22.8 / 1009
  30101. }
  30102. },
  30103. back: {
  30104. height: math.unit(2, "meters"),
  30105. weight: math.unit(180, "lb"),
  30106. name: "Back",
  30107. image: {
  30108. source: "./media/characters/acidrenamon/back.svg",
  30109. extra: 983 / 891,
  30110. bottom: 8.4 / 992
  30111. }
  30112. },
  30113. head: {
  30114. height: math.unit(1.92, "feet"),
  30115. name: "Head",
  30116. image: {
  30117. source: "./media/characters/acidrenamon/head.svg"
  30118. }
  30119. },
  30120. rump: {
  30121. height: math.unit(1.72, "feet"),
  30122. name: "Rump",
  30123. image: {
  30124. source: "./media/characters/acidrenamon/rump.svg"
  30125. }
  30126. },
  30127. tail: {
  30128. height: math.unit(4.2, "feet"),
  30129. name: "Tail",
  30130. image: {
  30131. source: "./media/characters/acidrenamon/tail.svg"
  30132. }
  30133. },
  30134. },
  30135. [
  30136. {
  30137. name: "Normal",
  30138. height: math.unit(2, "meters"),
  30139. default: true
  30140. },
  30141. {
  30142. name: "Minimacro",
  30143. height: math.unit(7, "meters")
  30144. },
  30145. {
  30146. name: "Macro",
  30147. height: math.unit(200, "meters")
  30148. },
  30149. {
  30150. name: "Gigamacro",
  30151. height: math.unit(0.2, "earths")
  30152. },
  30153. ]
  30154. ))
  30155. characterMakers.push(() => makeCharacter(
  30156. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30157. {
  30158. front: {
  30159. height: math.unit(152, "feet"),
  30160. name: "Front",
  30161. image: {
  30162. source: "./media/characters/kenzie-lee/front.svg",
  30163. extra: 1869/1774,
  30164. bottom: 128/1997
  30165. }
  30166. },
  30167. side: {
  30168. height: math.unit(86, "feet"),
  30169. name: "Side",
  30170. image: {
  30171. source: "./media/characters/kenzie-lee/side.svg",
  30172. extra: 930/815,
  30173. bottom: 177/1107
  30174. }
  30175. },
  30176. paw: {
  30177. height: math.unit(15, "feet"),
  30178. name: "Paw",
  30179. image: {
  30180. source: "./media/characters/kenzie-lee/paw.svg"
  30181. }
  30182. },
  30183. },
  30184. [
  30185. {
  30186. name: "Kenzie Flea",
  30187. height: math.unit(2, "mm"),
  30188. default: true
  30189. },
  30190. {
  30191. name: "Micro",
  30192. height: math.unit(2, "inches")
  30193. },
  30194. {
  30195. name: "Normal",
  30196. height: math.unit(152, "feet")
  30197. },
  30198. {
  30199. name: "Megamacro",
  30200. height: math.unit(7, "miles")
  30201. },
  30202. {
  30203. name: "Gigamacro",
  30204. height: math.unit(8000, "miles")
  30205. },
  30206. ]
  30207. ))
  30208. characterMakers.push(() => makeCharacter(
  30209. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30210. {
  30211. front: {
  30212. height: math.unit(6, "feet"),
  30213. name: "Front",
  30214. image: {
  30215. source: "./media/characters/withers/front.svg",
  30216. extra: 1935/1760,
  30217. bottom: 72/2007
  30218. }
  30219. },
  30220. back: {
  30221. height: math.unit(6, "feet"),
  30222. name: "Back",
  30223. image: {
  30224. source: "./media/characters/withers/back.svg",
  30225. extra: 1944/1792,
  30226. bottom: 12/1956
  30227. }
  30228. },
  30229. dressed: {
  30230. height: math.unit(6, "feet"),
  30231. name: "Dressed",
  30232. image: {
  30233. source: "./media/characters/withers/dressed.svg",
  30234. extra: 1937/1765,
  30235. bottom: 73/2010
  30236. }
  30237. },
  30238. phase1: {
  30239. height: math.unit(1.1, "feet"),
  30240. name: "Phase 1",
  30241. image: {
  30242. source: "./media/characters/withers/phase-1.svg",
  30243. extra: 1885/1232,
  30244. bottom: 0/1885
  30245. }
  30246. },
  30247. phase2: {
  30248. height: math.unit(1.05, "feet"),
  30249. name: "Phase 2",
  30250. image: {
  30251. source: "./media/characters/withers/phase-2.svg",
  30252. extra: 1792/1090,
  30253. bottom: 0/1792
  30254. }
  30255. },
  30256. partyWipe: {
  30257. height: math.unit(1.1, "feet"),
  30258. name: "Party Wipe",
  30259. image: {
  30260. source: "./media/characters/withers/party-wipe.svg",
  30261. extra: 1864/1207,
  30262. bottom: 0/1864
  30263. }
  30264. },
  30265. },
  30266. [
  30267. {
  30268. name: "Macro",
  30269. height: math.unit(167, "feet"),
  30270. default: true
  30271. },
  30272. {
  30273. name: "Megamacro",
  30274. height: math.unit(15, "miles")
  30275. }
  30276. ]
  30277. ))
  30278. characterMakers.push(() => makeCharacter(
  30279. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30280. {
  30281. front: {
  30282. height: math.unit(6 + 7 / 12, "feet"),
  30283. weight: math.unit(250, "lb"),
  30284. name: "Front",
  30285. image: {
  30286. source: "./media/characters/nemoskii/front.svg",
  30287. extra: 2270 / 1734,
  30288. bottom: 86 / 2354
  30289. }
  30290. },
  30291. back: {
  30292. height: math.unit(6 + 7 / 12, "feet"),
  30293. weight: math.unit(250, "lb"),
  30294. name: "Back",
  30295. image: {
  30296. source: "./media/characters/nemoskii/back.svg",
  30297. extra: 1845 / 1788,
  30298. bottom: 10.5 / 1852
  30299. }
  30300. },
  30301. head: {
  30302. height: math.unit(1.31, "feet"),
  30303. name: "Head",
  30304. image: {
  30305. source: "./media/characters/nemoskii/head.svg"
  30306. }
  30307. },
  30308. },
  30309. [
  30310. {
  30311. name: "Micro",
  30312. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30313. },
  30314. {
  30315. name: "Normal",
  30316. height: math.unit(6 + 7 / 12, "feet"),
  30317. default: true
  30318. },
  30319. {
  30320. name: "Macro",
  30321. height: math.unit((6 + 7 / 12) * 150, "feet")
  30322. },
  30323. {
  30324. name: "Macro+",
  30325. height: math.unit((6 + 7 / 12) * 500, "feet")
  30326. },
  30327. {
  30328. name: "Megamacro",
  30329. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30330. },
  30331. ]
  30332. ))
  30333. characterMakers.push(() => makeCharacter(
  30334. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30335. {
  30336. front: {
  30337. height: math.unit(1, "mile"),
  30338. weight: math.unit(265261.9, "lb"),
  30339. name: "Front",
  30340. image: {
  30341. source: "./media/characters/shui/front.svg",
  30342. extra: 1633 / 1564,
  30343. bottom: 91.5 / 1726
  30344. }
  30345. },
  30346. },
  30347. [
  30348. {
  30349. name: "Macro",
  30350. height: math.unit(1, "mile"),
  30351. default: true
  30352. },
  30353. ]
  30354. ))
  30355. characterMakers.push(() => makeCharacter(
  30356. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30357. {
  30358. front: {
  30359. height: math.unit(12 + 6 / 12, "feet"),
  30360. weight: math.unit(1342, "lb"),
  30361. name: "Front",
  30362. image: {
  30363. source: "./media/characters/arokh-takakura/front.svg",
  30364. extra: 1089 / 1043,
  30365. bottom: 77.4 / 1176.7
  30366. }
  30367. },
  30368. back: {
  30369. height: math.unit(12 + 6 / 12, "feet"),
  30370. weight: math.unit(1342, "lb"),
  30371. name: "Back",
  30372. image: {
  30373. source: "./media/characters/arokh-takakura/back.svg",
  30374. extra: 1046 / 1019,
  30375. bottom: 102 / 1150
  30376. }
  30377. },
  30378. },
  30379. [
  30380. {
  30381. name: "Big",
  30382. height: math.unit(12 + 6 / 12, "feet"),
  30383. default: true
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(5 + 6 / 12, "feet"),
  30392. weight: math.unit(150, "lb"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/theo/front.svg",
  30396. extra: 1184 / 1131,
  30397. bottom: 7.4 / 1191
  30398. }
  30399. },
  30400. },
  30401. [
  30402. {
  30403. name: "Micro",
  30404. height: math.unit(5, "inches")
  30405. },
  30406. {
  30407. name: "Normal",
  30408. height: math.unit(5 + 6 / 12, "feet"),
  30409. default: true
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30415. {
  30416. front: {
  30417. height: math.unit(5 + 9 / 12, "feet"),
  30418. weight: math.unit(130, "lb"),
  30419. name: "Front",
  30420. image: {
  30421. source: "./media/characters/cecelia-swift/front.svg",
  30422. extra: 502 / 484,
  30423. bottom: 23 / 523
  30424. }
  30425. },
  30426. back: {
  30427. height: math.unit(5 + 9 / 12, "feet"),
  30428. weight: math.unit(130, "lb"),
  30429. name: "Back",
  30430. image: {
  30431. source: "./media/characters/cecelia-swift/back.svg",
  30432. extra: 499 / 485,
  30433. bottom: 12 / 511
  30434. }
  30435. },
  30436. head: {
  30437. height: math.unit(0.90, "feet"),
  30438. name: "Head",
  30439. image: {
  30440. source: "./media/characters/cecelia-swift/head.svg"
  30441. }
  30442. },
  30443. rump: {
  30444. height: math.unit(1.75, "feet"),
  30445. name: "Rump",
  30446. image: {
  30447. source: "./media/characters/cecelia-swift/rump.svg"
  30448. }
  30449. },
  30450. },
  30451. [
  30452. {
  30453. name: "Normal",
  30454. height: math.unit(5 + 9 / 12, "feet"),
  30455. default: true
  30456. },
  30457. {
  30458. name: "Big",
  30459. height: math.unit(50, "feet")
  30460. },
  30461. {
  30462. name: "Macro",
  30463. height: math.unit(100, "feet")
  30464. },
  30465. {
  30466. name: "Macro+",
  30467. height: math.unit(500, "feet")
  30468. },
  30469. {
  30470. name: "Macro++",
  30471. height: math.unit(1000, "feet")
  30472. },
  30473. ]
  30474. ))
  30475. characterMakers.push(() => makeCharacter(
  30476. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30477. {
  30478. front: {
  30479. height: math.unit(6, "feet"),
  30480. weight: math.unit(150, "lb"),
  30481. name: "Front",
  30482. image: {
  30483. source: "./media/characters/kaunan/front.svg",
  30484. extra: 2890 / 2523,
  30485. bottom: 49 / 2939
  30486. }
  30487. },
  30488. },
  30489. [
  30490. {
  30491. name: "Macro",
  30492. height: math.unit(150, "feet"),
  30493. default: true
  30494. },
  30495. ]
  30496. ))
  30497. characterMakers.push(() => makeCharacter(
  30498. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30499. {
  30500. dressed: {
  30501. height: math.unit(175, "cm"),
  30502. weight: math.unit(60, "kg"),
  30503. name: "Dressed",
  30504. image: {
  30505. source: "./media/characters/fei/dressed.svg",
  30506. extra: 1402/1278,
  30507. bottom: 27/1429
  30508. }
  30509. },
  30510. nude: {
  30511. height: math.unit(175, "cm"),
  30512. weight: math.unit(60, "kg"),
  30513. name: "Nude",
  30514. image: {
  30515. source: "./media/characters/fei/nude.svg",
  30516. extra: 1402/1278,
  30517. bottom: 27/1429
  30518. }
  30519. },
  30520. heels: {
  30521. height: math.unit(0.466, "feet"),
  30522. name: "Heels",
  30523. image: {
  30524. source: "./media/characters/fei/heels.svg",
  30525. extra: 156/152,
  30526. bottom: 28/184
  30527. }
  30528. },
  30529. },
  30530. [
  30531. {
  30532. name: "Mortal",
  30533. height: math.unit(175, "cm")
  30534. },
  30535. {
  30536. name: "Normal",
  30537. height: math.unit(3500, "m")
  30538. },
  30539. {
  30540. name: "Stroll",
  30541. height: math.unit(18.4, "km"),
  30542. default: true
  30543. },
  30544. {
  30545. name: "Showoff",
  30546. height: math.unit(175, "km")
  30547. },
  30548. ]
  30549. ))
  30550. characterMakers.push(() => makeCharacter(
  30551. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30552. {
  30553. front: {
  30554. height: math.unit(7, "feet"),
  30555. weight: math.unit(1000, "kg"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/edrax/front.svg",
  30559. extra: 2838 / 2550,
  30560. bottom: 130 / 2968
  30561. }
  30562. },
  30563. },
  30564. [
  30565. {
  30566. name: "Small",
  30567. height: math.unit(7, "feet")
  30568. },
  30569. {
  30570. name: "Normal",
  30571. height: math.unit(1500, "meters")
  30572. },
  30573. {
  30574. name: "Mega",
  30575. height: math.unit(12000000, "km"),
  30576. default: true
  30577. },
  30578. {
  30579. name: "Megamacro",
  30580. height: math.unit(10600000, "lightyears")
  30581. },
  30582. {
  30583. name: "Hypermacro",
  30584. height: math.unit(256, "yottameters")
  30585. },
  30586. ]
  30587. ))
  30588. characterMakers.push(() => makeCharacter(
  30589. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30590. {
  30591. front: {
  30592. height: math.unit(10, "feet"),
  30593. weight: math.unit(750, "lb"),
  30594. name: "Front",
  30595. image: {
  30596. source: "./media/characters/clove/front.svg",
  30597. extra: 1918/1751,
  30598. bottom: 52/1970
  30599. }
  30600. },
  30601. back: {
  30602. height: math.unit(10, "feet"),
  30603. weight: math.unit(750, "lb"),
  30604. name: "Back",
  30605. image: {
  30606. source: "./media/characters/clove/back.svg",
  30607. extra: 1912/1747,
  30608. bottom: 50/1962
  30609. }
  30610. },
  30611. },
  30612. [
  30613. {
  30614. name: "Normal",
  30615. height: math.unit(10, "feet"),
  30616. default: true
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30622. {
  30623. front: {
  30624. height: math.unit(4, "feet"),
  30625. weight: math.unit(50, "lb"),
  30626. name: "Front",
  30627. image: {
  30628. source: "./media/characters/alex-rabbit/front.svg",
  30629. extra: 507 / 458,
  30630. bottom: 18.5 / 527
  30631. }
  30632. },
  30633. back: {
  30634. height: math.unit(4, "feet"),
  30635. weight: math.unit(50, "lb"),
  30636. name: "Back",
  30637. image: {
  30638. source: "./media/characters/alex-rabbit/back.svg",
  30639. extra: 502 / 460,
  30640. bottom: 18.9 / 521
  30641. }
  30642. },
  30643. },
  30644. [
  30645. {
  30646. name: "Normal",
  30647. height: math.unit(4, "feet"),
  30648. default: true
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(1 + 3 / 12, "feet"),
  30657. weight: math.unit(80, "lb"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/zander-rose/front.svg",
  30661. extra: 916 / 797,
  30662. bottom: 17 / 933
  30663. }
  30664. },
  30665. back: {
  30666. height: math.unit(1 + 3 / 12, "feet"),
  30667. weight: math.unit(80, "lb"),
  30668. name: "Back",
  30669. image: {
  30670. source: "./media/characters/zander-rose/back.svg",
  30671. extra: 903 / 779,
  30672. bottom: 31 / 934
  30673. }
  30674. },
  30675. },
  30676. [
  30677. {
  30678. name: "Normal",
  30679. height: math.unit(1 + 3 / 12, "feet"),
  30680. default: true
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30686. {
  30687. anthro: {
  30688. height: math.unit(6, "feet"),
  30689. weight: math.unit(150, "lb"),
  30690. name: "Anthro",
  30691. image: {
  30692. source: "./media/characters/razz/anthro.svg",
  30693. extra: 1437 / 1343,
  30694. bottom: 48 / 1485
  30695. }
  30696. },
  30697. feral: {
  30698. height: math.unit(6, "feet"),
  30699. weight: math.unit(150, "lb"),
  30700. name: "Feral",
  30701. image: {
  30702. source: "./media/characters/razz/feral.svg",
  30703. extra: 2569 / 1385,
  30704. bottom: 95 / 2664
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(6, "feet"),
  30712. default: true
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30718. {
  30719. front: {
  30720. height: math.unit(9 + 4 / 12, "feet"),
  30721. weight: math.unit(500, "lb"),
  30722. name: "Front",
  30723. image: {
  30724. source: "./media/characters/morrigan/front.svg",
  30725. extra: 2707 / 2579,
  30726. bottom: 156 / 2863
  30727. }
  30728. },
  30729. },
  30730. [
  30731. {
  30732. name: "Normal",
  30733. height: math.unit(9 + 4 / 12, "feet"),
  30734. default: true
  30735. },
  30736. ]
  30737. ))
  30738. characterMakers.push(() => makeCharacter(
  30739. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30740. {
  30741. front: {
  30742. height: math.unit(5, "stories"),
  30743. weight: math.unit(4000, "lb"),
  30744. name: "Front",
  30745. image: {
  30746. source: "./media/characters/jenene/front.svg",
  30747. extra: 1780 / 1710,
  30748. bottom: 57 / 1837
  30749. }
  30750. },
  30751. },
  30752. [
  30753. {
  30754. name: "Normal",
  30755. height: math.unit(5, "stories"),
  30756. default: true
  30757. },
  30758. ]
  30759. ))
  30760. characterMakers.push(() => makeCharacter(
  30761. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30762. {
  30763. taurSfw: {
  30764. height: math.unit(10, "meters"),
  30765. weight: math.unit(17500, "kg"),
  30766. name: "Taur",
  30767. image: {
  30768. source: "./media/characters/faey/taur-sfw.svg",
  30769. extra: 1200 / 968,
  30770. bottom: 41 / 1241
  30771. }
  30772. },
  30773. chestmaw: {
  30774. height: math.unit(2.01, "meters"),
  30775. name: "Chestmaw",
  30776. image: {
  30777. source: "./media/characters/faey/chestmaw.svg"
  30778. }
  30779. },
  30780. foot: {
  30781. height: math.unit(2.43, "meters"),
  30782. name: "Foot",
  30783. image: {
  30784. source: "./media/characters/faey/foot.svg"
  30785. }
  30786. },
  30787. jaws: {
  30788. height: math.unit(1.66, "meters"),
  30789. name: "Jaws",
  30790. image: {
  30791. source: "./media/characters/faey/jaws.svg"
  30792. }
  30793. },
  30794. tongues: {
  30795. height: math.unit(2.01, "meters"),
  30796. name: "Tongues",
  30797. image: {
  30798. source: "./media/characters/faey/tongues.svg"
  30799. }
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Small",
  30805. height: math.unit(10, "meters"),
  30806. default: true
  30807. },
  30808. {
  30809. name: "Big",
  30810. height: math.unit(500000, "km")
  30811. },
  30812. ]
  30813. ))
  30814. characterMakers.push(() => makeCharacter(
  30815. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30816. {
  30817. front: {
  30818. height: math.unit(7, "feet"),
  30819. weight: math.unit(275, "lb"),
  30820. name: "Front",
  30821. image: {
  30822. source: "./media/characters/roku/front.svg",
  30823. extra: 903 / 878,
  30824. bottom: 37 / 940
  30825. }
  30826. },
  30827. },
  30828. [
  30829. {
  30830. name: "Normal",
  30831. height: math.unit(7, "feet"),
  30832. default: true
  30833. },
  30834. {
  30835. name: "Macro",
  30836. height: math.unit(500, "feet")
  30837. },
  30838. {
  30839. name: "Megamacro",
  30840. height: math.unit(200, "miles")
  30841. },
  30842. ]
  30843. ))
  30844. characterMakers.push(() => makeCharacter(
  30845. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30846. {
  30847. front: {
  30848. height: math.unit(6 + 2 / 12, "feet"),
  30849. weight: math.unit(150, "lb"),
  30850. name: "Front",
  30851. image: {
  30852. source: "./media/characters/lira/front.svg",
  30853. extra: 1727 / 1605,
  30854. bottom: 26 / 1753
  30855. }
  30856. },
  30857. back: {
  30858. height: math.unit(6 + 2 / 12, "feet"),
  30859. weight: math.unit(150, "lb"),
  30860. name: "Back",
  30861. image: {
  30862. source: "./media/characters/lira/back.svg",
  30863. extra: 1713/1621,
  30864. bottom: 20/1733
  30865. }
  30866. },
  30867. hand: {
  30868. height: math.unit(0.75, "feet"),
  30869. name: "Hand",
  30870. image: {
  30871. source: "./media/characters/lira/hand.svg"
  30872. }
  30873. },
  30874. maw: {
  30875. height: math.unit(0.65, "feet"),
  30876. name: "Maw",
  30877. image: {
  30878. source: "./media/characters/lira/maw.svg"
  30879. }
  30880. },
  30881. pawDigi: {
  30882. height: math.unit(1.6, "feet"),
  30883. name: "Paw Digi",
  30884. image: {
  30885. source: "./media/characters/lira/paw-digi.svg"
  30886. }
  30887. },
  30888. pawPlanti: {
  30889. height: math.unit(1.4, "feet"),
  30890. name: "Paw Planti",
  30891. image: {
  30892. source: "./media/characters/lira/paw-planti.svg"
  30893. }
  30894. },
  30895. },
  30896. [
  30897. {
  30898. name: "Normal",
  30899. height: math.unit(6 + 2 / 12, "feet"),
  30900. default: true
  30901. },
  30902. {
  30903. name: "Macro",
  30904. height: math.unit(100, "feet")
  30905. },
  30906. {
  30907. name: "Macro²",
  30908. height: math.unit(1600, "feet")
  30909. },
  30910. {
  30911. name: "Planetary",
  30912. height: math.unit(20, "earths")
  30913. },
  30914. ]
  30915. ))
  30916. characterMakers.push(() => makeCharacter(
  30917. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30918. {
  30919. front: {
  30920. height: math.unit(6, "feet"),
  30921. weight: math.unit(150, "lb"),
  30922. name: "Front",
  30923. image: {
  30924. source: "./media/characters/hadjet/front.svg",
  30925. extra: 1480 / 1346,
  30926. bottom: 26 / 1506
  30927. }
  30928. },
  30929. frontNsfw: {
  30930. height: math.unit(6, "feet"),
  30931. weight: math.unit(150, "lb"),
  30932. name: "Front (NSFW)",
  30933. image: {
  30934. source: "./media/characters/hadjet/front-nsfw.svg",
  30935. extra: 1440 / 1358,
  30936. bottom: 52 / 1492
  30937. }
  30938. },
  30939. },
  30940. [
  30941. {
  30942. name: "Macro",
  30943. height: math.unit(10, "stories"),
  30944. default: true
  30945. },
  30946. {
  30947. name: "Megamacro",
  30948. height: math.unit(1.5, "miles")
  30949. },
  30950. {
  30951. name: "Megamacro+",
  30952. height: math.unit(5, "miles")
  30953. },
  30954. ]
  30955. ))
  30956. characterMakers.push(() => makeCharacter(
  30957. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30958. {
  30959. side: {
  30960. height: math.unit(106, "feet"),
  30961. weight: math.unit(500, "tonnes"),
  30962. name: "Side",
  30963. image: {
  30964. source: "./media/characters/kodran/side.svg",
  30965. extra: 553 / 480,
  30966. bottom: 33 / 586
  30967. }
  30968. },
  30969. front: {
  30970. height: math.unit(132, "feet"),
  30971. weight: math.unit(500, "tonnes"),
  30972. name: "Front",
  30973. image: {
  30974. source: "./media/characters/kodran/front.svg",
  30975. extra: 667 / 643,
  30976. bottom: 42 / 709
  30977. }
  30978. },
  30979. flying: {
  30980. height: math.unit(350, "feet"),
  30981. weight: math.unit(500, "tonnes"),
  30982. name: "Flying",
  30983. image: {
  30984. source: "./media/characters/kodran/flying.svg"
  30985. }
  30986. },
  30987. foot: {
  30988. height: math.unit(33, "feet"),
  30989. name: "Foot",
  30990. image: {
  30991. source: "./media/characters/kodran/foot.svg"
  30992. }
  30993. },
  30994. footFront: {
  30995. height: math.unit(19, "feet"),
  30996. name: "Foot (Front)",
  30997. image: {
  30998. source: "./media/characters/kodran/foot-front.svg",
  30999. extra: 261 / 261,
  31000. bottom: 91 / 352
  31001. }
  31002. },
  31003. headFront: {
  31004. height: math.unit(53, "feet"),
  31005. name: "Head (Front)",
  31006. image: {
  31007. source: "./media/characters/kodran/head-front.svg"
  31008. }
  31009. },
  31010. headSide: {
  31011. height: math.unit(65, "feet"),
  31012. name: "Head (Side)",
  31013. image: {
  31014. source: "./media/characters/kodran/head-side.svg"
  31015. }
  31016. },
  31017. throat: {
  31018. height: math.unit(79, "feet"),
  31019. name: "Throat",
  31020. image: {
  31021. source: "./media/characters/kodran/throat.svg"
  31022. }
  31023. },
  31024. },
  31025. [
  31026. {
  31027. name: "Large",
  31028. height: math.unit(106, "feet"),
  31029. default: true
  31030. },
  31031. ]
  31032. ))
  31033. characterMakers.push(() => makeCharacter(
  31034. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31035. {
  31036. side: {
  31037. height: math.unit(11, "feet"),
  31038. weight: math.unit(150, "lb"),
  31039. name: "Side",
  31040. image: {
  31041. source: "./media/characters/pyxaron/side.svg",
  31042. extra: 305 / 195,
  31043. bottom: 17 / 322
  31044. }
  31045. },
  31046. },
  31047. [
  31048. {
  31049. name: "Normal",
  31050. height: math.unit(11, "feet"),
  31051. default: true
  31052. },
  31053. ]
  31054. ))
  31055. characterMakers.push(() => makeCharacter(
  31056. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31057. {
  31058. front: {
  31059. height: math.unit(6, "feet"),
  31060. weight: math.unit(150, "lb"),
  31061. name: "Front",
  31062. image: {
  31063. source: "./media/characters/meep/front.svg",
  31064. extra: 88 / 80,
  31065. bottom: 6 / 94
  31066. }
  31067. },
  31068. },
  31069. [
  31070. {
  31071. name: "Fun Sized",
  31072. height: math.unit(2, "inches"),
  31073. default: true
  31074. },
  31075. {
  31076. name: "Friend Sized",
  31077. height: math.unit(8, "inches")
  31078. },
  31079. ]
  31080. ))
  31081. characterMakers.push(() => makeCharacter(
  31082. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31083. {
  31084. front: {
  31085. height: math.unit(15, "feet"),
  31086. weight: math.unit(2500, "lb"),
  31087. name: "Front",
  31088. image: {
  31089. source: "./media/characters/holly-rabbit/front.svg",
  31090. extra: 1433 / 1233,
  31091. bottom: 125 / 1558
  31092. }
  31093. },
  31094. dick: {
  31095. height: math.unit(4.6, "feet"),
  31096. name: "Dick",
  31097. image: {
  31098. source: "./media/characters/holly-rabbit/dick.svg"
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Normal",
  31105. height: math.unit(15, "feet"),
  31106. default: true
  31107. },
  31108. {
  31109. name: "Macro",
  31110. height: math.unit(250, "feet")
  31111. },
  31112. {
  31113. name: "Macro+",
  31114. height: math.unit(2500, "feet")
  31115. },
  31116. ]
  31117. ))
  31118. characterMakers.push(() => makeCharacter(
  31119. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31120. {
  31121. front: {
  31122. height: math.unit(3.02, "meters"),
  31123. weight: math.unit(500, "kg"),
  31124. name: "Front",
  31125. image: {
  31126. source: "./media/characters/drena/front.svg",
  31127. extra: 282 / 243,
  31128. bottom: 8 / 290
  31129. }
  31130. },
  31131. side: {
  31132. height: math.unit(3.02, "meters"),
  31133. weight: math.unit(500, "kg"),
  31134. name: "Side",
  31135. image: {
  31136. source: "./media/characters/drena/side.svg",
  31137. extra: 280 / 245,
  31138. bottom: 10 / 290
  31139. }
  31140. },
  31141. back: {
  31142. height: math.unit(3.02, "meters"),
  31143. weight: math.unit(500, "kg"),
  31144. name: "Back",
  31145. image: {
  31146. source: "./media/characters/drena/back.svg",
  31147. extra: 278 / 243,
  31148. bottom: 2 / 280
  31149. }
  31150. },
  31151. foot: {
  31152. height: math.unit(0.75, "meters"),
  31153. name: "Foot",
  31154. image: {
  31155. source: "./media/characters/drena/foot.svg"
  31156. }
  31157. },
  31158. maw: {
  31159. height: math.unit(0.82, "meters"),
  31160. name: "Maw",
  31161. image: {
  31162. source: "./media/characters/drena/maw.svg"
  31163. }
  31164. },
  31165. eating: {
  31166. height: math.unit(0.75, "meters"),
  31167. name: "Eating",
  31168. image: {
  31169. source: "./media/characters/drena/eating.svg"
  31170. }
  31171. },
  31172. rump: {
  31173. height: math.unit(0.93, "meters"),
  31174. name: "Rump",
  31175. image: {
  31176. source: "./media/characters/drena/rump.svg"
  31177. }
  31178. },
  31179. },
  31180. [
  31181. {
  31182. name: "Normal",
  31183. height: math.unit(3.02, "meters"),
  31184. default: true
  31185. },
  31186. ]
  31187. ))
  31188. characterMakers.push(() => makeCharacter(
  31189. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31190. {
  31191. front: {
  31192. height: math.unit(6 + 4 / 12, "feet"),
  31193. weight: math.unit(250, "lb"),
  31194. name: "Front",
  31195. image: {
  31196. source: "./media/characters/remmyzilla/front.svg",
  31197. extra: 4033 / 3588,
  31198. bottom: 123 / 4156
  31199. }
  31200. },
  31201. back: {
  31202. height: math.unit(6 + 4 / 12, "feet"),
  31203. weight: math.unit(250, "lb"),
  31204. name: "Back",
  31205. image: {
  31206. source: "./media/characters/remmyzilla/back.svg",
  31207. extra: 1696/1602,
  31208. bottom: 63/1759
  31209. }
  31210. },
  31211. paw: {
  31212. height: math.unit(1.73, "feet"),
  31213. name: "Paw",
  31214. image: {
  31215. source: "./media/characters/remmyzilla/paw.svg"
  31216. },
  31217. extraAttributes: {
  31218. "toeSize": {
  31219. name: "Toe Size",
  31220. power: 2,
  31221. type: "area",
  31222. base: math.unit(0.0035, "m^2")
  31223. },
  31224. "padSize": {
  31225. name: "Pad Size",
  31226. power: 2,
  31227. type: "area",
  31228. base: math.unit(0.015, "m^2")
  31229. },
  31230. "pawsize": {
  31231. name: "Paw Size",
  31232. power: 2,
  31233. type: "area",
  31234. base: math.unit(0.072, "m^2")
  31235. },
  31236. }
  31237. },
  31238. maw: {
  31239. height: math.unit(1.73, "feet"),
  31240. name: "Maw",
  31241. image: {
  31242. source: "./media/characters/remmyzilla/maw.svg"
  31243. }
  31244. },
  31245. },
  31246. [
  31247. {
  31248. name: "Normal",
  31249. height: math.unit(6 + 4 / 12, "feet")
  31250. },
  31251. {
  31252. name: "Minimacro",
  31253. height: math.unit(12 + 8 / 12, "feet")
  31254. },
  31255. {
  31256. name: "Normal",
  31257. height: math.unit(640, "feet"),
  31258. default: true
  31259. },
  31260. {
  31261. name: "Megamacro",
  31262. height: math.unit(6400, "feet")
  31263. },
  31264. {
  31265. name: "Gigamacro",
  31266. height: math.unit(64000, "miles")
  31267. },
  31268. ]
  31269. ))
  31270. characterMakers.push(() => makeCharacter(
  31271. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31272. {
  31273. front: {
  31274. height: math.unit(2.5, "meters"),
  31275. weight: math.unit(300, "lb"),
  31276. name: "Front",
  31277. image: {
  31278. source: "./media/characters/lawrence/front.svg",
  31279. extra: 357 / 335,
  31280. bottom: 30 / 387
  31281. }
  31282. },
  31283. back: {
  31284. height: math.unit(2.5, "meters"),
  31285. weight: math.unit(300, "lb"),
  31286. name: "Back",
  31287. image: {
  31288. source: "./media/characters/lawrence/back.svg",
  31289. extra: 357 / 338,
  31290. bottom: 16 / 373
  31291. }
  31292. },
  31293. head: {
  31294. height: math.unit(0.9, "meter"),
  31295. name: "Head",
  31296. image: {
  31297. source: "./media/characters/lawrence/head.svg"
  31298. }
  31299. },
  31300. maw: {
  31301. height: math.unit(0.7, "meter"),
  31302. name: "Maw",
  31303. image: {
  31304. source: "./media/characters/lawrence/maw.svg"
  31305. }
  31306. },
  31307. footBottom: {
  31308. height: math.unit(0.5, "meter"),
  31309. name: "Foot (Bottom)",
  31310. image: {
  31311. source: "./media/characters/lawrence/foot-bottom.svg"
  31312. }
  31313. },
  31314. footTop: {
  31315. height: math.unit(0.5, "meter"),
  31316. name: "Foot (Top)",
  31317. image: {
  31318. source: "./media/characters/lawrence/foot-top.svg"
  31319. }
  31320. },
  31321. },
  31322. [
  31323. {
  31324. name: "Normal",
  31325. height: math.unit(2.5, "meters"),
  31326. default: true
  31327. },
  31328. {
  31329. name: "Macro",
  31330. height: math.unit(95, "meters")
  31331. },
  31332. {
  31333. name: "Megamacro",
  31334. height: math.unit(150, "km")
  31335. },
  31336. ]
  31337. ))
  31338. characterMakers.push(() => makeCharacter(
  31339. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31340. {
  31341. front: {
  31342. height: math.unit(4.2, "meters"),
  31343. preyCapacity: math.unit(50, "m^3"),
  31344. weight: math.unit(30, "tonnes"),
  31345. name: "Front",
  31346. image: {
  31347. source: "./media/characters/sydney/front.svg",
  31348. extra: 1177/1129,
  31349. bottom: 197/1374
  31350. },
  31351. extraAttributes: {
  31352. "length": {
  31353. name: "Length",
  31354. power: 1,
  31355. type: "length",
  31356. base: math.unit(21, "meters")
  31357. },
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Normal",
  31364. height: math.unit(4.2, "meters"),
  31365. default: true
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31371. {
  31372. back: {
  31373. height: math.unit(201, "feet"),
  31374. name: "Back",
  31375. image: {
  31376. source: "./media/characters/jessica/back.svg",
  31377. extra: 273 / 259,
  31378. bottom: 7 / 280
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(201, "feet"),
  31386. default: true
  31387. },
  31388. {
  31389. name: "Megamacro",
  31390. height: math.unit(8, "miles")
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31396. {
  31397. side: {
  31398. height: math.unit(5.6, "m"),
  31399. weight: math.unit(8000, "kg"),
  31400. name: "Side",
  31401. image: {
  31402. source: "./media/characters/victoria/side.svg",
  31403. extra: 1542/1229,
  31404. bottom: 124/1666
  31405. }
  31406. },
  31407. maw: {
  31408. height: math.unit(7.14, "feet"),
  31409. name: "Maw",
  31410. image: {
  31411. source: "./media/characters/victoria/maw.svg"
  31412. }
  31413. },
  31414. },
  31415. [
  31416. {
  31417. name: "Normal",
  31418. height: math.unit(5.6, "m"),
  31419. default: true
  31420. },
  31421. ]
  31422. ))
  31423. characterMakers.push(() => makeCharacter(
  31424. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31425. {
  31426. front: {
  31427. height: math.unit(5 + 6 / 12, "feet"),
  31428. name: "Front",
  31429. image: {
  31430. source: "./media/characters/cat/cat-front.svg",
  31431. extra: 1422/1262,
  31432. bottom: 61/1483
  31433. },
  31434. form: "cat",
  31435. default: true
  31436. },
  31437. back: {
  31438. height: math.unit(5 + 6 / 12, "feet"),
  31439. name: "Back",
  31440. image: {
  31441. source: "./media/characters/cat/cat-back.svg",
  31442. extra: 1466/1301,
  31443. bottom: 19/1485
  31444. },
  31445. form: "cat"
  31446. },
  31447. taur: {
  31448. height: math.unit(7, "feet"),
  31449. name: "Side",
  31450. image: {
  31451. source: "./media/characters/cat/taur-side.svg",
  31452. extra: 1389/1233,
  31453. bottom: 83/1472
  31454. },
  31455. form: "taur",
  31456. default: true
  31457. },
  31458. lucarioFront: {
  31459. height: math.unit(4, "feet"),
  31460. name: "Front",
  31461. image: {
  31462. source: "./media/characters/cat/lucario-front.svg",
  31463. extra: 1149/1019,
  31464. bottom: 84/1233
  31465. },
  31466. form: "lucario",
  31467. default: true
  31468. },
  31469. lucarioBack: {
  31470. height: math.unit(4, "feet"),
  31471. name: "Back",
  31472. image: {
  31473. source: "./media/characters/cat/lucario-back.svg",
  31474. extra: 1190/1059,
  31475. bottom: 33/1223
  31476. },
  31477. form: "lucario"
  31478. },
  31479. riolu_front: {
  31480. height: math.unit(2 + 4/12, "feet"),
  31481. name: "Front",
  31482. image: {
  31483. source: "./media/characters/cat/riolu-front.svg",
  31484. extra: 1104/956,
  31485. bottom: 70/1174
  31486. },
  31487. form: "riolu",
  31488. default: true
  31489. },
  31490. nickit: {
  31491. height: math.unit(2, "feet"),
  31492. name: "Side",
  31493. image: {
  31494. source: "./media/characters/cat/nickit-side.svg",
  31495. extra: 1087/852,
  31496. bottom: 67/1154
  31497. },
  31498. form: "nickit",
  31499. default: true
  31500. },
  31501. lopunnyFront: {
  31502. height: math.unit(5, "feet"),
  31503. name: "Front",
  31504. image: {
  31505. source: "./media/characters/cat/lopunny-front.svg",
  31506. extra: 1217/1078,
  31507. bottom: 23/1240
  31508. },
  31509. form: "lopunny",
  31510. default: true
  31511. },
  31512. lopunnyBack: {
  31513. height: math.unit(5, "feet"),
  31514. name: "Back",
  31515. image: {
  31516. source: "./media/characters/cat/lopunny-back.svg",
  31517. extra: 1205/1057,
  31518. bottom: 33/1238
  31519. },
  31520. form: "lopunny"
  31521. },
  31522. dog_front: {
  31523. height: math.unit(5 + 9/12, "feet"),
  31524. name: "Front",
  31525. image: {
  31526. source: "./media/characters/cat/dog-front.svg",
  31527. extra: 1403/1309,
  31528. bottom: 31/1434
  31529. },
  31530. form: "dog",
  31531. default: true
  31532. },
  31533. dog_back: {
  31534. height: math.unit(5 + 9/12, "feet"),
  31535. name: "Back",
  31536. image: {
  31537. source: "./media/characters/cat/dog-back.svg",
  31538. extra: 1393/1297,
  31539. bottom: 38/1431
  31540. },
  31541. form: "dog",
  31542. },
  31543. pikachu_front: {
  31544. height: math.unit(2.64, "feet"),
  31545. name: "Front",
  31546. image: {
  31547. source: "./media/characters/cat/pikachu-front.svg",
  31548. extra: 1224/958,
  31549. bottom: 34/1258
  31550. },
  31551. form: "pikachu",
  31552. default: true
  31553. },
  31554. pikachu_back: {
  31555. height: math.unit(2.64, "feet"),
  31556. name: "Back",
  31557. image: {
  31558. source: "./media/characters/cat/pikachu-back.svg",
  31559. extra: 1228/958,
  31560. bottom: 16/1244
  31561. },
  31562. form: "pikachu",
  31563. },
  31564. gigachuFront: {
  31565. height: math.unit(75, "feet"),
  31566. name: "Front",
  31567. image: {
  31568. source: "./media/characters/cat/gigachu-front.svg",
  31569. extra: 1239/1027,
  31570. bottom: 32/1271
  31571. },
  31572. form: "gigachu",
  31573. default: true
  31574. },
  31575. gigachuBack: {
  31576. height: math.unit(75, "feet"),
  31577. name: "Back",
  31578. image: {
  31579. source: "./media/characters/cat/gigachu-back.svg",
  31580. extra: 1229/1030,
  31581. bottom: 9/1238
  31582. },
  31583. form: "gigachu"
  31584. },
  31585. },
  31586. [
  31587. {
  31588. name: "Really small",
  31589. height: math.unit(1, "nm"),
  31590. allForms: true
  31591. },
  31592. {
  31593. name: "Micro",
  31594. height: math.unit(5, "inches"),
  31595. allForms: true
  31596. },
  31597. {
  31598. name: "Normal",
  31599. height: math.unit(5 + 6 / 12, "feet"),
  31600. default: true,
  31601. form: "cat"
  31602. },
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(7, "feet"),
  31606. default: true,
  31607. form: "taur"
  31608. },
  31609. {
  31610. name: "Normal",
  31611. height: math.unit(4, "feet"),
  31612. default: true,
  31613. form: "lucario"
  31614. },
  31615. {
  31616. name: "Normal",
  31617. height: math.unit(2, "feet"),
  31618. default: true,
  31619. form: "nickit"
  31620. },
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(5, "feet"),
  31624. default: true,
  31625. form: "lopunny"
  31626. },
  31627. {
  31628. name: "Normal",
  31629. height: math.unit(2 + 4/12, "feet"),
  31630. default: true,
  31631. form: "riolu"
  31632. },
  31633. {
  31634. name: "Normal",
  31635. height: math.unit(5 + 6 / 12, "feet"),
  31636. default: true,
  31637. form: "dog"
  31638. },
  31639. {
  31640. name: "Macro",
  31641. height: math.unit(50, "feet"),
  31642. allForms: true
  31643. },
  31644. {
  31645. name: "Normal",
  31646. height: math.unit(2.64, "feet"),
  31647. default: true,
  31648. form: "pikachu"
  31649. },
  31650. {
  31651. name: "Dynamax",
  31652. height: math.unit(75, "feet"),
  31653. form: "gigachu",
  31654. default: true
  31655. },
  31656. {
  31657. name: "Macro+",
  31658. height: math.unit(150, "feet"),
  31659. allForms: true
  31660. },
  31661. {
  31662. name: "Megamacro",
  31663. height: math.unit(100, "miles"),
  31664. allForms: true
  31665. },
  31666. ],
  31667. {
  31668. "cat": {
  31669. name: "Cat",
  31670. default: true
  31671. },
  31672. "taur": {
  31673. name: "Taur",
  31674. },
  31675. "lucario": {
  31676. name: "Lucario",
  31677. },
  31678. "riolu": {
  31679. name: "Riolu",
  31680. },
  31681. "nickit": {
  31682. name: "Nickit",
  31683. },
  31684. "lopunny": {
  31685. name: "Lopunny",
  31686. },
  31687. "dog": {
  31688. name: "Dog",
  31689. },
  31690. "pikachu": {
  31691. name: "Pikachu",
  31692. },
  31693. "gigachu": {
  31694. name: "Gigachu",
  31695. ignoreAllFormSizes: true
  31696. }
  31697. }
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31701. {
  31702. front: {
  31703. height: math.unit(63.4, "meters"),
  31704. weight: math.unit(3.28349e+6, "kilograms"),
  31705. name: "Front",
  31706. image: {
  31707. source: "./media/characters/kirina-violet/front.svg",
  31708. extra: 2812 / 2725,
  31709. bottom: 0 / 2812
  31710. }
  31711. },
  31712. back: {
  31713. height: math.unit(63.4, "meters"),
  31714. weight: math.unit(3.28349e+6, "kilograms"),
  31715. name: "Back",
  31716. image: {
  31717. source: "./media/characters/kirina-violet/back.svg",
  31718. extra: 2812 / 2725,
  31719. bottom: 0 / 2812
  31720. }
  31721. },
  31722. mouth: {
  31723. height: math.unit(4.35, "meters"),
  31724. name: "Mouth",
  31725. image: {
  31726. source: "./media/characters/kirina-violet/mouth.svg"
  31727. }
  31728. },
  31729. paw: {
  31730. height: math.unit(5.6, "meters"),
  31731. name: "Paw",
  31732. image: {
  31733. source: "./media/characters/kirina-violet/paw.svg"
  31734. }
  31735. },
  31736. tail: {
  31737. height: math.unit(18, "meters"),
  31738. name: "Tail",
  31739. image: {
  31740. source: "./media/characters/kirina-violet/tail.svg"
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Macro",
  31747. height: math.unit(63.4, "meters"),
  31748. default: true
  31749. },
  31750. ]
  31751. ))
  31752. characterMakers.push(() => makeCharacter(
  31753. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31754. {
  31755. front: {
  31756. height: math.unit(6, "feet"),
  31757. weight: math.unit(150, "lb"),
  31758. name: "Front",
  31759. image: {
  31760. source: "./media/characters/sfaiyan/front.svg",
  31761. extra: 999 / 978,
  31762. bottom: 5 / 1004
  31763. }
  31764. },
  31765. },
  31766. [
  31767. {
  31768. name: "Normal",
  31769. height: math.unit(1.82, "meters")
  31770. },
  31771. {
  31772. name: "Giant",
  31773. height: math.unit(2.27, "km"),
  31774. default: true
  31775. },
  31776. ]
  31777. ))
  31778. characterMakers.push(() => makeCharacter(
  31779. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31780. {
  31781. front: {
  31782. height: math.unit(179, "cm"),
  31783. weight: math.unit(100, "kg"),
  31784. name: "Front",
  31785. image: {
  31786. source: "./media/characters/raunehkeli/front.svg",
  31787. extra: 1934 / 1926,
  31788. bottom: 0 / 1934
  31789. }
  31790. },
  31791. },
  31792. [
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(179, "cm")
  31796. },
  31797. {
  31798. name: "Maximum",
  31799. height: math.unit(575, "meters"),
  31800. default: true
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31806. {
  31807. front: {
  31808. height: math.unit(6, "feet"),
  31809. weight: math.unit(150, "lb"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31813. extra: 2625 / 2518,
  31814. bottom: 60 / 2685
  31815. }
  31816. },
  31817. },
  31818. [
  31819. {
  31820. name: "Normal",
  31821. height: math.unit(6 + 2 / 12, "feet")
  31822. },
  31823. {
  31824. name: "Macro",
  31825. height: math.unit(1180, "feet"),
  31826. default: true
  31827. },
  31828. ]
  31829. ))
  31830. characterMakers.push(() => makeCharacter(
  31831. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31832. {
  31833. front: {
  31834. height: math.unit(5 + 6 / 12, "feet"),
  31835. weight: math.unit(108, "lb"),
  31836. name: "Front",
  31837. image: {
  31838. source: "./media/characters/lilith-zott/front.svg",
  31839. extra: 2510 / 2238,
  31840. bottom: 100 / 2610
  31841. }
  31842. },
  31843. frontDressed: {
  31844. height: math.unit(5 + 6 / 12, "feet"),
  31845. weight: math.unit(108, "lb"),
  31846. name: "Front (Dressed)",
  31847. image: {
  31848. source: "./media/characters/lilith-zott/front-dressed.svg",
  31849. extra: 2510 / 2238,
  31850. bottom: 100 / 2610
  31851. }
  31852. },
  31853. },
  31854. [
  31855. {
  31856. name: "Normal",
  31857. height: math.unit(5 + 6 / 12, "feet")
  31858. },
  31859. {
  31860. name: "Macro",
  31861. height: math.unit(1030, "feet"),
  31862. default: true
  31863. },
  31864. ]
  31865. ))
  31866. characterMakers.push(() => makeCharacter(
  31867. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31868. {
  31869. front: {
  31870. height: math.unit(6, "feet"),
  31871. weight: math.unit(150, "lb"),
  31872. name: "Front",
  31873. image: {
  31874. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31875. extra: 2567 / 2435,
  31876. bottom: 39 / 2606
  31877. }
  31878. },
  31879. frontSuper: {
  31880. height: math.unit(6, "feet"),
  31881. name: "Front (Super)",
  31882. image: {
  31883. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31884. extra: 2567 / 2435,
  31885. bottom: 39 / 2606
  31886. }
  31887. },
  31888. },
  31889. [
  31890. {
  31891. name: "Normal",
  31892. height: math.unit(5 + 10 / 12, "feet")
  31893. },
  31894. {
  31895. name: "Macro",
  31896. height: math.unit(1100, "feet"),
  31897. default: true
  31898. },
  31899. ]
  31900. ))
  31901. characterMakers.push(() => makeCharacter(
  31902. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31903. {
  31904. front: {
  31905. height: math.unit(100, "miles"),
  31906. name: "Front",
  31907. image: {
  31908. source: "./media/characters/sona/front.svg",
  31909. extra: 2433 / 2201,
  31910. bottom: 53 / 2486
  31911. }
  31912. },
  31913. foot: {
  31914. height: math.unit(16.1, "miles"),
  31915. name: "Foot",
  31916. image: {
  31917. source: "./media/characters/sona/foot.svg"
  31918. }
  31919. },
  31920. },
  31921. [
  31922. {
  31923. name: "Macro",
  31924. height: math.unit(100, "miles"),
  31925. default: true
  31926. },
  31927. ]
  31928. ))
  31929. characterMakers.push(() => makeCharacter(
  31930. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31931. {
  31932. front: {
  31933. height: math.unit(6, "feet"),
  31934. weight: math.unit(150, "lb"),
  31935. name: "Front",
  31936. image: {
  31937. source: "./media/characters/bailey/front.svg",
  31938. extra: 1778 / 1724,
  31939. bottom: 30 / 1808
  31940. }
  31941. },
  31942. },
  31943. [
  31944. {
  31945. name: "Micro",
  31946. height: math.unit(4, "inches")
  31947. },
  31948. {
  31949. name: "Normal",
  31950. height: math.unit(5 + 5 / 12, "feet"),
  31951. default: true
  31952. },
  31953. {
  31954. name: "Macro",
  31955. height: math.unit(250, "feet")
  31956. },
  31957. {
  31958. name: "Megamacro",
  31959. height: math.unit(100, "miles")
  31960. },
  31961. ]
  31962. ))
  31963. characterMakers.push(() => makeCharacter(
  31964. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31965. {
  31966. front: {
  31967. height: math.unit(5 + 2 / 12, "feet"),
  31968. weight: math.unit(120, "lb"),
  31969. name: "Front",
  31970. image: {
  31971. source: "./media/characters/snaps/front.svg",
  31972. extra: 2370 / 2177,
  31973. bottom: 48 / 2418
  31974. }
  31975. },
  31976. back: {
  31977. height: math.unit(5 + 2 / 12, "feet"),
  31978. weight: math.unit(120, "lb"),
  31979. name: "Back",
  31980. image: {
  31981. source: "./media/characters/snaps/back.svg",
  31982. extra: 2408 / 2258,
  31983. bottom: 15 / 2423
  31984. }
  31985. },
  31986. },
  31987. [
  31988. {
  31989. name: "Micro",
  31990. height: math.unit(9, "inches")
  31991. },
  31992. {
  31993. name: "Normal",
  31994. height: math.unit(5 + 2 / 12, "feet"),
  31995. default: true
  31996. },
  31997. {
  31998. name: "Mini Macro",
  31999. height: math.unit(10, "feet")
  32000. },
  32001. ]
  32002. ))
  32003. characterMakers.push(() => makeCharacter(
  32004. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32005. {
  32006. front: {
  32007. height: math.unit(1.8, "meters"),
  32008. weight: math.unit(85, "kg"),
  32009. name: "Front",
  32010. image: {
  32011. source: "./media/characters/azteck/front.svg",
  32012. extra: 2815 / 2625,
  32013. bottom: 89 / 2904
  32014. }
  32015. },
  32016. back: {
  32017. height: math.unit(1.8, "meters"),
  32018. weight: math.unit(85, "kg"),
  32019. name: "Back",
  32020. image: {
  32021. source: "./media/characters/azteck/back.svg",
  32022. extra: 2856 / 2648,
  32023. bottom: 85 / 2941
  32024. }
  32025. },
  32026. frontDressed: {
  32027. height: math.unit(1.8, "meters"),
  32028. weight: math.unit(85, "kg"),
  32029. name: "Front (Dressed)",
  32030. image: {
  32031. source: "./media/characters/azteck/front-dressed.svg",
  32032. extra: 2147 / 2003,
  32033. bottom: 68 / 2215
  32034. }
  32035. },
  32036. head: {
  32037. height: math.unit(0.47, "meters"),
  32038. weight: math.unit(85, "kg"),
  32039. name: "Head",
  32040. image: {
  32041. source: "./media/characters/azteck/head.svg"
  32042. }
  32043. },
  32044. },
  32045. [
  32046. {
  32047. name: "Bite sized",
  32048. height: math.unit(16, "cm")
  32049. },
  32050. {
  32051. name: "Normal",
  32052. height: math.unit(1.8, "meters"),
  32053. default: true
  32054. },
  32055. ]
  32056. ))
  32057. characterMakers.push(() => makeCharacter(
  32058. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32059. {
  32060. front: {
  32061. height: math.unit(6, "feet"),
  32062. weight: math.unit(150, "lb"),
  32063. name: "Front",
  32064. image: {
  32065. source: "./media/characters/pidge/front.svg",
  32066. extra: 1936/1820,
  32067. bottom: 0/1936
  32068. }
  32069. },
  32070. back: {
  32071. height: math.unit(6, "feet"),
  32072. weight: math.unit(150, "lb"),
  32073. name: "Back",
  32074. image: {
  32075. source: "./media/characters/pidge/back.svg",
  32076. extra: 1938/1843,
  32077. bottom: 0/1938
  32078. }
  32079. },
  32080. casual: {
  32081. height: math.unit(6, "feet"),
  32082. weight: math.unit(150, "lb"),
  32083. name: "Casual",
  32084. image: {
  32085. source: "./media/characters/pidge/casual.svg",
  32086. extra: 1936/1820,
  32087. bottom: 0/1936
  32088. }
  32089. },
  32090. tech: {
  32091. height: math.unit(6, "feet"),
  32092. weight: math.unit(150, "lb"),
  32093. name: "Tech",
  32094. image: {
  32095. source: "./media/characters/pidge/tech.svg",
  32096. extra: 1802/1682,
  32097. bottom: 0/1802
  32098. }
  32099. },
  32100. head: {
  32101. height: math.unit(1.61, "feet"),
  32102. name: "Head",
  32103. image: {
  32104. source: "./media/characters/pidge/head.svg"
  32105. }
  32106. },
  32107. collar: {
  32108. height: math.unit(0.82, "feet"),
  32109. name: "Collar",
  32110. image: {
  32111. source: "./media/characters/pidge/collar.svg"
  32112. }
  32113. },
  32114. },
  32115. [
  32116. {
  32117. name: "Macro",
  32118. height: math.unit(2, "mile"),
  32119. default: true
  32120. },
  32121. {
  32122. name: "PUPPY",
  32123. height: math.unit(20, "miles")
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(6, "feet"),
  32132. weight: math.unit(150, "lb"),
  32133. name: "Front",
  32134. image: {
  32135. source: "./media/characters/en/front.svg",
  32136. extra: 1697 / 1563,
  32137. bottom: 103 / 1800
  32138. }
  32139. },
  32140. back: {
  32141. height: math.unit(6, "feet"),
  32142. weight: math.unit(150, "lb"),
  32143. name: "Back",
  32144. image: {
  32145. source: "./media/characters/en/back.svg",
  32146. extra: 1700 / 1570,
  32147. bottom: 51 / 1751
  32148. }
  32149. },
  32150. frontDressed: {
  32151. height: math.unit(6, "feet"),
  32152. weight: math.unit(150, "lb"),
  32153. name: "Front (Dressed)",
  32154. image: {
  32155. source: "./media/characters/en/front-dressed.svg",
  32156. extra: 1697 / 1563,
  32157. bottom: 103 / 1800
  32158. }
  32159. },
  32160. backDressed: {
  32161. height: math.unit(6, "feet"),
  32162. weight: math.unit(150, "lb"),
  32163. name: "Back (Dressed)",
  32164. image: {
  32165. source: "./media/characters/en/back-dressed.svg",
  32166. extra: 1700 / 1570,
  32167. bottom: 51 / 1751
  32168. }
  32169. },
  32170. },
  32171. [
  32172. {
  32173. name: "Macro",
  32174. height: math.unit(210, "feet"),
  32175. default: true
  32176. },
  32177. ]
  32178. ))
  32179. characterMakers.push(() => makeCharacter(
  32180. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32181. {
  32182. front: {
  32183. height: math.unit(6, "feet"),
  32184. weight: math.unit(150, "lb"),
  32185. name: "Front",
  32186. image: {
  32187. source: "./media/characters/haze-orris/front.svg",
  32188. extra: 3975 / 3525,
  32189. bottom: 137 / 4112
  32190. }
  32191. },
  32192. },
  32193. [
  32194. {
  32195. name: "Micro",
  32196. height: math.unit(150, "mm"),
  32197. default: true
  32198. },
  32199. ]
  32200. ))
  32201. characterMakers.push(() => makeCharacter(
  32202. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32203. {
  32204. front: {
  32205. height: math.unit(6, "feet"),
  32206. weight: math.unit(150, "lb"),
  32207. name: "Front",
  32208. image: {
  32209. source: "./media/characters/casselene-yaro/front.svg",
  32210. extra: 4721 / 4541,
  32211. bottom: 82 / 4803
  32212. }
  32213. },
  32214. back: {
  32215. height: math.unit(6, "feet"),
  32216. weight: math.unit(150, "lb"),
  32217. name: "Back",
  32218. image: {
  32219. source: "./media/characters/casselene-yaro/back.svg",
  32220. extra: 4569 / 4377,
  32221. bottom: 69 / 4638
  32222. }
  32223. },
  32224. dressed: {
  32225. height: math.unit(6, "feet"),
  32226. weight: math.unit(150, "lb"),
  32227. name: "Dressed",
  32228. image: {
  32229. source: "./media/characters/casselene-yaro/dressed.svg",
  32230. extra: 4721 / 4541,
  32231. bottom: 82 / 4803
  32232. }
  32233. },
  32234. maw: {
  32235. height: math.unit(1, "feet"),
  32236. name: "Maw",
  32237. image: {
  32238. source: "./media/characters/casselene-yaro/maw.svg"
  32239. }
  32240. },
  32241. },
  32242. [
  32243. {
  32244. name: "Macro",
  32245. height: math.unit(190, "feet"),
  32246. default: true
  32247. },
  32248. ]
  32249. ))
  32250. characterMakers.push(() => makeCharacter(
  32251. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32252. {
  32253. front: {
  32254. height: math.unit(10, "feet"),
  32255. weight: math.unit(15015, "lb"),
  32256. name: "Front",
  32257. image: {
  32258. source: "./media/characters/platine/front.svg",
  32259. extra: 1741/1650,
  32260. bottom: 84/1825
  32261. }
  32262. },
  32263. side: {
  32264. height: math.unit(10, "feet"),
  32265. weight: math.unit(15015, "lb"),
  32266. name: "Side",
  32267. image: {
  32268. source: "./media/characters/platine/side.svg",
  32269. extra: 1790/1705,
  32270. bottom: 29/1819
  32271. }
  32272. },
  32273. },
  32274. [
  32275. {
  32276. name: "Normal",
  32277. height: math.unit(10, "feet"),
  32278. default: true
  32279. },
  32280. {
  32281. name: "Macro",
  32282. height: math.unit(100, "feet")
  32283. },
  32284. {
  32285. name: "Megamacro",
  32286. height: math.unit(1000, "feet")
  32287. },
  32288. ]
  32289. ))
  32290. characterMakers.push(() => makeCharacter(
  32291. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32292. {
  32293. front: {
  32294. height: math.unit(15 + 5 / 12, "feet"),
  32295. weight: math.unit(4600, "lb"),
  32296. name: "Front",
  32297. image: {
  32298. source: "./media/characters/neapolitan-ananassa/front.svg",
  32299. extra: 2903 / 2736,
  32300. bottom: 0 / 2903
  32301. }
  32302. },
  32303. side: {
  32304. height: math.unit(15 + 5 / 12, "feet"),
  32305. weight: math.unit(4600, "lb"),
  32306. name: "Side",
  32307. image: {
  32308. source: "./media/characters/neapolitan-ananassa/side.svg",
  32309. extra: 2925 / 2719,
  32310. bottom: 0 / 2925
  32311. }
  32312. },
  32313. back: {
  32314. height: math.unit(15 + 5 / 12, "feet"),
  32315. weight: math.unit(4600, "lb"),
  32316. name: "Back",
  32317. image: {
  32318. source: "./media/characters/neapolitan-ananassa/back.svg",
  32319. extra: 2903 / 2736,
  32320. bottom: 0 / 2903
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "Normal",
  32327. height: math.unit(15 + 5 / 12, "feet"),
  32328. default: true
  32329. },
  32330. {
  32331. name: "Post-Millenium",
  32332. height: math.unit(35 + 5 / 12, "feet")
  32333. },
  32334. {
  32335. name: "Post-Era",
  32336. height: math.unit(450 + 5 / 12, "feet")
  32337. },
  32338. ]
  32339. ))
  32340. characterMakers.push(() => makeCharacter(
  32341. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32342. {
  32343. front: {
  32344. height: math.unit(300, "meters"),
  32345. weight: math.unit(125000, "tonnes"),
  32346. name: "Front",
  32347. image: {
  32348. source: "./media/characters/pazuzu/front.svg",
  32349. extra: 877 / 794,
  32350. bottom: 47 / 924
  32351. }
  32352. },
  32353. },
  32354. [
  32355. {
  32356. name: "Macro",
  32357. height: math.unit(300, "meters"),
  32358. default: true
  32359. },
  32360. ]
  32361. ))
  32362. characterMakers.push(() => makeCharacter(
  32363. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32364. {
  32365. side: {
  32366. height: math.unit(10 + 7 / 12, "feet"),
  32367. weight: math.unit(2.5, "tons"),
  32368. name: "Side",
  32369. image: {
  32370. source: "./media/characters/aasha/side.svg",
  32371. extra: 1345 / 1245,
  32372. bottom: 111 / 1456
  32373. }
  32374. },
  32375. back: {
  32376. height: math.unit(10 + 7 / 12, "feet"),
  32377. weight: math.unit(2.5, "tons"),
  32378. name: "Back",
  32379. image: {
  32380. source: "./media/characters/aasha/back.svg",
  32381. extra: 1133 / 1057,
  32382. bottom: 257 / 1390
  32383. }
  32384. },
  32385. },
  32386. [
  32387. {
  32388. name: "Normal",
  32389. height: math.unit(10 + 7 / 12, "feet"),
  32390. default: true
  32391. },
  32392. ]
  32393. ))
  32394. characterMakers.push(() => makeCharacter(
  32395. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32396. {
  32397. front: {
  32398. height: math.unit(6 + 3 / 12, "feet"),
  32399. name: "Front",
  32400. image: {
  32401. source: "./media/characters/nevan/front.svg",
  32402. extra: 704 / 704,
  32403. bottom: 28 / 732
  32404. }
  32405. },
  32406. back: {
  32407. height: math.unit(6 + 3 / 12, "feet"),
  32408. name: "Back",
  32409. image: {
  32410. source: "./media/characters/nevan/back.svg",
  32411. extra: 714 / 714,
  32412. bottom: 21 / 735
  32413. }
  32414. },
  32415. frontFlaccid: {
  32416. height: math.unit(6 + 3 / 12, "feet"),
  32417. name: "Front (Flaccid)",
  32418. image: {
  32419. source: "./media/characters/nevan/front-flaccid.svg",
  32420. extra: 704 / 704,
  32421. bottom: 28 / 732
  32422. }
  32423. },
  32424. frontErect: {
  32425. height: math.unit(6 + 3 / 12, "feet"),
  32426. name: "Front (Erect)",
  32427. image: {
  32428. source: "./media/characters/nevan/front-erect.svg",
  32429. extra: 704 / 704,
  32430. bottom: 28 / 732
  32431. }
  32432. },
  32433. backFlaccid: {
  32434. height: math.unit(6 + 3 / 12, "feet"),
  32435. name: "Back (Flaccid)",
  32436. image: {
  32437. source: "./media/characters/nevan/back-flaccid.svg",
  32438. extra: 714 / 714,
  32439. bottom: 21 / 735
  32440. }
  32441. },
  32442. },
  32443. [
  32444. {
  32445. name: "Normal",
  32446. height: math.unit(6 + 3 / 12, "feet"),
  32447. default: true
  32448. },
  32449. ]
  32450. ))
  32451. characterMakers.push(() => makeCharacter(
  32452. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32453. {
  32454. front: {
  32455. height: math.unit(4, "feet"),
  32456. name: "Front",
  32457. image: {
  32458. source: "./media/characters/arhan/front.svg",
  32459. extra: 3368 / 3133,
  32460. bottom: 0 / 3368
  32461. }
  32462. },
  32463. side: {
  32464. height: math.unit(4, "feet"),
  32465. name: "Side",
  32466. image: {
  32467. source: "./media/characters/arhan/side.svg",
  32468. extra: 3347 / 3105,
  32469. bottom: 0 / 3347
  32470. }
  32471. },
  32472. tongue: {
  32473. height: math.unit(1.42, "feet"),
  32474. name: "Tongue",
  32475. image: {
  32476. source: "./media/characters/arhan/tongue.svg"
  32477. }
  32478. },
  32479. head: {
  32480. height: math.unit(0.85, "feet"),
  32481. name: "Head",
  32482. image: {
  32483. source: "./media/characters/arhan/head.svg"
  32484. }
  32485. },
  32486. },
  32487. [
  32488. {
  32489. name: "Normal",
  32490. height: math.unit(4, "feet"),
  32491. default: true
  32492. },
  32493. ]
  32494. ))
  32495. characterMakers.push(() => makeCharacter(
  32496. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32497. {
  32498. front: {
  32499. height: math.unit(5 + 7.5 / 12, "feet"),
  32500. weight: math.unit(120, "lb"),
  32501. name: "Front",
  32502. image: {
  32503. source: "./media/characters/digi-duncan/front.svg",
  32504. extra: 330 / 326,
  32505. bottom: 16 / 346
  32506. }
  32507. },
  32508. side: {
  32509. height: math.unit(5 + 7.5 / 12, "feet"),
  32510. weight: math.unit(120, "lb"),
  32511. name: "Side",
  32512. image: {
  32513. source: "./media/characters/digi-duncan/side.svg",
  32514. extra: 341 / 337,
  32515. bottom: 1 / 342
  32516. }
  32517. },
  32518. back: {
  32519. height: math.unit(5 + 7.5 / 12, "feet"),
  32520. weight: math.unit(120, "lb"),
  32521. name: "Back",
  32522. image: {
  32523. source: "./media/characters/digi-duncan/back.svg",
  32524. extra: 330 / 326,
  32525. bottom: 12 / 342
  32526. }
  32527. },
  32528. },
  32529. [
  32530. {
  32531. name: "Speck",
  32532. height: math.unit(0.25, "mm")
  32533. },
  32534. {
  32535. name: "Micro",
  32536. height: math.unit(5, "mm")
  32537. },
  32538. {
  32539. name: "Tiny",
  32540. height: math.unit(0.5, "inches"),
  32541. default: true
  32542. },
  32543. {
  32544. name: "Human",
  32545. height: math.unit(5 + 7.5 / 12, "feet")
  32546. },
  32547. {
  32548. name: "Minigiant",
  32549. height: math.unit(8 + 5.25, "feet")
  32550. },
  32551. {
  32552. name: "Giant",
  32553. height: math.unit(2000, "feet")
  32554. },
  32555. {
  32556. name: "Mega",
  32557. height: math.unit(371.1, "miles")
  32558. },
  32559. ]
  32560. ))
  32561. characterMakers.push(() => makeCharacter(
  32562. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32563. {
  32564. front: {
  32565. height: math.unit(2, "meters"),
  32566. weight: math.unit(350, "kg"),
  32567. name: "Front",
  32568. image: {
  32569. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32570. extra: 898 / 838,
  32571. bottom: 9 / 907
  32572. }
  32573. },
  32574. },
  32575. [
  32576. {
  32577. name: "Micro",
  32578. height: math.unit(8, "meters")
  32579. },
  32580. {
  32581. name: "Normal",
  32582. height: math.unit(50, "meters"),
  32583. default: true
  32584. },
  32585. {
  32586. name: "Macro",
  32587. height: math.unit(500, "meters")
  32588. },
  32589. ]
  32590. ))
  32591. characterMakers.push(() => makeCharacter(
  32592. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32593. {
  32594. front: {
  32595. height: math.unit(6 + 6 / 12, "feet"),
  32596. name: "Front",
  32597. image: {
  32598. source: "./media/characters/khardesh/front.svg",
  32599. extra: 1788/1596,
  32600. bottom: 66/1854
  32601. }
  32602. },
  32603. back: {
  32604. height: math.unit(6 + 6 / 12, "feet"),
  32605. name: "Back",
  32606. image: {
  32607. source: "./media/characters/khardesh/back.svg",
  32608. extra: 1781/1584,
  32609. bottom: 68/1849
  32610. }
  32611. },
  32612. },
  32613. [
  32614. {
  32615. name: "Normal",
  32616. height: math.unit(6 + 6 / 12, "feet"),
  32617. default: true
  32618. },
  32619. {
  32620. name: "Normal+",
  32621. height: math.unit(4, "meters")
  32622. },
  32623. {
  32624. name: "Macro",
  32625. height: math.unit(50, "meters")
  32626. },
  32627. {
  32628. name: "Macro+",
  32629. height: math.unit(100, "meters")
  32630. },
  32631. {
  32632. name: "Megamacro",
  32633. height: math.unit(20, "km")
  32634. },
  32635. ]
  32636. ))
  32637. characterMakers.push(() => makeCharacter(
  32638. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32639. {
  32640. front: {
  32641. height: math.unit(6, "feet"),
  32642. weight: math.unit(150, "lb"),
  32643. name: "Front",
  32644. image: {
  32645. source: "./media/characters/kosho/front.svg",
  32646. extra: 1847 / 1847,
  32647. bottom: 86 / 1933
  32648. }
  32649. },
  32650. },
  32651. [
  32652. {
  32653. name: "Second-stage micro",
  32654. height: math.unit(0.5, "inches")
  32655. },
  32656. {
  32657. name: "First-stage micro",
  32658. height: math.unit(6, "inches")
  32659. },
  32660. {
  32661. name: "Normal",
  32662. height: math.unit(6, "feet"),
  32663. default: true
  32664. },
  32665. {
  32666. name: "First-stage macro",
  32667. height: math.unit(72, "feet")
  32668. },
  32669. {
  32670. name: "Second-stage macro",
  32671. height: math.unit(864, "feet")
  32672. },
  32673. ]
  32674. ))
  32675. characterMakers.push(() => makeCharacter(
  32676. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32677. {
  32678. normal: {
  32679. height: math.unit(4 + 6 / 12, "feet"),
  32680. name: "Normal",
  32681. image: {
  32682. source: "./media/characters/hydra/normal.svg",
  32683. extra: 2833 / 2634,
  32684. bottom: 68 / 2901
  32685. }
  32686. },
  32687. smol: {
  32688. height: math.unit(0.705, "inches"),
  32689. name: "Smol",
  32690. image: {
  32691. source: "./media/characters/hydra/smol.svg",
  32692. extra: 2715 / 2540,
  32693. bottom: 0 / 2715
  32694. }
  32695. },
  32696. },
  32697. [
  32698. {
  32699. name: "Normal",
  32700. height: math.unit(4 + 6 / 12, "feet"),
  32701. default: true
  32702. }
  32703. ]
  32704. ))
  32705. characterMakers.push(() => makeCharacter(
  32706. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32707. {
  32708. front: {
  32709. height: math.unit(0.6, "cm"),
  32710. name: "Front",
  32711. image: {
  32712. source: "./media/characters/daz/front.svg",
  32713. extra: 1682 / 1164,
  32714. bottom: 42 / 1724
  32715. }
  32716. },
  32717. },
  32718. [
  32719. {
  32720. name: "Normal",
  32721. height: math.unit(0.6, "cm"),
  32722. default: true
  32723. },
  32724. ]
  32725. ))
  32726. characterMakers.push(() => makeCharacter(
  32727. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32728. {
  32729. front: {
  32730. height: math.unit(6, "feet"),
  32731. weight: math.unit(235, "lb"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/theo-pangolin/front.svg",
  32735. extra: 1996 / 1969,
  32736. bottom: 115 / 2111
  32737. }
  32738. },
  32739. back: {
  32740. height: math.unit(6, "feet"),
  32741. weight: math.unit(235, "lb"),
  32742. name: "Back",
  32743. image: {
  32744. source: "./media/characters/theo-pangolin/back.svg",
  32745. extra: 1979 / 1979,
  32746. bottom: 40 / 2019
  32747. }
  32748. },
  32749. feral: {
  32750. height: math.unit(2, "feet"),
  32751. weight: math.unit(30, "lb"),
  32752. name: "Feral",
  32753. image: {
  32754. source: "./media/characters/theo-pangolin/feral.svg",
  32755. extra: 803 / 791,
  32756. bottom: 181 / 984
  32757. }
  32758. },
  32759. footFive: {
  32760. height: math.unit(1.43, "feet"),
  32761. name: "Foot (Five Toes)",
  32762. image: {
  32763. source: "./media/characters/theo-pangolin/foot-five.svg"
  32764. }
  32765. },
  32766. footFour: {
  32767. height: math.unit(1.43, "feet"),
  32768. name: "Foot (Four Toes)",
  32769. image: {
  32770. source: "./media/characters/theo-pangolin/foot-four.svg"
  32771. }
  32772. },
  32773. handFour: {
  32774. height: math.unit(0.81, "feet"),
  32775. name: "Hand (Four Fingers)",
  32776. image: {
  32777. source: "./media/characters/theo-pangolin/hand-four.svg"
  32778. }
  32779. },
  32780. handThree: {
  32781. height: math.unit(0.81, "feet"),
  32782. name: "Hand (Three Fingers)",
  32783. image: {
  32784. source: "./media/characters/theo-pangolin/hand-three.svg"
  32785. }
  32786. },
  32787. headFront: {
  32788. height: math.unit(1.37, "feet"),
  32789. name: "Head (Front)",
  32790. image: {
  32791. source: "./media/characters/theo-pangolin/head-front.svg"
  32792. }
  32793. },
  32794. headSide: {
  32795. height: math.unit(1.43, "feet"),
  32796. name: "Head (Side)",
  32797. image: {
  32798. source: "./media/characters/theo-pangolin/head-side.svg"
  32799. }
  32800. },
  32801. tongue: {
  32802. height: math.unit(2.29, "feet"),
  32803. name: "Tongue",
  32804. image: {
  32805. source: "./media/characters/theo-pangolin/tongue.svg"
  32806. }
  32807. },
  32808. },
  32809. [
  32810. {
  32811. name: "Normal",
  32812. height: math.unit(6, "feet")
  32813. },
  32814. {
  32815. name: "Macro",
  32816. height: math.unit(400, "feet"),
  32817. default: true
  32818. },
  32819. ]
  32820. ))
  32821. characterMakers.push(() => makeCharacter(
  32822. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32823. {
  32824. front: {
  32825. height: math.unit(6, "inches"),
  32826. weight: math.unit(0.036, "kg"),
  32827. name: "Front",
  32828. image: {
  32829. source: "./media/characters/renée/front.svg",
  32830. extra: 900 / 886,
  32831. bottom: 8 / 908
  32832. }
  32833. },
  32834. },
  32835. [
  32836. {
  32837. name: "Nano",
  32838. height: math.unit(1, "nm")
  32839. },
  32840. {
  32841. name: "Micro",
  32842. height: math.unit(1, "mm")
  32843. },
  32844. {
  32845. name: "Normal",
  32846. height: math.unit(6, "inches")
  32847. },
  32848. {
  32849. name: "Macro",
  32850. height: math.unit(2000, "feet"),
  32851. default: true
  32852. },
  32853. {
  32854. name: "Megamacro",
  32855. height: math.unit(2, "km")
  32856. },
  32857. {
  32858. name: "Gigamacro",
  32859. height: math.unit(2000, "km")
  32860. },
  32861. {
  32862. name: "Teramacro",
  32863. height: math.unit(250000, "km")
  32864. },
  32865. ]
  32866. ))
  32867. characterMakers.push(() => makeCharacter(
  32868. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32869. {
  32870. front: {
  32871. height: math.unit(4, "meters"),
  32872. weight: math.unit(150, "kg"),
  32873. name: "Front",
  32874. image: {
  32875. source: "./media/characters/caledvwlch/front.svg",
  32876. extra: 1757/1537,
  32877. bottom: 31/1788
  32878. }
  32879. },
  32880. side: {
  32881. height: math.unit(4, "meters"),
  32882. weight: math.unit(150, "kg"),
  32883. name: "Side",
  32884. image: {
  32885. source: "./media/characters/caledvwlch/side.svg",
  32886. extra: 1605 / 1536,
  32887. bottom: 31 / 1636
  32888. }
  32889. },
  32890. back: {
  32891. height: math.unit(4, "meters"),
  32892. weight: math.unit(150, "kg"),
  32893. name: "Back",
  32894. image: {
  32895. source: "./media/characters/caledvwlch/back.svg",
  32896. extra: 1635 / 1565,
  32897. bottom: 27 / 1662
  32898. }
  32899. },
  32900. },
  32901. [
  32902. {
  32903. name: "\"Incognito\"",
  32904. height: math.unit(4, "meters")
  32905. },
  32906. {
  32907. name: "Small rampage",
  32908. height: math.unit(600, "meters")
  32909. },
  32910. {
  32911. name: "Mega",
  32912. height: math.unit(30, "km")
  32913. },
  32914. {
  32915. name: "Home-size",
  32916. height: math.unit(50, "km"),
  32917. default: true
  32918. },
  32919. {
  32920. name: "Giga",
  32921. height: math.unit(300, "km")
  32922. },
  32923. {
  32924. name: "Lounging",
  32925. height: math.unit(11000, "km")
  32926. },
  32927. {
  32928. name: "Planet snacking",
  32929. height: math.unit(2000000, "km")
  32930. },
  32931. ]
  32932. ))
  32933. characterMakers.push(() => makeCharacter(
  32934. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32935. {
  32936. front: {
  32937. height: math.unit(6, "feet"),
  32938. weight: math.unit(215, "lb"),
  32939. name: "Front",
  32940. image: {
  32941. source: "./media/characters/sapphire-svell/front.svg",
  32942. extra: 495 / 455,
  32943. bottom: 20 / 515
  32944. }
  32945. },
  32946. back: {
  32947. height: math.unit(6, "feet"),
  32948. weight: math.unit(216, "lb"),
  32949. name: "Back",
  32950. image: {
  32951. source: "./media/characters/sapphire-svell/back.svg",
  32952. extra: 497 / 477,
  32953. bottom: 7 / 504
  32954. }
  32955. },
  32956. maw: {
  32957. height: math.unit(1.57, "feet"),
  32958. name: "Maw",
  32959. image: {
  32960. source: "./media/characters/sapphire-svell/maw.svg"
  32961. }
  32962. },
  32963. foot: {
  32964. height: math.unit(1.07, "feet"),
  32965. name: "Foot",
  32966. image: {
  32967. source: "./media/characters/sapphire-svell/foot.svg"
  32968. }
  32969. },
  32970. toering: {
  32971. height: math.unit(1.7, "inch"),
  32972. name: "Toering",
  32973. image: {
  32974. source: "./media/characters/sapphire-svell/toering.svg"
  32975. }
  32976. },
  32977. },
  32978. [
  32979. {
  32980. name: "Normal",
  32981. height: math.unit(300, "feet"),
  32982. default: true
  32983. },
  32984. {
  32985. name: "Augmented",
  32986. height: math.unit(1250, "feet")
  32987. },
  32988. {
  32989. name: "Unleashed",
  32990. height: math.unit(3000, "feet")
  32991. },
  32992. ]
  32993. ))
  32994. characterMakers.push(() => makeCharacter(
  32995. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32996. {
  32997. side: {
  32998. height: math.unit(2 + 3 / 12, "feet"),
  32999. weight: math.unit(110, "lb"),
  33000. name: "Side",
  33001. image: {
  33002. source: "./media/characters/glitch-flux/side.svg",
  33003. extra: 997 / 805,
  33004. bottom: 20 / 1017
  33005. }
  33006. },
  33007. },
  33008. [
  33009. {
  33010. name: "Normal",
  33011. height: math.unit(2 + 3 / 12, "feet"),
  33012. default: true
  33013. },
  33014. ]
  33015. ))
  33016. characterMakers.push(() => makeCharacter(
  33017. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33018. {
  33019. front: {
  33020. height: math.unit(4, "meters"),
  33021. name: "Front",
  33022. image: {
  33023. source: "./media/characters/mid/front.svg",
  33024. extra: 507 / 476,
  33025. bottom: 17 / 524
  33026. }
  33027. },
  33028. back: {
  33029. height: math.unit(4, "meters"),
  33030. name: "Back",
  33031. image: {
  33032. source: "./media/characters/mid/back.svg",
  33033. extra: 519 / 487,
  33034. bottom: 7 / 526
  33035. }
  33036. },
  33037. stuck: {
  33038. height: math.unit(2.2, "meters"),
  33039. name: "Stuck",
  33040. image: {
  33041. source: "./media/characters/mid/stuck.svg",
  33042. extra: 1951 / 1869,
  33043. bottom: 88 / 2039
  33044. }
  33045. }
  33046. },
  33047. [
  33048. {
  33049. name: "Normal",
  33050. height: math.unit(4, "meters"),
  33051. default: true
  33052. },
  33053. {
  33054. name: "Big",
  33055. height: math.unit(10, "meters")
  33056. },
  33057. {
  33058. name: "Macro",
  33059. height: math.unit(800, "meters")
  33060. },
  33061. {
  33062. name: "Megamacro",
  33063. height: math.unit(100, "km")
  33064. },
  33065. {
  33066. name: "Overgrown",
  33067. height: math.unit(1, "parsec")
  33068. },
  33069. ]
  33070. ))
  33071. characterMakers.push(() => makeCharacter(
  33072. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33073. {
  33074. front: {
  33075. height: math.unit(2.5, "meters"),
  33076. weight: math.unit(225, "kg"),
  33077. name: "Front",
  33078. image: {
  33079. source: "./media/characters/iris/front.svg",
  33080. extra: 3348 / 3251,
  33081. bottom: 205 / 3553
  33082. }
  33083. },
  33084. maw: {
  33085. height: math.unit(0.56, "meter"),
  33086. name: "Maw",
  33087. image: {
  33088. source: "./media/characters/iris/maw.svg"
  33089. }
  33090. },
  33091. },
  33092. [
  33093. {
  33094. name: "Mewter cat",
  33095. height: math.unit(1.2, "meters")
  33096. },
  33097. {
  33098. name: "Normal",
  33099. height: math.unit(2.5, "meters"),
  33100. default: true
  33101. },
  33102. {
  33103. name: "Minimacro",
  33104. height: math.unit(18, "feet")
  33105. },
  33106. {
  33107. name: "Macro",
  33108. height: math.unit(140, "feet")
  33109. },
  33110. {
  33111. name: "Macro+",
  33112. height: math.unit(180, "meters")
  33113. },
  33114. {
  33115. name: "Megamacro",
  33116. height: math.unit(2746, "meters")
  33117. },
  33118. ]
  33119. ))
  33120. characterMakers.push(() => makeCharacter(
  33121. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33122. {
  33123. front: {
  33124. height: math.unit(6, "feet"),
  33125. weight: math.unit(135, "lb"),
  33126. name: "Front",
  33127. image: {
  33128. source: "./media/characters/axel/front.svg",
  33129. extra: 908 / 908,
  33130. bottom: 58 / 966
  33131. }
  33132. },
  33133. side: {
  33134. height: math.unit(6, "feet"),
  33135. weight: math.unit(135, "lb"),
  33136. name: "Side",
  33137. image: {
  33138. source: "./media/characters/axel/side.svg",
  33139. extra: 958 / 958,
  33140. bottom: 11 / 969
  33141. }
  33142. },
  33143. back: {
  33144. height: math.unit(6, "feet"),
  33145. weight: math.unit(135, "lb"),
  33146. name: "Back",
  33147. image: {
  33148. source: "./media/characters/axel/back.svg",
  33149. extra: 887 / 887,
  33150. bottom: 34 / 921
  33151. }
  33152. },
  33153. head: {
  33154. height: math.unit(1.07, "feet"),
  33155. name: "Head",
  33156. image: {
  33157. source: "./media/characters/axel/head.svg"
  33158. }
  33159. },
  33160. beak: {
  33161. height: math.unit(1.4, "feet"),
  33162. name: "Beak",
  33163. image: {
  33164. source: "./media/characters/axel/beak.svg"
  33165. }
  33166. },
  33167. beakSide: {
  33168. height: math.unit(1.4, "feet"),
  33169. name: "Beak Side",
  33170. image: {
  33171. source: "./media/characters/axel/beak-side.svg"
  33172. }
  33173. },
  33174. sheath: {
  33175. height: math.unit(0.5, "feet"),
  33176. name: "Sheath",
  33177. image: {
  33178. source: "./media/characters/axel/sheath.svg"
  33179. }
  33180. },
  33181. dick: {
  33182. height: math.unit(0.98, "feet"),
  33183. name: "Dick",
  33184. image: {
  33185. source: "./media/characters/axel/dick.svg"
  33186. }
  33187. },
  33188. },
  33189. [
  33190. {
  33191. name: "Macro",
  33192. height: math.unit(68, "meters"),
  33193. default: true
  33194. },
  33195. ]
  33196. ))
  33197. characterMakers.push(() => makeCharacter(
  33198. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33199. {
  33200. front: {
  33201. height: math.unit(3.5, "meters"),
  33202. weight: math.unit(1200, "kg"),
  33203. name: "Front",
  33204. image: {
  33205. source: "./media/characters/joanna/front.svg",
  33206. extra: 1596 / 1488,
  33207. bottom: 29 / 1625
  33208. }
  33209. },
  33210. back: {
  33211. height: math.unit(3.5, "meters"),
  33212. weight: math.unit(1200, "kg"),
  33213. name: "Back",
  33214. image: {
  33215. source: "./media/characters/joanna/back.svg",
  33216. extra: 1594 / 1495,
  33217. bottom: 26 / 1620
  33218. }
  33219. },
  33220. frontShorts: {
  33221. height: math.unit(3.5, "meters"),
  33222. weight: math.unit(1200, "kg"),
  33223. name: "Front (Shorts)",
  33224. image: {
  33225. source: "./media/characters/joanna/front-shorts.svg",
  33226. extra: 1596 / 1488,
  33227. bottom: 29 / 1625
  33228. }
  33229. },
  33230. frontBiker: {
  33231. height: math.unit(3.5, "meters"),
  33232. weight: math.unit(1200, "kg"),
  33233. name: "Front (Biker)",
  33234. image: {
  33235. source: "./media/characters/joanna/front-biker.svg",
  33236. extra: 1596 / 1488,
  33237. bottom: 29 / 1625
  33238. }
  33239. },
  33240. backBiker: {
  33241. height: math.unit(3.5, "meters"),
  33242. weight: math.unit(1200, "kg"),
  33243. name: "Back (Biker)",
  33244. image: {
  33245. source: "./media/characters/joanna/back-biker.svg",
  33246. extra: 1594 / 1495,
  33247. bottom: 88 / 1682
  33248. }
  33249. },
  33250. bikeLeft: {
  33251. height: math.unit(2.4, "meters"),
  33252. weight: math.unit(1600, "kg"),
  33253. name: "Bike (Left)",
  33254. image: {
  33255. source: "./media/characters/joanna/bike-left.svg",
  33256. extra: 720 / 720,
  33257. bottom: 8 / 728
  33258. }
  33259. },
  33260. bikeRight: {
  33261. height: math.unit(2.4, "meters"),
  33262. weight: math.unit(1600, "kg"),
  33263. name: "Bike (Right)",
  33264. image: {
  33265. source: "./media/characters/joanna/bike-right.svg",
  33266. extra: 720 / 720,
  33267. bottom: 8 / 728
  33268. }
  33269. },
  33270. },
  33271. [
  33272. {
  33273. name: "Incognito",
  33274. height: math.unit(3.5, "meters")
  33275. },
  33276. {
  33277. name: "Casual Big",
  33278. height: math.unit(200, "meters")
  33279. },
  33280. {
  33281. name: "Macro",
  33282. height: math.unit(600, "meters")
  33283. },
  33284. {
  33285. name: "Original",
  33286. height: math.unit(20, "km"),
  33287. default: true
  33288. },
  33289. {
  33290. name: "Giga",
  33291. height: math.unit(400, "km")
  33292. },
  33293. {
  33294. name: "Lounging",
  33295. height: math.unit(1500, "km")
  33296. },
  33297. {
  33298. name: "Planetary",
  33299. height: math.unit(200000, "km")
  33300. },
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33305. {
  33306. front: {
  33307. height: math.unit(6, "feet"),
  33308. weight: math.unit(150, "lb"),
  33309. name: "Front",
  33310. image: {
  33311. source: "./media/characters/hugo-sigil/front.svg",
  33312. extra: 522 / 500,
  33313. bottom: 2 / 524
  33314. }
  33315. },
  33316. back: {
  33317. height: math.unit(6, "feet"),
  33318. weight: math.unit(150, "lb"),
  33319. name: "Back",
  33320. image: {
  33321. source: "./media/characters/hugo-sigil/back.svg",
  33322. extra: 519 / 495,
  33323. bottom: 5 / 524
  33324. }
  33325. },
  33326. maw: {
  33327. height: math.unit(1.4, "feet"),
  33328. weight: math.unit(150, "lb"),
  33329. name: "Maw",
  33330. image: {
  33331. source: "./media/characters/hugo-sigil/maw.svg"
  33332. }
  33333. },
  33334. feet: {
  33335. height: math.unit(1.56, "feet"),
  33336. weight: math.unit(150, "lb"),
  33337. name: "Feet",
  33338. image: {
  33339. source: "./media/characters/hugo-sigil/feet.svg",
  33340. extra: 177 / 177,
  33341. bottom: 12 / 189
  33342. }
  33343. },
  33344. },
  33345. [
  33346. {
  33347. name: "Normal",
  33348. height: math.unit(6, "feet")
  33349. },
  33350. {
  33351. name: "Macro",
  33352. height: math.unit(200, "feet"),
  33353. default: true
  33354. },
  33355. ]
  33356. ))
  33357. characterMakers.push(() => makeCharacter(
  33358. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33359. {
  33360. front: {
  33361. height: math.unit(6, "feet"),
  33362. weight: math.unit(150, "lb"),
  33363. name: "Front",
  33364. image: {
  33365. source: "./media/characters/peri/front.svg",
  33366. extra: 2354 / 2233,
  33367. bottom: 49 / 2403
  33368. }
  33369. },
  33370. },
  33371. [
  33372. {
  33373. name: "Really Small",
  33374. height: math.unit(1, "nm")
  33375. },
  33376. {
  33377. name: "Micro",
  33378. height: math.unit(4, "inches")
  33379. },
  33380. {
  33381. name: "Normal",
  33382. height: math.unit(7, "inches"),
  33383. default: true
  33384. },
  33385. {
  33386. name: "Macro",
  33387. height: math.unit(400, "feet")
  33388. },
  33389. {
  33390. name: "Megamacro",
  33391. height: math.unit(100, "miles")
  33392. },
  33393. ]
  33394. ))
  33395. characterMakers.push(() => makeCharacter(
  33396. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33397. {
  33398. frontSlim: {
  33399. height: math.unit(7, "feet"),
  33400. name: "Front (Slim)",
  33401. image: {
  33402. source: "./media/characters/issilora/front-slim.svg",
  33403. extra: 529 / 449,
  33404. bottom: 53 / 582
  33405. }
  33406. },
  33407. sideSlim: {
  33408. height: math.unit(7, "feet"),
  33409. name: "Side (Slim)",
  33410. image: {
  33411. source: "./media/characters/issilora/side-slim.svg",
  33412. extra: 570 / 480,
  33413. bottom: 30 / 600
  33414. }
  33415. },
  33416. backSlim: {
  33417. height: math.unit(7, "feet"),
  33418. name: "Back (Slim)",
  33419. image: {
  33420. source: "./media/characters/issilora/back-slim.svg",
  33421. extra: 537 / 455,
  33422. bottom: 46 / 583
  33423. }
  33424. },
  33425. frontBuff: {
  33426. height: math.unit(7, "feet"),
  33427. name: "Front (Buff)",
  33428. image: {
  33429. source: "./media/characters/issilora/front-buff.svg",
  33430. extra: 2310 / 2035,
  33431. bottom: 335 / 2645
  33432. }
  33433. },
  33434. head: {
  33435. height: math.unit(1.94, "feet"),
  33436. name: "Head",
  33437. image: {
  33438. source: "./media/characters/issilora/head.svg"
  33439. }
  33440. },
  33441. },
  33442. [
  33443. {
  33444. name: "Minimum",
  33445. height: math.unit(7, "feet")
  33446. },
  33447. {
  33448. name: "Comfortable",
  33449. height: math.unit(17, "feet")
  33450. },
  33451. {
  33452. name: "Fun Size",
  33453. height: math.unit(47, "feet")
  33454. },
  33455. {
  33456. name: "Natural Macro",
  33457. height: math.unit(137, "feet"),
  33458. default: true
  33459. },
  33460. {
  33461. name: "Maximum Kaiju",
  33462. height: math.unit(397, "feet")
  33463. },
  33464. ]
  33465. ))
  33466. characterMakers.push(() => makeCharacter(
  33467. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33468. {
  33469. front: {
  33470. height: math.unit(50 + 9/12, "feet"),
  33471. weight: math.unit(32.8, "tons"),
  33472. name: "Front",
  33473. image: {
  33474. source: "./media/characters/irb'iiritaahn/front.svg",
  33475. extra: 1878/1826,
  33476. bottom: 326/2204
  33477. }
  33478. },
  33479. back: {
  33480. height: math.unit(50 + 9/12, "feet"),
  33481. weight: math.unit(32.8, "tons"),
  33482. name: "Back",
  33483. image: {
  33484. source: "./media/characters/irb'iiritaahn/back.svg",
  33485. extra: 2052/2018,
  33486. bottom: 152/2204
  33487. }
  33488. },
  33489. head: {
  33490. height: math.unit(12.86, "feet"),
  33491. name: "Head",
  33492. image: {
  33493. source: "./media/characters/irb'iiritaahn/head.svg"
  33494. }
  33495. },
  33496. maw: {
  33497. height: math.unit(9.66, "feet"),
  33498. name: "Maw",
  33499. image: {
  33500. source: "./media/characters/irb'iiritaahn/maw.svg"
  33501. }
  33502. },
  33503. frontDick: {
  33504. height: math.unit(8.78461, "feet"),
  33505. name: "Front Dick",
  33506. image: {
  33507. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33508. }
  33509. },
  33510. rearDick: {
  33511. height: math.unit(8.78461, "feet"),
  33512. name: "Rear Dick",
  33513. image: {
  33514. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33515. }
  33516. },
  33517. rearDickUnfolded: {
  33518. height: math.unit(8.78, "feet"),
  33519. name: "Rear Dick (Unfolded)",
  33520. image: {
  33521. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33522. }
  33523. },
  33524. wings: {
  33525. height: math.unit(43, "feet"),
  33526. name: "Wings",
  33527. image: {
  33528. source: "./media/characters/irb'iiritaahn/wings.svg"
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Macro",
  33535. height: math.unit(50 + 9/12, "feet"),
  33536. default: true
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33542. {
  33543. front: {
  33544. height: math.unit(205, "cm"),
  33545. weight: math.unit(102, "kg"),
  33546. name: "Front",
  33547. image: {
  33548. source: "./media/characters/irbisgreif/front.svg",
  33549. extra: 785/706,
  33550. bottom: 13/798
  33551. }
  33552. },
  33553. back: {
  33554. height: math.unit(205, "cm"),
  33555. weight: math.unit(102, "kg"),
  33556. name: "Back",
  33557. image: {
  33558. source: "./media/characters/irbisgreif/back.svg",
  33559. extra: 713/701,
  33560. bottom: 26/739
  33561. }
  33562. },
  33563. frontDressed: {
  33564. height: math.unit(216, "cm"),
  33565. weight: math.unit(102, "kg"),
  33566. name: "Front-dressed",
  33567. image: {
  33568. source: "./media/characters/irbisgreif/front-dressed.svg",
  33569. extra: 902/776,
  33570. bottom: 14/916
  33571. }
  33572. },
  33573. sideDressed: {
  33574. height: math.unit(195, "cm"),
  33575. weight: math.unit(102, "kg"),
  33576. name: "Side-dressed",
  33577. image: {
  33578. source: "./media/characters/irbisgreif/side-dressed.svg",
  33579. extra: 788/688,
  33580. bottom: 21/809
  33581. }
  33582. },
  33583. backDressed: {
  33584. height: math.unit(216, "cm"),
  33585. weight: math.unit(102, "kg"),
  33586. name: "Back-dressed",
  33587. image: {
  33588. source: "./media/characters/irbisgreif/back-dressed.svg",
  33589. extra: 901/783,
  33590. bottom: 10/911
  33591. }
  33592. },
  33593. dick: {
  33594. height: math.unit(0.49, "feet"),
  33595. name: "Dick",
  33596. image: {
  33597. source: "./media/characters/irbisgreif/dick.svg"
  33598. }
  33599. },
  33600. wingTop: {
  33601. height: math.unit(1.93 , "feet"),
  33602. name: "Wing-top",
  33603. image: {
  33604. source: "./media/characters/irbisgreif/wing-top.svg"
  33605. }
  33606. },
  33607. wingBottom: {
  33608. height: math.unit(1.93 , "feet"),
  33609. name: "Wing-bottom",
  33610. image: {
  33611. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33612. }
  33613. },
  33614. },
  33615. [
  33616. {
  33617. name: "Normal",
  33618. height: math.unit(216, "cm"),
  33619. default: true
  33620. },
  33621. ]
  33622. ))
  33623. characterMakers.push(() => makeCharacter(
  33624. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33625. {
  33626. front: {
  33627. height: math.unit(6, "feet"),
  33628. weight: math.unit(150, "lb"),
  33629. name: "Front",
  33630. image: {
  33631. source: "./media/characters/pride/front.svg",
  33632. extra: 1299/1230,
  33633. bottom: 18/1317
  33634. }
  33635. },
  33636. },
  33637. [
  33638. {
  33639. name: "Normal",
  33640. height: math.unit(7, "feet")
  33641. },
  33642. {
  33643. name: "Mini-macro",
  33644. height: math.unit(11, "feet")
  33645. },
  33646. {
  33647. name: "Macro",
  33648. height: math.unit(15, "meters"),
  33649. default: true
  33650. },
  33651. {
  33652. name: "Macro+",
  33653. height: math.unit(40, "meters")
  33654. },
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33659. {
  33660. front: {
  33661. height: math.unit(4 + 2 / 12, "feet"),
  33662. weight: math.unit(95, "lb"),
  33663. name: "Front",
  33664. image: {
  33665. source: "./media/characters/vaelophis-nyx/front.svg",
  33666. extra: 2532/2330,
  33667. bottom: 0/2532
  33668. }
  33669. },
  33670. back: {
  33671. height: math.unit(4 + 2 / 12, "feet"),
  33672. weight: math.unit(95, "lb"),
  33673. name: "Back",
  33674. image: {
  33675. source: "./media/characters/vaelophis-nyx/back.svg",
  33676. extra: 2484/2361,
  33677. bottom: 0/2484
  33678. }
  33679. },
  33680. feralSide: {
  33681. height: math.unit(2 + 1/12, "feet"),
  33682. weight: math.unit(20, "lb"),
  33683. name: "Feral (Side)",
  33684. image: {
  33685. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33686. extra: 1721/1581,
  33687. bottom: 70/1791
  33688. }
  33689. },
  33690. feralLazing: {
  33691. height: math.unit(1.08, "feet"),
  33692. weight: math.unit(20, "lb"),
  33693. name: "Feral (Lazing)",
  33694. image: {
  33695. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33696. extra: 822/822,
  33697. bottom: 248/1070
  33698. }
  33699. },
  33700. ear: {
  33701. height: math.unit(0.416, "feet"),
  33702. name: "Ear",
  33703. image: {
  33704. source: "./media/characters/vaelophis-nyx/ear.svg"
  33705. }
  33706. },
  33707. eye: {
  33708. height: math.unit(0.0748, "feet"),
  33709. name: "Eye",
  33710. image: {
  33711. source: "./media/characters/vaelophis-nyx/eye.svg"
  33712. }
  33713. },
  33714. mouth: {
  33715. height: math.unit(0.378, "feet"),
  33716. name: "Mouth",
  33717. image: {
  33718. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33719. }
  33720. },
  33721. spade: {
  33722. height: math.unit(0.55, "feet"),
  33723. name: "Spade",
  33724. image: {
  33725. source: "./media/characters/vaelophis-nyx/spade.svg"
  33726. }
  33727. },
  33728. },
  33729. [
  33730. {
  33731. name: "Normal",
  33732. height: math.unit(4 + 2/12, "feet"),
  33733. default: true
  33734. },
  33735. ]
  33736. ))
  33737. characterMakers.push(() => makeCharacter(
  33738. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33739. {
  33740. front: {
  33741. height: math.unit(7, "feet"),
  33742. weight: math.unit(231, "lb"),
  33743. name: "Front",
  33744. image: {
  33745. source: "./media/characters/flux/front.svg",
  33746. extra: 919/871,
  33747. bottom: 0/919
  33748. }
  33749. },
  33750. back: {
  33751. height: math.unit(7, "feet"),
  33752. weight: math.unit(231, "lb"),
  33753. name: "Back",
  33754. image: {
  33755. source: "./media/characters/flux/back.svg",
  33756. extra: 1040/992,
  33757. bottom: 0/1040
  33758. }
  33759. },
  33760. frontDressed: {
  33761. height: math.unit(7, "feet"),
  33762. weight: math.unit(231, "lb"),
  33763. name: "Front (Dressed)",
  33764. image: {
  33765. source: "./media/characters/flux/front-dressed.svg",
  33766. extra: 919/871,
  33767. bottom: 0/919
  33768. }
  33769. },
  33770. feralSide: {
  33771. height: math.unit(5, "feet"),
  33772. weight: math.unit(150, "lb"),
  33773. name: "Feral (Side)",
  33774. image: {
  33775. source: "./media/characters/flux/feral-side.svg",
  33776. extra: 598/528,
  33777. bottom: 28/626
  33778. }
  33779. },
  33780. head: {
  33781. height: math.unit(1.585, "feet"),
  33782. name: "Head",
  33783. image: {
  33784. source: "./media/characters/flux/head.svg"
  33785. }
  33786. },
  33787. headSide: {
  33788. height: math.unit(1.74, "feet"),
  33789. name: "Head (Side)",
  33790. image: {
  33791. source: "./media/characters/flux/head-side.svg"
  33792. }
  33793. },
  33794. headSideFire: {
  33795. height: math.unit(1.76, "feet"),
  33796. name: "Head (Side, Fire)",
  33797. image: {
  33798. source: "./media/characters/flux/head-side-fire.svg"
  33799. }
  33800. },
  33801. },
  33802. [
  33803. {
  33804. name: "Normal",
  33805. height: math.unit(7, "feet"),
  33806. default: true
  33807. },
  33808. ]
  33809. ))
  33810. characterMakers.push(() => makeCharacter(
  33811. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33812. {
  33813. front: {
  33814. height: math.unit(9, "feet"),
  33815. weight: math.unit(1012, "lb"),
  33816. name: "Front",
  33817. image: {
  33818. source: "./media/characters/ulfra-lupae/front.svg",
  33819. extra: 1083/1011,
  33820. bottom: 67/1150
  33821. }
  33822. },
  33823. },
  33824. [
  33825. {
  33826. name: "Micro",
  33827. height: math.unit(6, "inches")
  33828. },
  33829. {
  33830. name: "Socializing",
  33831. height: math.unit(6 + 5/12, "feet")
  33832. },
  33833. {
  33834. name: "Normal",
  33835. height: math.unit(9, "feet"),
  33836. default: true
  33837. },
  33838. {
  33839. name: "Macro",
  33840. height: math.unit(150, "feet")
  33841. },
  33842. ]
  33843. ))
  33844. characterMakers.push(() => makeCharacter(
  33845. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33846. {
  33847. front: {
  33848. height: math.unit(5 + 2/12, "feet"),
  33849. weight: math.unit(120, "lb"),
  33850. name: "Front",
  33851. image: {
  33852. source: "./media/characters/timber/front.svg",
  33853. extra: 2814/2705,
  33854. bottom: 181/2995
  33855. }
  33856. },
  33857. },
  33858. [
  33859. {
  33860. name: "Normal",
  33861. height: math.unit(5 + 2/12, "feet"),
  33862. default: true
  33863. },
  33864. ]
  33865. ))
  33866. characterMakers.push(() => makeCharacter(
  33867. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33868. {
  33869. front: {
  33870. height: math.unit(9, "feet"),
  33871. name: "Front",
  33872. image: {
  33873. source: "./media/characters/nicki/front.svg",
  33874. extra: 1240/990,
  33875. bottom: 45/1285
  33876. },
  33877. form: "anthro",
  33878. default: true
  33879. },
  33880. side: {
  33881. height: math.unit(9, "feet"),
  33882. name: "Side",
  33883. image: {
  33884. source: "./media/characters/nicki/side.svg",
  33885. extra: 1047/973,
  33886. bottom: 61/1108
  33887. },
  33888. form: "anthro"
  33889. },
  33890. back: {
  33891. height: math.unit(9, "feet"),
  33892. name: "Back",
  33893. image: {
  33894. source: "./media/characters/nicki/back.svg",
  33895. extra: 1006/965,
  33896. bottom: 39/1045
  33897. },
  33898. form: "anthro"
  33899. },
  33900. taur: {
  33901. height: math.unit(15, "feet"),
  33902. name: "Taur",
  33903. image: {
  33904. source: "./media/characters/nicki/taur.svg",
  33905. extra: 1592/1347,
  33906. bottom: 0/1592
  33907. },
  33908. form: "taur",
  33909. default: true
  33910. },
  33911. },
  33912. [
  33913. {
  33914. name: "Normal",
  33915. height: math.unit(9, "feet"),
  33916. form: "anthro",
  33917. default: true
  33918. },
  33919. {
  33920. name: "Normal",
  33921. height: math.unit(15, "feet"),
  33922. form: "taur",
  33923. default: true
  33924. }
  33925. ],
  33926. {
  33927. "anthro": {
  33928. name: "Anthro",
  33929. default: true
  33930. },
  33931. "taur": {
  33932. name: "Taur"
  33933. }
  33934. }
  33935. ))
  33936. characterMakers.push(() => makeCharacter(
  33937. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33938. {
  33939. front: {
  33940. height: math.unit(7 + 10/12, "feet"),
  33941. weight: math.unit(3.5, "tons"),
  33942. name: "Front",
  33943. image: {
  33944. source: "./media/characters/lee/front.svg",
  33945. extra: 1773/1615,
  33946. bottom: 86/1859
  33947. }
  33948. },
  33949. hand: {
  33950. height: math.unit(1.78, "feet"),
  33951. name: "Hand",
  33952. image: {
  33953. source: "./media/characters/lee/hand.svg"
  33954. }
  33955. },
  33956. maw: {
  33957. height: math.unit(1.18, "feet"),
  33958. name: "Maw",
  33959. image: {
  33960. source: "./media/characters/lee/maw.svg"
  33961. }
  33962. },
  33963. },
  33964. [
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(7 + 10/12, "feet"),
  33968. default: true
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33974. {
  33975. front: {
  33976. height: math.unit(9, "feet"),
  33977. name: "Front",
  33978. image: {
  33979. source: "./media/characters/guti/front.svg",
  33980. extra: 4551/4355,
  33981. bottom: 123/4674
  33982. }
  33983. },
  33984. tongue: {
  33985. height: math.unit(1, "feet"),
  33986. name: "Tongue",
  33987. image: {
  33988. source: "./media/characters/guti/tongue.svg"
  33989. }
  33990. },
  33991. paw: {
  33992. height: math.unit(1.18, "feet"),
  33993. name: "Paw",
  33994. image: {
  33995. source: "./media/characters/guti/paw.svg"
  33996. }
  33997. },
  33998. },
  33999. [
  34000. {
  34001. name: "Normal",
  34002. height: math.unit(9, "feet"),
  34003. default: true
  34004. },
  34005. ]
  34006. ))
  34007. characterMakers.push(() => makeCharacter(
  34008. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34009. {
  34010. side: {
  34011. height: math.unit(5, "meters"),
  34012. name: "Side",
  34013. image: {
  34014. source: "./media/characters/vesper/side.svg",
  34015. extra: 1605/1518,
  34016. bottom: 0/1605
  34017. }
  34018. },
  34019. },
  34020. [
  34021. {
  34022. name: "Small",
  34023. height: math.unit(5, "meters")
  34024. },
  34025. {
  34026. name: "Sage",
  34027. height: math.unit(100, "meters"),
  34028. default: true
  34029. },
  34030. {
  34031. name: "Fun Size",
  34032. height: math.unit(600, "meters")
  34033. },
  34034. {
  34035. name: "Goddess",
  34036. height: math.unit(20000, "km")
  34037. },
  34038. {
  34039. name: "Maximum",
  34040. height: math.unit(5, "galaxies")
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34046. {
  34047. front: {
  34048. height: math.unit(6 + 3/12, "feet"),
  34049. weight: math.unit(190, "lb"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/gawain/front.svg",
  34053. extra: 2222/2139,
  34054. bottom: 90/2312
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(6 + 3/12, "feet"),
  34059. weight: math.unit(190, "lb"),
  34060. name: "Back",
  34061. image: {
  34062. source: "./media/characters/gawain/back.svg",
  34063. extra: 2199/2111,
  34064. bottom: 73/2272
  34065. }
  34066. },
  34067. },
  34068. [
  34069. {
  34070. name: "Normal",
  34071. height: math.unit(6 + 3/12, "feet"),
  34072. default: true
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34078. {
  34079. side: {
  34080. height: math.unit(3.5, "meters"),
  34081. weight: math.unit(16000, "lb"),
  34082. name: "Side",
  34083. image: {
  34084. source: "./media/characters/dascalti/side.svg",
  34085. extra: 392/273,
  34086. bottom: 47/439
  34087. }
  34088. },
  34089. breath: {
  34090. height: math.unit(7.4, "feet"),
  34091. name: "Breath",
  34092. image: {
  34093. source: "./media/characters/dascalti/breath.svg"
  34094. }
  34095. },
  34096. fed: {
  34097. height: math.unit(3.6, "meters"),
  34098. weight: math.unit(16000, "lb"),
  34099. name: "Fed",
  34100. image: {
  34101. source: "./media/characters/dascalti/fed.svg",
  34102. extra: 1419/820,
  34103. bottom: 95/1514
  34104. }
  34105. },
  34106. },
  34107. [
  34108. {
  34109. name: "Normal",
  34110. height: math.unit(3.5, "meters"),
  34111. default: true
  34112. },
  34113. ]
  34114. ))
  34115. characterMakers.push(() => makeCharacter(
  34116. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34117. {
  34118. front: {
  34119. height: math.unit(3 + 5/12, "feet"),
  34120. name: "Front",
  34121. image: {
  34122. source: "./media/characters/mauve/front.svg",
  34123. extra: 1126/1033,
  34124. bottom: 65/1191
  34125. }
  34126. },
  34127. side: {
  34128. height: math.unit(3 + 5/12, "feet"),
  34129. name: "Side",
  34130. image: {
  34131. source: "./media/characters/mauve/side.svg",
  34132. extra: 1089/1001,
  34133. bottom: 29/1118
  34134. }
  34135. },
  34136. back: {
  34137. height: math.unit(3 + 5/12, "feet"),
  34138. name: "Back",
  34139. image: {
  34140. source: "./media/characters/mauve/back.svg",
  34141. extra: 1173/1053,
  34142. bottom: 109/1282
  34143. }
  34144. },
  34145. },
  34146. [
  34147. {
  34148. name: "Normal",
  34149. height: math.unit(3 + 5/12, "feet"),
  34150. default: true
  34151. },
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34156. {
  34157. front: {
  34158. height: math.unit(6 + 3/12, "feet"),
  34159. weight: math.unit(430, "lb"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/carlos/front.svg",
  34163. extra: 1964/1913,
  34164. bottom: 70/2034
  34165. }
  34166. },
  34167. },
  34168. [
  34169. {
  34170. name: "Normal",
  34171. height: math.unit(6 + 3/12, "feet"),
  34172. default: true
  34173. },
  34174. ]
  34175. ))
  34176. characterMakers.push(() => makeCharacter(
  34177. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34178. {
  34179. back: {
  34180. height: math.unit(5 + 10/12, "feet"),
  34181. weight: math.unit(200, "lb"),
  34182. name: "Back",
  34183. image: {
  34184. source: "./media/characters/jax/back.svg",
  34185. extra: 764/739,
  34186. bottom: 25/789
  34187. }
  34188. },
  34189. },
  34190. [
  34191. {
  34192. name: "Normal",
  34193. height: math.unit(5 + 10/12, "feet"),
  34194. default: true
  34195. },
  34196. ]
  34197. ))
  34198. characterMakers.push(() => makeCharacter(
  34199. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34200. {
  34201. front: {
  34202. height: math.unit(8, "feet"),
  34203. weight: math.unit(250, "lb"),
  34204. name: "Front",
  34205. image: {
  34206. source: "./media/characters/eikthynir/front.svg",
  34207. extra: 1332/1166,
  34208. bottom: 82/1414
  34209. }
  34210. },
  34211. back: {
  34212. height: math.unit(8, "feet"),
  34213. weight: math.unit(250, "lb"),
  34214. name: "Back",
  34215. image: {
  34216. source: "./media/characters/eikthynir/back.svg",
  34217. extra: 1342/1190,
  34218. bottom: 19/1361
  34219. }
  34220. },
  34221. dick: {
  34222. height: math.unit(2.35, "feet"),
  34223. name: "Dick",
  34224. image: {
  34225. source: "./media/characters/eikthynir/dick.svg"
  34226. }
  34227. },
  34228. },
  34229. [
  34230. {
  34231. name: "Normal",
  34232. height: math.unit(8, "feet"),
  34233. default: true
  34234. },
  34235. ]
  34236. ))
  34237. characterMakers.push(() => makeCharacter(
  34238. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34239. {
  34240. front: {
  34241. height: math.unit(99, "meters"),
  34242. weight: math.unit(13000, "tons"),
  34243. name: "Front",
  34244. image: {
  34245. source: "./media/characters/zlmos/front.svg",
  34246. extra: 2202/1992,
  34247. bottom: 315/2517
  34248. }
  34249. },
  34250. },
  34251. [
  34252. {
  34253. name: "Macro",
  34254. height: math.unit(99, "meters"),
  34255. default: true
  34256. },
  34257. ]
  34258. ))
  34259. characterMakers.push(() => makeCharacter(
  34260. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34261. {
  34262. front: {
  34263. height: math.unit(6 + 5/12, "feet"),
  34264. name: "Front",
  34265. image: {
  34266. source: "./media/characters/purri/front.svg",
  34267. extra: 1698/1610,
  34268. bottom: 32/1730
  34269. }
  34270. },
  34271. frontAlt: {
  34272. height: math.unit(6 + 5/12, "feet"),
  34273. name: "Front (Alt)",
  34274. image: {
  34275. source: "./media/characters/purri/front-alt.svg",
  34276. extra: 450/420,
  34277. bottom: 26/476
  34278. }
  34279. },
  34280. boots: {
  34281. height: math.unit(5.5, "feet"),
  34282. name: "Boots",
  34283. image: {
  34284. source: "./media/characters/purri/boots.svg",
  34285. extra: 905/853,
  34286. bottom: 18/923
  34287. },
  34288. extraAttributes: {
  34289. "shoeSize": {
  34290. name: "Shoe Size",
  34291. power: 1,
  34292. type: "length",
  34293. base: math.unit(12, "ShoeSizeMensUS")
  34294. },
  34295. "platformHeight": {
  34296. name: "Platform Height",
  34297. power: 1,
  34298. type: "length",
  34299. base: math.unit(2, "inches")
  34300. },
  34301. }
  34302. },
  34303. lying: {
  34304. height: math.unit(2, "feet"),
  34305. name: "Lying",
  34306. image: {
  34307. source: "./media/characters/purri/lying.svg",
  34308. extra: 940/843,
  34309. bottom: 146/1086
  34310. }
  34311. },
  34312. devious: {
  34313. height: math.unit(1.77, "feet"),
  34314. name: "Devious",
  34315. image: {
  34316. source: "./media/characters/purri/devious.svg",
  34317. extra: 1440/1155,
  34318. bottom: 147/1587
  34319. }
  34320. },
  34321. bean: {
  34322. height: math.unit(1.94, "feet"),
  34323. name: "Bean",
  34324. image: {
  34325. source: "./media/characters/purri/bean.svg"
  34326. }
  34327. },
  34328. },
  34329. [
  34330. {
  34331. name: "Micro",
  34332. height: math.unit(1, "mm")
  34333. },
  34334. {
  34335. name: "Normal",
  34336. height: math.unit(6 + 5/12, "feet"),
  34337. default: true
  34338. },
  34339. {
  34340. name: "Macro :3c",
  34341. height: math.unit(2, "miles")
  34342. },
  34343. ]
  34344. ))
  34345. characterMakers.push(() => makeCharacter(
  34346. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34347. {
  34348. front: {
  34349. height: math.unit(6 + 2/12, "feet"),
  34350. weight: math.unit(250, "lb"),
  34351. name: "Front",
  34352. image: {
  34353. source: "./media/characters/moonlight/front.svg",
  34354. extra: 1044/908,
  34355. bottom: 56/1100
  34356. }
  34357. },
  34358. feral: {
  34359. height: math.unit(3 + 1/12, "feet"),
  34360. weight: math.unit(50, "kg"),
  34361. name: "Feral",
  34362. image: {
  34363. source: "./media/characters/moonlight/feral.svg",
  34364. extra: 3705/2791,
  34365. bottom: 145/3850
  34366. }
  34367. },
  34368. paw: {
  34369. height: math.unit(1, "feet"),
  34370. name: "Paw",
  34371. image: {
  34372. source: "./media/characters/moonlight/paw.svg"
  34373. }
  34374. },
  34375. paws: {
  34376. height: math.unit(0.98, "feet"),
  34377. name: "Paws",
  34378. image: {
  34379. source: "./media/characters/moonlight/paws.svg",
  34380. extra: 939/939,
  34381. bottom: 50/989
  34382. }
  34383. },
  34384. mouth: {
  34385. height: math.unit(0.48, "feet"),
  34386. name: "Mouth",
  34387. image: {
  34388. source: "./media/characters/moonlight/mouth.svg"
  34389. }
  34390. },
  34391. dick: {
  34392. height: math.unit(1.46, "feet"),
  34393. name: "Dick",
  34394. image: {
  34395. source: "./media/characters/moonlight/dick.svg"
  34396. }
  34397. },
  34398. },
  34399. [
  34400. {
  34401. name: "Normal",
  34402. height: math.unit(6 + 2/12, "feet"),
  34403. default: true
  34404. },
  34405. {
  34406. name: "Macro",
  34407. height: math.unit(300, "feet")
  34408. },
  34409. {
  34410. name: "Macro+",
  34411. height: math.unit(1, "mile")
  34412. },
  34413. {
  34414. name: "Mt. Moon",
  34415. height: math.unit(5, "miles")
  34416. },
  34417. {
  34418. name: "Megamacro",
  34419. height: math.unit(15, "miles")
  34420. },
  34421. ]
  34422. ))
  34423. characterMakers.push(() => makeCharacter(
  34424. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34425. {
  34426. back: {
  34427. height: math.unit(6, "feet"),
  34428. weight: math.unit(150, "lb"),
  34429. name: "Back",
  34430. image: {
  34431. source: "./media/characters/sylen/back.svg",
  34432. extra: 1335/1273,
  34433. bottom: 107/1442
  34434. }
  34435. },
  34436. },
  34437. [
  34438. {
  34439. name: "Normal",
  34440. height: math.unit(5 + 5/12, "feet")
  34441. },
  34442. {
  34443. name: "Megamacro",
  34444. height: math.unit(3, "miles"),
  34445. default: true
  34446. },
  34447. ]
  34448. ))
  34449. characterMakers.push(() => makeCharacter(
  34450. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34451. {
  34452. front: {
  34453. height: math.unit(6, "feet"),
  34454. weight: math.unit(190, "lb"),
  34455. name: "Front",
  34456. image: {
  34457. source: "./media/characters/huttser/front.svg",
  34458. extra: 1152/1058,
  34459. bottom: 23/1175
  34460. }
  34461. },
  34462. side: {
  34463. height: math.unit(6, "feet"),
  34464. weight: math.unit(190, "lb"),
  34465. name: "Side",
  34466. image: {
  34467. source: "./media/characters/huttser/side.svg",
  34468. extra: 1174/1065,
  34469. bottom: 18/1192
  34470. }
  34471. },
  34472. back: {
  34473. height: math.unit(6, "feet"),
  34474. weight: math.unit(190, "lb"),
  34475. name: "Back",
  34476. image: {
  34477. source: "./media/characters/huttser/back.svg",
  34478. extra: 1158/1056,
  34479. bottom: 12/1170
  34480. }
  34481. },
  34482. },
  34483. [
  34484. ]
  34485. ))
  34486. characterMakers.push(() => makeCharacter(
  34487. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34488. {
  34489. side: {
  34490. height: math.unit(12 + 9/12, "feet"),
  34491. weight: math.unit(15000, "lb"),
  34492. name: "Side",
  34493. image: {
  34494. source: "./media/characters/faan/side.svg",
  34495. extra: 2747/2697,
  34496. bottom: 0/2747
  34497. }
  34498. },
  34499. front: {
  34500. height: math.unit(12 + 9/12, "feet"),
  34501. weight: math.unit(15000, "lb"),
  34502. name: "Front",
  34503. image: {
  34504. source: "./media/characters/faan/front.svg",
  34505. extra: 607/571,
  34506. bottom: 24/631
  34507. }
  34508. },
  34509. head: {
  34510. height: math.unit(2.85, "feet"),
  34511. name: "Head",
  34512. image: {
  34513. source: "./media/characters/faan/head.svg"
  34514. }
  34515. },
  34516. headAlt: {
  34517. height: math.unit(3.13, "feet"),
  34518. name: "Head-alt",
  34519. image: {
  34520. source: "./media/characters/faan/head-alt.svg"
  34521. }
  34522. },
  34523. },
  34524. [
  34525. {
  34526. name: "Normal",
  34527. height: math.unit(12 + 9/12, "feet"),
  34528. default: true
  34529. },
  34530. ]
  34531. ))
  34532. characterMakers.push(() => makeCharacter(
  34533. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34534. {
  34535. front: {
  34536. height: math.unit(6, "feet"),
  34537. weight: math.unit(300, "lb"),
  34538. name: "Front",
  34539. image: {
  34540. source: "./media/characters/tanio/front.svg",
  34541. extra: 711/673,
  34542. bottom: 25/736
  34543. }
  34544. },
  34545. },
  34546. [
  34547. {
  34548. name: "Normal",
  34549. height: math.unit(6, "feet"),
  34550. default: true
  34551. },
  34552. ]
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34556. {
  34557. front: {
  34558. height: math.unit(3, "inches"),
  34559. name: "Front",
  34560. image: {
  34561. source: "./media/characters/noboru/front.svg",
  34562. extra: 1039/932,
  34563. bottom: 18/1057
  34564. }
  34565. },
  34566. },
  34567. [
  34568. {
  34569. name: "Micro",
  34570. height: math.unit(3, "inches"),
  34571. default: true
  34572. },
  34573. ]
  34574. ))
  34575. characterMakers.push(() => makeCharacter(
  34576. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34577. {
  34578. front: {
  34579. height: math.unit(1.85, "meters"),
  34580. weight: math.unit(80, "kg"),
  34581. name: "Front",
  34582. image: {
  34583. source: "./media/characters/daniel-barrett/front.svg",
  34584. extra: 355/337,
  34585. bottom: 9/364
  34586. }
  34587. },
  34588. },
  34589. [
  34590. {
  34591. name: "Pico",
  34592. height: math.unit(0.0433, "mm")
  34593. },
  34594. {
  34595. name: "Nano",
  34596. height: math.unit(1.5, "mm")
  34597. },
  34598. {
  34599. name: "Micro",
  34600. height: math.unit(5.3, "cm"),
  34601. default: true
  34602. },
  34603. {
  34604. name: "Normal",
  34605. height: math.unit(1.85, "meters")
  34606. },
  34607. {
  34608. name: "Macro",
  34609. height: math.unit(64.7, "meters")
  34610. },
  34611. {
  34612. name: "Megamacro",
  34613. height: math.unit(2.26, "km")
  34614. },
  34615. {
  34616. name: "Gigamacro",
  34617. height: math.unit(79, "km")
  34618. },
  34619. {
  34620. name: "Teramacro",
  34621. height: math.unit(2765, "km")
  34622. },
  34623. {
  34624. name: "Petamacro",
  34625. height: math.unit(96678, "km")
  34626. },
  34627. ]
  34628. ))
  34629. characterMakers.push(() => makeCharacter(
  34630. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34631. {
  34632. front: {
  34633. height: math.unit(30, "meters"),
  34634. weight: math.unit(400, "tons"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/zeel/front.svg",
  34638. extra: 2599/2599,
  34639. bottom: 226/2825
  34640. }
  34641. },
  34642. },
  34643. [
  34644. {
  34645. name: "Macro",
  34646. height: math.unit(30, "meters"),
  34647. default: true
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34653. {
  34654. front: {
  34655. height: math.unit(6 + 7/12, "feet"),
  34656. weight: math.unit(210, "lb"),
  34657. name: "Front",
  34658. image: {
  34659. source: "./media/characters/tarn/front.svg",
  34660. extra: 3517/3220,
  34661. bottom: 91/3608
  34662. }
  34663. },
  34664. back: {
  34665. height: math.unit(6 + 7/12, "feet"),
  34666. weight: math.unit(210, "lb"),
  34667. name: "Back",
  34668. image: {
  34669. source: "./media/characters/tarn/back.svg",
  34670. extra: 3566/3241,
  34671. bottom: 34/3600
  34672. }
  34673. },
  34674. dick: {
  34675. height: math.unit(1.65, "feet"),
  34676. name: "Dick",
  34677. image: {
  34678. source: "./media/characters/tarn/dick.svg"
  34679. }
  34680. },
  34681. paw: {
  34682. height: math.unit(1.80, "feet"),
  34683. name: "Paw",
  34684. image: {
  34685. source: "./media/characters/tarn/paw.svg"
  34686. }
  34687. },
  34688. tongue: {
  34689. height: math.unit(0.97, "feet"),
  34690. name: "Tongue",
  34691. image: {
  34692. source: "./media/characters/tarn/tongue.svg"
  34693. }
  34694. },
  34695. },
  34696. [
  34697. {
  34698. name: "Micro",
  34699. height: math.unit(4, "inches")
  34700. },
  34701. {
  34702. name: "Normal",
  34703. height: math.unit(6 + 7/12, "feet"),
  34704. default: true
  34705. },
  34706. {
  34707. name: "Macro",
  34708. height: math.unit(300, "feet")
  34709. },
  34710. ]
  34711. ))
  34712. characterMakers.push(() => makeCharacter(
  34713. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34714. {
  34715. front: {
  34716. height: math.unit(5 + 7/12, "feet"),
  34717. weight: math.unit(80, "kg"),
  34718. name: "Front",
  34719. image: {
  34720. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34721. extra: 3023/2865,
  34722. bottom: 33/3056
  34723. }
  34724. },
  34725. back: {
  34726. height: math.unit(5 + 7/12, "feet"),
  34727. weight: math.unit(80, "kg"),
  34728. name: "Back",
  34729. image: {
  34730. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34731. extra: 3020/2886,
  34732. bottom: 30/3050
  34733. }
  34734. },
  34735. dick: {
  34736. height: math.unit(0.98, "feet"),
  34737. name: "Dick",
  34738. image: {
  34739. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34740. }
  34741. },
  34742. anatomy: {
  34743. height: math.unit(2.86, "feet"),
  34744. name: "Anatomy",
  34745. image: {
  34746. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34747. }
  34748. },
  34749. },
  34750. [
  34751. {
  34752. name: "Really Small",
  34753. height: math.unit(2, "inches")
  34754. },
  34755. {
  34756. name: "Micro",
  34757. height: math.unit(5.583, "inches")
  34758. },
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(5 + 7/12, "feet"),
  34762. default: true
  34763. },
  34764. {
  34765. name: "Macro",
  34766. height: math.unit(67, "feet")
  34767. },
  34768. {
  34769. name: "Megamacro",
  34770. height: math.unit(134, "feet")
  34771. },
  34772. ]
  34773. ))
  34774. characterMakers.push(() => makeCharacter(
  34775. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34776. {
  34777. front: {
  34778. height: math.unit(9, "feet"),
  34779. weight: math.unit(120, "lb"),
  34780. name: "Front",
  34781. image: {
  34782. source: "./media/characters/sally/front.svg",
  34783. extra: 1506/1349,
  34784. bottom: 66/1572
  34785. }
  34786. },
  34787. },
  34788. [
  34789. {
  34790. name: "Normal",
  34791. height: math.unit(9, "feet"),
  34792. default: true
  34793. },
  34794. ]
  34795. ))
  34796. characterMakers.push(() => makeCharacter(
  34797. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34798. {
  34799. front: {
  34800. height: math.unit(8, "feet"),
  34801. weight: math.unit(900, "lb"),
  34802. name: "Front",
  34803. image: {
  34804. source: "./media/characters/owen/front.svg",
  34805. extra: 1761/1657,
  34806. bottom: 74/1835
  34807. }
  34808. },
  34809. side: {
  34810. height: math.unit(8, "feet"),
  34811. weight: math.unit(900, "lb"),
  34812. name: "Side",
  34813. image: {
  34814. source: "./media/characters/owen/side.svg",
  34815. extra: 1797/1734,
  34816. bottom: 30/1827
  34817. }
  34818. },
  34819. back: {
  34820. height: math.unit(8, "feet"),
  34821. weight: math.unit(900, "lb"),
  34822. name: "Back",
  34823. image: {
  34824. source: "./media/characters/owen/back.svg",
  34825. extra: 1796/1706,
  34826. bottom: 59/1855
  34827. }
  34828. },
  34829. maw: {
  34830. height: math.unit(1.76, "feet"),
  34831. name: "Maw",
  34832. image: {
  34833. source: "./media/characters/owen/maw.svg"
  34834. }
  34835. },
  34836. },
  34837. [
  34838. {
  34839. name: "Normal",
  34840. height: math.unit(8, "feet"),
  34841. default: true
  34842. },
  34843. ]
  34844. ))
  34845. characterMakers.push(() => makeCharacter(
  34846. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34847. {
  34848. front: {
  34849. height: math.unit(4, "feet"),
  34850. weight: math.unit(400, "lb"),
  34851. name: "Front",
  34852. image: {
  34853. source: "./media/characters/ryth/front.svg",
  34854. extra: 1920/1748,
  34855. bottom: 42/1962
  34856. }
  34857. },
  34858. back: {
  34859. height: math.unit(4, "feet"),
  34860. weight: math.unit(400, "lb"),
  34861. name: "Back",
  34862. image: {
  34863. source: "./media/characters/ryth/back.svg",
  34864. extra: 1897/1690,
  34865. bottom: 89/1986
  34866. }
  34867. },
  34868. mouth: {
  34869. height: math.unit(1.39, "feet"),
  34870. name: "Mouth",
  34871. image: {
  34872. source: "./media/characters/ryth/mouth.svg"
  34873. }
  34874. },
  34875. tailmaw: {
  34876. height: math.unit(1.23, "feet"),
  34877. name: "Tailmaw",
  34878. image: {
  34879. source: "./media/characters/ryth/tailmaw.svg"
  34880. }
  34881. },
  34882. goia: {
  34883. height: math.unit(4, "meters"),
  34884. weight: math.unit(10800, "lb"),
  34885. name: "Goia",
  34886. image: {
  34887. source: "./media/characters/ryth/goia.svg",
  34888. extra: 745/640,
  34889. bottom: 107/852
  34890. }
  34891. },
  34892. goiaFront: {
  34893. height: math.unit(4, "meters"),
  34894. weight: math.unit(10800, "lb"),
  34895. name: "Goia (Front)",
  34896. image: {
  34897. source: "./media/characters/ryth/goia-front.svg",
  34898. extra: 750/586,
  34899. bottom: 114/864
  34900. }
  34901. },
  34902. goiaMaw: {
  34903. height: math.unit(5.55, "feet"),
  34904. name: "Goia Maw",
  34905. image: {
  34906. source: "./media/characters/ryth/goia-maw.svg"
  34907. }
  34908. },
  34909. goiaForepaw: {
  34910. height: math.unit(3.5, "feet"),
  34911. name: "Goia Forepaw",
  34912. image: {
  34913. source: "./media/characters/ryth/goia-forepaw.svg"
  34914. }
  34915. },
  34916. goiaHindpaw: {
  34917. height: math.unit(5.55, "feet"),
  34918. name: "Goia Hindpaw",
  34919. image: {
  34920. source: "./media/characters/ryth/goia-hindpaw.svg"
  34921. }
  34922. },
  34923. },
  34924. [
  34925. {
  34926. name: "Normal",
  34927. height: math.unit(4, "feet"),
  34928. default: true
  34929. },
  34930. ]
  34931. ))
  34932. characterMakers.push(() => makeCharacter(
  34933. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34934. {
  34935. front: {
  34936. height: math.unit(7, "feet"),
  34937. weight: math.unit(180, "lb"),
  34938. name: "Front",
  34939. image: {
  34940. source: "./media/characters/necrolance/front.svg",
  34941. extra: 1062/947,
  34942. bottom: 41/1103
  34943. }
  34944. },
  34945. back: {
  34946. height: math.unit(7, "feet"),
  34947. weight: math.unit(180, "lb"),
  34948. name: "Back",
  34949. image: {
  34950. source: "./media/characters/necrolance/back.svg",
  34951. extra: 1045/984,
  34952. bottom: 14/1059
  34953. }
  34954. },
  34955. wing: {
  34956. height: math.unit(2.67, "feet"),
  34957. name: "Wing",
  34958. image: {
  34959. source: "./media/characters/necrolance/wing.svg"
  34960. }
  34961. },
  34962. },
  34963. [
  34964. {
  34965. name: "Normal",
  34966. height: math.unit(7, "feet"),
  34967. default: true
  34968. },
  34969. ]
  34970. ))
  34971. characterMakers.push(() => makeCharacter(
  34972. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34973. {
  34974. front: {
  34975. height: math.unit(76, "meters"),
  34976. weight: math.unit(30000, "tons"),
  34977. name: "Front",
  34978. image: {
  34979. source: "./media/characters/tyler/front.svg",
  34980. extra: 1640/1640,
  34981. bottom: 114/1754
  34982. }
  34983. },
  34984. },
  34985. [
  34986. {
  34987. name: "Macro",
  34988. height: math.unit(76, "meters"),
  34989. default: true
  34990. },
  34991. ]
  34992. ))
  34993. characterMakers.push(() => makeCharacter(
  34994. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34995. {
  34996. front: {
  34997. height: math.unit(4 + 11/12, "feet"),
  34998. weight: math.unit(132, "lb"),
  34999. name: "Front",
  35000. image: {
  35001. source: "./media/characters/icey/front.svg",
  35002. extra: 2750/2550,
  35003. bottom: 33/2783
  35004. }
  35005. },
  35006. back: {
  35007. height: math.unit(4 + 11/12, "feet"),
  35008. weight: math.unit(132, "lb"),
  35009. name: "Back",
  35010. image: {
  35011. source: "./media/characters/icey/back.svg",
  35012. extra: 2624/2481,
  35013. bottom: 35/2659
  35014. }
  35015. },
  35016. },
  35017. [
  35018. {
  35019. name: "Normal",
  35020. height: math.unit(4 + 11/12, "feet"),
  35021. default: true
  35022. },
  35023. ]
  35024. ))
  35025. characterMakers.push(() => makeCharacter(
  35026. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35027. {
  35028. front: {
  35029. height: math.unit(100, "feet"),
  35030. weight: math.unit(0, "lb"),
  35031. name: "Front",
  35032. image: {
  35033. source: "./media/characters/smile/front.svg",
  35034. extra: 2983/2912,
  35035. bottom: 162/3145
  35036. }
  35037. },
  35038. back: {
  35039. height: math.unit(100, "feet"),
  35040. weight: math.unit(0, "lb"),
  35041. name: "Back",
  35042. image: {
  35043. source: "./media/characters/smile/back.svg",
  35044. extra: 3143/3031,
  35045. bottom: 91/3234
  35046. }
  35047. },
  35048. head: {
  35049. height: math.unit(26.3, "feet"),
  35050. weight: math.unit(0, "lb"),
  35051. name: "Head",
  35052. image: {
  35053. source: "./media/characters/smile/head.svg"
  35054. }
  35055. },
  35056. collar: {
  35057. height: math.unit(5.3, "feet"),
  35058. weight: math.unit(0, "lb"),
  35059. name: "Collar",
  35060. image: {
  35061. source: "./media/characters/smile/collar.svg"
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Macro",
  35068. height: math.unit(100, "feet"),
  35069. default: true
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35075. {
  35076. dragon: {
  35077. height: math.unit(26, "feet"),
  35078. weight: math.unit(36, "tons"),
  35079. name: "Dragon",
  35080. image: {
  35081. source: "./media/characters/arimphae/dragon.svg",
  35082. extra: 1574/983,
  35083. bottom: 357/1931
  35084. }
  35085. },
  35086. drake: {
  35087. height: math.unit(9, "feet"),
  35088. weight: math.unit(1.5, "tons"),
  35089. name: "Drake",
  35090. image: {
  35091. source: "./media/characters/arimphae/drake.svg",
  35092. extra: 1120/925,
  35093. bottom: 435/1555
  35094. }
  35095. },
  35096. },
  35097. [
  35098. {
  35099. name: "Small",
  35100. height: math.unit(26*5/9, "feet")
  35101. },
  35102. {
  35103. name: "Normal",
  35104. height: math.unit(26, "feet"),
  35105. default: true
  35106. },
  35107. ]
  35108. ))
  35109. characterMakers.push(() => makeCharacter(
  35110. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35111. {
  35112. front: {
  35113. height: math.unit(8 + 9/12, "feet"),
  35114. name: "Front",
  35115. image: {
  35116. source: "./media/characters/xander/front.svg",
  35117. extra: 1237/974,
  35118. bottom: 94/1331
  35119. }
  35120. },
  35121. },
  35122. [
  35123. {
  35124. name: "Normal",
  35125. height: math.unit(8 + 9/12, "feet"),
  35126. default: true
  35127. },
  35128. {
  35129. name: "Gaze Grabber",
  35130. height: math.unit(13 + 8/12, "feet")
  35131. },
  35132. {
  35133. name: "Jaw Dropper",
  35134. height: math.unit(27, "feet")
  35135. },
  35136. {
  35137. name: "Show Stopper",
  35138. height: math.unit(136, "feet")
  35139. },
  35140. {
  35141. name: "Superstar",
  35142. height: math.unit(1.9e6, "miles")
  35143. },
  35144. ]
  35145. ))
  35146. characterMakers.push(() => makeCharacter(
  35147. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35148. {
  35149. side: {
  35150. height: math.unit(2100, "feet"),
  35151. name: "Side",
  35152. image: {
  35153. source: "./media/characters/osiris/side.svg",
  35154. extra: 1105/939,
  35155. bottom: 167/1272
  35156. }
  35157. },
  35158. },
  35159. [
  35160. {
  35161. name: "Macro",
  35162. height: math.unit(2100, "feet"),
  35163. default: true
  35164. },
  35165. ]
  35166. ))
  35167. characterMakers.push(() => makeCharacter(
  35168. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35169. {
  35170. front: {
  35171. height: math.unit(6 + 8/12, "feet"),
  35172. weight: math.unit(225, "lb"),
  35173. name: "Front",
  35174. image: {
  35175. source: "./media/characters/rhys-londe/front.svg",
  35176. extra: 2258/2141,
  35177. bottom: 188/2446
  35178. }
  35179. },
  35180. back: {
  35181. height: math.unit(6 + 8/12, "feet"),
  35182. weight: math.unit(225, "lb"),
  35183. name: "Back",
  35184. image: {
  35185. source: "./media/characters/rhys-londe/back.svg",
  35186. extra: 2237/2137,
  35187. bottom: 63/2300
  35188. }
  35189. },
  35190. frontNsfw: {
  35191. height: math.unit(6 + 8/12, "feet"),
  35192. weight: math.unit(225, "lb"),
  35193. name: "Front (NSFW)",
  35194. image: {
  35195. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35196. extra: 2258/2141,
  35197. bottom: 188/2446
  35198. }
  35199. },
  35200. backNsfw: {
  35201. height: math.unit(6 + 8/12, "feet"),
  35202. weight: math.unit(225, "lb"),
  35203. name: "Back (NSFW)",
  35204. image: {
  35205. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35206. extra: 2237/2137,
  35207. bottom: 63/2300
  35208. }
  35209. },
  35210. dick: {
  35211. height: math.unit(30, "inches"),
  35212. name: "Dick",
  35213. image: {
  35214. source: "./media/characters/rhys-londe/dick.svg"
  35215. }
  35216. },
  35217. maw: {
  35218. height: math.unit(1.6, "feet"),
  35219. name: "Maw",
  35220. image: {
  35221. source: "./media/characters/rhys-londe/maw.svg"
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(6 + 8/12, "feet"),
  35229. default: true
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(3 + 10/12, "feet"),
  35238. weight: math.unit(90, "lb"),
  35239. name: "Front",
  35240. image: {
  35241. source: "./media/characters/taivas-ensim/front.svg",
  35242. extra: 1327/1216,
  35243. bottom: 96/1423
  35244. }
  35245. },
  35246. back: {
  35247. height: math.unit(3 + 10/12, "feet"),
  35248. weight: math.unit(90, "lb"),
  35249. name: "Back",
  35250. image: {
  35251. source: "./media/characters/taivas-ensim/back.svg",
  35252. extra: 1355/1247,
  35253. bottom: 11/1366
  35254. }
  35255. },
  35256. frontNsfw: {
  35257. height: math.unit(3 + 10/12, "feet"),
  35258. weight: math.unit(90, "lb"),
  35259. name: "Front (NSFW)",
  35260. image: {
  35261. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35262. extra: 1327/1216,
  35263. bottom: 96/1423
  35264. }
  35265. },
  35266. backNsfw: {
  35267. height: math.unit(3 + 10/12, "feet"),
  35268. weight: math.unit(90, "lb"),
  35269. name: "Back (NSFW)",
  35270. image: {
  35271. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35272. extra: 1355/1247,
  35273. bottom: 11/1366
  35274. }
  35275. },
  35276. },
  35277. [
  35278. {
  35279. name: "Normal",
  35280. height: math.unit(3 + 10/12, "feet"),
  35281. default: true
  35282. },
  35283. ]
  35284. ))
  35285. characterMakers.push(() => makeCharacter(
  35286. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35287. {
  35288. front: {
  35289. height: math.unit(9 + 6/12, "feet"),
  35290. weight: math.unit(940, "lb"),
  35291. name: "Front",
  35292. image: {
  35293. source: "./media/characters/byliss/front.svg",
  35294. extra: 1327/1290,
  35295. bottom: 82/1409
  35296. }
  35297. },
  35298. back: {
  35299. height: math.unit(9 + 6/12, "feet"),
  35300. weight: math.unit(940, "lb"),
  35301. name: "Back",
  35302. image: {
  35303. source: "./media/characters/byliss/back.svg",
  35304. extra: 1376/1349,
  35305. bottom: 9/1385
  35306. }
  35307. },
  35308. frontNsfw: {
  35309. height: math.unit(9 + 6/12, "feet"),
  35310. weight: math.unit(940, "lb"),
  35311. name: "Front (NSFW)",
  35312. image: {
  35313. source: "./media/characters/byliss/front-nsfw.svg",
  35314. extra: 1327/1290,
  35315. bottom: 82/1409
  35316. }
  35317. },
  35318. backNsfw: {
  35319. height: math.unit(9 + 6/12, "feet"),
  35320. weight: math.unit(940, "lb"),
  35321. name: "Back (NSFW)",
  35322. image: {
  35323. source: "./media/characters/byliss/back-nsfw.svg",
  35324. extra: 1376/1349,
  35325. bottom: 9/1385
  35326. }
  35327. },
  35328. },
  35329. [
  35330. {
  35331. name: "Normal",
  35332. height: math.unit(9 + 6/12, "feet"),
  35333. default: true
  35334. },
  35335. ]
  35336. ))
  35337. characterMakers.push(() => makeCharacter(
  35338. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35339. {
  35340. front: {
  35341. height: math.unit(5 + 2/12, "feet"),
  35342. weight: math.unit(200, "lb"),
  35343. name: "Front",
  35344. image: {
  35345. source: "./media/characters/noraly/front.svg",
  35346. extra: 4985/4773,
  35347. bottom: 150/5135
  35348. }
  35349. },
  35350. full: {
  35351. height: math.unit(5 + 2/12, "feet"),
  35352. weight: math.unit(164, "lb"),
  35353. name: "Full",
  35354. image: {
  35355. source: "./media/characters/noraly/full.svg",
  35356. extra: 1114/1059,
  35357. bottom: 35/1149
  35358. }
  35359. },
  35360. fuller: {
  35361. height: math.unit(5 + 2/12, "feet"),
  35362. weight: math.unit(230, "lb"),
  35363. name: "Fuller",
  35364. image: {
  35365. source: "./media/characters/noraly/fuller.svg",
  35366. extra: 1114/1059,
  35367. bottom: 35/1149
  35368. }
  35369. },
  35370. fullest: {
  35371. height: math.unit(5 + 2/12, "feet"),
  35372. weight: math.unit(300, "lb"),
  35373. name: "Fullest",
  35374. image: {
  35375. source: "./media/characters/noraly/fullest.svg",
  35376. extra: 1114/1059,
  35377. bottom: 35/1149
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Normal",
  35384. height: math.unit(5 + 2/12, "feet"),
  35385. default: true
  35386. },
  35387. ]
  35388. ))
  35389. characterMakers.push(() => makeCharacter(
  35390. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35391. {
  35392. front: {
  35393. height: math.unit(5 + 2/12, "feet"),
  35394. weight: math.unit(210, "lb"),
  35395. name: "Front",
  35396. image: {
  35397. source: "./media/characters/pera/front.svg",
  35398. extra: 1560/1531,
  35399. bottom: 165/1725
  35400. }
  35401. },
  35402. back: {
  35403. height: math.unit(5 + 2/12, "feet"),
  35404. weight: math.unit(210, "lb"),
  35405. name: "Back",
  35406. image: {
  35407. source: "./media/characters/pera/back.svg",
  35408. extra: 1523/1493,
  35409. bottom: 152/1675
  35410. }
  35411. },
  35412. dick: {
  35413. height: math.unit(2.4, "feet"),
  35414. name: "Dick",
  35415. image: {
  35416. source: "./media/characters/pera/dick.svg"
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(5 + 2/12, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(12, "feet"),
  35433. weight: math.unit(3200, "lb"),
  35434. name: "Front",
  35435. image: {
  35436. source: "./media/characters/julian/front.svg",
  35437. extra: 2962/2701,
  35438. bottom: 184/3146
  35439. }
  35440. },
  35441. maw: {
  35442. height: math.unit(5.35, "feet"),
  35443. name: "Maw",
  35444. image: {
  35445. source: "./media/characters/julian/maw.svg"
  35446. }
  35447. },
  35448. paw: {
  35449. height: math.unit(3.07, "feet"),
  35450. name: "Paw",
  35451. image: {
  35452. source: "./media/characters/julian/paw.svg"
  35453. }
  35454. },
  35455. },
  35456. [
  35457. {
  35458. name: "Default",
  35459. height: math.unit(12, "feet"),
  35460. default: true
  35461. },
  35462. {
  35463. name: "Big",
  35464. height: math.unit(50, "feet")
  35465. },
  35466. {
  35467. name: "Really Big",
  35468. height: math.unit(1, "mile")
  35469. },
  35470. {
  35471. name: "Extremely Big",
  35472. height: math.unit(100, "miles")
  35473. },
  35474. {
  35475. name: "Planet Hugger",
  35476. height: math.unit(200, "megameters")
  35477. },
  35478. {
  35479. name: "Unreasonably Big",
  35480. height: math.unit(1e300, "meters")
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35486. {
  35487. solgooleo: {
  35488. height: math.unit(4, "meters"),
  35489. weight: math.unit(6000*1.5, "kg"),
  35490. volume: math.unit(6000, "liters"),
  35491. name: "Solgooleo",
  35492. image: {
  35493. source: "./media/characters/pi/solgooleo.svg",
  35494. extra: 388/331,
  35495. bottom: 29/417
  35496. }
  35497. },
  35498. },
  35499. [
  35500. {
  35501. name: "Normal",
  35502. height: math.unit(4, "meters"),
  35503. default: true
  35504. },
  35505. ]
  35506. ))
  35507. characterMakers.push(() => makeCharacter(
  35508. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35509. {
  35510. front: {
  35511. height: math.unit(8, "feet"),
  35512. weight: math.unit(4, "tons"),
  35513. name: "Front",
  35514. image: {
  35515. source: "./media/characters/shaun/front.svg",
  35516. extra: 503/495,
  35517. bottom: 20/523
  35518. }
  35519. },
  35520. back: {
  35521. height: math.unit(8, "feet"),
  35522. weight: math.unit(4, "tons"),
  35523. name: "Back",
  35524. image: {
  35525. source: "./media/characters/shaun/back.svg",
  35526. extra: 487/480,
  35527. bottom: 20/507
  35528. }
  35529. },
  35530. },
  35531. [
  35532. {
  35533. name: "Lorg",
  35534. height: math.unit(8, "feet"),
  35535. default: true
  35536. },
  35537. ]
  35538. ))
  35539. characterMakers.push(() => makeCharacter(
  35540. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35541. {
  35542. frontAnthro: {
  35543. height: math.unit(7, "feet"),
  35544. name: "Front",
  35545. image: {
  35546. source: "./media/characters/sini/front-anthro.svg",
  35547. extra: 726/678,
  35548. bottom: 35/761
  35549. },
  35550. form: "anthro",
  35551. default: true
  35552. },
  35553. backAnthro: {
  35554. height: math.unit(7, "feet"),
  35555. name: "Back",
  35556. image: {
  35557. source: "./media/characters/sini/back-anthro.svg",
  35558. extra: 743/701,
  35559. bottom: 12/755
  35560. },
  35561. form: "anthro",
  35562. },
  35563. frontAnthroNsfw: {
  35564. height: math.unit(7, "feet"),
  35565. name: "Front (NSFW)",
  35566. image: {
  35567. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35568. extra: 726/678,
  35569. bottom: 35/761
  35570. },
  35571. form: "anthro"
  35572. },
  35573. backAnthroNsfw: {
  35574. height: math.unit(7, "feet"),
  35575. name: "Back (NSFW)",
  35576. image: {
  35577. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35578. extra: 743/701,
  35579. bottom: 12/755
  35580. },
  35581. form: "anthro",
  35582. },
  35583. mawAnthro: {
  35584. height: math.unit(2.14, "feet"),
  35585. name: "Maw",
  35586. image: {
  35587. source: "./media/characters/sini/maw-anthro.svg"
  35588. },
  35589. form: "anthro"
  35590. },
  35591. dick: {
  35592. height: math.unit(1.45, "feet"),
  35593. name: "Dick",
  35594. image: {
  35595. source: "./media/characters/sini/dick-anthro.svg"
  35596. },
  35597. form: "anthro"
  35598. },
  35599. feral: {
  35600. height: math.unit(16, "feet"),
  35601. name: "Feral",
  35602. image: {
  35603. source: "./media/characters/sini/feral.svg",
  35604. extra: 814/605,
  35605. bottom: 11/825
  35606. },
  35607. form: "feral",
  35608. default: true
  35609. },
  35610. feralNsfw: {
  35611. height: math.unit(16, "feet"),
  35612. name: "Feral (NSFW)",
  35613. image: {
  35614. source: "./media/characters/sini/feral-nsfw.svg",
  35615. extra: 814/605,
  35616. bottom: 11/825
  35617. },
  35618. form: "feral"
  35619. },
  35620. mawFeral: {
  35621. height: math.unit(5.66, "feet"),
  35622. name: "Maw",
  35623. image: {
  35624. source: "./media/characters/sini/maw-feral.svg"
  35625. },
  35626. form: "feral",
  35627. },
  35628. pawFeral: {
  35629. height: math.unit(5.17, "feet"),
  35630. name: "Paw",
  35631. image: {
  35632. source: "./media/characters/sini/paw-feral.svg"
  35633. },
  35634. form: "feral",
  35635. },
  35636. rumpFeral: {
  35637. height: math.unit(13.11, "feet"),
  35638. name: "Rump",
  35639. image: {
  35640. source: "./media/characters/sini/rump-feral.svg"
  35641. },
  35642. form: "feral",
  35643. },
  35644. dickFeral: {
  35645. height: math.unit(1, "feet"),
  35646. name: "Dick",
  35647. image: {
  35648. source: "./media/characters/sini/dick-feral.svg"
  35649. },
  35650. form: "feral",
  35651. },
  35652. eyeFeral: {
  35653. height: math.unit(1.23, "feet"),
  35654. name: "Eye",
  35655. image: {
  35656. source: "./media/characters/sini/eye-feral.svg"
  35657. },
  35658. form: "feral",
  35659. },
  35660. },
  35661. [
  35662. {
  35663. name: "Normal",
  35664. height: math.unit(7, "feet"),
  35665. default: true,
  35666. form: "anthro"
  35667. },
  35668. {
  35669. name: "Normal",
  35670. height: math.unit(16, "feet"),
  35671. default: true,
  35672. form: "feral"
  35673. },
  35674. ],
  35675. {
  35676. "anthro": {
  35677. name: "Anthro",
  35678. default: true
  35679. },
  35680. "feral": {
  35681. name: "Feral",
  35682. }
  35683. }
  35684. ))
  35685. characterMakers.push(() => makeCharacter(
  35686. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35687. {
  35688. side: {
  35689. height: math.unit(47.2, "meters"),
  35690. weight: math.unit(10000, "tons"),
  35691. name: "Side",
  35692. image: {
  35693. source: "./media/characters/raylldo/side.svg",
  35694. extra: 2363/642,
  35695. bottom: 221/2584
  35696. }
  35697. },
  35698. top: {
  35699. height: math.unit(240, "meters"),
  35700. weight: math.unit(10000, "tons"),
  35701. name: "Top",
  35702. image: {
  35703. source: "./media/characters/raylldo/top.svg"
  35704. }
  35705. },
  35706. bottom: {
  35707. height: math.unit(240, "meters"),
  35708. weight: math.unit(10000, "tons"),
  35709. name: "Bottom",
  35710. image: {
  35711. source: "./media/characters/raylldo/bottom.svg"
  35712. }
  35713. },
  35714. head: {
  35715. height: math.unit(38.6, "meters"),
  35716. name: "Head",
  35717. image: {
  35718. source: "./media/characters/raylldo/head.svg",
  35719. extra: 1335/1112,
  35720. bottom: 0/1335
  35721. }
  35722. },
  35723. maw: {
  35724. height: math.unit(16.37, "meters"),
  35725. name: "Maw",
  35726. image: {
  35727. source: "./media/characters/raylldo/maw.svg",
  35728. extra: 883/660,
  35729. bottom: 0/883
  35730. },
  35731. extraAttributes: {
  35732. preyCapacity: {
  35733. name: "Capacity",
  35734. power: 3,
  35735. type: "volume",
  35736. base: math.unit(1000, "people")
  35737. },
  35738. tongueSize: {
  35739. name: "Tongue Size",
  35740. power: 2,
  35741. type: "area",
  35742. base: math.unit(21, "m^2")
  35743. }
  35744. }
  35745. },
  35746. forepaw: {
  35747. height: math.unit(18, "meters"),
  35748. name: "Forepaw",
  35749. image: {
  35750. source: "./media/characters/raylldo/forepaw.svg"
  35751. }
  35752. },
  35753. hindpaw: {
  35754. height: math.unit(23, "meters"),
  35755. name: "Hindpaw",
  35756. image: {
  35757. source: "./media/characters/raylldo/hindpaw.svg"
  35758. }
  35759. },
  35760. genitals: {
  35761. height: math.unit(42, "meters"),
  35762. name: "Genitals",
  35763. image: {
  35764. source: "./media/characters/raylldo/genitals.svg"
  35765. }
  35766. },
  35767. },
  35768. [
  35769. {
  35770. name: "Normal",
  35771. height: math.unit(47.2, "meters"),
  35772. default: true
  35773. },
  35774. ]
  35775. ))
  35776. characterMakers.push(() => makeCharacter(
  35777. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35778. {
  35779. anthroFront: {
  35780. height: math.unit(9, "feet"),
  35781. weight: math.unit(600, "lb"),
  35782. name: "Anthro (Front)",
  35783. image: {
  35784. source: "./media/characters/glint/anthro-front.svg",
  35785. extra: 1097/1018,
  35786. bottom: 28/1125
  35787. }
  35788. },
  35789. anthroBack: {
  35790. height: math.unit(9, "feet"),
  35791. weight: math.unit(600, "lb"),
  35792. name: "Anthro (Back)",
  35793. image: {
  35794. source: "./media/characters/glint/anthro-back.svg",
  35795. extra: 1154/997,
  35796. bottom: 36/1190
  35797. }
  35798. },
  35799. feral: {
  35800. height: math.unit(11, "feet"),
  35801. weight: math.unit(50000, "lb"),
  35802. name: "Feral",
  35803. image: {
  35804. source: "./media/characters/glint/feral.svg",
  35805. extra: 3035/1585,
  35806. bottom: 1169/4204
  35807. }
  35808. },
  35809. dickAnthro: {
  35810. height: math.unit(0.7, "meters"),
  35811. name: "Dick (Anthro)",
  35812. image: {
  35813. source: "./media/characters/glint/dick-anthro.svg"
  35814. }
  35815. },
  35816. dickFeral: {
  35817. height: math.unit(2.65, "meters"),
  35818. name: "Dick (Feral)",
  35819. image: {
  35820. source: "./media/characters/glint/dick-feral.svg"
  35821. }
  35822. },
  35823. slitHidden: {
  35824. height: math.unit(5.85, "meters"),
  35825. name: "Slit (Hidden)",
  35826. image: {
  35827. source: "./media/characters/glint/slit-hidden.svg"
  35828. }
  35829. },
  35830. slitErect: {
  35831. height: math.unit(5.85, "meters"),
  35832. name: "Slit (Erect)",
  35833. image: {
  35834. source: "./media/characters/glint/slit-erect.svg"
  35835. }
  35836. },
  35837. mawAnthro: {
  35838. height: math.unit(0.63, "meters"),
  35839. name: "Maw (Anthro)",
  35840. image: {
  35841. source: "./media/characters/glint/maw.svg"
  35842. }
  35843. },
  35844. mawFeral: {
  35845. height: math.unit(2.89, "meters"),
  35846. name: "Maw (Feral)",
  35847. image: {
  35848. source: "./media/characters/glint/maw.svg"
  35849. }
  35850. },
  35851. },
  35852. [
  35853. {
  35854. name: "Normal",
  35855. height: math.unit(9, "feet"),
  35856. default: true
  35857. },
  35858. ]
  35859. ))
  35860. characterMakers.push(() => makeCharacter(
  35861. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35862. {
  35863. side: {
  35864. height: math.unit(15, "feet"),
  35865. weight: math.unit(5000, "kg"),
  35866. name: "Side",
  35867. image: {
  35868. source: "./media/characters/kairne/side.svg",
  35869. extra: 979/811,
  35870. bottom: 13/992
  35871. }
  35872. },
  35873. front: {
  35874. height: math.unit(15, "feet"),
  35875. weight: math.unit(5000, "kg"),
  35876. name: "Front",
  35877. image: {
  35878. source: "./media/characters/kairne/front.svg",
  35879. extra: 908/814,
  35880. bottom: 26/934
  35881. }
  35882. },
  35883. sideNsfw: {
  35884. height: math.unit(15, "feet"),
  35885. weight: math.unit(5000, "kg"),
  35886. name: "Side (NSFW)",
  35887. image: {
  35888. source: "./media/characters/kairne/side-nsfw.svg",
  35889. extra: 979/811,
  35890. bottom: 13/992
  35891. }
  35892. },
  35893. frontNsfw: {
  35894. height: math.unit(15, "feet"),
  35895. weight: math.unit(5000, "kg"),
  35896. name: "Front (NSFW)",
  35897. image: {
  35898. source: "./media/characters/kairne/front-nsfw.svg",
  35899. extra: 908/814,
  35900. bottom: 26/934
  35901. }
  35902. },
  35903. dickCaged: {
  35904. height: math.unit(0.65, "meters"),
  35905. name: "Dick-caged",
  35906. image: {
  35907. source: "./media/characters/kairne/dick-caged.svg"
  35908. }
  35909. },
  35910. dick: {
  35911. height: math.unit(0.79, "meters"),
  35912. name: "Dick",
  35913. image: {
  35914. source: "./media/characters/kairne/dick.svg"
  35915. }
  35916. },
  35917. genitals: {
  35918. height: math.unit(1.29, "meters"),
  35919. name: "Genitals",
  35920. image: {
  35921. source: "./media/characters/kairne/genitals.svg"
  35922. }
  35923. },
  35924. maw: {
  35925. height: math.unit(1.73, "meters"),
  35926. name: "Maw",
  35927. image: {
  35928. source: "./media/characters/kairne/maw.svg"
  35929. }
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "Normal",
  35935. height: math.unit(15, "feet"),
  35936. default: true
  35937. },
  35938. ]
  35939. ))
  35940. characterMakers.push(() => makeCharacter(
  35941. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35942. {
  35943. front: {
  35944. height: math.unit(5 + 8/12, "feet"),
  35945. weight: math.unit(139, "lb"),
  35946. name: "Front",
  35947. image: {
  35948. source: "./media/characters/biscuit-jackal/front.svg",
  35949. extra: 2106/1961,
  35950. bottom: 58/2164
  35951. }
  35952. },
  35953. back: {
  35954. height: math.unit(5 + 8/12, "feet"),
  35955. weight: math.unit(139, "lb"),
  35956. name: "Back",
  35957. image: {
  35958. source: "./media/characters/biscuit-jackal/back.svg",
  35959. extra: 2132/1976,
  35960. bottom: 57/2189
  35961. }
  35962. },
  35963. werejackal: {
  35964. height: math.unit(6 + 3/12, "feet"),
  35965. weight: math.unit(188, "lb"),
  35966. name: "Werejackal",
  35967. image: {
  35968. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35969. extra: 2373/2178,
  35970. bottom: 53/2426
  35971. }
  35972. },
  35973. },
  35974. [
  35975. {
  35976. name: "Normal",
  35977. height: math.unit(5 + 8/12, "feet"),
  35978. default: true
  35979. },
  35980. ]
  35981. ))
  35982. characterMakers.push(() => makeCharacter(
  35983. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35984. {
  35985. front: {
  35986. height: math.unit(140, "cm"),
  35987. weight: math.unit(45, "kg"),
  35988. name: "Front",
  35989. image: {
  35990. source: "./media/characters/tayra-white/front.svg",
  35991. extra: 2229/2192,
  35992. bottom: 75/2304
  35993. }
  35994. },
  35995. },
  35996. [
  35997. {
  35998. name: "Normal",
  35999. height: math.unit(140, "cm"),
  36000. default: true
  36001. },
  36002. ]
  36003. ))
  36004. characterMakers.push(() => makeCharacter(
  36005. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36006. {
  36007. front: {
  36008. height: math.unit(4 + 5/12, "feet"),
  36009. name: "Front",
  36010. image: {
  36011. source: "./media/characters/scoop/front.svg",
  36012. extra: 1257/1136,
  36013. bottom: 69/1326
  36014. }
  36015. },
  36016. back: {
  36017. height: math.unit(4 + 5/12, "feet"),
  36018. name: "Back",
  36019. image: {
  36020. source: "./media/characters/scoop/back.svg",
  36021. extra: 1321/1152,
  36022. bottom: 32/1353
  36023. }
  36024. },
  36025. maw: {
  36026. height: math.unit(0.68, "feet"),
  36027. name: "Maw",
  36028. image: {
  36029. source: "./media/characters/scoop/maw.svg"
  36030. }
  36031. },
  36032. },
  36033. [
  36034. {
  36035. name: "Really Small",
  36036. height: math.unit(1, "mm")
  36037. },
  36038. {
  36039. name: "Micro",
  36040. height: math.unit(1, "inch")
  36041. },
  36042. {
  36043. name: "Normal",
  36044. height: math.unit(4 + 5/12, "feet"),
  36045. default: true
  36046. },
  36047. {
  36048. name: "Macro",
  36049. height: math.unit(200, "feet")
  36050. },
  36051. {
  36052. name: "Megamacro",
  36053. height: math.unit(3240, "feet")
  36054. },
  36055. {
  36056. name: "Teramacro",
  36057. height: math.unit(2500, "miles")
  36058. },
  36059. ]
  36060. ))
  36061. characterMakers.push(() => makeCharacter(
  36062. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36063. {
  36064. front: {
  36065. height: math.unit(15 + 7/12, "feet"),
  36066. weight: math.unit(1150, "tons"),
  36067. name: "Front",
  36068. image: {
  36069. source: "./media/characters/saphinara/front.svg",
  36070. extra: 1837/1643,
  36071. bottom: 84/1921
  36072. },
  36073. form: "normal",
  36074. default: true
  36075. },
  36076. side: {
  36077. height: math.unit(15 + 7/12, "feet"),
  36078. weight: math.unit(1150, "tons"),
  36079. name: "Side",
  36080. image: {
  36081. source: "./media/characters/saphinara/side.svg",
  36082. extra: 605/547,
  36083. bottom: 6/611
  36084. },
  36085. form: "normal"
  36086. },
  36087. back: {
  36088. height: math.unit(15 + 7/12, "feet"),
  36089. weight: math.unit(1150, "tons"),
  36090. name: "Back",
  36091. image: {
  36092. source: "./media/characters/saphinara/back.svg",
  36093. extra: 591/531,
  36094. bottom: 13/604
  36095. },
  36096. form: "normal"
  36097. },
  36098. frontTail: {
  36099. height: math.unit(15 + 7/12, "feet"),
  36100. weight: math.unit(1150, "tons"),
  36101. name: "Front (Full Tail)",
  36102. image: {
  36103. source: "./media/characters/saphinara/front-tail.svg",
  36104. extra: 2256/1630,
  36105. bottom: 261/2517
  36106. },
  36107. form: "normal"
  36108. },
  36109. insides: {
  36110. height: math.unit(11.92, "feet"),
  36111. name: "Insides",
  36112. image: {
  36113. source: "./media/characters/saphinara/insides.svg"
  36114. },
  36115. form: "normal"
  36116. },
  36117. head: {
  36118. height: math.unit(4.17, "feet"),
  36119. name: "Head",
  36120. image: {
  36121. source: "./media/characters/saphinara/head.svg"
  36122. },
  36123. form: "normal"
  36124. },
  36125. tongue: {
  36126. height: math.unit(4.60, "feet"),
  36127. name: "Tongue",
  36128. image: {
  36129. source: "./media/characters/saphinara/tongue.svg"
  36130. },
  36131. form: "normal"
  36132. },
  36133. headEnraged: {
  36134. height: math.unit(5.55, "feet"),
  36135. name: "Head (Enraged)",
  36136. image: {
  36137. source: "./media/characters/saphinara/head-enraged.svg"
  36138. },
  36139. form: "normal"
  36140. },
  36141. wings: {
  36142. height: math.unit(11.95, "feet"),
  36143. name: "Wings",
  36144. image: {
  36145. source: "./media/characters/saphinara/wings.svg"
  36146. },
  36147. form: "normal"
  36148. },
  36149. feathers: {
  36150. height: math.unit(8.92, "feet"),
  36151. name: "Feathers",
  36152. image: {
  36153. source: "./media/characters/saphinara/feathers.svg"
  36154. },
  36155. form: "normal"
  36156. },
  36157. shackles: {
  36158. height: math.unit(2, "feet"),
  36159. name: "Shackles",
  36160. image: {
  36161. source: "./media/characters/saphinara/shackles.svg"
  36162. },
  36163. form: "normal"
  36164. },
  36165. eyes: {
  36166. height: math.unit(1.331, "feet"),
  36167. name: "Eyes",
  36168. image: {
  36169. source: "./media/characters/saphinara/eyes.svg"
  36170. },
  36171. form: "normal"
  36172. },
  36173. eyesEnraged: {
  36174. height: math.unit(1.331, "feet"),
  36175. name: "Eyes (Enraged)",
  36176. image: {
  36177. source: "./media/characters/saphinara/eyes-enraged.svg"
  36178. },
  36179. form: "normal"
  36180. },
  36181. trueFormSide: {
  36182. height: math.unit(200, "feet"),
  36183. weight: math.unit(1e7, "tons"),
  36184. name: "Side",
  36185. image: {
  36186. source: "./media/characters/saphinara/true-form-side.svg",
  36187. extra: 1399/770,
  36188. bottom: 97/1496
  36189. },
  36190. form: "true-form",
  36191. default: true
  36192. },
  36193. trueFormMaw: {
  36194. height: math.unit(71.5, "feet"),
  36195. name: "Maw",
  36196. image: {
  36197. source: "./media/characters/saphinara/true-form-maw.svg",
  36198. extra: 2302/1453,
  36199. bottom: 0/2302
  36200. },
  36201. form: "true-form"
  36202. },
  36203. meowberusSide: {
  36204. height: math.unit(75, "feet"),
  36205. weight: math.unit(180000, "kg"),
  36206. preyCapacity: math.unit(50000, "people"),
  36207. name: "Side",
  36208. image: {
  36209. source: "./media/characters/saphinara/meowberus-side.svg",
  36210. extra: 1400/711,
  36211. bottom: 126/1526
  36212. },
  36213. form: "meowberus",
  36214. extraAttributes: {
  36215. "pawArea": {
  36216. name: "Paw Size",
  36217. power: 2,
  36218. type: "area",
  36219. base: math.unit(35, "m^2")
  36220. }
  36221. }
  36222. },
  36223. },
  36224. [
  36225. {
  36226. name: "Normal",
  36227. height: math.unit(15 + 7/12, "feet"),
  36228. default: true,
  36229. form: "normal"
  36230. },
  36231. {
  36232. name: "Angry",
  36233. height: math.unit(30 + 6/12, "feet"),
  36234. form: "normal"
  36235. },
  36236. {
  36237. name: "Enraged",
  36238. height: math.unit(102 + 1/12, "feet"),
  36239. form: "normal"
  36240. },
  36241. {
  36242. name: "True",
  36243. height: math.unit(200, "feet"),
  36244. default: true,
  36245. form: "true-form"
  36246. },
  36247. {
  36248. name: "Normal",
  36249. height: math.unit(75, "feet"),
  36250. default: true,
  36251. form: "meowberus"
  36252. },
  36253. ],
  36254. {
  36255. "normal": {
  36256. name: "Normal",
  36257. default: true
  36258. },
  36259. "true-form": {
  36260. name: "True Form"
  36261. },
  36262. "meowberus": {
  36263. name: "Meowberus",
  36264. },
  36265. }
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36269. {
  36270. front: {
  36271. height: math.unit(6 + 8/12, "feet"),
  36272. weight: math.unit(300, "lb"),
  36273. name: "Front",
  36274. image: {
  36275. source: "./media/characters/jrain/front.svg",
  36276. extra: 3039/2865,
  36277. bottom: 399/3438
  36278. }
  36279. },
  36280. back: {
  36281. height: math.unit(6 + 8/12, "feet"),
  36282. weight: math.unit(300, "lb"),
  36283. name: "Back",
  36284. image: {
  36285. source: "./media/characters/jrain/back.svg",
  36286. extra: 3089/2938,
  36287. bottom: 172/3261
  36288. }
  36289. },
  36290. head: {
  36291. height: math.unit(2.14, "feet"),
  36292. name: "Head",
  36293. image: {
  36294. source: "./media/characters/jrain/head.svg"
  36295. }
  36296. },
  36297. maw: {
  36298. height: math.unit(1.77, "feet"),
  36299. name: "Maw",
  36300. image: {
  36301. source: "./media/characters/jrain/maw.svg"
  36302. }
  36303. },
  36304. leftHand: {
  36305. height: math.unit(1.1, "feet"),
  36306. name: "Left Hand",
  36307. image: {
  36308. source: "./media/characters/jrain/left-hand.svg"
  36309. }
  36310. },
  36311. rightHand: {
  36312. height: math.unit(1.1, "feet"),
  36313. name: "Right Hand",
  36314. image: {
  36315. source: "./media/characters/jrain/right-hand.svg"
  36316. }
  36317. },
  36318. eye: {
  36319. height: math.unit(0.35, "feet"),
  36320. name: "Eye",
  36321. image: {
  36322. source: "./media/characters/jrain/eye.svg"
  36323. }
  36324. },
  36325. },
  36326. [
  36327. {
  36328. name: "Normal",
  36329. height: math.unit(6 + 8/12, "feet"),
  36330. default: true
  36331. },
  36332. {
  36333. name: "Casually Large",
  36334. height: math.unit(25, "feet")
  36335. },
  36336. {
  36337. name: "Giant",
  36338. height: math.unit(100, "feet")
  36339. },
  36340. {
  36341. name: "Kaiju",
  36342. height: math.unit(300, "feet")
  36343. },
  36344. ]
  36345. ))
  36346. characterMakers.push(() => makeCharacter(
  36347. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36348. {
  36349. dragon: {
  36350. height: math.unit(5, "meters"),
  36351. name: "Dragon",
  36352. image: {
  36353. source: "./media/characters/sabrina/dragon.svg",
  36354. extra: 3670 / 2365,
  36355. bottom: 333 / 4003
  36356. }
  36357. },
  36358. gryphon: {
  36359. height: math.unit(3, "meters"),
  36360. name: "Gryphon",
  36361. image: {
  36362. source: "./media/characters/sabrina/gryphon.svg",
  36363. extra: 1576 / 945,
  36364. bottom: 71 / 1647
  36365. }
  36366. },
  36367. snake: {
  36368. height: math.unit(12, "meters"),
  36369. name: "Snake",
  36370. image: {
  36371. source: "./media/characters/sabrina/snake.svg",
  36372. extra: 1758 / 1320,
  36373. bottom: 186 / 1944
  36374. }
  36375. },
  36376. collar: {
  36377. height: math.unit(1.86, "meters"),
  36378. name: "Collar",
  36379. image: {
  36380. source: "./media/characters/sabrina/collar.svg"
  36381. }
  36382. },
  36383. eye: {
  36384. height: math.unit(0.53, "meters"),
  36385. name: "Eye",
  36386. image: {
  36387. source: "./media/characters/sabrina/eye.svg"
  36388. }
  36389. },
  36390. foot: {
  36391. height: math.unit(1.86, "meters"),
  36392. name: "Foot",
  36393. image: {
  36394. source: "./media/characters/sabrina/foot.svg"
  36395. }
  36396. },
  36397. hand: {
  36398. height: math.unit(1.32, "meters"),
  36399. name: "Hand",
  36400. image: {
  36401. source: "./media/characters/sabrina/hand.svg"
  36402. }
  36403. },
  36404. head: {
  36405. height: math.unit(2.44, "meters"),
  36406. name: "Head",
  36407. image: {
  36408. source: "./media/characters/sabrina/head.svg"
  36409. }
  36410. },
  36411. headAngry: {
  36412. height: math.unit(2.44, "meters"),
  36413. name: "Head (Angry))",
  36414. image: {
  36415. source: "./media/characters/sabrina/head-angry.svg"
  36416. }
  36417. },
  36418. maw: {
  36419. height: math.unit(1.65, "meters"),
  36420. name: "Maw",
  36421. image: {
  36422. source: "./media/characters/sabrina/maw.svg"
  36423. }
  36424. },
  36425. spikes: {
  36426. height: math.unit(1.69, "meters"),
  36427. name: "Spikes",
  36428. image: {
  36429. source: "./media/characters/sabrina/spikes.svg"
  36430. }
  36431. },
  36432. stomach: {
  36433. height: math.unit(1.15, "meters"),
  36434. name: "Stomach",
  36435. image: {
  36436. source: "./media/characters/sabrina/stomach.svg"
  36437. }
  36438. },
  36439. tongue: {
  36440. height: math.unit(1.27, "meters"),
  36441. name: "Tongue",
  36442. image: {
  36443. source: "./media/characters/sabrina/tongue.svg"
  36444. }
  36445. },
  36446. wingDorsal: {
  36447. height: math.unit(4.85, "meters"),
  36448. name: "Wing (Dorsal)",
  36449. image: {
  36450. source: "./media/characters/sabrina/wing-dorsal.svg"
  36451. }
  36452. },
  36453. wingVentral: {
  36454. height: math.unit(4.85, "meters"),
  36455. name: "Wing (Ventral)",
  36456. image: {
  36457. source: "./media/characters/sabrina/wing-ventral.svg"
  36458. }
  36459. },
  36460. },
  36461. [
  36462. {
  36463. name: "Normal",
  36464. height: math.unit(5, "meters"),
  36465. default: true
  36466. },
  36467. ]
  36468. ))
  36469. characterMakers.push(() => makeCharacter(
  36470. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36471. {
  36472. frontMaid: {
  36473. height: math.unit(5 + 5/12, "feet"),
  36474. weight: math.unit(130, "lb"),
  36475. name: "Front (Maid)",
  36476. image: {
  36477. source: "./media/characters/midnight-tales/front-maid.svg",
  36478. extra: 489/454,
  36479. bottom: 61/550
  36480. }
  36481. },
  36482. frontFormal: {
  36483. height: math.unit(5 + 5/12, "feet"),
  36484. weight: math.unit(130, "lb"),
  36485. name: "Front (Formal)",
  36486. image: {
  36487. source: "./media/characters/midnight-tales/front-formal.svg",
  36488. extra: 489/454,
  36489. bottom: 61/550
  36490. }
  36491. },
  36492. back: {
  36493. height: math.unit(5 + 5/12, "feet"),
  36494. weight: math.unit(130, "lb"),
  36495. name: "Back",
  36496. image: {
  36497. source: "./media/characters/midnight-tales/back.svg",
  36498. extra: 498/456,
  36499. bottom: 33/531
  36500. }
  36501. },
  36502. frontBeast: {
  36503. height: math.unit(40, "feet"),
  36504. weight: math.unit(64000, "lb"),
  36505. name: "Front (Beast)",
  36506. image: {
  36507. source: "./media/characters/midnight-tales/front-beast.svg",
  36508. extra: 927/860,
  36509. bottom: 53/980
  36510. }
  36511. },
  36512. backBeast: {
  36513. height: math.unit(40, "feet"),
  36514. weight: math.unit(64000, "lb"),
  36515. name: "Back (Beast)",
  36516. image: {
  36517. source: "./media/characters/midnight-tales/back-beast.svg",
  36518. extra: 929/855,
  36519. bottom: 16/945
  36520. }
  36521. },
  36522. footBeast: {
  36523. height: math.unit(6.7, "feet"),
  36524. name: "Foot (Beast)",
  36525. image: {
  36526. source: "./media/characters/midnight-tales/foot-beast.svg"
  36527. }
  36528. },
  36529. headBeast: {
  36530. height: math.unit(8, "feet"),
  36531. name: "Head (Beast)",
  36532. image: {
  36533. source: "./media/characters/midnight-tales/head-beast.svg"
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(5 + 5 / 12, "feet"),
  36541. default: true
  36542. },
  36543. {
  36544. name: "Macro",
  36545. height: math.unit(25, "feet")
  36546. },
  36547. ]
  36548. ))
  36549. characterMakers.push(() => makeCharacter(
  36550. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36551. {
  36552. front: {
  36553. height: math.unit(5 + 10/12, "feet"),
  36554. name: "Front",
  36555. image: {
  36556. source: "./media/characters/argon/front.svg",
  36557. extra: 2009/1935,
  36558. bottom: 118/2127
  36559. }
  36560. },
  36561. back: {
  36562. height: math.unit(5 + 10/12, "feet"),
  36563. name: "Back",
  36564. image: {
  36565. source: "./media/characters/argon/back.svg",
  36566. extra: 2047/1992,
  36567. bottom: 20/2067
  36568. }
  36569. },
  36570. frontDressed: {
  36571. height: math.unit(5 + 10/12, "feet"),
  36572. name: "Front (Dressed)",
  36573. image: {
  36574. source: "./media/characters/argon/front-dressed.svg",
  36575. extra: 2009/1935,
  36576. bottom: 118/2127
  36577. }
  36578. },
  36579. },
  36580. [
  36581. {
  36582. name: "Normal",
  36583. height: math.unit(5 + 10/12, "feet"),
  36584. default: true
  36585. },
  36586. ]
  36587. ))
  36588. characterMakers.push(() => makeCharacter(
  36589. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36590. {
  36591. front: {
  36592. height: math.unit(8 + 6/12, "feet"),
  36593. weight: math.unit(1150, "lb"),
  36594. name: "Front",
  36595. image: {
  36596. source: "./media/characters/kichi/front.svg",
  36597. extra: 1267/1164,
  36598. bottom: 61/1328
  36599. }
  36600. },
  36601. back: {
  36602. height: math.unit(8 + 6/12, "feet"),
  36603. weight: math.unit(1150, "lb"),
  36604. name: "Back",
  36605. image: {
  36606. source: "./media/characters/kichi/back.svg",
  36607. extra: 1273/1166,
  36608. bottom: 33/1306
  36609. }
  36610. },
  36611. },
  36612. [
  36613. {
  36614. name: "Normal",
  36615. height: math.unit(8 + 6/12, "feet"),
  36616. default: true
  36617. },
  36618. ]
  36619. ))
  36620. characterMakers.push(() => makeCharacter(
  36621. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36622. {
  36623. front: {
  36624. height: math.unit(6, "feet"),
  36625. weight: math.unit(210, "lb"),
  36626. name: "Front",
  36627. image: {
  36628. source: "./media/characters/manetel-greyscale/front.svg",
  36629. extra: 350/312,
  36630. bottom: 8/358
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Micro",
  36637. height: math.unit(2, "inches")
  36638. },
  36639. {
  36640. name: "Normal",
  36641. height: math.unit(6, "feet"),
  36642. default: true
  36643. },
  36644. {
  36645. name: "Minimacro",
  36646. height: math.unit(17, "feet")
  36647. },
  36648. {
  36649. name: "Macro",
  36650. height: math.unit(117, "feet")
  36651. },
  36652. ]
  36653. ))
  36654. characterMakers.push(() => makeCharacter(
  36655. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36656. {
  36657. side: {
  36658. height: math.unit(5 + 1/12, "feet"),
  36659. weight: math.unit(418, "lb"),
  36660. name: "Side",
  36661. image: {
  36662. source: "./media/characters/softpurr/side.svg",
  36663. extra: 1993/1945,
  36664. bottom: 134/2127
  36665. }
  36666. },
  36667. front: {
  36668. height: math.unit(5 + 1/12, "feet"),
  36669. weight: math.unit(418, "lb"),
  36670. name: "Front",
  36671. image: {
  36672. source: "./media/characters/softpurr/front.svg",
  36673. extra: 1950/1856,
  36674. bottom: 174/2124
  36675. }
  36676. },
  36677. paw: {
  36678. height: math.unit(1, "feet"),
  36679. name: "Paw",
  36680. image: {
  36681. source: "./media/characters/softpurr/paw.svg"
  36682. }
  36683. },
  36684. },
  36685. [
  36686. {
  36687. name: "Normal",
  36688. height: math.unit(5 + 1/12, "feet"),
  36689. default: true
  36690. },
  36691. ]
  36692. ))
  36693. characterMakers.push(() => makeCharacter(
  36694. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36695. {
  36696. front: {
  36697. height: math.unit(260, "meters"),
  36698. name: "Front",
  36699. image: {
  36700. source: "./media/characters/anahita/front.svg",
  36701. extra: 665/635,
  36702. bottom: 89/754
  36703. }
  36704. },
  36705. },
  36706. [
  36707. {
  36708. name: "Macro",
  36709. height: math.unit(260, "meters"),
  36710. default: true
  36711. },
  36712. ]
  36713. ))
  36714. characterMakers.push(() => makeCharacter(
  36715. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36716. {
  36717. front: {
  36718. height: math.unit(4 + 10/12, "feet"),
  36719. weight: math.unit(160, "lb"),
  36720. name: "Front",
  36721. image: {
  36722. source: "./media/characters/chip-mouse/front.svg",
  36723. extra: 3528/3408,
  36724. bottom: 0/3528
  36725. }
  36726. },
  36727. frontNsfw: {
  36728. height: math.unit(4 + 10/12, "feet"),
  36729. weight: math.unit(160, "lb"),
  36730. name: "Front (NSFW)",
  36731. image: {
  36732. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36733. extra: 3528/3408,
  36734. bottom: 0/3528
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Normal",
  36741. height: math.unit(4 + 10/12, "feet"),
  36742. default: true
  36743. },
  36744. ]
  36745. ))
  36746. characterMakers.push(() => makeCharacter(
  36747. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36748. {
  36749. side: {
  36750. height: math.unit(10, "feet"),
  36751. weight: math.unit(14000, "lb"),
  36752. name: "Side",
  36753. image: {
  36754. source: "./media/characters/kremm/side.svg",
  36755. extra: 1390/1053,
  36756. bottom: 90/1480
  36757. }
  36758. },
  36759. gut: {
  36760. height: math.unit(5.8, "feet"),
  36761. name: "Gut",
  36762. image: {
  36763. source: "./media/characters/kremm/gut.svg"
  36764. }
  36765. },
  36766. ass: {
  36767. height: math.unit(6.1, "feet"),
  36768. name: "Ass",
  36769. image: {
  36770. source: "./media/characters/kremm/ass.svg"
  36771. }
  36772. },
  36773. jaws: {
  36774. height: math.unit(2.2, "feet"),
  36775. name: "Jaws",
  36776. image: {
  36777. source: "./media/characters/kremm/jaws.svg"
  36778. }
  36779. },
  36780. dick: {
  36781. height: math.unit(4.26, "feet"),
  36782. name: "Dick",
  36783. image: {
  36784. source: "./media/characters/kremm/dick.svg"
  36785. }
  36786. },
  36787. },
  36788. [
  36789. {
  36790. name: "Normal",
  36791. height: math.unit(10, "feet"),
  36792. default: true
  36793. },
  36794. ]
  36795. ))
  36796. characterMakers.push(() => makeCharacter(
  36797. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36798. {
  36799. front: {
  36800. height: math.unit(30, "stories"),
  36801. name: "Front",
  36802. image: {
  36803. source: "./media/characters/kai/front.svg",
  36804. extra: 1892/1718,
  36805. bottom: 162/2054
  36806. }
  36807. },
  36808. },
  36809. [
  36810. {
  36811. name: "Macro",
  36812. height: math.unit(30, "stories"),
  36813. default: true
  36814. },
  36815. ]
  36816. ))
  36817. characterMakers.push(() => makeCharacter(
  36818. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36819. {
  36820. front: {
  36821. height: math.unit(6 + 4/12, "feet"),
  36822. weight: math.unit(145, "lb"),
  36823. name: "Front",
  36824. image: {
  36825. source: "./media/characters/sykes/front.svg",
  36826. extra: 1321 / 1187,
  36827. bottom: 66 / 1387
  36828. }
  36829. },
  36830. back: {
  36831. height: math.unit(6 + 4/12, "feet"),
  36832. weight: math.unit(145, "lb"),
  36833. name: "Back",
  36834. image: {
  36835. source: "./media/characters/sykes/back.svg",
  36836. extra: 1326/1181,
  36837. bottom: 31/1357
  36838. }
  36839. },
  36840. traditionalOutfit: {
  36841. height: math.unit(6 + 4/12, "feet"),
  36842. weight: math.unit(145, "lb"),
  36843. name: "Traditional Outfit",
  36844. image: {
  36845. source: "./media/characters/sykes/traditional-outfit.svg",
  36846. extra: 1321 / 1187,
  36847. bottom: 66 / 1387
  36848. }
  36849. },
  36850. adventureOutfit: {
  36851. height: math.unit(6 + 4/12, "feet"),
  36852. weight: math.unit(145, "lb"),
  36853. name: "Adventure Outfit",
  36854. image: {
  36855. source: "./media/characters/sykes/adventure-outfit.svg",
  36856. extra: 1321 / 1187,
  36857. bottom: 66 / 1387
  36858. }
  36859. },
  36860. handLeft: {
  36861. height: math.unit(0.9, "feet"),
  36862. name: "Hand (Left)",
  36863. image: {
  36864. source: "./media/characters/sykes/hand-left.svg"
  36865. }
  36866. },
  36867. handRight: {
  36868. height: math.unit(0.839, "feet"),
  36869. name: "Hand (Right)",
  36870. image: {
  36871. source: "./media/characters/sykes/hand-right.svg"
  36872. }
  36873. },
  36874. leftFoot: {
  36875. height: math.unit(1.2, "feet"),
  36876. name: "Foot (Left)",
  36877. image: {
  36878. source: "./media/characters/sykes/foot-left.svg"
  36879. }
  36880. },
  36881. rightFoot: {
  36882. height: math.unit(1.2, "feet"),
  36883. name: "Foot (Right)",
  36884. image: {
  36885. source: "./media/characters/sykes/foot-right.svg"
  36886. }
  36887. },
  36888. maw: {
  36889. height: math.unit(1.93, "feet"),
  36890. name: "Maw",
  36891. image: {
  36892. source: "./media/characters/sykes/maw.svg"
  36893. }
  36894. },
  36895. teeth: {
  36896. height: math.unit(0.51, "feet"),
  36897. name: "Teeth",
  36898. image: {
  36899. source: "./media/characters/sykes/teeth.svg"
  36900. }
  36901. },
  36902. tongue: {
  36903. height: math.unit(2.13, "feet"),
  36904. name: "Tongue",
  36905. image: {
  36906. source: "./media/characters/sykes/tongue.svg"
  36907. }
  36908. },
  36909. uvula: {
  36910. height: math.unit(0.16, "feet"),
  36911. name: "Uvula",
  36912. image: {
  36913. source: "./media/characters/sykes/uvula.svg"
  36914. }
  36915. },
  36916. collar: {
  36917. height: math.unit(0.287, "feet"),
  36918. name: "Collar",
  36919. image: {
  36920. source: "./media/characters/sykes/collar.svg"
  36921. }
  36922. },
  36923. tail: {
  36924. height: math.unit(3.8, "feet"),
  36925. name: "Tail",
  36926. image: {
  36927. source: "./media/characters/sykes/tail.svg"
  36928. }
  36929. },
  36930. },
  36931. [
  36932. {
  36933. name: "Shrunken",
  36934. height: math.unit(5, "inches")
  36935. },
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(6 + 4 / 12, "feet"),
  36939. default: true
  36940. },
  36941. {
  36942. name: "Big",
  36943. height: math.unit(15, "feet")
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36949. {
  36950. front: {
  36951. height: math.unit(5 + 8/12, "feet"),
  36952. weight: math.unit(190, "lb"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/oven-otter/front.svg",
  36956. extra: 1809/1740,
  36957. bottom: 181/1990
  36958. }
  36959. },
  36960. back: {
  36961. height: math.unit(5 + 8/12, "feet"),
  36962. weight: math.unit(190, "lb"),
  36963. name: "Back",
  36964. image: {
  36965. source: "./media/characters/oven-otter/back.svg",
  36966. extra: 1709/1635,
  36967. bottom: 118/1827
  36968. }
  36969. },
  36970. hand: {
  36971. height: math.unit(1.07, "feet"),
  36972. name: "Hand",
  36973. image: {
  36974. source: "./media/characters/oven-otter/hand.svg"
  36975. }
  36976. },
  36977. beans: {
  36978. height: math.unit(1.74, "feet"),
  36979. name: "Beans",
  36980. image: {
  36981. source: "./media/characters/oven-otter/beans.svg"
  36982. }
  36983. },
  36984. },
  36985. [
  36986. {
  36987. name: "Micro",
  36988. height: math.unit(0.5, "inches")
  36989. },
  36990. {
  36991. name: "Normal",
  36992. height: math.unit(5 + 8/12, "feet"),
  36993. default: true
  36994. },
  36995. {
  36996. name: "Macro",
  36997. height: math.unit(250, "feet")
  36998. },
  36999. {
  37000. name: "Really High",
  37001. height: math.unit(420, "feet")
  37002. },
  37003. ]
  37004. ))
  37005. characterMakers.push(() => makeCharacter(
  37006. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37007. {
  37008. front: {
  37009. height: math.unit(5, "meters"),
  37010. weight: math.unit(292000000000000, "kg"),
  37011. name: "Front",
  37012. image: {
  37013. source: "./media/characters/devourer/front.svg",
  37014. extra: 1800/1733,
  37015. bottom: 211/2011
  37016. }
  37017. },
  37018. maw: {
  37019. height: math.unit(1.1, "meter"),
  37020. name: "Maw",
  37021. image: {
  37022. source: "./media/characters/devourer/maw.svg"
  37023. }
  37024. },
  37025. },
  37026. [
  37027. {
  37028. name: "Small",
  37029. height: math.unit(3, "meters")
  37030. },
  37031. {
  37032. name: "Large",
  37033. height: math.unit(5, "meters"),
  37034. default: true
  37035. },
  37036. ]
  37037. ))
  37038. characterMakers.push(() => makeCharacter(
  37039. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37040. {
  37041. front: {
  37042. height: math.unit(6, "feet"),
  37043. weight: math.unit(400, "lb"),
  37044. name: "Front",
  37045. image: {
  37046. source: "./media/characters/ellarby/front.svg",
  37047. extra: 1909/1763,
  37048. bottom: 80/1989
  37049. }
  37050. },
  37051. back: {
  37052. height: math.unit(6, "feet"),
  37053. weight: math.unit(400, "lb"),
  37054. name: "Back",
  37055. image: {
  37056. source: "./media/characters/ellarby/back.svg",
  37057. extra: 1914/1784,
  37058. bottom: 172/2086
  37059. }
  37060. },
  37061. },
  37062. [
  37063. {
  37064. name: "Mischief",
  37065. height: math.unit(18, "inches")
  37066. },
  37067. {
  37068. name: "Trouble",
  37069. height: math.unit(12, "feet")
  37070. },
  37071. {
  37072. name: "Havoc",
  37073. height: math.unit(200, "feet"),
  37074. default: true
  37075. },
  37076. {
  37077. name: "Pandemonium",
  37078. height: math.unit(1, "mile")
  37079. },
  37080. {
  37081. name: "Catastrophe",
  37082. height: math.unit(100, "miles")
  37083. },
  37084. ]
  37085. ))
  37086. characterMakers.push(() => makeCharacter(
  37087. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37088. {
  37089. front: {
  37090. height: math.unit(4.7, "meters"),
  37091. weight: math.unit(6500, "kg"),
  37092. name: "Front",
  37093. image: {
  37094. source: "./media/characters/vex/front.svg",
  37095. extra: 1288/1140,
  37096. bottom: 100/1388
  37097. }
  37098. },
  37099. },
  37100. [
  37101. {
  37102. name: "Normal",
  37103. height: math.unit(4.7, "meters"),
  37104. default: true
  37105. },
  37106. ]
  37107. ))
  37108. characterMakers.push(() => makeCharacter(
  37109. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37110. {
  37111. normal: {
  37112. height: math.unit(6, "feet"),
  37113. weight: math.unit(350, "lb"),
  37114. name: "Normal",
  37115. image: {
  37116. source: "./media/characters/teshy/normal.svg",
  37117. extra: 1795/1735,
  37118. bottom: 16/1811
  37119. }
  37120. },
  37121. monsterFront: {
  37122. height: math.unit(12, "feet"),
  37123. weight: math.unit(4700, "lb"),
  37124. name: "Monster (Front)",
  37125. image: {
  37126. source: "./media/characters/teshy/monster-front.svg",
  37127. extra: 2042/2034,
  37128. bottom: 128/2170
  37129. }
  37130. },
  37131. monsterSide: {
  37132. height: math.unit(12, "feet"),
  37133. weight: math.unit(4700, "lb"),
  37134. name: "Monster (Side)",
  37135. image: {
  37136. source: "./media/characters/teshy/monster-side.svg",
  37137. extra: 2067/2056,
  37138. bottom: 70/2137
  37139. }
  37140. },
  37141. monsterBack: {
  37142. height: math.unit(12, "feet"),
  37143. weight: math.unit(4700, "lb"),
  37144. name: "Monster (Back)",
  37145. image: {
  37146. source: "./media/characters/teshy/monster-back.svg",
  37147. extra: 1921/1914,
  37148. bottom: 171/2092
  37149. }
  37150. },
  37151. },
  37152. [
  37153. {
  37154. name: "Normal",
  37155. height: math.unit(6, "feet"),
  37156. default: true
  37157. },
  37158. ]
  37159. ))
  37160. characterMakers.push(() => makeCharacter(
  37161. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37162. {
  37163. front: {
  37164. height: math.unit(6, "feet"),
  37165. name: "Front",
  37166. image: {
  37167. source: "./media/characters/ramey/front.svg",
  37168. extra: 790/787,
  37169. bottom: 27/817
  37170. }
  37171. },
  37172. },
  37173. [
  37174. {
  37175. name: "Normal",
  37176. height: math.unit(6, "feet"),
  37177. default: true
  37178. },
  37179. ]
  37180. ))
  37181. characterMakers.push(() => makeCharacter(
  37182. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37183. {
  37184. front: {
  37185. height: math.unit(5 + 5/12, "feet"),
  37186. weight: math.unit(120, "lb"),
  37187. name: "Front",
  37188. image: {
  37189. source: "./media/characters/phirae/front.svg",
  37190. extra: 2491/2436,
  37191. bottom: 38/2529
  37192. }
  37193. },
  37194. },
  37195. [
  37196. {
  37197. name: "Normal",
  37198. height: math.unit(5 + 5/12, "feet"),
  37199. default: true
  37200. },
  37201. ]
  37202. ))
  37203. characterMakers.push(() => makeCharacter(
  37204. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37205. {
  37206. front: {
  37207. height: math.unit(5 + 3/12, "feet"),
  37208. name: "Front",
  37209. image: {
  37210. source: "./media/characters/stagglas/front.svg",
  37211. extra: 962/882,
  37212. bottom: 53/1015
  37213. }
  37214. },
  37215. feral: {
  37216. height: math.unit(335, "cm"),
  37217. name: "Feral",
  37218. image: {
  37219. source: "./media/characters/stagglas/feral.svg",
  37220. extra: 1732/1090,
  37221. bottom: 48/1780
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Normal",
  37228. height: math.unit(5 + 3/12, "feet"),
  37229. default: true
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(5 + 4/12, "feet"),
  37238. weight: math.unit(145, "lb"),
  37239. name: "Front",
  37240. image: {
  37241. source: "./media/characters/starra/front.svg",
  37242. extra: 1790/1691,
  37243. bottom: 91/1881
  37244. }
  37245. },
  37246. },
  37247. [
  37248. {
  37249. name: "Normal",
  37250. height: math.unit(5 + 4/12, "feet"),
  37251. default: true
  37252. },
  37253. ]
  37254. ))
  37255. characterMakers.push(() => makeCharacter(
  37256. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37257. {
  37258. front: {
  37259. height: math.unit(3.5, "meters"),
  37260. name: "Front",
  37261. image: {
  37262. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37263. extra: 1248/972,
  37264. bottom: 38/1286
  37265. }
  37266. },
  37267. },
  37268. [
  37269. {
  37270. name: "Normal",
  37271. height: math.unit(3.5, "meters"),
  37272. default: true
  37273. },
  37274. ]
  37275. ))
  37276. characterMakers.push(() => makeCharacter(
  37277. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37278. {
  37279. side: {
  37280. height: math.unit(8 + 2/12, "feet"),
  37281. weight: math.unit(1240, "lb"),
  37282. name: "Side",
  37283. image: {
  37284. source: "./media/characters/mika-valentine/side.svg",
  37285. extra: 2670/2501,
  37286. bottom: 250/2920
  37287. }
  37288. },
  37289. },
  37290. [
  37291. {
  37292. name: "Normal",
  37293. height: math.unit(8 + 2/12, "feet"),
  37294. default: true
  37295. },
  37296. ]
  37297. ))
  37298. characterMakers.push(() => makeCharacter(
  37299. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37300. {
  37301. front: {
  37302. height: math.unit(7 + 2/12, "feet"),
  37303. name: "Front",
  37304. image: {
  37305. source: "./media/characters/xoltol/front.svg",
  37306. extra: 2212/2124,
  37307. bottom: 84/2296
  37308. }
  37309. },
  37310. side: {
  37311. height: math.unit(7 + 2/12, "feet"),
  37312. name: "Side",
  37313. image: {
  37314. source: "./media/characters/xoltol/side.svg",
  37315. extra: 2273/2197,
  37316. bottom: 26/2299
  37317. }
  37318. },
  37319. hand: {
  37320. height: math.unit(2.5, "feet"),
  37321. name: "Hand",
  37322. image: {
  37323. source: "./media/characters/xoltol/hand.svg"
  37324. }
  37325. },
  37326. },
  37327. [
  37328. {
  37329. name: "Small-ish",
  37330. height: math.unit(5 + 11/12, "feet")
  37331. },
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(7 + 2/12, "feet")
  37335. },
  37336. {
  37337. name: "\"Macro\"",
  37338. height: math.unit(14 + 9/12, "feet"),
  37339. default: true
  37340. },
  37341. {
  37342. name: "Alternate Height",
  37343. height: math.unit(20, "feet")
  37344. },
  37345. {
  37346. name: "Actually Macro",
  37347. height: math.unit(100, "feet")
  37348. },
  37349. ]
  37350. ))
  37351. characterMakers.push(() => makeCharacter(
  37352. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37353. {
  37354. front: {
  37355. height: math.unit(5 + 2/12, "feet"),
  37356. weight: math.unit(75, "kg"),
  37357. name: "Front",
  37358. image: {
  37359. source: "./media/characters/kotetsu-redwood/front.svg",
  37360. extra: 1053/942,
  37361. bottom: 60/1113
  37362. }
  37363. },
  37364. },
  37365. [
  37366. {
  37367. name: "Normal",
  37368. height: math.unit(5 + 2/12, "feet"),
  37369. default: true
  37370. },
  37371. ]
  37372. ))
  37373. characterMakers.push(() => makeCharacter(
  37374. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37375. {
  37376. front: {
  37377. height: math.unit(2.4, "meters"),
  37378. weight: math.unit(125, "kg"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/lilith/front.svg",
  37382. extra: 1590/1513,
  37383. bottom: 203/1793
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Humanoid",
  37390. height: math.unit(2.4, "meters")
  37391. },
  37392. {
  37393. name: "Normal",
  37394. height: math.unit(6, "meters"),
  37395. default: true
  37396. },
  37397. {
  37398. name: "Largest",
  37399. height: math.unit(55, "meters")
  37400. },
  37401. ]
  37402. ))
  37403. characterMakers.push(() => makeCharacter(
  37404. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37405. {
  37406. front: {
  37407. height: math.unit(8 + 4/12, "feet"),
  37408. weight: math.unit(535, "lb"),
  37409. name: "Front",
  37410. image: {
  37411. source: "./media/characters/beh'kah-bolger/front.svg",
  37412. extra: 1660/1603,
  37413. bottom: 37/1697
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Normal",
  37420. height: math.unit(8 + 4/12, "feet"),
  37421. default: true
  37422. },
  37423. {
  37424. name: "Kaiju",
  37425. height: math.unit(250, "feet")
  37426. },
  37427. {
  37428. name: "Still Growing",
  37429. height: math.unit(10, "miles")
  37430. },
  37431. {
  37432. name: "Continental",
  37433. height: math.unit(5000, "miles")
  37434. },
  37435. {
  37436. name: "Final Form",
  37437. height: math.unit(2500000, "miles")
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37443. {
  37444. front: {
  37445. height: math.unit(7 + 2/12, "feet"),
  37446. weight: math.unit(230, "kg"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/tatyana-milewska/front.svg",
  37450. extra: 1199/1150,
  37451. bottom: 86/1285
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(7 + 2/12, "feet"),
  37459. default: true
  37460. },
  37461. {
  37462. name: "Big",
  37463. height: math.unit(12, "feet")
  37464. },
  37465. {
  37466. name: "Minimacro",
  37467. height: math.unit(20, "feet")
  37468. },
  37469. {
  37470. name: "Macro",
  37471. height: math.unit(120, "feet")
  37472. },
  37473. ]
  37474. ))
  37475. characterMakers.push(() => makeCharacter(
  37476. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37477. {
  37478. front: {
  37479. height: math.unit(7 + 8/12, "feet"),
  37480. weight: math.unit(152, "kg"),
  37481. name: "Front",
  37482. image: {
  37483. source: "./media/characters/helen-arri/front.svg",
  37484. extra: 440/423,
  37485. bottom: 14/454
  37486. }
  37487. },
  37488. back: {
  37489. height: math.unit(7 + 8/12, "feet"),
  37490. weight: math.unit(152, "kg"),
  37491. name: "Back",
  37492. image: {
  37493. source: "./media/characters/helen-arri/back.svg",
  37494. extra: 443/426,
  37495. bottom: 8/451
  37496. }
  37497. },
  37498. },
  37499. [
  37500. {
  37501. name: "Normal",
  37502. height: math.unit(7 + 8/12, "feet"),
  37503. default: true
  37504. },
  37505. {
  37506. name: "Big",
  37507. height: math.unit(14, "feet")
  37508. },
  37509. {
  37510. name: "Minimacro",
  37511. height: math.unit(24, "feet")
  37512. },
  37513. {
  37514. name: "Macro",
  37515. height: math.unit(140, "feet")
  37516. },
  37517. ]
  37518. ))
  37519. characterMakers.push(() => makeCharacter(
  37520. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37521. {
  37522. front: {
  37523. height: math.unit(6, "meters"),
  37524. name: "Front",
  37525. image: {
  37526. source: "./media/characters/ehanu-rehu/front.svg",
  37527. extra: 1800/1800,
  37528. bottom: 59/1859
  37529. }
  37530. },
  37531. },
  37532. [
  37533. {
  37534. name: "Normal",
  37535. height: math.unit(6, "meters"),
  37536. default: true
  37537. },
  37538. ]
  37539. ))
  37540. characterMakers.push(() => makeCharacter(
  37541. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37542. {
  37543. front: {
  37544. height: math.unit(7 + 3/12, "feet"),
  37545. name: "Front",
  37546. image: {
  37547. source: "./media/characters/renholder/front.svg",
  37548. extra: 3096/2960,
  37549. bottom: 250/3346
  37550. }
  37551. },
  37552. },
  37553. [
  37554. {
  37555. name: "Normal Bat",
  37556. height: math.unit(7 + 3/12, "feet"),
  37557. default: true
  37558. },
  37559. {
  37560. name: "Slightly Tall Bat",
  37561. height: math.unit(100, "feet")
  37562. },
  37563. {
  37564. name: "Big Bat",
  37565. height: math.unit(1000, "feet")
  37566. },
  37567. {
  37568. name: "City-Sized Bat",
  37569. height: math.unit(200000, "feet")
  37570. },
  37571. {
  37572. name: "Bigger Bat",
  37573. height: math.unit(10000, "miles")
  37574. },
  37575. {
  37576. name: "Solar Sized Bat",
  37577. height: math.unit(100, "AU")
  37578. },
  37579. {
  37580. name: "Galactic Bat",
  37581. height: math.unit(200000, "lightyears")
  37582. },
  37583. {
  37584. name: "Universally Known Bat",
  37585. height: math.unit(1, "universe")
  37586. },
  37587. ]
  37588. ))
  37589. characterMakers.push(() => makeCharacter(
  37590. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37591. {
  37592. front: {
  37593. height: math.unit(6 + 11/12, "feet"),
  37594. weight: math.unit(250, "lb"),
  37595. name: "Front",
  37596. image: {
  37597. source: "./media/characters/cookiecat/front.svg",
  37598. extra: 893/827,
  37599. bottom: 14/907
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Micro",
  37606. height: math.unit(3, "inches")
  37607. },
  37608. {
  37609. name: "Normal",
  37610. height: math.unit(6 + 11/12, "feet"),
  37611. default: true
  37612. },
  37613. {
  37614. name: "Macro",
  37615. height: math.unit(100, "feet")
  37616. },
  37617. {
  37618. name: "Macro+",
  37619. height: math.unit(404, "feet")
  37620. },
  37621. {
  37622. name: "Megamacro",
  37623. height: math.unit(165, "miles")
  37624. },
  37625. {
  37626. name: "Planetary",
  37627. height: math.unit(4600, "miles")
  37628. },
  37629. ]
  37630. ))
  37631. characterMakers.push(() => makeCharacter(
  37632. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37633. {
  37634. front: {
  37635. height: math.unit(10 + 3/12, "feet"),
  37636. weight: math.unit(1500, "lb"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/tux-kusanagi/front.svg",
  37640. extra: 944/840,
  37641. bottom: 39/983
  37642. }
  37643. },
  37644. back: {
  37645. height: math.unit(10 + 3/12, "feet"),
  37646. weight: math.unit(1500, "lb"),
  37647. name: "Back",
  37648. image: {
  37649. source: "./media/characters/tux-kusanagi/back.svg",
  37650. extra: 941/842,
  37651. bottom: 28/969
  37652. }
  37653. },
  37654. rump: {
  37655. height: math.unit(5.25, "feet"),
  37656. name: "Rump",
  37657. image: {
  37658. source: "./media/characters/tux-kusanagi/rump.svg"
  37659. }
  37660. },
  37661. beak: {
  37662. height: math.unit(1.54, "feet"),
  37663. name: "Beak",
  37664. image: {
  37665. source: "./media/characters/tux-kusanagi/beak.svg"
  37666. }
  37667. },
  37668. },
  37669. [
  37670. {
  37671. name: "Normal",
  37672. height: math.unit(10 + 3/12, "feet"),
  37673. default: true
  37674. },
  37675. ]
  37676. ))
  37677. characterMakers.push(() => makeCharacter(
  37678. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37679. {
  37680. front: {
  37681. height: math.unit(58, "feet"),
  37682. weight: math.unit(200, "tons"),
  37683. name: "Front",
  37684. image: {
  37685. source: "./media/characters/uzarmazari/front.svg",
  37686. extra: 1575/1455,
  37687. bottom: 152/1727
  37688. }
  37689. },
  37690. back: {
  37691. height: math.unit(58, "feet"),
  37692. weight: math.unit(200, "tons"),
  37693. name: "Back",
  37694. image: {
  37695. source: "./media/characters/uzarmazari/back.svg",
  37696. extra: 1585/1510,
  37697. bottom: 157/1742
  37698. }
  37699. },
  37700. head: {
  37701. height: math.unit(26, "feet"),
  37702. name: "Head",
  37703. image: {
  37704. source: "./media/characters/uzarmazari/head.svg"
  37705. }
  37706. },
  37707. },
  37708. [
  37709. {
  37710. name: "Normal",
  37711. height: math.unit(58, "feet"),
  37712. default: true
  37713. },
  37714. ]
  37715. ))
  37716. characterMakers.push(() => makeCharacter(
  37717. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37718. {
  37719. side: {
  37720. height: math.unit(15, "feet"),
  37721. name: "Side",
  37722. image: {
  37723. source: "./media/characters/akitu/side.svg",
  37724. extra: 1421/1321,
  37725. bottom: 157/1578
  37726. }
  37727. },
  37728. front: {
  37729. height: math.unit(15, "feet"),
  37730. name: "Front",
  37731. image: {
  37732. source: "./media/characters/akitu/front.svg",
  37733. extra: 1435/1326,
  37734. bottom: 232/1667
  37735. }
  37736. },
  37737. },
  37738. [
  37739. {
  37740. name: "Normal",
  37741. height: math.unit(15, "feet"),
  37742. default: true
  37743. },
  37744. ]
  37745. ))
  37746. characterMakers.push(() => makeCharacter(
  37747. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37748. {
  37749. front: {
  37750. height: math.unit(10 + 8/12, "feet"),
  37751. name: "Front",
  37752. image: {
  37753. source: "./media/characters/azalie-croixland/front.svg",
  37754. extra: 1972/1856,
  37755. bottom: 31/2003
  37756. }
  37757. },
  37758. },
  37759. [
  37760. {
  37761. name: "Original Height",
  37762. height: math.unit(5 + 4/12, "feet")
  37763. },
  37764. {
  37765. name: "Normal Height",
  37766. height: math.unit(10 + 8/12, "feet"),
  37767. default: true
  37768. },
  37769. ]
  37770. ))
  37771. characterMakers.push(() => makeCharacter(
  37772. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37773. {
  37774. side: {
  37775. height: math.unit(7 + 1/12, "feet"),
  37776. weight: math.unit(245, "lb"),
  37777. name: "Side",
  37778. image: {
  37779. source: "./media/characters/kavus-kazian/side.svg",
  37780. extra: 349/342,
  37781. bottom: 15/364
  37782. }
  37783. },
  37784. },
  37785. [
  37786. {
  37787. name: "Normal",
  37788. height: math.unit(7 + 1/12, "feet"),
  37789. default: true
  37790. },
  37791. ]
  37792. ))
  37793. characterMakers.push(() => makeCharacter(
  37794. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37795. {
  37796. normalFront: {
  37797. height: math.unit(5 + 11/12, "feet"),
  37798. name: "Front",
  37799. image: {
  37800. source: "./media/characters/moonlight-rose/normal-front.svg",
  37801. extra: 1980/1825,
  37802. bottom: 18/1998
  37803. },
  37804. form: "normal",
  37805. default: true
  37806. },
  37807. normalBack: {
  37808. height: math.unit(5 + 11/12, "feet"),
  37809. name: "Back",
  37810. image: {
  37811. source: "./media/characters/moonlight-rose/normal-back.svg",
  37812. extra: 2010/1839,
  37813. bottom: 10/2020
  37814. },
  37815. form: "normal"
  37816. },
  37817. demonFront: {
  37818. height: math.unit(1.5, "earths"),
  37819. name: "Front",
  37820. image: {
  37821. source: "./media/characters/moonlight-rose/demon.svg",
  37822. extra: 1400/1294,
  37823. bottom: 45/1445
  37824. },
  37825. form: "demon",
  37826. default: true
  37827. },
  37828. terraFront: {
  37829. height: math.unit(1.5, "earths"),
  37830. name: "Front",
  37831. image: {
  37832. source: "./media/characters/moonlight-rose/terra.svg"
  37833. },
  37834. form: "terra",
  37835. default: true
  37836. },
  37837. jupiterFront: {
  37838. height: math.unit(69911*2, "km"),
  37839. name: "Front",
  37840. image: {
  37841. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37842. extra: 1367/1286,
  37843. bottom: 55/1422
  37844. },
  37845. form: "jupiter",
  37846. default: true
  37847. },
  37848. neptuneFront: {
  37849. height: math.unit(24622*2, "feet"),
  37850. name: "Front",
  37851. image: {
  37852. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37853. extra: 1851/1712,
  37854. bottom: 0/1851
  37855. },
  37856. form: "neptune",
  37857. default: true
  37858. },
  37859. },
  37860. [
  37861. {
  37862. name: "\"Natural\" Height",
  37863. height: math.unit(5 + 11/12, "feet"),
  37864. form: "normal"
  37865. },
  37866. {
  37867. name: "Smallest comfortable size",
  37868. height: math.unit(40, "meters"),
  37869. form: "normal"
  37870. },
  37871. {
  37872. name: "Common size",
  37873. height: math.unit(50, "km"),
  37874. form: "normal",
  37875. default: true
  37876. },
  37877. {
  37878. name: "Normal",
  37879. height: math.unit(1.5, "earths"),
  37880. form: "demon",
  37881. default: true
  37882. },
  37883. {
  37884. name: "Universal",
  37885. height: math.unit(15, "universes"),
  37886. form: "demon"
  37887. },
  37888. {
  37889. name: "Earth",
  37890. height: math.unit(1.5, "earths"),
  37891. form: "terra",
  37892. default: true
  37893. },
  37894. {
  37895. name: "Super Earth",
  37896. height: math.unit(67.5, "earths"),
  37897. form: "terra"
  37898. },
  37899. {
  37900. name: "Doesn't fit in a solar system...",
  37901. height: math.unit(1, "galaxy"),
  37902. form: "terra"
  37903. },
  37904. {
  37905. name: "Saturn",
  37906. height: math.unit(58232*2, "km"),
  37907. form: "jupiter"
  37908. },
  37909. {
  37910. name: "Jupiter",
  37911. height: math.unit(69911*2, "km"),
  37912. form: "jupiter",
  37913. default: true
  37914. },
  37915. {
  37916. name: "HD 100546 b",
  37917. height: math.unit(482938, "km"),
  37918. form: "jupiter"
  37919. },
  37920. {
  37921. name: "Enceladus",
  37922. height: math.unit(513*2, "km"),
  37923. form: "neptune"
  37924. },
  37925. {
  37926. name: "Europe",
  37927. height: math.unit(1560*2, "km"),
  37928. form: "neptune"
  37929. },
  37930. {
  37931. name: "Neptune",
  37932. height: math.unit(24622*2, "km"),
  37933. form: "neptune",
  37934. default: true
  37935. },
  37936. {
  37937. name: "CoRoT-9b",
  37938. height: math.unit(75067*2, "km"),
  37939. form: "neptune"
  37940. },
  37941. ],
  37942. {
  37943. "normal": {
  37944. name: "Normal",
  37945. default: true
  37946. },
  37947. "demon": {
  37948. name: "Demon"
  37949. },
  37950. "terra": {
  37951. name: "Terra"
  37952. },
  37953. "jupiter": {
  37954. name: "Jupiter"
  37955. },
  37956. "neptune": {
  37957. name: "Neptune"
  37958. }
  37959. }
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(16, "feet"),
  37966. weight: math.unit(610, "kg"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/huckle/front.svg",
  37970. extra: 1731/1625,
  37971. bottom: 33/1764
  37972. }
  37973. },
  37974. back: {
  37975. height: math.unit(16, "feet"),
  37976. weight: math.unit(610, "kg"),
  37977. name: "Back",
  37978. image: {
  37979. source: "./media/characters/huckle/back.svg",
  37980. extra: 1738/1651,
  37981. bottom: 37/1775
  37982. }
  37983. },
  37984. laughing: {
  37985. height: math.unit(3.75, "feet"),
  37986. name: "Laughing",
  37987. image: {
  37988. source: "./media/characters/huckle/laughing.svg"
  37989. }
  37990. },
  37991. angry: {
  37992. height: math.unit(4.15, "feet"),
  37993. name: "Angry",
  37994. image: {
  37995. source: "./media/characters/huckle/angry.svg"
  37996. }
  37997. },
  37998. },
  37999. [
  38000. {
  38001. name: "Normal",
  38002. height: math.unit(16, "feet"),
  38003. default: true
  38004. },
  38005. {
  38006. name: "Mini Macro",
  38007. height: math.unit(463, "feet")
  38008. },
  38009. {
  38010. name: "Macro",
  38011. height: math.unit(1680, "meters")
  38012. },
  38013. {
  38014. name: "Mega Macro",
  38015. height: math.unit(175, "km")
  38016. },
  38017. {
  38018. name: "Terra Macro",
  38019. height: math.unit(32, "gigameters")
  38020. },
  38021. {
  38022. name: "Multiverse+",
  38023. height: math.unit(2.56e23, "yottameters")
  38024. },
  38025. ]
  38026. ))
  38027. characterMakers.push(() => makeCharacter(
  38028. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38029. {
  38030. front: {
  38031. height: math.unit(6 + 9/12, "feet"),
  38032. weight: math.unit(280, "lb"),
  38033. name: "Front",
  38034. image: {
  38035. source: "./media/characters/candy/front.svg",
  38036. extra: 234/217,
  38037. bottom: 11/245
  38038. }
  38039. },
  38040. },
  38041. [
  38042. {
  38043. name: "Really Small",
  38044. height: math.unit(0.1, "nm")
  38045. },
  38046. {
  38047. name: "Micro",
  38048. height: math.unit(2, "inches")
  38049. },
  38050. {
  38051. name: "Normal",
  38052. height: math.unit(6 + 9/12, "feet"),
  38053. default: true
  38054. },
  38055. {
  38056. name: "Small Macro",
  38057. height: math.unit(69, "feet")
  38058. },
  38059. {
  38060. name: "Macro",
  38061. height: math.unit(160, "feet")
  38062. },
  38063. {
  38064. name: "Megamacro",
  38065. height: math.unit(22000, "miles")
  38066. },
  38067. {
  38068. name: "Gigamacro",
  38069. height: math.unit(50000, "miles")
  38070. },
  38071. ]
  38072. ))
  38073. characterMakers.push(() => makeCharacter(
  38074. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38075. {
  38076. front: {
  38077. height: math.unit(4, "feet"),
  38078. weight: math.unit(90, "lb"),
  38079. name: "Front",
  38080. image: {
  38081. source: "./media/characters/joey-mcdonald/front.svg",
  38082. extra: 1059/852,
  38083. bottom: 33/1092
  38084. }
  38085. },
  38086. back: {
  38087. height: math.unit(4, "feet"),
  38088. weight: math.unit(90, "lb"),
  38089. name: "Back",
  38090. image: {
  38091. source: "./media/characters/joey-mcdonald/back.svg",
  38092. extra: 1077/879,
  38093. bottom: 5/1082
  38094. }
  38095. },
  38096. frontKobold: {
  38097. height: math.unit(4, "feet"),
  38098. weight: math.unit(100, "lb"),
  38099. name: "Front-kobold",
  38100. image: {
  38101. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38102. extra: 1480/1367,
  38103. bottom: 0/1480
  38104. }
  38105. },
  38106. backKobold: {
  38107. height: math.unit(4, "feet"),
  38108. weight: math.unit(100, "lb"),
  38109. name: "Back-kobold",
  38110. image: {
  38111. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38112. extra: 1449/1361,
  38113. bottom: 0/1449
  38114. }
  38115. },
  38116. },
  38117. [
  38118. {
  38119. name: "Normal",
  38120. height: math.unit(4, "feet"),
  38121. default: true
  38122. },
  38123. ]
  38124. ))
  38125. characterMakers.push(() => makeCharacter(
  38126. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38127. {
  38128. front: {
  38129. height: math.unit(12 + 6/12, "feet"),
  38130. name: "Front",
  38131. image: {
  38132. source: "./media/characters/kass-lockheed/front.svg",
  38133. extra: 354/343,
  38134. bottom: 9/363
  38135. }
  38136. },
  38137. back: {
  38138. height: math.unit(12 + 6/12, "feet"),
  38139. name: "Back",
  38140. image: {
  38141. source: "./media/characters/kass-lockheed/back.svg",
  38142. extra: 364/352,
  38143. bottom: 3/367
  38144. }
  38145. },
  38146. dick: {
  38147. height: math.unit(3.12, "feet"),
  38148. name: "Dick",
  38149. image: {
  38150. source: "./media/characters/kass-lockheed/dick.svg"
  38151. }
  38152. },
  38153. head: {
  38154. height: math.unit(2.6, "feet"),
  38155. name: "Head",
  38156. image: {
  38157. source: "./media/characters/kass-lockheed/head.svg"
  38158. }
  38159. },
  38160. bleh: {
  38161. height: math.unit(2.85, "feet"),
  38162. name: "Bleh",
  38163. image: {
  38164. source: "./media/characters/kass-lockheed/bleh.svg"
  38165. }
  38166. },
  38167. smug: {
  38168. height: math.unit(2.85, "feet"),
  38169. name: "Smug",
  38170. image: {
  38171. source: "./media/characters/kass-lockheed/smug.svg"
  38172. }
  38173. },
  38174. },
  38175. [
  38176. {
  38177. name: "Normal",
  38178. height: math.unit(12 + 6/12, "feet"),
  38179. default: true
  38180. },
  38181. ]
  38182. ))
  38183. characterMakers.push(() => makeCharacter(
  38184. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38185. {
  38186. front: {
  38187. height: math.unit(6 + 2/12, "feet"),
  38188. name: "Front",
  38189. image: {
  38190. source: "./media/characters/taylor/front.svg",
  38191. extra: 639/495,
  38192. bottom: 12/651
  38193. }
  38194. },
  38195. },
  38196. [
  38197. {
  38198. name: "Normal",
  38199. height: math.unit(6 + 2/12, "feet"),
  38200. default: true
  38201. },
  38202. {
  38203. name: "Big",
  38204. height: math.unit(15, "feet")
  38205. },
  38206. {
  38207. name: "Lorg",
  38208. height: math.unit(80, "feet")
  38209. },
  38210. {
  38211. name: "Too Lorg",
  38212. height: math.unit(120, "feet")
  38213. },
  38214. ]
  38215. ))
  38216. characterMakers.push(() => makeCharacter(
  38217. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38218. {
  38219. front: {
  38220. height: math.unit(15, "feet"),
  38221. name: "Front",
  38222. image: {
  38223. source: "./media/characters/kaizer/front.svg",
  38224. extra: 1612/1436,
  38225. bottom: 43/1655
  38226. }
  38227. },
  38228. },
  38229. [
  38230. {
  38231. name: "Normal",
  38232. height: math.unit(15, "feet"),
  38233. default: true
  38234. },
  38235. ]
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(2, "feet"),
  38242. weight: math.unit(30, "lb"),
  38243. name: "Front",
  38244. image: {
  38245. source: "./media/characters/sandy/front.svg",
  38246. extra: 1439/1307,
  38247. bottom: 194/1633
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(2, "feet"),
  38255. default: true
  38256. },
  38257. ]
  38258. ))
  38259. characterMakers.push(() => makeCharacter(
  38260. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38261. {
  38262. front: {
  38263. height: math.unit(3, "feet"),
  38264. name: "Front",
  38265. image: {
  38266. source: "./media/characters/mellvi/front.svg",
  38267. extra: 1831/1630,
  38268. bottom: 58/1889
  38269. }
  38270. },
  38271. },
  38272. [
  38273. {
  38274. name: "Normal",
  38275. height: math.unit(3, "feet"),
  38276. default: true
  38277. },
  38278. ]
  38279. ))
  38280. characterMakers.push(() => makeCharacter(
  38281. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38282. {
  38283. front: {
  38284. height: math.unit(5 + 11/12, "feet"),
  38285. weight: math.unit(200, "lb"),
  38286. name: "Front",
  38287. image: {
  38288. source: "./media/characters/shirou/front.svg",
  38289. extra: 2491/2383,
  38290. bottom: 189/2680
  38291. }
  38292. },
  38293. back: {
  38294. height: math.unit(5 + 11/12, "feet"),
  38295. weight: math.unit(200, "lb"),
  38296. name: "Back",
  38297. image: {
  38298. source: "./media/characters/shirou/back.svg",
  38299. extra: 2554/2450,
  38300. bottom: 76/2630
  38301. }
  38302. },
  38303. },
  38304. [
  38305. {
  38306. name: "Normal",
  38307. height: math.unit(5 + 11/12, "feet"),
  38308. default: true
  38309. },
  38310. ]
  38311. ))
  38312. characterMakers.push(() => makeCharacter(
  38313. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38314. {
  38315. front: {
  38316. height: math.unit(6 + 3/12, "feet"),
  38317. weight: math.unit(177, "lb"),
  38318. name: "Front",
  38319. image: {
  38320. source: "./media/characters/noryu/front.svg",
  38321. extra: 973/885,
  38322. bottom: 10/983
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Normal",
  38329. height: math.unit(6 + 3/12, "feet"),
  38330. default: true
  38331. },
  38332. ]
  38333. ))
  38334. characterMakers.push(() => makeCharacter(
  38335. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38336. {
  38337. front: {
  38338. height: math.unit(5 + 6/12, "feet"),
  38339. weight: math.unit(170, "lb"),
  38340. name: "Front",
  38341. image: {
  38342. source: "./media/characters/mevolas-rubenido/front.svg",
  38343. extra: 2109/1901,
  38344. bottom: 96/2205
  38345. }
  38346. },
  38347. },
  38348. [
  38349. {
  38350. name: "Normal",
  38351. height: math.unit(5 + 6/12, "feet"),
  38352. default: true
  38353. },
  38354. ]
  38355. ))
  38356. characterMakers.push(() => makeCharacter(
  38357. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38358. {
  38359. front: {
  38360. height: math.unit(100, "feet"),
  38361. name: "Front",
  38362. image: {
  38363. source: "./media/characters/dee/front.svg",
  38364. extra: 2153/2036,
  38365. bottom: 59/2212
  38366. }
  38367. },
  38368. back: {
  38369. height: math.unit(100, "feet"),
  38370. name: "Back",
  38371. image: {
  38372. source: "./media/characters/dee/back.svg",
  38373. extra: 2183/2058,
  38374. bottom: 75/2258
  38375. }
  38376. },
  38377. foot: {
  38378. height: math.unit(19.43, "feet"),
  38379. name: "Foot",
  38380. image: {
  38381. source: "./media/characters/dee/foot.svg"
  38382. }
  38383. },
  38384. hoof: {
  38385. height: math.unit(20.6, "feet"),
  38386. name: "Hoof",
  38387. image: {
  38388. source: "./media/characters/dee/hoof.svg"
  38389. }
  38390. },
  38391. },
  38392. [
  38393. {
  38394. name: "Macro",
  38395. height: math.unit(100, "feet"),
  38396. default: true
  38397. },
  38398. ]
  38399. ))
  38400. characterMakers.push(() => makeCharacter(
  38401. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38402. {
  38403. front: {
  38404. height: math.unit(5 + 6/12, "feet"),
  38405. name: "Front",
  38406. image: {
  38407. source: "./media/characters/teh/front.svg",
  38408. extra: 1002/847,
  38409. bottom: 62/1064
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Normal",
  38416. height: math.unit(5 + 6/12, "feet"),
  38417. default: true
  38418. },
  38419. ]
  38420. ))
  38421. characterMakers.push(() => makeCharacter(
  38422. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38423. {
  38424. side: {
  38425. height: math.unit(6 + 1/12, "feet"),
  38426. weight: math.unit(204, "lb"),
  38427. name: "Side",
  38428. image: {
  38429. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38430. extra: 974/775,
  38431. bottom: 169/1143
  38432. }
  38433. },
  38434. sitting: {
  38435. height: math.unit(6 + 2/12, "feet"),
  38436. weight: math.unit(204, "lb"),
  38437. name: "Sitting",
  38438. image: {
  38439. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38440. extra: 1175/964,
  38441. bottom: 378/1553
  38442. }
  38443. },
  38444. },
  38445. [
  38446. {
  38447. name: "Normal",
  38448. height: math.unit(6 + 1/12, "feet"),
  38449. default: true
  38450. },
  38451. ]
  38452. ))
  38453. characterMakers.push(() => makeCharacter(
  38454. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38455. {
  38456. front: {
  38457. height: math.unit(6, "inches"),
  38458. name: "Front",
  38459. image: {
  38460. source: "./media/characters/tululi/front.svg",
  38461. extra: 1997/1876,
  38462. bottom: 20/2017
  38463. }
  38464. },
  38465. },
  38466. [
  38467. {
  38468. name: "Normal",
  38469. height: math.unit(6, "inches"),
  38470. default: true
  38471. },
  38472. ]
  38473. ))
  38474. characterMakers.push(() => makeCharacter(
  38475. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38476. {
  38477. front: {
  38478. height: math.unit(4 + 1/12, "feet"),
  38479. name: "Front",
  38480. image: {
  38481. source: "./media/characters/star/front.svg",
  38482. extra: 1493/1189,
  38483. bottom: 48/1541
  38484. }
  38485. },
  38486. },
  38487. [
  38488. {
  38489. name: "Normal",
  38490. height: math.unit(4 + 1/12, "feet"),
  38491. default: true
  38492. },
  38493. ]
  38494. ))
  38495. characterMakers.push(() => makeCharacter(
  38496. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38497. {
  38498. front: {
  38499. height: math.unit(6 + 3/12, "feet"),
  38500. name: "Front",
  38501. image: {
  38502. source: "./media/characters/comet/front.svg",
  38503. extra: 1681/1462,
  38504. bottom: 26/1707
  38505. }
  38506. },
  38507. },
  38508. [
  38509. {
  38510. name: "Normal",
  38511. height: math.unit(6 + 3/12, "feet"),
  38512. default: true
  38513. },
  38514. ]
  38515. ))
  38516. characterMakers.push(() => makeCharacter(
  38517. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38518. {
  38519. front: {
  38520. height: math.unit(950, "feet"),
  38521. name: "Front",
  38522. image: {
  38523. source: "./media/characters/vortex/front.svg",
  38524. extra: 1497/1434,
  38525. bottom: 56/1553
  38526. }
  38527. },
  38528. maw: {
  38529. height: math.unit(285, "feet"),
  38530. name: "Maw",
  38531. image: {
  38532. source: "./media/characters/vortex/maw.svg"
  38533. }
  38534. },
  38535. },
  38536. [
  38537. {
  38538. name: "Macro",
  38539. height: math.unit(950, "feet"),
  38540. default: true
  38541. },
  38542. ]
  38543. ))
  38544. characterMakers.push(() => makeCharacter(
  38545. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38546. {
  38547. front: {
  38548. height: math.unit(600, "feet"),
  38549. weight: math.unit(0.02, "grams"),
  38550. name: "Front",
  38551. image: {
  38552. source: "./media/characters/doodle/front.svg",
  38553. extra: 1578/1413,
  38554. bottom: 37/1615
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Macro",
  38561. height: math.unit(600, "feet"),
  38562. default: true
  38563. },
  38564. ]
  38565. ))
  38566. characterMakers.push(() => makeCharacter(
  38567. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38568. {
  38569. front: {
  38570. height: math.unit(6 + 6/12, "feet"),
  38571. name: "Front",
  38572. image: {
  38573. source: "./media/characters/jai/front.svg",
  38574. extra: 1645/1534,
  38575. bottom: 115/1760
  38576. }
  38577. },
  38578. },
  38579. [
  38580. {
  38581. name: "Normal",
  38582. height: math.unit(6 + 6/12, "feet"),
  38583. default: true
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38589. {
  38590. front: {
  38591. height: math.unit(6 + 8/12, "feet"),
  38592. name: "Front",
  38593. image: {
  38594. source: "./media/characters/pixel/front.svg",
  38595. extra: 1900/1735,
  38596. bottom: 63/1963
  38597. }
  38598. },
  38599. },
  38600. [
  38601. {
  38602. name: "Normal",
  38603. height: math.unit(6 + 8/12, "feet"),
  38604. default: true
  38605. },
  38606. ]
  38607. ))
  38608. characterMakers.push(() => makeCharacter(
  38609. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38610. {
  38611. back: {
  38612. height: math.unit(4 + 1/12, "feet"),
  38613. weight: math.unit(75, "lb"),
  38614. name: "Back",
  38615. image: {
  38616. source: "./media/characters/rhett/back.svg",
  38617. extra: 930/878,
  38618. bottom: 25/955
  38619. }
  38620. },
  38621. front: {
  38622. height: math.unit(4 + 1/12, "feet"),
  38623. weight: math.unit(75, "lb"),
  38624. name: "Front",
  38625. image: {
  38626. source: "./media/characters/rhett/front.svg",
  38627. extra: 1682/1586,
  38628. bottom: 92/1774
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Micro",
  38635. height: math.unit(8, "inches")
  38636. },
  38637. {
  38638. name: "Tiny",
  38639. height: math.unit(2, "feet")
  38640. },
  38641. {
  38642. name: "Normal",
  38643. height: math.unit(4 + 1/12, "feet"),
  38644. default: true
  38645. },
  38646. ]
  38647. ))
  38648. characterMakers.push(() => makeCharacter(
  38649. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38650. {
  38651. front: {
  38652. height: math.unit(3 + 3/12, "feet"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/penny/front.svg",
  38656. extra: 1406/1311,
  38657. bottom: 26/1432
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Normal",
  38664. height: math.unit(3 + 3/12, "feet"),
  38665. default: true
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38671. {
  38672. front: {
  38673. height: math.unit(4 + 11/12, "feet"),
  38674. name: "Front",
  38675. image: {
  38676. source: "./media/characters/monty/front.svg",
  38677. extra: 1479/1209,
  38678. bottom: 0/1479
  38679. }
  38680. },
  38681. },
  38682. [
  38683. {
  38684. name: "Normal",
  38685. height: math.unit(4 + 11/12, "feet"),
  38686. default: true
  38687. },
  38688. ]
  38689. ))
  38690. characterMakers.push(() => makeCharacter(
  38691. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38692. {
  38693. front: {
  38694. height: math.unit(8 + 4/12, "feet"),
  38695. name: "Front",
  38696. image: {
  38697. source: "./media/characters/sterling/front.svg",
  38698. extra: 1420/1236,
  38699. bottom: 27/1447
  38700. }
  38701. },
  38702. },
  38703. [
  38704. {
  38705. name: "Normal",
  38706. height: math.unit(8 + 4/12, "feet"),
  38707. default: true
  38708. },
  38709. ]
  38710. ))
  38711. characterMakers.push(() => makeCharacter(
  38712. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38713. {
  38714. front: {
  38715. height: math.unit(15, "feet"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/marble/front.svg",
  38719. extra: 973/937,
  38720. bottom: 32/1005
  38721. }
  38722. },
  38723. },
  38724. [
  38725. {
  38726. name: "Normal",
  38727. height: math.unit(15, "feet"),
  38728. default: true
  38729. },
  38730. ]
  38731. ))
  38732. characterMakers.push(() => makeCharacter(
  38733. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38734. {
  38735. front: {
  38736. height: math.unit(3, "inches"),
  38737. name: "Front",
  38738. image: {
  38739. source: "./media/characters/powder/front.svg",
  38740. extra: 1504/1334,
  38741. bottom: 518/2022
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Normal",
  38748. height: math.unit(3, "inches"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38755. {
  38756. front: {
  38757. height: math.unit(4 + 5/12, "feet"),
  38758. name: "Front",
  38759. image: {
  38760. source: "./media/characters/joey-raccoon/front.svg",
  38761. extra: 1273/1197,
  38762. bottom: 0/1273
  38763. }
  38764. },
  38765. },
  38766. [
  38767. {
  38768. name: "Normal",
  38769. height: math.unit(4 + 5/12, "feet"),
  38770. default: true
  38771. },
  38772. ]
  38773. ))
  38774. characterMakers.push(() => makeCharacter(
  38775. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38776. {
  38777. front: {
  38778. height: math.unit(8 + 4/12, "feet"),
  38779. name: "Front",
  38780. image: {
  38781. source: "./media/characters/vick/front.svg",
  38782. extra: 2187/2118,
  38783. bottom: 47/2234
  38784. }
  38785. },
  38786. },
  38787. [
  38788. {
  38789. name: "Normal",
  38790. height: math.unit(8 + 4/12, "feet"),
  38791. default: true
  38792. },
  38793. ]
  38794. ))
  38795. characterMakers.push(() => makeCharacter(
  38796. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38797. {
  38798. front: {
  38799. height: math.unit(5 + 5/12, "feet"),
  38800. name: "Front",
  38801. image: {
  38802. source: "./media/characters/mitsy/front.svg",
  38803. extra: 1842/1695,
  38804. bottom: 0/1842
  38805. }
  38806. },
  38807. },
  38808. [
  38809. {
  38810. name: "Normal",
  38811. height: math.unit(5 + 5/12, "feet"),
  38812. default: true
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38818. {
  38819. front: {
  38820. height: math.unit(6 + 3/12, "feet"),
  38821. name: "Front",
  38822. image: {
  38823. source: "./media/characters/silvy/front.svg",
  38824. extra: 1995/1836,
  38825. bottom: 225/2220
  38826. }
  38827. },
  38828. },
  38829. [
  38830. {
  38831. name: "Normal",
  38832. height: math.unit(6 + 3/12, "feet"),
  38833. default: true
  38834. },
  38835. ]
  38836. ))
  38837. characterMakers.push(() => makeCharacter(
  38838. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38839. {
  38840. front: {
  38841. height: math.unit(3 + 8/12, "feet"),
  38842. name: "Front",
  38843. image: {
  38844. source: "./media/characters/rodney/front.svg",
  38845. extra: 1956/1747,
  38846. bottom: 31/1987
  38847. }
  38848. },
  38849. frontDressed: {
  38850. height: math.unit(2.9, "feet"),
  38851. name: "Front (Dressed)",
  38852. image: {
  38853. source: "./media/characters/rodney/front-dressed.svg",
  38854. extra: 1382/1241,
  38855. bottom: 385/1767
  38856. }
  38857. },
  38858. },
  38859. [
  38860. {
  38861. name: "Normal",
  38862. height: math.unit(3 + 8/12, "feet"),
  38863. default: true
  38864. },
  38865. ]
  38866. ))
  38867. characterMakers.push(() => makeCharacter(
  38868. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38869. {
  38870. front: {
  38871. height: math.unit(5 + 9/12, "feet"),
  38872. weight: math.unit(194, "lbs"),
  38873. name: "Front",
  38874. image: {
  38875. source: "./media/characters/zakail-sudekai/front.svg",
  38876. extra: 2696/2533,
  38877. bottom: 248/2944
  38878. }
  38879. },
  38880. maw: {
  38881. height: math.unit(1.35, "feet"),
  38882. name: "Maw",
  38883. image: {
  38884. source: "./media/characters/zakail-sudekai/maw.svg"
  38885. }
  38886. },
  38887. },
  38888. [
  38889. {
  38890. name: "Normal",
  38891. height: math.unit(5 + 9/12, "feet"),
  38892. default: true
  38893. },
  38894. ]
  38895. ))
  38896. characterMakers.push(() => makeCharacter(
  38897. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38898. {
  38899. front: {
  38900. height: math.unit(8 + 4/12, "feet"),
  38901. weight: math.unit(1200, "lb"),
  38902. name: "Front",
  38903. image: {
  38904. source: "./media/characters/eleanor/front.svg",
  38905. extra: 1226/1192,
  38906. bottom: 52/1278
  38907. }
  38908. },
  38909. back: {
  38910. height: math.unit(8 + 4/12, "feet"),
  38911. weight: math.unit(1200, "lb"),
  38912. name: "Back",
  38913. image: {
  38914. source: "./media/characters/eleanor/back.svg",
  38915. extra: 1242/1184,
  38916. bottom: 60/1302
  38917. }
  38918. },
  38919. head: {
  38920. height: math.unit(2.62, "feet"),
  38921. name: "Head",
  38922. image: {
  38923. source: "./media/characters/eleanor/head.svg"
  38924. }
  38925. },
  38926. },
  38927. [
  38928. {
  38929. name: "Normal",
  38930. height: math.unit(8 + 4/12, "feet"),
  38931. default: true
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38937. {
  38938. front: {
  38939. height: math.unit(8 + 4/12, "feet"),
  38940. weight: math.unit(750, "lb"),
  38941. name: "Front",
  38942. image: {
  38943. source: "./media/characters/tanya/front.svg",
  38944. extra: 1749/1615,
  38945. bottom: 33/1782
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Normal",
  38952. height: math.unit(8 + 4/12, "feet"),
  38953. default: true
  38954. },
  38955. ]
  38956. ))
  38957. characterMakers.push(() => makeCharacter(
  38958. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38959. {
  38960. front: {
  38961. height: math.unit(5, "feet"),
  38962. weight: math.unit(225, "lb"),
  38963. name: "Front",
  38964. image: {
  38965. source: "./media/characters/cindy/front.svg",
  38966. extra: 1320/1250,
  38967. bottom: 42/1362
  38968. }
  38969. },
  38970. frontDressed: {
  38971. height: math.unit(5, "feet"),
  38972. weight: math.unit(225, "lb"),
  38973. name: "Front (Dressed)",
  38974. image: {
  38975. source: "./media/characters/cindy/front-dressed.svg",
  38976. extra: 1320/1250,
  38977. bottom: 42/1362
  38978. }
  38979. },
  38980. back: {
  38981. height: math.unit(5, "feet"),
  38982. weight: math.unit(225, "lb"),
  38983. name: "Back",
  38984. image: {
  38985. source: "./media/characters/cindy/back.svg",
  38986. extra: 1384/1346,
  38987. bottom: 14/1398
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(5, "feet"),
  38995. default: true
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39001. {
  39002. front: {
  39003. height: math.unit(6 + 9/12, "feet"),
  39004. weight: math.unit(440, "lb"),
  39005. name: "Front",
  39006. image: {
  39007. source: "./media/characters/wilbur-owen/front.svg",
  39008. extra: 1575/1448,
  39009. bottom: 72/1647
  39010. }
  39011. },
  39012. back: {
  39013. height: math.unit(6 + 9/12, "feet"),
  39014. weight: math.unit(440, "lb"),
  39015. name: "Back",
  39016. image: {
  39017. source: "./media/characters/wilbur-owen/back.svg",
  39018. extra: 1578/1445,
  39019. bottom: 36/1614
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Normal",
  39026. height: math.unit(6 + 9/12, "feet"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(6 + 5/12, "feet"),
  39036. weight: math.unit(650, "lb"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/keegan/front.svg",
  39040. extra: 2387/2198,
  39041. bottom: 33/2420
  39042. }
  39043. },
  39044. side: {
  39045. height: math.unit(6 + 5/12, "feet"),
  39046. weight: math.unit(650, "lb"),
  39047. name: "Side",
  39048. image: {
  39049. source: "./media/characters/keegan/side.svg",
  39050. extra: 2390/2202,
  39051. bottom: 47/2437
  39052. }
  39053. },
  39054. back: {
  39055. height: math.unit(6 + 5/12, "feet"),
  39056. weight: math.unit(650, "lb"),
  39057. name: "Back",
  39058. image: {
  39059. source: "./media/characters/keegan/back.svg",
  39060. extra: 2418/2268,
  39061. bottom: 15/2433
  39062. }
  39063. },
  39064. frontSfw: {
  39065. height: math.unit(6 + 5/12, "feet"),
  39066. weight: math.unit(650, "lb"),
  39067. name: "Front (SFW)",
  39068. image: {
  39069. source: "./media/characters/keegan/front-sfw.svg",
  39070. extra: 2387/2198,
  39071. bottom: 33/2420
  39072. }
  39073. },
  39074. beans: {
  39075. height: math.unit(1.85, "feet"),
  39076. name: "Beans",
  39077. image: {
  39078. source: "./media/characters/keegan/beans.svg"
  39079. }
  39080. },
  39081. },
  39082. [
  39083. {
  39084. name: "Normal",
  39085. height: math.unit(6 + 5/12, "feet"),
  39086. default: true
  39087. },
  39088. ]
  39089. ))
  39090. characterMakers.push(() => makeCharacter(
  39091. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39092. {
  39093. front: {
  39094. height: math.unit(9, "feet"),
  39095. name: "Front",
  39096. image: {
  39097. source: "./media/characters/colton/front.svg",
  39098. extra: 1589/1326,
  39099. bottom: 139/1728
  39100. }
  39101. },
  39102. },
  39103. [
  39104. {
  39105. name: "Normal",
  39106. height: math.unit(9, "feet"),
  39107. default: true
  39108. },
  39109. ]
  39110. ))
  39111. characterMakers.push(() => makeCharacter(
  39112. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39113. {
  39114. front: {
  39115. height: math.unit(2 + 9/12, "feet"),
  39116. name: "Front",
  39117. image: {
  39118. source: "./media/characters/bora/front.svg",
  39119. extra: 1265/1250,
  39120. bottom: 24/1289
  39121. }
  39122. },
  39123. },
  39124. [
  39125. {
  39126. name: "Normal",
  39127. height: math.unit(2 + 9/12, "feet"),
  39128. default: true
  39129. },
  39130. ]
  39131. ))
  39132. characterMakers.push(() => makeCharacter(
  39133. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39134. {
  39135. front: {
  39136. height: math.unit(8, "feet"),
  39137. name: "Front",
  39138. image: {
  39139. source: "./media/characters/myu-myu/front.svg",
  39140. extra: 1949/1857,
  39141. bottom: 90/2039
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Normal",
  39148. height: math.unit(8, "feet"),
  39149. default: true
  39150. },
  39151. {
  39152. name: "Big",
  39153. height: math.unit(15, "feet")
  39154. },
  39155. {
  39156. name: "BIG",
  39157. height: math.unit(25, "feet")
  39158. },
  39159. ]
  39160. ))
  39161. characterMakers.push(() => makeCharacter(
  39162. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39163. {
  39164. side: {
  39165. height: math.unit(7 + 5/12, "feet"),
  39166. weight: math.unit(2800, "lb"),
  39167. name: "Side",
  39168. image: {
  39169. source: "./media/characters/haloren/side.svg",
  39170. extra: 1793/409,
  39171. bottom: 59/1852
  39172. }
  39173. },
  39174. frontPaw: {
  39175. height: math.unit(2.36, "feet"),
  39176. name: "Front paw",
  39177. image: {
  39178. source: "./media/characters/haloren/front-paw.svg"
  39179. }
  39180. },
  39181. hindPaw: {
  39182. height: math.unit(3.18, "feet"),
  39183. name: "Hind paw",
  39184. image: {
  39185. source: "./media/characters/haloren/hind-paw.svg"
  39186. }
  39187. },
  39188. maw: {
  39189. height: math.unit(5.05, "feet"),
  39190. name: "Maw",
  39191. image: {
  39192. source: "./media/characters/haloren/maw.svg"
  39193. }
  39194. },
  39195. dick: {
  39196. height: math.unit(2.90, "feet"),
  39197. name: "Dick",
  39198. image: {
  39199. source: "./media/characters/haloren/dick.svg"
  39200. }
  39201. },
  39202. },
  39203. [
  39204. {
  39205. name: "Normal",
  39206. height: math.unit(7 + 5/12, "feet"),
  39207. default: true
  39208. },
  39209. {
  39210. name: "Enhanced",
  39211. height: math.unit(14 + 3/12, "feet")
  39212. },
  39213. ]
  39214. ))
  39215. characterMakers.push(() => makeCharacter(
  39216. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39217. {
  39218. front: {
  39219. height: math.unit(171, "cm"),
  39220. name: "Front",
  39221. image: {
  39222. source: "./media/characters/kimmy/front.svg",
  39223. extra: 1491/1435,
  39224. bottom: 53/1544
  39225. }
  39226. },
  39227. },
  39228. [
  39229. {
  39230. name: "Small",
  39231. height: math.unit(9, "cm")
  39232. },
  39233. {
  39234. name: "Normal",
  39235. height: math.unit(171, "cm"),
  39236. default: true
  39237. },
  39238. ]
  39239. ))
  39240. characterMakers.push(() => makeCharacter(
  39241. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39242. {
  39243. front: {
  39244. height: math.unit(8, "feet"),
  39245. weight: math.unit(300, "lb"),
  39246. name: "Front",
  39247. image: {
  39248. source: "./media/characters/galeboomer/front.svg",
  39249. extra: 4651/4415,
  39250. bottom: 162/4813
  39251. }
  39252. },
  39253. back: {
  39254. height: math.unit(8, "feet"),
  39255. weight: math.unit(300, "lb"),
  39256. name: "Back",
  39257. image: {
  39258. source: "./media/characters/galeboomer/back.svg",
  39259. extra: 4544/4314,
  39260. bottom: 16/4560
  39261. }
  39262. },
  39263. frontAlt: {
  39264. height: math.unit(8, "feet"),
  39265. weight: math.unit(300, "lb"),
  39266. name: "Front (Alt)",
  39267. image: {
  39268. source: "./media/characters/galeboomer/front-alt.svg",
  39269. extra: 4458/4228,
  39270. bottom: 68/4526
  39271. }
  39272. },
  39273. maw: {
  39274. height: math.unit(1.2, "feet"),
  39275. name: "Maw",
  39276. image: {
  39277. source: "./media/characters/galeboomer/maw.svg"
  39278. }
  39279. },
  39280. },
  39281. [
  39282. {
  39283. name: "Normal",
  39284. height: math.unit(8, "feet"),
  39285. default: true
  39286. },
  39287. ]
  39288. ))
  39289. characterMakers.push(() => makeCharacter(
  39290. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39291. {
  39292. front: {
  39293. height: math.unit(5 + 9/12, "feet"),
  39294. weight: math.unit(120, "lb"),
  39295. name: "Front",
  39296. image: {
  39297. source: "./media/characters/chyr/front.svg",
  39298. extra: 1323/1254,
  39299. bottom: 63/1386
  39300. }
  39301. },
  39302. back: {
  39303. height: math.unit(5 + 9/12, "feet"),
  39304. weight: math.unit(120, "lb"),
  39305. name: "Back",
  39306. image: {
  39307. source: "./media/characters/chyr/back.svg",
  39308. extra: 1323/1252,
  39309. bottom: 48/1371
  39310. }
  39311. },
  39312. },
  39313. [
  39314. {
  39315. name: "Normal",
  39316. height: math.unit(5 + 9/12, "feet"),
  39317. default: true
  39318. },
  39319. ]
  39320. ))
  39321. characterMakers.push(() => makeCharacter(
  39322. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39323. {
  39324. front: {
  39325. height: math.unit(7, "feet"),
  39326. weight: math.unit(310, "lb"),
  39327. name: "Front",
  39328. image: {
  39329. source: "./media/characters/solarus/front.svg",
  39330. extra: 2415/2021,
  39331. bottom: 103/2518
  39332. }
  39333. },
  39334. back: {
  39335. height: math.unit(7, "feet"),
  39336. weight: math.unit(310, "lb"),
  39337. name: "Back",
  39338. image: {
  39339. source: "./media/characters/solarus/back.svg",
  39340. extra: 2463/2089,
  39341. bottom: 79/2542
  39342. }
  39343. },
  39344. },
  39345. [
  39346. {
  39347. name: "Normal",
  39348. height: math.unit(7, "feet"),
  39349. default: true
  39350. },
  39351. ]
  39352. ))
  39353. characterMakers.push(() => makeCharacter(
  39354. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39355. {
  39356. front: {
  39357. height: math.unit(16, "feet"),
  39358. name: "Front",
  39359. image: {
  39360. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39361. extra: 1844/1780,
  39362. bottom: 58/1902
  39363. }
  39364. },
  39365. winterCoat: {
  39366. height: math.unit(16, "feet"),
  39367. name: "Winter Coat",
  39368. image: {
  39369. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39370. extra: 1807/1775,
  39371. bottom: 69/1876
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "Normal",
  39378. height: math.unit(16, "feet"),
  39379. default: true
  39380. },
  39381. {
  39382. name: "Chicago Size",
  39383. height: math.unit(560, "feet")
  39384. },
  39385. ]
  39386. ))
  39387. characterMakers.push(() => makeCharacter(
  39388. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39389. {
  39390. front: {
  39391. height: math.unit(11 + 6/12, "feet"),
  39392. weight: math.unit(1366, "lb"),
  39393. name: "Front",
  39394. image: {
  39395. source: "./media/characters/lexor/front.svg",
  39396. extra: 1560/1481,
  39397. bottom: 211/1771
  39398. }
  39399. },
  39400. back: {
  39401. height: math.unit(11 + 6/12, "feet"),
  39402. weight: math.unit(1366, "lb"),
  39403. name: "Back",
  39404. image: {
  39405. source: "./media/characters/lexor/back.svg",
  39406. extra: 1614/1533,
  39407. bottom: 76/1690
  39408. }
  39409. },
  39410. maw: {
  39411. height: math.unit(3, "feet"),
  39412. name: "Maw",
  39413. image: {
  39414. source: "./media/characters/lexor/maw.svg"
  39415. }
  39416. },
  39417. dick: {
  39418. height: math.unit(2.59, "feet"),
  39419. name: "Dick",
  39420. image: {
  39421. source: "./media/characters/lexor/dick.svg"
  39422. }
  39423. },
  39424. },
  39425. [
  39426. {
  39427. name: "Normal",
  39428. height: math.unit(11 + 6/12, "feet"),
  39429. default: true
  39430. },
  39431. ]
  39432. ))
  39433. characterMakers.push(() => makeCharacter(
  39434. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39435. {
  39436. front: {
  39437. height: math.unit(5 + 8/12, "feet"),
  39438. name: "Front",
  39439. image: {
  39440. source: "./media/characters/magnum/front.svg",
  39441. extra: 942/855,
  39442. bottom: 26/968
  39443. }
  39444. },
  39445. },
  39446. [
  39447. {
  39448. name: "Normal",
  39449. height: math.unit(5 + 8/12, "feet"),
  39450. default: true
  39451. },
  39452. ]
  39453. ))
  39454. characterMakers.push(() => makeCharacter(
  39455. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39456. {
  39457. front: {
  39458. height: math.unit(18 + 4/12, "feet"),
  39459. weight: math.unit(1500, "kg"),
  39460. name: "Front",
  39461. image: {
  39462. source: "./media/characters/solas-sharpsman/front.svg",
  39463. extra: 1698/1589,
  39464. bottom: 0/1698
  39465. }
  39466. },
  39467. },
  39468. [
  39469. {
  39470. name: "Normal",
  39471. height: math.unit(18 + 4/12, "feet"),
  39472. default: true
  39473. },
  39474. ]
  39475. ))
  39476. characterMakers.push(() => makeCharacter(
  39477. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39478. {
  39479. front: {
  39480. height: math.unit(5 + 5/12, "feet"),
  39481. weight: math.unit(180, "lb"),
  39482. name: "Front",
  39483. image: {
  39484. source: "./media/characters/october/front.svg",
  39485. extra: 1800/1650,
  39486. bottom: 0/1800
  39487. }
  39488. },
  39489. frontNsfw: {
  39490. height: math.unit(5 + 5/12, "feet"),
  39491. weight: math.unit(180, "lb"),
  39492. name: "Front (NSFW)",
  39493. image: {
  39494. source: "./media/characters/october/front-nsfw.svg",
  39495. extra: 1392/1307,
  39496. bottom: 42/1434
  39497. }
  39498. },
  39499. },
  39500. [
  39501. {
  39502. name: "Normal",
  39503. height: math.unit(5 + 5/12, "feet"),
  39504. default: true
  39505. },
  39506. ]
  39507. ))
  39508. characterMakers.push(() => makeCharacter(
  39509. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39510. {
  39511. front: {
  39512. height: math.unit(8 + 6/12, "feet"),
  39513. name: "Front",
  39514. image: {
  39515. source: "./media/characters/essynkardi/front.svg",
  39516. extra: 1541/1457,
  39517. bottom: 47/1588
  39518. }
  39519. },
  39520. },
  39521. [
  39522. {
  39523. name: "Normal",
  39524. height: math.unit(8 + 6/12, "feet"),
  39525. default: true
  39526. },
  39527. ]
  39528. ))
  39529. characterMakers.push(() => makeCharacter(
  39530. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39531. {
  39532. front: {
  39533. height: math.unit(6 + 6/12, "feet"),
  39534. weight: math.unit(7, "lb"),
  39535. name: "Front",
  39536. image: {
  39537. source: "./media/characters/icky/front.svg",
  39538. extra: 813/782,
  39539. bottom: 66/879
  39540. }
  39541. },
  39542. back: {
  39543. height: math.unit(6 + 6/12, "feet"),
  39544. weight: math.unit(7, "lb"),
  39545. name: "Back",
  39546. image: {
  39547. source: "./media/characters/icky/back.svg",
  39548. extra: 754/735,
  39549. bottom: 56/810
  39550. }
  39551. },
  39552. },
  39553. [
  39554. {
  39555. name: "Normal",
  39556. height: math.unit(6 + 6/12, "feet"),
  39557. default: true
  39558. },
  39559. ]
  39560. ))
  39561. characterMakers.push(() => makeCharacter(
  39562. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39563. {
  39564. front: {
  39565. height: math.unit(15, "feet"),
  39566. name: "Front",
  39567. image: {
  39568. source: "./media/characters/rojas/front.svg",
  39569. extra: 1462/1408,
  39570. bottom: 95/1557
  39571. }
  39572. },
  39573. back: {
  39574. height: math.unit(15, "feet"),
  39575. name: "Back",
  39576. image: {
  39577. source: "./media/characters/rojas/back.svg",
  39578. extra: 1023/954,
  39579. bottom: 28/1051
  39580. }
  39581. },
  39582. },
  39583. [
  39584. {
  39585. name: "Normal",
  39586. height: math.unit(15, "feet"),
  39587. default: true
  39588. },
  39589. ]
  39590. ))
  39591. characterMakers.push(() => makeCharacter(
  39592. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39593. {
  39594. frontHuman: {
  39595. height: math.unit(5 + 7/12, "feet"),
  39596. name: "Front (Human)",
  39597. image: {
  39598. source: "./media/characters/alek-dryagan/front-human.svg",
  39599. extra: 1687/1667,
  39600. bottom: 69/1756
  39601. }
  39602. },
  39603. backHuman: {
  39604. height: math.unit(5 + 7/12, "feet"),
  39605. name: "Back (Human)",
  39606. image: {
  39607. source: "./media/characters/alek-dryagan/back-human.svg",
  39608. extra: 1670/1649,
  39609. bottom: 65/1735
  39610. }
  39611. },
  39612. frontDemi: {
  39613. height: math.unit(65, "feet"),
  39614. name: "Front (Demi)",
  39615. image: {
  39616. source: "./media/characters/alek-dryagan/front-demi.svg",
  39617. extra: 1669/1642,
  39618. bottom: 49/1718
  39619. }
  39620. },
  39621. backDemi: {
  39622. height: math.unit(65, "feet"),
  39623. name: "Back (Demi)",
  39624. image: {
  39625. source: "./media/characters/alek-dryagan/back-demi.svg",
  39626. extra: 1658/1637,
  39627. bottom: 40/1698
  39628. }
  39629. },
  39630. mawHuman: {
  39631. height: math.unit(0.3, "feet"),
  39632. name: "Maw (Human)",
  39633. image: {
  39634. source: "./media/characters/alek-dryagan/maw-human.svg"
  39635. }
  39636. },
  39637. mawDemi: {
  39638. height: math.unit(3.8, "feet"),
  39639. name: "Maw (Demi)",
  39640. image: {
  39641. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39642. }
  39643. },
  39644. },
  39645. [
  39646. {
  39647. name: "Normal",
  39648. height: math.unit(5 + 7/12, "feet"),
  39649. default: true
  39650. },
  39651. ]
  39652. ))
  39653. characterMakers.push(() => makeCharacter(
  39654. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39655. {
  39656. frontHuman: {
  39657. height: math.unit(5 + 2/12, "feet"),
  39658. name: "Front (Human)",
  39659. image: {
  39660. source: "./media/characters/gen/front-human.svg",
  39661. extra: 1627/1538,
  39662. bottom: 71/1698
  39663. }
  39664. },
  39665. backHuman: {
  39666. height: math.unit(5 + 2/12, "feet"),
  39667. name: "Back (Human)",
  39668. image: {
  39669. source: "./media/characters/gen/back-human.svg",
  39670. extra: 1638/1548,
  39671. bottom: 69/1707
  39672. }
  39673. },
  39674. frontDemi: {
  39675. height: math.unit(5 + 2/12, "feet"),
  39676. name: "Front (Demi)",
  39677. image: {
  39678. source: "./media/characters/gen/front-demi.svg",
  39679. extra: 1627/1538,
  39680. bottom: 71/1698
  39681. }
  39682. },
  39683. backDemi: {
  39684. height: math.unit(5 + 2/12, "feet"),
  39685. name: "Back (Demi)",
  39686. image: {
  39687. source: "./media/characters/gen/back-demi.svg",
  39688. extra: 1638/1548,
  39689. bottom: 69/1707
  39690. }
  39691. },
  39692. },
  39693. [
  39694. {
  39695. name: "Normal",
  39696. height: math.unit(5 + 2/12, "feet"),
  39697. default: true
  39698. },
  39699. ]
  39700. ))
  39701. characterMakers.push(() => makeCharacter(
  39702. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39703. {
  39704. frontImp: {
  39705. height: math.unit(1 + 11/12, "feet"),
  39706. name: "Front (Imp)",
  39707. image: {
  39708. source: "./media/characters/max-kobold/front-imp.svg",
  39709. extra: 1238/1134,
  39710. bottom: 81/1319
  39711. }
  39712. },
  39713. backImp: {
  39714. height: math.unit(1 + 11/12, "feet"),
  39715. name: "Back (Imp)",
  39716. image: {
  39717. source: "./media/characters/max-kobold/back-imp.svg",
  39718. extra: 1334/1175,
  39719. bottom: 34/1368
  39720. }
  39721. },
  39722. frontDemi: {
  39723. height: math.unit(5 + 9/12, "feet"),
  39724. name: "Front (Demi)",
  39725. image: {
  39726. source: "./media/characters/max-kobold/front-demi.svg",
  39727. extra: 1715/1685,
  39728. bottom: 54/1769
  39729. }
  39730. },
  39731. backDemi: {
  39732. height: math.unit(5 + 9/12, "feet"),
  39733. name: "Back (Demi)",
  39734. image: {
  39735. source: "./media/characters/max-kobold/back-demi.svg",
  39736. extra: 1752/1729,
  39737. bottom: 41/1793
  39738. }
  39739. },
  39740. handImp: {
  39741. height: math.unit(0.45, "feet"),
  39742. name: "Hand (Imp)",
  39743. image: {
  39744. source: "./media/characters/max-kobold/hand.svg"
  39745. }
  39746. },
  39747. pawImp: {
  39748. height: math.unit(0.46, "feet"),
  39749. name: "Paw (Imp)",
  39750. image: {
  39751. source: "./media/characters/max-kobold/paw.svg"
  39752. }
  39753. },
  39754. handDemi: {
  39755. height: math.unit(0.80, "feet"),
  39756. name: "Hand (Demi)",
  39757. image: {
  39758. source: "./media/characters/max-kobold/hand.svg"
  39759. }
  39760. },
  39761. pawDemi: {
  39762. height: math.unit(1.1, "feet"),
  39763. name: "Paw (Demi)",
  39764. image: {
  39765. source: "./media/characters/max-kobold/paw.svg"
  39766. }
  39767. },
  39768. headImp: {
  39769. height: math.unit(1.33, "feet"),
  39770. name: "Head (Imp)",
  39771. image: {
  39772. source: "./media/characters/max-kobold/head-imp.svg"
  39773. }
  39774. },
  39775. mawImp: {
  39776. height: math.unit(0.75, "feet"),
  39777. name: "Maw (Imp)",
  39778. image: {
  39779. source: "./media/characters/max-kobold/maw-imp.svg"
  39780. }
  39781. },
  39782. mawDemi: {
  39783. height: math.unit(0.42, "feet"),
  39784. name: "Maw (Demi)",
  39785. image: {
  39786. source: "./media/characters/max-kobold/maw-demi.svg"
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Normal",
  39793. height: math.unit(1 + 11/12, "feet"),
  39794. default: true
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39800. {
  39801. front: {
  39802. height: math.unit(7 + 5/12, "feet"),
  39803. name: "Front",
  39804. image: {
  39805. source: "./media/characters/carbon/front.svg",
  39806. extra: 1754/1689,
  39807. bottom: 65/1819
  39808. }
  39809. },
  39810. back: {
  39811. height: math.unit(7 + 5/12, "feet"),
  39812. name: "Back",
  39813. image: {
  39814. source: "./media/characters/carbon/back.svg",
  39815. extra: 1762/1695,
  39816. bottom: 24/1786
  39817. }
  39818. },
  39819. frontGigantamax: {
  39820. height: math.unit(150, "feet"),
  39821. name: "Front (Gigantamax)",
  39822. image: {
  39823. source: "./media/characters/carbon/front-gigantamax.svg",
  39824. extra: 1826/1669,
  39825. bottom: 59/1885
  39826. }
  39827. },
  39828. backGigantamax: {
  39829. height: math.unit(150, "feet"),
  39830. name: "Back (Gigantamax)",
  39831. image: {
  39832. source: "./media/characters/carbon/back-gigantamax.svg",
  39833. extra: 1796/1653,
  39834. bottom: 53/1849
  39835. }
  39836. },
  39837. maw: {
  39838. height: math.unit(0.48, "feet"),
  39839. name: "Maw",
  39840. image: {
  39841. source: "./media/characters/carbon/maw.svg"
  39842. }
  39843. },
  39844. mawGigantamax: {
  39845. height: math.unit(7.5, "feet"),
  39846. name: "Maw (Gigantamax)",
  39847. image: {
  39848. source: "./media/characters/carbon/maw-gigantamax.svg"
  39849. }
  39850. },
  39851. },
  39852. [
  39853. {
  39854. name: "Normal",
  39855. height: math.unit(7 + 5/12, "feet"),
  39856. default: true
  39857. },
  39858. ]
  39859. ))
  39860. characterMakers.push(() => makeCharacter(
  39861. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39862. {
  39863. front: {
  39864. height: math.unit(6, "feet"),
  39865. name: "Front",
  39866. image: {
  39867. source: "./media/characters/maverick/front.svg",
  39868. extra: 1672/1661,
  39869. bottom: 85/1757
  39870. }
  39871. },
  39872. back: {
  39873. height: math.unit(6, "feet"),
  39874. name: "Back",
  39875. image: {
  39876. source: "./media/characters/maverick/back.svg",
  39877. extra: 1642/1631,
  39878. bottom: 38/1680
  39879. }
  39880. },
  39881. },
  39882. [
  39883. {
  39884. name: "Normal",
  39885. height: math.unit(6, "feet"),
  39886. default: true
  39887. },
  39888. ]
  39889. ))
  39890. characterMakers.push(() => makeCharacter(
  39891. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39892. {
  39893. front: {
  39894. height: math.unit(15, "feet"),
  39895. weight: math.unit(615, "lb"),
  39896. name: "Front",
  39897. image: {
  39898. source: "./media/characters/grockle/front.svg",
  39899. extra: 1535/1427,
  39900. bottom: 56/1591
  39901. }
  39902. },
  39903. },
  39904. [
  39905. {
  39906. name: "Normal",
  39907. height: math.unit(15, "feet"),
  39908. default: true
  39909. },
  39910. {
  39911. name: "Large",
  39912. height: math.unit(150, "feet")
  39913. },
  39914. {
  39915. name: "Macro",
  39916. height: math.unit(1876, "feet")
  39917. },
  39918. {
  39919. name: "Mega Macro",
  39920. height: math.unit(121940, "feet")
  39921. },
  39922. {
  39923. name: "Giga Macro",
  39924. height: math.unit(750, "km")
  39925. },
  39926. {
  39927. name: "Tera Macro",
  39928. height: math.unit(750000, "km")
  39929. },
  39930. {
  39931. name: "Galactic",
  39932. height: math.unit(1.4e5, "km")
  39933. },
  39934. {
  39935. name: "Godlike",
  39936. height: math.unit(9.8e280, "galaxies")
  39937. },
  39938. ]
  39939. ))
  39940. characterMakers.push(() => makeCharacter(
  39941. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39942. {
  39943. front: {
  39944. height: math.unit(11, "meters"),
  39945. weight: math.unit(20, "tonnes"),
  39946. name: "Front",
  39947. image: {
  39948. source: "./media/characters/alistair/front.svg",
  39949. extra: 1265/1009,
  39950. bottom: 93/1358
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Normal",
  39957. height: math.unit(11, "meters"),
  39958. default: true
  39959. },
  39960. ]
  39961. ))
  39962. characterMakers.push(() => makeCharacter(
  39963. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39964. {
  39965. front: {
  39966. height: math.unit(5 + 8/12, "feet"),
  39967. name: "Front",
  39968. image: {
  39969. source: "./media/characters/haruka/front.svg",
  39970. extra: 2012/1952,
  39971. bottom: 0/2012
  39972. }
  39973. },
  39974. },
  39975. [
  39976. {
  39977. name: "Normal",
  39978. height: math.unit(5 + 8/12, "feet"),
  39979. default: true
  39980. },
  39981. ]
  39982. ))
  39983. characterMakers.push(() => makeCharacter(
  39984. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39985. {
  39986. back: {
  39987. height: math.unit(9, "feet"),
  39988. name: "Back",
  39989. image: {
  39990. source: "./media/characters/vivian-sylveon/back.svg",
  39991. extra: 1853/1714,
  39992. bottom: 0/1853
  39993. }
  39994. },
  39995. hyper: {
  39996. height: math.unit(5.58, "feet"),
  39997. name: "Hyper",
  39998. preyCapacity: math.unit(2.80616218797, "m^3"),
  39999. image: {
  40000. source: "./media/characters/vivian-sylveon/hyper.svg",
  40001. extra: 999/676,
  40002. bottom: 697/1696
  40003. },
  40004. },
  40005. paw: {
  40006. height: math.unit(1.8, "feet"),
  40007. name: "Paw",
  40008. image: {
  40009. source: "./media/characters/vivian-sylveon/paw.svg"
  40010. }
  40011. },
  40012. danger: {
  40013. height: math.unit(7.5, "feet"),
  40014. name: "DANGER",
  40015. image: {
  40016. source: "./media/characters/vivian-sylveon/danger.svg"
  40017. }
  40018. },
  40019. },
  40020. [
  40021. {
  40022. name: "Normal",
  40023. height: math.unit(9, "feet"),
  40024. default: true
  40025. },
  40026. {
  40027. name: "Macro",
  40028. height: math.unit(500, "feet")
  40029. },
  40030. {
  40031. name: "Megamacro",
  40032. height: math.unit(600, "miles")
  40033. },
  40034. {
  40035. name: "Gigamacro",
  40036. height: math.unit(30000, "miles")
  40037. },
  40038. ]
  40039. ))
  40040. characterMakers.push(() => makeCharacter(
  40041. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40042. {
  40043. anthro: {
  40044. height: math.unit(5 + 10/12, "feet"),
  40045. weight: math.unit(100, "lb"),
  40046. name: "Anthro",
  40047. image: {
  40048. source: "./media/characters/daiki/anthro.svg",
  40049. extra: 1115/1027,
  40050. bottom: 69/1184
  40051. }
  40052. },
  40053. feral: {
  40054. height: math.unit(200, "feet"),
  40055. name: "Feral",
  40056. image: {
  40057. source: "./media/characters/daiki/feral.svg",
  40058. extra: 1256/313,
  40059. bottom: 39/1295
  40060. }
  40061. },
  40062. feralHead: {
  40063. height: math.unit(171, "feet"),
  40064. name: "Feral Head",
  40065. image: {
  40066. source: "./media/characters/daiki/feral-head.svg"
  40067. }
  40068. },
  40069. manaDragon: {
  40070. height: math.unit(170, "meters"),
  40071. name: "Mana-dragon",
  40072. image: {
  40073. source: "./media/characters/daiki/mana-dragon.svg",
  40074. extra: 763/420,
  40075. bottom: 97/860
  40076. }
  40077. },
  40078. },
  40079. [
  40080. {
  40081. name: "Normal",
  40082. height: math.unit(5 + 10/12, "feet"),
  40083. default: true
  40084. },
  40085. ]
  40086. ))
  40087. characterMakers.push(() => makeCharacter(
  40088. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40089. {
  40090. fullyEquippedFront: {
  40091. height: math.unit(3 + 1/12, "feet"),
  40092. weight: math.unit(24, "lb"),
  40093. name: "Fully Equipped (Front)",
  40094. image: {
  40095. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40096. extra: 687/605,
  40097. bottom: 18/705
  40098. }
  40099. },
  40100. fullyEquippedBack: {
  40101. height: math.unit(3 + 1/12, "feet"),
  40102. weight: math.unit(24, "lb"),
  40103. name: "Fully Equipped (Back)",
  40104. image: {
  40105. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40106. extra: 689/590,
  40107. bottom: 18/707
  40108. }
  40109. },
  40110. dailyWear: {
  40111. height: math.unit(3 + 1/12, "feet"),
  40112. weight: math.unit(24, "lb"),
  40113. name: "Daily Wear",
  40114. image: {
  40115. source: "./media/characters/tea-spot/daily-wear.svg",
  40116. extra: 701/620,
  40117. bottom: 21/722
  40118. }
  40119. },
  40120. maidWork: {
  40121. height: math.unit(3 + 1/12, "feet"),
  40122. weight: math.unit(24, "lb"),
  40123. name: "Maid Work",
  40124. image: {
  40125. source: "./media/characters/tea-spot/maid-work.svg",
  40126. extra: 693/609,
  40127. bottom: 15/708
  40128. }
  40129. },
  40130. },
  40131. [
  40132. {
  40133. name: "Normal",
  40134. height: math.unit(3 + 1/12, "feet"),
  40135. default: true
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40141. {
  40142. front: {
  40143. height: math.unit(175, "cm"),
  40144. weight: math.unit(75, "kg"),
  40145. name: "Front",
  40146. image: {
  40147. source: "./media/characters/chee/front.svg",
  40148. extra: 1796/1740,
  40149. bottom: 40/1836
  40150. }
  40151. },
  40152. },
  40153. [
  40154. {
  40155. name: "Micro-Micro",
  40156. height: math.unit(1, "nm")
  40157. },
  40158. {
  40159. name: "Micro-erst",
  40160. height: math.unit(1, "micrometer")
  40161. },
  40162. {
  40163. name: "Micro-er",
  40164. height: math.unit(1, "cm")
  40165. },
  40166. {
  40167. name: "Normal",
  40168. height: math.unit(175, "cm"),
  40169. default: true
  40170. },
  40171. {
  40172. name: "Macro",
  40173. height: math.unit(100, "m")
  40174. },
  40175. {
  40176. name: "Macro-er",
  40177. height: math.unit(1, "km")
  40178. },
  40179. {
  40180. name: "Macro-erst",
  40181. height: math.unit(10, "km")
  40182. },
  40183. {
  40184. name: "Macro-Macro",
  40185. height: math.unit(100, "km")
  40186. },
  40187. ]
  40188. ))
  40189. characterMakers.push(() => makeCharacter(
  40190. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40191. {
  40192. front: {
  40193. height: math.unit(11 + 9/12, "feet"),
  40194. weight: math.unit(935, "lb"),
  40195. name: "Front",
  40196. image: {
  40197. source: "./media/characters/kingsley/front.svg",
  40198. extra: 1803/1674,
  40199. bottom: 127/1930
  40200. }
  40201. },
  40202. frontNude: {
  40203. height: math.unit(11 + 9/12, "feet"),
  40204. weight: math.unit(935, "lb"),
  40205. name: "Front (Nude)",
  40206. image: {
  40207. source: "./media/characters/kingsley/front-nude.svg",
  40208. extra: 1803/1674,
  40209. bottom: 127/1930
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(11 + 9/12, "feet"),
  40217. default: true
  40218. },
  40219. ]
  40220. ))
  40221. characterMakers.push(() => makeCharacter(
  40222. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40223. {
  40224. side: {
  40225. height: math.unit(9, "feet"),
  40226. name: "Side",
  40227. image: {
  40228. source: "./media/characters/rymel/side.svg",
  40229. extra: 792/469,
  40230. bottom: 121/913
  40231. }
  40232. },
  40233. maw: {
  40234. height: math.unit(2.4, "meters"),
  40235. name: "Maw",
  40236. image: {
  40237. source: "./media/characters/rymel/maw.svg"
  40238. }
  40239. },
  40240. },
  40241. [
  40242. {
  40243. name: "House Drake",
  40244. height: math.unit(2, "feet")
  40245. },
  40246. {
  40247. name: "Reduced",
  40248. height: math.unit(4.5, "feet")
  40249. },
  40250. {
  40251. name: "Normal",
  40252. height: math.unit(9, "feet"),
  40253. default: true
  40254. },
  40255. ]
  40256. ))
  40257. characterMakers.push(() => makeCharacter(
  40258. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40259. {
  40260. front: {
  40261. height: math.unit(1.74, "meters"),
  40262. weight: math.unit(55, "kg"),
  40263. name: "Front",
  40264. image: {
  40265. source: "./media/characters/rubus/front.svg",
  40266. extra: 1894/1742,
  40267. bottom: 44/1938
  40268. }
  40269. },
  40270. },
  40271. [
  40272. {
  40273. name: "Normal",
  40274. height: math.unit(1.74, "meters"),
  40275. default: true
  40276. },
  40277. ]
  40278. ))
  40279. characterMakers.push(() => makeCharacter(
  40280. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40281. {
  40282. front: {
  40283. height: math.unit(5 + 2/12, "feet"),
  40284. weight: math.unit(112, "lb"),
  40285. name: "Front",
  40286. image: {
  40287. source: "./media/characters/cassie-kingston/front.svg",
  40288. extra: 1438/1390,
  40289. bottom: 47/1485
  40290. }
  40291. },
  40292. },
  40293. [
  40294. {
  40295. name: "Normal",
  40296. height: math.unit(5 + 2/12, "feet"),
  40297. default: true
  40298. },
  40299. {
  40300. name: "Macro",
  40301. height: math.unit(128, "feet")
  40302. },
  40303. {
  40304. name: "Megamacro",
  40305. height: math.unit(2.56, "miles")
  40306. },
  40307. ]
  40308. ))
  40309. characterMakers.push(() => makeCharacter(
  40310. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40311. {
  40312. front: {
  40313. height: math.unit(7, "feet"),
  40314. name: "Front",
  40315. image: {
  40316. source: "./media/characters/fox/front.svg",
  40317. extra: 1798/1703,
  40318. bottom: 55/1853
  40319. }
  40320. },
  40321. back: {
  40322. height: math.unit(7, "feet"),
  40323. name: "Back",
  40324. image: {
  40325. source: "./media/characters/fox/back.svg",
  40326. extra: 1748/1649,
  40327. bottom: 32/1780
  40328. }
  40329. },
  40330. head: {
  40331. height: math.unit(1.95, "feet"),
  40332. name: "Head",
  40333. image: {
  40334. source: "./media/characters/fox/head.svg"
  40335. }
  40336. },
  40337. dick: {
  40338. height: math.unit(1.33, "feet"),
  40339. name: "Dick",
  40340. image: {
  40341. source: "./media/characters/fox/dick.svg"
  40342. }
  40343. },
  40344. foot: {
  40345. height: math.unit(1, "feet"),
  40346. name: "Foot",
  40347. image: {
  40348. source: "./media/characters/fox/foot.svg"
  40349. }
  40350. },
  40351. paw: {
  40352. height: math.unit(0.92, "feet"),
  40353. name: "Paw",
  40354. image: {
  40355. source: "./media/characters/fox/paw.svg"
  40356. }
  40357. },
  40358. },
  40359. [
  40360. {
  40361. name: "Small",
  40362. height: math.unit(3, "inches")
  40363. },
  40364. {
  40365. name: "\"Realistic\"",
  40366. height: math.unit(7, "feet")
  40367. },
  40368. {
  40369. name: "Normal",
  40370. height: math.unit(150, "feet"),
  40371. default: true
  40372. },
  40373. {
  40374. name: "BIG",
  40375. height: math.unit(1200, "feet")
  40376. },
  40377. {
  40378. name: "👀",
  40379. height: math.unit(5, "miles")
  40380. },
  40381. {
  40382. name: "👀👀👀",
  40383. height: math.unit(64, "miles")
  40384. },
  40385. ]
  40386. ))
  40387. characterMakers.push(() => makeCharacter(
  40388. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40389. {
  40390. front: {
  40391. height: math.unit(625, "feet"),
  40392. name: "Front",
  40393. image: {
  40394. source: "./media/characters/asonja-rossa/front.svg",
  40395. extra: 1833/1686,
  40396. bottom: 24/1857
  40397. }
  40398. },
  40399. back: {
  40400. height: math.unit(625, "feet"),
  40401. name: "Back",
  40402. image: {
  40403. source: "./media/characters/asonja-rossa/back.svg",
  40404. extra: 1852/1753,
  40405. bottom: 26/1878
  40406. }
  40407. },
  40408. },
  40409. [
  40410. {
  40411. name: "Macro",
  40412. height: math.unit(625, "feet"),
  40413. default: true
  40414. },
  40415. ]
  40416. ))
  40417. characterMakers.push(() => makeCharacter(
  40418. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40419. {
  40420. side: {
  40421. height: math.unit(8, "feet"),
  40422. name: "Side",
  40423. image: {
  40424. source: "./media/characters/rezukii/side.svg",
  40425. extra: 979/542,
  40426. bottom: 87/1066
  40427. }
  40428. },
  40429. sitting: {
  40430. height: math.unit(14.6, "feet"),
  40431. name: "Sitting",
  40432. image: {
  40433. source: "./media/characters/rezukii/sitting.svg",
  40434. extra: 1023/813,
  40435. bottom: 45/1068
  40436. }
  40437. },
  40438. },
  40439. [
  40440. {
  40441. name: "Tiny",
  40442. height: math.unit(2, "feet")
  40443. },
  40444. {
  40445. name: "Smol",
  40446. height: math.unit(4, "feet")
  40447. },
  40448. {
  40449. name: "Normal",
  40450. height: math.unit(8, "feet"),
  40451. default: true
  40452. },
  40453. {
  40454. name: "Big",
  40455. height: math.unit(12, "feet")
  40456. },
  40457. {
  40458. name: "Macro",
  40459. height: math.unit(30, "feet")
  40460. },
  40461. ]
  40462. ))
  40463. characterMakers.push(() => makeCharacter(
  40464. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40465. {
  40466. front: {
  40467. height: math.unit(14, "feet"),
  40468. weight: math.unit(9.5, "tonnes"),
  40469. name: "Front",
  40470. image: {
  40471. source: "./media/characters/dawnheart/front.svg",
  40472. extra: 2792/2675,
  40473. bottom: 64/2856
  40474. }
  40475. },
  40476. },
  40477. [
  40478. {
  40479. name: "Normal",
  40480. height: math.unit(14, "feet"),
  40481. default: true
  40482. },
  40483. ]
  40484. ))
  40485. characterMakers.push(() => makeCharacter(
  40486. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40487. {
  40488. front: {
  40489. height: math.unit(1.7, "m"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/gladi/front.svg",
  40493. extra: 1460/1362,
  40494. bottom: 19/1479
  40495. }
  40496. },
  40497. back: {
  40498. height: math.unit(1.7, "m"),
  40499. name: "Back",
  40500. image: {
  40501. source: "./media/characters/gladi/back.svg",
  40502. extra: 1459/1357,
  40503. bottom: 12/1471
  40504. }
  40505. },
  40506. feral: {
  40507. height: math.unit(2.05, "m"),
  40508. name: "Feral",
  40509. image: {
  40510. source: "./media/characters/gladi/feral.svg",
  40511. extra: 821/557,
  40512. bottom: 91/912
  40513. }
  40514. },
  40515. },
  40516. [
  40517. {
  40518. name: "Shortest",
  40519. height: math.unit(70, "cm")
  40520. },
  40521. {
  40522. name: "Normal",
  40523. height: math.unit(1.7, "m")
  40524. },
  40525. {
  40526. name: "Macro",
  40527. height: math.unit(10, "m"),
  40528. default: true
  40529. },
  40530. {
  40531. name: "Tallest",
  40532. height: math.unit(200, "m")
  40533. },
  40534. ]
  40535. ))
  40536. characterMakers.push(() => makeCharacter(
  40537. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40538. {
  40539. front: {
  40540. height: math.unit(5 + 7/12, "feet"),
  40541. weight: math.unit(2, "tons"),
  40542. name: "Front",
  40543. image: {
  40544. source: "./media/characters/erdno/front.svg",
  40545. extra: 1234/1129,
  40546. bottom: 35/1269
  40547. }
  40548. },
  40549. angled: {
  40550. height: math.unit(5 + 7/12, "feet"),
  40551. weight: math.unit(2, "tons"),
  40552. name: "Angled",
  40553. image: {
  40554. source: "./media/characters/erdno/angled.svg",
  40555. extra: 1185/1139,
  40556. bottom: 36/1221
  40557. }
  40558. },
  40559. side: {
  40560. height: math.unit(5 + 7/12, "feet"),
  40561. weight: math.unit(2, "tons"),
  40562. name: "Side",
  40563. image: {
  40564. source: "./media/characters/erdno/side.svg",
  40565. extra: 1191/1144,
  40566. bottom: 40/1231
  40567. }
  40568. },
  40569. back: {
  40570. height: math.unit(5 + 7/12, "feet"),
  40571. weight: math.unit(2, "tons"),
  40572. name: "Back",
  40573. image: {
  40574. source: "./media/characters/erdno/back.svg",
  40575. extra: 1202/1146,
  40576. bottom: 17/1219
  40577. }
  40578. },
  40579. frontNsfw: {
  40580. height: math.unit(5 + 7/12, "feet"),
  40581. weight: math.unit(2, "tons"),
  40582. name: "Front (NSFW)",
  40583. image: {
  40584. source: "./media/characters/erdno/front-nsfw.svg",
  40585. extra: 1234/1129,
  40586. bottom: 35/1269
  40587. }
  40588. },
  40589. angledNsfw: {
  40590. height: math.unit(5 + 7/12, "feet"),
  40591. weight: math.unit(2, "tons"),
  40592. name: "Angled (NSFW)",
  40593. image: {
  40594. source: "./media/characters/erdno/angled-nsfw.svg",
  40595. extra: 1185/1139,
  40596. bottom: 36/1221
  40597. }
  40598. },
  40599. sideNsfw: {
  40600. height: math.unit(5 + 7/12, "feet"),
  40601. weight: math.unit(2, "tons"),
  40602. name: "Side (NSFW)",
  40603. image: {
  40604. source: "./media/characters/erdno/side-nsfw.svg",
  40605. extra: 1191/1144,
  40606. bottom: 40/1231
  40607. }
  40608. },
  40609. backNsfw: {
  40610. height: math.unit(5 + 7/12, "feet"),
  40611. weight: math.unit(2, "tons"),
  40612. name: "Back (NSFW)",
  40613. image: {
  40614. source: "./media/characters/erdno/back-nsfw.svg",
  40615. extra: 1202/1146,
  40616. bottom: 17/1219
  40617. }
  40618. },
  40619. frontHyper: {
  40620. height: math.unit(5 + 7/12, "feet"),
  40621. weight: math.unit(2, "tons"),
  40622. name: "Front (Hyper)",
  40623. image: {
  40624. source: "./media/characters/erdno/front-hyper.svg",
  40625. extra: 1298/1136,
  40626. bottom: 35/1333
  40627. }
  40628. },
  40629. },
  40630. [
  40631. {
  40632. name: "Normal",
  40633. height: math.unit(5 + 7/12, "feet"),
  40634. default: true
  40635. },
  40636. {
  40637. name: "Big",
  40638. height: math.unit(5.7, "meters")
  40639. },
  40640. {
  40641. name: "Macro",
  40642. height: math.unit(5.7, "kilometers")
  40643. },
  40644. {
  40645. name: "Megamacro",
  40646. height: math.unit(5.7, "earths")
  40647. },
  40648. ]
  40649. ))
  40650. characterMakers.push(() => makeCharacter(
  40651. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40652. {
  40653. front: {
  40654. height: math.unit(5 + 10/12, "feet"),
  40655. weight: math.unit(150, "lb"),
  40656. name: "Front",
  40657. image: {
  40658. source: "./media/characters/jamie/front.svg",
  40659. extra: 1908/1768,
  40660. bottom: 19/1927
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Minimum",
  40667. height: math.unit(2, "cm")
  40668. },
  40669. {
  40670. name: "Micro",
  40671. height: math.unit(3, "inches")
  40672. },
  40673. {
  40674. name: "Normal",
  40675. height: math.unit(5 + 10/12, "feet"),
  40676. default: true
  40677. },
  40678. {
  40679. name: "Macro",
  40680. height: math.unit(150, "feet")
  40681. },
  40682. {
  40683. name: "Megamacro",
  40684. height: math.unit(10000, "m")
  40685. },
  40686. ]
  40687. ))
  40688. characterMakers.push(() => makeCharacter(
  40689. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40690. {
  40691. front: {
  40692. height: math.unit(2, "meters"),
  40693. weight: math.unit(100, "kg"),
  40694. name: "Front",
  40695. image: {
  40696. source: "./media/characters/shiron/front.svg",
  40697. extra: 2103/1985,
  40698. bottom: 98/2201
  40699. }
  40700. },
  40701. back: {
  40702. height: math.unit(2, "meters"),
  40703. weight: math.unit(100, "kg"),
  40704. name: "Back",
  40705. image: {
  40706. source: "./media/characters/shiron/back.svg",
  40707. extra: 2110/2015,
  40708. bottom: 89/2199
  40709. }
  40710. },
  40711. hand: {
  40712. height: math.unit(0.96, "feet"),
  40713. name: "Hand",
  40714. image: {
  40715. source: "./media/characters/shiron/hand.svg"
  40716. }
  40717. },
  40718. foot: {
  40719. height: math.unit(1.464, "feet"),
  40720. name: "Foot",
  40721. image: {
  40722. source: "./media/characters/shiron/foot.svg"
  40723. }
  40724. },
  40725. },
  40726. [
  40727. {
  40728. name: "Normal",
  40729. height: math.unit(2, "meters")
  40730. },
  40731. {
  40732. name: "Macro",
  40733. height: math.unit(500, "meters"),
  40734. default: true
  40735. },
  40736. {
  40737. name: "Megamacro",
  40738. height: math.unit(20, "km")
  40739. },
  40740. ]
  40741. ))
  40742. characterMakers.push(() => makeCharacter(
  40743. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40744. {
  40745. front: {
  40746. height: math.unit(6, "feet"),
  40747. name: "Front",
  40748. image: {
  40749. source: "./media/characters/sam/front.svg",
  40750. extra: 849/826,
  40751. bottom: 19/868
  40752. }
  40753. },
  40754. },
  40755. [
  40756. {
  40757. name: "Normal",
  40758. height: math.unit(6, "feet"),
  40759. default: true
  40760. },
  40761. ]
  40762. ))
  40763. characterMakers.push(() => makeCharacter(
  40764. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40765. {
  40766. front: {
  40767. height: math.unit(8 + 4/12, "feet"),
  40768. weight: math.unit(122, "kg"),
  40769. name: "Front",
  40770. image: {
  40771. source: "./media/characters/namori-kurogawa/front.svg",
  40772. extra: 1894/1576,
  40773. bottom: 34/1928
  40774. }
  40775. },
  40776. },
  40777. [
  40778. {
  40779. name: "Normal",
  40780. height: math.unit(8 + 4/12, "feet"),
  40781. default: true
  40782. },
  40783. ]
  40784. ))
  40785. characterMakers.push(() => makeCharacter(
  40786. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40787. {
  40788. front: {
  40789. height: math.unit(9, "feet"),
  40790. weight: math.unit(621, "lb"),
  40791. name: "Front",
  40792. image: {
  40793. source: "./media/characters/unmru/front.svg",
  40794. extra: 1853/1747,
  40795. bottom: 73/1926
  40796. }
  40797. },
  40798. side: {
  40799. height: math.unit(9, "feet"),
  40800. weight: math.unit(621, "lb"),
  40801. name: "Side",
  40802. image: {
  40803. source: "./media/characters/unmru/side.svg",
  40804. extra: 1781/1671,
  40805. bottom: 127/1908
  40806. }
  40807. },
  40808. back: {
  40809. height: math.unit(9, "feet"),
  40810. weight: math.unit(621, "lb"),
  40811. name: "Back",
  40812. image: {
  40813. source: "./media/characters/unmru/back.svg",
  40814. extra: 1894/1765,
  40815. bottom: 75/1969
  40816. }
  40817. },
  40818. dick: {
  40819. height: math.unit(3, "feet"),
  40820. weight: math.unit(35, "lb"),
  40821. name: "Dick",
  40822. image: {
  40823. source: "./media/characters/unmru/dick.svg"
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Normal",
  40830. height: math.unit(9, "feet")
  40831. },
  40832. {
  40833. name: "Natural",
  40834. height: math.unit(27, "feet"),
  40835. default: true
  40836. },
  40837. {
  40838. name: "Giant",
  40839. height: math.unit(90, "feet")
  40840. },
  40841. {
  40842. name: "Kaiju",
  40843. height: math.unit(270, "feet")
  40844. },
  40845. {
  40846. name: "Macro",
  40847. height: math.unit(900, "feet")
  40848. },
  40849. {
  40850. name: "Macro+",
  40851. height: math.unit(2700, "feet")
  40852. },
  40853. {
  40854. name: "Megamacro",
  40855. height: math.unit(9000, "feet")
  40856. },
  40857. {
  40858. name: "City-Crushing",
  40859. height: math.unit(27000, "feet")
  40860. },
  40861. {
  40862. name: "Mountain-Mashing",
  40863. height: math.unit(90000, "feet")
  40864. },
  40865. {
  40866. name: "Earth-Eclipsing",
  40867. height: math.unit(2.7e8, "feet")
  40868. },
  40869. {
  40870. name: "Sol-Swallowing",
  40871. height: math.unit(9e10, "feet")
  40872. },
  40873. {
  40874. name: "Majoris-Munching",
  40875. height: math.unit(2.7e13, "feet")
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40881. {
  40882. front: {
  40883. height: math.unit(1, "inch"),
  40884. name: "Front",
  40885. image: {
  40886. source: "./media/characters/squeaks-mouse/front.svg",
  40887. extra: 352/308,
  40888. bottom: 25/377
  40889. }
  40890. },
  40891. },
  40892. [
  40893. {
  40894. name: "Micro",
  40895. height: math.unit(1, "inch"),
  40896. default: true
  40897. },
  40898. ]
  40899. ))
  40900. characterMakers.push(() => makeCharacter(
  40901. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40902. {
  40903. side: {
  40904. height: math.unit(35, "feet"),
  40905. name: "Side",
  40906. image: {
  40907. source: "./media/characters/sayko/side.svg",
  40908. extra: 1697/1021,
  40909. bottom: 82/1779
  40910. }
  40911. },
  40912. head: {
  40913. height: math.unit(16, "feet"),
  40914. name: "Head",
  40915. image: {
  40916. source: "./media/characters/sayko/head.svg"
  40917. }
  40918. },
  40919. forepaw: {
  40920. height: math.unit(7.85, "feet"),
  40921. name: "Forepaw",
  40922. image: {
  40923. source: "./media/characters/sayko/forepaw.svg"
  40924. }
  40925. },
  40926. hindpaw: {
  40927. height: math.unit(8.8, "feet"),
  40928. name: "Hindpaw",
  40929. image: {
  40930. source: "./media/characters/sayko/hindpaw.svg"
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Normal",
  40937. height: math.unit(35, "feet"),
  40938. default: true
  40939. },
  40940. {
  40941. name: "Colossus",
  40942. height: math.unit(100, "meters")
  40943. },
  40944. {
  40945. name: "\"Small\" Deity",
  40946. height: math.unit(1, "km")
  40947. },
  40948. {
  40949. name: "\"Large\" Deity",
  40950. height: math.unit(15, "km")
  40951. },
  40952. ]
  40953. ))
  40954. characterMakers.push(() => makeCharacter(
  40955. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40956. {
  40957. front: {
  40958. height: math.unit(6, "feet"),
  40959. weight: math.unit(250, "lb"),
  40960. name: "Front",
  40961. image: {
  40962. source: "./media/characters/mukiro/front.svg",
  40963. extra: 1368/1310,
  40964. bottom: 34/1402
  40965. }
  40966. },
  40967. },
  40968. [
  40969. {
  40970. name: "Normal",
  40971. height: math.unit(6, "feet"),
  40972. default: true
  40973. },
  40974. ]
  40975. ))
  40976. characterMakers.push(() => makeCharacter(
  40977. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40978. {
  40979. front: {
  40980. height: math.unit(12 + 4/12, "feet"),
  40981. name: "Front",
  40982. image: {
  40983. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40984. extra: 1346/1311,
  40985. bottom: 65/1411
  40986. }
  40987. },
  40988. },
  40989. [
  40990. {
  40991. name: "Base",
  40992. height: math.unit(12 + 4/12, "feet"),
  40993. default: true
  40994. },
  40995. {
  40996. name: "Macro",
  40997. height: math.unit(150, "feet")
  40998. },
  40999. {
  41000. name: "Mega",
  41001. height: math.unit(2, "miles")
  41002. },
  41003. {
  41004. name: "Demi God",
  41005. height: math.unit(4, "AU")
  41006. },
  41007. {
  41008. name: "God Size",
  41009. height: math.unit(1, "universe")
  41010. },
  41011. ]
  41012. ))
  41013. characterMakers.push(() => makeCharacter(
  41014. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41015. {
  41016. front: {
  41017. height: math.unit(3 + 3/12, "feet"),
  41018. weight: math.unit(88, "lb"),
  41019. name: "Front",
  41020. image: {
  41021. source: "./media/characters/trey/front.svg",
  41022. extra: 1815/1509,
  41023. bottom: 60/1875
  41024. }
  41025. },
  41026. },
  41027. [
  41028. {
  41029. name: "Normal",
  41030. height: math.unit(3 + 3/12, "feet"),
  41031. default: true
  41032. },
  41033. ]
  41034. ))
  41035. characterMakers.push(() => makeCharacter(
  41036. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41037. {
  41038. front: {
  41039. height: math.unit(4, "meters"),
  41040. name: "Front",
  41041. image: {
  41042. source: "./media/characters/adelonda/front.svg",
  41043. extra: 1077/982,
  41044. bottom: 39/1116
  41045. }
  41046. },
  41047. back: {
  41048. height: math.unit(4, "meters"),
  41049. name: "Back",
  41050. image: {
  41051. source: "./media/characters/adelonda/back.svg",
  41052. extra: 1105/1003,
  41053. bottom: 25/1130
  41054. }
  41055. },
  41056. feral: {
  41057. height: math.unit(40/1.5, "meters"),
  41058. name: "Feral",
  41059. image: {
  41060. source: "./media/characters/adelonda/feral.svg",
  41061. extra: 597/271,
  41062. bottom: 387/984
  41063. }
  41064. },
  41065. },
  41066. [
  41067. {
  41068. name: "Normal",
  41069. height: math.unit(4, "meters"),
  41070. default: true
  41071. },
  41072. ]
  41073. ))
  41074. characterMakers.push(() => makeCharacter(
  41075. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41076. {
  41077. front: {
  41078. height: math.unit(8 + 4/12, "feet"),
  41079. weight: math.unit(670, "lb"),
  41080. name: "Front",
  41081. image: {
  41082. source: "./media/characters/acadiel/front.svg",
  41083. extra: 1901/1595,
  41084. bottom: 142/2043
  41085. }
  41086. },
  41087. },
  41088. [
  41089. {
  41090. name: "Normal",
  41091. height: math.unit(8 + 4/12, "feet"),
  41092. default: true
  41093. },
  41094. {
  41095. name: "Macro",
  41096. height: math.unit(200, "feet")
  41097. },
  41098. ]
  41099. ))
  41100. characterMakers.push(() => makeCharacter(
  41101. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41102. {
  41103. front: {
  41104. height: math.unit(6 + 2/12, "feet"),
  41105. weight: math.unit(185, "lb"),
  41106. name: "Front",
  41107. image: {
  41108. source: "./media/characters/kayne-ein/front.svg",
  41109. extra: 1780/1560,
  41110. bottom: 81/1861
  41111. }
  41112. },
  41113. },
  41114. [
  41115. {
  41116. name: "Normal",
  41117. height: math.unit(6 + 2/12, "feet"),
  41118. default: true
  41119. },
  41120. {
  41121. name: "Transformation Stage",
  41122. height: math.unit(15, "feet")
  41123. },
  41124. {
  41125. name: "Macro",
  41126. height: math.unit(150, "feet")
  41127. },
  41128. {
  41129. name: "Earth's Shadow",
  41130. height: math.unit(6200, "miles")
  41131. },
  41132. {
  41133. name: "Universal Demon",
  41134. height: math.unit(28e9, "parsecs")
  41135. },
  41136. {
  41137. name: "Multiverse God",
  41138. height: math.unit(3, "multiverses")
  41139. },
  41140. ]
  41141. ))
  41142. characterMakers.push(() => makeCharacter(
  41143. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41144. {
  41145. front: {
  41146. height: math.unit(5 + 5/12, "feet"),
  41147. name: "Front",
  41148. image: {
  41149. source: "./media/characters/fawn/front.svg",
  41150. extra: 1873/1731,
  41151. bottom: 95/1968
  41152. }
  41153. },
  41154. back: {
  41155. height: math.unit(5 + 5/12, "feet"),
  41156. name: "Back",
  41157. image: {
  41158. source: "./media/characters/fawn/back.svg",
  41159. extra: 1813/1700,
  41160. bottom: 14/1827
  41161. }
  41162. },
  41163. hoof: {
  41164. height: math.unit(1.45, "feet"),
  41165. name: "Hoof",
  41166. image: {
  41167. source: "./media/characters/fawn/hoof.svg"
  41168. }
  41169. },
  41170. },
  41171. [
  41172. {
  41173. name: "Normal",
  41174. height: math.unit(5 + 5/12, "feet"),
  41175. default: true
  41176. },
  41177. ]
  41178. ))
  41179. characterMakers.push(() => makeCharacter(
  41180. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41181. {
  41182. front: {
  41183. height: math.unit(2 + 5/12, "feet"),
  41184. name: "Front",
  41185. image: {
  41186. source: "./media/characters/orion/front.svg",
  41187. extra: 1366/1304,
  41188. bottom: 43/1409
  41189. }
  41190. },
  41191. paw: {
  41192. height: math.unit(0.52, "feet"),
  41193. name: "Paw",
  41194. image: {
  41195. source: "./media/characters/orion/paw.svg"
  41196. }
  41197. },
  41198. },
  41199. [
  41200. {
  41201. name: "Normal",
  41202. height: math.unit(2 + 5/12, "feet"),
  41203. default: true
  41204. },
  41205. ]
  41206. ))
  41207. characterMakers.push(() => makeCharacter(
  41208. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41209. {
  41210. front: {
  41211. height: math.unit(5 + 10/12, "feet"),
  41212. name: "Front",
  41213. image: {
  41214. source: "./media/characters/vera/front.svg",
  41215. extra: 1680/1575,
  41216. bottom: 49/1729
  41217. }
  41218. },
  41219. back: {
  41220. height: math.unit(5 + 10/12, "feet"),
  41221. name: "Back",
  41222. image: {
  41223. source: "./media/characters/vera/back.svg",
  41224. extra: 1700/1588,
  41225. bottom: 18/1718
  41226. }
  41227. },
  41228. arcanine: {
  41229. height: math.unit(6 + 8/12, "feet"),
  41230. name: "Arcanine",
  41231. image: {
  41232. source: "./media/characters/vera/arcanine.svg",
  41233. extra: 1590/1511,
  41234. bottom: 71/1661
  41235. }
  41236. },
  41237. maw: {
  41238. height: math.unit(0.82, "feet"),
  41239. name: "Maw",
  41240. image: {
  41241. source: "./media/characters/vera/maw.svg"
  41242. }
  41243. },
  41244. mawArcanine: {
  41245. height: math.unit(0.97, "feet"),
  41246. name: "Maw (Arcanine)",
  41247. image: {
  41248. source: "./media/characters/vera/maw-arcanine.svg"
  41249. }
  41250. },
  41251. paw: {
  41252. height: math.unit(0.75, "feet"),
  41253. name: "Paw",
  41254. image: {
  41255. source: "./media/characters/vera/paw.svg"
  41256. }
  41257. },
  41258. pawprint: {
  41259. height: math.unit(0.52, "feet"),
  41260. name: "Pawprint",
  41261. image: {
  41262. source: "./media/characters/vera/pawprint.svg"
  41263. }
  41264. },
  41265. },
  41266. [
  41267. {
  41268. name: "Normal",
  41269. height: math.unit(5 + 10/12, "feet"),
  41270. default: true
  41271. },
  41272. {
  41273. name: "Macro",
  41274. height: math.unit(75, "feet")
  41275. },
  41276. ]
  41277. ))
  41278. characterMakers.push(() => makeCharacter(
  41279. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41280. {
  41281. front: {
  41282. height: math.unit(4, "feet"),
  41283. weight: math.unit(40, "lb"),
  41284. name: "Front",
  41285. image: {
  41286. source: "./media/characters/orvan-rabbit/front.svg",
  41287. extra: 1896/1642,
  41288. bottom: 29/1925
  41289. }
  41290. },
  41291. },
  41292. [
  41293. {
  41294. name: "Normal",
  41295. height: math.unit(4, "feet"),
  41296. default: true
  41297. },
  41298. ]
  41299. ))
  41300. characterMakers.push(() => makeCharacter(
  41301. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41302. {
  41303. front: {
  41304. height: math.unit(6, "feet"),
  41305. weight: math.unit(168, "lb"),
  41306. name: "Front",
  41307. image: {
  41308. source: "./media/characters/lisa/front.svg",
  41309. extra: 2065/1867,
  41310. bottom: 46/2111
  41311. }
  41312. },
  41313. back: {
  41314. height: math.unit(6, "feet"),
  41315. weight: math.unit(168, "lb"),
  41316. name: "Back",
  41317. image: {
  41318. source: "./media/characters/lisa/back.svg",
  41319. extra: 1982/1838,
  41320. bottom: 29/2011
  41321. }
  41322. },
  41323. maw: {
  41324. height: math.unit(0.81, "feet"),
  41325. name: "Maw",
  41326. image: {
  41327. source: "./media/characters/lisa/maw.svg"
  41328. }
  41329. },
  41330. paw: {
  41331. height: math.unit(0.9, "feet"),
  41332. name: "Paw",
  41333. image: {
  41334. source: "./media/characters/lisa/paw.svg"
  41335. }
  41336. },
  41337. caribousune: {
  41338. height: math.unit(7 + 2/12, "feet"),
  41339. weight: math.unit(268, "lb"),
  41340. name: "Caribousune",
  41341. image: {
  41342. source: "./media/characters/lisa/caribousune.svg",
  41343. extra: 1843/1633,
  41344. bottom: 29/1872
  41345. }
  41346. },
  41347. frontCaribousune: {
  41348. height: math.unit(7 + 2/12, "feet"),
  41349. weight: math.unit(268, "lb"),
  41350. name: "Front (Caribousune)",
  41351. image: {
  41352. source: "./media/characters/lisa/front-caribousune.svg",
  41353. extra: 1818/1638,
  41354. bottom: 52/1870
  41355. }
  41356. },
  41357. sideCaribousune: {
  41358. height: math.unit(7 + 2/12, "feet"),
  41359. weight: math.unit(268, "lb"),
  41360. name: "Side (Caribousune)",
  41361. image: {
  41362. source: "./media/characters/lisa/side-caribousune.svg",
  41363. extra: 1851/1635,
  41364. bottom: 16/1867
  41365. }
  41366. },
  41367. backCaribousune: {
  41368. height: math.unit(7 + 2/12, "feet"),
  41369. weight: math.unit(268, "lb"),
  41370. name: "Back (Caribousune)",
  41371. image: {
  41372. source: "./media/characters/lisa/back-caribousune.svg",
  41373. extra: 1801/1604,
  41374. bottom: 44/1845
  41375. }
  41376. },
  41377. caribou: {
  41378. height: math.unit(7 + 2/12, "feet"),
  41379. weight: math.unit(268, "lb"),
  41380. name: "Caribou",
  41381. image: {
  41382. source: "./media/characters/lisa/caribou.svg",
  41383. extra: 1843/1633,
  41384. bottom: 29/1872
  41385. }
  41386. },
  41387. frontCaribou: {
  41388. height: math.unit(7 + 2/12, "feet"),
  41389. weight: math.unit(268, "lb"),
  41390. name: "Front (Caribou)",
  41391. image: {
  41392. source: "./media/characters/lisa/front-caribou.svg",
  41393. extra: 1818/1638,
  41394. bottom: 52/1870
  41395. }
  41396. },
  41397. sideCaribou: {
  41398. height: math.unit(7 + 2/12, "feet"),
  41399. weight: math.unit(268, "lb"),
  41400. name: "Side (Caribou)",
  41401. image: {
  41402. source: "./media/characters/lisa/side-caribou.svg",
  41403. extra: 1851/1635,
  41404. bottom: 16/1867
  41405. }
  41406. },
  41407. backCaribou: {
  41408. height: math.unit(7 + 2/12, "feet"),
  41409. weight: math.unit(268, "lb"),
  41410. name: "Back (Caribou)",
  41411. image: {
  41412. source: "./media/characters/lisa/back-caribou.svg",
  41413. extra: 1801/1604,
  41414. bottom: 44/1845
  41415. }
  41416. },
  41417. mawCaribou: {
  41418. height: math.unit(1.45, "feet"),
  41419. name: "Maw (Caribou)",
  41420. image: {
  41421. source: "./media/characters/lisa/maw-caribou.svg"
  41422. }
  41423. },
  41424. mawCaribousune: {
  41425. height: math.unit(1.45, "feet"),
  41426. name: "Maw (Caribousune)",
  41427. image: {
  41428. source: "./media/characters/lisa/maw-caribousune.svg"
  41429. }
  41430. },
  41431. pawCaribousune: {
  41432. height: math.unit(1.61, "feet"),
  41433. name: "Paw (Caribou)",
  41434. image: {
  41435. source: "./media/characters/lisa/paw-caribousune.svg"
  41436. }
  41437. },
  41438. },
  41439. [
  41440. {
  41441. name: "Normal",
  41442. height: math.unit(6, "feet")
  41443. },
  41444. {
  41445. name: "God Size",
  41446. height: math.unit(72, "feet"),
  41447. default: true
  41448. },
  41449. {
  41450. name: "Towering",
  41451. height: math.unit(288, "feet")
  41452. },
  41453. {
  41454. name: "City Size",
  41455. height: math.unit(48384, "feet")
  41456. },
  41457. {
  41458. name: "Continental",
  41459. height: math.unit(4200, "miles")
  41460. },
  41461. {
  41462. name: "Planet Eater",
  41463. height: math.unit(42, "earths")
  41464. },
  41465. {
  41466. name: "Star Swallower",
  41467. height: math.unit(42, "solarradii")
  41468. },
  41469. {
  41470. name: "System Swallower",
  41471. height: math.unit(84000, "AU")
  41472. },
  41473. {
  41474. name: "Galaxy Gobbler",
  41475. height: math.unit(42, "galaxies")
  41476. },
  41477. {
  41478. name: "Universe Devourer",
  41479. height: math.unit(42, "universes")
  41480. },
  41481. {
  41482. name: "Multiverse Muncher",
  41483. height: math.unit(42, "multiverses")
  41484. },
  41485. ]
  41486. ))
  41487. characterMakers.push(() => makeCharacter(
  41488. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41489. {
  41490. front: {
  41491. height: math.unit(36, "feet"),
  41492. name: "Front",
  41493. image: {
  41494. source: "./media/characters/shadow-rat/front.svg",
  41495. extra: 1845/1758,
  41496. bottom: 83/1928
  41497. }
  41498. },
  41499. },
  41500. [
  41501. {
  41502. name: "Macro",
  41503. height: math.unit(36, "feet"),
  41504. default: true
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41510. {
  41511. side: {
  41512. height: math.unit(8, "feet"),
  41513. weight: math.unit(2630, "lb"),
  41514. name: "Side",
  41515. image: {
  41516. source: "./media/characters/torallia/side.svg",
  41517. extra: 2164/2021,
  41518. bottom: 371/2535
  41519. }
  41520. },
  41521. },
  41522. [
  41523. {
  41524. name: "Mortal Interaction",
  41525. height: math.unit(8, "feet")
  41526. },
  41527. {
  41528. name: "Natural",
  41529. height: math.unit(24, "feet"),
  41530. default: true
  41531. },
  41532. {
  41533. name: "Giant",
  41534. height: math.unit(80, "feet")
  41535. },
  41536. {
  41537. name: "Kaiju",
  41538. height: math.unit(240, "feet")
  41539. },
  41540. {
  41541. name: "Macro",
  41542. height: math.unit(800, "feet")
  41543. },
  41544. {
  41545. name: "Macro+",
  41546. height: math.unit(2400, "feet")
  41547. },
  41548. {
  41549. name: "Macro++",
  41550. height: math.unit(8000, "feet")
  41551. },
  41552. {
  41553. name: "City-Crushing",
  41554. height: math.unit(24000, "feet")
  41555. },
  41556. {
  41557. name: "Mountain-Mashing",
  41558. height: math.unit(80000, "feet")
  41559. },
  41560. {
  41561. name: "District Demolisher",
  41562. height: math.unit(240000, "feet")
  41563. },
  41564. {
  41565. name: "Tri-County Terror",
  41566. height: math.unit(800000, "feet")
  41567. },
  41568. {
  41569. name: "State Smasher",
  41570. height: math.unit(2.4e6, "feet")
  41571. },
  41572. {
  41573. name: "Nation Nemesis",
  41574. height: math.unit(8e6, "feet")
  41575. },
  41576. {
  41577. name: "Continent Cracker",
  41578. height: math.unit(2.4e7, "feet")
  41579. },
  41580. {
  41581. name: "Planet-Pillaging",
  41582. height: math.unit(8e7, "feet")
  41583. },
  41584. {
  41585. name: "Earth-Eclipsing",
  41586. height: math.unit(2.4e8, "feet")
  41587. },
  41588. {
  41589. name: "Jovian-Jostling",
  41590. height: math.unit(8e8, "feet")
  41591. },
  41592. {
  41593. name: "Gas Giant Gulper",
  41594. height: math.unit(2.4e9, "feet")
  41595. },
  41596. {
  41597. name: "Astral Annihilator",
  41598. height: math.unit(8e9, "feet")
  41599. },
  41600. {
  41601. name: "Celestial Conqueror",
  41602. height: math.unit(2.4e10, "feet")
  41603. },
  41604. {
  41605. name: "Sol-Swallowing",
  41606. height: math.unit(8e10, "feet")
  41607. },
  41608. {
  41609. name: "Hunter of the Heavens",
  41610. height: math.unit(2.4e13, "feet")
  41611. },
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41616. {
  41617. front: {
  41618. height: math.unit(10, "feet"),
  41619. weight: math.unit(844, "kilograms"),
  41620. name: "Front",
  41621. image: {
  41622. source: "./media/characters/rebecca-pawlson/front.svg",
  41623. extra: 1196/1099,
  41624. bottom: 81/1277
  41625. },
  41626. extraAttributes: {
  41627. "pawSize": {
  41628. name: "Paw Size",
  41629. power: 2,
  41630. type: "area",
  41631. base: math.unit(0.2 * 0.375, "meters^2")
  41632. },
  41633. "handSize": {
  41634. name: "Hand Size",
  41635. power: 2,
  41636. type: "area",
  41637. base: math.unit(0.2 * 0.35, "meters^2")
  41638. },
  41639. "breastDiameter": {
  41640. name: "Breast Diameter",
  41641. power: 1,
  41642. type: "length",
  41643. base: math.unit(0.5, "meters")
  41644. },
  41645. "breastVolume": {
  41646. name: "Breast Volume",
  41647. power: 3,
  41648. type: "volume",
  41649. base: math.unit(0.065, "m^3")
  41650. },
  41651. "breastMass": {
  41652. name: "Breast Mass",
  41653. power: 3,
  41654. type: "mass",
  41655. base: math.unit(65, "kg")
  41656. },
  41657. "nippleDiameter": {
  41658. name: "Nipple Diameter",
  41659. power: 1,
  41660. type: "length",
  41661. base: math.unit(0.1, "meters")
  41662. },
  41663. }
  41664. },
  41665. back: {
  41666. height: math.unit(10, "feet"),
  41667. weight: math.unit(844, "kilograms"),
  41668. name: "Back",
  41669. image: {
  41670. source: "./media/characters/rebecca-pawlson/back.svg",
  41671. extra: 879/776,
  41672. bottom: 43/922
  41673. },
  41674. extraAttributes: {
  41675. "pawSize": {
  41676. name: "Paw Size",
  41677. power: 2,
  41678. type: "area",
  41679. base: math.unit(0.2 * 0.375, "meters^2")
  41680. },
  41681. "handSize": {
  41682. name: "Hand Size",
  41683. power: 2,
  41684. type: "area",
  41685. base: math.unit(0.2 * 0.35, "meters^2")
  41686. },
  41687. "breastDiameter": {
  41688. name: "Breast Diameter",
  41689. power: 1,
  41690. type: "length",
  41691. base: math.unit(0.5, "meters")
  41692. },
  41693. "breastVolume": {
  41694. name: "Breast Volume",
  41695. power: 3,
  41696. type: "volume",
  41697. base: math.unit(0.065, "m^3")
  41698. },
  41699. "breastMass": {
  41700. name: "Breast Mass",
  41701. power: 3,
  41702. type: "mass",
  41703. base: math.unit(65, "kg")
  41704. },
  41705. "nippleDiameter": {
  41706. name: "Nipple Diameter",
  41707. power: 1,
  41708. type: "length",
  41709. base: math.unit(0.1, "meters")
  41710. },
  41711. }
  41712. },
  41713. },
  41714. [
  41715. {
  41716. name: "Normal",
  41717. height: math.unit(6 + 8/12, "feet")
  41718. },
  41719. {
  41720. name: "Mini Macro",
  41721. height: math.unit(10, "feet"),
  41722. default: true
  41723. },
  41724. {
  41725. name: "Macro",
  41726. height: math.unit(100, "feet")
  41727. },
  41728. {
  41729. name: "Mega Macro",
  41730. height: math.unit(2500, "feet")
  41731. },
  41732. {
  41733. name: "Giga Macro",
  41734. height: math.unit(50, "miles")
  41735. },
  41736. ]
  41737. ))
  41738. characterMakers.push(() => makeCharacter(
  41739. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41740. {
  41741. front: {
  41742. height: math.unit(7 + 6/12, "feet"),
  41743. weight: math.unit(600, "lb"),
  41744. name: "Front",
  41745. image: {
  41746. source: "./media/characters/moxie-nova/front.svg",
  41747. extra: 1734/1652,
  41748. bottom: 41/1775
  41749. }
  41750. },
  41751. },
  41752. [
  41753. {
  41754. name: "Normal",
  41755. height: math.unit(7 + 6/12, "feet"),
  41756. default: true
  41757. },
  41758. ]
  41759. ))
  41760. characterMakers.push(() => makeCharacter(
  41761. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41762. {
  41763. goat: {
  41764. height: math.unit(4, "feet"),
  41765. weight: math.unit(180, "lb"),
  41766. name: "Goat",
  41767. image: {
  41768. source: "./media/characters/tiffany/goat.svg",
  41769. extra: 1845/1595,
  41770. bottom: 106/1951
  41771. }
  41772. },
  41773. front: {
  41774. height: math.unit(5, "feet"),
  41775. weight: math.unit(150, "lb"),
  41776. name: "Foxcoon",
  41777. image: {
  41778. source: "./media/characters/tiffany/foxcoon.svg",
  41779. extra: 1941/1845,
  41780. bottom: 58/1999
  41781. }
  41782. },
  41783. },
  41784. [
  41785. {
  41786. name: "Normal",
  41787. height: math.unit(5, "feet"),
  41788. default: true
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41794. {
  41795. front: {
  41796. height: math.unit(8, "feet"),
  41797. weight: math.unit(300, "lb"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/raxinath/front.svg",
  41801. extra: 1407/1309,
  41802. bottom: 39/1446
  41803. }
  41804. },
  41805. back: {
  41806. height: math.unit(8, "feet"),
  41807. weight: math.unit(300, "lb"),
  41808. name: "Back",
  41809. image: {
  41810. source: "./media/characters/raxinath/back.svg",
  41811. extra: 1405/1315,
  41812. bottom: 9/1414
  41813. }
  41814. },
  41815. },
  41816. [
  41817. {
  41818. name: "Speck",
  41819. height: math.unit(0.5, "nm")
  41820. },
  41821. {
  41822. name: "Micro",
  41823. height: math.unit(3, "inches")
  41824. },
  41825. {
  41826. name: "Kobold",
  41827. height: math.unit(3, "feet")
  41828. },
  41829. {
  41830. name: "Normal",
  41831. height: math.unit(8, "feet"),
  41832. default: true
  41833. },
  41834. {
  41835. name: "Giant",
  41836. height: math.unit(50, "feet")
  41837. },
  41838. {
  41839. name: "Macro",
  41840. height: math.unit(1000, "feet")
  41841. },
  41842. {
  41843. name: "Megamacro",
  41844. height: math.unit(1, "mile")
  41845. },
  41846. ]
  41847. ))
  41848. characterMakers.push(() => makeCharacter(
  41849. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41850. {
  41851. front: {
  41852. height: math.unit(10, "feet"),
  41853. weight: math.unit(1442, "lb"),
  41854. name: "Front",
  41855. image: {
  41856. source: "./media/characters/mal-dragon/front.svg",
  41857. extra: 1515/1444,
  41858. bottom: 113/1628
  41859. }
  41860. },
  41861. back: {
  41862. height: math.unit(10, "feet"),
  41863. weight: math.unit(1442, "lb"),
  41864. name: "Back",
  41865. image: {
  41866. source: "./media/characters/mal-dragon/back.svg",
  41867. extra: 1527/1434,
  41868. bottom: 25/1552
  41869. }
  41870. },
  41871. },
  41872. [
  41873. {
  41874. name: "Mortal Interaction",
  41875. height: math.unit(10, "feet"),
  41876. default: true
  41877. },
  41878. {
  41879. name: "Large",
  41880. height: math.unit(30, "feet")
  41881. },
  41882. {
  41883. name: "Kaiju",
  41884. height: math.unit(300, "feet")
  41885. },
  41886. {
  41887. name: "Megamacro",
  41888. height: math.unit(10000, "feet")
  41889. },
  41890. {
  41891. name: "Continent Cracker",
  41892. height: math.unit(30000000, "feet")
  41893. },
  41894. {
  41895. name: "Sol-Swallowing",
  41896. height: math.unit(1e11, "feet")
  41897. },
  41898. {
  41899. name: "Light Universal",
  41900. height: math.unit(5, "universes")
  41901. },
  41902. {
  41903. name: "Universe Atoms",
  41904. height: math.unit(1.829e9, "universes")
  41905. },
  41906. {
  41907. name: "Light Multiversal",
  41908. height: math.unit(5, "multiverses")
  41909. },
  41910. {
  41911. name: "Multiverse Atoms",
  41912. height: math.unit(1.829e9, "multiverses")
  41913. },
  41914. {
  41915. name: "Fabric of Time",
  41916. height: math.unit(1e262, "multiverses")
  41917. },
  41918. ]
  41919. ))
  41920. characterMakers.push(() => makeCharacter(
  41921. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41922. {
  41923. front: {
  41924. height: math.unit(9, "feet"),
  41925. weight: math.unit(1050, "lb"),
  41926. name: "Front",
  41927. image: {
  41928. source: "./media/characters/tabitha/front.svg",
  41929. extra: 2083/1994,
  41930. bottom: 68/2151
  41931. }
  41932. },
  41933. },
  41934. [
  41935. {
  41936. name: "Baseline",
  41937. height: math.unit(9, "feet"),
  41938. default: true
  41939. },
  41940. {
  41941. name: "Giant",
  41942. height: math.unit(90, "feet")
  41943. },
  41944. {
  41945. name: "Macro",
  41946. height: math.unit(900, "feet")
  41947. },
  41948. {
  41949. name: "Megamacro",
  41950. height: math.unit(9000, "feet")
  41951. },
  41952. {
  41953. name: "City-Crushing",
  41954. height: math.unit(27000, "feet")
  41955. },
  41956. {
  41957. name: "Mountain-Mashing",
  41958. height: math.unit(90000, "feet")
  41959. },
  41960. {
  41961. name: "Nation Nemesis",
  41962. height: math.unit(9e6, "feet")
  41963. },
  41964. {
  41965. name: "Continent Cracker",
  41966. height: math.unit(27e6, "feet")
  41967. },
  41968. {
  41969. name: "Earth-Eclipsing",
  41970. height: math.unit(2.7e8, "feet")
  41971. },
  41972. {
  41973. name: "Gas Giant Gulper",
  41974. height: math.unit(2.7e9, "feet")
  41975. },
  41976. {
  41977. name: "Sol-Swallowing",
  41978. height: math.unit(9e10, "feet")
  41979. },
  41980. {
  41981. name: "Galaxy Gulper",
  41982. height: math.unit(9, "galaxies")
  41983. },
  41984. {
  41985. name: "Cosmos Churner",
  41986. height: math.unit(9, "universes")
  41987. },
  41988. ]
  41989. ))
  41990. characterMakers.push(() => makeCharacter(
  41991. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41992. {
  41993. front: {
  41994. height: math.unit(160, "cm"),
  41995. weight: math.unit(55, "kg"),
  41996. name: "Front",
  41997. image: {
  41998. source: "./media/characters/tow/front.svg",
  41999. extra: 1751/1722,
  42000. bottom: 74/1825
  42001. }
  42002. },
  42003. },
  42004. [
  42005. {
  42006. name: "Norm",
  42007. height: math.unit(160, "cm")
  42008. },
  42009. {
  42010. name: "Casual",
  42011. height: math.unit(3200, "m"),
  42012. default: true
  42013. },
  42014. {
  42015. name: "Show-Off",
  42016. height: math.unit(160, "km")
  42017. },
  42018. ]
  42019. ))
  42020. characterMakers.push(() => makeCharacter(
  42021. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42022. {
  42023. front: {
  42024. height: math.unit(7 + 11/12, "feet"),
  42025. weight: math.unit(342.8, "lb"),
  42026. name: "Front",
  42027. image: {
  42028. source: "./media/characters/vivian-orca-dragon/front.svg",
  42029. extra: 1890/1865,
  42030. bottom: 28/1918
  42031. }
  42032. },
  42033. },
  42034. [
  42035. {
  42036. name: "Micro",
  42037. height: math.unit(5, "inches")
  42038. },
  42039. {
  42040. name: "Normal",
  42041. height: math.unit(7 + 11/12, "feet"),
  42042. default: true
  42043. },
  42044. {
  42045. name: "Macro",
  42046. height: math.unit(395 + 7/12, "feet")
  42047. },
  42048. ]
  42049. ))
  42050. characterMakers.push(() => makeCharacter(
  42051. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42052. {
  42053. side: {
  42054. height: math.unit(10, "feet"),
  42055. weight: math.unit(1442, "lb"),
  42056. name: "Side",
  42057. image: {
  42058. source: "./media/characters/lotherakon/side.svg",
  42059. extra: 1604/1497,
  42060. bottom: 89/1693
  42061. }
  42062. },
  42063. },
  42064. [
  42065. {
  42066. name: "Mortal Interaction",
  42067. height: math.unit(10, "feet")
  42068. },
  42069. {
  42070. name: "Large",
  42071. height: math.unit(30, "feet"),
  42072. default: true
  42073. },
  42074. {
  42075. name: "Giant",
  42076. height: math.unit(100, "feet")
  42077. },
  42078. {
  42079. name: "Kaiju",
  42080. height: math.unit(300, "feet")
  42081. },
  42082. {
  42083. name: "Macro",
  42084. height: math.unit(1000, "feet")
  42085. },
  42086. {
  42087. name: "Macro+",
  42088. height: math.unit(3000, "feet")
  42089. },
  42090. {
  42091. name: "Megamacro",
  42092. height: math.unit(10000, "feet")
  42093. },
  42094. {
  42095. name: "City-Crushing",
  42096. height: math.unit(30000, "feet")
  42097. },
  42098. {
  42099. name: "Continent Cracker",
  42100. height: math.unit(30e6, "feet")
  42101. },
  42102. {
  42103. name: "Earth Eclipsing",
  42104. height: math.unit(3e8, "feet")
  42105. },
  42106. {
  42107. name: "Gas Giant Gulper",
  42108. height: math.unit(3e9, "feet")
  42109. },
  42110. {
  42111. name: "Sol-Swallowing",
  42112. height: math.unit(1e11, "feet")
  42113. },
  42114. {
  42115. name: "System Swallower",
  42116. height: math.unit(3e14, "feet")
  42117. },
  42118. {
  42119. name: "Galaxy Gulper",
  42120. height: math.unit(10, "galaxies")
  42121. },
  42122. {
  42123. name: "Light Universal",
  42124. height: math.unit(5, "universes")
  42125. },
  42126. {
  42127. name: "Universe Palm",
  42128. height: math.unit(20, "universes")
  42129. },
  42130. {
  42131. name: "Light Multiversal",
  42132. height: math.unit(5, "multiverses")
  42133. },
  42134. {
  42135. name: "Multiverse Palm",
  42136. height: math.unit(20, "multiverses")
  42137. },
  42138. {
  42139. name: "Inferno Incarnate",
  42140. height: math.unit(1e7, "multiverses")
  42141. },
  42142. ]
  42143. ))
  42144. characterMakers.push(() => makeCharacter(
  42145. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42146. {
  42147. front: {
  42148. height: math.unit(8, "feet"),
  42149. weight: math.unit(1200, "lb"),
  42150. name: "Front",
  42151. image: {
  42152. source: "./media/characters/malithee/front.svg",
  42153. extra: 1675/1640,
  42154. bottom: 162/1837
  42155. }
  42156. },
  42157. },
  42158. [
  42159. {
  42160. name: "Mortal Interaction",
  42161. height: math.unit(8, "feet"),
  42162. default: true
  42163. },
  42164. {
  42165. name: "Large",
  42166. height: math.unit(24, "feet")
  42167. },
  42168. {
  42169. name: "Kaiju",
  42170. height: math.unit(240, "feet")
  42171. },
  42172. {
  42173. name: "Megamacro",
  42174. height: math.unit(8000, "feet")
  42175. },
  42176. {
  42177. name: "Continent Cracker",
  42178. height: math.unit(24e6, "feet")
  42179. },
  42180. {
  42181. name: "Earth-Eclipsing",
  42182. height: math.unit(2.4e8, "feet")
  42183. },
  42184. {
  42185. name: "Sol-Swallowing",
  42186. height: math.unit(8e10, "feet")
  42187. },
  42188. {
  42189. name: "Galaxy Gulper",
  42190. height: math.unit(8, "galaxies")
  42191. },
  42192. {
  42193. name: "Light Universal",
  42194. height: math.unit(4, "universes")
  42195. },
  42196. {
  42197. name: "Universe Atoms",
  42198. height: math.unit(1.829e9, "universes")
  42199. },
  42200. {
  42201. name: "Light Multiversal",
  42202. height: math.unit(4, "multiverses")
  42203. },
  42204. {
  42205. name: "Multiverse Atoms",
  42206. height: math.unit(1.829e9, "multiverses")
  42207. },
  42208. {
  42209. name: "Nigh-Omnipresence",
  42210. height: math.unit(8e261, "multiverses")
  42211. },
  42212. ]
  42213. ))
  42214. characterMakers.push(() => makeCharacter(
  42215. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42216. {
  42217. front: {
  42218. height: math.unit(10, "feet"),
  42219. weight: math.unit(1500, "lb"),
  42220. name: "Front",
  42221. image: {
  42222. source: "./media/characters/miles-thestia/front.svg",
  42223. extra: 1812/1727,
  42224. bottom: 86/1898
  42225. }
  42226. },
  42227. back: {
  42228. height: math.unit(10, "feet"),
  42229. weight: math.unit(1500, "lb"),
  42230. name: "Back",
  42231. image: {
  42232. source: "./media/characters/miles-thestia/back.svg",
  42233. extra: 1799/1690,
  42234. bottom: 47/1846
  42235. }
  42236. },
  42237. frontNsfw: {
  42238. height: math.unit(10, "feet"),
  42239. weight: math.unit(1500, "lb"),
  42240. name: "Front (NSFW)",
  42241. image: {
  42242. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42243. extra: 1812/1727,
  42244. bottom: 86/1898
  42245. }
  42246. },
  42247. },
  42248. [
  42249. {
  42250. name: "Mini-Macro",
  42251. height: math.unit(10, "feet"),
  42252. default: true
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42258. {
  42259. front: {
  42260. height: math.unit(25, "feet"),
  42261. name: "Front",
  42262. image: {
  42263. source: "./media/characters/titan-s-wulf/front.svg",
  42264. extra: 1560/1484,
  42265. bottom: 76/1636
  42266. }
  42267. },
  42268. },
  42269. [
  42270. {
  42271. name: "Smallest",
  42272. height: math.unit(25, "feet"),
  42273. default: true
  42274. },
  42275. {
  42276. name: "Normal",
  42277. height: math.unit(200, "feet")
  42278. },
  42279. {
  42280. name: "Macro",
  42281. height: math.unit(200000, "feet")
  42282. },
  42283. {
  42284. name: "Multiversal Original",
  42285. height: math.unit(10000, "multiverses")
  42286. },
  42287. ]
  42288. ))
  42289. characterMakers.push(() => makeCharacter(
  42290. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42291. {
  42292. front: {
  42293. height: math.unit(8, "feet"),
  42294. weight: math.unit(553, "lb"),
  42295. name: "Front",
  42296. image: {
  42297. source: "./media/characters/tawendeh/front.svg",
  42298. extra: 2365/2268,
  42299. bottom: 83/2448
  42300. }
  42301. },
  42302. frontClothed: {
  42303. height: math.unit(8, "feet"),
  42304. weight: math.unit(553, "lb"),
  42305. name: "Front (Clothed)",
  42306. image: {
  42307. source: "./media/characters/tawendeh/front-clothed.svg",
  42308. extra: 2365/2268,
  42309. bottom: 83/2448
  42310. }
  42311. },
  42312. back: {
  42313. height: math.unit(8, "feet"),
  42314. weight: math.unit(553, "lb"),
  42315. name: "Back",
  42316. image: {
  42317. source: "./media/characters/tawendeh/back.svg",
  42318. extra: 2397/2294,
  42319. bottom: 42/2439
  42320. }
  42321. },
  42322. },
  42323. [
  42324. {
  42325. name: "Mortal Interaction",
  42326. height: math.unit(8, "feet"),
  42327. default: true
  42328. },
  42329. {
  42330. name: "Giant",
  42331. height: math.unit(80, "feet")
  42332. },
  42333. {
  42334. name: "Macro",
  42335. height: math.unit(800, "feet")
  42336. },
  42337. {
  42338. name: "Megamacro",
  42339. height: math.unit(8000, "feet")
  42340. },
  42341. {
  42342. name: "City-Crushing",
  42343. height: math.unit(24000, "feet")
  42344. },
  42345. {
  42346. name: "Mountain-Mashing",
  42347. height: math.unit(80000, "feet")
  42348. },
  42349. {
  42350. name: "Nation Nemesis",
  42351. height: math.unit(8e6, "feet")
  42352. },
  42353. {
  42354. name: "Continent Cracker",
  42355. height: math.unit(24e6, "feet")
  42356. },
  42357. {
  42358. name: "Earth-Eclipsing",
  42359. height: math.unit(2.4e8, "feet")
  42360. },
  42361. {
  42362. name: "Gas Giant Gulper",
  42363. height: math.unit(2.4e9, "feet")
  42364. },
  42365. {
  42366. name: "Sol-Swallowing",
  42367. height: math.unit(8e10, "feet")
  42368. },
  42369. {
  42370. name: "Galaxy Gulper",
  42371. height: math.unit(8, "galaxies")
  42372. },
  42373. {
  42374. name: "Cosmos Churner",
  42375. height: math.unit(8, "universes")
  42376. },
  42377. {
  42378. name: "Omnipotent Otter",
  42379. height: math.unit(80, "universes")
  42380. },
  42381. ]
  42382. ))
  42383. characterMakers.push(() => makeCharacter(
  42384. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42385. {
  42386. front: {
  42387. height: math.unit(2.6, "meters"),
  42388. weight: math.unit(900, "kg"),
  42389. name: "Front",
  42390. image: {
  42391. source: "./media/characters/neesha/front.svg",
  42392. extra: 1803/1653,
  42393. bottom: 128/1931
  42394. }
  42395. },
  42396. },
  42397. [
  42398. {
  42399. name: "Normal",
  42400. height: math.unit(2.6, "meters"),
  42401. default: true
  42402. },
  42403. {
  42404. name: "Macro",
  42405. height: math.unit(50, "meters")
  42406. },
  42407. ]
  42408. ))
  42409. characterMakers.push(() => makeCharacter(
  42410. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42411. {
  42412. front: {
  42413. height: math.unit(5, "feet"),
  42414. weight: math.unit(185, "lb"),
  42415. name: "Front",
  42416. image: {
  42417. source: "./media/characters/kyera/front.svg",
  42418. extra: 1875/1790,
  42419. bottom: 96/1971
  42420. }
  42421. },
  42422. },
  42423. [
  42424. {
  42425. name: "Normal",
  42426. height: math.unit(5, "feet"),
  42427. default: true
  42428. },
  42429. ]
  42430. ))
  42431. characterMakers.push(() => makeCharacter(
  42432. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42433. {
  42434. front: {
  42435. height: math.unit(7 + 6/12, "feet"),
  42436. weight: math.unit(540, "lb"),
  42437. name: "Front",
  42438. image: {
  42439. source: "./media/characters/yuko/front.svg",
  42440. extra: 1282/1222,
  42441. bottom: 101/1383
  42442. }
  42443. },
  42444. frontClothed: {
  42445. height: math.unit(7 + 6/12, "feet"),
  42446. weight: math.unit(540, "lb"),
  42447. name: "Front (Clothed)",
  42448. image: {
  42449. source: "./media/characters/yuko/front-clothed.svg",
  42450. extra: 1282/1222,
  42451. bottom: 101/1383
  42452. }
  42453. },
  42454. },
  42455. [
  42456. {
  42457. name: "Normal",
  42458. height: math.unit(7 + 6/12, "feet"),
  42459. default: true
  42460. },
  42461. {
  42462. name: "Macro",
  42463. height: math.unit(26 + 9/12, "feet")
  42464. },
  42465. {
  42466. name: "Megamacro",
  42467. height: math.unit(300, "feet")
  42468. },
  42469. {
  42470. name: "Gigamacro",
  42471. height: math.unit(5000, "feet")
  42472. },
  42473. {
  42474. name: "Planetary",
  42475. height: math.unit(10000, "miles")
  42476. },
  42477. ]
  42478. ))
  42479. characterMakers.push(() => makeCharacter(
  42480. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42481. {
  42482. front: {
  42483. height: math.unit(8 + 2/12, "feet"),
  42484. weight: math.unit(600, "lb"),
  42485. name: "Front",
  42486. image: {
  42487. source: "./media/characters/deam-nitrel/front.svg",
  42488. extra: 1308/1234,
  42489. bottom: 125/1433
  42490. }
  42491. },
  42492. },
  42493. [
  42494. {
  42495. name: "Normal",
  42496. height: math.unit(8 + 2/12, "feet"),
  42497. default: true
  42498. },
  42499. ]
  42500. ))
  42501. characterMakers.push(() => makeCharacter(
  42502. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42503. {
  42504. front: {
  42505. height: math.unit(6.1, "feet"),
  42506. weight: math.unit(180, "lb"),
  42507. name: "Front",
  42508. image: {
  42509. source: "./media/characters/skyress/front.svg",
  42510. extra: 1045/915,
  42511. bottom: 28/1073
  42512. }
  42513. },
  42514. maw: {
  42515. height: math.unit(1, "feet"),
  42516. name: "Maw",
  42517. image: {
  42518. source: "./media/characters/skyress/maw.svg"
  42519. }
  42520. },
  42521. },
  42522. [
  42523. {
  42524. name: "Normal",
  42525. height: math.unit(6.1, "feet"),
  42526. default: true
  42527. },
  42528. {
  42529. name: "Macro",
  42530. height: math.unit(200, "feet")
  42531. },
  42532. ]
  42533. ))
  42534. characterMakers.push(() => makeCharacter(
  42535. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42536. {
  42537. front: {
  42538. height: math.unit(4 + 2/12, "feet"),
  42539. weight: math.unit(40, "kg"),
  42540. name: "Front",
  42541. image: {
  42542. source: "./media/characters/amethyst-jones/front.svg",
  42543. extra: 1220/1150,
  42544. bottom: 101/1321
  42545. }
  42546. },
  42547. },
  42548. [
  42549. {
  42550. name: "Normal",
  42551. height: math.unit(4 + 2/12, "feet"),
  42552. default: true
  42553. },
  42554. ]
  42555. ))
  42556. characterMakers.push(() => makeCharacter(
  42557. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42558. {
  42559. front: {
  42560. height: math.unit(1.7, "m"),
  42561. weight: math.unit(135, "lb"),
  42562. name: "Front",
  42563. image: {
  42564. source: "./media/characters/jade/front.svg",
  42565. extra: 1818/1767,
  42566. bottom: 32/1850
  42567. }
  42568. },
  42569. back: {
  42570. height: math.unit(1.7, "m"),
  42571. weight: math.unit(135, "lb"),
  42572. name: "Back",
  42573. image: {
  42574. source: "./media/characters/jade/back.svg",
  42575. extra: 1869/1809,
  42576. bottom: 35/1904
  42577. }
  42578. },
  42579. hand: {
  42580. height: math.unit(0.24, "m"),
  42581. name: "Hand",
  42582. image: {
  42583. source: "./media/characters/jade/hand.svg"
  42584. }
  42585. },
  42586. foot: {
  42587. height: math.unit(0.263, "m"),
  42588. name: "Foot",
  42589. image: {
  42590. source: "./media/characters/jade/foot.svg"
  42591. }
  42592. },
  42593. dick: {
  42594. height: math.unit(0.47, "m"),
  42595. name: "Dick",
  42596. image: {
  42597. source: "./media/characters/jade/dick.svg"
  42598. }
  42599. },
  42600. },
  42601. [
  42602. {
  42603. name: "Micro",
  42604. height: math.unit(22, "cm")
  42605. },
  42606. {
  42607. name: "Normal",
  42608. height: math.unit(1.7, "m"),
  42609. default: true
  42610. },
  42611. {
  42612. name: "Macro",
  42613. height: math.unit(152, "m")
  42614. },
  42615. ]
  42616. ))
  42617. characterMakers.push(() => makeCharacter(
  42618. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42619. {
  42620. front: {
  42621. height: math.unit(100, "miles"),
  42622. weight: math.unit(20000, "tons"),
  42623. name: "Front",
  42624. image: {
  42625. source: "./media/characters/cookie/front.svg",
  42626. extra: 1125/1070,
  42627. bottom: 30/1155
  42628. }
  42629. },
  42630. },
  42631. [
  42632. {
  42633. name: "Big",
  42634. height: math.unit(50, "feet")
  42635. },
  42636. {
  42637. name: "Macro",
  42638. height: math.unit(100, "miles"),
  42639. default: true
  42640. },
  42641. {
  42642. name: "Megamacro",
  42643. height: math.unit(90000, "miles")
  42644. },
  42645. ]
  42646. ))
  42647. characterMakers.push(() => makeCharacter(
  42648. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42649. {
  42650. front: {
  42651. height: math.unit(6, "feet"),
  42652. weight: math.unit(145, "lb"),
  42653. name: "Front",
  42654. image: {
  42655. source: "./media/characters/farzian/front.svg",
  42656. extra: 1902/1693,
  42657. bottom: 108/2010
  42658. }
  42659. },
  42660. },
  42661. [
  42662. {
  42663. name: "Macro",
  42664. height: math.unit(500, "feet"),
  42665. default: true
  42666. },
  42667. ]
  42668. ))
  42669. characterMakers.push(() => makeCharacter(
  42670. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42671. {
  42672. front: {
  42673. height: math.unit(3 + 6/12, "feet"),
  42674. weight: math.unit(50, "lb"),
  42675. name: "Front",
  42676. image: {
  42677. source: "./media/characters/kimberly-tilson/front.svg",
  42678. extra: 1400/1322,
  42679. bottom: 36/1436
  42680. }
  42681. },
  42682. back: {
  42683. height: math.unit(3 + 6/12, "feet"),
  42684. weight: math.unit(50, "lb"),
  42685. name: "Back",
  42686. image: {
  42687. source: "./media/characters/kimberly-tilson/back.svg",
  42688. extra: 1370/1307,
  42689. bottom: 20/1390
  42690. }
  42691. },
  42692. },
  42693. [
  42694. {
  42695. name: "Normal",
  42696. height: math.unit(3 + 6/12, "feet"),
  42697. default: true
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42703. {
  42704. front: {
  42705. height: math.unit(350, "meters"),
  42706. weight: math.unit(7.57059e+8, "lb"),
  42707. name: "Front",
  42708. image: {
  42709. source: "./media/characters/harthos/front.svg",
  42710. extra: 455/446,
  42711. bottom: 15/470
  42712. },
  42713. form: "peacekeeper",
  42714. default: true
  42715. },
  42716. allusus_front: {
  42717. height: math.unit(270, "meters"),
  42718. weight: math.unit(3.47550e+8, "lb"),
  42719. name: "Front",
  42720. image: {
  42721. source: "./media/characters/harthos/allusus-front.svg",
  42722. extra: 455/446,
  42723. bottom: 15/470
  42724. },
  42725. form: "allusus",
  42726. },
  42727. },
  42728. [
  42729. {
  42730. name: "Macro",
  42731. height: math.unit(350, "meters"),
  42732. default: true,
  42733. form: "peacekeeper"
  42734. },
  42735. {
  42736. name: "Macro",
  42737. height: math.unit(270, "meters"),
  42738. default: true,
  42739. form: "allusus"
  42740. },
  42741. ],
  42742. {
  42743. "peacekeeper": {
  42744. name: "Peacekeeper",
  42745. default: true
  42746. },
  42747. "allusus": {
  42748. name: "Allusus",
  42749. },
  42750. }
  42751. ))
  42752. characterMakers.push(() => makeCharacter(
  42753. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42754. {
  42755. front: {
  42756. height: math.unit(15, "feet"),
  42757. name: "Front",
  42758. image: {
  42759. source: "./media/characters/hypatia/front.svg",
  42760. extra: 1653/1591,
  42761. bottom: 79/1732
  42762. }
  42763. },
  42764. },
  42765. [
  42766. {
  42767. name: "Normal",
  42768. height: math.unit(15, "feet")
  42769. },
  42770. {
  42771. name: "Small",
  42772. height: math.unit(300, "feet")
  42773. },
  42774. {
  42775. name: "Macro",
  42776. height: math.unit(2500, "feet"),
  42777. default: true
  42778. },
  42779. {
  42780. name: "Mega Macro",
  42781. height: math.unit(1500, "miles")
  42782. },
  42783. {
  42784. name: "Giga Macro",
  42785. height: math.unit(1.5e6, "miles")
  42786. },
  42787. ]
  42788. ))
  42789. characterMakers.push(() => makeCharacter(
  42790. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42791. {
  42792. front: {
  42793. height: math.unit(6, "feet"),
  42794. weight: math.unit(200, "lb"),
  42795. name: "Front",
  42796. image: {
  42797. source: "./media/characters/wulver/front.svg",
  42798. extra: 1724/1632,
  42799. bottom: 130/1854
  42800. }
  42801. },
  42802. frontNsfw: {
  42803. height: math.unit(6, "feet"),
  42804. weight: math.unit(200, "lb"),
  42805. name: "Front (NSFW)",
  42806. image: {
  42807. source: "./media/characters/wulver/front-nsfw.svg",
  42808. extra: 1724/1632,
  42809. bottom: 130/1854
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Human-Sized",
  42816. height: math.unit(6, "feet")
  42817. },
  42818. {
  42819. name: "Normal",
  42820. height: math.unit(4, "meters"),
  42821. default: true
  42822. },
  42823. {
  42824. name: "Large",
  42825. height: math.unit(6, "m")
  42826. },
  42827. ]
  42828. ))
  42829. characterMakers.push(() => makeCharacter(
  42830. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42831. {
  42832. front: {
  42833. height: math.unit(7, "feet"),
  42834. name: "Front",
  42835. image: {
  42836. source: "./media/characters/maru/front.svg",
  42837. extra: 1595/1570,
  42838. bottom: 0/1595
  42839. }
  42840. },
  42841. },
  42842. [
  42843. {
  42844. name: "Normal",
  42845. height: math.unit(7, "feet"),
  42846. default: true
  42847. },
  42848. {
  42849. name: "Macro",
  42850. height: math.unit(700, "feet")
  42851. },
  42852. {
  42853. name: "Mega Macro",
  42854. height: math.unit(25, "miles")
  42855. },
  42856. ]
  42857. ))
  42858. characterMakers.push(() => makeCharacter(
  42859. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42860. {
  42861. front: {
  42862. height: math.unit(6, "feet"),
  42863. weight: math.unit(170, "lb"),
  42864. name: "Front",
  42865. image: {
  42866. source: "./media/characters/xenon/front.svg",
  42867. extra: 1376/1305,
  42868. bottom: 56/1432
  42869. }
  42870. },
  42871. back: {
  42872. height: math.unit(6, "feet"),
  42873. weight: math.unit(170, "lb"),
  42874. name: "Back",
  42875. image: {
  42876. source: "./media/characters/xenon/back.svg",
  42877. extra: 1328/1259,
  42878. bottom: 95/1423
  42879. }
  42880. },
  42881. maw: {
  42882. height: math.unit(0.52, "feet"),
  42883. name: "Maw",
  42884. image: {
  42885. source: "./media/characters/xenon/maw.svg"
  42886. }
  42887. },
  42888. handLeft: {
  42889. height: math.unit(0.82 * 169 / 153, "feet"),
  42890. name: "Hand (Left)",
  42891. image: {
  42892. source: "./media/characters/xenon/hand-left.svg"
  42893. }
  42894. },
  42895. handRight: {
  42896. height: math.unit(0.82, "feet"),
  42897. name: "Hand (Right)",
  42898. image: {
  42899. source: "./media/characters/xenon/hand-right.svg"
  42900. }
  42901. },
  42902. footLeft: {
  42903. height: math.unit(1.13, "feet"),
  42904. name: "Foot (Left)",
  42905. image: {
  42906. source: "./media/characters/xenon/foot-left.svg"
  42907. }
  42908. },
  42909. footRight: {
  42910. height: math.unit(1.13 * 194 / 196, "feet"),
  42911. name: "Foot (Right)",
  42912. image: {
  42913. source: "./media/characters/xenon/foot-right.svg"
  42914. }
  42915. },
  42916. },
  42917. [
  42918. {
  42919. name: "Micro",
  42920. height: math.unit(0.8, "inches")
  42921. },
  42922. {
  42923. name: "Normal",
  42924. height: math.unit(6, "feet")
  42925. },
  42926. {
  42927. name: "Macro",
  42928. height: math.unit(50, "feet"),
  42929. default: true
  42930. },
  42931. {
  42932. name: "Macro+",
  42933. height: math.unit(250, "feet")
  42934. },
  42935. {
  42936. name: "Megamacro",
  42937. height: math.unit(1500, "feet")
  42938. },
  42939. ]
  42940. ))
  42941. characterMakers.push(() => makeCharacter(
  42942. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42943. {
  42944. front: {
  42945. height: math.unit(7 + 5/12, "feet"),
  42946. name: "Front",
  42947. image: {
  42948. source: "./media/characters/zane/front.svg",
  42949. extra: 1260/1203,
  42950. bottom: 94/1354
  42951. }
  42952. },
  42953. back: {
  42954. height: math.unit(5.05, "feet"),
  42955. name: "Back",
  42956. image: {
  42957. source: "./media/characters/zane/back.svg",
  42958. extra: 893/829,
  42959. bottom: 30/923
  42960. }
  42961. },
  42962. werewolf: {
  42963. height: math.unit(11, "feet"),
  42964. name: "Werewolf",
  42965. image: {
  42966. source: "./media/characters/zane/werewolf.svg",
  42967. extra: 1383/1323,
  42968. bottom: 89/1472
  42969. }
  42970. },
  42971. foot: {
  42972. height: math.unit(1.46, "feet"),
  42973. name: "Foot",
  42974. image: {
  42975. source: "./media/characters/zane/foot.svg"
  42976. }
  42977. },
  42978. footFront: {
  42979. height: math.unit(0.784, "feet"),
  42980. name: "Foot (Front)",
  42981. image: {
  42982. source: "./media/characters/zane/foot-front.svg"
  42983. }
  42984. },
  42985. dick: {
  42986. height: math.unit(1.95, "feet"),
  42987. name: "Dick",
  42988. image: {
  42989. source: "./media/characters/zane/dick.svg"
  42990. }
  42991. },
  42992. dickWerewolf: {
  42993. height: math.unit(3.77, "feet"),
  42994. name: "Dick (Werewolf)",
  42995. image: {
  42996. source: "./media/characters/zane/dick.svg"
  42997. }
  42998. },
  42999. },
  43000. [
  43001. {
  43002. name: "Normal",
  43003. height: math.unit(7 + 5/12, "feet"),
  43004. default: true
  43005. },
  43006. ]
  43007. ))
  43008. characterMakers.push(() => makeCharacter(
  43009. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43010. {
  43011. front: {
  43012. height: math.unit(6 + 2/12, "feet"),
  43013. weight: math.unit(284, "lb"),
  43014. name: "Front",
  43015. image: {
  43016. source: "./media/characters/benni-desparque/front.svg",
  43017. extra: 878/729,
  43018. bottom: 58/936
  43019. }
  43020. },
  43021. back: {
  43022. height: math.unit(6 + 2/12, "feet"),
  43023. weight: math.unit(284, "lb"),
  43024. name: "Back",
  43025. image: {
  43026. source: "./media/characters/benni-desparque/back.svg",
  43027. extra: 901/756,
  43028. bottom: 51/952
  43029. }
  43030. },
  43031. dressed: {
  43032. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43033. weight: math.unit(284, "lb"),
  43034. name: "Dressed",
  43035. image: {
  43036. source: "./media/characters/benni-desparque/dressed.svg",
  43037. extra: 1514/1276,
  43038. bottom: 65/1579
  43039. }
  43040. },
  43041. hand: {
  43042. height: math.unit(1.28, "feet"),
  43043. name: "Hand",
  43044. image: {
  43045. source: "./media/characters/benni-desparque/hand.svg"
  43046. }
  43047. },
  43048. foot: {
  43049. height: math.unit(1.53, "feet"),
  43050. name: "Foot",
  43051. image: {
  43052. source: "./media/characters/benni-desparque/foot.svg"
  43053. }
  43054. },
  43055. aiControlUnit: {
  43056. height: math.unit(0.175, "feet"),
  43057. name: "AI Control Unit",
  43058. image: {
  43059. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43060. }
  43061. },
  43062. },
  43063. [
  43064. {
  43065. name: "Civilian",
  43066. height: math.unit(6 + 2/12, "feet")
  43067. },
  43068. {
  43069. name: "Normal",
  43070. height: math.unit(98, "feet"),
  43071. default: true
  43072. },
  43073. {
  43074. name: "Kaiju Fighter",
  43075. height: math.unit(268, "feet")
  43076. },
  43077. ]
  43078. ))
  43079. characterMakers.push(() => makeCharacter(
  43080. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43081. {
  43082. front: {
  43083. height: math.unit(5, "feet"),
  43084. weight: math.unit(105, "lb"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/maxine/front.svg",
  43088. extra: 1386/1250,
  43089. bottom: 71/1457
  43090. }
  43091. },
  43092. },
  43093. [
  43094. {
  43095. name: "Normal",
  43096. height: math.unit(5, "feet"),
  43097. default: true
  43098. },
  43099. ]
  43100. ))
  43101. characterMakers.push(() => makeCharacter(
  43102. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43103. {
  43104. front: {
  43105. height: math.unit(11 + 7/12, "feet"),
  43106. weight: math.unit(9576, "lb"),
  43107. name: "Front",
  43108. image: {
  43109. source: "./media/characters/scaly/front.svg",
  43110. extra: 888/867,
  43111. bottom: 36/924
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Normal",
  43118. height: math.unit(11 + 7/12, "feet"),
  43119. default: true
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43125. {
  43126. front: {
  43127. height: math.unit(6 + 3/12, "feet"),
  43128. name: "Front",
  43129. image: {
  43130. source: "./media/characters/saelria/front.svg",
  43131. extra: 1243/1138,
  43132. bottom: 46/1289
  43133. }
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Micro",
  43139. height: math.unit(6, "inches"),
  43140. },
  43141. {
  43142. name: "Normal",
  43143. height: math.unit(6 + 3/12, "feet"),
  43144. default: true
  43145. },
  43146. {
  43147. name: "Macro",
  43148. height: math.unit(25, "feet")
  43149. },
  43150. ]
  43151. ))
  43152. characterMakers.push(() => makeCharacter(
  43153. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43154. {
  43155. front: {
  43156. height: math.unit(80, "meters"),
  43157. weight: math.unit(7000, "tonnes"),
  43158. name: "Front",
  43159. image: {
  43160. source: "./media/characters/tef/front.svg",
  43161. extra: 2036/1991,
  43162. bottom: 54/2090
  43163. }
  43164. },
  43165. back: {
  43166. height: math.unit(80, "meters"),
  43167. weight: math.unit(7000, "tonnes"),
  43168. name: "Back",
  43169. image: {
  43170. source: "./media/characters/tef/back.svg",
  43171. extra: 2036/1991,
  43172. bottom: 54/2090
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Macro",
  43179. height: math.unit(80, "meters"),
  43180. default: true
  43181. },
  43182. ]
  43183. ))
  43184. characterMakers.push(() => makeCharacter(
  43185. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43186. {
  43187. front: {
  43188. height: math.unit(13, "feet"),
  43189. weight: math.unit(6, "tons"),
  43190. name: "Front",
  43191. image: {
  43192. source: "./media/characters/rover/front.svg",
  43193. extra: 1233/1156,
  43194. bottom: 50/1283
  43195. }
  43196. },
  43197. back: {
  43198. height: math.unit(13, "feet"),
  43199. weight: math.unit(6, "tons"),
  43200. name: "Back",
  43201. image: {
  43202. source: "./media/characters/rover/back.svg",
  43203. extra: 1327/1258,
  43204. bottom: 39/1366
  43205. }
  43206. },
  43207. },
  43208. [
  43209. {
  43210. name: "Normal",
  43211. height: math.unit(13, "feet"),
  43212. default: true
  43213. },
  43214. {
  43215. name: "Macro",
  43216. height: math.unit(1300, "feet")
  43217. },
  43218. {
  43219. name: "Megamacro",
  43220. height: math.unit(1300, "miles")
  43221. },
  43222. {
  43223. name: "Gigamacro",
  43224. height: math.unit(1300000, "miles")
  43225. },
  43226. ]
  43227. ))
  43228. characterMakers.push(() => makeCharacter(
  43229. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43230. {
  43231. front: {
  43232. height: math.unit(10, "feet"),
  43233. weight: math.unit(500, "lb"),
  43234. name: "Front",
  43235. image: {
  43236. source: "./media/characters/ariz/front.svg",
  43237. extra: 461/450,
  43238. bottom: 16/477
  43239. }
  43240. },
  43241. },
  43242. [
  43243. {
  43244. name: "MiniMacro",
  43245. height: math.unit(10, "feet"),
  43246. default: true
  43247. },
  43248. ]
  43249. ))
  43250. characterMakers.push(() => makeCharacter(
  43251. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43252. {
  43253. front: {
  43254. height: math.unit(6, "feet"),
  43255. weight: math.unit(140, "lb"),
  43256. name: "Front",
  43257. image: {
  43258. source: "./media/characters/sigrun/front.svg",
  43259. extra: 1418/1359,
  43260. bottom: 27/1445
  43261. }
  43262. },
  43263. },
  43264. [
  43265. {
  43266. name: "Macro",
  43267. height: math.unit(35, "feet"),
  43268. default: true
  43269. },
  43270. ]
  43271. ))
  43272. characterMakers.push(() => makeCharacter(
  43273. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43274. {
  43275. front: {
  43276. height: math.unit(6, "feet"),
  43277. weight: math.unit(150, "lb"),
  43278. name: "Front",
  43279. image: {
  43280. source: "./media/characters/numin/front.svg",
  43281. extra: 1433/1388,
  43282. bottom: 12/1445
  43283. }
  43284. },
  43285. },
  43286. [
  43287. {
  43288. name: "Macro",
  43289. height: math.unit(21.5, "km"),
  43290. default: true
  43291. },
  43292. ]
  43293. ))
  43294. characterMakers.push(() => makeCharacter(
  43295. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43296. {
  43297. front: {
  43298. height: math.unit(6, "feet"),
  43299. weight: math.unit(463, "lb"),
  43300. name: "Front",
  43301. image: {
  43302. source: "./media/characters/melwa/front.svg",
  43303. extra: 1307/1248,
  43304. bottom: 93/1400
  43305. }
  43306. },
  43307. },
  43308. [
  43309. {
  43310. name: "Macro",
  43311. height: math.unit(50, "meters"),
  43312. default: true
  43313. },
  43314. ]
  43315. ))
  43316. characterMakers.push(() => makeCharacter(
  43317. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43318. {
  43319. front: {
  43320. height: math.unit(325, "feet"),
  43321. name: "Front",
  43322. image: {
  43323. source: "./media/characters/zorkaiju/front.svg",
  43324. extra: 1955/1814,
  43325. bottom: 40/1995
  43326. }
  43327. },
  43328. frontExtended: {
  43329. height: math.unit(325, "feet"),
  43330. name: "Front (Extended)",
  43331. image: {
  43332. source: "./media/characters/zorkaiju/front-extended.svg",
  43333. extra: 1955/1814,
  43334. bottom: 40/1995
  43335. }
  43336. },
  43337. side: {
  43338. height: math.unit(325, "feet"),
  43339. name: "Side",
  43340. image: {
  43341. source: "./media/characters/zorkaiju/side.svg",
  43342. extra: 1495/1396,
  43343. bottom: 17/1512
  43344. }
  43345. },
  43346. sideExtended: {
  43347. height: math.unit(325, "feet"),
  43348. name: "Side (Extended)",
  43349. image: {
  43350. source: "./media/characters/zorkaiju/side-extended.svg",
  43351. extra: 1495/1396,
  43352. bottom: 17/1512
  43353. }
  43354. },
  43355. back: {
  43356. height: math.unit(325, "feet"),
  43357. name: "Back",
  43358. image: {
  43359. source: "./media/characters/zorkaiju/back.svg",
  43360. extra: 1959/1821,
  43361. bottom: 31/1990
  43362. }
  43363. },
  43364. backExtended: {
  43365. height: math.unit(325, "feet"),
  43366. name: "Back (Extended)",
  43367. image: {
  43368. source: "./media/characters/zorkaiju/back-extended.svg",
  43369. extra: 1959/1821,
  43370. bottom: 31/1990
  43371. }
  43372. },
  43373. hand: {
  43374. height: math.unit(58.4, "feet"),
  43375. name: "Hand",
  43376. image: {
  43377. source: "./media/characters/zorkaiju/hand.svg"
  43378. }
  43379. },
  43380. handExtended: {
  43381. height: math.unit(61.4, "feet"),
  43382. name: "Hand (Extended)",
  43383. image: {
  43384. source: "./media/characters/zorkaiju/hand-extended.svg"
  43385. }
  43386. },
  43387. foot: {
  43388. height: math.unit(95, "feet"),
  43389. name: "Foot",
  43390. image: {
  43391. source: "./media/characters/zorkaiju/foot.svg"
  43392. }
  43393. },
  43394. leftArm: {
  43395. height: math.unit(59, "feet"),
  43396. name: "Left Arm",
  43397. image: {
  43398. source: "./media/characters/zorkaiju/left-arm.svg"
  43399. }
  43400. },
  43401. rightArm: {
  43402. height: math.unit(59, "feet"),
  43403. name: "Right Arm",
  43404. image: {
  43405. source: "./media/characters/zorkaiju/right-arm.svg"
  43406. }
  43407. },
  43408. leftArmExtended: {
  43409. height: math.unit(59 * 1.033546, "feet"),
  43410. name: "Left Arm (Extended)",
  43411. image: {
  43412. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43413. }
  43414. },
  43415. rightArmExtended: {
  43416. height: math.unit(59 * 1.0496, "feet"),
  43417. name: "Right Arm (Extended)",
  43418. image: {
  43419. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43420. }
  43421. },
  43422. tail: {
  43423. height: math.unit(104, "feet"),
  43424. name: "Tail",
  43425. image: {
  43426. source: "./media/characters/zorkaiju/tail.svg"
  43427. }
  43428. },
  43429. tailExtended: {
  43430. height: math.unit(104, "feet"),
  43431. name: "Tail (Extended)",
  43432. image: {
  43433. source: "./media/characters/zorkaiju/tail-extended.svg"
  43434. }
  43435. },
  43436. tailBottom: {
  43437. height: math.unit(104, "feet"),
  43438. name: "Tail Bottom",
  43439. image: {
  43440. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43441. }
  43442. },
  43443. crystal: {
  43444. height: math.unit(27.54, "feet"),
  43445. name: "Crystal",
  43446. image: {
  43447. source: "./media/characters/zorkaiju/crystal.svg"
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "Kaiju",
  43454. height: math.unit(325, "feet"),
  43455. default: true
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43461. {
  43462. front: {
  43463. height: math.unit(6 + 1/12, "feet"),
  43464. weight: math.unit(115, "lb"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/bailey-belfry/front.svg",
  43468. extra: 1240/1121,
  43469. bottom: 101/1341
  43470. }
  43471. },
  43472. },
  43473. [
  43474. {
  43475. name: "Normal",
  43476. height: math.unit(6 + 1/12, "feet"),
  43477. default: true
  43478. },
  43479. ]
  43480. ))
  43481. characterMakers.push(() => makeCharacter(
  43482. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43483. {
  43484. side: {
  43485. height: math.unit(4, "meters"),
  43486. weight: math.unit(250, "kg"),
  43487. name: "Side",
  43488. image: {
  43489. source: "./media/characters/blacky/side.svg",
  43490. extra: 1027/919,
  43491. bottom: 43/1070
  43492. }
  43493. },
  43494. maw: {
  43495. height: math.unit(1, "meters"),
  43496. name: "Maw",
  43497. image: {
  43498. source: "./media/characters/blacky/maw.svg"
  43499. }
  43500. },
  43501. paw: {
  43502. height: math.unit(1, "meters"),
  43503. name: "Paw",
  43504. image: {
  43505. source: "./media/characters/blacky/paw.svg"
  43506. }
  43507. },
  43508. },
  43509. [
  43510. {
  43511. name: "Normal",
  43512. height: math.unit(4, "meters"),
  43513. default: true
  43514. },
  43515. ]
  43516. ))
  43517. characterMakers.push(() => makeCharacter(
  43518. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43519. {
  43520. front: {
  43521. height: math.unit(170, "cm"),
  43522. weight: math.unit(66, "kg"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/thux-ei/front.svg",
  43526. extra: 1109/1011,
  43527. bottom: 8/1117
  43528. }
  43529. },
  43530. },
  43531. [
  43532. {
  43533. name: "Normal",
  43534. height: math.unit(170, "cm"),
  43535. default: true
  43536. },
  43537. ]
  43538. ))
  43539. characterMakers.push(() => makeCharacter(
  43540. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43541. {
  43542. front: {
  43543. height: math.unit(5, "feet"),
  43544. weight: math.unit(120, "lb"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/roxanne-voltaire/front.svg",
  43548. extra: 1901/1779,
  43549. bottom: 53/1954
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Normal",
  43556. height: math.unit(5, "feet"),
  43557. default: true
  43558. },
  43559. {
  43560. name: "Giant",
  43561. height: math.unit(50, "feet")
  43562. },
  43563. {
  43564. name: "Titan",
  43565. height: math.unit(500, "feet")
  43566. },
  43567. {
  43568. name: "Macro",
  43569. height: math.unit(5000, "feet")
  43570. },
  43571. {
  43572. name: "Megamacro",
  43573. height: math.unit(50000, "feet")
  43574. },
  43575. {
  43576. name: "Gigamacro",
  43577. height: math.unit(500000, "feet")
  43578. },
  43579. {
  43580. name: "Teramacro",
  43581. height: math.unit(5e6, "feet")
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43587. {
  43588. front: {
  43589. height: math.unit(6 + 2/12, "feet"),
  43590. name: "Front",
  43591. image: {
  43592. source: "./media/characters/squeaks/front.svg",
  43593. extra: 1823/1768,
  43594. bottom: 138/1961
  43595. }
  43596. },
  43597. },
  43598. [
  43599. {
  43600. name: "Micro",
  43601. height: math.unit(0.5, "inches")
  43602. },
  43603. {
  43604. name: "Normal",
  43605. height: math.unit(6 + 2/12, "feet"),
  43606. default: true
  43607. },
  43608. {
  43609. name: "Macro",
  43610. height: math.unit(600, "feet")
  43611. },
  43612. ]
  43613. ))
  43614. characterMakers.push(() => makeCharacter(
  43615. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43616. {
  43617. front: {
  43618. height: math.unit(1.72, "meters"),
  43619. name: "Front",
  43620. image: {
  43621. source: "./media/characters/archinger/front.svg",
  43622. extra: 1861/1675,
  43623. bottom: 125/1986
  43624. }
  43625. },
  43626. back: {
  43627. height: math.unit(1.72, "meters"),
  43628. name: "Back",
  43629. image: {
  43630. source: "./media/characters/archinger/back.svg",
  43631. extra: 1844/1701,
  43632. bottom: 104/1948
  43633. }
  43634. },
  43635. cock: {
  43636. height: math.unit(0.59, "feet"),
  43637. name: "Cock",
  43638. image: {
  43639. source: "./media/characters/archinger/cock.svg"
  43640. }
  43641. },
  43642. },
  43643. [
  43644. {
  43645. name: "Normal",
  43646. height: math.unit(1.72, "meters"),
  43647. default: true
  43648. },
  43649. {
  43650. name: "Macro",
  43651. height: math.unit(84, "meters")
  43652. },
  43653. {
  43654. name: "Macro+",
  43655. height: math.unit(112, "meters")
  43656. },
  43657. {
  43658. name: "Macro++",
  43659. height: math.unit(960, "meters")
  43660. },
  43661. {
  43662. name: "Macro+++",
  43663. height: math.unit(4, "km")
  43664. },
  43665. {
  43666. name: "Macro++++",
  43667. height: math.unit(48, "km")
  43668. },
  43669. {
  43670. name: "Macro+++++",
  43671. height: math.unit(4500, "km")
  43672. },
  43673. ]
  43674. ))
  43675. characterMakers.push(() => makeCharacter(
  43676. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43677. {
  43678. front: {
  43679. height: math.unit(5 + 5/12, "feet"),
  43680. name: "Front",
  43681. image: {
  43682. source: "./media/characters/alsnapz/front.svg",
  43683. extra: 1157/1065,
  43684. bottom: 42/1199
  43685. }
  43686. },
  43687. },
  43688. [
  43689. {
  43690. name: "Normal",
  43691. height: math.unit(5 + 5/12, "feet"),
  43692. default: true
  43693. },
  43694. ]
  43695. ))
  43696. characterMakers.push(() => makeCharacter(
  43697. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43698. {
  43699. side: {
  43700. height: math.unit(3.2, "earths"),
  43701. name: "Side",
  43702. image: {
  43703. source: "./media/characters/mag/side.svg",
  43704. extra: 1331/1008,
  43705. bottom: 52/1383
  43706. }
  43707. },
  43708. wing: {
  43709. height: math.unit(1.94, "earths"),
  43710. name: "Wing",
  43711. image: {
  43712. source: "./media/characters/mag/wing.svg"
  43713. }
  43714. },
  43715. dick: {
  43716. height: math.unit(1.8, "earths"),
  43717. name: "Dick",
  43718. image: {
  43719. source: "./media/characters/mag/dick.svg"
  43720. }
  43721. },
  43722. ass: {
  43723. height: math.unit(1.33, "earths"),
  43724. name: "Ass",
  43725. image: {
  43726. source: "./media/characters/mag/ass.svg"
  43727. }
  43728. },
  43729. head: {
  43730. height: math.unit(1.1, "earths"),
  43731. name: "Head",
  43732. image: {
  43733. source: "./media/characters/mag/head.svg"
  43734. }
  43735. },
  43736. maw: {
  43737. height: math.unit(1.62, "earths"),
  43738. name: "Maw",
  43739. image: {
  43740. source: "./media/characters/mag/maw.svg"
  43741. }
  43742. },
  43743. },
  43744. [
  43745. {
  43746. name: "Small",
  43747. height: math.unit(162, "feet")
  43748. },
  43749. {
  43750. name: "Normal",
  43751. height: math.unit(3.2, "earths"),
  43752. default: true
  43753. },
  43754. ]
  43755. ))
  43756. characterMakers.push(() => makeCharacter(
  43757. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43758. {
  43759. front: {
  43760. height: math.unit(512, "feet"),
  43761. weight: math.unit(63509, "tonnes"),
  43762. name: "Front",
  43763. image: {
  43764. source: "./media/characters/vorrel-harroc/front.svg",
  43765. extra: 1075/1063,
  43766. bottom: 62/1137
  43767. }
  43768. },
  43769. },
  43770. [
  43771. {
  43772. name: "Normal",
  43773. height: math.unit(10, "feet")
  43774. },
  43775. {
  43776. name: "Macro",
  43777. height: math.unit(512, "feet"),
  43778. default: true
  43779. },
  43780. {
  43781. name: "Megamacro",
  43782. height: math.unit(256, "miles")
  43783. },
  43784. {
  43785. name: "Gigamacro",
  43786. height: math.unit(4096, "miles")
  43787. },
  43788. ]
  43789. ))
  43790. characterMakers.push(() => makeCharacter(
  43791. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43792. {
  43793. side: {
  43794. height: math.unit(50, "feet"),
  43795. name: "Side",
  43796. image: {
  43797. source: "./media/characters/froimar/side.svg",
  43798. extra: 855/638,
  43799. bottom: 99/954
  43800. }
  43801. },
  43802. },
  43803. [
  43804. {
  43805. name: "Macro",
  43806. height: math.unit(50, "feet"),
  43807. default: true
  43808. },
  43809. ]
  43810. ))
  43811. characterMakers.push(() => makeCharacter(
  43812. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43813. {
  43814. front: {
  43815. height: math.unit(210, "miles"),
  43816. name: "Front",
  43817. image: {
  43818. source: "./media/characters/timothy/front.svg",
  43819. extra: 1007/943,
  43820. bottom: 62/1069
  43821. }
  43822. },
  43823. frontSkirt: {
  43824. height: math.unit(210, "miles"),
  43825. name: "Front (Skirt)",
  43826. image: {
  43827. source: "./media/characters/timothy/front-skirt.svg",
  43828. extra: 1007/943,
  43829. bottom: 62/1069
  43830. }
  43831. },
  43832. frontCoat: {
  43833. height: math.unit(210, "miles"),
  43834. name: "Front (Coat)",
  43835. image: {
  43836. source: "./media/characters/timothy/front-coat.svg",
  43837. extra: 1007/943,
  43838. bottom: 62/1069
  43839. }
  43840. },
  43841. },
  43842. [
  43843. {
  43844. name: "Macro",
  43845. height: math.unit(210, "miles"),
  43846. default: true
  43847. },
  43848. {
  43849. name: "Megamacro",
  43850. height: math.unit(210000, "miles")
  43851. },
  43852. ]
  43853. ))
  43854. characterMakers.push(() => makeCharacter(
  43855. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43856. {
  43857. front: {
  43858. height: math.unit(188, "feet"),
  43859. name: "Front",
  43860. image: {
  43861. source: "./media/characters/pyotr/front.svg",
  43862. extra: 1912/1826,
  43863. bottom: 18/1930
  43864. }
  43865. },
  43866. },
  43867. [
  43868. {
  43869. name: "Macro",
  43870. height: math.unit(188, "feet"),
  43871. default: true
  43872. },
  43873. {
  43874. name: "Megamacro",
  43875. height: math.unit(8, "miles")
  43876. },
  43877. ]
  43878. ))
  43879. characterMakers.push(() => makeCharacter(
  43880. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43881. {
  43882. side: {
  43883. height: math.unit(10, "feet"),
  43884. weight: math.unit(4500, "lb"),
  43885. name: "Side",
  43886. image: {
  43887. source: "./media/characters/ackart/side.svg",
  43888. extra: 1776/1668,
  43889. bottom: 116/1892
  43890. }
  43891. },
  43892. },
  43893. [
  43894. {
  43895. name: "Normal",
  43896. height: math.unit(10, "feet"),
  43897. default: true
  43898. },
  43899. ]
  43900. ))
  43901. characterMakers.push(() => makeCharacter(
  43902. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43903. {
  43904. side: {
  43905. height: math.unit(21, "feet"),
  43906. name: "Side",
  43907. image: {
  43908. source: "./media/characters/nolow/side.svg",
  43909. extra: 1484/1434,
  43910. bottom: 85/1569
  43911. }
  43912. },
  43913. sideErect: {
  43914. height: math.unit(21, "feet"),
  43915. name: "Side-erect",
  43916. image: {
  43917. source: "./media/characters/nolow/side-erect.svg",
  43918. extra: 1484/1434,
  43919. bottom: 85/1569
  43920. }
  43921. },
  43922. },
  43923. [
  43924. {
  43925. name: "Regular",
  43926. height: math.unit(12, "feet")
  43927. },
  43928. {
  43929. name: "Big Chee",
  43930. height: math.unit(21, "feet"),
  43931. default: true
  43932. },
  43933. ]
  43934. ))
  43935. characterMakers.push(() => makeCharacter(
  43936. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43937. {
  43938. front: {
  43939. height: math.unit(7, "feet"),
  43940. weight: math.unit(250, "lb"),
  43941. name: "Front",
  43942. image: {
  43943. source: "./media/characters/nines/front.svg",
  43944. extra: 1741/1607,
  43945. bottom: 41/1782
  43946. }
  43947. },
  43948. side: {
  43949. height: math.unit(7, "feet"),
  43950. weight: math.unit(250, "lb"),
  43951. name: "Side",
  43952. image: {
  43953. source: "./media/characters/nines/side.svg",
  43954. extra: 1854/1735,
  43955. bottom: 93/1947
  43956. }
  43957. },
  43958. back: {
  43959. height: math.unit(7, "feet"),
  43960. weight: math.unit(250, "lb"),
  43961. name: "Back",
  43962. image: {
  43963. source: "./media/characters/nines/back.svg",
  43964. extra: 1748/1615,
  43965. bottom: 20/1768
  43966. }
  43967. },
  43968. },
  43969. [
  43970. {
  43971. name: "Megamacro",
  43972. height: math.unit(99, "km"),
  43973. default: true
  43974. },
  43975. ]
  43976. ))
  43977. characterMakers.push(() => makeCharacter(
  43978. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43979. {
  43980. front: {
  43981. height: math.unit(5 + 10/12, "feet"),
  43982. weight: math.unit(210, "lb"),
  43983. name: "Front",
  43984. image: {
  43985. source: "./media/characters/zenith/front.svg",
  43986. extra: 1531/1452,
  43987. bottom: 198/1729
  43988. }
  43989. },
  43990. back: {
  43991. height: math.unit(5 + 10/12, "feet"),
  43992. weight: math.unit(210, "lb"),
  43993. name: "Back",
  43994. image: {
  43995. source: "./media/characters/zenith/back.svg",
  43996. extra: 1571/1487,
  43997. bottom: 75/1646
  43998. }
  43999. },
  44000. },
  44001. [
  44002. {
  44003. name: "Normal",
  44004. height: math.unit(5 + 10/12, "feet"),
  44005. default: true
  44006. }
  44007. ]
  44008. ))
  44009. characterMakers.push(() => makeCharacter(
  44010. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44011. {
  44012. front: {
  44013. height: math.unit(4, "feet"),
  44014. weight: math.unit(60, "lb"),
  44015. name: "Front",
  44016. image: {
  44017. source: "./media/characters/jasper/front.svg",
  44018. extra: 1450/1379,
  44019. bottom: 19/1469
  44020. }
  44021. },
  44022. },
  44023. [
  44024. {
  44025. name: "Normal",
  44026. height: math.unit(4, "feet"),
  44027. default: true
  44028. },
  44029. ]
  44030. ))
  44031. characterMakers.push(() => makeCharacter(
  44032. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44033. {
  44034. front: {
  44035. height: math.unit(6 + 5/12, "feet"),
  44036. weight: math.unit(290, "lb"),
  44037. name: "Front",
  44038. image: {
  44039. source: "./media/characters/tiberius-thyben/front.svg",
  44040. extra: 757/739,
  44041. bottom: 39/796
  44042. }
  44043. },
  44044. },
  44045. [
  44046. {
  44047. name: "Micro",
  44048. height: math.unit(1.5, "inches")
  44049. },
  44050. {
  44051. name: "Normal",
  44052. height: math.unit(6 + 5/12, "feet"),
  44053. default: true
  44054. },
  44055. {
  44056. name: "Macro",
  44057. height: math.unit(300, "feet")
  44058. },
  44059. ]
  44060. ))
  44061. characterMakers.push(() => makeCharacter(
  44062. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44063. {
  44064. front: {
  44065. height: math.unit(5 + 6/12, "feet"),
  44066. weight: math.unit(60, "kg"),
  44067. name: "Front",
  44068. image: {
  44069. source: "./media/characters/sabre/front.svg",
  44070. extra: 738/671,
  44071. bottom: 27/765
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Teeny",
  44078. height: math.unit(2, "inches")
  44079. },
  44080. {
  44081. name: "Smol",
  44082. height: math.unit(8, "inches")
  44083. },
  44084. {
  44085. name: "Normal",
  44086. height: math.unit(5 + 6/12, "feet"),
  44087. default: true
  44088. },
  44089. {
  44090. name: "Mini-Macro",
  44091. height: math.unit(15, "feet")
  44092. },
  44093. {
  44094. name: "Macro",
  44095. height: math.unit(50, "feet")
  44096. },
  44097. ]
  44098. ))
  44099. characterMakers.push(() => makeCharacter(
  44100. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44101. {
  44102. front: {
  44103. height: math.unit(6 + 4/12, "feet"),
  44104. weight: math.unit(170, "lb"),
  44105. name: "Front",
  44106. image: {
  44107. source: "./media/characters/charlie/front.svg",
  44108. extra: 1348/1228,
  44109. bottom: 15/1363
  44110. }
  44111. },
  44112. },
  44113. [
  44114. {
  44115. name: "Macro",
  44116. height: math.unit(1700, "meters"),
  44117. default: true
  44118. },
  44119. {
  44120. name: "MegaMacro",
  44121. height: math.unit(20400, "meters")
  44122. },
  44123. ]
  44124. ))
  44125. characterMakers.push(() => makeCharacter(
  44126. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44127. {
  44128. front: {
  44129. height: math.unit(1.96, "meters"),
  44130. weight: math.unit(220, "lb"),
  44131. name: "Front",
  44132. image: {
  44133. source: "./media/characters/susan-grant/front.svg",
  44134. extra: 482/478,
  44135. bottom: 7/489
  44136. }
  44137. },
  44138. },
  44139. [
  44140. {
  44141. name: "Normal",
  44142. height: math.unit(1.96, "meters"),
  44143. default: true
  44144. },
  44145. {
  44146. name: "Macro",
  44147. height: math.unit(76.2, "meters")
  44148. },
  44149. {
  44150. name: "MegaMacro",
  44151. height: math.unit(305, "meters")
  44152. },
  44153. {
  44154. name: "GigaMacro",
  44155. height: math.unit(1220, "meters")
  44156. },
  44157. {
  44158. name: "SuperMacro",
  44159. height: math.unit(4878, "meters")
  44160. },
  44161. ]
  44162. ))
  44163. characterMakers.push(() => makeCharacter(
  44164. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44165. {
  44166. front: {
  44167. height: math.unit(5 + 4/12, "feet"),
  44168. weight: math.unit(110, "lb"),
  44169. name: "Front",
  44170. image: {
  44171. source: "./media/characters/axel-isanov/front.svg",
  44172. extra: 1096/1065,
  44173. bottom: 13/1109
  44174. }
  44175. },
  44176. },
  44177. [
  44178. {
  44179. name: "Normal",
  44180. height: math.unit(5 + 4/12, "feet"),
  44181. default: true
  44182. },
  44183. ]
  44184. ))
  44185. characterMakers.push(() => makeCharacter(
  44186. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44187. {
  44188. front: {
  44189. height: math.unit(9, "feet"),
  44190. weight: math.unit(467, "lb"),
  44191. name: "Front",
  44192. image: {
  44193. source: "./media/characters/necahual/front.svg",
  44194. extra: 920/873,
  44195. bottom: 26/946
  44196. }
  44197. },
  44198. back: {
  44199. height: math.unit(9, "feet"),
  44200. weight: math.unit(467, "lb"),
  44201. name: "Back",
  44202. image: {
  44203. source: "./media/characters/necahual/back.svg",
  44204. extra: 930/884,
  44205. bottom: 16/946
  44206. }
  44207. },
  44208. frontUnderwear: {
  44209. height: math.unit(9, "feet"),
  44210. weight: math.unit(467, "lb"),
  44211. name: "Front (Underwear)",
  44212. image: {
  44213. source: "./media/characters/necahual/front-underwear.svg",
  44214. extra: 920/873,
  44215. bottom: 26/946
  44216. }
  44217. },
  44218. frontDressed: {
  44219. height: math.unit(9, "feet"),
  44220. weight: math.unit(467, "lb"),
  44221. name: "Front (Dressed)",
  44222. image: {
  44223. source: "./media/characters/necahual/front-dressed.svg",
  44224. extra: 920/873,
  44225. bottom: 26/946
  44226. }
  44227. },
  44228. },
  44229. [
  44230. {
  44231. name: "Comprsesed",
  44232. height: math.unit(9, "feet")
  44233. },
  44234. {
  44235. name: "Natural",
  44236. height: math.unit(15, "feet"),
  44237. default: true
  44238. },
  44239. {
  44240. name: "Boosted",
  44241. height: math.unit(50, "feet")
  44242. },
  44243. {
  44244. name: "Boosted+",
  44245. height: math.unit(150, "feet")
  44246. },
  44247. {
  44248. name: "Max",
  44249. height: math.unit(500, "feet")
  44250. },
  44251. ]
  44252. ))
  44253. characterMakers.push(() => makeCharacter(
  44254. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44255. {
  44256. front: {
  44257. height: math.unit(22 + 1/12, "feet"),
  44258. weight: math.unit(3200, "lb"),
  44259. name: "Front",
  44260. image: {
  44261. source: "./media/characters/theo-acacia/front.svg",
  44262. extra: 1796/1741,
  44263. bottom: 83/1879
  44264. }
  44265. },
  44266. frontUnderwear: {
  44267. height: math.unit(22 + 1/12, "feet"),
  44268. weight: math.unit(3200, "lb"),
  44269. name: "Front (Underwear)",
  44270. image: {
  44271. source: "./media/characters/theo-acacia/front-underwear.svg",
  44272. extra: 1796/1741,
  44273. bottom: 83/1879
  44274. }
  44275. },
  44276. frontNude: {
  44277. height: math.unit(22 + 1/12, "feet"),
  44278. weight: math.unit(3200, "lb"),
  44279. name: "Front (Nude)",
  44280. image: {
  44281. source: "./media/characters/theo-acacia/front-nude.svg",
  44282. extra: 1796/1741,
  44283. bottom: 83/1879
  44284. }
  44285. },
  44286. },
  44287. [
  44288. {
  44289. name: "Normal",
  44290. height: math.unit(22 + 1/12, "feet"),
  44291. default: true
  44292. },
  44293. ]
  44294. ))
  44295. characterMakers.push(() => makeCharacter(
  44296. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44297. {
  44298. front: {
  44299. height: math.unit(20, "feet"),
  44300. name: "Front",
  44301. image: {
  44302. source: "./media/characters/astra/front.svg",
  44303. extra: 1850/1714,
  44304. bottom: 106/1956
  44305. }
  44306. },
  44307. frontUndressed: {
  44308. height: math.unit(20, "feet"),
  44309. name: "Front (Undressed)",
  44310. image: {
  44311. source: "./media/characters/astra/front-undressed.svg",
  44312. extra: 1926/1749,
  44313. bottom: 0/1926
  44314. }
  44315. },
  44316. hand: {
  44317. height: math.unit(1.53, "feet"),
  44318. name: "Hand",
  44319. image: {
  44320. source: "./media/characters/astra/hand.svg"
  44321. }
  44322. },
  44323. paw: {
  44324. height: math.unit(1.53, "feet"),
  44325. name: "Paw",
  44326. image: {
  44327. source: "./media/characters/astra/paw.svg"
  44328. }
  44329. },
  44330. },
  44331. [
  44332. {
  44333. name: "Smallest",
  44334. height: math.unit(20, "feet")
  44335. },
  44336. {
  44337. name: "Normal",
  44338. height: math.unit(1e9, "miles"),
  44339. default: true
  44340. },
  44341. {
  44342. name: "Larger",
  44343. height: math.unit(5, "multiverses")
  44344. },
  44345. {
  44346. name: "Largest",
  44347. height: math.unit(1e9, "multiverses")
  44348. },
  44349. ]
  44350. ))
  44351. characterMakers.push(() => makeCharacter(
  44352. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44353. {
  44354. front: {
  44355. height: math.unit(8, "feet"),
  44356. name: "Front",
  44357. image: {
  44358. source: "./media/characters/breanna/front.svg",
  44359. extra: 1912/1632,
  44360. bottom: 33/1945
  44361. }
  44362. },
  44363. },
  44364. [
  44365. {
  44366. name: "Smallest",
  44367. height: math.unit(8, "feet")
  44368. },
  44369. {
  44370. name: "Normal",
  44371. height: math.unit(1, "mile"),
  44372. default: true
  44373. },
  44374. {
  44375. name: "Maximum",
  44376. height: math.unit(1500000000000, "lightyears")
  44377. },
  44378. ]
  44379. ))
  44380. characterMakers.push(() => makeCharacter(
  44381. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44382. {
  44383. front: {
  44384. height: math.unit(5 + 11/12, "feet"),
  44385. weight: math.unit(155, "lb"),
  44386. name: "Front",
  44387. image: {
  44388. source: "./media/characters/cai/front.svg",
  44389. extra: 1823/1702,
  44390. bottom: 32/1855
  44391. }
  44392. },
  44393. back: {
  44394. height: math.unit(5 + 11/12, "feet"),
  44395. weight: math.unit(155, "lb"),
  44396. name: "Back",
  44397. image: {
  44398. source: "./media/characters/cai/back.svg",
  44399. extra: 1809/1708,
  44400. bottom: 31/1840
  44401. }
  44402. },
  44403. },
  44404. [
  44405. {
  44406. name: "Normal",
  44407. height: math.unit(5 + 11/12, "feet"),
  44408. default: true
  44409. },
  44410. {
  44411. name: "Big",
  44412. height: math.unit(15, "feet")
  44413. },
  44414. {
  44415. name: "Macro",
  44416. height: math.unit(200, "feet")
  44417. },
  44418. ]
  44419. ))
  44420. characterMakers.push(() => makeCharacter(
  44421. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44422. {
  44423. front: {
  44424. height: math.unit(5 + 6/12, "feet"),
  44425. weight: math.unit(160, "lb"),
  44426. name: "Front",
  44427. image: {
  44428. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44429. extra: 1227/1174,
  44430. bottom: 37/1264
  44431. }
  44432. },
  44433. },
  44434. [
  44435. {
  44436. name: "Macro",
  44437. height: math.unit(444, "meters"),
  44438. default: true
  44439. },
  44440. ]
  44441. ))
  44442. characterMakers.push(() => makeCharacter(
  44443. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44444. {
  44445. front: {
  44446. height: math.unit(18 + 7/12, "feet"),
  44447. name: "Front",
  44448. image: {
  44449. source: "./media/characters/rex/front.svg",
  44450. extra: 1941/1807,
  44451. bottom: 66/2007
  44452. }
  44453. },
  44454. back: {
  44455. height: math.unit(18 + 7/12, "feet"),
  44456. name: "Back",
  44457. image: {
  44458. source: "./media/characters/rex/back.svg",
  44459. extra: 1937/1822,
  44460. bottom: 42/1979
  44461. }
  44462. },
  44463. boot: {
  44464. height: math.unit(3.45, "feet"),
  44465. name: "Boot",
  44466. image: {
  44467. source: "./media/characters/rex/boot.svg"
  44468. }
  44469. },
  44470. paw: {
  44471. height: math.unit(4.17, "feet"),
  44472. name: "Paw",
  44473. image: {
  44474. source: "./media/characters/rex/paw.svg"
  44475. }
  44476. },
  44477. head: {
  44478. height: math.unit(6.728, "feet"),
  44479. name: "Head",
  44480. image: {
  44481. source: "./media/characters/rex/head.svg"
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Nano",
  44488. height: math.unit(18 + 7/12, "feet")
  44489. },
  44490. {
  44491. name: "Micro",
  44492. height: math.unit(1.5, "megameters")
  44493. },
  44494. {
  44495. name: "Normal",
  44496. height: math.unit(440, "megameters"),
  44497. default: true
  44498. },
  44499. {
  44500. name: "Macro",
  44501. height: math.unit(2.5, "gigameters")
  44502. },
  44503. {
  44504. name: "Gigamacro",
  44505. height: math.unit(2, "galaxies")
  44506. },
  44507. ]
  44508. ))
  44509. characterMakers.push(() => makeCharacter(
  44510. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44511. {
  44512. side: {
  44513. height: math.unit(32, "feet"),
  44514. weight: math.unit(250000, "lb"),
  44515. name: "Side",
  44516. image: {
  44517. source: "./media/characters/silverwing/side.svg",
  44518. extra: 1100/1019,
  44519. bottom: 204/1304
  44520. }
  44521. },
  44522. },
  44523. [
  44524. {
  44525. name: "Normal",
  44526. height: math.unit(32, "feet"),
  44527. default: true
  44528. },
  44529. ]
  44530. ))
  44531. characterMakers.push(() => makeCharacter(
  44532. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44533. {
  44534. front: {
  44535. height: math.unit(6 + 6/12, "feet"),
  44536. weight: math.unit(350, "lb"),
  44537. name: "Front",
  44538. image: {
  44539. source: "./media/characters/tristan-hawthorne/front.svg",
  44540. extra: 1159/1124,
  44541. bottom: 37/1196
  44542. },
  44543. form: "labrador",
  44544. default: true
  44545. },
  44546. skunkFront: {
  44547. height: math.unit(4 + 6/12, "feet"),
  44548. weight: math.unit(120, "lb"),
  44549. name: "Front",
  44550. image: {
  44551. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44552. extra: 1609/1551,
  44553. bottom: 169/1778
  44554. },
  44555. form: "skunk",
  44556. default: true
  44557. },
  44558. },
  44559. [
  44560. {
  44561. name: "Normal",
  44562. height: math.unit(6 + 6/12, "feet"),
  44563. form: "labrador",
  44564. default: true
  44565. },
  44566. {
  44567. name: "Normal",
  44568. height: math.unit(4 + 6/12, "feet"),
  44569. form: "skunk",
  44570. default: true
  44571. },
  44572. ],
  44573. {
  44574. "labrador": {
  44575. name: "Labrador",
  44576. default: true
  44577. },
  44578. "skunk": {
  44579. name: "Skunk"
  44580. }
  44581. }
  44582. ))
  44583. characterMakers.push(() => makeCharacter(
  44584. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44585. {
  44586. front: {
  44587. height: math.unit(5 + 11/12, "feet"),
  44588. weight: math.unit(190, "lb"),
  44589. name: "Front",
  44590. image: {
  44591. source: "./media/characters/mizu/front.svg",
  44592. extra: 1988/1788,
  44593. bottom: 14/2002
  44594. }
  44595. },
  44596. },
  44597. [
  44598. {
  44599. name: "Normal",
  44600. height: math.unit(5 + 11/12, "feet"),
  44601. default: true
  44602. },
  44603. ]
  44604. ))
  44605. characterMakers.push(() => makeCharacter(
  44606. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44607. {
  44608. front: {
  44609. height: math.unit(1.7, "feet"),
  44610. weight: math.unit(50, "lb"),
  44611. name: "Front",
  44612. image: {
  44613. source: "./media/characters/dechroma/front.svg",
  44614. extra: 1095/859,
  44615. bottom: 64/1159
  44616. }
  44617. },
  44618. },
  44619. [
  44620. {
  44621. name: "Normal",
  44622. height: math.unit(1.7, "feet"),
  44623. default: true
  44624. },
  44625. ]
  44626. ))
  44627. characterMakers.push(() => makeCharacter(
  44628. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44629. {
  44630. side: {
  44631. height: math.unit(30, "feet"),
  44632. name: "Side",
  44633. image: {
  44634. source: "./media/characters/veluren-thanazel/side.svg",
  44635. extra: 1611/633,
  44636. bottom: 118/1729
  44637. }
  44638. },
  44639. front: {
  44640. height: math.unit(30, "feet"),
  44641. name: "Front",
  44642. image: {
  44643. source: "./media/characters/veluren-thanazel/front.svg",
  44644. extra: 1486/636,
  44645. bottom: 238/1724
  44646. }
  44647. },
  44648. head: {
  44649. height: math.unit(21.4, "feet"),
  44650. name: "Head",
  44651. image: {
  44652. source: "./media/characters/veluren-thanazel/head.svg"
  44653. }
  44654. },
  44655. genitals: {
  44656. height: math.unit(19.4, "feet"),
  44657. name: "Genitals",
  44658. image: {
  44659. source: "./media/characters/veluren-thanazel/genitals.svg"
  44660. }
  44661. },
  44662. },
  44663. [
  44664. {
  44665. name: "Social",
  44666. height: math.unit(6, "feet")
  44667. },
  44668. {
  44669. name: "Play",
  44670. height: math.unit(12, "feet")
  44671. },
  44672. {
  44673. name: "True",
  44674. height: math.unit(30, "feet"),
  44675. default: true
  44676. },
  44677. ]
  44678. ))
  44679. characterMakers.push(() => makeCharacter(
  44680. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44681. {
  44682. front: {
  44683. height: math.unit(7 + 6/12, "feet"),
  44684. weight: math.unit(500, "kg"),
  44685. name: "Front",
  44686. image: {
  44687. source: "./media/characters/arcturas/front.svg",
  44688. extra: 1700/1500,
  44689. bottom: 145/1845
  44690. }
  44691. },
  44692. },
  44693. [
  44694. {
  44695. name: "Normal",
  44696. height: math.unit(7 + 6/12, "feet"),
  44697. default: true
  44698. },
  44699. ]
  44700. ))
  44701. characterMakers.push(() => makeCharacter(
  44702. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44703. {
  44704. side: {
  44705. height: math.unit(6, "feet"),
  44706. weight: math.unit(2, "tons"),
  44707. name: "Side",
  44708. image: {
  44709. source: "./media/characters/vitaen/side.svg",
  44710. extra: 1157/617,
  44711. bottom: 122/1279
  44712. }
  44713. },
  44714. },
  44715. [
  44716. {
  44717. name: "Normal",
  44718. height: math.unit(6, "feet"),
  44719. default: true
  44720. },
  44721. ]
  44722. ))
  44723. characterMakers.push(() => makeCharacter(
  44724. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44725. {
  44726. front: {
  44727. height: math.unit(19, "feet"),
  44728. name: "Front",
  44729. image: {
  44730. source: "./media/characters/fia-dreamweaver/front.svg",
  44731. extra: 1630/1504,
  44732. bottom: 25/1655
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Normal",
  44739. height: math.unit(19, "feet"),
  44740. default: true
  44741. },
  44742. ]
  44743. ))
  44744. characterMakers.push(() => makeCharacter(
  44745. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44746. {
  44747. front: {
  44748. height: math.unit(5 + 4/12, "feet"),
  44749. name: "Front",
  44750. image: {
  44751. source: "./media/characters/artan/front.svg",
  44752. extra: 1618/1535,
  44753. bottom: 46/1664
  44754. }
  44755. },
  44756. back: {
  44757. height: math.unit(5 + 4/12, "feet"),
  44758. name: "Back",
  44759. image: {
  44760. source: "./media/characters/artan/back.svg",
  44761. extra: 1618/1543,
  44762. bottom: 31/1649
  44763. }
  44764. },
  44765. },
  44766. [
  44767. {
  44768. name: "Normal",
  44769. height: math.unit(5 + 4/12, "feet"),
  44770. default: true
  44771. },
  44772. ]
  44773. ))
  44774. characterMakers.push(() => makeCharacter(
  44775. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44776. {
  44777. side: {
  44778. height: math.unit(182, "cm"),
  44779. weight: math.unit(1000, "lb"),
  44780. name: "Side",
  44781. image: {
  44782. source: "./media/characters/silver-dragon/side.svg",
  44783. extra: 710/287,
  44784. bottom: 88/798
  44785. }
  44786. },
  44787. },
  44788. [
  44789. {
  44790. name: "Normal",
  44791. height: math.unit(182, "cm"),
  44792. default: true
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44798. {
  44799. side: {
  44800. height: math.unit(6 + 6/12, "feet"),
  44801. weight: math.unit(1.5, "tons"),
  44802. name: "Side",
  44803. image: {
  44804. source: "./media/characters/zephyr/side.svg",
  44805. extra: 1433/586,
  44806. bottom: 109/1542
  44807. }
  44808. },
  44809. },
  44810. [
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(6 + 6/12, "feet"),
  44814. default: true
  44815. },
  44816. ]
  44817. ))
  44818. characterMakers.push(() => makeCharacter(
  44819. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44820. {
  44821. side: {
  44822. height: math.unit(1, "feet"),
  44823. name: "Side",
  44824. image: {
  44825. source: "./media/characters/vixye/side.svg",
  44826. extra: 632/541,
  44827. bottom: 0/632
  44828. }
  44829. },
  44830. },
  44831. [
  44832. {
  44833. name: "Normal",
  44834. height: math.unit(1, "feet"),
  44835. default: true
  44836. },
  44837. {
  44838. name: "True",
  44839. height: math.unit(1e15, "multiverses")
  44840. },
  44841. ]
  44842. ))
  44843. characterMakers.push(() => makeCharacter(
  44844. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44845. {
  44846. front: {
  44847. height: math.unit(8 + 2/12, "feet"),
  44848. weight: math.unit(650, "lb"),
  44849. name: "Front",
  44850. image: {
  44851. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44852. extra: 1174/1137,
  44853. bottom: 82/1256
  44854. }
  44855. },
  44856. back: {
  44857. height: math.unit(8 + 2/12, "feet"),
  44858. weight: math.unit(650, "lb"),
  44859. name: "Back",
  44860. image: {
  44861. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44862. extra: 1204/1157,
  44863. bottom: 46/1250
  44864. }
  44865. },
  44866. },
  44867. [
  44868. {
  44869. name: "Wildform",
  44870. height: math.unit(8 + 2/12, "feet"),
  44871. default: true
  44872. },
  44873. ]
  44874. ))
  44875. characterMakers.push(() => makeCharacter(
  44876. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44877. {
  44878. front: {
  44879. height: math.unit(18, "feet"),
  44880. name: "Front",
  44881. image: {
  44882. source: "./media/characters/cyphin/front.svg",
  44883. extra: 970/886,
  44884. bottom: 42/1012
  44885. }
  44886. },
  44887. back: {
  44888. height: math.unit(18, "feet"),
  44889. name: "Back",
  44890. image: {
  44891. source: "./media/characters/cyphin/back.svg",
  44892. extra: 1009/894,
  44893. bottom: 24/1033
  44894. }
  44895. },
  44896. head: {
  44897. height: math.unit(5.05, "feet"),
  44898. name: "Head",
  44899. image: {
  44900. source: "./media/characters/cyphin/head.svg"
  44901. }
  44902. },
  44903. tailbud: {
  44904. height: math.unit(5, "feet"),
  44905. name: "Tailbud",
  44906. image: {
  44907. source: "./media/characters/cyphin/tailbud.svg"
  44908. }
  44909. },
  44910. },
  44911. [
  44912. ]
  44913. ))
  44914. characterMakers.push(() => makeCharacter(
  44915. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44916. {
  44917. side: {
  44918. height: math.unit(10, "feet"),
  44919. weight: math.unit(6, "tons"),
  44920. name: "Side",
  44921. image: {
  44922. source: "./media/characters/raijin/side.svg",
  44923. extra: 1529/613,
  44924. bottom: 337/1866
  44925. }
  44926. },
  44927. },
  44928. [
  44929. {
  44930. name: "Normal",
  44931. height: math.unit(10, "feet"),
  44932. default: true
  44933. },
  44934. ]
  44935. ))
  44936. characterMakers.push(() => makeCharacter(
  44937. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44938. {
  44939. side: {
  44940. height: math.unit(9, "feet"),
  44941. name: "Side",
  44942. image: {
  44943. source: "./media/characters/nilghais/side.svg",
  44944. extra: 1047/744,
  44945. bottom: 91/1138
  44946. }
  44947. },
  44948. head: {
  44949. height: math.unit(3.14, "feet"),
  44950. name: "Head",
  44951. image: {
  44952. source: "./media/characters/nilghais/head.svg"
  44953. }
  44954. },
  44955. mouth: {
  44956. height: math.unit(4.6, "feet"),
  44957. name: "Mouth",
  44958. image: {
  44959. source: "./media/characters/nilghais/mouth.svg"
  44960. }
  44961. },
  44962. wings: {
  44963. height: math.unit(24, "feet"),
  44964. name: "Wings",
  44965. image: {
  44966. source: "./media/characters/nilghais/wings.svg"
  44967. }
  44968. },
  44969. ass: {
  44970. height: math.unit(6.12, "feet"),
  44971. name: "Ass",
  44972. image: {
  44973. source: "./media/characters/nilghais/ass.svg"
  44974. }
  44975. },
  44976. },
  44977. [
  44978. {
  44979. name: "Normal",
  44980. height: math.unit(9, "feet"),
  44981. default: true
  44982. },
  44983. ]
  44984. ))
  44985. characterMakers.push(() => makeCharacter(
  44986. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44987. {
  44988. regular: {
  44989. height: math.unit(16 + 2/12, "feet"),
  44990. weight: math.unit(2300, "lb"),
  44991. name: "Regular",
  44992. image: {
  44993. source: "./media/characters/zolgar/regular.svg",
  44994. extra: 1246/1004,
  44995. bottom: 124/1370
  44996. }
  44997. },
  44998. boxers: {
  44999. height: math.unit(16 + 2/12, "feet"),
  45000. weight: math.unit(2300, "lb"),
  45001. name: "Boxers",
  45002. image: {
  45003. source: "./media/characters/zolgar/boxers.svg",
  45004. extra: 1246/1004,
  45005. bottom: 124/1370
  45006. }
  45007. },
  45008. armored: {
  45009. height: math.unit(16 + 2/12, "feet"),
  45010. weight: math.unit(2300, "lb"),
  45011. name: "Armored",
  45012. image: {
  45013. source: "./media/characters/zolgar/armored.svg",
  45014. extra: 1246/1004,
  45015. bottom: 124/1370
  45016. }
  45017. },
  45018. goth: {
  45019. height: math.unit(16 + 2/12, "feet"),
  45020. weight: math.unit(2300, "lb"),
  45021. name: "Goth",
  45022. image: {
  45023. source: "./media/characters/zolgar/goth.svg",
  45024. extra: 1246/1004,
  45025. bottom: 124/1370
  45026. }
  45027. },
  45028. },
  45029. [
  45030. {
  45031. name: "Shrunken Down",
  45032. height: math.unit(9 + 2/12, "feet")
  45033. },
  45034. {
  45035. name: "Normal",
  45036. height: math.unit(16 + 2/12, "feet"),
  45037. default: true
  45038. },
  45039. ]
  45040. ))
  45041. characterMakers.push(() => makeCharacter(
  45042. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45043. {
  45044. front: {
  45045. height: math.unit(6, "feet"),
  45046. weight: math.unit(168, "lb"),
  45047. name: "Front",
  45048. image: {
  45049. source: "./media/characters/luca/front.svg",
  45050. extra: 841/667,
  45051. bottom: 102/943
  45052. }
  45053. },
  45054. },
  45055. [
  45056. {
  45057. name: "Normal",
  45058. height: math.unit(6, "feet"),
  45059. default: true
  45060. },
  45061. ]
  45062. ))
  45063. characterMakers.push(() => makeCharacter(
  45064. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45065. {
  45066. side: {
  45067. height: math.unit(7 + 3/12, "feet"),
  45068. weight: math.unit(312, "lb"),
  45069. name: "Side",
  45070. image: {
  45071. source: "./media/characters/zezo/side.svg",
  45072. extra: 1192/1067,
  45073. bottom: 63/1255
  45074. }
  45075. },
  45076. },
  45077. [
  45078. {
  45079. name: "Normal",
  45080. height: math.unit(7 + 3/12, "feet"),
  45081. default: true
  45082. },
  45083. ]
  45084. ))
  45085. characterMakers.push(() => makeCharacter(
  45086. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45087. {
  45088. front: {
  45089. height: math.unit(5 + 5/12, "feet"),
  45090. weight: math.unit(170, "lb"),
  45091. name: "Front",
  45092. image: {
  45093. source: "./media/characters/mayso/front.svg",
  45094. extra: 1215/1108,
  45095. bottom: 16/1231
  45096. }
  45097. },
  45098. },
  45099. [
  45100. {
  45101. name: "Normal",
  45102. height: math.unit(5 + 5/12, "feet"),
  45103. default: true
  45104. },
  45105. ]
  45106. ))
  45107. characterMakers.push(() => makeCharacter(
  45108. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45109. {
  45110. front: {
  45111. height: math.unit(4 + 3/12, "feet"),
  45112. weight: math.unit(80, "lb"),
  45113. name: "Front",
  45114. image: {
  45115. source: "./media/characters/hess/front.svg",
  45116. extra: 1200/1123,
  45117. bottom: 16/1216
  45118. }
  45119. },
  45120. },
  45121. [
  45122. {
  45123. name: "Normal",
  45124. height: math.unit(4 + 3/12, "feet"),
  45125. default: true
  45126. },
  45127. ]
  45128. ))
  45129. characterMakers.push(() => makeCharacter(
  45130. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45131. {
  45132. front: {
  45133. height: math.unit(1.9, "meters"),
  45134. name: "Front",
  45135. image: {
  45136. source: "./media/characters/ashgar/front.svg",
  45137. extra: 1177/1146,
  45138. bottom: 99/1276
  45139. }
  45140. },
  45141. back: {
  45142. height: math.unit(1.9, "meters"),
  45143. name: "Back",
  45144. image: {
  45145. source: "./media/characters/ashgar/back.svg",
  45146. extra: 1201/1183,
  45147. bottom: 53/1254
  45148. }
  45149. },
  45150. feral: {
  45151. height: math.unit(1.4, "meters"),
  45152. name: "Feral",
  45153. image: {
  45154. source: "./media/characters/ashgar/feral.svg",
  45155. extra: 370/345,
  45156. bottom: 45/415
  45157. }
  45158. },
  45159. },
  45160. [
  45161. {
  45162. name: "Normal",
  45163. height: math.unit(1.9, "meters"),
  45164. default: true
  45165. },
  45166. ]
  45167. ))
  45168. characterMakers.push(() => makeCharacter(
  45169. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45170. {
  45171. regular: {
  45172. height: math.unit(6, "feet"),
  45173. weight: math.unit(220, "lb"),
  45174. name: "Regular",
  45175. image: {
  45176. source: "./media/characters/phillip/regular.svg",
  45177. extra: 1373/1277,
  45178. bottom: 75/1448
  45179. }
  45180. },
  45181. dressed: {
  45182. height: math.unit(6, "feet"),
  45183. weight: math.unit(220, "lb"),
  45184. name: "Dressed",
  45185. image: {
  45186. source: "./media/characters/phillip/dressed.svg",
  45187. extra: 1373/1277,
  45188. bottom: 75/1448
  45189. }
  45190. },
  45191. paw: {
  45192. height: math.unit(1.44, "feet"),
  45193. name: "Paw",
  45194. image: {
  45195. source: "./media/characters/phillip/paw.svg"
  45196. }
  45197. },
  45198. },
  45199. [
  45200. {
  45201. name: "Normal",
  45202. height: math.unit(6, "feet"),
  45203. default: true
  45204. },
  45205. ]
  45206. ))
  45207. characterMakers.push(() => makeCharacter(
  45208. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45209. {
  45210. side: {
  45211. height: math.unit(42, "feet"),
  45212. name: "Side",
  45213. image: {
  45214. source: "./media/characters/uvula/side.svg",
  45215. extra: 683/586,
  45216. bottom: 60/743
  45217. }
  45218. },
  45219. front: {
  45220. height: math.unit(42, "feet"),
  45221. name: "Front",
  45222. image: {
  45223. source: "./media/characters/uvula/front.svg",
  45224. extra: 705/613,
  45225. bottom: 54/759
  45226. }
  45227. },
  45228. maw: {
  45229. height: math.unit(23.5, "feet"),
  45230. name: "Maw",
  45231. image: {
  45232. source: "./media/characters/uvula/maw.svg"
  45233. }
  45234. },
  45235. },
  45236. [
  45237. {
  45238. name: "Original Size",
  45239. height: math.unit(14, "inches")
  45240. },
  45241. {
  45242. name: "Human Size",
  45243. height: math.unit(6, "feet")
  45244. },
  45245. {
  45246. name: "Big",
  45247. height: math.unit(42, "feet"),
  45248. default: true
  45249. },
  45250. {
  45251. name: "Bigger",
  45252. height: math.unit(100, "feet")
  45253. },
  45254. ]
  45255. ))
  45256. characterMakers.push(() => makeCharacter(
  45257. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45258. {
  45259. front: {
  45260. height: math.unit(5 + 11/12, "feet"),
  45261. name: "Front",
  45262. image: {
  45263. source: "./media/characters/lannah/front.svg",
  45264. extra: 1208/1113,
  45265. bottom: 97/1305
  45266. }
  45267. },
  45268. },
  45269. [
  45270. {
  45271. name: "Normal",
  45272. height: math.unit(5 + 11/12, "feet"),
  45273. default: true
  45274. },
  45275. ]
  45276. ))
  45277. characterMakers.push(() => makeCharacter(
  45278. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45279. {
  45280. front: {
  45281. height: math.unit(6 + 3/12, "feet"),
  45282. weight: math.unit(3.5, "tons"),
  45283. name: "Front",
  45284. image: {
  45285. source: "./media/characters/emberflame/front.svg",
  45286. extra: 1198/672,
  45287. bottom: 82/1280
  45288. }
  45289. },
  45290. side: {
  45291. height: math.unit(6 + 3/12, "feet"),
  45292. weight: math.unit(3.5, "tons"),
  45293. name: "Side",
  45294. image: {
  45295. source: "./media/characters/emberflame/side.svg",
  45296. extra: 938/527,
  45297. bottom: 56/994
  45298. }
  45299. },
  45300. },
  45301. [
  45302. {
  45303. name: "Normal",
  45304. height: math.unit(6 + 3/12, "feet"),
  45305. default: true
  45306. },
  45307. ]
  45308. ))
  45309. characterMakers.push(() => makeCharacter(
  45310. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45311. {
  45312. side: {
  45313. height: math.unit(17.5, "feet"),
  45314. weight: math.unit(35, "tons"),
  45315. name: "Side",
  45316. image: {
  45317. source: "./media/characters/sophie-ambrose/side.svg",
  45318. extra: 1573/1242,
  45319. bottom: 71/1644
  45320. }
  45321. },
  45322. maw: {
  45323. height: math.unit(7.4, "feet"),
  45324. name: "Maw",
  45325. image: {
  45326. source: "./media/characters/sophie-ambrose/maw.svg"
  45327. }
  45328. },
  45329. },
  45330. [
  45331. {
  45332. name: "Normal",
  45333. height: math.unit(17.5, "feet"),
  45334. default: true
  45335. },
  45336. ]
  45337. ))
  45338. characterMakers.push(() => makeCharacter(
  45339. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45340. {
  45341. front: {
  45342. height: math.unit(280, "feet"),
  45343. weight: math.unit(550, "tons"),
  45344. name: "Front",
  45345. image: {
  45346. source: "./media/characters/king-mugi/front.svg",
  45347. extra: 1102/947,
  45348. bottom: 104/1206
  45349. }
  45350. },
  45351. },
  45352. [
  45353. {
  45354. name: "King Mugi",
  45355. height: math.unit(280, "feet"),
  45356. default: true
  45357. },
  45358. ]
  45359. ))
  45360. characterMakers.push(() => makeCharacter(
  45361. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45362. {
  45363. female: {
  45364. height: math.unit(300, "meters"),
  45365. name: "Front",
  45366. image: {
  45367. source: "./media/characters/nova-fox/female.svg",
  45368. extra: 664/632,
  45369. bottom: 51/715
  45370. },
  45371. form: "female",
  45372. default: true
  45373. },
  45374. male: {
  45375. height: math.unit(300, "meters"),
  45376. name: "Front",
  45377. image: {
  45378. source: "./media/characters/nova-fox/male.svg",
  45379. extra: 663/631,
  45380. bottom: 30/693
  45381. },
  45382. form: "male",
  45383. default: true
  45384. },
  45385. },
  45386. [
  45387. {
  45388. name: "Macro",
  45389. height: math.unit(300, "meters"),
  45390. default: true,
  45391. allForms: true
  45392. },
  45393. ],
  45394. {
  45395. "female": {
  45396. name: "Female",
  45397. default: true
  45398. },
  45399. "male": {
  45400. name: "Male",
  45401. },
  45402. }
  45403. ))
  45404. characterMakers.push(() => makeCharacter(
  45405. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45406. {
  45407. front: {
  45408. height: math.unit(6 + 3/12, "feet"),
  45409. weight: math.unit(170, "lb"),
  45410. name: "Front",
  45411. image: {
  45412. source: "./media/characters/sam-bat/front.svg",
  45413. extra: 1601/1411,
  45414. bottom: 125/1726
  45415. }
  45416. },
  45417. back: {
  45418. height: math.unit(6 + 3/12, "feet"),
  45419. weight: math.unit(170, "lb"),
  45420. name: "Back",
  45421. image: {
  45422. source: "./media/characters/sam-bat/back.svg",
  45423. extra: 1577/1405,
  45424. bottom: 58/1635
  45425. }
  45426. },
  45427. },
  45428. [
  45429. {
  45430. name: "Normal",
  45431. height: math.unit(6 + 3/12, "feet"),
  45432. default: true
  45433. },
  45434. ]
  45435. ))
  45436. characterMakers.push(() => makeCharacter(
  45437. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45438. {
  45439. front: {
  45440. height: math.unit(59, "feet"),
  45441. weight: math.unit(40000, "lb"),
  45442. name: "Front",
  45443. image: {
  45444. source: "./media/characters/inari/front.svg",
  45445. extra: 1884/1350,
  45446. bottom: 95/1979
  45447. }
  45448. },
  45449. },
  45450. [
  45451. {
  45452. name: "Gigantamax",
  45453. height: math.unit(59, "feet"),
  45454. default: true
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45460. {
  45461. front: {
  45462. height: math.unit(5 + 8/12, "feet"),
  45463. name: "Front",
  45464. image: {
  45465. source: "./media/characters/elizabeth/front.svg",
  45466. extra: 1395/1298,
  45467. bottom: 54/1449
  45468. }
  45469. },
  45470. mouth: {
  45471. height: math.unit(1.97, "feet"),
  45472. name: "Mouth",
  45473. image: {
  45474. source: "./media/characters/elizabeth/mouth.svg"
  45475. }
  45476. },
  45477. foot: {
  45478. height: math.unit(1.17, "feet"),
  45479. name: "Foot",
  45480. image: {
  45481. source: "./media/characters/elizabeth/foot.svg"
  45482. }
  45483. },
  45484. },
  45485. [
  45486. {
  45487. name: "Normal",
  45488. height: math.unit(5 + 8/12, "feet"),
  45489. default: true
  45490. },
  45491. {
  45492. name: "Minimacro",
  45493. height: math.unit(18, "feet")
  45494. },
  45495. {
  45496. name: "Macro",
  45497. height: math.unit(180, "feet")
  45498. },
  45499. ]
  45500. ))
  45501. characterMakers.push(() => makeCharacter(
  45502. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45503. {
  45504. front: {
  45505. height: math.unit(5 + 2/12, "feet"),
  45506. name: "Front",
  45507. image: {
  45508. source: "./media/characters/october-gossamer/front.svg",
  45509. extra: 505/454,
  45510. bottom: 7/512
  45511. }
  45512. },
  45513. back: {
  45514. height: math.unit(5 + 2/12, "feet"),
  45515. name: "Back",
  45516. image: {
  45517. source: "./media/characters/october-gossamer/back.svg",
  45518. extra: 501/454,
  45519. bottom: 11/512
  45520. }
  45521. },
  45522. },
  45523. [
  45524. {
  45525. name: "Normal",
  45526. height: math.unit(5 + 2/12, "feet"),
  45527. default: true
  45528. },
  45529. ]
  45530. ))
  45531. characterMakers.push(() => makeCharacter(
  45532. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45533. {
  45534. front: {
  45535. height: math.unit(5, "feet"),
  45536. name: "Front",
  45537. image: {
  45538. source: "./media/characters/epiglottis/front.svg",
  45539. extra: 923/849,
  45540. bottom: 17/940
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Original Size",
  45547. height: math.unit(10, "inches")
  45548. },
  45549. {
  45550. name: "Human Size",
  45551. height: math.unit(5, "feet"),
  45552. default: true
  45553. },
  45554. {
  45555. name: "Big",
  45556. height: math.unit(25, "feet")
  45557. },
  45558. {
  45559. name: "Bigger",
  45560. height: math.unit(50, "feet")
  45561. },
  45562. {
  45563. name: "oh lawd",
  45564. height: math.unit(75, "feet")
  45565. },
  45566. ]
  45567. ))
  45568. characterMakers.push(() => makeCharacter(
  45569. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45570. {
  45571. front: {
  45572. height: math.unit(2 + 4/12, "feet"),
  45573. weight: math.unit(60, "lb"),
  45574. name: "Front",
  45575. image: {
  45576. source: "./media/characters/lerm/front.svg",
  45577. extra: 796/790,
  45578. bottom: 79/875
  45579. }
  45580. },
  45581. },
  45582. [
  45583. {
  45584. name: "Normal",
  45585. height: math.unit(2 + 4/12, "feet"),
  45586. default: true
  45587. },
  45588. ]
  45589. ))
  45590. characterMakers.push(() => makeCharacter(
  45591. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45592. {
  45593. front: {
  45594. height: math.unit(5.5, "feet"),
  45595. weight: math.unit(130, "lb"),
  45596. name: "Front",
  45597. image: {
  45598. source: "./media/characters/xena-nebadon/front.svg",
  45599. extra: 1828/1730,
  45600. bottom: 79/1907
  45601. }
  45602. },
  45603. },
  45604. [
  45605. {
  45606. name: "Tiny Puppy",
  45607. height: math.unit(3, "inches")
  45608. },
  45609. {
  45610. name: "Normal",
  45611. height: math.unit(5.5, "feet"),
  45612. default: true
  45613. },
  45614. {
  45615. name: "Lotta Lady",
  45616. height: math.unit(12, "feet")
  45617. },
  45618. {
  45619. name: "Pretty Big",
  45620. height: math.unit(100, "feet")
  45621. },
  45622. {
  45623. name: "Big",
  45624. height: math.unit(500, "feet")
  45625. },
  45626. {
  45627. name: "Skyscraper Toys",
  45628. height: math.unit(2500, "feet")
  45629. },
  45630. {
  45631. name: "Plane Catcher",
  45632. height: math.unit(8, "miles")
  45633. },
  45634. {
  45635. name: "Planet Toys",
  45636. height: math.unit(15, "earths")
  45637. },
  45638. {
  45639. name: "Stardust",
  45640. height: math.unit(0.25, "galaxies")
  45641. },
  45642. {
  45643. name: "Snacks",
  45644. height: math.unit(70, "universes")
  45645. },
  45646. ]
  45647. ))
  45648. characterMakers.push(() => makeCharacter(
  45649. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45650. {
  45651. front: {
  45652. height: math.unit(1.6, "meters"),
  45653. weight: math.unit(60, "kg"),
  45654. name: "Front",
  45655. image: {
  45656. source: "./media/characters/bounty/front.svg",
  45657. extra: 1426/1308,
  45658. bottom: 15/1441
  45659. }
  45660. },
  45661. back: {
  45662. height: math.unit(1.6, "meters"),
  45663. weight: math.unit(60, "kg"),
  45664. name: "Back",
  45665. image: {
  45666. source: "./media/characters/bounty/back.svg",
  45667. extra: 1417/1307,
  45668. bottom: 8/1425
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(1.6, "meters"),
  45676. default: true
  45677. },
  45678. {
  45679. name: "Macro",
  45680. height: math.unit(300, "meters")
  45681. },
  45682. ]
  45683. ))
  45684. characterMakers.push(() => makeCharacter(
  45685. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45686. {
  45687. front: {
  45688. height: math.unit(2 + 8/12, "feet"),
  45689. weight: math.unit(15, "lb"),
  45690. name: "Front",
  45691. image: {
  45692. source: "./media/characters/mochi/front.svg",
  45693. extra: 1022/852,
  45694. bottom: 435/1457
  45695. }
  45696. },
  45697. back: {
  45698. height: math.unit(2 + 8/12, "feet"),
  45699. weight: math.unit(15, "lb"),
  45700. name: "Back",
  45701. image: {
  45702. source: "./media/characters/mochi/back.svg",
  45703. extra: 1335/1119,
  45704. bottom: 39/1374
  45705. }
  45706. },
  45707. bird: {
  45708. height: math.unit(2 + 8/12, "feet"),
  45709. weight: math.unit(15, "lb"),
  45710. name: "Bird",
  45711. image: {
  45712. source: "./media/characters/mochi/bird.svg",
  45713. extra: 1251/1113,
  45714. bottom: 178/1429
  45715. }
  45716. },
  45717. kaiju: {
  45718. height: math.unit(154, "feet"),
  45719. weight: math.unit(1e7, "lb"),
  45720. name: "Kaiju",
  45721. image: {
  45722. source: "./media/characters/mochi/kaiju.svg",
  45723. extra: 460/324,
  45724. bottom: 40/500
  45725. }
  45726. },
  45727. head: {
  45728. height: math.unit(1.21, "feet"),
  45729. name: "Head",
  45730. image: {
  45731. source: "./media/characters/mochi/head.svg"
  45732. }
  45733. },
  45734. alternateTail: {
  45735. height: math.unit(2 + 8/12, "feet"),
  45736. weight: math.unit(45, "lb"),
  45737. name: "Alternate Tail",
  45738. image: {
  45739. source: "./media/characters/mochi/alternate-tail.svg",
  45740. extra: 139/76,
  45741. bottom: 45/184
  45742. }
  45743. },
  45744. },
  45745. [
  45746. {
  45747. name: "Micro",
  45748. height: math.unit(2, "inches")
  45749. },
  45750. {
  45751. name: "Normal",
  45752. height: math.unit(2 + 8/12, "feet"),
  45753. default: true
  45754. },
  45755. {
  45756. name: "Macro",
  45757. height: math.unit(106, "feet")
  45758. },
  45759. ]
  45760. ))
  45761. characterMakers.push(() => makeCharacter(
  45762. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45763. {
  45764. front: {
  45765. height: math.unit(5.67, "feet"),
  45766. weight: math.unit(135, "lb"),
  45767. name: "Front",
  45768. image: {
  45769. source: "./media/characters/sarel/front.svg",
  45770. extra: 865/788,
  45771. bottom: 97/962
  45772. }
  45773. },
  45774. back: {
  45775. height: math.unit(5.67, "feet"),
  45776. weight: math.unit(135, "lb"),
  45777. name: "Back",
  45778. image: {
  45779. source: "./media/characters/sarel/back.svg",
  45780. extra: 857/777,
  45781. bottom: 32/889
  45782. }
  45783. },
  45784. chozoan: {
  45785. height: math.unit(5.67, "feet"),
  45786. weight: math.unit(135, "lb"),
  45787. name: "Chozoan",
  45788. image: {
  45789. source: "./media/characters/sarel/chozoan.svg",
  45790. extra: 865/788,
  45791. bottom: 97/962
  45792. }
  45793. },
  45794. current: {
  45795. height: math.unit(5.67, "feet"),
  45796. weight: math.unit(135, "lb"),
  45797. name: "Current",
  45798. image: {
  45799. source: "./media/characters/sarel/current.svg",
  45800. extra: 865/788,
  45801. bottom: 97/962
  45802. }
  45803. },
  45804. head: {
  45805. height: math.unit(1.77, "feet"),
  45806. name: "Head",
  45807. image: {
  45808. source: "./media/characters/sarel/head.svg"
  45809. }
  45810. },
  45811. claws: {
  45812. height: math.unit(1.8, "feet"),
  45813. name: "Claws",
  45814. image: {
  45815. source: "./media/characters/sarel/claws.svg"
  45816. }
  45817. },
  45818. clawsAlt: {
  45819. height: math.unit(1.8, "feet"),
  45820. name: "Claws-alt",
  45821. image: {
  45822. source: "./media/characters/sarel/claws-alt.svg"
  45823. }
  45824. },
  45825. },
  45826. [
  45827. {
  45828. name: "Normal",
  45829. height: math.unit(5.67, "feet"),
  45830. default: true
  45831. },
  45832. ]
  45833. ))
  45834. characterMakers.push(() => makeCharacter(
  45835. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45836. {
  45837. front: {
  45838. height: math.unit(5500, "feet"),
  45839. name: "Front",
  45840. image: {
  45841. source: "./media/characters/alyonia/front.svg",
  45842. extra: 1200/1135,
  45843. bottom: 29/1229
  45844. }
  45845. },
  45846. back: {
  45847. height: math.unit(5500, "feet"),
  45848. name: "Back",
  45849. image: {
  45850. source: "./media/characters/alyonia/back.svg",
  45851. extra: 1205/1138,
  45852. bottom: 10/1215
  45853. }
  45854. },
  45855. },
  45856. [
  45857. {
  45858. name: "Small",
  45859. height: math.unit(10, "feet")
  45860. },
  45861. {
  45862. name: "Macro",
  45863. height: math.unit(500, "feet")
  45864. },
  45865. {
  45866. name: "Mega Macro",
  45867. height: math.unit(5500, "feet"),
  45868. default: true
  45869. },
  45870. {
  45871. name: "Mega Macro+",
  45872. height: math.unit(500000, "feet")
  45873. },
  45874. {
  45875. name: "Giga Macro",
  45876. height: math.unit(3000, "miles")
  45877. },
  45878. {
  45879. name: "Tera Macro",
  45880. height: math.unit(2.8e6, "miles")
  45881. },
  45882. {
  45883. name: "Galactic",
  45884. height: math.unit(120000, "lightyears")
  45885. },
  45886. ]
  45887. ))
  45888. characterMakers.push(() => makeCharacter(
  45889. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45890. {
  45891. werewolf: {
  45892. height: math.unit(8, "feet"),
  45893. weight: math.unit(425, "lb"),
  45894. name: "Werewolf",
  45895. image: {
  45896. source: "./media/characters/autumn/werewolf.svg",
  45897. extra: 2154/2031,
  45898. bottom: 160/2314
  45899. }
  45900. },
  45901. human: {
  45902. height: math.unit(5 + 8/12, "feet"),
  45903. weight: math.unit(150, "lb"),
  45904. name: "Human",
  45905. image: {
  45906. source: "./media/characters/autumn/human.svg",
  45907. extra: 1200/1149,
  45908. bottom: 30/1230
  45909. }
  45910. },
  45911. },
  45912. [
  45913. {
  45914. name: "Normal",
  45915. height: math.unit(8, "feet"),
  45916. default: true
  45917. },
  45918. ]
  45919. ))
  45920. characterMakers.push(() => makeCharacter(
  45921. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45922. {
  45923. front: {
  45924. height: math.unit(8 + 5/12, "feet"),
  45925. weight: math.unit(825, "lb"),
  45926. name: "Front",
  45927. image: {
  45928. source: "./media/characters/cobalt-charizard/front.svg",
  45929. extra: 1268/1155,
  45930. bottom: 122/1390
  45931. }
  45932. },
  45933. side: {
  45934. height: math.unit(8 + 5/12, "feet"),
  45935. weight: math.unit(825, "lb"),
  45936. name: "Side",
  45937. image: {
  45938. source: "./media/characters/cobalt-charizard/side.svg",
  45939. extra: 1348/1257,
  45940. bottom: 58/1406
  45941. }
  45942. },
  45943. gMax: {
  45944. height: math.unit(134 + 11/12, "feet"),
  45945. name: "G-Max",
  45946. image: {
  45947. source: "./media/characters/cobalt-charizard/g-max.svg",
  45948. extra: 1835/1541,
  45949. bottom: 151/1986
  45950. }
  45951. },
  45952. },
  45953. [
  45954. {
  45955. name: "Normal",
  45956. height: math.unit(8 + 5/12, "feet"),
  45957. default: true
  45958. },
  45959. ]
  45960. ))
  45961. characterMakers.push(() => makeCharacter(
  45962. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45963. {
  45964. front: {
  45965. height: math.unit(6 + 3/12, "feet"),
  45966. weight: math.unit(210, "lb"),
  45967. name: "Front",
  45968. image: {
  45969. source: "./media/characters/stella/front.svg",
  45970. extra: 3549/3335,
  45971. bottom: 51/3600
  45972. }
  45973. },
  45974. },
  45975. [
  45976. {
  45977. name: "Normal",
  45978. height: math.unit(6 + 3/12, "feet"),
  45979. default: true
  45980. },
  45981. ]
  45982. ))
  45983. characterMakers.push(() => makeCharacter(
  45984. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45985. {
  45986. front: {
  45987. height: math.unit(5, "feet"),
  45988. weight: math.unit(90, "lb"),
  45989. name: "Front",
  45990. image: {
  45991. source: "./media/characters/riley-bishop/front.svg",
  45992. extra: 1450/1428,
  45993. bottom: 152/1602
  45994. }
  45995. },
  45996. },
  45997. [
  45998. {
  45999. name: "Normal",
  46000. height: math.unit(5, "feet"),
  46001. default: true
  46002. },
  46003. ]
  46004. ))
  46005. characterMakers.push(() => makeCharacter(
  46006. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46007. {
  46008. side: {
  46009. height: math.unit(8 + 2/12, "feet"),
  46010. weight: math.unit(500, "kg"),
  46011. name: "Side",
  46012. image: {
  46013. source: "./media/characters/theo-arcanine/side.svg",
  46014. extra: 1342/1074,
  46015. bottom: 111/1453
  46016. }
  46017. },
  46018. },
  46019. [
  46020. {
  46021. name: "Normal",
  46022. height: math.unit(8 + 2/12, "feet"),
  46023. default: true
  46024. },
  46025. ]
  46026. ))
  46027. characterMakers.push(() => makeCharacter(
  46028. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46029. {
  46030. front: {
  46031. height: math.unit(4, "feet"),
  46032. name: "Front",
  46033. image: {
  46034. source: "./media/characters/kali/front.svg",
  46035. extra: 1074/867,
  46036. bottom: 34/1108
  46037. }
  46038. },
  46039. back: {
  46040. height: math.unit(4, "feet"),
  46041. name: "Back",
  46042. image: {
  46043. source: "./media/characters/kali/back.svg",
  46044. extra: 1068/863,
  46045. bottom: 26/1094
  46046. }
  46047. },
  46048. frontAlt: {
  46049. height: math.unit(4, "feet"),
  46050. name: "Front (Alt)",
  46051. image: {
  46052. source: "./media/characters/kali/front-alt.svg",
  46053. extra: 1921/1357,
  46054. bottom: 70/1991
  46055. }
  46056. },
  46057. },
  46058. [
  46059. {
  46060. name: "Normal",
  46061. height: math.unit(4, "feet"),
  46062. default: true
  46063. },
  46064. {
  46065. name: "Big'vali",
  46066. height: math.unit(11, "feet")
  46067. },
  46068. {
  46069. name: "Macro",
  46070. height: math.unit(32, "meters")
  46071. },
  46072. {
  46073. name: "Macro+",
  46074. height: math.unit(150, "meters")
  46075. },
  46076. {
  46077. name: "Megamacro",
  46078. height: math.unit(7500, "meters")
  46079. },
  46080. {
  46081. name: "Megamacro+",
  46082. height: math.unit(80, "kilometers")
  46083. },
  46084. ]
  46085. ))
  46086. characterMakers.push(() => makeCharacter(
  46087. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46088. {
  46089. side: {
  46090. height: math.unit(5 + 11/12, "feet"),
  46091. weight: math.unit(236, "lb"),
  46092. name: "Side",
  46093. image: {
  46094. source: "./media/characters/gapp/side.svg",
  46095. extra: 775/340,
  46096. bottom: 58/833
  46097. }
  46098. },
  46099. mouth: {
  46100. height: math.unit(2.98, "feet"),
  46101. name: "Mouth",
  46102. image: {
  46103. source: "./media/characters/gapp/mouth.svg"
  46104. }
  46105. },
  46106. },
  46107. [
  46108. {
  46109. name: "Normal",
  46110. height: math.unit(5 + 1/12, "feet"),
  46111. default: true
  46112. },
  46113. ]
  46114. ))
  46115. characterMakers.push(() => makeCharacter(
  46116. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46117. {
  46118. front: {
  46119. height: math.unit(6, "feet"),
  46120. name: "Front",
  46121. image: {
  46122. source: "./media/characters/persephone/front.svg",
  46123. extra: 1895/1717,
  46124. bottom: 96/1991
  46125. }
  46126. },
  46127. back: {
  46128. height: math.unit(6, "feet"),
  46129. name: "Back",
  46130. image: {
  46131. source: "./media/characters/persephone/back.svg",
  46132. extra: 1868/1679,
  46133. bottom: 26/1894
  46134. }
  46135. },
  46136. casual: {
  46137. height: math.unit(6, "feet"),
  46138. name: "Casual",
  46139. image: {
  46140. source: "./media/characters/persephone/casual.svg",
  46141. extra: 1713/1541,
  46142. bottom: 76/1789
  46143. }
  46144. },
  46145. gaming: {
  46146. height: math.unit(3.55, "feet"),
  46147. name: "Gaming",
  46148. image: {
  46149. source: "./media/characters/persephone/gaming.svg",
  46150. extra: 1242/1038,
  46151. bottom: 66/1308
  46152. }
  46153. },
  46154. head: {
  46155. height: math.unit(2.15, "feet"),
  46156. name: "😐",
  46157. image: {
  46158. source: "./media/characters/persephone/head.svg"
  46159. }
  46160. },
  46161. talking: {
  46162. height: math.unit(2.5, "feet"),
  46163. name: "💬",
  46164. image: {
  46165. source: "./media/characters/persephone/talking.svg"
  46166. }
  46167. },
  46168. hmm: {
  46169. height: math.unit(2.28, "feet"),
  46170. name: "🤨",
  46171. image: {
  46172. source: "./media/characters/persephone/hmm.svg"
  46173. }
  46174. },
  46175. },
  46176. [
  46177. {
  46178. name: "Human Size",
  46179. height: math.unit(6, "feet")
  46180. },
  46181. {
  46182. name: "Big Steppy",
  46183. height: math.unit(600, "meters"),
  46184. default: true
  46185. },
  46186. {
  46187. name: "Galaxy Brain",
  46188. height: math.unit(1, "zettameter")
  46189. },
  46190. ]
  46191. ))
  46192. characterMakers.push(() => makeCharacter(
  46193. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46194. {
  46195. front: {
  46196. height: math.unit(1.85, "meters"),
  46197. name: "Front",
  46198. image: {
  46199. source: "./media/characters/riley-foxthing/front.svg",
  46200. extra: 1495/1354,
  46201. bottom: 122/1617
  46202. }
  46203. },
  46204. frontAlt: {
  46205. height: math.unit(1.85, "meters"),
  46206. name: "Front (Alt)",
  46207. image: {
  46208. source: "./media/characters/riley-foxthing/front-alt.svg",
  46209. extra: 1572/1389,
  46210. bottom: 116/1688
  46211. }
  46212. },
  46213. },
  46214. [
  46215. {
  46216. name: "Normal Sized",
  46217. height: math.unit(1.85, "meters"),
  46218. default: true
  46219. },
  46220. {
  46221. name: "Quite Sizable",
  46222. height: math.unit(5, "meters")
  46223. },
  46224. {
  46225. name: "Rather Large",
  46226. height: math.unit(20, "meters")
  46227. },
  46228. {
  46229. name: "Macro",
  46230. height: math.unit(450, "meters")
  46231. },
  46232. {
  46233. name: "Giga",
  46234. height: math.unit(5, "km")
  46235. },
  46236. ]
  46237. ))
  46238. characterMakers.push(() => makeCharacter(
  46239. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46240. {
  46241. front: {
  46242. height: math.unit(6, "feet"),
  46243. weight: math.unit(200, "lb"),
  46244. name: "Front",
  46245. image: {
  46246. source: "./media/characters/blizzard/front.svg",
  46247. extra: 1136/990,
  46248. bottom: 136/1272
  46249. }
  46250. },
  46251. back: {
  46252. height: math.unit(6, "feet"),
  46253. weight: math.unit(200, "lb"),
  46254. name: "Back",
  46255. image: {
  46256. source: "./media/characters/blizzard/back.svg",
  46257. extra: 1175/1034,
  46258. bottom: 97/1272
  46259. }
  46260. },
  46261. sitting: {
  46262. height: math.unit(3.725, "feet"),
  46263. weight: math.unit(200, "lb"),
  46264. name: "Sitting",
  46265. image: {
  46266. source: "./media/characters/blizzard/sitting.svg",
  46267. extra: 581/485,
  46268. bottom: 90/671
  46269. }
  46270. },
  46271. frontWizard: {
  46272. height: math.unit(7.9, "feet"),
  46273. weight: math.unit(200, "lb"),
  46274. name: "Front (Wizard)",
  46275. image: {
  46276. source: "./media/characters/blizzard/front-wizard.svg"
  46277. }
  46278. },
  46279. backWizard: {
  46280. height: math.unit(7.9, "feet"),
  46281. weight: math.unit(200, "lb"),
  46282. name: "Back (Wizard)",
  46283. image: {
  46284. source: "./media/characters/blizzard/back-wizard.svg"
  46285. }
  46286. },
  46287. frontNsfw: {
  46288. height: math.unit(6, "feet"),
  46289. weight: math.unit(200, "lb"),
  46290. name: "Front (NSFW)",
  46291. image: {
  46292. source: "./media/characters/blizzard/front-nsfw.svg",
  46293. extra: 1136/990,
  46294. bottom: 136/1272
  46295. }
  46296. },
  46297. backNsfw: {
  46298. height: math.unit(6, "feet"),
  46299. weight: math.unit(200, "lb"),
  46300. name: "Back (NSFW)",
  46301. image: {
  46302. source: "./media/characters/blizzard/back-nsfw.svg",
  46303. extra: 1175/1034,
  46304. bottom: 97/1272
  46305. }
  46306. },
  46307. sittingNsfw: {
  46308. height: math.unit(3.725, "feet"),
  46309. weight: math.unit(200, "lb"),
  46310. name: "Sitting (NSFW)",
  46311. image: {
  46312. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46313. extra: 581/485,
  46314. bottom: 90/671
  46315. }
  46316. },
  46317. wizardFrontNsfw: {
  46318. height: math.unit(7.9, "feet"),
  46319. weight: math.unit(200, "lb"),
  46320. name: "Wizard (Front, NSFW)",
  46321. image: {
  46322. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46323. }
  46324. },
  46325. },
  46326. [
  46327. {
  46328. name: "Normal",
  46329. height: math.unit(6, "feet"),
  46330. default: true
  46331. },
  46332. ]
  46333. ))
  46334. characterMakers.push(() => makeCharacter(
  46335. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46336. {
  46337. front: {
  46338. height: math.unit(5 + 2/12, "feet"),
  46339. name: "Front",
  46340. image: {
  46341. source: "./media/characters/lumi/front.svg",
  46342. extra: 1328/1268,
  46343. bottom: 103/1431
  46344. }
  46345. },
  46346. back: {
  46347. height: math.unit(5 + 2/12, "feet"),
  46348. name: "Back",
  46349. image: {
  46350. source: "./media/characters/lumi/back.svg",
  46351. extra: 1381/1327,
  46352. bottom: 43/1424
  46353. }
  46354. },
  46355. },
  46356. [
  46357. {
  46358. name: "Normal",
  46359. height: math.unit(5 + 2/12, "feet"),
  46360. default: true
  46361. },
  46362. ]
  46363. ))
  46364. characterMakers.push(() => makeCharacter(
  46365. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46366. {
  46367. front: {
  46368. height: math.unit(5 + 9/12, "feet"),
  46369. name: "Front",
  46370. image: {
  46371. source: "./media/characters/aliya-cotton/front.svg",
  46372. extra: 577/564,
  46373. bottom: 29/606
  46374. }
  46375. },
  46376. },
  46377. [
  46378. {
  46379. name: "Normal",
  46380. height: math.unit(5 + 9/12, "feet"),
  46381. default: true
  46382. },
  46383. ]
  46384. ))
  46385. characterMakers.push(() => makeCharacter(
  46386. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46387. {
  46388. front: {
  46389. height: math.unit(2.7, "meters"),
  46390. weight: math.unit(25000, "lb"),
  46391. name: "Front",
  46392. image: {
  46393. source: "./media/characters/noah-luxray/front.svg",
  46394. extra: 1644/825,
  46395. bottom: 339/1983
  46396. }
  46397. },
  46398. side: {
  46399. height: math.unit(2.97, "meters"),
  46400. weight: math.unit(25000, "lb"),
  46401. name: "Side",
  46402. image: {
  46403. source: "./media/characters/noah-luxray/side.svg",
  46404. extra: 1319/650,
  46405. bottom: 163/1482
  46406. }
  46407. },
  46408. dick: {
  46409. height: math.unit(7.4, "feet"),
  46410. weight: math.unit(2500, "lb"),
  46411. name: "Dick",
  46412. image: {
  46413. source: "./media/characters/noah-luxray/dick.svg"
  46414. }
  46415. },
  46416. dickAlt: {
  46417. height: math.unit(10.83, "feet"),
  46418. weight: math.unit(2500, "lb"),
  46419. name: "Dick-alt",
  46420. image: {
  46421. source: "./media/characters/noah-luxray/dick-alt.svg"
  46422. }
  46423. },
  46424. },
  46425. [
  46426. {
  46427. name: "BIG",
  46428. height: math.unit(2.7, "meters"),
  46429. default: true
  46430. },
  46431. ]
  46432. ))
  46433. characterMakers.push(() => makeCharacter(
  46434. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46435. {
  46436. standing: {
  46437. height: math.unit(183, "cm"),
  46438. weight: math.unit(68, "kg"),
  46439. name: "Standing",
  46440. image: {
  46441. source: "./media/characters/arion/standing.svg",
  46442. extra: 1869/1807,
  46443. bottom: 93/1962
  46444. }
  46445. },
  46446. reclining: {
  46447. height: math.unit(70.5, "cm"),
  46448. weight: math.unit(68, "lb"),
  46449. name: "Reclining",
  46450. image: {
  46451. source: "./media/characters/arion/reclining.svg",
  46452. extra: 937/870,
  46453. bottom: 63/1000
  46454. }
  46455. },
  46456. },
  46457. [
  46458. {
  46459. name: "Colossus Size, Low",
  46460. height: math.unit(33, "meters"),
  46461. default: true
  46462. },
  46463. {
  46464. name: "Colossus Size, Mid",
  46465. height: math.unit(52, "meters")
  46466. },
  46467. {
  46468. name: "Colossus Size, High",
  46469. height: math.unit(60, "meters")
  46470. },
  46471. {
  46472. name: "Titan Size, Low",
  46473. height: math.unit(91, "meters"),
  46474. },
  46475. {
  46476. name: "Titan Size, Mid",
  46477. height: math.unit(122, "meters")
  46478. },
  46479. {
  46480. name: "Titan Size, High",
  46481. height: math.unit(162, "meters")
  46482. },
  46483. ]
  46484. ))
  46485. characterMakers.push(() => makeCharacter(
  46486. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46487. {
  46488. front: {
  46489. height: math.unit(53, "meters"),
  46490. name: "Front",
  46491. image: {
  46492. source: "./media/characters/stellar-marbey/front.svg",
  46493. extra: 1913/1805,
  46494. bottom: 92/2005
  46495. }
  46496. },
  46497. back: {
  46498. height: math.unit(53, "meters"),
  46499. name: "Back",
  46500. image: {
  46501. source: "./media/characters/stellar-marbey/back.svg",
  46502. extra: 1960/1851,
  46503. bottom: 28/1988
  46504. }
  46505. },
  46506. mouth: {
  46507. height: math.unit(3.5, "meters"),
  46508. name: "Mouth",
  46509. image: {
  46510. source: "./media/characters/stellar-marbey/mouth.svg"
  46511. }
  46512. },
  46513. },
  46514. [
  46515. {
  46516. name: "Macro",
  46517. height: math.unit(53, "meters"),
  46518. default: true
  46519. },
  46520. ]
  46521. ))
  46522. characterMakers.push(() => makeCharacter(
  46523. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46524. {
  46525. front: {
  46526. height: math.unit(8 + 1/12, "feet"),
  46527. weight: math.unit(233, "lb"),
  46528. name: "Front",
  46529. image: {
  46530. source: "./media/characters/matsu/front.svg",
  46531. extra: 832/772,
  46532. bottom: 40/872
  46533. }
  46534. },
  46535. back: {
  46536. height: math.unit(8 + 1/12, "feet"),
  46537. weight: math.unit(233, "lb"),
  46538. name: "Back",
  46539. image: {
  46540. source: "./media/characters/matsu/back.svg",
  46541. extra: 839/780,
  46542. bottom: 47/886
  46543. }
  46544. },
  46545. },
  46546. [
  46547. {
  46548. name: "Normal",
  46549. height: math.unit(8 + 1/12, "feet"),
  46550. default: true
  46551. },
  46552. ]
  46553. ))
  46554. characterMakers.push(() => makeCharacter(
  46555. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46556. {
  46557. front: {
  46558. height: math.unit(4, "feet"),
  46559. weight: math.unit(148, "lb"),
  46560. name: "Front",
  46561. image: {
  46562. source: "./media/characters/thiz/front.svg",
  46563. extra: 1913/1748,
  46564. bottom: 62/1975
  46565. }
  46566. },
  46567. },
  46568. [
  46569. {
  46570. name: "Normal",
  46571. height: math.unit(4, "feet"),
  46572. default: true
  46573. },
  46574. ]
  46575. ))
  46576. characterMakers.push(() => makeCharacter(
  46577. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46578. {
  46579. front: {
  46580. height: math.unit(7 + 6/12, "feet"),
  46581. weight: math.unit(267, "lb"),
  46582. name: "Front",
  46583. image: {
  46584. source: "./media/characters/marcel/front.svg",
  46585. extra: 1221/1096,
  46586. bottom: 76/1297
  46587. }
  46588. },
  46589. },
  46590. [
  46591. {
  46592. name: "Normal",
  46593. height: math.unit(7 + 6/12, "feet"),
  46594. default: true
  46595. },
  46596. ]
  46597. ))
  46598. characterMakers.push(() => makeCharacter(
  46599. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46600. {
  46601. side: {
  46602. height: math.unit(42, "meters"),
  46603. name: "Side",
  46604. image: {
  46605. source: "./media/characters/flake/side.svg",
  46606. extra: 1525/1306,
  46607. bottom: 209/1734
  46608. }
  46609. },
  46610. },
  46611. [
  46612. {
  46613. name: "Normal",
  46614. height: math.unit(42, "meters"),
  46615. default: true
  46616. },
  46617. ]
  46618. ))
  46619. characterMakers.push(() => makeCharacter(
  46620. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46621. {
  46622. dressed: {
  46623. height: math.unit(6 + 4/12, "feet"),
  46624. weight: math.unit(520, "lb"),
  46625. name: "Dressed",
  46626. image: {
  46627. source: "./media/characters/someonne/dressed.svg",
  46628. extra: 1020/1010,
  46629. bottom: 178/1198
  46630. }
  46631. },
  46632. undressed: {
  46633. height: math.unit(6 + 4/12, "feet"),
  46634. weight: math.unit(520, "lb"),
  46635. name: "Undressed",
  46636. image: {
  46637. source: "./media/characters/someonne/undressed.svg",
  46638. extra: 1019/1014,
  46639. bottom: 169/1188
  46640. }
  46641. },
  46642. },
  46643. [
  46644. {
  46645. name: "Normal",
  46646. height: math.unit(6 + 4/12, "feet"),
  46647. default: true
  46648. },
  46649. ]
  46650. ))
  46651. characterMakers.push(() => makeCharacter(
  46652. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46653. {
  46654. front: {
  46655. height: math.unit(3, "feet"),
  46656. weight: math.unit(30, "lb"),
  46657. name: "Front",
  46658. image: {
  46659. source: "./media/characters/till/front.svg",
  46660. extra: 892/823,
  46661. bottom: 55/947
  46662. }
  46663. },
  46664. },
  46665. [
  46666. {
  46667. name: "Normal",
  46668. height: math.unit(3, "feet"),
  46669. default: true
  46670. },
  46671. ]
  46672. ))
  46673. characterMakers.push(() => makeCharacter(
  46674. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46675. {
  46676. front: {
  46677. height: math.unit(9 + 8/12, "feet"),
  46678. weight: math.unit(800, "lb"),
  46679. name: "Front",
  46680. image: {
  46681. source: "./media/characters/sydney-heki/front.svg",
  46682. extra: 1360/1300,
  46683. bottom: 22/1382
  46684. }
  46685. },
  46686. back: {
  46687. height: math.unit(9 + 8/12, "feet"),
  46688. weight: math.unit(800, "lb"),
  46689. name: "Back",
  46690. image: {
  46691. source: "./media/characters/sydney-heki/back.svg",
  46692. extra: 1356/1293,
  46693. bottom: 12/1368
  46694. }
  46695. },
  46696. frontDressed: {
  46697. height: math.unit(9 + 8/12, "feet"),
  46698. weight: math.unit(800, "lb"),
  46699. name: "Front-dressed",
  46700. image: {
  46701. source: "./media/characters/sydney-heki/front-dressed.svg",
  46702. extra: 1360/1300,
  46703. bottom: 22/1382
  46704. }
  46705. },
  46706. },
  46707. [
  46708. {
  46709. name: "Normal",
  46710. height: math.unit(9 + 8/12, "feet"),
  46711. default: true
  46712. },
  46713. {
  46714. name: "Macro",
  46715. height: math.unit(500, "feet")
  46716. },
  46717. {
  46718. name: "Megamacro",
  46719. height: math.unit(3.6, "miles")
  46720. },
  46721. ]
  46722. ))
  46723. characterMakers.push(() => makeCharacter(
  46724. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46725. {
  46726. front: {
  46727. height: math.unit(200, "cm"),
  46728. weight: math.unit(250, "lb"),
  46729. name: "Front",
  46730. image: {
  46731. source: "./media/characters/fowler-karlsson/front.svg",
  46732. extra: 897/845,
  46733. bottom: 123/1020
  46734. }
  46735. },
  46736. back: {
  46737. height: math.unit(200, "cm"),
  46738. weight: math.unit(250, "lb"),
  46739. name: "Back",
  46740. image: {
  46741. source: "./media/characters/fowler-karlsson/back.svg",
  46742. extra: 999/944,
  46743. bottom: 26/1025
  46744. }
  46745. },
  46746. dick: {
  46747. height: math.unit(1.92, "feet"),
  46748. weight: math.unit(150, "lb"),
  46749. name: "Dick",
  46750. image: {
  46751. source: "./media/characters/fowler-karlsson/dick.svg"
  46752. }
  46753. },
  46754. },
  46755. [
  46756. {
  46757. name: "Normal",
  46758. height: math.unit(200, "cm"),
  46759. default: true
  46760. },
  46761. {
  46762. name: "Smaller Macro",
  46763. height: math.unit(90, "m")
  46764. },
  46765. {
  46766. name: "Macro",
  46767. height: math.unit(150, "m")
  46768. },
  46769. {
  46770. name: "Bigger Macro",
  46771. height: math.unit(300, "m")
  46772. },
  46773. ]
  46774. ))
  46775. characterMakers.push(() => makeCharacter(
  46776. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46777. {
  46778. side: {
  46779. height: math.unit(8 + 2/12, "feet"),
  46780. weight: math.unit(1, "tonne"),
  46781. name: "Side",
  46782. image: {
  46783. source: "./media/characters/rylide/side.svg",
  46784. extra: 1318/1034,
  46785. bottom: 106/1424
  46786. }
  46787. },
  46788. sitting: {
  46789. height: math.unit(303, "cm"),
  46790. weight: math.unit(1, "tonne"),
  46791. name: "Sitting",
  46792. image: {
  46793. source: "./media/characters/rylide/sitting.svg",
  46794. extra: 1303/1103,
  46795. bottom: 36/1339
  46796. }
  46797. },
  46798. },
  46799. [
  46800. {
  46801. name: "Normal",
  46802. height: math.unit(8 + 2/12, "feet"),
  46803. default: true
  46804. },
  46805. ]
  46806. ))
  46807. characterMakers.push(() => makeCharacter(
  46808. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46809. {
  46810. front: {
  46811. height: math.unit(5 + 10/12, "feet"),
  46812. weight: math.unit(160, "lb"),
  46813. name: "Front",
  46814. image: {
  46815. source: "./media/characters/pudask/front.svg",
  46816. extra: 1616/1590,
  46817. bottom: 161/1777
  46818. }
  46819. },
  46820. },
  46821. [
  46822. {
  46823. name: "Ferret Height",
  46824. height: math.unit(2 + 5/12, "feet")
  46825. },
  46826. {
  46827. name: "Canon Height",
  46828. height: math.unit(5 + 10/12, "feet"),
  46829. default: true
  46830. },
  46831. ]
  46832. ))
  46833. characterMakers.push(() => makeCharacter(
  46834. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46835. {
  46836. front: {
  46837. height: math.unit(3 + 6/12, "feet"),
  46838. weight: math.unit(60, "lb"),
  46839. name: "Front",
  46840. image: {
  46841. source: "./media/characters/ramita/front.svg",
  46842. extra: 1402/1232,
  46843. bottom: 62/1464
  46844. }
  46845. },
  46846. dressed: {
  46847. height: math.unit(3 + 6/12, "feet"),
  46848. weight: math.unit(60, "lb"),
  46849. name: "Dressed",
  46850. image: {
  46851. source: "./media/characters/ramita/dressed.svg",
  46852. extra: 1534/1249,
  46853. bottom: 50/1584
  46854. }
  46855. },
  46856. },
  46857. [
  46858. {
  46859. name: "Normal",
  46860. height: math.unit(3 + 6/12, "feet"),
  46861. default: true
  46862. },
  46863. ]
  46864. ))
  46865. characterMakers.push(() => makeCharacter(
  46866. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46867. {
  46868. front: {
  46869. height: math.unit(8, "feet"),
  46870. name: "Front",
  46871. image: {
  46872. source: "./media/characters/ark/front.svg",
  46873. extra: 772/693,
  46874. bottom: 45/817
  46875. }
  46876. },
  46877. },
  46878. [
  46879. {
  46880. name: "Normal",
  46881. height: math.unit(8, "feet"),
  46882. default: true
  46883. },
  46884. ]
  46885. ))
  46886. characterMakers.push(() => makeCharacter(
  46887. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46888. {
  46889. front: {
  46890. height: math.unit(6, "feet"),
  46891. weight: math.unit(250, "lb"),
  46892. volume: math.unit(5/8, "gallons"),
  46893. name: "Front",
  46894. image: {
  46895. source: "./media/characters/ludwig-horn/front.svg",
  46896. extra: 1782/1635,
  46897. bottom: 96/1878
  46898. }
  46899. },
  46900. back: {
  46901. height: math.unit(6, "feet"),
  46902. weight: math.unit(250, "lb"),
  46903. volume: math.unit(5/8, "gallons"),
  46904. name: "Back",
  46905. image: {
  46906. source: "./media/characters/ludwig-horn/back.svg",
  46907. extra: 1874/1729,
  46908. bottom: 27/1901
  46909. }
  46910. },
  46911. dick: {
  46912. height: math.unit(1.05, "feet"),
  46913. weight: math.unit(15, "lb"),
  46914. volume: math.unit(5/8, "gallons"),
  46915. name: "Dick",
  46916. image: {
  46917. source: "./media/characters/ludwig-horn/dick.svg"
  46918. }
  46919. },
  46920. },
  46921. [
  46922. {
  46923. name: "Small",
  46924. height: math.unit(6, "feet")
  46925. },
  46926. {
  46927. name: "Typical",
  46928. height: math.unit(12, "feet"),
  46929. default: true
  46930. },
  46931. {
  46932. name: "Building",
  46933. height: math.unit(80, "feet")
  46934. },
  46935. {
  46936. name: "Town",
  46937. height: math.unit(800, "feet")
  46938. },
  46939. {
  46940. name: "Kingdom",
  46941. height: math.unit(80000, "feet")
  46942. },
  46943. {
  46944. name: "Planet",
  46945. height: math.unit(8000000, "feet")
  46946. },
  46947. {
  46948. name: "Universe",
  46949. height: math.unit(8000000000, "feet")
  46950. },
  46951. {
  46952. name: "Transcended",
  46953. height: math.unit(8e27, "feet")
  46954. },
  46955. ]
  46956. ))
  46957. characterMakers.push(() => makeCharacter(
  46958. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46959. {
  46960. front: {
  46961. height: math.unit(5, "feet"),
  46962. weight: math.unit(50, "kg"),
  46963. name: "Front",
  46964. image: {
  46965. source: "./media/characters/biot-avery/front.svg",
  46966. extra: 1295/1232,
  46967. bottom: 86/1381
  46968. }
  46969. },
  46970. },
  46971. [
  46972. {
  46973. name: "Normal",
  46974. height: math.unit(5, "feet"),
  46975. default: true
  46976. },
  46977. ]
  46978. ))
  46979. characterMakers.push(() => makeCharacter(
  46980. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46981. {
  46982. front: {
  46983. height: math.unit(6, "feet"),
  46984. name: "Front",
  46985. image: {
  46986. source: "./media/characters/kitsune-kiro/front.svg",
  46987. extra: 1270/1158,
  46988. bottom: 42/1312
  46989. }
  46990. },
  46991. frontAlt: {
  46992. height: math.unit(6, "feet"),
  46993. name: "Front-alt",
  46994. image: {
  46995. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46996. extra: 1130/1081,
  46997. bottom: 36/1166
  46998. }
  46999. },
  47000. },
  47001. [
  47002. {
  47003. name: "Smol",
  47004. height: math.unit(3, "feet")
  47005. },
  47006. {
  47007. name: "Normal",
  47008. height: math.unit(6, "feet"),
  47009. default: true
  47010. },
  47011. ]
  47012. ))
  47013. characterMakers.push(() => makeCharacter(
  47014. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47015. {
  47016. front: {
  47017. height: math.unit(6, "feet"),
  47018. weight: math.unit(125, "lb"),
  47019. name: "Front",
  47020. image: {
  47021. source: "./media/characters/jack-thatcher/front.svg",
  47022. extra: 1474/1370,
  47023. bottom: 26/1500
  47024. }
  47025. },
  47026. back: {
  47027. height: math.unit(6, "feet"),
  47028. weight: math.unit(125, "lb"),
  47029. name: "Back",
  47030. image: {
  47031. source: "./media/characters/jack-thatcher/back.svg",
  47032. extra: 1489/1384,
  47033. bottom: 18/1507
  47034. }
  47035. },
  47036. },
  47037. [
  47038. {
  47039. name: "Normal",
  47040. height: math.unit(6, "feet"),
  47041. default: true
  47042. },
  47043. {
  47044. name: "Macro",
  47045. height: math.unit(75, "feet")
  47046. },
  47047. {
  47048. name: "Macro-er",
  47049. height: math.unit(250, "feet")
  47050. },
  47051. ]
  47052. ))
  47053. characterMakers.push(() => makeCharacter(
  47054. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47055. {
  47056. front: {
  47057. height: math.unit(7, "feet"),
  47058. weight: math.unit(110, "kg"),
  47059. name: "Front",
  47060. image: {
  47061. source: "./media/characters/max-hyper/front.svg",
  47062. extra: 1969/1881,
  47063. bottom: 49/2018
  47064. }
  47065. },
  47066. },
  47067. [
  47068. {
  47069. name: "Normal",
  47070. height: math.unit(7, "feet"),
  47071. default: true
  47072. },
  47073. ]
  47074. ))
  47075. characterMakers.push(() => makeCharacter(
  47076. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47077. {
  47078. front: {
  47079. height: math.unit(5 + 5/12, "feet"),
  47080. weight: math.unit(160, "lb"),
  47081. name: "Front",
  47082. image: {
  47083. source: "./media/characters/spook/front.svg",
  47084. extra: 794/791,
  47085. bottom: 54/848
  47086. }
  47087. },
  47088. back: {
  47089. height: math.unit(5 + 5/12, "feet"),
  47090. weight: math.unit(160, "lb"),
  47091. name: "Back",
  47092. image: {
  47093. source: "./media/characters/spook/back.svg",
  47094. extra: 812/798,
  47095. bottom: 32/844
  47096. }
  47097. },
  47098. },
  47099. [
  47100. {
  47101. name: "Normal",
  47102. height: math.unit(5 + 5/12, "feet"),
  47103. default: true
  47104. },
  47105. ]
  47106. ))
  47107. characterMakers.push(() => makeCharacter(
  47108. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47109. {
  47110. front: {
  47111. height: math.unit(18, "feet"),
  47112. name: "Front",
  47113. image: {
  47114. source: "./media/characters/xeaduulix/front.svg",
  47115. extra: 1380/1166,
  47116. bottom: 110/1490
  47117. }
  47118. },
  47119. back: {
  47120. height: math.unit(18, "feet"),
  47121. name: "Back",
  47122. image: {
  47123. source: "./media/characters/xeaduulix/back.svg",
  47124. extra: 1592/1170,
  47125. bottom: 128/1720
  47126. }
  47127. },
  47128. frontNsfw: {
  47129. height: math.unit(18, "feet"),
  47130. name: "Front (NSFW)",
  47131. image: {
  47132. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47133. extra: 1380/1166,
  47134. bottom: 110/1490
  47135. }
  47136. },
  47137. backNsfw: {
  47138. height: math.unit(18, "feet"),
  47139. name: "Back (NSFW)",
  47140. image: {
  47141. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47142. extra: 1592/1170,
  47143. bottom: 128/1720
  47144. }
  47145. },
  47146. },
  47147. [
  47148. {
  47149. name: "Normal",
  47150. height: math.unit(18, "feet"),
  47151. default: true
  47152. },
  47153. ]
  47154. ))
  47155. characterMakers.push(() => makeCharacter(
  47156. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47157. {
  47158. spreadWings: {
  47159. height: math.unit(20, "feet"),
  47160. name: "Spread Wings",
  47161. image: {
  47162. source: "./media/characters/fledge/spread-wings.svg",
  47163. extra: 693/635,
  47164. bottom: 26/719
  47165. }
  47166. },
  47167. front: {
  47168. height: math.unit(20, "feet"),
  47169. name: "Front",
  47170. image: {
  47171. source: "./media/characters/fledge/front.svg",
  47172. extra: 684/637,
  47173. bottom: 18/702
  47174. }
  47175. },
  47176. frontAlt: {
  47177. height: math.unit(20, "feet"),
  47178. name: "Front (Alt)",
  47179. image: {
  47180. source: "./media/characters/fledge/front-alt.svg",
  47181. extra: 708/664,
  47182. bottom: 13/721
  47183. }
  47184. },
  47185. back: {
  47186. height: math.unit(20, "feet"),
  47187. name: "Back",
  47188. image: {
  47189. source: "./media/characters/fledge/back.svg",
  47190. extra: 718/634,
  47191. bottom: 22/740
  47192. }
  47193. },
  47194. head: {
  47195. height: math.unit(5.55, "feet"),
  47196. name: "Head",
  47197. image: {
  47198. source: "./media/characters/fledge/head.svg"
  47199. }
  47200. },
  47201. headAlt: {
  47202. height: math.unit(5.1, "feet"),
  47203. name: "Head (Alt)",
  47204. image: {
  47205. source: "./media/characters/fledge/head-alt.svg"
  47206. }
  47207. },
  47208. },
  47209. [
  47210. {
  47211. name: "Small",
  47212. height: math.unit(6 + 2/12, "feet")
  47213. },
  47214. {
  47215. name: "Big",
  47216. height: math.unit(20, "feet"),
  47217. default: true
  47218. },
  47219. {
  47220. name: "Giant",
  47221. height: math.unit(100, "feet")
  47222. },
  47223. {
  47224. name: "Macro",
  47225. height: math.unit(200, "feet")
  47226. },
  47227. ]
  47228. ))
  47229. characterMakers.push(() => makeCharacter(
  47230. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47231. {
  47232. front: {
  47233. height: math.unit(1, "meter"),
  47234. name: "Front",
  47235. image: {
  47236. source: "./media/characters/atlas-morenai/front.svg",
  47237. extra: 1275/1043,
  47238. bottom: 19/1294
  47239. }
  47240. },
  47241. back: {
  47242. height: math.unit(1, "meter"),
  47243. name: "Back",
  47244. image: {
  47245. source: "./media/characters/atlas-morenai/back.svg",
  47246. extra: 1141/1001,
  47247. bottom: 25/1166
  47248. }
  47249. },
  47250. },
  47251. [
  47252. {
  47253. name: "Normal",
  47254. height: math.unit(1, "meter"),
  47255. default: true
  47256. },
  47257. {
  47258. name: "Magic-Infused",
  47259. height: math.unit(5, "meters")
  47260. },
  47261. ]
  47262. ))
  47263. characterMakers.push(() => makeCharacter(
  47264. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47265. {
  47266. front: {
  47267. height: math.unit(5, "meters"),
  47268. name: "Front",
  47269. image: {
  47270. source: "./media/characters/cintia/front.svg",
  47271. extra: 1312/1228,
  47272. bottom: 38/1350
  47273. }
  47274. },
  47275. back: {
  47276. height: math.unit(5, "meters"),
  47277. name: "Back",
  47278. image: {
  47279. source: "./media/characters/cintia/back.svg",
  47280. extra: 1260/1166,
  47281. bottom: 98/1358
  47282. }
  47283. },
  47284. frontDick: {
  47285. height: math.unit(5, "meters"),
  47286. name: "Front (Dick)",
  47287. image: {
  47288. source: "./media/characters/cintia/front-dick.svg",
  47289. extra: 1312/1228,
  47290. bottom: 38/1350
  47291. }
  47292. },
  47293. backDick: {
  47294. height: math.unit(5, "meters"),
  47295. name: "Back (Dick)",
  47296. image: {
  47297. source: "./media/characters/cintia/back-dick.svg",
  47298. extra: 1260/1166,
  47299. bottom: 98/1358
  47300. }
  47301. },
  47302. bust: {
  47303. height: math.unit(1.97, "meters"),
  47304. name: "Bust",
  47305. image: {
  47306. source: "./media/characters/cintia/bust.svg",
  47307. extra: 617/565,
  47308. bottom: 0/617
  47309. }
  47310. },
  47311. },
  47312. [
  47313. {
  47314. name: "Normal",
  47315. height: math.unit(5, "meters"),
  47316. default: true
  47317. },
  47318. ]
  47319. ))
  47320. characterMakers.push(() => makeCharacter(
  47321. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47322. {
  47323. side: {
  47324. height: math.unit(100, "feet"),
  47325. name: "Side",
  47326. image: {
  47327. source: "./media/characters/denora/side.svg",
  47328. extra: 875/803,
  47329. bottom: 9/884
  47330. }
  47331. },
  47332. },
  47333. [
  47334. {
  47335. name: "Standard",
  47336. height: math.unit(100, "feet"),
  47337. default: true
  47338. },
  47339. {
  47340. name: "Grand",
  47341. height: math.unit(1000, "feet")
  47342. },
  47343. {
  47344. name: "Conquering",
  47345. height: math.unit(10000, "feet")
  47346. },
  47347. ]
  47348. ))
  47349. characterMakers.push(() => makeCharacter(
  47350. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47351. {
  47352. dressed: {
  47353. height: math.unit(8 + 5/12, "feet"),
  47354. weight: math.unit(700, "lb"),
  47355. name: "Dressed",
  47356. image: {
  47357. source: "./media/characters/kiva/dressed.svg",
  47358. extra: 1102/1055,
  47359. bottom: 60/1162
  47360. }
  47361. },
  47362. nude: {
  47363. height: math.unit(8 + 5/12, "feet"),
  47364. weight: math.unit(700, "lb"),
  47365. name: "Nude",
  47366. image: {
  47367. source: "./media/characters/kiva/nude.svg",
  47368. extra: 1102/1055,
  47369. bottom: 60/1162
  47370. }
  47371. },
  47372. },
  47373. [
  47374. {
  47375. name: "Base Height",
  47376. height: math.unit(8 + 5/12, "feet"),
  47377. default: true
  47378. },
  47379. {
  47380. name: "Macro",
  47381. height: math.unit(100, "feet")
  47382. },
  47383. {
  47384. name: "Max",
  47385. height: math.unit(3280, "feet")
  47386. },
  47387. ]
  47388. ))
  47389. characterMakers.push(() => makeCharacter(
  47390. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47391. {
  47392. front: {
  47393. height: math.unit(6 + 8/12, "feet"),
  47394. weight: math.unit(250, "lb"),
  47395. name: "Front",
  47396. image: {
  47397. source: "./media/characters/ztragon/front.svg",
  47398. extra: 1825/1684,
  47399. bottom: 98/1923
  47400. }
  47401. },
  47402. },
  47403. [
  47404. {
  47405. name: "Normal",
  47406. height: math.unit(6 + 8/12, "feet"),
  47407. default: true
  47408. },
  47409. {
  47410. name: "Macro",
  47411. height: math.unit(80, "feet")
  47412. },
  47413. ]
  47414. ))
  47415. characterMakers.push(() => makeCharacter(
  47416. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47417. {
  47418. front: {
  47419. height: math.unit(10.4, "feet"),
  47420. weight: math.unit(2, "tons"),
  47421. name: "Front",
  47422. image: {
  47423. source: "./media/characters/yesenia/front.svg",
  47424. extra: 1479/1474,
  47425. bottom: 233/1712
  47426. }
  47427. },
  47428. },
  47429. [
  47430. {
  47431. name: "Normal",
  47432. height: math.unit(10.4, "feet"),
  47433. default: true
  47434. },
  47435. ]
  47436. ))
  47437. characterMakers.push(() => makeCharacter(
  47438. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47439. {
  47440. normal: {
  47441. height: math.unit(6 + 1/12, "feet"),
  47442. weight: math.unit(180, "lb"),
  47443. name: "Normal",
  47444. image: {
  47445. source: "./media/characters/leanne-lycheborne/normal.svg",
  47446. extra: 1748/1660,
  47447. bottom: 98/1846
  47448. }
  47449. },
  47450. were: {
  47451. height: math.unit(12, "feet"),
  47452. weight: math.unit(1600, "lb"),
  47453. name: "Were",
  47454. image: {
  47455. source: "./media/characters/leanne-lycheborne/were.svg",
  47456. extra: 1485/1432,
  47457. bottom: 66/1551
  47458. }
  47459. },
  47460. },
  47461. [
  47462. {
  47463. name: "Normal",
  47464. height: math.unit(6 + 1/12, "feet"),
  47465. default: true
  47466. },
  47467. ]
  47468. ))
  47469. characterMakers.push(() => makeCharacter(
  47470. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47471. {
  47472. side: {
  47473. height: math.unit(13, "feet"),
  47474. name: "Side",
  47475. image: {
  47476. source: "./media/characters/kira-tyler/side.svg",
  47477. extra: 693/393,
  47478. bottom: 58/751
  47479. }
  47480. },
  47481. },
  47482. [
  47483. {
  47484. name: "Normal",
  47485. height: math.unit(13, "feet"),
  47486. default: true
  47487. },
  47488. ]
  47489. ))
  47490. characterMakers.push(() => makeCharacter(
  47491. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47492. {
  47493. front: {
  47494. height: math.unit(10.3, "feet"),
  47495. weight: math.unit(150, "lb"),
  47496. name: "Front",
  47497. image: {
  47498. source: "./media/characters/blaze/front.svg",
  47499. extra: 1378/1286,
  47500. bottom: 172/1550
  47501. }
  47502. },
  47503. },
  47504. [
  47505. {
  47506. name: "Normal",
  47507. height: math.unit(10.3, "feet"),
  47508. default: true
  47509. },
  47510. ]
  47511. ))
  47512. characterMakers.push(() => makeCharacter(
  47513. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47514. {
  47515. side: {
  47516. height: math.unit(2, "meters"),
  47517. weight: math.unit(400, "kg"),
  47518. name: "Side",
  47519. image: {
  47520. source: "./media/characters/anu/side.svg",
  47521. extra: 506/394,
  47522. bottom: 18/524
  47523. }
  47524. },
  47525. },
  47526. [
  47527. {
  47528. name: "Humanoid",
  47529. height: math.unit(2, "meters")
  47530. },
  47531. {
  47532. name: "Normal",
  47533. height: math.unit(5, "meters"),
  47534. default: true
  47535. },
  47536. ]
  47537. ))
  47538. characterMakers.push(() => makeCharacter(
  47539. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47540. {
  47541. front: {
  47542. height: math.unit(5 + 5/12, "feet"),
  47543. weight: math.unit(170, "lb"),
  47544. name: "Front",
  47545. image: {
  47546. source: "./media/characters/synx-the-lynx/front.svg",
  47547. extra: 1893/1745,
  47548. bottom: 17/1910
  47549. }
  47550. },
  47551. side: {
  47552. height: math.unit(5 + 5/12, "feet"),
  47553. weight: math.unit(170, "lb"),
  47554. name: "Side",
  47555. image: {
  47556. source: "./media/characters/synx-the-lynx/side.svg",
  47557. extra: 1884/1740,
  47558. bottom: 39/1923
  47559. }
  47560. },
  47561. back: {
  47562. height: math.unit(5 + 5/12, "feet"),
  47563. weight: math.unit(170, "lb"),
  47564. name: "Back",
  47565. image: {
  47566. source: "./media/characters/synx-the-lynx/back.svg",
  47567. extra: 1903/1755,
  47568. bottom: 14/1917
  47569. }
  47570. },
  47571. },
  47572. [
  47573. {
  47574. name: "Normal",
  47575. height: math.unit(5 + 5/12, "feet"),
  47576. default: true
  47577. },
  47578. ]
  47579. ))
  47580. characterMakers.push(() => makeCharacter(
  47581. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47582. {
  47583. back: {
  47584. height: math.unit(15, "feet"),
  47585. name: "Back",
  47586. image: {
  47587. source: "./media/characters/nadezda-fex/back.svg",
  47588. extra: 1695/1481,
  47589. bottom: 25/1720
  47590. }
  47591. },
  47592. },
  47593. [
  47594. {
  47595. name: "Normal",
  47596. height: math.unit(15, "feet"),
  47597. default: true
  47598. },
  47599. {
  47600. name: "Macro",
  47601. height: math.unit(2.5, "miles")
  47602. },
  47603. {
  47604. name: "Goddess",
  47605. height: math.unit(2, "multiverses")
  47606. },
  47607. ]
  47608. ))
  47609. characterMakers.push(() => makeCharacter(
  47610. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47611. {
  47612. front: {
  47613. height: math.unit(216, "cm"),
  47614. name: "Front",
  47615. image: {
  47616. source: "./media/characters/lev/front.svg",
  47617. extra: 1728/1670,
  47618. bottom: 82/1810
  47619. }
  47620. },
  47621. back: {
  47622. height: math.unit(216, "cm"),
  47623. name: "Back",
  47624. image: {
  47625. source: "./media/characters/lev/back.svg",
  47626. extra: 1738/1675,
  47627. bottom: 24/1762
  47628. }
  47629. },
  47630. dressed: {
  47631. height: math.unit(216, "cm"),
  47632. name: "Dressed",
  47633. image: {
  47634. source: "./media/characters/lev/dressed.svg",
  47635. extra: 1397/1351,
  47636. bottom: 73/1470
  47637. }
  47638. },
  47639. head: {
  47640. height: math.unit(0.51, "meter"),
  47641. name: "Head",
  47642. image: {
  47643. source: "./media/characters/lev/head.svg"
  47644. }
  47645. },
  47646. },
  47647. [
  47648. {
  47649. name: "Normal",
  47650. height: math.unit(216, "cm"),
  47651. default: true
  47652. },
  47653. {
  47654. name: "Relatively Macro",
  47655. height: math.unit(80, "meters")
  47656. },
  47657. {
  47658. name: "Megamacro",
  47659. height: math.unit(21600, "meters")
  47660. },
  47661. {
  47662. name: "Megamacro+",
  47663. height: math.unit(64800, "meters")
  47664. },
  47665. ]
  47666. ))
  47667. characterMakers.push(() => makeCharacter(
  47668. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47669. {
  47670. front: {
  47671. height: math.unit(2, "meters"),
  47672. weight: math.unit(80, "kg"),
  47673. name: "Front",
  47674. image: {
  47675. source: "./media/characters/moka/front.svg",
  47676. extra: 1337/1255,
  47677. bottom: 58/1395
  47678. }
  47679. },
  47680. },
  47681. [
  47682. {
  47683. name: "Micro",
  47684. height: math.unit(15, "cm")
  47685. },
  47686. {
  47687. name: "Normal",
  47688. height: math.unit(2, "meters"),
  47689. default: true
  47690. },
  47691. {
  47692. name: "Macro",
  47693. height: math.unit(20, "meters"),
  47694. },
  47695. ]
  47696. ))
  47697. characterMakers.push(() => makeCharacter(
  47698. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47699. {
  47700. front: {
  47701. height: math.unit(9, "feet"),
  47702. weight: math.unit(240, "lb"),
  47703. name: "Front",
  47704. image: {
  47705. source: "./media/characters/kuzco/front.svg",
  47706. extra: 1593/1487,
  47707. bottom: 32/1625
  47708. }
  47709. },
  47710. side: {
  47711. height: math.unit(9, "feet"),
  47712. weight: math.unit(240, "lb"),
  47713. name: "Side",
  47714. image: {
  47715. source: "./media/characters/kuzco/side.svg",
  47716. extra: 1575/1485,
  47717. bottom: 30/1605
  47718. }
  47719. },
  47720. back: {
  47721. height: math.unit(9, "feet"),
  47722. weight: math.unit(240, "lb"),
  47723. name: "Back",
  47724. image: {
  47725. source: "./media/characters/kuzco/back.svg",
  47726. extra: 1603/1514,
  47727. bottom: 14/1617
  47728. }
  47729. },
  47730. },
  47731. [
  47732. {
  47733. name: "Normal",
  47734. height: math.unit(9, "feet"),
  47735. default: true
  47736. },
  47737. ]
  47738. ))
  47739. characterMakers.push(() => makeCharacter(
  47740. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47741. {
  47742. side: {
  47743. height: math.unit(2, "meters"),
  47744. weight: math.unit(300, "kg"),
  47745. name: "Side",
  47746. image: {
  47747. source: "./media/characters/ceruleus/side.svg",
  47748. extra: 1068/974,
  47749. bottom: 126/1194
  47750. }
  47751. },
  47752. maw: {
  47753. height: math.unit(0.8125, "meter"),
  47754. name: "Maw",
  47755. image: {
  47756. source: "./media/characters/ceruleus/maw.svg"
  47757. }
  47758. },
  47759. },
  47760. [
  47761. {
  47762. name: "Normal",
  47763. height: math.unit(16, "meters"),
  47764. default: true
  47765. },
  47766. ]
  47767. ))
  47768. characterMakers.push(() => makeCharacter(
  47769. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47770. {
  47771. front: {
  47772. height: math.unit(9, "feet"),
  47773. weight: math.unit(500, "kg"),
  47774. name: "Front",
  47775. image: {
  47776. source: "./media/characters/acouya/front.svg",
  47777. extra: 1660/1473,
  47778. bottom: 28/1688
  47779. }
  47780. },
  47781. },
  47782. [
  47783. {
  47784. name: "Normal",
  47785. height: math.unit(9, "feet"),
  47786. default: true
  47787. },
  47788. ]
  47789. ))
  47790. characterMakers.push(() => makeCharacter(
  47791. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47792. {
  47793. front: {
  47794. height: math.unit(5 + 6/12, "feet"),
  47795. weight: math.unit(195, "lb"),
  47796. name: "Front",
  47797. image: {
  47798. source: "./media/characters/vant/front.svg",
  47799. extra: 1396/1320,
  47800. bottom: 20/1416
  47801. }
  47802. },
  47803. back: {
  47804. height: math.unit(5 + 6/12, "feet"),
  47805. weight: math.unit(195, "lb"),
  47806. name: "Back",
  47807. image: {
  47808. source: "./media/characters/vant/back.svg",
  47809. extra: 1396/1320,
  47810. bottom: 20/1416
  47811. }
  47812. },
  47813. maw: {
  47814. height: math.unit(0.75, "feet"),
  47815. name: "Maw",
  47816. image: {
  47817. source: "./media/characters/vant/maw.svg"
  47818. }
  47819. },
  47820. paw: {
  47821. height: math.unit(1.07, "feet"),
  47822. name: "Paw",
  47823. image: {
  47824. source: "./media/characters/vant/paw.svg"
  47825. }
  47826. },
  47827. },
  47828. [
  47829. {
  47830. name: "Micro",
  47831. height: math.unit(0.25, "inches")
  47832. },
  47833. {
  47834. name: "Normal",
  47835. height: math.unit(5 + 6/12, "feet"),
  47836. default: true
  47837. },
  47838. {
  47839. name: "Macro",
  47840. height: math.unit(75, "feet")
  47841. },
  47842. ]
  47843. ))
  47844. characterMakers.push(() => makeCharacter(
  47845. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47846. {
  47847. front: {
  47848. height: math.unit(30, "meters"),
  47849. weight: math.unit(363, "tons"),
  47850. name: "Front",
  47851. image: {
  47852. source: "./media/characters/ahra/front.svg",
  47853. extra: 1914/1814,
  47854. bottom: 46/1960
  47855. }
  47856. },
  47857. },
  47858. [
  47859. {
  47860. name: "Macro",
  47861. height: math.unit(30, "meters"),
  47862. default: true
  47863. },
  47864. ]
  47865. ))
  47866. characterMakers.push(() => makeCharacter(
  47867. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47868. {
  47869. undressed: {
  47870. height: math.unit(2, "m"),
  47871. weight: math.unit(250, "kg"),
  47872. name: "Undressed",
  47873. image: {
  47874. source: "./media/characters/coriander/undressed.svg",
  47875. extra: 1757/1606,
  47876. bottom: 107/1864
  47877. }
  47878. },
  47879. dressed: {
  47880. height: math.unit(2, "m"),
  47881. weight: math.unit(250, "kg"),
  47882. name: "Dressed",
  47883. image: {
  47884. source: "./media/characters/coriander/dressed.svg",
  47885. extra: 1757/1606,
  47886. bottom: 107/1864
  47887. }
  47888. },
  47889. },
  47890. [
  47891. {
  47892. name: "Normal",
  47893. height: math.unit(4, "meters"),
  47894. default: true
  47895. },
  47896. {
  47897. name: "XL",
  47898. height: math.unit(6, "meters")
  47899. },
  47900. {
  47901. name: "XXL",
  47902. height: math.unit(8, "meters")
  47903. },
  47904. ]
  47905. ))
  47906. characterMakers.push(() => makeCharacter(
  47907. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47908. {
  47909. front: {
  47910. height: math.unit(6, "feet"),
  47911. name: "Front",
  47912. image: {
  47913. source: "./media/characters/syrinx/front.svg",
  47914. extra: 1557/1259,
  47915. bottom: 171/1728
  47916. }
  47917. },
  47918. },
  47919. [
  47920. {
  47921. name: "Normal",
  47922. height: math.unit(6 + 3/12, "feet"),
  47923. default: true
  47924. },
  47925. ]
  47926. ))
  47927. characterMakers.push(() => makeCharacter(
  47928. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47929. {
  47930. front: {
  47931. height: math.unit(11 + 6/12, "feet"),
  47932. weight: math.unit(1.5, "tons"),
  47933. name: "Front",
  47934. image: {
  47935. source: "./media/characters/bor/front.svg",
  47936. extra: 1189/1109,
  47937. bottom: 170/1359
  47938. }
  47939. },
  47940. },
  47941. [
  47942. {
  47943. name: "Normal",
  47944. height: math.unit(11 + 6/12, "feet"),
  47945. default: true
  47946. },
  47947. {
  47948. name: "Macro",
  47949. height: math.unit(32 + 9/12, "feet")
  47950. },
  47951. ]
  47952. ))
  47953. characterMakers.push(() => makeCharacter(
  47954. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47955. {
  47956. anthro: {
  47957. height: math.unit(9, "feet"),
  47958. weight: math.unit(2076, "lb"),
  47959. name: "Anthro",
  47960. image: {
  47961. source: "./media/characters/abacus/anthro.svg",
  47962. extra: 1540/1494,
  47963. bottom: 233/1773
  47964. }
  47965. },
  47966. pigeon: {
  47967. height: math.unit(1, "feet"),
  47968. name: "Pigeon",
  47969. image: {
  47970. source: "./media/characters/abacus/pigeon.svg",
  47971. extra: 528/525,
  47972. bottom: 46/574
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Normal",
  47979. height: math.unit(9, "feet"),
  47980. default: true
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47986. {
  47987. side: {
  47988. height: math.unit(6, "feet"),
  47989. name: "Side",
  47990. image: {
  47991. source: "./media/characters/delkhan/side.svg",
  47992. extra: 1884/1786,
  47993. bottom: 308/2192
  47994. }
  47995. },
  47996. head: {
  47997. height: math.unit(3.38, "feet"),
  47998. name: "Head",
  47999. image: {
  48000. source: "./media/characters/delkhan/head.svg"
  48001. }
  48002. },
  48003. },
  48004. [
  48005. {
  48006. name: "Normal",
  48007. height: math.unit(72, "feet"),
  48008. default: true
  48009. },
  48010. {
  48011. name: "Giant",
  48012. height: math.unit(172, "feet")
  48013. },
  48014. ]
  48015. ))
  48016. characterMakers.push(() => makeCharacter(
  48017. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48018. {
  48019. standing: {
  48020. height: math.unit(6, "feet"),
  48021. name: "Standing",
  48022. image: {
  48023. source: "./media/characters/euchidat/standing.svg",
  48024. extra: 1612/1553,
  48025. bottom: 116/1728
  48026. }
  48027. },
  48028. leaning: {
  48029. height: math.unit(6, "feet"),
  48030. name: "Leaning",
  48031. image: {
  48032. source: "./media/characters/euchidat/leaning.svg",
  48033. extra: 1719/1674,
  48034. bottom: 27/1746
  48035. }
  48036. },
  48037. },
  48038. [
  48039. {
  48040. name: "Normal",
  48041. height: math.unit(175, "feet"),
  48042. default: true
  48043. },
  48044. {
  48045. name: "Megamacro",
  48046. height: math.unit(190, "miles")
  48047. },
  48048. {
  48049. name: "Gigamacro",
  48050. height: math.unit(190000, "miles")
  48051. },
  48052. ]
  48053. ))
  48054. characterMakers.push(() => makeCharacter(
  48055. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48056. {
  48057. front: {
  48058. height: math.unit(6, "feet"),
  48059. weight: math.unit(150, "lb"),
  48060. name: "Front",
  48061. image: {
  48062. source: "./media/characters/rebecca-stack/front.svg",
  48063. extra: 1256/1201,
  48064. bottom: 18/1274
  48065. }
  48066. },
  48067. },
  48068. [
  48069. {
  48070. name: "Normal",
  48071. height: math.unit(5 + 8/12, "feet"),
  48072. default: true
  48073. },
  48074. {
  48075. name: "Demolitionist",
  48076. height: math.unit(200, "feet")
  48077. },
  48078. {
  48079. name: "Out of Control",
  48080. height: math.unit(2, "miles")
  48081. },
  48082. {
  48083. name: "Giga",
  48084. height: math.unit(7200, "miles")
  48085. },
  48086. ]
  48087. ))
  48088. characterMakers.push(() => makeCharacter(
  48089. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48090. {
  48091. front: {
  48092. height: math.unit(6, "feet"),
  48093. weight: math.unit(150, "lb"),
  48094. name: "Front",
  48095. image: {
  48096. source: "./media/characters/jenny-cartwright/front.svg",
  48097. extra: 1384/1376,
  48098. bottom: 58/1442
  48099. }
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(6 + 7/12, "feet"),
  48106. default: true
  48107. },
  48108. {
  48109. name: "Librarian",
  48110. height: math.unit(55, "feet")
  48111. },
  48112. {
  48113. name: "Sightseer",
  48114. height: math.unit(50, "miles")
  48115. },
  48116. {
  48117. name: "Giga",
  48118. height: math.unit(30000, "miles")
  48119. },
  48120. ]
  48121. ))
  48122. characterMakers.push(() => makeCharacter(
  48123. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48124. {
  48125. nude: {
  48126. height: math.unit(8, "feet"),
  48127. weight: math.unit(225, "lb"),
  48128. name: "Nude",
  48129. image: {
  48130. source: "./media/characters/marvy/nude.svg",
  48131. extra: 1900/1683,
  48132. bottom: 89/1989
  48133. }
  48134. },
  48135. dressed: {
  48136. height: math.unit(8, "feet"),
  48137. weight: math.unit(225, "lb"),
  48138. name: "Dressed",
  48139. image: {
  48140. source: "./media/characters/marvy/dressed.svg",
  48141. extra: 1900/1683,
  48142. bottom: 89/1989
  48143. }
  48144. },
  48145. head: {
  48146. height: math.unit(2.85, "feet"),
  48147. name: "Head",
  48148. image: {
  48149. source: "./media/characters/marvy/head.svg"
  48150. }
  48151. },
  48152. },
  48153. [
  48154. {
  48155. name: "Normal",
  48156. height: math.unit(8, "feet"),
  48157. default: true
  48158. },
  48159. ]
  48160. ))
  48161. characterMakers.push(() => makeCharacter(
  48162. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48163. {
  48164. front: {
  48165. height: math.unit(8, "feet"),
  48166. weight: math.unit(250, "lb"),
  48167. name: "Front",
  48168. image: {
  48169. source: "./media/characters/leah/front.svg",
  48170. extra: 1257/1149,
  48171. bottom: 109/1366
  48172. }
  48173. },
  48174. },
  48175. [
  48176. {
  48177. name: "Normal",
  48178. height: math.unit(8, "feet"),
  48179. default: true
  48180. },
  48181. {
  48182. name: "Minimacro",
  48183. height: math.unit(40, "feet")
  48184. },
  48185. {
  48186. name: "Macro",
  48187. height: math.unit(124, "feet")
  48188. },
  48189. {
  48190. name: "Megamacro",
  48191. height: math.unit(850, "feet")
  48192. },
  48193. ]
  48194. ))
  48195. characterMakers.push(() => makeCharacter(
  48196. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48197. {
  48198. side: {
  48199. height: math.unit(13 + 6/12, "feet"),
  48200. weight: math.unit(3200, "lb"),
  48201. name: "Side",
  48202. image: {
  48203. source: "./media/characters/alvir/side.svg",
  48204. extra: 896/589,
  48205. bottom: 26/922
  48206. }
  48207. },
  48208. },
  48209. [
  48210. {
  48211. name: "Normal",
  48212. height: math.unit(13 + 6/12, "feet"),
  48213. default: true
  48214. },
  48215. ]
  48216. ))
  48217. characterMakers.push(() => makeCharacter(
  48218. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48219. {
  48220. front: {
  48221. height: math.unit(5 + 4/12, "feet"),
  48222. weight: math.unit(236, "lb"),
  48223. name: "Front",
  48224. image: {
  48225. source: "./media/characters/zaina-khalil/front.svg",
  48226. extra: 1533/1485,
  48227. bottom: 94/1627
  48228. }
  48229. },
  48230. side: {
  48231. height: math.unit(5 + 4/12, "feet"),
  48232. weight: math.unit(236, "lb"),
  48233. name: "Side",
  48234. image: {
  48235. source: "./media/characters/zaina-khalil/side.svg",
  48236. extra: 1537/1498,
  48237. bottom: 66/1603
  48238. }
  48239. },
  48240. back: {
  48241. height: math.unit(5 + 4/12, "feet"),
  48242. weight: math.unit(236, "lb"),
  48243. name: "Back",
  48244. image: {
  48245. source: "./media/characters/zaina-khalil/back.svg",
  48246. extra: 1546/1494,
  48247. bottom: 89/1635
  48248. }
  48249. },
  48250. },
  48251. [
  48252. {
  48253. name: "Normal",
  48254. height: math.unit(5 + 4/12, "feet"),
  48255. default: true
  48256. },
  48257. ]
  48258. ))
  48259. characterMakers.push(() => makeCharacter(
  48260. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48261. {
  48262. side: {
  48263. height: math.unit(12, "feet"),
  48264. weight: math.unit(4000, "lb"),
  48265. name: "Side",
  48266. image: {
  48267. source: "./media/characters/terry/side.svg",
  48268. extra: 1518/1439,
  48269. bottom: 149/1667
  48270. }
  48271. },
  48272. },
  48273. [
  48274. {
  48275. name: "Normal",
  48276. height: math.unit(12, "feet"),
  48277. default: true
  48278. },
  48279. ]
  48280. ))
  48281. characterMakers.push(() => makeCharacter(
  48282. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48283. {
  48284. front: {
  48285. height: math.unit(12, "feet"),
  48286. weight: math.unit(1500, "lb"),
  48287. name: "Front",
  48288. image: {
  48289. source: "./media/characters/kahea/front.svg",
  48290. extra: 1722/1617,
  48291. bottom: 179/1901
  48292. }
  48293. },
  48294. },
  48295. [
  48296. {
  48297. name: "Normal",
  48298. height: math.unit(12, "feet"),
  48299. default: true
  48300. },
  48301. ]
  48302. ))
  48303. characterMakers.push(() => makeCharacter(
  48304. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48305. {
  48306. demonFront: {
  48307. height: math.unit(36, "feet"),
  48308. name: "Front",
  48309. image: {
  48310. source: "./media/characters/alex-xuria/demon-front.svg",
  48311. extra: 1705/1673,
  48312. bottom: 198/1903
  48313. },
  48314. form: "demon",
  48315. default: true
  48316. },
  48317. demonBack: {
  48318. height: math.unit(36, "feet"),
  48319. name: "Back",
  48320. image: {
  48321. source: "./media/characters/alex-xuria/demon-back.svg",
  48322. extra: 1725/1693,
  48323. bottom: 70/1795
  48324. },
  48325. form: "demon"
  48326. },
  48327. demonHead: {
  48328. height: math.unit(2.14, "meters"),
  48329. name: "Head",
  48330. image: {
  48331. source: "./media/characters/alex-xuria/demon-head.svg"
  48332. },
  48333. form: "demon"
  48334. },
  48335. demonHand: {
  48336. height: math.unit(1.61, "meters"),
  48337. name: "Hand",
  48338. image: {
  48339. source: "./media/characters/alex-xuria/demon-hand.svg"
  48340. },
  48341. form: "demon"
  48342. },
  48343. demonPaw: {
  48344. height: math.unit(1.35, "meters"),
  48345. name: "Paw",
  48346. image: {
  48347. source: "./media/characters/alex-xuria/demon-paw.svg"
  48348. },
  48349. form: "demon"
  48350. },
  48351. demonFoot: {
  48352. height: math.unit(2.2, "meters"),
  48353. name: "Foot",
  48354. image: {
  48355. source: "./media/characters/alex-xuria/demon-foot.svg"
  48356. },
  48357. form: "demon"
  48358. },
  48359. demonCock: {
  48360. height: math.unit(1.74, "meters"),
  48361. name: "Cock",
  48362. image: {
  48363. source: "./media/characters/alex-xuria/demon-cock.svg"
  48364. },
  48365. form: "demon"
  48366. },
  48367. demonTailClosed: {
  48368. height: math.unit(1.47, "meters"),
  48369. name: "Tail (Closed)",
  48370. image: {
  48371. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48372. },
  48373. form: "demon"
  48374. },
  48375. demonTailOpen: {
  48376. height: math.unit(2.85, "meters"),
  48377. name: "Tail (Open)",
  48378. image: {
  48379. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48380. },
  48381. form: "demon"
  48382. },
  48383. incubusFront: {
  48384. height: math.unit(12, "feet"),
  48385. name: "Front",
  48386. image: {
  48387. source: "./media/characters/alex-xuria/incubus-front.svg",
  48388. extra: 1754/1677,
  48389. bottom: 125/1879
  48390. },
  48391. form: "incubus",
  48392. default: true
  48393. },
  48394. incubusBack: {
  48395. height: math.unit(12, "feet"),
  48396. name: "Back",
  48397. image: {
  48398. source: "./media/characters/alex-xuria/incubus-back.svg",
  48399. extra: 1702/1647,
  48400. bottom: 30/1732
  48401. },
  48402. form: "incubus"
  48403. },
  48404. incubusHead: {
  48405. height: math.unit(3.45, "feet"),
  48406. name: "Head",
  48407. image: {
  48408. source: "./media/characters/alex-xuria/incubus-head.svg"
  48409. },
  48410. form: "incubus"
  48411. },
  48412. rabbitFront: {
  48413. height: math.unit(6, "feet"),
  48414. name: "Front",
  48415. image: {
  48416. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48417. extra: 1369/1349,
  48418. bottom: 45/1414
  48419. },
  48420. form: "rabbit",
  48421. default: true
  48422. },
  48423. rabbitSide: {
  48424. height: math.unit(6, "feet"),
  48425. name: "Side",
  48426. image: {
  48427. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48428. extra: 1370/1356,
  48429. bottom: 37/1407
  48430. },
  48431. form: "rabbit"
  48432. },
  48433. rabbitBack: {
  48434. height: math.unit(6, "feet"),
  48435. name: "Back",
  48436. image: {
  48437. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48438. extra: 1375/1358,
  48439. bottom: 43/1418
  48440. },
  48441. form: "rabbit"
  48442. },
  48443. },
  48444. [
  48445. {
  48446. name: "Normal",
  48447. height: math.unit(6, "feet"),
  48448. default: true,
  48449. form: "rabbit"
  48450. },
  48451. {
  48452. name: "Incubus",
  48453. height: math.unit(12, "feet"),
  48454. default: true,
  48455. form: "incubus"
  48456. },
  48457. {
  48458. name: "Demon",
  48459. height: math.unit(36, "feet"),
  48460. default: true,
  48461. form: "demon"
  48462. }
  48463. ],
  48464. {
  48465. "demon": {
  48466. name: "Demon",
  48467. default: true
  48468. },
  48469. "incubus": {
  48470. name: "Incubus",
  48471. },
  48472. "rabbit": {
  48473. name: "Rabbit"
  48474. }
  48475. }
  48476. ))
  48477. characterMakers.push(() => makeCharacter(
  48478. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48479. {
  48480. front: {
  48481. height: math.unit(7 + 5/12, "feet"),
  48482. weight: math.unit(510, "lb"),
  48483. name: "Front",
  48484. image: {
  48485. source: "./media/characters/syrup/front.svg",
  48486. extra: 932/916,
  48487. bottom: 26/958
  48488. }
  48489. },
  48490. },
  48491. [
  48492. {
  48493. name: "Normal",
  48494. height: math.unit(7 + 5/12, "feet"),
  48495. default: true
  48496. },
  48497. {
  48498. name: "Big",
  48499. height: math.unit(50, "feet")
  48500. },
  48501. {
  48502. name: "Macro",
  48503. height: math.unit(300, "feet")
  48504. },
  48505. {
  48506. name: "Megamacro",
  48507. height: math.unit(1, "mile")
  48508. },
  48509. ]
  48510. ))
  48511. characterMakers.push(() => makeCharacter(
  48512. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48513. {
  48514. front: {
  48515. height: math.unit(6 + 9/12, "feet"),
  48516. name: "Front",
  48517. image: {
  48518. source: "./media/characters/zeimne/front.svg",
  48519. extra: 1969/1806,
  48520. bottom: 53/2022
  48521. }
  48522. },
  48523. },
  48524. [
  48525. {
  48526. name: "Normal",
  48527. height: math.unit(6 + 9/12, "feet"),
  48528. default: true
  48529. },
  48530. {
  48531. name: "Giant",
  48532. height: math.unit(550, "feet")
  48533. },
  48534. {
  48535. name: "Mega",
  48536. height: math.unit(3, "miles")
  48537. },
  48538. {
  48539. name: "Giga",
  48540. height: math.unit(250, "miles")
  48541. },
  48542. {
  48543. name: "Tera",
  48544. height: math.unit(1, "AU")
  48545. },
  48546. ]
  48547. ))
  48548. characterMakers.push(() => makeCharacter(
  48549. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48550. {
  48551. front: {
  48552. height: math.unit(5 + 2/12, "feet"),
  48553. name: "Front",
  48554. image: {
  48555. source: "./media/characters/grar/front.svg",
  48556. extra: 1331/1119,
  48557. bottom: 60/1391
  48558. }
  48559. },
  48560. back: {
  48561. height: math.unit(5 + 2/12, "feet"),
  48562. name: "Back",
  48563. image: {
  48564. source: "./media/characters/grar/back.svg",
  48565. extra: 1385/1169,
  48566. bottom: 23/1408
  48567. }
  48568. },
  48569. },
  48570. [
  48571. {
  48572. name: "Normal",
  48573. height: math.unit(5 + 2/12, "feet"),
  48574. default: true
  48575. },
  48576. ]
  48577. ))
  48578. characterMakers.push(() => makeCharacter(
  48579. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48580. {
  48581. front: {
  48582. height: math.unit(13 + 7/12, "feet"),
  48583. weight: math.unit(2200, "lb"),
  48584. name: "Front",
  48585. image: {
  48586. source: "./media/characters/endraya/front.svg",
  48587. extra: 1289/1215,
  48588. bottom: 50/1339
  48589. }
  48590. },
  48591. nude: {
  48592. height: math.unit(13 + 7/12, "feet"),
  48593. weight: math.unit(2200, "lb"),
  48594. name: "Nude",
  48595. image: {
  48596. source: "./media/characters/endraya/nude.svg",
  48597. extra: 1247/1171,
  48598. bottom: 40/1287
  48599. }
  48600. },
  48601. head: {
  48602. height: math.unit(2.6, "feet"),
  48603. name: "Head",
  48604. image: {
  48605. source: "./media/characters/endraya/head.svg"
  48606. }
  48607. },
  48608. slit: {
  48609. height: math.unit(3.4, "feet"),
  48610. name: "Slit",
  48611. image: {
  48612. source: "./media/characters/endraya/slit.svg"
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(13 + 7/12, "feet"),
  48620. default: true
  48621. },
  48622. {
  48623. name: "Macro",
  48624. height: math.unit(200, "feet")
  48625. },
  48626. ]
  48627. ))
  48628. characterMakers.push(() => makeCharacter(
  48629. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48630. {
  48631. front: {
  48632. height: math.unit(1.81, "meters"),
  48633. weight: math.unit(69, "kg"),
  48634. name: "Front",
  48635. image: {
  48636. source: "./media/characters/rodryana/front.svg",
  48637. extra: 2002/1921,
  48638. bottom: 53/2055
  48639. }
  48640. },
  48641. back: {
  48642. height: math.unit(1.81, "meters"),
  48643. weight: math.unit(69, "kg"),
  48644. name: "Back",
  48645. image: {
  48646. source: "./media/characters/rodryana/back.svg",
  48647. extra: 1993/1926,
  48648. bottom: 48/2041
  48649. }
  48650. },
  48651. maw: {
  48652. height: math.unit(0.19769417475, "meters"),
  48653. name: "Maw",
  48654. image: {
  48655. source: "./media/characters/rodryana/maw.svg"
  48656. }
  48657. },
  48658. slit: {
  48659. height: math.unit(0.31631067961, "meters"),
  48660. name: "Slit",
  48661. image: {
  48662. source: "./media/characters/rodryana/slit.svg"
  48663. }
  48664. },
  48665. },
  48666. [
  48667. {
  48668. name: "Normal",
  48669. height: math.unit(1.81, "meters")
  48670. },
  48671. {
  48672. name: "Mini Macro",
  48673. height: math.unit(181, "meters")
  48674. },
  48675. {
  48676. name: "Macro",
  48677. height: math.unit(452, "meters"),
  48678. default: true
  48679. },
  48680. {
  48681. name: "Mega Macro",
  48682. height: math.unit(1.375, "km")
  48683. },
  48684. {
  48685. name: "Giga Macro",
  48686. height: math.unit(13.575, "km")
  48687. },
  48688. ]
  48689. ))
  48690. characterMakers.push(() => makeCharacter(
  48691. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48692. {
  48693. front: {
  48694. height: math.unit(6, "feet"),
  48695. weight: math.unit(1000, "lb"),
  48696. name: "Front",
  48697. image: {
  48698. source: "./media/characters/asaya/front.svg",
  48699. extra: 1460/1200,
  48700. bottom: 71/1531
  48701. }
  48702. },
  48703. },
  48704. [
  48705. {
  48706. name: "Normal",
  48707. height: math.unit(8, "km"),
  48708. default: true
  48709. },
  48710. ]
  48711. ))
  48712. characterMakers.push(() => makeCharacter(
  48713. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48714. {
  48715. front: {
  48716. height: math.unit(3.5, "meters"),
  48717. name: "Front",
  48718. image: {
  48719. source: "./media/characters/sarzu-and-israz/front.svg",
  48720. extra: 1570/1558,
  48721. bottom: 150/1720
  48722. },
  48723. },
  48724. back: {
  48725. height: math.unit(3.5, "meters"),
  48726. name: "Back",
  48727. image: {
  48728. source: "./media/characters/sarzu-and-israz/back.svg",
  48729. extra: 1523/1509,
  48730. bottom: 132/1655
  48731. },
  48732. },
  48733. frontFemale: {
  48734. height: math.unit(3.5, "meters"),
  48735. name: "Front (Female)",
  48736. image: {
  48737. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48738. extra: 1570/1558,
  48739. bottom: 150/1720
  48740. },
  48741. },
  48742. frontHerm: {
  48743. height: math.unit(3.5, "meters"),
  48744. name: "Front (Herm)",
  48745. image: {
  48746. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48747. extra: 1570/1558,
  48748. bottom: 150/1720
  48749. },
  48750. },
  48751. },
  48752. [
  48753. {
  48754. name: "Normal",
  48755. height: math.unit(3.5, "meters"),
  48756. default: true,
  48757. },
  48758. {
  48759. name: "Macro",
  48760. height: math.unit(65.5, "meters"),
  48761. },
  48762. ],
  48763. ))
  48764. characterMakers.push(() => makeCharacter(
  48765. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48766. {
  48767. front: {
  48768. height: math.unit(6, "feet"),
  48769. weight: math.unit(250, "lb"),
  48770. name: "Front",
  48771. image: {
  48772. source: "./media/characters/zenimma/front.svg",
  48773. extra: 1346/1320,
  48774. bottom: 58/1404
  48775. }
  48776. },
  48777. back: {
  48778. height: math.unit(6, "feet"),
  48779. weight: math.unit(250, "lb"),
  48780. name: "Back",
  48781. image: {
  48782. source: "./media/characters/zenimma/back.svg",
  48783. extra: 1324/1308,
  48784. bottom: 44/1368
  48785. }
  48786. },
  48787. dick: {
  48788. height: math.unit(1.44, "feet"),
  48789. name: "Dick",
  48790. image: {
  48791. source: "./media/characters/zenimma/dick.svg"
  48792. }
  48793. },
  48794. },
  48795. [
  48796. {
  48797. name: "Canon Height",
  48798. height: math.unit(66, "miles"),
  48799. default: true
  48800. },
  48801. ]
  48802. ))
  48803. characterMakers.push(() => makeCharacter(
  48804. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48805. {
  48806. nude: {
  48807. height: math.unit(6, "feet"),
  48808. weight: math.unit(150, "lb"),
  48809. name: "Nude",
  48810. image: {
  48811. source: "./media/characters/shavon/nude.svg",
  48812. extra: 1242/1096,
  48813. bottom: 98/1340
  48814. }
  48815. },
  48816. dressed: {
  48817. height: math.unit(6, "feet"),
  48818. weight: math.unit(150, "lb"),
  48819. name: "Dressed",
  48820. image: {
  48821. source: "./media/characters/shavon/dressed.svg",
  48822. extra: 1242/1096,
  48823. bottom: 98/1340
  48824. }
  48825. },
  48826. },
  48827. [
  48828. {
  48829. name: "Macro",
  48830. height: math.unit(255, "feet"),
  48831. default: true
  48832. },
  48833. ]
  48834. ))
  48835. characterMakers.push(() => makeCharacter(
  48836. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48837. {
  48838. front: {
  48839. height: math.unit(6, "feet"),
  48840. name: "Front",
  48841. image: {
  48842. source: "./media/characters/steph/front.svg",
  48843. extra: 1430/1330,
  48844. bottom: 54/1484
  48845. }
  48846. },
  48847. },
  48848. [
  48849. {
  48850. name: "Normal",
  48851. height: math.unit(6, "feet"),
  48852. default: true
  48853. },
  48854. ]
  48855. ))
  48856. characterMakers.push(() => makeCharacter(
  48857. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48858. {
  48859. front: {
  48860. height: math.unit(9, "feet"),
  48861. weight: math.unit(400, "lb"),
  48862. name: "Front",
  48863. image: {
  48864. source: "./media/characters/kil'aman/front.svg",
  48865. extra: 1210/1159,
  48866. bottom: 109/1319
  48867. }
  48868. },
  48869. head: {
  48870. height: math.unit(2.14, "feet"),
  48871. name: "Head",
  48872. image: {
  48873. source: "./media/characters/kil'aman/head.svg"
  48874. }
  48875. },
  48876. maw: {
  48877. height: math.unit(1.21, "feet"),
  48878. name: "Maw",
  48879. image: {
  48880. source: "./media/characters/kil'aman/maw.svg"
  48881. }
  48882. },
  48883. foot: {
  48884. height: math.unit(1.7, "feet"),
  48885. name: "Foot",
  48886. image: {
  48887. source: "./media/characters/kil'aman/foot.svg"
  48888. }
  48889. },
  48890. dick: {
  48891. height: math.unit(2.1, "feet"),
  48892. name: "Dick",
  48893. image: {
  48894. source: "./media/characters/kil'aman/dick.svg"
  48895. }
  48896. },
  48897. },
  48898. [
  48899. {
  48900. name: "Normal",
  48901. height: math.unit(9, "feet")
  48902. },
  48903. {
  48904. name: "Canon Height",
  48905. height: math.unit(10, "miles"),
  48906. default: true
  48907. },
  48908. {
  48909. name: "Maximum",
  48910. height: math.unit(6e9, "miles")
  48911. },
  48912. ]
  48913. ))
  48914. characterMakers.push(() => makeCharacter(
  48915. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48916. {
  48917. front: {
  48918. height: math.unit(90, "feet"),
  48919. weight: math.unit(675000, "lb"),
  48920. name: "Front",
  48921. image: {
  48922. source: "./media/characters/qadan/front.svg",
  48923. extra: 1012/1004,
  48924. bottom: 78/1090
  48925. }
  48926. },
  48927. back: {
  48928. height: math.unit(90, "feet"),
  48929. weight: math.unit(675000, "lb"),
  48930. name: "Back",
  48931. image: {
  48932. source: "./media/characters/qadan/back.svg",
  48933. extra: 1042/1031,
  48934. bottom: 55/1097
  48935. }
  48936. },
  48937. armored: {
  48938. height: math.unit(90, "feet"),
  48939. weight: math.unit(675000, "lb"),
  48940. name: "Armored",
  48941. image: {
  48942. source: "./media/characters/qadan/armored.svg",
  48943. extra: 1047/1037,
  48944. bottom: 48/1095
  48945. }
  48946. },
  48947. },
  48948. [
  48949. {
  48950. name: "Normal",
  48951. height: math.unit(90, "feet"),
  48952. default: true
  48953. },
  48954. ]
  48955. ))
  48956. characterMakers.push(() => makeCharacter(
  48957. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48958. {
  48959. front: {
  48960. height: math.unit(6, "feet"),
  48961. weight: math.unit(225, "lb"),
  48962. name: "Front",
  48963. image: {
  48964. source: "./media/characters/brooke/front.svg",
  48965. extra: 1050/1010,
  48966. bottom: 66/1116
  48967. }
  48968. },
  48969. back: {
  48970. height: math.unit(6, "feet"),
  48971. weight: math.unit(225, "lb"),
  48972. name: "Back",
  48973. image: {
  48974. source: "./media/characters/brooke/back.svg",
  48975. extra: 1053/1013,
  48976. bottom: 41/1094
  48977. }
  48978. },
  48979. dressed: {
  48980. height: math.unit(6, "feet"),
  48981. weight: math.unit(225, "lb"),
  48982. name: "Dressed",
  48983. image: {
  48984. source: "./media/characters/brooke/dressed.svg",
  48985. extra: 1050/1010,
  48986. bottom: 66/1116
  48987. }
  48988. },
  48989. },
  48990. [
  48991. {
  48992. name: "Canon Height",
  48993. height: math.unit(500, "miles"),
  48994. default: true
  48995. },
  48996. ]
  48997. ))
  48998. characterMakers.push(() => makeCharacter(
  48999. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49000. {
  49001. front: {
  49002. height: math.unit(6 + 2/12, "feet"),
  49003. weight: math.unit(210, "lb"),
  49004. name: "Front",
  49005. image: {
  49006. source: "./media/characters/wubs/front.svg",
  49007. extra: 1345/1325,
  49008. bottom: 70/1415
  49009. }
  49010. },
  49011. back: {
  49012. height: math.unit(6 + 2/12, "feet"),
  49013. weight: math.unit(210, "lb"),
  49014. name: "Back",
  49015. image: {
  49016. source: "./media/characters/wubs/back.svg",
  49017. extra: 1296/1275,
  49018. bottom: 58/1354
  49019. }
  49020. },
  49021. },
  49022. [
  49023. {
  49024. name: "Normal",
  49025. height: math.unit(6 + 2/12, "feet"),
  49026. default: true
  49027. },
  49028. {
  49029. name: "Macro",
  49030. height: math.unit(1000, "feet")
  49031. },
  49032. {
  49033. name: "Megamacro",
  49034. height: math.unit(1, "mile")
  49035. },
  49036. ]
  49037. ))
  49038. characterMakers.push(() => makeCharacter(
  49039. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49040. {
  49041. front: {
  49042. height: math.unit(4, "feet"),
  49043. weight: math.unit(120, "lb"),
  49044. name: "Front",
  49045. image: {
  49046. source: "./media/characters/blue/front.svg",
  49047. extra: 1636/1525,
  49048. bottom: 43/1679
  49049. }
  49050. },
  49051. back: {
  49052. height: math.unit(4, "feet"),
  49053. weight: math.unit(120, "lb"),
  49054. name: "Back",
  49055. image: {
  49056. source: "./media/characters/blue/back.svg",
  49057. extra: 1660/1560,
  49058. bottom: 57/1717
  49059. }
  49060. },
  49061. paws: {
  49062. height: math.unit(0.826, "feet"),
  49063. name: "Paws",
  49064. image: {
  49065. source: "./media/characters/blue/paws.svg"
  49066. }
  49067. },
  49068. },
  49069. [
  49070. {
  49071. name: "Micro",
  49072. height: math.unit(3, "inches")
  49073. },
  49074. {
  49075. name: "Normal",
  49076. height: math.unit(4, "feet"),
  49077. default: true
  49078. },
  49079. {
  49080. name: "Femenine Form",
  49081. height: math.unit(14, "feet")
  49082. },
  49083. {
  49084. name: "Werebat Form",
  49085. height: math.unit(18, "feet")
  49086. },
  49087. ]
  49088. ))
  49089. characterMakers.push(() => makeCharacter(
  49090. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49091. {
  49092. female: {
  49093. height: math.unit(7 + 4/12, "feet"),
  49094. weight: math.unit(243, "lb"),
  49095. name: "Female",
  49096. image: {
  49097. source: "./media/characters/kaya/female.svg",
  49098. extra: 975/898,
  49099. bottom: 34/1009
  49100. }
  49101. },
  49102. herm: {
  49103. height: math.unit(7 + 4/12, "feet"),
  49104. weight: math.unit(243, "lb"),
  49105. name: "Herm",
  49106. image: {
  49107. source: "./media/characters/kaya/herm.svg",
  49108. extra: 975/898,
  49109. bottom: 34/1009
  49110. }
  49111. },
  49112. },
  49113. [
  49114. {
  49115. name: "Normal",
  49116. height: math.unit(7 + 4/12, "feet"),
  49117. default: true
  49118. },
  49119. ]
  49120. ))
  49121. characterMakers.push(() => makeCharacter(
  49122. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49123. {
  49124. female: {
  49125. height: math.unit(9 + 4/12, "feet"),
  49126. weight: math.unit(398, "lb"),
  49127. name: "Female",
  49128. image: {
  49129. source: "./media/characters/kassandra/female.svg",
  49130. extra: 908/839,
  49131. bottom: 61/969
  49132. }
  49133. },
  49134. intersex: {
  49135. height: math.unit(9 + 4/12, "feet"),
  49136. weight: math.unit(398, "lb"),
  49137. name: "Intersex",
  49138. image: {
  49139. source: "./media/characters/kassandra/intersex.svg",
  49140. extra: 908/839,
  49141. bottom: 61/969
  49142. }
  49143. },
  49144. },
  49145. [
  49146. {
  49147. name: "Normal",
  49148. height: math.unit(9 + 4/12, "feet"),
  49149. default: true
  49150. },
  49151. ]
  49152. ))
  49153. characterMakers.push(() => makeCharacter(
  49154. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49155. {
  49156. front: {
  49157. height: math.unit(3, "meters"),
  49158. name: "Front",
  49159. image: {
  49160. source: "./media/characters/amy/front.svg",
  49161. extra: 1380/1343,
  49162. bottom: 70/1450
  49163. }
  49164. },
  49165. back: {
  49166. height: math.unit(3, "meters"),
  49167. name: "Back",
  49168. image: {
  49169. source: "./media/characters/amy/back.svg",
  49170. extra: 1380/1347,
  49171. bottom: 66/1446
  49172. }
  49173. },
  49174. },
  49175. [
  49176. {
  49177. name: "Normal",
  49178. height: math.unit(3, "meters"),
  49179. default: true
  49180. },
  49181. ]
  49182. ))
  49183. characterMakers.push(() => makeCharacter(
  49184. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49185. {
  49186. side: {
  49187. height: math.unit(47, "cm"),
  49188. weight: math.unit(10.8, "kg"),
  49189. name: "Side",
  49190. image: {
  49191. source: "./media/characters/alphaschakal/side.svg",
  49192. extra: 1058/568,
  49193. bottom: 62/1120
  49194. }
  49195. },
  49196. back: {
  49197. height: math.unit(78, "cm"),
  49198. weight: math.unit(10.8, "kg"),
  49199. name: "Back",
  49200. image: {
  49201. source: "./media/characters/alphaschakal/back.svg",
  49202. extra: 1102/942,
  49203. bottom: 185/1287
  49204. }
  49205. },
  49206. head: {
  49207. height: math.unit(28, "cm"),
  49208. name: "Head",
  49209. image: {
  49210. source: "./media/characters/alphaschakal/head.svg",
  49211. extra: 696/508,
  49212. bottom: 0/696
  49213. }
  49214. },
  49215. paw: {
  49216. height: math.unit(16, "cm"),
  49217. name: "Paw",
  49218. image: {
  49219. source: "./media/characters/alphaschakal/paw.svg"
  49220. }
  49221. },
  49222. },
  49223. [
  49224. {
  49225. name: "Normal",
  49226. height: math.unit(47, "cm"),
  49227. default: true
  49228. },
  49229. {
  49230. name: "Macro",
  49231. height: math.unit(340, "cm")
  49232. },
  49233. ]
  49234. ))
  49235. characterMakers.push(() => makeCharacter(
  49236. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49237. {
  49238. front: {
  49239. height: math.unit(36, "earths"),
  49240. name: "Front",
  49241. image: {
  49242. source: "./media/characters/ecobyss/front.svg",
  49243. extra: 1282/1215,
  49244. bottom: 11/1293
  49245. }
  49246. },
  49247. back: {
  49248. height: math.unit(36, "earths"),
  49249. name: "Back",
  49250. image: {
  49251. source: "./media/characters/ecobyss/back.svg",
  49252. extra: 1291/1222,
  49253. bottom: 8/1299
  49254. }
  49255. },
  49256. },
  49257. [
  49258. {
  49259. name: "Normal",
  49260. height: math.unit(36, "earths"),
  49261. default: true
  49262. },
  49263. ]
  49264. ))
  49265. characterMakers.push(() => makeCharacter(
  49266. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49267. {
  49268. front: {
  49269. height: math.unit(12, "feet"),
  49270. name: "Front",
  49271. image: {
  49272. source: "./media/characters/vasuk/front.svg",
  49273. extra: 1326/1207,
  49274. bottom: 64/1390
  49275. }
  49276. },
  49277. },
  49278. [
  49279. {
  49280. name: "Normal",
  49281. height: math.unit(12, "feet"),
  49282. default: true
  49283. },
  49284. ]
  49285. ))
  49286. characterMakers.push(() => makeCharacter(
  49287. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49288. {
  49289. side: {
  49290. height: math.unit(100, "feet"),
  49291. name: "Side",
  49292. image: {
  49293. source: "./media/characters/linneaus/side.svg",
  49294. extra: 987/807,
  49295. bottom: 47/1034
  49296. }
  49297. },
  49298. },
  49299. [
  49300. {
  49301. name: "Macro",
  49302. height: math.unit(100, "feet"),
  49303. default: true
  49304. },
  49305. ]
  49306. ))
  49307. characterMakers.push(() => makeCharacter(
  49308. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49309. {
  49310. front: {
  49311. height: math.unit(8, "feet"),
  49312. weight: math.unit(1200, "lb"),
  49313. name: "Front",
  49314. image: {
  49315. source: "./media/characters/nyterious-daligdig/front.svg",
  49316. extra: 1284/1094,
  49317. bottom: 84/1368
  49318. }
  49319. },
  49320. back: {
  49321. height: math.unit(8, "feet"),
  49322. weight: math.unit(1200, "lb"),
  49323. name: "Back",
  49324. image: {
  49325. source: "./media/characters/nyterious-daligdig/back.svg",
  49326. extra: 1301/1121,
  49327. bottom: 129/1430
  49328. }
  49329. },
  49330. mouth: {
  49331. height: math.unit(1.464, "feet"),
  49332. name: "Mouth",
  49333. image: {
  49334. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49335. }
  49336. },
  49337. },
  49338. [
  49339. {
  49340. name: "Small",
  49341. height: math.unit(8, "feet"),
  49342. default: true
  49343. },
  49344. {
  49345. name: "Normal",
  49346. height: math.unit(15, "feet")
  49347. },
  49348. {
  49349. name: "Macro",
  49350. height: math.unit(90, "feet")
  49351. },
  49352. ]
  49353. ))
  49354. characterMakers.push(() => makeCharacter(
  49355. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49356. {
  49357. front: {
  49358. height: math.unit(7 + 4/12, "feet"),
  49359. weight: math.unit(252, "lb"),
  49360. name: "Front",
  49361. image: {
  49362. source: "./media/characters/bandel/front.svg",
  49363. extra: 1946/1775,
  49364. bottom: 26/1972
  49365. }
  49366. },
  49367. back: {
  49368. height: math.unit(7 + 4/12, "feet"),
  49369. weight: math.unit(252, "lb"),
  49370. name: "Back",
  49371. image: {
  49372. source: "./media/characters/bandel/back.svg",
  49373. extra: 1940/1770,
  49374. bottom: 25/1965
  49375. }
  49376. },
  49377. maw: {
  49378. height: math.unit(2.15, "feet"),
  49379. name: "Maw",
  49380. image: {
  49381. source: "./media/characters/bandel/maw.svg"
  49382. }
  49383. },
  49384. stomach: {
  49385. height: math.unit(1.95, "feet"),
  49386. name: "Stomach",
  49387. image: {
  49388. source: "./media/characters/bandel/stomach.svg"
  49389. }
  49390. },
  49391. },
  49392. [
  49393. {
  49394. name: "Normal",
  49395. height: math.unit(7 + 4/12, "feet"),
  49396. default: true
  49397. },
  49398. ]
  49399. ))
  49400. characterMakers.push(() => makeCharacter(
  49401. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49402. {
  49403. front: {
  49404. height: math.unit(10 + 5/12, "feet"),
  49405. weight: math.unit(773.5, "kg"),
  49406. name: "Front",
  49407. image: {
  49408. source: "./media/characters/zed/front.svg",
  49409. extra: 987/941,
  49410. bottom: 52/1039
  49411. }
  49412. },
  49413. },
  49414. [
  49415. {
  49416. name: "Short",
  49417. height: math.unit(5 + 4/12, "feet")
  49418. },
  49419. {
  49420. name: "Average",
  49421. height: math.unit(10 + 5/12, "feet"),
  49422. default: true
  49423. },
  49424. {
  49425. name: "Mini-Macro",
  49426. height: math.unit(24 + 9/12, "feet")
  49427. },
  49428. {
  49429. name: "Macro",
  49430. height: math.unit(249, "feet")
  49431. },
  49432. {
  49433. name: "Mega-Macro",
  49434. height: math.unit(12490, "feet")
  49435. },
  49436. {
  49437. name: "Giga-Macro",
  49438. height: math.unit(24.9, "miles")
  49439. },
  49440. {
  49441. name: "Tera-Macro",
  49442. height: math.unit(24900, "miles")
  49443. },
  49444. {
  49445. name: "Cosmic Scale",
  49446. height: math.unit(38.9, "lightyears")
  49447. },
  49448. {
  49449. name: "Universal Scale",
  49450. height: math.unit(138e12, "lightyears")
  49451. },
  49452. ]
  49453. ))
  49454. characterMakers.push(() => makeCharacter(
  49455. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49456. {
  49457. front: {
  49458. height: math.unit(1561, "inches"),
  49459. name: "Front",
  49460. image: {
  49461. source: "./media/characters/ivan/front.svg",
  49462. extra: 1126/1071,
  49463. bottom: 26/1152
  49464. }
  49465. },
  49466. back: {
  49467. height: math.unit(1561, "inches"),
  49468. name: "Back",
  49469. image: {
  49470. source: "./media/characters/ivan/back.svg",
  49471. extra: 1134/1079,
  49472. bottom: 30/1164
  49473. }
  49474. },
  49475. },
  49476. [
  49477. {
  49478. name: "Normal",
  49479. height: math.unit(1561, "inches"),
  49480. default: true
  49481. },
  49482. ]
  49483. ))
  49484. characterMakers.push(() => makeCharacter(
  49485. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49486. {
  49487. front: {
  49488. height: math.unit(5 + 7/12, "feet"),
  49489. weight: math.unit(150, "lb"),
  49490. name: "Front",
  49491. image: {
  49492. source: "./media/characters/robin-arctic-hare/front.svg",
  49493. extra: 1148/974,
  49494. bottom: 20/1168
  49495. }
  49496. },
  49497. },
  49498. [
  49499. {
  49500. name: "Normal",
  49501. height: math.unit(5 + 7/12, "feet"),
  49502. default: true
  49503. },
  49504. ]
  49505. ))
  49506. characterMakers.push(() => makeCharacter(
  49507. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49508. {
  49509. side: {
  49510. height: math.unit(5, "feet"),
  49511. name: "Side",
  49512. image: {
  49513. source: "./media/characters/birch/side.svg",
  49514. extra: 985/796,
  49515. bottom: 111/1096
  49516. }
  49517. },
  49518. },
  49519. [
  49520. {
  49521. name: "Normal",
  49522. height: math.unit(5, "feet"),
  49523. default: true
  49524. },
  49525. ]
  49526. ))
  49527. characterMakers.push(() => makeCharacter(
  49528. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49529. {
  49530. front: {
  49531. height: math.unit(4, "feet"),
  49532. name: "Front",
  49533. image: {
  49534. source: "./media/characters/rasp/front.svg",
  49535. extra: 561/478,
  49536. bottom: 74/635
  49537. }
  49538. },
  49539. },
  49540. [
  49541. {
  49542. name: "Normal",
  49543. height: math.unit(4, "feet"),
  49544. default: true
  49545. },
  49546. ]
  49547. ))
  49548. characterMakers.push(() => makeCharacter(
  49549. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49550. {
  49551. front: {
  49552. height: math.unit(4 + 6/12, "feet"),
  49553. name: "Front",
  49554. image: {
  49555. source: "./media/characters/agatha/front.svg",
  49556. extra: 947/933,
  49557. bottom: 42/989
  49558. }
  49559. },
  49560. back: {
  49561. height: math.unit(4 + 6/12, "feet"),
  49562. name: "Back",
  49563. image: {
  49564. source: "./media/characters/agatha/back.svg",
  49565. extra: 935/922,
  49566. bottom: 48/983
  49567. }
  49568. },
  49569. },
  49570. [
  49571. {
  49572. name: "Normal",
  49573. height: math.unit(4 + 6 /12, "feet"),
  49574. default: true
  49575. },
  49576. {
  49577. name: "Max Size",
  49578. height: math.unit(500, "feet")
  49579. },
  49580. ]
  49581. ))
  49582. characterMakers.push(() => makeCharacter(
  49583. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49584. {
  49585. side: {
  49586. height: math.unit(30, "feet"),
  49587. name: "Side",
  49588. image: {
  49589. source: "./media/characters/roggy/side.svg",
  49590. extra: 909/643,
  49591. bottom: 63/972
  49592. }
  49593. },
  49594. lounging: {
  49595. height: math.unit(20, "feet"),
  49596. name: "Lounging",
  49597. image: {
  49598. source: "./media/characters/roggy/lounging.svg",
  49599. extra: 643/479,
  49600. bottom: 145/788
  49601. }
  49602. },
  49603. handpaw: {
  49604. height: math.unit(13.1, "feet"),
  49605. name: "Handpaw",
  49606. image: {
  49607. source: "./media/characters/roggy/handpaw.svg"
  49608. }
  49609. },
  49610. footpaw: {
  49611. height: math.unit(15.8, "feet"),
  49612. name: "Footpaw",
  49613. image: {
  49614. source: "./media/characters/roggy/footpaw.svg"
  49615. }
  49616. },
  49617. },
  49618. [
  49619. {
  49620. name: "Menacing",
  49621. height: math.unit(30, "feet"),
  49622. default: true
  49623. },
  49624. ]
  49625. ))
  49626. characterMakers.push(() => makeCharacter(
  49627. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49628. {
  49629. front: {
  49630. height: math.unit(5 + 7/12, "feet"),
  49631. weight: math.unit(135, "lb"),
  49632. name: "Front",
  49633. image: {
  49634. source: "./media/characters/naomi/front.svg",
  49635. extra: 1209/1154,
  49636. bottom: 129/1338
  49637. }
  49638. },
  49639. back: {
  49640. height: math.unit(5 + 7/12, "feet"),
  49641. weight: math.unit(135, "lb"),
  49642. name: "Back",
  49643. image: {
  49644. source: "./media/characters/naomi/back.svg",
  49645. extra: 1252/1190,
  49646. bottom: 23/1275
  49647. }
  49648. },
  49649. },
  49650. [
  49651. {
  49652. name: "Normal",
  49653. height: math.unit(5 + 7 /12, "feet"),
  49654. default: true
  49655. },
  49656. ]
  49657. ))
  49658. characterMakers.push(() => makeCharacter(
  49659. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49660. {
  49661. side: {
  49662. height: math.unit(35, "meters"),
  49663. name: "Side",
  49664. image: {
  49665. source: "./media/characters/kimpi/side.svg",
  49666. extra: 419/382,
  49667. bottom: 63/482
  49668. }
  49669. },
  49670. hand: {
  49671. height: math.unit(8.96, "meters"),
  49672. name: "Hand",
  49673. image: {
  49674. source: "./media/characters/kimpi/hand.svg"
  49675. }
  49676. },
  49677. },
  49678. [
  49679. {
  49680. name: "Normal",
  49681. height: math.unit(35, "meters"),
  49682. default: true
  49683. },
  49684. ]
  49685. ))
  49686. characterMakers.push(() => makeCharacter(
  49687. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49688. {
  49689. front: {
  49690. height: math.unit(4 + 4/12, "feet"),
  49691. name: "Front",
  49692. image: {
  49693. source: "./media/characters/pepper-purrloin/front.svg",
  49694. extra: 1141/1024,
  49695. bottom: 21/1162
  49696. }
  49697. },
  49698. },
  49699. [
  49700. {
  49701. name: "Normal",
  49702. height: math.unit(4 + 4/12, "feet"),
  49703. default: true
  49704. },
  49705. ]
  49706. ))
  49707. characterMakers.push(() => makeCharacter(
  49708. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49709. {
  49710. front: {
  49711. height: math.unit(6 + 2/12, "feet"),
  49712. name: "Front",
  49713. image: {
  49714. source: "./media/characters/raphael/front.svg",
  49715. extra: 1101/962,
  49716. bottom: 59/1160
  49717. }
  49718. },
  49719. },
  49720. [
  49721. {
  49722. name: "Normal",
  49723. height: math.unit(6 + 2/12, "feet"),
  49724. default: true
  49725. },
  49726. ]
  49727. ))
  49728. characterMakers.push(() => makeCharacter(
  49729. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49730. {
  49731. front: {
  49732. height: math.unit(6, "feet"),
  49733. weight: math.unit(150, "lb"),
  49734. name: "Front",
  49735. image: {
  49736. source: "./media/characters/victor-williams/front.svg",
  49737. extra: 1894/1825,
  49738. bottom: 67/1961
  49739. }
  49740. },
  49741. },
  49742. [
  49743. {
  49744. name: "Normal",
  49745. height: math.unit(6, "feet"),
  49746. default: true
  49747. },
  49748. ]
  49749. ))
  49750. characterMakers.push(() => makeCharacter(
  49751. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49752. {
  49753. front: {
  49754. height: math.unit(5 + 8/12, "feet"),
  49755. weight: math.unit(150, "lb"),
  49756. name: "Front",
  49757. image: {
  49758. source: "./media/characters/rachel/front.svg",
  49759. extra: 1902/1787,
  49760. bottom: 46/1948
  49761. }
  49762. },
  49763. },
  49764. [
  49765. {
  49766. name: "Base Height",
  49767. height: math.unit(5 + 8/12, "feet"),
  49768. default: true
  49769. },
  49770. {
  49771. name: "Macro",
  49772. height: math.unit(200, "feet")
  49773. },
  49774. {
  49775. name: "Mega Macro",
  49776. height: math.unit(1, "mile")
  49777. },
  49778. {
  49779. name: "Giga Macro",
  49780. height: math.unit(1500, "miles")
  49781. },
  49782. {
  49783. name: "Tera Macro",
  49784. height: math.unit(8000, "miles")
  49785. },
  49786. {
  49787. name: "Tera Macro+",
  49788. height: math.unit(2e5, "miles")
  49789. },
  49790. ]
  49791. ))
  49792. characterMakers.push(() => makeCharacter(
  49793. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49794. {
  49795. front: {
  49796. height: math.unit(6.5, "feet"),
  49797. name: "Front",
  49798. image: {
  49799. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49800. extra: 860/819,
  49801. bottom: 307/1167
  49802. }
  49803. },
  49804. back: {
  49805. height: math.unit(6.5, "feet"),
  49806. name: "Back",
  49807. image: {
  49808. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49809. extra: 880/837,
  49810. bottom: 395/1275
  49811. }
  49812. },
  49813. sleeping: {
  49814. height: math.unit(2.79, "feet"),
  49815. name: "Sleeping",
  49816. image: {
  49817. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49818. extra: 465/383,
  49819. bottom: 263/728
  49820. }
  49821. },
  49822. maw: {
  49823. height: math.unit(2.52, "feet"),
  49824. name: "Maw",
  49825. image: {
  49826. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49827. }
  49828. },
  49829. },
  49830. [
  49831. {
  49832. name: "Normal",
  49833. height: math.unit(6.5, "feet"),
  49834. default: true
  49835. },
  49836. ]
  49837. ))
  49838. characterMakers.push(() => makeCharacter(
  49839. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49840. {
  49841. front: {
  49842. height: math.unit(5, "feet"),
  49843. name: "Front",
  49844. image: {
  49845. source: "./media/characters/nova-nerium/front.svg",
  49846. extra: 1548/1392,
  49847. bottom: 374/1922
  49848. }
  49849. },
  49850. back: {
  49851. height: math.unit(5, "feet"),
  49852. name: "Back",
  49853. image: {
  49854. source: "./media/characters/nova-nerium/back.svg",
  49855. extra: 1658/1468,
  49856. bottom: 257/1915
  49857. }
  49858. },
  49859. },
  49860. [
  49861. {
  49862. name: "Normal",
  49863. height: math.unit(5, "feet"),
  49864. default: true
  49865. },
  49866. ]
  49867. ))
  49868. characterMakers.push(() => makeCharacter(
  49869. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49870. {
  49871. front: {
  49872. height: math.unit(5 + 4/12, "feet"),
  49873. name: "Front",
  49874. image: {
  49875. source: "./media/characters/ashe-pyriph/front.svg",
  49876. extra: 1935/1747,
  49877. bottom: 60/1995
  49878. }
  49879. },
  49880. },
  49881. [
  49882. {
  49883. name: "Normal",
  49884. height: math.unit(5 + 4/12, "feet"),
  49885. default: true
  49886. },
  49887. ]
  49888. ))
  49889. characterMakers.push(() => makeCharacter(
  49890. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49891. {
  49892. front: {
  49893. height: math.unit(8.7, "feet"),
  49894. name: "Front",
  49895. image: {
  49896. source: "./media/characters/flicker-wisp/front.svg",
  49897. extra: 1835/1613,
  49898. bottom: 449/2284
  49899. }
  49900. },
  49901. side: {
  49902. height: math.unit(8.7, "feet"),
  49903. name: "Side",
  49904. image: {
  49905. source: "./media/characters/flicker-wisp/side.svg",
  49906. extra: 1841/1642,
  49907. bottom: 336/2177
  49908. },
  49909. default: true
  49910. },
  49911. maw: {
  49912. height: math.unit(3.35, "feet"),
  49913. name: "Maw",
  49914. image: {
  49915. source: "./media/characters/flicker-wisp/maw.svg",
  49916. extra: 2338/1506,
  49917. bottom: 0/2338
  49918. }
  49919. },
  49920. ovipositor: {
  49921. height: math.unit(4.95, "feet"),
  49922. name: "Ovipositor",
  49923. image: {
  49924. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49925. }
  49926. },
  49927. egg: {
  49928. height: math.unit(0.385, "feet"),
  49929. weight: math.unit(2, "lb"),
  49930. name: "Egg",
  49931. image: {
  49932. source: "./media/characters/flicker-wisp/egg.svg"
  49933. }
  49934. },
  49935. },
  49936. [
  49937. {
  49938. name: "Normal",
  49939. height: math.unit(8.7, "feet"),
  49940. default: true
  49941. },
  49942. ]
  49943. ))
  49944. characterMakers.push(() => makeCharacter(
  49945. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49946. {
  49947. side: {
  49948. height: math.unit(11, "feet"),
  49949. name: "Side",
  49950. image: {
  49951. source: "./media/characters/faefnul/side.svg",
  49952. extra: 1100/1007,
  49953. bottom: 0/1100
  49954. }
  49955. },
  49956. },
  49957. [
  49958. {
  49959. name: "Normal",
  49960. height: math.unit(11, "feet"),
  49961. default: true
  49962. },
  49963. ]
  49964. ))
  49965. characterMakers.push(() => makeCharacter(
  49966. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49967. {
  49968. front: {
  49969. height: math.unit(6 + 2/12, "feet"),
  49970. name: "Front",
  49971. image: {
  49972. source: "./media/characters/shady/front.svg",
  49973. extra: 502/461,
  49974. bottom: 9/511
  49975. }
  49976. },
  49977. kneeling: {
  49978. height: math.unit(4.6, "feet"),
  49979. name: "Kneeling",
  49980. image: {
  49981. source: "./media/characters/shady/kneeling.svg",
  49982. extra: 1328/1219,
  49983. bottom: 117/1445
  49984. }
  49985. },
  49986. maw: {
  49987. height: math.unit(2, "feet"),
  49988. name: "Maw",
  49989. image: {
  49990. source: "./media/characters/shady/maw.svg"
  49991. }
  49992. },
  49993. },
  49994. [
  49995. {
  49996. name: "Nano",
  49997. height: math.unit(1, "mm")
  49998. },
  49999. {
  50000. name: "Micro",
  50001. height: math.unit(12, "mm")
  50002. },
  50003. {
  50004. name: "Tiny",
  50005. height: math.unit(3, "inches")
  50006. },
  50007. {
  50008. name: "Normal",
  50009. height: math.unit(6 + 2/12, "feet"),
  50010. default: true
  50011. },
  50012. {
  50013. name: "Big",
  50014. height: math.unit(15, "feet")
  50015. },
  50016. {
  50017. name: "Macro",
  50018. height: math.unit(150, "feet")
  50019. },
  50020. {
  50021. name: "Titanic",
  50022. height: math.unit(500, "feet")
  50023. },
  50024. ]
  50025. ))
  50026. characterMakers.push(() => makeCharacter(
  50027. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50028. {
  50029. front: {
  50030. height: math.unit(12, "feet"),
  50031. name: "Front",
  50032. image: {
  50033. source: "./media/characters/fenrir/front.svg",
  50034. extra: 968/875,
  50035. bottom: 22/990
  50036. }
  50037. },
  50038. },
  50039. [
  50040. {
  50041. name: "Big",
  50042. height: math.unit(12, "feet"),
  50043. default: true
  50044. },
  50045. ]
  50046. ))
  50047. characterMakers.push(() => makeCharacter(
  50048. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50049. {
  50050. front: {
  50051. height: math.unit(5 + 4/12, "feet"),
  50052. name: "Front",
  50053. image: {
  50054. source: "./media/characters/makar/front.svg",
  50055. extra: 1181/1112,
  50056. bottom: 78/1259
  50057. }
  50058. },
  50059. },
  50060. [
  50061. {
  50062. name: "Normal",
  50063. height: math.unit(5 + 4/12, "feet"),
  50064. default: true
  50065. },
  50066. ]
  50067. ))
  50068. characterMakers.push(() => makeCharacter(
  50069. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50070. {
  50071. front: {
  50072. height: math.unit(5 + 7/12, "feet"),
  50073. name: "Front",
  50074. image: {
  50075. source: "./media/characters/callow/front.svg",
  50076. extra: 1482/1304,
  50077. bottom: 23/1505
  50078. }
  50079. },
  50080. back: {
  50081. height: math.unit(5 + 7/12, "feet"),
  50082. name: "Back",
  50083. image: {
  50084. source: "./media/characters/callow/back.svg",
  50085. extra: 1484/1296,
  50086. bottom: 25/1509
  50087. }
  50088. },
  50089. },
  50090. [
  50091. {
  50092. name: "Micro",
  50093. height: math.unit(3, "inches"),
  50094. default: true
  50095. },
  50096. {
  50097. name: "Normal",
  50098. height: math.unit(5 + 7/12, "feet")
  50099. },
  50100. ]
  50101. ))
  50102. characterMakers.push(() => makeCharacter(
  50103. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50104. {
  50105. front: {
  50106. height: math.unit(6 + 2/12, "feet"),
  50107. name: "Front",
  50108. image: {
  50109. source: "./media/characters/natel/front.svg",
  50110. extra: 1833/1692,
  50111. bottom: 166/1999
  50112. }
  50113. },
  50114. },
  50115. [
  50116. {
  50117. name: "Normal",
  50118. height: math.unit(6 + 2/12, "feet"),
  50119. default: true
  50120. },
  50121. ]
  50122. ))
  50123. characterMakers.push(() => makeCharacter(
  50124. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50125. {
  50126. front: {
  50127. height: math.unit(1.75, "meters"),
  50128. name: "Front",
  50129. image: {
  50130. source: "./media/characters/misu/front.svg",
  50131. extra: 1690/1558,
  50132. bottom: 234/1924
  50133. }
  50134. },
  50135. back: {
  50136. height: math.unit(1.75, "meters"),
  50137. name: "Back",
  50138. image: {
  50139. source: "./media/characters/misu/back.svg",
  50140. extra: 1762/1618,
  50141. bottom: 146/1908
  50142. }
  50143. },
  50144. frontNude: {
  50145. height: math.unit(1.75, "meters"),
  50146. name: "Front (Nude)",
  50147. image: {
  50148. source: "./media/characters/misu/front-nude.svg",
  50149. extra: 1690/1558,
  50150. bottom: 234/1924
  50151. }
  50152. },
  50153. backNude: {
  50154. height: math.unit(1.75, "meters"),
  50155. name: "Back (Nude)",
  50156. image: {
  50157. source: "./media/characters/misu/back-nude.svg",
  50158. extra: 1762/1618,
  50159. bottom: 146/1908
  50160. }
  50161. },
  50162. frontErect: {
  50163. height: math.unit(1.75, "meters"),
  50164. name: "Front (Erect)",
  50165. image: {
  50166. source: "./media/characters/misu/front-erect.svg",
  50167. extra: 1690/1558,
  50168. bottom: 234/1924
  50169. }
  50170. },
  50171. maw: {
  50172. height: math.unit(0.47, "meters"),
  50173. name: "Maw",
  50174. image: {
  50175. source: "./media/characters/misu/maw.svg"
  50176. }
  50177. },
  50178. head: {
  50179. height: math.unit(0.35, "meters"),
  50180. name: "Head",
  50181. image: {
  50182. source: "./media/characters/misu/head.svg"
  50183. }
  50184. },
  50185. rear: {
  50186. height: math.unit(0.47, "meters"),
  50187. name: "Rear",
  50188. image: {
  50189. source: "./media/characters/misu/rear.svg"
  50190. }
  50191. },
  50192. },
  50193. [
  50194. {
  50195. name: "Normal",
  50196. height: math.unit(1.75, "meters")
  50197. },
  50198. {
  50199. name: "Not good for the people",
  50200. height: math.unit(42, "meters")
  50201. },
  50202. {
  50203. name: "Not good for the neighborhood",
  50204. height: math.unit(135, "meters")
  50205. },
  50206. {
  50207. name: "Bit bigger problem",
  50208. height: math.unit(380, "meters"),
  50209. default: true
  50210. },
  50211. {
  50212. name: "Not good for the city",
  50213. height: math.unit(1.5, "km")
  50214. },
  50215. {
  50216. name: "Not good for the county",
  50217. height: math.unit(5.5, "km")
  50218. },
  50219. {
  50220. name: "Not good for the state",
  50221. height: math.unit(25, "km")
  50222. },
  50223. {
  50224. name: "Not good for the country",
  50225. height: math.unit(125, "km")
  50226. },
  50227. {
  50228. name: "Not good for the continent",
  50229. height: math.unit(2100, "km")
  50230. },
  50231. {
  50232. name: "Not good for the planet",
  50233. height: math.unit(35000, "km")
  50234. },
  50235. {
  50236. name: "Just no",
  50237. height: math.unit(8.5e18, "km")
  50238. },
  50239. ]
  50240. ))
  50241. characterMakers.push(() => makeCharacter(
  50242. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50243. {
  50244. front: {
  50245. height: math.unit(6.5, "feet"),
  50246. name: "Front",
  50247. image: {
  50248. source: "./media/characters/poppy/front.svg",
  50249. extra: 1878/1812,
  50250. bottom: 43/1921
  50251. }
  50252. },
  50253. feet: {
  50254. height: math.unit(1.06, "feet"),
  50255. name: "Feet",
  50256. image: {
  50257. source: "./media/characters/poppy/feet.svg",
  50258. extra: 1083/1083,
  50259. bottom: 87/1170
  50260. }
  50261. },
  50262. },
  50263. [
  50264. {
  50265. name: "Human",
  50266. height: math.unit(6.5, "feet")
  50267. },
  50268. {
  50269. name: "Default",
  50270. height: math.unit(300, "feet"),
  50271. default: true
  50272. },
  50273. {
  50274. name: "Huge",
  50275. height: math.unit(850, "feet")
  50276. },
  50277. {
  50278. name: "Mega",
  50279. height: math.unit(8000, "feet")
  50280. },
  50281. {
  50282. name: "Giga",
  50283. height: math.unit(300, "miles")
  50284. },
  50285. ]
  50286. ))
  50287. characterMakers.push(() => makeCharacter(
  50288. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50289. {
  50290. bipedal: {
  50291. height: math.unit(7, "feet"),
  50292. name: "Bipedal",
  50293. image: {
  50294. source: "./media/characters/zener/bipedal.svg",
  50295. extra: 874/805,
  50296. bottom: 109/983
  50297. }
  50298. },
  50299. quadrupedal: {
  50300. height: math.unit(4.64, "feet"),
  50301. name: "Quadrupedal",
  50302. image: {
  50303. source: "./media/characters/zener/quadrupedal.svg",
  50304. extra: 638/507,
  50305. bottom: 190/828
  50306. }
  50307. },
  50308. cock: {
  50309. height: math.unit(18, "inches"),
  50310. name: "Cock",
  50311. image: {
  50312. source: "./media/characters/zener/cock.svg"
  50313. }
  50314. },
  50315. },
  50316. [
  50317. {
  50318. name: "Normal",
  50319. height: math.unit(7, "feet"),
  50320. default: true
  50321. },
  50322. ]
  50323. ))
  50324. characterMakers.push(() => makeCharacter(
  50325. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50326. {
  50327. nude: {
  50328. height: math.unit(5 + 6/12, "feet"),
  50329. name: "Nude",
  50330. image: {
  50331. source: "./media/characters/charlie-dog/nude.svg",
  50332. extra: 768/734,
  50333. bottom: 26/794
  50334. }
  50335. },
  50336. dressed: {
  50337. height: math.unit(5 + 6/12, "feet"),
  50338. name: "Dressed",
  50339. image: {
  50340. source: "./media/characters/charlie-dog/dressed.svg",
  50341. extra: 768/734,
  50342. bottom: 26/794
  50343. }
  50344. },
  50345. },
  50346. [
  50347. {
  50348. name: "Normal",
  50349. height: math.unit(5 + 6/12, "feet"),
  50350. default: true
  50351. },
  50352. ]
  50353. ))
  50354. characterMakers.push(() => makeCharacter(
  50355. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50356. {
  50357. front: {
  50358. height: math.unit(6 + 4/12, "feet"),
  50359. name: "Front",
  50360. image: {
  50361. source: "./media/characters/ir'istrasz/front.svg",
  50362. extra: 1014/977,
  50363. bottom: 65/1079
  50364. }
  50365. },
  50366. back: {
  50367. height: math.unit(6 + 4/12, "feet"),
  50368. name: "Back",
  50369. image: {
  50370. source: "./media/characters/ir'istrasz/back.svg",
  50371. extra: 1024/992,
  50372. bottom: 34/1058
  50373. }
  50374. },
  50375. },
  50376. [
  50377. {
  50378. name: "Normal",
  50379. height: math.unit(6 + 4/12, "feet"),
  50380. default: true
  50381. },
  50382. ]
  50383. ))
  50384. characterMakers.push(() => makeCharacter(
  50385. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50386. {
  50387. front: {
  50388. height: math.unit(5 + 8/12, "feet"),
  50389. name: "Front",
  50390. image: {
  50391. source: "./media/characters/dee-ditto/front.svg",
  50392. extra: 1874/1785,
  50393. bottom: 68/1942
  50394. }
  50395. },
  50396. back: {
  50397. height: math.unit(5 + 8/12, "feet"),
  50398. name: "Back",
  50399. image: {
  50400. source: "./media/characters/dee-ditto/back.svg",
  50401. extra: 1870/1783,
  50402. bottom: 77/1947
  50403. }
  50404. },
  50405. },
  50406. [
  50407. {
  50408. name: "Normal",
  50409. height: math.unit(5 + 8/12, "feet"),
  50410. default: true
  50411. },
  50412. ]
  50413. ))
  50414. characterMakers.push(() => makeCharacter(
  50415. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50416. {
  50417. front: {
  50418. height: math.unit(7 + 6/12, "feet"),
  50419. name: "Front",
  50420. image: {
  50421. source: "./media/characters/fey/front.svg",
  50422. extra: 995/979,
  50423. bottom: 30/1025
  50424. }
  50425. },
  50426. back: {
  50427. height: math.unit(7 + 6/12, "feet"),
  50428. name: "Back",
  50429. image: {
  50430. source: "./media/characters/fey/back.svg",
  50431. extra: 1079/1008,
  50432. bottom: 5/1084
  50433. }
  50434. },
  50435. dressed: {
  50436. height: math.unit(7 + 6/12, "feet"),
  50437. name: "Dressed",
  50438. image: {
  50439. source: "./media/characters/fey/dressed.svg",
  50440. extra: 995/979,
  50441. bottom: 30/1025
  50442. }
  50443. },
  50444. },
  50445. [
  50446. {
  50447. name: "Normal",
  50448. height: math.unit(7 + 6/12, "feet"),
  50449. default: true
  50450. },
  50451. ]
  50452. ))
  50453. characterMakers.push(() => makeCharacter(
  50454. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50455. {
  50456. standing: {
  50457. height: math.unit(17, "feet"),
  50458. name: "Standing",
  50459. image: {
  50460. source: "./media/characters/aster/standing.svg",
  50461. extra: 1798/1598,
  50462. bottom: 117/1915
  50463. }
  50464. },
  50465. },
  50466. [
  50467. {
  50468. name: "Normal",
  50469. height: math.unit(17, "feet"),
  50470. default: true
  50471. },
  50472. {
  50473. name: "Homewrecker",
  50474. height: math.unit(95, "feet")
  50475. },
  50476. {
  50477. name: "Planet Devourer",
  50478. height: math.unit(1008000, "miles")
  50479. },
  50480. ]
  50481. ))
  50482. characterMakers.push(() => makeCharacter(
  50483. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50484. {
  50485. front: {
  50486. height: math.unit(6 + 5/12, "feet"),
  50487. weight: math.unit(265, "lb"),
  50488. name: "Front",
  50489. image: {
  50490. source: "./media/characters/devon-childs/front.svg",
  50491. extra: 1795/1721,
  50492. bottom: 41/1836
  50493. }
  50494. },
  50495. side: {
  50496. height: math.unit(6 + 5/12, "feet"),
  50497. weight: math.unit(265, "lb"),
  50498. name: "Side",
  50499. image: {
  50500. source: "./media/characters/devon-childs/side.svg",
  50501. extra: 1812/1738,
  50502. bottom: 30/1842
  50503. }
  50504. },
  50505. back: {
  50506. height: math.unit(6 + 5/12, "feet"),
  50507. weight: math.unit(265, "lb"),
  50508. name: "Back",
  50509. image: {
  50510. source: "./media/characters/devon-childs/back.svg",
  50511. extra: 1808/1735,
  50512. bottom: 23/1831
  50513. }
  50514. },
  50515. hand: {
  50516. height: math.unit(1.464, "feet"),
  50517. name: "Hand",
  50518. image: {
  50519. source: "./media/characters/devon-childs/hand.svg"
  50520. }
  50521. },
  50522. foot: {
  50523. height: math.unit(1.6, "feet"),
  50524. name: "Foot",
  50525. image: {
  50526. source: "./media/characters/devon-childs/foot.svg"
  50527. }
  50528. },
  50529. },
  50530. [
  50531. {
  50532. name: "Micro",
  50533. height: math.unit(7, "cm")
  50534. },
  50535. {
  50536. name: "Normal",
  50537. height: math.unit(6 + 5/12, "feet"),
  50538. default: true
  50539. },
  50540. {
  50541. name: "Macro",
  50542. height: math.unit(154, "feet")
  50543. },
  50544. ]
  50545. ))
  50546. characterMakers.push(() => makeCharacter(
  50547. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50548. {
  50549. front: {
  50550. height: math.unit(6, "feet"),
  50551. weight: math.unit(180, "lb"),
  50552. name: "Front",
  50553. image: {
  50554. source: "./media/characters/lydemox-vir/front.svg",
  50555. extra: 1632/1435,
  50556. bottom: 58/1690
  50557. }
  50558. },
  50559. frontSFW: {
  50560. height: math.unit(6, "feet"),
  50561. weight: math.unit(180, "lb"),
  50562. name: "Front (SFW)",
  50563. image: {
  50564. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50565. extra: 1632/1435,
  50566. bottom: 58/1690
  50567. }
  50568. },
  50569. back: {
  50570. height: math.unit(6, "feet"),
  50571. weight: math.unit(180, "lb"),
  50572. name: "Back",
  50573. image: {
  50574. source: "./media/characters/lydemox-vir/back.svg",
  50575. extra: 1593/1408,
  50576. bottom: 31/1624
  50577. }
  50578. },
  50579. paw: {
  50580. height: math.unit(1.85, "feet"),
  50581. name: "Paw",
  50582. image: {
  50583. source: "./media/characters/lydemox-vir/paw.svg"
  50584. }
  50585. },
  50586. dick: {
  50587. height: math.unit(1.8, "feet"),
  50588. name: "Dick",
  50589. image: {
  50590. source: "./media/characters/lydemox-vir/dick.svg"
  50591. }
  50592. },
  50593. },
  50594. [
  50595. {
  50596. name: "Macro",
  50597. height: math.unit(100, "feet"),
  50598. default: true
  50599. },
  50600. {
  50601. name: "Teramacro",
  50602. height: math.unit(1, "earth")
  50603. },
  50604. {
  50605. name: "Planetary",
  50606. height: math.unit(20, "earths")
  50607. },
  50608. ]
  50609. ))
  50610. characterMakers.push(() => makeCharacter(
  50611. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50612. {
  50613. front: {
  50614. height: math.unit(15 + 8/12, "feet"),
  50615. weight: math.unit(1237, "kg"),
  50616. name: "Front",
  50617. image: {
  50618. source: "./media/characters/mia/front.svg",
  50619. extra: 1573/1446,
  50620. bottom: 58/1631
  50621. }
  50622. },
  50623. },
  50624. [
  50625. {
  50626. name: "Small",
  50627. height: math.unit(9 + 5/12, "feet")
  50628. },
  50629. {
  50630. name: "Normal",
  50631. height: math.unit(15 + 8/12, "feet"),
  50632. default: true
  50633. },
  50634. ]
  50635. ))
  50636. characterMakers.push(() => makeCharacter(
  50637. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50638. {
  50639. front: {
  50640. height: math.unit(10 + 6/12, "feet"),
  50641. weight: math.unit(1.3, "tons"),
  50642. name: "Front",
  50643. image: {
  50644. source: "./media/characters/mr-graves/front.svg",
  50645. extra: 1779/1695,
  50646. bottom: 198/1977
  50647. }
  50648. },
  50649. },
  50650. [
  50651. {
  50652. name: "Normal",
  50653. height: math.unit(10 + 6 /12, "feet"),
  50654. default: true
  50655. },
  50656. ]
  50657. ))
  50658. characterMakers.push(() => makeCharacter(
  50659. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50660. {
  50661. dressedFront: {
  50662. height: math.unit(5 + 8/12, "feet"),
  50663. weight: math.unit(125, "lb"),
  50664. name: "Dressed (Front)",
  50665. image: {
  50666. source: "./media/characters/jess/dressed-front.svg",
  50667. extra: 1176/1152,
  50668. bottom: 42/1218
  50669. }
  50670. },
  50671. dressedSide: {
  50672. height: math.unit(5 + 8/12, "feet"),
  50673. weight: math.unit(125, "lb"),
  50674. name: "Dressed (Side)",
  50675. image: {
  50676. source: "./media/characters/jess/dressed-side.svg",
  50677. extra: 1204/1190,
  50678. bottom: 6/1210
  50679. }
  50680. },
  50681. nudeFront: {
  50682. height: math.unit(5 + 8/12, "feet"),
  50683. weight: math.unit(125, "lb"),
  50684. name: "Nude (Front)",
  50685. image: {
  50686. source: "./media/characters/jess/nude-front.svg",
  50687. extra: 1176/1152,
  50688. bottom: 42/1218
  50689. }
  50690. },
  50691. nudeSide: {
  50692. height: math.unit(5 + 8/12, "feet"),
  50693. weight: math.unit(125, "lb"),
  50694. name: "Nude (Side)",
  50695. image: {
  50696. source: "./media/characters/jess/nude-side.svg",
  50697. extra: 1204/1190,
  50698. bottom: 6/1210
  50699. }
  50700. },
  50701. organsFront: {
  50702. height: math.unit(2.83799342105, "feet"),
  50703. name: "Organs (Front)",
  50704. image: {
  50705. source: "./media/characters/jess/organs-front.svg"
  50706. }
  50707. },
  50708. organsSide: {
  50709. height: math.unit(2.64225290474, "feet"),
  50710. name: "Organs (Side)",
  50711. image: {
  50712. source: "./media/characters/jess/organs-side.svg"
  50713. }
  50714. },
  50715. digestiveTractFront: {
  50716. height: math.unit(2.8106580871, "feet"),
  50717. name: "Digestive Tract (Front)",
  50718. image: {
  50719. source: "./media/characters/jess/digestive-tract-front.svg"
  50720. }
  50721. },
  50722. digestiveTractSide: {
  50723. height: math.unit(2.54365045014, "feet"),
  50724. name: "Digestive Tract (Side)",
  50725. image: {
  50726. source: "./media/characters/jess/digestive-tract-side.svg"
  50727. }
  50728. },
  50729. respiratorySystemFront: {
  50730. height: math.unit(1.11196233456, "feet"),
  50731. name: "Respiratory System (Front)",
  50732. image: {
  50733. source: "./media/characters/jess/respiratory-system-front.svg"
  50734. }
  50735. },
  50736. respiratorySystemSide: {
  50737. height: math.unit(0.89327966297, "feet"),
  50738. name: "Respiratory System (Side)",
  50739. image: {
  50740. source: "./media/characters/jess/respiratory-system-side.svg"
  50741. }
  50742. },
  50743. urinaryTractFront: {
  50744. height: math.unit(1.16126356186, "feet"),
  50745. name: "Urinary Tract (Front)",
  50746. image: {
  50747. source: "./media/characters/jess/urinary-tract-front.svg"
  50748. }
  50749. },
  50750. urinaryTractSide: {
  50751. height: math.unit(1.20910039627, "feet"),
  50752. name: "Urinary Tract (Side)",
  50753. image: {
  50754. source: "./media/characters/jess/urinary-tract-side.svg"
  50755. }
  50756. },
  50757. reproductiveOrgansFront: {
  50758. height: math.unit(0.48422591566, "feet"),
  50759. name: "Reproductive Organs (Front)",
  50760. image: {
  50761. source: "./media/characters/jess/reproductive-organs-front.svg"
  50762. }
  50763. },
  50764. reproductiveOrgansSide: {
  50765. height: math.unit(0.61553314481, "feet"),
  50766. name: "Reproductive Organs (Side)",
  50767. image: {
  50768. source: "./media/characters/jess/reproductive-organs-side.svg"
  50769. }
  50770. },
  50771. breastsFront: {
  50772. height: math.unit(0.47690395121, "feet"),
  50773. name: "Breasts (Front)",
  50774. image: {
  50775. source: "./media/characters/jess/breasts-front.svg"
  50776. }
  50777. },
  50778. breastsSide: {
  50779. height: math.unit(0.30556998307, "feet"),
  50780. name: "Breasts (Side)",
  50781. image: {
  50782. source: "./media/characters/jess/breasts-side.svg"
  50783. }
  50784. },
  50785. heartFront: {
  50786. height: math.unit(0.53011022622, "feet"),
  50787. name: "Heart (Front)",
  50788. image: {
  50789. source: "./media/characters/jess/heart-front.svg"
  50790. }
  50791. },
  50792. heartSide: {
  50793. height: math.unit(0.51790695213, "feet"),
  50794. name: "Heart (Side)",
  50795. image: {
  50796. source: "./media/characters/jess/heart-side.svg"
  50797. }
  50798. },
  50799. earsAndNoseFront: {
  50800. height: math.unit(0.29385483995, "feet"),
  50801. name: "Ears and Nose (Front)",
  50802. image: {
  50803. source: "./media/characters/jess/ears-and-nose-front.svg"
  50804. }
  50805. },
  50806. earsAndNoseSide: {
  50807. height: math.unit(0.18109658741, "feet"),
  50808. name: "Ears and Nose (Side)",
  50809. image: {
  50810. source: "./media/characters/jess/ears-and-nose-side.svg"
  50811. }
  50812. },
  50813. },
  50814. [
  50815. {
  50816. name: "Normal",
  50817. height: math.unit(5 + 8/12, "feet"),
  50818. default: true
  50819. },
  50820. ]
  50821. ))
  50822. characterMakers.push(() => makeCharacter(
  50823. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50824. {
  50825. front: {
  50826. height: math.unit(6, "feet"),
  50827. weight: math.unit(6.64467e-7, "grams"),
  50828. name: "Front",
  50829. image: {
  50830. source: "./media/characters/wimpering/front.svg",
  50831. extra: 597/587,
  50832. bottom: 34/631
  50833. }
  50834. },
  50835. },
  50836. [
  50837. {
  50838. name: "Micro",
  50839. height: math.unit(0.4, "mm"),
  50840. default: true
  50841. },
  50842. ]
  50843. ))
  50844. characterMakers.push(() => makeCharacter(
  50845. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50846. {
  50847. front: {
  50848. height: math.unit(5 + 2/12, "feet"),
  50849. weight: math.unit(110, "lb"),
  50850. name: "Front",
  50851. image: {
  50852. source: "./media/characters/keltre/front.svg",
  50853. extra: 1099/1057,
  50854. bottom: 22/1121
  50855. }
  50856. },
  50857. back: {
  50858. height: math.unit(5 + 2/12, "feet"),
  50859. weight: math.unit(110, "lb"),
  50860. name: "Back",
  50861. image: {
  50862. source: "./media/characters/keltre/back.svg",
  50863. extra: 1095/1053,
  50864. bottom: 17/1112
  50865. }
  50866. },
  50867. dressed: {
  50868. height: math.unit(5 + 2/12, "feet"),
  50869. weight: math.unit(110, "lb"),
  50870. name: "Dressed",
  50871. image: {
  50872. source: "./media/characters/keltre/dressed.svg",
  50873. extra: 1099/1057,
  50874. bottom: 22/1121
  50875. }
  50876. },
  50877. winter: {
  50878. height: math.unit(5 + 2/12, "feet"),
  50879. weight: math.unit(110, "lb"),
  50880. name: "Winter",
  50881. image: {
  50882. source: "./media/characters/keltre/winter.svg",
  50883. extra: 1099/1057,
  50884. bottom: 22/1121
  50885. }
  50886. },
  50887. head: {
  50888. height: math.unit(1.61 * 0.86, "feet"),
  50889. name: "Head",
  50890. image: {
  50891. source: "./media/characters/keltre/head.svg",
  50892. extra: 534/421,
  50893. bottom: 0/534
  50894. }
  50895. },
  50896. hand: {
  50897. height: math.unit(1.3 * 0.86, "feet"),
  50898. name: "Hand",
  50899. image: {
  50900. source: "./media/characters/keltre/hand.svg"
  50901. }
  50902. },
  50903. foot: {
  50904. height: math.unit(1.8 * 0.86, "feet"),
  50905. name: "Foot",
  50906. image: {
  50907. source: "./media/characters/keltre/foot.svg"
  50908. }
  50909. },
  50910. },
  50911. [
  50912. {
  50913. name: "Fine",
  50914. height: math.unit(1, "inch")
  50915. },
  50916. {
  50917. name: "Dimnutive",
  50918. height: math.unit(4, "inches")
  50919. },
  50920. {
  50921. name: "Tiny",
  50922. height: math.unit(1, "foot")
  50923. },
  50924. {
  50925. name: "Small",
  50926. height: math.unit(3, "feet")
  50927. },
  50928. {
  50929. name: "Normal",
  50930. height: math.unit(5 + 2/12, "feet"),
  50931. default: true
  50932. },
  50933. ]
  50934. ))
  50935. characterMakers.push(() => makeCharacter(
  50936. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50937. {
  50938. front: {
  50939. height: math.unit(6 + 2/12, "feet"),
  50940. name: "Front",
  50941. image: {
  50942. source: "./media/characters/nox/front.svg",
  50943. extra: 1917/1830,
  50944. bottom: 74/1991
  50945. }
  50946. },
  50947. back: {
  50948. height: math.unit(6 + 2/12, "feet"),
  50949. name: "Back",
  50950. image: {
  50951. source: "./media/characters/nox/back.svg",
  50952. extra: 1896/1815,
  50953. bottom: 21/1917
  50954. }
  50955. },
  50956. head: {
  50957. height: math.unit(1.1, "feet"),
  50958. name: "Head",
  50959. image: {
  50960. source: "./media/characters/nox/head.svg",
  50961. extra: 874/704,
  50962. bottom: 0/874
  50963. }
  50964. },
  50965. tattoo: {
  50966. height: math.unit(0.729, "feet"),
  50967. name: "Tattoo",
  50968. image: {
  50969. source: "./media/characters/nox/tattoo.svg"
  50970. }
  50971. },
  50972. },
  50973. [
  50974. {
  50975. name: "Normal",
  50976. height: math.unit(6 + 2/12, "feet")
  50977. },
  50978. {
  50979. name: "Gigamacro",
  50980. height: math.unit(2, "earths"),
  50981. default: true
  50982. },
  50983. {
  50984. name: "Cosmic",
  50985. height: math.unit(867, "yottameters")
  50986. },
  50987. ]
  50988. ))
  50989. characterMakers.push(() => makeCharacter(
  50990. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50991. {
  50992. front: {
  50993. height: math.unit(6, "feet"),
  50994. weight: math.unit(150, "lb"),
  50995. name: "Front",
  50996. image: {
  50997. source: "./media/characters/caspian/front.svg",
  50998. extra: 1443/1359,
  50999. bottom: 0/1443
  51000. }
  51001. },
  51002. back: {
  51003. height: math.unit(6, "feet"),
  51004. weight: math.unit(150, "lb"),
  51005. name: "Back",
  51006. image: {
  51007. source: "./media/characters/caspian/back.svg",
  51008. extra: 1379/1309,
  51009. bottom: 0/1379
  51010. }
  51011. },
  51012. head: {
  51013. height: math.unit(0.9, "feet"),
  51014. name: "Head",
  51015. image: {
  51016. source: "./media/characters/caspian/head.svg",
  51017. extra: 692/492,
  51018. bottom: 0/692
  51019. }
  51020. },
  51021. headAlt: {
  51022. height: math.unit(0.95, "feet"),
  51023. name: "Head (Alt)",
  51024. image: {
  51025. source: "./media/characters/caspian/head-alt.svg",
  51026. extra: 668/508,
  51027. bottom: 0/668
  51028. }
  51029. },
  51030. hand: {
  51031. height: math.unit(0.8, "feet"),
  51032. name: "Hand",
  51033. image: {
  51034. source: "./media/characters/caspian/hand.svg"
  51035. }
  51036. },
  51037. paw: {
  51038. height: math.unit(0.95, "feet"),
  51039. name: "Paw",
  51040. image: {
  51041. source: "./media/characters/caspian/paw.svg"
  51042. }
  51043. },
  51044. },
  51045. [
  51046. {
  51047. name: "Normal",
  51048. height: math.unit(162, "feet"),
  51049. default: true
  51050. },
  51051. ]
  51052. ))
  51053. characterMakers.push(() => makeCharacter(
  51054. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51055. {
  51056. front: {
  51057. height: math.unit(6, "feet"),
  51058. name: "Front",
  51059. image: {
  51060. source: "./media/characters/myra-aisling/front.svg",
  51061. extra: 1268/1166,
  51062. bottom: 73/1341
  51063. }
  51064. },
  51065. back: {
  51066. height: math.unit(6, "feet"),
  51067. name: "Back",
  51068. image: {
  51069. source: "./media/characters/myra-aisling/back.svg",
  51070. extra: 1249/1149,
  51071. bottom: 79/1328
  51072. }
  51073. },
  51074. dressed: {
  51075. height: math.unit(6, "feet"),
  51076. name: "Dressed",
  51077. image: {
  51078. source: "./media/characters/myra-aisling/dressed.svg",
  51079. extra: 1290/1189,
  51080. bottom: 47/1337
  51081. }
  51082. },
  51083. hand: {
  51084. height: math.unit(1.1, "feet"),
  51085. name: "Hand",
  51086. image: {
  51087. source: "./media/characters/myra-aisling/hand.svg"
  51088. }
  51089. },
  51090. paw: {
  51091. height: math.unit(1.23, "feet"),
  51092. name: "Paw",
  51093. image: {
  51094. source: "./media/characters/myra-aisling/paw.svg"
  51095. }
  51096. },
  51097. },
  51098. [
  51099. {
  51100. name: "Normal",
  51101. height: math.unit(160, "feet"),
  51102. default: true
  51103. },
  51104. ]
  51105. ))
  51106. characterMakers.push(() => makeCharacter(
  51107. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51108. {
  51109. front: {
  51110. height: math.unit(6, "feet"),
  51111. name: "Front",
  51112. image: {
  51113. source: "./media/characters/tenley-sidero/front.svg",
  51114. extra: 1365/1276,
  51115. bottom: 47/1412
  51116. }
  51117. },
  51118. back: {
  51119. height: math.unit(6, "feet"),
  51120. name: "Back",
  51121. image: {
  51122. source: "./media/characters/tenley-sidero/back.svg",
  51123. extra: 1383/1283,
  51124. bottom: 35/1418
  51125. }
  51126. },
  51127. dressed: {
  51128. height: math.unit(6, "feet"),
  51129. name: "Dressed",
  51130. image: {
  51131. source: "./media/characters/tenley-sidero/dressed.svg",
  51132. extra: 1364/1275,
  51133. bottom: 42/1406
  51134. }
  51135. },
  51136. head: {
  51137. height: math.unit(1.47, "feet"),
  51138. name: "Head",
  51139. image: {
  51140. source: "./media/characters/tenley-sidero/head.svg",
  51141. extra: 610/490,
  51142. bottom: 0/610
  51143. }
  51144. },
  51145. },
  51146. [
  51147. {
  51148. name: "Normal",
  51149. height: math.unit(154, "feet"),
  51150. default: true
  51151. },
  51152. ]
  51153. ))
  51154. characterMakers.push(() => makeCharacter(
  51155. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51156. {
  51157. front: {
  51158. height: math.unit(5, "inches"),
  51159. name: "Front",
  51160. image: {
  51161. source: "./media/characters/mallory/front.svg",
  51162. extra: 1919/1678,
  51163. bottom: 29/1948
  51164. }
  51165. },
  51166. hand: {
  51167. height: math.unit(0.73, "inches"),
  51168. name: "Hand",
  51169. image: {
  51170. source: "./media/characters/mallory/hand.svg"
  51171. }
  51172. },
  51173. paw: {
  51174. height: math.unit(0.68, "inches"),
  51175. name: "Paw",
  51176. image: {
  51177. source: "./media/characters/mallory/paw.svg"
  51178. }
  51179. },
  51180. },
  51181. [
  51182. {
  51183. name: "Small",
  51184. height: math.unit(5, "inches"),
  51185. default: true
  51186. },
  51187. ]
  51188. ))
  51189. characterMakers.push(() => makeCharacter(
  51190. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51191. {
  51192. naked: {
  51193. height: math.unit(6, "feet"),
  51194. name: "Naked",
  51195. image: {
  51196. source: "./media/characters/mab/naked.svg",
  51197. extra: 1855/1757,
  51198. bottom: 208/2063
  51199. }
  51200. },
  51201. outside: {
  51202. height: math.unit(6, "feet"),
  51203. name: "Outside",
  51204. image: {
  51205. source: "./media/characters/mab/outside.svg",
  51206. extra: 1855/1757,
  51207. bottom: 208/2063
  51208. }
  51209. },
  51210. party: {
  51211. height: math.unit(6, "feet"),
  51212. name: "Party",
  51213. image: {
  51214. source: "./media/characters/mab/party.svg",
  51215. extra: 1855/1757,
  51216. bottom: 208/2063
  51217. }
  51218. },
  51219. },
  51220. [
  51221. {
  51222. name: "Normal",
  51223. height: math.unit(165, "feet"),
  51224. default: true
  51225. },
  51226. ]
  51227. ))
  51228. characterMakers.push(() => makeCharacter(
  51229. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51230. {
  51231. feral: {
  51232. height: math.unit(12, "feet"),
  51233. weight: math.unit(20000, "lb"),
  51234. name: "Side",
  51235. image: {
  51236. source: "./media/characters/winter/feral.svg",
  51237. extra: 1286/943,
  51238. bottom: 112/1398
  51239. },
  51240. form: "feral",
  51241. default: true
  51242. },
  51243. feralNsfw: {
  51244. height: math.unit(12, "feet"),
  51245. weight: math.unit(20000, "lb"),
  51246. name: "Side (NSFW)",
  51247. image: {
  51248. source: "./media/characters/winter/feral-nsfw.svg",
  51249. extra: 1286/943,
  51250. bottom: 112/1398
  51251. },
  51252. form: "feral"
  51253. },
  51254. dick: {
  51255. height: math.unit(3.79, "feet"),
  51256. name: "Dick",
  51257. image: {
  51258. source: "./media/characters/winter/dick.svg"
  51259. },
  51260. form: "feral"
  51261. },
  51262. anthro: {
  51263. height: math.unit(12, "feet"),
  51264. weight: math.unit(10, "tons"),
  51265. name: "Anthro",
  51266. image: {
  51267. source: "./media/characters/winter/anthro.svg",
  51268. extra: 1701/1553,
  51269. bottom: 64/1765
  51270. },
  51271. form: "anthro",
  51272. default: true
  51273. },
  51274. },
  51275. [
  51276. {
  51277. name: "Big",
  51278. height: math.unit(12, "feet"),
  51279. default: true,
  51280. form: "feral"
  51281. },
  51282. {
  51283. name: "Big",
  51284. height: math.unit(12, "feet"),
  51285. default: true,
  51286. form: "anthro"
  51287. },
  51288. ],
  51289. {
  51290. "feral": {
  51291. name: "Feral",
  51292. default: true
  51293. },
  51294. "anthro": {
  51295. name: "Anthro"
  51296. }
  51297. }
  51298. ))
  51299. characterMakers.push(() => makeCharacter(
  51300. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51301. {
  51302. front: {
  51303. height: math.unit(4.1, "inches"),
  51304. name: "Front",
  51305. image: {
  51306. source: "./media/characters/alto/front.svg",
  51307. extra: 736/627,
  51308. bottom: 90/826
  51309. }
  51310. },
  51311. },
  51312. [
  51313. {
  51314. name: "Normal",
  51315. height: math.unit(4.1, "inches"),
  51316. default: true
  51317. },
  51318. ]
  51319. ))
  51320. characterMakers.push(() => makeCharacter(
  51321. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51322. {
  51323. sitting: {
  51324. height: math.unit(3, "feet"),
  51325. name: "Sitting",
  51326. image: {
  51327. source: "./media/characters/ratstrid-v/sitting.svg",
  51328. extra: 355/310,
  51329. bottom: 136/491
  51330. }
  51331. },
  51332. },
  51333. [
  51334. {
  51335. name: "Normal",
  51336. height: math.unit(3, "feet"),
  51337. default: true
  51338. },
  51339. ]
  51340. ))
  51341. characterMakers.push(() => makeCharacter(
  51342. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51343. {
  51344. back: {
  51345. height: math.unit(6, "feet"),
  51346. weight: math.unit(450, "lb"),
  51347. name: "Back",
  51348. image: {
  51349. source: "./media/characters/siz/back.svg",
  51350. extra: 1449/1274,
  51351. bottom: 13/1462
  51352. }
  51353. },
  51354. },
  51355. [
  51356. {
  51357. name: "Smallest",
  51358. height: math.unit(18 + 3/12, "feet")
  51359. },
  51360. {
  51361. name: "Modest",
  51362. height: math.unit(56 + 8/12, "feet"),
  51363. default: true
  51364. },
  51365. {
  51366. name: "Largest",
  51367. height: math.unit(3590, "feet")
  51368. },
  51369. ]
  51370. ))
  51371. characterMakers.push(() => makeCharacter(
  51372. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51373. {
  51374. front: {
  51375. height: math.unit(5 + 9/12, "feet"),
  51376. weight: math.unit(150, "lb"),
  51377. name: "Front",
  51378. image: {
  51379. source: "./media/characters/ven/front.svg",
  51380. extra: 1372/1320,
  51381. bottom: 73/1445
  51382. }
  51383. },
  51384. side: {
  51385. height: math.unit(5 + 9/12, "feet"),
  51386. weight: math.unit(1150, "lb"),
  51387. name: "Side",
  51388. image: {
  51389. source: "./media/characters/ven/side.svg",
  51390. extra: 1119/1070,
  51391. bottom: 42/1161
  51392. },
  51393. default: true
  51394. },
  51395. },
  51396. [
  51397. {
  51398. name: "Normal",
  51399. height: math.unit(5 + 9/12, "feet"),
  51400. default: true
  51401. },
  51402. ]
  51403. ))
  51404. characterMakers.push(() => makeCharacter(
  51405. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51406. {
  51407. front: {
  51408. height: math.unit(12, "feet"),
  51409. weight: math.unit(1000, "kg"),
  51410. name: "Front",
  51411. image: {
  51412. source: "./media/characters/maple/front.svg",
  51413. extra: 1193/1081,
  51414. bottom: 22/1215
  51415. }
  51416. },
  51417. },
  51418. [
  51419. {
  51420. name: "Compressed",
  51421. height: math.unit(7, "feet")
  51422. },
  51423. {
  51424. name: "Normal",
  51425. height: math.unit(12, "feet"),
  51426. default: true
  51427. },
  51428. ]
  51429. ))
  51430. characterMakers.push(() => makeCharacter(
  51431. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51432. {
  51433. front: {
  51434. height: math.unit(9, "feet"),
  51435. weight: math.unit(1500, "lb"),
  51436. name: "Front",
  51437. image: {
  51438. source: "./media/characters/nora/front.svg",
  51439. extra: 1348/1286,
  51440. bottom: 218/1566
  51441. }
  51442. },
  51443. erect: {
  51444. height: math.unit(9, "feet"),
  51445. weight: math.unit(11500, "lb"),
  51446. name: "Erect",
  51447. image: {
  51448. source: "./media/characters/nora/erect.svg",
  51449. extra: 1488/1433,
  51450. bottom: 133/1621
  51451. }
  51452. },
  51453. },
  51454. [
  51455. {
  51456. name: "Normal",
  51457. height: math.unit(9, "feet"),
  51458. default: true
  51459. },
  51460. ]
  51461. ))
  51462. characterMakers.push(() => makeCharacter(
  51463. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51464. {
  51465. front: {
  51466. height: math.unit(25, "feet"),
  51467. weight: math.unit(27500, "lb"),
  51468. name: "Front",
  51469. image: {
  51470. source: "./media/characters/north-caudin/front.svg",
  51471. extra: 1184/1082,
  51472. bottom: 23/1207
  51473. }
  51474. },
  51475. },
  51476. [
  51477. {
  51478. name: "Compressed",
  51479. height: math.unit(10, "feet")
  51480. },
  51481. {
  51482. name: "Normal",
  51483. height: math.unit(25, "feet"),
  51484. default: true
  51485. },
  51486. ]
  51487. ))
  51488. characterMakers.push(() => makeCharacter(
  51489. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51490. {
  51491. front: {
  51492. height: math.unit(9, "feet"),
  51493. weight: math.unit(1250, "lb"),
  51494. name: "Front",
  51495. image: {
  51496. source: "./media/characters/merrian/front.svg",
  51497. extra: 2393/2304,
  51498. bottom: 40/2433
  51499. }
  51500. },
  51501. },
  51502. [
  51503. {
  51504. name: "Normal",
  51505. height: math.unit(9, "feet"),
  51506. default: true
  51507. },
  51508. ]
  51509. ))
  51510. characterMakers.push(() => makeCharacter(
  51511. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51512. {
  51513. front: {
  51514. height: math.unit(9, "feet"),
  51515. weight: math.unit(1000, "lb"),
  51516. name: "Front",
  51517. image: {
  51518. source: "./media/characters/hazel/front.svg",
  51519. extra: 2351/2298,
  51520. bottom: 38/2389
  51521. }
  51522. },
  51523. },
  51524. [
  51525. {
  51526. name: "Normal",
  51527. height: math.unit(9, "feet"),
  51528. default: true
  51529. },
  51530. ]
  51531. ))
  51532. characterMakers.push(() => makeCharacter(
  51533. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51534. {
  51535. front: {
  51536. height: math.unit(13, "feet"),
  51537. weight: math.unit(3200, "lb"),
  51538. name: "Front",
  51539. image: {
  51540. source: "./media/characters/emma/front.svg",
  51541. extra: 2263/2029,
  51542. bottom: 68/2331
  51543. }
  51544. },
  51545. },
  51546. [
  51547. {
  51548. name: "Normal",
  51549. height: math.unit(13, "feet"),
  51550. default: true
  51551. },
  51552. ]
  51553. ))
  51554. characterMakers.push(() => makeCharacter(
  51555. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51556. {
  51557. front: {
  51558. height: math.unit(11 + 9/12, "feet"),
  51559. weight: math.unit(2500, "lb"),
  51560. name: "Front",
  51561. image: {
  51562. source: "./media/characters/ilumina/front.svg",
  51563. extra: 2248/2209,
  51564. bottom: 164/2412
  51565. }
  51566. },
  51567. },
  51568. [
  51569. {
  51570. name: "Normal",
  51571. height: math.unit(11 + 9/12, "feet"),
  51572. default: true
  51573. },
  51574. ]
  51575. ))
  51576. characterMakers.push(() => makeCharacter(
  51577. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51578. {
  51579. front: {
  51580. height: math.unit(8 + 10/12, "feet"),
  51581. weight: math.unit(1350, "lb"),
  51582. name: "Front",
  51583. image: {
  51584. source: "./media/characters/moonshine/front.svg",
  51585. extra: 2395/2288,
  51586. bottom: 40/2435
  51587. }
  51588. },
  51589. },
  51590. [
  51591. {
  51592. name: "Normal",
  51593. height: math.unit(8 + 10/12, "feet"),
  51594. default: true
  51595. },
  51596. ]
  51597. ))
  51598. characterMakers.push(() => makeCharacter(
  51599. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51600. {
  51601. front: {
  51602. height: math.unit(14, "feet"),
  51603. weight: math.unit(3400, "lb"),
  51604. name: "Front",
  51605. image: {
  51606. source: "./media/characters/aletia/front.svg",
  51607. extra: 1185/1052,
  51608. bottom: 21/1206
  51609. }
  51610. },
  51611. },
  51612. [
  51613. {
  51614. name: "Compressed",
  51615. height: math.unit(8, "feet")
  51616. },
  51617. {
  51618. name: "Normal",
  51619. height: math.unit(14, "feet"),
  51620. default: true
  51621. },
  51622. ]
  51623. ))
  51624. characterMakers.push(() => makeCharacter(
  51625. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51626. {
  51627. front: {
  51628. height: math.unit(17, "feet"),
  51629. weight: math.unit(6500, "lb"),
  51630. name: "Front",
  51631. image: {
  51632. source: "./media/characters/deidra/front.svg",
  51633. extra: 1201/1081,
  51634. bottom: 16/1217
  51635. }
  51636. },
  51637. },
  51638. [
  51639. {
  51640. name: "Compressed",
  51641. height: math.unit(9 + 6/12, "feet")
  51642. },
  51643. {
  51644. name: "Normal",
  51645. height: math.unit(17, "feet"),
  51646. default: true
  51647. },
  51648. ]
  51649. ))
  51650. characterMakers.push(() => makeCharacter(
  51651. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51652. {
  51653. front: {
  51654. height: math.unit(7 + 4/12, "feet"),
  51655. weight: math.unit(280, "lb"),
  51656. name: "Front",
  51657. image: {
  51658. source: "./media/characters/freki-yrmori/front.svg",
  51659. extra: 1286/1182,
  51660. bottom: 29/1315
  51661. }
  51662. },
  51663. maw: {
  51664. height: math.unit(0.9, "feet"),
  51665. name: "Maw",
  51666. image: {
  51667. source: "./media/characters/freki-yrmori/maw.svg"
  51668. }
  51669. },
  51670. },
  51671. [
  51672. {
  51673. name: "Normal",
  51674. height: math.unit(7 + 4/12, "feet"),
  51675. default: true
  51676. },
  51677. {
  51678. name: "Macro",
  51679. height: math.unit(38.5, "meters")
  51680. },
  51681. ]
  51682. ))
  51683. characterMakers.push(() => makeCharacter(
  51684. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51685. {
  51686. side: {
  51687. height: math.unit(47.2, "meters"),
  51688. weight: math.unit(10000, "tons"),
  51689. name: "Side",
  51690. image: {
  51691. source: "./media/characters/aetherios/side.svg",
  51692. extra: 2363/642,
  51693. bottom: 221/2584
  51694. }
  51695. },
  51696. top: {
  51697. height: math.unit(240, "meters"),
  51698. weight: math.unit(10000, "tons"),
  51699. name: "Top",
  51700. image: {
  51701. source: "./media/characters/aetherios/top.svg"
  51702. }
  51703. },
  51704. bottom: {
  51705. height: math.unit(240, "meters"),
  51706. weight: math.unit(10000, "tons"),
  51707. name: "Bottom",
  51708. image: {
  51709. source: "./media/characters/aetherios/bottom.svg"
  51710. }
  51711. },
  51712. head: {
  51713. height: math.unit(38.6, "meters"),
  51714. name: "Head",
  51715. image: {
  51716. source: "./media/characters/aetherios/head.svg",
  51717. extra: 1335/1112,
  51718. bottom: 0/1335
  51719. }
  51720. },
  51721. front: {
  51722. height: math.unit(29, "meters"),
  51723. name: "Front",
  51724. image: {
  51725. source: "./media/characters/aetherios/front.svg",
  51726. extra: 1266/953,
  51727. bottom: 158/1424
  51728. }
  51729. },
  51730. maw: {
  51731. height: math.unit(16.37, "meters"),
  51732. name: "Maw",
  51733. image: {
  51734. source: "./media/characters/aetherios/maw.svg",
  51735. extra: 748/637,
  51736. bottom: 0/748
  51737. },
  51738. extraAttributes: {
  51739. preyCapacity: {
  51740. name: "Capacity",
  51741. power: 3,
  51742. type: "volume",
  51743. base: math.unit(1000, "people")
  51744. },
  51745. tongueSize: {
  51746. name: "Tongue Size",
  51747. power: 2,
  51748. type: "area",
  51749. base: math.unit(21, "m^2")
  51750. }
  51751. }
  51752. },
  51753. forepaw: {
  51754. height: math.unit(18, "meters"),
  51755. name: "Forepaw",
  51756. image: {
  51757. source: "./media/characters/aetherios/forepaw.svg"
  51758. }
  51759. },
  51760. hindpaw: {
  51761. height: math.unit(23, "meters"),
  51762. name: "Hindpaw",
  51763. image: {
  51764. source: "./media/characters/aetherios/hindpaw.svg"
  51765. }
  51766. },
  51767. genitals: {
  51768. height: math.unit(42, "meters"),
  51769. name: "Genitals",
  51770. image: {
  51771. source: "./media/characters/aetherios/genitals.svg"
  51772. }
  51773. },
  51774. },
  51775. [
  51776. {
  51777. name: "Normal",
  51778. height: math.unit(47.2, "meters"),
  51779. default: true
  51780. },
  51781. {
  51782. name: "Macro",
  51783. height: math.unit(160, "meters")
  51784. },
  51785. {
  51786. name: "Mega",
  51787. height: math.unit(1.87, "km")
  51788. },
  51789. {
  51790. name: "Giga",
  51791. height: math.unit(40000, "km")
  51792. },
  51793. {
  51794. name: "Stellar",
  51795. height: math.unit(158000000, "km")
  51796. },
  51797. {
  51798. name: "Cosmic",
  51799. height: math.unit(9.46e12, "km")
  51800. },
  51801. ]
  51802. ))
  51803. characterMakers.push(() => makeCharacter(
  51804. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51805. {
  51806. front: {
  51807. height: math.unit(5 + 4/12, "feet"),
  51808. weight: math.unit(80, "lb"),
  51809. name: "Front",
  51810. image: {
  51811. source: "./media/characters/mizu-gieeg/front.svg",
  51812. extra: 850/709,
  51813. bottom: 52/902
  51814. }
  51815. },
  51816. back: {
  51817. height: math.unit(5 + 4/12, "feet"),
  51818. weight: math.unit(80, "lb"),
  51819. name: "Back",
  51820. image: {
  51821. source: "./media/characters/mizu-gieeg/back.svg",
  51822. extra: 882/745,
  51823. bottom: 25/907
  51824. }
  51825. },
  51826. },
  51827. [
  51828. {
  51829. name: "Normal",
  51830. height: math.unit(5 + 4/12, "feet"),
  51831. default: true
  51832. },
  51833. ]
  51834. ))
  51835. characterMakers.push(() => makeCharacter(
  51836. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51837. {
  51838. front: {
  51839. height: math.unit(6, "feet"),
  51840. name: "Front",
  51841. image: {
  51842. source: "./media/characters/roselle-st-papier/front.svg",
  51843. extra: 1430/1280,
  51844. bottom: 37/1467
  51845. }
  51846. },
  51847. back: {
  51848. height: math.unit(6, "feet"),
  51849. name: "Back",
  51850. image: {
  51851. source: "./media/characters/roselle-st-papier/back.svg",
  51852. extra: 1491/1296,
  51853. bottom: 23/1514
  51854. }
  51855. },
  51856. ear: {
  51857. height: math.unit(1.26, "feet"),
  51858. name: "Ear",
  51859. image: {
  51860. source: "./media/characters/roselle-st-papier/ear.svg"
  51861. }
  51862. },
  51863. },
  51864. [
  51865. {
  51866. name: "Normal",
  51867. height: math.unit(150, "feet"),
  51868. default: true
  51869. },
  51870. ]
  51871. ))
  51872. characterMakers.push(() => makeCharacter(
  51873. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51874. {
  51875. front: {
  51876. height: math.unit(1, "inches"),
  51877. name: "Front",
  51878. image: {
  51879. source: "./media/characters/valargent/front.svg",
  51880. extra: 1825/1694,
  51881. bottom: 62/1887
  51882. }
  51883. },
  51884. back: {
  51885. height: math.unit(1, "inches"),
  51886. name: "Back",
  51887. image: {
  51888. source: "./media/characters/valargent/back.svg",
  51889. extra: 1775/1682,
  51890. bottom: 88/1863
  51891. }
  51892. },
  51893. },
  51894. [
  51895. {
  51896. name: "Micro",
  51897. height: math.unit(1, "inch"),
  51898. default: true
  51899. },
  51900. ]
  51901. ))
  51902. characterMakers.push(() => makeCharacter(
  51903. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51904. {
  51905. front: {
  51906. height: math.unit(3.4, "meters"),
  51907. name: "Front",
  51908. image: {
  51909. source: "./media/characters/zarina/front.svg",
  51910. extra: 1733/1425,
  51911. bottom: 93/1826
  51912. }
  51913. },
  51914. squatting: {
  51915. height: math.unit(2.14, "meters"),
  51916. name: "Squatting",
  51917. image: {
  51918. source: "./media/characters/zarina/squatting.svg",
  51919. extra: 1073/788,
  51920. bottom: 63/1136
  51921. }
  51922. },
  51923. back: {
  51924. height: math.unit(2.14, "meters"),
  51925. name: "Back",
  51926. image: {
  51927. source: "./media/characters/zarina/back.svg",
  51928. extra: 1128/885,
  51929. bottom: 0/1128
  51930. }
  51931. },
  51932. },
  51933. [
  51934. {
  51935. name: "Normal",
  51936. height: math.unit(3.4, "meters"),
  51937. default: true
  51938. },
  51939. {
  51940. name: "Big",
  51941. height: math.unit(5, "meters")
  51942. },
  51943. {
  51944. name: "Macro",
  51945. height: math.unit(110, "meters")
  51946. },
  51947. ]
  51948. ))
  51949. characterMakers.push(() => makeCharacter(
  51950. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51951. {
  51952. front: {
  51953. height: math.unit(7, "feet"),
  51954. name: "Front",
  51955. image: {
  51956. source: "./media/characters/ventus-astro-fox/front.svg",
  51957. extra: 1792/1623,
  51958. bottom: 28/1820
  51959. }
  51960. },
  51961. back: {
  51962. height: math.unit(7, "feet"),
  51963. name: "Back",
  51964. image: {
  51965. source: "./media/characters/ventus-astro-fox/back.svg",
  51966. extra: 1789/1620,
  51967. bottom: 31/1820
  51968. }
  51969. },
  51970. outfit: {
  51971. height: math.unit(7, "feet"),
  51972. name: "Outfit",
  51973. image: {
  51974. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51975. extra: 1054/925,
  51976. bottom: 15/1069
  51977. }
  51978. },
  51979. head: {
  51980. height: math.unit(1.12, "feet"),
  51981. name: "Head",
  51982. image: {
  51983. source: "./media/characters/ventus-astro-fox/head.svg",
  51984. extra: 866/504,
  51985. bottom: 0/866
  51986. }
  51987. },
  51988. hand: {
  51989. height: math.unit(1, "feet"),
  51990. name: "Hand",
  51991. image: {
  51992. source: "./media/characters/ventus-astro-fox/hand.svg"
  51993. }
  51994. },
  51995. paw: {
  51996. height: math.unit(1.5, "feet"),
  51997. name: "Paw",
  51998. image: {
  51999. source: "./media/characters/ventus-astro-fox/paw.svg"
  52000. }
  52001. },
  52002. },
  52003. [
  52004. {
  52005. name: "Normal",
  52006. height: math.unit(7, "feet"),
  52007. default: true
  52008. },
  52009. {
  52010. name: "Macro",
  52011. height: math.unit(200, "feet")
  52012. },
  52013. {
  52014. name: "Cosmic",
  52015. height: math.unit(3, "universes")
  52016. },
  52017. ]
  52018. ))
  52019. characterMakers.push(() => makeCharacter(
  52020. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52021. {
  52022. front: {
  52023. height: math.unit(3, "meters"),
  52024. weight: math.unit(7000, "lb"),
  52025. name: "Front",
  52026. image: {
  52027. source: "./media/characters/core-t/front.svg",
  52028. extra: 5729/4941,
  52029. bottom: 1129/6858
  52030. }
  52031. },
  52032. },
  52033. [
  52034. {
  52035. name: "Big",
  52036. height: math.unit(3, "meters"),
  52037. default: true
  52038. },
  52039. ]
  52040. ))
  52041. characterMakers.push(() => makeCharacter(
  52042. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52043. {
  52044. normal: {
  52045. height: math.unit(6 + 6/12, "feet"),
  52046. weight: math.unit(275, "lb"),
  52047. name: "Front",
  52048. image: {
  52049. source: "./media/characters/cadbunny/normal.svg",
  52050. extra: 1129/947,
  52051. bottom: 93/1222
  52052. },
  52053. default: true,
  52054. form: "normal"
  52055. },
  52056. gigantamax: {
  52057. height: math.unit(26, "feet"),
  52058. weight: math.unit(16000, "lb"),
  52059. name: "Front",
  52060. image: {
  52061. source: "./media/characters/cadbunny/gigantamax.svg",
  52062. extra: 1133/944,
  52063. bottom: 90/1223
  52064. },
  52065. default: true,
  52066. form: "gigantamax"
  52067. },
  52068. },
  52069. [
  52070. {
  52071. name: "Normal",
  52072. height: math.unit(6 + 6/12, "feet"),
  52073. default: true,
  52074. form: "normal"
  52075. },
  52076. {
  52077. name: "Small",
  52078. height: math.unit(26, "feet"),
  52079. default: true,
  52080. form: "gigantamax"
  52081. },
  52082. {
  52083. name: "Large",
  52084. height: math.unit(78, "feet"),
  52085. form: "gigantamax"
  52086. },
  52087. ],
  52088. {
  52089. "normal": {
  52090. name: "Normal",
  52091. default: true
  52092. },
  52093. "gigantamax": {
  52094. name: "Gigantamax"
  52095. }
  52096. }
  52097. ))
  52098. characterMakers.push(() => makeCharacter(
  52099. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52100. {
  52101. anthroFront: {
  52102. height: math.unit(8, "feet"),
  52103. weight: math.unit(300, "lb"),
  52104. name: "Front",
  52105. image: {
  52106. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52107. extra: 1272/1176,
  52108. bottom: 53/1325
  52109. },
  52110. form: "anthro",
  52111. default: true
  52112. },
  52113. feralSide: {
  52114. height: math.unit(4, "feet"),
  52115. weight: math.unit(250, "lb"),
  52116. name: "Side",
  52117. image: {
  52118. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52119. extra: 731/621,
  52120. bottom: 0/731
  52121. },
  52122. form: "feral",
  52123. default: true
  52124. },
  52125. },
  52126. [
  52127. {
  52128. name: "Regular",
  52129. height: math.unit(8, "feet"),
  52130. form: "anthro"
  52131. },
  52132. {
  52133. name: "Macro",
  52134. height: math.unit(250, "feet"),
  52135. form: "anthro",
  52136. default: true
  52137. },
  52138. {
  52139. name: "Regular",
  52140. height: math.unit(4, "feet"),
  52141. form: "feral"
  52142. },
  52143. {
  52144. name: "Macro",
  52145. height: math.unit(125, "feet"),
  52146. form: "feral",
  52147. default: true
  52148. },
  52149. ],
  52150. {
  52151. "anthro": {
  52152. name: "Anthro",
  52153. default: true
  52154. },
  52155. "feral": {
  52156. name: "Feral",
  52157. },
  52158. }
  52159. ))
  52160. characterMakers.push(() => makeCharacter(
  52161. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52162. {
  52163. front: {
  52164. height: math.unit(11 + 10/12, "feet"),
  52165. weight: math.unit(1587, "kg"),
  52166. name: "Front",
  52167. image: {
  52168. source: "./media/characters/maple-javira-dragon/front.svg",
  52169. extra: 1136/744,
  52170. bottom: 73/1209
  52171. }
  52172. },
  52173. side: {
  52174. height: math.unit(11 + 10/12, "feet"),
  52175. weight: math.unit(1587, "kg"),
  52176. name: "Side",
  52177. image: {
  52178. source: "./media/characters/maple-javira-dragon/side.svg",
  52179. extra: 712/505,
  52180. bottom: 17/729
  52181. }
  52182. },
  52183. head: {
  52184. height: math.unit(8.05, "feet"),
  52185. name: "Head",
  52186. image: {
  52187. source: "./media/characters/maple-javira-dragon/head.svg",
  52188. extra: 1420/1344,
  52189. bottom: 0/1420
  52190. }
  52191. },
  52192. },
  52193. [
  52194. {
  52195. name: "Normal",
  52196. height: math.unit(11 + 10/12, "feet"),
  52197. default: true
  52198. },
  52199. ]
  52200. ))
  52201. characterMakers.push(() => makeCharacter(
  52202. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52203. {
  52204. front: {
  52205. height: math.unit(117, "cm"),
  52206. weight: math.unit(50, "kg"),
  52207. name: "Front",
  52208. image: {
  52209. source: "./media/characters/sonia-wyverntail/front.svg",
  52210. extra: 708/592,
  52211. bottom: 25/733
  52212. }
  52213. },
  52214. },
  52215. [
  52216. {
  52217. name: "Normal",
  52218. height: math.unit(117, "cm"),
  52219. default: true
  52220. },
  52221. ]
  52222. ))
  52223. characterMakers.push(() => makeCharacter(
  52224. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52225. {
  52226. front: {
  52227. height: math.unit(6 + 5/12, "feet"),
  52228. name: "Front",
  52229. image: {
  52230. source: "./media/characters/micah/front.svg",
  52231. extra: 1758/1546,
  52232. bottom: 214/1972
  52233. }
  52234. },
  52235. },
  52236. [
  52237. {
  52238. name: "Normal",
  52239. height: math.unit(6 + 5/12, "feet"),
  52240. default: true
  52241. },
  52242. ]
  52243. ))
  52244. characterMakers.push(() => makeCharacter(
  52245. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52246. {
  52247. front: {
  52248. height: math.unit(1.75, "meters"),
  52249. weight: math.unit(100, "kg"),
  52250. name: "Front",
  52251. image: {
  52252. source: "./media/characters/zarya/front.svg",
  52253. extra: 741/735,
  52254. bottom: 44/785
  52255. },
  52256. extraAttributes: {
  52257. "tailLength": {
  52258. name: "Tail Length",
  52259. power: 1,
  52260. type: "length",
  52261. base: math.unit(180, "cm")
  52262. },
  52263. "pawLength": {
  52264. name: "Paw Length",
  52265. power: 1,
  52266. type: "length",
  52267. base: math.unit(31, "cm")
  52268. },
  52269. }
  52270. },
  52271. side: {
  52272. height: math.unit(1.75, "meters"),
  52273. weight: math.unit(100, "kg"),
  52274. name: "Side",
  52275. image: {
  52276. source: "./media/characters/zarya/side.svg",
  52277. extra: 776/770,
  52278. bottom: 17/793
  52279. },
  52280. extraAttributes: {
  52281. "tailLength": {
  52282. name: "Tail Length",
  52283. power: 1,
  52284. type: "length",
  52285. base: math.unit(180, "cm")
  52286. },
  52287. "pawLength": {
  52288. name: "Paw Length",
  52289. power: 1,
  52290. type: "length",
  52291. base: math.unit(31, "cm")
  52292. },
  52293. }
  52294. },
  52295. back: {
  52296. height: math.unit(1.75, "meters"),
  52297. weight: math.unit(100, "kg"),
  52298. name: "Back",
  52299. image: {
  52300. source: "./media/characters/zarya/back.svg",
  52301. extra: 741/735,
  52302. bottom: 44/785
  52303. },
  52304. extraAttributes: {
  52305. "tailLength": {
  52306. name: "Tail Length",
  52307. power: 1,
  52308. type: "length",
  52309. base: math.unit(180, "cm")
  52310. },
  52311. "pawLength": {
  52312. name: "Paw Length",
  52313. power: 1,
  52314. type: "length",
  52315. base: math.unit(31, "cm")
  52316. },
  52317. }
  52318. },
  52319. frontNoTail: {
  52320. height: math.unit(1.75, "meters"),
  52321. weight: math.unit(100, "kg"),
  52322. name: "Front (No Tail)",
  52323. image: {
  52324. source: "./media/characters/zarya/front-no-tail.svg",
  52325. extra: 741/735,
  52326. bottom: 44/785
  52327. },
  52328. extraAttributes: {
  52329. "tailLength": {
  52330. name: "Tail Length",
  52331. power: 1,
  52332. type: "length",
  52333. base: math.unit(180, "cm")
  52334. },
  52335. "pawLength": {
  52336. name: "Paw Length",
  52337. power: 1,
  52338. type: "length",
  52339. base: math.unit(31, "cm")
  52340. },
  52341. }
  52342. },
  52343. dressed: {
  52344. height: math.unit(1.75, "meters"),
  52345. weight: math.unit(100, "kg"),
  52346. name: "Dressed",
  52347. image: {
  52348. source: "./media/characters/zarya/dressed.svg",
  52349. extra: 683/672,
  52350. bottom: 79/762
  52351. },
  52352. extraAttributes: {
  52353. "tailLength": {
  52354. name: "Tail Length",
  52355. power: 1,
  52356. type: "length",
  52357. base: math.unit(180, "cm")
  52358. },
  52359. "pawLength": {
  52360. name: "Paw Length",
  52361. power: 1,
  52362. type: "length",
  52363. base: math.unit(31, "cm")
  52364. },
  52365. }
  52366. },
  52367. },
  52368. [
  52369. {
  52370. name: "Micro",
  52371. height: math.unit(5, "cm")
  52372. },
  52373. {
  52374. name: "Normal",
  52375. height: math.unit(1.75, "meters"),
  52376. default: true
  52377. },
  52378. {
  52379. name: "Macro",
  52380. height: math.unit(122, "meters")
  52381. },
  52382. ]
  52383. ))
  52384. characterMakers.push(() => makeCharacter(
  52385. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52386. {
  52387. front: {
  52388. height: math.unit(7.5, "feet"),
  52389. name: "Front",
  52390. image: {
  52391. source: "./media/characters/sven-hatisson/front.svg",
  52392. extra: 917/857,
  52393. bottom: 42/959
  52394. }
  52395. },
  52396. back: {
  52397. height: math.unit(7.5, "feet"),
  52398. name: "Back",
  52399. image: {
  52400. source: "./media/characters/sven-hatisson/back.svg",
  52401. extra: 903/856,
  52402. bottom: 15/918
  52403. }
  52404. },
  52405. },
  52406. [
  52407. {
  52408. name: "Base Height",
  52409. height: math.unit(7.5, "feet")
  52410. },
  52411. {
  52412. name: "Usual Height",
  52413. height: math.unit(13.5, "feet"),
  52414. default: true
  52415. },
  52416. {
  52417. name: "Smaller Macro",
  52418. height: math.unit(85, "feet")
  52419. },
  52420. {
  52421. name: "Moderate Macro",
  52422. height: math.unit(320, "feet")
  52423. },
  52424. {
  52425. name: "Large Macro",
  52426. height: math.unit(1000, "feet")
  52427. },
  52428. {
  52429. name: "Largest Size",
  52430. height: math.unit(2, "miles")
  52431. },
  52432. ]
  52433. ))
  52434. characterMakers.push(() => makeCharacter(
  52435. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52436. {
  52437. side: {
  52438. height: math.unit(1.8, "meters"),
  52439. weight: math.unit(275, "kg"),
  52440. name: "Side",
  52441. image: {
  52442. source: "./media/characters/terra/side.svg",
  52443. extra: 1273/1147,
  52444. bottom: 0/1273
  52445. }
  52446. },
  52447. },
  52448. [
  52449. {
  52450. name: "Normal",
  52451. height: math.unit(16.2, "meters"),
  52452. default: true
  52453. },
  52454. ]
  52455. ))
  52456. characterMakers.push(() => makeCharacter(
  52457. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52458. {
  52459. borzoiFront: {
  52460. height: math.unit(6 + 9/12, "feet"),
  52461. name: "Front",
  52462. image: {
  52463. source: "./media/characters/rae/borzoi-front.svg",
  52464. extra: 1161/1098,
  52465. bottom: 31/1192
  52466. },
  52467. form: "borzoi",
  52468. default: true
  52469. },
  52470. werewolfFront: {
  52471. height: math.unit(8 + 7/12, "feet"),
  52472. name: "Front",
  52473. image: {
  52474. source: "./media/characters/rae/werewolf-front.svg",
  52475. extra: 1411/1334,
  52476. bottom: 127/1538
  52477. },
  52478. form: "werewolf",
  52479. default: true
  52480. },
  52481. },
  52482. [
  52483. {
  52484. name: "Normal",
  52485. height: math.unit(6 + 9/12, "feet"),
  52486. default: true,
  52487. form: "borzoi"
  52488. },
  52489. {
  52490. name: "Normal",
  52491. height: math.unit(8 + 7/12, "feet"),
  52492. default: true,
  52493. form: "werewolf"
  52494. },
  52495. ],
  52496. {
  52497. "borzoi": {
  52498. name: "Borzoi",
  52499. default: true
  52500. },
  52501. "werewolf": {
  52502. name: "Werewolf",
  52503. },
  52504. }
  52505. ))
  52506. characterMakers.push(() => makeCharacter(
  52507. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52508. {
  52509. front: {
  52510. height: math.unit(8 + 7/12, "feet"),
  52511. weight: math.unit(482, "lb"),
  52512. name: "Front",
  52513. image: {
  52514. source: "./media/characters/kit/front.svg",
  52515. extra: 1247/1103,
  52516. bottom: 41/1288
  52517. }
  52518. },
  52519. back: {
  52520. height: math.unit(8 + 7/12, "feet"),
  52521. weight: math.unit(482, "lb"),
  52522. name: "Back",
  52523. image: {
  52524. source: "./media/characters/kit/back.svg",
  52525. extra: 1252/1123,
  52526. bottom: 21/1273
  52527. }
  52528. },
  52529. paw: {
  52530. height: math.unit(1.46, "feet"),
  52531. name: "Paw",
  52532. image: {
  52533. source: "./media/characters/kit/paw.svg"
  52534. }
  52535. },
  52536. },
  52537. [
  52538. {
  52539. name: "Normal",
  52540. height: math.unit(2.61, "meters"),
  52541. default: true
  52542. },
  52543. {
  52544. name: "\"Tall\"",
  52545. height: math.unit(8.21, "meters")
  52546. },
  52547. {
  52548. name: "Tall",
  52549. height: math.unit(19.6, "meters")
  52550. },
  52551. {
  52552. name: "Very Tall",
  52553. height: math.unit(57.91, "meters")
  52554. },
  52555. {
  52556. name: "Semi-Macro",
  52557. height: math.unit(138.64, "meters")
  52558. },
  52559. {
  52560. name: "Macro",
  52561. height: math.unit(831.99, "meters")
  52562. },
  52563. {
  52564. name: "EX-Macro",
  52565. height: math.unit(96451121, "meters")
  52566. },
  52567. {
  52568. name: "S1-Omnipotent",
  52569. height: math.unit(4.42074e+9, "meters")
  52570. },
  52571. {
  52572. name: "S2-Omnipotent",
  52573. height: math.unit(9.42074e+17, "meters")
  52574. },
  52575. {
  52576. name: "Omnipotent",
  52577. height: math.unit(4.23112e+24, "meters")
  52578. },
  52579. {
  52580. name: "Hypergod",
  52581. height: math.unit(5.05176e+27, "meters")
  52582. },
  52583. {
  52584. name: "Hypergod-EX",
  52585. height: math.unit(9.45532e+49, "meters")
  52586. },
  52587. {
  52588. name: "Hypergod-SP",
  52589. height: math.unit(9.45532e+195, "meters")
  52590. },
  52591. ]
  52592. ))
  52593. characterMakers.push(() => makeCharacter(
  52594. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52595. {
  52596. side: {
  52597. height: math.unit(0.6, "meters"),
  52598. weight: math.unit(24, "kg"),
  52599. name: "Side",
  52600. image: {
  52601. source: "./media/characters/celeste/side.svg",
  52602. extra: 810/517,
  52603. bottom: 53/863
  52604. }
  52605. },
  52606. },
  52607. [
  52608. {
  52609. name: "Velociraptor",
  52610. height: math.unit(0.6, "meters"),
  52611. default: true
  52612. },
  52613. {
  52614. name: "Utahraptor",
  52615. height: math.unit(1.8, "meters")
  52616. },
  52617. {
  52618. name: "Gallimimus",
  52619. height: math.unit(4.0, "meters")
  52620. },
  52621. {
  52622. name: "Large",
  52623. height: math.unit(20, "meters")
  52624. },
  52625. {
  52626. name: "Planetary",
  52627. height: math.unit(50, "megameters")
  52628. },
  52629. {
  52630. name: "Stellar",
  52631. height: math.unit(1.5, "gigameters")
  52632. },
  52633. {
  52634. name: "Galactic",
  52635. height: math.unit(100, "exameters")
  52636. },
  52637. ]
  52638. ))
  52639. characterMakers.push(() => makeCharacter(
  52640. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52641. {
  52642. front: {
  52643. height: math.unit(6, "feet"),
  52644. weight: math.unit(210, "lb"),
  52645. name: "Front",
  52646. image: {
  52647. source: "./media/characters/glacia/front.svg",
  52648. extra: 958/901,
  52649. bottom: 45/1003
  52650. }
  52651. },
  52652. },
  52653. [
  52654. {
  52655. name: "Macro",
  52656. height: math.unit(1000, "meters"),
  52657. default: true
  52658. },
  52659. ]
  52660. ))
  52661. characterMakers.push(() => makeCharacter(
  52662. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52663. {
  52664. front: {
  52665. height: math.unit(4, "meters"),
  52666. name: "Front",
  52667. image: {
  52668. source: "./media/characters/giri/front.svg",
  52669. extra: 966/894,
  52670. bottom: 21/987
  52671. }
  52672. },
  52673. },
  52674. [
  52675. {
  52676. name: "Normal",
  52677. height: math.unit(4, "meters"),
  52678. default: true
  52679. },
  52680. ]
  52681. ))
  52682. characterMakers.push(() => makeCharacter(
  52683. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52684. {
  52685. back: {
  52686. height: math.unit(4, "feet"),
  52687. weight: math.unit(37, "lb"),
  52688. name: "Back",
  52689. image: {
  52690. source: "./media/characters/tin/back.svg",
  52691. extra: 845/780,
  52692. bottom: 28/873
  52693. }
  52694. },
  52695. },
  52696. [
  52697. {
  52698. name: "Normal",
  52699. height: math.unit(4, "feet"),
  52700. default: true
  52701. },
  52702. ]
  52703. ))
  52704. characterMakers.push(() => makeCharacter(
  52705. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52706. {
  52707. front: {
  52708. height: math.unit(25, "feet"),
  52709. name: "Front",
  52710. image: {
  52711. source: "./media/characters/cadenza-vivace/front.svg",
  52712. extra: 1842/1578,
  52713. bottom: 30/1872
  52714. }
  52715. },
  52716. },
  52717. [
  52718. {
  52719. name: "Macro",
  52720. height: math.unit(25, "feet"),
  52721. default: true
  52722. },
  52723. ]
  52724. ))
  52725. characterMakers.push(() => makeCharacter(
  52726. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52727. {
  52728. front: {
  52729. height: math.unit(10, "feet"),
  52730. weight: math.unit(625, "kg"),
  52731. name: "Front",
  52732. image: {
  52733. source: "./media/characters/zain/front.svg",
  52734. extra: 1682/1498,
  52735. bottom: 223/1905
  52736. }
  52737. },
  52738. back: {
  52739. height: math.unit(10, "feet"),
  52740. weight: math.unit(625, "kg"),
  52741. name: "Back",
  52742. image: {
  52743. source: "./media/characters/zain/back.svg",
  52744. extra: 1814/1657,
  52745. bottom: 152/1966
  52746. }
  52747. },
  52748. head: {
  52749. height: math.unit(10, "feet"),
  52750. weight: math.unit(625, "kg"),
  52751. name: "Head",
  52752. image: {
  52753. source: "./media/characters/zain/head.svg",
  52754. extra: 1059/762,
  52755. bottom: 0/1059
  52756. }
  52757. },
  52758. },
  52759. [
  52760. {
  52761. name: "Normal",
  52762. height: math.unit(10, "feet"),
  52763. default: true
  52764. },
  52765. ]
  52766. ))
  52767. characterMakers.push(() => makeCharacter(
  52768. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52769. {
  52770. front: {
  52771. height: math.unit(6 + 5/12, "feet"),
  52772. weight: math.unit(750, "lb"),
  52773. name: "Front",
  52774. image: {
  52775. source: "./media/characters/ruchex/front.svg",
  52776. extra: 877/820,
  52777. bottom: 17/894
  52778. },
  52779. extraAttributes: {
  52780. "width": {
  52781. name: "Width",
  52782. power: 1,
  52783. type: "length",
  52784. base: math.unit(4.757, "feet")
  52785. },
  52786. }
  52787. },
  52788. },
  52789. [
  52790. {
  52791. name: "Normal",
  52792. height: math.unit(6 + 5/12, "feet"),
  52793. default: true
  52794. },
  52795. ]
  52796. ))
  52797. characterMakers.push(() => makeCharacter(
  52798. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52799. {
  52800. dressedFront: {
  52801. height: math.unit(191, "cm"),
  52802. weight: math.unit(80, "kg"),
  52803. name: "Front",
  52804. image: {
  52805. source: "./media/characters/buster/dressed-front.svg",
  52806. extra: 1022/973,
  52807. bottom: 69/1091
  52808. }
  52809. },
  52810. dressedBack: {
  52811. height: math.unit(191, "cm"),
  52812. weight: math.unit(80, "kg"),
  52813. name: "Back",
  52814. image: {
  52815. source: "./media/characters/buster/dressed-back.svg",
  52816. extra: 1018/970,
  52817. bottom: 55/1073
  52818. }
  52819. },
  52820. nudeFront: {
  52821. height: math.unit(191, "cm"),
  52822. weight: math.unit(80, "kg"),
  52823. name: "Front (Nude)",
  52824. image: {
  52825. source: "./media/characters/buster/nude-front.svg",
  52826. extra: 1022/973,
  52827. bottom: 69/1091
  52828. }
  52829. },
  52830. nudeBack: {
  52831. height: math.unit(191, "cm"),
  52832. weight: math.unit(80, "kg"),
  52833. name: "Back (Nude)",
  52834. image: {
  52835. source: "./media/characters/buster/nude-back.svg",
  52836. extra: 1018/970,
  52837. bottom: 55/1073
  52838. }
  52839. },
  52840. dick: {
  52841. height: math.unit(2.59, "feet"),
  52842. name: "Dick",
  52843. image: {
  52844. source: "./media/characters/buster/dick.svg"
  52845. }
  52846. },
  52847. ass: {
  52848. height: math.unit(1.2, "feet"),
  52849. name: "Ass",
  52850. image: {
  52851. source: "./media/characters/buster/ass.svg"
  52852. }
  52853. },
  52854. },
  52855. [
  52856. {
  52857. name: "Normal",
  52858. height: math.unit(191, "cm"),
  52859. default: true
  52860. },
  52861. ]
  52862. ))
  52863. characterMakers.push(() => makeCharacter(
  52864. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52865. {
  52866. side: {
  52867. height: math.unit(8.1, "feet"),
  52868. weight: math.unit(3500, "lb"),
  52869. name: "Side",
  52870. image: {
  52871. source: "./media/characters/sonya/side.svg",
  52872. extra: 1730/1317,
  52873. bottom: 86/1816
  52874. }
  52875. },
  52876. },
  52877. [
  52878. {
  52879. name: "Normal",
  52880. height: math.unit(8.1, "feet"),
  52881. default: true
  52882. },
  52883. ]
  52884. ))
  52885. characterMakers.push(() => makeCharacter(
  52886. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52887. {
  52888. front: {
  52889. height: math.unit(6, "feet"),
  52890. weight: math.unit(150, "lb"),
  52891. name: "Front",
  52892. image: {
  52893. source: "./media/characters/cadence-andrysiak/front.svg",
  52894. extra: 1164/1121,
  52895. bottom: 60/1224
  52896. }
  52897. },
  52898. back: {
  52899. height: math.unit(6, "feet"),
  52900. weight: math.unit(150, "lb"),
  52901. name: "Back",
  52902. image: {
  52903. source: "./media/characters/cadence-andrysiak/back.svg",
  52904. extra: 1200/1165,
  52905. bottom: 9/1209
  52906. }
  52907. },
  52908. dressed: {
  52909. height: math.unit(6, "feet"),
  52910. weight: math.unit(150, "lb"),
  52911. name: "Dressed",
  52912. image: {
  52913. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52914. extra: 1164/1121,
  52915. bottom: 60/1224
  52916. }
  52917. },
  52918. },
  52919. [
  52920. {
  52921. name: "Micro",
  52922. height: math.unit(1, "mm")
  52923. },
  52924. {
  52925. name: "Normal",
  52926. height: math.unit(6, "feet"),
  52927. default: true
  52928. },
  52929. ]
  52930. ))
  52931. characterMakers.push(() => makeCharacter(
  52932. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52933. {
  52934. front: {
  52935. height: math.unit(60, "inches"),
  52936. weight: math.unit(16, "lb"),
  52937. preyCapacity: math.unit(80, "liters"),
  52938. name: "Front",
  52939. image: {
  52940. source: "./media/characters/penny-lynx/front.svg",
  52941. extra: 1959/1769,
  52942. bottom: 49/2008
  52943. }
  52944. },
  52945. },
  52946. [
  52947. {
  52948. name: "Nokia",
  52949. height: math.unit(2, "inches")
  52950. },
  52951. {
  52952. name: "Desktop",
  52953. height: math.unit(24, "inches")
  52954. },
  52955. {
  52956. name: "TV",
  52957. height: math.unit(60, "inches")
  52958. },
  52959. {
  52960. name: "Jumbotron",
  52961. height: math.unit(12, "feet")
  52962. },
  52963. {
  52964. name: "Billboard",
  52965. height: math.unit(48, "feet"),
  52966. default: true
  52967. },
  52968. {
  52969. name: "IMAX",
  52970. height: math.unit(96, "feet")
  52971. },
  52972. {
  52973. name: "SINGULARITY",
  52974. height: math.unit(864938, "miles")
  52975. },
  52976. ]
  52977. ))
  52978. characterMakers.push(() => makeCharacter(
  52979. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52980. {
  52981. front: {
  52982. height: math.unit(5 + 4/12, "feet"),
  52983. weight: math.unit(230, "lb"),
  52984. name: "Front",
  52985. image: {
  52986. source: "./media/characters/sukebe/front.svg",
  52987. extra: 2130/2038,
  52988. bottom: 90/2220
  52989. }
  52990. },
  52991. back: {
  52992. height: math.unit(3.48, "feet"),
  52993. weight: math.unit(230, "lb"),
  52994. name: "Back",
  52995. image: {
  52996. source: "./media/characters/sukebe/back.svg",
  52997. extra: 1670/1604,
  52998. bottom: 0/1670
  52999. }
  53000. },
  53001. },
  53002. [
  53003. {
  53004. name: "Normal",
  53005. height: math.unit(5 + 4/12, "feet"),
  53006. default: true
  53007. },
  53008. ]
  53009. ))
  53010. characterMakers.push(() => makeCharacter(
  53011. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53012. {
  53013. front: {
  53014. height: math.unit(6, "feet"),
  53015. name: "Front",
  53016. image: {
  53017. source: "./media/characters/nylla/front.svg",
  53018. extra: 1868/1699,
  53019. bottom: 97/1965
  53020. }
  53021. },
  53022. back: {
  53023. height: math.unit(6, "feet"),
  53024. name: "Back",
  53025. image: {
  53026. source: "./media/characters/nylla/back.svg",
  53027. extra: 1889/1712,
  53028. bottom: 93/1982
  53029. }
  53030. },
  53031. frontNsfw: {
  53032. height: math.unit(6, "feet"),
  53033. name: "Front (NSFW)",
  53034. image: {
  53035. source: "./media/characters/nylla/front-nsfw.svg",
  53036. extra: 1868/1699,
  53037. bottom: 97/1965
  53038. },
  53039. extraAttributes: {
  53040. "dickLength": {
  53041. name: "Dick Length",
  53042. power: 1,
  53043. type: "length",
  53044. base: math.unit(1.4, "feet")
  53045. },
  53046. "cumVolume": {
  53047. name: "Cum Volume",
  53048. power: 3,
  53049. type: "volume",
  53050. base: math.unit(100, "mL")
  53051. },
  53052. }
  53053. },
  53054. backNsfw: {
  53055. height: math.unit(6, "feet"),
  53056. name: "Back (NSFW)",
  53057. image: {
  53058. source: "./media/characters/nylla/back-nsfw.svg",
  53059. extra: 1889/1712,
  53060. bottom: 93/1982
  53061. }
  53062. },
  53063. maw: {
  53064. height: math.unit(2.10, "feet"),
  53065. name: "Maw",
  53066. image: {
  53067. source: "./media/characters/nylla/maw.svg"
  53068. }
  53069. },
  53070. paws: {
  53071. height: math.unit(2.06, "feet"),
  53072. name: "Paws",
  53073. image: {
  53074. source: "./media/characters/nylla/paws.svg"
  53075. }
  53076. },
  53077. muzzle: {
  53078. height: math.unit(0.61, "feet"),
  53079. name: "Muzzle",
  53080. image: {
  53081. source: "./media/characters/nylla/muzzle.svg"
  53082. }
  53083. },
  53084. sheath: {
  53085. height: math.unit(1.305, "feet"),
  53086. name: "Sheath",
  53087. image: {
  53088. source: "./media/characters/nylla/sheath.svg"
  53089. }
  53090. },
  53091. },
  53092. [
  53093. {
  53094. name: "Micro",
  53095. height: math.unit(7.5, "inches")
  53096. },
  53097. {
  53098. name: "Normal",
  53099. height: math.unit(7, "feet"),
  53100. default: true
  53101. },
  53102. {
  53103. name: "Macro",
  53104. height: math.unit(60, "feet")
  53105. },
  53106. {
  53107. name: "Mega",
  53108. height: math.unit(200, "feet")
  53109. },
  53110. ]
  53111. ))
  53112. characterMakers.push(() => makeCharacter(
  53113. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53114. {
  53115. front: {
  53116. height: math.unit(10, "feet"),
  53117. weight: math.unit(2300, "lb"),
  53118. name: "Front",
  53119. image: {
  53120. source: "./media/characters/hunt3r/front.svg",
  53121. extra: 1909/1742,
  53122. bottom: 46/1955
  53123. }
  53124. },
  53125. },
  53126. [
  53127. {
  53128. name: "Normal",
  53129. height: math.unit(10, "feet"),
  53130. default: true
  53131. },
  53132. ]
  53133. ))
  53134. characterMakers.push(() => makeCharacter(
  53135. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53136. {
  53137. dressed: {
  53138. height: math.unit(11, "feet"),
  53139. weight: math.unit(18500, "lb"),
  53140. preyCapacity: math.unit(9, "people"),
  53141. name: "Dressed",
  53142. image: {
  53143. source: "./media/characters/cylphis/dressed.svg",
  53144. extra: 1028/1003,
  53145. bottom: 75/1103
  53146. },
  53147. },
  53148. undressed: {
  53149. height: math.unit(11, "feet"),
  53150. weight: math.unit(18500, "lb"),
  53151. preyCapacity: math.unit(9, "people"),
  53152. name: "Undressed",
  53153. image: {
  53154. source: "./media/characters/cylphis/undressed.svg",
  53155. extra: 1028/1003,
  53156. bottom: 75/1103
  53157. }
  53158. },
  53159. full: {
  53160. height: math.unit(11, "feet"),
  53161. weight: math.unit(18500 + 150*9, "lb"),
  53162. preyCapacity: math.unit(9, "people"),
  53163. name: "Full",
  53164. image: {
  53165. source: "./media/characters/cylphis/full.svg",
  53166. extra: 1028/1003,
  53167. bottom: 75/1103
  53168. }
  53169. },
  53170. },
  53171. [
  53172. {
  53173. name: "Small",
  53174. height: math.unit(8, "feet")
  53175. },
  53176. {
  53177. name: "Normal",
  53178. height: math.unit(11, "feet"),
  53179. default: true
  53180. },
  53181. ]
  53182. ))
  53183. characterMakers.push(() => makeCharacter(
  53184. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53185. {
  53186. front: {
  53187. height: math.unit(2 + 7/12, "feet"),
  53188. name: "Front",
  53189. image: {
  53190. source: "./media/characters/orishan/front.svg",
  53191. extra: 1058/1023,
  53192. bottom: 23/1081
  53193. }
  53194. },
  53195. back: {
  53196. height: math.unit(2 + 7/12, "feet"),
  53197. name: "Back",
  53198. image: {
  53199. source: "./media/characters/orishan/back.svg",
  53200. extra: 1058/1023,
  53201. bottom: 23/1081
  53202. }
  53203. },
  53204. },
  53205. [
  53206. {
  53207. name: "Micro",
  53208. height: math.unit(2, "cm")
  53209. },
  53210. {
  53211. name: "Normal",
  53212. height: math.unit(2 + 7/12, "feet"),
  53213. default: true
  53214. },
  53215. ]
  53216. ))
  53217. characterMakers.push(() => makeCharacter(
  53218. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53219. {
  53220. front: {
  53221. height: math.unit(3, "meters"),
  53222. weight: math.unit(508, "kg"),
  53223. name: "Front",
  53224. image: {
  53225. source: "./media/characters/seranis/front.svg",
  53226. extra: 1478/1454,
  53227. bottom: 41/1519
  53228. }
  53229. },
  53230. },
  53231. [
  53232. {
  53233. name: "Normal",
  53234. height: math.unit(3, "meters"),
  53235. default: true
  53236. },
  53237. {
  53238. name: "Macro",
  53239. height: math.unit(108, "meters")
  53240. },
  53241. {
  53242. name: "Megamacro",
  53243. height: math.unit(1250, "meters")
  53244. },
  53245. ]
  53246. ))
  53247. characterMakers.push(() => makeCharacter(
  53248. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53249. {
  53250. undressed: {
  53251. height: math.unit(5 + 3/12, "feet"),
  53252. name: "Undressed",
  53253. image: {
  53254. source: "./media/characters/ankou/undressed.svg",
  53255. extra: 1301/1213,
  53256. bottom: 87/1388
  53257. }
  53258. },
  53259. dressed: {
  53260. height: math.unit(5 + 3/12, "feet"),
  53261. name: "Dressed",
  53262. image: {
  53263. source: "./media/characters/ankou/dressed.svg",
  53264. extra: 1301/1213,
  53265. bottom: 87/1388
  53266. }
  53267. },
  53268. head: {
  53269. height: math.unit(1.61, "feet"),
  53270. name: "Head",
  53271. image: {
  53272. source: "./media/characters/ankou/head.svg"
  53273. }
  53274. },
  53275. },
  53276. [
  53277. {
  53278. name: "Normal",
  53279. height: math.unit(5 + 3/12, "feet"),
  53280. default: true
  53281. },
  53282. ]
  53283. ))
  53284. characterMakers.push(() => makeCharacter(
  53285. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53286. {
  53287. side: {
  53288. height: math.unit(6 + 3/12, "feet"),
  53289. weight: math.unit(200, "kg"),
  53290. name: "Side",
  53291. image: {
  53292. source: "./media/characters/juniper-skunktaur/side.svg",
  53293. extra: 1574/1229,
  53294. bottom: 38/1612
  53295. }
  53296. },
  53297. front: {
  53298. height: math.unit(6 + 3/12, "feet"),
  53299. weight: math.unit(200, "kg"),
  53300. name: "Front",
  53301. image: {
  53302. source: "./media/characters/juniper-skunktaur/front.svg",
  53303. extra: 1337/1278,
  53304. bottom: 22/1359
  53305. }
  53306. },
  53307. back: {
  53308. height: math.unit(6 + 3/12, "feet"),
  53309. weight: math.unit(200, "kg"),
  53310. name: "Back",
  53311. image: {
  53312. source: "./media/characters/juniper-skunktaur/back.svg",
  53313. extra: 1618/1273,
  53314. bottom: 13/1631
  53315. }
  53316. },
  53317. top: {
  53318. height: math.unit(2.62, "feet"),
  53319. weight: math.unit(200, "kg"),
  53320. name: "Top",
  53321. image: {
  53322. source: "./media/characters/juniper-skunktaur/top.svg"
  53323. }
  53324. },
  53325. },
  53326. [
  53327. {
  53328. name: "Normal",
  53329. height: math.unit(6 + 3/12, "feet"),
  53330. default: true
  53331. },
  53332. ]
  53333. ))
  53334. characterMakers.push(() => makeCharacter(
  53335. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53336. {
  53337. front: {
  53338. height: math.unit(20.5, "feet"),
  53339. name: "Front",
  53340. image: {
  53341. source: "./media/characters/rei/front.svg",
  53342. extra: 1349/1195,
  53343. bottom: 31/1380
  53344. }
  53345. },
  53346. back: {
  53347. height: math.unit(20.5, "feet"),
  53348. name: "Back",
  53349. image: {
  53350. source: "./media/characters/rei/back.svg",
  53351. extra: 1358/1204,
  53352. bottom: 22/1380
  53353. }
  53354. },
  53355. pawsDigi: {
  53356. height: math.unit(3.45, "feet"),
  53357. name: "Paws (Digi)",
  53358. image: {
  53359. source: "./media/characters/rei/paws-digi.svg"
  53360. }
  53361. },
  53362. pawsPlanti: {
  53363. height: math.unit(3.45, "feet"),
  53364. name: "Paws (Planti)",
  53365. image: {
  53366. source: "./media/characters/rei/paws-planti.svg"
  53367. }
  53368. },
  53369. },
  53370. [
  53371. {
  53372. name: "Normal",
  53373. height: math.unit(20.5, "feet"),
  53374. default: true
  53375. },
  53376. ]
  53377. ))
  53378. characterMakers.push(() => makeCharacter(
  53379. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53380. {
  53381. front: {
  53382. height: math.unit(5 + 11/12, "feet"),
  53383. name: "Front",
  53384. image: {
  53385. source: "./media/characters/carina/front.svg",
  53386. extra: 1720/1449,
  53387. bottom: 14/1734
  53388. }
  53389. },
  53390. back: {
  53391. height: math.unit(5 + 11/12, "feet"),
  53392. name: "Back",
  53393. image: {
  53394. source: "./media/characters/carina/back.svg",
  53395. extra: 1493/1445,
  53396. bottom: 17/1510
  53397. }
  53398. },
  53399. paw: {
  53400. height: math.unit(0.92, "feet"),
  53401. name: "Paw",
  53402. image: {
  53403. source: "./media/characters/carina/paw.svg"
  53404. }
  53405. },
  53406. },
  53407. [
  53408. {
  53409. name: "Normal",
  53410. height: math.unit(5 + 11/12, "feet"),
  53411. default: true
  53412. },
  53413. ]
  53414. ))
  53415. characterMakers.push(() => makeCharacter(
  53416. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53417. {
  53418. normal_front: {
  53419. height: math.unit(4.88, "meters"),
  53420. name: "Front",
  53421. image: {
  53422. source: "./media/characters/maya/normal-front.svg",
  53423. extra: 1222/1145,
  53424. bottom: 57/1279
  53425. },
  53426. form: "normal",
  53427. default: true
  53428. },
  53429. monstrous_front: {
  53430. height: math.unit(10, "meters"),
  53431. name: "Front",
  53432. image: {
  53433. source: "./media/characters/maya/monstrous-front.svg",
  53434. extra: 1523/1109,
  53435. bottom: 113/1636
  53436. },
  53437. form: "monstrous",
  53438. extraAttributes: {
  53439. "swallowSize": {
  53440. name: "Tailmaw Bite Size",
  53441. power: 3,
  53442. type: "volume",
  53443. base: math.unit(43000, "liters")
  53444. },
  53445. }
  53446. },
  53447. taur_front: {
  53448. height: math.unit(10, "meters"),
  53449. name: "Front",
  53450. image: {
  53451. source: "./media/characters/maya/taur-front.svg",
  53452. extra: 743/506,
  53453. bottom: 101/844
  53454. },
  53455. form: "taur",
  53456. },
  53457. },
  53458. [
  53459. {
  53460. name: "Normal",
  53461. height: math.unit(4.88, "meters"),
  53462. default: true,
  53463. form: "normal"
  53464. },
  53465. {
  53466. name: "Macro",
  53467. height: math.unit(38.1, "meters"),
  53468. form: "normal"
  53469. },
  53470. {
  53471. name: "Macro+",
  53472. height: math.unit(152.4, "meters"),
  53473. form: "normal"
  53474. },
  53475. {
  53476. name: "Macro++",
  53477. height: math.unit(16.09, "km"),
  53478. form: "normal"
  53479. },
  53480. {
  53481. name: "Mega-macro",
  53482. height: math.unit(700, "megameters"),
  53483. form: "normal"
  53484. },
  53485. {
  53486. name: "Satiated",
  53487. height: math.unit(10, "meters"),
  53488. default: true,
  53489. form: "monstrous"
  53490. },
  53491. {
  53492. name: "Hungry",
  53493. height: math.unit(75, "meters"),
  53494. form: "monstrous"
  53495. },
  53496. {
  53497. name: "Ravenous",
  53498. height: math.unit(500, "meters"),
  53499. form: "monstrous"
  53500. },
  53501. {
  53502. name: "\"Normal\"",
  53503. height: math.unit(10, "meters"),
  53504. form: "taur"
  53505. },
  53506. {
  53507. name: "Macro",
  53508. height: math.unit(50, "meters"),
  53509. form: "taur"
  53510. },
  53511. ],
  53512. {
  53513. "normal": {
  53514. name: "Normal",
  53515. default: true
  53516. },
  53517. "monstrous": {
  53518. name: "Monstrous",
  53519. },
  53520. "taur": {
  53521. name: "Taur",
  53522. },
  53523. }
  53524. ))
  53525. characterMakers.push(() => makeCharacter(
  53526. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53527. {
  53528. front: {
  53529. height: math.unit(6 + 2/12, "feet"),
  53530. weight: math.unit(500, "lb"),
  53531. preyCapacity: math.unit(4, "people"),
  53532. name: "Front",
  53533. image: {
  53534. source: "./media/characters/yepir/front.svg"
  53535. }
  53536. },
  53537. side: {
  53538. height: math.unit(6 + 2/12, "feet"),
  53539. weight: math.unit(500, "lb"),
  53540. preyCapacity: math.unit(4, "people"),
  53541. name: "Side",
  53542. image: {
  53543. source: "./media/characters/yepir/side.svg"
  53544. }
  53545. },
  53546. paw: {
  53547. height: math.unit(1.05, "feet"),
  53548. name: "Paw",
  53549. image: {
  53550. source: "./media/characters/yepir/paw.svg"
  53551. }
  53552. },
  53553. },
  53554. [
  53555. {
  53556. name: "Normal",
  53557. height: math.unit(6 + 2/12, "feet"),
  53558. default: true
  53559. },
  53560. ]
  53561. ))
  53562. characterMakers.push(() => makeCharacter(
  53563. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53564. {
  53565. front: {
  53566. height: math.unit(5 + 4/12, "feet"),
  53567. name: "Front",
  53568. image: {
  53569. source: "./media/characters/russec/front.svg",
  53570. extra: 1926/1626,
  53571. bottom: 72/1998
  53572. }
  53573. },
  53574. back: {
  53575. height: math.unit(5 + 4/12, "feet"),
  53576. name: "Back",
  53577. image: {
  53578. source: "./media/characters/russec/back.svg",
  53579. extra: 1910/1591,
  53580. bottom: 48/1958
  53581. }
  53582. },
  53583. },
  53584. [
  53585. {
  53586. name: "Small",
  53587. height: math.unit(5 + 4/12, "feet")
  53588. },
  53589. {
  53590. name: "Normal",
  53591. height: math.unit(72, "feet"),
  53592. default: true
  53593. },
  53594. ]
  53595. ))
  53596. characterMakers.push(() => makeCharacter(
  53597. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53598. {
  53599. side: {
  53600. height: math.unit(12, "feet"),
  53601. name: "Side",
  53602. image: {
  53603. source: "./media/characters/cianus/side.svg",
  53604. extra: 808/526,
  53605. bottom: 61/869
  53606. }
  53607. },
  53608. },
  53609. [
  53610. {
  53611. name: "Normal",
  53612. height: math.unit(12, "feet"),
  53613. default: true
  53614. },
  53615. ]
  53616. ))
  53617. characterMakers.push(() => makeCharacter(
  53618. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53619. {
  53620. front: {
  53621. height: math.unit(9 + 6/12, "feet"),
  53622. weight: math.unit(300, "lb"),
  53623. name: "Front",
  53624. image: {
  53625. source: "./media/characters/ahab/front.svg",
  53626. extra: 1897/1868,
  53627. bottom: 121/2018
  53628. }
  53629. },
  53630. frontNsfw: {
  53631. height: math.unit(9 + 6/12, "feet"),
  53632. weight: math.unit(300, "lb"),
  53633. name: "Front-nsfw",
  53634. image: {
  53635. source: "./media/characters/ahab/front-nsfw.svg",
  53636. extra: 1897/1868,
  53637. bottom: 121/2018
  53638. }
  53639. },
  53640. },
  53641. [
  53642. {
  53643. name: "Normal",
  53644. height: math.unit(9 + 6/12, "feet")
  53645. },
  53646. {
  53647. name: "Macro",
  53648. height: math.unit(657, "feet"),
  53649. default: true
  53650. },
  53651. ]
  53652. ))
  53653. characterMakers.push(() => makeCharacter(
  53654. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53655. {
  53656. front: {
  53657. height: math.unit(2.69, "meters"),
  53658. weight: math.unit(132, "kg"),
  53659. name: "Front",
  53660. image: {
  53661. source: "./media/characters/aarkus/front.svg",
  53662. extra: 1400/1231,
  53663. bottom: 34/1434
  53664. }
  53665. },
  53666. back: {
  53667. height: math.unit(2.69, "meters"),
  53668. weight: math.unit(132, "kg"),
  53669. name: "Back",
  53670. image: {
  53671. source: "./media/characters/aarkus/back.svg",
  53672. extra: 1381/1218,
  53673. bottom: 30/1411
  53674. }
  53675. },
  53676. frontNsfw: {
  53677. height: math.unit(2.69, "meters"),
  53678. weight: math.unit(132, "kg"),
  53679. name: "Front (NSFW)",
  53680. image: {
  53681. source: "./media/characters/aarkus/front-nsfw.svg",
  53682. extra: 1400/1231,
  53683. bottom: 34/1434
  53684. }
  53685. },
  53686. foot: {
  53687. height: math.unit(1.45, "feet"),
  53688. name: "Foot",
  53689. image: {
  53690. source: "./media/characters/aarkus/foot.svg"
  53691. }
  53692. },
  53693. head: {
  53694. height: math.unit(2.85, "feet"),
  53695. name: "Head",
  53696. image: {
  53697. source: "./media/characters/aarkus/head.svg"
  53698. }
  53699. },
  53700. headAlt: {
  53701. height: math.unit(3.07, "feet"),
  53702. name: "Head (Alt)",
  53703. image: {
  53704. source: "./media/characters/aarkus/head-alt.svg"
  53705. }
  53706. },
  53707. mouth: {
  53708. height: math.unit(1.25, "feet"),
  53709. name: "Mouth",
  53710. image: {
  53711. source: "./media/characters/aarkus/mouth.svg"
  53712. }
  53713. },
  53714. dick: {
  53715. height: math.unit(1.77, "feet"),
  53716. name: "Dick",
  53717. image: {
  53718. source: "./media/characters/aarkus/dick.svg"
  53719. }
  53720. },
  53721. },
  53722. [
  53723. {
  53724. name: "Normal",
  53725. height: math.unit(2.69, "meters"),
  53726. default: true
  53727. },
  53728. {
  53729. name: "Macro",
  53730. height: math.unit(269, "meters")
  53731. },
  53732. {
  53733. name: "Macro+",
  53734. height: math.unit(672.5, "meters")
  53735. },
  53736. {
  53737. name: "Megamacro",
  53738. height: math.unit(2.017, "km")
  53739. },
  53740. ]
  53741. ))
  53742. characterMakers.push(() => makeCharacter(
  53743. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53744. {
  53745. front: {
  53746. height: math.unit(23.47, "cm"),
  53747. weight: math.unit(600, "grams"),
  53748. name: "Front",
  53749. image: {
  53750. source: "./media/characters/diode/front.svg",
  53751. extra: 1778/1396,
  53752. bottom: 95/1873
  53753. }
  53754. },
  53755. side: {
  53756. height: math.unit(23.47, "cm"),
  53757. weight: math.unit(600, "grams"),
  53758. name: "Side",
  53759. image: {
  53760. source: "./media/characters/diode/side.svg",
  53761. extra: 1831/1404,
  53762. bottom: 86/1917
  53763. }
  53764. },
  53765. wings: {
  53766. height: math.unit(0.683, "feet"),
  53767. name: "Wings",
  53768. image: {
  53769. source: "./media/characters/diode/wings.svg"
  53770. }
  53771. },
  53772. },
  53773. [
  53774. {
  53775. name: "Normal",
  53776. height: math.unit(23.47, "cm"),
  53777. default: true
  53778. },
  53779. ]
  53780. ))
  53781. characterMakers.push(() => makeCharacter(
  53782. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53783. {
  53784. front: {
  53785. height: math.unit(6 + 3/12, "feet"),
  53786. weight: math.unit(250, "lb"),
  53787. name: "Front",
  53788. image: {
  53789. source: "./media/characters/reika/front.svg",
  53790. extra: 1120/1078,
  53791. bottom: 86/1206
  53792. }
  53793. },
  53794. },
  53795. [
  53796. {
  53797. name: "Normal",
  53798. height: math.unit(6 + 3/12, "feet"),
  53799. default: true
  53800. },
  53801. ]
  53802. ))
  53803. characterMakers.push(() => makeCharacter(
  53804. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53805. {
  53806. front: {
  53807. height: math.unit(16 + 8/12, "feet"),
  53808. weight: math.unit(9000, "lb"),
  53809. name: "Front",
  53810. image: {
  53811. source: "./media/characters/lokuto-takama/front.svg",
  53812. extra: 1774/1632,
  53813. bottom: 147/1921
  53814. },
  53815. extraAttributes: {
  53816. "bustWidth": {
  53817. name: "Bust Width",
  53818. power: 1,
  53819. type: "length",
  53820. base: math.unit(2.4, "meters")
  53821. },
  53822. "breastWeight": {
  53823. name: "Breast Weight",
  53824. power: 3,
  53825. type: "mass",
  53826. base: math.unit(1000, "kg")
  53827. },
  53828. }
  53829. },
  53830. },
  53831. [
  53832. {
  53833. name: "Normal",
  53834. height: math.unit(16 + 8/12, "feet"),
  53835. default: true
  53836. },
  53837. ]
  53838. ))
  53839. characterMakers.push(() => makeCharacter(
  53840. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53841. {
  53842. front: {
  53843. height: math.unit(10, "cm"),
  53844. weight: math.unit(850, "grams"),
  53845. name: "Front",
  53846. image: {
  53847. source: "./media/characters/owak-bone/front.svg",
  53848. extra: 1965/1801,
  53849. bottom: 31/1996
  53850. }
  53851. },
  53852. },
  53853. [
  53854. {
  53855. name: "Normal",
  53856. height: math.unit(10, "cm"),
  53857. default: true
  53858. },
  53859. ]
  53860. ))
  53861. characterMakers.push(() => makeCharacter(
  53862. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53863. {
  53864. front: {
  53865. height: math.unit(2 + 6/12, "feet"),
  53866. weight: math.unit(9, "lb"),
  53867. name: "Front",
  53868. image: {
  53869. source: "./media/characters/muffin/front.svg",
  53870. extra: 1220/1195,
  53871. bottom: 84/1304
  53872. }
  53873. },
  53874. },
  53875. [
  53876. {
  53877. name: "Normal",
  53878. height: math.unit(2 + 6/12, "feet"),
  53879. default: true
  53880. },
  53881. ]
  53882. ))
  53883. characterMakers.push(() => makeCharacter(
  53884. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53885. {
  53886. front: {
  53887. height: math.unit(7, "feet"),
  53888. name: "Front",
  53889. image: {
  53890. source: "./media/characters/chimera/front.svg",
  53891. extra: 1752/1614,
  53892. bottom: 68/1820
  53893. }
  53894. },
  53895. },
  53896. [
  53897. {
  53898. name: "Normal",
  53899. height: math.unit(7, "feet")
  53900. },
  53901. {
  53902. name: "Gigamacro",
  53903. height: math.unit(2.9, "gigameters"),
  53904. default: true
  53905. },
  53906. {
  53907. name: "Universal",
  53908. height: math.unit(1.56e26, "yottameters")
  53909. },
  53910. ]
  53911. ))
  53912. characterMakers.push(() => makeCharacter(
  53913. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53914. {
  53915. front: {
  53916. height: math.unit(3, "feet"),
  53917. weight: math.unit(20, "lb"),
  53918. name: "Front",
  53919. image: {
  53920. source: "./media/characters/kit-fennec-fox/front.svg",
  53921. extra: 1027/932,
  53922. bottom: 16/1043
  53923. }
  53924. },
  53925. back: {
  53926. height: math.unit(3, "feet"),
  53927. weight: math.unit(20, "lb"),
  53928. name: "Back",
  53929. image: {
  53930. source: "./media/characters/kit-fennec-fox/back.svg",
  53931. extra: 1027/932,
  53932. bottom: 16/1043
  53933. }
  53934. },
  53935. },
  53936. [
  53937. {
  53938. name: "Normal",
  53939. height: math.unit(3, "feet"),
  53940. default: true
  53941. },
  53942. ]
  53943. ))
  53944. characterMakers.push(() => makeCharacter(
  53945. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53946. {
  53947. front: {
  53948. height: math.unit(167, "cm"),
  53949. name: "Front",
  53950. image: {
  53951. source: "./media/characters/blue-otter/front.svg",
  53952. extra: 1951/1920,
  53953. bottom: 31/1982
  53954. }
  53955. },
  53956. },
  53957. [
  53958. {
  53959. name: "Otter-Sized",
  53960. height: math.unit(100, "cm")
  53961. },
  53962. {
  53963. name: "Normal",
  53964. height: math.unit(167, "cm"),
  53965. default: true
  53966. },
  53967. ]
  53968. ))
  53969. characterMakers.push(() => makeCharacter(
  53970. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53971. {
  53972. front: {
  53973. height: math.unit(4 + 4/12, "feet"),
  53974. name: "Front",
  53975. image: {
  53976. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53977. extra: 1072/1067,
  53978. bottom: 117/1189
  53979. }
  53980. },
  53981. back: {
  53982. height: math.unit(4 + 4/12, "feet"),
  53983. name: "Back",
  53984. image: {
  53985. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53986. extra: 1135/1129,
  53987. bottom: 57/1192
  53988. }
  53989. },
  53990. head: {
  53991. height: math.unit(1.77, "feet"),
  53992. name: "Head",
  53993. image: {
  53994. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53995. }
  53996. },
  53997. },
  53998. [
  53999. {
  54000. name: "Normal",
  54001. height: math.unit(4 + 4/12, "feet"),
  54002. default: true
  54003. },
  54004. ]
  54005. ))
  54006. characterMakers.push(() => makeCharacter(
  54007. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54008. {
  54009. front: {
  54010. height: math.unit(2, "inches"),
  54011. name: "Front",
  54012. image: {
  54013. source: "./media/characters/carley-hartford/front.svg",
  54014. extra: 1035/988,
  54015. bottom: 23/1058
  54016. }
  54017. },
  54018. back: {
  54019. height: math.unit(2, "inches"),
  54020. name: "Back",
  54021. image: {
  54022. source: "./media/characters/carley-hartford/back.svg",
  54023. extra: 1035/988,
  54024. bottom: 23/1058
  54025. }
  54026. },
  54027. dressed: {
  54028. height: math.unit(2, "inches"),
  54029. name: "Dressed",
  54030. image: {
  54031. source: "./media/characters/carley-hartford/dressed.svg",
  54032. extra: 651/620,
  54033. bottom: 0/651
  54034. }
  54035. },
  54036. },
  54037. [
  54038. {
  54039. name: "Micro",
  54040. height: math.unit(2, "inches"),
  54041. default: true
  54042. },
  54043. {
  54044. name: "Macro",
  54045. height: math.unit(6 + 3/12, "feet")
  54046. },
  54047. ]
  54048. ))
  54049. characterMakers.push(() => makeCharacter(
  54050. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54051. {
  54052. front: {
  54053. height: math.unit(2 + 3/12, "feet"),
  54054. weight: math.unit(15 + 7/16, "lb"),
  54055. name: "Front",
  54056. image: {
  54057. source: "./media/characters/duke/front.svg",
  54058. extra: 910/815,
  54059. bottom: 30/940
  54060. }
  54061. },
  54062. },
  54063. [
  54064. {
  54065. name: "Normal",
  54066. height: math.unit(2 + 3/12, "feet"),
  54067. default: true
  54068. },
  54069. ]
  54070. ))
  54071. characterMakers.push(() => makeCharacter(
  54072. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54073. {
  54074. front: {
  54075. height: math.unit(5 + 4/12, "feet"),
  54076. weight: math.unit(156, "lb"),
  54077. name: "Front",
  54078. image: {
  54079. source: "./media/characters/dein/front.svg",
  54080. extra: 855/815,
  54081. bottom: 48/903
  54082. }
  54083. },
  54084. side: {
  54085. height: math.unit(5 + 4/12, "feet"),
  54086. weight: math.unit(156, "lb"),
  54087. name: "side",
  54088. image: {
  54089. source: "./media/characters/dein/side.svg",
  54090. extra: 846/803,
  54091. bottom: 25/871
  54092. }
  54093. },
  54094. maw: {
  54095. height: math.unit(1.45, "feet"),
  54096. name: "Maw",
  54097. image: {
  54098. source: "./media/characters/dein/maw.svg"
  54099. }
  54100. },
  54101. },
  54102. [
  54103. {
  54104. name: "Ferret Sized",
  54105. height: math.unit(2 + 5/12, "feet")
  54106. },
  54107. {
  54108. name: "Normal",
  54109. height: math.unit(5 + 4/12, "feet"),
  54110. default: true
  54111. },
  54112. ]
  54113. ))
  54114. characterMakers.push(() => makeCharacter(
  54115. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54116. {
  54117. front: {
  54118. height: math.unit(84 + 8/12, "feet"),
  54119. weight: math.unit(942180, "lb"),
  54120. name: "Front",
  54121. image: {
  54122. source: "./media/characters/daurine-arima/front.svg",
  54123. extra: 1989/1782,
  54124. bottom: 37/2026
  54125. }
  54126. },
  54127. side: {
  54128. height: math.unit(84 + 8/12, "feet"),
  54129. weight: math.unit(942180, "lb"),
  54130. name: "Side",
  54131. image: {
  54132. source: "./media/characters/daurine-arima/side.svg",
  54133. extra: 1997/1790,
  54134. bottom: 21/2018
  54135. }
  54136. },
  54137. back: {
  54138. height: math.unit(84 + 8/12, "feet"),
  54139. weight: math.unit(942180, "lb"),
  54140. name: "Back",
  54141. image: {
  54142. source: "./media/characters/daurine-arima/back.svg",
  54143. extra: 1992/1800,
  54144. bottom: 12/2004
  54145. }
  54146. },
  54147. head: {
  54148. height: math.unit(15.5, "feet"),
  54149. name: "Head",
  54150. image: {
  54151. source: "./media/characters/daurine-arima/head.svg"
  54152. }
  54153. },
  54154. headAlt: {
  54155. height: math.unit(19.19, "feet"),
  54156. name: "Head (Alt)",
  54157. image: {
  54158. source: "./media/characters/daurine-arima/head-alt.svg"
  54159. }
  54160. },
  54161. },
  54162. [
  54163. {
  54164. name: "Minimum height",
  54165. height: math.unit(8 + 10/12, "feet")
  54166. },
  54167. {
  54168. name: "Comfort height",
  54169. height: math.unit(19 + 6 /12, "feet")
  54170. },
  54171. {
  54172. name: "\"Normal\" height",
  54173. height: math.unit(28 + 10/12, "feet")
  54174. },
  54175. {
  54176. name: "Base height",
  54177. height: math.unit(84 + 8/12, "feet"),
  54178. default: true
  54179. },
  54180. {
  54181. name: "Mini-macro",
  54182. height: math.unit(2360, "feet")
  54183. },
  54184. {
  54185. name: "Macro",
  54186. height: math.unit(10, "miles")
  54187. },
  54188. {
  54189. name: "Goddess",
  54190. height: math.unit(9.99e40, "yottameters")
  54191. },
  54192. ]
  54193. ))
  54194. characterMakers.push(() => makeCharacter(
  54195. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54196. {
  54197. front: {
  54198. height: math.unit(2.3, "meters"),
  54199. name: "Front",
  54200. image: {
  54201. source: "./media/characters/cilenomon/front.svg",
  54202. extra: 1963/1778,
  54203. bottom: 54/2017
  54204. }
  54205. },
  54206. },
  54207. [
  54208. {
  54209. name: "Normal",
  54210. height: math.unit(2.3, "meters"),
  54211. default: true
  54212. },
  54213. {
  54214. name: "Big",
  54215. height: math.unit(5, "meters")
  54216. },
  54217. {
  54218. name: "Macro",
  54219. height: math.unit(30, "meters")
  54220. },
  54221. {
  54222. name: "True",
  54223. height: math.unit(1, "universe")
  54224. },
  54225. ]
  54226. ))
  54227. characterMakers.push(() => makeCharacter(
  54228. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54229. {
  54230. front: {
  54231. height: math.unit(5, "feet"),
  54232. name: "Front",
  54233. image: {
  54234. source: "./media/characters/sen-mink/front.svg",
  54235. extra: 1727/1675,
  54236. bottom: 35/1762
  54237. }
  54238. },
  54239. },
  54240. [
  54241. {
  54242. name: "Normal",
  54243. height: math.unit(5, "feet"),
  54244. default: true
  54245. },
  54246. ]
  54247. ))
  54248. characterMakers.push(() => makeCharacter(
  54249. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54250. {
  54251. front: {
  54252. height: math.unit(5.42999, "feet"),
  54253. weight: math.unit(100, "lb"),
  54254. name: "Front",
  54255. image: {
  54256. source: "./media/characters/ophois/front.svg",
  54257. extra: 1429/1286,
  54258. bottom: 60/1489
  54259. }
  54260. },
  54261. },
  54262. [
  54263. {
  54264. name: "Normal",
  54265. height: math.unit(5.42999, "feet"),
  54266. default: true
  54267. },
  54268. ]
  54269. ))
  54270. characterMakers.push(() => makeCharacter(
  54271. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54272. {
  54273. front: {
  54274. height: math.unit(2, "meters"),
  54275. name: "Front",
  54276. image: {
  54277. source: "./media/characters/riley/front.svg",
  54278. extra: 1779/1754,
  54279. bottom: 139/1918
  54280. }
  54281. },
  54282. },
  54283. [
  54284. {
  54285. name: "Normal",
  54286. height: math.unit(2, "meters"),
  54287. default: true
  54288. },
  54289. ]
  54290. ))
  54291. characterMakers.push(() => makeCharacter(
  54292. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54293. {
  54294. front: {
  54295. height: math.unit(6 + 2/12, "feet"),
  54296. weight: math.unit(195, "lb"),
  54297. preyCapacity: math.unit(6, "people"),
  54298. name: "Front",
  54299. image: {
  54300. source: "./media/characters/shuken-flash/front.svg",
  54301. extra: 1905/1739,
  54302. bottom: 65/1970
  54303. }
  54304. },
  54305. back: {
  54306. height: math.unit(6 + 2/12, "feet"),
  54307. weight: math.unit(195, "lb"),
  54308. preyCapacity: math.unit(6, "people"),
  54309. name: "Back",
  54310. image: {
  54311. source: "./media/characters/shuken-flash/back.svg",
  54312. extra: 1912/1751,
  54313. bottom: 13/1925
  54314. }
  54315. },
  54316. },
  54317. [
  54318. {
  54319. name: "Normal",
  54320. height: math.unit(6 + 2/12, "feet"),
  54321. default: true
  54322. },
  54323. ]
  54324. ))
  54325. characterMakers.push(() => makeCharacter(
  54326. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54327. {
  54328. front: {
  54329. height: math.unit(5 + 9/12, "feet"),
  54330. weight: math.unit(150, "lb"),
  54331. name: "Front",
  54332. image: {
  54333. source: "./media/characters/plat/front.svg",
  54334. extra: 1816/1703,
  54335. bottom: 43/1859
  54336. }
  54337. },
  54338. side: {
  54339. height: math.unit(5 + 9/12, "feet"),
  54340. weight: math.unit(300, "lb"),
  54341. name: "Side",
  54342. image: {
  54343. source: "./media/characters/plat/side.svg",
  54344. extra: 1824/1699,
  54345. bottom: 18/1842
  54346. }
  54347. },
  54348. },
  54349. [
  54350. {
  54351. name: "Normal",
  54352. height: math.unit(5 + 9/12, "feet"),
  54353. default: true
  54354. },
  54355. ]
  54356. ))
  54357. characterMakers.push(() => makeCharacter(
  54358. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54359. {
  54360. front: {
  54361. height: math.unit(9, "feet"),
  54362. weight: math.unit(1800, "lb"),
  54363. name: "Front",
  54364. image: {
  54365. source: "./media/characters/elaine/front.svg",
  54366. extra: 1833/1354,
  54367. bottom: 25/1858
  54368. }
  54369. },
  54370. back: {
  54371. height: math.unit(8.8, "feet"),
  54372. weight: math.unit(1800, "lb"),
  54373. name: "Back",
  54374. image: {
  54375. source: "./media/characters/elaine/back.svg",
  54376. extra: 1641/1233,
  54377. bottom: 53/1694
  54378. }
  54379. },
  54380. },
  54381. [
  54382. {
  54383. name: "Normal",
  54384. height: math.unit(9, "feet"),
  54385. default: true
  54386. },
  54387. ]
  54388. ))
  54389. characterMakers.push(() => makeCharacter(
  54390. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54391. {
  54392. front: {
  54393. height: math.unit(17 + 9/12, "feet"),
  54394. weight: math.unit(8000, "lb"),
  54395. name: "Front",
  54396. image: {
  54397. source: "./media/characters/vera-raven/front.svg",
  54398. extra: 1457/1412,
  54399. bottom: 121/1578
  54400. }
  54401. },
  54402. side: {
  54403. height: math.unit(17 + 9/12, "feet"),
  54404. weight: math.unit(8000, "lb"),
  54405. name: "Side",
  54406. image: {
  54407. source: "./media/characters/vera-raven/side.svg",
  54408. extra: 1510/1464,
  54409. bottom: 54/1564
  54410. }
  54411. },
  54412. },
  54413. [
  54414. {
  54415. name: "Normal",
  54416. height: math.unit(17 + 9/12, "feet"),
  54417. default: true
  54418. },
  54419. ]
  54420. ))
  54421. characterMakers.push(() => makeCharacter(
  54422. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54423. {
  54424. dressed: {
  54425. height: math.unit(6 + 9/12, "feet"),
  54426. name: "Dressed",
  54427. image: {
  54428. source: "./media/characters/nakisha/dressed.svg",
  54429. extra: 1909/1757,
  54430. bottom: 48/1957
  54431. }
  54432. },
  54433. nude: {
  54434. height: math.unit(6 + 9/12, "feet"),
  54435. name: "Nude",
  54436. image: {
  54437. source: "./media/characters/nakisha/nude.svg",
  54438. extra: 1917/1765,
  54439. bottom: 34/1951
  54440. }
  54441. },
  54442. },
  54443. [
  54444. {
  54445. name: "Normal",
  54446. height: math.unit(6 + 9/12, "feet"),
  54447. default: true
  54448. },
  54449. ]
  54450. ))
  54451. characterMakers.push(() => makeCharacter(
  54452. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54453. {
  54454. front: {
  54455. height: math.unit(87, "meters"),
  54456. name: "Front",
  54457. image: {
  54458. source: "./media/characters/serafin/front.svg",
  54459. extra: 1919/1776,
  54460. bottom: 65/1984
  54461. }
  54462. },
  54463. },
  54464. [
  54465. {
  54466. name: "Normal",
  54467. height: math.unit(87, "meters"),
  54468. default: true
  54469. },
  54470. ]
  54471. ))
  54472. characterMakers.push(() => makeCharacter(
  54473. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54474. {
  54475. front: {
  54476. height: math.unit(6, "feet"),
  54477. weight: math.unit(200, "lb"),
  54478. name: "Front",
  54479. image: {
  54480. source: "./media/characters/poptart/front.svg",
  54481. extra: 615/583,
  54482. bottom: 23/638
  54483. }
  54484. },
  54485. back: {
  54486. height: math.unit(6, "feet"),
  54487. weight: math.unit(200, "lb"),
  54488. name: "Back",
  54489. image: {
  54490. source: "./media/characters/poptart/back.svg",
  54491. extra: 617/584,
  54492. bottom: 22/639
  54493. }
  54494. },
  54495. frontNsfw: {
  54496. height: math.unit(6, "feet"),
  54497. weight: math.unit(200, "lb"),
  54498. name: "Front (NSFW)",
  54499. image: {
  54500. source: "./media/characters/poptart/front-nsfw.svg",
  54501. extra: 615/583,
  54502. bottom: 23/638
  54503. }
  54504. },
  54505. backNsfw: {
  54506. height: math.unit(6, "feet"),
  54507. weight: math.unit(200, "lb"),
  54508. name: "Back (NSFW)",
  54509. image: {
  54510. source: "./media/characters/poptart/back-nsfw.svg",
  54511. extra: 617/584,
  54512. bottom: 22/639
  54513. }
  54514. },
  54515. hand: {
  54516. height: math.unit(1.14, "feet"),
  54517. name: "Hand",
  54518. image: {
  54519. source: "./media/characters/poptart/hand.svg"
  54520. }
  54521. },
  54522. foot: {
  54523. height: math.unit(1.5, "feet"),
  54524. name: "Foot",
  54525. image: {
  54526. source: "./media/characters/poptart/foot.svg"
  54527. }
  54528. },
  54529. },
  54530. [
  54531. {
  54532. name: "Normal",
  54533. height: math.unit(6, "feet"),
  54534. default: true
  54535. },
  54536. {
  54537. name: "Grande",
  54538. height: math.unit(350, "feet")
  54539. },
  54540. {
  54541. name: "Massif",
  54542. height: math.unit(967, "feet")
  54543. },
  54544. ]
  54545. ))
  54546. characterMakers.push(() => makeCharacter(
  54547. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54548. {
  54549. hyenaSide: {
  54550. height: math.unit(120, "cm"),
  54551. weight: math.unit(120, "lb"),
  54552. name: "Side",
  54553. image: {
  54554. source: "./media/characters/trance/hyena-side.svg",
  54555. extra: 998/904,
  54556. bottom: 76/1074
  54557. }
  54558. },
  54559. },
  54560. [
  54561. {
  54562. name: "Normal",
  54563. height: math.unit(120, "cm"),
  54564. default: true
  54565. },
  54566. {
  54567. name: "Dire",
  54568. height: math.unit(230, "cm")
  54569. },
  54570. {
  54571. name: "Macro",
  54572. height: math.unit(37, "feet")
  54573. },
  54574. ]
  54575. ))
  54576. characterMakers.push(() => makeCharacter(
  54577. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54578. {
  54579. front: {
  54580. height: math.unit(6 + 3/12, "feet"),
  54581. name: "Front",
  54582. image: {
  54583. source: "./media/characters/michael-berretta/front.svg",
  54584. extra: 515/494,
  54585. bottom: 20/535
  54586. }
  54587. },
  54588. back: {
  54589. height: math.unit(6 + 3/12, "feet"),
  54590. name: "Back",
  54591. image: {
  54592. source: "./media/characters/michael-berretta/back.svg",
  54593. extra: 520/497,
  54594. bottom: 21/541
  54595. }
  54596. },
  54597. frontNsfw: {
  54598. height: math.unit(6 + 3/12, "feet"),
  54599. name: "Front (NSFW)",
  54600. image: {
  54601. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54602. extra: 515/494,
  54603. bottom: 20/535
  54604. }
  54605. },
  54606. dick: {
  54607. height: math.unit(1, "feet"),
  54608. name: "Dick",
  54609. image: {
  54610. source: "./media/characters/michael-berretta/dick.svg"
  54611. }
  54612. },
  54613. },
  54614. [
  54615. {
  54616. name: "Normal",
  54617. height: math.unit(6 + 3/12, "feet"),
  54618. default: true
  54619. },
  54620. {
  54621. name: "Big",
  54622. height: math.unit(12, "feet")
  54623. },
  54624. {
  54625. name: "Macro",
  54626. height: math.unit(187.5, "feet")
  54627. },
  54628. ]
  54629. ))
  54630. characterMakers.push(() => makeCharacter(
  54631. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54632. {
  54633. front: {
  54634. height: math.unit(9 + 9/12, "feet"),
  54635. weight: math.unit(1244, "lb"),
  54636. name: "Front",
  54637. image: {
  54638. source: "./media/characters/stella-edgecomb/front.svg",
  54639. extra: 1835/1706,
  54640. bottom: 49/1884
  54641. }
  54642. },
  54643. pen: {
  54644. height: math.unit(0.95, "feet"),
  54645. name: "Pen",
  54646. image: {
  54647. source: "./media/characters/stella-edgecomb/pen.svg"
  54648. }
  54649. },
  54650. },
  54651. [
  54652. {
  54653. name: "Cozy Bear",
  54654. height: math.unit(0.5, "inches")
  54655. },
  54656. {
  54657. name: "Normal",
  54658. height: math.unit(9 + 9/12, "feet"),
  54659. default: true
  54660. },
  54661. {
  54662. name: "Giga Bear",
  54663. height: math.unit(1, "mile")
  54664. },
  54665. {
  54666. name: "Great Bear",
  54667. height: math.unit(53, "miles")
  54668. },
  54669. {
  54670. name: "Goddess Bear",
  54671. height: math.unit(40000, "miles")
  54672. },
  54673. {
  54674. name: "Sun Bear",
  54675. height: math.unit(900000, "miles")
  54676. },
  54677. ]
  54678. ))
  54679. characterMakers.push(() => makeCharacter(
  54680. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54681. {
  54682. anthroFront: {
  54683. height: math.unit(556, "cm"),
  54684. weight: math.unit(2650, "kg"),
  54685. preyCapacity: math.unit(3, "people"),
  54686. name: "Front",
  54687. image: {
  54688. source: "./media/characters/ash´iika/front.svg",
  54689. extra: 710/673,
  54690. bottom: 15/725
  54691. },
  54692. form: "anthro",
  54693. default: true
  54694. },
  54695. anthroSide: {
  54696. height: math.unit(556, "cm"),
  54697. weight: math.unit(2650, "kg"),
  54698. preyCapacity: math.unit(3, "people"),
  54699. name: "Side",
  54700. image: {
  54701. source: "./media/characters/ash´iika/side.svg",
  54702. extra: 696/676,
  54703. bottom: 13/709
  54704. },
  54705. form: "anthro"
  54706. },
  54707. anthroDressed: {
  54708. height: math.unit(556, "cm"),
  54709. weight: math.unit(2650, "kg"),
  54710. preyCapacity: math.unit(3, "people"),
  54711. name: "Dressed",
  54712. image: {
  54713. source: "./media/characters/ash´iika/dressed.svg",
  54714. extra: 710/673,
  54715. bottom: 15/725
  54716. },
  54717. form: "anthro"
  54718. },
  54719. anthroHead: {
  54720. height: math.unit(3.5, "feet"),
  54721. name: "Head",
  54722. image: {
  54723. source: "./media/characters/ash´iika/head.svg",
  54724. extra: 348/291,
  54725. bottom: 45/393
  54726. },
  54727. form: "anthro"
  54728. },
  54729. feralSide: {
  54730. height: math.unit(870, "cm"),
  54731. weight: math.unit(17500, "kg"),
  54732. preyCapacity: math.unit(15, "people"),
  54733. name: "Side",
  54734. image: {
  54735. source: "./media/characters/ash´iika/feral.svg",
  54736. extra: 595/199,
  54737. bottom: 7/602
  54738. },
  54739. form: "feral",
  54740. default: true,
  54741. },
  54742. },
  54743. [
  54744. {
  54745. name: "Normal",
  54746. height: math.unit(556, "cm"),
  54747. default: true,
  54748. form: "anthro"
  54749. },
  54750. {
  54751. name: "Macro",
  54752. height: math.unit(88, "meters"),
  54753. form: "anthro"
  54754. },
  54755. {
  54756. name: "Normal",
  54757. height: math.unit(870, "cm"),
  54758. default: true,
  54759. form: "feral"
  54760. },
  54761. {
  54762. name: "Large",
  54763. height: math.unit(25, "meters"),
  54764. form: "feral"
  54765. },
  54766. ],
  54767. {
  54768. "anthro": {
  54769. name: "Anthro",
  54770. default: true
  54771. },
  54772. "feral": {
  54773. name: "Feral",
  54774. },
  54775. }
  54776. ))
  54777. characterMakers.push(() => makeCharacter(
  54778. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54779. {
  54780. front: {
  54781. height: math.unit(10, "feet"),
  54782. weight: math.unit(800, "lb"),
  54783. name: "Front",
  54784. image: {
  54785. source: "./media/characters/yen/front.svg",
  54786. extra: 443/411,
  54787. bottom: 6/449
  54788. }
  54789. },
  54790. sleeping: {
  54791. height: math.unit(10, "feet"),
  54792. weight: math.unit(800, "lb"),
  54793. name: "Sleeping",
  54794. image: {
  54795. source: "./media/characters/yen/sleeping.svg",
  54796. extra: 470/422,
  54797. bottom: 0/470
  54798. }
  54799. },
  54800. head: {
  54801. height: math.unit(2.2, "feet"),
  54802. name: "Head",
  54803. image: {
  54804. source: "./media/characters/yen/head.svg"
  54805. }
  54806. },
  54807. headAlt: {
  54808. height: math.unit(2.1, "feet"),
  54809. name: "Head (Alt)",
  54810. image: {
  54811. source: "./media/characters/yen/head-alt.svg"
  54812. }
  54813. },
  54814. },
  54815. [
  54816. {
  54817. name: "Normal",
  54818. height: math.unit(10, "feet"),
  54819. default: true
  54820. },
  54821. ]
  54822. ))
  54823. characterMakers.push(() => makeCharacter(
  54824. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54825. {
  54826. front: {
  54827. height: math.unit(12, "feet"),
  54828. name: "Front",
  54829. image: {
  54830. source: "./media/characters/citra/front.svg",
  54831. extra: 1950/1710,
  54832. bottom: 47/1997
  54833. }
  54834. },
  54835. },
  54836. [
  54837. {
  54838. name: "Normal",
  54839. height: math.unit(12, "feet"),
  54840. default: true
  54841. },
  54842. ]
  54843. ))
  54844. characterMakers.push(() => makeCharacter(
  54845. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54846. {
  54847. side: {
  54848. height: math.unit(7 + 10/12, "feet"),
  54849. name: "Side",
  54850. image: {
  54851. source: "./media/characters/sholstim/side.svg",
  54852. extra: 786/682,
  54853. bottom: 40/826
  54854. }
  54855. },
  54856. },
  54857. [
  54858. {
  54859. name: "Normal",
  54860. height: math.unit(7 + 10/12, "feet"),
  54861. default: true
  54862. },
  54863. ]
  54864. ))
  54865. characterMakers.push(() => makeCharacter(
  54866. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54867. {
  54868. front: {
  54869. height: math.unit(3.10, "meters"),
  54870. name: "Front",
  54871. image: {
  54872. source: "./media/characters/aggyn/front.svg",
  54873. extra: 1188/963,
  54874. bottom: 24/1212
  54875. }
  54876. },
  54877. },
  54878. [
  54879. {
  54880. name: "Normal",
  54881. height: math.unit(3.10, "meters"),
  54882. default: true
  54883. },
  54884. ]
  54885. ))
  54886. characterMakers.push(() => makeCharacter(
  54887. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54888. {
  54889. front: {
  54890. height: math.unit(7 + 5/12, "feet"),
  54891. weight: math.unit(687, "lb"),
  54892. name: "Front",
  54893. image: {
  54894. source: "./media/characters/alsandair-hergenroether/front.svg",
  54895. extra: 1251/1186,
  54896. bottom: 75/1326
  54897. }
  54898. },
  54899. back: {
  54900. height: math.unit(7 + 5/12, "feet"),
  54901. weight: math.unit(687, "lb"),
  54902. name: "Back",
  54903. image: {
  54904. source: "./media/characters/alsandair-hergenroether/back.svg",
  54905. extra: 1290/1229,
  54906. bottom: 17/1307
  54907. }
  54908. },
  54909. },
  54910. [
  54911. {
  54912. name: "Max Compression",
  54913. height: math.unit(7 + 5/12, "feet"),
  54914. default: true
  54915. },
  54916. {
  54917. name: "\"Normal\"",
  54918. height: math.unit(2, "universes")
  54919. },
  54920. ]
  54921. ))
  54922. characterMakers.push(() => makeCharacter(
  54923. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54924. {
  54925. front: {
  54926. height: math.unit(4 + 1/12, "feet"),
  54927. weight: math.unit(92, "lb"),
  54928. name: "Front",
  54929. image: {
  54930. source: "./media/characters/ie/front.svg",
  54931. extra: 1585/1352,
  54932. bottom: 91/1676
  54933. }
  54934. },
  54935. },
  54936. [
  54937. {
  54938. name: "Normal",
  54939. height: math.unit(4 + 1/12, "feet"),
  54940. default: true
  54941. },
  54942. ]
  54943. ))
  54944. characterMakers.push(() => makeCharacter(
  54945. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54946. {
  54947. anthro: {
  54948. height: math.unit(6, "feet"),
  54949. weight: math.unit(150, "lb"),
  54950. name: "Front",
  54951. image: {
  54952. source: "./media/characters/willow/anthro.svg",
  54953. extra: 1073/986,
  54954. bottom: 34/1107
  54955. },
  54956. form: "anthro",
  54957. default: true
  54958. },
  54959. taur: {
  54960. height: math.unit(6, "feet"),
  54961. weight: math.unit(150, "lb"),
  54962. name: "Side",
  54963. image: {
  54964. source: "./media/characters/willow/taur.svg",
  54965. extra: 647/512,
  54966. bottom: 136/783
  54967. },
  54968. form: "taur",
  54969. default: true
  54970. },
  54971. },
  54972. [
  54973. {
  54974. name: "Humanoid",
  54975. height: math.unit(2.7, "meters"),
  54976. form: "anthro"
  54977. },
  54978. {
  54979. name: "Normal",
  54980. height: math.unit(9, "meters"),
  54981. form: "anthro",
  54982. default: true
  54983. },
  54984. {
  54985. name: "Humanoid",
  54986. height: math.unit(2.1, "meters"),
  54987. form: "taur"
  54988. },
  54989. {
  54990. name: "Normal",
  54991. height: math.unit(7, "meters"),
  54992. form: "taur",
  54993. default: true
  54994. },
  54995. ],
  54996. {
  54997. "anthro": {
  54998. name: "Anthro",
  54999. default: true
  55000. },
  55001. "taur": {
  55002. name: "Taur",
  55003. },
  55004. }
  55005. ))
  55006. characterMakers.push(() => makeCharacter(
  55007. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55008. {
  55009. front: {
  55010. height: math.unit(2 + 5/12, "feet"),
  55011. name: "Front",
  55012. image: {
  55013. source: "./media/characters/kyan/front.svg",
  55014. extra: 460/334,
  55015. bottom: 23/483
  55016. },
  55017. extraAttributes: {
  55018. "toeLength": {
  55019. name: "Toe Length",
  55020. power: 1,
  55021. type: "length",
  55022. base: math.unit(7, "cm")
  55023. },
  55024. "toeclawLength": {
  55025. name: "Toeclaw Length",
  55026. power: 1,
  55027. type: "length",
  55028. base: math.unit(4.7, "cm")
  55029. },
  55030. "earHeight": {
  55031. name: "Ear Height",
  55032. power: 1,
  55033. type: "length",
  55034. base: math.unit(14.1, "cm")
  55035. },
  55036. }
  55037. },
  55038. paws: {
  55039. height: math.unit(0.45, "feet"),
  55040. name: "Paws",
  55041. image: {
  55042. source: "./media/characters/kyan/paws.svg",
  55043. extra: 581/581,
  55044. bottom: 114/695
  55045. }
  55046. },
  55047. },
  55048. [
  55049. {
  55050. name: "Normal",
  55051. height: math.unit(2 + 5/12, "feet"),
  55052. default: true
  55053. },
  55054. ]
  55055. ))
  55056. characterMakers.push(() => makeCharacter(
  55057. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55058. {
  55059. front: {
  55060. height: math.unit(2 + 2/3, "feet"),
  55061. name: "Front",
  55062. image: {
  55063. source: "./media/characters/xazzon/front.svg",
  55064. extra: 1109/984,
  55065. bottom: 42/1151
  55066. }
  55067. },
  55068. back: {
  55069. height: math.unit(2 + 2/3, "feet"),
  55070. name: "Back",
  55071. image: {
  55072. source: "./media/characters/xazzon/back.svg",
  55073. extra: 1095/971,
  55074. bottom: 23/1118
  55075. }
  55076. },
  55077. },
  55078. [
  55079. {
  55080. name: "Normal",
  55081. height: math.unit(2 + 2/3, "feet"),
  55082. default: true
  55083. },
  55084. ]
  55085. ))
  55086. characterMakers.push(() => makeCharacter(
  55087. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55088. {
  55089. front: {
  55090. height: math.unit(8, "feet"),
  55091. weight: math.unit(300, "lb"),
  55092. name: "Front",
  55093. image: {
  55094. source: "./media/characters/khyla-shadowsong/front.svg",
  55095. extra: 861/798,
  55096. bottom: 32/893
  55097. }
  55098. },
  55099. side: {
  55100. height: math.unit(8, "feet"),
  55101. weight: math.unit(300, "lb"),
  55102. name: "Side",
  55103. image: {
  55104. source: "./media/characters/khyla-shadowsong/side.svg",
  55105. extra: 790/750,
  55106. bottom: 87/877
  55107. }
  55108. },
  55109. back: {
  55110. height: math.unit(8, "feet"),
  55111. weight: math.unit(300, "lb"),
  55112. name: "Back",
  55113. image: {
  55114. source: "./media/characters/khyla-shadowsong/back.svg",
  55115. extra: 855/808,
  55116. bottom: 14/869
  55117. }
  55118. },
  55119. head: {
  55120. height: math.unit(2.7, "feet"),
  55121. name: "Head",
  55122. image: {
  55123. source: "./media/characters/khyla-shadowsong/head.svg"
  55124. }
  55125. },
  55126. },
  55127. [
  55128. {
  55129. name: "Micro",
  55130. height: math.unit(6, "inches")
  55131. },
  55132. {
  55133. name: "Normal",
  55134. height: math.unit(8, "feet"),
  55135. default: true
  55136. },
  55137. ]
  55138. ))
  55139. characterMakers.push(() => makeCharacter(
  55140. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55141. {
  55142. hyperFront: {
  55143. height: math.unit(9 + 4/12, "feet"),
  55144. weight: math.unit(2000, "lb"),
  55145. name: "Front",
  55146. image: {
  55147. source: "./media/characters/tiden/hyper-front.svg",
  55148. extra: 400/382,
  55149. bottom: 6/406
  55150. },
  55151. form: "hyper",
  55152. },
  55153. regularFront: {
  55154. height: math.unit(7 + 10/12, "feet"),
  55155. weight: math.unit(470, "lb"),
  55156. name: "Front",
  55157. image: {
  55158. source: "./media/characters/tiden/regular-front.svg",
  55159. extra: 468/442,
  55160. bottom: 6/474
  55161. },
  55162. form: "regular",
  55163. },
  55164. },
  55165. [
  55166. {
  55167. name: "Normal",
  55168. height: math.unit(9 + 4/12, "feet"),
  55169. default: true,
  55170. form: "hyper"
  55171. },
  55172. {
  55173. name: "Normal",
  55174. height: math.unit(7 + 10/12, "feet"),
  55175. default: true,
  55176. form: "regular"
  55177. },
  55178. ],
  55179. {
  55180. "hyper": {
  55181. name: "Hyper",
  55182. default: true
  55183. },
  55184. "regular": {
  55185. name: "Regular",
  55186. },
  55187. }
  55188. ))
  55189. characterMakers.push(() => makeCharacter(
  55190. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55191. {
  55192. side: {
  55193. height: math.unit(6, "feet"),
  55194. weight: math.unit(150, "lb"),
  55195. name: "Side",
  55196. image: {
  55197. source: "./media/characters/jason-crowe/side.svg",
  55198. extra: 1771/766,
  55199. bottom: 219/1990
  55200. }
  55201. },
  55202. },
  55203. [
  55204. {
  55205. name: "Pocket Gryphon",
  55206. height: math.unit(6, "cm")
  55207. },
  55208. {
  55209. name: "Raven",
  55210. height: math.unit(60, "cm")
  55211. },
  55212. {
  55213. name: "Normal",
  55214. height: math.unit(1, "meter"),
  55215. default: true
  55216. },
  55217. ]
  55218. ))
  55219. characterMakers.push(() => makeCharacter(
  55220. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55221. {
  55222. front: {
  55223. height: math.unit(9 + 6/12, "feet"),
  55224. weight: math.unit(1100, "lb"),
  55225. name: "Front",
  55226. image: {
  55227. source: "./media/characters/django/front.svg",
  55228. extra: 1231/1136,
  55229. bottom: 34/1265
  55230. }
  55231. },
  55232. side: {
  55233. height: math.unit(9 + 6/12, "feet"),
  55234. weight: math.unit(1100, "lb"),
  55235. name: "Side",
  55236. image: {
  55237. source: "./media/characters/django/side.svg",
  55238. extra: 1267/1174,
  55239. bottom: 9/1276
  55240. }
  55241. },
  55242. },
  55243. [
  55244. {
  55245. name: "Normal",
  55246. height: math.unit(9 + 6/12, "feet"),
  55247. default: true
  55248. },
  55249. {
  55250. name: "Macro 1",
  55251. height: math.unit(50, "feet")
  55252. },
  55253. {
  55254. name: "Macro 2",
  55255. height: math.unit(500, "feet")
  55256. },
  55257. {
  55258. name: "Mega Macro",
  55259. height: math.unit(5300, "feet")
  55260. },
  55261. ]
  55262. ))
  55263. characterMakers.push(() => makeCharacter(
  55264. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55265. {
  55266. frontSfw: {
  55267. height: math.unit(120, "cm"),
  55268. weight: math.unit(15, "kg"),
  55269. name: "Front (SFW)",
  55270. image: {
  55271. source: "./media/characters/eri/front-sfw.svg",
  55272. extra: 1014/939,
  55273. bottom: 37/1051
  55274. },
  55275. form: "moth",
  55276. },
  55277. frontNsfw: {
  55278. height: math.unit(120, "cm"),
  55279. weight: math.unit(15, "kg"),
  55280. name: "Front (NSFW)",
  55281. image: {
  55282. source: "./media/characters/eri/front-nsfw.svg",
  55283. extra: 1014/939,
  55284. bottom: 37/1051
  55285. },
  55286. form: "moth",
  55287. default: true
  55288. },
  55289. egg: {
  55290. height: math.unit(10, "cm"),
  55291. name: "Egg",
  55292. image: {
  55293. source: "./media/characters/eri/egg.svg"
  55294. },
  55295. form: "egg",
  55296. default: true
  55297. },
  55298. },
  55299. [
  55300. {
  55301. name: "Normal",
  55302. height: math.unit(120, "cm"),
  55303. default: true,
  55304. form: "moth"
  55305. },
  55306. {
  55307. name: "Normal",
  55308. height: math.unit(10, "cm"),
  55309. default: true,
  55310. form: "egg"
  55311. },
  55312. ],
  55313. {
  55314. "moth": {
  55315. name: "Moth",
  55316. default: true
  55317. },
  55318. "egg": {
  55319. name: "Egg",
  55320. },
  55321. }
  55322. ))
  55323. characterMakers.push(() => makeCharacter(
  55324. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55325. {
  55326. front: {
  55327. height: math.unit(200, "feet"),
  55328. name: "Front",
  55329. image: {
  55330. source: "./media/characters/bishop-dowser/front.svg",
  55331. extra: 933/868,
  55332. bottom: 106/1039
  55333. }
  55334. },
  55335. },
  55336. [
  55337. {
  55338. name: "Giant",
  55339. height: math.unit(200, "feet"),
  55340. default: true
  55341. },
  55342. ]
  55343. ))
  55344. characterMakers.push(() => makeCharacter(
  55345. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55346. {
  55347. front: {
  55348. height: math.unit(2, "meters"),
  55349. preyCapacity: math.unit(3, "people"),
  55350. name: "Front",
  55351. image: {
  55352. source: "./media/characters/fryra/front.svg",
  55353. extra: 1025/948,
  55354. bottom: 30/1055
  55355. },
  55356. extraAttributes: {
  55357. "breastVolume": {
  55358. name: "Breast Volume",
  55359. power: 3,
  55360. type: "volume",
  55361. base: math.unit(8, "liters")
  55362. },
  55363. }
  55364. },
  55365. back: {
  55366. height: math.unit(2, "meters"),
  55367. preyCapacity: math.unit(3, "people"),
  55368. name: "Back",
  55369. image: {
  55370. source: "./media/characters/fryra/back.svg",
  55371. extra: 993/938,
  55372. bottom: 38/1031
  55373. },
  55374. extraAttributes: {
  55375. "breastVolume": {
  55376. name: "Breast Volume",
  55377. power: 3,
  55378. type: "volume",
  55379. base: math.unit(8, "liters")
  55380. },
  55381. }
  55382. },
  55383. head: {
  55384. height: math.unit(1.33, "feet"),
  55385. name: "Head",
  55386. image: {
  55387. source: "./media/characters/fryra/head.svg"
  55388. }
  55389. },
  55390. maw: {
  55391. height: math.unit(0.56, "feet"),
  55392. name: "Maw",
  55393. image: {
  55394. source: "./media/characters/fryra/maw.svg"
  55395. }
  55396. },
  55397. },
  55398. [
  55399. {
  55400. name: "Micro",
  55401. height: math.unit(5, "cm")
  55402. },
  55403. {
  55404. name: "Normal",
  55405. height: math.unit(2, "meters"),
  55406. default: true
  55407. },
  55408. {
  55409. name: "Small Macro",
  55410. height: math.unit(8, "meters")
  55411. },
  55412. {
  55413. name: "Macro",
  55414. height: math.unit(50, "meters")
  55415. },
  55416. {
  55417. name: "Megamacro",
  55418. height: math.unit(1, "km")
  55419. },
  55420. {
  55421. name: "Planetary",
  55422. height: math.unit(300000, "km")
  55423. },
  55424. {
  55425. name: "Universal",
  55426. height: math.unit(250, "lightyears")
  55427. },
  55428. {
  55429. name: "Fabric of Reality",
  55430. height: math.unit(1000, "multiverses")
  55431. },
  55432. ]
  55433. ))
  55434. characterMakers.push(() => makeCharacter(
  55435. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55436. {
  55437. frontDressed: {
  55438. height: math.unit(6 + 2/12, "feet"),
  55439. name: "Front (Dressed)",
  55440. image: {
  55441. source: "./media/characters/fiera/front-dressed.svg",
  55442. extra: 1883/1793,
  55443. bottom: 70/1953
  55444. }
  55445. },
  55446. backDressed: {
  55447. height: math.unit(6 + 2/12, "feet"),
  55448. name: "Back (Dressed)",
  55449. image: {
  55450. source: "./media/characters/fiera/back-dressed.svg",
  55451. extra: 1847/1780,
  55452. bottom: 70/1917
  55453. }
  55454. },
  55455. frontNude: {
  55456. height: math.unit(6 + 2/12, "feet"),
  55457. name: "Front (Nude)",
  55458. image: {
  55459. source: "./media/characters/fiera/front-nude.svg",
  55460. extra: 1875/1785,
  55461. bottom: 66/1941
  55462. }
  55463. },
  55464. backNude: {
  55465. height: math.unit(6 + 2/12, "feet"),
  55466. name: "Back (Nude)",
  55467. image: {
  55468. source: "./media/characters/fiera/back-nude.svg",
  55469. extra: 1855/1788,
  55470. bottom: 44/1899
  55471. }
  55472. },
  55473. maw: {
  55474. height: math.unit(1.3, "feet"),
  55475. name: "Maw",
  55476. image: {
  55477. source: "./media/characters/fiera/maw.svg"
  55478. }
  55479. },
  55480. paw: {
  55481. height: math.unit(1, "feet"),
  55482. name: "Paw",
  55483. image: {
  55484. source: "./media/characters/fiera/paw.svg"
  55485. }
  55486. },
  55487. shoe: {
  55488. height: math.unit(1.05, "feet"),
  55489. name: "Shoe",
  55490. image: {
  55491. source: "./media/characters/fiera/shoe.svg"
  55492. }
  55493. },
  55494. },
  55495. [
  55496. {
  55497. name: "Normal",
  55498. height: math.unit(6 + 2/12, "feet"),
  55499. default: true
  55500. },
  55501. {
  55502. name: "Size Difference",
  55503. height: math.unit(13, "feet")
  55504. },
  55505. {
  55506. name: "Macro",
  55507. height: math.unit(60, "feet")
  55508. },
  55509. {
  55510. name: "Mega Macro",
  55511. height: math.unit(200, "feet")
  55512. },
  55513. ]
  55514. ))
  55515. characterMakers.push(() => makeCharacter(
  55516. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55517. {
  55518. back: {
  55519. height: math.unit(6, "feet"),
  55520. name: "Back",
  55521. image: {
  55522. source: "./media/characters/flare/back.svg",
  55523. extra: 1883/1765,
  55524. bottom: 32/1915
  55525. }
  55526. },
  55527. },
  55528. [
  55529. {
  55530. name: "Normal",
  55531. height: math.unit(6 + 2/12, "feet"),
  55532. default: true
  55533. },
  55534. {
  55535. name: "Size Difference",
  55536. height: math.unit(13, "feet")
  55537. },
  55538. {
  55539. name: "Macro",
  55540. height: math.unit(60, "feet")
  55541. },
  55542. {
  55543. name: "Macro 2",
  55544. height: math.unit(100, "feet")
  55545. },
  55546. {
  55547. name: "Mega Macro",
  55548. height: math.unit(200, "feet")
  55549. },
  55550. ]
  55551. ))
  55552. characterMakers.push(() => makeCharacter(
  55553. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55554. {
  55555. front: {
  55556. height: math.unit(2.2, "m"),
  55557. weight: math.unit(300, "kg"),
  55558. name: "Front",
  55559. image: {
  55560. source: "./media/characters/hanna/front.svg",
  55561. extra: 1696/1502,
  55562. bottom: 206/1902
  55563. }
  55564. },
  55565. },
  55566. [
  55567. {
  55568. name: "Humanoid",
  55569. height: math.unit(2.2, "meters")
  55570. },
  55571. {
  55572. name: "Normal",
  55573. height: math.unit(4.8, "meters"),
  55574. default: true
  55575. },
  55576. ]
  55577. ))
  55578. characterMakers.push(() => makeCharacter(
  55579. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55580. {
  55581. front: {
  55582. height: math.unit(2.8, "meters"),
  55583. name: "Front",
  55584. image: {
  55585. source: "./media/characters/argo/front.svg",
  55586. extra: 731/518,
  55587. bottom: 84/815
  55588. }
  55589. },
  55590. },
  55591. [
  55592. {
  55593. name: "Normal",
  55594. height: math.unit(3, "meters"),
  55595. default: true
  55596. },
  55597. ]
  55598. ))
  55599. characterMakers.push(() => makeCharacter(
  55600. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55601. {
  55602. side: {
  55603. height: math.unit(3.8, "meters"),
  55604. name: "Side",
  55605. image: {
  55606. source: "./media/characters/sybil/side.svg",
  55607. extra: 382/361,
  55608. bottom: 25/407
  55609. }
  55610. },
  55611. },
  55612. [
  55613. {
  55614. name: "Normal",
  55615. height: math.unit(3.8, "meters"),
  55616. default: true
  55617. },
  55618. ]
  55619. ))
  55620. characterMakers.push(() => makeCharacter(
  55621. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55622. {
  55623. side: {
  55624. height: math.unit(6, "meters"),
  55625. name: "Side",
  55626. image: {
  55627. source: "./media/characters/plum/side.svg",
  55628. extra: 858/755,
  55629. bottom: 45/903
  55630. },
  55631. form: "taur",
  55632. default: true
  55633. },
  55634. back: {
  55635. height: math.unit(6.3, "meters"),
  55636. name: "Back",
  55637. image: {
  55638. source: "./media/characters/plum/back.svg",
  55639. extra: 887/813,
  55640. bottom: 32/919
  55641. },
  55642. form: "taur",
  55643. },
  55644. feral: {
  55645. height: math.unit(5.5, "meter"),
  55646. name: "Front",
  55647. image: {
  55648. source: "./media/characters/plum/feral.svg",
  55649. extra: 568/403,
  55650. bottom: 51/619
  55651. },
  55652. form: "feral",
  55653. default: true
  55654. },
  55655. head: {
  55656. height: math.unit(1.46, "meter"),
  55657. name: "Head",
  55658. image: {
  55659. source: "./media/characters/plum/head.svg"
  55660. },
  55661. form: "taur"
  55662. },
  55663. tailTop: {
  55664. height: math.unit(5.6, "meter"),
  55665. name: "Tail (Top)",
  55666. image: {
  55667. source: "./media/characters/plum/tail-top.svg"
  55668. },
  55669. form: "taur",
  55670. },
  55671. tailBottom: {
  55672. height: math.unit(5.6, "meter"),
  55673. name: "Tail (Bottom)",
  55674. image: {
  55675. source: "./media/characters/plum/tail-bottom.svg"
  55676. },
  55677. form: "taur",
  55678. },
  55679. feralHead: {
  55680. height: math.unit(2.56549521, "meter"),
  55681. name: "Head",
  55682. image: {
  55683. source: "./media/characters/plum/head.svg"
  55684. },
  55685. form: "feral"
  55686. },
  55687. feralTailTop: {
  55688. height: math.unit(5.44728435, "meter"),
  55689. name: "Tail (Top)",
  55690. image: {
  55691. source: "./media/characters/plum/tail-top.svg"
  55692. },
  55693. form: "feral",
  55694. },
  55695. feralTailBottom: {
  55696. height: math.unit(5.44728435, "meter"),
  55697. name: "Tail (Bottom)",
  55698. image: {
  55699. source: "./media/characters/plum/tail-bottom.svg"
  55700. },
  55701. form: "feral",
  55702. },
  55703. },
  55704. [
  55705. {
  55706. name: "Normal",
  55707. height: math.unit(6, "meters"),
  55708. default: true,
  55709. form: "taur"
  55710. },
  55711. {
  55712. name: "Normal",
  55713. height: math.unit(5.5, "meters"),
  55714. default: true,
  55715. form: "feral"
  55716. },
  55717. ],
  55718. {
  55719. "taur": {
  55720. name: "Taur",
  55721. default: true
  55722. },
  55723. "feral": {
  55724. name: "Feral",
  55725. },
  55726. }
  55727. ))
  55728. characterMakers.push(() => makeCharacter(
  55729. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55730. {
  55731. front: {
  55732. height: math.unit(6, "feet"),
  55733. weight: math.unit(115, "lb"),
  55734. name: "Front",
  55735. image: {
  55736. source: "./media/characters/celeste-kitsune/front.svg",
  55737. extra: 393/366,
  55738. bottom: 7/400
  55739. }
  55740. },
  55741. side: {
  55742. height: math.unit(6, "feet"),
  55743. weight: math.unit(115, "lb"),
  55744. name: "Side",
  55745. image: {
  55746. source: "./media/characters/celeste-kitsune/side.svg",
  55747. extra: 818/765,
  55748. bottom: 40/858
  55749. }
  55750. },
  55751. },
  55752. [
  55753. {
  55754. name: "Megamacro",
  55755. height: math.unit(1500, "miles"),
  55756. default: true
  55757. },
  55758. ]
  55759. ))
  55760. characterMakers.push(() => makeCharacter(
  55761. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55762. {
  55763. front: {
  55764. height: math.unit(8, "meters"),
  55765. name: "Front",
  55766. image: {
  55767. source: "./media/characters/io/front.svg",
  55768. extra: 865/722,
  55769. bottom: 58/923
  55770. }
  55771. },
  55772. back: {
  55773. height: math.unit(8, "meters"),
  55774. name: "Back",
  55775. image: {
  55776. source: "./media/characters/io/back.svg",
  55777. extra: 920/776,
  55778. bottom: 42/962
  55779. }
  55780. },
  55781. head: {
  55782. height: math.unit(5.09, "meters"),
  55783. name: "Head",
  55784. image: {
  55785. source: "./media/characters/io/head.svg"
  55786. }
  55787. },
  55788. hand: {
  55789. height: math.unit(1.6, "meters"),
  55790. name: "Hand",
  55791. image: {
  55792. source: "./media/characters/io/hand.svg"
  55793. }
  55794. },
  55795. foot: {
  55796. height: math.unit(2.4, "meters"),
  55797. name: "Foot",
  55798. image: {
  55799. source: "./media/characters/io/foot.svg"
  55800. }
  55801. },
  55802. },
  55803. [
  55804. {
  55805. name: "Normal",
  55806. height: math.unit(8, "meters"),
  55807. default: true
  55808. },
  55809. ]
  55810. ))
  55811. characterMakers.push(() => makeCharacter(
  55812. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55813. {
  55814. side: {
  55815. height: math.unit(6 + 3/12, "feet"),
  55816. weight: math.unit(225, "lb"),
  55817. name: "Side",
  55818. image: {
  55819. source: "./media/characters/silas/side.svg",
  55820. extra: 703/653,
  55821. bottom: 23/726
  55822. },
  55823. extraAttributes: {
  55824. "pawLength": {
  55825. name: "Paw Length",
  55826. power: 1,
  55827. type: "length",
  55828. base: math.unit(12, "inches")
  55829. },
  55830. "pawWidth": {
  55831. name: "Paw Width",
  55832. power: 1,
  55833. type: "length",
  55834. base: math.unit(4.5, "inches")
  55835. },
  55836. "pawArea": {
  55837. name: "Paw Area",
  55838. power: 2,
  55839. type: "area",
  55840. base: math.unit(12 * 4.5, "inches^2")
  55841. },
  55842. }
  55843. },
  55844. },
  55845. [
  55846. {
  55847. name: "Normal",
  55848. height: math.unit(6 + 3/12, "feet"),
  55849. default: true
  55850. },
  55851. ]
  55852. ))
  55853. characterMakers.push(() => makeCharacter(
  55854. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55855. {
  55856. back: {
  55857. height: math.unit(1.6, "meters"),
  55858. weight: math.unit(150, "lb"),
  55859. name: "Back",
  55860. image: {
  55861. source: "./media/characters/zari/back.svg",
  55862. extra: 424/411,
  55863. bottom: 32/456
  55864. },
  55865. extraAttributes: {
  55866. "bladderCapacity": {
  55867. name: "Bladder Size",
  55868. power: 3,
  55869. type: "volume",
  55870. base: math.unit(500, "mL")
  55871. },
  55872. "bladderFlow": {
  55873. name: "Flow Rate",
  55874. power: 3,
  55875. type: "volume",
  55876. base: math.unit(25, "mL")
  55877. },
  55878. }
  55879. },
  55880. },
  55881. [
  55882. {
  55883. name: "Normal",
  55884. height: math.unit(1.6, "meters"),
  55885. default: true
  55886. },
  55887. ]
  55888. ))
  55889. characterMakers.push(() => makeCharacter(
  55890. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55891. {
  55892. front: {
  55893. height: math.unit(25, "feet"),
  55894. weight: math.unit(5, "tons"),
  55895. name: "Front",
  55896. image: {
  55897. source: "./media/characters/charlie-human/front.svg",
  55898. extra: 1870/1740,
  55899. bottom: 102/1972
  55900. },
  55901. extraAttributes: {
  55902. "dickLength": {
  55903. name: "Dick Length",
  55904. power: 1,
  55905. type: "length",
  55906. base: math.unit(9, "feet")
  55907. },
  55908. }
  55909. },
  55910. back: {
  55911. height: math.unit(25, "feet"),
  55912. weight: math.unit(5, "tons"),
  55913. name: "Back",
  55914. image: {
  55915. source: "./media/characters/charlie-human/back.svg",
  55916. extra: 1858/1733,
  55917. bottom: 105/1963
  55918. },
  55919. extraAttributes: {
  55920. "dickLength": {
  55921. name: "Dick Length",
  55922. power: 1,
  55923. type: "length",
  55924. base: math.unit(9, "feet")
  55925. },
  55926. }
  55927. },
  55928. },
  55929. [
  55930. {
  55931. name: "\"Normal\"",
  55932. height: math.unit(6 + 4/12, "feet")
  55933. },
  55934. {
  55935. name: "Big",
  55936. height: math.unit(25, "feet"),
  55937. default: true
  55938. },
  55939. ]
  55940. ))
  55941. characterMakers.push(() => makeCharacter(
  55942. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55943. {
  55944. front: {
  55945. height: math.unit(6 + 4/12, "feet"),
  55946. weight: math.unit(320, "lb"),
  55947. name: "Front",
  55948. image: {
  55949. source: "./media/characters/ookitsu/front.svg",
  55950. extra: 1160/976,
  55951. bottom: 38/1198
  55952. }
  55953. },
  55954. frontNsfw: {
  55955. height: math.unit(6 + 4/12, "feet"),
  55956. weight: math.unit(320, "lb"),
  55957. name: "Front (NSFW)",
  55958. image: {
  55959. source: "./media/characters/ookitsu/front-nsfw.svg",
  55960. extra: 1160/976,
  55961. bottom: 38/1198
  55962. }
  55963. },
  55964. back: {
  55965. height: math.unit(6 + 4/12, "feet"),
  55966. weight: math.unit(320, "lb"),
  55967. name: "Back",
  55968. image: {
  55969. source: "./media/characters/ookitsu/back.svg",
  55970. extra: 1030/975,
  55971. bottom: 70/1100
  55972. }
  55973. },
  55974. head: {
  55975. height: math.unit(1.79, "feet"),
  55976. name: "Head",
  55977. image: {
  55978. source: "./media/characters/ookitsu/head.svg"
  55979. }
  55980. },
  55981. hand: {
  55982. height: math.unit(0.92, "feet"),
  55983. name: "Hand",
  55984. image: {
  55985. source: "./media/characters/ookitsu/hand.svg"
  55986. }
  55987. },
  55988. tails: {
  55989. height: math.unit(3.3, "feet"),
  55990. name: "Tails",
  55991. image: {
  55992. source: "./media/characters/ookitsu/tails.svg"
  55993. }
  55994. },
  55995. dick: {
  55996. height: math.unit(1.10833, "feet"),
  55997. name: "Dick",
  55998. image: {
  55999. source: "./media/characters/ookitsu/dick.svg"
  56000. }
  56001. },
  56002. },
  56003. [
  56004. {
  56005. name: "Normal",
  56006. height: math.unit(6 + 4/12, "feet"),
  56007. default: true
  56008. },
  56009. {
  56010. name: "Macro",
  56011. height: math.unit(30, "feet")
  56012. },
  56013. ]
  56014. ))
  56015. characterMakers.push(() => makeCharacter(
  56016. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56017. {
  56018. anthroFront: {
  56019. height: math.unit(6, "feet"),
  56020. weight: math.unit(250, "lb"),
  56021. name: "Front",
  56022. image: {
  56023. source: "./media/characters/jhusky/anthro-front.svg",
  56024. extra: 474/439,
  56025. bottom: 7/481
  56026. },
  56027. form: "anthro",
  56028. default: true
  56029. },
  56030. taurSideSfw: {
  56031. height: math.unit(6 + 4/12, "feet"),
  56032. weight: math.unit(500, "lb"),
  56033. name: "Side (SFW)",
  56034. image: {
  56035. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56036. extra: 1741/1629,
  56037. bottom: 196/1937
  56038. },
  56039. form: "taur",
  56040. default: true
  56041. },
  56042. taurSideNsfw: {
  56043. height: math.unit(6 + 4/12, "feet"),
  56044. weight: math.unit(500, "lb"),
  56045. name: "Taur (NSFW)",
  56046. image: {
  56047. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56048. extra: 1741/1629,
  56049. bottom: 196/1937
  56050. },
  56051. form: "taur",
  56052. },
  56053. },
  56054. [
  56055. {
  56056. name: "Huge",
  56057. height: math.unit(500, "feet"),
  56058. form: "anthro"
  56059. },
  56060. {
  56061. name: "Macro",
  56062. height: math.unit(1000, "feet"),
  56063. default: true,
  56064. form: "anthro"
  56065. },
  56066. {
  56067. name: "Megamacro",
  56068. height: math.unit(10000, "feet"),
  56069. form: "anthro"
  56070. },
  56071. {
  56072. name: "Huge",
  56073. height: math.unit(528, "feet"),
  56074. form: "taur"
  56075. },
  56076. {
  56077. name: "Macro",
  56078. height: math.unit(1056, "feet"),
  56079. default: true,
  56080. form: "taur"
  56081. },
  56082. {
  56083. name: "Megamacro",
  56084. height: math.unit(10556, "feet"),
  56085. form: "taur"
  56086. },
  56087. ],
  56088. {
  56089. "anthro": {
  56090. name: "Anthro",
  56091. default: true
  56092. },
  56093. "taur": {
  56094. name: "Taur",
  56095. },
  56096. }
  56097. ))
  56098. characterMakers.push(() => makeCharacter(
  56099. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56100. {
  56101. front: {
  56102. height: math.unit(8, "feet"),
  56103. weight: math.unit(500, "lb"),
  56104. name: "Front",
  56105. image: {
  56106. source: "./media/characters/armail/front.svg",
  56107. extra: 1753/1669,
  56108. bottom: 155/1908
  56109. }
  56110. },
  56111. back: {
  56112. height: math.unit(8, "feet"),
  56113. weight: math.unit(500, "lb"),
  56114. name: "Back",
  56115. image: {
  56116. source: "./media/characters/armail/back.svg",
  56117. extra: 1872/1803,
  56118. bottom: 63/1935
  56119. }
  56120. },
  56121. },
  56122. [
  56123. {
  56124. name: "Micro",
  56125. height: math.unit(0.25, "feet")
  56126. },
  56127. {
  56128. name: "Normal",
  56129. height: math.unit(8, "feet"),
  56130. default: true
  56131. },
  56132. {
  56133. name: "Mini-macro",
  56134. height: math.unit(30, "feet")
  56135. },
  56136. {
  56137. name: "Macro",
  56138. height: math.unit(400, "feet")
  56139. },
  56140. {
  56141. name: "Mega-macro",
  56142. height: math.unit(6000, "feet")
  56143. },
  56144. ]
  56145. ))
  56146. characterMakers.push(() => makeCharacter(
  56147. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56148. {
  56149. front: {
  56150. height: math.unit(6 + 7/12, "feet"),
  56151. weight: math.unit(210, "lb"),
  56152. name: "Front",
  56153. image: {
  56154. source: "./media/characters/wilfred-t-buxton/front.svg",
  56155. extra: 1068/882,
  56156. bottom: 28/1096
  56157. }
  56158. },
  56159. },
  56160. [
  56161. {
  56162. name: "Normal",
  56163. height: math.unit(6 + 7/12, "feet"),
  56164. default: true
  56165. },
  56166. ]
  56167. ))
  56168. characterMakers.push(() => makeCharacter(
  56169. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56170. {
  56171. front: {
  56172. height: math.unit(5 + 2/12, "feet"),
  56173. weight: math.unit(120, "lb"),
  56174. name: "Front",
  56175. image: {
  56176. source: "./media/characters/leighton-marrow/front.svg",
  56177. extra: 441/409,
  56178. bottom: 37/478
  56179. }
  56180. },
  56181. },
  56182. [
  56183. {
  56184. name: "Normal",
  56185. height: math.unit(5 + 2/12, "feet"),
  56186. default: true
  56187. },
  56188. ]
  56189. ))
  56190. characterMakers.push(() => makeCharacter(
  56191. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56192. {
  56193. front: {
  56194. height: math.unit(4, "meters"),
  56195. weight: math.unit(1200, "kg"),
  56196. name: "Front",
  56197. image: {
  56198. source: "./media/characters/licos/front.svg",
  56199. extra: 1727/1604,
  56200. bottom: 101/1828
  56201. },
  56202. form: "anthro",
  56203. default: true
  56204. },
  56205. taur_side: {
  56206. height: math.unit(20, "meters"),
  56207. weight: math.unit(1100000, "kg"),
  56208. name: "Side",
  56209. image: {
  56210. source: "./media/characters/licos/taur.svg",
  56211. extra: 1158/1091,
  56212. bottom: 80/1238
  56213. },
  56214. form: "taur",
  56215. default: true
  56216. },
  56217. },
  56218. [
  56219. {
  56220. name: "Normal",
  56221. height: math.unit(4, "meters"),
  56222. default: true,
  56223. form: "anthro"
  56224. },
  56225. {
  56226. name: "Normal",
  56227. height: math.unit(20, "meters"),
  56228. default: true,
  56229. form: "taur"
  56230. },
  56231. ],
  56232. {
  56233. "anthro": {
  56234. name: "Anthro",
  56235. default: true
  56236. },
  56237. "taur": {
  56238. name: "Taur",
  56239. },
  56240. }
  56241. ))
  56242. characterMakers.push(() => makeCharacter(
  56243. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56244. {
  56245. front: {
  56246. height: math.unit(10 + 3/12, "feet"),
  56247. name: "Front",
  56248. image: {
  56249. source: "./media/characters/theo-monkey/front.svg",
  56250. extra: 1735/1658,
  56251. bottom: 73/1808
  56252. }
  56253. },
  56254. back: {
  56255. height: math.unit(10 + 3/12, "feet"),
  56256. name: "Back",
  56257. image: {
  56258. source: "./media/characters/theo-monkey/back.svg",
  56259. extra: 1742/1664,
  56260. bottom: 33/1775
  56261. }
  56262. },
  56263. head: {
  56264. height: math.unit(2.29, "feet"),
  56265. name: "Head",
  56266. image: {
  56267. source: "./media/characters/theo-monkey/head.svg"
  56268. }
  56269. },
  56270. handPalm: {
  56271. height: math.unit(1.73, "feet"),
  56272. name: "Hand (Palm)",
  56273. image: {
  56274. source: "./media/characters/theo-monkey/hand-palm.svg"
  56275. }
  56276. },
  56277. handBack: {
  56278. height: math.unit(1.63, "feet"),
  56279. name: "Hand (Back)",
  56280. image: {
  56281. source: "./media/characters/theo-monkey/hand-back.svg"
  56282. }
  56283. },
  56284. footSole: {
  56285. height: math.unit(2.15, "feet"),
  56286. name: "Foot (Sole)",
  56287. image: {
  56288. source: "./media/characters/theo-monkey/foot-sole.svg"
  56289. }
  56290. },
  56291. footSide: {
  56292. height: math.unit(1.6, "feet"),
  56293. name: "Foot (Side)",
  56294. image: {
  56295. source: "./media/characters/theo-monkey/foot-side.svg"
  56296. }
  56297. },
  56298. },
  56299. [
  56300. {
  56301. name: "Normal",
  56302. height: math.unit(10 + 3/12, "feet"),
  56303. default: true
  56304. },
  56305. ]
  56306. ))
  56307. characterMakers.push(() => makeCharacter(
  56308. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56309. {
  56310. front: {
  56311. height: math.unit(11, "feet"),
  56312. weight: math.unit(3000, "lb"),
  56313. preyCapacity: math.unit(10, "people"),
  56314. name: "Front",
  56315. image: {
  56316. source: "./media/characters/brook/front.svg",
  56317. extra: 909/835,
  56318. bottom: 108/1017
  56319. }
  56320. },
  56321. back: {
  56322. height: math.unit(11, "feet"),
  56323. weight: math.unit(3000, "lb"),
  56324. preyCapacity: math.unit(10, "people"),
  56325. name: "Back",
  56326. image: {
  56327. source: "./media/characters/brook/back.svg",
  56328. extra: 976/916,
  56329. bottom: 34/1010
  56330. }
  56331. },
  56332. backAlt: {
  56333. height: math.unit(11, "feet"),
  56334. weight: math.unit(3000, "lb"),
  56335. preyCapacity: math.unit(10, "people"),
  56336. name: "Back (Alt)",
  56337. image: {
  56338. source: "./media/characters/brook/back-alt.svg",
  56339. extra: 1283/1213,
  56340. bottom: 35/1318
  56341. }
  56342. },
  56343. bust: {
  56344. height: math.unit(9.0859030837, "feet"),
  56345. weight: math.unit(3000, "lb"),
  56346. preyCapacity: math.unit(10, "people"),
  56347. name: "Bust",
  56348. image: {
  56349. source: "./media/characters/brook/bust.svg",
  56350. extra: 2043/1923,
  56351. bottom: 0/2043
  56352. }
  56353. },
  56354. },
  56355. [
  56356. {
  56357. name: "Small",
  56358. height: math.unit(11, "feet"),
  56359. default: true
  56360. },
  56361. {
  56362. name: "Towering",
  56363. height: math.unit(5, "km")
  56364. },
  56365. {
  56366. name: "Enormous",
  56367. height: math.unit(25, "earths")
  56368. },
  56369. ]
  56370. ))
  56371. characterMakers.push(() => makeCharacter(
  56372. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56373. {
  56374. front: {
  56375. height: math.unit(4, "feet"),
  56376. weight: math.unit(150, "lb"),
  56377. name: "Front",
  56378. image: {
  56379. source: "./media/characters/squishi/front.svg",
  56380. extra: 1428/1271,
  56381. bottom: 30/1458
  56382. },
  56383. extraAttributes: {
  56384. "pawSize": {
  56385. name: "Paw Size",
  56386. power: 1,
  56387. type: "length",
  56388. base: math.unit(14, "ShoeSizeMensUS"),
  56389. defaultUnit: "ShoeSizeMensUS"
  56390. },
  56391. }
  56392. },
  56393. side: {
  56394. height: math.unit(4, "feet"),
  56395. weight: math.unit(150, "lb"),
  56396. name: "Side",
  56397. image: {
  56398. source: "./media/characters/squishi/side.svg",
  56399. extra: 1428/1271,
  56400. bottom: 30/1458
  56401. },
  56402. extraAttributes: {
  56403. "pawSize": {
  56404. name: "Paw Size",
  56405. power: 1,
  56406. type: "length",
  56407. base: math.unit(14, "ShoeSizeMensUS"),
  56408. defaultUnit: "ShoeSizeMensUS"
  56409. },
  56410. }
  56411. },
  56412. back: {
  56413. height: math.unit(4, "feet"),
  56414. weight: math.unit(150, "lb"),
  56415. name: "Back",
  56416. image: {
  56417. source: "./media/characters/squishi/back.svg",
  56418. extra: 1428/1271,
  56419. bottom: 30/1458
  56420. },
  56421. extraAttributes: {
  56422. "pawSize": {
  56423. name: "Paw Size",
  56424. power: 1,
  56425. type: "length",
  56426. base: math.unit(14, "ShoeSizeMensUS"),
  56427. defaultUnit: "ShoeSizeMensUS"
  56428. },
  56429. }
  56430. },
  56431. },
  56432. [
  56433. {
  56434. name: "Normal",
  56435. height: math.unit(4, "feet"),
  56436. default: true
  56437. },
  56438. ]
  56439. ))
  56440. characterMakers.push(() => makeCharacter(
  56441. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56442. {
  56443. front: {
  56444. height: math.unit(7 + 8/12, "feet"),
  56445. weight: math.unit(333, "lb"),
  56446. name: "Front",
  56447. image: {
  56448. source: "./media/characters/vincent-vasroc/front.svg",
  56449. extra: 1962/1860,
  56450. bottom: 41/2003
  56451. }
  56452. },
  56453. back: {
  56454. height: math.unit(7 + 8/12, "feet"),
  56455. weight: math.unit(333, "lb"),
  56456. name: "Back",
  56457. image: {
  56458. source: "./media/characters/vincent-vasroc/back.svg",
  56459. extra: 1952/1815,
  56460. bottom: 33/1985
  56461. }
  56462. },
  56463. paw: {
  56464. height: math.unit(1.24, "feet"),
  56465. name: "Paw",
  56466. image: {
  56467. source: "./media/characters/vincent-vasroc/paw.svg"
  56468. }
  56469. },
  56470. ear: {
  56471. height: math.unit(0.75, "feet"),
  56472. name: "Ear",
  56473. image: {
  56474. source: "./media/characters/vincent-vasroc/ear.svg"
  56475. }
  56476. },
  56477. },
  56478. [
  56479. {
  56480. name: "Nano",
  56481. height: math.unit(92, "micrometers")
  56482. },
  56483. {
  56484. name: "Normal",
  56485. height: math.unit(7 + 8/12, "feet"),
  56486. default: true
  56487. },
  56488. ]
  56489. ))
  56490. characterMakers.push(() => makeCharacter(
  56491. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56492. {
  56493. frontNsfw: {
  56494. height: math.unit(40, "feet"),
  56495. weight: math.unit(58, "tons"),
  56496. name: "Front (NSFW)",
  56497. image: {
  56498. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56499. extra: 1265/965,
  56500. bottom: 155/1420
  56501. }
  56502. },
  56503. frontSfw: {
  56504. height: math.unit(40, "feet"),
  56505. weight: math.unit(58, "tons"),
  56506. name: "Front (SFW)",
  56507. image: {
  56508. source: "./media/characters/ru-kahn/front-sfw.svg",
  56509. extra: 1265/965,
  56510. bottom: 80/1345
  56511. }
  56512. },
  56513. },
  56514. [
  56515. {
  56516. name: "Small",
  56517. height: math.unit(4, "feet")
  56518. },
  56519. {
  56520. name: "Normal",
  56521. height: math.unit(40, "feet"),
  56522. default: true
  56523. },
  56524. {
  56525. name: "Macro",
  56526. height: math.unit(400, "feet")
  56527. },
  56528. ]
  56529. ))
  56530. characterMakers.push(() => makeCharacter(
  56531. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56532. {
  56533. frontNude: {
  56534. height: math.unit(6 + 5/12, "feet"),
  56535. name: "Front (Nude)",
  56536. image: {
  56537. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56538. extra: 1369/1366,
  56539. bottom: 68/1437
  56540. }
  56541. },
  56542. frontDressed: {
  56543. height: math.unit(6 + 5/12, "feet"),
  56544. name: "Front (Dressed)",
  56545. image: {
  56546. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56547. extra: 1369/1366,
  56548. bottom: 68/1437
  56549. }
  56550. },
  56551. },
  56552. [
  56553. {
  56554. name: "Normal",
  56555. height: math.unit(6 + 5/12, "feet"),
  56556. default: true
  56557. },
  56558. {
  56559. name: "Maximum",
  56560. height: math.unit(1930, "feet")
  56561. },
  56562. ]
  56563. ))
  56564. characterMakers.push(() => makeCharacter(
  56565. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56566. {
  56567. front: {
  56568. height: math.unit(5 + 6/12, "feet"),
  56569. name: "Front",
  56570. image: {
  56571. source: "./media/characters/kaja/front.svg",
  56572. extra: 1874/1514,
  56573. bottom: 117/1991
  56574. }
  56575. },
  56576. },
  56577. [
  56578. {
  56579. name: "Normal",
  56580. height: math.unit(5 + 6/12, "feet"),
  56581. default: true
  56582. },
  56583. ]
  56584. ))
  56585. characterMakers.push(() => makeCharacter(
  56586. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56587. {
  56588. front: {
  56589. height: math.unit(5 + 9/12, "feet"),
  56590. weight: math.unit(200, "lb"),
  56591. name: "Front",
  56592. image: {
  56593. source: "./media/characters/mark-smith/front.svg",
  56594. extra: 1004/943,
  56595. bottom: 58/1062
  56596. }
  56597. },
  56598. back: {
  56599. height: math.unit(5 + 9/12, "feet"),
  56600. weight: math.unit(200, "lb"),
  56601. name: "Back",
  56602. image: {
  56603. source: "./media/characters/mark-smith/back.svg",
  56604. extra: 1023/953,
  56605. bottom: 24/1047
  56606. }
  56607. },
  56608. head: {
  56609. height: math.unit(1.82, "feet"),
  56610. name: "Head",
  56611. image: {
  56612. source: "./media/characters/mark-smith/head.svg"
  56613. }
  56614. },
  56615. hand: {
  56616. height: math.unit(1.4, "feet"),
  56617. name: "Hand",
  56618. image: {
  56619. source: "./media/characters/mark-smith/hand.svg"
  56620. }
  56621. },
  56622. paw: {
  56623. height: math.unit(1.69, "feet"),
  56624. name: "Paw",
  56625. image: {
  56626. source: "./media/characters/mark-smith/paw.svg"
  56627. }
  56628. },
  56629. },
  56630. [
  56631. {
  56632. name: "Micro",
  56633. height: math.unit(0.25, "inches")
  56634. },
  56635. {
  56636. name: "Normal",
  56637. height: math.unit(5 + 9/12, "feet"),
  56638. default: true
  56639. },
  56640. {
  56641. name: "Macro",
  56642. height: math.unit(500, "feet")
  56643. },
  56644. ]
  56645. ))
  56646. characterMakers.push(() => makeCharacter(
  56647. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56648. {
  56649. frontNude: {
  56650. height: math.unit(6, "feet"),
  56651. name: "Front (Nude)",
  56652. image: {
  56653. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56654. extra: 1384/1321,
  56655. bottom: 57/1441
  56656. }
  56657. },
  56658. frontDressed: {
  56659. height: math.unit(6, "feet"),
  56660. name: "Front (Dressed)",
  56661. image: {
  56662. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56663. extra: 1384/1321,
  56664. bottom: 57/1441
  56665. }
  56666. },
  56667. },
  56668. [
  56669. {
  56670. name: "Normal",
  56671. height: math.unit(6, "feet"),
  56672. default: true
  56673. },
  56674. {
  56675. name: "Maximum",
  56676. height: math.unit(1776, "feet")
  56677. },
  56678. ]
  56679. ))
  56680. characterMakers.push(() => makeCharacter(
  56681. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56682. {
  56683. front: {
  56684. height: math.unit(2 + 4/12, "feet"),
  56685. weight: math.unit(350, "lb"),
  56686. name: "Front",
  56687. image: {
  56688. source: "./media/characters/devos/front.svg",
  56689. extra: 958/852,
  56690. bottom: 143/1101
  56691. }
  56692. },
  56693. },
  56694. [
  56695. {
  56696. name: "Base",
  56697. height: math.unit(2 + 4/12, "feet"),
  56698. default: true
  56699. },
  56700. ]
  56701. ))
  56702. characterMakers.push(() => makeCharacter(
  56703. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56704. {
  56705. front: {
  56706. height: math.unit(9 + 2/12, "feet"),
  56707. name: "Front",
  56708. image: {
  56709. source: "./media/characters/hiveheart/front.svg",
  56710. extra: 394/364,
  56711. bottom: 65/459
  56712. }
  56713. },
  56714. back: {
  56715. height: math.unit(9 + 2/12, "feet"),
  56716. name: "Back",
  56717. image: {
  56718. source: "./media/characters/hiveheart/back.svg",
  56719. extra: 374/357,
  56720. bottom: 63/437
  56721. }
  56722. },
  56723. },
  56724. [
  56725. {
  56726. name: "Base",
  56727. height: math.unit(9 + 2/12, "feet"),
  56728. default: true
  56729. },
  56730. ]
  56731. ))
  56732. characterMakers.push(() => makeCharacter(
  56733. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56734. {
  56735. front: {
  56736. height: math.unit(2.5, "inches"),
  56737. weight: math.unit(0.6, "oz"),
  56738. name: "Front",
  56739. image: {
  56740. source: "./media/characters/bryn/front.svg",
  56741. extra: 1480/1205,
  56742. bottom: 27/1507
  56743. }
  56744. },
  56745. back: {
  56746. height: math.unit(2.5, "inches"),
  56747. weight: math.unit(0.6, "oz"),
  56748. name: "Back",
  56749. image: {
  56750. source: "./media/characters/bryn/back.svg",
  56751. extra: 1475/1201,
  56752. bottom: 39/1514
  56753. }
  56754. },
  56755. foot: {
  56756. height: math.unit(0.4, "inches"),
  56757. name: "Foot",
  56758. image: {
  56759. source: "./media/characters/bryn/foot.svg"
  56760. }
  56761. },
  56762. },
  56763. [
  56764. {
  56765. name: "Normal",
  56766. height: math.unit(2.5, "inches"),
  56767. default: true
  56768. },
  56769. ]
  56770. ))
  56771. characterMakers.push(() => makeCharacter(
  56772. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56773. {
  56774. side: {
  56775. height: math.unit(7, "feet"),
  56776. weight: math.unit(657, "kg"),
  56777. name: "Side",
  56778. image: {
  56779. source: "./media/characters/delta/side.svg",
  56780. extra: 781/212,
  56781. bottom: 7/788
  56782. },
  56783. extraAttributes: {
  56784. "wingspan": {
  56785. name: "Wingspan",
  56786. power: 1,
  56787. type: "length",
  56788. base: math.unit(48, "feet")
  56789. },
  56790. "length": {
  56791. name: "Length",
  56792. power: 1,
  56793. type: "length",
  56794. base: math.unit(21, "feet")
  56795. },
  56796. "pawSize": {
  56797. name: "Paw Size",
  56798. power: 2,
  56799. type: "area",
  56800. base: math.unit(1.5*1.4, "feet^2")
  56801. },
  56802. }
  56803. },
  56804. },
  56805. [
  56806. {
  56807. name: "Normal",
  56808. height: math.unit(6, "feet"),
  56809. default: true
  56810. },
  56811. ]
  56812. ))
  56813. characterMakers.push(() => makeCharacter(
  56814. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56815. {
  56816. front: {
  56817. height: math.unit(6, "feet"),
  56818. name: "Front",
  56819. image: {
  56820. source: "./media/characters/pyrow/front.svg",
  56821. extra: 513/486,
  56822. bottom: 14/527
  56823. }
  56824. },
  56825. frontWing: {
  56826. height: math.unit(6, "feet"),
  56827. name: "Front (Wing)",
  56828. image: {
  56829. source: "./media/characters/pyrow/front-wing.svg",
  56830. extra: 539/383,
  56831. bottom: 20/559
  56832. }
  56833. },
  56834. back: {
  56835. height: math.unit(6, "feet"),
  56836. name: "Back",
  56837. image: {
  56838. source: "./media/characters/pyrow/back.svg",
  56839. extra: 500/473,
  56840. bottom: 9/509
  56841. }
  56842. },
  56843. },
  56844. [
  56845. {
  56846. name: "Normal",
  56847. height: math.unit(6, "feet"),
  56848. default: true
  56849. },
  56850. ]
  56851. ))
  56852. characterMakers.push(() => makeCharacter(
  56853. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56854. {
  56855. front: {
  56856. height: math.unit(5, "meters"),
  56857. weight: math.unit(3, "tonnes"),
  56858. name: "Front",
  56859. image: {
  56860. source: "./media/characters/velikan/front.svg",
  56861. extra: 867/744,
  56862. bottom: 71/938
  56863. },
  56864. extraAttributes: {
  56865. "shoeSize": {
  56866. name: "Shoe Size",
  56867. power: 1,
  56868. type: "length",
  56869. base: math.unit(135, "ShoeSizeUK"),
  56870. defaultUnit: "ShoeSizeUK"
  56871. },
  56872. }
  56873. },
  56874. },
  56875. [
  56876. {
  56877. name: "Normal",
  56878. height: math.unit(5, "meters"),
  56879. default: true
  56880. },
  56881. {
  56882. name: "Macro",
  56883. height: math.unit(1, "km")
  56884. },
  56885. {
  56886. name: "Mega Macro",
  56887. height: math.unit(100, "km")
  56888. },
  56889. {
  56890. name: "Giga Macro",
  56891. height: math.unit(2, "megameters")
  56892. },
  56893. {
  56894. name: "Planetary",
  56895. height: math.unit(22, "megameters")
  56896. },
  56897. {
  56898. name: "Solar",
  56899. height: math.unit(8, "gigameters")
  56900. },
  56901. {
  56902. name: "Cosmic",
  56903. height: math.unit(10, "zettameters")
  56904. },
  56905. {
  56906. name: "Omni",
  56907. height: math.unit(9e260, "multiverses")
  56908. },
  56909. ]
  56910. ))
  56911. characterMakers.push(() => makeCharacter(
  56912. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56913. {
  56914. front: {
  56915. height: math.unit(4 + 3/12, "feet"),
  56916. weight: math.unit(90, "lb"),
  56917. name: "Front",
  56918. image: {
  56919. source: "./media/characters/sabiki/front.svg",
  56920. extra: 1662/1423,
  56921. bottom: 65/1727
  56922. }
  56923. },
  56924. },
  56925. [
  56926. {
  56927. name: "Normal",
  56928. height: math.unit(4 + 3/12, "feet"),
  56929. default: true
  56930. },
  56931. ]
  56932. ))
  56933. characterMakers.push(() => makeCharacter(
  56934. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56935. {
  56936. frontSfw: {
  56937. height: math.unit(2, "mm"),
  56938. name: "Front (SFW)",
  56939. image: {
  56940. source: "./media/characters/carmel/front-sfw.svg",
  56941. extra: 1131/1006,
  56942. bottom: 66/1197
  56943. }
  56944. },
  56945. frontNsfw: {
  56946. height: math.unit(2, "mm"),
  56947. name: "Front (NSFW)",
  56948. image: {
  56949. source: "./media/characters/carmel/front-nsfw.svg",
  56950. extra: 1131/1006,
  56951. bottom: 66/1197
  56952. }
  56953. },
  56954. foot: {
  56955. height: math.unit(0.3, "mm"),
  56956. name: "Foot",
  56957. image: {
  56958. source: "./media/characters/carmel/foot.svg"
  56959. }
  56960. },
  56961. tongue: {
  56962. height: math.unit(0.71, "mm"),
  56963. name: "Tongue",
  56964. image: {
  56965. source: "./media/characters/carmel/tongue.svg"
  56966. }
  56967. },
  56968. dick: {
  56969. height: math.unit(0.085, "mm"),
  56970. name: "Dick",
  56971. image: {
  56972. source: "./media/characters/carmel/dick.svg"
  56973. }
  56974. },
  56975. },
  56976. [
  56977. {
  56978. name: "Micro",
  56979. height: math.unit(2, "mm"),
  56980. default: true
  56981. },
  56982. {
  56983. name: "Normal",
  56984. height: math.unit(4 + 8/12, "feet")
  56985. },
  56986. {
  56987. name: "Mega Macro",
  56988. height: math.unit(250, "feet")
  56989. },
  56990. {
  56991. name: "BIGGER",
  56992. height: math.unit(1000, "feet")
  56993. },
  56994. {
  56995. name: "BIGGEST",
  56996. height: math.unit(2, "miles")
  56997. },
  56998. ]
  56999. ))
  57000. characterMakers.push(() => makeCharacter(
  57001. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57002. {
  57003. front: {
  57004. height: math.unit(6.5, "feet"),
  57005. weight: math.unit(198, "lb"),
  57006. name: "Front",
  57007. image: {
  57008. source: "./media/characters/tamani/anthro.svg",
  57009. extra: 930/890,
  57010. bottom: 34/964
  57011. },
  57012. form: "anthro",
  57013. default: true
  57014. },
  57015. side: {
  57016. height: math.unit(6, "feet"),
  57017. weight: math.unit(198*2, "lb"),
  57018. name: "Side",
  57019. image: {
  57020. source: "./media/characters/tamani/feral.svg",
  57021. extra: 559/519,
  57022. bottom: 43/602
  57023. },
  57024. form: "feral"
  57025. },
  57026. },
  57027. [
  57028. {
  57029. name: "Normal",
  57030. height: math.unit(6.5, "feet"),
  57031. default: true,
  57032. form: "anthro"
  57033. },
  57034. {
  57035. name: "Normal",
  57036. height: math.unit(6, "feet"),
  57037. default: true,
  57038. form: "feral"
  57039. },
  57040. ],
  57041. {
  57042. "anthro": {
  57043. name: "Anthro",
  57044. default: true
  57045. },
  57046. "feral": {
  57047. name: "Feral",
  57048. },
  57049. }
  57050. ))
  57051. characterMakers.push(() => makeCharacter(
  57052. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57053. {
  57054. front: {
  57055. height: math.unit(4 + 1/12, "feet"),
  57056. weight: math.unit(114, "lb"),
  57057. name: "Front",
  57058. image: {
  57059. source: "./media/characters/dex/front.svg",
  57060. extra: 787/680,
  57061. bottom: 18/805
  57062. }
  57063. },
  57064. side: {
  57065. height: math.unit(4 + 1/12, "feet"),
  57066. weight: math.unit(114, "lb"),
  57067. name: "Side",
  57068. image: {
  57069. source: "./media/characters/dex/side.svg",
  57070. extra: 785/680,
  57071. bottom: 12/797
  57072. }
  57073. },
  57074. back: {
  57075. height: math.unit(4 + 1/12, "feet"),
  57076. weight: math.unit(114, "lb"),
  57077. name: "Back",
  57078. image: {
  57079. source: "./media/characters/dex/back.svg",
  57080. extra: 785/681,
  57081. bottom: 17/802
  57082. }
  57083. },
  57084. loungewear: {
  57085. height: math.unit(4 + 1/12, "feet"),
  57086. weight: math.unit(114, "lb"),
  57087. name: "Loungewear",
  57088. image: {
  57089. source: "./media/characters/dex/loungewear.svg",
  57090. extra: 787/680,
  57091. bottom: 18/805
  57092. }
  57093. },
  57094. workout: {
  57095. height: math.unit(4 + 1/12, "feet"),
  57096. weight: math.unit(114, "lb"),
  57097. name: "Workout",
  57098. image: {
  57099. source: "./media/characters/dex/workout.svg",
  57100. extra: 787/680,
  57101. bottom: 18/805
  57102. }
  57103. },
  57104. schoolUniform: {
  57105. height: math.unit(4 + 1/12, "feet"),
  57106. weight: math.unit(114, "lb"),
  57107. name: "School-uniform",
  57108. image: {
  57109. source: "./media/characters/dex/school-uniform.svg",
  57110. extra: 787/680,
  57111. bottom: 18/805
  57112. }
  57113. },
  57114. maw: {
  57115. height: math.unit(0.55, "feet"),
  57116. name: "Maw",
  57117. image: {
  57118. source: "./media/characters/dex/maw.svg"
  57119. }
  57120. },
  57121. paw: {
  57122. height: math.unit(0.87, "feet"),
  57123. name: "Paw",
  57124. image: {
  57125. source: "./media/characters/dex/paw.svg"
  57126. }
  57127. },
  57128. bust: {
  57129. height: math.unit(1.67, "feet"),
  57130. name: "Bust",
  57131. image: {
  57132. source: "./media/characters/dex/bust.svg"
  57133. }
  57134. },
  57135. },
  57136. [
  57137. {
  57138. name: "Normal",
  57139. height: math.unit(4 + 1/12, "feet"),
  57140. default: true
  57141. },
  57142. ]
  57143. ))
  57144. characterMakers.push(() => makeCharacter(
  57145. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57146. {
  57147. front: {
  57148. height: math.unit(4 + 3/12, "feet"),
  57149. weight: math.unit(60, "lb"),
  57150. name: "Front",
  57151. image: {
  57152. source: "./media/characters/silke/front.svg",
  57153. extra: 1334/1122,
  57154. bottom: 21/1355
  57155. }
  57156. },
  57157. back: {
  57158. height: math.unit(4 + 3/12, "feet"),
  57159. weight: math.unit(60, "lb"),
  57160. name: "Back",
  57161. image: {
  57162. source: "./media/characters/silke/back.svg",
  57163. extra: 1328/1092,
  57164. bottom: 16/1344
  57165. }
  57166. },
  57167. dressed: {
  57168. height: math.unit(4 + 3/12, "feet"),
  57169. weight: math.unit(60, "lb"),
  57170. name: "Dressed",
  57171. image: {
  57172. source: "./media/characters/silke/dressed.svg",
  57173. extra: 1334/1122,
  57174. bottom: 43/1377
  57175. }
  57176. },
  57177. },
  57178. [
  57179. {
  57180. name: "Normal",
  57181. height: math.unit(4 + 3/12, "feet"),
  57182. default: true
  57183. },
  57184. ]
  57185. ))
  57186. characterMakers.push(() => makeCharacter(
  57187. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57188. {
  57189. front: {
  57190. height: math.unit(1.58, "meters"),
  57191. weight: math.unit(47, "kg"),
  57192. name: "Front",
  57193. image: {
  57194. source: "./media/characters/wireshark/front.svg",
  57195. extra: 883/838,
  57196. bottom: 66/949
  57197. }
  57198. },
  57199. },
  57200. [
  57201. {
  57202. name: "Normal",
  57203. height: math.unit(1.58, "meters"),
  57204. default: true
  57205. },
  57206. ]
  57207. ))
  57208. characterMakers.push(() => makeCharacter(
  57209. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57210. {
  57211. front: {
  57212. height: math.unit(6, "meters"),
  57213. weight: math.unit(15000, "kg"),
  57214. name: "Front",
  57215. image: {
  57216. source: "./media/characters/gallagher/front.svg",
  57217. extra: 532/493,
  57218. bottom: 0/532
  57219. }
  57220. },
  57221. },
  57222. [
  57223. {
  57224. name: "Normal",
  57225. height: math.unit(6, "meters"),
  57226. default: true
  57227. },
  57228. ]
  57229. ))
  57230. characterMakers.push(() => makeCharacter(
  57231. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57232. {
  57233. front: {
  57234. height: math.unit(2.4, "meters"),
  57235. weight: math.unit(270, "kg"),
  57236. name: "Front",
  57237. image: {
  57238. source: "./media/characters/alice/front.svg",
  57239. extra: 950/900,
  57240. bottom: 36/986
  57241. }
  57242. },
  57243. side: {
  57244. height: math.unit(2.4, "meters"),
  57245. weight: math.unit(270, "kg"),
  57246. name: "Side",
  57247. image: {
  57248. source: "./media/characters/alice/side.svg",
  57249. extra: 921/876,
  57250. bottom: 19/940
  57251. }
  57252. },
  57253. dressed: {
  57254. height: math.unit(2.4, "meters"),
  57255. weight: math.unit(270, "kg"),
  57256. name: "Dressed",
  57257. image: {
  57258. source: "./media/characters/alice/dressed.svg",
  57259. extra: 905/850,
  57260. bottom: 81/986
  57261. }
  57262. },
  57263. fishnet: {
  57264. height: math.unit(2.4, "meters"),
  57265. weight: math.unit(270, "kg"),
  57266. name: "Fishnet",
  57267. image: {
  57268. source: "./media/characters/alice/fishnet.svg",
  57269. extra: 905/850,
  57270. bottom: 81/986
  57271. }
  57272. },
  57273. },
  57274. [
  57275. {
  57276. name: "Normal",
  57277. height: math.unit(2.4, "meters"),
  57278. default: true
  57279. },
  57280. ]
  57281. ))
  57282. characterMakers.push(() => makeCharacter(
  57283. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57284. {
  57285. front: {
  57286. height: math.unit(175.25, "feet"),
  57287. name: "Front",
  57288. image: {
  57289. source: "./media/characters/fio/front.svg",
  57290. extra: 1883/1591,
  57291. bottom: 34/1917
  57292. }
  57293. },
  57294. },
  57295. [
  57296. {
  57297. name: "Normal",
  57298. height: math.unit(175.25, "cm"),
  57299. default: true
  57300. },
  57301. ]
  57302. ))
  57303. characterMakers.push(() => makeCharacter(
  57304. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57305. {
  57306. side: {
  57307. height: math.unit(6, "meters"),
  57308. weight: math.unit(3400, "kg"),
  57309. preyCapacity: math.unit(1700, "liters"),
  57310. name: "Side",
  57311. image: {
  57312. source: "./media/characters/hass/side.svg",
  57313. extra: 1058/997,
  57314. bottom: 177/1235
  57315. }
  57316. },
  57317. feeding: {
  57318. height: math.unit(6*0.63, "meters"),
  57319. weight: math.unit(3400, "kg"),
  57320. preyCapacity: math.unit(1700, "liters"),
  57321. name: "Feeding",
  57322. image: {
  57323. source: "./media/characters/hass/feeding.svg",
  57324. extra: 689/579,
  57325. bottom: 146/835
  57326. }
  57327. },
  57328. guts: {
  57329. height: math.unit(6, "meters"),
  57330. weight: math.unit(3400, "kg"),
  57331. name: "Guts",
  57332. image: {
  57333. source: "./media/characters/hass/guts.svg",
  57334. extra: 1223/1198,
  57335. bottom: 182/1405
  57336. }
  57337. },
  57338. dickFront: {
  57339. height: math.unit(1.4, "meters"),
  57340. name: "Dick (Front)",
  57341. image: {
  57342. source: "./media/characters/hass/dick-front.svg"
  57343. }
  57344. },
  57345. dickSide: {
  57346. height: math.unit(1.3, "meters"),
  57347. name: "Dick (Side)",
  57348. image: {
  57349. source: "./media/characters/hass/dick-side.svg"
  57350. }
  57351. },
  57352. dickBack: {
  57353. height: math.unit(1.4, "meters"),
  57354. name: "Dick (Back)",
  57355. image: {
  57356. source: "./media/characters/hass/dick-back.svg"
  57357. }
  57358. },
  57359. },
  57360. [
  57361. {
  57362. name: "Normal",
  57363. height: math.unit(6, "meters"),
  57364. default: true
  57365. },
  57366. ]
  57367. ))
  57368. characterMakers.push(() => makeCharacter(
  57369. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57370. {
  57371. front: {
  57372. height: math.unit(4, "feet"),
  57373. weight: math.unit(60, "lb"),
  57374. name: "Front",
  57375. image: {
  57376. source: "./media/characters/hickory-finnegan/front.svg",
  57377. extra: 444/411,
  57378. bottom: 10/454
  57379. }
  57380. },
  57381. side: {
  57382. height: math.unit(4, "feet"),
  57383. weight: math.unit(60, "lb"),
  57384. name: "Side",
  57385. image: {
  57386. source: "./media/characters/hickory-finnegan/side.svg",
  57387. extra: 444/411,
  57388. bottom: 10/454
  57389. }
  57390. },
  57391. back: {
  57392. height: math.unit(4, "feet"),
  57393. weight: math.unit(60, "lb"),
  57394. name: "Back",
  57395. image: {
  57396. source: "./media/characters/hickory-finnegan/back.svg",
  57397. extra: 444/411,
  57398. bottom: 10/454
  57399. }
  57400. },
  57401. },
  57402. [
  57403. {
  57404. name: "Normal",
  57405. height: math.unit(4, "feet"),
  57406. default: true
  57407. },
  57408. ]
  57409. ))
  57410. characterMakers.push(() => makeCharacter(
  57411. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57412. {
  57413. snivy_front: {
  57414. height: math.unit(2, "feet"),
  57415. weight: math.unit(17.9, "lb"),
  57416. name: "Front",
  57417. image: {
  57418. source: "./media/characters/robin-phox/snivy-front.svg",
  57419. extra: 569/504,
  57420. bottom: 33/602
  57421. },
  57422. form: "snivy",
  57423. default: true
  57424. },
  57425. snivy_frontNsfw: {
  57426. height: math.unit(2, "feet"),
  57427. weight: math.unit(17.9, "lb"),
  57428. name: "Front (NSFW)",
  57429. image: {
  57430. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57431. extra: 569/504,
  57432. bottom: 33/602
  57433. },
  57434. form: "snivy",
  57435. },
  57436. snivy_back: {
  57437. height: math.unit(2, "feet"),
  57438. weight: math.unit(17.9, "lb"),
  57439. name: "Back",
  57440. image: {
  57441. source: "./media/characters/robin-phox/snivy-back.svg",
  57442. extra: 577/508,
  57443. bottom: 21/598
  57444. },
  57445. form: "snivy",
  57446. },
  57447. snivy_foot: {
  57448. height: math.unit(0.68, "feet"),
  57449. name: "Foot",
  57450. image: {
  57451. source: "./media/characters/robin-phox/snivy-foot.svg"
  57452. },
  57453. form: "snivy",
  57454. },
  57455. snivy_sole: {
  57456. height: math.unit(0.68, "feet"),
  57457. name: "Sole",
  57458. image: {
  57459. source: "./media/characters/robin-phox/snivy-sole.svg"
  57460. },
  57461. form: "snivy",
  57462. },
  57463. yoshi_front: {
  57464. height: math.unit(6, "feet"),
  57465. weight: math.unit(150, "lb"),
  57466. name: "Front",
  57467. image: {
  57468. source: "./media/characters/robin-phox/yoshi-front.svg",
  57469. extra: 890/792,
  57470. bottom: 29/919
  57471. },
  57472. form: "yoshi",
  57473. default: true
  57474. },
  57475. yoshi_frontNsfw: {
  57476. height: math.unit(6, "feet"),
  57477. weight: math.unit(150, "lb"),
  57478. name: "Front (NSFW)",
  57479. image: {
  57480. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57481. extra: 890/792,
  57482. bottom: 29/919
  57483. },
  57484. form: "yoshi",
  57485. },
  57486. yoshi_back: {
  57487. height: math.unit(6, "feet"),
  57488. weight: math.unit(150, "lb"),
  57489. name: "Back",
  57490. image: {
  57491. source: "./media/characters/robin-phox/yoshi-back.svg",
  57492. extra: 890/792,
  57493. bottom: 29/919
  57494. },
  57495. form: "yoshi",
  57496. },
  57497. yoshi_foot: {
  57498. height: math.unit(1.5, "feet"),
  57499. name: "Foot",
  57500. image: {
  57501. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57502. },
  57503. form: "yoshi",
  57504. },
  57505. delphox_front: {
  57506. height: math.unit(4 + 11/12, "feet"),
  57507. weight: math.unit(86, "lb"),
  57508. name: "Front",
  57509. image: {
  57510. source: "./media/characters/robin-phox/delphox-front.svg",
  57511. extra: 1266/1069,
  57512. bottom: 32/1298
  57513. },
  57514. form: "delphox",
  57515. default: true
  57516. },
  57517. delphox_frontNsfw: {
  57518. height: math.unit(4 + 11/12, "feet"),
  57519. weight: math.unit(86, "lb"),
  57520. name: "Front (NSFW)",
  57521. image: {
  57522. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57523. extra: 1266/1069,
  57524. bottom: 32/1298
  57525. },
  57526. form: "delphox",
  57527. },
  57528. delphox_back: {
  57529. height: math.unit(4 + 11/12, "feet"),
  57530. weight: math.unit(86, "lb"),
  57531. name: "Back",
  57532. image: {
  57533. source: "./media/characters/robin-phox/delphox-back.svg",
  57534. extra: 1269/1083,
  57535. bottom: 15/1284
  57536. },
  57537. form: "delphox",
  57538. },
  57539. mienshao_front: {
  57540. height: math.unit(4 + 7/12, "feet"),
  57541. weight: math.unit(78.3, "lb"),
  57542. name: "Front",
  57543. image: {
  57544. source: "./media/characters/robin-phox/mienshao-front.svg",
  57545. extra: 1052/970,
  57546. bottom: 108/1160
  57547. },
  57548. form: "mienshao",
  57549. default: true
  57550. },
  57551. mienshao_frontNsfw: {
  57552. height: math.unit(4 + 7/12, "feet"),
  57553. weight: math.unit(78.3, "lb"),
  57554. name: "Front (NSFW)",
  57555. image: {
  57556. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57557. extra: 1052/970,
  57558. bottom: 108/1160
  57559. },
  57560. form: "mienshao",
  57561. },
  57562. mienshao_back: {
  57563. height: math.unit(4 + 7/12, "feet"),
  57564. weight: math.unit(78.3, "lb"),
  57565. name: "Back",
  57566. image: {
  57567. source: "./media/characters/robin-phox/mienshao-back.svg",
  57568. extra: 1102/982,
  57569. bottom: 32/1134
  57570. },
  57571. form: "mienshao",
  57572. },
  57573. inteleon_front: {
  57574. height: math.unit(6 + 3/12, "feet"),
  57575. weight: math.unit(99.6, "lb"),
  57576. name: "Front",
  57577. image: {
  57578. source: "./media/characters/robin-phox/inteleon-front.svg",
  57579. extra: 910/799,
  57580. bottom: 76/986
  57581. },
  57582. form: "inteleon",
  57583. default: true
  57584. },
  57585. inteleon_frontNsfw: {
  57586. height: math.unit(6 + 3/12, "feet"),
  57587. weight: math.unit(99.6, "lb"),
  57588. name: "Front (NSFW)",
  57589. image: {
  57590. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57591. extra: 910/799,
  57592. bottom: 76/986
  57593. },
  57594. form: "inteleon",
  57595. },
  57596. inteleon_back: {
  57597. height: math.unit(6 + 3/12, "feet"),
  57598. weight: math.unit(99.6, "lb"),
  57599. name: "Back",
  57600. image: {
  57601. source: "./media/characters/robin-phox/inteleon-back.svg",
  57602. extra: 907/796,
  57603. bottom: 25/932
  57604. },
  57605. form: "inteleon",
  57606. },
  57607. reshiram_front: {
  57608. height: math.unit(10 + 6/12, "feet"),
  57609. weight: math.unit(727.5, "lb"),
  57610. name: "Front",
  57611. image: {
  57612. source: "./media/characters/robin-phox/reshiram-front.svg",
  57613. extra: 1198/940,
  57614. bottom: 123/1321
  57615. },
  57616. form: "reshiram",
  57617. },
  57618. reshiram_frontNsfw: {
  57619. height: math.unit(10 + 6/12, "feet"),
  57620. weight: math.unit(727.5, "lb"),
  57621. name: "Front-nsfw",
  57622. image: {
  57623. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57624. extra: 1198/940,
  57625. bottom: 123/1321
  57626. },
  57627. form: "reshiram",
  57628. },
  57629. reshiram_back: {
  57630. height: math.unit(10 + 6/12, "feet"),
  57631. weight: math.unit(727.5, "lb"),
  57632. name: "Back",
  57633. image: {
  57634. source: "./media/characters/robin-phox/reshiram-back.svg",
  57635. extra: 1024/904,
  57636. bottom: 85/1109
  57637. },
  57638. form: "reshiram",
  57639. },
  57640. samurott_front: {
  57641. height: math.unit(8, "feet"),
  57642. weight: math.unit(208.6, "lb"),
  57643. name: "Front",
  57644. image: {
  57645. source: "./media/characters/robin-phox/samurott-front.svg",
  57646. extra: 1048/984,
  57647. bottom: 100/1148
  57648. },
  57649. form: "samurott",
  57650. },
  57651. samurott_frontNsfw: {
  57652. height: math.unit(8, "feet"),
  57653. weight: math.unit(208.6, "lb"),
  57654. name: "Front-nsfw",
  57655. image: {
  57656. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57657. extra: 1048/984,
  57658. bottom: 100/1148
  57659. },
  57660. form: "samurott",
  57661. },
  57662. samurott_back: {
  57663. height: math.unit(8, "feet"),
  57664. weight: math.unit(208.6, "lb"),
  57665. name: "Back",
  57666. image: {
  57667. source: "./media/characters/robin-phox/samurott-back.svg",
  57668. extra: 1110/1042,
  57669. bottom: 12/1122
  57670. },
  57671. form: "samurott",
  57672. },
  57673. samurott_feral: {
  57674. height: math.unit(4 + 11/12, "feet"),
  57675. weight: math.unit(208.6, "lb"),
  57676. name: "Feral",
  57677. image: {
  57678. source: "./media/characters/robin-phox/samurott-feral.svg",
  57679. extra: 766/681,
  57680. bottom: 108/874
  57681. },
  57682. form: "samurott",
  57683. },
  57684. },
  57685. [
  57686. {
  57687. name: "Normal",
  57688. height: math.unit(2, "feet"),
  57689. default: true,
  57690. form: "snivy"
  57691. },
  57692. {
  57693. name: "Normal",
  57694. height: math.unit(6, "feet"),
  57695. default: true,
  57696. form: "yoshi"
  57697. },
  57698. {
  57699. name: "Normal",
  57700. height: math.unit(4 + 11/12, "feet"),
  57701. default: true,
  57702. form: "delphox"
  57703. },
  57704. {
  57705. name: "Normal",
  57706. height: math.unit(4 + 7/12, "feet"),
  57707. default: true,
  57708. form: "mienshao"
  57709. },
  57710. {
  57711. name: "Normal",
  57712. height: math.unit(6 + 3/12, "feet"),
  57713. default: true,
  57714. form: "inteleon"
  57715. },
  57716. {
  57717. name: "Normal",
  57718. height: math.unit(10 + 6/12, "feet"),
  57719. default: true,
  57720. form: "reshiram"
  57721. },
  57722. {
  57723. name: "Normal",
  57724. height: math.unit(8, "feet"),
  57725. default: true,
  57726. form: "samurott"
  57727. },
  57728. {
  57729. name: "Macro",
  57730. height: math.unit(500, "feet"),
  57731. allForms: true
  57732. },
  57733. {
  57734. name: "Mega Macro",
  57735. height: math.unit(10, "earths"),
  57736. allForms: true
  57737. },
  57738. {
  57739. name: "Giga Macro",
  57740. height: math.unit(1, "galaxy"),
  57741. allForms: true
  57742. },
  57743. {
  57744. name: "Godly Macro",
  57745. height: math.unit(1e10, "multiverses"),
  57746. allForms: true
  57747. },
  57748. ],
  57749. {
  57750. "snivy": {
  57751. name: "Snivy",
  57752. default: true
  57753. },
  57754. "yoshi": {
  57755. name: "Yoshi",
  57756. },
  57757. "delphox": {
  57758. name: "Delphox",
  57759. },
  57760. "mienshao": {
  57761. name: "Mienshao",
  57762. },
  57763. "inteleon": {
  57764. name: "Inteleon",
  57765. },
  57766. "reshiram": {
  57767. name: "Reshiram",
  57768. },
  57769. "samurott": {
  57770. name: "Samurott",
  57771. },
  57772. }
  57773. ))
  57774. characterMakers.push(() => makeCharacter(
  57775. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57776. {
  57777. front: {
  57778. height: math.unit(4, "feet"),
  57779. name: "Front",
  57780. image: {
  57781. source: "./media/characters/ash-leung/front.svg",
  57782. extra: 1916/1792,
  57783. bottom: 50/1966
  57784. }
  57785. },
  57786. },
  57787. [
  57788. {
  57789. name: "Atomic",
  57790. height: math.unit(1, "angstrom")
  57791. },
  57792. {
  57793. name: "Microscopic",
  57794. height: math.unit(4000, "angstroms")
  57795. },
  57796. {
  57797. name: "Speck",
  57798. height: math.unit(1, "mm")
  57799. },
  57800. {
  57801. name: "Small",
  57802. height: math.unit(1, "inch")
  57803. },
  57804. {
  57805. name: "Normal",
  57806. height: math.unit(4, "feet"),
  57807. default: true
  57808. },
  57809. ]
  57810. ))
  57811. characterMakers.push(() => makeCharacter(
  57812. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57813. {
  57814. frontDressed: {
  57815. height: math.unit(2.08, "meters"),
  57816. weight: math.unit(175, "lb"),
  57817. name: "Front (Dressed)",
  57818. image: {
  57819. source: "./media/characters/carie/front-dressed.svg",
  57820. extra: 456/417,
  57821. bottom: 7/463
  57822. }
  57823. },
  57824. backDressed: {
  57825. height: math.unit(2.08, "meters"),
  57826. weight: math.unit(175, "lb"),
  57827. name: "Back (Dressed)",
  57828. image: {
  57829. source: "./media/characters/carie/back-dressed.svg",
  57830. extra: 455/414,
  57831. bottom: 11/466
  57832. }
  57833. },
  57834. front: {
  57835. height: math.unit(2, "meters"),
  57836. weight: math.unit(175, "lb"),
  57837. name: "Front",
  57838. image: {
  57839. source: "./media/characters/carie/front.svg",
  57840. extra: 438/399,
  57841. bottom: 12/450
  57842. }
  57843. },
  57844. back: {
  57845. height: math.unit(2, "meters"),
  57846. weight: math.unit(175, "lb"),
  57847. name: "Back",
  57848. image: {
  57849. source: "./media/characters/carie/back.svg",
  57850. extra: 438/397,
  57851. bottom: 7/445
  57852. }
  57853. },
  57854. },
  57855. [
  57856. {
  57857. name: "Normal",
  57858. height: math.unit(2.08, "meters"),
  57859. default: true
  57860. },
  57861. {
  57862. name: "Macro",
  57863. height: math.unit(2.08e3, "meters")
  57864. },
  57865. {
  57866. name: "Mega Macro",
  57867. height: math.unit(2.08e6, "meters")
  57868. },
  57869. {
  57870. name: "Giga Macro",
  57871. height: math.unit(2.08e9, "meters")
  57872. },
  57873. {
  57874. name: "Tera Macro",
  57875. height: math.unit(2.08e12, "meters")
  57876. },
  57877. {
  57878. name: "Peta Macro",
  57879. height: math.unit(2.08e15, "meters")
  57880. },
  57881. {
  57882. name: "Exa Macro",
  57883. height: math.unit(2.08e18, "meters")
  57884. },
  57885. {
  57886. name: "Zetta Macro",
  57887. height: math.unit(2.08e21, "meters")
  57888. },
  57889. {
  57890. name: "Yotta Macro",
  57891. height: math.unit(2.08e24, "meters")
  57892. },
  57893. ]
  57894. ))
  57895. characterMakers.push(() => makeCharacter(
  57896. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57897. {
  57898. front: {
  57899. height: math.unit(5 + 2/12, "feet"),
  57900. weight: math.unit(120, "lb"),
  57901. name: "Front",
  57902. image: {
  57903. source: "./media/characters/sai-bree/front.svg",
  57904. extra: 1843/1702,
  57905. bottom: 91/1934
  57906. }
  57907. },
  57908. back: {
  57909. height: math.unit(5 + 2/12, "feet"),
  57910. weight: math.unit(120, "lb"),
  57911. name: "Back",
  57912. image: {
  57913. source: "./media/characters/sai-bree/back.svg",
  57914. extra: 1809/1637,
  57915. bottom: 56/1865
  57916. }
  57917. },
  57918. },
  57919. [
  57920. {
  57921. name: "Normal",
  57922. height: math.unit(5 + 2/12, "feet"),
  57923. default: true
  57924. },
  57925. {
  57926. name: "Macro",
  57927. height: math.unit(500, "feet")
  57928. },
  57929. ]
  57930. ))
  57931. characterMakers.push(() => makeCharacter(
  57932. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57933. {
  57934. side: {
  57935. height: math.unit(0.77, "meters"),
  57936. weight: math.unit(120, "lb"),
  57937. name: "Side",
  57938. image: {
  57939. source: "./media/characters/davwyn/side.svg",
  57940. extra: 1557/1225,
  57941. bottom: 131/1688
  57942. }
  57943. },
  57944. front: {
  57945. height: math.unit(0.835410, "meters"),
  57946. weight: math.unit(120, "lb"),
  57947. name: "Front",
  57948. image: {
  57949. source: "./media/characters/davwyn/front.svg",
  57950. extra: 870/843,
  57951. bottom: 175/1045
  57952. }
  57953. },
  57954. },
  57955. [
  57956. {
  57957. name: "Minidrake",
  57958. height: math.unit(0.77/4, "meters")
  57959. },
  57960. {
  57961. name: "Normal",
  57962. height: math.unit(0.77, "meters"),
  57963. default: true
  57964. },
  57965. ]
  57966. ))
  57967. characterMakers.push(() => makeCharacter(
  57968. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57969. {
  57970. front: {
  57971. height: math.unit(10 + 3/12, "feet"),
  57972. weight: math.unit(2857, "lb"),
  57973. name: "Front",
  57974. image: {
  57975. source: "./media/characters/balans/front.svg",
  57976. extra: 427/402,
  57977. bottom: 26/453
  57978. }
  57979. },
  57980. side: {
  57981. height: math.unit(10 + 3/12, "feet"),
  57982. weight: math.unit(2857, "lb"),
  57983. name: "Side",
  57984. image: {
  57985. source: "./media/characters/balans/side.svg",
  57986. extra: 397/371,
  57987. bottom: 17/414
  57988. }
  57989. },
  57990. back: {
  57991. height: math.unit(10 + 3/12, "feet"),
  57992. weight: math.unit(2857, "lb"),
  57993. name: "Back",
  57994. image: {
  57995. source: "./media/characters/balans/back.svg",
  57996. extra: 408/381,
  57997. bottom: 14/422
  57998. }
  57999. },
  58000. hand: {
  58001. height: math.unit(1.15, "feet"),
  58002. name: "Hand",
  58003. image: {
  58004. source: "./media/characters/balans/hand.svg"
  58005. }
  58006. },
  58007. footRest: {
  58008. height: math.unit(3.1, "feet"),
  58009. name: "Foot (Rest)",
  58010. image: {
  58011. source: "./media/characters/balans/foot-rest.svg"
  58012. }
  58013. },
  58014. footActive: {
  58015. height: math.unit(3.5, "feet"),
  58016. name: "Foot (Active)",
  58017. image: {
  58018. source: "./media/characters/balans/foot-active.svg"
  58019. }
  58020. },
  58021. },
  58022. [
  58023. {
  58024. name: "Normal",
  58025. height: math.unit(10 + 3/12, "feet"),
  58026. default: true
  58027. },
  58028. ]
  58029. ))
  58030. characterMakers.push(() => makeCharacter(
  58031. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58032. {
  58033. side: {
  58034. height: math.unit(9, "meters"),
  58035. weight: math.unit(114, "tonnes"),
  58036. name: "Side",
  58037. image: {
  58038. source: "./media/characters/eldkveikir/side.svg",
  58039. extra: 1927/338,
  58040. bottom: 42/1969
  58041. }
  58042. },
  58043. sitting: {
  58044. height: math.unit(13.4, "meters"),
  58045. weight: math.unit(114, "tonnes"),
  58046. name: "Sitting",
  58047. image: {
  58048. source: "./media/characters/eldkveikir/sitting.svg",
  58049. extra: 1108/963,
  58050. bottom: 610/1718
  58051. }
  58052. },
  58053. maw: {
  58054. height: math.unit(8.36, "meters"),
  58055. name: "Maw",
  58056. image: {
  58057. source: "./media/characters/eldkveikir/maw.svg"
  58058. }
  58059. },
  58060. hand: {
  58061. height: math.unit(4.84, "meters"),
  58062. name: "Hand",
  58063. image: {
  58064. source: "./media/characters/eldkveikir/hand.svg"
  58065. }
  58066. },
  58067. foot: {
  58068. height: math.unit(6.9, "meters"),
  58069. name: "Foot",
  58070. image: {
  58071. source: "./media/characters/eldkveikir/foot.svg"
  58072. }
  58073. },
  58074. genitals: {
  58075. height: math.unit(9.6, "meters"),
  58076. name: "Genitals",
  58077. image: {
  58078. source: "./media/characters/eldkveikir/genitals.svg"
  58079. }
  58080. },
  58081. },
  58082. [
  58083. {
  58084. name: "Normal",
  58085. height: math.unit(9, "meters"),
  58086. default: true
  58087. },
  58088. ]
  58089. ))
  58090. characterMakers.push(() => makeCharacter(
  58091. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58092. {
  58093. front: {
  58094. height: math.unit(14, "feet"),
  58095. weight: math.unit(4100, "lb"),
  58096. name: "Front",
  58097. image: {
  58098. source: "./media/characters/arrow/front.svg",
  58099. extra: 330/318,
  58100. bottom: 56/386
  58101. }
  58102. },
  58103. },
  58104. [
  58105. {
  58106. name: "Normal",
  58107. height: math.unit(14, "feet"),
  58108. default: true
  58109. },
  58110. {
  58111. name: "Minimacro",
  58112. height: math.unit(63, "feet")
  58113. },
  58114. {
  58115. name: "Macro",
  58116. height: math.unit(630, "feet")
  58117. },
  58118. {
  58119. name: "Megamacro",
  58120. height: math.unit(12600, "feet")
  58121. },
  58122. {
  58123. name: "Gigamacro",
  58124. height: math.unit(18000, "miles")
  58125. },
  58126. ]
  58127. ))
  58128. characterMakers.push(() => makeCharacter(
  58129. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58130. {
  58131. front: {
  58132. height: math.unit(10, "feet"),
  58133. weight: math.unit(2.4, "tons"),
  58134. name: "Front",
  58135. image: {
  58136. source: "./media/characters/3yk-k0-unit/front.svg",
  58137. extra: 573/561,
  58138. bottom: 33/606
  58139. }
  58140. },
  58141. back: {
  58142. height: math.unit(10, "feet"),
  58143. weight: math.unit(2.4, "tons"),
  58144. name: "Back",
  58145. image: {
  58146. source: "./media/characters/3yk-k0-unit/back.svg",
  58147. extra: 614/573,
  58148. bottom: 32/646
  58149. }
  58150. },
  58151. maw: {
  58152. height: math.unit(2.15, "feet"),
  58153. name: "Maw",
  58154. image: {
  58155. source: "./media/characters/3yk-k0-unit/maw.svg"
  58156. }
  58157. },
  58158. },
  58159. [
  58160. {
  58161. name: "Normal",
  58162. height: math.unit(10, "feet"),
  58163. default: true
  58164. },
  58165. ]
  58166. ))
  58167. characterMakers.push(() => makeCharacter(
  58168. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58169. {
  58170. front: {
  58171. height: math.unit(8 + 8/12, "feet"),
  58172. name: "Front",
  58173. image: {
  58174. source: "./media/characters/nemo/front.svg",
  58175. extra: 1308/1217,
  58176. bottom: 57/1365
  58177. }
  58178. },
  58179. },
  58180. [
  58181. {
  58182. name: "Normal",
  58183. height: math.unit(8 + 8/12, "feet"),
  58184. default: true
  58185. },
  58186. ]
  58187. ))
  58188. characterMakers.push(() => makeCharacter(
  58189. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58190. {
  58191. front: {
  58192. height: math.unit(8, "feet"),
  58193. weight: math.unit(760, "lb"),
  58194. name: "Front",
  58195. image: {
  58196. source: "./media/characters/rexx/front.svg",
  58197. extra: 786/750,
  58198. bottom: 17/803
  58199. },
  58200. extraAttributes: {
  58201. "pawLength": {
  58202. name: "Paw Length",
  58203. power: 1,
  58204. type: "length",
  58205. base: math.unit(27, "inches")
  58206. },
  58207. }
  58208. },
  58209. },
  58210. [
  58211. {
  58212. name: "Micro",
  58213. height: math.unit(2, "inches")
  58214. },
  58215. {
  58216. name: "Normal",
  58217. height: math.unit(8, "feet"),
  58218. default: true
  58219. },
  58220. {
  58221. name: "Macro",
  58222. height: math.unit(150, "feet")
  58223. },
  58224. ]
  58225. ))
  58226. characterMakers.push(() => makeCharacter(
  58227. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58228. {
  58229. front: {
  58230. height: math.unit(18, "feet"),
  58231. weight: math.unit(1975, "lb"),
  58232. name: "Front",
  58233. image: {
  58234. source: "./media/characters/draco/front.svg",
  58235. extra: 1325/1241,
  58236. bottom: 83/1408
  58237. }
  58238. },
  58239. back: {
  58240. height: math.unit(18, "feet"),
  58241. weight: math.unit(1975, "lb"),
  58242. name: "Back",
  58243. image: {
  58244. source: "./media/characters/draco/back.svg",
  58245. extra: 1332/1250,
  58246. bottom: 43/1375
  58247. }
  58248. },
  58249. dick: {
  58250. height: math.unit(7.5, "feet"),
  58251. name: "Dick",
  58252. image: {
  58253. source: "./media/characters/draco/dick.svg"
  58254. }
  58255. },
  58256. },
  58257. [
  58258. {
  58259. name: "Normal",
  58260. height: math.unit(18, "feet"),
  58261. default: true
  58262. },
  58263. ]
  58264. ))
  58265. characterMakers.push(() => makeCharacter(
  58266. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58267. {
  58268. front: {
  58269. height: math.unit(3.2, "meters"),
  58270. name: "Front",
  58271. image: {
  58272. source: "./media/characters/harriett/front.svg",
  58273. extra: 1966/1915,
  58274. bottom: 9/1975
  58275. }
  58276. },
  58277. },
  58278. [
  58279. {
  58280. name: "Normal",
  58281. height: math.unit(3.2, "meters"),
  58282. default: true
  58283. },
  58284. ]
  58285. ))
  58286. characterMakers.push(() => makeCharacter(
  58287. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58288. {
  58289. sitting: {
  58290. height: math.unit(0.8, "meter"),
  58291. name: "Sitting",
  58292. image: {
  58293. source: "./media/characters/serpentus/sitting.svg",
  58294. extra: 293/290,
  58295. bottom: 140/433
  58296. }
  58297. },
  58298. },
  58299. [
  58300. {
  58301. name: "Normal",
  58302. height: math.unit(0.8, "meter"),
  58303. default: true
  58304. },
  58305. ]
  58306. ))
  58307. characterMakers.push(() => makeCharacter(
  58308. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58309. {
  58310. front: {
  58311. height: math.unit(5.7174385736, "feet"),
  58312. name: "Front",
  58313. image: {
  58314. source: "./media/characters/nova-polecat/front.svg",
  58315. extra: 1317/1216,
  58316. bottom: 92/1409
  58317. }
  58318. },
  58319. },
  58320. [
  58321. {
  58322. name: "Normal",
  58323. height: math.unit(5.7174385736, "feet"),
  58324. default: true
  58325. },
  58326. ]
  58327. ))
  58328. characterMakers.push(() => makeCharacter(
  58329. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58330. {
  58331. front: {
  58332. height: math.unit(5 + 4/12, "feet"),
  58333. weight: math.unit(250, "lb"),
  58334. name: "Front",
  58335. image: {
  58336. source: "./media/characters/mook/front.svg",
  58337. extra: 1088/1037,
  58338. bottom: 132/1220
  58339. }
  58340. },
  58341. back: {
  58342. height: math.unit(5 + 1/12, "feet"),
  58343. weight: math.unit(250, "lb"),
  58344. name: "Back",
  58345. image: {
  58346. source: "./media/characters/mook/back.svg",
  58347. extra: 1184/905,
  58348. bottom: 96/1280
  58349. }
  58350. },
  58351. head: {
  58352. height: math.unit(1.85, "feet"),
  58353. name: "Head",
  58354. image: {
  58355. source: "./media/characters/mook/head.svg"
  58356. }
  58357. },
  58358. hand: {
  58359. height: math.unit(1.9, "feet"),
  58360. name: "Hand",
  58361. image: {
  58362. source: "./media/characters/mook/hand.svg"
  58363. }
  58364. },
  58365. palm: {
  58366. height: math.unit(1.84, "feet"),
  58367. name: "Palm",
  58368. image: {
  58369. source: "./media/characters/mook/palm.svg"
  58370. }
  58371. },
  58372. foot: {
  58373. height: math.unit(1.44, "feet"),
  58374. name: "Foot",
  58375. image: {
  58376. source: "./media/characters/mook/foot.svg"
  58377. }
  58378. },
  58379. sole: {
  58380. height: math.unit(1.44, "feet"),
  58381. name: "Sole",
  58382. image: {
  58383. source: "./media/characters/mook/sole.svg"
  58384. }
  58385. },
  58386. },
  58387. [
  58388. {
  58389. name: "Normal",
  58390. height: math.unit(5 + 4/12, "feet"),
  58391. default: true
  58392. },
  58393. {
  58394. name: "Big",
  58395. height: math.unit(12, "feet")
  58396. },
  58397. ]
  58398. ))
  58399. characterMakers.push(() => makeCharacter(
  58400. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58401. {
  58402. front: {
  58403. height: math.unit(6 + 10/12, "feet"),
  58404. weight: math.unit(233, "lb"),
  58405. name: "Front",
  58406. image: {
  58407. source: "./media/characters/kayla/front.svg",
  58408. extra: 1850/1775,
  58409. bottom: 65/1915
  58410. }
  58411. },
  58412. },
  58413. [
  58414. {
  58415. name: "Normal",
  58416. height: math.unit(6 + 10/12, "feet"),
  58417. default: true
  58418. },
  58419. {
  58420. name: "Amazonian",
  58421. height: math.unit(12 + 5/12, "feet")
  58422. },
  58423. {
  58424. name: "Mini Giantess",
  58425. height: math.unit(26, "feet")
  58426. },
  58427. {
  58428. name: "Giantess",
  58429. height: math.unit(200, "feet")
  58430. },
  58431. {
  58432. name: "Mega Giantess",
  58433. height: math.unit(2500, "feet")
  58434. },
  58435. {
  58436. name: "City Sized",
  58437. height: math.unit(50, "miles")
  58438. },
  58439. {
  58440. name: "Country Sized",
  58441. height: math.unit(500, "miles")
  58442. },
  58443. {
  58444. name: "Continent Sized",
  58445. height: math.unit(2500, "miles")
  58446. },
  58447. {
  58448. name: "Planet Sized",
  58449. height: math.unit(10000, "miles")
  58450. },
  58451. {
  58452. name: "Star Sized",
  58453. height: math.unit(5e6, "miles")
  58454. },
  58455. {
  58456. name: "Solar System Sized",
  58457. height: math.unit(125, "AU")
  58458. },
  58459. {
  58460. name: "Galaxy Sized",
  58461. height: math.unit(300e3, "lightyears")
  58462. },
  58463. {
  58464. name: "Universe Sized",
  58465. height: math.unit(200e9, "lightyears")
  58466. },
  58467. {
  58468. name: "Multiverse Sized",
  58469. height: math.unit(20, "exauniverses")
  58470. },
  58471. {
  58472. name: "Mother of Existence",
  58473. height: math.unit(1e6, "yottauniverses")
  58474. },
  58475. ]
  58476. ))
  58477. characterMakers.push(() => makeCharacter(
  58478. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58479. {
  58480. side: {
  58481. height: math.unit(9.5, "meters"),
  58482. name: "Side",
  58483. image: {
  58484. source: "./media/characters/kulve-ragnarok/side.svg",
  58485. extra: 364/326,
  58486. bottom: 50/414
  58487. }
  58488. },
  58489. },
  58490. [
  58491. {
  58492. name: "Normal",
  58493. height: math.unit(9.5, "meters"),
  58494. default: true
  58495. },
  58496. ]
  58497. ))
  58498. characterMakers.push(() => makeCharacter(
  58499. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58500. {
  58501. front: {
  58502. height: math.unit(8 + 9/12, "feet"),
  58503. name: "Front",
  58504. image: {
  58505. source: "./media/characters/atlas-goat/front.svg",
  58506. extra: 1462/1323,
  58507. bottom: 12/1474
  58508. }
  58509. },
  58510. },
  58511. [
  58512. {
  58513. name: "Normal",
  58514. height: math.unit(8 + 9/12, "feet"),
  58515. default: true
  58516. },
  58517. {
  58518. name: "Skyline",
  58519. height: math.unit(845, "feet")
  58520. },
  58521. {
  58522. name: "Orbital",
  58523. height: math.unit(93000, "miles")
  58524. },
  58525. {
  58526. name: "Constellation",
  58527. height: math.unit(27000, "lightyears")
  58528. },
  58529. ]
  58530. ))
  58531. characterMakers.push(() => makeCharacter(
  58532. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58533. {
  58534. side: {
  58535. height: math.unit(1.8, "meters"),
  58536. weight: math.unit(120, "kg"),
  58537. name: "Side",
  58538. image: {
  58539. source: "./media/characters/xie-ling/side.svg",
  58540. extra: 646/574,
  58541. bottom: 44/690
  58542. }
  58543. },
  58544. },
  58545. [
  58546. {
  58547. name: "Tiny",
  58548. height: math.unit(1.80, "meters")
  58549. },
  58550. {
  58551. name: "Small",
  58552. height: math.unit(6, "meters")
  58553. },
  58554. {
  58555. name: "Medium",
  58556. height: math.unit(15, "meters")
  58557. },
  58558. {
  58559. name: "Normal",
  58560. height: math.unit(30, "meters"),
  58561. default: true
  58562. },
  58563. {
  58564. name: "Above Normal",
  58565. height: math.unit(60, "meters")
  58566. },
  58567. {
  58568. name: "Big",
  58569. height: math.unit(220, "meters")
  58570. },
  58571. {
  58572. name: "Giant",
  58573. height: math.unit(2.2, "km")
  58574. },
  58575. {
  58576. name: "Macro",
  58577. height: math.unit(25, "km")
  58578. },
  58579. {
  58580. name: "Mega Macro",
  58581. height: math.unit(350, "km")
  58582. },
  58583. {
  58584. name: "Mega Macro+",
  58585. height: math.unit(5000, "km")
  58586. },
  58587. {
  58588. name: "Goddess",
  58589. height: math.unit(3, "multiverses")
  58590. },
  58591. ]
  58592. ))
  58593. characterMakers.push(() => makeCharacter(
  58594. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58595. {
  58596. frontSfw: {
  58597. height: math.unit(5 + 11/12, "feet"),
  58598. weight: math.unit(210, "lb"),
  58599. name: "Front",
  58600. image: {
  58601. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58602. extra: 1928/1821,
  58603. bottom: 45/1973
  58604. }
  58605. },
  58606. backSfw: {
  58607. height: math.unit(5 + 11/12, "feet"),
  58608. weight: math.unit(210, "lb"),
  58609. name: "Back",
  58610. image: {
  58611. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58612. extra: 1920/1813,
  58613. bottom: 34/1954
  58614. }
  58615. },
  58616. frontNsfw: {
  58617. height: math.unit(5 + 11/12, "feet"),
  58618. weight: math.unit(210, "lb"),
  58619. name: "Front (NSFW)",
  58620. image: {
  58621. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58622. extra: 1928/1821,
  58623. bottom: 45/1973
  58624. }
  58625. },
  58626. backNsfw: {
  58627. height: math.unit(5 + 11/12, "feet"),
  58628. weight: math.unit(210, "lb"),
  58629. name: "Back (NSFW)",
  58630. image: {
  58631. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58632. extra: 1920/1813,
  58633. bottom: 34/1954
  58634. }
  58635. },
  58636. },
  58637. [
  58638. {
  58639. name: "Normal",
  58640. height: math.unit(5 + 11/12, "feet"),
  58641. default: true
  58642. },
  58643. {
  58644. name: "Goddess",
  58645. height: math.unit(20 + 3/12, "feet")
  58646. },
  58647. {
  58648. name: "Breaker of Man",
  58649. height: math.unit(329 + 9/12, "feet")
  58650. },
  58651. {
  58652. name: "Solar Justice",
  58653. height: math.unit(0.6, "solarradii")
  58654. },
  58655. {
  58656. name: "She Who Judges",
  58657. height: math.unit(1, "universe")
  58658. },
  58659. ]
  58660. ))
  58661. characterMakers.push(() => makeCharacter(
  58662. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58663. {
  58664. casual_front: {
  58665. height: math.unit(6 + 1/12, "feet"),
  58666. weight: math.unit(190, "lb"),
  58667. preyCapacity: math.unit(1, "people"),
  58668. name: "Front",
  58669. image: {
  58670. source: "./media/characters/managarmr/casual-front.svg",
  58671. extra: 411/381,
  58672. bottom: 15/426
  58673. },
  58674. extraAttributes: {
  58675. "pawSize": {
  58676. name: "Paw Size",
  58677. power: 1,
  58678. type: "length",
  58679. base: math.unit(0.2, "meters")
  58680. },
  58681. },
  58682. form: "casual",
  58683. },
  58684. casual_back: {
  58685. height: math.unit(6 + 1/12, "feet"),
  58686. weight: math.unit(190, "lb"),
  58687. preyCapacity: math.unit(1, "people"),
  58688. name: "Back",
  58689. image: {
  58690. source: "./media/characters/managarmr/casual-back.svg",
  58691. extra: 413/383,
  58692. bottom: 13/426
  58693. },
  58694. extraAttributes: {
  58695. "pawSize": {
  58696. name: "Paw Size",
  58697. power: 1,
  58698. type: "length",
  58699. base: math.unit(0.2, "meters")
  58700. },
  58701. },
  58702. form: "casual",
  58703. },
  58704. base_front: {
  58705. height: math.unit(7, "feet"),
  58706. weight: math.unit(210, "lb"),
  58707. preyCapacity: math.unit(2, "people"),
  58708. name: "Front",
  58709. image: {
  58710. source: "./media/characters/managarmr/base-front.svg",
  58711. extra: 580/485,
  58712. bottom: 32/612
  58713. },
  58714. extraAttributes: {
  58715. "wingspan": {
  58716. name: "Wingspan",
  58717. power: 1,
  58718. type: "length",
  58719. base: math.unit(4, "meters")
  58720. },
  58721. "pawSize": {
  58722. name: "Paw Size",
  58723. power: 1,
  58724. type: "length",
  58725. base: math.unit(0.2, "meters")
  58726. },
  58727. },
  58728. form: "base",
  58729. },
  58730. "true-divine_front": {
  58731. height: math.unit(40, "feet"),
  58732. weight: math.unit(39000, "lb"),
  58733. preyCapacity: math.unit(375, "people"),
  58734. name: "Front",
  58735. image: {
  58736. source: "./media/characters/managarmr/true-divine-front.svg",
  58737. extra: 725/573,
  58738. bottom: 120/845
  58739. },
  58740. extraAttributes: {
  58741. "wingspan": {
  58742. name: "Wingspan",
  58743. power: 1,
  58744. type: "length",
  58745. base: math.unit(20, "meters")
  58746. },
  58747. "pawSize": {
  58748. name: "Paw Size",
  58749. power: 1,
  58750. type: "length",
  58751. base: math.unit(1.5, "meters")
  58752. },
  58753. },
  58754. form: "true-divine",
  58755. },
  58756. },
  58757. [
  58758. {
  58759. name: "Normal",
  58760. height: math.unit(6 + 1/12, "feet"),
  58761. form: "casual",
  58762. default: true
  58763. },
  58764. {
  58765. name: "Normal",
  58766. height: math.unit(7, "feet"),
  58767. form: "base",
  58768. default: true
  58769. },
  58770. ],
  58771. {
  58772. "casual": {
  58773. name: "Casual",
  58774. default: true
  58775. },
  58776. "base": {
  58777. name: "Base",
  58778. },
  58779. "true-divine": {
  58780. name: "True Divine",
  58781. },
  58782. }
  58783. ))
  58784. characterMakers.push(() => makeCharacter(
  58785. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58786. {
  58787. front: {
  58788. height: math.unit(1.8, "meters"),
  58789. weight: math.unit(110, "kg"),
  58790. name: "Front",
  58791. image: {
  58792. source: "./media/characters/mystra/front.svg",
  58793. extra: 529/442,
  58794. bottom: 31/560
  58795. }
  58796. },
  58797. frontLewd: {
  58798. height: math.unit(1.8, "meters"),
  58799. weight: math.unit(110, "kg"),
  58800. name: "Front (Lewd)",
  58801. image: {
  58802. source: "./media/characters/mystra/front-lewd.svg",
  58803. extra: 529/442,
  58804. bottom: 31/560
  58805. }
  58806. },
  58807. head: {
  58808. height: math.unit(1.63, "feet"),
  58809. name: "Head",
  58810. image: {
  58811. source: "./media/characters/mystra/head.svg"
  58812. }
  58813. },
  58814. paw: {
  58815. height: math.unit(1.9, "feet"),
  58816. name: "Paw",
  58817. image: {
  58818. source: "./media/characters/mystra/paw.svg"
  58819. }
  58820. },
  58821. },
  58822. [
  58823. {
  58824. name: "Incognito",
  58825. height: math.unit(2.3, "meters")
  58826. },
  58827. {
  58828. name: "Small Macro",
  58829. height: math.unit(300, "meters")
  58830. },
  58831. {
  58832. name: "Small Mega",
  58833. height: math.unit(2, "km")
  58834. },
  58835. {
  58836. name: "Mega",
  58837. height: math.unit(30, "km")
  58838. },
  58839. {
  58840. name: "Small Giga",
  58841. height: math.unit(100, "km")
  58842. },
  58843. {
  58844. name: "Giga",
  58845. height: math.unit(1000, "km"),
  58846. default: true
  58847. },
  58848. {
  58849. name: "Continental",
  58850. height: math.unit(5000, "km")
  58851. },
  58852. {
  58853. name: "Terra",
  58854. height: math.unit(20000, "km")
  58855. },
  58856. {
  58857. name: "Solar",
  58858. height: math.unit(2e6, "km")
  58859. },
  58860. {
  58861. name: "Galactic",
  58862. height: math.unit(528502, "lightyears")
  58863. },
  58864. {
  58865. name: "Universal",
  58866. height: math.unit(20, "universes")
  58867. },
  58868. ]
  58869. ))
  58870. characterMakers.push(() => makeCharacter(
  58871. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58872. {
  58873. front: {
  58874. height: math.unit(2, "meters"),
  58875. weight: math.unit(140, "kg"),
  58876. name: "Front",
  58877. image: {
  58878. source: "./media/characters/caleb/front.svg",
  58879. extra: 873/817,
  58880. bottom: 47/920
  58881. }
  58882. },
  58883. back: {
  58884. height: math.unit(2, "meters"),
  58885. weight: math.unit(140, "kg"),
  58886. name: "Back",
  58887. image: {
  58888. source: "./media/characters/caleb/back.svg",
  58889. extra: 877/828,
  58890. bottom: 24/901
  58891. }
  58892. },
  58893. snakeTail: {
  58894. height: math.unit(1.44, "feet"),
  58895. name: "Snake Tail",
  58896. image: {
  58897. source: "./media/characters/caleb/snake-tail.svg"
  58898. }
  58899. },
  58900. dick: {
  58901. height: math.unit(2.6, "feet"),
  58902. name: "Dick",
  58903. image: {
  58904. source: "./media/characters/caleb/dick.svg"
  58905. }
  58906. },
  58907. },
  58908. [
  58909. {
  58910. name: "Incognito",
  58911. height: math.unit(3, "meters")
  58912. },
  58913. {
  58914. name: "Home Size",
  58915. height: math.unit(200, "meters"),
  58916. default: true
  58917. },
  58918. {
  58919. name: "Macro",
  58920. height: math.unit(500, "meters")
  58921. },
  58922. {
  58923. name: "Big Macro",
  58924. height: math.unit(5, "km")
  58925. },
  58926. {
  58927. name: "Giga",
  58928. height: math.unit(250, "km")
  58929. },
  58930. {
  58931. name: "Giga+",
  58932. height: math.unit(5000, "km")
  58933. },
  58934. {
  58935. name: "Small Terra",
  58936. height: math.unit(35e3, "km")
  58937. },
  58938. {
  58939. name: "Terra",
  58940. height: math.unit(2e6, "km")
  58941. },
  58942. {
  58943. name: "Terra+",
  58944. height: math.unit(1.5e6, "km")
  58945. },
  58946. ]
  58947. ))
  58948. characterMakers.push(() => makeCharacter(
  58949. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58950. {
  58951. front: {
  58952. height: math.unit(2, "meters"),
  58953. weight: math.unit(120, "kg"),
  58954. name: "Front",
  58955. image: {
  58956. source: "./media/characters/gilirian/front.svg",
  58957. extra: 805/737,
  58958. bottom: 13/818
  58959. }
  58960. },
  58961. side: {
  58962. height: math.unit(2, "meters"),
  58963. weight: math.unit(120, "kg"),
  58964. name: "Side",
  58965. image: {
  58966. source: "./media/characters/gilirian/side.svg",
  58967. extra: 810/746,
  58968. bottom: 6/816
  58969. }
  58970. },
  58971. back: {
  58972. height: math.unit(2, "meters"),
  58973. weight: math.unit(120, "kg"),
  58974. name: "Back",
  58975. image: {
  58976. source: "./media/characters/gilirian/back.svg",
  58977. extra: 815/745,
  58978. bottom: 15/830
  58979. }
  58980. },
  58981. frontNsfw: {
  58982. height: math.unit(2, "meters"),
  58983. weight: math.unit(120, "kg"),
  58984. name: "Front (NSFW)",
  58985. image: {
  58986. source: "./media/characters/gilirian/front-nsfw.svg",
  58987. extra: 805/737,
  58988. bottom: 13/818
  58989. }
  58990. },
  58991. sideNsfw: {
  58992. height: math.unit(2, "meters"),
  58993. weight: math.unit(120, "kg"),
  58994. name: "Side (NSFW)",
  58995. image: {
  58996. source: "./media/characters/gilirian/side-nsfw.svg",
  58997. extra: 810/746,
  58998. bottom: 6/816
  58999. }
  59000. },
  59001. },
  59002. [
  59003. {
  59004. name: "Incognito",
  59005. height: math.unit(2, "meters"),
  59006. default: true
  59007. },
  59008. {
  59009. name: "Macro",
  59010. height: math.unit(250, "meters")
  59011. },
  59012. {
  59013. name: "Big Macro",
  59014. height: math.unit(1500, "meters")
  59015. },
  59016. {
  59017. name: "Mega",
  59018. height: math.unit(40, "km")
  59019. },
  59020. {
  59021. name: "Giga",
  59022. height: math.unit(300, "km")
  59023. },
  59024. {
  59025. name: "Extra Giga",
  59026. height: math.unit(5000, "km")
  59027. },
  59028. {
  59029. name: "Small Terra",
  59030. height: math.unit(10e3, "km")
  59031. },
  59032. {
  59033. name: "Terra",
  59034. height: math.unit(3e5, "km")
  59035. },
  59036. {
  59037. name: "Galactic",
  59038. height: math.unit(369950, "lightyears")
  59039. },
  59040. ]
  59041. ))
  59042. characterMakers.push(() => makeCharacter(
  59043. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59044. {
  59045. front: {
  59046. height: math.unit(2.5, "meters"),
  59047. weight: math.unit(230, "lb"),
  59048. name: "Front",
  59049. image: {
  59050. source: "./media/characters/tarken/front.svg",
  59051. extra: 764/720,
  59052. bottom: 49/813
  59053. }
  59054. },
  59055. back: {
  59056. height: math.unit(2.5, "meters"),
  59057. weight: math.unit(230, "lb"),
  59058. name: "Back",
  59059. image: {
  59060. source: "./media/characters/tarken/back.svg",
  59061. extra: 756/720,
  59062. bottom: 35/791
  59063. }
  59064. },
  59065. frontNsfw: {
  59066. height: math.unit(2.5, "meters"),
  59067. weight: math.unit(230, "lb"),
  59068. name: "Front (NSFW)",
  59069. image: {
  59070. source: "./media/characters/tarken/front-nsfw.svg",
  59071. extra: 764/720,
  59072. bottom: 49/813
  59073. }
  59074. },
  59075. backNsfw: {
  59076. height: math.unit(2.5, "meters"),
  59077. weight: math.unit(230, "lb"),
  59078. name: "Back (NSFW)",
  59079. image: {
  59080. source: "./media/characters/tarken/back-nsfw.svg",
  59081. extra: 756/720,
  59082. bottom: 35/791
  59083. }
  59084. },
  59085. head: {
  59086. height: math.unit(2.22, "feet"),
  59087. name: "Head",
  59088. image: {
  59089. source: "./media/characters/tarken/head.svg"
  59090. }
  59091. },
  59092. tail: {
  59093. height: math.unit(5.25, "feet"),
  59094. name: "Tail",
  59095. image: {
  59096. source: "./media/characters/tarken/tail.svg"
  59097. }
  59098. },
  59099. dick: {
  59100. height: math.unit(1.95, "feet"),
  59101. name: "Dick",
  59102. image: {
  59103. source: "./media/characters/tarken/dick.svg"
  59104. }
  59105. },
  59106. hand: {
  59107. height: math.unit(1.78, "feet"),
  59108. name: "Hand",
  59109. image: {
  59110. source: "./media/characters/tarken/hand.svg"
  59111. }
  59112. },
  59113. beam: {
  59114. height: math.unit(1.5, "feet"),
  59115. name: "Beam",
  59116. image: {
  59117. source: "./media/characters/tarken/beam.svg"
  59118. }
  59119. },
  59120. },
  59121. [
  59122. {
  59123. name: "Original Size",
  59124. height: math.unit(2.5, "meters")
  59125. },
  59126. {
  59127. name: "Macro",
  59128. height: math.unit(150, "meters"),
  59129. default: true
  59130. },
  59131. {
  59132. name: "Macro+",
  59133. height: math.unit(300, "meters")
  59134. },
  59135. {
  59136. name: "Mega",
  59137. height: math.unit(2, "km")
  59138. },
  59139. {
  59140. name: "Mega+",
  59141. height: math.unit(35, "km")
  59142. },
  59143.  {
  59144. name: "Mega++",
  59145. height: math.unit(60, "km")
  59146. },
  59147. {
  59148. name: "Giga",
  59149. height: math.unit(200, "km")
  59150. },
  59151. {
  59152. name: "Giga+",
  59153. height: math.unit(2500, "km")
  59154. },
  59155. {
  59156. name: "Giga++",
  59157. height: math.unit(6600, "km")
  59158. },
  59159. {
  59160. name: "Terra",
  59161. height: math.unit(20000, "km")
  59162. },
  59163. {
  59164. name: "Terra+",
  59165. height: math.unit(300000, "km")
  59166. },
  59167. ]
  59168. ))
  59169. characterMakers.push(() => makeCharacter(
  59170. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59171. {
  59172. magpie_dressed: {
  59173. height: math.unit(1.7, "meters"),
  59174. weight: math.unit(70, "kg"),
  59175. name: "Dressed",
  59176. image: {
  59177. source: "./media/characters/otreus/magpie-dressed.svg",
  59178. extra: 691/672,
  59179. bottom: 116/807
  59180. },
  59181. form: "magpie",
  59182. default: true
  59183. },
  59184. magpie_nude: {
  59185. height: math.unit(1.7, "meters"),
  59186. weight: math.unit(70, "kg"),
  59187. name: "Nude",
  59188. image: {
  59189. source: "./media/characters/otreus/magpie-nude.svg",
  59190. extra: 691/672,
  59191. bottom: 116/807
  59192. },
  59193. form: "magpie",
  59194. },
  59195. magpie_dressedLewd: {
  59196. height: math.unit(1.7, "meters"),
  59197. weight: math.unit(70, "kg"),
  59198. name: "Dressed (Lewd)",
  59199. image: {
  59200. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59201. extra: 691/672,
  59202. bottom: 116/807
  59203. },
  59204. form: "magpie",
  59205. },
  59206. magpie_nudeLewd: {
  59207. height: math.unit(1.7, "meters"),
  59208. weight: math.unit(70, "kg"),
  59209. name: "Nude (Lewd)",
  59210. image: {
  59211. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59212. extra: 691/672,
  59213. bottom: 116/807
  59214. },
  59215. form: "magpie",
  59216. },
  59217. magpie_leftFoot: {
  59218. height: math.unit(1.58, "feet"),
  59219. name: "Left Foot",
  59220. image: {
  59221. source: "./media/characters/otreus/magpie-left-foot.svg"
  59222. },
  59223. form: "magpie",
  59224. },
  59225. magpie_rightFoot: {
  59226. height: math.unit(1.58, "feet"),
  59227. name: "Right Foot",
  59228. image: {
  59229. source: "./media/characters/otreus/magpie-right-foot.svg"
  59230. },
  59231. form: "magpie",
  59232. },
  59233. magpie_wingspan: {
  59234. height: math.unit(2, "meters"),
  59235. weight: math.unit(70, "kg"),
  59236. name: "Wingspan",
  59237. image: {
  59238. source: "./media/characters/otreus/magpie-wingspan.svg"
  59239. },
  59240. extraAttributes: {
  59241. "wingspan": {
  59242. name: "Wingspan",
  59243. power: 1,
  59244. type: "length",
  59245. base: math.unit(3.35, "meters")
  59246. },
  59247. },
  59248. form: "magpie",
  59249. },
  59250. hippogriff_dressed: {
  59251. height: math.unit(1.7, "meters"),
  59252. weight: math.unit(70, "kg"),
  59253. name: "Dressed",
  59254. image: {
  59255. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59256. extra: 710/689,
  59257. bottom: 67/777
  59258. },
  59259. form: "hippogriff",
  59260. default: true
  59261. },
  59262. hippogriff_nude: {
  59263. height: math.unit(1.7, "meters"),
  59264. weight: math.unit(70, "kg"),
  59265. name: "Nude",
  59266. image: {
  59267. source: "./media/characters/otreus/hippogriff-nude.svg",
  59268. extra: 710/689,
  59269. bottom: 67/777
  59270. },
  59271. form: "hippogriff",
  59272. },
  59273. hippogriff_dressedLewd: {
  59274. height: math.unit(1.7, "meters"),
  59275. weight: math.unit(70, "kg"),
  59276. name: "Dressed (Lewd)",
  59277. image: {
  59278. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59279. extra: 710/689,
  59280. bottom: 67/777
  59281. },
  59282. form: "hippogriff",
  59283. },
  59284. hippogriff_nudeLewd: {
  59285. height: math.unit(1.7, "meters"),
  59286. weight: math.unit(70, "kg"),
  59287. name: "Nude (Lewd)",
  59288. image: {
  59289. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59290. extra: 710/689,
  59291. bottom: 67/777
  59292. },
  59293. form: "hippogriff",
  59294. },
  59295. },
  59296. [
  59297. {
  59298. name: "Original Size",
  59299. height: math.unit(1.7, "meters"),
  59300. allForms: true
  59301. },
  59302. {
  59303. name: "Incognito Size",
  59304. height: math.unit(2, "meters"),
  59305. allForms: true
  59306. },
  59307. {
  59308. name: "Mega",
  59309. height: math.unit(2, "km"),
  59310. allForms: true
  59311. },
  59312. {
  59313. name: "Mega+",
  59314. height: math.unit(40, "km"),
  59315. allForms: true
  59316. },
  59317. {
  59318. name: "Giga",
  59319. height: math.unit(250, "km"),
  59320. allForms: true
  59321. },
  59322. {
  59323. name: "Giga+",
  59324. height: math.unit(3000, "km"),
  59325. allForms: true
  59326. },
  59327. {
  59328. name: "Terra",
  59329. height: math.unit(20000, "km"),
  59330. allForms: true
  59331. },
  59332. {
  59333. name: "Solar (Home Size)",
  59334. height: math.unit(3e6, "km"),
  59335. allForms: true,
  59336. default: true
  59337. },
  59338. ],
  59339. {
  59340. "magpie": {
  59341. name: "Magpie",
  59342. default: true
  59343. },
  59344. "hippogriff": {
  59345. name: "Hippogriff",
  59346. },
  59347. }
  59348. ))
  59349. characterMakers.push(() => makeCharacter(
  59350. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59351. {
  59352. frontDressed: {
  59353. height: math.unit(1.8, "meters"),
  59354. weight: math.unit(90, "kg"),
  59355. name: "Front (Dressed)",
  59356. image: {
  59357. source: "./media/characters/thalia/front-dressed.svg",
  59358. extra: 478/402,
  59359. bottom: 55/533
  59360. }
  59361. },
  59362. backDressed: {
  59363. height: math.unit(1.8, "meters"),
  59364. weight: math.unit(90, "kg"),
  59365. name: "Back (Dressed)",
  59366. image: {
  59367. source: "./media/characters/thalia/back-dressed.svg",
  59368. extra: 500/424,
  59369. bottom: 15/515
  59370. }
  59371. },
  59372. frontNude: {
  59373. height: math.unit(1.8, "meters"),
  59374. weight: math.unit(90, "kg"),
  59375. name: "Front (Nude)",
  59376. image: {
  59377. source: "./media/characters/thalia/front-nude.svg",
  59378. extra: 478/402,
  59379. bottom: 55/533
  59380. }
  59381. },
  59382. backNude: {
  59383. height: math.unit(1.8, "meters"),
  59384. weight: math.unit(90, "kg"),
  59385. name: "Back (Nude)",
  59386. image: {
  59387. source: "./media/characters/thalia/back-nude.svg",
  59388. extra: 500/424,
  59389. bottom: 15/515
  59390. }
  59391. },
  59392. },
  59393. [
  59394. {
  59395. name: "Incognito",
  59396. height: math.unit(3, "meters")
  59397. },
  59398. {
  59399. name: "Macro",
  59400. height: math.unit(500, "meters")
  59401. },
  59402. {
  59403. name: "Mega",
  59404. height: math.unit(5, "km")
  59405. },
  59406. {
  59407. name: "Mega+",
  59408. height: math.unit(30, "km")
  59409. },
  59410. {
  59411. name: "Giga",
  59412. height: math.unit(350, "km")
  59413. },
  59414. {
  59415. name: "Giga+",
  59416. height: math.unit(4000, "km")
  59417. },
  59418. {
  59419. name: "Terra",
  59420. height: math.unit(35000, "km")
  59421. },
  59422. {
  59423. name: "Original Size",
  59424. height: math.unit(130000, "km")
  59425. },
  59426. {
  59427. name: "Solar (Home Size)",
  59428. height: math.unit(4e6, "km"),
  59429. default: true
  59430. },
  59431. ]
  59432. ))
  59433. characterMakers.push(() => makeCharacter(
  59434. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59435. {
  59436. front: {
  59437. height: math.unit(1.8, "meters"),
  59438. weight: math.unit(95, "kg"),
  59439. name: "Front",
  59440. image: {
  59441. source: "./media/characters/shango/front.svg",
  59442. extra: 1925/1774,
  59443. bottom: 67/1992
  59444. }
  59445. },
  59446. back: {
  59447. height: math.unit(1.8, "meters"),
  59448. weight: math.unit(95, "kg"),
  59449. name: "Back",
  59450. image: {
  59451. source: "./media/characters/shango/back.svg",
  59452. extra: 1915/1766,
  59453. bottom: 52/1967
  59454. }
  59455. },
  59456. frontLewd: {
  59457. height: math.unit(1.8, "meters"),
  59458. weight: math.unit(95, "kg"),
  59459. name: "Front (Lewd)",
  59460. image: {
  59461. source: "./media/characters/shango/front-lewd.svg",
  59462. extra: 1925/1774,
  59463. bottom: 67/1992
  59464. }
  59465. },
  59466. backLewd: {
  59467. height: math.unit(1.8, "meters"),
  59468. weight: math.unit(95, "kg"),
  59469. name: "Back (Lewd)",
  59470. image: {
  59471. source: "./media/characters/shango/back-lewd.svg",
  59472. extra: 1915/1766,
  59473. bottom: 52/1967
  59474. }
  59475. },
  59476. maw: {
  59477. height: math.unit(1.64, "feet"),
  59478. name: "Maw",
  59479. image: {
  59480. source: "./media/characters/shango/maw.svg"
  59481. }
  59482. },
  59483. dick: {
  59484. height: math.unit(2.14, "feet"),
  59485. name: "Dick",
  59486. image: {
  59487. source: "./media/characters/shango/dick.svg"
  59488. }
  59489. },
  59490. },
  59491. [
  59492. {
  59493. name: "Incognito",
  59494. height: math.unit(1.8, "meters")
  59495. },
  59496. {
  59497. name: "Home Size",
  59498. height: math.unit(60, "meters"),
  59499. default: true
  59500. },
  59501. {
  59502. name: "Macro",
  59503. height: math.unit(450, "meters")
  59504. },
  59505. {
  59506. name: "Mega",
  59507. height: math.unit(6, "km")
  59508. },
  59509. {
  59510. name: "Mega+",
  59511. height: math.unit(35, "km")
  59512. },
  59513. {
  59514. name: "Giga",
  59515. height: math.unit(500, "km")
  59516. },
  59517. {
  59518. name: "Giga+",
  59519. height: math.unit(5000, "km")
  59520. },
  59521. {
  59522. name: "Terra",
  59523. height: math.unit(60000, "km")
  59524. },
  59525. {
  59526. name: "Terra+",
  59527. height: math.unit(400000, "km")
  59528. },
  59529. ]
  59530. ))
  59531. characterMakers.push(() => makeCharacter(
  59532. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59533. {
  59534. front: {
  59535. height: math.unit(2, "meters"),
  59536. weight: math.unit(95, "kg"),
  59537. name: "Front",
  59538. image: {
  59539. source: "./media/characters/osiris-gryphon/front.svg",
  59540. extra: 1508/1313,
  59541. bottom: 87/1595
  59542. }
  59543. },
  59544. back: {
  59545. height: math.unit(2, "meters"),
  59546. weight: math.unit(95, "kg"),
  59547. name: "Back",
  59548. image: {
  59549. source: "./media/characters/osiris-gryphon/back.svg",
  59550. extra: 1436/1309,
  59551. bottom: 64/1500
  59552. }
  59553. },
  59554. frontLewd: {
  59555. height: math.unit(2, "meters"),
  59556. weight: math.unit(95, "kg"),
  59557. name: "Front-lewd",
  59558. image: {
  59559. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59560. extra: 1508/1313,
  59561. bottom: 87/1595
  59562. }
  59563. },
  59564. wing: {
  59565. height: math.unit(6.3333, "feet"),
  59566. name: "Wing",
  59567. image: {
  59568. source: "./media/characters/osiris-gryphon/wing.svg"
  59569. }
  59570. },
  59571. },
  59572. [
  59573. {
  59574. name: "Incognito",
  59575. height: math.unit(2, "meters")
  59576. },
  59577. {
  59578. name: "Home Size",
  59579. height: math.unit(30, "meters"),
  59580. default: true
  59581. },
  59582. {
  59583. name: "Macro",
  59584. height: math.unit(100, "meters")
  59585. },
  59586. {
  59587. name: "Macro+",
  59588. height: math.unit(350, "meters")
  59589. },
  59590. {
  59591. name: "Mega",
  59592. height: math.unit(40, "km")
  59593. },
  59594. {
  59595. name: "Giga",
  59596. height: math.unit(300, "km")
  59597. },
  59598. {
  59599. name: "Giga+",
  59600. height: math.unit(2000, "km")
  59601. },
  59602. {
  59603. name: "Terra",
  59604. height: math.unit(30000, "km")
  59605. },
  59606. ]
  59607. ))
  59608. characterMakers.push(() => makeCharacter(
  59609. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59610. {
  59611. front: {
  59612. height: math.unit(2.5, "meters"),
  59613. weight: math.unit(200, "kg"),
  59614. name: "Front",
  59615. image: {
  59616. source: "./media/characters/atlas-dragon/front.svg",
  59617. extra: 745/462,
  59618. bottom: 36/781
  59619. }
  59620. },
  59621. back: {
  59622. height: math.unit(2.5, "meters"),
  59623. weight: math.unit(200, "kg"),
  59624. name: "Back",
  59625. image: {
  59626. source: "./media/characters/atlas-dragon/back.svg",
  59627. extra: 848/822,
  59628. bottom: 57/905
  59629. }
  59630. },
  59631. frontLewd: {
  59632. height: math.unit(2.5, "meters"),
  59633. weight: math.unit(200, "kg"),
  59634. name: "Front (Lewd)",
  59635. image: {
  59636. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59637. extra: 745/462,
  59638. bottom: 36/781
  59639. }
  59640. },
  59641. backLewd: {
  59642. height: math.unit(2.5, "meters"),
  59643. weight: math.unit(200, "kg"),
  59644. name: "Back (Lewd)",
  59645. image: {
  59646. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59647. extra: 848/822,
  59648. bottom: 57/905
  59649. }
  59650. },
  59651. },
  59652. [
  59653. {
  59654. name: "Incognito",
  59655. height: math.unit(2.5, "meters")
  59656. },
  59657. {
  59658. name: "Small Macro",
  59659. height: math.unit(50, "meters")
  59660. },
  59661. {
  59662. name: "Macro",
  59663. height: math.unit(350, "meters")
  59664. },
  59665. {
  59666. name: "Mega",
  59667. height: math.unit(5.5, "kilometers")
  59668. },
  59669. {
  59670. name: "Mega+",
  59671. height: math.unit(50, "km")
  59672. },
  59673. {
  59674. name: "Giga",
  59675. height: math.unit(350, "km")
  59676. },
  59677. {
  59678. name: "Giga+",
  59679. height: math.unit(2000, "km")
  59680. },
  59681. {
  59682. name: "Giga++",
  59683. height: math.unit(6500, "km")
  59684. },
  59685. {
  59686. name: "Terra",
  59687. height: math.unit(30000, "km")
  59688. },
  59689. {
  59690. name: "Terra+",
  59691. height: math.unit(250000, "km")
  59692. },
  59693. {
  59694. name: "True Size",
  59695. height: math.unit(100, "multiverses"),
  59696. default: true
  59697. },
  59698. ]
  59699. ))
  59700. characterMakers.push(() => makeCharacter(
  59701. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59702. {
  59703. front: {
  59704. height: math.unit(1.8, "m"),
  59705. weight: math.unit(120, "kg"),
  59706. name: "Front",
  59707. image: {
  59708. source: "./media/characters/chey/front.svg",
  59709. extra: 1359/1270,
  59710. bottom: 18/1377
  59711. }
  59712. },
  59713. arm: {
  59714. height: math.unit(2.05, "feet"),
  59715. name: "Arm",
  59716. image: {
  59717. source: "./media/characters/chey/arm.svg"
  59718. }
  59719. },
  59720. head: {
  59721. height: math.unit(1.89, "feet"),
  59722. name: "Head",
  59723. image: {
  59724. source: "./media/characters/chey/head.svg"
  59725. }
  59726. },
  59727. },
  59728. [
  59729. {
  59730. name: "Original Size",
  59731. height: math.unit(5, "cm")
  59732. },
  59733. {
  59734. name: "Incognito Size",
  59735. height: math.unit(2.4, "m")
  59736. },
  59737. {
  59738. name: "Home Size",
  59739. height: math.unit(200, "meters"),
  59740. default: true
  59741. },
  59742. {
  59743. name: "Mega",
  59744. height: math.unit(2, "km")
  59745. },
  59746. {
  59747. name: "Giga (Preferred Size)",
  59748. height: math.unit(2000, "km")
  59749. },
  59750. {
  59751. name: "Giga+",
  59752. height: math.unit(6000, "km")
  59753. },
  59754. {
  59755. name: "Terra",
  59756. height: math.unit(17000, "km")
  59757. },
  59758. {
  59759. name: "Terra+",
  59760. height: math.unit(75000, "km")
  59761. },
  59762. {
  59763. name: "Terra++",
  59764. height: math.unit(225000, "km")
  59765. },
  59766. ]
  59767. ))
  59768. characterMakers.push(() => makeCharacter(
  59769. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59770. {
  59771. side: {
  59772. height: math.unit(7.8, "meters"),
  59773. name: "Side",
  59774. image: {
  59775. source: "./media/characters/ragnarok/side.svg",
  59776. extra: 725/621,
  59777. bottom: 72/797
  59778. }
  59779. },
  59780. },
  59781. [
  59782. {
  59783. name: "Normal",
  59784. height: math.unit(7.8, "meters"),
  59785. default: true
  59786. },
  59787. ]
  59788. ))
  59789. characterMakers.push(() => makeCharacter(
  59790. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59791. {
  59792. hyena_front: {
  59793. height: math.unit(2.1, "meters"),
  59794. weight: math.unit(110, "kg"),
  59795. name: "Front",
  59796. image: {
  59797. source: "./media/characters/nima/hyena-front.svg",
  59798. extra: 1904/1796,
  59799. bottom: 67/1971
  59800. },
  59801. form: "hyena",
  59802. },
  59803. hyena_back: {
  59804. height: math.unit(2.1, "meters"),
  59805. weight: math.unit(110, "kg"),
  59806. name: "Back",
  59807. image: {
  59808. source: "./media/characters/nima/hyena-back.svg",
  59809. extra: 1964/1884,
  59810. bottom: 35/1999
  59811. },
  59812. form: "hyena",
  59813. },
  59814. shark_front: {
  59815. height: math.unit(1.95, "meters"),
  59816. weight: math.unit(110, "kg"),
  59817. name: "Front",
  59818. image: {
  59819. source: "./media/characters/nima/shark-front.svg",
  59820. extra: 2238/2013,
  59821. bottom: 0/223
  59822. },
  59823. form: "shark",
  59824. },
  59825. paw: {
  59826. height: math.unit(1, "feet"),
  59827. name: "Paw",
  59828. image: {
  59829. source: "./media/characters/nima/paw.svg"
  59830. }
  59831. },
  59832. circlet: {
  59833. height: math.unit(0.3, "feet"),
  59834. name: "Circlet",
  59835. image: {
  59836. source: "./media/characters/nima/circlet.svg"
  59837. }
  59838. },
  59839. necklace: {
  59840. height: math.unit(1.2, "feet"),
  59841. name: "Necklace",
  59842. image: {
  59843. source: "./media/characters/nima/necklace.svg"
  59844. }
  59845. },
  59846. bracelet: {
  59847. height: math.unit(0.51, "feet"),
  59848. name: "Bracelet",
  59849. image: {
  59850. source: "./media/characters/nima/bracelet.svg"
  59851. }
  59852. },
  59853. armband: {
  59854. height: math.unit(1.3, "feet"),
  59855. name: "Armband",
  59856. image: {
  59857. source: "./media/characters/nima/armband.svg"
  59858. }
  59859. },
  59860. },
  59861. [
  59862. {
  59863. name: "Incognito",
  59864. height: math.unit(2.1, "meters"),
  59865. allForms: true
  59866. },
  59867. {
  59868. name: "Small Macro",
  59869. height: math.unit(50, "meters"),
  59870. allForms: true
  59871. },
  59872. {
  59873. name: "Macro",
  59874. height: math.unit(200, "meters"),
  59875. allForms: true
  59876. },
  59877. {
  59878. name: "Mega",
  59879. height: math.unit(2.5, "km"),
  59880. allForms: true
  59881. },
  59882. {
  59883. name: "Mega+",
  59884. height: math.unit(30, "km"),
  59885. allForms: true
  59886. },
  59887. {
  59888. name: "Giga (Home Size)",
  59889. height: math.unit(400, "km"),
  59890. allForms: true,
  59891. default: true
  59892. },
  59893. {
  59894. name: "Giga+",
  59895. height: math.unit(2500, "km"),
  59896. allForms: true
  59897. },
  59898. {
  59899. name: "Giga++",
  59900. height: math.unit(8000, "km"),
  59901. allForms: true
  59902. },
  59903. {
  59904. name: "Terra",
  59905. height: math.unit(20000, "km"),
  59906. allForms: true
  59907. },
  59908. {
  59909. name: "Terra+",
  59910. height: math.unit(70000, "km"),
  59911. allForms: true
  59912. },
  59913. {
  59914. name: "Terra++",
  59915. height: math.unit(600000, "km"),
  59916. allForms: true
  59917. },
  59918. {
  59919. name: "Galactic",
  59920. height: math.unit(40, "galaxies"),
  59921. allForms: true
  59922. },
  59923. {
  59924. name: "Universal",
  59925. height: math.unit(40, "universes"),
  59926. allForms: true
  59927. },
  59928. ],
  59929. {
  59930. "hyena": {
  59931. name: "Hyena",
  59932. default: true
  59933. },
  59934. "shark": {
  59935. name: "Shark",
  59936. },
  59937. }
  59938. ))
  59939. characterMakers.push(() => makeCharacter(
  59940. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59941. {
  59942. anthro_front: {
  59943. height: math.unit(1.5, "meters"),
  59944. name: "Front",
  59945. image: {
  59946. source: "./media/characters/adelaide/anthro-front.svg",
  59947. extra: 860/783,
  59948. bottom: 60/920
  59949. },
  59950. form: "anthro",
  59951. default: true
  59952. },
  59953. hand: {
  59954. height: math.unit(0.65, "feet"),
  59955. name: "Hand",
  59956. image: {
  59957. source: "./media/characters/adelaide/hand.svg"
  59958. },
  59959. form: "anthro"
  59960. },
  59961. foot: {
  59962. height: math.unit(1.38 * 259 / 314, "feet"),
  59963. name: "Foot",
  59964. image: {
  59965. source: "./media/characters/adelaide/foot.svg",
  59966. extra: 259/259,
  59967. bottom: 55/314
  59968. },
  59969. form: "anthro"
  59970. },
  59971. feather: {
  59972. height: math.unit(0.85, "feet"),
  59973. name: "Feather",
  59974. image: {
  59975. source: "./media/characters/adelaide/feather.svg"
  59976. },
  59977. form: "anthro"
  59978. },
  59979. feral_side: {
  59980. height: math.unit(1, "meters"),
  59981. name: "Side",
  59982. image: {
  59983. source: "./media/characters/adelaide/feral-side.svg",
  59984. extra: 550/467,
  59985. bottom: 37/587
  59986. },
  59987. form: "feral",
  59988. default: true
  59989. },
  59990. feral_hand: {
  59991. height: math.unit(0.58, "feet"),
  59992. name: "Hand",
  59993. image: {
  59994. source: "./media/characters/adelaide/hand.svg"
  59995. },
  59996. form: "feral"
  59997. },
  59998. feral_foot: {
  59999. height: math.unit(1.2 * 259 / 314, "feet"),
  60000. name: "Foot",
  60001. image: {
  60002. source: "./media/characters/adelaide/foot.svg",
  60003. extra: 259/259,
  60004. bottom: 55/314
  60005. },
  60006. form: "feral"
  60007. },
  60008. feral_feather: {
  60009. height: math.unit(0.63, "feet"),
  60010. name: "Feather",
  60011. image: {
  60012. source: "./media/characters/adelaide/feather.svg"
  60013. },
  60014. form: "feral"
  60015. },
  60016. },
  60017. [
  60018. {
  60019. name: "Normal",
  60020. height: math.unit(1.5, "meters"),
  60021. form: "anthro",
  60022. default: true
  60023. },
  60024. {
  60025. name: "Normal",
  60026. height: math.unit(1, "meters"),
  60027. form: "feral",
  60028. default: true
  60029. },
  60030. ],
  60031. {
  60032. "anthro": {
  60033. name: "Anthro",
  60034. default: true
  60035. },
  60036. "feral": {
  60037. name: "Feral",
  60038. },
  60039. }
  60040. ))
  60041. characterMakers.push(() => makeCharacter(
  60042. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60043. {
  60044. front: {
  60045. height: math.unit(2.5, "meters"),
  60046. name: "Front",
  60047. image: {
  60048. source: "./media/characters/goa/front.svg",
  60049. extra: 1109/1013,
  60050. bottom: 150/1259
  60051. }
  60052. },
  60053. },
  60054. [
  60055. {
  60056. name: "Normal",
  60057. height: math.unit(2.5, "meters"),
  60058. default: true
  60059. },
  60060. ]
  60061. ))
  60062. characterMakers.push(() => makeCharacter(
  60063. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60064. {
  60065. front: {
  60066. height: math.unit(2, "meters"),
  60067. weight: math.unit(100, "kg"),
  60068. name: "Front",
  60069. image: {
  60070. source: "./media/characters/kiki-weavile/front.svg",
  60071. extra: 357/332,
  60072. bottom: 60/417
  60073. }
  60074. },
  60075. },
  60076. [
  60077. {
  60078. name: "Normal",
  60079. height: math.unit(2, "meters"),
  60080. default: true
  60081. },
  60082. ]
  60083. ))
  60084. characterMakers.push(() => makeCharacter(
  60085. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60086. {
  60087. side: {
  60088. height: math.unit(1.6, "meters"),
  60089. name: "Side",
  60090. image: {
  60091. source: "./media/characters/liza/side.svg",
  60092. extra: 943/915,
  60093. bottom: 72/1015
  60094. }
  60095. },
  60096. },
  60097. [
  60098. {
  60099. name: "Normal",
  60100. height: math.unit(1.6, "meters"),
  60101. default: true
  60102. },
  60103. ]
  60104. ))
  60105. characterMakers.push(() => makeCharacter(
  60106. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60107. {
  60108. side: {
  60109. height: math.unit(2.5, "meters"),
  60110. preyCapacity: math.unit(1, "people"),
  60111. name: "Side",
  60112. image: {
  60113. source: "./media/characters/persephone-sweetbreath/side.svg",
  60114. extra: 796/700,
  60115. bottom: 44/840
  60116. }
  60117. },
  60118. sideVore: {
  60119. height: math.unit(2.5, "meters"),
  60120. preyCapacity: math.unit(1, "people"),
  60121. name: "Side (Full)",
  60122. image: {
  60123. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60124. extra: 796/700,
  60125. bottom: 44/840
  60126. }
  60127. },
  60128. },
  60129. [
  60130. {
  60131. name: "Normal",
  60132. height: math.unit(2.5, "meters"),
  60133. default: true
  60134. },
  60135. ]
  60136. ))
  60137. characterMakers.push(() => makeCharacter(
  60138. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60139. {
  60140. front: {
  60141. height: math.unit(32, "meters"),
  60142. name: "Front",
  60143. image: {
  60144. source: "./media/characters/pierce/front.svg",
  60145. extra: 1695/1475,
  60146. bottom: 185/1880
  60147. }
  60148. },
  60149. side: {
  60150. height: math.unit(32, "meters"),
  60151. name: "Side",
  60152. image: {
  60153. source: "./media/characters/pierce/side.svg",
  60154. extra: 974/859,
  60155. bottom: 43/1017
  60156. }
  60157. },
  60158. frontWingless: {
  60159. height: math.unit(32, "meters"),
  60160. name: "Front (Wingless)",
  60161. image: {
  60162. source: "./media/characters/pierce/front-wingless.svg",
  60163. extra: 1695/1475,
  60164. bottom: 185/1880
  60165. }
  60166. },
  60167. sideWingless: {
  60168. height: math.unit(32, "meters"),
  60169. name: "Side (Wingless)",
  60170. image: {
  60171. source: "./media/characters/pierce/side-wingless.svg",
  60172. extra: 974/859,
  60173. bottom: 43/1017
  60174. }
  60175. },
  60176. maw: {
  60177. height: math.unit(19.3, "meters"),
  60178. name: "Maw",
  60179. image: {
  60180. source: "./media/characters/pierce/maw.svg"
  60181. }
  60182. },
  60183. },
  60184. [
  60185. {
  60186. name: "Small",
  60187. height: math.unit(8.5, "meters")
  60188. },
  60189. {
  60190. name: "Normal",
  60191. height: math.unit(32, "meters"),
  60192. default: true
  60193. },
  60194. ]
  60195. ))
  60196. characterMakers.push(() => makeCharacter(
  60197. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60198. {
  60199. front: {
  60200. height: math.unit(2.3, "meters"),
  60201. weight: math.unit(165, "kg"),
  60202. name: "Front",
  60203. image: {
  60204. source: "./media/characters/shira/front.svg",
  60205. extra: 924/919,
  60206. bottom: 17/941
  60207. },
  60208. form: "cobra",
  60209. default: true
  60210. },
  60211. back: {
  60212. height: math.unit(2.3, "meters"),
  60213. weight: math.unit(165, "kg"),
  60214. name: "Back",
  60215. image: {
  60216. source: "./media/characters/shira/back.svg",
  60217. extra: 928/922,
  60218. bottom: 18/946
  60219. },
  60220. form: "cobra"
  60221. },
  60222. frontLewd: {
  60223. height: math.unit(2.3, "meters"),
  60224. weight: math.unit(165, "kg"),
  60225. name: "Front (Lewd)",
  60226. image: {
  60227. source: "./media/characters/shira/front-lewd.svg",
  60228. extra: 924/919,
  60229. bottom: 17/941
  60230. },
  60231. form: "cobra"
  60232. },
  60233. backLewd: {
  60234. height: math.unit(2.3, "meters"),
  60235. weight: math.unit(165, "kg"),
  60236. name: "Back (Lewd)",
  60237. image: {
  60238. source: "./media/characters/shira/back-lewd.svg",
  60239. extra: 928/922,
  60240. bottom: 18/946
  60241. },
  60242. form: "cobra"
  60243. },
  60244. maw: {
  60245. height: math.unit(1.14, "feet"),
  60246. name: "Maw",
  60247. image: {
  60248. source: "./media/characters/shira/maw.svg"
  60249. },
  60250. form: "cobra"
  60251. },
  60252. magma_front: {
  60253. height: math.unit(2.3, "meters"),
  60254. weight: math.unit(165, "kg"),
  60255. name: "Front",
  60256. image: {
  60257. source: "./media/characters/shira/magma-front.svg",
  60258. extra: 1870/1693,
  60259. bottom: 24/1894
  60260. },
  60261. form: "magma",
  60262. },
  60263. magma_back: {
  60264. height: math.unit(2.3, "meters"),
  60265. weight: math.unit(165, "kg"),
  60266. name: "Back",
  60267. image: {
  60268. source: "./media/characters/shira/magma-back.svg",
  60269. extra: 1918/1756,
  60270. bottom: 46/1964
  60271. },
  60272. form: "magma",
  60273. },
  60274. },
  60275. [
  60276. {
  60277. name: "Incognito",
  60278. height: math.unit(2.3, "meters"),
  60279. allForms: true
  60280. },
  60281. {
  60282. name: "Home Size",
  60283. height: math.unit(150, "meters"),
  60284. default: true,
  60285. allForms: true
  60286. },
  60287. {
  60288. name: "Macro",
  60289. height: math.unit(2, "km"),
  60290. allForms: true
  60291. },
  60292. {
  60293. name: "Mega",
  60294. height: math.unit(30, "km"),
  60295. allForms: true
  60296. },
  60297. {
  60298. name: "Giga",
  60299. height: math.unit(450, "km"),
  60300. allForms: true
  60301. },
  60302. {
  60303. name: "Giga+",
  60304. height: math.unit(3000, "km"),
  60305. allForms: true
  60306. },
  60307. {
  60308. name: "Giga++",
  60309. height: math.unit(6000, "km"),
  60310. allForms: true
  60311. },
  60312. {
  60313. name: "Terra",
  60314. height: math.unit(80000, "km"),
  60315. allForms: true
  60316. },
  60317. {
  60318. name: "Terra+",
  60319. height: math.unit(350000, "km"),
  60320. allForms: true
  60321. },
  60322. {
  60323. name: "Solar",
  60324. height: math.unit(1e6, "km"),
  60325. allForms: true
  60326. },
  60327. ],
  60328. {
  60329. "cobra": {
  60330. name: "Cobra",
  60331. default: true
  60332. },
  60333. "magma": {
  60334. name: "Magma Dragon",
  60335. },
  60336. }
  60337. ))
  60338. characterMakers.push(() => makeCharacter(
  60339. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60340. {
  60341. front: {
  60342. height: math.unit(2, "meters"),
  60343. weight: math.unit(160, "kg"),
  60344. name: "Front",
  60345. image: {
  60346. source: "./media/characters/daxerios/front.svg",
  60347. extra: 1334/1277,
  60348. bottom: 45/1379
  60349. }
  60350. },
  60351. frontLewd: {
  60352. height: math.unit(2, "meters"),
  60353. weight: math.unit(160, "kg"),
  60354. name: "Front (Lewd)",
  60355. image: {
  60356. source: "./media/characters/daxerios/front-lewd.svg",
  60357. extra: 1334/1277,
  60358. bottom: 45/1379
  60359. }
  60360. },
  60361. dick: {
  60362. height: math.unit(2.35, "feet"),
  60363. name: "Dick",
  60364. image: {
  60365. source: "./media/characters/daxerios/dick.svg"
  60366. }
  60367. },
  60368. },
  60369. [
  60370. {
  60371. name: "\"Small\"",
  60372. height: math.unit(5, "meters")
  60373. },
  60374. {
  60375. name: "Original Size",
  60376. height: math.unit(500, "meters"),
  60377. default: true
  60378. },
  60379. {
  60380. name: "Mega",
  60381. height: math.unit(2, "km")
  60382. },
  60383. {
  60384. name: "Mega+",
  60385. height: math.unit(35, "km")
  60386. },
  60387. {
  60388. name: "Giga",
  60389. height: math.unit(250, "km")
  60390. },
  60391. {
  60392. name: "Giga+",
  60393. height: math.unit(3000, "km")
  60394. },
  60395. {
  60396. name: "Terra",
  60397. height: math.unit(25000, "km")
  60398. },
  60399. {
  60400. name: "Terra+",
  60401. height: math.unit(300000, "km")
  60402. },
  60403. {
  60404. name: "Solar",
  60405. height: math.unit(1e6, "km")
  60406. },
  60407. ]
  60408. ))
  60409. characterMakers.push(() => makeCharacter(
  60410. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60411. {
  60412. front: {
  60413. height: math.unit(8 + 4/12, "feet"),
  60414. weight: math.unit(464, "lb"),
  60415. name: "Front",
  60416. image: {
  60417. source: "./media/characters/caveat/front.svg",
  60418. extra: 1861/1678,
  60419. bottom: 40/1901
  60420. }
  60421. },
  60422. },
  60423. [
  60424. {
  60425. name: "Normal",
  60426. height: math.unit(8 + 4/12, "feet"),
  60427. default: true
  60428. },
  60429. ]
  60430. ))
  60431. characterMakers.push(() => makeCharacter(
  60432. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60433. {
  60434. front: {
  60435. height: math.unit(12, "feet"),
  60436. weight: math.unit(1800, "lb"),
  60437. name: "Front",
  60438. image: {
  60439. source: "./media/characters/centbair/front.svg",
  60440. extra: 781/663,
  60441. bottom: 25/806
  60442. }
  60443. },
  60444. frontNsfw: {
  60445. height: math.unit(12, "feet"),
  60446. weight: math.unit(1800, "lb"),
  60447. name: "Front (NSFW)",
  60448. image: {
  60449. source: "./media/characters/centbair/front-nsfw.svg",
  60450. extra: 781/663,
  60451. bottom: 25/806
  60452. }
  60453. },
  60454. back: {
  60455. height: math.unit(12, "feet"),
  60456. weight: math.unit(1800, "lb"),
  60457. name: "Back",
  60458. image: {
  60459. source: "./media/characters/centbair/back.svg",
  60460. extra: 808/761,
  60461. bottom: 19/827
  60462. }
  60463. },
  60464. dick: {
  60465. height: math.unit(6.5, "feet"),
  60466. name: "Dick",
  60467. image: {
  60468. source: "./media/characters/centbair/dick.svg"
  60469. }
  60470. },
  60471. slit: {
  60472. height: math.unit(3.25, "feet"),
  60473. name: "Slit",
  60474. image: {
  60475. source: "./media/characters/centbair/slit.svg"
  60476. }
  60477. },
  60478. },
  60479. [
  60480. {
  60481. name: "Normal",
  60482. height: math.unit(12, "feet"),
  60483. default: true
  60484. },
  60485. ]
  60486. ))
  60487. characterMakers.push(() => makeCharacter(
  60488. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60489. {
  60490. front: {
  60491. height: math.unit(5 + 7/12, "feet"),
  60492. name: "Front",
  60493. image: {
  60494. source: "./media/characters/andy/front.svg",
  60495. extra: 634/588,
  60496. bottom: 36/670
  60497. },
  60498. extraAttributes: {
  60499. "pawLength": {
  60500. name: "Paw Length",
  60501. power: 1,
  60502. type: "length",
  60503. base: math.unit(1, "feet")
  60504. },
  60505. }
  60506. },
  60507. side: {
  60508. height: math.unit(5 + 7/12, "feet"),
  60509. name: "Side",
  60510. image: {
  60511. source: "./media/characters/andy/side.svg",
  60512. extra: 641/596,
  60513. bottom: 34/675
  60514. },
  60515. extraAttributes: {
  60516. "pawLength": {
  60517. name: "Paw Length",
  60518. power: 1,
  60519. type: "length",
  60520. base: math.unit(1, "feet")
  60521. },
  60522. }
  60523. },
  60524. back: {
  60525. height: math.unit(5 + 7/12, "feet"),
  60526. name: "Back",
  60527. image: {
  60528. source: "./media/characters/andy/back.svg",
  60529. extra: 618/583,
  60530. bottom: 39/657
  60531. },
  60532. extraAttributes: {
  60533. "pawLength": {
  60534. name: "Paw Length",
  60535. power: 1,
  60536. type: "length",
  60537. base: math.unit(1, "feet")
  60538. },
  60539. }
  60540. },
  60541. paw: {
  60542. height: math.unit(1.13, "feet"),
  60543. name: "Paw",
  60544. image: {
  60545. source: "./media/characters/andy/paw.svg"
  60546. }
  60547. },
  60548. },
  60549. [
  60550. {
  60551. name: "Micro",
  60552. height: math.unit(4, "inches")
  60553. },
  60554. {
  60555. name: "Normal",
  60556. height: math.unit(5 + 7/12, "feet"),
  60557. default: true
  60558. },
  60559. {
  60560. name: "Macro",
  60561. height: math.unit(390.42, "feet")
  60562. },
  60563. ]
  60564. ))
  60565. characterMakers.push(() => makeCharacter(
  60566. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60567. {
  60568. front: {
  60569. height: math.unit(7, "feet"),
  60570. weight: math.unit(250, "lb"),
  60571. name: "Front",
  60572. image: {
  60573. source: "./media/characters/vix-titan/front.svg",
  60574. extra: 460/428,
  60575. bottom: 15/475
  60576. },
  60577. extraAttributes: {
  60578. "pawWidth": {
  60579. name: "Paw Width",
  60580. power: 1,
  60581. type: "length",
  60582. base: math.unit(0.75, "feet")
  60583. },
  60584. }
  60585. },
  60586. },
  60587. [
  60588. {
  60589. name: "Normal",
  60590. height: math.unit(7, "feet"),
  60591. default: true
  60592. },
  60593. {
  60594. name: "Giant",
  60595. height: math.unit(1500, "feet")
  60596. },
  60597. {
  60598. name: "Mega",
  60599. height: math.unit(10, "miles")
  60600. },
  60601. {
  60602. name: "Giga",
  60603. height: math.unit(150, "miles")
  60604. },
  60605. {
  60606. name: "Tera",
  60607. height: math.unit(144000, "miles")
  60608. },
  60609. ]
  60610. ))
  60611. characterMakers.push(() => makeCharacter(
  60612. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60613. {
  60614. front: {
  60615. height: math.unit(6 + 2/12, "feet"),
  60616. name: "Front",
  60617. image: {
  60618. source: "./media/characters/reiku/front.svg",
  60619. extra: 1910/1757,
  60620. bottom: 103/2013
  60621. },
  60622. extraAttributes: {
  60623. "thighThickness": {
  60624. name: "Thigh Thickness",
  60625. power: 1,
  60626. type: "length",
  60627. base: math.unit(1.12, "feet")
  60628. },
  60629. "assThickness": {
  60630. name: "Ass Thickness",
  60631. power: 1,
  60632. type: "length",
  60633. base: math.unit(1.12*2, "feet")
  60634. },
  60635. }
  60636. },
  60637. side: {
  60638. height: math.unit(6 + 2/12, "feet"),
  60639. name: "Side",
  60640. image: {
  60641. source: "./media/characters/reiku/side.svg",
  60642. extra: 1846/1748,
  60643. bottom: 99/1945
  60644. },
  60645. extraAttributes: {
  60646. "thighThickness": {
  60647. name: "Thigh Thickness",
  60648. power: 1,
  60649. type: "length",
  60650. base: math.unit(1.12, "feet")
  60651. },
  60652. "assThickness": {
  60653. name: "Ass Thickness",
  60654. power: 1,
  60655. type: "length",
  60656. base: math.unit(1.12*2, "feet")
  60657. },
  60658. }
  60659. },
  60660. back: {
  60661. height: math.unit(6 + 2/12, "feet"),
  60662. name: "Back",
  60663. image: {
  60664. source: "./media/characters/reiku/back.svg",
  60665. extra: 1941/1786,
  60666. bottom: 34/1975
  60667. },
  60668. extraAttributes: {
  60669. "thighThickness": {
  60670. name: "Thigh Thickness",
  60671. power: 1,
  60672. type: "length",
  60673. base: math.unit(1.12, "feet")
  60674. },
  60675. "assThickness": {
  60676. name: "Ass Thickness",
  60677. power: 1,
  60678. type: "length",
  60679. base: math.unit(1.12*2, "feet")
  60680. },
  60681. }
  60682. },
  60683. head: {
  60684. height: math.unit(1.8, "feet"),
  60685. name: "Head",
  60686. image: {
  60687. source: "./media/characters/reiku/head.svg"
  60688. }
  60689. },
  60690. tailTop: {
  60691. height: math.unit(8.4, "feet"),
  60692. name: "Tail (Top)",
  60693. image: {
  60694. source: "./media/characters/reiku/tail-top.svg"
  60695. }
  60696. },
  60697. tailBottom: {
  60698. height: math.unit(8.4, "feet"),
  60699. name: "Tail (Bottom)",
  60700. image: {
  60701. source: "./media/characters/reiku/tail-bottom.svg"
  60702. }
  60703. },
  60704. foot: {
  60705. height: math.unit(2.6, "feet"),
  60706. name: "Foot",
  60707. image: {
  60708. source: "./media/characters/reiku/foot.svg"
  60709. }
  60710. },
  60711. footCurled: {
  60712. height: math.unit(2.3, "feet"),
  60713. name: "Foot (Curled)",
  60714. image: {
  60715. source: "./media/characters/reiku/foot-curled.svg"
  60716. }
  60717. },
  60718. footSide: {
  60719. height: math.unit(1.26, "feet"),
  60720. name: "Foot (Side)",
  60721. image: {
  60722. source: "./media/characters/reiku/foot-side.svg"
  60723. }
  60724. },
  60725. },
  60726. [
  60727. {
  60728. name: "Normal",
  60729. height: math.unit(6 + 2/12, "feet"),
  60730. default: true
  60731. },
  60732. ]
  60733. ))
  60734. characterMakers.push(() => makeCharacter(
  60735. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60736. {
  60737. front: {
  60738. height: math.unit(7, "feet"),
  60739. weight: math.unit(500, "kg"),
  60740. name: "Front",
  60741. image: {
  60742. source: "./media/characters/cialda/front.svg",
  60743. extra: 912/745,
  60744. bottom: 55/967
  60745. }
  60746. },
  60747. },
  60748. [
  60749. {
  60750. name: "Normal",
  60751. height: math.unit(7, "feet"),
  60752. default: true
  60753. },
  60754. ]
  60755. ))
  60756. characterMakers.push(() => makeCharacter(
  60757. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60758. {
  60759. side: {
  60760. height: math.unit(6, "feet"),
  60761. weight: math.unit(600, "lb"),
  60762. preyCapacity: math.unit(25, "liters"),
  60763. name: "Side",
  60764. image: {
  60765. source: "./media/characters/darkkin/side.svg",
  60766. extra: 1597/1447,
  60767. bottom: 101/1698
  60768. }
  60769. },
  60770. },
  60771. [
  60772. {
  60773. name: "Canon Height",
  60774. height: math.unit(568, "feet"),
  60775. default: true
  60776. },
  60777. ]
  60778. ))
  60779. characterMakers.push(() => makeCharacter(
  60780. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60781. {
  60782. front: {
  60783. height: math.unit(6, "feet"),
  60784. weight: math.unit(1500, "lb"),
  60785. preyCapacity: math.unit(3, "people"),
  60786. name: "Front",
  60787. image: {
  60788. source: "./media/characters/livnia/front.svg",
  60789. extra: 934/932,
  60790. bottom: 83/1017
  60791. }
  60792. },
  60793. back: {
  60794. height: math.unit(6, "feet"),
  60795. weight: math.unit(1500, "lb"),
  60796. preyCapacity: math.unit(3, "people"),
  60797. name: "Back",
  60798. image: {
  60799. source: "./media/characters/livnia/back.svg",
  60800. extra: 916/915,
  60801. bottom: 58/974
  60802. }
  60803. },
  60804. head: {
  60805. height: math.unit(1.53, "feet"),
  60806. name: "Head",
  60807. image: {
  60808. source: "./media/characters/livnia/head.svg"
  60809. }
  60810. },
  60811. maw: {
  60812. height: math.unit(0.78, "feet"),
  60813. name: "Maw",
  60814. image: {
  60815. source: "./media/characters/livnia/maw.svg"
  60816. }
  60817. },
  60818. genitals: {
  60819. height: math.unit(0.35, "feet"),
  60820. name: "Genitals",
  60821. image: {
  60822. source: "./media/characters/livnia/genitals.svg"
  60823. }
  60824. },
  60825. },
  60826. [
  60827. {
  60828. name: "Normal",
  60829. height: math.unit(1000, "feet"),
  60830. default: true
  60831. },
  60832. ]
  60833. ))
  60834. characterMakers.push(() => makeCharacter(
  60835. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60836. {
  60837. front: {
  60838. height: math.unit(4, "feet"),
  60839. weight: math.unit(73, "lb"),
  60840. name: "Front",
  60841. image: {
  60842. source: "./media/characters/hayaku/front.svg",
  60843. extra: 1011/888,
  60844. bottom: 33/1044
  60845. }
  60846. },
  60847. back: {
  60848. height: math.unit(4, "feet"),
  60849. weight: math.unit(73, "lb"),
  60850. name: "Back",
  60851. image: {
  60852. source: "./media/characters/hayaku/back.svg",
  60853. extra: 1040/930,
  60854. bottom: 20/1060
  60855. }
  60856. },
  60857. },
  60858. [
  60859. {
  60860. name: "Normal",
  60861. height: math.unit(4, "feet"),
  60862. default: true
  60863. },
  60864. ]
  60865. ))
  60866. characterMakers.push(() => makeCharacter(
  60867. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60868. {
  60869. front: {
  60870. height: math.unit(6 + 7/12, "feet"),
  60871. weight: math.unit(300, "lb"),
  60872. name: "Front",
  60873. image: {
  60874. source: "./media/characters/athena-bryzant/front.svg",
  60875. extra: 870/835,
  60876. bottom: 33/903
  60877. }
  60878. },
  60879. back: {
  60880. height: math.unit(6 + 7/12, "feet"),
  60881. weight: math.unit(300, "lb"),
  60882. name: "Back",
  60883. image: {
  60884. source: "./media/characters/athena-bryzant/back.svg",
  60885. extra: 858/823,
  60886. bottom: 30/888
  60887. }
  60888. },
  60889. head: {
  60890. height: math.unit(2.38, "feet"),
  60891. name: "Head",
  60892. image: {
  60893. source: "./media/characters/athena-bryzant/head.svg"
  60894. }
  60895. },
  60896. wings: {
  60897. height: math.unit(2.85, "feet"),
  60898. name: "Wings",
  60899. image: {
  60900. source: "./media/characters/athena-bryzant/wings.svg"
  60901. }
  60902. },
  60903. },
  60904. [
  60905. {
  60906. name: "Normal",
  60907. height: math.unit(6 + 7/12, "feet"),
  60908. default: true
  60909. },
  60910. {
  60911. name: "Big",
  60912. height: math.unit(8, "feet")
  60913. },
  60914. {
  60915. name: "Very Big",
  60916. height: math.unit(11, "feet")
  60917. },
  60918. ]
  60919. ))
  60920. characterMakers.push(() => makeCharacter(
  60921. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60922. {
  60923. side: {
  60924. height: math.unit(3, "meters"),
  60925. weight: math.unit(7500, "kg"),
  60926. preyCapacity: math.unit(1e12, "people"),
  60927. name: "Side",
  60928. image: {
  60929. source: "./media/characters/zel-kesh/side.svg",
  60930. extra: 910/407,
  60931. bottom: 147/1057
  60932. }
  60933. },
  60934. },
  60935. [
  60936. {
  60937. name: "Normal",
  60938. height: math.unit(3, "meters"),
  60939. default: true
  60940. },
  60941. ]
  60942. ))
  60943. characterMakers.push(() => makeCharacter(
  60944. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60945. {
  60946. front: {
  60947. height: math.unit(2, "meters"),
  60948. weight: math.unit(95, "kg"),
  60949. name: "Front",
  60950. image: {
  60951. source: "./media/characters/kane-fox/front.svg",
  60952. extra: 945/888,
  60953. bottom: 27/972
  60954. }
  60955. },
  60956. back: {
  60957. height: math.unit(2, "meters"),
  60958. weight: math.unit(95, "kg"),
  60959. name: "Back",
  60960. image: {
  60961. source: "./media/characters/kane-fox/back.svg",
  60962. extra: 959/914,
  60963. bottom: 15/974
  60964. }
  60965. },
  60966. frontLewd: {
  60967. height: math.unit(2, "meters"),
  60968. weight: math.unit(95, "kg"),
  60969. name: "Front (Lewd)",
  60970. image: {
  60971. source: "./media/characters/kane-fox/front-lewd.svg",
  60972. extra: 945/888,
  60973. bottom: 27/972
  60974. }
  60975. },
  60976. },
  60977. [
  60978. {
  60979. name: "Home Size",
  60980. height: math.unit(2, "meters"),
  60981. default: true
  60982. },
  60983. {
  60984. name: "Macro",
  60985. height: math.unit(200, "meters")
  60986. },
  60987. {
  60988. name: "Small Mega",
  60989. height: math.unit(3, "km")
  60990. },
  60991. {
  60992. name: "Mega",
  60993. height: math.unit(50, "km")
  60994. },
  60995. {
  60996. name: "Giga",
  60997. height: math.unit(200, "km")
  60998. },
  60999. {
  61000. name: "Giga+",
  61001. height: math.unit(2500, "km")
  61002. },
  61003. {
  61004. name: "Terra",
  61005. height: math.unit(70000, "km")
  61006. },
  61007. {
  61008. name: "Terra+",
  61009. height: math.unit(150000, "km")
  61010. },
  61011. {
  61012. name: "Terra++",
  61013. height: math.unit(400000, "km")
  61014. },
  61015. ]
  61016. ))
  61017. characterMakers.push(() => makeCharacter(
  61018. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61019. {
  61020. otter_front: {
  61021. height: math.unit(1.8, "meters"),
  61022. weight: math.unit(90, "kg"),
  61023. name: "Front",
  61024. image: {
  61025. source: "./media/characters/ayranus/otter-front.svg",
  61026. extra: 468/452,
  61027. bottom: 43/511
  61028. },
  61029. form: "otter",
  61030. },
  61031. otter_frontLewd: {
  61032. height: math.unit(1.8, "meters"),
  61033. weight: math.unit(90, "kg"),
  61034. name: "Front (Lewd)",
  61035. image: {
  61036. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61037. extra: 468/452,
  61038. bottom: 43/511
  61039. },
  61040. form: "otter",
  61041. },
  61042. lionbat_front: {
  61043. height: math.unit(1.8, "meters"),
  61044. weight: math.unit(90, "kg"),
  61045. name: "Front (Lewd)",
  61046. image: {
  61047. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61048. extra: 797/740,
  61049. bottom: 78/875
  61050. },
  61051. form: "lionbat",
  61052. },
  61053. paw: {
  61054. height: math.unit(1.5, "feet"),
  61055. name: "Paw",
  61056. image: {
  61057. source: "./media/characters/ayranus/paw.svg"
  61058. },
  61059. },
  61060. },
  61061. [
  61062. {
  61063. name: "Incognito",
  61064. height: math.unit(1.8, "meters"),
  61065. allForms: true
  61066. },
  61067. {
  61068. name: "Macro",
  61069. height: math.unit(60, "meters"),
  61070. allForms: true
  61071. },
  61072. {
  61073. name: "Macro+",
  61074. height: math.unit(200, "meters"),
  61075. allForms: true
  61076. },
  61077. {
  61078. name: "Mega",
  61079. height: math.unit(35, "km"),
  61080. allForms: true
  61081. },
  61082. {
  61083. name: "Giga",
  61084. height: math.unit(220, "km"),
  61085. allForms: true
  61086. },
  61087. {
  61088. name: "Giga+",
  61089. height: math.unit(1500, "km"),
  61090. allForms: true
  61091. },
  61092. {
  61093. name: "Terra",
  61094. height: math.unit(13000, "km"),
  61095. allForms: true
  61096. },
  61097. {
  61098. name: "Terra+",
  61099. height: math.unit(500000, "km"),
  61100. allForms: true
  61101. },
  61102. {
  61103. name: "Galactic",
  61104. height: math.unit(486080, "parsecs"),
  61105. default: true,
  61106. allForms: true
  61107. },
  61108. ],
  61109. {
  61110. "otter": {
  61111. name: "Otter",
  61112. default: true
  61113. },
  61114. "lionbat": {
  61115. name: "Lionbat",
  61116. },
  61117. }
  61118. ))
  61119. characterMakers.push(() => makeCharacter(
  61120. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61121. {
  61122. front: {
  61123. height: math.unit(7 + 4/12, "feet"),
  61124. weight: math.unit(400, "lb"),
  61125. name: "Front",
  61126. image: {
  61127. source: "./media/characters/proxy/front.svg",
  61128. extra: 1605/1542,
  61129. bottom: 55/1660
  61130. }
  61131. },
  61132. side: {
  61133. height: math.unit(7 + 4/12, "feet"),
  61134. weight: math.unit(400, "lb"),
  61135. name: "Side",
  61136. image: {
  61137. source: "./media/characters/proxy/side.svg",
  61138. extra: 794/759,
  61139. bottom: 6/800
  61140. }
  61141. },
  61142. hand: {
  61143. height: math.unit(1.54, "feet"),
  61144. name: "Hand",
  61145. image: {
  61146. source: "./media/characters/proxy/hand.svg"
  61147. }
  61148. },
  61149. paw: {
  61150. height: math.unit(1.53, "feet"),
  61151. name: "Paw",
  61152. image: {
  61153. source: "./media/characters/proxy/paw.svg"
  61154. }
  61155. },
  61156. maw: {
  61157. height: math.unit(1.9, "feet"),
  61158. name: "Maw",
  61159. image: {
  61160. source: "./media/characters/proxy/maw.svg"
  61161. }
  61162. },
  61163. },
  61164. [
  61165. {
  61166. name: "Normal",
  61167. height: math.unit(7 + 4/12, "feet"),
  61168. default: true
  61169. },
  61170. ]
  61171. ))
  61172. characterMakers.push(() => makeCharacter(
  61173. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61174. {
  61175. front: {
  61176. height: math.unit(4, "meters"),
  61177. name: "Front",
  61178. image: {
  61179. source: "./media/characters/crocozilla/front.svg",
  61180. extra: 1790/1742,
  61181. bottom: 78/1868
  61182. }
  61183. },
  61184. },
  61185. [
  61186. {
  61187. name: "Normal",
  61188. height: math.unit(4, "meters"),
  61189. default: true
  61190. },
  61191. ]
  61192. ))
  61193. characterMakers.push(() => makeCharacter(
  61194. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61195. {
  61196. front: {
  61197. height: math.unit(1.8, "meters"),
  61198. weight: math.unit(120, "kg"),
  61199. name: "Front",
  61200. image: {
  61201. source: "./media/characters/kurz/front.svg",
  61202. extra: 1960/1824,
  61203. bottom: 41/2001
  61204. }
  61205. },
  61206. back: {
  61207. height: math.unit(1.8, "meters"),
  61208. weight: math.unit(120, "kg"),
  61209. name: "Back",
  61210. image: {
  61211. source: "./media/characters/kurz/back.svg",
  61212. extra: 1906/1787,
  61213. bottom: 60/1966
  61214. }
  61215. },
  61216. frontLewd: {
  61217. height: math.unit(1.8, "meters"),
  61218. weight: math.unit(120, "kg"),
  61219. name: "Front (Lewd)",
  61220. image: {
  61221. source: "./media/characters/kurz/front-lewd.svg",
  61222. extra: 1960/1824,
  61223. bottom: 41/2001
  61224. }
  61225. },
  61226. maw: {
  61227. height: math.unit(0.69, "meters"),
  61228. name: "Maw",
  61229. image: {
  61230. source: "./media/characters/kurz/maw.svg"
  61231. }
  61232. },
  61233. },
  61234. [
  61235. {
  61236. name: "Original Size",
  61237. height: math.unit(1.8, "meters")
  61238. },
  61239. {
  61240. name: "Incognito Size",
  61241. height: math.unit(2.4, "meters"),
  61242. default: true
  61243. },
  61244. {
  61245. name: "Macro",
  61246. height: math.unit(30, "meters")
  61247. },
  61248. {
  61249. name: "Macro+",
  61250. height: math.unit(250, "meters")
  61251. },
  61252. {
  61253. name: "Mega",
  61254. height: math.unit(2, "km")
  61255. },
  61256. {
  61257. name: "Mega+",
  61258. height: math.unit(35, "km")
  61259. },
  61260. {
  61261. name: "Mega++",
  61262. height: math.unit(75, "km")
  61263. },
  61264. {
  61265. name: "Giga",
  61266. height: math.unit(250, "km")
  61267. },
  61268. {
  61269. name: "Terra",
  61270. height: math.unit(15000, "km")
  61271. },
  61272. {
  61273. name: "Terra+",
  61274. height: math.unit(2250000, "km")
  61275. },
  61276. ]
  61277. ))
  61278. characterMakers.push(() => makeCharacter(
  61279. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61280. {
  61281. front: {
  61282. height: math.unit(16 + 3/12, "feet"),
  61283. weight: math.unit(3575, "lb"),
  61284. name: "Front",
  61285. image: {
  61286. source: "./media/characters/nikita/front.svg",
  61287. extra: 1064/955,
  61288. bottom: 47/1111
  61289. }
  61290. },
  61291. },
  61292. [
  61293. {
  61294. name: "Normal",
  61295. height: math.unit(16 + 3/12, "feet"),
  61296. default: true
  61297. },
  61298. {
  61299. name: "Big",
  61300. height: math.unit(21, "feet")
  61301. },
  61302. {
  61303. name: "Biggest",
  61304. height: math.unit(50, "feet")
  61305. },
  61306. ]
  61307. ))
  61308. characterMakers.push(() => makeCharacter(
  61309. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61310. {
  61311. front: {
  61312. height: math.unit(1.92, "m"),
  61313. weight: math.unit(76, "kg"),
  61314. name: "Front",
  61315. image: {
  61316. source: "./media/characters/kyara/front.svg",
  61317. extra: 1550/1438,
  61318. bottom: 139/1689
  61319. }
  61320. },
  61321. back: {
  61322. height: math.unit(1.92, "m"),
  61323. weight: math.unit(76, "kg"),
  61324. name: "Back",
  61325. image: {
  61326. source: "./media/characters/kyara/back.svg",
  61327. extra: 1523/1427,
  61328. bottom: 83/1606
  61329. }
  61330. },
  61331. head: {
  61332. height: math.unit(1.22, "feet"),
  61333. name: "Head",
  61334. image: {
  61335. source: "./media/characters/kyara/head.svg"
  61336. }
  61337. },
  61338. maw: {
  61339. height: math.unit(0.73, "feet"),
  61340. name: "Maw",
  61341. image: {
  61342. source: "./media/characters/kyara/maw.svg"
  61343. }
  61344. },
  61345. paws: {
  61346. height: math.unit(0.95, "feet"),
  61347. name: "Paws",
  61348. image: {
  61349. source: "./media/characters/kyara/paws.svg"
  61350. }
  61351. },
  61352. },
  61353. [
  61354. {
  61355. name: "Normal",
  61356. height: math.unit(1.92, "meters"),
  61357. default: true
  61358. },
  61359. {
  61360. name: "Mini Macro",
  61361. height: math.unit(192, "meters")
  61362. },
  61363. {
  61364. name: "Macro",
  61365. height: math.unit(480, "meters")
  61366. },
  61367. {
  61368. name: "Mega Macro",
  61369. height: math.unit(1440, "meters")
  61370. },
  61371. ]
  61372. ))
  61373. characterMakers.push(() => makeCharacter(
  61374. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61375. {
  61376. front: {
  61377. height: math.unit(6, "feet"),
  61378. weight: math.unit(160, "lbs"),
  61379. preyCapacity: math.unit(0.05, "people"),
  61380. name: "Front",
  61381. image: {
  61382. source: "./media/characters/layla-amari/front.svg",
  61383. extra: 1922/1723,
  61384. bottom: 90/2012
  61385. }
  61386. },
  61387. back: {
  61388. height: math.unit(6, "feet"),
  61389. weight: math.unit(160, "lbs"),
  61390. preyCapacity: math.unit(0.05, "people"),
  61391. name: "Back",
  61392. image: {
  61393. source: "./media/characters/layla-amari/back.svg",
  61394. extra: 1917/1718,
  61395. bottom: 50/1967
  61396. }
  61397. },
  61398. frontDressed: {
  61399. height: math.unit(6, "feet"),
  61400. weight: math.unit(160, "lbs"),
  61401. preyCapacity: math.unit(0.05, "people"),
  61402. name: "Front (Dressed)",
  61403. image: {
  61404. source: "./media/characters/layla-amari/front-dressed.svg",
  61405. extra: 1922/1723,
  61406. bottom: 90/2012
  61407. }
  61408. },
  61409. face: {
  61410. height: math.unit(0.93, "feet"),
  61411. name: "Face",
  61412. image: {
  61413. source: "./media/characters/layla-amari/face.svg"
  61414. }
  61415. },
  61416. hand: {
  61417. height: math.unit(0.66 , "feet"),
  61418. name: "Hand",
  61419. image: {
  61420. source: "./media/characters/layla-amari/hand.svg"
  61421. }
  61422. },
  61423. foot: {
  61424. height: math.unit(1, "feet"),
  61425. name: "Foot",
  61426. image: {
  61427. source: "./media/characters/layla-amari/foot.svg"
  61428. }
  61429. },
  61430. necklace: {
  61431. height: math.unit(0.32, "feet"),
  61432. name: "Necklace",
  61433. image: {
  61434. source: "./media/characters/layla-amari/necklace.svg"
  61435. }
  61436. },
  61437. nipple: {
  61438. height: math.unit(0.2, "feet"),
  61439. name: "Nipple",
  61440. image: {
  61441. source: "./media/characters/layla-amari/nipple.svg"
  61442. }
  61443. },
  61444. slit: {
  61445. height: math.unit(0.26, "feet"),
  61446. name: "Slit",
  61447. image: {
  61448. source: "./media/characters/layla-amari/slit.svg"
  61449. }
  61450. },
  61451. },
  61452. [
  61453. {
  61454. name: "Natural",
  61455. height: math.unit(825, "feet"),
  61456. default: true
  61457. },
  61458. {
  61459. name: "Enhanced",
  61460. height: math.unit(8250, "feet")
  61461. },
  61462. {
  61463. name: "Apparent Size",
  61464. height: math.unit(9.04363e+8, "meters")
  61465. },
  61466. ]
  61467. ))
  61468. characterMakers.push(() => makeCharacter(
  61469. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61470. {
  61471. front: {
  61472. height: math.unit(1.3, "meters"),
  61473. name: "Front",
  61474. image: {
  61475. source: "./media/characters/percy/front.svg",
  61476. extra: 1444/1289,
  61477. bottom: 54/1498
  61478. }
  61479. },
  61480. },
  61481. [
  61482. {
  61483. name: "Normal",
  61484. height: math.unit(1.3, "meters"),
  61485. default: true
  61486. },
  61487. ]
  61488. ))
  61489. characterMakers.push(() => makeCharacter(
  61490. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61491. {
  61492. side: {
  61493. height: math.unit(10, "meters"),
  61494. name: "Side",
  61495. image: {
  61496. source: "./media/characters/grev/side.svg",
  61497. extra: 653/266,
  61498. bottom: 77/730
  61499. }
  61500. },
  61501. head: {
  61502. height: math.unit(16.2, "m"),
  61503. name: "Head",
  61504. image: {
  61505. source: "./media/characters/grev/head.svg"
  61506. }
  61507. },
  61508. dick: {
  61509. height: math.unit(2.8135932034, "m"),
  61510. name: "Dick",
  61511. image: {
  61512. source: "./media/characters/grev/dick.svg"
  61513. }
  61514. },
  61515. },
  61516. [
  61517. {
  61518. name: "Friend-Sized",
  61519. height: math.unit(80, "cm")
  61520. },
  61521. {
  61522. name: "Normal",
  61523. height: math.unit(10, "meters"),
  61524. default: true
  61525. },
  61526. {
  61527. name: "Macro",
  61528. height: math.unit(200, "meters")
  61529. },
  61530. ]
  61531. ))
  61532. characterMakers.push(() => makeCharacter(
  61533. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61534. {
  61535. front: {
  61536. height: math.unit(19.75, "feet"),
  61537. weight: math.unit(20000, "lb"),
  61538. name: "Front",
  61539. image: {
  61540. source: "./media/characters/azuuca/front.svg",
  61541. extra: 1593/1511,
  61542. bottom: 55/1648
  61543. }
  61544. },
  61545. },
  61546. [
  61547. {
  61548. name: "Normal",
  61549. height: math.unit(19.75, "feet"),
  61550. default: true
  61551. },
  61552. ]
  61553. ))
  61554. characterMakers.push(() => makeCharacter(
  61555. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61556. {
  61557. front: {
  61558. height: math.unit(15, "feet"),
  61559. weight: math.unit(1500, "lb"),
  61560. name: "Front",
  61561. image: {
  61562. source: "./media/characters/valuria/front.svg",
  61563. extra: 1588/1486,
  61564. bottom: 31/1619
  61565. }
  61566. },
  61567. },
  61568. [
  61569. {
  61570. name: "Normal",
  61571. height: math.unit(15, "feet"),
  61572. default: true
  61573. },
  61574. {
  61575. name: "Small",
  61576. height: math.unit(500, "feet")
  61577. },
  61578. {
  61579. name: "Macro",
  61580. height: math.unit(4000, "feet")
  61581. },
  61582. {
  61583. name: "Mega Macro",
  61584. height: math.unit(2000, "miles")
  61585. },
  61586. {
  61587. name: "Giga Macro",
  61588. height: math.unit(3e6, "miles")
  61589. },
  61590. ]
  61591. ))
  61592. characterMakers.push(() => makeCharacter(
  61593. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61594. {
  61595. front: {
  61596. height: math.unit(3500, "solarradii"),
  61597. name: "Front",
  61598. image: {
  61599. source: "./media/characters/terigaia/front.svg",
  61600. extra: 1531/1451,
  61601. bottom: 98/1629
  61602. }
  61603. },
  61604. },
  61605. [
  61606. {
  61607. name: "Normal",
  61608. height: math.unit(3500, "solarradii"),
  61609. default: true
  61610. },
  61611. ]
  61612. ))
  61613. characterMakers.push(() => makeCharacter(
  61614. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61615. {
  61616. front: {
  61617. height: math.unit(9.34, "feet"),
  61618. weight: math.unit(600, "lb"),
  61619. name: "Front",
  61620. image: {
  61621. source: "./media/characters/blair-blaziken/front.svg",
  61622. extra: 1557/1462,
  61623. bottom: 55/1612
  61624. }
  61625. },
  61626. },
  61627. [
  61628. {
  61629. name: "Normal",
  61630. height: math.unit(9.34, "feet"),
  61631. default: true
  61632. },
  61633. ]
  61634. ))
  61635. characterMakers.push(() => makeCharacter(
  61636. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61637. {
  61638. pistrogre_front: {
  61639. height: math.unit(10, "feet"),
  61640. weight: math.unit(10, "tons"),
  61641. name: "Front",
  61642. image: {
  61643. source: "./media/characters/braxia/pistrogre-front.svg",
  61644. extra: 1531/1334,
  61645. bottom: 114/1645
  61646. },
  61647. form: "pistrogre",
  61648. default: true
  61649. },
  61650. human_front: {
  61651. height: math.unit(10, "feet"),
  61652. weight: math.unit(10, "tons"),
  61653. name: "Front",
  61654. image: {
  61655. source: "./media/characters/braxia/human-front.svg",
  61656. extra: 1574/1501,
  61657. bottom: 37/1611
  61658. },
  61659. form: "human",
  61660. default: true
  61661. },
  61662. },
  61663. [
  61664. {
  61665. name: "Normal",
  61666. height: math.unit(10, "feet"),
  61667. default: true,
  61668. allForms: true
  61669. },
  61670. {
  61671. name: "Macro",
  61672. height: math.unit(1000, "feet"),
  61673. allForms: true
  61674. },
  61675. {
  61676. name: "Mega Macro",
  61677. height: math.unit(100, "miles"),
  61678. allForms: true
  61679. },
  61680. {
  61681. name: "Cosmic",
  61682. height: math.unit(1000000, "lightyears"),
  61683. allForms: true
  61684. },
  61685. {
  61686. name: "ϐѮԆԬӁꭍϞԢ",
  61687. height: math.unit(1000, "multiverses"),
  61688. allForms: true
  61689. },
  61690. ],
  61691. {
  61692. "pistrogre": {
  61693. name: "Pistrogre",
  61694. default: true
  61695. },
  61696. "human": {
  61697. name: "Human",
  61698. },
  61699. }
  61700. ))
  61701. characterMakers.push(() => makeCharacter(
  61702. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61703. {
  61704. front: {
  61705. height: math.unit(6 + 1/12, "feet"),
  61706. weight: math.unit(280, "lb"),
  61707. name: "Front",
  61708. image: {
  61709. source: "./media/characters/kiriga-yato/front.svg",
  61710. extra: 445/394,
  61711. bottom: 11/456
  61712. }
  61713. },
  61714. },
  61715. [
  61716. {
  61717. name: "Descended",
  61718. height: math.unit(3, "feet")
  61719. },
  61720. {
  61721. name: "Average",
  61722. height: math.unit(6 + 1/12, "feet"),
  61723. default: true
  61724. },
  61725. {
  61726. name: "Ascended",
  61727. height: math.unit(9 + 2/12, "feet")
  61728. },
  61729. ]
  61730. ))
  61731. characterMakers.push(() => makeCharacter(
  61732. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61733. {
  61734. front: {
  61735. height: math.unit(6, "feet"),
  61736. weight: math.unit(150, "lb"),
  61737. name: "Front",
  61738. image: {
  61739. source: "./media/characters/kylie/front.svg",
  61740. extra: 1114/1046,
  61741. bottom: 65/1179
  61742. },
  61743. extraAttributes: {
  61744. "hoofSize": {
  61745. name: "Hoof Size",
  61746. power: 2,
  61747. type: "area",
  61748. base: math.unit(0.034, "m^2")
  61749. },
  61750. "footSize": {
  61751. name: "Foot Size",
  61752. power: 2,
  61753. type: "area",
  61754. base: math.unit(0.75, "m^2")
  61755. },
  61756. }
  61757. },
  61758. side: {
  61759. height: math.unit(6, "feet"),
  61760. weight: math.unit(150, "lb"),
  61761. name: "Side",
  61762. image: {
  61763. source: "./media/characters/kylie/side.svg",
  61764. extra: 1178/1110,
  61765. bottom: 21/1199
  61766. },
  61767. extraAttributes: {
  61768. "hoofSize": {
  61769. name: "Hoof Size",
  61770. power: 2,
  61771. type: "area",
  61772. base: math.unit(0.034, "m^2")
  61773. },
  61774. "footSize": {
  61775. name: "Foot Size",
  61776. power: 2,
  61777. type: "area",
  61778. base: math.unit(0.75, "m^2")
  61779. },
  61780. }
  61781. },
  61782. back: {
  61783. height: math.unit(6, "feet"),
  61784. weight: math.unit(150, "lb"),
  61785. name: "Back",
  61786. image: {
  61787. source: "./media/characters/kylie/back.svg",
  61788. extra: 1115/1047,
  61789. bottom: 66/1181
  61790. },
  61791. extraAttributes: {
  61792. "hoofSize": {
  61793. name: "Hoof Size",
  61794. power: 2,
  61795. type: "area",
  61796. base: math.unit(0.034, "m^2")
  61797. },
  61798. "footSize": {
  61799. name: "Foot Size",
  61800. power: 2,
  61801. type: "area",
  61802. base: math.unit(0.75, "m^2")
  61803. },
  61804. }
  61805. },
  61806. head: {
  61807. height: math.unit(1.85, "feet"),
  61808. name: "Head",
  61809. image: {
  61810. source: "./media/characters/kylie/head.svg"
  61811. }
  61812. },
  61813. },
  61814. [
  61815. {
  61816. name: "Normal",
  61817. height: math.unit(90, "meters"),
  61818. default: true
  61819. },
  61820. ]
  61821. ))
  61822. characterMakers.push(() => makeCharacter(
  61823. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61824. {
  61825. front: {
  61826. height: math.unit(245, "feet"),
  61827. weight: math.unit(400000, "lb"),
  61828. name: "Front",
  61829. image: {
  61830. source: "./media/characters/sabado/front.svg",
  61831. extra: 1309/1164,
  61832. bottom: 29/1338
  61833. }
  61834. },
  61835. },
  61836. [
  61837. {
  61838. name: "Normal",
  61839. height: math.unit(245, "feet"),
  61840. default: true
  61841. },
  61842. ]
  61843. ))
  61844. characterMakers.push(() => makeCharacter(
  61845. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61846. {
  61847. shark_front: {
  61848. height: math.unit(2, "meters"),
  61849. weight: math.unit(200, "kg"),
  61850. name: "Front",
  61851. image: {
  61852. source: "./media/characters/zechal/shark-front.svg",
  61853. extra: 969/925,
  61854. bottom: 74/1043
  61855. },
  61856. form: "shark",
  61857. },
  61858. shark_back: {
  61859. height: math.unit(2, "meters"),
  61860. weight: math.unit(200, "kg"),
  61861. name: "Back",
  61862. image: {
  61863. source: "./media/characters/zechal/shark-back.svg",
  61864. extra: 994/949,
  61865. bottom: 176/1170
  61866. },
  61867. form: "shark",
  61868. },
  61869. shark_frontLewd: {
  61870. height: math.unit(2, "meters"),
  61871. weight: math.unit(200, "kg"),
  61872. name: "Front (Lewd)",
  61873. image: {
  61874. source: "./media/characters/zechal/shark-front-lewd.svg",
  61875. extra: 969/925,
  61876. bottom: 74/1043
  61877. },
  61878. form: "shark",
  61879. },
  61880. shark_side: {
  61881. height: math.unit(1.56, "meters"),
  61882. weight: math.unit(200, "kg"),
  61883. name: "Side",
  61884. image: {
  61885. source: "./media/characters/zechal/shark-side.svg"
  61886. },
  61887. form: "shark",
  61888. },
  61889. dragon_front: {
  61890. height: math.unit(2, "meters"),
  61891. weight: math.unit(200, "kg"),
  61892. name: "Front",
  61893. image: {
  61894. source: "./media/characters/zechal/dragon-front.svg",
  61895. extra: 1041/925,
  61896. bottom: 74/1115
  61897. },
  61898. form: "dragon",
  61899. },
  61900. dragon_back: {
  61901. height: math.unit(2, "meters"),
  61902. weight: math.unit(200, "kg"),
  61903. name: "Back",
  61904. image: {
  61905. source: "./media/characters/zechal/dragon-back.svg",
  61906. extra: 1061/949,
  61907. bottom: 176/1237
  61908. },
  61909. form: "dragon",
  61910. },
  61911. dragon_frontLewd: {
  61912. height: math.unit(2, "meters"),
  61913. weight: math.unit(200, "kg"),
  61914. name: "Front (Lewd)",
  61915. image: {
  61916. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61917. extra: 1041/925,
  61918. bottom: 74/1115
  61919. },
  61920. form: "dragon",
  61921. },
  61922. dragon_side: {
  61923. height: math.unit(1.56, "meters"),
  61924. weight: math.unit(200, "kg"),
  61925. name: "Side",
  61926. image: {
  61927. source: "./media/characters/zechal/dragon-side.svg"
  61928. },
  61929. form: "dragon",
  61930. },
  61931. foot: {
  61932. height: math.unit(0.5, "meters"),
  61933. name: "Foot",
  61934. image: {
  61935. source: "./media/characters/zechal/foot.svg"
  61936. }
  61937. },
  61938. sheathFront: {
  61939. height: math.unit(0.45, "meters"),
  61940. name: "Sheath (Front)",
  61941. image: {
  61942. source: "./media/characters/zechal/sheath-front.svg"
  61943. }
  61944. },
  61945. sheathSide: {
  61946. height: math.unit(0.45, "meters"),
  61947. name: "Sheath (Side)",
  61948. image: {
  61949. source: "./media/characters/zechal/sheath-side.svg"
  61950. }
  61951. },
  61952. },
  61953. [
  61954. {
  61955. name: "Incognito",
  61956. height: math.unit(2, "meters"),
  61957. allForms: true
  61958. },
  61959. {
  61960. name: "Small Rampage",
  61961. height: math.unit(25, "meters"),
  61962. allForms: true
  61963. },
  61964. {
  61965. name: "Home Size",
  61966. height: math.unit(250, "meters"),
  61967. allForms: true,
  61968. default: true
  61969. },
  61970. {
  61971. name: "Macro+",
  61972. height: math.unit(700, "meters"),
  61973. allForms: true
  61974. },
  61975. {
  61976. name: "Small Mega",
  61977. height: math.unit(3, "km"),
  61978. allForms: true
  61979. },
  61980. {
  61981. name: "Mega",
  61982. height: math.unit(15, "km"),
  61983. allForms: true
  61984. },
  61985. {
  61986. name: "Giga",
  61987. height: math.unit(300, "km"),
  61988. allForms: true
  61989. },
  61990. {
  61991. name: "Giga+",
  61992. height: math.unit(1750, "km"),
  61993. allForms: true
  61994. },
  61995. {
  61996. name: "Continental",
  61997. height: math.unit(5000, "km"),
  61998. allForms: true
  61999. },
  62000. {
  62001. name: "Terra",
  62002. height: math.unit(20000, "km"),
  62003. allForms: true
  62004. },
  62005. {
  62006. name: "Terra+",
  62007. height: math.unit(300000, "km"),
  62008. allForms: true
  62009. },
  62010. {
  62011. name: "Solar",
  62012. height: math.unit(40000000, "km"),
  62013. allForms: true
  62014. },
  62015. {
  62016. name: "Galactic",
  62017. height: math.unit(810133, "parsecs"),
  62018. allForms: true
  62019. },
  62020. {
  62021. name: "Universal",
  62022. height: math.unit(25, "universes"),
  62023. allForms: true
  62024. },
  62025. ],
  62026. {
  62027. "shark": {
  62028. name: "Shark",
  62029. default: true
  62030. },
  62031. "dragon": {
  62032. name: "Dragon",
  62033. },
  62034. }
  62035. ))
  62036. characterMakers.push(() => makeCharacter(
  62037. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62038. {
  62039. front: {
  62040. height: math.unit(2.2, "meters"),
  62041. weight: math.unit(150, "kg"),
  62042. name: "Front",
  62043. image: {
  62044. source: "./media/characters/sergis/front.svg",
  62045. extra: 1314/1312,
  62046. bottom: 112/1426
  62047. }
  62048. },
  62049. back: {
  62050. height: math.unit(2.2, "meters"),
  62051. weight: math.unit(150, "kg"),
  62052. name: "Back",
  62053. image: {
  62054. source: "./media/characters/sergis/back.svg",
  62055. extra: 1335/1333,
  62056. bottom: 19/1354
  62057. }
  62058. },
  62059. frontLewd: {
  62060. height: math.unit(2.2, "meters"),
  62061. weight: math.unit(150, "kg"),
  62062. name: "Front (Lewd)",
  62063. image: {
  62064. source: "./media/characters/sergis/front-lewd.svg",
  62065. extra: 1314/1312,
  62066. bottom: 112/1426
  62067. }
  62068. },
  62069. frontDressed: {
  62070. height: math.unit(2.2, "meters"),
  62071. weight: math.unit(150, "kg"),
  62072. name: "Front (Dressed)",
  62073. image: {
  62074. source: "./media/characters/sergis/front-dressed.svg",
  62075. extra: 1330/1328,
  62076. bottom: 95/1425
  62077. }
  62078. },
  62079. frontDressedLewd: {
  62080. height: math.unit(2.2, "meters"),
  62081. weight: math.unit(150, "kg"),
  62082. name: "Front (Dressed, Lewd)",
  62083. image: {
  62084. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62085. extra: 1330/1328,
  62086. bottom: 95/1425
  62087. }
  62088. },
  62089. maw: {
  62090. height: math.unit(0.48, "meters"),
  62091. name: "Maw",
  62092. image: {
  62093. source: "./media/characters/sergis/maw.svg"
  62094. }
  62095. },
  62096. sheath: {
  62097. height: math.unit(0.38, "meters"),
  62098. name: "Sheath",
  62099. image: {
  62100. source: "./media/characters/sergis/sheath.svg"
  62101. }
  62102. },
  62103. },
  62104. [
  62105. {
  62106. name: "Incognito Size",
  62107. height: math.unit(2.2, "meters")
  62108. },
  62109. {
  62110. name: "Small Macro",
  62111. height: math.unit(40, "meters")
  62112. },
  62113. {
  62114. name: "Macro",
  62115. height: math.unit(150, "meters")
  62116. },
  62117. {
  62118. name: "Macro+",
  62119. height: math.unit(300, "meters")
  62120. },
  62121. {
  62122. name: "Mega",
  62123. height: math.unit(2.5, "km")
  62124. },
  62125. {
  62126. name: "Mega+",
  62127. height: math.unit(30, "km")
  62128. },
  62129. {
  62130. name: "Home Size",
  62131. height: math.unit(300, "km"),
  62132. default: true
  62133. },
  62134. {
  62135. name: "Giga+",
  62136. height: math.unit(1000, "km")
  62137. },
  62138. {
  62139. name: "Giga++",
  62140. height: math.unit(6000, "km")
  62141. },
  62142. {
  62143. name: "Terra",
  62144. height: math.unit(70000, "km")
  62145. },
  62146. {
  62147. name: "Terra+",
  62148. height: math.unit(200000, "km")
  62149. },
  62150. {
  62151. name: "Galactic",
  62152. height: math.unit(634200, "lightyears")
  62153. },
  62154. ]
  62155. ))
  62156. characterMakers.push(() => makeCharacter(
  62157. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62158. {
  62159. standard: {
  62160. height: math.unit(1 + 5/12, "feet"),
  62161. name: "Standard",
  62162. image: {
  62163. source: "./media/characters/spade/standard.svg",
  62164. extra: 1794/1703,
  62165. bottom: 115/1909
  62166. }
  62167. },
  62168. disguised: {
  62169. height: math.unit(1 + 5/12, "feet"),
  62170. name: "Disguised",
  62171. image: {
  62172. source: "./media/characters/spade/disguised.svg",
  62173. extra: 1794/1700,
  62174. bottom: 98/1892
  62175. }
  62176. },
  62177. },
  62178. [
  62179. {
  62180. name: "Normal",
  62181. height: math.unit(1 + 5/12, "feet"),
  62182. default: true
  62183. },
  62184. ]
  62185. ))
  62186. characterMakers.push(() => makeCharacter(
  62187. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62188. {
  62189. frontNsfw: {
  62190. height: math.unit(5, "meters"),
  62191. weight: math.unit(2000, "kg"),
  62192. preyCapacity: math.unit(5, "people"),
  62193. name: "Front (NSFW)",
  62194. image: {
  62195. source: "./media/characters/zeanlain/front-nsfw.svg",
  62196. extra: 1087/938,
  62197. bottom: 93/1180
  62198. },
  62199. extraAttributes: {
  62200. "wingspan": {
  62201. name: "Wingspan",
  62202. power: 1,
  62203. type: "length",
  62204. base: math.unit(10, "meters")
  62205. },
  62206. "footSize": {
  62207. name: "Foot Size",
  62208. power: 1,
  62209. type: "length",
  62210. base: math.unit(0.68, "meters")
  62211. },
  62212. "cockLength": {
  62213. name: "Cock Length",
  62214. power: 1,
  62215. type: "length",
  62216. base: math.unit(1.69, "meters")
  62217. },
  62218. "ballVolume": {
  62219. name: "Ball Volume",
  62220. power: 3,
  62221. type: "volume",
  62222. base: math.unit(0.028, "m^3")
  62223. },
  62224. }
  62225. },
  62226. front: {
  62227. height: math.unit(5, "meters"),
  62228. weight: math.unit(2000, "kg"),
  62229. preyCapacity: math.unit(3, "people"),
  62230. name: "Front",
  62231. image: {
  62232. source: "./media/characters/zeanlain/front.svg",
  62233. extra: 1087/938,
  62234. bottom: 93/1180
  62235. },
  62236. extraAttributes: {
  62237. "wingspan": {
  62238. name: "Wingspan",
  62239. power: 1,
  62240. type: "length",
  62241. base: math.unit(10, "meters")
  62242. },
  62243. "footSize": {
  62244. name: "Foot Size",
  62245. power: 1,
  62246. type: "length",
  62247. base: math.unit(0.68, "meters")
  62248. },
  62249. }
  62250. },
  62251. },
  62252. [
  62253. {
  62254. name: "Normal",
  62255. height: math.unit(5, "meters"),
  62256. default: true
  62257. },
  62258. ]
  62259. ))
  62260. characterMakers.push(() => makeCharacter(
  62261. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62262. {
  62263. front: {
  62264. height: math.unit(10, "meters"),
  62265. weight: math.unit(250000, "kg"),
  62266. name: "Front",
  62267. image: {
  62268. source: "./media/characters/airamis/front.svg",
  62269. extra: 865/835,
  62270. bottom: 13/878
  62271. }
  62272. },
  62273. },
  62274. [
  62275. {
  62276. name: "Normal",
  62277. height: math.unit(10, "meters"),
  62278. default: true
  62279. },
  62280. ]
  62281. ))
  62282. characterMakers.push(() => makeCharacter(
  62283. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62284. {
  62285. front: {
  62286. height: math.unit(3 + 3/12, "feet"),
  62287. weight: math.unit(75, "lb"),
  62288. name: "Front",
  62289. image: {
  62290. source: "./media/characters/corra-tourmaline/front.svg",
  62291. extra: 1037/864,
  62292. bottom: 39/1076
  62293. }
  62294. },
  62295. back: {
  62296. height: math.unit(3 + 3/12, "feet"),
  62297. weight: math.unit(75, "lb"),
  62298. name: "Back",
  62299. image: {
  62300. source: "./media/characters/corra-tourmaline/back.svg",
  62301. extra: 1022/849,
  62302. bottom: 26/1048
  62303. }
  62304. },
  62305. dressed: {
  62306. height: math.unit(3 + 3/12, "feet"),
  62307. weight: math.unit(75, "lb"),
  62308. name: "Dressed",
  62309. image: {
  62310. source: "./media/characters/corra-tourmaline/dressed.svg",
  62311. extra: 1037/864,
  62312. bottom: 39/1076
  62313. }
  62314. },
  62315. beans: {
  62316. height: math.unit(0.37, "feet"),
  62317. name: "Beans",
  62318. image: {
  62319. source: "./media/characters/corra-tourmaline/beans.svg"
  62320. }
  62321. },
  62322. },
  62323. [
  62324. {
  62325. name: "Normal",
  62326. height: math.unit(3 + 3/12, "feet"),
  62327. default: true
  62328. },
  62329. {
  62330. name: "Macro",
  62331. height: math.unit(32, "feet")
  62332. },
  62333. ]
  62334. ))
  62335. characterMakers.push(() => makeCharacter(
  62336. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62337. {
  62338. front: {
  62339. height: math.unit(6 + 2/12, "feet"),
  62340. weight: math.unit(203, "lb"),
  62341. name: "Front",
  62342. image: {
  62343. source: "./media/characters/maki-kawa/front.svg",
  62344. extra: 950/890,
  62345. bottom: 62/1012
  62346. }
  62347. },
  62348. back: {
  62349. height: math.unit(6 + 2/12, "feet"),
  62350. weight: math.unit(203, "lb"),
  62351. name: "Back",
  62352. image: {
  62353. source: "./media/characters/maki-kawa/back.svg",
  62354. extra: 953/878,
  62355. bottom: 49/1002
  62356. }
  62357. },
  62358. frontBarista: {
  62359. height: math.unit(6 + 2/12, "feet"),
  62360. weight: math.unit(203, "lb"),
  62361. name: "Front (Barista)",
  62362. image: {
  62363. source: "./media/characters/maki-kawa/front-barista.svg",
  62364. extra: 943/883,
  62365. bottom: 69/1012
  62366. }
  62367. },
  62368. backBarista: {
  62369. height: math.unit(6 + 2/12, "feet"),
  62370. weight: math.unit(203, "lb"),
  62371. name: "Back (Barista)",
  62372. image: {
  62373. source: "./media/characters/maki-kawa/back-barista.svg",
  62374. extra: 953/878,
  62375. bottom: 49/1002
  62376. }
  62377. },
  62378. frontWrestler: {
  62379. height: math.unit(6 + 2/12, "feet"),
  62380. weight: math.unit(203, "lb"),
  62381. name: "Front (Wrestler)",
  62382. image: {
  62383. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62384. extra: 950/890,
  62385. bottom: 62/1012
  62386. }
  62387. },
  62388. backWrestler: {
  62389. height: math.unit(6 + 2/12, "feet"),
  62390. weight: math.unit(203, "lb"),
  62391. name: "Back (Wrestler)",
  62392. image: {
  62393. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62394. extra: 953/878,
  62395. bottom: 49/1002
  62396. }
  62397. },
  62398. headFront: {
  62399. height: math.unit(1.64, "feet"),
  62400. name: "Head (Front)",
  62401. image: {
  62402. source: "./media/characters/maki-kawa/head-front.svg"
  62403. }
  62404. },
  62405. headSide: {
  62406. height: math.unit(1.59, "feet"),
  62407. name: "Head (Side)",
  62408. image: {
  62409. source: "./media/characters/maki-kawa/head-side.svg"
  62410. }
  62411. },
  62412. paw: {
  62413. height: math.unit(0.9, "feet"),
  62414. name: "Paw",
  62415. image: {
  62416. source: "./media/characters/maki-kawa/paw.svg"
  62417. }
  62418. },
  62419. },
  62420. [
  62421. {
  62422. name: "Normal",
  62423. height: math.unit(6 + 2/12, "feet"),
  62424. default: true
  62425. },
  62426. {
  62427. name: "Macro",
  62428. height: math.unit(617, "feet")
  62429. },
  62430. ]
  62431. ))
  62432. characterMakers.push(() => makeCharacter(
  62433. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62434. {
  62435. front: {
  62436. height: math.unit(10, "feet"),
  62437. weight: math.unit(1500, "lb"),
  62438. name: "Front",
  62439. image: {
  62440. source: "./media/characters/lennox/front.svg",
  62441. extra: 1623/1496,
  62442. bottom: 18/1641
  62443. }
  62444. },
  62445. back: {
  62446. height: math.unit(10, "feet"),
  62447. weight: math.unit(1500, "lb"),
  62448. name: "Back",
  62449. image: {
  62450. source: "./media/characters/lennox/back.svg",
  62451. extra: 1641/1481,
  62452. bottom: 13/1654
  62453. }
  62454. },
  62455. maw: {
  62456. height: math.unit(2.94, "feet"),
  62457. name: "Maw",
  62458. image: {
  62459. source: "./media/characters/lennox/maw.svg"
  62460. }
  62461. },
  62462. },
  62463. [
  62464. {
  62465. name: "Micro",
  62466. height: math.unit(1, "inch")
  62467. },
  62468. {
  62469. name: "Normal",
  62470. height: math.unit(10, "feet"),
  62471. default: true
  62472. },
  62473. {
  62474. name: "Macro",
  62475. height: math.unit(200, "feet")
  62476. },
  62477. ]
  62478. ))
  62479. characterMakers.push(() => makeCharacter(
  62480. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62481. {
  62482. frontDressed: {
  62483. height: math.unit(15 + 7/12, "feet"),
  62484. weight: math.unit(5000, "lb"),
  62485. name: "Front (Dressed)",
  62486. image: {
  62487. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62488. extra: 1136/1023,
  62489. bottom: 51/1187
  62490. }
  62491. },
  62492. backDressed: {
  62493. height: math.unit(15 + 7/12, "feet"),
  62494. weight: math.unit(5000, "lb"),
  62495. name: "Back (Dressed)",
  62496. image: {
  62497. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62498. extra: 2359/2143,
  62499. bottom: 103/2462
  62500. }
  62501. },
  62502. front: {
  62503. height: math.unit(15 + 7/12, "feet"),
  62504. weight: math.unit(5000, "lb"),
  62505. name: "Front",
  62506. image: {
  62507. source: "./media/characters/vyse-iron-thunder/front.svg",
  62508. extra: 1136/1023,
  62509. bottom: 51/1187
  62510. }
  62511. },
  62512. hand: {
  62513. height: math.unit(2.36, "feet"),
  62514. name: "Hand",
  62515. image: {
  62516. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62517. }
  62518. },
  62519. foot: {
  62520. height: math.unit(1.72, "feet"),
  62521. name: "Foot",
  62522. image: {
  62523. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62524. }
  62525. },
  62526. mouth: {
  62527. height: math.unit(2, "feet"),
  62528. name: "Mouth",
  62529. image: {
  62530. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62531. }
  62532. },
  62533. eye: {
  62534. height: math.unit(0.58, "feet"),
  62535. name: "Eye",
  62536. image: {
  62537. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62538. }
  62539. },
  62540. },
  62541. [
  62542. {
  62543. name: "Normal",
  62544. height: math.unit(15 + 7/12, "feet"),
  62545. default: true
  62546. },
  62547. {
  62548. name: "Macro",
  62549. height: math.unit(157, "feet")
  62550. },
  62551. {
  62552. name: "Macro+",
  62553. height: math.unit(1570, "feet")
  62554. },
  62555. {
  62556. name: "Macro++",
  62557. height: math.unit(15700, "feet")
  62558. },
  62559. {
  62560. name: "Macro+++",
  62561. height: math.unit(157000, "feet")
  62562. },
  62563. {
  62564. name: "Macro++++",
  62565. height: math.unit(1570000, "feet")
  62566. },
  62567. ]
  62568. ))
  62569. characterMakers.push(() => makeCharacter(
  62570. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62571. {
  62572. side: {
  62573. height: math.unit(6, "feet"),
  62574. weight: math.unit(115, "lb"),
  62575. name: "Side",
  62576. image: {
  62577. source: "./media/characters/moonbeam/side.svg",
  62578. extra: 839/485,
  62579. bottom: 60/899
  62580. }
  62581. },
  62582. },
  62583. [
  62584. {
  62585. name: "Normal",
  62586. height: math.unit(6, "feet"),
  62587. default: true
  62588. },
  62589. ]
  62590. ))
  62591. characterMakers.push(() => makeCharacter(
  62592. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62593. {
  62594. front: {
  62595. height: math.unit(3500, "miles"),
  62596. weight: math.unit(1659, "petatonnes"),
  62597. name: "Front",
  62598. image: {
  62599. source: "./media/characters/baltica/front.svg",
  62600. extra: 429/428,
  62601. bottom: 41/470
  62602. }
  62603. },
  62604. back: {
  62605. height: math.unit(3500, "miles"),
  62606. weight: math.unit(1659, "petatonnes"),
  62607. name: "Back",
  62608. image: {
  62609. source: "./media/characters/baltica/back.svg",
  62610. extra: 452/451,
  62611. bottom: 8/460
  62612. }
  62613. },
  62614. },
  62615. [
  62616. {
  62617. name: "Gigamacro",
  62618. height: math.unit(3500, "miles"),
  62619. default: true
  62620. },
  62621. ]
  62622. ))
  62623. characterMakers.push(() => makeCharacter(
  62624. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62625. {
  62626. front: {
  62627. height: math.unit(6 + 10/12, "feet"),
  62628. weight: math.unit(200, "lb"),
  62629. name: "Front",
  62630. image: {
  62631. source: "./media/characters/shadow-wolf/front.svg",
  62632. extra: 1931/1760,
  62633. bottom: 88/2019
  62634. }
  62635. },
  62636. },
  62637. [
  62638. {
  62639. name: "Normal",
  62640. height: math.unit(6 + 10/12, "feet"),
  62641. default: true
  62642. },
  62643. ]
  62644. ))
  62645. characterMakers.push(() => makeCharacter(
  62646. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62647. {
  62648. front: {
  62649. height: math.unit(5 + 10/12, "feet"),
  62650. name: "Front",
  62651. image: {
  62652. source: "./media/characters/quincy-praying-mantis/front.svg",
  62653. extra: 1055/891,
  62654. bottom: 92/1147
  62655. }
  62656. },
  62657. soles: {
  62658. height: math.unit(0.85, "feet"),
  62659. name: "Soles",
  62660. image: {
  62661. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62662. extra: 429/324,
  62663. bottom: 89/518
  62664. },
  62665. extraAttributes: {
  62666. "shoeSize": {
  62667. name: "Shoe Size",
  62668. power: 1,
  62669. type: "length",
  62670. base: math.unit(23, "ShoeSizeMensUS"),
  62671. defaultUnit: "ShoeSizeMensUS"
  62672. },
  62673. }
  62674. },
  62675. foot: {
  62676. height: math.unit(0.72, "feet"),
  62677. name: "Foot",
  62678. image: {
  62679. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62680. extra: 349/349,
  62681. bottom: 76/425
  62682. }
  62683. },
  62684. },
  62685. [
  62686. {
  62687. name: "Normal",
  62688. height: math.unit(5 + 10/12, "feet"),
  62689. default: true
  62690. },
  62691. ]
  62692. ))
  62693. characterMakers.push(() => makeCharacter(
  62694. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62695. {
  62696. front: {
  62697. height: math.unit(6, "feet"),
  62698. name: "Front",
  62699. image: {
  62700. source: "./media/characters/christopher-redwood/front.svg",
  62701. extra: 1402/1341,
  62702. bottom: 23/1425
  62703. }
  62704. },
  62705. back: {
  62706. height: math.unit(6, "feet"),
  62707. name: "Back",
  62708. image: {
  62709. source: "./media/characters/christopher-redwood/back.svg",
  62710. extra: 1406/1345,
  62711. bottom: 36/1442
  62712. }
  62713. },
  62714. head: {
  62715. height: math.unit(1.685, "feet"),
  62716. name: "Head",
  62717. image: {
  62718. source: "./media/characters/christopher-redwood/head.svg"
  62719. }
  62720. },
  62721. },
  62722. [
  62723. {
  62724. name: "Normal",
  62725. height: math.unit(6, "feet"),
  62726. default: true
  62727. },
  62728. ]
  62729. ))
  62730. characterMakers.push(() => makeCharacter(
  62731. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62732. {
  62733. front: {
  62734. height: math.unit(1.9, "meters"),
  62735. weight: math.unit(140, "lb"),
  62736. name: "Front",
  62737. image: {
  62738. source: "./media/characters/kara-fox/front.svg",
  62739. extra: 766/711,
  62740. bottom: 41/807
  62741. }
  62742. },
  62743. back: {
  62744. height: math.unit(1.9, "meters"),
  62745. weight: math.unit(140, "lb"),
  62746. name: "Back",
  62747. image: {
  62748. source: "./media/characters/kara-fox/back.svg",
  62749. extra: 766/596,
  62750. bottom: 29/795
  62751. }
  62752. },
  62753. maw: {
  62754. height: math.unit(0.78, "feet"),
  62755. name: "Maw",
  62756. image: {
  62757. source: "./media/characters/kara-fox/maw.svg"
  62758. }
  62759. },
  62760. pawpads: {
  62761. height: math.unit(0.96, "feet"),
  62762. name: "Pawpads",
  62763. image: {
  62764. source: "./media/characters/kara-fox/pawpads.svg"
  62765. }
  62766. },
  62767. },
  62768. [
  62769. {
  62770. name: "Normal",
  62771. height: math.unit(1.9, "meters"),
  62772. default: true
  62773. },
  62774. {
  62775. name: "Giantess",
  62776. height: math.unit(80, "meters")
  62777. },
  62778. ]
  62779. ))
  62780. characterMakers.push(() => makeCharacter(
  62781. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62782. {
  62783. front: {
  62784. height: math.unit(12, "feet"),
  62785. name: "Front",
  62786. image: {
  62787. source: "./media/characters/naomi-espeon/front.svg",
  62788. extra: 892/797,
  62789. bottom: 5/897
  62790. }
  62791. },
  62792. back: {
  62793. height: math.unit(12, "feet"),
  62794. name: "Back",
  62795. image: {
  62796. source: "./media/characters/naomi-espeon/back.svg",
  62797. extra: 890/785,
  62798. bottom: 12/902
  62799. }
  62800. },
  62801. },
  62802. [
  62803. {
  62804. name: "Normal",
  62805. height: math.unit(12, "feet"),
  62806. default: true
  62807. },
  62808. ]
  62809. ))
  62810. characterMakers.push(() => makeCharacter(
  62811. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62812. {
  62813. anthro_front: {
  62814. height: math.unit(8, "feet"),
  62815. weight: math.unit(625, "lb"),
  62816. name: "Front",
  62817. image: {
  62818. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62819. extra: 638/574,
  62820. bottom: 73/711
  62821. },
  62822. form: "anthro",
  62823. default: true
  62824. },
  62825. anthro_back: {
  62826. height: math.unit(8, "feet"),
  62827. weight: math.unit(625, "lb"),
  62828. name: "Back",
  62829. image: {
  62830. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62831. extra: 674/614,
  62832. bottom: 7/681
  62833. },
  62834. form: "anthro",
  62835. },
  62836. taur_side: {
  62837. height: math.unit(16, "feet"),
  62838. weight: math.unit(4.5, "tons"),
  62839. name: "Side",
  62840. image: {
  62841. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62842. extra: 704/646,
  62843. bottom: 132/836
  62844. },
  62845. form: "taur",
  62846. default: true
  62847. },
  62848. },
  62849. [
  62850. {
  62851. name: "Normal",
  62852. height: math.unit(8, "feet"),
  62853. default: true,
  62854. form: "anthro"
  62855. },
  62856. {
  62857. name: "Normal",
  62858. height: math.unit(16, "feet"),
  62859. default: true,
  62860. form: "taur"
  62861. },
  62862. ],
  62863. {
  62864. "anthro": {
  62865. name: "Anthro",
  62866. default: true
  62867. },
  62868. "taur": {
  62869. name: "Taur",
  62870. },
  62871. }
  62872. ))
  62873. characterMakers.push(() => makeCharacter(
  62874. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62875. {
  62876. front: {
  62877. height: math.unit(190, "cm"),
  62878. weight: math.unit(110, "kg"),
  62879. name: "Front",
  62880. image: {
  62881. source: "./media/characters/amelie/front.svg",
  62882. extra: 530/442,
  62883. bottom: 35/565
  62884. }
  62885. },
  62886. },
  62887. [
  62888. {
  62889. name: "Normal",
  62890. height: math.unit(190, "cm"),
  62891. default: true
  62892. },
  62893. ]
  62894. ))
  62895. characterMakers.push(() => makeCharacter(
  62896. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62897. {
  62898. front: {
  62899. height: math.unit(21, "feet"),
  62900. weight: math.unit(30000, "lb"),
  62901. name: "Front",
  62902. image: {
  62903. source: "./media/characters/valence/front.svg",
  62904. extra: 1430/1306,
  62905. bottom: 51/1481
  62906. }
  62907. },
  62908. },
  62909. [
  62910. {
  62911. name: "Normal",
  62912. height: math.unit(21, "feet"),
  62913. default: true
  62914. },
  62915. ]
  62916. ))
  62917. characterMakers.push(() => makeCharacter(
  62918. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62919. {
  62920. front: {
  62921. height: math.unit(5 + 9/12, "feet"),
  62922. weight: math.unit(170, "lb"),
  62923. name: "Front",
  62924. image: {
  62925. source: "./media/characters/aurora-adkins/front.svg",
  62926. extra: 1141/1089,
  62927. bottom: 41/1182
  62928. }
  62929. },
  62930. },
  62931. [
  62932. {
  62933. name: "Tiny",
  62934. height: math.unit(7, "mm")
  62935. },
  62936. {
  62937. name: "Small",
  62938. height: math.unit(3.4, "inches")
  62939. },
  62940. {
  62941. name: "Normal",
  62942. height: math.unit(5 + 9/12, "feet"),
  62943. default: true
  62944. },
  62945. {
  62946. name: "Big",
  62947. height: math.unit(31, "feet")
  62948. },
  62949. {
  62950. name: "Giant",
  62951. height: math.unit(300, "feet")
  62952. },
  62953. ]
  62954. ))
  62955. characterMakers.push(() => makeCharacter(
  62956. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62957. {
  62958. front: {
  62959. height: math.unit(5 + 6/12, "feet"),
  62960. weight: math.unit(210, "lb"),
  62961. name: "Front",
  62962. image: {
  62963. source: "./media/characters/cyber/front.svg",
  62964. extra: 1968/1798,
  62965. bottom: 10/1978
  62966. },
  62967. extraAttributes: {
  62968. "shoeSize": {
  62969. name: "Shoe Size",
  62970. power: 1,
  62971. type: "length",
  62972. base: math.unit(30, "ShoeSizeMensUS")
  62973. },
  62974. }
  62975. },
  62976. },
  62977. [
  62978. {
  62979. name: "Normal",
  62980. height: math.unit(5 + 6/12, "feet"),
  62981. default: true
  62982. },
  62983. ]
  62984. ))
  62985. characterMakers.push(() => makeCharacter(
  62986. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62987. {
  62988. front: {
  62989. height: math.unit(6 + 6/12, "feet"),
  62990. weight: math.unit(140, "lb"),
  62991. name: "Front",
  62992. image: {
  62993. source: "./media/characters/sapphire-wairimea/front.svg",
  62994. extra: 475/458,
  62995. bottom: 14/489
  62996. }
  62997. },
  62998. },
  62999. [
  63000. {
  63001. name: "Normal",
  63002. height: math.unit(6 + 6/12, "feet")
  63003. },
  63004. {
  63005. name: "Macro",
  63006. height: math.unit(132, "feet"),
  63007. default: true
  63008. },
  63009. ]
  63010. ))
  63011. characterMakers.push(() => makeCharacter(
  63012. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63013. {
  63014. front: {
  63015. height: math.unit(1.6, "meters"),
  63016. weight: math.unit(100, "lb"),
  63017. name: "Front",
  63018. image: {
  63019. source: "./media/characters/cirkazi/front.svg",
  63020. extra: 489/477,
  63021. bottom: 0/489
  63022. }
  63023. },
  63024. },
  63025. [
  63026. {
  63027. name: "Normal",
  63028. height: math.unit(1.6, "meters")
  63029. },
  63030. {
  63031. name: "Macro",
  63032. height: math.unit(800, "feet"),
  63033. default: true
  63034. },
  63035. ]
  63036. ))
  63037. characterMakers.push(() => makeCharacter(
  63038. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63039. {
  63040. front: {
  63041. height: math.unit(5 + 10/12, "feet"),
  63042. weight: math.unit(145, "lb"),
  63043. name: "Front",
  63044. image: {
  63045. source: "./media/characters/corrin-cavelli/front.svg",
  63046. extra: 483/464,
  63047. bottom: 6/489
  63048. }
  63049. },
  63050. },
  63051. [
  63052. {
  63053. name: "Human",
  63054. height: math.unit(5 + 10/12, "feet")
  63055. },
  63056. {
  63057. name: "Giant",
  63058. height: math.unit(210, "feet"),
  63059. default: true
  63060. },
  63061. ]
  63062. ))
  63063. characterMakers.push(() => makeCharacter(
  63064. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63065. {
  63066. back: {
  63067. height: math.unit(5 + 6/12, "feet"),
  63068. weight: math.unit(115, "lb"),
  63069. name: "Back",
  63070. image: {
  63071. source: "./media/characters/lori-lopez/back.svg",
  63072. extra: 483/474,
  63073. bottom: 6/489
  63074. }
  63075. },
  63076. },
  63077. [
  63078. {
  63079. name: "Human",
  63080. height: math.unit(5 + 6/12, "feet")
  63081. },
  63082. {
  63083. name: "Macro",
  63084. height: math.unit(198, "feet"),
  63085. default: true
  63086. },
  63087. ]
  63088. ))
  63089. characterMakers.push(() => makeCharacter(
  63090. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63091. {
  63092. front: {
  63093. height: math.unit(6, "feet"),
  63094. weight: math.unit(220, "lb"),
  63095. name: "Front",
  63096. image: {
  63097. source: "./media/characters/sylvia-beauregard/front.svg",
  63098. extra: 483/479,
  63099. bottom: 6/489
  63100. }
  63101. },
  63102. },
  63103. [
  63104. {
  63105. name: "Macro",
  63106. height: math.unit(2071, "feet"),
  63107. default: true
  63108. },
  63109. ]
  63110. ))
  63111. characterMakers.push(() => makeCharacter(
  63112. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63113. {
  63114. back: {
  63115. height: math.unit(5 + 6/12, "feet"),
  63116. weight: math.unit(160, "lb"),
  63117. name: "Back",
  63118. image: {
  63119. source: "./media/characters/akiko-takahashi/back.svg",
  63120. extra: 459/454,
  63121. bottom: 27/486
  63122. }
  63123. },
  63124. },
  63125. [
  63126. {
  63127. name: "Human",
  63128. height: math.unit(5 + 6/12, "feet")
  63129. },
  63130. {
  63131. name: "Macro",
  63132. height: math.unit(198, "feet"),
  63133. default: true
  63134. },
  63135. {
  63136. name: "Megamacro",
  63137. height: math.unit(7128, "feet")
  63138. },
  63139. ]
  63140. ))
  63141. characterMakers.push(() => makeCharacter(
  63142. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63143. {
  63144. front: {
  63145. height: math.unit(6, "feet"),
  63146. weight: math.unit(140, "lb"),
  63147. name: "Front",
  63148. image: {
  63149. source: "./media/characters/velvet-garza/front.svg",
  63150. extra: 480/462,
  63151. bottom: 7/487
  63152. }
  63153. },
  63154. },
  63155. [
  63156. {
  63157. name: "Macro",
  63158. height: math.unit(37, "feet"),
  63159. default: true
  63160. },
  63161. ]
  63162. ))
  63163. characterMakers.push(() => makeCharacter(
  63164. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63165. {
  63166. front: {
  63167. height: math.unit(7 + 6/12, "feet"),
  63168. weight: math.unit(400, "lb"),
  63169. name: "Front",
  63170. image: {
  63171. source: "./media/characters/gaia/front.svg",
  63172. extra: 474/463,
  63173. bottom: 13/487
  63174. }
  63175. },
  63176. },
  63177. [
  63178. {
  63179. name: "MiniMacro",
  63180. height: math.unit(7 + 6/12, "feet")
  63181. },
  63182. {
  63183. name: "GigaMacro",
  63184. height: math.unit(14500, "feet"),
  63185. default: true
  63186. },
  63187. ]
  63188. ))
  63189. characterMakers.push(() => makeCharacter(
  63190. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63191. {
  63192. front: {
  63193. height: math.unit(6, "feet"),
  63194. weight: math.unit(150, "lb"),
  63195. name: "Front",
  63196. image: {
  63197. source: "./media/characters/tim/front.svg",
  63198. extra: 1878/1743,
  63199. bottom: 9/1887
  63200. }
  63201. },
  63202. frontDressed: {
  63203. height: math.unit(6, "feet"),
  63204. weight: math.unit(150, "lb"),
  63205. name: "Front (Dressed)",
  63206. image: {
  63207. source: "./media/characters/tim/front-dressed.svg",
  63208. extra: 1765/1485,
  63209. bottom: 48/1813
  63210. }
  63211. },
  63212. backDressed: {
  63213. height: math.unit(6, "feet"),
  63214. weight: math.unit(150, "lb"),
  63215. name: "Back (Dressed)",
  63216. image: {
  63217. source: "./media/characters/tim/back-dressed.svg",
  63218. extra: 1750/1465,
  63219. bottom: 25/1775
  63220. }
  63221. },
  63222. dick: {
  63223. height: math.unit(1.5, "feet"),
  63224. weight: math.unit(6, "lb"),
  63225. name: "Dick",
  63226. image: {
  63227. source: "./media/characters/tim/dick.svg"
  63228. }
  63229. },
  63230. hand: {
  63231. height: math.unit(0.522, "feet"),
  63232. name: "Hand",
  63233. image: {
  63234. source: "./media/characters/tim/hand.svg"
  63235. }
  63236. },
  63237. palm: {
  63238. height: math.unit(0.48, "feet"),
  63239. name: "Palm",
  63240. image: {
  63241. source: "./media/characters/tim/palm.svg"
  63242. }
  63243. },
  63244. paw: {
  63245. height: math.unit(0.9, "feet"),
  63246. name: "Paw",
  63247. image: {
  63248. source: "./media/characters/tim/paw.svg"
  63249. }
  63250. },
  63251. sole: {
  63252. height: math.unit(0.88, "feet"),
  63253. name: "Sole",
  63254. image: {
  63255. source: "./media/characters/tim/sole.svg"
  63256. }
  63257. },
  63258. },
  63259. [
  63260. {
  63261. name: "Macro",
  63262. height: math.unit(1000, "feet")
  63263. },
  63264. {
  63265. name: "Megamacro",
  63266. height: math.unit(10000, "feet"),
  63267. default: true
  63268. },
  63269. {
  63270. name: "Megamacro+",
  63271. height: math.unit(50000, "feet")
  63272. },
  63273. {
  63274. name: "Gigamacro",
  63275. height: math.unit(150000, "km")
  63276. },
  63277. ]
  63278. ))
  63279. characterMakers.push(() => makeCharacter(
  63280. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63281. {
  63282. front: {
  63283. height: math.unit(5 + 8/12, "feet"),
  63284. weight: math.unit(170, "lb"),
  63285. name: "Front",
  63286. image: {
  63287. source: "./media/characters/abel-delreoux/front.svg",
  63288. extra: 1615/1500,
  63289. bottom: 82/1697
  63290. }
  63291. },
  63292. back: {
  63293. height: math.unit(5 + 8/12, "feet"),
  63294. weight: math.unit(170, "lb"),
  63295. name: "Back",
  63296. image: {
  63297. source: "./media/characters/abel-delreoux/back.svg",
  63298. extra: 1644/1534,
  63299. bottom: 24/1668
  63300. }
  63301. },
  63302. casual: {
  63303. height: math.unit(5 + 8/12, "feet"),
  63304. weight: math.unit(170, "lb"),
  63305. name: "Casual",
  63306. image: {
  63307. source: "./media/characters/abel-delreoux/casual.svg",
  63308. extra: 1716/1598,
  63309. bottom: 29/1745
  63310. }
  63311. },
  63312. sleepy: {
  63313. height: math.unit(5 + 8/12, "feet"),
  63314. weight: math.unit(170, "lb"),
  63315. name: "Sleepy",
  63316. image: {
  63317. source: "./media/characters/abel-delreoux/sleepy.svg",
  63318. extra: 1649/1573,
  63319. bottom: 22/1671
  63320. }
  63321. },
  63322. fem: {
  63323. height: math.unit(5 + 8/12, "feet"),
  63324. weight: math.unit(170, "lb"),
  63325. name: "Fem",
  63326. image: {
  63327. source: "./media/characters/abel-delreoux/fem.svg",
  63328. extra: 1680/1564,
  63329. bottom: 17/1697
  63330. }
  63331. },
  63332. hand: {
  63333. height: math.unit(0.78, "feet"),
  63334. name: "Hand",
  63335. image: {
  63336. source: "./media/characters/abel-delreoux/hand.svg"
  63337. }
  63338. },
  63339. paw: {
  63340. height: math.unit(0.78, "feet"),
  63341. name: "Paw",
  63342. image: {
  63343. source: "./media/characters/abel-delreoux/paw.svg"
  63344. }
  63345. },
  63346. },
  63347. [
  63348. {
  63349. name: "Normal",
  63350. height: math.unit(5 + 8/12, "feet"),
  63351. default: true
  63352. },
  63353. ]
  63354. ))
  63355. characterMakers.push(() => makeCharacter(
  63356. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63357. {
  63358. front: {
  63359. height: math.unit(6, "feet"),
  63360. weight: math.unit(159, "lb"),
  63361. name: "Front",
  63362. image: {
  63363. source: "./media/characters/meus/front.svg",
  63364. extra: 938/843,
  63365. bottom: 37/975
  63366. }
  63367. },
  63368. back: {
  63369. height: math.unit(6, "feet"),
  63370. weight: math.unit(159, "lb"),
  63371. name: "Back",
  63372. image: {
  63373. source: "./media/characters/meus/back.svg",
  63374. extra: 967/873,
  63375. bottom: 12/979
  63376. }
  63377. },
  63378. },
  63379. [
  63380. {
  63381. name: "Micro",
  63382. height: math.unit(2, "inches")
  63383. },
  63384. {
  63385. name: "Mini",
  63386. height: math.unit(6, "inches")
  63387. },
  63388. {
  63389. name: "Normal",
  63390. height: math.unit(6, "feet"),
  63391. default: true
  63392. },
  63393. {
  63394. name: "Macro",
  63395. height: math.unit(84, "feet")
  63396. },
  63397. ]
  63398. ))
  63399. characterMakers.push(() => makeCharacter(
  63400. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63401. {
  63402. front: {
  63403. height: math.unit(60, "cm"),
  63404. weight: math.unit(18, "kg"),
  63405. name: "Front",
  63406. image: {
  63407. source: "./media/characters/yamato/front.svg",
  63408. extra: 733/688,
  63409. bottom: 29/762
  63410. }
  63411. },
  63412. },
  63413. [
  63414. {
  63415. name: "Micro",
  63416. height: math.unit(6, "cm")
  63417. },
  63418. {
  63419. name: "Normal",
  63420. height: math.unit(60, "cm"),
  63421. default: true
  63422. },
  63423. ]
  63424. ))
  63425. characterMakers.push(() => makeCharacter(
  63426. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63427. {
  63428. front: {
  63429. height: math.unit(9, "feet"),
  63430. weight: math.unit(518, "lb"),
  63431. name: "Front",
  63432. image: {
  63433. source: "./media/characters/barus/front.svg",
  63434. extra: 1877/1795,
  63435. bottom: 55/1932
  63436. }
  63437. },
  63438. },
  63439. [
  63440. {
  63441. name: "Base Height",
  63442. height: math.unit(9, "feet"),
  63443. default: true
  63444. },
  63445. {
  63446. name: "Large",
  63447. height: math.unit(18, "feet")
  63448. },
  63449. {
  63450. name: "Giant",
  63451. height: math.unit(100, "feet")
  63452. },
  63453. {
  63454. name: "Huge",
  63455. height: math.unit(500, "feet")
  63456. },
  63457. {
  63458. name: "Enormous",
  63459. height: math.unit(300, "meters")
  63460. },
  63461. {
  63462. name: "Deity Among Man",
  63463. height: math.unit(3000, "meters")
  63464. },
  63465. ]
  63466. ))
  63467. characterMakers.push(() => makeCharacter(
  63468. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63469. {
  63470. front: {
  63471. height: math.unit(1.7, "meters"),
  63472. name: "Front",
  63473. image: {
  63474. source: "./media/characters/yari/front.svg",
  63475. extra: 1210/1125,
  63476. bottom: 283/1493
  63477. }
  63478. },
  63479. back: {
  63480. height: math.unit(1.7, "meters"),
  63481. name: "Back",
  63482. image: {
  63483. source: "./media/characters/yari/back.svg",
  63484. extra: 1240/1195,
  63485. bottom: 180/1420
  63486. }
  63487. },
  63488. head: {
  63489. height: math.unit(1.26, "feet"),
  63490. name: "Head",
  63491. image: {
  63492. source: "./media/characters/yari/head.svg"
  63493. }
  63494. },
  63495. },
  63496. [
  63497. {
  63498. name: "Nano",
  63499. height: math.unit(0.5, "mm")
  63500. },
  63501. {
  63502. name: "Micro",
  63503. height: math.unit(3, "inches")
  63504. },
  63505. {
  63506. name: "Short",
  63507. height: math.unit(1.5, "meters")
  63508. },
  63509. {
  63510. name: "Norm",
  63511. height: math.unit(1.7, "meters"),
  63512. default: true
  63513. },
  63514. ]
  63515. ))
  63516. characterMakers.push(() => makeCharacter(
  63517. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63518. {
  63519. front: {
  63520. height: math.unit(5 + 2/12, "feet"),
  63521. weight: math.unit(110, "lb"),
  63522. name: "Front",
  63523. image: {
  63524. source: "./media/characters/salem/front.svg",
  63525. extra: 1895/1800,
  63526. bottom: 23/1918
  63527. }
  63528. },
  63529. back: {
  63530. height: math.unit(5 + 2/12, "feet"),
  63531. weight: math.unit(110, "lb"),
  63532. name: "Back",
  63533. image: {
  63534. source: "./media/characters/salem/back.svg",
  63535. extra: 1875/1802,
  63536. bottom: 20/1895
  63537. }
  63538. },
  63539. head: {
  63540. height: math.unit(1, "feet"),
  63541. name: "Head",
  63542. image: {
  63543. source: "./media/characters/salem/head.svg"
  63544. }
  63545. },
  63546. paw: {
  63547. height: math.unit(0.59, "feet"),
  63548. name: "Paw",
  63549. image: {
  63550. source: "./media/characters/salem/paw.svg"
  63551. }
  63552. },
  63553. beans: {
  63554. height: math.unit(0.66, "feet"),
  63555. name: "Beans",
  63556. image: {
  63557. source: "./media/characters/salem/beans.svg"
  63558. }
  63559. },
  63560. eye: {
  63561. height: math.unit(0.224, "feet"),
  63562. name: "Eye",
  63563. image: {
  63564. source: "./media/characters/salem/eye.svg"
  63565. }
  63566. },
  63567. semiferal: {
  63568. height: math.unit(2.3, "feet"),
  63569. name: "Semiferal",
  63570. image: {
  63571. source: "./media/characters/salem/semiferal.svg",
  63572. extra: 914/839,
  63573. bottom: 32/946
  63574. }
  63575. },
  63576. },
  63577. [
  63578. {
  63579. name: "Micro",
  63580. height: math.unit(4, "inches")
  63581. },
  63582. {
  63583. name: "Normal",
  63584. height: math.unit(5 + 2/12, "feet"),
  63585. default: true
  63586. },
  63587. {
  63588. name: "Macro",
  63589. height: math.unit(108, "feet")
  63590. },
  63591. {
  63592. name: "Macro+",
  63593. height: math.unit(1500, "feet")
  63594. },
  63595. ]
  63596. ))
  63597. characterMakers.push(() => makeCharacter(
  63598. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63599. {
  63600. front: {
  63601. height: math.unit(7 + 6/12, "feet"),
  63602. weight: math.unit(600, "kg"),
  63603. preyCapacity: math.unit(10, "people"),
  63604. name: "Front",
  63605. image: {
  63606. source: "./media/characters/kii/front.svg",
  63607. extra: 3296/3087,
  63608. bottom: 130/3426
  63609. }
  63610. },
  63611. },
  63612. [
  63613. {
  63614. name: "Normal",
  63615. height: math.unit(7 + 6/12, "feet"),
  63616. default: true
  63617. },
  63618. ]
  63619. ))
  63620. characterMakers.push(() => makeCharacter(
  63621. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63622. {
  63623. front: {
  63624. height: math.unit(2, "meters"),
  63625. weight: math.unit(200, "lb"),
  63626. name: "Front",
  63627. image: {
  63628. source: "./media/characters/taffy/front.svg",
  63629. extra: 1666/1618,
  63630. bottom: 157/1823
  63631. }
  63632. },
  63633. back: {
  63634. height: math.unit(2, "meters"),
  63635. weight: math.unit(200, "lb"),
  63636. name: "Back",
  63637. image: {
  63638. source: "./media/characters/taffy/back.svg",
  63639. extra: 1635/1583,
  63640. bottom: 153/1788
  63641. }
  63642. },
  63643. },
  63644. [
  63645. {
  63646. name: "Normal",
  63647. height: math.unit(2, "meters"),
  63648. default: true
  63649. },
  63650. ]
  63651. ))
  63652. characterMakers.push(() => makeCharacter(
  63653. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63654. {
  63655. front: {
  63656. height: math.unit(1.55, "meters"),
  63657. weight: math.unit(60, "kg"),
  63658. name: "Front",
  63659. image: {
  63660. source: "./media/characters/barley/front.svg",
  63661. extra: 1520/1340,
  63662. bottom: 47/1567
  63663. }
  63664. },
  63665. back: {
  63666. height: math.unit(1.55, "meters"),
  63667. weight: math.unit(60, "kg"),
  63668. name: "Back",
  63669. image: {
  63670. source: "./media/characters/barley/back.svg",
  63671. extra: 1543/1341,
  63672. bottom: 12/1555
  63673. }
  63674. },
  63675. feet: {
  63676. height: math.unit(2.18, "feet"),
  63677. name: "Feet",
  63678. image: {
  63679. source: "./media/characters/barley/feet.svg"
  63680. }
  63681. },
  63682. },
  63683. [
  63684. {
  63685. name: "Normal",
  63686. height: math.unit(1.55, "meters"),
  63687. default: true
  63688. },
  63689. ]
  63690. ))
  63691. characterMakers.push(() => makeCharacter(
  63692. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63693. {
  63694. dressed: {
  63695. height: math.unit(6, "feet"),
  63696. name: "Dressed",
  63697. image: {
  63698. source: "./media/characters/lydia-lopez/dressed.svg",
  63699. extra: 1319/1277,
  63700. bottom: 90/1409
  63701. }
  63702. },
  63703. nude: {
  63704. height: math.unit(6, "feet"),
  63705. name: "Nude",
  63706. image: {
  63707. source: "./media/characters/lydia-lopez/nude.svg",
  63708. extra: 1319/1277,
  63709. bottom: 90/1409
  63710. }
  63711. },
  63712. },
  63713. [
  63714. {
  63715. name: "Normal",
  63716. height: math.unit(6, "feet"),
  63717. default: true
  63718. },
  63719. {
  63720. name: "Maximum",
  63721. height: math.unit(2101, "feet")
  63722. },
  63723. ]
  63724. ))
  63725. characterMakers.push(() => makeCharacter(
  63726. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63727. {
  63728. front: {
  63729. height: math.unit(5 + 4/12, "feet"),
  63730. weight: math.unit(250, "lb"),
  63731. volume: math.unit(20, "gallons"),
  63732. name: "Front",
  63733. image: {
  63734. source: "./media/characters/kira-slime/front.svg",
  63735. extra: 442/403,
  63736. bottom: 18/460
  63737. }
  63738. },
  63739. frontNsfw: {
  63740. height: math.unit(5 + 4/12, "feet"),
  63741. weight: math.unit(250, "lb"),
  63742. volume: math.unit(20, "gallons"),
  63743. name: "Front (NSFW)",
  63744. image: {
  63745. source: "./media/characters/kira-slime/front-nsfw.svg",
  63746. extra: 442/403,
  63747. bottom: 18/460
  63748. }
  63749. },
  63750. },
  63751. [
  63752. {
  63753. name: "Droplet",
  63754. height: math.unit(0.0464452, "feet")
  63755. },
  63756. {
  63757. name: "Pint",
  63758. height: math.unit(0.9824, "feet")
  63759. },
  63760. {
  63761. name: "Bucket",
  63762. height: math.unit(2.83, "feet")
  63763. },
  63764. {
  63765. name: "Normal",
  63766. height: math.unit(5 + 4/12, "feet"),
  63767. default: true
  63768. },
  63769. {
  63770. name: "Tub",
  63771. height: math.unit(8.46614, "feet")
  63772. },
  63773. {
  63774. name: "Pool",
  63775. height: math.unit(31.1895, "feet")
  63776. },
  63777. {
  63778. name: "Pond",
  63779. height: math.unit(170.349, "feet")
  63780. },
  63781. {
  63782. name: "Lake",
  63783. height: math.unit(289334, "feet")
  63784. },
  63785. {
  63786. name: "Ocean",
  63787. height: math.unit(1.11940e+7, "feet")
  63788. },
  63789. ]
  63790. ))
  63791. characterMakers.push(() => makeCharacter(
  63792. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63793. {
  63794. front: {
  63795. height: math.unit(5 + 6/12, "feet"),
  63796. weight: math.unit(120, "lb"),
  63797. name: "Front",
  63798. image: {
  63799. source: "./media/characters/holiday/front.svg",
  63800. extra: 456/403,
  63801. bottom: 4/460
  63802. }
  63803. },
  63804. back: {
  63805. height: math.unit(5 + 6/12, "feet"),
  63806. weight: math.unit(120, "lb"),
  63807. name: "Back",
  63808. image: {
  63809. source: "./media/characters/holiday/back.svg",
  63810. extra: 450/404,
  63811. bottom: 12/462
  63812. }
  63813. },
  63814. head: {
  63815. height: math.unit(2.3, "feet"),
  63816. name: "Head",
  63817. image: {
  63818. source: "./media/characters/holiday/head.svg"
  63819. }
  63820. },
  63821. },
  63822. [
  63823. {
  63824. name: "Normal",
  63825. height: math.unit(5 + 6/12, "feet"),
  63826. default: true
  63827. },
  63828. {
  63829. name: "Macro",
  63830. height: math.unit(6574.25, "feet")
  63831. },
  63832. ]
  63833. ))
  63834. characterMakers.push(() => makeCharacter(
  63835. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  63836. {
  63837. front: {
  63838. height: math.unit(6 + 2/12, "feet"),
  63839. weight: math.unit(200, "lb"),
  63840. name: "Front",
  63841. image: {
  63842. source: "./media/characters/camina/front.svg",
  63843. extra: 1048/985,
  63844. bottom: 30/1078
  63845. }
  63846. },
  63847. },
  63848. [
  63849. {
  63850. name: "Normal",
  63851. height: math.unit(6 + 2/12, "feet"),
  63852. default: true
  63853. },
  63854. ]
  63855. ))
  63856. characterMakers.push(() => makeCharacter(
  63857. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  63858. {
  63859. front: {
  63860. height: math.unit(30, "cm"),
  63861. weight: math.unit(420, "grams"),
  63862. name: "Front",
  63863. image: {
  63864. source: "./media/characters/smuck/front.svg",
  63865. extra: 379/345,
  63866. bottom: 36/415
  63867. }
  63868. },
  63869. },
  63870. [
  63871. {
  63872. name: "Smuck-Sized",
  63873. height: math.unit(30, "cm"),
  63874. default: true
  63875. },
  63876. ]
  63877. ))
  63878. characterMakers.push(() => makeCharacter(
  63879. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  63880. {
  63881. frontSfw: {
  63882. height: math.unit(10, "feet"),
  63883. weight: math.unit(1000, "kg"),
  63884. preyCapacity: math.unit(2, "people"),
  63885. name: "Front (SFW)",
  63886. image: {
  63887. source: "./media/characters/bylur/front-sfw.svg",
  63888. extra: 419/343,
  63889. bottom: 3/422
  63890. },
  63891. default: true
  63892. },
  63893. frontSheath: {
  63894. height: math.unit(10, "feet"),
  63895. weight: math.unit(1000, "kg"),
  63896. preyCapacity: math.unit(2, "people"),
  63897. name: "Front (Sheath)",
  63898. image: {
  63899. source: "./media/characters/bylur/front-sheath.svg",
  63900. extra: 419/343,
  63901. bottom: 3/422
  63902. }
  63903. },
  63904. frontErect: {
  63905. height: math.unit(10, "feet"),
  63906. weight: math.unit(1000, "kg"),
  63907. preyCapacity: math.unit(2, "people"),
  63908. name: "Front (Erect)",
  63909. image: {
  63910. source: "./media/characters/bylur/front-erect.svg",
  63911. extra: 419/343,
  63912. bottom: 3/422
  63913. }
  63914. },
  63915. back: {
  63916. height: math.unit(10, "feet"),
  63917. weight: math.unit(1000, "kg"),
  63918. preyCapacity: math.unit(2, "people"),
  63919. name: "Back",
  63920. image: {
  63921. source: "./media/characters/bylur/back.svg",
  63922. extra: 392/315,
  63923. bottom: 3/395
  63924. }
  63925. },
  63926. maw: {
  63927. height: math.unit(3.65, "feet"),
  63928. name: "Maw",
  63929. image: {
  63930. source: "./media/characters/bylur/maw.svg"
  63931. }
  63932. },
  63933. },
  63934. [
  63935. {
  63936. name: "Slightly Human Sized",
  63937. height: math.unit(10, "feet")
  63938. },
  63939. {
  63940. name: "Normal",
  63941. height: math.unit(35, "feet"),
  63942. default: true
  63943. },
  63944. {
  63945. name: "Macro",
  63946. height: math.unit(130, "feet")
  63947. },
  63948. ]
  63949. ))
  63950. characterMakers.push(() => makeCharacter(
  63951. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  63952. {
  63953. frontNsfw: {
  63954. height: math.unit(6, "feet"),
  63955. weight: math.unit(250, "lb"),
  63956. preyCapacity: math.unit(0.05, "people"),
  63957. name: "Front (NSFW)",
  63958. image: {
  63959. source: "./media/characters/oarven/front-nsfw.svg",
  63960. extra: 1795/1783,
  63961. bottom: 142/1937
  63962. }
  63963. },
  63964. frontSfw: {
  63965. height: math.unit(6, "feet"),
  63966. weight: math.unit(250, "lb"),
  63967. preyCapacity: math.unit(0.05, "people"),
  63968. name: "Front (SFW)",
  63969. image: {
  63970. source: "./media/characters/oarven/front-sfw.svg",
  63971. extra: 1795/1783,
  63972. bottom: 142/1937
  63973. }
  63974. },
  63975. },
  63976. [
  63977. {
  63978. name: "Megamacro",
  63979. height: math.unit(5, "miles"),
  63980. default: true
  63981. },
  63982. {
  63983. name: "Maximum Height",
  63984. height: math.unit(5, "AUs")
  63985. },
  63986. ]
  63987. ))
  63988. characterMakers.push(() => makeCharacter(
  63989. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  63990. {
  63991. side: {
  63992. height: math.unit(1065, "meters"),
  63993. weight: math.unit(1e12, "kg"),
  63994. volume: math.unit(3265000000, "m^3"),
  63995. name: "Side",
  63996. image: {
  63997. source: "./media/characters/solidarity/side.svg"
  63998. }
  63999. },
  64000. front: {
  64001. height: math.unit(1065, "meters"),
  64002. weight: math.unit(3265000000000, "kg"),
  64003. volume: math.unit(3265000000, "m^3"),
  64004. name: "Front",
  64005. image: {
  64006. source: "./media/characters/solidarity/front.svg"
  64007. }
  64008. },
  64009. top: {
  64010. height: math.unit(5823, "meters"),
  64011. weight: math.unit(3265000000000, "kg"),
  64012. volume: math.unit(3265000000, "m^3"),
  64013. name: "Top",
  64014. image: {
  64015. source: "./media/characters/solidarity/top.svg"
  64016. }
  64017. },
  64018. },
  64019. [
  64020. {
  64021. name: "Normal",
  64022. height: math.unit(1065, "meters"),
  64023. default: true
  64024. },
  64025. ]
  64026. ))
  64027. characterMakers.push(() => makeCharacter(
  64028. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64029. {
  64030. side: {
  64031. height: math.unit(18 + 4/12, "feet"),
  64032. weight: math.unit(13000, "kg"),
  64033. name: "Side",
  64034. image: {
  64035. source: "./media/characters/ani'szi/side.svg",
  64036. extra: 468/459,
  64037. bottom: 60/528
  64038. }
  64039. },
  64040. head: {
  64041. height: math.unit(4.8, "feet"),
  64042. name: "Head",
  64043. image: {
  64044. source: "./media/characters/ani'szi/head.svg"
  64045. }
  64046. },
  64047. jaws: {
  64048. height: math.unit(2.25, "feet"),
  64049. name: "Jaws",
  64050. image: {
  64051. source: "./media/characters/ani'szi/jaws.svg"
  64052. }
  64053. },
  64054. bust: {
  64055. height: math.unit(8.9, "feet"),
  64056. name: "Bust",
  64057. image: {
  64058. source: "./media/characters/ani'szi/bust.svg"
  64059. }
  64060. },
  64061. back: {
  64062. height: math.unit(13.53, "feet"),
  64063. name: "Back",
  64064. image: {
  64065. source: "./media/characters/ani'szi/back.svg"
  64066. }
  64067. },
  64068. eye: {
  64069. height: math.unit(0.44, "feet"),
  64070. name: "Eye",
  64071. image: {
  64072. source: "./media/characters/ani'szi/eye.svg"
  64073. }
  64074. },
  64075. },
  64076. [
  64077. {
  64078. name: "Normal",
  64079. height: math.unit(18 + 4/12, "feet"),
  64080. default: true
  64081. },
  64082. ]
  64083. ))
  64084. characterMakers.push(() => makeCharacter(
  64085. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64086. {
  64087. front: {
  64088. height: math.unit(7 + 6/12, "feet"),
  64089. weight: math.unit(300, "lb"),
  64090. name: "Front",
  64091. image: {
  64092. source: "./media/characters/rain/front.svg",
  64093. extra: 2955/2698,
  64094. bottom: 235/3190
  64095. }
  64096. },
  64097. dressed: {
  64098. height: math.unit(7 + 6/12, "feet"),
  64099. weight: math.unit(300, "lb"),
  64100. name: "Dressed",
  64101. image: {
  64102. source: "./media/characters/rain/dressed.svg",
  64103. extra: 2783/2572,
  64104. bottom: 430/3213
  64105. }
  64106. },
  64107. },
  64108. [
  64109. {
  64110. name: "Normal",
  64111. height: math.unit(7 + 6/12, "feet"),
  64112. default: true
  64113. },
  64114. {
  64115. name: "Macro",
  64116. height: math.unit(200, "feet")
  64117. },
  64118. {
  64119. name: "Macro+",
  64120. height: math.unit(500, "feet")
  64121. },
  64122. {
  64123. name: "Megamacro",
  64124. height: math.unit(5, "miles")
  64125. },
  64126. ]
  64127. ))
  64128. characterMakers.push(() => makeCharacter(
  64129. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64130. {
  64131. taur_side: {
  64132. height: math.unit(3, "meters"),
  64133. name: "Side",
  64134. image: {
  64135. source: "./media/characters/anise/taur-side.svg",
  64136. extra: 1833/926,
  64137. bottom: 134/1967
  64138. },
  64139. form: "taur",
  64140. default: true
  64141. },
  64142. feral_side: {
  64143. height: math.unit(3, "meters"),
  64144. name: "Side",
  64145. image: {
  64146. source: "./media/characters/anise/feral-side.svg",
  64147. extra: 681/349,
  64148. bottom: 26/707
  64149. },
  64150. form: "feral"
  64151. },
  64152. },
  64153. [
  64154. {
  64155. name: "Normal",
  64156. height: math.unit(3, "meters"),
  64157. default: true,
  64158. allForms: true
  64159. },
  64160. ],
  64161. {
  64162. "taur": {
  64163. name: "Taur",
  64164. default: true
  64165. },
  64166. "feral": {
  64167. name: "Feral",
  64168. },
  64169. }
  64170. ))
  64171. characterMakers.push(() => makeCharacter(
  64172. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64173. {
  64174. front: {
  64175. height: math.unit(1.9, "meters"),
  64176. weight: math.unit(75, "kg"),
  64177. name: "Front",
  64178. image: {
  64179. source: "./media/characters/sarina/front.svg",
  64180. extra: 1275/1200,
  64181. bottom: 49/1324
  64182. }
  64183. },
  64184. back: {
  64185. height: math.unit(1.9, "meters"),
  64186. weight: math.unit(75, "kg"),
  64187. name: "Back",
  64188. image: {
  64189. source: "./media/characters/sarina/back.svg",
  64190. extra: 1279/1209,
  64191. bottom: 14/1293
  64192. }
  64193. },
  64194. dressed: {
  64195. height: math.unit(1.9, "meters"),
  64196. weight: math.unit(75, "kg"),
  64197. name: "Dressed",
  64198. image: {
  64199. source: "./media/characters/sarina/dressed.svg",
  64200. extra: 1256/1187,
  64201. bottom: 56/1312
  64202. }
  64203. },
  64204. paw: {
  64205. height: math.unit(0.57, "feet"),
  64206. name: "Paw",
  64207. image: {
  64208. source: "./media/characters/sarina/paw.svg"
  64209. }
  64210. },
  64211. toering: {
  64212. height: math.unit(0.27, "feet"),
  64213. name: "Toering",
  64214. image: {
  64215. source: "./media/characters/sarina/toering.svg"
  64216. }
  64217. },
  64218. },
  64219. [
  64220. {
  64221. name: "Incognito",
  64222. height: math.unit(1.9, "meters")
  64223. },
  64224. {
  64225. name: "Home Size",
  64226. height: math.unit(160, "meters"),
  64227. default: true
  64228. },
  64229. {
  64230. name: "Mega",
  64231. height: math.unit(50, "km")
  64232. },
  64233. {
  64234. name: "Small Giga",
  64235. height: math.unit(250, "km")
  64236. },
  64237. {
  64238. name: "Giga (Preferred Size)",
  64239. height: math.unit(3000, "km")
  64240. },
  64241. {
  64242. name: "Terra",
  64243. height: math.unit(40000, "km")
  64244. },
  64245. {
  64246. name: "Terra+",
  64247. height: math.unit(400000, "km")
  64248. },
  64249. {
  64250. name: "Solar",
  64251. height: math.unit(35e6, "km")
  64252. },
  64253. {
  64254. name: "Galactic",
  64255. height: math.unit(648106, "parsecs")
  64256. },
  64257. {
  64258. name: "Universal",
  64259. height: math.unit(7, "universes")
  64260. },
  64261. {
  64262. name: "Universal+",
  64263. height: math.unit(30, "universes")
  64264. },
  64265. ]
  64266. ))
  64267. characterMakers.push(() => makeCharacter(
  64268. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64269. {
  64270. front: {
  64271. height: math.unit(5 + 6/12, "feet"),
  64272. name: "Front",
  64273. image: {
  64274. source: "./media/characters/sifray/front.svg",
  64275. extra: 722/691,
  64276. bottom: 64/786
  64277. }
  64278. },
  64279. },
  64280. [
  64281. {
  64282. name: "Normal",
  64283. height: math.unit(5 + 6/12, "feet"),
  64284. default: true
  64285. },
  64286. ]
  64287. ))
  64288. characterMakers.push(() => makeCharacter(
  64289. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64290. {
  64291. side: {
  64292. height: math.unit(2.64, "feet"),
  64293. weight: math.unit(100, "lb"),
  64294. preyCapacity: math.unit(3, "people"),
  64295. name: "Side",
  64296. image: {
  64297. source: "./media/characters/spots/side.svg",
  64298. extra: 1859/977,
  64299. bottom: 19/1878
  64300. },
  64301. extraAttributes: {
  64302. "preyPerMinute": {
  64303. name: "Prey Per Minute",
  64304. power: 3,
  64305. type: "volume",
  64306. base: math.unit(6, "people"),
  64307. defaultUnit: "people"
  64308. },
  64309. "preyPerDay": {
  64310. name: "Prey Per Day",
  64311. power: 3,
  64312. type: "volume",
  64313. base: math.unit(6 * 60 * 24, "people"),
  64314. defaultUnit: "people"
  64315. },
  64316. }
  64317. },
  64318. },
  64319. [
  64320. {
  64321. name: "Normal",
  64322. height: math.unit(2.64, "feet"),
  64323. default: true
  64324. },
  64325. ]
  64326. ))
  64327. //characters
  64328. function makeCharacters() {
  64329. const results = [];
  64330. characterMakers.forEach(character => {
  64331. results.push(character());
  64332. });
  64333. return results;
  64334. }