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.
 
 
 

68855 lines
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. "dragoyle": {
  2459. name: "Dragoyle",
  2460. parents: ["dragon", "gargoyle"]
  2461. },
  2462. "gargoyle": {
  2463. name: "Gargoyle",
  2464. parents: ["construct", "monster"]
  2465. },
  2466. "sea-serpent": {
  2467. name: "Sea Serpent",
  2468. parents: ["aquatic", "monster"]
  2469. },
  2470. "dutch-angel-dragon": {
  2471. name: "Dutch Angel Dragon",
  2472. parents: ["dragon", "avian"]
  2473. },
  2474. }
  2475. //species
  2476. function getSpeciesInfo(speciesList) {
  2477. let result = new Set();
  2478. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2479. result.add(entry)
  2480. });
  2481. return Array.from(result);
  2482. };
  2483. function getSpeciesInfoHelper(species) {
  2484. if (!speciesData[species]) {
  2485. console.warn(species + " doesn't exist");
  2486. return [];
  2487. }
  2488. if (speciesData[species].parents) {
  2489. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2490. } else {
  2491. return [species];
  2492. }
  2493. }
  2494. characterMakers.push(() => makeCharacter(
  2495. {
  2496. name: "Fen",
  2497. species: ["crux"],
  2498. description: {
  2499. title: "Bio",
  2500. text: "Very furry. Sheds on everything."
  2501. },
  2502. tags: [
  2503. "anthro",
  2504. "goo"
  2505. ]
  2506. },
  2507. {
  2508. front: {
  2509. height: math.unit(12, "feet"),
  2510. weight: math.unit(2400, "lb"),
  2511. preyCapacity: math.unit(1, "people"),
  2512. name: "Front",
  2513. image: {
  2514. source: "./media/characters/fen/front.svg",
  2515. extra: 1804/1562,
  2516. bottom: 205/2009
  2517. },
  2518. extraAttributes: {
  2519. pawSize: {
  2520. name: "Paw Size",
  2521. power: 2,
  2522. type: "area",
  2523. base: math.unit(0.35, "m^2")
  2524. }
  2525. }
  2526. },
  2527. diving: {
  2528. height: math.unit(4.9, "meters"),
  2529. weight: math.unit(2400, "lb"),
  2530. name: "Diving",
  2531. image: {
  2532. source: "./media/characters/fen/diving.svg"
  2533. }
  2534. },
  2535. sleeby: {
  2536. height: math.unit(3.45, "meters"),
  2537. weight: math.unit(2400, "lb"),
  2538. name: "Sleeby",
  2539. image: {
  2540. source: "./media/characters/fen/sleeby.svg"
  2541. }
  2542. },
  2543. goo: {
  2544. height: math.unit(12, "feet"),
  2545. weight: math.unit(3600, "lb"),
  2546. volume: math.unit(1000, "liters"),
  2547. preyCapacity: math.unit(6, "people"),
  2548. name: "Goo",
  2549. image: {
  2550. source: "./media/characters/fen/goo.svg",
  2551. extra: 1307/1071,
  2552. bottom: 134/1441
  2553. }
  2554. },
  2555. horror: {
  2556. height: math.unit(13.6, "feet"),
  2557. weight: math.unit(2400, "lb"),
  2558. preyCapacity: math.unit(1, "people"),
  2559. name: "Horror",
  2560. image: {
  2561. source: "./media/characters/fen/horror.svg",
  2562. extra: 893/797,
  2563. bottom: 0/893
  2564. }
  2565. },
  2566. gooNsfw: {
  2567. height: math.unit(12, "feet"),
  2568. weight: math.unit(3750, "lb"),
  2569. volume: math.unit(1000, "liters"),
  2570. preyCapacity: math.unit(6, "people"),
  2571. name: "Goo (NSFW)",
  2572. image: {
  2573. source: "./media/characters/fen/goo-nsfw.svg",
  2574. extra: 1875/1734,
  2575. bottom: 122/1997
  2576. }
  2577. },
  2578. maw: {
  2579. height: math.unit(5.03, "feet"),
  2580. name: "Maw",
  2581. image: {
  2582. source: "./media/characters/fen/maw.svg"
  2583. }
  2584. },
  2585. gooCeiling: {
  2586. height: math.unit(6.6, "feet"),
  2587. weight: math.unit(3000, "lb"),
  2588. volume: math.unit(1000, "liters"),
  2589. preyCapacity: math.unit(6, "people"),
  2590. name: "Maw (Goo)",
  2591. image: {
  2592. source: "./media/characters/fen/goo-maw.svg"
  2593. }
  2594. },
  2595. paw: {
  2596. height: math.unit(3.77, "feet"),
  2597. name: "Paw",
  2598. image: {
  2599. source: "./media/characters/fen/paw.svg"
  2600. },
  2601. extraAttributes: {
  2602. "toeSize": {
  2603. name: "Toe Size",
  2604. power: 2,
  2605. type: "area",
  2606. base: math.unit(0.02875, "m^2")
  2607. },
  2608. "pawSize": {
  2609. name: "Paw Size",
  2610. power: 2,
  2611. type: "area",
  2612. base: math.unit(0.378, "m^2")
  2613. },
  2614. }
  2615. },
  2616. tail: {
  2617. height: math.unit(12.1, "feet"),
  2618. name: "Tail",
  2619. image: {
  2620. source: "./media/characters/fen/tail.svg"
  2621. }
  2622. },
  2623. tailFull: {
  2624. height: math.unit(12.1, "feet"),
  2625. name: "Full Tail",
  2626. image: {
  2627. source: "./media/characters/fen/tail-full.svg"
  2628. }
  2629. },
  2630. back: {
  2631. height: math.unit(12, "feet"),
  2632. weight: math.unit(2400, "lb"),
  2633. name: "Back",
  2634. image: {
  2635. source: "./media/characters/fen/back.svg",
  2636. },
  2637. info: {
  2638. description: {
  2639. mode: "append",
  2640. text: "\n\nHe is not currently looking at you."
  2641. }
  2642. }
  2643. },
  2644. full: {
  2645. height: math.unit(1.85, "meter"),
  2646. weight: math.unit(3200, "lb"),
  2647. preyCapacity: math.unit(3, "people"),
  2648. name: "Full",
  2649. image: {
  2650. source: "./media/characters/fen/full.svg",
  2651. extra: 1133/859,
  2652. bottom: 145/1278
  2653. },
  2654. info: {
  2655. description: {
  2656. mode: "append",
  2657. text: "\n\nMunch."
  2658. }
  2659. }
  2660. },
  2661. gooLounging: {
  2662. height: math.unit(4.53, "feet"),
  2663. weight: math.unit(3000, "lb"),
  2664. preyCapacity: math.unit(6, "people"),
  2665. name: "Goo (Lounging)",
  2666. image: {
  2667. source: "./media/characters/fen/goo-lounging.svg",
  2668. bottom: 116 / 613
  2669. }
  2670. },
  2671. lounging: {
  2672. height: math.unit(10.52, "feet"),
  2673. weight: math.unit(2400, "lb"),
  2674. name: "Lounging",
  2675. image: {
  2676. source: "./media/characters/fen/lounging.svg"
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Small",
  2683. height: math.unit(2.2428, "meter")
  2684. },
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(12, "feet"),
  2688. default: true,
  2689. },
  2690. {
  2691. name: "Big",
  2692. height: math.unit(20, "feet")
  2693. },
  2694. {
  2695. name: "Minimacro",
  2696. height: math.unit(40, "feet"),
  2697. info: {
  2698. description: {
  2699. mode: "append",
  2700. text: "\n\nTOO DAMN BIG"
  2701. }
  2702. }
  2703. },
  2704. {
  2705. name: "Macro",
  2706. height: math.unit(100, "feet"),
  2707. info: {
  2708. description: {
  2709. mode: "append",
  2710. text: "\n\nTOO DAMN BIG"
  2711. }
  2712. }
  2713. },
  2714. {
  2715. name: "Megamacro",
  2716. height: math.unit(2, "miles")
  2717. },
  2718. {
  2719. name: "Gigamacro",
  2720. height: math.unit(10, "earths")
  2721. },
  2722. ]
  2723. ))
  2724. characterMakers.push(() => makeCharacter(
  2725. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2726. {
  2727. front: {
  2728. height: math.unit(183, "cm"),
  2729. weight: math.unit(80, "kg"),
  2730. name: "Front",
  2731. image: {
  2732. source: "./media/characters/sofia-fluttertail/front.svg",
  2733. bottom: 0.01,
  2734. extra: 2154 / 2081
  2735. }
  2736. },
  2737. frontAlt: {
  2738. height: math.unit(183, "cm"),
  2739. weight: math.unit(80, "kg"),
  2740. name: "Front (alt)",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2743. }
  2744. },
  2745. back: {
  2746. height: math.unit(183, "cm"),
  2747. weight: math.unit(80, "kg"),
  2748. name: "Back",
  2749. image: {
  2750. source: "./media/characters/sofia-fluttertail/back.svg"
  2751. }
  2752. },
  2753. kneeling: {
  2754. height: math.unit(125, "cm"),
  2755. weight: math.unit(80, "kg"),
  2756. name: "Kneeling",
  2757. image: {
  2758. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2759. extra: 1033 / 977,
  2760. bottom: 23.7 / 1057
  2761. }
  2762. },
  2763. maw: {
  2764. height: math.unit(183 / 5, "cm"),
  2765. name: "Maw",
  2766. image: {
  2767. source: "./media/characters/sofia-fluttertail/maw.svg"
  2768. }
  2769. },
  2770. mawcloseup: {
  2771. height: math.unit(183 / 5 * 0.41, "cm"),
  2772. name: "Maw (Closeup)",
  2773. image: {
  2774. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2775. }
  2776. },
  2777. paws: {
  2778. height: math.unit(1.17, "feet"),
  2779. name: "Paws",
  2780. image: {
  2781. source: "./media/characters/sofia-fluttertail/paws.svg",
  2782. extra: 851 / 851,
  2783. bottom: 17 / 868
  2784. }
  2785. },
  2786. },
  2787. [
  2788. {
  2789. name: "Normal",
  2790. height: math.unit(1.83, "meter")
  2791. },
  2792. {
  2793. name: "Size Thief",
  2794. height: math.unit(18, "feet")
  2795. },
  2796. {
  2797. name: "50 Foot Collie",
  2798. height: math.unit(50, "feet")
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(96, "feet"),
  2803. default: true
  2804. },
  2805. {
  2806. name: "Megamerger",
  2807. height: math.unit(650, "feet")
  2808. },
  2809. ]
  2810. ))
  2811. characterMakers.push(() => makeCharacter(
  2812. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2813. {
  2814. front: {
  2815. height: math.unit(7, "feet"),
  2816. weight: math.unit(100, "kg"),
  2817. name: "Front",
  2818. image: {
  2819. source: "./media/characters/march/front.svg",
  2820. extra: 1992/1851,
  2821. bottom: 39/2031
  2822. }
  2823. },
  2824. foot: {
  2825. height: math.unit(0.9, "feet"),
  2826. name: "Foot",
  2827. image: {
  2828. source: "./media/characters/march/foot.svg"
  2829. }
  2830. },
  2831. },
  2832. [
  2833. {
  2834. name: "Normal",
  2835. height: math.unit(7.9, "feet")
  2836. },
  2837. {
  2838. name: "Macro",
  2839. height: math.unit(220, "meters")
  2840. },
  2841. {
  2842. name: "Megamacro",
  2843. height: math.unit(2.98, "km"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Gigamacro",
  2848. height: math.unit(15963, "km")
  2849. },
  2850. {
  2851. name: "Teramacro",
  2852. height: math.unit(2980000000, "km")
  2853. },
  2854. {
  2855. name: "Examacro",
  2856. height: math.unit(250, "parsecs")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(6, "feet"),
  2865. weight: math.unit(60, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/noir/front.svg",
  2869. extra: 1793/1668,
  2870. bottom: 74/1867
  2871. }
  2872. },
  2873. },
  2874. [
  2875. {
  2876. name: "Normal",
  2877. height: math.unit(6.6, "feet")
  2878. },
  2879. {
  2880. name: "Macro",
  2881. height: math.unit(500, "feet")
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(2.5, "km"),
  2886. default: true
  2887. },
  2888. {
  2889. name: "Gigamacro",
  2890. height: math.unit(22500, "km")
  2891. },
  2892. {
  2893. name: "Teramacro",
  2894. height: math.unit(2500000000, "km")
  2895. },
  2896. {
  2897. name: "Examacro",
  2898. height: math.unit(200, "parsecs")
  2899. },
  2900. ]
  2901. ))
  2902. characterMakers.push(() => makeCharacter(
  2903. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2904. {
  2905. front: {
  2906. height: math.unit(7, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Front",
  2909. image: {
  2910. source: "./media/characters/okuri/front.svg",
  2911. extra: 596/554,
  2912. bottom: 17/613
  2913. }
  2914. },
  2915. back: {
  2916. height: math.unit(7, "feet"),
  2917. weight: math.unit(100, "kg"),
  2918. name: "Back",
  2919. image: {
  2920. source: "./media/characters/okuri/back.svg",
  2921. extra: 797/717,
  2922. bottom: 16/813
  2923. }
  2924. },
  2925. wings: {
  2926. height: math.unit(7, "feet"),
  2927. weight: math.unit(100, "kg"),
  2928. name: "Wings",
  2929. image: {
  2930. source: "./media/characters/okuri/wings.svg",
  2931. extra: 773/692,
  2932. bottom: 16/789
  2933. }
  2934. },
  2935. head: {
  2936. height: math.unit(2.17, "feet"),
  2937. name: "Head",
  2938. image: {
  2939. source: "./media/characters/okuri/head.svg"
  2940. }
  2941. },
  2942. casual: {
  2943. height: math.unit(7, "feet"),
  2944. weight: math.unit(100, "kg"),
  2945. name: "Casual",
  2946. image: {
  2947. source: "./media/characters/okuri/casual.svg",
  2948. extra: 463/421,
  2949. bottom: 14/477
  2950. }
  2951. },
  2952. deity: {
  2953. height: math.unit(7, "feet"),
  2954. weight: math.unit(100, "kg"),
  2955. name: "Deity",
  2956. image: {
  2957. source: "./media/characters/okuri/deity.svg",
  2958. extra: 463/421,
  2959. bottom: 14/477
  2960. }
  2961. },
  2962. armor: {
  2963. height: math.unit(7, "feet"),
  2964. weight: math.unit(100, "kg"),
  2965. name: "Armor",
  2966. image: {
  2967. source: "./media/characters/okuri/armor.svg",
  2968. extra: 463/421,
  2969. bottom: 14/477
  2970. }
  2971. },
  2972. sciFi: {
  2973. height: math.unit(7, "feet"),
  2974. weight: math.unit(100, "kg"),
  2975. name: "Sci-Fi",
  2976. image: {
  2977. source: "./media/characters/okuri/sci-fi.svg",
  2978. extra: 463/421,
  2979. bottom: 14/477
  2980. }
  2981. },
  2982. },
  2983. [
  2984. {
  2985. name: "Smallest",
  2986. height: math.unit(5 + 2/12, "feet")
  2987. },
  2988. {
  2989. name: "Smaller",
  2990. height: math.unit(300, "feet")
  2991. },
  2992. {
  2993. name: "Small",
  2994. height: math.unit(1000, "feet")
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(1, "mile")
  2999. },
  3000. {
  3001. name: "Mega Macro (Small)",
  3002. height: math.unit(20, "km")
  3003. },
  3004. {
  3005. name: "Mega Macro (Large)",
  3006. height: math.unit(600, "km")
  3007. },
  3008. {
  3009. name: "Giga Macro",
  3010. height: math.unit(10000, "km")
  3011. },
  3012. {
  3013. name: "Normal",
  3014. height: math.unit(577560, "km"),
  3015. default: true
  3016. },
  3017. {
  3018. name: "Large",
  3019. height: math.unit(4, "galaxies")
  3020. },
  3021. {
  3022. name: "Largest",
  3023. height: math.unit(15, "multiverses")
  3024. },
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(7, "feet"),
  3032. weight: math.unit(100, "kg"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/manny/front.svg",
  3036. extra: 1,
  3037. bottom: 0.06
  3038. }
  3039. },
  3040. back: {
  3041. height: math.unit(7, "feet"),
  3042. weight: math.unit(100, "kg"),
  3043. name: "Back",
  3044. image: {
  3045. source: "./media/characters/manny/back.svg",
  3046. extra: 1,
  3047. bottom: 0.014
  3048. }
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Normal",
  3054. height: math.unit(7, "feet"),
  3055. },
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(78, "feet"),
  3059. default: true
  3060. },
  3061. {
  3062. name: "Macro+",
  3063. height: math.unit(300, "meters")
  3064. },
  3065. {
  3066. name: "Macro++",
  3067. height: math.unit(2400, "meters")
  3068. },
  3069. {
  3070. name: "Megamacro",
  3071. height: math.unit(5167, "meters")
  3072. },
  3073. {
  3074. name: "Gigamacro",
  3075. height: math.unit(41769, "miles")
  3076. },
  3077. ]
  3078. ))
  3079. characterMakers.push(() => makeCharacter(
  3080. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3081. {
  3082. front: {
  3083. height: math.unit(7, "feet"),
  3084. weight: math.unit(100, "kg"),
  3085. name: "Front",
  3086. image: {
  3087. source: "./media/characters/adake/front-1.svg"
  3088. }
  3089. },
  3090. frontAlt: {
  3091. height: math.unit(7, "feet"),
  3092. weight: math.unit(100, "kg"),
  3093. name: "Front (Alt)",
  3094. image: {
  3095. source: "./media/characters/adake/front-2.svg",
  3096. extra: 1,
  3097. bottom: 0.01
  3098. }
  3099. },
  3100. back: {
  3101. height: math.unit(7, "feet"),
  3102. weight: math.unit(100, "kg"),
  3103. name: "Back",
  3104. image: {
  3105. source: "./media/characters/adake/back.svg",
  3106. }
  3107. },
  3108. kneel: {
  3109. height: math.unit(5.385, "feet"),
  3110. weight: math.unit(100, "kg"),
  3111. name: "Kneeling",
  3112. image: {
  3113. source: "./media/characters/adake/kneel.svg",
  3114. bottom: 0.052
  3115. }
  3116. },
  3117. },
  3118. [
  3119. {
  3120. name: "Normal",
  3121. height: math.unit(7, "feet"),
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(78, "feet"),
  3126. default: true
  3127. },
  3128. {
  3129. name: "Macro+",
  3130. height: math.unit(300, "meters")
  3131. },
  3132. {
  3133. name: "Macro++",
  3134. height: math.unit(2400, "meters")
  3135. },
  3136. {
  3137. name: "Megamacro",
  3138. height: math.unit(5167, "meters")
  3139. },
  3140. {
  3141. name: "Gigamacro",
  3142. height: math.unit(41769, "miles")
  3143. },
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3148. {
  3149. front: {
  3150. height: math.unit(1.65, "meters"),
  3151. weight: math.unit(50, "kg"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/elijah/front.svg",
  3155. extra: 858 / 830,
  3156. bottom: 95.5 / 953.8559
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(1.65, "meters"),
  3161. weight: math.unit(50, "kg"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/elijah/back.svg",
  3165. extra: 895 / 850,
  3166. bottom: 5.3 / 897.956
  3167. }
  3168. },
  3169. frontNsfw: {
  3170. height: math.unit(1.65, "meters"),
  3171. weight: math.unit(50, "kg"),
  3172. name: "Front (NSFW)",
  3173. image: {
  3174. source: "./media/characters/elijah/front-nsfw.svg",
  3175. extra: 858 / 830,
  3176. bottom: 95.5 / 953.8559
  3177. }
  3178. },
  3179. backNsfw: {
  3180. height: math.unit(1.65, "meters"),
  3181. weight: math.unit(50, "kg"),
  3182. name: "Back (NSFW)",
  3183. image: {
  3184. source: "./media/characters/elijah/back-nsfw.svg",
  3185. extra: 895 / 850,
  3186. bottom: 5.3 / 897.956
  3187. }
  3188. },
  3189. dick: {
  3190. height: math.unit(1, "feet"),
  3191. name: "Dick",
  3192. image: {
  3193. source: "./media/characters/elijah/dick.svg"
  3194. }
  3195. },
  3196. beakOpen: {
  3197. height: math.unit(1.25, "feet"),
  3198. name: "Beak (Open)",
  3199. image: {
  3200. source: "./media/characters/elijah/beak-open.svg"
  3201. }
  3202. },
  3203. beakShut: {
  3204. height: math.unit(1.25, "feet"),
  3205. name: "Beak (Shut)",
  3206. image: {
  3207. source: "./media/characters/elijah/beak-shut.svg"
  3208. }
  3209. },
  3210. footFlexing: {
  3211. height: math.unit(1.61, "feet"),
  3212. name: "Foot (Flexing)",
  3213. image: {
  3214. source: "./media/characters/elijah/foot-flexing.svg"
  3215. }
  3216. },
  3217. footStepping: {
  3218. height: math.unit(1.44, "feet"),
  3219. name: "Foot (Stepping)",
  3220. image: {
  3221. source: "./media/characters/elijah/foot-stepping.svg"
  3222. }
  3223. },
  3224. plantigradeLeg: {
  3225. height: math.unit(2.34, "feet"),
  3226. name: "Plantigrade Leg",
  3227. image: {
  3228. source: "./media/characters/elijah/plantigrade-leg.svg"
  3229. }
  3230. },
  3231. plantigradeFootLeft: {
  3232. height: math.unit(0.9, "feet"),
  3233. name: "Plantigrade Foot (Left)",
  3234. image: {
  3235. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3236. }
  3237. },
  3238. plantigradeFootRight: {
  3239. height: math.unit(0.9, "feet"),
  3240. name: "Plantigrade Foot (Right)",
  3241. image: {
  3242. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3243. }
  3244. },
  3245. },
  3246. [
  3247. {
  3248. name: "Normal",
  3249. height: math.unit(1.65, "meters")
  3250. },
  3251. {
  3252. name: "Macro",
  3253. height: math.unit(55, "meters"),
  3254. default: true
  3255. },
  3256. {
  3257. name: "Macro+",
  3258. height: math.unit(105, "meters")
  3259. },
  3260. ]
  3261. ))
  3262. characterMakers.push(() => makeCharacter(
  3263. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3264. {
  3265. front: {
  3266. height: math.unit(7 + 2/12, "feet"),
  3267. weight: math.unit(320, "kg"),
  3268. preyCapacity: math.unit(0.276549935, "people"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/rai/front.svg",
  3272. extra: 1802/1696,
  3273. bottom: 68/1870
  3274. },
  3275. form: "anthro",
  3276. default: true
  3277. },
  3278. frontDressed: {
  3279. height: math.unit(7 + 2/12, "feet"),
  3280. weight: math.unit(320, "kg"),
  3281. preyCapacity: math.unit(0.276549935, "people"),
  3282. name: "Front (Dressed)",
  3283. image: {
  3284. source: "./media/characters/rai/front-dressed.svg",
  3285. extra: 1802/1696,
  3286. bottom: 68/1870
  3287. },
  3288. form: "anthro"
  3289. },
  3290. side: {
  3291. height: math.unit(7 + 2/12, "feet"),
  3292. weight: math.unit(320, "kg"),
  3293. preyCapacity: math.unit(0.276549935, "people"),
  3294. name: "Side",
  3295. image: {
  3296. source: "./media/characters/rai/side.svg",
  3297. extra: 1789/1710,
  3298. bottom: 115/1904
  3299. },
  3300. form: "anthro"
  3301. },
  3302. back: {
  3303. height: math.unit(7 + 2/12, "feet"),
  3304. weight: math.unit(320, "kg"),
  3305. preyCapacity: math.unit(0.276549935, "people"),
  3306. name: "Back",
  3307. image: {
  3308. source: "./media/characters/rai/back.svg",
  3309. extra: 1770/1707,
  3310. bottom: 28/1798
  3311. },
  3312. form: "anthro"
  3313. },
  3314. feral: {
  3315. height: math.unit(9.5, "feet"),
  3316. weight: math.unit(640, "kg"),
  3317. preyCapacity: math.unit(4, "people"),
  3318. name: "Feral",
  3319. image: {
  3320. source: "./media/characters/rai/feral.svg",
  3321. extra: 945/553,
  3322. bottom: 176/1121
  3323. },
  3324. form: "feral",
  3325. default: true
  3326. },
  3327. dragon: {
  3328. height: math.unit(23, "feet"),
  3329. weight: math.unit(50000, "lb"),
  3330. name: "Dragon",
  3331. image: {
  3332. source: "./media/characters/rai/dragon.svg",
  3333. extra: 2498 / 2030,
  3334. bottom: 85.2 / 2584
  3335. },
  3336. form: "dragon",
  3337. default: true
  3338. },
  3339. maw: {
  3340. height: math.unit(1.69, "feet"),
  3341. name: "Maw",
  3342. image: {
  3343. source: "./media/characters/rai/maw.svg"
  3344. },
  3345. form: "anthro"
  3346. },
  3347. },
  3348. [
  3349. {
  3350. name: "Normal",
  3351. height: math.unit(7 + 2/12, "feet"),
  3352. form: "anthro"
  3353. },
  3354. {
  3355. name: "Big",
  3356. height: math.unit(11, "feet"),
  3357. form: "anthro"
  3358. },
  3359. {
  3360. name: "Minimacro",
  3361. height: math.unit(77, "feet"),
  3362. form: "anthro"
  3363. },
  3364. {
  3365. name: "Macro",
  3366. height: math.unit(302, "feet"),
  3367. default: true,
  3368. form: "anthro"
  3369. },
  3370. {
  3371. name: "Normal",
  3372. height: math.unit(9.5, "feet"),
  3373. form: "feral",
  3374. default: true
  3375. },
  3376. {
  3377. name: "Normal",
  3378. height: math.unit(23, "feet"),
  3379. form: "dragon",
  3380. default: true
  3381. }
  3382. ],
  3383. {
  3384. "anthro": {
  3385. name: "Anthro",
  3386. default: true
  3387. },
  3388. "feral": {
  3389. name: "Feral",
  3390. },
  3391. "dragon": {
  3392. name: "Dragon",
  3393. },
  3394. }
  3395. ))
  3396. characterMakers.push(() => makeCharacter(
  3397. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3398. {
  3399. frontDressed: {
  3400. height: math.unit(216, "feet"),
  3401. weight: math.unit(7000000, "lb"),
  3402. preyCapacity: math.unit(1321, "people"),
  3403. name: "Front (Dressed)",
  3404. image: {
  3405. source: "./media/characters/jazzy/front-dressed.svg",
  3406. extra: 2738 / 2651,
  3407. bottom: 41.8 / 2786
  3408. }
  3409. },
  3410. backDressed: {
  3411. height: math.unit(216, "feet"),
  3412. weight: math.unit(7000000, "lb"),
  3413. preyCapacity: math.unit(1321, "people"),
  3414. name: "Back (Dressed)",
  3415. image: {
  3416. source: "./media/characters/jazzy/back-dressed.svg",
  3417. extra: 2775 / 2673,
  3418. bottom: 36.8 / 2817
  3419. }
  3420. },
  3421. front: {
  3422. height: math.unit(216, "feet"),
  3423. weight: math.unit(7000000, "lb"),
  3424. preyCapacity: math.unit(1321, "people"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/jazzy/front.svg",
  3428. extra: 2738 / 2651,
  3429. bottom: 41.8 / 2786
  3430. }
  3431. },
  3432. back: {
  3433. height: math.unit(216, "feet"),
  3434. weight: math.unit(7000000, "lb"),
  3435. preyCapacity: math.unit(1321, "people"),
  3436. name: "Back",
  3437. image: {
  3438. source: "./media/characters/jazzy/back.svg",
  3439. extra: 2775 / 2673,
  3440. bottom: 36.8 / 2817
  3441. }
  3442. },
  3443. maw: {
  3444. height: math.unit(20, "feet"),
  3445. name: "Maw",
  3446. image: {
  3447. source: "./media/characters/jazzy/maw.svg"
  3448. }
  3449. },
  3450. paws: {
  3451. height: math.unit(27.5, "feet"),
  3452. name: "Paws",
  3453. image: {
  3454. source: "./media/characters/jazzy/paws.svg"
  3455. }
  3456. },
  3457. eye: {
  3458. height: math.unit(4.4, "feet"),
  3459. name: "Eye",
  3460. image: {
  3461. source: "./media/characters/jazzy/eye.svg"
  3462. }
  3463. },
  3464. droneOffense: {
  3465. height: math.unit(9.5, "inches"),
  3466. name: "Drone (Offense)",
  3467. image: {
  3468. source: "./media/characters/jazzy/drone-offense.svg"
  3469. }
  3470. },
  3471. droneRecon: {
  3472. height: math.unit(9.5, "inches"),
  3473. name: "Drone (Recon)",
  3474. image: {
  3475. source: "./media/characters/jazzy/drone-recon.svg"
  3476. }
  3477. },
  3478. droneDefense: {
  3479. height: math.unit(9.5, "inches"),
  3480. name: "Drone (Defense)",
  3481. image: {
  3482. source: "./media/characters/jazzy/drone-defense.svg"
  3483. }
  3484. },
  3485. },
  3486. [
  3487. {
  3488. name: "Macro",
  3489. height: math.unit(216, "feet"),
  3490. default: true
  3491. },
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3496. {
  3497. front: {
  3498. height: math.unit(9 + 6/12, "feet"),
  3499. weight: math.unit(700, "lb"),
  3500. name: "Front",
  3501. image: {
  3502. source: "./media/characters/flamm/front.svg",
  3503. extra: 1736/1596,
  3504. bottom: 93/1829
  3505. }
  3506. },
  3507. buff: {
  3508. height: math.unit(9 + 6/12, "feet"),
  3509. weight: math.unit(950, "lb"),
  3510. name: "Buff",
  3511. image: {
  3512. source: "./media/characters/flamm/buff.svg",
  3513. extra: 3018/2874,
  3514. bottom: 221/3239
  3515. }
  3516. },
  3517. lyingFront: {
  3518. height: math.unit(9 + 6/12, "feet"),
  3519. weight: math.unit(700, "lb"),
  3520. name: "Lying (Front)",
  3521. image: {
  3522. source: "./media/characters/flamm/lying-front.svg"
  3523. },
  3524. extraAttributes: {
  3525. "ballVolume": {
  3526. name: "Ball Volume",
  3527. power: 3,
  3528. type: "volume",
  3529. base: math.unit(5, "liters")
  3530. },
  3531. }
  3532. },
  3533. lyingBack: {
  3534. height: math.unit(9 + 6/12, "feet"),
  3535. weight: math.unit(700, "lb"),
  3536. name: "Lying (Back)",
  3537. image: {
  3538. source: "./media/characters/flamm/lying-back.svg"
  3539. },
  3540. extraAttributes: {
  3541. "ballVolume": {
  3542. name: "Ball Volume",
  3543. power: 3,
  3544. type: "volume",
  3545. base: math.unit(5, "liters")
  3546. },
  3547. }
  3548. },
  3549. },
  3550. [
  3551. {
  3552. name: "Normal",
  3553. height: math.unit(9.5, "feet")
  3554. },
  3555. {
  3556. name: "Macro",
  3557. height: math.unit(200, "feet"),
  3558. default: true
  3559. },
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(5 + 3/12, "feet"),
  3567. weight: math.unit(60, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/zephiro/front.svg",
  3571. extra: 1873/1761,
  3572. bottom: 147/2020
  3573. }
  3574. },
  3575. side: {
  3576. height: math.unit(5 + 3/12, "feet"),
  3577. weight: math.unit(60, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/zephiro/side.svg",
  3581. extra: 1929/1827,
  3582. bottom: 65/1994
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(5 + 3/12, "feet"),
  3587. weight: math.unit(60, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/zephiro/back.svg",
  3591. extra: 1926/1816,
  3592. bottom: 41/1967
  3593. }
  3594. },
  3595. hand: {
  3596. height: math.unit(0.68, "feet"),
  3597. name: "Hand",
  3598. image: {
  3599. source: "./media/characters/zephiro/hand.svg"
  3600. }
  3601. },
  3602. paw: {
  3603. height: math.unit(1, "feet"),
  3604. name: "Paw",
  3605. image: {
  3606. source: "./media/characters/zephiro/paw.svg"
  3607. }
  3608. },
  3609. beans: {
  3610. height: math.unit(0.93, "feet"),
  3611. name: "Beans",
  3612. image: {
  3613. source: "./media/characters/zephiro/beans.svg"
  3614. }
  3615. },
  3616. },
  3617. [
  3618. {
  3619. name: "Micro",
  3620. height: math.unit(3, "inches")
  3621. },
  3622. {
  3623. name: "Normal",
  3624. height: math.unit(5 + 3 / 12, "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Macro",
  3629. height: math.unit(118, "feet")
  3630. },
  3631. ]
  3632. ))
  3633. characterMakers.push(() => makeCharacter(
  3634. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3635. {
  3636. front: {
  3637. height: math.unit(5, "feet"),
  3638. weight: math.unit(90, "kg"),
  3639. preyCapacity: math.unit(14, "people"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/fory/front.svg",
  3643. extra: 2862 / 2674,
  3644. bottom: 180 / 3043.8
  3645. },
  3646. form: "weaselbun",
  3647. default: true,
  3648. extraAttributes: {
  3649. "pawSize": {
  3650. name: "Paw Size",
  3651. power: 2,
  3652. type: "area",
  3653. base: math.unit(0.1596, "m^2")
  3654. },
  3655. "pawLength": {
  3656. name: "Paw Length",
  3657. power: 1,
  3658. type: "length",
  3659. base: math.unit(0.7, "m")
  3660. }
  3661. }
  3662. },
  3663. back: {
  3664. height: math.unit(5, "feet"),
  3665. weight: math.unit(90, "kg"),
  3666. preyCapacity: math.unit(14, "people"),
  3667. name: "Back",
  3668. image: {
  3669. source: "./media/characters/fory/back.svg",
  3670. extra: 1790/1672,
  3671. bottom: 84/1874
  3672. },
  3673. form: "weaselbun",
  3674. extraAttributes: {
  3675. "pawSize": {
  3676. name: "Paw Size",
  3677. power: 2,
  3678. type: "area",
  3679. base: math.unit(0.1596, "m^2")
  3680. },
  3681. "pawLength": {
  3682. name: "Paw Length",
  3683. power: 1,
  3684. type: "length",
  3685. base: math.unit(0.7, "m")
  3686. }
  3687. }
  3688. },
  3689. paw: {
  3690. height: math.unit(2.14, "feet"),
  3691. name: "Paw",
  3692. image: {
  3693. source: "./media/characters/fory/paw.svg"
  3694. },
  3695. form: "weaselbun",
  3696. extraAttributes: {
  3697. "pawSize": {
  3698. name: "Paw Size",
  3699. power: 2,
  3700. type: "area",
  3701. base: math.unit(0.1596, "m^2")
  3702. },
  3703. "pawLength": {
  3704. name: "Paw Length",
  3705. power: 1,
  3706. type: "length",
  3707. base: math.unit(0.48, "m")
  3708. }
  3709. }
  3710. },
  3711. bunBack: {
  3712. height: math.unit(3, "feet"),
  3713. weight: math.unit(20, "kg"),
  3714. preyCapacity: math.unit(3, "people"),
  3715. name: "Back",
  3716. image: {
  3717. source: "./media/characters/fory/bun-back.svg",
  3718. extra: 1749/1564,
  3719. bottom: 246/1995
  3720. },
  3721. form: "bun",
  3722. default: true,
  3723. extraAttributes: {
  3724. "pawSize": {
  3725. name: "Paw Size",
  3726. power: 2,
  3727. type: "area",
  3728. base: math.unit(0.072, "m^2")
  3729. },
  3730. "pawLength": {
  3731. name: "Paw Length",
  3732. power: 1,
  3733. type: "length",
  3734. base: math.unit(0.45, "m")
  3735. }
  3736. }
  3737. },
  3738. },
  3739. [
  3740. {
  3741. name: "Normal",
  3742. height: math.unit(5, "feet"),
  3743. form: "weaselbun"
  3744. },
  3745. {
  3746. name: "Macro",
  3747. height: math.unit(50, "feet"),
  3748. default: true,
  3749. form: "weaselbun"
  3750. },
  3751. {
  3752. name: "Megamacro",
  3753. height: math.unit(10, "miles"),
  3754. form: "weaselbun"
  3755. },
  3756. {
  3757. name: "Gigamacro",
  3758. height: math.unit(5, "earths"),
  3759. form: "weaselbun"
  3760. },
  3761. {
  3762. name: "Normal",
  3763. height: math.unit(3, "feet"),
  3764. default: true,
  3765. form: "bun"
  3766. },
  3767. {
  3768. name: "Fun-Size",
  3769. height: math.unit(12, "feet"),
  3770. form: "bun"
  3771. },
  3772. {
  3773. name: "Macro",
  3774. height: math.unit(100, "feet"),
  3775. form: "bun"
  3776. },
  3777. {
  3778. name: "Planetary",
  3779. height: math.unit(3, "earths"),
  3780. form: "bun"
  3781. },
  3782. ],
  3783. {
  3784. "weaselbun": {
  3785. name: "Weaselbun",
  3786. default: true
  3787. },
  3788. "bun": {
  3789. name: "Bun",
  3790. },
  3791. }
  3792. ))
  3793. characterMakers.push(() => makeCharacter(
  3794. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3795. {
  3796. front: {
  3797. height: math.unit(7, "feet"),
  3798. weight: math.unit(90, "kg"),
  3799. name: "Front",
  3800. image: {
  3801. source: "./media/characters/kurrikage/front.svg",
  3802. extra: 1845/1733,
  3803. bottom: 119/1964
  3804. }
  3805. },
  3806. back: {
  3807. height: math.unit(7, "feet"),
  3808. weight: math.unit(90, "kg"),
  3809. name: "Back",
  3810. image: {
  3811. source: "./media/characters/kurrikage/back.svg",
  3812. extra: 1790/1677,
  3813. bottom: 61/1851
  3814. }
  3815. },
  3816. dressed: {
  3817. height: math.unit(7, "feet"),
  3818. weight: math.unit(90, "kg"),
  3819. name: "Dressed",
  3820. image: {
  3821. source: "./media/characters/kurrikage/dressed.svg",
  3822. extra: 1845/1733,
  3823. bottom: 119/1964
  3824. }
  3825. },
  3826. foot: {
  3827. height: math.unit(1.5, "feet"),
  3828. name: "Foot",
  3829. image: {
  3830. source: "./media/characters/kurrikage/foot.svg"
  3831. }
  3832. },
  3833. staff: {
  3834. height: math.unit(6.7, "feet"),
  3835. name: "Staff",
  3836. image: {
  3837. source: "./media/characters/kurrikage/staff.svg"
  3838. }
  3839. },
  3840. peek: {
  3841. height: math.unit(1.05, "feet"),
  3842. name: "Peeking",
  3843. image: {
  3844. source: "./media/characters/kurrikage/peek.svg",
  3845. bottom: 0.08
  3846. }
  3847. },
  3848. },
  3849. [
  3850. {
  3851. name: "Normal",
  3852. height: math.unit(12, "feet"),
  3853. default: true
  3854. },
  3855. {
  3856. name: "Big",
  3857. height: math.unit(20, "feet")
  3858. },
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(500, "feet")
  3862. },
  3863. {
  3864. name: "Megamacro",
  3865. height: math.unit(20, "miles")
  3866. },
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3871. {
  3872. front: {
  3873. height: math.unit(6, "feet"),
  3874. weight: math.unit(75, "kg"),
  3875. name: "Front",
  3876. image: {
  3877. source: "./media/characters/shingo/front.svg",
  3878. extra: 1900/1825,
  3879. bottom: 82/1982
  3880. }
  3881. },
  3882. side: {
  3883. height: math.unit(6, "feet"),
  3884. weight: math.unit(75, "kg"),
  3885. name: "Side",
  3886. image: {
  3887. source: "./media/characters/shingo/side.svg",
  3888. extra: 1930/1865,
  3889. bottom: 16/1946
  3890. }
  3891. },
  3892. back: {
  3893. height: math.unit(6, "feet"),
  3894. weight: math.unit(75, "kg"),
  3895. name: "Back",
  3896. image: {
  3897. source: "./media/characters/shingo/back.svg",
  3898. extra: 1922/1852,
  3899. bottom: 16/1938
  3900. }
  3901. },
  3902. frontDressed: {
  3903. height: math.unit(6, "feet"),
  3904. weight: math.unit(150, "lb"),
  3905. name: "Front (Dressed)",
  3906. image: {
  3907. source: "./media/characters/shingo/front-dressed.svg",
  3908. extra: 1900/1825,
  3909. bottom: 82/1982
  3910. }
  3911. },
  3912. paw: {
  3913. height: math.unit(1.29, "feet"),
  3914. name: "Paw",
  3915. image: {
  3916. source: "./media/characters/shingo/paw.svg"
  3917. }
  3918. },
  3919. hand: {
  3920. height: math.unit(1.07, "feet"),
  3921. name: "Hand",
  3922. image: {
  3923. source: "./media/characters/shingo/hand.svg"
  3924. }
  3925. },
  3926. frontAlt: {
  3927. height: math.unit(6, "feet"),
  3928. weight: math.unit(75, "kg"),
  3929. name: "Front (Alt)",
  3930. image: {
  3931. source: "./media/characters/shingo/front-alt.svg",
  3932. extra: 3511 / 3338,
  3933. bottom: 0.005
  3934. }
  3935. },
  3936. frontAlt2: {
  3937. height: math.unit(6, "feet"),
  3938. weight: math.unit(75, "kg"),
  3939. name: "Front (Alt 2)",
  3940. image: {
  3941. source: "./media/characters/shingo/front-alt-2.svg",
  3942. extra: 706/681,
  3943. bottom: 11/717
  3944. }
  3945. },
  3946. pawAlt: {
  3947. height: math.unit(1, "feet"),
  3948. name: "Paw (Alt)",
  3949. image: {
  3950. source: "./media/characters/shingo/paw-alt.svg"
  3951. }
  3952. },
  3953. },
  3954. [
  3955. {
  3956. name: "Micro",
  3957. height: math.unit(4, "inches")
  3958. },
  3959. {
  3960. name: "Normal",
  3961. height: math.unit(6, "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Macro",
  3966. height: math.unit(108, "feet")
  3967. },
  3968. {
  3969. name: "Macro+",
  3970. height: math.unit(1500, "feet")
  3971. },
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3976. {
  3977. side: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(75, "kg"),
  3980. name: "Side",
  3981. image: {
  3982. source: "./media/characters/aigey/side.svg"
  3983. }
  3984. },
  3985. },
  3986. [
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(200, "feet"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Megamacro",
  3994. height: math.unit(100, "miles")
  3995. },
  3996. ]
  3997. )
  3998. )
  3999. characterMakers.push(() => makeCharacter(
  4000. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  4001. {
  4002. front: {
  4003. height: math.unit(13, "feet"),
  4004. weight: math.unit(1036.80, "kg"),
  4005. name: "Front",
  4006. image: {
  4007. source: "./media/characters/natasha/front.svg",
  4008. extra: 1301/1210,
  4009. bottom: 39/1340
  4010. }
  4011. },
  4012. back: {
  4013. height: math.unit(13, "feet"),
  4014. weight: math.unit(1036.80, "kg"),
  4015. name: "Back",
  4016. image: {
  4017. source: "./media/characters/natasha/back.svg",
  4018. extra: 1342/1252,
  4019. bottom: 20/1362
  4020. }
  4021. },
  4022. head: {
  4023. height: math.unit(3.48, "feet"),
  4024. name: "Head",
  4025. image: {
  4026. source: "./media/characters/natasha/head.svg"
  4027. }
  4028. },
  4029. jaws: {
  4030. height: math.unit(3.52, "feet"),
  4031. name: "Jaws",
  4032. image: {
  4033. source: "./media/characters/natasha/jaws.svg"
  4034. }
  4035. },
  4036. paws: {
  4037. height: math.unit(2.7, "feet"),
  4038. name: "Paws",
  4039. image: {
  4040. source: "./media/characters/natasha/paws.svg"
  4041. }
  4042. },
  4043. collar: {
  4044. height: math.unit(0.89, "feet"),
  4045. name: "Collar",
  4046. image: {
  4047. source: "./media/characters/natasha/collar.svg"
  4048. }
  4049. },
  4050. gauge: {
  4051. height: math.unit(0.36, "feet"),
  4052. name: "Gauge",
  4053. image: {
  4054. source: "./media/characters/natasha/gauge.svg"
  4055. }
  4056. },
  4057. },
  4058. [
  4059. {
  4060. name: "Shortstack",
  4061. height: math.unit(3, "feet")
  4062. },
  4063. {
  4064. name: "Normal",
  4065. height: math.unit(13, "feet"),
  4066. default: true
  4067. },
  4068. {
  4069. name: "Macro",
  4070. height: math.unit(100, "feet")
  4071. },
  4072. {
  4073. name: "Macro+",
  4074. height: math.unit(260, "feet")
  4075. },
  4076. {
  4077. name: "Macro++",
  4078. height: math.unit(1, "mile")
  4079. },
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  4084. {
  4085. front: {
  4086. height: math.unit(6, "feet"),
  4087. weight: math.unit(75, "kg"),
  4088. name: "Front",
  4089. image: {
  4090. source: "./media/characters/malik/front.svg",
  4091. extra: 1750/1561,
  4092. bottom: 80/1830
  4093. },
  4094. extraAttributes: {
  4095. "toeSize": {
  4096. name: "Toe Size",
  4097. power: 2,
  4098. type: "area",
  4099. base: math.unit(0.0159, "m^2")
  4100. },
  4101. "pawSize": {
  4102. name: "Paw Size",
  4103. power: 2,
  4104. type: "area",
  4105. base: math.unit(0.09834, "m^2")
  4106. },
  4107. }
  4108. },
  4109. side: {
  4110. height: math.unit(6, "feet"),
  4111. weight: math.unit(75, "kg"),
  4112. name: "Side",
  4113. image: {
  4114. source: "./media/characters/malik/side.svg",
  4115. extra: 1802/1685,
  4116. bottom: 42/1844
  4117. },
  4118. extraAttributes: {
  4119. "toeSize": {
  4120. name: "Toe Size",
  4121. power: 2,
  4122. type: "area",
  4123. base: math.unit(0.0159, "m^2")
  4124. },
  4125. "pawSize": {
  4126. name: "Paw Size",
  4127. power: 2,
  4128. type: "area",
  4129. base: math.unit(0.09834, "m^2")
  4130. },
  4131. }
  4132. },
  4133. back: {
  4134. height: math.unit(6, "feet"),
  4135. weight: math.unit(75, "kg"),
  4136. name: "Back",
  4137. image: {
  4138. source: "./media/characters/malik/back.svg",
  4139. extra: 1803/1607,
  4140. bottom: 33/1836
  4141. },
  4142. extraAttributes: {
  4143. "toeSize": {
  4144. name: "Toe Size",
  4145. power: 2,
  4146. type: "area",
  4147. base: math.unit(0.0159, "m^2")
  4148. },
  4149. "pawSize": {
  4150. name: "Paw Size",
  4151. power: 2,
  4152. type: "area",
  4153. base: math.unit(0.09834, "m^2")
  4154. },
  4155. }
  4156. },
  4157. },
  4158. [
  4159. {
  4160. name: "Macro",
  4161. height: math.unit(156, "feet"),
  4162. default: true
  4163. },
  4164. {
  4165. name: "Macro+",
  4166. height: math.unit(1188, "feet")
  4167. },
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4172. {
  4173. front: {
  4174. height: math.unit(6, "feet"),
  4175. weight: math.unit(75, "kg"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/sefer/front.svg",
  4179. extra: 848 / 659,
  4180. bottom: 28.3 / 876.442
  4181. }
  4182. },
  4183. back: {
  4184. height: math.unit(6, "feet"),
  4185. weight: math.unit(75, "kg"),
  4186. name: "Back",
  4187. image: {
  4188. source: "./media/characters/sefer/back.svg",
  4189. extra: 864 / 695,
  4190. bottom: 10 / 871
  4191. }
  4192. },
  4193. frontDressed: {
  4194. height: math.unit(6, "feet"),
  4195. weight: math.unit(75, "kg"),
  4196. name: "Dressed",
  4197. image: {
  4198. source: "./media/characters/sefer/dressed.svg",
  4199. extra: 839 / 653,
  4200. bottom: 37.6 / 878
  4201. }
  4202. },
  4203. },
  4204. [
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(6, "feet"),
  4208. default: true
  4209. },
  4210. {
  4211. name: "Big",
  4212. height: math.unit(8, "meters")
  4213. },
  4214. ]
  4215. ))
  4216. characterMakers.push(() => makeCharacter(
  4217. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4218. {
  4219. body: {
  4220. height: math.unit(2.2428, "meter"),
  4221. weight: math.unit(124.738, "kg"),
  4222. name: "Body",
  4223. image: {
  4224. extra: 1225 / 1050,
  4225. source: "./media/characters/north/front.svg"
  4226. }
  4227. }
  4228. },
  4229. [
  4230. {
  4231. name: "Micro",
  4232. height: math.unit(4, "inches")
  4233. },
  4234. {
  4235. name: "Macro",
  4236. height: math.unit(63, "meters")
  4237. },
  4238. {
  4239. name: "Megamacro",
  4240. height: math.unit(101, "miles"),
  4241. default: true
  4242. }
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4247. {
  4248. angled: {
  4249. height: math.unit(4, "meter"),
  4250. weight: math.unit(150, "kg"),
  4251. name: "Angled",
  4252. image: {
  4253. source: "./media/characters/talan/angled-sfw.svg",
  4254. bottom: 29 / 3734
  4255. }
  4256. },
  4257. angledNsfw: {
  4258. height: math.unit(4, "meter"),
  4259. weight: math.unit(150, "kg"),
  4260. name: "Angled (NSFW)",
  4261. image: {
  4262. source: "./media/characters/talan/angled-nsfw.svg",
  4263. bottom: 29 / 3734
  4264. }
  4265. },
  4266. frontNsfw: {
  4267. height: math.unit(4, "meter"),
  4268. weight: math.unit(150, "kg"),
  4269. name: "Front (NSFW)",
  4270. image: {
  4271. source: "./media/characters/talan/front-nsfw.svg",
  4272. bottom: 29 / 3734
  4273. }
  4274. },
  4275. sideNsfw: {
  4276. height: math.unit(4, "meter"),
  4277. weight: math.unit(150, "kg"),
  4278. name: "Side (NSFW)",
  4279. image: {
  4280. source: "./media/characters/talan/side-nsfw.svg",
  4281. bottom: 29 / 3734
  4282. }
  4283. },
  4284. back: {
  4285. height: math.unit(4, "meter"),
  4286. weight: math.unit(150, "kg"),
  4287. name: "Back",
  4288. image: {
  4289. source: "./media/characters/talan/back.svg"
  4290. }
  4291. },
  4292. dickBottom: {
  4293. height: math.unit(0.621, "meter"),
  4294. name: "Dick (Bottom)",
  4295. image: {
  4296. source: "./media/characters/talan/dick-bottom.svg"
  4297. }
  4298. },
  4299. dickTop: {
  4300. height: math.unit(0.621, "meter"),
  4301. name: "Dick (Top)",
  4302. image: {
  4303. source: "./media/characters/talan/dick-top.svg"
  4304. }
  4305. },
  4306. dickSide: {
  4307. height: math.unit(0.305, "meter"),
  4308. name: "Dick (Side)",
  4309. image: {
  4310. source: "./media/characters/talan/dick-side.svg"
  4311. }
  4312. },
  4313. dickFront: {
  4314. height: math.unit(0.305, "meter"),
  4315. name: "Dick (Front)",
  4316. image: {
  4317. source: "./media/characters/talan/dick-front.svg"
  4318. }
  4319. },
  4320. },
  4321. [
  4322. {
  4323. name: "Normal",
  4324. height: math.unit(4, "meters")
  4325. },
  4326. {
  4327. name: "Macro",
  4328. height: math.unit(100, "meters")
  4329. },
  4330. {
  4331. name: "Megamacro",
  4332. height: math.unit(2, "miles"),
  4333. default: true
  4334. },
  4335. {
  4336. name: "Gigamacro",
  4337. height: math.unit(5000, "miles")
  4338. },
  4339. {
  4340. name: "Teramacro",
  4341. height: math.unit(100, "parsecs")
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4347. {
  4348. front: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(90, "kg"),
  4351. name: "Front",
  4352. image: {
  4353. source: "./media/characters/gael'rathus/front.svg"
  4354. }
  4355. },
  4356. frontAlt: {
  4357. height: math.unit(2, "meter"),
  4358. weight: math.unit(90, "kg"),
  4359. name: "Front (alt)",
  4360. image: {
  4361. source: "./media/characters/gael'rathus/front-alt.svg"
  4362. }
  4363. },
  4364. frontAlt2: {
  4365. height: math.unit(2, "meter"),
  4366. weight: math.unit(90, "kg"),
  4367. name: "Front (alt 2)",
  4368. image: {
  4369. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Normal",
  4376. height: math.unit(9, "feet"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Large",
  4381. height: math.unit(25, "feet")
  4382. },
  4383. {
  4384. name: "Macro",
  4385. height: math.unit(0.25, "miles")
  4386. },
  4387. {
  4388. name: "Megamacro",
  4389. height: math.unit(10, "miles")
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4395. {
  4396. side: {
  4397. height: math.unit(2, "meter"),
  4398. weight: math.unit(140, "kg"),
  4399. name: "Side",
  4400. image: {
  4401. source: "./media/characters/sosha/side.svg",
  4402. extra: 1170/1006,
  4403. bottom: 94/1264
  4404. }
  4405. },
  4406. maw: {
  4407. height: math.unit(2.87, "feet"),
  4408. name: "Maw",
  4409. image: {
  4410. source: "./media/characters/sosha/maw.svg",
  4411. extra: 966/865,
  4412. bottom: 0/966
  4413. }
  4414. },
  4415. cooch: {
  4416. height: math.unit(5.6, "feet"),
  4417. name: "Cooch",
  4418. image: {
  4419. source: "./media/characters/sosha/cooch.svg"
  4420. }
  4421. },
  4422. },
  4423. [
  4424. {
  4425. name: "Normal",
  4426. height: math.unit(12, "feet"),
  4427. default: true
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4433. {
  4434. side: {
  4435. height: math.unit(5 + 5 / 12, "feet"),
  4436. weight: math.unit(170, "kg"),
  4437. name: "Side",
  4438. image: {
  4439. source: "./media/characters/runnola/side.svg",
  4440. extra: 741 / 448,
  4441. bottom: 0.05
  4442. }
  4443. },
  4444. },
  4445. [
  4446. {
  4447. name: "Small",
  4448. height: math.unit(3, "feet")
  4449. },
  4450. {
  4451. name: "Normal",
  4452. height: math.unit(5 + 5 / 12, "feet"),
  4453. default: true
  4454. },
  4455. {
  4456. name: "Big",
  4457. height: math.unit(10, "feet")
  4458. },
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4463. {
  4464. front: {
  4465. height: math.unit(2, "meter"),
  4466. weight: math.unit(50, "kg"),
  4467. name: "Front",
  4468. image: {
  4469. source: "./media/characters/kurribird/front.svg",
  4470. bottom: 0.015
  4471. }
  4472. },
  4473. frontAlt: {
  4474. height: math.unit(1.5, "meter"),
  4475. weight: math.unit(50, "kg"),
  4476. name: "Front (Alt)",
  4477. image: {
  4478. source: "./media/characters/kurribird/front-alt.svg",
  4479. extra: 1.45
  4480. }
  4481. },
  4482. },
  4483. [
  4484. {
  4485. name: "Normal",
  4486. height: math.unit(7, "feet")
  4487. },
  4488. {
  4489. name: "Big",
  4490. height: math.unit(12, "feet"),
  4491. default: true
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(1500, "feet")
  4496. },
  4497. {
  4498. name: "Megamacro",
  4499. height: math.unit(2, "miles")
  4500. }
  4501. ]
  4502. ))
  4503. characterMakers.push(() => makeCharacter(
  4504. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4505. {
  4506. front: {
  4507. height: math.unit(2, "meter"),
  4508. weight: math.unit(80, "kg"),
  4509. name: "Front",
  4510. image: {
  4511. source: "./media/characters/elbial/front.svg",
  4512. extra: 1643 / 1556,
  4513. bottom: 60.2 / 1696
  4514. }
  4515. },
  4516. side: {
  4517. height: math.unit(2, "meter"),
  4518. weight: math.unit(80, "kg"),
  4519. name: "Side",
  4520. image: {
  4521. source: "./media/characters/elbial/side.svg",
  4522. extra: 1601/1528,
  4523. bottom: 97/1698
  4524. }
  4525. },
  4526. back: {
  4527. height: math.unit(2, "meter"),
  4528. weight: math.unit(80, "kg"),
  4529. name: "Back",
  4530. image: {
  4531. source: "./media/characters/elbial/back.svg",
  4532. extra: 1653/1569,
  4533. bottom: 20/1673
  4534. }
  4535. },
  4536. frontDressed: {
  4537. height: math.unit(2, "meter"),
  4538. weight: math.unit(80, "kg"),
  4539. name: "Front (Dressed)",
  4540. image: {
  4541. source: "./media/characters/elbial/front-dressed.svg",
  4542. extra: 1638/1569,
  4543. bottom: 70/1708
  4544. }
  4545. },
  4546. genitals: {
  4547. height: math.unit(2 / 3.367, "meter"),
  4548. name: "Genitals",
  4549. image: {
  4550. source: "./media/characters/elbial/genitals.svg"
  4551. }
  4552. },
  4553. },
  4554. [
  4555. {
  4556. name: "Large",
  4557. height: math.unit(100, "feet")
  4558. },
  4559. {
  4560. name: "Macro",
  4561. height: math.unit(500, "feet"),
  4562. default: true
  4563. },
  4564. {
  4565. name: "Megamacro",
  4566. height: math.unit(10, "miles")
  4567. },
  4568. {
  4569. name: "Gigamacro",
  4570. height: math.unit(25000, "miles")
  4571. },
  4572. {
  4573. name: "Full-Size",
  4574. height: math.unit(8000000, "gigaparsecs")
  4575. }
  4576. ]
  4577. ))
  4578. characterMakers.push(() => makeCharacter(
  4579. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4580. {
  4581. front: {
  4582. height: math.unit(2, "meter"),
  4583. weight: math.unit(60, "kg"),
  4584. name: "Front",
  4585. image: {
  4586. source: "./media/characters/noah/front.svg",
  4587. extra: 1383/1313,
  4588. bottom: 104/1487
  4589. }
  4590. },
  4591. hand: {
  4592. height: math.unit(0.6, "feet"),
  4593. name: "Hand",
  4594. image: {
  4595. source: "./media/characters/noah/hand.svg"
  4596. }
  4597. },
  4598. talons: {
  4599. height: math.unit(1.385, "feet"),
  4600. name: "Talons",
  4601. image: {
  4602. source: "./media/characters/noah/talons.svg"
  4603. }
  4604. },
  4605. beak: {
  4606. height: math.unit(0.43, "feet"),
  4607. name: "Beak",
  4608. image: {
  4609. source: "./media/characters/noah/beak.svg"
  4610. }
  4611. },
  4612. collar: {
  4613. height: math.unit(0.88, "feet"),
  4614. name: "Collar",
  4615. image: {
  4616. source: "./media/characters/noah/collar.svg"
  4617. }
  4618. },
  4619. eyeNarrow: {
  4620. height: math.unit(0.18, "feet"),
  4621. name: "Eye (Narrow)",
  4622. image: {
  4623. source: "./media/characters/noah/eye-narrow.svg"
  4624. }
  4625. },
  4626. eyeNormal: {
  4627. height: math.unit(0.18, "feet"),
  4628. name: "Eye (Normal)",
  4629. image: {
  4630. source: "./media/characters/noah/eye-normal.svg"
  4631. }
  4632. },
  4633. eyeWide: {
  4634. height: math.unit(0.18, "feet"),
  4635. name: "Eye (Wide)",
  4636. image: {
  4637. source: "./media/characters/noah/eye-wide.svg"
  4638. }
  4639. },
  4640. ear: {
  4641. height: math.unit(0.64, "feet"),
  4642. name: "Ear",
  4643. image: {
  4644. source: "./media/characters/noah/ear.svg"
  4645. }
  4646. },
  4647. },
  4648. [
  4649. {
  4650. name: "Large",
  4651. height: math.unit(50, "feet")
  4652. },
  4653. {
  4654. name: "Macro",
  4655. height: math.unit(750, "feet"),
  4656. default: true
  4657. },
  4658. {
  4659. name: "Megamacro",
  4660. height: math.unit(50, "miles")
  4661. },
  4662. {
  4663. name: "Gigamacro",
  4664. height: math.unit(100000, "miles")
  4665. },
  4666. {
  4667. name: "Full-Size",
  4668. height: math.unit(3000000000, "miles")
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(2, "meter"),
  4677. weight: math.unit(80, "kg"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/natalya/front.svg"
  4681. }
  4682. },
  4683. back: {
  4684. height: math.unit(2, "meter"),
  4685. weight: math.unit(80, "kg"),
  4686. name: "Back",
  4687. image: {
  4688. source: "./media/characters/natalya/back.svg"
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(150, "feet"),
  4696. default: true
  4697. },
  4698. {
  4699. name: "Megamacro",
  4700. height: math.unit(5, "miles")
  4701. },
  4702. {
  4703. name: "Full-Size",
  4704. height: math.unit(600, "kiloparsecs")
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(2, "meter"),
  4713. weight: math.unit(50, "kg"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/erestrebah/front.svg",
  4717. extra: 1262/1162,
  4718. bottom: 96/1358
  4719. }
  4720. },
  4721. back: {
  4722. height: math.unit(2, "meter"),
  4723. weight: math.unit(50, "kg"),
  4724. name: "Back",
  4725. image: {
  4726. source: "./media/characters/erestrebah/back.svg",
  4727. extra: 1257/1139,
  4728. bottom: 13/1270
  4729. }
  4730. },
  4731. wing: {
  4732. height: math.unit(2, "meter"),
  4733. weight: math.unit(50, "kg"),
  4734. name: "Wing",
  4735. image: {
  4736. source: "./media/characters/erestrebah/wing.svg",
  4737. extra: 1262/1162,
  4738. bottom: 96/1358
  4739. }
  4740. },
  4741. mouth: {
  4742. height: math.unit(0.39, "feet"),
  4743. name: "Mouth",
  4744. image: {
  4745. source: "./media/characters/erestrebah/mouth.svg"
  4746. }
  4747. }
  4748. },
  4749. [
  4750. {
  4751. name: "Normal",
  4752. height: math.unit(10, "feet")
  4753. },
  4754. {
  4755. name: "Large",
  4756. height: math.unit(50, "feet"),
  4757. default: true
  4758. },
  4759. {
  4760. name: "Macro",
  4761. height: math.unit(300, "feet")
  4762. },
  4763. {
  4764. name: "Macro+",
  4765. height: math.unit(750, "feet")
  4766. },
  4767. {
  4768. name: "Megamacro",
  4769. height: math.unit(3, "miles")
  4770. }
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4775. {
  4776. front: {
  4777. height: math.unit(2, "meter"),
  4778. weight: math.unit(80, "kg"),
  4779. name: "Front",
  4780. image: {
  4781. source: "./media/characters/jennifer/front.svg",
  4782. bottom: 0.11,
  4783. extra: 1.16
  4784. }
  4785. },
  4786. frontAlt: {
  4787. height: math.unit(2, "meter"),
  4788. weight: math.unit(80, "kg"),
  4789. name: "Front (Alt)",
  4790. image: {
  4791. source: "./media/characters/jennifer/front-alt.svg"
  4792. }
  4793. }
  4794. },
  4795. [
  4796. {
  4797. name: "Canon Height",
  4798. height: math.unit(120, "feet"),
  4799. default: true
  4800. },
  4801. {
  4802. name: "Macro+",
  4803. height: math.unit(300, "feet")
  4804. },
  4805. {
  4806. name: "Megamacro",
  4807. height: math.unit(20000, "feet")
  4808. }
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4813. {
  4814. front: {
  4815. height: math.unit(2, "meter"),
  4816. weight: math.unit(50, "kg"),
  4817. name: "Front",
  4818. image: {
  4819. source: "./media/characters/kalista/front.svg",
  4820. extra: 1314/1145,
  4821. bottom: 101/1415
  4822. }
  4823. },
  4824. back: {
  4825. height: math.unit(2, "meter"),
  4826. weight: math.unit(50, "kg"),
  4827. name: "Back",
  4828. image: {
  4829. source: "./media/characters/kalista/back.svg",
  4830. extra: 1366 / 1156,
  4831. bottom: 33.9 / 1362.78
  4832. }
  4833. }
  4834. },
  4835. [
  4836. {
  4837. name: "Uncomfortably Small",
  4838. height: math.unit(10, "feet")
  4839. },
  4840. {
  4841. name: "Small",
  4842. height: math.unit(30, "feet")
  4843. },
  4844. {
  4845. name: "Macro",
  4846. height: math.unit(100, "feet"),
  4847. default: true
  4848. },
  4849. {
  4850. name: "Macro+",
  4851. height: math.unit(2000, "feet")
  4852. },
  4853. {
  4854. name: "True Form",
  4855. height: math.unit(8924, "miles")
  4856. }
  4857. ]
  4858. ))
  4859. characterMakers.push(() => makeCharacter(
  4860. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4861. {
  4862. front: {
  4863. height: math.unit(2, "meter"),
  4864. weight: math.unit(120, "kg"),
  4865. name: "Front",
  4866. image: {
  4867. source: "./media/characters/ggv/front.svg"
  4868. }
  4869. },
  4870. side: {
  4871. height: math.unit(2, "meter"),
  4872. weight: math.unit(120, "kg"),
  4873. name: "Side",
  4874. image: {
  4875. source: "./media/characters/ggv/side.svg"
  4876. }
  4877. }
  4878. },
  4879. [
  4880. {
  4881. name: "Extremely Puny",
  4882. height: math.unit(9 + 5 / 12, "feet")
  4883. },
  4884. {
  4885. name: "Horribly Small",
  4886. height: math.unit(47.7, "miles"),
  4887. default: true
  4888. },
  4889. {
  4890. name: "Reasonably Sized",
  4891. height: math.unit(25000, "parsecs")
  4892. },
  4893. {
  4894. name: "Slightly Uncompressed",
  4895. height: math.unit(7.77e31, "parsecs")
  4896. },
  4897. {
  4898. name: "Omniversal",
  4899. height: math.unit(1e300, "meters")
  4900. },
  4901. ]
  4902. ))
  4903. characterMakers.push(() => makeCharacter(
  4904. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4905. {
  4906. front: {
  4907. height: math.unit(2, "meter"),
  4908. weight: math.unit(75, "lb"),
  4909. name: "Front",
  4910. image: {
  4911. source: "./media/characters/napalm/front.svg"
  4912. }
  4913. },
  4914. back: {
  4915. height: math.unit(2, "meter"),
  4916. weight: math.unit(75, "lb"),
  4917. name: "Back",
  4918. image: {
  4919. source: "./media/characters/napalm/back.svg"
  4920. }
  4921. }
  4922. },
  4923. [
  4924. {
  4925. name: "Standard",
  4926. height: math.unit(55, "feet"),
  4927. default: true
  4928. }
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4933. {
  4934. front: {
  4935. height: math.unit(7 + 5 / 6, "feet"),
  4936. weight: math.unit(325, "lb"),
  4937. name: "Front",
  4938. image: {
  4939. source: "./media/characters/asana/front.svg",
  4940. extra: 1133 / 1060,
  4941. bottom: 15.2 / 1148.6
  4942. }
  4943. },
  4944. back: {
  4945. height: math.unit(7 + 5 / 6, "feet"),
  4946. weight: math.unit(325, "lb"),
  4947. name: "Back",
  4948. image: {
  4949. source: "./media/characters/asana/back.svg",
  4950. extra: 1114 / 1043,
  4951. bottom: 5 / 1120
  4952. }
  4953. },
  4954. dressedDark: {
  4955. height: math.unit(7 + 5 / 6, "feet"),
  4956. weight: math.unit(325, "lb"),
  4957. name: "Dressed (Dark)",
  4958. image: {
  4959. source: "./media/characters/asana/dressed-dark.svg",
  4960. extra: 1133 / 1060,
  4961. bottom: 15.2 / 1148.6
  4962. }
  4963. },
  4964. dressedLight: {
  4965. height: math.unit(7 + 5 / 6, "feet"),
  4966. weight: math.unit(325, "lb"),
  4967. name: "Dressed (Light)",
  4968. image: {
  4969. source: "./media/characters/asana/dressed-light.svg",
  4970. extra: 1133 / 1060,
  4971. bottom: 15.2 / 1148.6
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "Standard",
  4978. height: math.unit(7 + 5 / 6, "feet"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Large",
  4983. height: math.unit(10, "meters")
  4984. },
  4985. {
  4986. name: "Macro",
  4987. height: math.unit(2500, "meters")
  4988. },
  4989. {
  4990. name: "Megamacro",
  4991. height: math.unit(5e6, "meters")
  4992. },
  4993. {
  4994. name: "Examacro",
  4995. height: math.unit(5e12, "lightyears")
  4996. },
  4997. {
  4998. name: "Max Size",
  4999. height: math.unit(1e31, "lightyears")
  5000. }
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(2, "meter"),
  5008. weight: math.unit(60, "kg"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/ebony/front.svg",
  5012. bottom: 0.03,
  5013. extra: 1045 / 810 + 0.03
  5014. }
  5015. },
  5016. side: {
  5017. height: math.unit(2, "meter"),
  5018. weight: math.unit(60, "kg"),
  5019. name: "Side",
  5020. image: {
  5021. source: "./media/characters/ebony/side.svg",
  5022. bottom: 0.03,
  5023. extra: 1045 / 810 + 0.03
  5024. }
  5025. },
  5026. back: {
  5027. height: math.unit(2, "meter"),
  5028. weight: math.unit(60, "kg"),
  5029. name: "Back",
  5030. image: {
  5031. source: "./media/characters/ebony/back.svg",
  5032. bottom: 0.01,
  5033. extra: 1045 / 810 + 0.01
  5034. }
  5035. },
  5036. },
  5037. [
  5038. // TODO check why I did this lol
  5039. {
  5040. name: "Standard",
  5041. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  5042. default: true
  5043. },
  5044. {
  5045. name: "Macro",
  5046. height: math.unit(200, "feet")
  5047. },
  5048. {
  5049. name: "Gigamacro",
  5050. height: math.unit(13000, "km")
  5051. }
  5052. ]
  5053. ))
  5054. characterMakers.push(() => makeCharacter(
  5055. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  5056. {
  5057. front: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(175, "lb"),
  5060. name: "Front",
  5061. image: {
  5062. source: "./media/characters/mountain/front.svg",
  5063. extra: 972 / 955,
  5064. bottom: 64 / 1036.6
  5065. }
  5066. },
  5067. back: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(175, "lb"),
  5070. name: "Back",
  5071. image: {
  5072. source: "./media/characters/mountain/back.svg",
  5073. extra: 970 / 950,
  5074. bottom: 28.25 / 999
  5075. }
  5076. },
  5077. },
  5078. [
  5079. {
  5080. name: "Large",
  5081. height: math.unit(20, "meters")
  5082. },
  5083. {
  5084. name: "Macro",
  5085. height: math.unit(300, "meters")
  5086. },
  5087. {
  5088. name: "Gigamacro",
  5089. height: math.unit(10000, "km"),
  5090. default: true
  5091. },
  5092. {
  5093. name: "Examacro",
  5094. height: math.unit(10e9, "lightyears")
  5095. }
  5096. ]
  5097. ))
  5098. characterMakers.push(() => makeCharacter(
  5099. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5100. {
  5101. front: {
  5102. height: math.unit(8, "feet"),
  5103. weight: math.unit(500, "lb"),
  5104. name: "Front",
  5105. image: {
  5106. source: "./media/characters/rick/front.svg"
  5107. }
  5108. }
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(8, "feet"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Macro",
  5118. height: math.unit(5, "km")
  5119. }
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5124. {
  5125. front: {
  5126. height: math.unit(8, "feet"),
  5127. weight: math.unit(120, "lb"),
  5128. name: "Front",
  5129. image: {
  5130. source: "./media/characters/ona/front.svg"
  5131. }
  5132. },
  5133. frontAlt: {
  5134. height: math.unit(8, "feet"),
  5135. weight: math.unit(120, "lb"),
  5136. name: "Front (Alt)",
  5137. image: {
  5138. source: "./media/characters/ona/front-alt.svg"
  5139. }
  5140. },
  5141. back: {
  5142. height: math.unit(8, "feet"),
  5143. weight: math.unit(120, "lb"),
  5144. name: "Back",
  5145. image: {
  5146. source: "./media/characters/ona/back.svg"
  5147. }
  5148. },
  5149. foot: {
  5150. height: math.unit(1.1, "feet"),
  5151. name: "Foot",
  5152. image: {
  5153. source: "./media/characters/ona/foot.svg"
  5154. }
  5155. }
  5156. },
  5157. [
  5158. {
  5159. name: "Megamacro",
  5160. height: math.unit(70, "km"),
  5161. default: true
  5162. },
  5163. {
  5164. name: "Gigamacro",
  5165. height: math.unit(681818, "miles")
  5166. },
  5167. {
  5168. name: "Examacro",
  5169. height: math.unit(3800000, "lightyears")
  5170. },
  5171. ]
  5172. ))
  5173. characterMakers.push(() => makeCharacter(
  5174. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5175. {
  5176. front: {
  5177. height: math.unit(12, "feet"),
  5178. weight: math.unit(3000, "lb"),
  5179. name: "Front",
  5180. image: {
  5181. source: "./media/characters/mech/front.svg",
  5182. extra: 2900 / 2770,
  5183. bottom: 110 / 3010
  5184. }
  5185. },
  5186. back: {
  5187. height: math.unit(12, "feet"),
  5188. weight: math.unit(3000, "lb"),
  5189. name: "Back",
  5190. image: {
  5191. source: "./media/characters/mech/back.svg",
  5192. extra: 3011 / 2890,
  5193. bottom: 94 / 3105
  5194. }
  5195. },
  5196. maw: {
  5197. height: math.unit(3.07, "feet"),
  5198. name: "Maw",
  5199. image: {
  5200. source: "./media/characters/mech/maw.svg"
  5201. }
  5202. },
  5203. head: {
  5204. height: math.unit(3.07, "feet"),
  5205. name: "Head",
  5206. image: {
  5207. source: "./media/characters/mech/head.svg"
  5208. }
  5209. },
  5210. dick: {
  5211. height: math.unit(1.43, "feet"),
  5212. name: "Dick",
  5213. image: {
  5214. source: "./media/characters/mech/dick.svg"
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(12, "feet")
  5222. },
  5223. {
  5224. name: "Macro",
  5225. height: math.unit(300, "feet"),
  5226. default: true
  5227. },
  5228. {
  5229. name: "Macro+",
  5230. height: math.unit(1500, "feet")
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5236. {
  5237. front: {
  5238. height: math.unit(1.3, "meter"),
  5239. weight: math.unit(30, "kg"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/gregory/front.svg",
  5243. }
  5244. }
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(1.3, "meter"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Macro",
  5254. height: math.unit(20, "meter")
  5255. }
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5260. {
  5261. front: {
  5262. height: math.unit(2.8, "meter"),
  5263. weight: math.unit(200, "kg"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/elory/front.svg",
  5267. }
  5268. }
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(2.8, "meter"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Macro",
  5278. height: math.unit(38, "meter")
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(470, "feet"),
  5287. weight: math.unit(924, "tons"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/angelpatamon/front.svg",
  5291. }
  5292. }
  5293. },
  5294. [
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(470, "feet"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Deity Size I",
  5302. height: math.unit(28651.2, "km")
  5303. },
  5304. {
  5305. name: "Deity Size II",
  5306. height: math.unit(171907.2, "km")
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5312. {
  5313. side: {
  5314. height: math.unit(7.2, "meter"),
  5315. weight: math.unit(8.2, "tons"),
  5316. name: "Side",
  5317. image: {
  5318. source: "./media/characters/cryae/side.svg",
  5319. extra: 3500 / 1500
  5320. }
  5321. }
  5322. },
  5323. [
  5324. {
  5325. name: "Normal",
  5326. height: math.unit(7.2, "meter"),
  5327. default: true
  5328. }
  5329. ]
  5330. ))
  5331. characterMakers.push(() => makeCharacter(
  5332. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5333. {
  5334. front: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(175, "lb"),
  5337. name: "Front",
  5338. image: {
  5339. source: "./media/characters/xera/front.svg",
  5340. extra: 2377 / 1972,
  5341. bottom: 75.5 / 2452
  5342. }
  5343. },
  5344. side: {
  5345. height: math.unit(6, "feet"),
  5346. weight: math.unit(175, "lb"),
  5347. name: "Side",
  5348. image: {
  5349. source: "./media/characters/xera/side.svg",
  5350. extra: 2345 / 2019,
  5351. bottom: 39.7 / 2384
  5352. }
  5353. },
  5354. back: {
  5355. height: math.unit(6, "feet"),
  5356. weight: math.unit(175, "lb"),
  5357. name: "Back",
  5358. image: {
  5359. source: "./media/characters/xera/back.svg",
  5360. extra: 2095 / 1984,
  5361. bottom: 67 / 2166
  5362. }
  5363. },
  5364. },
  5365. [
  5366. {
  5367. name: "Small",
  5368. height: math.unit(10, "feet")
  5369. },
  5370. {
  5371. name: "Macro",
  5372. height: math.unit(500, "meters"),
  5373. default: true
  5374. },
  5375. {
  5376. name: "Macro+",
  5377. height: math.unit(10, "km")
  5378. },
  5379. {
  5380. name: "Gigamacro",
  5381. height: math.unit(25000, "km")
  5382. },
  5383. {
  5384. name: "Teramacro",
  5385. height: math.unit(3e6, "km")
  5386. }
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5391. {
  5392. front: {
  5393. height: math.unit(6, "feet"),
  5394. weight: math.unit(175, "lb"),
  5395. name: "Front",
  5396. image: {
  5397. source: "./media/characters/nebula/front.svg",
  5398. extra: 2566 / 2362,
  5399. bottom: 81 / 2644
  5400. }
  5401. }
  5402. },
  5403. [
  5404. {
  5405. name: "Small",
  5406. height: math.unit(4.5, "meters")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(1500, "meters"),
  5411. default: true
  5412. },
  5413. {
  5414. name: "Megamacro",
  5415. height: math.unit(150, "km")
  5416. },
  5417. {
  5418. name: "Gigamacro",
  5419. height: math.unit(27000, "km")
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(225, "lb"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/abysgar/front.svg",
  5432. extra: 1739/1614,
  5433. bottom: 71/1810
  5434. }
  5435. },
  5436. frontNsfw: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(225, "lb"),
  5439. name: "Front (NSFW)",
  5440. image: {
  5441. source: "./media/characters/abysgar/front-nsfw.svg",
  5442. extra: 1739/1614,
  5443. bottom: 71/1810
  5444. }
  5445. },
  5446. back: {
  5447. height: math.unit(4.6, "feet"),
  5448. weight: math.unit(225, "lb"),
  5449. name: "Back",
  5450. image: {
  5451. source: "./media/characters/abysgar/back.svg",
  5452. extra: 1384/1327,
  5453. bottom: 0/1384
  5454. }
  5455. },
  5456. head: {
  5457. height: math.unit(1.25, "feet"),
  5458. name: "Head",
  5459. image: {
  5460. source: "./media/characters/abysgar/head.svg",
  5461. extra: 669/569,
  5462. bottom: 0/669
  5463. }
  5464. },
  5465. },
  5466. [
  5467. {
  5468. name: "Small",
  5469. height: math.unit(4.5, "meters")
  5470. },
  5471. {
  5472. name: "Macro",
  5473. height: math.unit(1250, "meters"),
  5474. default: true
  5475. },
  5476. {
  5477. name: "Megamacro",
  5478. height: math.unit(125, "km")
  5479. },
  5480. {
  5481. name: "Gigamacro",
  5482. height: math.unit(26000, "km")
  5483. }
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5488. {
  5489. front: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(180, "lb"),
  5492. name: "Front",
  5493. image: {
  5494. source: "./media/characters/yakuz/front.svg"
  5495. }
  5496. }
  5497. },
  5498. [
  5499. {
  5500. name: "Small",
  5501. height: math.unit(5, "meters")
  5502. },
  5503. {
  5504. name: "Macro",
  5505. height: math.unit(1500, "meters"),
  5506. default: true
  5507. },
  5508. {
  5509. name: "Megamacro",
  5510. height: math.unit(200, "km")
  5511. },
  5512. {
  5513. name: "Gigamacro",
  5514. height: math.unit(100000, "km")
  5515. }
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5520. {
  5521. front: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(175, "lb"),
  5524. name: "Front",
  5525. image: {
  5526. source: "./media/characters/mirova/front.svg",
  5527. extra: 1947/1753,
  5528. bottom: 28/1975
  5529. }
  5530. },
  5531. back: {
  5532. height: math.unit(2.48, "feet"),
  5533. name: "Back",
  5534. image: {
  5535. source: "./media/characters/mirova/back.svg"
  5536. }
  5537. },
  5538. head: {
  5539. height: math.unit(1.94, "feet"),
  5540. name: "Head",
  5541. image: {
  5542. source: "./media/characters/mirova/head.svg"
  5543. }
  5544. },
  5545. headSide: {
  5546. height: math.unit(2, "feet"),
  5547. name: "Head (Side)",
  5548. image: {
  5549. source: "./media/characters/mirova/head-side.svg"
  5550. }
  5551. },
  5552. },
  5553. [
  5554. {
  5555. name: "Small",
  5556. height: math.unit(5, "meters")
  5557. },
  5558. {
  5559. name: "Macro",
  5560. height: math.unit(900, "meters"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Megamacro",
  5565. height: math.unit(135, "km")
  5566. },
  5567. {
  5568. name: "Gigamacro",
  5569. height: math.unit(20000, "km")
  5570. }
  5571. ]
  5572. ))
  5573. characterMakers.push(() => makeCharacter(
  5574. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5575. {
  5576. side: {
  5577. height: math.unit(28.35, "feet"),
  5578. weight: math.unit(99.75, "tons"),
  5579. name: "Side",
  5580. image: {
  5581. source: "./media/characters/asana-mech/side.svg",
  5582. extra: 923 / 699,
  5583. bottom: 50 / 975
  5584. }
  5585. },
  5586. chaingun: {
  5587. height: math.unit(7, "feet"),
  5588. weight: math.unit(2400, "lb"),
  5589. name: "Chaingun",
  5590. image: {
  5591. source: "./media/characters/asana-mech/chaingun.svg"
  5592. }
  5593. },
  5594. laser: {
  5595. height: math.unit(7.12, "feet"),
  5596. weight: math.unit(2000, "lb"),
  5597. name: "Laser",
  5598. image: {
  5599. source: "./media/characters/asana-mech/laser.svg"
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(28.35, "feet"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(2500, "feet")
  5612. },
  5613. {
  5614. name: "Megamacro",
  5615. height: math.unit(25, "miles")
  5616. },
  5617. {
  5618. name: "Examacro",
  5619. height: math.unit(6e8, "lightyears")
  5620. },
  5621. ]
  5622. ))
  5623. characterMakers.push(() => makeCharacter(
  5624. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5625. {
  5626. front: {
  5627. height: math.unit(5, "meters"),
  5628. weight: math.unit(1000, "kg"),
  5629. name: "Front",
  5630. image: {
  5631. source: "./media/characters/asche/front.svg",
  5632. extra: 1258 / 1190,
  5633. bottom: 47 / 1305
  5634. }
  5635. },
  5636. frontUnderwear: {
  5637. height: math.unit(5, "meters"),
  5638. weight: math.unit(1000, "kg"),
  5639. name: "Front (Underwear)",
  5640. image: {
  5641. source: "./media/characters/asche/front-underwear.svg",
  5642. extra: 1258 / 1190,
  5643. bottom: 47 / 1305
  5644. }
  5645. },
  5646. frontDressed: {
  5647. height: math.unit(5, "meters"),
  5648. weight: math.unit(1000, "kg"),
  5649. name: "Front (Dressed)",
  5650. image: {
  5651. source: "./media/characters/asche/front-dressed.svg",
  5652. extra: 1258 / 1190,
  5653. bottom: 47 / 1305
  5654. }
  5655. },
  5656. frontArmor: {
  5657. height: math.unit(5, "meters"),
  5658. weight: math.unit(1000, "kg"),
  5659. name: "Front (Armored)",
  5660. image: {
  5661. source: "./media/characters/asche/front-armored.svg",
  5662. extra: 1374 / 1308,
  5663. bottom: 23 / 1397
  5664. }
  5665. },
  5666. mp724: {
  5667. height: math.unit(0.96, "meters"),
  5668. weight: math.unit(38, "kg"),
  5669. name: "H&K MP724",
  5670. image: {
  5671. source: "./media/characters/asche/h&k-mp724.svg"
  5672. }
  5673. },
  5674. side: {
  5675. height: math.unit(5, "meters"),
  5676. weight: math.unit(1000, "kg"),
  5677. name: "Side",
  5678. image: {
  5679. source: "./media/characters/asche/side.svg",
  5680. extra: 1717 / 1609,
  5681. bottom: 0.005
  5682. }
  5683. },
  5684. back: {
  5685. height: math.unit(5, "meters"),
  5686. weight: math.unit(1000, "kg"),
  5687. name: "Back",
  5688. image: {
  5689. source: "./media/characters/asche/back.svg",
  5690. extra: 1570 / 1501
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "DEFCON 5",
  5697. height: math.unit(5, "meters")
  5698. },
  5699. {
  5700. name: "DEFCON 4",
  5701. height: math.unit(500, "meters"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "DEFCON 3",
  5706. height: math.unit(5, "km")
  5707. },
  5708. {
  5709. name: "DEFCON 2",
  5710. height: math.unit(500, "km")
  5711. },
  5712. {
  5713. name: "DEFCON 1",
  5714. height: math.unit(500000, "km")
  5715. },
  5716. {
  5717. name: "DEFCON 0",
  5718. height: math.unit(3, "gigaparsecs")
  5719. },
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5724. {
  5725. front: {
  5726. height: math.unit(7, "feet"),
  5727. weight: math.unit(92.7, "kg"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/gale/front.svg",
  5731. extra: 977/919,
  5732. bottom: 105/1082
  5733. }
  5734. },
  5735. side: {
  5736. height: math.unit(6.7, "feet"),
  5737. weight: math.unit(92.7, "kg"),
  5738. name: "Side",
  5739. image: {
  5740. source: "./media/characters/gale/side.svg",
  5741. extra: 978/922,
  5742. bottom: 140/1118
  5743. }
  5744. },
  5745. back: {
  5746. height: math.unit(7, "feet"),
  5747. weight: math.unit(92.7, "kg"),
  5748. name: "Back",
  5749. image: {
  5750. source: "./media/characters/gale/back.svg",
  5751. extra: 966/920,
  5752. bottom: 61/1027
  5753. }
  5754. },
  5755. maw: {
  5756. height: math.unit(2.23, "feet"),
  5757. name: "Maw",
  5758. image: {
  5759. source: "./media/characters/gale/maw.svg"
  5760. }
  5761. },
  5762. foot: {
  5763. height: math.unit(2.1, "feet"),
  5764. name: "Foot",
  5765. image: {
  5766. source: "./media/characters/gale/foot.svg"
  5767. }
  5768. },
  5769. },
  5770. [
  5771. {
  5772. name: "Normal",
  5773. height: math.unit(7, "feet")
  5774. },
  5775. {
  5776. name: "Macro",
  5777. height: math.unit(150, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Macro+",
  5782. height: math.unit(300, "feet")
  5783. },
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(5 + 10/12, "feet"),
  5791. weight: math.unit(67, "kg"),
  5792. name: "Front",
  5793. image: {
  5794. source: "./media/characters/draylen/front.svg",
  5795. extra: 832/777,
  5796. bottom: 85/917
  5797. }
  5798. }
  5799. },
  5800. [
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(5 + 10/12, "feet")
  5804. },
  5805. {
  5806. name: "Macro",
  5807. height: math.unit(150, "feet"),
  5808. default: true
  5809. }
  5810. ]
  5811. ))
  5812. characterMakers.push(() => makeCharacter(
  5813. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5814. {
  5815. front: {
  5816. height: math.unit(7 + 9 / 12, "feet"),
  5817. weight: math.unit(379, "lbs"),
  5818. name: "Front",
  5819. image: {
  5820. source: "./media/characters/chez/front.svg"
  5821. }
  5822. },
  5823. side: {
  5824. height: math.unit(7 + 9 / 12, "feet"),
  5825. weight: math.unit(379, "lbs"),
  5826. name: "Side",
  5827. image: {
  5828. source: "./media/characters/chez/side.svg"
  5829. }
  5830. }
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(7 + 9 / 12, "feet"),
  5836. default: true
  5837. },
  5838. {
  5839. name: "God King",
  5840. height: math.unit(9750000, "meters")
  5841. }
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5846. {
  5847. front: {
  5848. height: math.unit(6, "feet"),
  5849. weight: math.unit(275, "lbs"),
  5850. name: "Front",
  5851. image: {
  5852. source: "./media/characters/kaylum/front.svg",
  5853. bottom: 0.01,
  5854. extra: 1166 / 1031
  5855. }
  5856. },
  5857. frontWingless: {
  5858. height: math.unit(6, "feet"),
  5859. weight: math.unit(275, "lbs"),
  5860. name: "Front (Wingless)",
  5861. image: {
  5862. source: "./media/characters/kaylum/front-wingless.svg",
  5863. bottom: 0.01,
  5864. extra: 1117 / 1031
  5865. }
  5866. }
  5867. },
  5868. [
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(3.05, "meters")
  5872. },
  5873. {
  5874. name: "Master",
  5875. height: math.unit(5.5, "meters")
  5876. },
  5877. {
  5878. name: "Rampage",
  5879. height: math.unit(19, "meters")
  5880. },
  5881. {
  5882. name: "Macro Lite",
  5883. height: math.unit(37, "meters")
  5884. },
  5885. {
  5886. name: "Hyper Predator",
  5887. height: math.unit(61, "meters")
  5888. },
  5889. {
  5890. name: "Macro",
  5891. height: math.unit(138, "meters"),
  5892. default: true
  5893. }
  5894. ]
  5895. ))
  5896. characterMakers.push(() => makeCharacter(
  5897. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5898. {
  5899. front: {
  5900. height: math.unit(5 + 5 / 12, "feet"),
  5901. weight: math.unit(120, "lbs"),
  5902. name: "Front",
  5903. image: {
  5904. source: "./media/characters/geta/front.svg",
  5905. extra: 1003/933,
  5906. bottom: 21/1024
  5907. }
  5908. },
  5909. paw: {
  5910. height: math.unit(0.35, "feet"),
  5911. name: "Paw",
  5912. image: {
  5913. source: "./media/characters/geta/paw.svg"
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Micro",
  5920. height: math.unit(3, "inches"),
  5921. default: true
  5922. },
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5 + 5 / 12, "feet")
  5926. }
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5931. {
  5932. front: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(300, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/tyrnn/front.svg"
  5938. }
  5939. }
  5940. },
  5941. [
  5942. {
  5943. name: "Main Height",
  5944. height: math.unit(355, "feet"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Fave. Height",
  5949. height: math.unit(2400, "feet")
  5950. }
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5955. {
  5956. front: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(300, "lbs"),
  5959. name: "Front",
  5960. image: {
  5961. source: "./media/characters/appledectomy/front.svg"
  5962. }
  5963. }
  5964. },
  5965. [
  5966. {
  5967. name: "Macro",
  5968. height: math.unit(2500, "feet")
  5969. },
  5970. {
  5971. name: "Megamacro",
  5972. height: math.unit(50, "miles"),
  5973. default: true
  5974. },
  5975. {
  5976. name: "Gigamacro",
  5977. height: math.unit(5000, "miles")
  5978. },
  5979. {
  5980. name: "Teramacro",
  5981. height: math.unit(250000, "miles")
  5982. },
  5983. ]
  5984. ))
  5985. characterMakers.push(() => makeCharacter(
  5986. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5987. {
  5988. front: {
  5989. height: math.unit(6, "feet"),
  5990. weight: math.unit(200, "lbs"),
  5991. name: "Front",
  5992. image: {
  5993. source: "./media/characters/vulpes/front.svg",
  5994. extra: 573 / 543,
  5995. bottom: 0.033
  5996. }
  5997. },
  5998. side: {
  5999. height: math.unit(6, "feet"),
  6000. weight: math.unit(200, "lbs"),
  6001. name: "Side",
  6002. image: {
  6003. source: "./media/characters/vulpes/side.svg",
  6004. extra: 577 / 549,
  6005. bottom: 11 / 588
  6006. }
  6007. },
  6008. back: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(200, "lbs"),
  6011. name: "Back",
  6012. image: {
  6013. source: "./media/characters/vulpes/back.svg",
  6014. extra: 573 / 549,
  6015. bottom: 20 / 593
  6016. }
  6017. },
  6018. feet: {
  6019. height: math.unit(1.276, "feet"),
  6020. name: "Feet",
  6021. image: {
  6022. source: "./media/characters/vulpes/feet.svg"
  6023. }
  6024. },
  6025. maw: {
  6026. height: math.unit(1.18, "feet"),
  6027. name: "Maw",
  6028. image: {
  6029. source: "./media/characters/vulpes/maw.svg"
  6030. }
  6031. },
  6032. },
  6033. [
  6034. {
  6035. name: "Micro",
  6036. height: math.unit(2, "inches")
  6037. },
  6038. {
  6039. name: "Normal",
  6040. height: math.unit(6.3, "feet")
  6041. },
  6042. {
  6043. name: "Macro",
  6044. height: math.unit(850, "feet")
  6045. },
  6046. {
  6047. name: "Megamacro",
  6048. height: math.unit(7500, "feet"),
  6049. default: true
  6050. },
  6051. {
  6052. name: "Gigamacro",
  6053. height: math.unit(570000, "miles")
  6054. }
  6055. ]
  6056. ))
  6057. characterMakers.push(() => makeCharacter(
  6058. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  6059. {
  6060. front: {
  6061. height: math.unit(6, "feet"),
  6062. weight: math.unit(210, "lbs"),
  6063. name: "Front",
  6064. image: {
  6065. source: "./media/characters/rain-fallen/front.svg"
  6066. }
  6067. },
  6068. side: {
  6069. height: math.unit(6, "feet"),
  6070. weight: math.unit(210, "lbs"),
  6071. name: "Side",
  6072. image: {
  6073. source: "./media/characters/rain-fallen/side.svg"
  6074. }
  6075. },
  6076. back: {
  6077. height: math.unit(6, "feet"),
  6078. weight: math.unit(210, "lbs"),
  6079. name: "Back",
  6080. image: {
  6081. source: "./media/characters/rain-fallen/back.svg"
  6082. }
  6083. },
  6084. feral: {
  6085. height: math.unit(9, "feet"),
  6086. weight: math.unit(700, "lbs"),
  6087. name: "Feral",
  6088. image: {
  6089. source: "./media/characters/rain-fallen/feral.svg"
  6090. }
  6091. },
  6092. },
  6093. [
  6094. {
  6095. name: "Meddling with Mortals",
  6096. height: math.unit(8 + 8/12, "feet")
  6097. },
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(5, "meter")
  6101. },
  6102. {
  6103. name: "Macro",
  6104. height: math.unit(150, "meter"),
  6105. default: true
  6106. },
  6107. {
  6108. name: "Megamacro",
  6109. height: math.unit(278e6, "meter")
  6110. },
  6111. {
  6112. name: "Gigamacro",
  6113. height: math.unit(2e9, "meter")
  6114. },
  6115. {
  6116. name: "Teramacro",
  6117. height: math.unit(8e12, "meter")
  6118. },
  6119. {
  6120. name: "Devourer",
  6121. height: math.unit(14, "zettameters")
  6122. },
  6123. {
  6124. name: "Scarlet King",
  6125. height: math.unit(18, "yottameters")
  6126. },
  6127. {
  6128. name: "Void",
  6129. height: math.unit(1e88, "yottameters")
  6130. }
  6131. ]
  6132. ))
  6133. characterMakers.push(() => makeCharacter(
  6134. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6135. {
  6136. standing: {
  6137. height: math.unit(6, "feet"),
  6138. weight: math.unit(180, "lbs"),
  6139. name: "Standing",
  6140. image: {
  6141. source: "./media/characters/zaakira/standing.svg",
  6142. extra: 1599/1504,
  6143. bottom: 39/1638
  6144. }
  6145. },
  6146. laying: {
  6147. height: math.unit(3.3, "feet"),
  6148. weight: math.unit(180, "lbs"),
  6149. name: "Laying",
  6150. image: {
  6151. source: "./media/characters/zaakira/laying.svg"
  6152. }
  6153. },
  6154. },
  6155. [
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(12, "feet")
  6159. },
  6160. {
  6161. name: "Macro",
  6162. height: math.unit(279, "feet"),
  6163. default: true
  6164. }
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6169. {
  6170. femSfw: {
  6171. height: math.unit(8, "feet"),
  6172. weight: math.unit(350, "lb"),
  6173. name: "Fem",
  6174. image: {
  6175. source: "./media/characters/sigvald/fem-sfw.svg",
  6176. extra: 182 / 164,
  6177. bottom: 8.7 / 190.5
  6178. }
  6179. },
  6180. femNsfw: {
  6181. height: math.unit(8, "feet"),
  6182. weight: math.unit(350, "lb"),
  6183. name: "Fem (NSFW)",
  6184. image: {
  6185. source: "./media/characters/sigvald/fem-nsfw.svg",
  6186. extra: 182 / 164,
  6187. bottom: 8.7 / 190.5
  6188. }
  6189. },
  6190. maleNsfw: {
  6191. height: math.unit(8, "feet"),
  6192. weight: math.unit(350, "lb"),
  6193. name: "Male (NSFW)",
  6194. image: {
  6195. source: "./media/characters/sigvald/male-nsfw.svg",
  6196. extra: 182 / 164,
  6197. bottom: 8.7 / 190.5
  6198. }
  6199. },
  6200. hermNsfw: {
  6201. height: math.unit(8, "feet"),
  6202. weight: math.unit(350, "lb"),
  6203. name: "Herm (NSFW)",
  6204. image: {
  6205. source: "./media/characters/sigvald/herm-nsfw.svg",
  6206. extra: 182 / 164,
  6207. bottom: 8.7 / 190.5
  6208. }
  6209. },
  6210. dick: {
  6211. height: math.unit(2.36, "feet"),
  6212. name: "Dick",
  6213. image: {
  6214. source: "./media/characters/sigvald/dick.svg"
  6215. }
  6216. },
  6217. eye: {
  6218. height: math.unit(0.31, "feet"),
  6219. name: "Eye",
  6220. image: {
  6221. source: "./media/characters/sigvald/eye.svg"
  6222. }
  6223. },
  6224. mouth: {
  6225. height: math.unit(0.92, "feet"),
  6226. name: "Mouth",
  6227. image: {
  6228. source: "./media/characters/sigvald/mouth.svg"
  6229. }
  6230. },
  6231. paws: {
  6232. height: math.unit(2.2, "feet"),
  6233. name: "Paws",
  6234. image: {
  6235. source: "./media/characters/sigvald/paws.svg"
  6236. }
  6237. }
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(8, "feet")
  6243. },
  6244. {
  6245. name: "Large",
  6246. height: math.unit(12, "feet")
  6247. },
  6248. {
  6249. name: "Larger",
  6250. height: math.unit(20, "feet")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(150, "feet")
  6255. },
  6256. {
  6257. name: "Macro+",
  6258. height: math.unit(200, "feet"),
  6259. default: true
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6265. {
  6266. anthro_front: {
  6267. height: math.unit(5 + 11/12, "feet"),
  6268. weight: math.unit(250, "lb"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/scott/anthro-front.svg",
  6272. extra: 851/781,
  6273. bottom: 54/905
  6274. },
  6275. form: "anthro",
  6276. default: true
  6277. },
  6278. anthro_side: {
  6279. height: math.unit(5.1, "feet"),
  6280. weight: math.unit(250, "lb"),
  6281. name: "Side",
  6282. image: {
  6283. source: "./media/characters/scott/anthro-side.svg"
  6284. },
  6285. form: "anthro",
  6286. },
  6287. anthro_dick: {
  6288. height: math.unit(1.33, "feet"),
  6289. name: "Dick",
  6290. image: {
  6291. source: "./media/characters/scott/anthro-dick.svg"
  6292. },
  6293. form: "anthro",
  6294. },
  6295. side: {
  6296. height: math.unit(12, "feet"),
  6297. weight: math.unit(2000, "kg"),
  6298. name: "Side",
  6299. image: {
  6300. source: "./media/characters/scott/side.svg",
  6301. extra: 754 / 724,
  6302. bottom: 0.069
  6303. },
  6304. form: "taur",
  6305. default: true
  6306. },
  6307. upright: {
  6308. height: math.unit(12, "feet"),
  6309. weight: math.unit(2000, "kg"),
  6310. name: "Upright",
  6311. image: {
  6312. source: "./media/characters/scott/upright.svg",
  6313. extra: 3881 / 3722,
  6314. bottom: 0.05
  6315. },
  6316. form: "taur",
  6317. },
  6318. },
  6319. [
  6320. {
  6321. name: "Normal",
  6322. height: math.unit(5 + 11/12, "feet"),
  6323. default: true,
  6324. form: "anthro"
  6325. },
  6326. {
  6327. name: "Normal",
  6328. height: math.unit(12, "feet"),
  6329. default: true,
  6330. form: "taur"
  6331. },
  6332. ],
  6333. {
  6334. "anthro": {
  6335. name: "Anthro",
  6336. default: true
  6337. },
  6338. "taur": {
  6339. name: "Taur",
  6340. },
  6341. }
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6345. {
  6346. side: {
  6347. height: math.unit(8, "meters"),
  6348. weight: math.unit(84755, "lbs"),
  6349. name: "Side",
  6350. image: {
  6351. source: "./media/characters/tobias/side.svg",
  6352. extra: 1474 / 1096,
  6353. bottom: 38.9 / 1513.1235
  6354. }
  6355. },
  6356. maw: {
  6357. height: math.unit(2.3, "meters"),
  6358. name: "Maw",
  6359. image: {
  6360. source: "./media/characters/tobias/maw.svg"
  6361. }
  6362. },
  6363. burp: {
  6364. height: math.unit(2.85, "meters"),
  6365. name: "Burp",
  6366. image: {
  6367. source: "./media/characters/tobias/burp.svg"
  6368. }
  6369. },
  6370. },
  6371. [
  6372. {
  6373. name: "Normal",
  6374. height: math.unit(8, "meters"),
  6375. default: true
  6376. },
  6377. ]
  6378. ))
  6379. characterMakers.push(() => makeCharacter(
  6380. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6381. {
  6382. front: {
  6383. height: math.unit(5.5, "feet"),
  6384. weight: math.unit(400, "lbs"),
  6385. name: "Front",
  6386. image: {
  6387. source: "./media/characters/kieran/front.svg",
  6388. extra: 2694 / 2364,
  6389. bottom: 217 / 2908
  6390. }
  6391. },
  6392. side: {
  6393. height: math.unit(5.5, "feet"),
  6394. weight: math.unit(400, "lbs"),
  6395. name: "Side",
  6396. image: {
  6397. source: "./media/characters/kieran/side.svg",
  6398. extra: 875 / 777,
  6399. bottom: 84.6 / 959
  6400. }
  6401. },
  6402. },
  6403. [
  6404. {
  6405. name: "Normal",
  6406. height: math.unit(5.5, "feet"),
  6407. default: true
  6408. },
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6413. {
  6414. side: {
  6415. height: math.unit(2, "meters"),
  6416. weight: math.unit(70, "kg"),
  6417. name: "Side",
  6418. image: {
  6419. source: "./media/characters/sanya/side.svg",
  6420. bottom: 0.02,
  6421. extra: 1.02
  6422. }
  6423. },
  6424. },
  6425. [
  6426. {
  6427. name: "Small",
  6428. height: math.unit(2, "meters")
  6429. },
  6430. {
  6431. name: "Normal",
  6432. height: math.unit(3, "meters")
  6433. },
  6434. {
  6435. name: "Macro",
  6436. height: math.unit(16, "meters"),
  6437. default: true
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(2, "meters"),
  6446. weight: math.unit(120, "kg"),
  6447. name: "Front",
  6448. image: {
  6449. source: "./media/characters/miranda/front.svg",
  6450. extra: 195 / 185,
  6451. bottom: 10.9 / 206.5
  6452. }
  6453. },
  6454. back: {
  6455. height: math.unit(2, "meters"),
  6456. weight: math.unit(120, "kg"),
  6457. name: "Back",
  6458. image: {
  6459. source: "./media/characters/miranda/back.svg",
  6460. extra: 201 / 193,
  6461. bottom: 2.3 / 203.7
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(10, "feet"),
  6469. default: true
  6470. }
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "James", species: ["deer"], tags: ["anthro"] },
  6475. {
  6476. side: {
  6477. height: math.unit(2, "meters"),
  6478. weight: math.unit(100, "kg"),
  6479. name: "Front",
  6480. image: {
  6481. source: "./media/characters/james/front.svg",
  6482. extra: 10 / 8.5
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(8.5, "feet"),
  6490. default: true
  6491. }
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6496. {
  6497. side: {
  6498. height: math.unit(9.5, "feet"),
  6499. weight: math.unit(2500, "lbs"),
  6500. name: "Side",
  6501. image: {
  6502. source: "./media/characters/heather/side.svg"
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Normal",
  6509. height: math.unit(9.5, "feet"),
  6510. default: true
  6511. }
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6516. {
  6517. side: {
  6518. height: math.unit(6.5, "feet"),
  6519. weight: math.unit(400, "lbs"),
  6520. name: "Side",
  6521. image: {
  6522. source: "./media/characters/lukas/side.svg",
  6523. extra: 7.25 / 6.5
  6524. }
  6525. },
  6526. },
  6527. [
  6528. {
  6529. name: "Normal",
  6530. height: math.unit(6.5, "feet"),
  6531. default: true
  6532. }
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6537. {
  6538. side: {
  6539. height: math.unit(5, "feet"),
  6540. weight: math.unit(3000, "lbs"),
  6541. name: "Side",
  6542. image: {
  6543. source: "./media/characters/louise/side.svg"
  6544. }
  6545. },
  6546. },
  6547. [
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(5, "feet"),
  6551. default: true
  6552. }
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6557. {
  6558. side: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(150, "lbs"),
  6561. name: "Side",
  6562. image: {
  6563. source: "./media/characters/ramona/side.svg",
  6564. extra: 871/854,
  6565. bottom: 41/912
  6566. }
  6567. },
  6568. },
  6569. [
  6570. {
  6571. name: "Normal",
  6572. height: math.unit(6 + 4/12, "feet")
  6573. },
  6574. {
  6575. name: "Minimacro",
  6576. height: math.unit(5.3, "meters"),
  6577. default: true
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(20, "stories")
  6582. },
  6583. {
  6584. name: "Macro+",
  6585. height: math.unit(50, "stories")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6591. {
  6592. standing: {
  6593. height: math.unit(5.75, "feet"),
  6594. weight: math.unit(160, "lbs"),
  6595. name: "Standing",
  6596. image: {
  6597. source: "./media/characters/deerpuff/standing.svg",
  6598. extra: 682 / 624
  6599. }
  6600. },
  6601. sitting: {
  6602. height: math.unit(5.75 / 1.79, "feet"),
  6603. weight: math.unit(160, "lbs"),
  6604. name: "Sitting",
  6605. image: {
  6606. source: "./media/characters/deerpuff/sitting.svg",
  6607. bottom: 44 / 400,
  6608. extra: 1
  6609. }
  6610. },
  6611. taurLaying: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(400, "lbs"),
  6614. name: "Taur (Laying)",
  6615. image: {
  6616. source: "./media/characters/deerpuff/taur-laying.svg"
  6617. }
  6618. },
  6619. },
  6620. [
  6621. {
  6622. name: "Puffball",
  6623. height: math.unit(6, "inches")
  6624. },
  6625. {
  6626. name: "Normalpuff",
  6627. height: math.unit(5.75, "feet")
  6628. },
  6629. {
  6630. name: "Macropuff",
  6631. height: math.unit(1500, "feet"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Megapuff",
  6636. height: math.unit(500, "miles")
  6637. },
  6638. {
  6639. name: "Gigapuff",
  6640. height: math.unit(250000, "miles")
  6641. },
  6642. {
  6643. name: "Omegapuff",
  6644. height: math.unit(1000, "lightyears")
  6645. },
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6650. {
  6651. stomping: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(170, "lbs"),
  6654. name: "Stomping",
  6655. image: {
  6656. source: "./media/characters/vivian/stomping.svg"
  6657. }
  6658. },
  6659. sitting: {
  6660. height: math.unit(6 / 1.75, "feet"),
  6661. weight: math.unit(170, "lbs"),
  6662. name: "Sitting",
  6663. image: {
  6664. source: "./media/characters/vivian/sitting.svg",
  6665. bottom: 1 / 6.4,
  6666. extra: 1,
  6667. }
  6668. },
  6669. },
  6670. [
  6671. {
  6672. name: "Normal",
  6673. height: math.unit(7, "feet"),
  6674. default: true
  6675. },
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(10, "stories")
  6679. },
  6680. {
  6681. name: "Macro+",
  6682. height: math.unit(30, "stories")
  6683. },
  6684. {
  6685. name: "Megamacro",
  6686. height: math.unit(10, "miles")
  6687. },
  6688. {
  6689. name: "Megamacro+",
  6690. height: math.unit(2750000, "meters")
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(160, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/prince/front.svg",
  6703. extra: 1938/1682,
  6704. bottom: 45/1983
  6705. }
  6706. },
  6707. back: {
  6708. height: math.unit(6, "feet"),
  6709. weight: math.unit(160, "lbs"),
  6710. name: "Back",
  6711. image: {
  6712. source: "./media/characters/prince/back.svg",
  6713. extra: 1955/1726,
  6714. bottom: 6/1961
  6715. }
  6716. },
  6717. },
  6718. [
  6719. {
  6720. name: "Normal",
  6721. height: math.unit(7.75, "feet"),
  6722. default: true
  6723. },
  6724. {
  6725. name: "Not cute",
  6726. height: math.unit(17, "feet")
  6727. },
  6728. {
  6729. name: "I said NOT",
  6730. height: math.unit(91, "feet")
  6731. },
  6732. {
  6733. name: "Please stop",
  6734. height: math.unit(560, "feet")
  6735. },
  6736. {
  6737. name: "What have you done",
  6738. height: math.unit(2200, "feet")
  6739. },
  6740. {
  6741. name: "Deer God",
  6742. height: math.unit(3.6, "miles")
  6743. },
  6744. ]
  6745. ))
  6746. characterMakers.push(() => makeCharacter(
  6747. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6748. {
  6749. standing: {
  6750. height: math.unit(6, "feet"),
  6751. weight: math.unit(300, "lbs"),
  6752. name: "Standing",
  6753. image: {
  6754. source: "./media/characters/psymon/standing.svg",
  6755. extra: 1888 / 1810,
  6756. bottom: 0.05
  6757. }
  6758. },
  6759. slithering: {
  6760. height: math.unit(6, "feet"),
  6761. weight: math.unit(300, "lbs"),
  6762. name: "Slithering",
  6763. image: {
  6764. source: "./media/characters/psymon/slithering.svg",
  6765. extra: 1330 / 1224
  6766. }
  6767. },
  6768. slitheringAlt: {
  6769. height: math.unit(6, "feet"),
  6770. weight: math.unit(300, "lbs"),
  6771. name: "Slithering (Alt)",
  6772. image: {
  6773. source: "./media/characters/psymon/slithering-alt.svg",
  6774. extra: 1330 / 1224
  6775. }
  6776. },
  6777. },
  6778. [
  6779. {
  6780. name: "Normal",
  6781. height: math.unit(11.25, "feet"),
  6782. default: true
  6783. },
  6784. {
  6785. name: "Large",
  6786. height: math.unit(27, "feet")
  6787. },
  6788. {
  6789. name: "Giant",
  6790. height: math.unit(87, "feet")
  6791. },
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(365, "feet")
  6795. },
  6796. {
  6797. name: "Megamacro",
  6798. height: math.unit(3, "miles")
  6799. },
  6800. {
  6801. name: "World Serpent",
  6802. height: math.unit(8000, "miles")
  6803. },
  6804. ]
  6805. ))
  6806. characterMakers.push(() => makeCharacter(
  6807. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6808. {
  6809. front: {
  6810. height: math.unit(6, "feet"),
  6811. weight: math.unit(180, "lbs"),
  6812. name: "Front",
  6813. image: {
  6814. source: "./media/characters/daimos/front.svg",
  6815. extra: 4160 / 3897,
  6816. bottom: 0.021
  6817. }
  6818. }
  6819. },
  6820. [
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(8, "feet"),
  6824. default: true
  6825. },
  6826. {
  6827. name: "Big Dog",
  6828. height: math.unit(22, "feet")
  6829. },
  6830. {
  6831. name: "Macro",
  6832. height: math.unit(127, "feet")
  6833. },
  6834. {
  6835. name: "Megamacro",
  6836. height: math.unit(3600, "feet")
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6842. {
  6843. side: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(180, "lbs"),
  6846. name: "Side",
  6847. image: {
  6848. source: "./media/characters/blake/side.svg",
  6849. extra: 1212 / 1120,
  6850. bottom: 0.05
  6851. }
  6852. },
  6853. crouched: {
  6854. height: math.unit(6 * 0.57, "feet"),
  6855. weight: math.unit(180, "lbs"),
  6856. name: "Crouched",
  6857. image: {
  6858. source: "./media/characters/blake/crouched.svg",
  6859. extra: 840 / 587,
  6860. bottom: 0.04
  6861. }
  6862. },
  6863. bent: {
  6864. height: math.unit(6 * 0.75, "feet"),
  6865. weight: math.unit(180, "lbs"),
  6866. name: "Bent",
  6867. image: {
  6868. source: "./media/characters/blake/bent.svg",
  6869. extra: 592 / 544,
  6870. bottom: 0.035
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Normal",
  6877. height: math.unit(8 + 1 / 6, "feet"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Big Backside",
  6882. height: math.unit(37, "feet")
  6883. },
  6884. {
  6885. name: "Subway Shredder",
  6886. height: math.unit(72, "feet")
  6887. },
  6888. {
  6889. name: "City Carver",
  6890. height: math.unit(1675, "feet")
  6891. },
  6892. {
  6893. name: "Tectonic Tweaker",
  6894. height: math.unit(2300, "miles")
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(180, "lbs"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/guisetto/front.svg",
  6907. extra: 856 / 817,
  6908. bottom: 0.06
  6909. }
  6910. },
  6911. airborne: {
  6912. height: math.unit(6, "feet"),
  6913. weight: math.unit(180, "lbs"),
  6914. name: "Airborne",
  6915. image: {
  6916. source: "./media/characters/guisetto/airborne.svg",
  6917. extra: 584 / 525
  6918. }
  6919. },
  6920. },
  6921. [
  6922. {
  6923. name: "Normal",
  6924. height: math.unit(10 + 11 / 12, "feet"),
  6925. default: true
  6926. },
  6927. {
  6928. name: "Large",
  6929. height: math.unit(35, "feet")
  6930. },
  6931. {
  6932. name: "Macro",
  6933. height: math.unit(475, "feet")
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(180, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/luxor/front.svg",
  6946. extra: 2940 / 2152
  6947. }
  6948. },
  6949. back: {
  6950. height: math.unit(6, "feet"),
  6951. weight: math.unit(180, "lbs"),
  6952. name: "Back",
  6953. image: {
  6954. source: "./media/characters/luxor/back.svg",
  6955. extra: 1083 / 960
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(5 + 5 / 6, "feet"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "Lamp",
  6967. height: math.unit(50, "feet")
  6968. },
  6969. {
  6970. name: "Lämp",
  6971. height: math.unit(300, "feet")
  6972. },
  6973. {
  6974. name: "The sun is a lamp",
  6975. height: math.unit(250000, "miles")
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6981. {
  6982. front: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(50, "lbs"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/huoyan/front.svg"
  6988. }
  6989. },
  6990. side: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(180, "lbs"),
  6993. name: "Side",
  6994. image: {
  6995. source: "./media/characters/huoyan/side.svg"
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "Chef",
  7002. height: math.unit(9, "feet")
  7003. },
  7004. {
  7005. name: "Normal",
  7006. height: math.unit(65, "feet"),
  7007. default: true
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(780, "feet")
  7012. },
  7013. {
  7014. name: "Flaming Mountain",
  7015. height: math.unit(4.8, "miles")
  7016. },
  7017. {
  7018. name: "Celestial",
  7019. height: math.unit(765000, "miles")
  7020. },
  7021. ]
  7022. ))
  7023. characterMakers.push(() => makeCharacter(
  7024. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  7025. {
  7026. front: {
  7027. height: math.unit(5 + 3 / 4, "feet"),
  7028. weight: math.unit(120, "lbs"),
  7029. name: "Front",
  7030. image: {
  7031. source: "./media/characters/tails/front.svg"
  7032. }
  7033. }
  7034. },
  7035. [
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(5 + 3 / 4, "feet"),
  7039. default: true
  7040. }
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(4, "feet"),
  7048. weight: math.unit(50, "lbs"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/rainy/front.svg"
  7052. }
  7053. }
  7054. },
  7055. [
  7056. {
  7057. name: "Macro",
  7058. height: math.unit(800, "feet"),
  7059. default: true
  7060. }
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  7065. {
  7066. front: {
  7067. height: math.unit(6, "feet"),
  7068. weight: math.unit(150, "lbs"),
  7069. name: "Front",
  7070. image: {
  7071. source: "./media/characters/rainier/front.svg"
  7072. }
  7073. }
  7074. },
  7075. [
  7076. {
  7077. name: "Micro",
  7078. height: math.unit(2, "mm"),
  7079. default: true
  7080. }
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(8 + 4/12, "feet"),
  7088. weight: math.unit(450, "kilograms"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/andy-renard/front.svg",
  7092. extra: 862/809,
  7093. bottom: 85/947
  7094. },
  7095. extraAttributes: {
  7096. "pawSize": {
  7097. name: "Paw Size",
  7098. power: 2,
  7099. type: "area",
  7100. base: math.unit(0.45*0.3, "meters^2")
  7101. },
  7102. "handSize": {
  7103. name: "Hand Size",
  7104. power: 2,
  7105. type: "area",
  7106. base: math.unit(0.4 * 0.3, "meters^2")
  7107. },
  7108. "cockSize": {
  7109. name: "Cock Length",
  7110. power: 1,
  7111. type: "length",
  7112. base: math.unit(0.75, "meters")
  7113. },
  7114. "ballDiameter": {
  7115. name: "Ball Diameter",
  7116. power: 1,
  7117. type: "length",
  7118. base: math.unit(0.3, "meters")
  7119. },
  7120. "ballVolume": {
  7121. name: "Ball Volume",
  7122. power: 3,
  7123. type: "volume",
  7124. base: math.unit(0.01413716694, "meters^3")
  7125. },
  7126. }
  7127. },
  7128. back: {
  7129. height: math.unit(8 + 4/12, "feet"),
  7130. weight: math.unit(450, "kilograms"),
  7131. name: "Back",
  7132. image: {
  7133. source: "./media/characters/andy-renard/back.svg",
  7134. extra: 1112/1033,
  7135. bottom: 64/1176
  7136. },
  7137. extraAttributes: {
  7138. "pawSize": {
  7139. name: "Paw Size",
  7140. power: 2,
  7141. type: "area",
  7142. base: math.unit(0.45*0.3, "meters^2")
  7143. },
  7144. "handSize": {
  7145. name: "Hand Size",
  7146. power: 2,
  7147. type: "area",
  7148. base: math.unit(0.4 * 0.3, "meters^2")
  7149. },
  7150. "cockSize": {
  7151. name: "Cock Length",
  7152. power: 1,
  7153. type: "length",
  7154. base: math.unit(0.75, "meters")
  7155. },
  7156. "ballDiameter": {
  7157. name: "Ball Diameter",
  7158. power: 1,
  7159. type: "length",
  7160. base: math.unit(0.3, "meters")
  7161. },
  7162. "ballVolume": {
  7163. name: "Ball Volume",
  7164. power: 3,
  7165. type: "volume",
  7166. base: math.unit(0.01413716694, "meters^3")
  7167. },
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Tall",
  7174. height: math.unit(6 + 8/12, "feet")
  7175. },
  7176. {
  7177. name: "Very Tall",
  7178. height: math.unit(8 + 4/12, "feet")
  7179. },
  7180. {
  7181. name: "Mini Macro",
  7182. height: math.unit(15, "feet"),
  7183. default: true
  7184. },
  7185. {
  7186. name: "Giant",
  7187. height: math.unit(50, "feet")
  7188. },
  7189. {
  7190. name: "Nice",
  7191. height: math.unit(69, "feet")
  7192. },
  7193. {
  7194. name: "Macro",
  7195. height: math.unit(100, "feet")
  7196. },
  7197. {
  7198. name: "Enormous",
  7199. height: math.unit(500, "feet")
  7200. },
  7201. {
  7202. name: "Gargantuan",
  7203. height: math.unit(1000, "feet")
  7204. },
  7205. {
  7206. name: "Mega",
  7207. height: math.unit(1, "mile")
  7208. },
  7209. {
  7210. name: "Giga",
  7211. height: math.unit(50, "miles")
  7212. },
  7213. {
  7214. name: "Tera",
  7215. height: math.unit(1000, "miles")
  7216. },
  7217. {
  7218. name: "Cosmic",
  7219. height: math.unit(1.5, "galaxies")
  7220. },
  7221. {
  7222. name: "God",
  7223. height: math.unit(1.5, "universes")
  7224. },
  7225. {
  7226. name: "Chief Execute God",
  7227. height: math.unit(1.5, "multiverses")
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(6, "feet"),
  7236. weight: math.unit(210, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/cimmaron/front-sfw.svg",
  7240. extra: 701 / 676,
  7241. bottom: 0.046
  7242. }
  7243. },
  7244. back: {
  7245. height: math.unit(6, "feet"),
  7246. weight: math.unit(210, "lbs"),
  7247. name: "Back",
  7248. image: {
  7249. source: "./media/characters/cimmaron/back-sfw.svg",
  7250. extra: 701 / 676,
  7251. bottom: 0.046
  7252. }
  7253. },
  7254. frontNsfw: {
  7255. height: math.unit(6, "feet"),
  7256. weight: math.unit(210, "lbs"),
  7257. name: "Front (NSFW)",
  7258. image: {
  7259. source: "./media/characters/cimmaron/front-nsfw.svg",
  7260. extra: 701 / 676,
  7261. bottom: 0.046
  7262. }
  7263. },
  7264. backNsfw: {
  7265. height: math.unit(6, "feet"),
  7266. weight: math.unit(210, "lbs"),
  7267. name: "Back (NSFW)",
  7268. image: {
  7269. source: "./media/characters/cimmaron/back-nsfw.svg",
  7270. extra: 701 / 676,
  7271. bottom: 0.046
  7272. }
  7273. },
  7274. dick: {
  7275. height: math.unit(1.714, "feet"),
  7276. name: "Dick",
  7277. image: {
  7278. source: "./media/characters/cimmaron/dick.svg"
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Normal",
  7285. height: math.unit(6, "feet"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Macro Mayor",
  7290. height: math.unit(350, "meters")
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(200, "lbs"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/akari/front.svg",
  7303. extra: 962 / 901,
  7304. bottom: 0.04
  7305. }
  7306. }
  7307. },
  7308. [
  7309. {
  7310. name: "Micro",
  7311. height: math.unit(5, "inches"),
  7312. default: true
  7313. },
  7314. {
  7315. name: "Normal",
  7316. height: math.unit(7, "feet")
  7317. },
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7322. {
  7323. front: {
  7324. height: math.unit(6, "feet"),
  7325. weight: math.unit(140, "lbs"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/cynosura/front.svg",
  7329. extra: 437/410,
  7330. bottom: 9/446
  7331. }
  7332. },
  7333. back: {
  7334. height: math.unit(6, "feet"),
  7335. weight: math.unit(140, "lbs"),
  7336. name: "Back",
  7337. image: {
  7338. source: "./media/characters/cynosura/back.svg",
  7339. extra: 1304/1160,
  7340. bottom: 71/1375
  7341. }
  7342. },
  7343. },
  7344. [
  7345. {
  7346. name: "Micro",
  7347. height: math.unit(4, "inches")
  7348. },
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(5.75, "feet"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Tall",
  7356. height: math.unit(10, "feet")
  7357. },
  7358. {
  7359. name: "Big",
  7360. height: math.unit(20, "feet")
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(50, "feet")
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(13 + 2/12, "feet"),
  7373. weight: math.unit(800, "kg"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/gin/front.svg",
  7377. extra: 1312/1191,
  7378. bottom: 45/1357
  7379. }
  7380. },
  7381. mouth: {
  7382. height: math.unit(2.39 * 1.8, "feet"),
  7383. name: "Mouth",
  7384. image: {
  7385. source: "./media/characters/gin/mouth.svg"
  7386. }
  7387. },
  7388. hand: {
  7389. height: math.unit(1.57 * 2.19, "feet"),
  7390. name: "Hand",
  7391. image: {
  7392. source: "./media/characters/gin/hand.svg"
  7393. }
  7394. },
  7395. foot: {
  7396. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7397. name: "Foot",
  7398. image: {
  7399. source: "./media/characters/gin/foot.svg"
  7400. }
  7401. },
  7402. sole: {
  7403. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7404. name: "Sole",
  7405. image: {
  7406. source: "./media/characters/gin/sole.svg"
  7407. }
  7408. },
  7409. },
  7410. [
  7411. {
  7412. name: "Very Small",
  7413. height: math.unit(13 + 2 / 12, "feet")
  7414. },
  7415. {
  7416. name: "Micro",
  7417. height: math.unit(600, "miles")
  7418. },
  7419. {
  7420. name: "Regular",
  7421. height: math.unit(20, "earths"),
  7422. default: true
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(2.2, "solarradii")
  7427. },
  7428. {
  7429. name: "Teramacro",
  7430. height: math.unit(1.2, "galaxies")
  7431. },
  7432. {
  7433. name: "Omegamacro",
  7434. height: math.unit(200, "universes")
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7440. {
  7441. front: {
  7442. height: math.unit(6 + 1 / 6, "feet"),
  7443. weight: math.unit(178, "lbs"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/guy/front.svg"
  7447. }
  7448. }
  7449. },
  7450. [
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(6 + 1 / 6, "feet"),
  7454. default: true
  7455. },
  7456. {
  7457. name: "Large",
  7458. height: math.unit(25 + 7 / 12, "feet")
  7459. },
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(60 + 9 / 12, "feet")
  7463. },
  7464. {
  7465. name: "Macro+",
  7466. height: math.unit(246, "feet")
  7467. },
  7468. {
  7469. name: "Macro++",
  7470. height: math.unit(878, "feet")
  7471. }
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(9, "feet"),
  7479. weight: math.unit(800, "lbs"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/tiberius/front.svg",
  7483. extra: 2295 / 2071
  7484. }
  7485. },
  7486. back: {
  7487. height: math.unit(9, "feet"),
  7488. weight: math.unit(800, "lbs"),
  7489. name: "Back",
  7490. image: {
  7491. source: "./media/characters/tiberius/back.svg",
  7492. extra: 2373 / 2160
  7493. }
  7494. },
  7495. },
  7496. [
  7497. {
  7498. name: "Normal",
  7499. height: math.unit(9, "feet"),
  7500. default: true
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7506. {
  7507. front: {
  7508. height: math.unit(6, "feet"),
  7509. weight: math.unit(600, "lbs"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/surgo/front.svg",
  7513. extra: 3591 / 2227
  7514. }
  7515. },
  7516. back: {
  7517. height: math.unit(6, "feet"),
  7518. weight: math.unit(600, "lbs"),
  7519. name: "Back",
  7520. image: {
  7521. source: "./media/characters/surgo/back.svg",
  7522. extra: 3557 / 2228
  7523. }
  7524. },
  7525. laying: {
  7526. height: math.unit(6 * 0.85, "feet"),
  7527. weight: math.unit(600, "lbs"),
  7528. name: "Laying",
  7529. image: {
  7530. source: "./media/characters/surgo/laying.svg"
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(6, "feet"),
  7538. default: true
  7539. }
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7544. {
  7545. side: {
  7546. height: math.unit(6, "feet"),
  7547. weight: math.unit(150, "lbs"),
  7548. name: "Side",
  7549. image: {
  7550. source: "./media/characters/cibus/side.svg",
  7551. extra: 800 / 400
  7552. }
  7553. },
  7554. },
  7555. [
  7556. {
  7557. name: "Normal",
  7558. height: math.unit(6, "feet"),
  7559. default: true
  7560. }
  7561. ]
  7562. ))
  7563. characterMakers.push(() => makeCharacter(
  7564. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7565. {
  7566. front: {
  7567. height: math.unit(6, "feet"),
  7568. weight: math.unit(240, "lbs"),
  7569. name: "Front",
  7570. image: {
  7571. source: "./media/characters/nibbles/front.svg"
  7572. }
  7573. },
  7574. side: {
  7575. height: math.unit(6, "feet"),
  7576. weight: math.unit(240, "lbs"),
  7577. name: "Side",
  7578. image: {
  7579. source: "./media/characters/nibbles/side.svg"
  7580. }
  7581. },
  7582. },
  7583. [
  7584. {
  7585. name: "Normal",
  7586. height: math.unit(9, "feet"),
  7587. default: true
  7588. }
  7589. ]
  7590. ))
  7591. characterMakers.push(() => makeCharacter(
  7592. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7593. {
  7594. side: {
  7595. height: math.unit(5 + 1 / 6, "feet"),
  7596. weight: math.unit(130, "lbs"),
  7597. name: "Side",
  7598. image: {
  7599. source: "./media/characters/rikky/side.svg",
  7600. extra: 851 / 801
  7601. }
  7602. },
  7603. },
  7604. [
  7605. {
  7606. name: "Normal",
  7607. height: math.unit(5 + 1 / 6, "feet")
  7608. },
  7609. {
  7610. name: "Macro",
  7611. height: math.unit(152, "feet"),
  7612. default: true
  7613. },
  7614. {
  7615. name: "Megamacro",
  7616. height: math.unit(7, "miles")
  7617. }
  7618. ]
  7619. ))
  7620. characterMakers.push(() => makeCharacter(
  7621. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7622. {
  7623. side: {
  7624. height: math.unit(370, "cm"),
  7625. weight: math.unit(350, "lbs"),
  7626. name: "Side",
  7627. image: {
  7628. source: "./media/characters/malfressa/side.svg"
  7629. }
  7630. },
  7631. walking: {
  7632. height: math.unit(370, "cm"),
  7633. weight: math.unit(350, "lbs"),
  7634. name: "Walking",
  7635. image: {
  7636. source: "./media/characters/malfressa/walking.svg"
  7637. }
  7638. },
  7639. feral: {
  7640. height: math.unit(2500, "cm"),
  7641. weight: math.unit(100000, "lbs"),
  7642. name: "Feral",
  7643. image: {
  7644. source: "./media/characters/malfressa/feral.svg",
  7645. extra: 2108 / 837,
  7646. bottom: 0.02
  7647. }
  7648. },
  7649. },
  7650. [
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(370, "cm")
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(300, "meters"),
  7658. default: true
  7659. }
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(60, "kg"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/jaro/front.svg",
  7671. extra: 845/817,
  7672. bottom: 45/890
  7673. }
  7674. },
  7675. back: {
  7676. height: math.unit(6, "feet"),
  7677. weight: math.unit(60, "kg"),
  7678. name: "Back",
  7679. image: {
  7680. source: "./media/characters/jaro/back.svg",
  7681. extra: 847/817,
  7682. bottom: 34/881
  7683. }
  7684. },
  7685. },
  7686. [
  7687. {
  7688. name: "Micro",
  7689. height: math.unit(7, "inches")
  7690. },
  7691. {
  7692. name: "Normal",
  7693. height: math.unit(5.5, "feet"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Minimacro",
  7698. height: math.unit(20, "feet")
  7699. },
  7700. {
  7701. name: "Macro",
  7702. height: math.unit(200, "meters")
  7703. }
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(6, "feet"),
  7711. weight: math.unit(195, "lb"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/rogue/front.svg"
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Macro",
  7721. height: math.unit(90, "feet"),
  7722. default: true
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7728. {
  7729. standing: {
  7730. height: math.unit(5 + 8 / 12, "feet"),
  7731. weight: math.unit(140, "lb"),
  7732. name: "Standing",
  7733. image: {
  7734. source: "./media/characters/piper/standing.svg",
  7735. extra: 1440/1284,
  7736. bottom: 66/1506
  7737. }
  7738. },
  7739. running: {
  7740. height: math.unit(5 + 8 / 12, "feet"),
  7741. weight: math.unit(140, "lb"),
  7742. name: "Running",
  7743. image: {
  7744. source: "./media/characters/piper/running.svg",
  7745. extra: 3948/3655,
  7746. bottom: 0/3948
  7747. }
  7748. },
  7749. sole: {
  7750. height: math.unit(0.81, "feet"),
  7751. weight: math.unit(2, "kg"),
  7752. name: "Sole",
  7753. image: {
  7754. source: "./media/characters/piper/sole.svg"
  7755. }
  7756. },
  7757. nipple: {
  7758. height: math.unit(0.25, "feet"),
  7759. weight: math.unit(1.5, "lb"),
  7760. name: "Nipple",
  7761. image: {
  7762. source: "./media/characters/piper/nipple.svg"
  7763. }
  7764. },
  7765. head: {
  7766. height: math.unit(1.1, "feet"),
  7767. name: "Head",
  7768. image: {
  7769. source: "./media/characters/piper/head.svg"
  7770. }
  7771. },
  7772. },
  7773. [
  7774. {
  7775. name: "Micro",
  7776. height: math.unit(2, "inches")
  7777. },
  7778. {
  7779. name: "Normal",
  7780. height: math.unit(5 + 8 / 12, "feet")
  7781. },
  7782. {
  7783. name: "Macro",
  7784. height: math.unit(250, "feet"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Megamacro",
  7789. height: math.unit(7, "miles")
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(6, "feet"),
  7798. weight: math.unit(220, "lb"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/gemini/front.svg"
  7802. }
  7803. },
  7804. back: {
  7805. height: math.unit(6, "feet"),
  7806. weight: math.unit(220, "lb"),
  7807. name: "Back",
  7808. image: {
  7809. source: "./media/characters/gemini/back.svg"
  7810. }
  7811. },
  7812. kneeling: {
  7813. height: math.unit(6 / 1.5, "feet"),
  7814. weight: math.unit(220, "lb"),
  7815. name: "Kneeling",
  7816. image: {
  7817. source: "./media/characters/gemini/kneeling.svg",
  7818. bottom: 0.02
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(300, "meters"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Megamacro",
  7830. height: math.unit(6900, "meters")
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7836. {
  7837. anthro: {
  7838. height: math.unit(2.35, "meters"),
  7839. weight: math.unit(73, "kg"),
  7840. name: "Anthro",
  7841. image: {
  7842. source: "./media/characters/alicia/anthro.svg",
  7843. extra: 2571 / 2385,
  7844. bottom: 75 / 2648
  7845. }
  7846. },
  7847. paw: {
  7848. height: math.unit(1.32, "feet"),
  7849. name: "Paw",
  7850. image: {
  7851. source: "./media/characters/alicia/paw.svg"
  7852. }
  7853. },
  7854. feral: {
  7855. height: math.unit(1.69, "meters"),
  7856. weight: math.unit(73, "kg"),
  7857. name: "Feral",
  7858. image: {
  7859. source: "./media/characters/alicia/feral.svg",
  7860. extra: 2123 / 1715,
  7861. bottom: 222 / 2349
  7862. }
  7863. },
  7864. },
  7865. [
  7866. {
  7867. name: "Normal",
  7868. height: math.unit(2.35, "meters")
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(60, "meters"),
  7873. default: true
  7874. },
  7875. {
  7876. name: "Megamacro",
  7877. height: math.unit(10000, "kilometers")
  7878. },
  7879. ]
  7880. ))
  7881. characterMakers.push(() => makeCharacter(
  7882. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7883. {
  7884. front: {
  7885. height: math.unit(7, "feet"),
  7886. weight: math.unit(250, "lbs"),
  7887. name: "Front",
  7888. image: {
  7889. source: "./media/characters/archy/front.svg"
  7890. }
  7891. }
  7892. },
  7893. [
  7894. {
  7895. name: "Micro",
  7896. height: math.unit(1, "inch")
  7897. },
  7898. {
  7899. name: "Shorty",
  7900. height: math.unit(5, "feet")
  7901. },
  7902. {
  7903. name: "Normal",
  7904. height: math.unit(7, "feet")
  7905. },
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(600, "meters"),
  7909. default: true
  7910. },
  7911. {
  7912. name: "Megamacro",
  7913. height: math.unit(1, "mile")
  7914. },
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(1.65, "meters"),
  7922. weight: math.unit(74, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/berri/front.svg",
  7926. extra: 857 / 837,
  7927. bottom: 18 / 877
  7928. }
  7929. },
  7930. bum: {
  7931. height: math.unit(1.46, "feet"),
  7932. name: "Bum",
  7933. image: {
  7934. source: "./media/characters/berri/bum.svg"
  7935. }
  7936. },
  7937. mouth: {
  7938. height: math.unit(0.44, "feet"),
  7939. name: "Mouth",
  7940. image: {
  7941. source: "./media/characters/berri/mouth.svg"
  7942. }
  7943. },
  7944. paw: {
  7945. height: math.unit(0.826, "feet"),
  7946. name: "Paw",
  7947. image: {
  7948. source: "./media/characters/berri/paw.svg"
  7949. }
  7950. },
  7951. },
  7952. [
  7953. {
  7954. name: "Normal",
  7955. height: math.unit(1.65, "meters")
  7956. },
  7957. {
  7958. name: "Macro",
  7959. height: math.unit(60, "m"),
  7960. default: true
  7961. },
  7962. {
  7963. name: "Megamacro",
  7964. height: math.unit(9.213, "km")
  7965. },
  7966. {
  7967. name: "Planet Eater",
  7968. height: math.unit(489, "megameters")
  7969. },
  7970. {
  7971. name: "Teramacro",
  7972. height: math.unit(2471635000000, "meters")
  7973. },
  7974. {
  7975. name: "Examacro",
  7976. height: math.unit(8.0624e+26, "meters")
  7977. }
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7982. {
  7983. front: {
  7984. height: math.unit(1.72, "meters"),
  7985. weight: math.unit(68, "kg"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/lexi/front.svg"
  7989. }
  7990. }
  7991. },
  7992. [
  7993. {
  7994. name: "Very Smol",
  7995. height: math.unit(10, "mm")
  7996. },
  7997. {
  7998. name: "Micro",
  7999. height: math.unit(6.8, "cm"),
  8000. default: true
  8001. },
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(1.72, "m")
  8005. }
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  8010. {
  8011. front: {
  8012. height: math.unit(1.69, "meters"),
  8013. weight: math.unit(68, "kg"),
  8014. name: "Front",
  8015. image: {
  8016. source: "./media/characters/martin/front.svg",
  8017. extra: 596 / 581
  8018. }
  8019. }
  8020. },
  8021. [
  8022. {
  8023. name: "Micro",
  8024. height: math.unit(6.85, "cm"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Normal",
  8029. height: math.unit(1.69, "m")
  8030. }
  8031. ]
  8032. ))
  8033. characterMakers.push(() => makeCharacter(
  8034. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  8035. {
  8036. front: {
  8037. height: math.unit(1.69, "meters"),
  8038. weight: math.unit(68, "kg"),
  8039. name: "Front",
  8040. image: {
  8041. source: "./media/characters/juno/front.svg"
  8042. }
  8043. }
  8044. },
  8045. [
  8046. {
  8047. name: "Micro",
  8048. height: math.unit(7, "cm")
  8049. },
  8050. {
  8051. name: "Normal",
  8052. height: math.unit(1.89, "m")
  8053. },
  8054. {
  8055. name: "Macro",
  8056. height: math.unit(353, "meters"),
  8057. default: true
  8058. }
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  8063. {
  8064. front: {
  8065. height: math.unit(1.93, "meters"),
  8066. weight: math.unit(83, "kg"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/samantha/front.svg"
  8070. }
  8071. },
  8072. frontClothed: {
  8073. height: math.unit(1.93, "meters"),
  8074. weight: math.unit(83, "kg"),
  8075. name: "Front (Clothed)",
  8076. image: {
  8077. source: "./media/characters/samantha/front-clothed.svg"
  8078. }
  8079. },
  8080. back: {
  8081. height: math.unit(1.93, "meters"),
  8082. weight: math.unit(83, "kg"),
  8083. name: "Back",
  8084. image: {
  8085. source: "./media/characters/samantha/back.svg"
  8086. }
  8087. },
  8088. },
  8089. [
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(1.93, "m")
  8093. },
  8094. {
  8095. name: "Macro",
  8096. height: math.unit(74, "meters"),
  8097. default: true
  8098. },
  8099. {
  8100. name: "Macro+",
  8101. height: math.unit(223, "meters"),
  8102. },
  8103. {
  8104. name: "Megamacro",
  8105. height: math.unit(8381, "meters"),
  8106. },
  8107. {
  8108. name: "Megamacro+",
  8109. height: math.unit(12000, "kilometers")
  8110. },
  8111. ]
  8112. ))
  8113. characterMakers.push(() => makeCharacter(
  8114. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  8115. {
  8116. front: {
  8117. height: math.unit(1.92, "meters"),
  8118. weight: math.unit(80, "kg"),
  8119. name: "Front",
  8120. image: {
  8121. source: "./media/characters/dr-clay/front.svg"
  8122. }
  8123. },
  8124. frontClothed: {
  8125. height: math.unit(1.92, "meters"),
  8126. weight: math.unit(80, "kg"),
  8127. name: "Front (Clothed)",
  8128. image: {
  8129. source: "./media/characters/dr-clay/front-clothed.svg"
  8130. }
  8131. }
  8132. },
  8133. [
  8134. {
  8135. name: "Normal",
  8136. height: math.unit(1.92, "m")
  8137. },
  8138. {
  8139. name: "Macro",
  8140. height: math.unit(214, "meters"),
  8141. default: true
  8142. },
  8143. {
  8144. name: "Macro+",
  8145. height: math.unit(12.237, "meters"),
  8146. },
  8147. {
  8148. name: "Megamacro",
  8149. height: math.unit(557, "megameters"),
  8150. },
  8151. {
  8152. name: "Unimaginable",
  8153. height: math.unit(120e9, "lightyears")
  8154. },
  8155. ]
  8156. ))
  8157. characterMakers.push(() => makeCharacter(
  8158. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8159. {
  8160. front: {
  8161. height: math.unit(2, "meters"),
  8162. weight: math.unit(80, "kg"),
  8163. name: "Front",
  8164. image: {
  8165. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8166. }
  8167. }
  8168. },
  8169. [
  8170. {
  8171. name: "Teramacro",
  8172. height: math.unit(500000, "lightyears"),
  8173. default: true
  8174. },
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8179. {
  8180. crux: {
  8181. height: math.unit(2, "meters"),
  8182. weight: math.unit(150, "kg"),
  8183. name: "Crux",
  8184. image: {
  8185. source: "./media/characters/vemus/crux.svg",
  8186. extra: 1074/936,
  8187. bottom: 23/1097
  8188. }
  8189. },
  8190. skunkTanuki: {
  8191. height: math.unit(2, "meters"),
  8192. weight: math.unit(150, "kg"),
  8193. name: "Skunk-Tanuki",
  8194. image: {
  8195. source: "./media/characters/vemus/skunk-tanuki.svg",
  8196. extra: 926/893,
  8197. bottom: 20/946
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(4, "meters"),
  8205. default: true
  8206. },
  8207. {
  8208. name: "Big",
  8209. height: math.unit(8, "meters")
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(100, "meters")
  8214. },
  8215. {
  8216. name: "Macro+",
  8217. height: math.unit(1500, "meters")
  8218. },
  8219. {
  8220. name: "Stellar",
  8221. height: math.unit(14e8, "meters")
  8222. },
  8223. ]
  8224. ))
  8225. characterMakers.push(() => makeCharacter(
  8226. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8227. {
  8228. front: {
  8229. height: math.unit(2, "meters"),
  8230. weight: math.unit(70, "kg"),
  8231. name: "Front",
  8232. image: {
  8233. source: "./media/characters/beherit/front.svg",
  8234. extra: 1234/1109,
  8235. bottom: 55/1289
  8236. }
  8237. }
  8238. },
  8239. [
  8240. {
  8241. name: "Normal",
  8242. height: math.unit(6, "feet")
  8243. },
  8244. {
  8245. name: "Lorg",
  8246. height: math.unit(25, "feet"),
  8247. default: true
  8248. },
  8249. {
  8250. name: "Lorger",
  8251. height: math.unit(75, "feet")
  8252. },
  8253. {
  8254. name: "Macro",
  8255. height: math.unit(200, "meters")
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8261. {
  8262. front: {
  8263. height: math.unit(2, "meters"),
  8264. weight: math.unit(150, "kg"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/everett/front.svg",
  8268. extra: 1017/866,
  8269. bottom: 86/1103
  8270. }
  8271. },
  8272. paw: {
  8273. height: math.unit(2 / 3.6, "meters"),
  8274. name: "Paw",
  8275. image: {
  8276. source: "./media/characters/everett/paw.svg"
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(15, "feet"),
  8284. default: true
  8285. },
  8286. {
  8287. name: "Lorg",
  8288. height: math.unit(70, "feet"),
  8289. default: true
  8290. },
  8291. {
  8292. name: "Lorger",
  8293. height: math.unit(250, "feet")
  8294. },
  8295. {
  8296. name: "Macro",
  8297. height: math.unit(500, "meters")
  8298. },
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(2, "meters"),
  8306. weight: math.unit(86, "kg"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/rose/front.svg",
  8310. extra: 1785/1636,
  8311. bottom: 30/1815
  8312. },
  8313. form: "liom",
  8314. default: true
  8315. },
  8316. frontSporty: {
  8317. height: math.unit(2, "meters"),
  8318. weight: math.unit(86, "kg"),
  8319. name: "Front (Sporty)",
  8320. image: {
  8321. source: "./media/characters/rose/front-sporty.svg",
  8322. extra: 350/335,
  8323. bottom: 10/360
  8324. },
  8325. form: "liom"
  8326. },
  8327. frontAlt: {
  8328. height: math.unit(1.6, "meters"),
  8329. weight: math.unit(86, "kg"),
  8330. name: "Front (Alt)",
  8331. image: {
  8332. source: "./media/characters/rose/front-alt.svg",
  8333. extra: 299/283,
  8334. bottom: 3/302
  8335. },
  8336. form: "liom"
  8337. },
  8338. plush: {
  8339. height: math.unit(2, "meters"),
  8340. weight: math.unit(86/3, "kg"),
  8341. name: "Plush",
  8342. image: {
  8343. source: "./media/characters/rose/plush.svg",
  8344. extra: 361/337,
  8345. bottom: 11/372
  8346. },
  8347. form: "plush",
  8348. default: true
  8349. },
  8350. faeStanding: {
  8351. height: math.unit(10, "cm"),
  8352. weight: math.unit(10, "grams"),
  8353. name: "Standing",
  8354. image: {
  8355. source: "./media/characters/rose/fae-standing.svg",
  8356. extra: 1189/1060,
  8357. bottom: 27/1216
  8358. },
  8359. form: "fae",
  8360. default: true
  8361. },
  8362. faeSitting: {
  8363. height: math.unit(5, "cm"),
  8364. weight: math.unit(10, "grams"),
  8365. name: "Sitting",
  8366. image: {
  8367. source: "./media/characters/rose/fae-sitting.svg",
  8368. extra: 737/577,
  8369. bottom: 356/1093
  8370. },
  8371. form: "fae"
  8372. },
  8373. faePaw: {
  8374. height: math.unit(1.35, "cm"),
  8375. name: "Paw",
  8376. image: {
  8377. source: "./media/characters/rose/fae-paw.svg"
  8378. },
  8379. form: "fae"
  8380. },
  8381. fronttrueFae: {
  8382. height: math.unit(10, "cm"),
  8383. weight: math.unit(10, "grams"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/rose/true-fae-front.svg",
  8387. extra: 839/789,
  8388. bottom: 12/851
  8389. },
  8390. form: "true-fae",
  8391. default: true
  8392. },
  8393. },
  8394. [
  8395. {
  8396. name: "True Micro",
  8397. height: math.unit(9, "cm"),
  8398. form: "liom"
  8399. },
  8400. {
  8401. name: "Micro",
  8402. height: math.unit(16, "cm"),
  8403. form: "liom"
  8404. },
  8405. {
  8406. name: "Normal",
  8407. height: math.unit(1.85, "meters"),
  8408. default: true,
  8409. form: "liom"
  8410. },
  8411. {
  8412. name: "Mini-Macro",
  8413. height: math.unit(5, "meters"),
  8414. form: "liom"
  8415. },
  8416. {
  8417. name: "Macro",
  8418. height: math.unit(15, "meters"),
  8419. form: "liom"
  8420. },
  8421. {
  8422. name: "True Macro",
  8423. height: math.unit(40, "meters"),
  8424. form: "liom"
  8425. },
  8426. {
  8427. name: "City Scale",
  8428. height: math.unit(1, "km"),
  8429. form: "liom"
  8430. },
  8431. {
  8432. name: "Plushie",
  8433. height: math.unit(9, "cm"),
  8434. form: "plush",
  8435. default: true
  8436. },
  8437. {
  8438. name: "Fae",
  8439. height: math.unit(10, "cm"),
  8440. form: "fae",
  8441. default: true
  8442. },
  8443. {
  8444. name: "Fae",
  8445. height: math.unit(10, "cm"),
  8446. form: "true-fae",
  8447. default: true
  8448. },
  8449. ],
  8450. {
  8451. "liom": {
  8452. name: "Liom"
  8453. },
  8454. "plush": {
  8455. name: "Plush"
  8456. },
  8457. "fae": {
  8458. name: "Fae Fox",
  8459. default: true
  8460. },
  8461. "true-fae": {
  8462. name: "True Fae",
  8463. },
  8464. }
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8468. {
  8469. front: {
  8470. height: math.unit(2, "meters"),
  8471. weight: math.unit(350, "lbs"),
  8472. name: "Front",
  8473. image: {
  8474. source: "./media/characters/regal/front.svg"
  8475. }
  8476. },
  8477. back: {
  8478. height: math.unit(2, "meters"),
  8479. weight: math.unit(350, "lbs"),
  8480. name: "Back",
  8481. image: {
  8482. source: "./media/characters/regal/back.svg"
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(350, "feet"),
  8490. default: true
  8491. }
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8496. {
  8497. standing: {
  8498. height: math.unit(4 + 11/12, "feet"),
  8499. weight: math.unit(100, "lb"),
  8500. name: "Standing",
  8501. image: {
  8502. source: "./media/characters/opal/standing.svg",
  8503. extra: 1588/1513,
  8504. bottom: 23/1611
  8505. }
  8506. },
  8507. sitting: {
  8508. height: math.unit(2.3, "feet"),
  8509. weight: math.unit(100, "lb"),
  8510. name: "Sitting",
  8511. image: {
  8512. source: "./media/characters/opal/sitting.svg",
  8513. extra: 1031/892,
  8514. bottom: 142/1173
  8515. }
  8516. },
  8517. hand: {
  8518. height: math.unit(0.59, "feet"),
  8519. name: "Hand",
  8520. image: {
  8521. source: "./media/characters/opal/hand.svg"
  8522. }
  8523. },
  8524. foot: {
  8525. height: math.unit(0.61, "feet"),
  8526. name: "Foot",
  8527. image: {
  8528. source: "./media/characters/opal/foot.svg"
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Small",
  8535. height: math.unit(4 + 11 / 12, "feet")
  8536. },
  8537. {
  8538. name: "Normal",
  8539. height: math.unit(20, "feet"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(120, "feet")
  8545. },
  8546. {
  8547. name: "Megamacro",
  8548. height: math.unit(80, "miles")
  8549. },
  8550. {
  8551. name: "True Size",
  8552. height: math.unit(100000, "lightyears")
  8553. },
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8558. {
  8559. front: {
  8560. height: math.unit(6, "feet"),
  8561. weight: math.unit(200, "lbs"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/vector-wuff/front.svg"
  8565. }
  8566. }
  8567. },
  8568. [
  8569. {
  8570. name: "Normal",
  8571. height: math.unit(2.8, "meters")
  8572. },
  8573. {
  8574. name: "Macro",
  8575. height: math.unit(450, "meters"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Megamacro",
  8580. height: math.unit(15, "kilometers")
  8581. }
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8586. {
  8587. front: {
  8588. height: math.unit(6, "feet"),
  8589. weight: math.unit(256, "lbs"),
  8590. name: "Front",
  8591. image: {
  8592. source: "./media/characters/dannik/front.svg"
  8593. }
  8594. }
  8595. },
  8596. [
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(69.57, "meters"),
  8600. default: true
  8601. },
  8602. ]
  8603. ))
  8604. characterMakers.push(() => makeCharacter(
  8605. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8606. {
  8607. front: {
  8608. height: math.unit(6, "feet"),
  8609. weight: math.unit(120, "lbs"),
  8610. name: "Front",
  8611. image: {
  8612. source: "./media/characters/azura-saharah/front.svg"
  8613. }
  8614. },
  8615. back: {
  8616. height: math.unit(6, "feet"),
  8617. weight: math.unit(120, "lbs"),
  8618. name: "Back",
  8619. image: {
  8620. source: "./media/characters/azura-saharah/back.svg"
  8621. }
  8622. },
  8623. },
  8624. [
  8625. {
  8626. name: "Macro",
  8627. height: math.unit(100, "feet"),
  8628. default: true
  8629. },
  8630. ]
  8631. ))
  8632. characterMakers.push(() => makeCharacter(
  8633. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8634. {
  8635. side: {
  8636. height: math.unit(5 + 4 / 12, "feet"),
  8637. weight: math.unit(163, "lbs"),
  8638. name: "Side",
  8639. image: {
  8640. source: "./media/characters/kennedy/side.svg"
  8641. }
  8642. }
  8643. },
  8644. [
  8645. {
  8646. name: "Standard Doggo",
  8647. height: math.unit(5 + 4 / 12, "feet")
  8648. },
  8649. {
  8650. name: "Big Doggo",
  8651. height: math.unit(25 + 3 / 12, "feet"),
  8652. default: true
  8653. },
  8654. ]
  8655. ))
  8656. characterMakers.push(() => makeCharacter(
  8657. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8658. {
  8659. front: {
  8660. height: math.unit(5 + 5/12, "feet"),
  8661. weight: math.unit(100, "lbs"),
  8662. name: "Front",
  8663. image: {
  8664. source: "./media/characters/odios-de-lunar/front.svg",
  8665. extra: 1468/1323,
  8666. bottom: 22/1490
  8667. }
  8668. }
  8669. },
  8670. [
  8671. {
  8672. name: "Micro",
  8673. height: math.unit(3, "inches")
  8674. },
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(5.5, "feet"),
  8678. default: true
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(100, "feet")
  8683. },
  8684. ]
  8685. ))
  8686. characterMakers.push(() => makeCharacter(
  8687. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8688. {
  8689. back: {
  8690. height: math.unit(6, "feet"),
  8691. weight: math.unit(220, "lbs"),
  8692. name: "Back",
  8693. image: {
  8694. source: "./media/characters/mandake/back.svg"
  8695. }
  8696. }
  8697. },
  8698. [
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(7, "feet"),
  8702. default: true
  8703. },
  8704. {
  8705. name: "Macro",
  8706. height: math.unit(78, "feet")
  8707. },
  8708. {
  8709. name: "Macro+",
  8710. height: math.unit(300, "meters")
  8711. },
  8712. {
  8713. name: "Macro++",
  8714. height: math.unit(2400, "feet")
  8715. },
  8716. {
  8717. name: "Megamacro",
  8718. height: math.unit(5167, "meters")
  8719. },
  8720. {
  8721. name: "Gigamacro",
  8722. height: math.unit(41769, "miles")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(120, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/yozey/front.svg"
  8735. }
  8736. },
  8737. frontAlt: {
  8738. height: math.unit(6, "feet"),
  8739. weight: math.unit(120, "lbs"),
  8740. name: "Front (Alt)",
  8741. image: {
  8742. source: "./media/characters/yozey/front-alt.svg"
  8743. }
  8744. },
  8745. side: {
  8746. height: math.unit(6, "feet"),
  8747. weight: math.unit(120, "lbs"),
  8748. name: "Side",
  8749. image: {
  8750. source: "./media/characters/yozey/side.svg"
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Micro",
  8757. height: math.unit(3, "inches"),
  8758. default: true
  8759. },
  8760. {
  8761. name: "Normal",
  8762. height: math.unit(6, "feet")
  8763. }
  8764. ]
  8765. ))
  8766. characterMakers.push(() => makeCharacter(
  8767. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8768. {
  8769. front: {
  8770. height: math.unit(6, "feet"),
  8771. weight: math.unit(103, "lbs"),
  8772. name: "Front",
  8773. image: {
  8774. source: "./media/characters/valeska-voss/front.svg"
  8775. }
  8776. }
  8777. },
  8778. [
  8779. {
  8780. name: "Mini-Sized Sub",
  8781. height: math.unit(3.1, "inches")
  8782. },
  8783. {
  8784. name: "Mid-Sized Sub",
  8785. height: math.unit(6.2, "inches")
  8786. },
  8787. {
  8788. name: "Full-Sized Sub",
  8789. height: math.unit(9.3, "inches")
  8790. },
  8791. {
  8792. name: "Normal",
  8793. height: math.unit(5 + 2 / 12, "foot"),
  8794. default: true
  8795. },
  8796. ]
  8797. ))
  8798. characterMakers.push(() => makeCharacter(
  8799. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8800. {
  8801. front: {
  8802. height: math.unit(6, "feet"),
  8803. weight: math.unit(160, "lbs"),
  8804. name: "Front",
  8805. image: {
  8806. source: "./media/characters/gene-zeta/front.svg",
  8807. extra: 3006 / 2826,
  8808. bottom: 182 / 3188
  8809. }
  8810. }
  8811. },
  8812. [
  8813. {
  8814. name: "Micro",
  8815. height: math.unit(6, "inches")
  8816. },
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(5 + 11 / 12, "foot"),
  8820. default: true
  8821. },
  8822. {
  8823. name: "Macro",
  8824. height: math.unit(140, "feet")
  8825. },
  8826. {
  8827. name: "Supercharged",
  8828. height: math.unit(2500, "feet")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(350, "lbs"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/razinox/front.svg",
  8841. extra: 1686 / 1548,
  8842. bottom: 28.2 / 1868
  8843. }
  8844. },
  8845. back: {
  8846. height: math.unit(6, "feet"),
  8847. weight: math.unit(350, "lbs"),
  8848. name: "Back",
  8849. image: {
  8850. source: "./media/characters/razinox/back.svg",
  8851. extra: 1660 / 1590,
  8852. bottom: 15 / 1665
  8853. }
  8854. },
  8855. },
  8856. [
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(10 + 8 / 12, "foot")
  8860. },
  8861. {
  8862. name: "Minimacro",
  8863. height: math.unit(15, "foot")
  8864. },
  8865. {
  8866. name: "Macro",
  8867. height: math.unit(60, "foot"),
  8868. default: true
  8869. },
  8870. {
  8871. name: "Megamacro",
  8872. height: math.unit(5, "miles")
  8873. },
  8874. {
  8875. name: "Gigamacro",
  8876. height: math.unit(6000, "miles")
  8877. },
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8882. {
  8883. front: {
  8884. height: math.unit(6, "feet"),
  8885. weight: math.unit(150, "lbs"),
  8886. name: "Front",
  8887. image: {
  8888. source: "./media/characters/cobalt/front.svg"
  8889. }
  8890. }
  8891. },
  8892. [
  8893. {
  8894. name: "Normal",
  8895. height: math.unit(8 + 1 / 12, "foot")
  8896. },
  8897. {
  8898. name: "Macro",
  8899. height: math.unit(111, "foot"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Supracosmic",
  8904. height: math.unit(1e42, "feet")
  8905. },
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(5, "inches"),
  8913. name: "Front",
  8914. image: {
  8915. source: "./media/characters/amanda/front.svg",
  8916. extra: 926/791,
  8917. bottom: 38/964
  8918. }
  8919. },
  8920. back: {
  8921. height: math.unit(5, "inches"),
  8922. name: "Back",
  8923. image: {
  8924. source: "./media/characters/amanda/back.svg",
  8925. extra: 909/805,
  8926. bottom: 43/952
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Micro",
  8933. height: math.unit(5, "inches"),
  8934. default: true
  8935. },
  8936. ]
  8937. ))
  8938. characterMakers.push(() => makeCharacter(
  8939. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8940. {
  8941. front: {
  8942. height: math.unit(2.75, "meters"),
  8943. weight: math.unit(1200, "lb"),
  8944. name: "Front",
  8945. image: {
  8946. source: "./media/characters/teal/front.svg",
  8947. extra: 2463 / 2320,
  8948. bottom: 166 / 2629
  8949. }
  8950. },
  8951. back: {
  8952. height: math.unit(2.75, "meters"),
  8953. weight: math.unit(1200, "lb"),
  8954. name: "Back",
  8955. image: {
  8956. source: "./media/characters/teal/back.svg",
  8957. extra: 2580 / 2489,
  8958. bottom: 151 / 2731
  8959. }
  8960. },
  8961. sitting: {
  8962. height: math.unit(1.9, "meters"),
  8963. weight: math.unit(1200, "lb"),
  8964. name: "Sitting",
  8965. image: {
  8966. source: "./media/characters/teal/sitting.svg",
  8967. extra: 623 / 590,
  8968. bottom: 121 / 744
  8969. }
  8970. },
  8971. standing: {
  8972. height: math.unit(2.75, "meters"),
  8973. weight: math.unit(1200, "lb"),
  8974. name: "Standing",
  8975. image: {
  8976. source: "./media/characters/teal/standing.svg",
  8977. extra: 923 / 893,
  8978. bottom: 60 / 983
  8979. }
  8980. },
  8981. stretching: {
  8982. height: math.unit(3.65, "meters"),
  8983. weight: math.unit(1200, "lb"),
  8984. name: "Stretching",
  8985. image: {
  8986. source: "./media/characters/teal/stretching.svg",
  8987. extra: 1276 / 1244,
  8988. bottom: 0 / 1276
  8989. }
  8990. },
  8991. legged: {
  8992. height: math.unit(1.3, "meters"),
  8993. weight: math.unit(100, "lb"),
  8994. name: "Legged",
  8995. image: {
  8996. source: "./media/characters/teal/legged.svg",
  8997. extra: 462 / 437,
  8998. bottom: 24 / 486
  8999. }
  9000. },
  9001. naga: {
  9002. height: math.unit(5.4, "meters"),
  9003. weight: math.unit(4000, "lb"),
  9004. name: "Naga",
  9005. image: {
  9006. source: "./media/characters/teal/naga.svg",
  9007. extra: 1902 / 1858,
  9008. bottom: 0 / 1902
  9009. }
  9010. },
  9011. hand: {
  9012. height: math.unit(0.52, "meters"),
  9013. name: "Hand",
  9014. image: {
  9015. source: "./media/characters/teal/hand.svg"
  9016. }
  9017. },
  9018. maw: {
  9019. height: math.unit(0.43, "meters"),
  9020. name: "Maw",
  9021. image: {
  9022. source: "./media/characters/teal/maw.svg"
  9023. }
  9024. },
  9025. slit: {
  9026. height: math.unit(0.25, "meters"),
  9027. name: "Slit",
  9028. image: {
  9029. source: "./media/characters/teal/slit.svg"
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(2.75, "meters"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(300, "feet")
  9042. },
  9043. {
  9044. name: "Macro+",
  9045. height: math.unit(2000, "feet")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  9051. {
  9052. frontCat: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(180, "lbs"),
  9055. name: "Front (Cat)",
  9056. image: {
  9057. source: "./media/characters/ravin-amulet/front-cat.svg"
  9058. }
  9059. },
  9060. frontCatAlt: {
  9061. height: math.unit(6, "feet"),
  9062. weight: math.unit(180, "lbs"),
  9063. name: "Front (Alt, Cat)",
  9064. image: {
  9065. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  9066. }
  9067. },
  9068. frontWerewolf: {
  9069. height: math.unit(6 * 1.2, "feet"),
  9070. weight: math.unit(225, "lbs"),
  9071. name: "Front (Werewolf)",
  9072. image: {
  9073. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  9074. }
  9075. },
  9076. backWerewolf: {
  9077. height: math.unit(6 * 1.2, "feet"),
  9078. weight: math.unit(225, "lbs"),
  9079. name: "Back (Werewolf)",
  9080. image: {
  9081. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  9082. }
  9083. },
  9084. },
  9085. [
  9086. {
  9087. name: "Nano",
  9088. height: math.unit(1, "micrometer")
  9089. },
  9090. {
  9091. name: "Micro",
  9092. height: math.unit(1, "inch")
  9093. },
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(6, "feet"),
  9097. default: true
  9098. },
  9099. {
  9100. name: "Macro",
  9101. height: math.unit(60, "feet")
  9102. }
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(165, "lbs"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/fluoresce/front.svg"
  9114. }
  9115. }
  9116. },
  9117. [
  9118. {
  9119. name: "Micro",
  9120. height: math.unit(6, "cm")
  9121. },
  9122. {
  9123. name: "Normal",
  9124. height: math.unit(5 + 7 / 12, "feet"),
  9125. default: true
  9126. },
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(56, "feet")
  9130. },
  9131. {
  9132. name: "Megamacro",
  9133. height: math.unit(1.9, "miles")
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(9 + 6 / 12, "feet"),
  9142. weight: math.unit(523, "lbs"),
  9143. name: "Side",
  9144. image: {
  9145. source: "./media/characters/aurora/side.svg",
  9146. extra: 474/393,
  9147. bottom: 5/479
  9148. }
  9149. }
  9150. },
  9151. [
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(9 + 6 / 12, "feet")
  9155. },
  9156. {
  9157. name: "Macro",
  9158. height: math.unit(96, "feet"),
  9159. default: true
  9160. },
  9161. {
  9162. name: "Macro+",
  9163. height: math.unit(243, "feet")
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(194, "cm"),
  9172. weight: math.unit(90, "kg"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/ranek/front.svg",
  9176. extra: 1862/1791,
  9177. bottom: 80/1942
  9178. }
  9179. },
  9180. back: {
  9181. height: math.unit(194, "cm"),
  9182. weight: math.unit(90, "kg"),
  9183. name: "Back",
  9184. image: {
  9185. source: "./media/characters/ranek/back.svg",
  9186. extra: 1853/1787,
  9187. bottom: 74/1927
  9188. }
  9189. },
  9190. feral: {
  9191. height: math.unit(30, "cm"),
  9192. weight: math.unit(1.6, "lbs"),
  9193. name: "Feral",
  9194. image: {
  9195. source: "./media/characters/ranek/feral.svg",
  9196. extra: 990/631,
  9197. bottom: 29/1019
  9198. }
  9199. },
  9200. },
  9201. [
  9202. {
  9203. name: "Normal",
  9204. height: math.unit(194, "cm"),
  9205. default: true
  9206. },
  9207. {
  9208. name: "Macro",
  9209. height: math.unit(100, "meters")
  9210. },
  9211. ]
  9212. ))
  9213. characterMakers.push(() => makeCharacter(
  9214. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9215. {
  9216. front: {
  9217. height: math.unit(5 + 6 / 12, "feet"),
  9218. weight: math.unit(153, "lbs"),
  9219. name: "Front",
  9220. image: {
  9221. source: "./media/characters/andrew-cooper/front.svg"
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Nano",
  9228. height: math.unit(1, "mm")
  9229. },
  9230. {
  9231. name: "Micro",
  9232. height: math.unit(2, "inches")
  9233. },
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(5 + 6 / 12, "feet"),
  9237. default: true
  9238. }
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(180, "lbs"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/akane-sato/front.svg",
  9250. extra: 1219 / 1140
  9251. }
  9252. },
  9253. back: {
  9254. height: math.unit(6, "feet"),
  9255. weight: math.unit(180, "lbs"),
  9256. name: "Back",
  9257. image: {
  9258. source: "./media/characters/akane-sato/back.svg",
  9259. extra: 1219 / 1170
  9260. }
  9261. },
  9262. },
  9263. [
  9264. {
  9265. name: "Normal",
  9266. height: math.unit(2.5, "meters")
  9267. },
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(250, "meters"),
  9271. default: true
  9272. },
  9273. {
  9274. name: "Megamacro",
  9275. height: math.unit(25, "km")
  9276. },
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9281. {
  9282. front: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(65, "kg"),
  9285. name: "Front",
  9286. image: {
  9287. source: "./media/characters/rook/front.svg",
  9288. extra: 960 / 950
  9289. }
  9290. }
  9291. },
  9292. [
  9293. {
  9294. name: "Normal",
  9295. height: math.unit(8.8, "feet")
  9296. },
  9297. {
  9298. name: "Macro",
  9299. height: math.unit(88, "feet"),
  9300. default: true
  9301. },
  9302. {
  9303. name: "Megamacro",
  9304. height: math.unit(8, "miles")
  9305. },
  9306. ]
  9307. ))
  9308. characterMakers.push(() => makeCharacter(
  9309. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9310. {
  9311. front: {
  9312. height: math.unit(12 + 2 / 12, "feet"),
  9313. weight: math.unit(808, "lbs"),
  9314. name: "Front",
  9315. image: {
  9316. source: "./media/characters/prodigy/front.svg"
  9317. }
  9318. }
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(12 + 2 / 12, "feet"),
  9324. default: true
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(143, "feet")
  9329. },
  9330. {
  9331. name: "Macro+",
  9332. height: math.unit(400, "feet")
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(225, "lbs"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/daniel/front.svg"
  9345. }
  9346. },
  9347. leaning: {
  9348. height: math.unit(6, "feet"),
  9349. weight: math.unit(225, "lbs"),
  9350. name: "Leaning",
  9351. image: {
  9352. source: "./media/characters/daniel/leaning.svg"
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(1000, "feet"),
  9360. default: true
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(6, "feet"),
  9369. weight: math.unit(88, "lbs"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/chiros/front.svg",
  9373. extra: 306 / 226
  9374. }
  9375. },
  9376. side: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(88, "lbs"),
  9379. name: "Side",
  9380. image: {
  9381. source: "./media/characters/chiros/side.svg",
  9382. extra: 306 / 226
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Normal",
  9389. height: math.unit(6, "cm"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(100, "lbs"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/selka/front.svg",
  9403. extra: 947 / 887
  9404. }
  9405. }
  9406. },
  9407. [
  9408. {
  9409. name: "Normal",
  9410. height: math.unit(5, "cm"),
  9411. default: true
  9412. },
  9413. ]
  9414. ))
  9415. characterMakers.push(() => makeCharacter(
  9416. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9417. {
  9418. front: {
  9419. height: math.unit(8 + 3 / 12, "feet"),
  9420. weight: math.unit(424, "lbs"),
  9421. name: "Front",
  9422. image: {
  9423. source: "./media/characters/verin/front.svg",
  9424. extra: 1845 / 1550
  9425. }
  9426. },
  9427. frontArmored: {
  9428. height: math.unit(8 + 3 / 12, "feet"),
  9429. weight: math.unit(424, "lbs"),
  9430. name: "Front (Armored)",
  9431. image: {
  9432. source: "./media/characters/verin/front-armor.svg",
  9433. extra: 1845 / 1550,
  9434. bottom: 0.01
  9435. }
  9436. },
  9437. back: {
  9438. height: math.unit(8 + 3 / 12, "feet"),
  9439. weight: math.unit(424, "lbs"),
  9440. name: "Back",
  9441. image: {
  9442. source: "./media/characters/verin/back.svg",
  9443. bottom: 0.1,
  9444. extra: 1
  9445. }
  9446. },
  9447. foot: {
  9448. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9449. name: "Foot",
  9450. image: {
  9451. source: "./media/characters/verin/foot.svg"
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Normal",
  9458. height: math.unit(8 + 3 / 12, "feet")
  9459. },
  9460. {
  9461. name: "Minimacro",
  9462. height: math.unit(21, "feet"),
  9463. default: true
  9464. },
  9465. {
  9466. name: "Macro",
  9467. height: math.unit(626, "feet")
  9468. },
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9473. {
  9474. front: {
  9475. height: math.unit(2.718, "meters"),
  9476. weight: math.unit(150, "lbs"),
  9477. name: "Front",
  9478. image: {
  9479. source: "./media/characters/sovrim-terraquian/front.svg",
  9480. extra: 1752/1689,
  9481. bottom: 36/1788
  9482. }
  9483. },
  9484. back: {
  9485. height: math.unit(2.718, "meters"),
  9486. weight: math.unit(150, "lbs"),
  9487. name: "Back",
  9488. image: {
  9489. source: "./media/characters/sovrim-terraquian/back.svg",
  9490. extra: 1698/1657,
  9491. bottom: 58/1756
  9492. }
  9493. },
  9494. tongue: {
  9495. height: math.unit(2.865, "feet"),
  9496. name: "Tongue",
  9497. image: {
  9498. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9499. }
  9500. },
  9501. hand: {
  9502. height: math.unit(1.61, "feet"),
  9503. name: "Hand",
  9504. image: {
  9505. source: "./media/characters/sovrim-terraquian/hand.svg"
  9506. }
  9507. },
  9508. foot: {
  9509. height: math.unit(1.05, "feet"),
  9510. name: "Foot",
  9511. image: {
  9512. source: "./media/characters/sovrim-terraquian/foot.svg"
  9513. }
  9514. },
  9515. footAlt: {
  9516. height: math.unit(0.88, "feet"),
  9517. name: "Foot (Alt)",
  9518. image: {
  9519. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9520. }
  9521. },
  9522. },
  9523. [
  9524. {
  9525. name: "Micro",
  9526. height: math.unit(2, "inches")
  9527. },
  9528. {
  9529. name: "Small",
  9530. height: math.unit(1, "meter")
  9531. },
  9532. {
  9533. name: "Normal",
  9534. height: math.unit(Math.E, "meters"),
  9535. default: true
  9536. },
  9537. {
  9538. name: "Macro",
  9539. height: math.unit(20, "meters")
  9540. },
  9541. {
  9542. name: "Macro+",
  9543. height: math.unit(400, "meters")
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9549. {
  9550. front: {
  9551. height: math.unit(7, "feet"),
  9552. weight: math.unit(489, "lbs"),
  9553. name: "Front",
  9554. image: {
  9555. source: "./media/characters/reece-silvermane/front.svg",
  9556. bottom: 0.02,
  9557. extra: 1
  9558. }
  9559. },
  9560. },
  9561. [
  9562. {
  9563. name: "Macro",
  9564. height: math.unit(1.5, "miles"),
  9565. default: true
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(78, "kg"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/kane/front.svg",
  9578. extra: 978 / 899
  9579. }
  9580. },
  9581. back: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(78, "kg"),
  9584. name: "Back",
  9585. image: {
  9586. source: "./media/characters/kane/back.svg",
  9587. extra: 1966/1800,
  9588. bottom: 0/1966
  9589. }
  9590. },
  9591. head: {
  9592. height: math.unit(1.4, "feet"),
  9593. name: "Head",
  9594. image: {
  9595. source: "./media/characters/kane/head.svg"
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(2.1, "m"),
  9603. },
  9604. {
  9605. name: "Macro",
  9606. height: math.unit(1, "km"),
  9607. default: true
  9608. },
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9613. {
  9614. frontSfw: {
  9615. name: "Front (SFW)",
  9616. height: math.unit(6 + 3/12, "feet"),
  9617. weight: math.unit(200, "kg"),
  9618. image: {
  9619. source: "./media/characters/tegon/front-sfw.svg",
  9620. extra: 1105/1087,
  9621. bottom: 86/1191
  9622. }
  9623. },
  9624. backSfw: {
  9625. name: "Back (SFW)",
  9626. height: math.unit(6 + 3/12, "feet"),
  9627. weight: math.unit(200, "kg"),
  9628. image: {
  9629. source: "./media/characters/tegon/back-sfw.svg",
  9630. extra: 1107/1087,
  9631. bottom: 21/1128
  9632. }
  9633. },
  9634. frontNsfw: {
  9635. name: "Front (NSFW)",
  9636. height: math.unit(6 + 3/12, "feet"),
  9637. weight: math.unit(200, "kg"),
  9638. image: {
  9639. source: "./media/characters/tegon/front-nsfw.svg",
  9640. extra: 1105/1087,
  9641. bottom: 86/1191
  9642. }
  9643. },
  9644. maw: {
  9645. height: math.unit(1.23, "feet"),
  9646. name: "Maw",
  9647. image: {
  9648. source: "./media/characters/tegon/maw.svg"
  9649. }
  9650. },
  9651. dick: {
  9652. height: math.unit(1.18, "feet"),
  9653. name: "Dick",
  9654. image: {
  9655. source: "./media/characters/tegon/dick.svg"
  9656. }
  9657. },
  9658. },
  9659. [
  9660. {
  9661. name: "Micro",
  9662. height: math.unit(1, "inch")
  9663. },
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(6 + 3 / 12, "feet"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Macro",
  9671. height: math.unit(300, "feet")
  9672. },
  9673. {
  9674. name: "Megamacro",
  9675. height: math.unit(69, "miles")
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9681. {
  9682. side: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(2304, "lbs"),
  9685. name: "Side",
  9686. image: {
  9687. source: "./media/characters/arcturax/side.svg",
  9688. extra: 790 / 376,
  9689. bottom: 0.01
  9690. }
  9691. },
  9692. },
  9693. [
  9694. {
  9695. name: "Micro",
  9696. height: math.unit(2, "inch")
  9697. },
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(6, "feet")
  9701. },
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(39, "feet"),
  9705. default: true
  9706. },
  9707. {
  9708. name: "Megamacro",
  9709. height: math.unit(7, "miles")
  9710. },
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(6, "feet"),
  9718. weight: math.unit(50, "lbs"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/sentri/front.svg",
  9722. extra: 1750 / 1570,
  9723. bottom: 0.025
  9724. }
  9725. },
  9726. frontAlt: {
  9727. height: math.unit(6, "feet"),
  9728. weight: math.unit(50, "lbs"),
  9729. name: "Front (Alt)",
  9730. image: {
  9731. source: "./media/characters/sentri/front-alt.svg",
  9732. extra: 1750 / 1570,
  9733. bottom: 0.025
  9734. }
  9735. },
  9736. },
  9737. [
  9738. {
  9739. name: "Normal",
  9740. height: math.unit(15, "feet"),
  9741. default: true
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(2500, "feet")
  9746. }
  9747. ]
  9748. ))
  9749. characterMakers.push(() => makeCharacter(
  9750. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9751. {
  9752. front: {
  9753. height: math.unit(5 + 8 / 12, "feet"),
  9754. weight: math.unit(130, "lbs"),
  9755. name: "Front",
  9756. image: {
  9757. source: "./media/characters/corvin/front.svg",
  9758. extra: 1803 / 1629
  9759. }
  9760. },
  9761. frontShirt: {
  9762. height: math.unit(5 + 8 / 12, "feet"),
  9763. weight: math.unit(130, "lbs"),
  9764. name: "Front (Shirt)",
  9765. image: {
  9766. source: "./media/characters/corvin/front-shirt.svg",
  9767. extra: 1803 / 1629
  9768. }
  9769. },
  9770. frontPoncho: {
  9771. height: math.unit(5 + 8 / 12, "feet"),
  9772. weight: math.unit(130, "lbs"),
  9773. name: "Front (Poncho)",
  9774. image: {
  9775. source: "./media/characters/corvin/front-poncho.svg",
  9776. extra: 1803 / 1629
  9777. }
  9778. },
  9779. side: {
  9780. height: math.unit(5 + 8 / 12, "feet"),
  9781. weight: math.unit(130, "lbs"),
  9782. name: "Side",
  9783. image: {
  9784. source: "./media/characters/corvin/side.svg",
  9785. extra: 1012 / 945
  9786. }
  9787. },
  9788. back: {
  9789. height: math.unit(5 + 8 / 12, "feet"),
  9790. weight: math.unit(130, "lbs"),
  9791. name: "Back",
  9792. image: {
  9793. source: "./media/characters/corvin/back.svg",
  9794. extra: 1803 / 1629
  9795. }
  9796. },
  9797. },
  9798. [
  9799. {
  9800. name: "Micro",
  9801. height: math.unit(3, "inches")
  9802. },
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(5 + 8 / 12, "feet")
  9806. },
  9807. {
  9808. name: "Macro",
  9809. height: math.unit(300, "feet"),
  9810. default: true
  9811. },
  9812. {
  9813. name: "Megamacro",
  9814. height: math.unit(500, "miles")
  9815. }
  9816. ]
  9817. ))
  9818. characterMakers.push(() => makeCharacter(
  9819. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9820. {
  9821. front: {
  9822. height: math.unit(6, "feet"),
  9823. weight: math.unit(135, "lbs"),
  9824. name: "Front",
  9825. image: {
  9826. source: "./media/characters/q/front.svg",
  9827. extra: 854 / 752,
  9828. bottom: 0.005
  9829. }
  9830. },
  9831. back: {
  9832. height: math.unit(6, "feet"),
  9833. weight: math.unit(130, "lbs"),
  9834. name: "Back",
  9835. image: {
  9836. source: "./media/characters/q/back.svg",
  9837. extra: 854 / 752
  9838. }
  9839. },
  9840. },
  9841. [
  9842. {
  9843. name: "Macro",
  9844. height: math.unit(90, "feet"),
  9845. default: true
  9846. },
  9847. {
  9848. name: "Extra Macro",
  9849. height: math.unit(300, "feet"),
  9850. },
  9851. {
  9852. name: "BIG WALF",
  9853. height: math.unit(750, "feet"),
  9854. },
  9855. ]
  9856. ))
  9857. characterMakers.push(() => makeCharacter(
  9858. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9859. {
  9860. front: {
  9861. height: math.unit(3, "feet"),
  9862. weight: math.unit(28, "lbs"),
  9863. name: "Front",
  9864. image: {
  9865. source: "./media/characters/citrine/front.svg"
  9866. }
  9867. }
  9868. },
  9869. [
  9870. {
  9871. name: "Normal",
  9872. height: math.unit(3, "feet"),
  9873. default: true
  9874. }
  9875. ]
  9876. ))
  9877. characterMakers.push(() => makeCharacter(
  9878. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9879. {
  9880. front: {
  9881. height: math.unit(14, "feet"),
  9882. weight: math.unit(1450, "kg"),
  9883. preyCapacity: math.unit(15, "people"),
  9884. name: "Front",
  9885. image: {
  9886. source: "./media/characters/aura-starwind/front.svg",
  9887. extra: 1440/1327,
  9888. bottom: 11/1451
  9889. }
  9890. },
  9891. side: {
  9892. height: math.unit(14, "feet"),
  9893. weight: math.unit(1450, "kg"),
  9894. preyCapacity: math.unit(15, "people"),
  9895. name: "Side",
  9896. image: {
  9897. source: "./media/characters/aura-starwind/side.svg",
  9898. extra: 1654 / 1497
  9899. }
  9900. },
  9901. taur: {
  9902. height: math.unit(18, "feet"),
  9903. weight: math.unit(5500, "kg"),
  9904. preyCapacity: math.unit(50, "people"),
  9905. name: "Taur",
  9906. image: {
  9907. source: "./media/characters/aura-starwind/taur.svg",
  9908. extra: 1760 / 1650
  9909. }
  9910. },
  9911. feral: {
  9912. height: math.unit(46, "feet"),
  9913. weight: math.unit(25000, "kg"),
  9914. preyCapacity: math.unit(120, "people"),
  9915. name: "Feral",
  9916. image: {
  9917. source: "./media/characters/aura-starwind/feral.svg"
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Normal",
  9924. height: math.unit(14, "feet"),
  9925. default: true
  9926. },
  9927. {
  9928. name: "Macro",
  9929. height: math.unit(50, "meters")
  9930. },
  9931. {
  9932. name: "Megamacro",
  9933. height: math.unit(5000, "meters")
  9934. },
  9935. {
  9936. name: "Gigamacro",
  9937. height: math.unit(100000, "kilometers")
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(2 + 7 / 12, "feet"),
  9946. weight: math.unit(32, "lbs"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/rivet/front.svg",
  9950. extra: 1716 / 1658,
  9951. bottom: 0.03
  9952. }
  9953. },
  9954. foot: {
  9955. height: math.unit(0.551, "feet"),
  9956. name: "Rivet's Foot",
  9957. image: {
  9958. source: "./media/characters/rivet/foot.svg"
  9959. },
  9960. rename: true
  9961. }
  9962. },
  9963. [
  9964. {
  9965. name: "Micro",
  9966. height: math.unit(1.5, "inches"),
  9967. },
  9968. {
  9969. name: "Normal",
  9970. height: math.unit(2 + 7 / 12, "feet"),
  9971. default: true
  9972. },
  9973. {
  9974. name: "Macro",
  9975. height: math.unit(85, "feet")
  9976. },
  9977. {
  9978. name: "Megamacro",
  9979. height: math.unit(2.2, "km")
  9980. }
  9981. ]
  9982. ))
  9983. characterMakers.push(() => makeCharacter(
  9984. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9985. {
  9986. front: {
  9987. height: math.unit(5 + 9 / 12, "feet"),
  9988. weight: math.unit(150, "lbs"),
  9989. name: "Front",
  9990. image: {
  9991. source: "./media/characters/coffee/front.svg",
  9992. extra: 946/880,
  9993. bottom: 66/1012
  9994. }
  9995. },
  9996. foot: {
  9997. height: math.unit(1.29, "feet"),
  9998. name: "Foot",
  9999. image: {
  10000. source: "./media/characters/coffee/foot.svg"
  10001. }
  10002. },
  10003. },
  10004. [
  10005. {
  10006. name: "Micro",
  10007. height: math.unit(2, "inches"),
  10008. },
  10009. {
  10010. name: "Normal",
  10011. height: math.unit(5 + 9 / 12, "feet"),
  10012. default: true
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(800, "feet")
  10017. },
  10018. {
  10019. name: "Megamacro",
  10020. height: math.unit(25, "miles")
  10021. }
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  10026. {
  10027. front: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(200, "lbs"),
  10030. name: "Front",
  10031. image: {
  10032. source: "./media/characters/chari-gal/front.svg",
  10033. extra: 735/649,
  10034. bottom: 55/790
  10035. },
  10036. form: "normal",
  10037. default: true
  10038. },
  10039. back: {
  10040. height: math.unit(6, "feet"),
  10041. weight: math.unit(200, "lb"),
  10042. name: "Back",
  10043. image: {
  10044. source: "./media/characters/chari-gal/back.svg",
  10045. extra: 762/666,
  10046. bottom: 31/793
  10047. },
  10048. form: "normal"
  10049. },
  10050. mouth: {
  10051. height: math.unit(1.35, "feet"),
  10052. name: "Mouth",
  10053. image: {
  10054. source: "./media/characters/chari-gal/mouth.svg"
  10055. },
  10056. form: "normal"
  10057. },
  10058. gigantamax: {
  10059. height: math.unit(6 * 16, "feet"),
  10060. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  10061. name: "Gigantamax",
  10062. image: {
  10063. source: "./media/characters/chari-gal/gigantamax-front.svg",
  10064. extra: 1507/1149,
  10065. bottom: 254/1761
  10066. },
  10067. form: "gigantamax",
  10068. default: true
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Normal",
  10074. height: math.unit(5 + 7 / 12, "feet"),
  10075. form: "normal",
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(200, "feet"),
  10080. default: true,
  10081. form: "normal"
  10082. },
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(16 * (5 + 7 / 12), "feet"),
  10086. form: "gigantamax",
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(16 * 200, "feet"),
  10091. default: true,
  10092. form: "gigantamax"
  10093. },
  10094. ],
  10095. {
  10096. "normal": {
  10097. name: "Normal",
  10098. default: true
  10099. },
  10100. "gigantamax": {
  10101. name: "Gigantamax",
  10102. },
  10103. }
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  10107. {
  10108. front: {
  10109. height: math.unit(6, "feet"),
  10110. weight: math.unit(150, "lbs"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/nova/front.svg",
  10114. extra: 5000 / 4722,
  10115. bottom: 0.02
  10116. }
  10117. }
  10118. },
  10119. [
  10120. {
  10121. name: "Micro-",
  10122. height: math.unit(0.8, "inches")
  10123. },
  10124. {
  10125. name: "Micro",
  10126. height: math.unit(2, "inches"),
  10127. default: true
  10128. },
  10129. ]
  10130. ))
  10131. characterMakers.push(() => makeCharacter(
  10132. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  10133. {
  10134. koboldFront: {
  10135. height: math.unit(3 + 1 / 12, "feet"),
  10136. weight: math.unit(21.7, "lbs"),
  10137. name: "Front",
  10138. image: {
  10139. source: "./media/characters/argent/kobold-front.svg",
  10140. extra: 1471 / 1331,
  10141. bottom: 100.8 / 1575.5
  10142. },
  10143. form: "kobold",
  10144. default: true
  10145. },
  10146. dragonFront: {
  10147. height: math.unit(75, "inches"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/argent/dragon-front.svg",
  10151. extra: 1389/1248,
  10152. bottom: 54/1443
  10153. },
  10154. form: "dragon",
  10155. },
  10156. dragonBack: {
  10157. height: math.unit(75, "inches"),
  10158. name: "Back",
  10159. image: {
  10160. source: "./media/characters/argent/dragon-back.svg",
  10161. extra: 1399/1271,
  10162. bottom: 23/1422
  10163. },
  10164. form: "dragon",
  10165. },
  10166. dragonDressed: {
  10167. height: math.unit(75, "inches"),
  10168. name: "Dressed",
  10169. image: {
  10170. source: "./media/characters/argent/dragon-dressed.svg",
  10171. extra: 1350/1215,
  10172. bottom: 26/1376
  10173. },
  10174. form: "dragon"
  10175. },
  10176. dragonHead: {
  10177. height: math.unit(23.5, "inches"),
  10178. name: "Head",
  10179. image: {
  10180. source: "./media/characters/argent/dragon-head.svg"
  10181. },
  10182. form: "dragon",
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Micro",
  10188. height: math.unit(2, "inches"),
  10189. form: "kobold",
  10190. },
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(3 + 1 / 12, "feet"),
  10194. form: "kobold",
  10195. default: true
  10196. },
  10197. {
  10198. name: "Macro",
  10199. height: math.unit(120, "feet"),
  10200. form: "kobold",
  10201. },
  10202. {
  10203. name: "Speck",
  10204. height: math.unit(1, "mm"),
  10205. form: "dragon",
  10206. },
  10207. {
  10208. name: "Tiny",
  10209. height: math.unit(1, "cm"),
  10210. form: "dragon",
  10211. },
  10212. {
  10213. name: "Micro",
  10214. height: math.unit(5, "cm"),
  10215. form: "dragon",
  10216. },
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(75, "inches"),
  10220. form: "dragon",
  10221. default: true
  10222. },
  10223. {
  10224. name: "Extra Tall",
  10225. height: math.unit(9, "feet"),
  10226. form: "dragon",
  10227. },
  10228. {
  10229. name: "Inconvenient",
  10230. height: math.unit(5, "meters"),
  10231. form: "dragon",
  10232. },
  10233. {
  10234. name: "Macro",
  10235. height: math.unit(70, "meters"),
  10236. form: "dragon",
  10237. },
  10238. {
  10239. name: "Macro+",
  10240. height: math.unit(250, "meters"),
  10241. form: "dragon",
  10242. },
  10243. {
  10244. name: "Megamacro",
  10245. height: math.unit(20, "km"),
  10246. form: "dragon",
  10247. },
  10248. {
  10249. name: "Mountainous",
  10250. height: math.unit(100, "km"),
  10251. form: "dragon",
  10252. },
  10253. {
  10254. name: "Continental",
  10255. height: math.unit(2, "megameters"),
  10256. form: "dragon",
  10257. },
  10258. {
  10259. name: "Too Big",
  10260. height: math.unit(900, "megameters"),
  10261. form: "dragon",
  10262. },
  10263. ],
  10264. {
  10265. "kobold": {
  10266. name: "Kobold",
  10267. default: true
  10268. },
  10269. "dragon": {
  10270. name: "Dragon",
  10271. },
  10272. }
  10273. ))
  10274. characterMakers.push(() => makeCharacter(
  10275. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10276. {
  10277. lamp: {
  10278. height: math.unit(7 * 1559 / 989, "feet"),
  10279. name: "Magic Lamp",
  10280. image: {
  10281. source: "./media/characters/mira-al-cul/lamp.svg",
  10282. extra: 1617 / 1559
  10283. }
  10284. },
  10285. front: {
  10286. height: math.unit(7, "feet"),
  10287. name: "Front",
  10288. image: {
  10289. source: "./media/characters/mira-al-cul/front.svg",
  10290. extra: 1044 / 990
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Heavily Restricted",
  10297. height: math.unit(7 * 1559 / 989, "feet")
  10298. },
  10299. {
  10300. name: "Freshly Freed",
  10301. height: math.unit(50 * 1559 / 989, "feet")
  10302. },
  10303. {
  10304. name: "World Encompassing",
  10305. height: math.unit(10000 * 1559 / 989, "miles")
  10306. },
  10307. {
  10308. name: "Galactic",
  10309. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10310. },
  10311. {
  10312. name: "Palmed Universe",
  10313. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10314. default: true
  10315. },
  10316. {
  10317. name: "Multiversal Matriarch",
  10318. height: math.unit(8.87e10, "yottameters")
  10319. },
  10320. {
  10321. name: "Void Mother",
  10322. height: math.unit(3.14e110, "yottaparsecs")
  10323. },
  10324. {
  10325. name: "Toying with Transcendence",
  10326. height: math.unit(1e307, "meters")
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10332. {
  10333. front: {
  10334. height: math.unit(17 + 1 / 12, "feet"),
  10335. weight: math.unit(476.2 * 5, "lbs"),
  10336. name: "Front",
  10337. image: {
  10338. source: "./media/characters/kuro-shi-uchū/front.svg",
  10339. extra: 2329 / 1835,
  10340. bottom: 0.02
  10341. }
  10342. },
  10343. },
  10344. [
  10345. {
  10346. name: "Micro",
  10347. height: math.unit(2, "inches")
  10348. },
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(12, "meters")
  10352. },
  10353. {
  10354. name: "Planetary",
  10355. height: math.unit(0.00929, "AU"),
  10356. default: true
  10357. },
  10358. {
  10359. name: "Universal",
  10360. height: math.unit(20, "gigaparsecs")
  10361. },
  10362. ]
  10363. ))
  10364. characterMakers.push(() => makeCharacter(
  10365. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10366. {
  10367. front: {
  10368. height: math.unit(5 + 2 / 12, "feet"),
  10369. weight: math.unit(120, "lbs"),
  10370. name: "Front",
  10371. image: {
  10372. source: "./media/characters/katherine/front.svg",
  10373. extra: 2075 / 1969
  10374. }
  10375. },
  10376. dress: {
  10377. height: math.unit(5 + 2 / 12, "feet"),
  10378. weight: math.unit(120, "lbs"),
  10379. name: "Dress",
  10380. image: {
  10381. source: "./media/characters/katherine/dress.svg",
  10382. extra: 2258 / 2064
  10383. }
  10384. },
  10385. },
  10386. [
  10387. {
  10388. name: "Micro",
  10389. height: math.unit(1, "inches"),
  10390. default: true
  10391. },
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(5 + 2 / 12, "feet")
  10395. },
  10396. {
  10397. name: "Macro",
  10398. height: math.unit(100, "meters")
  10399. },
  10400. {
  10401. name: "Megamacro",
  10402. height: math.unit(80, "miles")
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10408. {
  10409. front: {
  10410. height: math.unit(7 + 8 / 12, "feet"),
  10411. weight: math.unit(250, "lbs"),
  10412. name: "Front",
  10413. image: {
  10414. source: "./media/characters/yevis/front.svg",
  10415. extra: 1938 / 1755
  10416. }
  10417. }
  10418. },
  10419. [
  10420. {
  10421. name: "Mortal",
  10422. height: math.unit(7 + 8 / 12, "feet")
  10423. },
  10424. {
  10425. name: "Battle",
  10426. height: math.unit(25 + 11 / 12, "feet")
  10427. },
  10428. {
  10429. name: "Wrath",
  10430. height: math.unit(1654 + 11 / 12, "feet")
  10431. },
  10432. {
  10433. name: "Planet Destroyer",
  10434. height: math.unit(12000, "miles")
  10435. },
  10436. {
  10437. name: "Galaxy Conqueror",
  10438. height: math.unit(1.45, "zettameters"),
  10439. default: true
  10440. },
  10441. {
  10442. name: "Universal War",
  10443. height: math.unit(184, "gigaparsecs")
  10444. },
  10445. {
  10446. name: "Eternity War",
  10447. height: math.unit(1.98e55, "yottaparsecs")
  10448. },
  10449. ]
  10450. ))
  10451. characterMakers.push(() => makeCharacter(
  10452. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10453. {
  10454. front: {
  10455. height: math.unit(5 + 8 / 12, "feet"),
  10456. weight: math.unit(63, "kg"),
  10457. name: "Front",
  10458. image: {
  10459. source: "./media/characters/xavier/front.svg",
  10460. extra: 944 / 883
  10461. }
  10462. },
  10463. frontStretch: {
  10464. height: math.unit(5 + 8 / 12, "feet"),
  10465. weight: math.unit(63, "kg"),
  10466. name: "Stretching",
  10467. image: {
  10468. source: "./media/characters/xavier/front-stretch.svg",
  10469. extra: 962 / 820
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(5 + 8 / 12, "feet")
  10477. },
  10478. {
  10479. name: "Macro",
  10480. height: math.unit(100, "meters"),
  10481. default: true
  10482. },
  10483. {
  10484. name: "McLargeHuge",
  10485. height: math.unit(10, "miles")
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10491. {
  10492. front: {
  10493. height: math.unit(5 + 5 / 12, "feet"),
  10494. weight: math.unit(150, "lb"),
  10495. name: "Front",
  10496. image: {
  10497. source: "./media/characters/joshii/front.svg",
  10498. extra: 765 / 653,
  10499. bottom: 51 / 816
  10500. }
  10501. },
  10502. foot: {
  10503. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10504. name: "Foot",
  10505. image: {
  10506. source: "./media/characters/joshii/foot.svg"
  10507. }
  10508. },
  10509. },
  10510. [
  10511. {
  10512. name: "Micro",
  10513. height: math.unit(2, "inches")
  10514. },
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(5 + 5 / 12, "feet")
  10518. },
  10519. {
  10520. name: "Macro",
  10521. height: math.unit(785, "feet"),
  10522. default: true
  10523. },
  10524. {
  10525. name: "Megamacro",
  10526. height: math.unit(24.5, "miles")
  10527. },
  10528. ]
  10529. ))
  10530. characterMakers.push(() => makeCharacter(
  10531. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10532. {
  10533. front: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(150, "lb"),
  10536. name: "Front",
  10537. image: {
  10538. source: "./media/characters/goddess-elizabeth/front.svg",
  10539. extra: 1800 / 1525,
  10540. bottom: 0.005
  10541. }
  10542. },
  10543. foot: {
  10544. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10545. name: "Foot",
  10546. image: {
  10547. source: "./media/characters/goddess-elizabeth/foot.svg"
  10548. }
  10549. },
  10550. mouth: {
  10551. height: math.unit(6, "feet"),
  10552. name: "Mouth",
  10553. image: {
  10554. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Micro",
  10561. height: math.unit(12, "feet")
  10562. },
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(80, "miles"),
  10566. default: true
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(15000, "parsecs")
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10576. {
  10577. front: {
  10578. height: math.unit(5 + 9 / 12, "feet"),
  10579. weight: math.unit(144, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/kara/front.svg"
  10583. }
  10584. },
  10585. feet: {
  10586. height: math.unit(6 / 6.765, "feet"),
  10587. name: "Kara's Feet",
  10588. rename: true,
  10589. image: {
  10590. source: "./media/characters/kara/feet.svg"
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(5 + 9 / 12, "feet")
  10598. },
  10599. {
  10600. name: "Macro",
  10601. height: math.unit(174, "feet"),
  10602. default: true
  10603. },
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10608. {
  10609. front: {
  10610. height: math.unit(18, "feet"),
  10611. weight: math.unit(4050, "lb"),
  10612. name: "Front",
  10613. image: {
  10614. source: "./media/characters/tyrone/front.svg",
  10615. extra: 2405 / 2270,
  10616. bottom: 182 / 2587
  10617. }
  10618. },
  10619. },
  10620. [
  10621. {
  10622. name: "Normal",
  10623. height: math.unit(18, "feet"),
  10624. default: true
  10625. },
  10626. {
  10627. name: "Macro",
  10628. height: math.unit(300, "feet")
  10629. },
  10630. {
  10631. name: "Megamacro",
  10632. height: math.unit(15, "km")
  10633. },
  10634. {
  10635. name: "Gigamacro",
  10636. height: math.unit(500, "km")
  10637. },
  10638. {
  10639. name: "Teramacro",
  10640. height: math.unit(0.5, "gigameters")
  10641. },
  10642. {
  10643. name: "Omnimacro",
  10644. height: math.unit(1e252, "yottauniverse")
  10645. },
  10646. ]
  10647. ))
  10648. characterMakers.push(() => makeCharacter(
  10649. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10650. {
  10651. front: {
  10652. height: math.unit(7 + 8 / 12, "feet"),
  10653. weight: math.unit(120, "lb"),
  10654. name: "Front",
  10655. image: {
  10656. source: "./media/characters/danny/front.svg",
  10657. extra: 1490 / 1350
  10658. }
  10659. },
  10660. back: {
  10661. height: math.unit(7 + 8 / 12, "feet"),
  10662. weight: math.unit(120, "lb"),
  10663. name: "Back",
  10664. image: {
  10665. source: "./media/characters/danny/back.svg",
  10666. extra: 1490 / 1350
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(7 + 8 / 12, "feet"),
  10674. default: true
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(3.5, "inches"),
  10683. weight: math.unit(19, "grams"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/mallow/front.svg",
  10687. extra: 471 / 431
  10688. }
  10689. },
  10690. back: {
  10691. height: math.unit(3.5, "inches"),
  10692. weight: math.unit(19, "grams"),
  10693. name: "Back",
  10694. image: {
  10695. source: "./media/characters/mallow/back.svg",
  10696. extra: 471 / 431
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(3.5, "inches"),
  10704. default: true
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10710. {
  10711. front: {
  10712. height: math.unit(9, "feet"),
  10713. weight: math.unit(230, "kg"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/starry-aqua/front.svg"
  10717. }
  10718. },
  10719. back: {
  10720. height: math.unit(9, "feet"),
  10721. weight: math.unit(230, "kg"),
  10722. name: "Back",
  10723. image: {
  10724. source: "./media/characters/starry-aqua/back.svg"
  10725. }
  10726. },
  10727. hand: {
  10728. height: math.unit(9 * 0.1168, "feet"),
  10729. name: "Hand",
  10730. image: {
  10731. source: "./media/characters/starry-aqua/hand.svg"
  10732. }
  10733. },
  10734. foot: {
  10735. height: math.unit(9 * 0.18, "feet"),
  10736. name: "Foot",
  10737. image: {
  10738. source: "./media/characters/starry-aqua/foot.svg"
  10739. }
  10740. }
  10741. },
  10742. [
  10743. {
  10744. name: "Micro",
  10745. height: math.unit(3, "inches")
  10746. },
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(9, "feet")
  10750. },
  10751. {
  10752. name: "Macro",
  10753. height: math.unit(300, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Megamacro",
  10758. height: math.unit(3200, "feet")
  10759. }
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(15, "feet"),
  10767. weight: math.unit(5026, "lb"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/luka-towers/front.svg",
  10771. extra: 1269/1133,
  10772. bottom: 51/1320
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(15, "feet"),
  10780. default: true
  10781. },
  10782. {
  10783. name: "Minimacro",
  10784. height: math.unit(25, "feet")
  10785. },
  10786. {
  10787. name: "Macro",
  10788. height: math.unit(320, "feet")
  10789. },
  10790. {
  10791. name: "Megamacro",
  10792. height: math.unit(35000, "feet")
  10793. },
  10794. {
  10795. name: "Gigamacro",
  10796. height: math.unit(4000, "miles")
  10797. },
  10798. {
  10799. name: "Teramacro",
  10800. height: math.unit(15000, "miles")
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(150, "lb"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/natalie-nightring/front.svg",
  10813. extra: 1,
  10814. bottom: 0.06
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Uh Oh",
  10821. height: math.unit(0.1, "mm")
  10822. },
  10823. {
  10824. name: "Small",
  10825. height: math.unit(3, "inches")
  10826. },
  10827. {
  10828. name: "Human Scale",
  10829. height: math.unit(6, "feet")
  10830. },
  10831. {
  10832. name: "Librarian",
  10833. height: math.unit(50, "feet"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Immense",
  10838. height: math.unit(200, "miles")
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10844. {
  10845. front: {
  10846. height: math.unit(6, "feet"),
  10847. weight: math.unit(180, "lbs"),
  10848. name: "Front",
  10849. image: {
  10850. source: "./media/characters/danni-rosie/front.svg",
  10851. extra: 1260 / 1128,
  10852. bottom: 0.022
  10853. }
  10854. },
  10855. },
  10856. [
  10857. {
  10858. name: "Micro",
  10859. height: math.unit(2, "inches"),
  10860. default: true
  10861. },
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10866. {
  10867. front: {
  10868. height: math.unit(5 + 9 / 12, "feet"),
  10869. weight: math.unit(220, "lb"),
  10870. name: "Front",
  10871. image: {
  10872. source: "./media/characters/samantha-kruse/front.svg",
  10873. extra: (985 / 935),
  10874. bottom: 0.03
  10875. }
  10876. },
  10877. frontUndressed: {
  10878. height: math.unit(5 + 9 / 12, "feet"),
  10879. weight: math.unit(220, "lb"),
  10880. name: "Front (Undressed)",
  10881. image: {
  10882. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10883. extra: (973 / 923),
  10884. bottom: 0.025
  10885. }
  10886. },
  10887. fat: {
  10888. height: math.unit(5 + 9 / 12, "feet"),
  10889. weight: math.unit(900, "lb"),
  10890. name: "Front (Fat)",
  10891. image: {
  10892. source: "./media/characters/samantha-kruse/fat.svg",
  10893. extra: 2688 / 2561
  10894. }
  10895. },
  10896. },
  10897. [
  10898. {
  10899. name: "Normal",
  10900. height: math.unit(5 + 9 / 12, "feet"),
  10901. default: true
  10902. }
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10907. {
  10908. back: {
  10909. height: math.unit(5 + 4 / 12, "feet"),
  10910. weight: math.unit(4963, "lb"),
  10911. name: "Back",
  10912. image: {
  10913. source: "./media/characters/amelia-rosie/back.svg",
  10914. extra: 1113 / 963,
  10915. bottom: 0.01
  10916. }
  10917. },
  10918. },
  10919. [
  10920. {
  10921. name: "Level 0",
  10922. height: math.unit(5 + 4 / 12, "feet")
  10923. },
  10924. {
  10925. name: "Level 1",
  10926. height: math.unit(164597, "feet"),
  10927. default: true
  10928. },
  10929. {
  10930. name: "Level 2",
  10931. height: math.unit(956243, "miles")
  10932. },
  10933. {
  10934. name: "Level 3",
  10935. height: math.unit(29421709423, "miles")
  10936. },
  10937. {
  10938. name: "Level 4",
  10939. height: math.unit(154, "lightyears")
  10940. },
  10941. {
  10942. name: "Level 5",
  10943. height: math.unit(4738272, "lightyears")
  10944. },
  10945. {
  10946. name: "Level 6",
  10947. height: math.unit(145787152896, "lightyears")
  10948. },
  10949. ]
  10950. ))
  10951. characterMakers.push(() => makeCharacter(
  10952. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10953. {
  10954. front: {
  10955. height: math.unit(5 + 11 / 12, "feet"),
  10956. weight: math.unit(65, "kg"),
  10957. name: "Front",
  10958. image: {
  10959. source: "./media/characters/rook-kitara/front.svg",
  10960. extra: 1347 / 1274,
  10961. bottom: 0.005
  10962. }
  10963. },
  10964. },
  10965. [
  10966. {
  10967. name: "Totally Unfair",
  10968. height: math.unit(1.8, "mm")
  10969. },
  10970. {
  10971. name: "Lap Rookie",
  10972. height: math.unit(1.4, "feet")
  10973. },
  10974. {
  10975. name: "Normal",
  10976. height: math.unit(5 + 11 / 12, "feet"),
  10977. default: true
  10978. },
  10979. {
  10980. name: "How Did This Happen",
  10981. height: math.unit(80, "miles")
  10982. }
  10983. ]
  10984. ))
  10985. characterMakers.push(() => makeCharacter(
  10986. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10987. {
  10988. front: {
  10989. height: math.unit(7, "feet"),
  10990. weight: math.unit(300, "lb"),
  10991. name: "Front",
  10992. image: {
  10993. source: "./media/characters/pisces/front.svg",
  10994. extra: 2255 / 2115,
  10995. bottom: 0.03
  10996. }
  10997. },
  10998. back: {
  10999. height: math.unit(7, "feet"),
  11000. weight: math.unit(300, "lb"),
  11001. name: "Back",
  11002. image: {
  11003. source: "./media/characters/pisces/back.svg",
  11004. extra: 2146 / 2055,
  11005. bottom: 0.04
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Normal",
  11012. height: math.unit(7, "feet"),
  11013. default: true
  11014. },
  11015. {
  11016. name: "Swimming Pool",
  11017. height: math.unit(12.2, "meters")
  11018. },
  11019. {
  11020. name: "Olympic Swimming Pool",
  11021. height: math.unit(56.3, "meters")
  11022. },
  11023. {
  11024. name: "Lake Superior",
  11025. height: math.unit(93900, "meters")
  11026. },
  11027. {
  11028. name: "Mediterranean Sea",
  11029. height: math.unit(644457, "meters")
  11030. },
  11031. {
  11032. name: "World's Oceans",
  11033. height: math.unit(4567491, "meters")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(2.3, "meters"),
  11042. weight: math.unit(120, "kg"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/zelas/front.svg"
  11046. }
  11047. },
  11048. side: {
  11049. height: math.unit(2.3, "meters"),
  11050. weight: math.unit(120, "kg"),
  11051. name: "Side",
  11052. image: {
  11053. source: "./media/characters/zelas/side.svg"
  11054. }
  11055. },
  11056. back: {
  11057. height: math.unit(2.3, "meters"),
  11058. weight: math.unit(120, "kg"),
  11059. name: "Back",
  11060. image: {
  11061. source: "./media/characters/zelas/back.svg"
  11062. }
  11063. },
  11064. foot: {
  11065. height: math.unit(1.116, "feet"),
  11066. name: "Foot",
  11067. image: {
  11068. source: "./media/characters/zelas/foot.svg"
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Normal",
  11075. height: math.unit(2.3, "meters")
  11076. },
  11077. {
  11078. name: "Macro",
  11079. height: math.unit(30, "meters"),
  11080. default: true
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  11086. {
  11087. front: {
  11088. height: math.unit(1, "inch"),
  11089. weight: math.unit(0.21, "grams"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/talbot/front.svg",
  11093. extra: 594 / 544
  11094. }
  11095. },
  11096. },
  11097. [
  11098. {
  11099. name: "Micro",
  11100. height: math.unit(1, "inch"),
  11101. default: true
  11102. },
  11103. ]
  11104. ))
  11105. characterMakers.push(() => makeCharacter(
  11106. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  11107. {
  11108. front: {
  11109. height: math.unit(3 + 3 / 12, "feet"),
  11110. weight: math.unit(51.8, "lb"),
  11111. name: "Front",
  11112. image: {
  11113. source: "./media/characters/fliss/front.svg",
  11114. extra: 840 / 640
  11115. }
  11116. },
  11117. },
  11118. [
  11119. {
  11120. name: "Teeny Tiny",
  11121. height: math.unit(1, "mm")
  11122. },
  11123. {
  11124. name: "Small",
  11125. height: math.unit(1, "inch"),
  11126. default: true
  11127. },
  11128. {
  11129. name: "Standard Sylveon",
  11130. height: math.unit(3 + 3 / 12, "feet")
  11131. },
  11132. {
  11133. name: "Large Nuisance",
  11134. height: math.unit(33, "feet")
  11135. },
  11136. {
  11137. name: "City Filler",
  11138. height: math.unit(3000, "feet")
  11139. },
  11140. {
  11141. name: "New Horizon",
  11142. height: math.unit(6000, "miles")
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(5, "cm"),
  11151. weight: math.unit(1.94, "g"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/fleta/front.svg",
  11155. extra: 835 / 803
  11156. }
  11157. },
  11158. back: {
  11159. height: math.unit(5, "cm"),
  11160. weight: math.unit(1.94, "g"),
  11161. name: "Back",
  11162. image: {
  11163. source: "./media/characters/fleta/back.svg",
  11164. extra: 835 / 803
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Micro",
  11171. height: math.unit(5, "cm"),
  11172. default: true
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(225, "lb"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/dominic/front.svg",
  11185. extra: 1770 / 1620,
  11186. bottom: 0.025
  11187. }
  11188. },
  11189. back: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(225, "lb"),
  11192. name: "Back",
  11193. image: {
  11194. source: "./media/characters/dominic/back.svg",
  11195. extra: 1745 / 1620,
  11196. bottom: 0.065
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Nano",
  11203. height: math.unit(0.1, "mm")
  11204. },
  11205. {
  11206. name: "Micro-",
  11207. height: math.unit(1, "mm")
  11208. },
  11209. {
  11210. name: "Micro",
  11211. height: math.unit(4, "inches")
  11212. },
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(6 + 4 / 12, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Macro",
  11220. height: math.unit(115, "feet")
  11221. },
  11222. {
  11223. name: "Macro+",
  11224. height: math.unit(955, "feet")
  11225. },
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(8990, "feet")
  11229. },
  11230. {
  11231. name: "Gigmacro",
  11232. height: math.unit(9310, "miles")
  11233. },
  11234. {
  11235. name: "Teramacro",
  11236. height: math.unit(1567005010, "miles")
  11237. },
  11238. {
  11239. name: "Examacro",
  11240. height: math.unit(1425, "parsecs")
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(400, "feet"),
  11249. weight: math.unit(44444444, "lb"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/major-colonel/front.svg"
  11253. }
  11254. },
  11255. back: {
  11256. height: math.unit(400, "feet"),
  11257. weight: math.unit(44444444, "lb"),
  11258. name: "Back",
  11259. image: {
  11260. source: "./media/characters/major-colonel/back.svg"
  11261. }
  11262. },
  11263. },
  11264. [
  11265. {
  11266. name: "Macro",
  11267. height: math.unit(400, "feet"),
  11268. default: true
  11269. },
  11270. ]
  11271. ))
  11272. characterMakers.push(() => makeCharacter(
  11273. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11274. {
  11275. catFront: {
  11276. height: math.unit(6, "feet"),
  11277. weight: math.unit(120, "lb"),
  11278. name: "Front (Cat Side)",
  11279. image: {
  11280. source: "./media/characters/axel-lycan/cat-front.svg",
  11281. extra: 430 / 402,
  11282. bottom: 43 / 472.35
  11283. }
  11284. },
  11285. catBack: {
  11286. height: math.unit(6, "feet"),
  11287. weight: math.unit(120, "lb"),
  11288. name: "Back (Cat Side)",
  11289. image: {
  11290. source: "./media/characters/axel-lycan/cat-back.svg",
  11291. extra: 447 / 419,
  11292. bottom: 23.3 / 469
  11293. }
  11294. },
  11295. wolfFront: {
  11296. height: math.unit(6, "feet"),
  11297. weight: math.unit(120, "lb"),
  11298. name: "Front (Wolf Side)",
  11299. image: {
  11300. source: "./media/characters/axel-lycan/wolf-front.svg",
  11301. extra: 485 / 456,
  11302. bottom: 19 / 504
  11303. }
  11304. },
  11305. wolfBack: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(120, "lb"),
  11308. name: "Back (Wolf Side)",
  11309. image: {
  11310. source: "./media/characters/axel-lycan/wolf-back.svg",
  11311. extra: 475 / 438,
  11312. bottom: 39.2 / 514
  11313. }
  11314. },
  11315. },
  11316. [
  11317. {
  11318. name: "Macro",
  11319. height: math.unit(1, "km"),
  11320. default: true
  11321. },
  11322. ]
  11323. ))
  11324. characterMakers.push(() => makeCharacter(
  11325. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11326. {
  11327. front: {
  11328. height: math.unit(5 + 9 / 12, "feet"),
  11329. weight: math.unit(175, "lb"),
  11330. name: "Front",
  11331. image: {
  11332. source: "./media/characters/vanrel-hyena/front.svg",
  11333. extra: 1086 / 1010,
  11334. bottom: 0.04
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(5 + 9 / 12, "feet"),
  11342. default: true
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(103, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/abbott-absol/front.svg",
  11355. extra: 765/694,
  11356. bottom: 47/812
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Megamicro",
  11363. height: math.unit(0.1, "mm")
  11364. },
  11365. {
  11366. name: "Micro",
  11367. height: math.unit(1, "inch")
  11368. },
  11369. {
  11370. name: "Normal",
  11371. height: math.unit(6, "feet"),
  11372. default: true
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11378. {
  11379. front: {
  11380. height: math.unit(6, "feet"),
  11381. weight: math.unit(264, "lb"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/hector/front.svg",
  11385. extra: 2280 / 2130,
  11386. bottom: 0.07
  11387. }
  11388. },
  11389. },
  11390. [
  11391. {
  11392. name: "Normal",
  11393. height: math.unit(12.25, "foot"),
  11394. default: true
  11395. },
  11396. {
  11397. name: "Macro",
  11398. height: math.unit(160, "feet")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(150, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/sal/front.svg",
  11411. extra: 1846 / 1699,
  11412. bottom: 0.04
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Megamacro",
  11419. height: math.unit(10, "miles"),
  11420. default: true
  11421. },
  11422. ]
  11423. ))
  11424. characterMakers.push(() => makeCharacter(
  11425. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11426. {
  11427. front: {
  11428. height: math.unit(3, "meters"),
  11429. weight: math.unit(450, "kg"),
  11430. name: "front",
  11431. image: {
  11432. source: "./media/characters/ranger/front.svg",
  11433. extra: 2401 / 2243,
  11434. bottom: 0.05
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(3, "meters"),
  11442. default: true
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(14, "feet"),
  11451. weight: math.unit(800, "kg"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/theresa/front.svg",
  11455. extra: 3575 / 3346,
  11456. bottom: 0.03
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(14, "feet"),
  11464. default: true
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11470. {
  11471. front: {
  11472. height: math.unit(6, "feet"),
  11473. weight: math.unit(3, "kg"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/ine/front.svg",
  11477. extra: 678 / 539,
  11478. bottom: 0.023
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(2.265, "feet"),
  11486. default: true
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(5, "feet"),
  11495. weight: math.unit(30, "kg"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/vial/front.svg",
  11499. extra: 1365 / 1277,
  11500. bottom: 0.04
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Normal",
  11507. height: math.unit(5, "feet"),
  11508. default: true
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11514. {
  11515. side: {
  11516. height: math.unit(3.4, "meters"),
  11517. weight: math.unit(1000, "lb"),
  11518. name: "Side",
  11519. image: {
  11520. source: "./media/characters/rovoska/side.svg",
  11521. extra: 4403 / 1515
  11522. }
  11523. },
  11524. },
  11525. [
  11526. {
  11527. name: "Normal",
  11528. height: math.unit(3.4, "meters"),
  11529. default: true
  11530. },
  11531. ]
  11532. ))
  11533. characterMakers.push(() => makeCharacter(
  11534. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11535. {
  11536. front: {
  11537. height: math.unit(8, "feet"),
  11538. weight: math.unit(315, "lb"),
  11539. name: "Front",
  11540. image: {
  11541. source: "./media/characters/gunner-rotthbauer/front.svg"
  11542. }
  11543. },
  11544. back: {
  11545. height: math.unit(8, "feet"),
  11546. weight: math.unit(315, "lb"),
  11547. name: "Back",
  11548. image: {
  11549. source: "./media/characters/gunner-rotthbauer/back.svg"
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Micro",
  11556. height: math.unit(3.5, "inches")
  11557. },
  11558. {
  11559. name: "Normal",
  11560. height: math.unit(8, "feet"),
  11561. default: true
  11562. },
  11563. {
  11564. name: "Macro",
  11565. height: math.unit(250, "feet")
  11566. },
  11567. {
  11568. name: "Megamacro",
  11569. height: math.unit(1, "AU")
  11570. },
  11571. ]
  11572. ))
  11573. characterMakers.push(() => makeCharacter(
  11574. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11575. {
  11576. front: {
  11577. height: math.unit(5 + 5 / 12, "feet"),
  11578. weight: math.unit(140, "lb"),
  11579. name: "Front",
  11580. image: {
  11581. source: "./media/characters/allatia/front.svg",
  11582. extra: 1227 / 1180,
  11583. bottom: 0.027
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(5 + 5 / 12, "feet")
  11591. },
  11592. {
  11593. name: "Macro",
  11594. height: math.unit(250, "feet"),
  11595. default: true
  11596. },
  11597. {
  11598. name: "Megamacro",
  11599. height: math.unit(8, "miles")
  11600. }
  11601. ]
  11602. ))
  11603. characterMakers.push(() => makeCharacter(
  11604. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11605. {
  11606. front: {
  11607. height: math.unit(6, "feet"),
  11608. weight: math.unit(120, "lb"),
  11609. name: "Front",
  11610. image: {
  11611. source: "./media/characters/tene/front.svg",
  11612. extra: 814/750,
  11613. bottom: 36/850
  11614. }
  11615. },
  11616. stomping: {
  11617. height: math.unit(2.025, "meters"),
  11618. weight: math.unit(120, "lb"),
  11619. name: "Stomping",
  11620. image: {
  11621. source: "./media/characters/tene/stomping.svg",
  11622. extra: 885/821,
  11623. bottom: 15/900
  11624. }
  11625. },
  11626. sitting: {
  11627. height: math.unit(1, "meter"),
  11628. weight: math.unit(120, "lb"),
  11629. name: "Sitting",
  11630. image: {
  11631. source: "./media/characters/tene/sitting.svg",
  11632. extra: 396/366,
  11633. bottom: 79/475
  11634. }
  11635. },
  11636. smiling: {
  11637. height: math.unit(1.2, "feet"),
  11638. name: "Smiling",
  11639. image: {
  11640. source: "./media/characters/tene/smiling.svg",
  11641. extra: 1364/1071,
  11642. bottom: 0/1364
  11643. }
  11644. },
  11645. smug: {
  11646. height: math.unit(1.3, "feet"),
  11647. name: "Smug",
  11648. image: {
  11649. source: "./media/characters/tene/smug.svg",
  11650. extra: 1323/1082,
  11651. bottom: 0/1323
  11652. }
  11653. },
  11654. feral: {
  11655. height: math.unit(3.9, "feet"),
  11656. weight: math.unit(250, "lb"),
  11657. name: "Feral",
  11658. image: {
  11659. source: "./media/characters/tene/feral.svg",
  11660. extra: 717 / 458,
  11661. bottom: 0.179
  11662. }
  11663. },
  11664. },
  11665. [
  11666. {
  11667. name: "Normal",
  11668. height: math.unit(6, "feet")
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(300, "feet"),
  11673. default: true
  11674. },
  11675. {
  11676. name: "Megamacro",
  11677. height: math.unit(5, "miles")
  11678. },
  11679. ]
  11680. ))
  11681. characterMakers.push(() => makeCharacter(
  11682. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11683. {
  11684. side: {
  11685. height: math.unit(6, "feet"),
  11686. name: "Side",
  11687. image: {
  11688. source: "./media/characters/evander/side.svg",
  11689. extra: 877 / 477
  11690. }
  11691. },
  11692. },
  11693. [
  11694. {
  11695. name: "Normal",
  11696. height: math.unit(0.83, "meters"),
  11697. default: true
  11698. },
  11699. ]
  11700. ))
  11701. characterMakers.push(() => makeCharacter(
  11702. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11703. {
  11704. front: {
  11705. height: math.unit(12, "feet"),
  11706. weight: math.unit(1000, "lb"),
  11707. name: "Front",
  11708. image: {
  11709. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11710. extra: 1762 / 1611
  11711. }
  11712. },
  11713. back: {
  11714. height: math.unit(12, "feet"),
  11715. weight: math.unit(1000, "lb"),
  11716. name: "Back",
  11717. image: {
  11718. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11719. extra: 1762 / 1611
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Normal",
  11726. height: math.unit(12, "feet"),
  11727. default: true
  11728. },
  11729. {
  11730. name: "Kaiju",
  11731. height: math.unit(150, "feet")
  11732. },
  11733. ]
  11734. ))
  11735. characterMakers.push(() => makeCharacter(
  11736. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11737. {
  11738. front: {
  11739. height: math.unit(5 + 11/12, "feet"),
  11740. weight: math.unit(180, "lb"),
  11741. name: "Front",
  11742. image: {
  11743. source: "./media/characters/zero-alurus/front.svg",
  11744. extra: 1032/957,
  11745. bottom: 10/1042
  11746. }
  11747. },
  11748. back: {
  11749. height: math.unit(5 + 11/12, "feet"),
  11750. weight: math.unit(180, "lb"),
  11751. name: "Back",
  11752. image: {
  11753. source: "./media/characters/zero-alurus/back.svg",
  11754. extra: 1027/950,
  11755. bottom: 12/1039
  11756. }
  11757. },
  11758. },
  11759. [
  11760. {
  11761. name: "Normal",
  11762. height: math.unit(5 + 11 / 12, "feet")
  11763. },
  11764. {
  11765. name: "Mini-Macro",
  11766. height: math.unit(25, "feet")
  11767. },
  11768. {
  11769. name: "Macro",
  11770. height: math.unit(90, "feet"),
  11771. default: true
  11772. },
  11773. {
  11774. name: "Macro+",
  11775. height: math.unit(500, "feet")
  11776. },
  11777. {
  11778. name: "Megamacro",
  11779. height: math.unit(1200, "feet")
  11780. },
  11781. ]
  11782. ))
  11783. characterMakers.push(() => makeCharacter(
  11784. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11785. {
  11786. front: {
  11787. height: math.unit(6, "feet"),
  11788. weight: math.unit(200, "lb"),
  11789. name: "Front",
  11790. image: {
  11791. source: "./media/characters/mega-shi/front.svg",
  11792. extra: 1279 / 1250,
  11793. bottom: 0.02
  11794. }
  11795. },
  11796. back: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(200, "lb"),
  11799. name: "Back",
  11800. image: {
  11801. source: "./media/characters/mega-shi/back.svg",
  11802. extra: 1279 / 1250,
  11803. bottom: 0.02
  11804. }
  11805. },
  11806. },
  11807. [
  11808. {
  11809. name: "Micro",
  11810. height: math.unit(16 + 6 / 12, "feet")
  11811. },
  11812. {
  11813. name: "Third Dimension",
  11814. height: math.unit(40, "meters")
  11815. },
  11816. {
  11817. name: "Normal",
  11818. height: math.unit(660, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Megamacro",
  11823. height: math.unit(10, "miles")
  11824. },
  11825. {
  11826. name: "Planetary Launch",
  11827. height: math.unit(500, "miles")
  11828. },
  11829. {
  11830. name: "Interstellar",
  11831. height: math.unit(1e9, "miles")
  11832. },
  11833. {
  11834. name: "Leaving the Universe",
  11835. height: math.unit(1, "gigaparsec")
  11836. },
  11837. {
  11838. name: "Travelling Universes",
  11839. height: math.unit(30e15, "parsecs")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(5 + 4/12, "feet"),
  11848. weight: math.unit(120, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/odyssey/front.svg",
  11852. extra: 1747/1571,
  11853. bottom: 47/1794
  11854. }
  11855. },
  11856. side: {
  11857. height: math.unit(5.1, "feet"),
  11858. weight: math.unit(120, "lb"),
  11859. name: "Side",
  11860. image: {
  11861. source: "./media/characters/odyssey/side.svg",
  11862. extra: 1847/1619,
  11863. bottom: 47/1894
  11864. }
  11865. },
  11866. lounging: {
  11867. height: math.unit(1.464, "feet"),
  11868. weight: math.unit(120, "lb"),
  11869. name: "Lounging",
  11870. image: {
  11871. source: "./media/characters/odyssey/lounging.svg",
  11872. extra: 1235/837,
  11873. bottom: 551/1786
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(5 + 4 / 12, "feet")
  11881. },
  11882. {
  11883. name: "Macro",
  11884. height: math.unit(1, "km")
  11885. },
  11886. {
  11887. name: "Megamacro",
  11888. height: math.unit(3000, "km")
  11889. },
  11890. {
  11891. name: "Gigamacro",
  11892. height: math.unit(1, "AU"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Omniversal",
  11897. height: math.unit(100e14, "lightyears")
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(5 + 10/12, "feet"),
  11906. name: "Front",
  11907. image: {
  11908. source: "./media/characters/mekuto/front.svg",
  11909. extra: 875/835,
  11910. bottom: 46/921
  11911. }
  11912. },
  11913. },
  11914. [
  11915. {
  11916. name: "Minimicro",
  11917. height: math.unit(0.2, "inches")
  11918. },
  11919. {
  11920. name: "Micro",
  11921. height: math.unit(1.5, "inches")
  11922. },
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(5 + 10 / 12, "feet"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Minimacro",
  11930. height: math.unit(17 + 9 / 12, "feet")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(177.5, "feet")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(152, "miles")
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11944. {
  11945. front: {
  11946. height: math.unit(6.5, "inches"),
  11947. weight: math.unit(13, "oz"),
  11948. name: "Front",
  11949. image: {
  11950. source: "./media/characters/dafydd-tomos/front.svg",
  11951. extra: 2990 / 2603,
  11952. bottom: 0.03
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Micro",
  11959. height: math.unit(6.5, "inches"),
  11960. default: true
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(6, "feet"),
  11969. weight: math.unit(150, "lb"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/splinter/front.svg",
  11973. extra: 2990 / 2882,
  11974. bottom: 0.04
  11975. }
  11976. },
  11977. back: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(150, "lb"),
  11980. name: "Back",
  11981. image: {
  11982. source: "./media/characters/splinter/back.svg",
  11983. extra: 2990 / 2882,
  11984. bottom: 0.04
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Normal",
  11991. height: math.unit(6, "feet")
  11992. },
  11993. {
  11994. name: "Macro",
  11995. height: math.unit(230, "meters"),
  11996. default: true
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(4 + 10 / 12, "feet"),
  12005. weight: math.unit(480, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/snow-gabumon/front.svg",
  12009. extra: 1140 / 963,
  12010. bottom: 0.058
  12011. }
  12012. },
  12013. back: {
  12014. height: math.unit(4 + 10 / 12, "feet"),
  12015. weight: math.unit(480, "lb"),
  12016. name: "Back",
  12017. image: {
  12018. source: "./media/characters/snow-gabumon/back.svg",
  12019. extra: 1115 / 962,
  12020. bottom: 0.041
  12021. }
  12022. },
  12023. frontUndresed: {
  12024. height: math.unit(4 + 10 / 12, "feet"),
  12025. weight: math.unit(480, "lb"),
  12026. name: "Front (Undressed)",
  12027. image: {
  12028. source: "./media/characters/snow-gabumon/front-undressed.svg",
  12029. extra: 1061 / 960,
  12030. bottom: 0.045
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Micro",
  12037. height: math.unit(1, "inch")
  12038. },
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(4 + 10 / 12, "feet"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(200, "feet")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(120, "miles")
  12051. },
  12052. {
  12053. name: "Gigamacro",
  12054. height: math.unit(9800, "miles")
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(1.7, "meters"),
  12063. weight: math.unit(140, "lb"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/moody/front.svg",
  12067. extra: 3226 / 3007,
  12068. bottom: 0.087
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Micro",
  12075. height: math.unit(1, "mm")
  12076. },
  12077. {
  12078. name: "Normal",
  12079. height: math.unit(1.7, "meters"),
  12080. default: true
  12081. },
  12082. {
  12083. name: "Macro",
  12084. height: math.unit(80, "meters")
  12085. },
  12086. {
  12087. name: "Macro+",
  12088. height: math.unit(500, "meters")
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  12094. {
  12095. front: {
  12096. height: math.unit(6, "feet"),
  12097. weight: math.unit(150, "lb"),
  12098. name: "Front",
  12099. image: {
  12100. source: "./media/characters/zyas/front.svg",
  12101. extra: 1180 / 1120,
  12102. bottom: 0.045
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Normal",
  12109. height: math.unit(10, "feet"),
  12110. default: true
  12111. },
  12112. {
  12113. name: "Macro",
  12114. height: math.unit(500, "feet")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(5, "miles")
  12119. },
  12120. {
  12121. name: "Teramacro",
  12122. height: math.unit(150000, "miles")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(150, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/cuon/front.svg",
  12135. extra: 1390 / 1320,
  12136. bottom: 0.008
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Micro",
  12143. height: math.unit(3, "inches")
  12144. },
  12145. {
  12146. name: "Normal",
  12147. height: math.unit(18 + 9 / 12, "feet"),
  12148. default: true
  12149. },
  12150. {
  12151. name: "Macro",
  12152. height: math.unit(360, "feet")
  12153. },
  12154. {
  12155. name: "Megamacro",
  12156. height: math.unit(360, "miles")
  12157. },
  12158. ]
  12159. ))
  12160. characterMakers.push(() => makeCharacter(
  12161. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12162. {
  12163. front: {
  12164. height: math.unit(2.4, "meters"),
  12165. weight: math.unit(70, "kg"),
  12166. name: "Front",
  12167. image: {
  12168. source: "./media/characters/nyanuxk/front.svg",
  12169. extra: 1172 / 1084,
  12170. bottom: 0.065
  12171. }
  12172. },
  12173. side: {
  12174. height: math.unit(2.4, "meters"),
  12175. weight: math.unit(70, "kg"),
  12176. name: "Side",
  12177. image: {
  12178. source: "./media/characters/nyanuxk/side.svg",
  12179. extra: 1190 / 1132,
  12180. bottom: 0.007
  12181. }
  12182. },
  12183. back: {
  12184. height: math.unit(2.4, "meters"),
  12185. weight: math.unit(70, "kg"),
  12186. name: "Back",
  12187. image: {
  12188. source: "./media/characters/nyanuxk/back.svg",
  12189. extra: 1200 / 1141,
  12190. bottom: 0.015
  12191. }
  12192. },
  12193. foot: {
  12194. height: math.unit(0.52, "meters"),
  12195. name: "Foot",
  12196. image: {
  12197. source: "./media/characters/nyanuxk/foot.svg"
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Micro",
  12204. height: math.unit(2, "cm")
  12205. },
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(2.4, "meters"),
  12209. default: true
  12210. },
  12211. {
  12212. name: "Smaller Macro",
  12213. height: math.unit(120, "meters")
  12214. },
  12215. {
  12216. name: "Bigger Macro",
  12217. height: math.unit(1.2, "km")
  12218. },
  12219. {
  12220. name: "Megamacro",
  12221. height: math.unit(15, "kilometers")
  12222. },
  12223. {
  12224. name: "Gigamacro",
  12225. height: math.unit(2000, "km")
  12226. },
  12227. {
  12228. name: "Teramacro",
  12229. height: math.unit(500000, "km")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12235. {
  12236. side: {
  12237. height: math.unit(6, "feet"),
  12238. name: "Side",
  12239. image: {
  12240. source: "./media/characters/ailbhe/side.svg",
  12241. extra: 757 / 464,
  12242. bottom: 0.041
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(1.07, "meters"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(6, "feet"),
  12259. weight: math.unit(120, "kg"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/zevulfius/front.svg",
  12263. extra: 965 / 903
  12264. }
  12265. },
  12266. side: {
  12267. height: math.unit(6, "feet"),
  12268. weight: math.unit(120, "kg"),
  12269. name: "Side",
  12270. image: {
  12271. source: "./media/characters/zevulfius/side.svg",
  12272. extra: 939 / 900
  12273. }
  12274. },
  12275. back: {
  12276. height: math.unit(6, "feet"),
  12277. weight: math.unit(120, "kg"),
  12278. name: "Back",
  12279. image: {
  12280. source: "./media/characters/zevulfius/back.svg",
  12281. extra: 918 / 854,
  12282. bottom: 0.005
  12283. }
  12284. },
  12285. foot: {
  12286. height: math.unit(6 / 3.72, "feet"),
  12287. name: "Foot",
  12288. image: {
  12289. source: "./media/characters/zevulfius/foot.svg"
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Macro",
  12296. height: math.unit(750, "meters")
  12297. },
  12298. {
  12299. name: "Megamacro",
  12300. height: math.unit(20, "km"),
  12301. default: true
  12302. },
  12303. {
  12304. name: "Gigamacro",
  12305. height: math.unit(2000, "km")
  12306. },
  12307. {
  12308. name: "Teramacro",
  12309. height: math.unit(250000, "km")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(100, "feet"),
  12318. weight: math.unit(350, "kg"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/rikes/front.svg",
  12322. extra: 1565 / 1483,
  12323. bottom: 0.017
  12324. }
  12325. },
  12326. },
  12327. [
  12328. {
  12329. name: "Macro",
  12330. height: math.unit(100, "feet"),
  12331. default: true
  12332. },
  12333. ]
  12334. ))
  12335. characterMakers.push(() => makeCharacter(
  12336. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12337. {
  12338. front: {
  12339. height: math.unit(8, "feet"),
  12340. weight: math.unit(356, "lb"),
  12341. name: "Front",
  12342. image: {
  12343. source: "./media/characters/adam-silver-mane/front.svg",
  12344. extra: 1036/937,
  12345. bottom: 63/1099
  12346. }
  12347. },
  12348. side: {
  12349. height: math.unit(8, "feet"),
  12350. weight: math.unit(356, "lb"),
  12351. name: "Side",
  12352. image: {
  12353. source: "./media/characters/adam-silver-mane/side.svg",
  12354. extra: 997/901,
  12355. bottom: 59/1056
  12356. }
  12357. },
  12358. frontNsfw: {
  12359. height: math.unit(8, "feet"),
  12360. weight: math.unit(356, "lb"),
  12361. name: "Front (NSFW)",
  12362. image: {
  12363. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12364. extra: 1036/937,
  12365. bottom: 63/1099
  12366. }
  12367. },
  12368. sideNsfw: {
  12369. height: math.unit(8, "feet"),
  12370. weight: math.unit(356, "lb"),
  12371. name: "Side (NSFW)",
  12372. image: {
  12373. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12374. extra: 997/901,
  12375. bottom: 59/1056
  12376. }
  12377. },
  12378. dick: {
  12379. height: math.unit(2.1, "feet"),
  12380. name: "Dick",
  12381. image: {
  12382. source: "./media/characters/adam-silver-mane/dick.svg"
  12383. }
  12384. },
  12385. taur: {
  12386. height: math.unit(16, "feet"),
  12387. weight: math.unit(1500, "kg"),
  12388. name: "Taur",
  12389. image: {
  12390. source: "./media/characters/adam-silver-mane/taur.svg",
  12391. extra: 1713 / 1571,
  12392. bottom: 0.01
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Normal",
  12399. height: math.unit(8, "feet")
  12400. },
  12401. {
  12402. name: "Minimacro",
  12403. height: math.unit(80, "feet")
  12404. },
  12405. {
  12406. name: "MDA",
  12407. height: math.unit(80, "meters")
  12408. },
  12409. {
  12410. name: "Macro",
  12411. height: math.unit(800, "feet"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Megamacro",
  12416. height: math.unit(8000, "feet")
  12417. },
  12418. {
  12419. name: "Gigamacro",
  12420. height: math.unit(800, "miles")
  12421. },
  12422. {
  12423. name: "Teramacro",
  12424. height: math.unit(80000, "miles")
  12425. },
  12426. {
  12427. name: "Celestial",
  12428. height: math.unit(8e6, "miles")
  12429. },
  12430. {
  12431. name: "Star Dragon",
  12432. height: math.unit(800000, "parsecs")
  12433. },
  12434. {
  12435. name: "Godly",
  12436. height: math.unit(800, "teraparsecs")
  12437. },
  12438. ]
  12439. ))
  12440. characterMakers.push(() => makeCharacter(
  12441. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12442. {
  12443. front: {
  12444. height: math.unit(6, "feet"),
  12445. weight: math.unit(150, "lb"),
  12446. name: "Front",
  12447. image: {
  12448. source: "./media/characters/ky'owin/front.svg",
  12449. extra: 3862/3053,
  12450. bottom: 74/3936
  12451. }
  12452. },
  12453. },
  12454. [
  12455. {
  12456. name: "Normal",
  12457. height: math.unit(6 + 8 / 12, "feet")
  12458. },
  12459. {
  12460. name: "Large",
  12461. height: math.unit(68, "feet")
  12462. },
  12463. {
  12464. name: "Macro",
  12465. height: math.unit(132, "feet")
  12466. },
  12467. {
  12468. name: "Macro+",
  12469. height: math.unit(340, "feet")
  12470. },
  12471. {
  12472. name: "Macro++",
  12473. height: math.unit(680, "feet"),
  12474. default: true
  12475. },
  12476. {
  12477. name: "Megamacro",
  12478. height: math.unit(1, "mile")
  12479. },
  12480. {
  12481. name: "Megamacro+",
  12482. height: math.unit(10, "miles")
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12488. {
  12489. front: {
  12490. height: math.unit(4, "feet"),
  12491. weight: math.unit(50, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/mal/front.svg",
  12495. extra: 785 / 724,
  12496. bottom: 0.07
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Micro",
  12503. height: math.unit(4, "inches")
  12504. },
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(4, "feet"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Macro",
  12512. height: math.unit(200, "feet")
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(150, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/jordan-deware/front.svg",
  12525. extra: 1191 / 1012
  12526. }
  12527. },
  12528. },
  12529. [
  12530. {
  12531. name: "Nano",
  12532. height: math.unit(0.01, "mm")
  12533. },
  12534. {
  12535. name: "Minimicro",
  12536. height: math.unit(1, "mm")
  12537. },
  12538. {
  12539. name: "Micro",
  12540. height: math.unit(0.5, "inches")
  12541. },
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(4, "feet"),
  12545. default: true
  12546. },
  12547. {
  12548. name: "Minimacro",
  12549. height: math.unit(40, "meters")
  12550. },
  12551. {
  12552. name: "Small Macro",
  12553. height: math.unit(400, "meters")
  12554. },
  12555. {
  12556. name: "Macro",
  12557. height: math.unit(4, "miles")
  12558. },
  12559. {
  12560. name: "Megamacro",
  12561. height: math.unit(40, "miles")
  12562. },
  12563. {
  12564. name: "Megamacro+",
  12565. height: math.unit(400, "miles")
  12566. },
  12567. {
  12568. name: "Gigamacro",
  12569. height: math.unit(400000, "miles")
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12575. {
  12576. front: {
  12577. height: math.unit(15, "feet"),
  12578. weight: math.unit(3000, "kg"),
  12579. preyCapacity: math.unit(450, "people"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/kimiko/front.svg",
  12583. extra: 875/832,
  12584. bottom: 36/911
  12585. },
  12586. extraAttributes: {
  12587. "pawSize": {
  12588. name: "Paw Size",
  12589. power: 1,
  12590. type: "length",
  12591. base: math.unit(0.9, "meters")
  12592. },
  12593. }
  12594. },
  12595. side: {
  12596. height: math.unit(15, "feet"),
  12597. weight: math.unit(3000, "kg"),
  12598. preyCapacity: math.unit(400, "people"),
  12599. name: "Side",
  12600. image: {
  12601. source: "./media/characters/kimiko/side.svg",
  12602. extra: 448/270,
  12603. bottom: 7/455
  12604. },
  12605. extraAttributes: {
  12606. "pawSize": {
  12607. name: "Paw Size",
  12608. power: 1,
  12609. type: "length",
  12610. base: math.unit(0.9, "meters")
  12611. },
  12612. }
  12613. },
  12614. maw: {
  12615. height: math.unit(0.81, "feet"),
  12616. name: "Maw",
  12617. image: {
  12618. source: "./media/characters/kimiko/maw.svg"
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(15, "feet"),
  12626. default: true
  12627. },
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(220, "feet")
  12631. },
  12632. {
  12633. name: "Macro+",
  12634. height: math.unit(1450, "feet")
  12635. },
  12636. {
  12637. name: "Megamacro",
  12638. height: math.unit(11500, "feet")
  12639. },
  12640. {
  12641. name: "Gigamacro",
  12642. height: math.unit(9500, "miles")
  12643. },
  12644. {
  12645. name: "Teramacro",
  12646. height: math.unit(2208005005, "miles")
  12647. },
  12648. {
  12649. name: "Examacro",
  12650. height: math.unit(2750, "parsecs")
  12651. },
  12652. {
  12653. name: "Zettamacro",
  12654. height: math.unit(101500, "parsecs")
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(70, "kg"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/andrew-sleepy/front.svg"
  12667. }
  12668. },
  12669. side: {
  12670. height: math.unit(6, "feet"),
  12671. weight: math.unit(70, "kg"),
  12672. name: "Side",
  12673. image: {
  12674. source: "./media/characters/andrew-sleepy/side.svg"
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Micro",
  12681. height: math.unit(1, "mm"),
  12682. default: true
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(150, "lb"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/judio/front.svg",
  12695. extra: 1258 / 1110
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Normal",
  12702. height: math.unit(5 + 6 / 12, "feet")
  12703. },
  12704. {
  12705. name: "Macro",
  12706. height: math.unit(1000, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Megamacro",
  12711. height: math.unit(10, "miles")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12717. {
  12718. frontDressed: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(68, "kg"),
  12721. name: "Front (Dressed)",
  12722. image: {
  12723. source: "./media/characters/nomaxice/front-dressed.svg",
  12724. extra: 1137/824,
  12725. bottom: 74/1211
  12726. }
  12727. },
  12728. frontShorts: {
  12729. height: math.unit(6, "feet"),
  12730. weight: math.unit(68, "kg"),
  12731. name: "Front (Shorts)",
  12732. image: {
  12733. source: "./media/characters/nomaxice/front-shorts.svg",
  12734. extra: 1137/824,
  12735. bottom: 74/1211
  12736. }
  12737. },
  12738. back: {
  12739. height: math.unit(6, "feet"),
  12740. weight: math.unit(68, "kg"),
  12741. name: "Back",
  12742. image: {
  12743. source: "./media/characters/nomaxice/back.svg",
  12744. extra: 822/786,
  12745. bottom: 39/861
  12746. }
  12747. },
  12748. hand: {
  12749. height: math.unit(0.565, "feet"),
  12750. name: "Hand",
  12751. image: {
  12752. source: "./media/characters/nomaxice/hand.svg"
  12753. }
  12754. },
  12755. foot: {
  12756. height: math.unit(1, "feet"),
  12757. name: "Foot",
  12758. image: {
  12759. source: "./media/characters/nomaxice/foot.svg"
  12760. }
  12761. },
  12762. },
  12763. [
  12764. {
  12765. name: "Micro",
  12766. height: math.unit(8, "cm")
  12767. },
  12768. {
  12769. name: "Norm",
  12770. height: math.unit(1.82, "m")
  12771. },
  12772. {
  12773. name: "Norm+",
  12774. height: math.unit(8.8, "feet"),
  12775. default: true
  12776. },
  12777. {
  12778. name: "Big",
  12779. height: math.unit(8, "meters")
  12780. },
  12781. {
  12782. name: "Macro",
  12783. height: math.unit(18, "meters")
  12784. },
  12785. {
  12786. name: "Macro+",
  12787. height: math.unit(88, "meters")
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(12, "feet"),
  12796. weight: math.unit(1.5, "tons"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/dydros/front.svg",
  12800. extra: 863 / 800,
  12801. bottom: 0.015
  12802. }
  12803. },
  12804. back: {
  12805. height: math.unit(12, "feet"),
  12806. weight: math.unit(1.5, "tons"),
  12807. name: "Back",
  12808. image: {
  12809. source: "./media/characters/dydros/back.svg",
  12810. extra: 900 / 843,
  12811. bottom: 0.005
  12812. }
  12813. },
  12814. },
  12815. [
  12816. {
  12817. name: "Normal",
  12818. height: math.unit(12, "feet"),
  12819. default: true
  12820. },
  12821. ]
  12822. ))
  12823. characterMakers.push(() => makeCharacter(
  12824. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12825. {
  12826. front: {
  12827. height: math.unit(6, "feet"),
  12828. weight: math.unit(100, "kg"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/riggi/front.svg",
  12832. extra: 5787 / 5303
  12833. }
  12834. },
  12835. hyper: {
  12836. height: math.unit(6 * 5 / 3, "feet"),
  12837. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12838. name: "Hyper",
  12839. image: {
  12840. source: "./media/characters/riggi/hyper.svg",
  12841. extra: 3595 / 3485
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Small Macro",
  12848. height: math.unit(50, "feet")
  12849. },
  12850. {
  12851. name: "Default",
  12852. height: math.unit(200, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Loom",
  12857. height: math.unit(10000, "feet")
  12858. },
  12859. {
  12860. name: "Cruising Altitude",
  12861. height: math.unit(30000, "feet")
  12862. },
  12863. {
  12864. name: "Megamacro",
  12865. height: math.unit(100, "miles")
  12866. },
  12867. {
  12868. name: "Continent Sized",
  12869. height: math.unit(2800, "miles")
  12870. },
  12871. {
  12872. name: "Earth Sized",
  12873. height: math.unit(8000, "miles")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(6, "feet"),
  12882. weight: math.unit(250, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/alexi/front.svg",
  12886. extra: 3483 / 3291,
  12887. bottom: 0.04
  12888. }
  12889. },
  12890. back: {
  12891. height: math.unit(6, "feet"),
  12892. weight: math.unit(250, "lb"),
  12893. name: "Back",
  12894. image: {
  12895. source: "./media/characters/alexi/back.svg",
  12896. extra: 3533 / 3356,
  12897. bottom: 0.021
  12898. }
  12899. },
  12900. frontTransforming: {
  12901. height: math.unit(8.58, "feet"),
  12902. weight: math.unit(1300, "lb"),
  12903. name: "Transforming",
  12904. image: {
  12905. source: "./media/characters/alexi/front-transforming.svg",
  12906. extra: 437 / 409,
  12907. bottom: 19 / 458.66
  12908. }
  12909. },
  12910. frontTransformed: {
  12911. height: math.unit(12.5, "feet"),
  12912. weight: math.unit(4000, "lb"),
  12913. name: "Transformed",
  12914. image: {
  12915. source: "./media/characters/alexi/front-transformed.svg",
  12916. extra: 639 / 614,
  12917. bottom: 30.55 / 671
  12918. }
  12919. },
  12920. },
  12921. [
  12922. {
  12923. name: "Normal",
  12924. height: math.unit(14, "feet"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Minimacro",
  12929. height: math.unit(30, "meters")
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(500, "meters")
  12934. },
  12935. {
  12936. name: "Megamacro",
  12937. height: math.unit(9000, "km")
  12938. },
  12939. {
  12940. name: "Teramacro",
  12941. height: math.unit(384000, "km")
  12942. },
  12943. ]
  12944. ))
  12945. characterMakers.push(() => makeCharacter(
  12946. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12947. {
  12948. front: {
  12949. height: math.unit(6, "feet"),
  12950. weight: math.unit(150, "lb"),
  12951. name: "Front",
  12952. image: {
  12953. source: "./media/characters/kayroo/front.svg",
  12954. extra: 1153 / 1038,
  12955. bottom: 0.06
  12956. }
  12957. },
  12958. foot: {
  12959. height: math.unit(6, "feet"),
  12960. weight: math.unit(150, "lb"),
  12961. name: "Foot",
  12962. image: {
  12963. source: "./media/characters/kayroo/foot.svg"
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Normal",
  12970. height: math.unit(8, "feet"),
  12971. default: true
  12972. },
  12973. {
  12974. name: "Minimacro",
  12975. height: math.unit(250, "feet")
  12976. },
  12977. {
  12978. name: "Macro",
  12979. height: math.unit(2800, "feet")
  12980. },
  12981. {
  12982. name: "Megamacro",
  12983. height: math.unit(5200, "feet")
  12984. },
  12985. {
  12986. name: "Gigamacro",
  12987. height: math.unit(27000, "feet")
  12988. },
  12989. {
  12990. name: "Omega",
  12991. height: math.unit(45000, "feet")
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(18, "feet"),
  13000. weight: math.unit(5800, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/rhys/front.svg",
  13004. extra: 3386 / 3090,
  13005. bottom: 0.07
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "Normal",
  13012. height: math.unit(18, "feet"),
  13013. default: true
  13014. },
  13015. {
  13016. name: "Working Size",
  13017. height: math.unit(200, "feet")
  13018. },
  13019. {
  13020. name: "Demolition Size",
  13021. height: math.unit(2000, "feet")
  13022. },
  13023. {
  13024. name: "Maximum Licensed Size",
  13025. height: math.unit(5, "miles")
  13026. },
  13027. {
  13028. name: "Maximum Observed Size",
  13029. height: math.unit(10, "yottameters")
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(250, "lb"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/toto/front.svg",
  13042. extra: 527 / 479,
  13043. bottom: 0.05
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Micro",
  13050. height: math.unit(3, "feet")
  13051. },
  13052. {
  13053. name: "Normal",
  13054. height: math.unit(10, "feet")
  13055. },
  13056. {
  13057. name: "Macro",
  13058. height: math.unit(150, "feet"),
  13059. default: true
  13060. },
  13061. {
  13062. name: "Megamacro",
  13063. height: math.unit(1200, "feet")
  13064. },
  13065. ]
  13066. ))
  13067. characterMakers.push(() => makeCharacter(
  13068. { name: "King", species: ["lion"], tags: ["anthro"] },
  13069. {
  13070. back: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(150, "lb"),
  13073. name: "Back",
  13074. image: {
  13075. source: "./media/characters/king/back.svg"
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Micro",
  13082. height: math.unit(2, "inches")
  13083. },
  13084. {
  13085. name: "Normal",
  13086. height: math.unit(8, "feet")
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(200, "feet"),
  13091. default: true
  13092. },
  13093. {
  13094. name: "Megamacro",
  13095. height: math.unit(50, "miles")
  13096. },
  13097. ]
  13098. ))
  13099. characterMakers.push(() => makeCharacter(
  13100. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  13101. {
  13102. front: {
  13103. height: math.unit(11, "feet"),
  13104. weight: math.unit(1400, "lb"),
  13105. name: "Front",
  13106. image: {
  13107. source: "./media/characters/cordite/front.svg",
  13108. extra: 1919/1827,
  13109. bottom: 40/1959
  13110. }
  13111. },
  13112. side: {
  13113. height: math.unit(11, "feet"),
  13114. weight: math.unit(1400, "lb"),
  13115. name: "Side",
  13116. image: {
  13117. source: "./media/characters/cordite/side.svg",
  13118. extra: 1908/1793,
  13119. bottom: 38/1946
  13120. }
  13121. },
  13122. back: {
  13123. height: math.unit(11, "feet"),
  13124. weight: math.unit(1400, "lb"),
  13125. name: "Back",
  13126. image: {
  13127. source: "./media/characters/cordite/back.svg",
  13128. extra: 1938/1837,
  13129. bottom: 10/1948
  13130. }
  13131. },
  13132. feral: {
  13133. height: math.unit(2, "feet"),
  13134. weight: math.unit(90, "lb"),
  13135. name: "Feral",
  13136. image: {
  13137. source: "./media/characters/cordite/feral.svg",
  13138. extra: 1260 / 755,
  13139. bottom: 0.05
  13140. }
  13141. },
  13142. },
  13143. [
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(11, "feet"),
  13147. default: true
  13148. },
  13149. ]
  13150. ))
  13151. characterMakers.push(() => makeCharacter(
  13152. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13153. {
  13154. front: {
  13155. height: math.unit(6, "feet"),
  13156. weight: math.unit(150, "lb"),
  13157. name: "Front",
  13158. image: {
  13159. source: "./media/characters/pianostrong/front.svg",
  13160. extra: 6577 / 6254,
  13161. bottom: 0.02
  13162. }
  13163. },
  13164. side: {
  13165. height: math.unit(6, "feet"),
  13166. weight: math.unit(150, "lb"),
  13167. name: "Side",
  13168. image: {
  13169. source: "./media/characters/pianostrong/side.svg",
  13170. extra: 6106 / 5730
  13171. }
  13172. },
  13173. back: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Back",
  13177. image: {
  13178. source: "./media/characters/pianostrong/back.svg",
  13179. extra: 6085 / 5733,
  13180. bottom: 0.01
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Macro",
  13187. height: math.unit(100, "feet")
  13188. },
  13189. {
  13190. name: "Macro+",
  13191. height: math.unit(300, "feet"),
  13192. default: true
  13193. },
  13194. {
  13195. name: "Macro++",
  13196. height: math.unit(1000, "feet")
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "lb"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/kona/front.svg",
  13209. extra: 2960 / 2629,
  13210. bottom: 0.005
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(11 + 8 / 12, "feet")
  13218. },
  13219. {
  13220. name: "Macro",
  13221. height: math.unit(850, "feet"),
  13222. default: true
  13223. },
  13224. {
  13225. name: "Macro+",
  13226. height: math.unit(1.5, "km"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(80, "miles")
  13232. },
  13233. {
  13234. name: "Gigamacro",
  13235. height: math.unit(3500, "miles")
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13241. {
  13242. side: {
  13243. height: math.unit(1.9, "meters"),
  13244. weight: math.unit(326, "kg"),
  13245. name: "Side",
  13246. image: {
  13247. source: "./media/characters/levi/side.svg",
  13248. extra: 1704 / 1334,
  13249. bottom: 0.02
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(1.9, "meters"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Macro",
  13261. height: math.unit(20, "meters")
  13262. },
  13263. {
  13264. name: "Macro+",
  13265. height: math.unit(200, "meters")
  13266. },
  13267. {
  13268. name: "Megamacro",
  13269. height: math.unit(2, "km")
  13270. },
  13271. {
  13272. name: "Megamacro+",
  13273. height: math.unit(20, "km")
  13274. },
  13275. {
  13276. name: "Gigamacro",
  13277. height: math.unit(2500, "km")
  13278. },
  13279. {
  13280. name: "Gigamacro+",
  13281. height: math.unit(120000, "km")
  13282. },
  13283. {
  13284. name: "Teramacro",
  13285. height: math.unit(7.77e6, "km")
  13286. },
  13287. ]
  13288. ))
  13289. characterMakers.push(() => makeCharacter(
  13290. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13291. {
  13292. front: {
  13293. height: math.unit(6 + 4/12, "feet"),
  13294. weight: math.unit(190, "lb"),
  13295. name: "Front",
  13296. image: {
  13297. source: "./media/characters/bmc/front.svg",
  13298. extra: 1626/1472,
  13299. bottom: 79/1705
  13300. }
  13301. },
  13302. back: {
  13303. height: math.unit(6 + 4/12, "feet"),
  13304. weight: math.unit(190, "lb"),
  13305. name: "Back",
  13306. image: {
  13307. source: "./media/characters/bmc/back.svg",
  13308. extra: 1640/1479,
  13309. bottom: 45/1685
  13310. }
  13311. },
  13312. frontArmor: {
  13313. height: math.unit(6 + 4/12, "feet"),
  13314. weight: math.unit(190, "lb"),
  13315. name: "Front (Armor)",
  13316. image: {
  13317. source: "./media/characters/bmc/front-armor.svg",
  13318. extra: 1538/1468,
  13319. bottom: 79/1617
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Human-sized",
  13326. height: math.unit(6 + 4 / 12, "feet")
  13327. },
  13328. {
  13329. name: "Interactive Size",
  13330. height: math.unit(25, "feet")
  13331. },
  13332. {
  13333. name: "Small",
  13334. height: math.unit(250, "feet")
  13335. },
  13336. {
  13337. name: "Normal",
  13338. height: math.unit(1250, "feet"),
  13339. default: true
  13340. },
  13341. {
  13342. name: "Good Day",
  13343. height: math.unit(88, "miles")
  13344. },
  13345. {
  13346. name: "Largest Measured Size",
  13347. height: math.unit(105.960, "galaxies")
  13348. },
  13349. ]
  13350. ))
  13351. characterMakers.push(() => makeCharacter(
  13352. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13353. {
  13354. front: {
  13355. height: math.unit(20, "feet"),
  13356. weight: math.unit(2016, "kg"),
  13357. name: "Front",
  13358. image: {
  13359. source: "./media/characters/sven-the-kaiju/front.svg",
  13360. extra: 1277/1250,
  13361. bottom: 35/1312
  13362. }
  13363. },
  13364. mouth: {
  13365. height: math.unit(1.85, "feet"),
  13366. name: "Mouth",
  13367. image: {
  13368. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Fairy",
  13375. height: math.unit(6, "inches")
  13376. },
  13377. {
  13378. name: "Normal",
  13379. height: math.unit(20, "feet"),
  13380. default: true
  13381. },
  13382. {
  13383. name: "Rampage",
  13384. height: math.unit(200, "feet")
  13385. },
  13386. {
  13387. name: "Archfey Forest Guardian",
  13388. height: math.unit(1, "mile")
  13389. },
  13390. ]
  13391. ))
  13392. characterMakers.push(() => makeCharacter(
  13393. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13394. {
  13395. front: {
  13396. height: math.unit(4, "meters"),
  13397. weight: math.unit(2, "tons"),
  13398. name: "Front",
  13399. image: {
  13400. source: "./media/characters/marik/front.svg",
  13401. extra: 1057 / 1003,
  13402. bottom: 0.08
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Normal",
  13409. height: math.unit(4, "meters"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Macro",
  13414. height: math.unit(20, "meters")
  13415. },
  13416. {
  13417. name: "Megamacro",
  13418. height: math.unit(50, "km")
  13419. },
  13420. {
  13421. name: "Gigamacro",
  13422. height: math.unit(100, "km")
  13423. },
  13424. {
  13425. name: "Alpha Macro",
  13426. height: math.unit(7.88e7, "yottameters")
  13427. },
  13428. ]
  13429. ))
  13430. characterMakers.push(() => makeCharacter(
  13431. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13432. {
  13433. front: {
  13434. height: math.unit(6, "feet"),
  13435. weight: math.unit(110, "lb"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/mel/front.svg",
  13439. extra: 736 / 617,
  13440. bottom: 0.017
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Pico",
  13447. height: math.unit(3, "pm")
  13448. },
  13449. {
  13450. name: "Nano",
  13451. height: math.unit(3, "nm")
  13452. },
  13453. {
  13454. name: "Micro",
  13455. height: math.unit(0.3, "mm"),
  13456. default: true
  13457. },
  13458. {
  13459. name: "Micro+",
  13460. height: math.unit(3, "mm")
  13461. },
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(5 + 10.5 / 12, "feet")
  13465. },
  13466. ]
  13467. ))
  13468. characterMakers.push(() => makeCharacter(
  13469. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13470. {
  13471. kaiju: {
  13472. height: math.unit(1.75, "meters"),
  13473. weight: math.unit(55, "kg"),
  13474. name: "Kaiju",
  13475. image: {
  13476. source: "./media/characters/lykonous/kaiju.svg",
  13477. extra: 1055 / 946,
  13478. bottom: 0.135
  13479. }
  13480. },
  13481. },
  13482. [
  13483. {
  13484. name: "Normal",
  13485. height: math.unit(2.5, "meters"),
  13486. default: true
  13487. },
  13488. {
  13489. name: "Kaiju Dragon",
  13490. height: math.unit(60, "meters")
  13491. },
  13492. {
  13493. name: "Mega Kaiju",
  13494. height: math.unit(120, "km")
  13495. },
  13496. {
  13497. name: "Giga Kaiju",
  13498. height: math.unit(200, "megameters")
  13499. },
  13500. {
  13501. name: "Terra Kaiju",
  13502. height: math.unit(400, "gigameters")
  13503. },
  13504. {
  13505. name: "Kaiju Dragon God",
  13506. height: math.unit(13000, "exaparsecs")
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6, "feet"),
  13515. weight: math.unit(150, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/blü/front.svg",
  13519. extra: 1883 / 1564,
  13520. bottom: 0.031
  13521. }
  13522. },
  13523. },
  13524. [
  13525. {
  13526. name: "Normal",
  13527. height: math.unit(13, "feet"),
  13528. default: true
  13529. },
  13530. {
  13531. name: "Big Boi",
  13532. height: math.unit(150, "meters")
  13533. },
  13534. {
  13535. name: "Mini Stomper",
  13536. height: math.unit(300, "meters")
  13537. },
  13538. {
  13539. name: "Macro",
  13540. height: math.unit(1000, "meters")
  13541. },
  13542. {
  13543. name: "Megamacro",
  13544. height: math.unit(11000, "meters")
  13545. },
  13546. {
  13547. name: "Gigamacro",
  13548. height: math.unit(11000, "km")
  13549. },
  13550. {
  13551. name: "Teramacro",
  13552. height: math.unit(420000, "km")
  13553. },
  13554. {
  13555. name: "Examacro",
  13556. height: math.unit(120, "parsecs")
  13557. },
  13558. {
  13559. name: "God Tho",
  13560. height: math.unit(98000000000, "parsecs")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13566. {
  13567. taurFront: {
  13568. height: math.unit(6, "feet"),
  13569. weight: math.unit(200, "lb"),
  13570. name: "Taur (Front)",
  13571. image: {
  13572. source: "./media/characters/scales/taur-front.svg",
  13573. extra: 1,
  13574. bottom: 0.05
  13575. }
  13576. },
  13577. taurBack: {
  13578. height: math.unit(6, "feet"),
  13579. weight: math.unit(200, "lb"),
  13580. name: "Taur (Back)",
  13581. image: {
  13582. source: "./media/characters/scales/taur-back.svg",
  13583. extra: 1,
  13584. bottom: 0.08
  13585. }
  13586. },
  13587. anthro: {
  13588. height: math.unit(6 * 7 / 12, "feet"),
  13589. weight: math.unit(100, "lb"),
  13590. name: "Anthro",
  13591. image: {
  13592. source: "./media/characters/scales/anthro.svg",
  13593. extra: 1,
  13594. bottom: 0.06
  13595. }
  13596. },
  13597. },
  13598. [
  13599. {
  13600. name: "Normal",
  13601. height: math.unit(12, "feet"),
  13602. default: true
  13603. },
  13604. ]
  13605. ))
  13606. characterMakers.push(() => makeCharacter(
  13607. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13608. {
  13609. front: {
  13610. height: math.unit(6, "feet"),
  13611. weight: math.unit(150, "lb"),
  13612. name: "Front",
  13613. image: {
  13614. source: "./media/characters/koragos/front.svg",
  13615. extra: 841 / 794,
  13616. bottom: 0.035
  13617. }
  13618. },
  13619. back: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(150, "lb"),
  13622. name: "Back",
  13623. image: {
  13624. source: "./media/characters/koragos/back.svg",
  13625. extra: 841 / 810,
  13626. bottom: 0.022
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Normal",
  13633. height: math.unit(6 + 11 / 12, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Macro",
  13638. height: math.unit(490, "feet")
  13639. },
  13640. {
  13641. name: "Megamacro",
  13642. height: math.unit(10, "miles")
  13643. },
  13644. {
  13645. name: "Gigamacro",
  13646. height: math.unit(50, "miles")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(6, "feet"),
  13655. weight: math.unit(250, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/xylrem/front.svg",
  13659. extra: 3323 / 3050,
  13660. bottom: 0.065
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Micro",
  13667. height: math.unit(4, "feet")
  13668. },
  13669. {
  13670. name: "Normal",
  13671. height: math.unit(16, "feet"),
  13672. default: true
  13673. },
  13674. {
  13675. name: "Macro",
  13676. height: math.unit(2720, "feet")
  13677. },
  13678. {
  13679. name: "Megamacro",
  13680. height: math.unit(25000, "miles")
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(8, "feet"),
  13689. weight: math.unit(250, "kg"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/ikideru/front.svg",
  13693. extra: 930 / 870,
  13694. bottom: 0.087
  13695. }
  13696. },
  13697. back: {
  13698. height: math.unit(8, "feet"),
  13699. weight: math.unit(250, "kg"),
  13700. name: "Back",
  13701. image: {
  13702. source: "./media/characters/ikideru/back.svg",
  13703. extra: 919 / 852,
  13704. bottom: 0.055
  13705. }
  13706. },
  13707. },
  13708. [
  13709. {
  13710. name: "Rare",
  13711. height: math.unit(8, "feet"),
  13712. default: true
  13713. },
  13714. {
  13715. name: "Playful Loom",
  13716. height: math.unit(80, "feet")
  13717. },
  13718. {
  13719. name: "City Leaner",
  13720. height: math.unit(230, "feet")
  13721. },
  13722. {
  13723. name: "Megamacro",
  13724. height: math.unit(2500, "feet")
  13725. },
  13726. {
  13727. name: "Gigamacro",
  13728. height: math.unit(26400, "feet")
  13729. },
  13730. {
  13731. name: "Tectonic Shifter",
  13732. height: math.unit(1.7, "megameters")
  13733. },
  13734. {
  13735. name: "Planet Carer",
  13736. height: math.unit(21, "megameters")
  13737. },
  13738. {
  13739. name: "God",
  13740. height: math.unit(11157.22, "parsecs")
  13741. },
  13742. ]
  13743. ))
  13744. characterMakers.push(() => makeCharacter(
  13745. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13746. {
  13747. front: {
  13748. height: math.unit(6, "feet"),
  13749. weight: math.unit(120, "lb"),
  13750. name: "Front",
  13751. image: {
  13752. source: "./media/characters/neo/front.svg"
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Micro",
  13759. height: math.unit(2, "inches"),
  13760. default: true
  13761. },
  13762. {
  13763. name: "Human Size",
  13764. height: math.unit(5 + 8 / 12, "feet")
  13765. },
  13766. ]
  13767. ))
  13768. characterMakers.push(() => makeCharacter(
  13769. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13770. {
  13771. front: {
  13772. height: math.unit(13 + 10 / 12, "feet"),
  13773. weight: math.unit(5320, "lb"),
  13774. name: "Front",
  13775. image: {
  13776. source: "./media/characters/chauncey-chantz/front.svg",
  13777. extra: 1587 / 1435,
  13778. bottom: 0.02
  13779. }
  13780. },
  13781. },
  13782. [
  13783. {
  13784. name: "Normal",
  13785. height: math.unit(13 + 10 / 12, "feet"),
  13786. default: true
  13787. },
  13788. {
  13789. name: "Macro",
  13790. height: math.unit(45, "feet")
  13791. },
  13792. {
  13793. name: "Megamacro",
  13794. height: math.unit(250, "miles")
  13795. },
  13796. {
  13797. name: "Planetary",
  13798. height: math.unit(10000, "miles")
  13799. },
  13800. {
  13801. name: "Galactic",
  13802. height: math.unit(40000, "parsecs")
  13803. },
  13804. {
  13805. name: "Universal",
  13806. height: math.unit(1, "yottameter")
  13807. },
  13808. ]
  13809. ))
  13810. characterMakers.push(() => makeCharacter(
  13811. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13812. {
  13813. front: {
  13814. height: math.unit(6, "feet"),
  13815. weight: math.unit(150, "lb"),
  13816. name: "Front",
  13817. image: {
  13818. source: "./media/characters/epifox/front.svg",
  13819. extra: 1,
  13820. bottom: 0.075
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Micro",
  13827. height: math.unit(6, "inches")
  13828. },
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(12, "feet"),
  13832. default: true
  13833. },
  13834. {
  13835. name: "Macro",
  13836. height: math.unit(3810, "feet")
  13837. },
  13838. {
  13839. name: "Megamacro",
  13840. height: math.unit(500, "miles")
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13846. {
  13847. front: {
  13848. height: math.unit(1.8796, "m"),
  13849. weight: math.unit(230, "lb"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/colin-t/front.svg",
  13853. extra: 1272 / 1193,
  13854. bottom: 0.07
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "Micro",
  13861. height: math.unit(0.571, "meters")
  13862. },
  13863. {
  13864. name: "Normal",
  13865. height: math.unit(1.8796, "meters"),
  13866. default: true
  13867. },
  13868. {
  13869. name: "Tall",
  13870. height: math.unit(4, "meters")
  13871. },
  13872. {
  13873. name: "Macro",
  13874. height: math.unit(67.241, "meters")
  13875. },
  13876. {
  13877. name: "Megamacro",
  13878. height: math.unit(371.856, "meters")
  13879. },
  13880. {
  13881. name: "Planetary",
  13882. height: math.unit(12631.5689, "km")
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(1.85, "meters"),
  13891. weight: math.unit(80, "kg"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/matvei/front.svg",
  13895. extra: 456/447,
  13896. bottom: 8/464
  13897. }
  13898. },
  13899. back: {
  13900. height: math.unit(1.85, "meters"),
  13901. weight: math.unit(80, "kg"),
  13902. name: "Back",
  13903. image: {
  13904. source: "./media/characters/matvei/back.svg",
  13905. extra: 434/427,
  13906. bottom: 11/445
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(1.85, "meters"),
  13914. default: true
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(5 + 9 / 12, "feet"),
  13923. weight: math.unit(70, "lb"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/quincy/front.svg",
  13927. extra: 3041 / 2751
  13928. }
  13929. },
  13930. back: {
  13931. height: math.unit(5 + 9 / 12, "feet"),
  13932. weight: math.unit(70, "lb"),
  13933. name: "Back",
  13934. image: {
  13935. source: "./media/characters/quincy/back.svg",
  13936. extra: 3041 / 2751
  13937. }
  13938. },
  13939. flying: {
  13940. height: math.unit(5 + 4 / 12, "feet"),
  13941. weight: math.unit(70, "lb"),
  13942. name: "Flying",
  13943. image: {
  13944. source: "./media/characters/quincy/flying.svg",
  13945. extra: 1044 / 930
  13946. }
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Micro",
  13952. height: math.unit(3, "cm")
  13953. },
  13954. {
  13955. name: "Normal",
  13956. height: math.unit(5 + 9 / 12, "feet")
  13957. },
  13958. {
  13959. name: "Macro",
  13960. height: math.unit(200, "meters"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Megamacro",
  13965. height: math.unit(1000, "meters")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(3 + 11/12, "feet"),
  13974. weight: math.unit(50, "lb"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/vanrel/front.svg",
  13978. extra: 1104/949,
  13979. bottom: 52/1156
  13980. }
  13981. },
  13982. back: {
  13983. height: math.unit(3 + 11/12, "feet"),
  13984. weight: math.unit(50, "lb"),
  13985. name: "Back",
  13986. image: {
  13987. source: "./media/characters/vanrel/back.svg",
  13988. extra: 1119/976,
  13989. bottom: 37/1156
  13990. }
  13991. },
  13992. tome: {
  13993. height: math.unit(1.35, "feet"),
  13994. weight: math.unit(10, "lb"),
  13995. name: "Vanrel's Tome",
  13996. rename: true,
  13997. image: {
  13998. source: "./media/characters/vanrel/tome.svg"
  13999. }
  14000. },
  14001. beans: {
  14002. height: math.unit(0.89, "feet"),
  14003. name: "Beans",
  14004. image: {
  14005. source: "./media/characters/vanrel/beans.svg"
  14006. }
  14007. },
  14008. },
  14009. [
  14010. {
  14011. name: "Normal",
  14012. height: math.unit(3 + 11/12, "feet"),
  14013. default: true
  14014. },
  14015. ]
  14016. ))
  14017. characterMakers.push(() => makeCharacter(
  14018. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  14019. {
  14020. front: {
  14021. height: math.unit(7 + 5 / 12, "feet"),
  14022. name: "Front",
  14023. image: {
  14024. source: "./media/characters/kuiper-vanrel/front.svg",
  14025. extra: 1219/1169,
  14026. bottom: 69/1288
  14027. }
  14028. },
  14029. back: {
  14030. height: math.unit(7 + 5 / 12, "feet"),
  14031. name: "Back",
  14032. image: {
  14033. source: "./media/characters/kuiper-vanrel/back.svg",
  14034. extra: 1236/1193,
  14035. bottom: 27/1263
  14036. }
  14037. },
  14038. foot: {
  14039. height: math.unit(0.55, "meters"),
  14040. name: "Foot",
  14041. image: {
  14042. source: "./media/characters/kuiper-vanrel/foot.svg",
  14043. }
  14044. },
  14045. battle: {
  14046. height: math.unit(6.824, "feet"),
  14047. name: "Battle",
  14048. image: {
  14049. source: "./media/characters/kuiper-vanrel/battle.svg",
  14050. extra: 1466 / 1327,
  14051. bottom: 29 / 1492.5
  14052. }
  14053. },
  14054. meerkui: {
  14055. height: math.unit(18, "inches"),
  14056. name: "Meerkui",
  14057. image: {
  14058. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  14059. extra: 1354/1289,
  14060. bottom: 69/1423
  14061. }
  14062. },
  14063. },
  14064. [
  14065. {
  14066. name: "Normal",
  14067. height: math.unit(7 + 5 / 12, "feet"),
  14068. default: true
  14069. },
  14070. ]
  14071. ))
  14072. characterMakers.push(() => makeCharacter(
  14073. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  14074. {
  14075. front: {
  14076. height: math.unit(8 + 5 / 12, "feet"),
  14077. name: "Front",
  14078. image: {
  14079. source: "./media/characters/keset-vanrel/front.svg",
  14080. extra: 1231/1148,
  14081. bottom: 82/1313
  14082. }
  14083. },
  14084. back: {
  14085. height: math.unit(8 + 5 / 12, "feet"),
  14086. name: "Back",
  14087. image: {
  14088. source: "./media/characters/keset-vanrel/back.svg",
  14089. extra: 1240/1174,
  14090. bottom: 33/1273
  14091. }
  14092. },
  14093. hand: {
  14094. height: math.unit(0.6, "meters"),
  14095. name: "Hand",
  14096. image: {
  14097. source: "./media/characters/keset-vanrel/hand.svg"
  14098. }
  14099. },
  14100. foot: {
  14101. height: math.unit(0.94978, "meters"),
  14102. name: "Foot",
  14103. image: {
  14104. source: "./media/characters/keset-vanrel/foot.svg"
  14105. }
  14106. },
  14107. battle: {
  14108. height: math.unit(7.408, "feet"),
  14109. name: "Battle",
  14110. image: {
  14111. source: "./media/characters/keset-vanrel/battle.svg",
  14112. extra: 1890 / 1386,
  14113. bottom: 73.28 / 1970
  14114. }
  14115. },
  14116. },
  14117. [
  14118. {
  14119. name: "Normal",
  14120. height: math.unit(8 + 5 / 12, "feet"),
  14121. default: true
  14122. },
  14123. ]
  14124. ))
  14125. characterMakers.push(() => makeCharacter(
  14126. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  14127. {
  14128. front: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(150, "lb"),
  14131. name: "Front",
  14132. image: {
  14133. source: "./media/characters/neos/front.svg",
  14134. extra: 1696 / 992,
  14135. bottom: 0.14
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(54, "cm"),
  14143. default: true
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(100, "m")
  14148. },
  14149. {
  14150. name: "Megamacro",
  14151. height: math.unit(10, "km")
  14152. },
  14153. {
  14154. name: "Megamacro+",
  14155. height: math.unit(100, "km")
  14156. },
  14157. {
  14158. name: "Gigamacro",
  14159. height: math.unit(100, "Mm")
  14160. },
  14161. {
  14162. name: "Teramacro",
  14163. height: math.unit(100, "Gm")
  14164. },
  14165. {
  14166. name: "Examacro",
  14167. height: math.unit(100, "Em")
  14168. },
  14169. {
  14170. name: "Godly",
  14171. height: math.unit(10000, "Ym")
  14172. },
  14173. {
  14174. name: "Beyond Godly",
  14175. height: math.unit(25, "multiverses")
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14181. {
  14182. fluide_tame: {
  14183. height: math.unit(5, "feet"),
  14184. name: "Tame",
  14185. image: {
  14186. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14187. extra: 1655/1574,
  14188. bottom: 231/1886
  14189. },
  14190. form: "fluide",
  14191. default: true
  14192. },
  14193. fluide_nude: {
  14194. height: math.unit(5, "feet"),
  14195. name: "Nude",
  14196. image: {
  14197. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14198. extra: 1655/1574,
  14199. bottom: 231/1886
  14200. },
  14201. form: "fluide",
  14202. },
  14203. male_tame: {
  14204. height: math.unit(5, "feet"),
  14205. name: "Tame",
  14206. image: {
  14207. source: "./media/characters/sammy-mouse/male-tame.svg",
  14208. extra: 1655/1574,
  14209. bottom: 231/1886
  14210. },
  14211. form: "male",
  14212. default: true
  14213. },
  14214. male_nude: {
  14215. height: math.unit(5, "feet"),
  14216. name: "Nude",
  14217. image: {
  14218. source: "./media/characters/sammy-mouse/male-nude.svg",
  14219. extra: 1655/1574,
  14220. bottom: 231/1886
  14221. },
  14222. form: "male",
  14223. },
  14224. female_nude: {
  14225. height: math.unit(5, "feet"),
  14226. name: "Nude",
  14227. image: {
  14228. source: "./media/characters/sammy-mouse/female-nude.svg",
  14229. extra: 1655/1574,
  14230. bottom: 231/1886
  14231. },
  14232. form: "female",
  14233. default: true
  14234. },
  14235. mouth: {
  14236. height: math.unit(0.32, "feet"),
  14237. name: "Mouth",
  14238. image: {
  14239. source: "./media/characters/sammy-mouse/mouth.svg"
  14240. },
  14241. allForms: true
  14242. },
  14243. paw: {
  14244. height: math.unit(0.42, "feet"),
  14245. name: "Paw",
  14246. image: {
  14247. source: "./media/characters/sammy-mouse/paw.svg"
  14248. },
  14249. allForms: true
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Micro",
  14255. height: math.unit(5, "inches"),
  14256. allForms: true
  14257. },
  14258. {
  14259. name: "Normal",
  14260. height: math.unit(5, "feet"),
  14261. default: true,
  14262. allForms: true
  14263. },
  14264. {
  14265. name: "Macro",
  14266. height: math.unit(60, "feet"),
  14267. allForms: true
  14268. },
  14269. ],
  14270. {
  14271. "fluide": {
  14272. name: "Fluide",
  14273. default: true
  14274. },
  14275. "male": {
  14276. name: "Male",
  14277. },
  14278. "female": {
  14279. name: "Female",
  14280. },
  14281. }
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(4, "feet"),
  14288. weight: math.unit(50, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/kole/front.svg",
  14292. extra: 1423 / 1303,
  14293. bottom: 0.025
  14294. }
  14295. },
  14296. back: {
  14297. height: math.unit(4, "feet"),
  14298. weight: math.unit(50, "lb"),
  14299. name: "Back",
  14300. image: {
  14301. source: "./media/characters/kole/back.svg",
  14302. extra: 1426 / 1280,
  14303. bottom: 0.02
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(4, "feet"),
  14311. default: true
  14312. },
  14313. ]
  14314. ))
  14315. characterMakers.push(() => makeCharacter(
  14316. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14317. {
  14318. front: {
  14319. height: math.unit(2.5, "feet"),
  14320. weight: math.unit(32, "lb"),
  14321. name: "Front",
  14322. image: {
  14323. source: "./media/characters/rufran/front.svg",
  14324. extra: 1313/885,
  14325. bottom: 94/1407
  14326. }
  14327. },
  14328. side: {
  14329. height: math.unit(2.5, "feet"),
  14330. weight: math.unit(32, "lb"),
  14331. name: "Side",
  14332. image: {
  14333. source: "./media/characters/rufran/side.svg",
  14334. extra: 1109/852,
  14335. bottom: 118/1227
  14336. }
  14337. },
  14338. back: {
  14339. height: math.unit(2.5, "feet"),
  14340. weight: math.unit(32, "lb"),
  14341. name: "Back",
  14342. image: {
  14343. source: "./media/characters/rufran/back.svg",
  14344. extra: 1280/878,
  14345. bottom: 131/1411
  14346. }
  14347. },
  14348. mouth: {
  14349. height: math.unit(1.13, "feet"),
  14350. name: "Mouth",
  14351. image: {
  14352. source: "./media/characters/rufran/mouth.svg"
  14353. }
  14354. },
  14355. foot: {
  14356. height: math.unit(1.33, "feet"),
  14357. name: "Foot",
  14358. image: {
  14359. source: "./media/characters/rufran/foot.svg"
  14360. }
  14361. },
  14362. koboldFront: {
  14363. height: math.unit(2 + 6 / 12, "feet"),
  14364. weight: math.unit(20, "lb"),
  14365. name: "Front (Kobold)",
  14366. image: {
  14367. source: "./media/characters/rufran/kobold-front.svg",
  14368. extra: 2041 / 1839,
  14369. bottom: 0.055
  14370. }
  14371. },
  14372. koboldBack: {
  14373. height: math.unit(2 + 6 / 12, "feet"),
  14374. weight: math.unit(20, "lb"),
  14375. name: "Back (Kobold)",
  14376. image: {
  14377. source: "./media/characters/rufran/kobold-back.svg",
  14378. extra: 2054 / 1839,
  14379. bottom: 0.01
  14380. }
  14381. },
  14382. koboldHand: {
  14383. height: math.unit(0.2166, "meters"),
  14384. name: "Hand (Kobold)",
  14385. image: {
  14386. source: "./media/characters/rufran/kobold-hand.svg"
  14387. }
  14388. },
  14389. koboldFoot: {
  14390. height: math.unit(0.185, "meters"),
  14391. name: "Foot (Kobold)",
  14392. image: {
  14393. source: "./media/characters/rufran/kobold-foot.svg"
  14394. }
  14395. },
  14396. },
  14397. [
  14398. {
  14399. name: "Micro",
  14400. height: math.unit(1, "inch")
  14401. },
  14402. {
  14403. name: "Normal",
  14404. height: math.unit(2 + 6 / 12, "feet"),
  14405. default: true
  14406. },
  14407. {
  14408. name: "Big",
  14409. height: math.unit(60, "feet")
  14410. },
  14411. {
  14412. name: "Macro",
  14413. height: math.unit(325, "feet")
  14414. },
  14415. ]
  14416. ))
  14417. characterMakers.push(() => makeCharacter(
  14418. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14419. {
  14420. front: {
  14421. height: math.unit(0.3, "meters"),
  14422. weight: math.unit(3.5, "kg"),
  14423. name: "Front",
  14424. image: {
  14425. source: "./media/characters/chip/front.svg",
  14426. extra: 748 / 674
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Micro",
  14433. height: math.unit(1, "inch"),
  14434. default: true
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14440. {
  14441. side: {
  14442. height: math.unit(2.3, "meters"),
  14443. weight: math.unit(3500, "lb"),
  14444. name: "Side",
  14445. image: {
  14446. source: "./media/characters/torvid/side.svg",
  14447. extra: 1972 / 722,
  14448. bottom: 0.035
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(2.3, "meters"),
  14456. default: true
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14462. {
  14463. front: {
  14464. height: math.unit(2, "meters"),
  14465. weight: math.unit(150.5, "kg"),
  14466. name: "Front",
  14467. image: {
  14468. source: "./media/characters/susan/front.svg",
  14469. extra: 693 / 635,
  14470. bottom: 0.05
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Megamacro",
  14477. height: math.unit(505, "miles"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14484. {
  14485. front: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(150, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/raindrops/front.svg",
  14491. extra: 2655 / 2461,
  14492. bottom: 49 / 2705
  14493. }
  14494. },
  14495. back: {
  14496. height: math.unit(6, "feet"),
  14497. weight: math.unit(150, "lb"),
  14498. name: "Back",
  14499. image: {
  14500. source: "./media/characters/raindrops/back.svg",
  14501. extra: 2574 / 2400,
  14502. bottom: 65 / 2634
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Micro",
  14509. height: math.unit(6, "inches")
  14510. },
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(6 + 2 / 12, "feet")
  14514. },
  14515. {
  14516. name: "Macro",
  14517. height: math.unit(131, "feet"),
  14518. default: true
  14519. },
  14520. {
  14521. name: "Megamacro",
  14522. height: math.unit(15, "miles")
  14523. },
  14524. {
  14525. name: "Gigamacro",
  14526. height: math.unit(4000, "miles")
  14527. },
  14528. {
  14529. name: "Teramacro",
  14530. height: math.unit(315000, "miles")
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14536. {
  14537. normal_front: {
  14538. height: math.unit(9 + 2/12, "feet"),
  14539. weight: math.unit(325, "kg"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/tezwa/normal-front.svg",
  14543. extra: 770/714,
  14544. bottom: 32/802
  14545. },
  14546. form: "normal",
  14547. },
  14548. normal_paw: {
  14549. height: math.unit(2.2, "feet"),
  14550. name: "Paw",
  14551. image: {
  14552. source: "./media/characters/tezwa/paw.svg"
  14553. },
  14554. form: "normal",
  14555. },
  14556. muscled_front: {
  14557. height: math.unit(916 + 8/12, "feet"),
  14558. weight: math.unit(500000, "tons"),
  14559. name: "Front",
  14560. image: {
  14561. source: "./media/characters/tezwa/muscled-front.svg",
  14562. extra: 1840/1697,
  14563. bottom: 29/1869
  14564. },
  14565. form: "muscled",
  14566. },
  14567. muscled_paw: {
  14568. height: math.unit(200, "feet"),
  14569. name: "Paw",
  14570. image: {
  14571. source: "./media/characters/tezwa/paw.svg"
  14572. },
  14573. form: "muscled",
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Normal",
  14579. height: math.unit(9 + 2 / 12, "feet"),
  14580. default: true,
  14581. form: "normal"
  14582. },
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(916 + 8/12, "feet"),
  14586. default: true,
  14587. form: "muscled"
  14588. },
  14589. ],
  14590. {
  14591. "normal": {
  14592. name: "Normal",
  14593. default: true
  14594. },
  14595. "muscled": {
  14596. name: "Muscled",
  14597. },
  14598. }
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(58, "feet"),
  14605. weight: math.unit(89000, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/typhus/front.svg",
  14609. extra: 816 / 800,
  14610. bottom: 0.065
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Macro",
  14617. height: math.unit(58, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(12, "feet"),
  14627. weight: math.unit(6, "tonnes"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/lyra-von-wulf/front.svg",
  14631. extra: 1,
  14632. bottom: 0.10
  14633. }
  14634. },
  14635. frontMecha: {
  14636. height: math.unit(12, "feet"),
  14637. weight: math.unit(12, "tonnes"),
  14638. name: "Front (Mecha)",
  14639. image: {
  14640. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14641. extra: 1,
  14642. bottom: 0.042
  14643. }
  14644. },
  14645. maw: {
  14646. height: math.unit(2.2, "feet"),
  14647. name: "Maw",
  14648. image: {
  14649. source: "./media/characters/lyra-von-wulf/maw.svg"
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Normal",
  14656. height: math.unit(12, "feet"),
  14657. default: true
  14658. },
  14659. {
  14660. name: "Classic",
  14661. height: math.unit(50, "feet")
  14662. },
  14663. {
  14664. name: "Macro",
  14665. height: math.unit(500, "feet")
  14666. },
  14667. {
  14668. name: "Megamacro",
  14669. height: math.unit(1, "mile")
  14670. },
  14671. {
  14672. name: "Gigamacro",
  14673. height: math.unit(400, "miles")
  14674. },
  14675. {
  14676. name: "Teramacro",
  14677. height: math.unit(22000, "miles")
  14678. },
  14679. {
  14680. name: "Solarmacro",
  14681. height: math.unit(8600000, "miles")
  14682. },
  14683. {
  14684. name: "Galactic",
  14685. height: math.unit(1057000, "lightyears")
  14686. },
  14687. ]
  14688. ))
  14689. characterMakers.push(() => makeCharacter(
  14690. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14691. {
  14692. front: {
  14693. height: math.unit(6 + 10 / 12, "feet"),
  14694. weight: math.unit(150, "lb"),
  14695. name: "Front",
  14696. image: {
  14697. source: "./media/characters/dixon/front.svg",
  14698. extra: 3361 / 3209,
  14699. bottom: 0.01
  14700. }
  14701. },
  14702. },
  14703. [
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(6 + 10 / 12, "feet"),
  14707. default: true
  14708. },
  14709. {
  14710. name: "Big",
  14711. height: math.unit(12, "meters")
  14712. },
  14713. {
  14714. name: "Macro",
  14715. height: math.unit(500, "meters")
  14716. },
  14717. {
  14718. name: "Megamacro",
  14719. height: math.unit(2, "km")
  14720. },
  14721. ]
  14722. ))
  14723. characterMakers.push(() => makeCharacter(
  14724. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14725. {
  14726. kingCheetah_front: {
  14727. height: math.unit(1.85, "meters"),
  14728. weight: math.unit(68, "kg"),
  14729. name: "Front",
  14730. image: {
  14731. source: "./media/characters/kauko/king-cheetah-front.svg",
  14732. extra: 1007/972,
  14733. bottom: 35/1042
  14734. },
  14735. form: "king-cheetah",
  14736. default: true
  14737. },
  14738. kingCheetah_back: {
  14739. height: math.unit(1.85, "meters"),
  14740. weight: math.unit(68, "kg"),
  14741. name: "Back",
  14742. image: {
  14743. source: "./media/characters/kauko/king-cheetah-back.svg",
  14744. extra: 1015/980,
  14745. bottom: 11/1026
  14746. },
  14747. form: "king-cheetah",
  14748. },
  14749. kingCheetah_hand: {
  14750. height: math.unit(0.23, "meters"),
  14751. name: "Hand",
  14752. image: {
  14753. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14754. },
  14755. form: "king-cheetah",
  14756. },
  14757. kingCheetah_paw: {
  14758. height: math.unit(0.38, "meters"),
  14759. name: "Paw",
  14760. image: {
  14761. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14762. },
  14763. form: "king-cheetah",
  14764. },
  14765. kingCheetah_nape: {
  14766. height: math.unit(0.23, "meters"),
  14767. name: "Nape",
  14768. image: {
  14769. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14770. },
  14771. form: "king-cheetah",
  14772. },
  14773. wolf_front: {
  14774. height: math.unit(1.88, "meters"),
  14775. weight: math.unit(74, "kg"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/kauko/wolf-front.svg",
  14779. extra: 952/908,
  14780. bottom: 64/1016
  14781. },
  14782. form: "wolf",
  14783. default: true
  14784. },
  14785. wolf_dressed: {
  14786. height: math.unit(1.88, "meters"),
  14787. weight: math.unit(74, "kg"),
  14788. name: "Dressed",
  14789. image: {
  14790. source: "./media/characters/kauko/wolf-dressed.svg",
  14791. extra: 963/916,
  14792. bottom: 101/1064
  14793. },
  14794. form: "wolf",
  14795. },
  14796. wolf_hand: {
  14797. height: math.unit(0.3, "meters"),
  14798. name: "Hand",
  14799. image: {
  14800. source: "./media/characters/kauko/wolf-hand.svg"
  14801. },
  14802. form: "wolf",
  14803. },
  14804. wolf_paw: {
  14805. height: math.unit(0.407, "meters"),
  14806. name: "Paw",
  14807. image: {
  14808. source: "./media/characters/kauko/wolf-paw.svg"
  14809. },
  14810. form: "wolf",
  14811. },
  14812. wolf_nape: {
  14813. height: math.unit(0.25, "meters"),
  14814. name: "Nape",
  14815. image: {
  14816. source: "./media/characters/kauko/wolf-nape.svg"
  14817. },
  14818. form: "wolf",
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Normal",
  14824. height: math.unit(1.85, "m"),
  14825. default: true,
  14826. form: "king-cheetah"
  14827. },
  14828. {
  14829. name: "Normal",
  14830. height: math.unit(1.88, "m"),
  14831. default: true,
  14832. form: "wolf"
  14833. },
  14834. ],
  14835. {
  14836. "king-cheetah": {
  14837. name: "King Cheetah",
  14838. default: true
  14839. },
  14840. "wolf": {
  14841. name: "Wolf",
  14842. },
  14843. }
  14844. ))
  14845. characterMakers.push(() => makeCharacter(
  14846. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14847. {
  14848. frontSfw: {
  14849. height: math.unit(5, "meters"),
  14850. weight: math.unit(4250, "lb"),
  14851. name: "Front",
  14852. image: {
  14853. source: "./media/characters/varg/front-sfw.svg",
  14854. extra: 1103/1010,
  14855. bottom: 50/1153
  14856. },
  14857. form: "anthro",
  14858. default: true
  14859. },
  14860. backSfw: {
  14861. height: math.unit(5, "meters"),
  14862. weight: math.unit(4250, "lb"),
  14863. name: "Back",
  14864. image: {
  14865. source: "./media/characters/varg/back-sfw.svg",
  14866. extra: 1038/1022,
  14867. bottom: 36/1074
  14868. },
  14869. form: "anthro"
  14870. },
  14871. frontNsfw: {
  14872. height: math.unit(5, "meters"),
  14873. weight: math.unit(4250, "lb"),
  14874. name: "Front (NSFW)",
  14875. image: {
  14876. source: "./media/characters/varg/front-nsfw.svg",
  14877. extra: 1103/1010,
  14878. bottom: 50/1153
  14879. },
  14880. form: "anthro"
  14881. },
  14882. sheath: {
  14883. height: math.unit(3.8, "feet"),
  14884. weight: math.unit(90, "kilograms"),
  14885. name: "Sheath",
  14886. image: {
  14887. source: "./media/characters/varg/sheath.svg"
  14888. },
  14889. form: "anthro"
  14890. },
  14891. dick: {
  14892. height: math.unit(4.6, "feet"),
  14893. weight: math.unit(451, "kilograms"),
  14894. name: "Dick",
  14895. image: {
  14896. source: "./media/characters/varg/dick.svg"
  14897. },
  14898. form: "anthro"
  14899. },
  14900. feralSfw: {
  14901. height: math.unit(5, "meters"),
  14902. weight: math.unit(100000, "lb"),
  14903. name: "Side",
  14904. image: {
  14905. source: "./media/characters/varg/feral-sfw.svg",
  14906. extra: 1065/511,
  14907. bottom: 211/1276
  14908. },
  14909. form: "feral",
  14910. default: true
  14911. },
  14912. feralNsfw: {
  14913. height: math.unit(5, "meters"),
  14914. weight: math.unit(100000, "lb"),
  14915. name: "Side (NSFW)",
  14916. image: {
  14917. source: "./media/characters/varg/feral-nsfw.svg",
  14918. extra: 1065/511,
  14919. bottom: 211/1276
  14920. },
  14921. form: "feral",
  14922. },
  14923. feralSheath: {
  14924. height: math.unit(9.8, "feet"),
  14925. weight: math.unit(2000, "kilograms"),
  14926. name: "Sheath",
  14927. image: {
  14928. source: "./media/characters/varg/sheath.svg"
  14929. },
  14930. form: "feral"
  14931. },
  14932. feralDick: {
  14933. height: math.unit(13.11, "feet"),
  14934. weight: math.unit(10440, "kilograms"),
  14935. name: "Dick",
  14936. image: {
  14937. source: "./media/characters/varg/dick.svg"
  14938. },
  14939. form: "feral"
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(5, "meters"),
  14946. form: "anthro"
  14947. },
  14948. {
  14949. name: "Macro",
  14950. height: math.unit(200, "meters"),
  14951. form: "anthro"
  14952. },
  14953. {
  14954. name: "Megamacro",
  14955. height: math.unit(20, "kilometers"),
  14956. form: "anthro"
  14957. },
  14958. {
  14959. name: "True Size",
  14960. height: math.unit(211, "km"),
  14961. form: "anthro",
  14962. default: true
  14963. },
  14964. {
  14965. name: "Gigamacro",
  14966. height: math.unit(1000, "km"),
  14967. form: "anthro"
  14968. },
  14969. {
  14970. name: "Gigamacro+",
  14971. height: math.unit(8000, "km"),
  14972. form: "anthro"
  14973. },
  14974. {
  14975. name: "Teramacro",
  14976. height: math.unit(1000000, "km"),
  14977. form: "anthro"
  14978. },
  14979. {
  14980. name: "Normal",
  14981. height: math.unit(5, "meters"),
  14982. form: "feral"
  14983. },
  14984. {
  14985. name: "Macro",
  14986. height: math.unit(200, "meters"),
  14987. form: "feral"
  14988. },
  14989. {
  14990. name: "Megamacro",
  14991. height: math.unit(20, "kilometers"),
  14992. form: "feral"
  14993. },
  14994. {
  14995. name: "True Size",
  14996. height: math.unit(211, "km"),
  14997. form: "feral",
  14998. default: true
  14999. },
  15000. {
  15001. name: "Gigamacro",
  15002. height: math.unit(1000, "km"),
  15003. form: "feral"
  15004. },
  15005. {
  15006. name: "Gigamacro+",
  15007. height: math.unit(8000, "km"),
  15008. form: "feral"
  15009. },
  15010. {
  15011. name: "Teramacro",
  15012. height: math.unit(1000000, "km"),
  15013. form: "feral"
  15014. },
  15015. ],
  15016. {
  15017. "anthro": {
  15018. name: "Anthro",
  15019. default: true
  15020. },
  15021. "feral": {
  15022. name: "Feral",
  15023. },
  15024. }
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  15028. {
  15029. front: {
  15030. height: math.unit(7 + 7 / 12, "feet"),
  15031. weight: math.unit(267, "lb"),
  15032. name: "Front",
  15033. image: {
  15034. source: "./media/characters/dayza/front.svg",
  15035. extra: 1262 / 1200,
  15036. bottom: 0.035
  15037. }
  15038. },
  15039. side: {
  15040. height: math.unit(7 + 7 / 12, "feet"),
  15041. weight: math.unit(267, "lb"),
  15042. name: "Side",
  15043. image: {
  15044. source: "./media/characters/dayza/side.svg",
  15045. extra: 1295 / 1245,
  15046. bottom: 0.05
  15047. }
  15048. },
  15049. back: {
  15050. height: math.unit(7 + 7 / 12, "feet"),
  15051. weight: math.unit(267, "lb"),
  15052. name: "Back",
  15053. image: {
  15054. source: "./media/characters/dayza/back.svg",
  15055. extra: 1241 / 1170
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(7 + 7 / 12, "feet"),
  15063. default: true
  15064. },
  15065. {
  15066. name: "Macro",
  15067. height: math.unit(155, "feet")
  15068. },
  15069. ]
  15070. ))
  15071. characterMakers.push(() => makeCharacter(
  15072. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  15073. {
  15074. front: {
  15075. height: math.unit(6 + 5 / 12, "feet"),
  15076. weight: math.unit(160, "lb"),
  15077. name: "Front",
  15078. image: {
  15079. source: "./media/characters/xanthos/front.svg",
  15080. extra: 1,
  15081. bottom: 0.04
  15082. }
  15083. },
  15084. back: {
  15085. height: math.unit(6 + 5 / 12, "feet"),
  15086. weight: math.unit(160, "lb"),
  15087. name: "Back",
  15088. image: {
  15089. source: "./media/characters/xanthos/back.svg",
  15090. extra: 1,
  15091. bottom: 0.03
  15092. }
  15093. },
  15094. hand: {
  15095. height: math.unit(0.928, "feet"),
  15096. name: "Hand",
  15097. image: {
  15098. source: "./media/characters/xanthos/hand.svg"
  15099. }
  15100. },
  15101. foot: {
  15102. height: math.unit(1.286, "feet"),
  15103. name: "Foot",
  15104. image: {
  15105. source: "./media/characters/xanthos/foot.svg"
  15106. }
  15107. },
  15108. },
  15109. [
  15110. {
  15111. name: "Normal",
  15112. height: math.unit(6 + 5 / 12, "feet"),
  15113. default: true
  15114. },
  15115. {
  15116. name: "Normal+",
  15117. height: math.unit(6, "meters")
  15118. },
  15119. {
  15120. name: "Macro",
  15121. height: math.unit(40, "feet")
  15122. },
  15123. {
  15124. name: "Macro+",
  15125. height: math.unit(200, "meters")
  15126. },
  15127. {
  15128. name: "Megamacro",
  15129. height: math.unit(20, "km")
  15130. },
  15131. {
  15132. name: "Megamacro+",
  15133. height: math.unit(100, "km")
  15134. },
  15135. {
  15136. name: "Gigamacro",
  15137. height: math.unit(200, "megameters")
  15138. },
  15139. {
  15140. name: "Gigamacro+",
  15141. height: math.unit(1.5, "gigameters")
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15147. {
  15148. front: {
  15149. height: math.unit(6 + 3 / 12, "feet"),
  15150. weight: math.unit(215, "lb"),
  15151. name: "Front",
  15152. image: {
  15153. source: "./media/characters/grynn/front.svg",
  15154. extra: 4627 / 4209,
  15155. bottom: 0.047
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Micro",
  15162. height: math.unit(6, "inches")
  15163. },
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(6 + 3 / 12, "feet"),
  15167. default: true
  15168. },
  15169. {
  15170. name: "Big",
  15171. height: math.unit(104, "feet")
  15172. },
  15173. {
  15174. name: "Macro",
  15175. height: math.unit(944, "feet")
  15176. },
  15177. {
  15178. name: "Macro+",
  15179. height: math.unit(9480, "feet")
  15180. },
  15181. {
  15182. name: "Megamacro",
  15183. height: math.unit(78752, "feet")
  15184. },
  15185. {
  15186. name: "Megamacro+",
  15187. height: math.unit(630128, "feet")
  15188. },
  15189. {
  15190. name: "Megamacro++",
  15191. height: math.unit(3150695, "feet")
  15192. },
  15193. ]
  15194. ))
  15195. characterMakers.push(() => makeCharacter(
  15196. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15197. {
  15198. front: {
  15199. height: math.unit(7 + 5 / 12, "feet"),
  15200. weight: math.unit(450, "lb"),
  15201. name: "Front",
  15202. image: {
  15203. source: "./media/characters/mocha-aura/front.svg",
  15204. extra: 1907 / 1817,
  15205. bottom: 0.04
  15206. }
  15207. },
  15208. back: {
  15209. height: math.unit(7 + 5 / 12, "feet"),
  15210. weight: math.unit(450, "lb"),
  15211. name: "Back",
  15212. image: {
  15213. source: "./media/characters/mocha-aura/back.svg",
  15214. extra: 1900 / 1825,
  15215. bottom: 0.045
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Nano",
  15222. height: math.unit(1, "nm")
  15223. },
  15224. {
  15225. name: "Megamicro",
  15226. height: math.unit(1, "mm")
  15227. },
  15228. {
  15229. name: "Micro",
  15230. height: math.unit(3, "inches")
  15231. },
  15232. {
  15233. name: "Normal",
  15234. height: math.unit(7 + 5 / 12, "feet"),
  15235. default: true
  15236. },
  15237. {
  15238. name: "Macro",
  15239. height: math.unit(30, "feet")
  15240. },
  15241. {
  15242. name: "Megamacro",
  15243. height: math.unit(3500, "feet")
  15244. },
  15245. {
  15246. name: "Teramacro",
  15247. height: math.unit(500000, "miles")
  15248. },
  15249. {
  15250. name: "Petamacro",
  15251. height: math.unit(50000000000000000, "parsecs")
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(6, "feet"),
  15260. weight: math.unit(150, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/ilisha-devya/front.svg",
  15264. extra: 1053/1049,
  15265. bottom: 270/1323
  15266. }
  15267. },
  15268. back: {
  15269. height: math.unit(6, "feet"),
  15270. weight: math.unit(150, "lb"),
  15271. name: "Back",
  15272. image: {
  15273. source: "./media/characters/ilisha-devya/back.svg",
  15274. extra: 1131/1128,
  15275. bottom: 39/1170
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Macro",
  15282. height: math.unit(500, "feet"),
  15283. default: true
  15284. },
  15285. {
  15286. name: "Megamacro",
  15287. height: math.unit(10, "miles")
  15288. },
  15289. {
  15290. name: "Gigamacro",
  15291. height: math.unit(100000, "miles")
  15292. },
  15293. {
  15294. name: "Examacro",
  15295. height: math.unit(1e9, "lightyears")
  15296. },
  15297. {
  15298. name: "Omniversal",
  15299. height: math.unit(1e33, "lightyears")
  15300. },
  15301. {
  15302. name: "Beyond Infinite",
  15303. height: math.unit(1e100, "lightyears")
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15309. {
  15310. Side: {
  15311. height: math.unit(6, "feet"),
  15312. weight: math.unit(150, "lb"),
  15313. name: "Side",
  15314. image: {
  15315. source: "./media/characters/mira/side.svg",
  15316. extra: 900 / 799,
  15317. bottom: 0.02
  15318. }
  15319. },
  15320. },
  15321. [
  15322. {
  15323. name: "Human Size",
  15324. height: math.unit(6, "feet")
  15325. },
  15326. {
  15327. name: "Macro",
  15328. height: math.unit(100, "feet"),
  15329. default: true
  15330. },
  15331. {
  15332. name: "Megamacro",
  15333. height: math.unit(10, "miles")
  15334. },
  15335. {
  15336. name: "Gigamacro",
  15337. height: math.unit(25000, "miles")
  15338. },
  15339. {
  15340. name: "Teramacro",
  15341. height: math.unit(300, "AU")
  15342. },
  15343. {
  15344. name: "Full Size",
  15345. height: math.unit(4.5e10, "lightyears")
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(6, "feet"),
  15354. weight: math.unit(150, "lb"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/holly/front.svg",
  15358. extra: 639 / 606
  15359. }
  15360. },
  15361. back: {
  15362. height: math.unit(6, "feet"),
  15363. weight: math.unit(150, "lb"),
  15364. name: "Back",
  15365. image: {
  15366. source: "./media/characters/holly/back.svg",
  15367. extra: 623 / 598
  15368. }
  15369. },
  15370. frontWorking: {
  15371. height: math.unit(6, "feet"),
  15372. weight: math.unit(150, "lb"),
  15373. name: "Front (Working)",
  15374. image: {
  15375. source: "./media/characters/holly/front-working.svg",
  15376. extra: 607 / 577,
  15377. bottom: 0.048
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(12 + 3 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(6, "feet"),
  15394. weight: math.unit(150, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/porter/front.svg",
  15398. extra: 1,
  15399. bottom: 0.01
  15400. }
  15401. },
  15402. frontRobes: {
  15403. height: math.unit(6, "feet"),
  15404. weight: math.unit(150, "lb"),
  15405. name: "Front (Robes)",
  15406. image: {
  15407. source: "./media/characters/porter/front-robes.svg",
  15408. extra: 1.01,
  15409. bottom: 0.01
  15410. }
  15411. },
  15412. },
  15413. [
  15414. {
  15415. name: "Normal",
  15416. height: math.unit(11 + 9 / 12, "feet"),
  15417. default: true
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15423. {
  15424. legendary: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Legendary",
  15428. image: {
  15429. source: "./media/characters/lucy/legendary.svg",
  15430. extra: 1355 / 1100,
  15431. bottom: 0.045
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Legendary",
  15438. height: math.unit(86882 * 2, "miles"),
  15439. default: true
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15445. {
  15446. front: {
  15447. height: math.unit(6, "feet"),
  15448. weight: math.unit(150, "lb"),
  15449. name: "Front",
  15450. image: {
  15451. source: "./media/characters/drusilla/front.svg",
  15452. extra: 678 / 635,
  15453. bottom: 0.03
  15454. }
  15455. },
  15456. back: {
  15457. height: math.unit(6, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Back",
  15460. image: {
  15461. source: "./media/characters/drusilla/back.svg",
  15462. extra: 678 / 635,
  15463. bottom: 0.005
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Macro",
  15470. height: math.unit(100, "feet")
  15471. },
  15472. {
  15473. name: "Canon Height",
  15474. height: math.unit(2000, "feet"),
  15475. default: true
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(180, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/renard-thatch/front.svg",
  15488. extra: 2411 / 2275,
  15489. bottom: 0.01
  15490. }
  15491. },
  15492. frontPosing: {
  15493. height: math.unit(6, "feet"),
  15494. weight: math.unit(180, "lb"),
  15495. name: "Front (Posing)",
  15496. image: {
  15497. source: "./media/characters/renard-thatch/front-posing.svg",
  15498. extra: 2381 / 2261,
  15499. bottom: 0.01
  15500. }
  15501. },
  15502. back: {
  15503. height: math.unit(6, "feet"),
  15504. weight: math.unit(180, "lb"),
  15505. name: "Back",
  15506. image: {
  15507. source: "./media/characters/renard-thatch/back.svg",
  15508. extra: 2428 / 2288
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Micro",
  15515. height: math.unit(3, "inches")
  15516. },
  15517. {
  15518. name: "Default",
  15519. height: math.unit(6, "feet"),
  15520. default: true
  15521. },
  15522. {
  15523. name: "Macro",
  15524. height: math.unit(75, "feet")
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15530. {
  15531. front: {
  15532. height: math.unit(1450, "feet"),
  15533. weight: math.unit(1.21e6, "tons"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/sekvra/front.svg",
  15537. extra: 1193/1190,
  15538. bottom: 78/1271
  15539. }
  15540. },
  15541. side: {
  15542. height: math.unit(1450, "feet"),
  15543. weight: math.unit(1.21e6, "tons"),
  15544. name: "Side",
  15545. image: {
  15546. source: "./media/characters/sekvra/side.svg",
  15547. extra: 1193/1190,
  15548. bottom: 52/1245
  15549. }
  15550. },
  15551. back: {
  15552. height: math.unit(1450, "feet"),
  15553. weight: math.unit(1.21e6, "tons"),
  15554. name: "Back",
  15555. image: {
  15556. source: "./media/characters/sekvra/back.svg",
  15557. extra: 1219/1216,
  15558. bottom: 21/1240
  15559. }
  15560. },
  15561. frontClothed: {
  15562. height: math.unit(1450, "feet"),
  15563. weight: math.unit(1.21e6, "tons"),
  15564. name: "Front (Clothed)",
  15565. image: {
  15566. source: "./media/characters/sekvra/front-clothed.svg",
  15567. extra: 1192/1189,
  15568. bottom: 79/1271
  15569. }
  15570. },
  15571. },
  15572. [
  15573. {
  15574. name: "Macro",
  15575. height: math.unit(1450, "feet"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Megamacro",
  15580. height: math.unit(15000, "feet")
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/carmine/front.svg",
  15593. extra: 1557/1538,
  15594. bottom: 68/1625
  15595. }
  15596. },
  15597. frontArmor: {
  15598. height: math.unit(6, "feet"),
  15599. weight: math.unit(150, "lb"),
  15600. name: "Front (Armor)",
  15601. image: {
  15602. source: "./media/characters/carmine/front-armor.svg",
  15603. extra: 1549/1530,
  15604. bottom: 82/1631
  15605. }
  15606. },
  15607. mouth: {
  15608. height: math.unit(0.55, "feet"),
  15609. name: "Mouth",
  15610. image: {
  15611. source: "./media/characters/carmine/mouth.svg"
  15612. }
  15613. },
  15614. hand: {
  15615. height: math.unit(1.05, "feet"),
  15616. name: "Hand",
  15617. image: {
  15618. source: "./media/characters/carmine/hand.svg"
  15619. }
  15620. },
  15621. foot: {
  15622. height: math.unit(0.6, "feet"),
  15623. name: "Foot",
  15624. image: {
  15625. source: "./media/characters/carmine/foot.svg"
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Large",
  15632. height: math.unit(1, "mile")
  15633. },
  15634. {
  15635. name: "Huge",
  15636. height: math.unit(40, "miles"),
  15637. default: true
  15638. },
  15639. {
  15640. name: "Colossal",
  15641. height: math.unit(2500, "miles")
  15642. },
  15643. ]
  15644. ))
  15645. characterMakers.push(() => makeCharacter(
  15646. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15647. {
  15648. front: {
  15649. height: math.unit(6, "feet"),
  15650. weight: math.unit(150, "lb"),
  15651. name: "Front",
  15652. image: {
  15653. source: "./media/characters/elyssia/front.svg",
  15654. extra: 2201 / 2035,
  15655. bottom: 0.05
  15656. }
  15657. },
  15658. frontClothed: {
  15659. height: math.unit(6, "feet"),
  15660. weight: math.unit(150, "lb"),
  15661. name: "Front (Clothed)",
  15662. image: {
  15663. source: "./media/characters/elyssia/front-clothed.svg",
  15664. extra: 2201 / 2035,
  15665. bottom: 0.05
  15666. }
  15667. },
  15668. back: {
  15669. height: math.unit(6, "feet"),
  15670. weight: math.unit(150, "lb"),
  15671. name: "Back",
  15672. image: {
  15673. source: "./media/characters/elyssia/back.svg",
  15674. extra: 2201 / 2035,
  15675. bottom: 0.013
  15676. }
  15677. },
  15678. },
  15679. [
  15680. {
  15681. name: "Smaller",
  15682. height: math.unit(150, "feet")
  15683. },
  15684. {
  15685. name: "Standard",
  15686. height: math.unit(1400, "feet"),
  15687. default: true
  15688. },
  15689. {
  15690. name: "Distracted",
  15691. height: math.unit(15000, "feet")
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(7 + 4/12, "feet"),
  15700. weight: math.unit(690, "lb"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/geno-maxwell/front.svg",
  15704. extra: 984/856,
  15705. bottom: 87/1071
  15706. }
  15707. },
  15708. back: {
  15709. height: math.unit(7 + 4/12, "feet"),
  15710. weight: math.unit(690, "lb"),
  15711. name: "Back",
  15712. image: {
  15713. source: "./media/characters/geno-maxwell/back.svg",
  15714. extra: 981/854,
  15715. bottom: 57/1038
  15716. }
  15717. },
  15718. frontCostume: {
  15719. height: math.unit(7 + 4/12, "feet"),
  15720. weight: math.unit(690, "lb"),
  15721. name: "Front (Costume)",
  15722. image: {
  15723. source: "./media/characters/geno-maxwell/front-costume.svg",
  15724. extra: 984/856,
  15725. bottom: 87/1071
  15726. }
  15727. },
  15728. backcostume: {
  15729. height: math.unit(7 + 4/12, "feet"),
  15730. weight: math.unit(690, "lb"),
  15731. name: "Back (Costume)",
  15732. image: {
  15733. source: "./media/characters/geno-maxwell/back-costume.svg",
  15734. extra: 981/854,
  15735. bottom: 57/1038
  15736. }
  15737. },
  15738. },
  15739. [
  15740. {
  15741. name: "Micro",
  15742. height: math.unit(3, "inches")
  15743. },
  15744. {
  15745. name: "Normal",
  15746. height: math.unit(7 + 4 / 12, "feet"),
  15747. default: true
  15748. },
  15749. {
  15750. name: "Macro",
  15751. height: math.unit(220, "feet")
  15752. },
  15753. {
  15754. name: "Megamacro",
  15755. height: math.unit(11, "miles")
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15761. {
  15762. front: {
  15763. height: math.unit(7 + 4/12, "feet"),
  15764. weight: math.unit(750, "lb"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/regena-maxwell/front.svg",
  15768. extra: 984/856,
  15769. bottom: 87/1071
  15770. }
  15771. },
  15772. back: {
  15773. height: math.unit(7 + 4/12, "feet"),
  15774. weight: math.unit(750, "lb"),
  15775. name: "Back",
  15776. image: {
  15777. source: "./media/characters/regena-maxwell/back.svg",
  15778. extra: 981/854,
  15779. bottom: 57/1038
  15780. }
  15781. },
  15782. frontCostume: {
  15783. height: math.unit(7 + 4/12, "feet"),
  15784. weight: math.unit(750, "lb"),
  15785. name: "Front (Costume)",
  15786. image: {
  15787. source: "./media/characters/regena-maxwell/front-costume.svg",
  15788. extra: 984/856,
  15789. bottom: 87/1071
  15790. }
  15791. },
  15792. backcostume: {
  15793. height: math.unit(7 + 4/12, "feet"),
  15794. weight: math.unit(750, "lb"),
  15795. name: "Back (Costume)",
  15796. image: {
  15797. source: "./media/characters/regena-maxwell/back-costume.svg",
  15798. extra: 981/854,
  15799. bottom: 57/1038
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Normal",
  15806. height: math.unit(7 + 4 / 12, "feet"),
  15807. default: true
  15808. },
  15809. {
  15810. name: "Macro",
  15811. height: math.unit(220, "feet")
  15812. },
  15813. {
  15814. name: "Megamacro",
  15815. height: math.unit(11, "miles")
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15821. {
  15822. front: {
  15823. height: math.unit(6, "feet"),
  15824. weight: math.unit(150, "lb"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15828. extra: 860 / 690,
  15829. bottom: 0.03
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(1.7, "meters"),
  15837. default: true
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/quilly/front.svg",
  15850. extra: 890 / 776
  15851. }
  15852. },
  15853. },
  15854. [
  15855. {
  15856. name: "Gigamacro",
  15857. height: math.unit(404090, "miles"),
  15858. default: true
  15859. },
  15860. ]
  15861. ))
  15862. characterMakers.push(() => makeCharacter(
  15863. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15864. {
  15865. front: {
  15866. height: math.unit(7 + 8 / 12, "feet"),
  15867. weight: math.unit(350, "lb"),
  15868. name: "Front",
  15869. image: {
  15870. source: "./media/characters/tempest/front.svg",
  15871. extra: 1175 / 1086,
  15872. bottom: 0.02
  15873. }
  15874. },
  15875. },
  15876. [
  15877. {
  15878. name: "Normal",
  15879. height: math.unit(7 + 8 / 12, "feet"),
  15880. default: true
  15881. },
  15882. ]
  15883. ))
  15884. characterMakers.push(() => makeCharacter(
  15885. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15886. {
  15887. side: {
  15888. height: math.unit(4 + 5 / 12, "feet"),
  15889. weight: math.unit(80, "lb"),
  15890. name: "Side",
  15891. image: {
  15892. source: "./media/characters/rodger/side.svg",
  15893. extra: 1235 / 1118
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Micro",
  15900. height: math.unit(1, "inch")
  15901. },
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(4 + 5 / 12, "feet"),
  15905. default: true
  15906. },
  15907. {
  15908. name: "Macro",
  15909. height: math.unit(120, "feet")
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(6, "feet"),
  15918. weight: math.unit(150, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/danyel/front.svg",
  15922. extra: 1185 / 1123,
  15923. bottom: 0.05
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Shrunken",
  15930. height: math.unit(0.5, "mm")
  15931. },
  15932. {
  15933. name: "Micro",
  15934. height: math.unit(1, "mm"),
  15935. default: true
  15936. },
  15937. {
  15938. name: "Upsized",
  15939. height: math.unit(5 + 5 / 12, "feet")
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(5 + 6 / 12, "feet"),
  15948. weight: math.unit(200, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/vivian-bijoux/front.svg",
  15952. extra: 1217/1209,
  15953. bottom: 76/1293
  15954. }
  15955. },
  15956. back: {
  15957. height: math.unit(5 + 6 / 12, "feet"),
  15958. weight: math.unit(200, "lb"),
  15959. name: "Back",
  15960. image: {
  15961. source: "./media/characters/vivian-bijoux/back.svg",
  15962. extra: 1214/1208,
  15963. bottom: 51/1265
  15964. }
  15965. },
  15966. dressed: {
  15967. height: math.unit(5 + 6 / 12, "feet"),
  15968. weight: math.unit(200, "lb"),
  15969. name: "Dressed",
  15970. image: {
  15971. source: "./media/characters/vivian-bijoux/dressed.svg",
  15972. extra: 1217/1209,
  15973. bottom: 76/1293
  15974. }
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(5 + 6 / 12, "feet"),
  15981. default: true
  15982. },
  15983. {
  15984. name: "Bad Dream",
  15985. height: math.unit(500, "feet")
  15986. },
  15987. {
  15988. name: "Nightmare",
  15989. height: math.unit(500, "miles")
  15990. },
  15991. ]
  15992. ))
  15993. characterMakers.push(() => makeCharacter(
  15994. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15995. {
  15996. front: {
  15997. height: math.unit(6 + 1 / 12, "feet"),
  15998. weight: math.unit(260, "lb"),
  15999. name: "Front",
  16000. image: {
  16001. source: "./media/characters/zeta/front.svg",
  16002. extra: 1968 / 1889,
  16003. bottom: 0.06
  16004. }
  16005. },
  16006. back: {
  16007. height: math.unit(6 + 1 / 12, "feet"),
  16008. weight: math.unit(260, "lb"),
  16009. name: "Back",
  16010. image: {
  16011. source: "./media/characters/zeta/back.svg",
  16012. extra: 1944 / 1858,
  16013. bottom: 0.03
  16014. }
  16015. },
  16016. hand: {
  16017. height: math.unit(1.112, "feet"),
  16018. name: "Hand",
  16019. image: {
  16020. source: "./media/characters/zeta/hand.svg"
  16021. }
  16022. },
  16023. foot: {
  16024. height: math.unit(1.48, "feet"),
  16025. name: "Foot",
  16026. image: {
  16027. source: "./media/characters/zeta/foot.svg"
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Micro",
  16034. height: math.unit(6, "inches")
  16035. },
  16036. {
  16037. name: "Normal",
  16038. height: math.unit(6 + 1 / 12, "feet"),
  16039. default: true
  16040. },
  16041. {
  16042. name: "Macro",
  16043. height: math.unit(20, "feet")
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  16049. {
  16050. front: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(150, "lb"),
  16053. name: "Front",
  16054. image: {
  16055. source: "./media/characters/jamie-larsen/front.svg",
  16056. extra: 962 / 933,
  16057. bottom: 0.02
  16058. }
  16059. },
  16060. back: {
  16061. height: math.unit(6, "feet"),
  16062. weight: math.unit(150, "lb"),
  16063. name: "Back",
  16064. image: {
  16065. source: "./media/characters/jamie-larsen/back.svg",
  16066. extra: 997 / 946
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Macro",
  16073. height: math.unit(28 + 7 / 12, "feet"),
  16074. default: true
  16075. },
  16076. {
  16077. name: "Macro+",
  16078. height: math.unit(180, "feet")
  16079. },
  16080. {
  16081. name: "Megamacro",
  16082. height: math.unit(10, "miles")
  16083. },
  16084. {
  16085. name: "Gigamacro",
  16086. height: math.unit(200000, "miles")
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(6, "feet"),
  16095. weight: math.unit(120, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/vance/front.svg",
  16099. extra: 1980 / 1890,
  16100. bottom: 0.09
  16101. }
  16102. },
  16103. back: {
  16104. height: math.unit(6, "feet"),
  16105. weight: math.unit(120, "lb"),
  16106. name: "Back",
  16107. image: {
  16108. source: "./media/characters/vance/back.svg",
  16109. extra: 2081 / 1994,
  16110. bottom: 0.014
  16111. }
  16112. },
  16113. hand: {
  16114. height: math.unit(0.88, "feet"),
  16115. name: "Hand",
  16116. image: {
  16117. source: "./media/characters/vance/hand.svg"
  16118. }
  16119. },
  16120. foot: {
  16121. height: math.unit(0.64, "feet"),
  16122. name: "Foot",
  16123. image: {
  16124. source: "./media/characters/vance/foot.svg"
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Small",
  16131. height: math.unit(90, "feet"),
  16132. default: true
  16133. },
  16134. {
  16135. name: "Macro",
  16136. height: math.unit(100, "meters")
  16137. },
  16138. {
  16139. name: "Megamacro",
  16140. height: math.unit(15, "miles")
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16146. {
  16147. front: {
  16148. height: math.unit(6, "feet"),
  16149. weight: math.unit(180, "lb"),
  16150. name: "Front",
  16151. image: {
  16152. source: "./media/characters/xochitl/front.svg",
  16153. extra: 2297 / 2261,
  16154. bottom: 0.065
  16155. }
  16156. },
  16157. back: {
  16158. height: math.unit(6, "feet"),
  16159. weight: math.unit(180, "lb"),
  16160. name: "Back",
  16161. image: {
  16162. source: "./media/characters/xochitl/back.svg",
  16163. extra: 2386 / 2354,
  16164. bottom: 0.01
  16165. }
  16166. },
  16167. foot: {
  16168. height: math.unit(6 / 5 * 1.15, "feet"),
  16169. weight: math.unit(150, "lb"),
  16170. name: "Foot",
  16171. image: {
  16172. source: "./media/characters/xochitl/foot.svg"
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Macro",
  16179. height: math.unit(80, "feet")
  16180. },
  16181. {
  16182. name: "Macro+",
  16183. height: math.unit(400, "feet"),
  16184. default: true
  16185. },
  16186. {
  16187. name: "Gigamacro",
  16188. height: math.unit(80000, "miles")
  16189. },
  16190. {
  16191. name: "Gigamacro+",
  16192. height: math.unit(400000, "miles")
  16193. },
  16194. {
  16195. name: "Teramacro",
  16196. height: math.unit(300, "AU")
  16197. },
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16202. {
  16203. front: {
  16204. height: math.unit(6, "feet"),
  16205. weight: math.unit(150, "lb"),
  16206. name: "Front",
  16207. image: {
  16208. source: "./media/characters/vincent/front.svg",
  16209. extra: 1130 / 1080,
  16210. bottom: 0.055
  16211. }
  16212. },
  16213. beak: {
  16214. height: math.unit(6 * 0.1, "feet"),
  16215. name: "Beak",
  16216. image: {
  16217. source: "./media/characters/vincent/beak.svg"
  16218. }
  16219. },
  16220. hand: {
  16221. height: math.unit(6 * 0.85, "feet"),
  16222. weight: math.unit(150, "lb"),
  16223. name: "Hand",
  16224. image: {
  16225. source: "./media/characters/vincent/hand.svg"
  16226. }
  16227. },
  16228. foot: {
  16229. height: math.unit(6 * 0.19, "feet"),
  16230. weight: math.unit(150, "lb"),
  16231. name: "Foot",
  16232. image: {
  16233. source: "./media/characters/vincent/foot.svg"
  16234. }
  16235. },
  16236. },
  16237. [
  16238. {
  16239. name: "Base",
  16240. height: math.unit(6 + 5 / 12, "feet"),
  16241. default: true
  16242. },
  16243. {
  16244. name: "Macro",
  16245. height: math.unit(300, "feet")
  16246. },
  16247. {
  16248. name: "Megamacro",
  16249. height: math.unit(2, "miles")
  16250. },
  16251. {
  16252. name: "Gigamacro",
  16253. height: math.unit(1000, "miles")
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16259. {
  16260. front: {
  16261. height: math.unit(2, "meters"),
  16262. weight: math.unit(500, "kg"),
  16263. name: "Front",
  16264. image: {
  16265. source: "./media/characters/coatl/front.svg",
  16266. extra: 3948 / 3500,
  16267. bottom: 0.082
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(4, "meters")
  16275. },
  16276. {
  16277. name: "Macro",
  16278. height: math.unit(100, "meters"),
  16279. default: true
  16280. },
  16281. {
  16282. name: "Macro+",
  16283. height: math.unit(300, "meters")
  16284. },
  16285. {
  16286. name: "Megamacro",
  16287. height: math.unit(3, "gigameters")
  16288. },
  16289. {
  16290. name: "Megamacro+",
  16291. height: math.unit(300, "terameters")
  16292. },
  16293. {
  16294. name: "Megamacro++",
  16295. height: math.unit(3, "lightyears")
  16296. },
  16297. ]
  16298. ))
  16299. characterMakers.push(() => makeCharacter(
  16300. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16301. {
  16302. front: {
  16303. height: math.unit(6, "feet"),
  16304. weight: math.unit(50, "kg"),
  16305. name: "front",
  16306. image: {
  16307. source: "./media/characters/shiroryu/front.svg",
  16308. extra: 1990 / 1935
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Mortal Mingling",
  16315. height: math.unit(3, "meters")
  16316. },
  16317. {
  16318. name: "Kaiju-ish",
  16319. height: math.unit(250, "meters")
  16320. },
  16321. {
  16322. name: "Somewhat Godly",
  16323. height: math.unit(400, "km"),
  16324. default: true
  16325. },
  16326. {
  16327. name: "Planetary",
  16328. height: math.unit(300, "megameters")
  16329. },
  16330. {
  16331. name: "Galaxy-dwarfing",
  16332. height: math.unit(450, "kiloparsecs")
  16333. },
  16334. {
  16335. name: "Universe Eater",
  16336. height: math.unit(150, "gigaparsecs")
  16337. },
  16338. {
  16339. name: "Almost Immeasurable",
  16340. height: math.unit(1.3e266, "yottaparsecs")
  16341. },
  16342. ]
  16343. ))
  16344. characterMakers.push(() => makeCharacter(
  16345. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16346. {
  16347. front: {
  16348. height: math.unit(6, "feet"),
  16349. weight: math.unit(150, "lb"),
  16350. name: "Front",
  16351. image: {
  16352. source: "./media/characters/umeko/front.svg",
  16353. extra: 1,
  16354. bottom: 0.019
  16355. }
  16356. },
  16357. frontArmored: {
  16358. height: math.unit(6, "feet"),
  16359. weight: math.unit(150, "lb"),
  16360. name: "Front (Armored)",
  16361. image: {
  16362. source: "./media/characters/umeko/front-armored.svg",
  16363. extra: 1,
  16364. bottom: 0.021
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Macro",
  16371. height: math.unit(220, "feet"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Guardian Dragon",
  16376. height: math.unit(50, "miles")
  16377. },
  16378. {
  16379. name: "Cosmic",
  16380. height: math.unit(800000, "miles")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6, "feet"),
  16389. weight: math.unit(150, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/cassidy/front.svg",
  16393. extra: 810/808,
  16394. bottom: 41/851
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Canon Height",
  16401. height: math.unit(120, "feet"),
  16402. default: true
  16403. },
  16404. {
  16405. name: "Macro+",
  16406. height: math.unit(400, "feet")
  16407. },
  16408. {
  16409. name: "Macro++",
  16410. height: math.unit(4000, "feet")
  16411. },
  16412. {
  16413. name: "Megamacro",
  16414. height: math.unit(3, "miles")
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(6, "feet"),
  16423. weight: math.unit(150, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/isaac/front.svg",
  16427. extra: 896 / 815,
  16428. bottom: 0.11
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Human Size",
  16435. height: math.unit(8, "feet"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Macro",
  16440. height: math.unit(400, "feet")
  16441. },
  16442. {
  16443. name: "Megamacro",
  16444. height: math.unit(50, "miles")
  16445. },
  16446. {
  16447. name: "Canon Height",
  16448. height: math.unit(200, "AU")
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16454. {
  16455. front: {
  16456. height: math.unit(6, "feet"),
  16457. weight: math.unit(72, "kg"),
  16458. name: "Front",
  16459. image: {
  16460. source: "./media/characters/sleekit/front.svg",
  16461. extra: 4693 / 4487,
  16462. bottom: 0.012
  16463. }
  16464. },
  16465. },
  16466. [
  16467. {
  16468. name: "Minimum Height",
  16469. height: math.unit(10, "meters")
  16470. },
  16471. {
  16472. name: "Smaller",
  16473. height: math.unit(25, "meters")
  16474. },
  16475. {
  16476. name: "Larger",
  16477. height: math.unit(38, "meters"),
  16478. default: true
  16479. },
  16480. {
  16481. name: "Maximum height",
  16482. height: math.unit(100, "meters")
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16488. {
  16489. front: {
  16490. height: math.unit(6, "feet"),
  16491. weight: math.unit(150, "lb"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/nillia/front.svg",
  16495. extra: 719/665,
  16496. bottom: 6/725
  16497. }
  16498. },
  16499. back: {
  16500. height: math.unit(6, "feet"),
  16501. weight: math.unit(150, "lb"),
  16502. name: "Back",
  16503. image: {
  16504. source: "./media/characters/nillia/back.svg",
  16505. extra: 705/651,
  16506. bottom: 5/710
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Canon Height",
  16513. height: math.unit(489, "feet"),
  16514. default: true
  16515. }
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16520. {
  16521. front: {
  16522. height: math.unit(6, "feet"),
  16523. weight: math.unit(150, "lb"),
  16524. name: "Front",
  16525. image: {
  16526. source: "./media/characters/mesmyriza/front.svg",
  16527. extra: 1541/1291,
  16528. bottom: 87/1628
  16529. }
  16530. },
  16531. foot: {
  16532. height: math.unit(6 / (250 / 35), "feet"),
  16533. name: "Foot",
  16534. image: {
  16535. source: "./media/characters/mesmyriza/foot.svg"
  16536. }
  16537. },
  16538. },
  16539. [
  16540. {
  16541. name: "Macro",
  16542. height: math.unit(457, "meters"),
  16543. default: true
  16544. },
  16545. {
  16546. name: "Megamacro",
  16547. height: math.unit(8, "megameters")
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16553. {
  16554. front: {
  16555. height: math.unit(6, "feet"),
  16556. weight: math.unit(250, "lb"),
  16557. name: "Front",
  16558. image: {
  16559. source: "./media/characters/saudade/front.svg",
  16560. extra: 1172 / 1139,
  16561. bottom: 0.035
  16562. }
  16563. },
  16564. },
  16565. [
  16566. {
  16567. name: "Micro",
  16568. height: math.unit(3, "inches")
  16569. },
  16570. {
  16571. name: "Normal",
  16572. height: math.unit(6, "feet"),
  16573. default: true
  16574. },
  16575. {
  16576. name: "Macro",
  16577. height: math.unit(50, "feet")
  16578. },
  16579. {
  16580. name: "Megamacro",
  16581. height: math.unit(2800, "feet")
  16582. },
  16583. ]
  16584. ))
  16585. characterMakers.push(() => makeCharacter(
  16586. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16587. {
  16588. front: {
  16589. height: math.unit(5 + 4 / 12, "feet"),
  16590. weight: math.unit(100, "lb"),
  16591. name: "Front",
  16592. image: {
  16593. source: "./media/characters/keireer/front.svg",
  16594. extra: 716 / 666,
  16595. bottom: 0.05
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(5 + 4 / 12, "feet"),
  16603. default: true
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16609. {
  16610. front: {
  16611. height: math.unit(5.5, "feet"),
  16612. weight: math.unit(90, "kg"),
  16613. name: "Front",
  16614. image: {
  16615. source: "./media/characters/mirja/front.svg",
  16616. extra: 1452/1262,
  16617. bottom: 67/1519
  16618. }
  16619. },
  16620. frontDressed: {
  16621. height: math.unit(5.5, "feet"),
  16622. weight: math.unit(90, "lb"),
  16623. name: "Front (Dressed)",
  16624. image: {
  16625. source: "./media/characters/mirja/dressed.svg",
  16626. extra: 1452/1262,
  16627. bottom: 67/1519
  16628. }
  16629. },
  16630. back: {
  16631. height: math.unit(6, "feet"),
  16632. weight: math.unit(90, "lb"),
  16633. name: "Back",
  16634. image: {
  16635. source: "./media/characters/mirja/back.svg",
  16636. extra: 1892/1795,
  16637. bottom: 48/1940
  16638. }
  16639. },
  16640. maw: {
  16641. height: math.unit(1.312, "feet"),
  16642. name: "Maw",
  16643. image: {
  16644. source: "./media/characters/mirja/maw.svg"
  16645. }
  16646. },
  16647. paw: {
  16648. height: math.unit(1.15, "feet"),
  16649. name: "Paw",
  16650. image: {
  16651. source: "./media/characters/mirja/paw.svg"
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "\"Incognito\"",
  16658. height: math.unit(3, "meters")
  16659. },
  16660. {
  16661. name: "Strolling Size",
  16662. height: math.unit(15, "km")
  16663. },
  16664. {
  16665. name: "Larger Strolling Size",
  16666. height: math.unit(400, "km")
  16667. },
  16668. {
  16669. name: "Preferred Size",
  16670. height: math.unit(5000, "km"),
  16671. default: true
  16672. },
  16673. {
  16674. name: "True Size",
  16675. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(15, "feet"),
  16684. weight: math.unit(880, "kg"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/nightraver/front.svg",
  16688. extra: 2444 / 2160,
  16689. bottom: 0.027
  16690. }
  16691. },
  16692. back: {
  16693. height: math.unit(15, "feet"),
  16694. weight: math.unit(880, "kg"),
  16695. name: "Back",
  16696. image: {
  16697. source: "./media/characters/nightraver/back.svg",
  16698. extra: 2309 / 2180,
  16699. bottom: 0.005
  16700. }
  16701. },
  16702. sole: {
  16703. height: math.unit(2.878, "feet"),
  16704. name: "Sole",
  16705. image: {
  16706. source: "./media/characters/nightraver/sole.svg"
  16707. }
  16708. },
  16709. foot: {
  16710. height: math.unit(2.285, "feet"),
  16711. name: "Foot",
  16712. image: {
  16713. source: "./media/characters/nightraver/foot.svg"
  16714. }
  16715. },
  16716. maw: {
  16717. height: math.unit(2.67, "feet"),
  16718. name: "Maw",
  16719. image: {
  16720. source: "./media/characters/nightraver/maw.svg"
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Micro",
  16727. height: math.unit(1, "cm")
  16728. },
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(15, "feet"),
  16732. default: true
  16733. },
  16734. {
  16735. name: "Macro",
  16736. height: math.unit(300, "feet")
  16737. },
  16738. {
  16739. name: "Megamacro",
  16740. height: math.unit(300, "miles")
  16741. },
  16742. {
  16743. name: "Gigamacro",
  16744. height: math.unit(10000, "miles")
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16750. {
  16751. side: {
  16752. height: math.unit(2, "inches"),
  16753. weight: math.unit(5, "grams"),
  16754. name: "Side",
  16755. image: {
  16756. source: "./media/characters/arc/side.svg"
  16757. }
  16758. },
  16759. },
  16760. [
  16761. {
  16762. name: "Micro",
  16763. height: math.unit(2, "inches"),
  16764. default: true
  16765. },
  16766. ]
  16767. ))
  16768. characterMakers.push(() => makeCharacter(
  16769. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16770. {
  16771. front: {
  16772. height: math.unit(1.1938, "meters"),
  16773. weight: math.unit(54, "kg"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/nebula-shahar/front.svg",
  16777. extra: 1642 / 1436,
  16778. bottom: 0.06
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Megamicro",
  16785. height: math.unit(0.3, "mm")
  16786. },
  16787. {
  16788. name: "Micro",
  16789. height: math.unit(3, "cm")
  16790. },
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(138, "cm"),
  16794. default: true
  16795. },
  16796. {
  16797. name: "Macro",
  16798. height: math.unit(30, "m")
  16799. },
  16800. ]
  16801. ))
  16802. characterMakers.push(() => makeCharacter(
  16803. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16804. {
  16805. front: {
  16806. height: math.unit(5.24, "feet"),
  16807. weight: math.unit(150, "lb"),
  16808. name: "Front",
  16809. image: {
  16810. source: "./media/characters/shayla/front.svg",
  16811. extra: 1512 / 1414,
  16812. bottom: 0.01
  16813. }
  16814. },
  16815. back: {
  16816. height: math.unit(5.24, "feet"),
  16817. weight: math.unit(150, "lb"),
  16818. name: "Back",
  16819. image: {
  16820. source: "./media/characters/shayla/back.svg",
  16821. extra: 1512 / 1414
  16822. }
  16823. },
  16824. hand: {
  16825. height: math.unit(0.7781496062992126, "feet"),
  16826. name: "Hand",
  16827. image: {
  16828. source: "./media/characters/shayla/hand.svg"
  16829. }
  16830. },
  16831. foot: {
  16832. height: math.unit(1.4206036745406823, "feet"),
  16833. name: "Foot",
  16834. image: {
  16835. source: "./media/characters/shayla/foot.svg"
  16836. }
  16837. },
  16838. },
  16839. [
  16840. {
  16841. name: "Micro",
  16842. height: math.unit(0.32, "feet")
  16843. },
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(5.24, "feet"),
  16847. default: true
  16848. },
  16849. {
  16850. name: "Macro",
  16851. height: math.unit(492.12, "feet")
  16852. },
  16853. {
  16854. name: "Megamacro",
  16855. height: math.unit(186.41, "miles")
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16861. {
  16862. front: {
  16863. height: math.unit(2.2, "m"),
  16864. weight: math.unit(120, "kg"),
  16865. name: "Front",
  16866. image: {
  16867. source: "./media/characters/pia-jr/front.svg",
  16868. extra: 1000 / 970,
  16869. bottom: 0.035
  16870. }
  16871. },
  16872. hand: {
  16873. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16874. name: "Hand",
  16875. image: {
  16876. source: "./media/characters/pia-jr/hand.svg"
  16877. }
  16878. },
  16879. paw: {
  16880. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16881. name: "Paw",
  16882. image: {
  16883. source: "./media/characters/pia-jr/paw.svg"
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Micro",
  16890. height: math.unit(1.2, "cm")
  16891. },
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(2.2, "m"),
  16895. default: true
  16896. },
  16897. {
  16898. name: "Macro",
  16899. height: math.unit(180, "m")
  16900. },
  16901. {
  16902. name: "Megamacro",
  16903. height: math.unit(420, "km")
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(2, "m"),
  16912. weight: math.unit(115, "kg"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/pia-sr/front.svg",
  16916. extra: 760 / 730,
  16917. bottom: 0.015
  16918. }
  16919. },
  16920. back: {
  16921. height: math.unit(2, "m"),
  16922. weight: math.unit(115, "kg"),
  16923. name: "Back",
  16924. image: {
  16925. source: "./media/characters/pia-sr/back.svg",
  16926. extra: 760 / 730,
  16927. bottom: 0.01
  16928. }
  16929. },
  16930. hand: {
  16931. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16932. name: "Hand",
  16933. image: {
  16934. source: "./media/characters/pia-sr/hand.svg"
  16935. }
  16936. },
  16937. foot: {
  16938. height: math.unit(1.83, "feet"),
  16939. name: "Foot",
  16940. image: {
  16941. source: "./media/characters/pia-sr/foot.svg"
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Micro",
  16948. height: math.unit(88, "mm")
  16949. },
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(2, "m"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Macro",
  16957. height: math.unit(200, "m")
  16958. },
  16959. {
  16960. name: "Megamacro",
  16961. height: math.unit(420, "km")
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16967. {
  16968. front: {
  16969. height: math.unit(8 + 2 / 12, "feet"),
  16970. weight: math.unit(300, "lb"),
  16971. name: "Front",
  16972. image: {
  16973. source: "./media/characters/kibibyte/front.svg",
  16974. extra: 2221 / 2098,
  16975. bottom: 0.04
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(8 + 2 / 12, "feet"),
  16983. default: true
  16984. },
  16985. {
  16986. name: "Socialable Macro",
  16987. height: math.unit(50, "feet")
  16988. },
  16989. {
  16990. name: "Macro",
  16991. height: math.unit(300, "feet")
  16992. },
  16993. {
  16994. name: "Megamacro",
  16995. height: math.unit(500, "miles")
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  17001. {
  17002. front: {
  17003. height: math.unit(6, "feet"),
  17004. weight: math.unit(150, "lb"),
  17005. name: "Front",
  17006. image: {
  17007. source: "./media/characters/felix/front.svg",
  17008. extra: 762 / 722,
  17009. bottom: 0.02
  17010. }
  17011. },
  17012. frontClothed: {
  17013. height: math.unit(6, "feet"),
  17014. weight: math.unit(150, "lb"),
  17015. name: "Front (Clothed)",
  17016. image: {
  17017. source: "./media/characters/felix/front-clothed.svg",
  17018. extra: 762 / 722,
  17019. bottom: 0.02
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(6 + 8 / 12, "feet"),
  17027. default: true
  17028. },
  17029. {
  17030. name: "Macro",
  17031. height: math.unit(2600, "feet")
  17032. },
  17033. {
  17034. name: "Megamacro",
  17035. height: math.unit(450, "miles")
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(6 + 1 / 12, "feet"),
  17044. weight: math.unit(250, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/tobo/front.svg",
  17048. extra: 608 / 586,
  17049. bottom: 0.023
  17050. }
  17051. },
  17052. back: {
  17053. height: math.unit(6 + 1 / 12, "feet"),
  17054. weight: math.unit(250, "lb"),
  17055. name: "Back",
  17056. image: {
  17057. source: "./media/characters/tobo/back.svg",
  17058. extra: 608 / 586
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Nano",
  17065. height: math.unit(2, "nm")
  17066. },
  17067. {
  17068. name: "Megamicro",
  17069. height: math.unit(0.1, "mm")
  17070. },
  17071. {
  17072. name: "Micro",
  17073. height: math.unit(1, "inch"),
  17074. default: true
  17075. },
  17076. {
  17077. name: "Human-sized",
  17078. height: math.unit(6 + 1 / 12, "feet")
  17079. },
  17080. {
  17081. name: "Macro",
  17082. height: math.unit(250, "feet")
  17083. },
  17084. {
  17085. name: "Megamacro",
  17086. height: math.unit(75, "miles")
  17087. },
  17088. {
  17089. name: "Texas-sized",
  17090. height: math.unit(750, "miles")
  17091. },
  17092. {
  17093. name: "Teramacro",
  17094. height: math.unit(50000, "miles")
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(6, "feet"),
  17103. weight: math.unit(269, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/danny-kapowsky/front.svg",
  17107. extra: 766 / 736,
  17108. bottom: 0.044
  17109. }
  17110. },
  17111. back: {
  17112. height: math.unit(6, "feet"),
  17113. weight: math.unit(269, "lb"),
  17114. name: "Back",
  17115. image: {
  17116. source: "./media/characters/danny-kapowsky/back.svg",
  17117. extra: 797 / 760,
  17118. bottom: 0.025
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Macro",
  17125. height: math.unit(150, "feet"),
  17126. default: true
  17127. },
  17128. {
  17129. name: "Macro+",
  17130. height: math.unit(200, "feet")
  17131. },
  17132. {
  17133. name: "Macro++",
  17134. height: math.unit(300, "feet")
  17135. },
  17136. {
  17137. name: "Macro+++",
  17138. height: math.unit(400, "feet")
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17144. {
  17145. side: {
  17146. height: math.unit(6, "feet"),
  17147. weight: math.unit(170, "lb"),
  17148. name: "Side",
  17149. image: {
  17150. source: "./media/characters/finn/side.svg",
  17151. extra: 1953 / 1807,
  17152. bottom: 0.057
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Megamacro",
  17159. height: math.unit(14445, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(5 + 6 / 12, "feet"),
  17169. weight: math.unit(125, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/roy/front.svg",
  17173. extra: 1,
  17174. bottom: 0.11
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Micro",
  17181. height: math.unit(3, "inches"),
  17182. default: true
  17183. },
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(5 + 6 / 12, "feet")
  17187. },
  17188. {
  17189. name: "Lesser Macro",
  17190. height: math.unit(60, "feet")
  17191. },
  17192. {
  17193. name: "Greater Macro",
  17194. height: math.unit(120, "feet")
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17200. {
  17201. front: {
  17202. height: math.unit(6, "feet"),
  17203. weight: math.unit(100, "lb"),
  17204. name: "Front",
  17205. image: {
  17206. source: "./media/characters/aevsivs/front.svg",
  17207. extra: 1,
  17208. bottom: 0.03
  17209. }
  17210. },
  17211. back: {
  17212. height: math.unit(6, "feet"),
  17213. weight: math.unit(100, "lb"),
  17214. name: "Back",
  17215. image: {
  17216. source: "./media/characters/aevsivs/back.svg"
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Micro",
  17223. height: math.unit(2, "inches"),
  17224. default: true
  17225. },
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(5, "feet")
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17234. {
  17235. front: {
  17236. height: math.unit(5 + 7 / 12, "feet"),
  17237. weight: math.unit(159, "lb"),
  17238. name: "Front",
  17239. image: {
  17240. source: "./media/characters/hildegard/front.svg",
  17241. extra: 289 / 269,
  17242. bottom: 7.63 / 297.8
  17243. }
  17244. },
  17245. back: {
  17246. height: math.unit(5 + 7 / 12, "feet"),
  17247. weight: math.unit(159, "lb"),
  17248. name: "Back",
  17249. image: {
  17250. source: "./media/characters/hildegard/back.svg",
  17251. extra: 280 / 260,
  17252. bottom: 2.3 / 282
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(5 + 7 / 12, "feet"),
  17260. default: true
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17266. {
  17267. bernard: {
  17268. height: math.unit(2 + 7 / 12, "feet"),
  17269. weight: math.unit(66, "lb"),
  17270. name: "Bernard",
  17271. rename: true,
  17272. image: {
  17273. source: "./media/characters/bernard-wilder/bernard.svg",
  17274. extra: 192 / 128,
  17275. bottom: 0.05
  17276. }
  17277. },
  17278. wilder: {
  17279. height: math.unit(5 + 8 / 12, "feet"),
  17280. weight: math.unit(143, "lb"),
  17281. name: "Wilder",
  17282. rename: true,
  17283. image: {
  17284. source: "./media/characters/bernard-wilder/wilder.svg",
  17285. extra: 361 / 312,
  17286. bottom: 0.02
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(2 + 7 / 12, "feet"),
  17294. default: true
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17300. {
  17301. anthro: {
  17302. height: math.unit(6 + 1 / 12, "feet"),
  17303. weight: math.unit(155, "lb"),
  17304. name: "Anthro",
  17305. image: {
  17306. source: "./media/characters/hearth/anthro.svg",
  17307. extra: 1178/1136,
  17308. bottom: 28/1206
  17309. }
  17310. },
  17311. feral: {
  17312. height: math.unit(3.78, "feet"),
  17313. weight: math.unit(35, "kg"),
  17314. name: "Feral",
  17315. image: {
  17316. source: "./media/characters/hearth/feral.svg",
  17317. extra: 153 / 135,
  17318. bottom: 0.03
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(6 + 1 / 12, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17332. {
  17333. front: {
  17334. height: math.unit(6, "feet"),
  17335. weight: math.unit(182, "lb"),
  17336. name: "Front",
  17337. image: {
  17338. source: "./media/characters/ingrid/front.svg",
  17339. extra: 294 / 268,
  17340. bottom: 0.027
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(6, "feet"),
  17348. default: true
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17354. {
  17355. eevee: {
  17356. height: math.unit(2 + 10 / 12, "feet"),
  17357. weight: math.unit(86, "lb"),
  17358. name: "Malgam",
  17359. image: {
  17360. source: "./media/characters/malgam/eevee.svg",
  17361. extra: 952/784,
  17362. bottom: 38/990
  17363. }
  17364. },
  17365. sylveon: {
  17366. height: math.unit(4, "feet"),
  17367. weight: math.unit(101, "lb"),
  17368. name: "Future Malgam",
  17369. rename: true,
  17370. image: {
  17371. source: "./media/characters/malgam/sylveon.svg",
  17372. extra: 371 / 325,
  17373. bottom: 0.015
  17374. }
  17375. },
  17376. gigantamax: {
  17377. height: math.unit(50, "feet"),
  17378. name: "Gigantamax Malgam",
  17379. rename: true,
  17380. image: {
  17381. source: "./media/characters/malgam/gigantamax.svg"
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(2 + 10 / 12, "feet"),
  17389. default: true
  17390. },
  17391. ]
  17392. ))
  17393. characterMakers.push(() => makeCharacter(
  17394. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17395. {
  17396. front: {
  17397. height: math.unit(5 + 11 / 12, "feet"),
  17398. weight: math.unit(188, "lb"),
  17399. name: "Front",
  17400. image: {
  17401. source: "./media/characters/fleur/front.svg",
  17402. extra: 309 / 283,
  17403. bottom: 0.007
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(5 + 11 / 12, "feet"),
  17411. default: true
  17412. },
  17413. ]
  17414. ))
  17415. characterMakers.push(() => makeCharacter(
  17416. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17417. {
  17418. front: {
  17419. height: math.unit(5 + 4 / 12, "feet"),
  17420. weight: math.unit(122, "lb"),
  17421. name: "Front",
  17422. image: {
  17423. source: "./media/characters/jude/front.svg",
  17424. extra: 288 / 273,
  17425. bottom: 0.03
  17426. }
  17427. },
  17428. },
  17429. [
  17430. {
  17431. name: "Normal",
  17432. height: math.unit(5 + 4 / 12, "feet"),
  17433. default: true
  17434. },
  17435. ]
  17436. ))
  17437. characterMakers.push(() => makeCharacter(
  17438. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17439. {
  17440. front: {
  17441. height: math.unit(5 + 11 / 12, "feet"),
  17442. weight: math.unit(190, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/seara/front.svg",
  17446. extra: 1,
  17447. bottom: 0.05
  17448. }
  17449. },
  17450. },
  17451. [
  17452. {
  17453. name: "Normal",
  17454. height: math.unit(5 + 11 / 12, "feet"),
  17455. default: true
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(16 + 5 / 12, "feet"),
  17464. weight: math.unit(524, "lb"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/caspian-lugia/front.svg",
  17468. extra: 1,
  17469. bottom: 0.04
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(16 + 5 / 12, "feet"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(5 + 7 / 12, "feet"),
  17486. weight: math.unit(170, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/mika/front.svg",
  17490. extra: 1,
  17491. bottom: 0.016
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(5 + 7 / 12, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(6 + 2 / 12, "feet"),
  17508. weight: math.unit(268, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/sol/front.svg",
  17512. extra: 247 / 231,
  17513. bottom: 0.05
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(6 + 2 / 12, "feet"),
  17521. default: true
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17527. {
  17528. buizel: {
  17529. height: math.unit(2 + 5 / 12, "feet"),
  17530. weight: math.unit(87, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/umiko/buizel.svg",
  17534. extra: 172 / 157,
  17535. bottom: 0.01
  17536. },
  17537. form: "buizel",
  17538. default: true
  17539. },
  17540. floatzel: {
  17541. height: math.unit(5 + 9 / 12, "feet"),
  17542. weight: math.unit(250, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/umiko/floatzel.svg",
  17546. extra: 1076/1006,
  17547. bottom: 15/1091
  17548. },
  17549. form: "floatzel",
  17550. default: true
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(2 + 5 / 12, "feet"),
  17557. form: "buizel",
  17558. default: true
  17559. },
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(5 + 9 / 12, "feet"),
  17563. form: "floatzel",
  17564. default: true
  17565. },
  17566. ],
  17567. {
  17568. "buizel": {
  17569. name: "Buizel"
  17570. },
  17571. "floatzel": {
  17572. name: "Floatzel",
  17573. default: true
  17574. }
  17575. }
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(6 + 2 / 12, "feet"),
  17582. weight: math.unit(146, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/iliac/front.svg",
  17586. extra: 389 / 365,
  17587. bottom: 0.035
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(6 + 2 / 12, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(6, "feet"),
  17604. weight: math.unit(170, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/topaz/front.svg",
  17608. extra: 317 / 303,
  17609. bottom: 0.055
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(6, "feet"),
  17617. default: true
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17623. {
  17624. front: {
  17625. height: math.unit(5 + 11 / 12, "feet"),
  17626. weight: math.unit(144, "lb"),
  17627. name: "Front",
  17628. image: {
  17629. source: "./media/characters/gabriel/front.svg",
  17630. extra: 285 / 262,
  17631. bottom: 0.004
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(5 + 11 / 12, "feet"),
  17639. default: true
  17640. },
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17645. {
  17646. side: {
  17647. height: math.unit(6 + 5 / 12, "feet"),
  17648. weight: math.unit(300, "lb"),
  17649. name: "Side",
  17650. image: {
  17651. source: "./media/characters/tempest-suicune/side.svg",
  17652. extra: 195 / 154,
  17653. bottom: 0.04
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(6 + 5 / 12, "feet"),
  17661. default: true
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17667. {
  17668. front: {
  17669. height: math.unit(7 + 2 / 12, "feet"),
  17670. weight: math.unit(322, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/vulcan/front.svg",
  17674. extra: 154 / 147,
  17675. bottom: 0.04
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(7 + 2 / 12, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(5 + 10 / 12, "feet"),
  17692. weight: math.unit(264, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/gault/front.svg",
  17696. extra: 161 / 140,
  17697. bottom: 0.028
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(5 + 10 / 12, "feet"),
  17705. default: true
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(6, "feet"),
  17714. weight: math.unit(150, "lb"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/shard/front.svg",
  17718. extra: 273 / 238,
  17719. bottom: 0.02
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(3 + 6 / 12, "feet"),
  17727. default: true
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17733. {
  17734. front: {
  17735. height: math.unit(5 + 11 / 12, "feet"),
  17736. weight: math.unit(146, "lb"),
  17737. name: "Front",
  17738. image: {
  17739. source: "./media/characters/ashe/front.svg",
  17740. extra: 400 / 373,
  17741. bottom: 0.01
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(5 + 11 / 12, "feet"),
  17749. default: true
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17755. {
  17756. front: {
  17757. height: math.unit(5 + 5 / 12, "feet"),
  17758. weight: math.unit(135, "lb"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/beatrix/front.svg",
  17762. extra: 392 / 379,
  17763. bottom: 0.01
  17764. }
  17765. },
  17766. },
  17767. [
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(6, "feet"),
  17771. default: true
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(6 + 2/12, "feet"),
  17780. weight: math.unit(135, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/ignatius/front.svg",
  17784. extra: 1380/1259,
  17785. bottom: 27/1407
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(6 + 2/12, "feet"),
  17793. default: true
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17799. {
  17800. front: {
  17801. height: math.unit(6 + 2 / 12, "feet"),
  17802. weight: math.unit(138, "lb"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/mei-li/front.svg",
  17806. extra: 237 / 229,
  17807. bottom: 0.03
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Normal",
  17814. height: math.unit(6 + 2 / 12, "feet"),
  17815. default: true
  17816. },
  17817. ]
  17818. ))
  17819. characterMakers.push(() => makeCharacter(
  17820. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17821. {
  17822. front: {
  17823. height: math.unit(2 + 4 / 12, "feet"),
  17824. weight: math.unit(62, "lb"),
  17825. name: "Front",
  17826. image: {
  17827. source: "./media/characters/puru/front.svg",
  17828. extra: 206 / 149,
  17829. bottom: 0.06
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(2 + 4 / 12, "feet"),
  17837. default: true
  17838. },
  17839. ]
  17840. ))
  17841. characterMakers.push(() => makeCharacter(
  17842. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17843. {
  17844. anthro: {
  17845. height: math.unit(5 + 8/12, "feet"),
  17846. weight: math.unit(200, "lb"),
  17847. energyNeed: math.unit(2000, "kcal"),
  17848. name: "Anthro",
  17849. image: {
  17850. source: "./media/characters/kee/anthro.svg",
  17851. extra: 3251/3184,
  17852. bottom: 250/3501
  17853. }
  17854. },
  17855. taur: {
  17856. height: math.unit(11, "feet"),
  17857. weight: math.unit(500, "lb"),
  17858. energyNeed: math.unit(5000, "kcal"),
  17859. name: "Taur",
  17860. image: {
  17861. source: "./media/characters/kee/taur.svg",
  17862. extra: 1362/1320,
  17863. bottom: 83/1445
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Normal",
  17870. height: math.unit(5 + 8/12, "feet"),
  17871. default: true
  17872. },
  17873. {
  17874. name: "Macro",
  17875. height: math.unit(35, "feet")
  17876. },
  17877. ]
  17878. ))
  17879. characterMakers.push(() => makeCharacter(
  17880. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17881. {
  17882. anthro: {
  17883. height: math.unit(7, "feet"),
  17884. weight: math.unit(190, "lb"),
  17885. name: "Anthro",
  17886. image: {
  17887. source: "./media/characters/cobalt-dracha/anthro.svg",
  17888. extra: 231 / 225,
  17889. bottom: 0.04
  17890. }
  17891. },
  17892. feral: {
  17893. height: math.unit(9 + 7 / 12, "feet"),
  17894. weight: math.unit(294, "lb"),
  17895. name: "Feral",
  17896. image: {
  17897. source: "./media/characters/cobalt-dracha/feral.svg",
  17898. extra: 692 / 633,
  17899. bottom: 0.05
  17900. }
  17901. },
  17902. },
  17903. [
  17904. {
  17905. name: "Normal",
  17906. height: math.unit(7, "feet"),
  17907. default: true
  17908. },
  17909. ]
  17910. ))
  17911. characterMakers.push(() => makeCharacter(
  17912. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17913. {
  17914. fallen: {
  17915. height: math.unit(11 + 8 / 12, "feet"),
  17916. weight: math.unit(485, "lb"),
  17917. name: "Java (Fallen)",
  17918. rename: true,
  17919. image: {
  17920. source: "./media/characters/java/fallen.svg",
  17921. extra: 226 / 208,
  17922. bottom: 0.005
  17923. }
  17924. },
  17925. godkin: {
  17926. height: math.unit(10 + 6 / 12, "feet"),
  17927. weight: math.unit(328, "lb"),
  17928. name: "Java (Godkin)",
  17929. rename: true,
  17930. image: {
  17931. source: "./media/characters/java/godkin.svg",
  17932. extra: 1104/1068,
  17933. bottom: 36/1140
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Normal",
  17940. height: math.unit(11 + 8 / 12, "feet"),
  17941. default: true
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17947. {
  17948. front: {
  17949. height: math.unit(5 + 9 / 12, "feet"),
  17950. weight: math.unit(170, "lb"),
  17951. name: "Front",
  17952. image: {
  17953. source: "./media/characters/purna/front.svg",
  17954. extra: 239 / 229,
  17955. bottom: 0.01
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(5 + 9 / 12, "feet"),
  17963. default: true
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17969. {
  17970. front: {
  17971. height: math.unit(5 + 9 / 12, "feet"),
  17972. weight: math.unit(142, "lb"),
  17973. name: "Front",
  17974. image: {
  17975. source: "./media/characters/kuva/front.svg",
  17976. extra: 281 / 271,
  17977. bottom: 0.006
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(5 + 9 / 12, "feet"),
  17985. default: true
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17991. {
  17992. anthro: {
  17993. height: math.unit(9 + 2 / 12, "feet"),
  17994. weight: math.unit(270, "lb"),
  17995. name: "Anthro",
  17996. image: {
  17997. source: "./media/characters/embra/anthro.svg",
  17998. extra: 200 / 187,
  17999. bottom: 0.02
  18000. }
  18001. },
  18002. feral: {
  18003. height: math.unit(18 + 8 / 12, "feet"),
  18004. weight: math.unit(576, "lb"),
  18005. name: "Feral",
  18006. image: {
  18007. source: "./media/characters/embra/feral.svg",
  18008. extra: 152 / 137,
  18009. bottom: 0.037
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(9 + 2 / 12, "feet"),
  18017. default: true
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  18023. {
  18024. anthro: {
  18025. height: math.unit(10 + 9 / 12, "feet"),
  18026. weight: math.unit(224, "lb"),
  18027. name: "Anthro",
  18028. image: {
  18029. source: "./media/characters/grottos/anthro.svg",
  18030. extra: 350 / 332,
  18031. bottom: 0.045
  18032. }
  18033. },
  18034. feral: {
  18035. height: math.unit(20 + 7 / 12, "feet"),
  18036. weight: math.unit(629, "lb"),
  18037. name: "Feral",
  18038. image: {
  18039. source: "./media/characters/grottos/feral.svg",
  18040. extra: 207 / 190,
  18041. bottom: 0.05
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(10 + 9 / 12, "feet"),
  18049. default: true
  18050. },
  18051. ]
  18052. ))
  18053. characterMakers.push(() => makeCharacter(
  18054. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  18055. {
  18056. anthro: {
  18057. height: math.unit(9 + 6 / 12, "feet"),
  18058. weight: math.unit(298, "lb"),
  18059. name: "Anthro",
  18060. image: {
  18061. source: "./media/characters/frifna/anthro.svg",
  18062. extra: 282 / 269,
  18063. bottom: 0.015
  18064. }
  18065. },
  18066. feral: {
  18067. height: math.unit(16 + 2 / 12, "feet"),
  18068. weight: math.unit(624, "lb"),
  18069. name: "Feral",
  18070. image: {
  18071. source: "./media/characters/frifna/feral.svg"
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(9 + 6 / 12, "feet"),
  18079. default: true
  18080. },
  18081. ]
  18082. ))
  18083. characterMakers.push(() => makeCharacter(
  18084. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  18085. {
  18086. front: {
  18087. height: math.unit(6 + 2 / 12, "feet"),
  18088. weight: math.unit(168, "lb"),
  18089. name: "Front",
  18090. image: {
  18091. source: "./media/characters/elise/front.svg",
  18092. extra: 276 / 271
  18093. }
  18094. },
  18095. },
  18096. [
  18097. {
  18098. name: "Normal",
  18099. height: math.unit(6 + 2 / 12, "feet"),
  18100. default: true
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  18106. {
  18107. front: {
  18108. height: math.unit(5 + 10 / 12, "feet"),
  18109. weight: math.unit(210, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/glade/front.svg",
  18113. extra: 258 / 247,
  18114. bottom: 0.008
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(5 + 10 / 12, "feet"),
  18122. default: true
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  18128. {
  18129. front: {
  18130. height: math.unit(5 + 10 / 12, "feet"),
  18131. weight: math.unit(129, "lb"),
  18132. name: "Front",
  18133. image: {
  18134. source: "./media/characters/rina/front.svg",
  18135. extra: 266 / 255,
  18136. bottom: 0.005
  18137. }
  18138. },
  18139. },
  18140. [
  18141. {
  18142. name: "Normal",
  18143. height: math.unit(5 + 10 / 12, "feet"),
  18144. default: true
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(6 + 1 / 12, "feet"),
  18153. weight: math.unit(192, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/veronica/front.svg",
  18157. extra: 319 / 309,
  18158. bottom: 0.005
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(6 + 1 / 12, "feet"),
  18166. default: true
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(9 + 3 / 12, "feet"),
  18175. weight: math.unit(1100, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/braxton/front.svg",
  18179. extra: 1057 / 984,
  18180. bottom: 0.05
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(9 + 3 / 12, "feet")
  18188. },
  18189. {
  18190. name: "Giant",
  18191. height: math.unit(300, "feet"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Macro",
  18196. height: math.unit(700, "feet")
  18197. },
  18198. {
  18199. name: "Megamacro",
  18200. height: math.unit(6000, "feet")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(6 + 7 / 12, "feet"),
  18209. weight: math.unit(150, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/blue-feyonics/front.svg",
  18213. extra: 1403 / 1306,
  18214. bottom: 0.047
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(6 + 7 / 12, "feet"),
  18222. default: true
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(1.8, "meters"),
  18231. weight: math.unit(60, "kg"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/maxwell/front.svg",
  18235. extra: 2060 / 1873
  18236. }
  18237. },
  18238. },
  18239. [
  18240. {
  18241. name: "Micro",
  18242. height: math.unit(1, "mm")
  18243. },
  18244. {
  18245. name: "Normal",
  18246. height: math.unit(1.8, "meter"),
  18247. default: true
  18248. },
  18249. {
  18250. name: "Macro",
  18251. height: math.unit(30, "meters")
  18252. },
  18253. {
  18254. name: "Megamacro",
  18255. height: math.unit(10, "km")
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(6, "feet"),
  18264. weight: math.unit(150, "lb"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/jack/front.svg",
  18268. extra: 1754 / 1640,
  18269. bottom: 0.01
  18270. }
  18271. },
  18272. },
  18273. [
  18274. {
  18275. name: "Normal",
  18276. height: math.unit(80000, "feet"),
  18277. default: true
  18278. },
  18279. {
  18280. name: "Max size",
  18281. height: math.unit(10, "lightyears")
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18287. {
  18288. urban: {
  18289. height: math.unit(5, "feet"),
  18290. weight: math.unit(240, "lb"),
  18291. name: "Urban",
  18292. image: {
  18293. source: "./media/characters/cafat/urban.svg",
  18294. extra: 1223/1126,
  18295. bottom: 205/1428
  18296. }
  18297. },
  18298. summer: {
  18299. height: math.unit(5, "feet"),
  18300. weight: math.unit(240, "lb"),
  18301. name: "Summer",
  18302. image: {
  18303. source: "./media/characters/cafat/summer.svg",
  18304. extra: 1223/1126,
  18305. bottom: 205/1428
  18306. }
  18307. },
  18308. winter: {
  18309. height: math.unit(5, "feet"),
  18310. weight: math.unit(240, "lb"),
  18311. name: "Winter",
  18312. image: {
  18313. source: "./media/characters/cafat/winter.svg",
  18314. extra: 1223/1126,
  18315. bottom: 205/1428
  18316. }
  18317. },
  18318. lingerie: {
  18319. height: math.unit(5, "feet"),
  18320. weight: math.unit(240, "lb"),
  18321. name: "Lingerie",
  18322. image: {
  18323. source: "./media/characters/cafat/lingerie.svg",
  18324. extra: 1223/1126,
  18325. bottom: 205/1428
  18326. }
  18327. },
  18328. upright: {
  18329. height: math.unit(6.3, "feet"),
  18330. weight: math.unit(240, "lb"),
  18331. name: "Upright",
  18332. image: {
  18333. source: "./media/characters/cafat/upright.svg",
  18334. bottom: 0.01
  18335. }
  18336. },
  18337. uprightFull: {
  18338. height: math.unit(6.3, "feet"),
  18339. weight: math.unit(240, "lb"),
  18340. name: "Upright (Full)",
  18341. image: {
  18342. source: "./media/characters/cafat/upright-full.svg",
  18343. bottom: 0.01
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Small",
  18350. height: math.unit(4, "feet"),
  18351. default: true
  18352. },
  18353. {
  18354. name: "Large",
  18355. height: math.unit(13, "feet")
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(6, "feet"),
  18364. weight: math.unit(150, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/verin-raharra/front.svg",
  18368. extra: 5019 / 4835,
  18369. bottom: 0.023
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Normal",
  18376. height: math.unit(7 + 5 / 12, "feet"),
  18377. default: true
  18378. },
  18379. {
  18380. name: "Upsized",
  18381. height: math.unit(20, "feet")
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18387. {
  18388. front: {
  18389. height: math.unit(7, "feet"),
  18390. weight: math.unit(230, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/nakata/front.svg",
  18394. extra: 1.005,
  18395. bottom: 0.01
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Normal",
  18402. height: math.unit(7, "feet"),
  18403. default: true
  18404. },
  18405. {
  18406. name: "Big",
  18407. height: math.unit(14, "feet")
  18408. },
  18409. {
  18410. name: "Macro",
  18411. height: math.unit(400, "feet")
  18412. },
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18417. {
  18418. front: {
  18419. height: math.unit(4.91, "feet"),
  18420. weight: math.unit(100, "lb"),
  18421. name: "Front",
  18422. image: {
  18423. source: "./media/characters/lily/front.svg",
  18424. extra: 1585 / 1415,
  18425. bottom: 0.02
  18426. }
  18427. },
  18428. },
  18429. [
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(4.91, "feet"),
  18433. default: true
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18439. {
  18440. laying: {
  18441. height: math.unit(4 + 4 / 12, "feet"),
  18442. weight: math.unit(600, "lb"),
  18443. name: "Laying",
  18444. image: {
  18445. source: "./media/characters/sheila/laying.svg",
  18446. extra: 1333 / 1265,
  18447. bottom: 0.16
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(4 + 4 / 12, "feet"),
  18455. default: true
  18456. },
  18457. ]
  18458. ))
  18459. characterMakers.push(() => makeCharacter(
  18460. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18461. {
  18462. front: {
  18463. height: math.unit(6, "feet"),
  18464. weight: math.unit(190, "lb"),
  18465. name: "Front",
  18466. image: {
  18467. source: "./media/characters/sax/front.svg",
  18468. extra: 1187 / 973,
  18469. bottom: 0.042
  18470. }
  18471. },
  18472. },
  18473. [
  18474. {
  18475. name: "Micro",
  18476. height: math.unit(4, "inches"),
  18477. default: true
  18478. },
  18479. ]
  18480. ))
  18481. characterMakers.push(() => makeCharacter(
  18482. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18483. {
  18484. front: {
  18485. height: math.unit(6, "feet"),
  18486. weight: math.unit(150, "lb"),
  18487. name: "Front",
  18488. image: {
  18489. source: "./media/characters/pandora/front.svg",
  18490. extra: 2720 / 2556,
  18491. bottom: 0.015
  18492. }
  18493. },
  18494. back: {
  18495. height: math.unit(6, "feet"),
  18496. weight: math.unit(150, "lb"),
  18497. name: "Back",
  18498. image: {
  18499. source: "./media/characters/pandora/back.svg",
  18500. extra: 2720 / 2556,
  18501. bottom: 0.01
  18502. }
  18503. },
  18504. beans: {
  18505. height: math.unit(6 / 8, "feet"),
  18506. name: "Beans",
  18507. image: {
  18508. source: "./media/characters/pandora/beans.svg"
  18509. }
  18510. },
  18511. collar: {
  18512. height: math.unit(0.31, "feet"),
  18513. name: "Collar",
  18514. image: {
  18515. source: "./media/characters/pandora/collar.svg"
  18516. }
  18517. },
  18518. skirt: {
  18519. height: math.unit(6, "feet"),
  18520. weight: math.unit(150, "lb"),
  18521. name: "Skirt",
  18522. image: {
  18523. source: "./media/characters/pandora/skirt.svg",
  18524. extra: 1622 / 1525,
  18525. bottom: 0.015
  18526. }
  18527. },
  18528. hoodie: {
  18529. height: math.unit(6, "feet"),
  18530. weight: math.unit(150, "lb"),
  18531. name: "Hoodie",
  18532. image: {
  18533. source: "./media/characters/pandora/hoodie.svg",
  18534. extra: 1622 / 1525,
  18535. bottom: 0.015
  18536. }
  18537. },
  18538. casual: {
  18539. height: math.unit(6, "feet"),
  18540. weight: math.unit(150, "lb"),
  18541. name: "Casual",
  18542. image: {
  18543. source: "./media/characters/pandora/casual.svg",
  18544. extra: 1622 / 1525,
  18545. bottom: 0.015
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(6, "feet")
  18553. },
  18554. {
  18555. name: "Big Steppy",
  18556. height: math.unit(1, "km"),
  18557. default: true
  18558. },
  18559. {
  18560. name: "Galactic Steppy",
  18561. height: math.unit(2, "gigameters")
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18567. {
  18568. side: {
  18569. height: math.unit(10, "feet"),
  18570. weight: math.unit(800, "kg"),
  18571. name: "Side",
  18572. image: {
  18573. source: "./media/characters/venio-darcony/side.svg",
  18574. extra: 1373 / 1003,
  18575. bottom: 0.037
  18576. }
  18577. },
  18578. front: {
  18579. height: math.unit(19, "feet"),
  18580. weight: math.unit(800, "kg"),
  18581. name: "Front",
  18582. image: {
  18583. source: "./media/characters/venio-darcony/front.svg"
  18584. }
  18585. },
  18586. back: {
  18587. height: math.unit(19, "feet"),
  18588. weight: math.unit(800, "kg"),
  18589. name: "Back",
  18590. image: {
  18591. source: "./media/characters/venio-darcony/back.svg"
  18592. }
  18593. },
  18594. sideNsfw: {
  18595. height: math.unit(10, "feet"),
  18596. weight: math.unit(800, "kg"),
  18597. name: "Side (NSFW)",
  18598. image: {
  18599. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18600. extra: 1373 / 1003,
  18601. bottom: 0.037
  18602. }
  18603. },
  18604. frontNsfw: {
  18605. height: math.unit(19, "feet"),
  18606. weight: math.unit(800, "kg"),
  18607. name: "Front (NSFW)",
  18608. image: {
  18609. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18610. }
  18611. },
  18612. backNsfw: {
  18613. height: math.unit(19, "feet"),
  18614. weight: math.unit(800, "kg"),
  18615. name: "Back (NSFW)",
  18616. image: {
  18617. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18618. }
  18619. },
  18620. sideArmored: {
  18621. height: math.unit(10, "feet"),
  18622. weight: math.unit(800, "kg"),
  18623. name: "Side (Armored)",
  18624. image: {
  18625. source: "./media/characters/venio-darcony/side-armored.svg",
  18626. extra: 1373 / 1003,
  18627. bottom: 0.037
  18628. }
  18629. },
  18630. frontArmored: {
  18631. height: math.unit(19, "feet"),
  18632. weight: math.unit(900, "kg"),
  18633. name: "Front (Armored)",
  18634. image: {
  18635. source: "./media/characters/venio-darcony/front-armored.svg"
  18636. }
  18637. },
  18638. backArmored: {
  18639. height: math.unit(19, "feet"),
  18640. weight: math.unit(900, "kg"),
  18641. name: "Back (Armored)",
  18642. image: {
  18643. source: "./media/characters/venio-darcony/back-armored.svg"
  18644. }
  18645. },
  18646. sword: {
  18647. height: math.unit(10, "feet"),
  18648. weight: math.unit(50, "lb"),
  18649. name: "Sword",
  18650. image: {
  18651. source: "./media/characters/venio-darcony/sword.svg"
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(10, "feet")
  18659. },
  18660. {
  18661. name: "Macro",
  18662. height: math.unit(130, "feet"),
  18663. default: true
  18664. },
  18665. {
  18666. name: "Macro+",
  18667. height: math.unit(240, "feet")
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(6, "feet"),
  18676. weight: math.unit(150, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/veski/front.svg",
  18680. extra: 1299 / 1225,
  18681. bottom: 0.04
  18682. }
  18683. },
  18684. back: {
  18685. height: math.unit(6, "feet"),
  18686. weight: math.unit(150, "lb"),
  18687. name: "Back",
  18688. image: {
  18689. source: "./media/characters/veski/back.svg",
  18690. extra: 1299 / 1225,
  18691. bottom: 0.008
  18692. }
  18693. },
  18694. maw: {
  18695. height: math.unit(1.5 * 1.21, "feet"),
  18696. name: "Maw",
  18697. image: {
  18698. source: "./media/characters/veski/maw.svg"
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Macro",
  18705. height: math.unit(2, "km"),
  18706. default: true
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18712. {
  18713. front: {
  18714. height: math.unit(5 + 7 / 12, "feet"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/isabelle/front.svg",
  18718. extra: 2130 / 1976,
  18719. bottom: 0.05
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Supermicro",
  18726. height: math.unit(10, "micrometers")
  18727. },
  18728. {
  18729. name: "Micro",
  18730. height: math.unit(1, "inch")
  18731. },
  18732. {
  18733. name: "Tiny",
  18734. height: math.unit(5, "inches")
  18735. },
  18736. {
  18737. name: "Standard",
  18738. height: math.unit(5 + 7 / 12, "inches")
  18739. },
  18740. {
  18741. name: "Macro",
  18742. height: math.unit(80, "meters"),
  18743. default: true
  18744. },
  18745. {
  18746. name: "Megamacro",
  18747. height: math.unit(250, "meters")
  18748. },
  18749. {
  18750. name: "Gigamacro",
  18751. height: math.unit(5, "km")
  18752. },
  18753. {
  18754. name: "Cosmic",
  18755. height: math.unit(2.5e6, "miles")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(6, "feet"),
  18764. weight: math.unit(150, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/hanzo/front.svg",
  18768. extra: 374 / 344,
  18769. bottom: 0.02
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(8, "feet"),
  18777. default: true
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18783. {
  18784. front: {
  18785. height: math.unit(7, "feet"),
  18786. weight: math.unit(130, "lb"),
  18787. name: "Front",
  18788. image: {
  18789. source: "./media/characters/anna/front.svg",
  18790. extra: 169 / 145,
  18791. bottom: 0.06
  18792. }
  18793. },
  18794. full: {
  18795. height: math.unit(4.96, "feet"),
  18796. weight: math.unit(220, "lb"),
  18797. name: "Full",
  18798. image: {
  18799. source: "./media/characters/anna/full.svg",
  18800. extra: 138 / 114,
  18801. bottom: 0.15
  18802. }
  18803. },
  18804. tongue: {
  18805. height: math.unit(2.53, "feet"),
  18806. name: "Tongue",
  18807. image: {
  18808. source: "./media/characters/anna/tongue.svg"
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(7, "feet"),
  18816. default: true
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18822. {
  18823. front: {
  18824. height: math.unit(7 + 1/12, "feet"),
  18825. weight: math.unit(150, "lb"),
  18826. name: "Front",
  18827. image: {
  18828. source: "./media/characters/ian-corvid/front.svg",
  18829. extra: 621/591,
  18830. bottom: 14/635
  18831. }
  18832. },
  18833. back: {
  18834. height: math.unit(7 + 1/12, "feet"),
  18835. weight: math.unit(150, "lb"),
  18836. name: "Back",
  18837. image: {
  18838. source: "./media/characters/ian-corvid/back.svg",
  18839. extra: 621/600,
  18840. bottom: 10/631
  18841. }
  18842. },
  18843. stomping: {
  18844. height: math.unit(7 + 1/12, "feet"),
  18845. weight: math.unit(150, "lb"),
  18846. name: "Stomping",
  18847. image: {
  18848. source: "./media/characters/ian-corvid/stomping.svg",
  18849. extra: 309/291,
  18850. bottom: 7/316
  18851. }
  18852. },
  18853. tongue: {
  18854. height: math.unit(3.9, "feet"),
  18855. name: "Tongue",
  18856. image: {
  18857. source: "./media/characters/ian-corvid/tongue.svg"
  18858. }
  18859. },
  18860. beak: {
  18861. height: math.unit(0.9, "feet"),
  18862. name: "Beak",
  18863. image: {
  18864. source: "./media/characters/ian-corvid/beak.svg"
  18865. }
  18866. },
  18867. sitting: {
  18868. height: math.unit(7 / 1.8, "feet"),
  18869. weight: math.unit(150, "lb"),
  18870. name: "Sitting",
  18871. image: {
  18872. source: "./media/characters/ian-corvid/sitting.svg",
  18873. extra: 1400 / 1269,
  18874. bottom: 0.15
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Tiny Microw",
  18881. height: math.unit(1, "inch")
  18882. },
  18883. {
  18884. name: "Microw",
  18885. height: math.unit(6, "inches")
  18886. },
  18887. {
  18888. name: "Crow",
  18889. height: math.unit(7 + 1 / 12, "feet"),
  18890. default: true
  18891. },
  18892. {
  18893. name: "Macrow",
  18894. height: math.unit(176, "feet")
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(5 + 7 / 12, "feet"),
  18903. weight: math.unit(147, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/natalie-kellon/front.svg",
  18907. extra: 1214 / 1141,
  18908. bottom: 0.02
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Micro",
  18915. height: math.unit(1 / 16, "inch")
  18916. },
  18917. {
  18918. name: "Tiny",
  18919. height: math.unit(4, "inches")
  18920. },
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(5 + 7 / 12, "feet"),
  18924. default: true
  18925. },
  18926. {
  18927. name: "Amazon",
  18928. height: math.unit(12, "feet")
  18929. },
  18930. {
  18931. name: "Giantess",
  18932. height: math.unit(160, "meters")
  18933. },
  18934. {
  18935. name: "Titaness",
  18936. height: math.unit(800, "meters")
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(6, "feet"),
  18945. weight: math.unit(150, "lb"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/alluria/front.svg",
  18949. extra: 806 / 738,
  18950. bottom: 0.01
  18951. }
  18952. },
  18953. side: {
  18954. height: math.unit(6, "feet"),
  18955. weight: math.unit(150, "lb"),
  18956. name: "Side",
  18957. image: {
  18958. source: "./media/characters/alluria/side.svg",
  18959. extra: 800 / 750,
  18960. }
  18961. },
  18962. back: {
  18963. height: math.unit(6, "feet"),
  18964. weight: math.unit(150, "lb"),
  18965. name: "Back",
  18966. image: {
  18967. source: "./media/characters/alluria/back.svg",
  18968. extra: 806 / 738,
  18969. }
  18970. },
  18971. frontMaid: {
  18972. height: math.unit(6, "feet"),
  18973. weight: math.unit(150, "lb"),
  18974. name: "Front (Maid)",
  18975. image: {
  18976. source: "./media/characters/alluria/front-maid.svg",
  18977. extra: 806 / 738,
  18978. bottom: 0.01
  18979. }
  18980. },
  18981. sideMaid: {
  18982. height: math.unit(6, "feet"),
  18983. weight: math.unit(150, "lb"),
  18984. name: "Side (Maid)",
  18985. image: {
  18986. source: "./media/characters/alluria/side-maid.svg",
  18987. extra: 800 / 750,
  18988. bottom: 0.005
  18989. }
  18990. },
  18991. backMaid: {
  18992. height: math.unit(6, "feet"),
  18993. weight: math.unit(150, "lb"),
  18994. name: "Back (Maid)",
  18995. image: {
  18996. source: "./media/characters/alluria/back-maid.svg",
  18997. extra: 806 / 738,
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Micro",
  19004. height: math.unit(6, "inches"),
  19005. default: true
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(6, "feet"),
  19014. weight: math.unit(150, "lb"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/kyle/front.svg",
  19018. extra: 1069 / 962,
  19019. bottom: 77.228 / 1727.45
  19020. }
  19021. },
  19022. },
  19023. [
  19024. {
  19025. name: "Macro",
  19026. height: math.unit(150, "feet"),
  19027. default: true
  19028. },
  19029. ]
  19030. ))
  19031. characterMakers.push(() => makeCharacter(
  19032. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  19033. {
  19034. front: {
  19035. height: math.unit(6, "feet"),
  19036. weight: math.unit(300, "lb"),
  19037. name: "Front",
  19038. image: {
  19039. source: "./media/characters/duncan/front.svg",
  19040. extra: 1650 / 1482,
  19041. bottom: 0.05
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Macro",
  19048. height: math.unit(100, "feet"),
  19049. default: true
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(5 + 4 / 12, "feet"),
  19058. weight: math.unit(220, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/memory/front.svg",
  19062. extra: 3641 / 3545,
  19063. bottom: 0.03
  19064. }
  19065. },
  19066. back: {
  19067. height: math.unit(5 + 4 / 12, "feet"),
  19068. weight: math.unit(220, "lb"),
  19069. name: "Back",
  19070. image: {
  19071. source: "./media/characters/memory/back.svg",
  19072. extra: 3641 / 3545,
  19073. bottom: 0.025
  19074. }
  19075. },
  19076. frontSkirt: {
  19077. height: math.unit(5 + 4 / 12, "feet"),
  19078. weight: math.unit(220, "lb"),
  19079. name: "Front (Skirt)",
  19080. image: {
  19081. source: "./media/characters/memory/front-skirt.svg",
  19082. extra: 3641 / 3545,
  19083. bottom: 0.03
  19084. }
  19085. },
  19086. frontDress: {
  19087. height: math.unit(5 + 4 / 12, "feet"),
  19088. weight: math.unit(220, "lb"),
  19089. name: "Front (Dress)",
  19090. image: {
  19091. source: "./media/characters/memory/front-dress.svg",
  19092. extra: 3641 / 3545,
  19093. bottom: 0.03
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Micro",
  19100. height: math.unit(6, "inches"),
  19101. default: true
  19102. },
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(5 + 4 / 12, "feet")
  19106. },
  19107. ]
  19108. ))
  19109. characterMakers.push(() => makeCharacter(
  19110. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  19111. {
  19112. front: {
  19113. height: math.unit(4 + 11 / 12, "feet"),
  19114. weight: math.unit(100, "lb"),
  19115. name: "Front",
  19116. image: {
  19117. source: "./media/characters/luno/front.svg",
  19118. extra: 1535 / 1487,
  19119. bottom: 0.03
  19120. }
  19121. },
  19122. },
  19123. [
  19124. {
  19125. name: "Micro",
  19126. height: math.unit(3, "inches")
  19127. },
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(4 + 11 / 12, "feet"),
  19131. default: true
  19132. },
  19133. {
  19134. name: "Macro",
  19135. height: math.unit(300, "feet")
  19136. },
  19137. {
  19138. name: "Megamacro",
  19139. height: math.unit(700, "miles")
  19140. },
  19141. ]
  19142. ))
  19143. characterMakers.push(() => makeCharacter(
  19144. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19145. {
  19146. front: {
  19147. height: math.unit(6 + 2 / 12, "feet"),
  19148. weight: math.unit(170, "lb"),
  19149. name: "Front",
  19150. image: {
  19151. source: "./media/characters/jamesy/front.svg",
  19152. extra: 440 / 382,
  19153. bottom: 0.005
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Micro",
  19160. height: math.unit(3, "inches")
  19161. },
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(6 + 2 / 12, "feet"),
  19165. default: true
  19166. },
  19167. {
  19168. name: "Macro",
  19169. height: math.unit(300, "feet")
  19170. },
  19171. {
  19172. name: "Megamacro",
  19173. height: math.unit(700, "miles")
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19179. {
  19180. front: {
  19181. height: math.unit(6, "feet"),
  19182. weight: math.unit(160, "lb"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/mark/front.svg",
  19186. extra: 3300 / 3100,
  19187. bottom: 136.42 / 3440.47
  19188. }
  19189. },
  19190. },
  19191. [
  19192. {
  19193. name: "Macro",
  19194. height: math.unit(120, "meters")
  19195. },
  19196. {
  19197. name: "Bigger Macro",
  19198. height: math.unit(350, "meters")
  19199. },
  19200. {
  19201. name: "Megamacro",
  19202. height: math.unit(8, "km"),
  19203. default: true
  19204. },
  19205. {
  19206. name: "Continental",
  19207. height: math.unit(4550, "km")
  19208. },
  19209. {
  19210. name: "Planetary",
  19211. height: math.unit(65000, "km")
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19217. {
  19218. front: {
  19219. height: math.unit(6, "feet"),
  19220. weight: math.unit(400, "lb"),
  19221. name: "Front",
  19222. image: {
  19223. source: "./media/characters/mac/front.svg",
  19224. extra: 1048 / 987.7,
  19225. bottom: 60 / 1107.6,
  19226. }
  19227. },
  19228. },
  19229. [
  19230. {
  19231. name: "Macro",
  19232. height: math.unit(500, "feet"),
  19233. default: true
  19234. },
  19235. ]
  19236. ))
  19237. characterMakers.push(() => makeCharacter(
  19238. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19239. {
  19240. front: {
  19241. height: math.unit(5 + 2 / 12, "feet"),
  19242. weight: math.unit(190, "lb"),
  19243. name: "Front",
  19244. image: {
  19245. source: "./media/characters/bari/front.svg",
  19246. extra: 3156 / 2880,
  19247. bottom: 0.03
  19248. }
  19249. },
  19250. back: {
  19251. height: math.unit(5 + 2 / 12, "feet"),
  19252. weight: math.unit(190, "lb"),
  19253. name: "Back",
  19254. image: {
  19255. source: "./media/characters/bari/back.svg",
  19256. extra: 3260 / 2834,
  19257. bottom: 0.025
  19258. }
  19259. },
  19260. frontPlush: {
  19261. height: math.unit(5 + 2 / 12, "feet"),
  19262. weight: math.unit(190, "lb"),
  19263. name: "Front (Plush)",
  19264. image: {
  19265. source: "./media/characters/bari/front-plush.svg",
  19266. extra: 1112 / 1061,
  19267. bottom: 0.002
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Micro",
  19274. height: math.unit(3, "inches")
  19275. },
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(5 + 2 / 12, "feet"),
  19279. default: true
  19280. },
  19281. {
  19282. name: "Macro",
  19283. height: math.unit(20, "feet")
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19289. {
  19290. front: {
  19291. height: math.unit(6 + 1 / 12, "feet"),
  19292. weight: math.unit(275, "lb"),
  19293. name: "Front",
  19294. image: {
  19295. source: "./media/characters/hunter-misha-raven/front.svg"
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Mortal",
  19302. height: math.unit(6 + 1 / 12, "feet")
  19303. },
  19304. {
  19305. name: "Divine",
  19306. height: math.unit(1.12134e34, "parsecs"),
  19307. default: true
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(6 + 3 / 12, "feet"),
  19316. weight: math.unit(220, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/max-calore/front.svg",
  19320. extra: 1700 / 1648,
  19321. bottom: 0.01
  19322. }
  19323. },
  19324. back: {
  19325. height: math.unit(6 + 3 / 12, "feet"),
  19326. weight: math.unit(220, "lb"),
  19327. name: "Back",
  19328. image: {
  19329. source: "./media/characters/max-calore/back.svg",
  19330. extra: 1700 / 1648,
  19331. bottom: 0.01
  19332. }
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(6 + 3 / 12, "feet"),
  19339. default: true
  19340. },
  19341. ]
  19342. ))
  19343. characterMakers.push(() => makeCharacter(
  19344. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19345. {
  19346. side: {
  19347. height: math.unit(2 + 8 / 12, "feet"),
  19348. weight: math.unit(99, "lb"),
  19349. name: "Side",
  19350. image: {
  19351. source: "./media/characters/aspen/side.svg",
  19352. extra: 152 / 138,
  19353. bottom: 0.032
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(2 + 8 / 12, "feet"),
  19361. default: true
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19367. {
  19368. side: {
  19369. height: math.unit(3 + 2 / 12, "feet"),
  19370. weight: math.unit(224, "lb"),
  19371. name: "Side",
  19372. image: {
  19373. source: "./media/characters/sheila-feral-wolf/side.svg",
  19374. extra: 179 / 166,
  19375. bottom: 0.03
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(3 + 2 / 12, "feet"),
  19383. default: true
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19389. {
  19390. side: {
  19391. height: math.unit(1 + 9 / 12, "feet"),
  19392. weight: math.unit(38, "lb"),
  19393. name: "Side",
  19394. image: {
  19395. source: "./media/characters/michelle/side.svg",
  19396. extra: 147 / 136.7,
  19397. bottom: 0.03
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Normal",
  19404. height: math.unit(1 + 9 / 12, "feet"),
  19405. default: true
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(1.54, "feet"),
  19414. weight: math.unit(50, "lb"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/nino/front.svg"
  19418. }
  19419. },
  19420. },
  19421. [
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(1.54, "feet"),
  19425. default: true
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19431. {
  19432. front: {
  19433. height: math.unit(1.49, "feet"),
  19434. weight: math.unit(45, "lb"),
  19435. name: "Front",
  19436. image: {
  19437. source: "./media/characters/viola/front.svg"
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Normal",
  19444. height: math.unit(1.49, "feet"),
  19445. default: true
  19446. },
  19447. ]
  19448. ))
  19449. characterMakers.push(() => makeCharacter(
  19450. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19451. {
  19452. front: {
  19453. height: math.unit(6 + 5 / 12, "feet"),
  19454. weight: math.unit(580, "lb"),
  19455. name: "Front",
  19456. image: {
  19457. source: "./media/characters/atlas/front.svg",
  19458. extra: 298.5 / 290,
  19459. bottom: 0.015
  19460. }
  19461. },
  19462. },
  19463. [
  19464. {
  19465. name: "Normal",
  19466. height: math.unit(6 + 5 / 12, "feet"),
  19467. default: true
  19468. },
  19469. ]
  19470. ))
  19471. characterMakers.push(() => makeCharacter(
  19472. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19473. {
  19474. side: {
  19475. height: math.unit(15.6, "inches"),
  19476. weight: math.unit(10, "lb"),
  19477. name: "Side",
  19478. image: {
  19479. source: "./media/characters/davy/side.svg",
  19480. extra: 200 / 170,
  19481. bottom: 0.01
  19482. }
  19483. },
  19484. },
  19485. [
  19486. {
  19487. name: "Normal",
  19488. height: math.unit(15.6, "inches"),
  19489. default: true
  19490. },
  19491. ]
  19492. ))
  19493. characterMakers.push(() => makeCharacter(
  19494. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19495. {
  19496. side: {
  19497. height: math.unit(4 + 8 / 12, "feet"),
  19498. weight: math.unit(166, "lb"),
  19499. name: "Side",
  19500. image: {
  19501. source: "./media/characters/fiona/side.svg",
  19502. extra: 232 / 220,
  19503. bottom: 0.03
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(4 + 8 / 12, "feet"),
  19511. default: true
  19512. },
  19513. ]
  19514. ))
  19515. characterMakers.push(() => makeCharacter(
  19516. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19517. {
  19518. front: {
  19519. height: math.unit(26, "inches"),
  19520. weight: math.unit(35, "lb"),
  19521. name: "Front",
  19522. image: {
  19523. source: "./media/characters/lyla/front.svg",
  19524. bottom: 0.1
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(3, "feet"),
  19532. default: true
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19538. {
  19539. side: {
  19540. height: math.unit(1.8, "feet"),
  19541. weight: math.unit(44, "lb"),
  19542. name: "Side",
  19543. image: {
  19544. source: "./media/characters/perseus/side.svg",
  19545. bottom: 0.21
  19546. }
  19547. },
  19548. },
  19549. [
  19550. {
  19551. name: "Normal",
  19552. height: math.unit(1.8, "feet"),
  19553. default: true
  19554. },
  19555. ]
  19556. ))
  19557. characterMakers.push(() => makeCharacter(
  19558. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19559. {
  19560. side: {
  19561. height: math.unit(4 + 2 / 12, "feet"),
  19562. weight: math.unit(20, "lb"),
  19563. name: "Side",
  19564. image: {
  19565. source: "./media/characters/remus/side.svg"
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(4 + 2 / 12, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19579. {
  19580. front: {
  19581. height: math.unit(4 + 11 / 12, "feet"),
  19582. weight: math.unit(114, "lb"),
  19583. name: "Front",
  19584. image: {
  19585. source: "./media/characters/raf/front.svg",
  19586. extra: 1504/1339,
  19587. bottom: 26/1530
  19588. }
  19589. },
  19590. side: {
  19591. height: math.unit(4 + 11 / 12, "feet"),
  19592. weight: math.unit(114, "lb"),
  19593. name: "Side",
  19594. image: {
  19595. source: "./media/characters/raf/side.svg",
  19596. extra: 1466/1316,
  19597. bottom: 29/1495
  19598. }
  19599. },
  19600. paw: {
  19601. height: math.unit(1.45, "feet"),
  19602. name: "Paw",
  19603. image: {
  19604. source: "./media/characters/raf/paw.svg"
  19605. },
  19606. extraAttributes: {
  19607. "toeSize": {
  19608. name: "Toe Size",
  19609. power: 2,
  19610. type: "area",
  19611. base: math.unit(0.004, "m^2")
  19612. },
  19613. "padSize": {
  19614. name: "Pad Size",
  19615. power: 2,
  19616. type: "area",
  19617. base: math.unit(0.04, "m^2")
  19618. },
  19619. "footSize": {
  19620. name: "Foot Size",
  19621. power: 2,
  19622. type: "area",
  19623. base: math.unit(0.08, "m^2")
  19624. },
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Micro",
  19631. height: math.unit(2, "inches")
  19632. },
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(4 + 11 / 12, "feet"),
  19636. default: true
  19637. },
  19638. {
  19639. name: "Macro",
  19640. height: math.unit(70, "feet")
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(1.5, "meters"),
  19649. weight: math.unit(68, "kg"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/liam-einarr/front.svg",
  19653. extra: 2822 / 2666
  19654. }
  19655. },
  19656. back: {
  19657. height: math.unit(1.5, "meters"),
  19658. weight: math.unit(68, "kg"),
  19659. name: "Back",
  19660. image: {
  19661. source: "./media/characters/liam-einarr/back.svg",
  19662. extra: 2822 / 2666,
  19663. bottom: 0.015
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(1.5, "meters"),
  19671. default: true
  19672. },
  19673. {
  19674. name: "Macro",
  19675. height: math.unit(150, "meters")
  19676. },
  19677. {
  19678. name: "Megamacro",
  19679. height: math.unit(35, "km")
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19685. {
  19686. front: {
  19687. height: math.unit(6, "feet"),
  19688. weight: math.unit(75, "kg"),
  19689. name: "Front",
  19690. image: {
  19691. source: "./media/characters/linda/front.svg",
  19692. extra: 930 / 874,
  19693. bottom: 0.004
  19694. }
  19695. },
  19696. },
  19697. [
  19698. {
  19699. name: "Normal",
  19700. height: math.unit(6, "feet"),
  19701. default: true
  19702. },
  19703. ]
  19704. ))
  19705. characterMakers.push(() => makeCharacter(
  19706. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19707. {
  19708. front: {
  19709. height: math.unit(6 + 8 / 12, "feet"),
  19710. weight: math.unit(220, "lb"),
  19711. name: "Front",
  19712. image: {
  19713. source: "./media/characters/caylex/front.svg",
  19714. extra: 821 / 772,
  19715. bottom: 0.07
  19716. }
  19717. },
  19718. back: {
  19719. height: math.unit(6 + 8 / 12, "feet"),
  19720. weight: math.unit(220, "lb"),
  19721. name: "Back",
  19722. image: {
  19723. source: "./media/characters/caylex/back.svg",
  19724. extra: 821 / 772,
  19725. bottom: 0.022
  19726. }
  19727. },
  19728. hand: {
  19729. height: math.unit(1.25, "feet"),
  19730. name: "Hand",
  19731. image: {
  19732. source: "./media/characters/caylex/hand.svg"
  19733. }
  19734. },
  19735. foot: {
  19736. height: math.unit(1.6, "feet"),
  19737. name: "Foot",
  19738. image: {
  19739. source: "./media/characters/caylex/foot.svg"
  19740. }
  19741. },
  19742. armored: {
  19743. height: math.unit(6 + 8 / 12, "feet"),
  19744. weight: math.unit(250, "lb"),
  19745. name: "Armored",
  19746. image: {
  19747. source: "./media/characters/caylex/armored.svg",
  19748. extra: 1420 / 1310,
  19749. bottom: 0.045
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(6 + 8 / 12, "feet"),
  19757. default: true
  19758. },
  19759. {
  19760. name: "Normal+",
  19761. height: math.unit(12, "feet")
  19762. },
  19763. ]
  19764. ))
  19765. characterMakers.push(() => makeCharacter(
  19766. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19767. {
  19768. front: {
  19769. height: math.unit(7 + 6 / 12, "feet"),
  19770. weight: math.unit(288, "lb"),
  19771. name: "Front",
  19772. image: {
  19773. source: "./media/characters/alana/front.svg",
  19774. extra: 679 / 653,
  19775. bottom: 22.5 / 701
  19776. }
  19777. },
  19778. },
  19779. [
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(7 + 6 / 12, "feet")
  19783. },
  19784. {
  19785. name: "Large",
  19786. height: math.unit(50, "feet")
  19787. },
  19788. {
  19789. name: "Macro",
  19790. height: math.unit(100, "feet"),
  19791. default: true
  19792. },
  19793. {
  19794. name: "Macro+",
  19795. height: math.unit(200, "feet")
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19801. {
  19802. front: {
  19803. height: math.unit(6 + 1 / 12, "feet"),
  19804. weight: math.unit(210, "lb"),
  19805. name: "Front",
  19806. image: {
  19807. source: "./media/characters/hasani/front.svg",
  19808. extra: 244 / 232,
  19809. bottom: 0.01
  19810. }
  19811. },
  19812. back: {
  19813. height: math.unit(6 + 1 / 12, "feet"),
  19814. weight: math.unit(210, "lb"),
  19815. name: "Back",
  19816. image: {
  19817. source: "./media/characters/hasani/back.svg",
  19818. extra: 244 / 232,
  19819. bottom: 0.01
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(6 + 1 / 12, "feet")
  19827. },
  19828. {
  19829. name: "Macro",
  19830. height: math.unit(175, "feet"),
  19831. default: true
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19837. {
  19838. front: {
  19839. height: math.unit(1.82, "meters"),
  19840. weight: math.unit(140, "lb"),
  19841. name: "Front",
  19842. image: {
  19843. source: "./media/characters/nita/front.svg",
  19844. extra: 2473 / 2363,
  19845. bottom: 0.01
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(1.82, "m")
  19853. },
  19854. {
  19855. name: "Macro",
  19856. height: math.unit(300, "m")
  19857. },
  19858. {
  19859. name: "Mistake Canon",
  19860. height: math.unit(0.5, "miles"),
  19861. default: true
  19862. },
  19863. {
  19864. name: "Big Mistake",
  19865. height: math.unit(13, "miles")
  19866. },
  19867. {
  19868. name: "Playing God",
  19869. height: math.unit(2450, "miles")
  19870. },
  19871. ]
  19872. ))
  19873. characterMakers.push(() => makeCharacter(
  19874. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19875. {
  19876. front: {
  19877. height: math.unit(4, "feet"),
  19878. weight: math.unit(120, "lb"),
  19879. name: "Front",
  19880. image: {
  19881. source: "./media/characters/shiriko/front.svg",
  19882. extra: 970/934,
  19883. bottom: 5/975
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(4, "feet"),
  19891. default: true
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19897. {
  19898. front: {
  19899. height: math.unit(6, "feet"),
  19900. name: "front",
  19901. image: {
  19902. source: "./media/characters/deja/front.svg",
  19903. extra: 926 / 840,
  19904. bottom: 0.07
  19905. }
  19906. },
  19907. },
  19908. [
  19909. {
  19910. name: "Planck Length",
  19911. height: math.unit(1.6e-35, "meters")
  19912. },
  19913. {
  19914. name: "Normal",
  19915. height: math.unit(30.48, "meters"),
  19916. default: true
  19917. },
  19918. {
  19919. name: "Universal",
  19920. height: math.unit(8.8e26, "meters")
  19921. },
  19922. ]
  19923. ))
  19924. characterMakers.push(() => makeCharacter(
  19925. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19926. {
  19927. side: {
  19928. height: math.unit(8, "feet"),
  19929. weight: math.unit(6300, "lb"),
  19930. name: "Side",
  19931. image: {
  19932. source: "./media/characters/anima/side.svg",
  19933. bottom: 0.035
  19934. }
  19935. },
  19936. },
  19937. [
  19938. {
  19939. name: "Normal",
  19940. height: math.unit(8, "feet"),
  19941. default: true
  19942. },
  19943. ]
  19944. ))
  19945. characterMakers.push(() => makeCharacter(
  19946. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19947. {
  19948. front: {
  19949. height: math.unit(8, "feet"),
  19950. weight: math.unit(350, "lb"),
  19951. name: "Front",
  19952. image: {
  19953. source: "./media/characters/bianca/front.svg",
  19954. extra: 234 / 225,
  19955. bottom: 0.03
  19956. }
  19957. },
  19958. },
  19959. [
  19960. {
  19961. name: "Normal",
  19962. height: math.unit(8, "feet"),
  19963. default: true
  19964. },
  19965. ]
  19966. ))
  19967. characterMakers.push(() => makeCharacter(
  19968. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19969. {
  19970. front: {
  19971. height: math.unit(11 + 5/12, "feet"),
  19972. weight: math.unit(1200, "lb"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/adinia/front.svg",
  19976. extra: 1767/1641,
  19977. bottom: 44/1811
  19978. },
  19979. extraAttributes: {
  19980. "energyIntake": {
  19981. name: "Energy Intake",
  19982. power: 3,
  19983. type: "energy",
  19984. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19985. },
  19986. }
  19987. },
  19988. back: {
  19989. height: math.unit(11 + 5/12, "feet"),
  19990. weight: math.unit(1200, "lb"),
  19991. name: "Back",
  19992. image: {
  19993. source: "./media/characters/adinia/back.svg",
  19994. extra: 1834/1684,
  19995. bottom: 14/1848
  19996. },
  19997. extraAttributes: {
  19998. "energyIntake": {
  19999. name: "Energy Intake",
  20000. power: 3,
  20001. type: "energy",
  20002. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  20003. },
  20004. }
  20005. },
  20006. maw: {
  20007. height: math.unit(3.79, "feet"),
  20008. name: "Maw",
  20009. image: {
  20010. source: "./media/characters/adinia/maw.svg"
  20011. }
  20012. },
  20013. rump: {
  20014. height: math.unit(4.6, "feet"),
  20015. name: "Rump",
  20016. image: {
  20017. source: "./media/characters/adinia/rump.svg"
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(11 + 5 / 12, "feet"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(3, "meters"),
  20034. weight: math.unit(200, "kg"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/lykasa/front.svg",
  20038. extra: 1076 / 976,
  20039. bottom: 0.06
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(3, "meters")
  20047. },
  20048. {
  20049. name: "Kaiju",
  20050. height: math.unit(120, "meters"),
  20051. default: true
  20052. },
  20053. {
  20054. name: "Mega Kaiju",
  20055. height: math.unit(240, "km")
  20056. },
  20057. {
  20058. name: "Giga Kaiju",
  20059. height: math.unit(400, "megameters")
  20060. },
  20061. {
  20062. name: "Tera Kaiju",
  20063. height: math.unit(800, "gigameters")
  20064. },
  20065. {
  20066. name: "Kaiju Dragon Goddess",
  20067. height: math.unit(26, "zettaparsecs")
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  20073. {
  20074. side: {
  20075. height: math.unit(283 / 124 * 6, "feet"),
  20076. weight: math.unit(35000, "lb"),
  20077. name: "Side",
  20078. image: {
  20079. source: "./media/characters/malfaren/side.svg",
  20080. extra: 1310/529,
  20081. bottom: 24/1334
  20082. }
  20083. },
  20084. front: {
  20085. height: math.unit(22.36, "feet"),
  20086. weight: math.unit(35000, "lb"),
  20087. name: "Front",
  20088. image: {
  20089. source: "./media/characters/malfaren/front.svg",
  20090. extra: 1237/1115,
  20091. bottom: 32/1269
  20092. }
  20093. },
  20094. maw: {
  20095. height: math.unit(6.9, "feet"),
  20096. name: "Maw",
  20097. image: {
  20098. source: "./media/characters/malfaren/maw.svg"
  20099. }
  20100. },
  20101. dick: {
  20102. height: math.unit(6.19, "feet"),
  20103. name: "Dick",
  20104. image: {
  20105. source: "./media/characters/malfaren/dick.svg"
  20106. }
  20107. },
  20108. eye: {
  20109. height: math.unit(0.69, "feet"),
  20110. name: "Eye",
  20111. image: {
  20112. source: "./media/characters/malfaren/eye.svg"
  20113. }
  20114. },
  20115. },
  20116. [
  20117. {
  20118. name: "Big",
  20119. height: math.unit(283 / 162 * 6, "feet"),
  20120. },
  20121. {
  20122. name: "Bigger",
  20123. height: math.unit(283 / 124 * 6, "feet")
  20124. },
  20125. {
  20126. name: "Massive",
  20127. height: math.unit(283 / 92 * 6, "feet"),
  20128. default: true
  20129. },
  20130. {
  20131. name: "👀💦",
  20132. height: math.unit(283 / 73 * 6, "feet"),
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(1.7, "m"),
  20141. weight: math.unit(70, "kg"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/kernel/front.svg",
  20145. extra: 1960/1821,
  20146. bottom: 17/1977
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Nano",
  20153. height: math.unit(17, "micrometers")
  20154. },
  20155. {
  20156. name: "Micro",
  20157. height: math.unit(1.7, "mm")
  20158. },
  20159. {
  20160. name: "Small",
  20161. height: math.unit(1.7, "cm")
  20162. },
  20163. {
  20164. name: "Normal",
  20165. height: math.unit(1.7, "m"),
  20166. default: true
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20172. {
  20173. front: {
  20174. height: math.unit(1.75, "meters"),
  20175. weight: math.unit(65, "kg"),
  20176. name: "Front",
  20177. image: {
  20178. source: "./media/characters/jayne-folest/front.svg",
  20179. extra: 2115 / 2007,
  20180. bottom: 0.02
  20181. }
  20182. },
  20183. back: {
  20184. height: math.unit(1.75, "meters"),
  20185. weight: math.unit(65, "kg"),
  20186. name: "Back",
  20187. image: {
  20188. source: "./media/characters/jayne-folest/back.svg",
  20189. extra: 2115 / 2007,
  20190. bottom: 0.005
  20191. }
  20192. },
  20193. frontClothed: {
  20194. height: math.unit(1.75, "meters"),
  20195. weight: math.unit(65, "kg"),
  20196. name: "Front (Clothed)",
  20197. image: {
  20198. source: "./media/characters/jayne-folest/front-clothed.svg",
  20199. extra: 2115 / 2007,
  20200. bottom: 0.035
  20201. }
  20202. },
  20203. hand: {
  20204. height: math.unit(1 / 1.260, "feet"),
  20205. name: "Hand",
  20206. image: {
  20207. source: "./media/characters/jayne-folest/hand.svg"
  20208. }
  20209. },
  20210. foot: {
  20211. height: math.unit(1 / 0.918, "feet"),
  20212. name: "Foot",
  20213. image: {
  20214. source: "./media/characters/jayne-folest/foot.svg"
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Micro",
  20221. height: math.unit(4, "cm")
  20222. },
  20223. {
  20224. name: "Normal",
  20225. height: math.unit(1.75, "meters")
  20226. },
  20227. {
  20228. name: "Macro",
  20229. height: math.unit(47.5, "meters"),
  20230. default: true
  20231. },
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20236. {
  20237. front: {
  20238. height: math.unit(180, "cm"),
  20239. weight: math.unit(70, "kg"),
  20240. name: "Front",
  20241. image: {
  20242. source: "./media/characters/algier/front.svg",
  20243. extra: 596 / 572,
  20244. bottom: 0.04
  20245. }
  20246. },
  20247. back: {
  20248. height: math.unit(180, "cm"),
  20249. weight: math.unit(70, "kg"),
  20250. name: "Back",
  20251. image: {
  20252. source: "./media/characters/algier/back.svg",
  20253. extra: 596 / 572,
  20254. bottom: 0.025
  20255. }
  20256. },
  20257. frontdressed: {
  20258. height: math.unit(180, "cm"),
  20259. weight: math.unit(150, "kg"),
  20260. name: "Front (Dressed)",
  20261. image: {
  20262. source: "./media/characters/algier/front-dressed.svg",
  20263. extra: 596 / 572,
  20264. bottom: 0.038
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Micro",
  20271. height: math.unit(5, "cm")
  20272. },
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(180, "cm"),
  20276. default: true
  20277. },
  20278. {
  20279. name: "Macro",
  20280. height: math.unit(64, "m")
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20286. {
  20287. upright: {
  20288. height: math.unit(7, "feet"),
  20289. weight: math.unit(300, "lb"),
  20290. name: "Upright",
  20291. image: {
  20292. source: "./media/characters/pretzel/upright.svg",
  20293. extra: 534 / 522,
  20294. bottom: 0.065
  20295. }
  20296. },
  20297. sprawling: {
  20298. height: math.unit(3.75, "feet"),
  20299. weight: math.unit(300, "lb"),
  20300. name: "Sprawling",
  20301. image: {
  20302. source: "./media/characters/pretzel/sprawling.svg",
  20303. extra: 314 / 281,
  20304. bottom: 0.1
  20305. }
  20306. },
  20307. tongue: {
  20308. height: math.unit(2, "feet"),
  20309. name: "Tongue",
  20310. image: {
  20311. source: "./media/characters/pretzel/tongue.svg"
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(7, "feet"),
  20319. default: true
  20320. },
  20321. {
  20322. name: "Oversized",
  20323. height: math.unit(15, "feet")
  20324. },
  20325. {
  20326. name: "Huge",
  20327. height: math.unit(30, "feet")
  20328. },
  20329. {
  20330. name: "Macro",
  20331. height: math.unit(250, "feet")
  20332. },
  20333. ]
  20334. ))
  20335. characterMakers.push(() => makeCharacter(
  20336. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20337. {
  20338. sideFront: {
  20339. height: math.unit(5 + 2 / 12, "feet"),
  20340. weight: math.unit(120, "lb"),
  20341. name: "Front Side",
  20342. image: {
  20343. source: "./media/characters/roxi/side-front.svg",
  20344. extra: 2924 / 2717,
  20345. bottom: 0.08
  20346. }
  20347. },
  20348. sideBack: {
  20349. height: math.unit(5 + 2 / 12, "feet"),
  20350. weight: math.unit(120, "lb"),
  20351. name: "Back Side",
  20352. image: {
  20353. source: "./media/characters/roxi/side-back.svg",
  20354. extra: 2904 / 2693,
  20355. bottom: 0.06
  20356. }
  20357. },
  20358. front: {
  20359. height: math.unit(5 + 2 / 12, "feet"),
  20360. weight: math.unit(120, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/roxi/front.svg",
  20364. extra: 2028 / 1907,
  20365. bottom: 0.01
  20366. }
  20367. },
  20368. frontAlt: {
  20369. height: math.unit(5 + 2 / 12, "feet"),
  20370. weight: math.unit(120, "lb"),
  20371. name: "Front (Alt)",
  20372. image: {
  20373. source: "./media/characters/roxi/front-alt.svg",
  20374. extra: 1828 / 1798,
  20375. bottom: 0.01
  20376. }
  20377. },
  20378. sitting: {
  20379. height: math.unit(2.8, "feet"),
  20380. weight: math.unit(120, "lb"),
  20381. name: "Sitting",
  20382. image: {
  20383. source: "./media/characters/roxi/sitting.svg",
  20384. extra: 2660 / 2462,
  20385. bottom: 0.1
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(5 + 2 / 12, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20399. {
  20400. side: {
  20401. height: math.unit(55, "feet"),
  20402. weight: math.unit(153, "tons"),
  20403. name: "Side",
  20404. image: {
  20405. source: "./media/characters/shadow/side.svg",
  20406. extra: 701 / 628,
  20407. bottom: 0.02
  20408. }
  20409. },
  20410. flying: {
  20411. height: math.unit(145, "feet"),
  20412. weight: math.unit(153, "tons"),
  20413. name: "Flying",
  20414. image: {
  20415. source: "./media/characters/shadow/flying.svg"
  20416. }
  20417. },
  20418. },
  20419. [
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(55, "feet"),
  20423. default: true
  20424. },
  20425. ]
  20426. ))
  20427. characterMakers.push(() => makeCharacter(
  20428. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20429. {
  20430. front: {
  20431. height: math.unit(6, "feet"),
  20432. weight: math.unit(200, "lb"),
  20433. name: "Front",
  20434. image: {
  20435. source: "./media/characters/marcie/front.svg",
  20436. extra: 960 / 876,
  20437. bottom: 58 / 1017.87
  20438. }
  20439. },
  20440. },
  20441. [
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(1, "mile"),
  20445. default: true
  20446. },
  20447. ]
  20448. ))
  20449. characterMakers.push(() => makeCharacter(
  20450. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20451. {
  20452. front: {
  20453. height: math.unit(7, "feet"),
  20454. weight: math.unit(200, "lb"),
  20455. name: "Front",
  20456. image: {
  20457. source: "./media/characters/kachina/front.svg",
  20458. extra: 3206/2764,
  20459. bottom: 140/3346
  20460. }
  20461. },
  20462. },
  20463. [
  20464. {
  20465. name: "Normal",
  20466. height: math.unit(7, "feet"),
  20467. default: true
  20468. },
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20473. {
  20474. looking: {
  20475. height: math.unit(2, "meters"),
  20476. weight: math.unit(300, "kg"),
  20477. name: "Looking",
  20478. image: {
  20479. source: "./media/characters/kash/looking.svg",
  20480. extra: 474 / 344,
  20481. bottom: 0.03
  20482. }
  20483. },
  20484. side: {
  20485. height: math.unit(2, "meters"),
  20486. weight: math.unit(300, "kg"),
  20487. name: "Side",
  20488. image: {
  20489. source: "./media/characters/kash/side.svg",
  20490. extra: 302 / 251,
  20491. bottom: 0.03
  20492. }
  20493. },
  20494. front: {
  20495. height: math.unit(2, "meters"),
  20496. weight: math.unit(300, "kg"),
  20497. name: "Front",
  20498. image: {
  20499. source: "./media/characters/kash/front.svg",
  20500. extra: 495 / 360,
  20501. bottom: 0.015
  20502. }
  20503. },
  20504. },
  20505. [
  20506. {
  20507. name: "Normal",
  20508. height: math.unit(2, "meters"),
  20509. default: true
  20510. },
  20511. {
  20512. name: "Big",
  20513. height: math.unit(3, "meters")
  20514. },
  20515. {
  20516. name: "Large",
  20517. height: math.unit(5, "meters")
  20518. },
  20519. ]
  20520. ))
  20521. characterMakers.push(() => makeCharacter(
  20522. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20523. {
  20524. feeding: {
  20525. height: math.unit(6.7, "feet"),
  20526. weight: math.unit(350, "lb"),
  20527. name: "Feeding",
  20528. image: {
  20529. source: "./media/characters/lalim/feeding.svg",
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(6.7, "feet"),
  20537. default: true
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20543. {
  20544. front: {
  20545. height: math.unit(9.5, "feet"),
  20546. weight: math.unit(600, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/de'vout/front.svg",
  20550. extra: 1443 / 1328,
  20551. bottom: 0.025
  20552. }
  20553. },
  20554. back: {
  20555. height: math.unit(9.5, "feet"),
  20556. weight: math.unit(600, "lb"),
  20557. name: "Back",
  20558. image: {
  20559. source: "./media/characters/de'vout/back.svg",
  20560. extra: 1443 / 1328
  20561. }
  20562. },
  20563. frontDressed: {
  20564. height: math.unit(9.5, "feet"),
  20565. weight: math.unit(600, "lb"),
  20566. name: "Front (Dressed",
  20567. image: {
  20568. source: "./media/characters/de'vout/front-dressed.svg",
  20569. extra: 1443 / 1328,
  20570. bottom: 0.025
  20571. }
  20572. },
  20573. backDressed: {
  20574. height: math.unit(9.5, "feet"),
  20575. weight: math.unit(600, "lb"),
  20576. name: "Back (Dressed",
  20577. image: {
  20578. source: "./media/characters/de'vout/back-dressed.svg",
  20579. extra: 1443 / 1328
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(9.5, "feet"),
  20587. default: true
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(8, "feet"),
  20596. weight: math.unit(225, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/talana/front.svg",
  20600. extra: 1410 / 1300,
  20601. bottom: 0.015
  20602. }
  20603. },
  20604. frontDressed: {
  20605. height: math.unit(8, "feet"),
  20606. weight: math.unit(225, "lb"),
  20607. name: "Front (Dressed",
  20608. image: {
  20609. source: "./media/characters/talana/front-dressed.svg",
  20610. extra: 1410 / 1300,
  20611. bottom: 0.015
  20612. }
  20613. },
  20614. },
  20615. [
  20616. {
  20617. name: "Normal",
  20618. height: math.unit(8, "feet"),
  20619. default: true
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20625. {
  20626. side: {
  20627. height: math.unit(7.2, "feet"),
  20628. weight: math.unit(150, "lb"),
  20629. name: "Side",
  20630. image: {
  20631. source: "./media/characters/xeauvok/side.svg",
  20632. extra: 1975 / 1523,
  20633. bottom: 0.07
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(7.2, "feet"),
  20641. default: true
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20647. {
  20648. side: {
  20649. height: math.unit(4, "meters"),
  20650. weight: math.unit(2200, "kg"),
  20651. name: "Side",
  20652. image: {
  20653. source: "./media/characters/zara/side.svg",
  20654. extra: 765/744,
  20655. bottom: 156/921
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(4, "meters"),
  20663. default: true
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20669. {
  20670. side: {
  20671. height: math.unit(6, "feet"),
  20672. weight: math.unit(150, "lb"),
  20673. name: "Side",
  20674. image: {
  20675. source: "./media/characters/richard-dragon/side.svg",
  20676. extra: 845 / 340,
  20677. bottom: 0.017
  20678. }
  20679. },
  20680. maw: {
  20681. height: math.unit(2.97, "feet"),
  20682. name: "Maw",
  20683. image: {
  20684. source: "./media/characters/richard-dragon/maw.svg"
  20685. }
  20686. },
  20687. },
  20688. [
  20689. ]
  20690. ))
  20691. characterMakers.push(() => makeCharacter(
  20692. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20693. {
  20694. front: {
  20695. height: math.unit(4, "feet"),
  20696. weight: math.unit(100, "lb"),
  20697. name: "Front",
  20698. image: {
  20699. source: "./media/characters/richard-smeargle/front.svg",
  20700. extra: 2952 / 2820,
  20701. bottom: 0.028
  20702. }
  20703. },
  20704. },
  20705. [
  20706. {
  20707. name: "Normal",
  20708. height: math.unit(4, "feet"),
  20709. default: true
  20710. },
  20711. {
  20712. name: "Dynamax",
  20713. height: math.unit(20, "meters")
  20714. },
  20715. ]
  20716. ))
  20717. characterMakers.push(() => makeCharacter(
  20718. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20719. {
  20720. front: {
  20721. height: math.unit(6, "feet"),
  20722. weight: math.unit(110, "lb"),
  20723. name: "Front",
  20724. image: {
  20725. source: "./media/characters/klay/front.svg",
  20726. extra: 962 / 883,
  20727. bottom: 0.04
  20728. }
  20729. },
  20730. back: {
  20731. height: math.unit(6, "feet"),
  20732. weight: math.unit(110, "lb"),
  20733. name: "Back",
  20734. image: {
  20735. source: "./media/characters/klay/back.svg",
  20736. extra: 962 / 883
  20737. }
  20738. },
  20739. beans: {
  20740. height: math.unit(1.15, "feet"),
  20741. name: "Beans",
  20742. image: {
  20743. source: "./media/characters/klay/beans.svg"
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Micro",
  20750. height: math.unit(6, "inches")
  20751. },
  20752. {
  20753. name: "Mini",
  20754. height: math.unit(3, "feet")
  20755. },
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(6, "feet"),
  20759. default: true
  20760. },
  20761. {
  20762. name: "Big",
  20763. height: math.unit(25, "feet")
  20764. },
  20765. {
  20766. name: "Macro",
  20767. height: math.unit(100, "feet")
  20768. },
  20769. {
  20770. name: "Megamacro",
  20771. height: math.unit(400, "feet")
  20772. },
  20773. ]
  20774. ))
  20775. characterMakers.push(() => makeCharacter(
  20776. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20777. {
  20778. front: {
  20779. height: math.unit(6, "feet"),
  20780. weight: math.unit(160, "lb"),
  20781. name: "Front",
  20782. image: {
  20783. source: "./media/characters/marcus/front.svg",
  20784. extra: 734 / 676,
  20785. bottom: 0.03
  20786. }
  20787. },
  20788. },
  20789. [
  20790. {
  20791. name: "Little",
  20792. height: math.unit(6, "feet")
  20793. },
  20794. {
  20795. name: "Normal",
  20796. height: math.unit(110, "feet"),
  20797. default: true
  20798. },
  20799. {
  20800. name: "Macro",
  20801. height: math.unit(250, "feet")
  20802. },
  20803. {
  20804. name: "Megamacro",
  20805. height: math.unit(1000, "feet")
  20806. },
  20807. ]
  20808. ))
  20809. characterMakers.push(() => makeCharacter(
  20810. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20811. {
  20812. front: {
  20813. height: math.unit(7, "feet"),
  20814. weight: math.unit(275, "lb"),
  20815. name: "Front",
  20816. image: {
  20817. source: "./media/characters/claude-delroute/front.svg",
  20818. extra: 902/827,
  20819. bottom: 26/928
  20820. }
  20821. },
  20822. side: {
  20823. height: math.unit(7, "feet"),
  20824. weight: math.unit(275, "lb"),
  20825. name: "Side",
  20826. image: {
  20827. source: "./media/characters/claude-delroute/side.svg",
  20828. extra: 908/853,
  20829. bottom: 16/924
  20830. }
  20831. },
  20832. back: {
  20833. height: math.unit(7, "feet"),
  20834. weight: math.unit(275, "lb"),
  20835. name: "Back",
  20836. image: {
  20837. source: "./media/characters/claude-delroute/back.svg",
  20838. extra: 911/829,
  20839. bottom: 18/929
  20840. }
  20841. },
  20842. maw: {
  20843. height: math.unit(0.6407, "meters"),
  20844. name: "Maw",
  20845. image: {
  20846. source: "./media/characters/claude-delroute/maw.svg"
  20847. }
  20848. },
  20849. },
  20850. [
  20851. {
  20852. name: "Normal",
  20853. height: math.unit(7, "feet"),
  20854. default: true
  20855. },
  20856. {
  20857. name: "Lorge",
  20858. height: math.unit(20, "feet")
  20859. },
  20860. ]
  20861. ))
  20862. characterMakers.push(() => makeCharacter(
  20863. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20864. {
  20865. front: {
  20866. height: math.unit(8 + 4 / 12, "feet"),
  20867. weight: math.unit(600, "lb"),
  20868. name: "Front",
  20869. image: {
  20870. source: "./media/characters/dragonien/front.svg",
  20871. extra: 100 / 94,
  20872. bottom: 3.3 / 103.3445
  20873. }
  20874. },
  20875. back: {
  20876. height: math.unit(8 + 4 / 12, "feet"),
  20877. weight: math.unit(600, "lb"),
  20878. name: "Back",
  20879. image: {
  20880. source: "./media/characters/dragonien/back.svg",
  20881. extra: 776 / 746,
  20882. bottom: 6.4 / 782.0616
  20883. }
  20884. },
  20885. foot: {
  20886. height: math.unit(1.54, "feet"),
  20887. name: "Foot",
  20888. image: {
  20889. source: "./media/characters/dragonien/foot.svg",
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Normal",
  20896. height: math.unit(8 + 4 / 12, "feet"),
  20897. default: true
  20898. },
  20899. {
  20900. name: "Macro",
  20901. height: math.unit(200, "feet")
  20902. },
  20903. {
  20904. name: "Megamacro",
  20905. height: math.unit(1, "mile")
  20906. },
  20907. {
  20908. name: "Gigamacro",
  20909. height: math.unit(1000, "miles")
  20910. },
  20911. ]
  20912. ))
  20913. characterMakers.push(() => makeCharacter(
  20914. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20915. {
  20916. front: {
  20917. height: math.unit(5 + 2 / 12, "feet"),
  20918. weight: math.unit(110, "lb"),
  20919. name: "Front",
  20920. image: {
  20921. source: "./media/characters/desta/front.svg",
  20922. extra: 767 / 726,
  20923. bottom: 11.7 / 779
  20924. }
  20925. },
  20926. back: {
  20927. height: math.unit(5 + 2 / 12, "feet"),
  20928. weight: math.unit(110, "lb"),
  20929. name: "Back",
  20930. image: {
  20931. source: "./media/characters/desta/back.svg",
  20932. extra: 777 / 728,
  20933. bottom: 6 / 784
  20934. }
  20935. },
  20936. frontAlt: {
  20937. height: math.unit(5 + 2 / 12, "feet"),
  20938. weight: math.unit(110, "lb"),
  20939. name: "Front",
  20940. image: {
  20941. source: "./media/characters/desta/front-alt.svg",
  20942. extra: 1482 / 1417
  20943. }
  20944. },
  20945. side: {
  20946. height: math.unit(5 + 2 / 12, "feet"),
  20947. weight: math.unit(110, "lb"),
  20948. name: "Side",
  20949. image: {
  20950. source: "./media/characters/desta/side.svg",
  20951. extra: 2579 / 2491,
  20952. bottom: 0.053
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Micro",
  20959. height: math.unit(6, "inches")
  20960. },
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(5 + 2 / 12, "feet"),
  20964. default: true
  20965. },
  20966. {
  20967. name: "Macro",
  20968. height: math.unit(62, "feet")
  20969. },
  20970. {
  20971. name: "Megamacro",
  20972. height: math.unit(1800, "feet")
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20978. {
  20979. front: {
  20980. height: math.unit(10, "feet"),
  20981. weight: math.unit(700, "lb"),
  20982. name: "Front",
  20983. image: {
  20984. source: "./media/characters/storm-alystar/front.svg",
  20985. extra: 2112 / 1898,
  20986. bottom: 0.034
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Micro",
  20993. height: math.unit(3.5, "inches")
  20994. },
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(10, "feet"),
  20998. default: true
  20999. },
  21000. {
  21001. name: "Macro",
  21002. height: math.unit(400, "feet")
  21003. },
  21004. {
  21005. name: "Deific",
  21006. height: math.unit(60, "miles")
  21007. },
  21008. ]
  21009. ))
  21010. characterMakers.push(() => makeCharacter(
  21011. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  21012. {
  21013. front: {
  21014. height: math.unit(2.35, "meters"),
  21015. weight: math.unit(119, "kg"),
  21016. name: "Front",
  21017. image: {
  21018. source: "./media/characters/ilia/front.svg",
  21019. extra: 1285 / 1255,
  21020. bottom: 0.06
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(2.35, "meters")
  21028. },
  21029. {
  21030. name: "Macro",
  21031. height: math.unit(140, "meters"),
  21032. default: true
  21033. },
  21034. {
  21035. name: "Megamacro",
  21036. height: math.unit(100, "miles")
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(6 + 5 / 12, "feet"),
  21045. weight: math.unit(190, "lb"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/kingdead/front.svg",
  21049. extra: 1228 / 1177
  21050. }
  21051. },
  21052. },
  21053. [
  21054. {
  21055. name: "Micro",
  21056. height: math.unit(7, "inches")
  21057. },
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(6 + 5 / 12, "feet")
  21061. },
  21062. {
  21063. name: "Macro",
  21064. height: math.unit(150, "feet"),
  21065. default: true
  21066. },
  21067. {
  21068. name: "Megamacro",
  21069. height: math.unit(200, "miles")
  21070. },
  21071. ]
  21072. ))
  21073. characterMakers.push(() => makeCharacter(
  21074. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  21075. {
  21076. front: {
  21077. height: math.unit(8, "feet"),
  21078. weight: math.unit(600, "lb"),
  21079. name: "Front",
  21080. image: {
  21081. source: "./media/characters/kyrehx/front.svg",
  21082. extra: 1195 / 1095,
  21083. bottom: 0.034
  21084. }
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "Micro",
  21090. height: math.unit(2, "inches")
  21091. },
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(8, "feet"),
  21095. default: true
  21096. },
  21097. {
  21098. name: "Macro",
  21099. height: math.unit(255, "feet")
  21100. },
  21101. ]
  21102. ))
  21103. characterMakers.push(() => makeCharacter(
  21104. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  21105. {
  21106. front: {
  21107. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21108. weight: math.unit(184, "lb"),
  21109. name: "Front",
  21110. image: {
  21111. source: "./media/characters/xang/front.svg",
  21112. extra: 845 / 755
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Normal",
  21119. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21120. default: true
  21121. },
  21122. {
  21123. name: "Macro",
  21124. height: math.unit(0.935 * 146, "feet")
  21125. },
  21126. {
  21127. name: "Megamacro",
  21128. height: math.unit(0.935 * 3, "miles")
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  21134. {
  21135. frontDressed: {
  21136. height: math.unit(5 + 7 / 12, "feet"),
  21137. weight: math.unit(140, "lb"),
  21138. name: "Front (Dressed)",
  21139. image: {
  21140. source: "./media/characters/doc-weardno/front-dressed.svg",
  21141. extra: 263 / 234
  21142. }
  21143. },
  21144. backDressed: {
  21145. height: math.unit(5 + 7 / 12, "feet"),
  21146. weight: math.unit(140, "lb"),
  21147. name: "Back (Dressed)",
  21148. image: {
  21149. source: "./media/characters/doc-weardno/back-dressed.svg",
  21150. extra: 266 / 238
  21151. }
  21152. },
  21153. front: {
  21154. height: math.unit(5 + 7 / 12, "feet"),
  21155. weight: math.unit(140, "lb"),
  21156. name: "Front",
  21157. image: {
  21158. source: "./media/characters/doc-weardno/front.svg",
  21159. extra: 254 / 233
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Micro",
  21166. height: math.unit(3, "inches")
  21167. },
  21168. {
  21169. name: "Normal",
  21170. height: math.unit(5 + 7 / 12, "feet"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Macro",
  21175. height: math.unit(25, "feet")
  21176. },
  21177. {
  21178. name: "Megamacro",
  21179. height: math.unit(2, "miles")
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21185. {
  21186. front: {
  21187. height: math.unit(6 + 2 / 12, "feet"),
  21188. weight: math.unit(153, "lb"),
  21189. name: "Front",
  21190. image: {
  21191. source: "./media/characters/seth-whilst/front.svg",
  21192. bottom: 0.07
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "Micro",
  21199. height: math.unit(5, "inches")
  21200. },
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(6 + 2 / 12, "feet"),
  21204. default: true
  21205. },
  21206. ]
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21210. {
  21211. front: {
  21212. height: math.unit(3, "inches"),
  21213. weight: math.unit(8, "grams"),
  21214. name: "Front",
  21215. image: {
  21216. source: "./media/characters/pocket-jabari/front.svg",
  21217. extra: 1024 / 974,
  21218. bottom: 0.039
  21219. }
  21220. },
  21221. },
  21222. [
  21223. {
  21224. name: "Minimicro",
  21225. height: math.unit(8, "mm")
  21226. },
  21227. {
  21228. name: "Micro",
  21229. height: math.unit(3, "inches"),
  21230. default: true
  21231. },
  21232. {
  21233. name: "Normal",
  21234. height: math.unit(3, "feet")
  21235. },
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21240. {
  21241. frontDressed: {
  21242. height: math.unit(15, "feet"),
  21243. weight: math.unit(3280, "lb"),
  21244. name: "Front (Dressed)",
  21245. image: {
  21246. source: "./media/characters/sapphy/front-dressed.svg",
  21247. extra: 1951/1654,
  21248. bottom: 194/2145
  21249. },
  21250. form: "anthro",
  21251. default: true
  21252. },
  21253. backDressed: {
  21254. height: math.unit(15, "feet"),
  21255. weight: math.unit(3280, "lb"),
  21256. name: "Back (Dressed)",
  21257. image: {
  21258. source: "./media/characters/sapphy/back-dressed.svg",
  21259. extra: 2058/1918,
  21260. bottom: 125/2183
  21261. },
  21262. form: "anthro"
  21263. },
  21264. frontNude: {
  21265. height: math.unit(15, "feet"),
  21266. weight: math.unit(3280, "lb"),
  21267. name: "Front (Nude)",
  21268. image: {
  21269. source: "./media/characters/sapphy/front-nude.svg",
  21270. extra: 1951/1654,
  21271. bottom: 194/2145
  21272. },
  21273. form: "anthro"
  21274. },
  21275. backNude: {
  21276. height: math.unit(15, "feet"),
  21277. weight: math.unit(3280, "lb"),
  21278. name: "Back (Nude)",
  21279. image: {
  21280. source: "./media/characters/sapphy/back-nude.svg",
  21281. extra: 2058/1918,
  21282. bottom: 125/2183
  21283. },
  21284. form: "anthro"
  21285. },
  21286. full: {
  21287. height: math.unit(15, "feet"),
  21288. weight: math.unit(3280, "lb"),
  21289. name: "Full",
  21290. image: {
  21291. source: "./media/characters/sapphy/full.svg",
  21292. extra: 1396/1317,
  21293. bottom: 44/1440
  21294. },
  21295. form: "anthro"
  21296. },
  21297. dick: {
  21298. height: math.unit(3.8, "feet"),
  21299. name: "Dick",
  21300. image: {
  21301. source: "./media/characters/sapphy/dick.svg"
  21302. },
  21303. form: "anthro"
  21304. },
  21305. feral: {
  21306. height: math.unit(35, "feet"),
  21307. weight: math.unit(160, "tons"),
  21308. name: "Feral",
  21309. image: {
  21310. source: "./media/characters/sapphy/feral.svg",
  21311. extra: 1050/573,
  21312. bottom: 60/1110
  21313. },
  21314. form: "feral",
  21315. default: true
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(15, "feet"),
  21322. form: "anthro"
  21323. },
  21324. {
  21325. name: "Casual Macro",
  21326. height: math.unit(120, "feet"),
  21327. form: "anthro"
  21328. },
  21329. {
  21330. name: "Macro",
  21331. height: math.unit(2150, "feet"),
  21332. default: true,
  21333. form: "anthro"
  21334. },
  21335. {
  21336. name: "Megamacro",
  21337. height: math.unit(8, "miles"),
  21338. form: "anthro"
  21339. },
  21340. {
  21341. name: "Galaxy Mom",
  21342. height: math.unit(6, "megalightyears"),
  21343. form: "anthro"
  21344. },
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(35, "feet"),
  21348. form: "feral",
  21349. default: true
  21350. },
  21351. {
  21352. name: "Macro",
  21353. height: math.unit(300, "feet"),
  21354. form: "feral"
  21355. },
  21356. {
  21357. name: "Galaxy Mom",
  21358. height: math.unit(10, "megalightyears"),
  21359. form: "feral"
  21360. },
  21361. ],
  21362. {
  21363. "anthro": {
  21364. name: "Anthro",
  21365. default: true
  21366. },
  21367. "feral": {
  21368. name: "Feral"
  21369. }
  21370. }
  21371. ))
  21372. characterMakers.push(() => makeCharacter(
  21373. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21374. {
  21375. hyenaFront: {
  21376. height: math.unit(6, "feet"),
  21377. weight: math.unit(190, "lb"),
  21378. name: "Front",
  21379. image: {
  21380. source: "./media/characters/kiro/hyena-front.svg",
  21381. extra: 927/839,
  21382. bottom: 91/1018
  21383. },
  21384. form: "hyena",
  21385. default: true
  21386. },
  21387. front: {
  21388. height: math.unit(6, "feet"),
  21389. weight: math.unit(170, "lb"),
  21390. name: "Front",
  21391. image: {
  21392. source: "./media/characters/kiro/front.svg",
  21393. extra: 1064 / 1012,
  21394. bottom: 0.052
  21395. },
  21396. form: "folf",
  21397. default: true
  21398. },
  21399. },
  21400. [
  21401. {
  21402. name: "Micro",
  21403. height: math.unit(6, "inches"),
  21404. form: "folf"
  21405. },
  21406. {
  21407. name: "Normal",
  21408. height: math.unit(6, "feet"),
  21409. form: "folf",
  21410. default: true
  21411. },
  21412. {
  21413. name: "Macro",
  21414. height: math.unit(72, "feet"),
  21415. form: "folf"
  21416. },
  21417. {
  21418. name: "Micro",
  21419. height: math.unit(6, "inches"),
  21420. form: "hyena"
  21421. },
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(6, "feet"),
  21425. form: "hyena",
  21426. default: true
  21427. },
  21428. {
  21429. name: "Macro",
  21430. height: math.unit(72, "feet"),
  21431. form: "hyena"
  21432. },
  21433. ],
  21434. {
  21435. "hyena": {
  21436. name: "Hyena",
  21437. default: true
  21438. },
  21439. "folf": {
  21440. name: "Folf",
  21441. },
  21442. }
  21443. ))
  21444. characterMakers.push(() => makeCharacter(
  21445. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21446. {
  21447. front: {
  21448. height: math.unit(5 + 9 / 12, "feet"),
  21449. weight: math.unit(175, "lb"),
  21450. name: "Front",
  21451. image: {
  21452. source: "./media/characters/irishfox/front.svg",
  21453. extra: 1912 / 1680,
  21454. bottom: 0.02
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Nano",
  21461. height: math.unit(1, "mm")
  21462. },
  21463. {
  21464. name: "Micro",
  21465. height: math.unit(2, "inches")
  21466. },
  21467. {
  21468. name: "Normal",
  21469. height: math.unit(5 + 9 / 12, "feet"),
  21470. default: true
  21471. },
  21472. {
  21473. name: "Macro",
  21474. height: math.unit(45, "feet")
  21475. },
  21476. ]
  21477. ))
  21478. characterMakers.push(() => makeCharacter(
  21479. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21480. {
  21481. front: {
  21482. height: math.unit(6 + 1 / 12, "feet"),
  21483. weight: math.unit(75, "lb"),
  21484. name: "Front",
  21485. image: {
  21486. source: "./media/characters/aronai-sieyes/front.svg",
  21487. extra: 1532/1450,
  21488. bottom: 42/1574
  21489. }
  21490. },
  21491. side: {
  21492. height: math.unit(6 + 1 / 12, "feet"),
  21493. weight: math.unit(75, "lb"),
  21494. name: "Side",
  21495. image: {
  21496. source: "./media/characters/aronai-sieyes/side.svg",
  21497. extra: 1422/1365,
  21498. bottom: 148/1570
  21499. }
  21500. },
  21501. back: {
  21502. height: math.unit(6 + 1 / 12, "feet"),
  21503. weight: math.unit(75, "lb"),
  21504. name: "Back",
  21505. image: {
  21506. source: "./media/characters/aronai-sieyes/back.svg",
  21507. extra: 1526/1464,
  21508. bottom: 51/1577
  21509. }
  21510. },
  21511. dressed: {
  21512. height: math.unit(6 + 1 / 12, "feet"),
  21513. weight: math.unit(75, "lb"),
  21514. name: "Dressed",
  21515. image: {
  21516. source: "./media/characters/aronai-sieyes/dressed.svg",
  21517. extra: 1559/1483,
  21518. bottom: 39/1598
  21519. }
  21520. },
  21521. slit: {
  21522. height: math.unit(1.3, "feet"),
  21523. name: "Slit",
  21524. image: {
  21525. source: "./media/characters/aronai-sieyes/slit.svg"
  21526. }
  21527. },
  21528. slitSpread: {
  21529. height: math.unit(0.9, "feet"),
  21530. name: "Slit (Spread)",
  21531. image: {
  21532. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21533. }
  21534. },
  21535. rump: {
  21536. height: math.unit(1.3, "feet"),
  21537. name: "Rump",
  21538. image: {
  21539. source: "./media/characters/aronai-sieyes/rump.svg"
  21540. }
  21541. },
  21542. maw: {
  21543. height: math.unit(1.25, "feet"),
  21544. name: "Maw",
  21545. image: {
  21546. source: "./media/characters/aronai-sieyes/maw.svg"
  21547. }
  21548. },
  21549. feral: {
  21550. height: math.unit(18, "feet"),
  21551. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21552. name: "Feral",
  21553. image: {
  21554. source: "./media/characters/aronai-sieyes/feral.svg",
  21555. extra: 1530 / 1240,
  21556. bottom: 0.035
  21557. }
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Micro",
  21563. height: math.unit(2, "inches")
  21564. },
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(6 + 1 / 12, "feet"),
  21568. default: true
  21569. }
  21570. ]
  21571. ))
  21572. characterMakers.push(() => makeCharacter(
  21573. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21574. {
  21575. front: {
  21576. height: math.unit(12, "feet"),
  21577. weight: math.unit(410, "kg"),
  21578. name: "Front",
  21579. image: {
  21580. source: "./media/characters/xuna/front.svg",
  21581. extra: 2184 / 1980
  21582. }
  21583. },
  21584. side: {
  21585. height: math.unit(12, "feet"),
  21586. weight: math.unit(410, "kg"),
  21587. name: "Side",
  21588. image: {
  21589. source: "./media/characters/xuna/side.svg",
  21590. extra: 2184 / 1980
  21591. }
  21592. },
  21593. back: {
  21594. height: math.unit(12, "feet"),
  21595. weight: math.unit(410, "kg"),
  21596. name: "Back",
  21597. image: {
  21598. source: "./media/characters/xuna/back.svg",
  21599. extra: 2184 / 1980
  21600. }
  21601. },
  21602. },
  21603. [
  21604. {
  21605. name: "Nano glow",
  21606. height: math.unit(10, "nm")
  21607. },
  21608. {
  21609. name: "Micro floof",
  21610. height: math.unit(0.3, "m")
  21611. },
  21612. {
  21613. name: "Huggable softy boi",
  21614. height: math.unit(3.6576, "m"),
  21615. default: true
  21616. },
  21617. {
  21618. name: "Admirable floof",
  21619. height: math.unit(80, "meters")
  21620. },
  21621. {
  21622. name: "Gentle macro",
  21623. height: math.unit(300, "meters")
  21624. },
  21625. {
  21626. name: "Very careful floof",
  21627. height: math.unit(3200, "meters")
  21628. },
  21629. {
  21630. name: "The mega floof",
  21631. height: math.unit(36000, "meters")
  21632. },
  21633. {
  21634. name: "Giga-fur-Wicker",
  21635. height: math.unit(4800000, "meters")
  21636. },
  21637. {
  21638. name: "Licky world",
  21639. height: math.unit(20000000, "meters")
  21640. },
  21641. {
  21642. name: "Floofy cyan sun",
  21643. height: math.unit(1500000000, "meters")
  21644. },
  21645. {
  21646. name: "Milky Wicker",
  21647. height: math.unit(1000000000000000000000, "meters")
  21648. },
  21649. {
  21650. name: "The observing Wicker",
  21651. height: math.unit(999999999999999999999999999, "meters")
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21657. {
  21658. front: {
  21659. height: math.unit(5 + 9 / 12, "feet"),
  21660. weight: math.unit(150, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/arokha-sieyes/front.svg",
  21664. extra: 1425 / 1284,
  21665. bottom: 0.05
  21666. }
  21667. },
  21668. },
  21669. [
  21670. {
  21671. name: "Normal",
  21672. height: math.unit(5 + 9 / 12, "feet")
  21673. },
  21674. {
  21675. name: "Macro",
  21676. height: math.unit(30, "meters"),
  21677. default: true
  21678. },
  21679. ]
  21680. ))
  21681. characterMakers.push(() => makeCharacter(
  21682. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21683. {
  21684. front: {
  21685. height: math.unit(6, "feet"),
  21686. weight: math.unit(180, "lb"),
  21687. name: "Front",
  21688. image: {
  21689. source: "./media/characters/arokh-sieyes/front.svg",
  21690. extra: 1830 / 1769,
  21691. bottom: 0.01
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Normal",
  21698. height: math.unit(6, "feet")
  21699. },
  21700. {
  21701. name: "Macro",
  21702. height: math.unit(30, "meters"),
  21703. default: true
  21704. },
  21705. ]
  21706. ))
  21707. characterMakers.push(() => makeCharacter(
  21708. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21709. {
  21710. side: {
  21711. height: math.unit(13 + 1 / 12, "feet"),
  21712. weight: math.unit(8.5, "tonnes"),
  21713. preyCapacity: math.unit(36, "people"),
  21714. name: "Side",
  21715. image: {
  21716. source: "./media/characters/goldeneye/side.svg",
  21717. extra: 1139/741,
  21718. bottom: 98/1237
  21719. }
  21720. },
  21721. front: {
  21722. height: math.unit(5.1, "feet"),
  21723. weight: math.unit(8.5, "tonnes"),
  21724. preyCapacity: math.unit(36, "people"),
  21725. name: "Front",
  21726. image: {
  21727. source: "./media/characters/goldeneye/front.svg",
  21728. extra: 635/365,
  21729. bottom: 598/1233
  21730. }
  21731. },
  21732. maw: {
  21733. height: math.unit(6.6, "feet"),
  21734. name: "Maw",
  21735. image: {
  21736. source: "./media/characters/goldeneye/maw.svg"
  21737. }
  21738. },
  21739. headFront: {
  21740. height: math.unit(8, "feet"),
  21741. name: "Head (Front)",
  21742. image: {
  21743. source: "./media/characters/goldeneye/head-front.svg"
  21744. }
  21745. },
  21746. headSide: {
  21747. height: math.unit(6, "feet"),
  21748. name: "Head (Side)",
  21749. image: {
  21750. source: "./media/characters/goldeneye/head-side.svg"
  21751. }
  21752. },
  21753. headBack: {
  21754. height: math.unit(8, "feet"),
  21755. name: "Head (Back)",
  21756. image: {
  21757. source: "./media/characters/goldeneye/head-back.svg"
  21758. }
  21759. },
  21760. paw: {
  21761. height: math.unit(3.4, "feet"),
  21762. name: "Paw",
  21763. image: {
  21764. source: "./media/characters/goldeneye/paw.svg"
  21765. }
  21766. },
  21767. toering: {
  21768. height: math.unit(0.45, "feet"),
  21769. name: "Toering",
  21770. image: {
  21771. source: "./media/characters/goldeneye/toering.svg"
  21772. }
  21773. },
  21774. eyes: {
  21775. height: math.unit(0.5, "feet"),
  21776. name: "Eyes",
  21777. image: {
  21778. source: "./media/characters/goldeneye/eyes.svg"
  21779. }
  21780. },
  21781. },
  21782. [
  21783. {
  21784. name: "Normal",
  21785. height: math.unit(13 + 1 / 12, "feet"),
  21786. default: true
  21787. },
  21788. ]
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21792. {
  21793. front: {
  21794. height: math.unit(6 + 1 / 12, "feet"),
  21795. weight: math.unit(210, "lb"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/leonardo-lycheborne/front.svg",
  21799. extra: 776/723,
  21800. bottom: 34/810
  21801. }
  21802. },
  21803. side: {
  21804. height: math.unit(6 + 1 / 12, "feet"),
  21805. weight: math.unit(210, "lb"),
  21806. name: "Side",
  21807. image: {
  21808. source: "./media/characters/leonardo-lycheborne/side.svg",
  21809. extra: 780/728,
  21810. bottom: 12/792
  21811. }
  21812. },
  21813. back: {
  21814. height: math.unit(6 + 1 / 12, "feet"),
  21815. weight: math.unit(210, "lb"),
  21816. name: "Back",
  21817. image: {
  21818. source: "./media/characters/leonardo-lycheborne/back.svg",
  21819. extra: 775/721,
  21820. bottom: 17/792
  21821. }
  21822. },
  21823. hand: {
  21824. height: math.unit(1.08, "feet"),
  21825. name: "Hand",
  21826. image: {
  21827. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21828. }
  21829. },
  21830. foot: {
  21831. height: math.unit(1.32, "feet"),
  21832. name: "Foot",
  21833. image: {
  21834. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21835. }
  21836. },
  21837. maw: {
  21838. height: math.unit(1, "feet"),
  21839. name: "Maw",
  21840. image: {
  21841. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21842. }
  21843. },
  21844. were: {
  21845. height: math.unit(20, "feet"),
  21846. weight: math.unit(7800, "lb"),
  21847. name: "Were",
  21848. image: {
  21849. source: "./media/characters/leonardo-lycheborne/were.svg",
  21850. extra: 1224/1165,
  21851. bottom: 72/1296
  21852. }
  21853. },
  21854. feral: {
  21855. height: math.unit(7.5, "feet"),
  21856. weight: math.unit(600, "lb"),
  21857. name: "Feral",
  21858. image: {
  21859. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21860. extra: 797/702,
  21861. bottom: 139/936
  21862. }
  21863. },
  21864. taur: {
  21865. height: math.unit(11, "feet"),
  21866. weight: math.unit(3300, "lb"),
  21867. name: "Taur",
  21868. image: {
  21869. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21870. extra: 1271/1197,
  21871. bottom: 47/1318
  21872. }
  21873. },
  21874. barghest: {
  21875. height: math.unit(11, "feet"),
  21876. weight: math.unit(1300, "lb"),
  21877. name: "Barghest",
  21878. image: {
  21879. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21880. extra: 1291/1204,
  21881. bottom: 37/1328
  21882. }
  21883. },
  21884. dick: {
  21885. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21886. name: "Dick",
  21887. image: {
  21888. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21889. }
  21890. },
  21891. dickWere: {
  21892. height: math.unit((20) / 3.8, "feet"),
  21893. name: "Dick (Were)",
  21894. image: {
  21895. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(6 + 1 / 12, "feet"),
  21903. default: true
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21909. {
  21910. front: {
  21911. height: math.unit(10, "feet"),
  21912. weight: math.unit(350, "lb"),
  21913. name: "Front",
  21914. image: {
  21915. source: "./media/characters/jet/front.svg",
  21916. extra: 2050 / 1980,
  21917. bottom: 0.013
  21918. }
  21919. },
  21920. back: {
  21921. height: math.unit(10, "feet"),
  21922. weight: math.unit(350, "lb"),
  21923. name: "Back",
  21924. image: {
  21925. source: "./media/characters/jet/back.svg",
  21926. extra: 2050 / 1980,
  21927. bottom: 0.013
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Micro",
  21934. height: math.unit(6, "inches")
  21935. },
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(10, "feet"),
  21939. default: true
  21940. },
  21941. {
  21942. name: "Macro",
  21943. height: math.unit(100, "feet")
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21949. {
  21950. front: {
  21951. height: math.unit(15, "feet"),
  21952. weight: math.unit(2800, "lb"),
  21953. name: "Front",
  21954. image: {
  21955. source: "./media/characters/tanarath/front.svg",
  21956. extra: 2392 / 2220,
  21957. bottom: 0.03
  21958. }
  21959. },
  21960. back: {
  21961. height: math.unit(15, "feet"),
  21962. weight: math.unit(2800, "lb"),
  21963. name: "Back",
  21964. image: {
  21965. source: "./media/characters/tanarath/back.svg",
  21966. extra: 2392 / 2220,
  21967. bottom: 0.03
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(15, "feet"),
  21975. default: true
  21976. },
  21977. ]
  21978. ))
  21979. characterMakers.push(() => makeCharacter(
  21980. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21981. {
  21982. front: {
  21983. height: math.unit(7 + 1 / 12, "feet"),
  21984. weight: math.unit(175, "lb"),
  21985. name: "Front",
  21986. image: {
  21987. source: "./media/characters/patty-cattybatty/front.svg",
  21988. extra: 908 / 874,
  21989. bottom: 0.025
  21990. }
  21991. },
  21992. },
  21993. [
  21994. {
  21995. name: "Micro",
  21996. height: math.unit(1, "inch")
  21997. },
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(7 + 1 / 12, "feet")
  22001. },
  22002. {
  22003. name: "Mini Macro",
  22004. height: math.unit(155, "feet")
  22005. },
  22006. {
  22007. name: "Macro",
  22008. height: math.unit(1077, "feet")
  22009. },
  22010. {
  22011. name: "Mega Macro",
  22012. height: math.unit(47650, "feet"),
  22013. default: true
  22014. },
  22015. {
  22016. name: "Giga Macro",
  22017. height: math.unit(440, "miles")
  22018. },
  22019. {
  22020. name: "Tera Macro",
  22021. height: math.unit(8700, "miles")
  22022. },
  22023. {
  22024. name: "Planetary Macro",
  22025. height: math.unit(32700, "miles")
  22026. },
  22027. {
  22028. name: "Solar Macro",
  22029. height: math.unit(550000, "miles")
  22030. },
  22031. {
  22032. name: "Celestial Macro",
  22033. height: math.unit(2.5, "AU")
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(4 + 5 / 12, "feet"),
  22042. weight: math.unit(90, "lb"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/cappu/front.svg",
  22046. extra: 1247 / 1152,
  22047. bottom: 0.012
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(4 + 5 / 12, "feet"),
  22055. default: true
  22056. },
  22057. ]
  22058. ))
  22059. characterMakers.push(() => makeCharacter(
  22060. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  22061. {
  22062. frontDressed: {
  22063. height: math.unit(70, "cm"),
  22064. weight: math.unit(6, "kg"),
  22065. name: "Front (Dressed)",
  22066. image: {
  22067. source: "./media/characters/sebi/front-dressed.svg",
  22068. extra: 713.5 / 686.5,
  22069. bottom: 0.003
  22070. }
  22071. },
  22072. front: {
  22073. height: math.unit(70, "cm"),
  22074. weight: math.unit(5, "kg"),
  22075. name: "Front",
  22076. image: {
  22077. source: "./media/characters/sebi/front.svg",
  22078. extra: 713.5 / 686.5,
  22079. bottom: 0.003
  22080. }
  22081. }
  22082. },
  22083. [
  22084. {
  22085. name: "Normal",
  22086. height: math.unit(70, "cm"),
  22087. default: true
  22088. },
  22089. {
  22090. name: "Macro",
  22091. height: math.unit(8, "meters")
  22092. },
  22093. ]
  22094. ))
  22095. characterMakers.push(() => makeCharacter(
  22096. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  22097. {
  22098. front: {
  22099. height: math.unit(6, "feet"),
  22100. weight: math.unit(150, "lb"),
  22101. name: "Front",
  22102. image: {
  22103. source: "./media/characters/typhek/front.svg",
  22104. extra: 1948 / 1929,
  22105. bottom: 0.025
  22106. }
  22107. },
  22108. side: {
  22109. height: math.unit(6, "feet"),
  22110. weight: math.unit(150, "lb"),
  22111. name: "Side",
  22112. image: {
  22113. source: "./media/characters/typhek/side.svg",
  22114. extra: 2034 / 2010,
  22115. bottom: 0.003
  22116. }
  22117. },
  22118. back: {
  22119. height: math.unit(6, "feet"),
  22120. weight: math.unit(150, "lb"),
  22121. name: "Back",
  22122. image: {
  22123. source: "./media/characters/typhek/back.svg",
  22124. extra: 2005 / 1978,
  22125. bottom: 0.004
  22126. }
  22127. },
  22128. palm: {
  22129. height: math.unit(1.2, "feet"),
  22130. name: "Palm",
  22131. image: {
  22132. source: "./media/characters/typhek/palm.svg"
  22133. }
  22134. },
  22135. fist: {
  22136. height: math.unit(1.1, "feet"),
  22137. name: "Fist",
  22138. image: {
  22139. source: "./media/characters/typhek/fist.svg"
  22140. }
  22141. },
  22142. foot: {
  22143. height: math.unit(1.57, "feet"),
  22144. name: "Foot",
  22145. image: {
  22146. source: "./media/characters/typhek/foot.svg"
  22147. }
  22148. },
  22149. sole: {
  22150. height: math.unit(2.05, "feet"),
  22151. name: "Sole",
  22152. image: {
  22153. source: "./media/characters/typhek/sole.svg"
  22154. }
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Macro",
  22160. height: math.unit(40, "stories"),
  22161. default: true
  22162. },
  22163. {
  22164. name: "Megamacro",
  22165. height: math.unit(1, "mile")
  22166. },
  22167. {
  22168. name: "Gigamacro",
  22169. height: math.unit(4000, "solarradii")
  22170. },
  22171. {
  22172. name: "Universal",
  22173. height: math.unit(1.1, "universes")
  22174. }
  22175. ]
  22176. ))
  22177. characterMakers.push(() => makeCharacter(
  22178. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22179. {
  22180. side: {
  22181. height: math.unit(5 + 7 / 12, "feet"),
  22182. weight: math.unit(150, "lb"),
  22183. name: "Side",
  22184. image: {
  22185. source: "./media/characters/kassy/side.svg",
  22186. extra: 1280 / 1225,
  22187. bottom: 0.002
  22188. }
  22189. },
  22190. front: {
  22191. height: math.unit(5 + 7 / 12, "feet"),
  22192. weight: math.unit(150, "lb"),
  22193. name: "Front",
  22194. image: {
  22195. source: "./media/characters/kassy/front.svg",
  22196. extra: 1280 / 1225,
  22197. bottom: 0.025
  22198. }
  22199. },
  22200. back: {
  22201. height: math.unit(5 + 7 / 12, "feet"),
  22202. weight: math.unit(150, "lb"),
  22203. name: "Back",
  22204. image: {
  22205. source: "./media/characters/kassy/back.svg",
  22206. extra: 1280 / 1225,
  22207. bottom: 0.002
  22208. }
  22209. },
  22210. foot: {
  22211. height: math.unit(1.266, "feet"),
  22212. name: "Foot",
  22213. image: {
  22214. source: "./media/characters/kassy/foot.svg"
  22215. }
  22216. },
  22217. },
  22218. [
  22219. {
  22220. name: "Normal",
  22221. height: math.unit(5 + 7 / 12, "feet")
  22222. },
  22223. {
  22224. name: "Macro",
  22225. height: math.unit(137, "feet"),
  22226. default: true
  22227. },
  22228. {
  22229. name: "Megamacro",
  22230. height: math.unit(1, "mile")
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22236. {
  22237. front: {
  22238. height: math.unit(6 + 1 / 12, "feet"),
  22239. weight: math.unit(200, "lb"),
  22240. name: "Front",
  22241. image: {
  22242. source: "./media/characters/neil/front.svg",
  22243. extra: 1326 / 1250,
  22244. bottom: 0.023
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Normal",
  22251. height: math.unit(6 + 1 / 12, "feet"),
  22252. default: true
  22253. },
  22254. {
  22255. name: "Macro",
  22256. height: math.unit(200, "feet")
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(5 + 9 / 12, "feet"),
  22265. weight: math.unit(190, "lb"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/atticus/front.svg",
  22269. extra: 2934 / 2785,
  22270. bottom: 0.025
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(5 + 9 / 12, "feet"),
  22278. default: true
  22279. },
  22280. {
  22281. name: "Macro",
  22282. height: math.unit(180, "feet")
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22288. {
  22289. side: {
  22290. height: math.unit(9, "feet"),
  22291. weight: math.unit(650, "lb"),
  22292. name: "Side",
  22293. image: {
  22294. source: "./media/characters/milo/side.svg",
  22295. extra: 2644 / 2310,
  22296. bottom: 0.032
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(9, "feet"),
  22304. default: true
  22305. },
  22306. {
  22307. name: "Macro",
  22308. height: math.unit(300, "feet")
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22314. {
  22315. side: {
  22316. height: math.unit(8, "meters"),
  22317. weight: math.unit(90000, "kg"),
  22318. name: "Side",
  22319. image: {
  22320. source: "./media/characters/ijzer/side.svg",
  22321. extra: 2756 / 1600,
  22322. bottom: 0.01
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Small",
  22329. height: math.unit(3, "meters")
  22330. },
  22331. {
  22332. name: "Normal",
  22333. height: math.unit(8, "meters"),
  22334. default: true
  22335. },
  22336. {
  22337. name: "Normal+",
  22338. height: math.unit(10, "meters")
  22339. },
  22340. {
  22341. name: "Bigger",
  22342. height: math.unit(24, "meters")
  22343. },
  22344. {
  22345. name: "Huge",
  22346. height: math.unit(80, "meters")
  22347. },
  22348. ]
  22349. ))
  22350. characterMakers.push(() => makeCharacter(
  22351. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22352. {
  22353. front: {
  22354. height: math.unit(6 + 2 / 12, "feet"),
  22355. weight: math.unit(153, "lb"),
  22356. name: "Front",
  22357. image: {
  22358. source: "./media/characters/luca-cervicum/front.svg",
  22359. extra: 370 / 327,
  22360. bottom: 0.015
  22361. }
  22362. },
  22363. back: {
  22364. height: math.unit(6 + 2 / 12, "feet"),
  22365. weight: math.unit(153, "lb"),
  22366. name: "Back",
  22367. image: {
  22368. source: "./media/characters/luca-cervicum/back.svg",
  22369. extra: 367 / 333,
  22370. bottom: 0.005
  22371. }
  22372. },
  22373. frontGear: {
  22374. height: math.unit(6 + 2 / 12, "feet"),
  22375. weight: math.unit(173, "lb"),
  22376. name: "Front (Gear)",
  22377. image: {
  22378. source: "./media/characters/luca-cervicum/front-gear.svg",
  22379. extra: 377 / 333,
  22380. bottom: 0.006
  22381. }
  22382. },
  22383. },
  22384. [
  22385. {
  22386. name: "Normal",
  22387. height: math.unit(6 + 2 / 12, "feet"),
  22388. default: true
  22389. },
  22390. ]
  22391. ))
  22392. characterMakers.push(() => makeCharacter(
  22393. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22394. {
  22395. front: {
  22396. height: math.unit(6 + 1 / 12, "feet"),
  22397. weight: math.unit(304, "lb"),
  22398. name: "Front",
  22399. image: {
  22400. source: "./media/characters/oliver/front.svg",
  22401. extra: 157 / 143,
  22402. bottom: 0.08
  22403. }
  22404. },
  22405. },
  22406. [
  22407. {
  22408. name: "Normal",
  22409. height: math.unit(6 + 1 / 12, "feet"),
  22410. default: true
  22411. },
  22412. ]
  22413. ))
  22414. characterMakers.push(() => makeCharacter(
  22415. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22416. {
  22417. front: {
  22418. height: math.unit(5 + 7 / 12, "feet"),
  22419. weight: math.unit(140, "lb"),
  22420. name: "Front",
  22421. image: {
  22422. source: "./media/characters/shane/front.svg",
  22423. extra: 304 / 289,
  22424. bottom: 0.005
  22425. }
  22426. },
  22427. },
  22428. [
  22429. {
  22430. name: "Normal",
  22431. height: math.unit(5 + 7 / 12, "feet"),
  22432. default: true
  22433. },
  22434. ]
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(5 + 9 / 12, "feet"),
  22441. weight: math.unit(178, "lb"),
  22442. name: "Front",
  22443. image: {
  22444. source: "./media/characters/shin/front.svg",
  22445. extra: 159 / 151,
  22446. bottom: 0.015
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(5 + 9 / 12, "feet"),
  22454. default: true
  22455. },
  22456. ]
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22460. {
  22461. front: {
  22462. height: math.unit(5 + 10 / 12, "feet"),
  22463. weight: math.unit(168, "lb"),
  22464. name: "Front",
  22465. image: {
  22466. source: "./media/characters/xerxes/front.svg",
  22467. extra: 282 / 260,
  22468. bottom: 0.045
  22469. }
  22470. },
  22471. },
  22472. [
  22473. {
  22474. name: "Normal",
  22475. height: math.unit(5 + 10 / 12, "feet"),
  22476. default: true
  22477. },
  22478. ]
  22479. ))
  22480. characterMakers.push(() => makeCharacter(
  22481. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22482. {
  22483. front: {
  22484. height: math.unit(6 + 7 / 12, "feet"),
  22485. weight: math.unit(208, "lb"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/chaska/front.svg",
  22489. extra: 332 / 319,
  22490. bottom: 0.015
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Normal",
  22497. height: math.unit(6 + 7 / 12, "feet"),
  22498. default: true
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(5 + 8 / 12, "feet"),
  22507. weight: math.unit(208, "lb"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/enuk/front.svg",
  22511. extra: 437 / 406,
  22512. bottom: 0.02
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(5 + 8 / 12, "feet"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22526. {
  22527. front: {
  22528. height: math.unit(5 + 10 / 12, "feet"),
  22529. weight: math.unit(252, "lb"),
  22530. name: "Front",
  22531. image: {
  22532. source: "./media/characters/bruun/front.svg",
  22533. extra: 197 / 187,
  22534. bottom: 0.012
  22535. }
  22536. },
  22537. },
  22538. [
  22539. {
  22540. name: "Normal",
  22541. height: math.unit(5 + 10 / 12, "feet"),
  22542. default: true
  22543. },
  22544. ]
  22545. ))
  22546. characterMakers.push(() => makeCharacter(
  22547. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22548. {
  22549. front: {
  22550. height: math.unit(6 + 10 / 12, "feet"),
  22551. weight: math.unit(255, "lb"),
  22552. name: "Front",
  22553. image: {
  22554. source: "./media/characters/alexeev/front.svg",
  22555. extra: 213 / 200,
  22556. bottom: 0.05
  22557. }
  22558. },
  22559. },
  22560. [
  22561. {
  22562. name: "Normal",
  22563. height: math.unit(6 + 10 / 12, "feet"),
  22564. default: true
  22565. },
  22566. ]
  22567. ))
  22568. characterMakers.push(() => makeCharacter(
  22569. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22570. {
  22571. front: {
  22572. height: math.unit(2 + 8 / 12, "feet"),
  22573. weight: math.unit(22, "lb"),
  22574. name: "Front",
  22575. image: {
  22576. source: "./media/characters/evelyn/front.svg",
  22577. extra: 208 / 180
  22578. }
  22579. },
  22580. },
  22581. [
  22582. {
  22583. name: "Normal",
  22584. height: math.unit(2 + 8 / 12, "feet"),
  22585. default: true
  22586. },
  22587. ]
  22588. ))
  22589. characterMakers.push(() => makeCharacter(
  22590. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22591. {
  22592. front: {
  22593. height: math.unit(5 + 9 / 12, "feet"),
  22594. weight: math.unit(139, "lb"),
  22595. name: "Front",
  22596. image: {
  22597. source: "./media/characters/inca/front.svg",
  22598. extra: 294 / 291,
  22599. bottom: 0.03
  22600. }
  22601. },
  22602. },
  22603. [
  22604. {
  22605. name: "Normal",
  22606. height: math.unit(5 + 9 / 12, "feet"),
  22607. default: true
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22613. {
  22614. front: {
  22615. height: math.unit(6 + 3 / 12, "feet"),
  22616. weight: math.unit(185, "lb"),
  22617. name: "Front",
  22618. image: {
  22619. source: "./media/characters/mera/front.svg",
  22620. extra: 291 / 277,
  22621. bottom: 0.03
  22622. }
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Normal",
  22628. height: math.unit(6 + 3 / 12, "feet"),
  22629. default: true
  22630. },
  22631. ]
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22635. {
  22636. front: {
  22637. height: math.unit(6 + 7 / 12, "feet"),
  22638. weight: math.unit(160, "lb"),
  22639. name: "Front",
  22640. image: {
  22641. source: "./media/characters/ceres/front.svg",
  22642. extra: 1023 / 950,
  22643. bottom: 0.027
  22644. }
  22645. },
  22646. back: {
  22647. height: math.unit(6 + 7 / 12, "feet"),
  22648. weight: math.unit(160, "lb"),
  22649. name: "Back",
  22650. image: {
  22651. source: "./media/characters/ceres/back.svg",
  22652. extra: 1023 / 950
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Normal",
  22659. height: math.unit(6 + 7 / 12, "feet"),
  22660. default: true
  22661. },
  22662. ]
  22663. ))
  22664. characterMakers.push(() => makeCharacter(
  22665. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22666. {
  22667. front: {
  22668. height: math.unit(5 + 10 / 12, "feet"),
  22669. weight: math.unit(150, "lb"),
  22670. name: "Front",
  22671. image: {
  22672. source: "./media/characters/kris/front.svg",
  22673. extra: 885 / 803,
  22674. bottom: 0.03
  22675. }
  22676. },
  22677. },
  22678. [
  22679. {
  22680. name: "Normal",
  22681. height: math.unit(5 + 10 / 12, "feet"),
  22682. default: true
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22688. {
  22689. dragon_front: {
  22690. height: math.unit(5, "feet"),
  22691. name: "Front",
  22692. image: {
  22693. source: "./media/characters/taluthus/dragon-front.svg",
  22694. extra: 1203/1098,
  22695. bottom: 46/1249
  22696. },
  22697. form: "dragon",
  22698. default: true
  22699. },
  22700. dragon_maw: {
  22701. height: math.unit(2.35, "feet"),
  22702. name: "Maw",
  22703. image: {
  22704. source: "./media/characters/taluthus/dragon-maw.svg"
  22705. },
  22706. form: "dragon",
  22707. },
  22708. kitsune_front: {
  22709. height: math.unit(7, "feet"),
  22710. name: "Front",
  22711. image: {
  22712. source: "./media/characters/taluthus/kitsune-front.svg",
  22713. extra: 900/841,
  22714. bottom: 65/965
  22715. },
  22716. form: "kitsune",
  22717. default: true
  22718. },
  22719. },
  22720. [
  22721. {
  22722. name: "Normal",
  22723. height: math.unit(5, "feet"),
  22724. form: "dragon",
  22725. default: true,
  22726. },
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(7, "feet"),
  22730. form: "kitsune",
  22731. default: true
  22732. },
  22733. {
  22734. name: "Macro",
  22735. height: math.unit(300, "feet"),
  22736. allForms: true
  22737. },
  22738. ],
  22739. {
  22740. "dragon": {
  22741. name: "Dragon",
  22742. default: true
  22743. },
  22744. "kitsune": {
  22745. name: "Kitsune",
  22746. },
  22747. }
  22748. ))
  22749. characterMakers.push(() => makeCharacter(
  22750. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22751. {
  22752. front: {
  22753. height: math.unit(5 + 9 / 12, "feet"),
  22754. weight: math.unit(145, "lb"),
  22755. name: "Front",
  22756. image: {
  22757. source: "./media/characters/dawn/front.svg",
  22758. extra: 2094 / 2016,
  22759. bottom: 0.025
  22760. }
  22761. },
  22762. back: {
  22763. height: math.unit(5 + 9 / 12, "feet"),
  22764. weight: math.unit(160, "lb"),
  22765. name: "Back",
  22766. image: {
  22767. source: "./media/characters/dawn/back.svg",
  22768. extra: 2112 / 2080,
  22769. bottom: 0.005
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Normal",
  22776. height: math.unit(6 + 7 / 12, "feet"),
  22777. default: true
  22778. },
  22779. ]
  22780. ))
  22781. characterMakers.push(() => makeCharacter(
  22782. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22783. {
  22784. anthro: {
  22785. height: math.unit(8 + 3 / 12, "feet"),
  22786. weight: math.unit(450, "lb"),
  22787. name: "Anthro",
  22788. image: {
  22789. source: "./media/characters/arador/anthro.svg",
  22790. extra: 1835 / 1718,
  22791. bottom: 0.025
  22792. }
  22793. },
  22794. feral: {
  22795. height: math.unit(4, "feet"),
  22796. weight: math.unit(200, "lb"),
  22797. name: "Feral",
  22798. image: {
  22799. source: "./media/characters/arador/feral.svg",
  22800. extra: 1683 / 1514,
  22801. bottom: 0.07
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Normal",
  22808. height: math.unit(8 + 3 / 12, "feet")
  22809. },
  22810. {
  22811. name: "Macro",
  22812. height: math.unit(82.5, "feet"),
  22813. default: true
  22814. },
  22815. ]
  22816. ))
  22817. characterMakers.push(() => makeCharacter(
  22818. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22819. {
  22820. front: {
  22821. height: math.unit(5 + 10 / 12, "feet"),
  22822. weight: math.unit(125, "lb"),
  22823. name: "Front",
  22824. image: {
  22825. source: "./media/characters/dharsi/front.svg",
  22826. extra: 716 / 630,
  22827. bottom: 0.035
  22828. }
  22829. },
  22830. },
  22831. [
  22832. {
  22833. name: "Nano",
  22834. height: math.unit(100, "nm")
  22835. },
  22836. {
  22837. name: "Micro",
  22838. height: math.unit(2, "inches")
  22839. },
  22840. {
  22841. name: "Normal",
  22842. height: math.unit(5 + 10 / 12, "feet"),
  22843. default: true
  22844. },
  22845. {
  22846. name: "Macro",
  22847. height: math.unit(1000, "feet")
  22848. },
  22849. {
  22850. name: "Megamacro",
  22851. height: math.unit(10, "miles")
  22852. },
  22853. {
  22854. name: "Gigamacro",
  22855. height: math.unit(3000, "miles")
  22856. },
  22857. {
  22858. name: "Teramacro",
  22859. height: math.unit(500000, "miles")
  22860. },
  22861. {
  22862. name: "Teramacro+",
  22863. height: math.unit(30, "galaxies")
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22869. {
  22870. front: {
  22871. height: math.unit(6, "feet"),
  22872. weight: math.unit(150, "lb"),
  22873. name: "Front",
  22874. image: {
  22875. source: "./media/characters/deathy/front.svg",
  22876. extra: 1552 / 1463,
  22877. bottom: 0.025
  22878. }
  22879. },
  22880. side: {
  22881. height: math.unit(6, "feet"),
  22882. weight: math.unit(150, "lb"),
  22883. name: "Side",
  22884. image: {
  22885. source: "./media/characters/deathy/side.svg",
  22886. extra: 1604 / 1455,
  22887. bottom: 0.025
  22888. }
  22889. },
  22890. back: {
  22891. height: math.unit(6, "feet"),
  22892. weight: math.unit(150, "lb"),
  22893. name: "Back",
  22894. image: {
  22895. source: "./media/characters/deathy/back.svg",
  22896. extra: 1580 / 1463,
  22897. bottom: 0.005
  22898. }
  22899. },
  22900. },
  22901. [
  22902. {
  22903. name: "Micro",
  22904. height: math.unit(5, "millimeters")
  22905. },
  22906. {
  22907. name: "Normal",
  22908. height: math.unit(6 + 5 / 12, "feet"),
  22909. default: true
  22910. },
  22911. ]
  22912. ))
  22913. characterMakers.push(() => makeCharacter(
  22914. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22915. {
  22916. front: {
  22917. height: math.unit(16, "feet"),
  22918. weight: math.unit(4000, "lb"),
  22919. name: "Front",
  22920. image: {
  22921. source: "./media/characters/juniper/front.svg",
  22922. bottom: 0.04
  22923. }
  22924. },
  22925. },
  22926. [
  22927. {
  22928. name: "Normal",
  22929. height: math.unit(16, "feet"),
  22930. default: true
  22931. },
  22932. ]
  22933. ))
  22934. characterMakers.push(() => makeCharacter(
  22935. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22936. {
  22937. front: {
  22938. height: math.unit(6, "feet"),
  22939. weight: math.unit(150, "lb"),
  22940. name: "Front",
  22941. image: {
  22942. source: "./media/characters/hipster/front.svg",
  22943. extra: 1312 / 1209,
  22944. bottom: 0.025
  22945. }
  22946. },
  22947. back: {
  22948. height: math.unit(6, "feet"),
  22949. weight: math.unit(150, "lb"),
  22950. name: "Back",
  22951. image: {
  22952. source: "./media/characters/hipster/back.svg",
  22953. extra: 1281 / 1196,
  22954. bottom: 0.01
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Micro",
  22961. height: math.unit(1, "mm")
  22962. },
  22963. {
  22964. name: "Normal",
  22965. height: math.unit(4, "inches"),
  22966. default: true
  22967. },
  22968. {
  22969. name: "Macro",
  22970. height: math.unit(500, "feet")
  22971. },
  22972. {
  22973. name: "Megamacro",
  22974. height: math.unit(1000, "miles")
  22975. },
  22976. ]
  22977. ))
  22978. characterMakers.push(() => makeCharacter(
  22979. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22980. {
  22981. front: {
  22982. height: math.unit(6, "feet"),
  22983. weight: math.unit(150, "lb"),
  22984. name: "Front",
  22985. image: {
  22986. source: "./media/characters/tendirmuldr/front.svg",
  22987. extra: 1878 / 1772,
  22988. bottom: 0.015
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Megamacro",
  22995. height: math.unit(1500, "miles"),
  22996. default: true
  22997. },
  22998. ]
  22999. ))
  23000. characterMakers.push(() => makeCharacter(
  23001. { name: "Mort", species: ["demon"], tags: ["feral"] },
  23002. {
  23003. front: {
  23004. height: math.unit(14, "feet"),
  23005. weight: math.unit(12000, "lb"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/mort/front.svg",
  23009. extra: 365 / 318,
  23010. bottom: 0.01
  23011. }
  23012. },
  23013. side: {
  23014. height: math.unit(14, "feet"),
  23015. weight: math.unit(12000, "lb"),
  23016. name: "Side",
  23017. image: {
  23018. source: "./media/characters/mort/side.svg",
  23019. extra: 365 / 318,
  23020. bottom: 0.052
  23021. },
  23022. default: true
  23023. },
  23024. back: {
  23025. height: math.unit(14, "feet"),
  23026. weight: math.unit(12000, "lb"),
  23027. name: "Back",
  23028. image: {
  23029. source: "./media/characters/mort/back.svg",
  23030. extra: 371 / 332,
  23031. bottom: 0.18
  23032. }
  23033. },
  23034. },
  23035. [
  23036. {
  23037. name: "Normal",
  23038. height: math.unit(14, "feet"),
  23039. default: true
  23040. },
  23041. ]
  23042. ))
  23043. characterMakers.push(() => makeCharacter(
  23044. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  23045. {
  23046. front: {
  23047. height: math.unit(8, "feet"),
  23048. weight: math.unit(1, "ton"),
  23049. name: "Front",
  23050. image: {
  23051. source: "./media/characters/lycoa/front.svg",
  23052. extra: 1836/1728,
  23053. bottom: 81/1917
  23054. }
  23055. },
  23056. back: {
  23057. height: math.unit(8, "feet"),
  23058. weight: math.unit(1, "ton"),
  23059. name: "Back",
  23060. image: {
  23061. source: "./media/characters/lycoa/back.svg",
  23062. extra: 1785/1720,
  23063. bottom: 91/1876
  23064. }
  23065. },
  23066. head: {
  23067. height: math.unit(1.6243, "feet"),
  23068. name: "Head",
  23069. image: {
  23070. source: "./media/characters/lycoa/head.svg",
  23071. extra: 1011/782,
  23072. bottom: 0/1011
  23073. }
  23074. },
  23075. tailmaw: {
  23076. height: math.unit(1.9, "feet"),
  23077. name: "Tailmaw",
  23078. image: {
  23079. source: "./media/characters/lycoa/tailmaw.svg"
  23080. }
  23081. },
  23082. tentacles: {
  23083. height: math.unit(2.1, "feet"),
  23084. name: "Tentacles",
  23085. image: {
  23086. source: "./media/characters/lycoa/tentacles.svg"
  23087. }
  23088. },
  23089. dick: {
  23090. height: math.unit(1.73, "feet"),
  23091. name: "Dick",
  23092. image: {
  23093. source: "./media/characters/lycoa/dick.svg"
  23094. }
  23095. },
  23096. },
  23097. [
  23098. {
  23099. name: "Normal",
  23100. height: math.unit(8, "feet"),
  23101. default: true
  23102. },
  23103. {
  23104. name: "Macro",
  23105. height: math.unit(30, "feet")
  23106. },
  23107. ]
  23108. ))
  23109. characterMakers.push(() => makeCharacter(
  23110. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  23111. {
  23112. front: {
  23113. height: math.unit(4 + 2 / 12, "feet"),
  23114. weight: math.unit(70, "lb"),
  23115. name: "Front",
  23116. image: {
  23117. source: "./media/characters/naldara/front.svg",
  23118. extra: 1664/1387,
  23119. bottom: 81/1745
  23120. },
  23121. form: "anthro",
  23122. default: true
  23123. },
  23124. naga: {
  23125. height: math.unit(20, "feet"),
  23126. weight: math.unit(15000, "kg"),
  23127. name: "Front",
  23128. image: {
  23129. source: "./media/characters/naldara/naga.svg",
  23130. extra: 1590/1396,
  23131. bottom: 285/1875
  23132. },
  23133. form: "naga",
  23134. default: true
  23135. },
  23136. },
  23137. [
  23138. {
  23139. name: "Normal",
  23140. height: math.unit(4 + 2 / 12, "feet"),
  23141. form: "anthro",
  23142. default: true
  23143. },
  23144. {
  23145. name: "Normal",
  23146. height: math.unit(20, "feet"),
  23147. form: "naga",
  23148. default: true
  23149. },
  23150. ],
  23151. {
  23152. "anthro": {
  23153. name: "Anthro",
  23154. default: true
  23155. },
  23156. "naga": {
  23157. name: "Naga"
  23158. }
  23159. }
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23163. {
  23164. front: {
  23165. height: math.unit(13 + 7 / 12, "feet"),
  23166. weight: math.unit(1500, "lb"),
  23167. name: "Front",
  23168. image: {
  23169. source: "./media/characters/briar/front.svg",
  23170. extra: 1223/1157,
  23171. bottom: 123/1346
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Normal",
  23178. height: math.unit(13 + 7 / 12, "feet"),
  23179. default: true
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23185. {
  23186. side: {
  23187. height: math.unit(16, "feet"),
  23188. weight: math.unit(500, "lb"),
  23189. name: "Side",
  23190. image: {
  23191. source: "./media/characters/vanguard/side.svg",
  23192. extra: 1022/914,
  23193. bottom: 30/1052
  23194. }
  23195. },
  23196. sideAlt: {
  23197. height: math.unit(10, "feet"),
  23198. weight: math.unit(500, "lb"),
  23199. name: "Side (Alt)",
  23200. image: {
  23201. source: "./media/characters/vanguard/side-alt.svg",
  23202. extra: 502 / 425,
  23203. bottom: 0.087
  23204. }
  23205. },
  23206. },
  23207. [
  23208. {
  23209. name: "Normal",
  23210. height: math.unit(17.71, "feet"),
  23211. default: true
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(7.5, "feet"),
  23220. weight: math.unit(2, "lb"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/artemis/work-safe-front.svg",
  23224. extra: 1192 / 1075,
  23225. bottom: 0.07
  23226. },
  23227. form: "work-safe",
  23228. default: true
  23229. },
  23230. frontNsfw: {
  23231. height: math.unit(7.5, "feet"),
  23232. weight: math.unit(2, "lb"),
  23233. name: "Front",
  23234. image: {
  23235. source: "./media/characters/artemis/calibrating-front.svg",
  23236. extra: 1192 / 1075,
  23237. bottom: 0.07
  23238. },
  23239. form: "calibrating",
  23240. default: true
  23241. },
  23242. frontNsfwer: {
  23243. height: math.unit(7.5, "feet"),
  23244. weight: math.unit(2, "lb"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/artemis/oversize-load-front.svg",
  23248. extra: 1192 / 1075,
  23249. bottom: 0.07
  23250. },
  23251. form: "oversize-load",
  23252. default: true
  23253. },
  23254. side: {
  23255. height: math.unit(7.5, "feet"),
  23256. weight: math.unit(2, "lb"),
  23257. name: "Side",
  23258. image: {
  23259. source: "./media/characters/artemis/work-safe-side.svg",
  23260. extra: 1192 / 1075,
  23261. bottom: 0.07
  23262. },
  23263. form: "work-safe"
  23264. },
  23265. sideNsfw: {
  23266. height: math.unit(7.5, "feet"),
  23267. weight: math.unit(2, "lb"),
  23268. name: "Side",
  23269. image: {
  23270. source: "./media/characters/artemis/calibrating-side.svg",
  23271. extra: 1192 / 1075,
  23272. bottom: 0.07
  23273. },
  23274. form: "calibrating"
  23275. },
  23276. sideNsfwer: {
  23277. height: math.unit(7.5, "feet"),
  23278. weight: math.unit(2, "lb"),
  23279. name: "Side",
  23280. image: {
  23281. source: "./media/characters/artemis/oversize-load-side.svg",
  23282. extra: 1192 / 1075,
  23283. bottom: 0.07
  23284. },
  23285. form: "oversize-load"
  23286. },
  23287. maw: {
  23288. height: math.unit(1.1, "feet"),
  23289. name: "Maw",
  23290. image: {
  23291. source: "./media/characters/artemis/maw.svg"
  23292. },
  23293. form: "work-safe"
  23294. },
  23295. stomach: {
  23296. height: math.unit(0.95, "feet"),
  23297. name: "Stomach",
  23298. image: {
  23299. source: "./media/characters/artemis/stomach.svg"
  23300. },
  23301. form: "work-safe"
  23302. },
  23303. dickCanine: {
  23304. height: math.unit(1, "feet"),
  23305. name: "Dick (Canine)",
  23306. image: {
  23307. source: "./media/characters/artemis/dick-canine.svg"
  23308. },
  23309. form: "calibrating"
  23310. },
  23311. dickEquine: {
  23312. height: math.unit(0.85, "feet"),
  23313. name: "Dick (Equine)",
  23314. image: {
  23315. source: "./media/characters/artemis/dick-equine.svg"
  23316. },
  23317. form: "calibrating"
  23318. },
  23319. dickExotic: {
  23320. height: math.unit(0.85, "feet"),
  23321. name: "Dick (Exotic)",
  23322. image: {
  23323. source: "./media/characters/artemis/dick-exotic.svg"
  23324. },
  23325. form: "calibrating"
  23326. },
  23327. dickCanineBigger: {
  23328. height: math.unit(1 * 1.33, "feet"),
  23329. name: "Dick (Canine)",
  23330. image: {
  23331. source: "./media/characters/artemis/dick-canine.svg"
  23332. },
  23333. form: "oversize-load"
  23334. },
  23335. dickEquineBigger: {
  23336. height: math.unit(0.85 * 1.33, "feet"),
  23337. name: "Dick (Equine)",
  23338. image: {
  23339. source: "./media/characters/artemis/dick-equine.svg"
  23340. },
  23341. form: "oversize-load"
  23342. },
  23343. dickExoticBigger: {
  23344. height: math.unit(0.85 * 1.33, "feet"),
  23345. name: "Dick (Exotic)",
  23346. image: {
  23347. source: "./media/characters/artemis/dick-exotic.svg"
  23348. },
  23349. form: "oversize-load"
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(7.5, "feet"),
  23356. form: "work-safe",
  23357. default: true
  23358. },
  23359. {
  23360. name: "Normal",
  23361. height: math.unit(7.5, "feet"),
  23362. form: "calibrating",
  23363. default: true
  23364. },
  23365. {
  23366. name: "Normal",
  23367. height: math.unit(7.5, "feet"),
  23368. form: "oversize-load",
  23369. default: true
  23370. },
  23371. {
  23372. name: "Enlarged",
  23373. height: math.unit(12, "feet"),
  23374. form: "work-safe",
  23375. },
  23376. {
  23377. name: "Enlarged",
  23378. height: math.unit(12, "feet"),
  23379. form: "calibrating",
  23380. },
  23381. {
  23382. name: "Enlarged",
  23383. height: math.unit(12, "feet"),
  23384. form: "oversize-load",
  23385. },
  23386. ],
  23387. {
  23388. "work-safe": {
  23389. name: "Work-Safe",
  23390. default: true
  23391. },
  23392. "calibrating": {
  23393. name: "Calibrating"
  23394. },
  23395. "oversize-load": {
  23396. name: "Oversize Load"
  23397. }
  23398. }
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23402. {
  23403. front: {
  23404. height: math.unit(5 + 3 / 12, "feet"),
  23405. weight: math.unit(160, "lb"),
  23406. name: "Front",
  23407. image: {
  23408. source: "./media/characters/kira/front.svg",
  23409. extra: 906 / 786,
  23410. bottom: 0.01
  23411. }
  23412. },
  23413. back: {
  23414. height: math.unit(5 + 3 / 12, "feet"),
  23415. weight: math.unit(160, "lb"),
  23416. name: "Back",
  23417. image: {
  23418. source: "./media/characters/kira/back.svg",
  23419. extra: 882 / 757,
  23420. bottom: 0.005
  23421. }
  23422. },
  23423. frontDressed: {
  23424. height: math.unit(5 + 3 / 12, "feet"),
  23425. weight: math.unit(160, "lb"),
  23426. name: "Front (Dressed)",
  23427. image: {
  23428. source: "./media/characters/kira/front-dressed.svg",
  23429. extra: 906 / 786,
  23430. bottom: 0.01
  23431. }
  23432. },
  23433. beans: {
  23434. height: math.unit(0.92, "feet"),
  23435. name: "Beans",
  23436. image: {
  23437. source: "./media/characters/kira/beans.svg"
  23438. }
  23439. },
  23440. },
  23441. [
  23442. {
  23443. name: "Normal",
  23444. height: math.unit(5 + 3 / 12, "feet"),
  23445. default: true
  23446. },
  23447. ]
  23448. ))
  23449. characterMakers.push(() => makeCharacter(
  23450. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23451. {
  23452. front: {
  23453. height: math.unit(5 + 4 / 12, "feet"),
  23454. weight: math.unit(145, "lb"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/scramble/front.svg",
  23458. extra: 763 / 727,
  23459. bottom: 0.05
  23460. }
  23461. },
  23462. back: {
  23463. height: math.unit(5 + 4 / 12, "feet"),
  23464. weight: math.unit(145, "lb"),
  23465. name: "Back",
  23466. image: {
  23467. source: "./media/characters/scramble/back.svg",
  23468. extra: 826 / 737,
  23469. bottom: 0.002
  23470. }
  23471. },
  23472. },
  23473. [
  23474. {
  23475. name: "Normal",
  23476. height: math.unit(5 + 4 / 12, "feet"),
  23477. default: true
  23478. },
  23479. ]
  23480. ))
  23481. characterMakers.push(() => makeCharacter(
  23482. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23483. {
  23484. side: {
  23485. height: math.unit(6 + 2 / 12, "feet"),
  23486. weight: math.unit(190, "lb"),
  23487. name: "Side",
  23488. image: {
  23489. source: "./media/characters/biscuit/side.svg",
  23490. extra: 858 / 791,
  23491. bottom: 0.044
  23492. }
  23493. },
  23494. },
  23495. [
  23496. {
  23497. name: "Normal",
  23498. height: math.unit(6 + 2 / 12, "feet"),
  23499. default: true
  23500. },
  23501. ]
  23502. ))
  23503. characterMakers.push(() => makeCharacter(
  23504. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23505. {
  23506. front: {
  23507. height: math.unit(5 + 2 / 12, "feet"),
  23508. weight: math.unit(120, "lb"),
  23509. name: "Front",
  23510. image: {
  23511. source: "./media/characters/poffin/front.svg",
  23512. extra: 786 / 680,
  23513. bottom: 0.005
  23514. }
  23515. },
  23516. },
  23517. [
  23518. {
  23519. name: "Normal",
  23520. height: math.unit(5 + 2 / 12, "feet"),
  23521. default: true
  23522. },
  23523. ]
  23524. ))
  23525. characterMakers.push(() => makeCharacter(
  23526. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23527. {
  23528. front: {
  23529. height: math.unit(6 + 3 / 12, "feet"),
  23530. weight: math.unit(519, "lb"),
  23531. name: "Front",
  23532. image: {
  23533. source: "./media/characters/dhari/front.svg",
  23534. extra: 1048 / 946,
  23535. bottom: 0.015
  23536. }
  23537. },
  23538. back: {
  23539. height: math.unit(6 + 3 / 12, "feet"),
  23540. weight: math.unit(519, "lb"),
  23541. name: "Back",
  23542. image: {
  23543. source: "./media/characters/dhari/back.svg",
  23544. extra: 1048 / 931,
  23545. bottom: 0.005
  23546. }
  23547. },
  23548. frontDressed: {
  23549. height: math.unit(6 + 3 / 12, "feet"),
  23550. weight: math.unit(519, "lb"),
  23551. name: "Front (Dressed)",
  23552. image: {
  23553. source: "./media/characters/dhari/front-dressed.svg",
  23554. extra: 1713 / 1546,
  23555. bottom: 0.02
  23556. }
  23557. },
  23558. backDressed: {
  23559. height: math.unit(6 + 3 / 12, "feet"),
  23560. weight: math.unit(519, "lb"),
  23561. name: "Back (Dressed)",
  23562. image: {
  23563. source: "./media/characters/dhari/back-dressed.svg",
  23564. extra: 1699 / 1537,
  23565. bottom: 0.01
  23566. }
  23567. },
  23568. maw: {
  23569. height: math.unit(0.95, "feet"),
  23570. name: "Maw",
  23571. image: {
  23572. source: "./media/characters/dhari/maw.svg"
  23573. }
  23574. },
  23575. wereFront: {
  23576. height: math.unit(12 + 8 / 12, "feet"),
  23577. weight: math.unit(4000, "lb"),
  23578. name: "Front (Were)",
  23579. image: {
  23580. source: "./media/characters/dhari/were-front.svg",
  23581. extra: 1065 / 969,
  23582. bottom: 0.015
  23583. }
  23584. },
  23585. wereBack: {
  23586. height: math.unit(12 + 8 / 12, "feet"),
  23587. weight: math.unit(4000, "lb"),
  23588. name: "Back (Were)",
  23589. image: {
  23590. source: "./media/characters/dhari/were-back.svg",
  23591. extra: 1065 / 969,
  23592. bottom: 0.012
  23593. }
  23594. },
  23595. wereMaw: {
  23596. height: math.unit(0.625, "meters"),
  23597. name: "Maw (Were)",
  23598. image: {
  23599. source: "./media/characters/dhari/were-maw.svg"
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Normal",
  23606. height: math.unit(6 + 3 / 12, "feet"),
  23607. default: true
  23608. },
  23609. ]
  23610. ))
  23611. characterMakers.push(() => makeCharacter(
  23612. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23613. {
  23614. anthro: {
  23615. height: math.unit(5 + 7 / 12, "feet"),
  23616. weight: math.unit(175, "lb"),
  23617. name: "Anthro",
  23618. image: {
  23619. source: "./media/characters/rena-dyne/anthro.svg",
  23620. extra: 1849 / 1785,
  23621. bottom: 0.005
  23622. }
  23623. },
  23624. taur: {
  23625. height: math.unit(15 + 6 / 12, "feet"),
  23626. weight: math.unit(8000, "lb"),
  23627. name: "Taur",
  23628. image: {
  23629. source: "./media/characters/rena-dyne/taur.svg",
  23630. extra: 2315 / 2234,
  23631. bottom: 0.033
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(5 + 7 / 12, "feet"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(8, "feet"),
  23648. weight: math.unit(600, "lb"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/weremeep/front.svg",
  23652. extra: 970/849,
  23653. bottom: 7/977
  23654. }
  23655. },
  23656. },
  23657. [
  23658. {
  23659. name: "Normal",
  23660. height: math.unit(8, "feet"),
  23661. default: true
  23662. },
  23663. {
  23664. name: "Lorg",
  23665. height: math.unit(12, "feet")
  23666. },
  23667. {
  23668. name: "Oh Lawd She Comin'",
  23669. height: math.unit(20, "feet")
  23670. },
  23671. ]
  23672. ))
  23673. characterMakers.push(() => makeCharacter(
  23674. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23675. {
  23676. front: {
  23677. height: math.unit(4, "feet"),
  23678. weight: math.unit(90, "lb"),
  23679. name: "Front",
  23680. image: {
  23681. source: "./media/characters/reza/front.svg",
  23682. extra: 1183 / 1111,
  23683. bottom: 0.017
  23684. }
  23685. },
  23686. back: {
  23687. height: math.unit(4, "feet"),
  23688. weight: math.unit(90, "lb"),
  23689. name: "Back",
  23690. image: {
  23691. source: "./media/characters/reza/back.svg",
  23692. extra: 1183 / 1111,
  23693. bottom: 0.01
  23694. }
  23695. },
  23696. drake: {
  23697. height: math.unit(30, "feet"),
  23698. weight: math.unit(246960, "lb"),
  23699. name: "Drake",
  23700. image: {
  23701. source: "./media/characters/reza/drake.svg",
  23702. extra: 2350 / 2024,
  23703. bottom: 60.7 / 2403
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Normal",
  23710. height: math.unit(4, "feet"),
  23711. default: true
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23717. {
  23718. side: {
  23719. height: math.unit(15, "feet"),
  23720. weight: math.unit(14, "tons"),
  23721. name: "Side",
  23722. image: {
  23723. source: "./media/characters/athea/side.svg",
  23724. extra: 960 / 540,
  23725. bottom: 0.003
  23726. }
  23727. },
  23728. sitting: {
  23729. height: math.unit(6 * 2.85, "feet"),
  23730. weight: math.unit(14, "tons"),
  23731. name: "Sitting",
  23732. image: {
  23733. source: "./media/characters/athea/sitting.svg",
  23734. extra: 621 / 581,
  23735. bottom: 0.075
  23736. }
  23737. },
  23738. maw: {
  23739. height: math.unit(7.59498031496063, "feet"),
  23740. name: "Maw",
  23741. image: {
  23742. source: "./media/characters/athea/maw.svg"
  23743. }
  23744. },
  23745. },
  23746. [
  23747. {
  23748. name: "Lap Cat",
  23749. height: math.unit(2.5, "feet")
  23750. },
  23751. {
  23752. name: "Minimacro",
  23753. height: math.unit(15, "feet"),
  23754. default: true
  23755. },
  23756. {
  23757. name: "Macro",
  23758. height: math.unit(120, "feet")
  23759. },
  23760. {
  23761. name: "Macro+",
  23762. height: math.unit(640, "feet")
  23763. },
  23764. {
  23765. name: "Colossus",
  23766. height: math.unit(2.2, "miles")
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23772. {
  23773. front: {
  23774. height: math.unit(8 + 8 / 12, "feet"),
  23775. weight: math.unit(130, "kg"),
  23776. name: "Front",
  23777. image: {
  23778. source: "./media/characters/seroko/front.svg",
  23779. extra: 1385 / 1280,
  23780. bottom: 0.025
  23781. }
  23782. },
  23783. back: {
  23784. height: math.unit(8 + 8 / 12, "feet"),
  23785. weight: math.unit(130, "kg"),
  23786. name: "Back",
  23787. image: {
  23788. source: "./media/characters/seroko/back.svg",
  23789. extra: 1369 / 1238,
  23790. bottom: 0.018
  23791. }
  23792. },
  23793. frontDressed: {
  23794. height: math.unit(8 + 8 / 12, "feet"),
  23795. weight: math.unit(130, "kg"),
  23796. name: "Front (Dressed)",
  23797. image: {
  23798. source: "./media/characters/seroko/front-dressed.svg",
  23799. extra: 1366 / 1275,
  23800. bottom: 0.03
  23801. }
  23802. },
  23803. },
  23804. [
  23805. {
  23806. name: "Normal",
  23807. height: math.unit(8 + 8 / 12, "feet"),
  23808. default: true
  23809. },
  23810. ]
  23811. ))
  23812. characterMakers.push(() => makeCharacter(
  23813. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23814. {
  23815. front: {
  23816. height: math.unit(5.5, "feet"),
  23817. weight: math.unit(160, "lb"),
  23818. name: "Front",
  23819. image: {
  23820. source: "./media/characters/quatzi/front.svg",
  23821. extra: 2346 / 2242,
  23822. bottom: 0.015
  23823. }
  23824. },
  23825. },
  23826. [
  23827. {
  23828. name: "Normal",
  23829. height: math.unit(5.5, "feet"),
  23830. default: true
  23831. },
  23832. {
  23833. name: "Big",
  23834. height: math.unit(7.7, "feet")
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23840. {
  23841. front: {
  23842. height: math.unit(5 + 11 / 12, "feet"),
  23843. weight: math.unit(180, "lb"),
  23844. name: "Front",
  23845. image: {
  23846. source: "./media/characters/sen/front.svg",
  23847. extra: 1321 / 1254,
  23848. bottom: 0.015
  23849. }
  23850. },
  23851. side: {
  23852. height: math.unit(5 + 11 / 12, "feet"),
  23853. weight: math.unit(180, "lb"),
  23854. name: "Side",
  23855. image: {
  23856. source: "./media/characters/sen/side.svg",
  23857. extra: 1321 / 1254,
  23858. bottom: 0.007
  23859. }
  23860. },
  23861. back: {
  23862. height: math.unit(5 + 11 / 12, "feet"),
  23863. weight: math.unit(180, "lb"),
  23864. name: "Back",
  23865. image: {
  23866. source: "./media/characters/sen/back.svg",
  23867. extra: 1321 / 1254
  23868. }
  23869. },
  23870. },
  23871. [
  23872. {
  23873. name: "Normal",
  23874. height: math.unit(5 + 11 / 12, "feet"),
  23875. default: true
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23881. {
  23882. front: {
  23883. height: math.unit(166.6, "cm"),
  23884. weight: math.unit(66.6, "kg"),
  23885. name: "Front",
  23886. image: {
  23887. source: "./media/characters/fruity/front.svg",
  23888. extra: 1510 / 1386,
  23889. bottom: 0.04
  23890. }
  23891. },
  23892. back: {
  23893. height: math.unit(166.6, "cm"),
  23894. weight: math.unit(66.6, "lb"),
  23895. name: "Back",
  23896. image: {
  23897. source: "./media/characters/fruity/back.svg",
  23898. extra: 1563 / 1435,
  23899. bottom: 0.005
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Normal",
  23906. height: math.unit(166.6, "cm"),
  23907. default: true
  23908. },
  23909. {
  23910. name: "Demonic",
  23911. height: math.unit(166.6, "feet")
  23912. },
  23913. ]
  23914. ))
  23915. characterMakers.push(() => makeCharacter(
  23916. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23917. {
  23918. side: {
  23919. height: math.unit(10, "feet"),
  23920. weight: math.unit(500, "lb"),
  23921. name: "Side",
  23922. image: {
  23923. source: "./media/characters/zost/side.svg",
  23924. extra: 2870/2533,
  23925. bottom: 252/3122
  23926. }
  23927. },
  23928. mawFront: {
  23929. height: math.unit(1.08, "meters"),
  23930. name: "Maw (Front)",
  23931. image: {
  23932. source: "./media/characters/zost/maw-front.svg"
  23933. }
  23934. },
  23935. mawSide: {
  23936. height: math.unit(2.66, "feet"),
  23937. name: "Maw (Side)",
  23938. image: {
  23939. source: "./media/characters/zost/maw-side.svg"
  23940. }
  23941. },
  23942. wingspan: {
  23943. height: math.unit(7.4, "feet"),
  23944. name: "Wingspan",
  23945. image: {
  23946. source: "./media/characters/zost/wingspan.svg"
  23947. }
  23948. },
  23949. },
  23950. [
  23951. {
  23952. name: "Normal",
  23953. height: math.unit(10, "feet"),
  23954. default: true
  23955. },
  23956. ]
  23957. ))
  23958. characterMakers.push(() => makeCharacter(
  23959. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23960. {
  23961. front: {
  23962. height: math.unit(5 + 4 / 12, "feet"),
  23963. weight: math.unit(120, "lb"),
  23964. name: "Front",
  23965. image: {
  23966. source: "./media/characters/luci/front.svg",
  23967. extra: 1985 / 1884,
  23968. bottom: 0.04
  23969. }
  23970. },
  23971. back: {
  23972. height: math.unit(5 + 4 / 12, "feet"),
  23973. weight: math.unit(120, "lb"),
  23974. name: "Back",
  23975. image: {
  23976. source: "./media/characters/luci/back.svg",
  23977. extra: 1892 / 1791,
  23978. bottom: 0.002
  23979. }
  23980. },
  23981. },
  23982. [
  23983. {
  23984. name: "Normal",
  23985. height: math.unit(5 + 4 / 12, "feet"),
  23986. default: true
  23987. },
  23988. ]
  23989. ))
  23990. characterMakers.push(() => makeCharacter(
  23991. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23992. {
  23993. front: {
  23994. height: math.unit(1500, "feet"),
  23995. weight: math.unit(3.8e6, "tons"),
  23996. name: "Front",
  23997. image: {
  23998. source: "./media/characters/2th/front.svg",
  23999. extra: 3489 / 3350,
  24000. bottom: 0.1
  24001. }
  24002. },
  24003. foot: {
  24004. height: math.unit(461, "feet"),
  24005. name: "Foot",
  24006. image: {
  24007. source: "./media/characters/2th/foot.svg"
  24008. }
  24009. },
  24010. },
  24011. [
  24012. {
  24013. name: "\"Micro\"",
  24014. height: math.unit(15 + 7 / 12, "feet")
  24015. },
  24016. {
  24017. name: "Normal",
  24018. height: math.unit(1500, "feet"),
  24019. default: true
  24020. },
  24021. {
  24022. name: "Macro",
  24023. height: math.unit(5000, "feet")
  24024. },
  24025. {
  24026. name: "Megamacro",
  24027. height: math.unit(15, "miles")
  24028. },
  24029. {
  24030. name: "Gigamacro",
  24031. height: math.unit(4000, "miles")
  24032. },
  24033. {
  24034. name: "Galactic",
  24035. height: math.unit(50, "AU")
  24036. },
  24037. ]
  24038. ))
  24039. characterMakers.push(() => makeCharacter(
  24040. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  24041. {
  24042. front: {
  24043. height: math.unit(5 + 6 / 12, "feet"),
  24044. weight: math.unit(220, "lb"),
  24045. name: "Front",
  24046. image: {
  24047. source: "./media/characters/amethyst/front.svg",
  24048. extra: 2078 / 2040,
  24049. bottom: 0.045
  24050. }
  24051. },
  24052. back: {
  24053. height: math.unit(5 + 6 / 12, "feet"),
  24054. weight: math.unit(220, "lb"),
  24055. name: "Back",
  24056. image: {
  24057. source: "./media/characters/amethyst/back.svg",
  24058. extra: 2021 / 1989,
  24059. bottom: 0.02
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Normal",
  24066. height: math.unit(5 + 6 / 12, "feet"),
  24067. default: true
  24068. },
  24069. ]
  24070. ))
  24071. characterMakers.push(() => makeCharacter(
  24072. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  24073. {
  24074. front: {
  24075. height: math.unit(4 + 11 / 12, "feet"),
  24076. weight: math.unit(120, "lb"),
  24077. name: "Front",
  24078. image: {
  24079. source: "./media/characters/yumi-akiyama/front.svg",
  24080. extra: 2638/2432,
  24081. bottom: 70/2708
  24082. }
  24083. },
  24084. back: {
  24085. height: math.unit(4 + 11 / 12, "feet"),
  24086. weight: math.unit(120, "lb"),
  24087. name: "Back",
  24088. image: {
  24089. source: "./media/characters/yumi-akiyama/back.svg",
  24090. extra: 2502/2397,
  24091. bottom: 80/2582
  24092. }
  24093. },
  24094. casual: {
  24095. height: math.unit(4 + 11 / 12, "feet"),
  24096. weight: math.unit(120, "lb"),
  24097. name: "Casual",
  24098. image: {
  24099. source: "./media/characters/yumi-akiyama/casual.svg",
  24100. extra: 958/887,
  24101. bottom: 41/999
  24102. }
  24103. },
  24104. jammies: {
  24105. height: math.unit(4 + 11 / 12, "feet"),
  24106. weight: math.unit(120, "lb"),
  24107. name: "Jammies",
  24108. image: {
  24109. source: "./media/characters/yumi-akiyama/jammies.svg",
  24110. extra: 958/894,
  24111. bottom: 37/995
  24112. }
  24113. },
  24114. warmWeather: {
  24115. height: math.unit(4 + 11 / 12, "feet"),
  24116. weight: math.unit(120, "lb"),
  24117. name: "Warm Weather",
  24118. image: {
  24119. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  24120. extra: 929/865,
  24121. bottom: 76/1005
  24122. }
  24123. },
  24124. mouth: {
  24125. height: math.unit(0.35, "feet"),
  24126. name: "Mouth",
  24127. image: {
  24128. source: "./media/characters/yumi-akiyama/mouth.svg"
  24129. }
  24130. },
  24131. paws: {
  24132. height: math.unit(1.05, "feet"),
  24133. name: "Paws",
  24134. image: {
  24135. source: "./media/characters/yumi-akiyama/paws.svg"
  24136. }
  24137. },
  24138. cockRing: {
  24139. height: math.unit(0.225, "feet"),
  24140. name: "Cock Ring",
  24141. image: {
  24142. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24143. }
  24144. },
  24145. },
  24146. [
  24147. {
  24148. name: "Galactic",
  24149. height: math.unit(50, "galaxies"),
  24150. default: true
  24151. },
  24152. {
  24153. name: "Universal",
  24154. height: math.unit(100, "universes")
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(8, "feet"),
  24163. weight: math.unit(500, "lb"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/rifter-yrmori/front.svg",
  24167. extra: 1180 / 1125,
  24168. bottom: 0.02
  24169. }
  24170. },
  24171. back: {
  24172. height: math.unit(8, "feet"),
  24173. weight: math.unit(500, "lb"),
  24174. name: "Back",
  24175. image: {
  24176. source: "./media/characters/rifter-yrmori/back.svg",
  24177. extra: 1190 / 1145,
  24178. bottom: 0.001
  24179. }
  24180. },
  24181. wings: {
  24182. height: math.unit(7.75, "feet"),
  24183. weight: math.unit(500, "lb"),
  24184. name: "Wings",
  24185. image: {
  24186. source: "./media/characters/rifter-yrmori/wings.svg",
  24187. extra: 1357 / 1285
  24188. }
  24189. },
  24190. maw: {
  24191. height: math.unit(0.8, "feet"),
  24192. name: "Maw",
  24193. image: {
  24194. source: "./media/characters/rifter-yrmori/maw.svg"
  24195. }
  24196. },
  24197. mawfront: {
  24198. height: math.unit(1.45, "feet"),
  24199. name: "Maw (Front)",
  24200. image: {
  24201. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24202. }
  24203. },
  24204. },
  24205. [
  24206. {
  24207. name: "Normal",
  24208. height: math.unit(8, "feet"),
  24209. default: true
  24210. },
  24211. {
  24212. name: "Macro",
  24213. height: math.unit(42, "meters")
  24214. },
  24215. ]
  24216. ))
  24217. characterMakers.push(() => makeCharacter(
  24218. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24219. {
  24220. were: {
  24221. height: math.unit(25 + 6 / 12, "feet"),
  24222. weight: math.unit(10000, "lb"),
  24223. name: "Were",
  24224. image: {
  24225. source: "./media/characters/tahajin/were.svg",
  24226. extra: 801 / 770,
  24227. bottom: 0.042
  24228. }
  24229. },
  24230. aquatic: {
  24231. height: math.unit(6 + 4 / 12, "feet"),
  24232. weight: math.unit(160, "lb"),
  24233. name: "Aquatic",
  24234. image: {
  24235. source: "./media/characters/tahajin/aquatic.svg",
  24236. extra: 572 / 542,
  24237. bottom: 0.04
  24238. }
  24239. },
  24240. chow: {
  24241. height: math.unit(8 + 11 / 12, "feet"),
  24242. weight: math.unit(450, "lb"),
  24243. name: "Chow",
  24244. image: {
  24245. source: "./media/characters/tahajin/chow.svg",
  24246. extra: 660 / 640,
  24247. bottom: 0.015
  24248. }
  24249. },
  24250. demiNaga: {
  24251. height: math.unit(6 + 8 / 12, "feet"),
  24252. weight: math.unit(300, "lb"),
  24253. name: "Demi Naga",
  24254. image: {
  24255. source: "./media/characters/tahajin/demi-naga.svg",
  24256. extra: 643 / 615,
  24257. bottom: 0.1
  24258. }
  24259. },
  24260. data: {
  24261. height: math.unit(5, "inches"),
  24262. weight: math.unit(0.1, "lb"),
  24263. name: "Data",
  24264. image: {
  24265. source: "./media/characters/tahajin/data.svg"
  24266. }
  24267. },
  24268. fluu: {
  24269. height: math.unit(5 + 7 / 12, "feet"),
  24270. weight: math.unit(140, "lb"),
  24271. name: "Fluu",
  24272. image: {
  24273. source: "./media/characters/tahajin/fluu.svg",
  24274. extra: 628 / 592,
  24275. bottom: 0.02
  24276. }
  24277. },
  24278. starWarrior: {
  24279. height: math.unit(4 + 5 / 12, "feet"),
  24280. weight: math.unit(50, "lb"),
  24281. name: "Star Warrior",
  24282. image: {
  24283. source: "./media/characters/tahajin/star-warrior.svg"
  24284. }
  24285. },
  24286. },
  24287. [
  24288. {
  24289. name: "Normal",
  24290. height: math.unit(25 + 6 / 12, "feet"),
  24291. default: true
  24292. },
  24293. ]
  24294. ))
  24295. characterMakers.push(() => makeCharacter(
  24296. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24297. {
  24298. front: {
  24299. height: math.unit(8, "feet"),
  24300. weight: math.unit(350, "lb"),
  24301. name: "Front",
  24302. image: {
  24303. source: "./media/characters/gabira/front.svg",
  24304. extra: 1261/1154,
  24305. bottom: 51/1312
  24306. }
  24307. },
  24308. back: {
  24309. height: math.unit(8, "feet"),
  24310. weight: math.unit(350, "lb"),
  24311. name: "Back",
  24312. image: {
  24313. source: "./media/characters/gabira/back.svg",
  24314. extra: 1265/1163,
  24315. bottom: 46/1311
  24316. }
  24317. },
  24318. head: {
  24319. height: math.unit(2.85, "feet"),
  24320. name: "Head",
  24321. image: {
  24322. source: "./media/characters/gabira/head.svg"
  24323. }
  24324. },
  24325. },
  24326. [
  24327. {
  24328. name: "Normal",
  24329. height: math.unit(8, "feet"),
  24330. default: true
  24331. },
  24332. ]
  24333. ))
  24334. characterMakers.push(() => makeCharacter(
  24335. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24336. {
  24337. front: {
  24338. height: math.unit(5 + 3 / 12, "feet"),
  24339. weight: math.unit(137, "lb"),
  24340. name: "Front",
  24341. image: {
  24342. source: "./media/characters/sasha-katraine/front.svg",
  24343. extra: 1745/1694,
  24344. bottom: 37/1782
  24345. }
  24346. },
  24347. back: {
  24348. height: math.unit(5 + 3 / 12, "feet"),
  24349. weight: math.unit(137, "lb"),
  24350. name: "Back",
  24351. image: {
  24352. source: "./media/characters/sasha-katraine/back.svg",
  24353. extra: 1776/1699,
  24354. bottom: 26/1802
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Micro",
  24361. height: math.unit(5, "inches")
  24362. },
  24363. {
  24364. name: "Normal",
  24365. height: math.unit(5 + 3 / 12, "feet"),
  24366. default: true
  24367. },
  24368. ]
  24369. ))
  24370. characterMakers.push(() => makeCharacter(
  24371. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24372. {
  24373. side: {
  24374. height: math.unit(4, "inches"),
  24375. weight: math.unit(200, "grams"),
  24376. name: "Side",
  24377. image: {
  24378. source: "./media/characters/der/side.svg",
  24379. extra: 719 / 400,
  24380. bottom: 30.6 / 749.9187
  24381. }
  24382. },
  24383. },
  24384. [
  24385. {
  24386. name: "Micro",
  24387. height: math.unit(4, "inches"),
  24388. default: true
  24389. },
  24390. ]
  24391. ))
  24392. characterMakers.push(() => makeCharacter(
  24393. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24394. {
  24395. side: {
  24396. height: math.unit(30, "meters"),
  24397. weight: math.unit(700, "tonnes"),
  24398. name: "Side",
  24399. image: {
  24400. source: "./media/characters/fixerdragon/side.svg",
  24401. extra: (1293.0514 - 116.03) / 1106.86,
  24402. bottom: 116.03 / 1293.0514
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Planck",
  24409. height: math.unit(1.6e-35, "meters")
  24410. },
  24411. {
  24412. name: "Micro",
  24413. height: math.unit(0.4, "meters")
  24414. },
  24415. {
  24416. name: "Normal",
  24417. height: math.unit(30, "meters"),
  24418. default: true
  24419. },
  24420. {
  24421. name: "Megamacro",
  24422. height: math.unit(1.2, "megameters")
  24423. },
  24424. {
  24425. name: "Teramacro",
  24426. height: math.unit(130, "terameters")
  24427. },
  24428. {
  24429. name: "Yottamacro",
  24430. height: math.unit(6200, "yottameters")
  24431. },
  24432. ]
  24433. ));
  24434. characterMakers.push(() => makeCharacter(
  24435. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24436. {
  24437. front: {
  24438. height: math.unit(8, "feet"),
  24439. weight: math.unit(250, "lb"),
  24440. name: "Front",
  24441. image: {
  24442. source: "./media/characters/kite/front.svg",
  24443. extra: 456/414,
  24444. bottom: 24/480
  24445. }
  24446. },
  24447. },
  24448. [
  24449. {
  24450. name: "Normal",
  24451. height: math.unit(8, "feet"),
  24452. default: true
  24453. },
  24454. {
  24455. name: "Macro",
  24456. height: math.unit(360, "feet")
  24457. },
  24458. {
  24459. name: "Megamacro",
  24460. height: math.unit(1500, "feet")
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24466. {
  24467. anthro_front: {
  24468. height: math.unit(5 + 11/12, "feet"),
  24469. weight: math.unit(170, "lb"),
  24470. name: "Front",
  24471. image: {
  24472. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24473. extra: 1735/1585,
  24474. bottom: 96/1831
  24475. },
  24476. form: "anthro",
  24477. default: true
  24478. },
  24479. anthro_back: {
  24480. height: math.unit(5 + 11/12, "feet"),
  24481. weight: math.unit(170, "lb"),
  24482. name: "Back",
  24483. image: {
  24484. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24485. extra: 1749/1607,
  24486. bottom: 28/1777
  24487. },
  24488. form: "anthro"
  24489. },
  24490. anthro_male: {
  24491. height: math.unit(5 + 11/12, "feet"),
  24492. weight: math.unit(170, "lb"),
  24493. name: "Male",
  24494. image: {
  24495. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24496. extra: 1855/1713,
  24497. bottom: 63/1918
  24498. },
  24499. form: "anthro"
  24500. },
  24501. taur_front: {
  24502. height: math.unit(5 + 7/12, "feet"),
  24503. weight: math.unit(170, "lb"),
  24504. name: "Front",
  24505. image: {
  24506. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24507. extra: 1151/1059,
  24508. bottom: 356/1507
  24509. },
  24510. form: "taur",
  24511. default: true
  24512. },
  24513. anthro_frontDressed: {
  24514. height: math.unit(5 + 11/12, "feet"),
  24515. weight: math.unit(170, "lb"),
  24516. name: "Front (Dressed)",
  24517. image: {
  24518. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24519. extra: 1735/1585,
  24520. bottom: 96/1831
  24521. },
  24522. form: "anthro"
  24523. },
  24524. anthro_backDressed: {
  24525. height: math.unit(5 + 11/12, "feet"),
  24526. weight: math.unit(170, "lb"),
  24527. name: "Back (Dressed)",
  24528. image: {
  24529. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24530. extra: 1749/1607,
  24531. bottom: 28/1777
  24532. },
  24533. form: "anthro"
  24534. },
  24535. anthro_maleDressed: {
  24536. height: math.unit(5 + 11/12, "feet"),
  24537. weight: math.unit(170, "lb"),
  24538. name: "Male (Dressed)",
  24539. image: {
  24540. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24541. extra: 1855/1713,
  24542. bottom: 63/1918
  24543. },
  24544. form: "anthro"
  24545. },
  24546. taur_frontDressed: {
  24547. height: math.unit(5 + 7/12, "feet"),
  24548. weight: math.unit(170, "lb"),
  24549. name: "Front (Dressed)",
  24550. image: {
  24551. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24552. extra: 1151/1059,
  24553. bottom: 356/1507
  24554. },
  24555. form: "taur"
  24556. },
  24557. maw: {
  24558. height: math.unit(1.46, "feet"),
  24559. name: "Maw",
  24560. image: {
  24561. source: "./media/characters/poojawa-vynar/maw.svg"
  24562. },
  24563. allForms: true
  24564. },
  24565. head: {
  24566. height: math.unit(2.34, "feet"),
  24567. name: "Head",
  24568. image: {
  24569. source: "./media/characters/poojawa-vynar/head.svg"
  24570. },
  24571. allForms: true
  24572. },
  24573. leftPaw: {
  24574. height: math.unit(1.72, "feet"),
  24575. name: "Left Paw",
  24576. image: {
  24577. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24578. },
  24579. allForms: true
  24580. },
  24581. rightPaw: {
  24582. height: math.unit(1.61, "feet"),
  24583. name: "Right Paw",
  24584. image: {
  24585. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24586. },
  24587. allForms: true
  24588. },
  24589. toering: {
  24590. height: math.unit(2.9, "inches"),
  24591. name: "Toering",
  24592. image: {
  24593. source: "./media/characters/poojawa-vynar/toering.svg"
  24594. },
  24595. allForms: true
  24596. },
  24597. shaft: {
  24598. height: math.unit(0.625, "feet"),
  24599. name: "Shaft",
  24600. image: {
  24601. source: "./media/characters/poojawa-vynar/shaft.svg"
  24602. },
  24603. allForms: true
  24604. },
  24605. spade: {
  24606. height: math.unit(0.42, "feet"),
  24607. name: "Spade",
  24608. image: {
  24609. source: "./media/characters/poojawa-vynar/spade.svg"
  24610. },
  24611. allForms: true
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Shortstack",
  24617. height: math.unit(4, "feet"),
  24618. form: "anthro"
  24619. },
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(5 + 11 / 12, "feet"),
  24623. form: "anthro",
  24624. default: true
  24625. },
  24626. {
  24627. name: "Tauric",
  24628. height: math.unit(4, "meters"),
  24629. form: "taur",
  24630. default: true
  24631. },
  24632. ],
  24633. {
  24634. "anthro": {
  24635. name: "Anthro",
  24636. default: true
  24637. },
  24638. "taur": {
  24639. name: "Taur",
  24640. },
  24641. }
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24645. {
  24646. front: {
  24647. height: math.unit(293, "meters"),
  24648. weight: math.unit(70400, "tons"),
  24649. name: "Front",
  24650. image: {
  24651. source: "./media/characters/violette/front.svg",
  24652. extra: 1227 / 1180,
  24653. bottom: 0.005
  24654. }
  24655. },
  24656. back: {
  24657. height: math.unit(293, "meters"),
  24658. weight: math.unit(70400, "tons"),
  24659. name: "Back",
  24660. image: {
  24661. source: "./media/characters/violette/back.svg",
  24662. extra: 1227 / 1180,
  24663. bottom: 0.005
  24664. }
  24665. },
  24666. },
  24667. [
  24668. {
  24669. name: "Macro",
  24670. height: math.unit(293, "meters"),
  24671. default: true
  24672. },
  24673. ]
  24674. ))
  24675. characterMakers.push(() => makeCharacter(
  24676. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24677. {
  24678. front: {
  24679. height: math.unit(1050, "feet"),
  24680. weight: math.unit(200000, "tons"),
  24681. name: "Front",
  24682. image: {
  24683. source: "./media/characters/alessandra/front.svg",
  24684. extra: 960 / 912,
  24685. bottom: 0.06
  24686. }
  24687. },
  24688. },
  24689. [
  24690. {
  24691. name: "Macro",
  24692. height: math.unit(1050, "feet")
  24693. },
  24694. {
  24695. name: "Macro+",
  24696. height: math.unit(900, "meters"),
  24697. default: true
  24698. },
  24699. ]
  24700. ))
  24701. characterMakers.push(() => makeCharacter(
  24702. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24703. {
  24704. front: {
  24705. height: math.unit(5, "feet"),
  24706. weight: math.unit(187, "lb"),
  24707. name: "Front",
  24708. image: {
  24709. source: "./media/characters/person/front.svg",
  24710. extra: 3087 / 2945,
  24711. bottom: 91 / 3181
  24712. }
  24713. },
  24714. },
  24715. [
  24716. {
  24717. name: "Micro",
  24718. height: math.unit(3, "inches")
  24719. },
  24720. {
  24721. name: "Normal",
  24722. height: math.unit(5, "feet"),
  24723. default: true
  24724. },
  24725. {
  24726. name: "Macro",
  24727. height: math.unit(90, "feet")
  24728. },
  24729. {
  24730. name: "Max Size",
  24731. height: math.unit(280, "feet")
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24737. {
  24738. front: {
  24739. height: math.unit(12, "feet"),
  24740. weight: math.unit(3200, "lb"),
  24741. name: "Front",
  24742. image: {
  24743. source: "./media/characters/ty/front.svg",
  24744. extra: 753/703,
  24745. bottom: 61/814
  24746. }
  24747. },
  24748. back: {
  24749. height: math.unit(12, "feet"),
  24750. weight: math.unit(3200, "lb"),
  24751. name: "Back",
  24752. image: {
  24753. source: "./media/characters/ty/back.svg",
  24754. extra: 757/707,
  24755. bottom: 16/773
  24756. }
  24757. },
  24758. head: {
  24759. height: math.unit(3.7, "feet"),
  24760. name: "Head",
  24761. image: {
  24762. source: "./media/characters/ty/head.svg"
  24763. }
  24764. },
  24765. hand: {
  24766. height: math.unit(2.38, "feet"),
  24767. name: "Hand",
  24768. image: {
  24769. source: "./media/characters/ty/hand.svg"
  24770. }
  24771. },
  24772. tail: {
  24773. height: math.unit(8.01096641535, "feet"),
  24774. name: "Tail",
  24775. image: {
  24776. source: "./media/characters/ty/tail.svg"
  24777. }
  24778. },
  24779. },
  24780. [
  24781. {
  24782. name: "Normal",
  24783. height: math.unit(12, "feet"),
  24784. default: true
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24790. {
  24791. front: {
  24792. height: math.unit(5 + 4 / 12, "feet"),
  24793. weight: math.unit(115, "lb"),
  24794. name: "Front",
  24795. image: {
  24796. source: "./media/characters/rocky/front.svg",
  24797. extra: 1012 / 975,
  24798. bottom: 54 / 1066
  24799. }
  24800. },
  24801. },
  24802. [
  24803. {
  24804. name: "Normal",
  24805. height: math.unit(5 + 4 / 12, "feet"),
  24806. default: true
  24807. },
  24808. ]
  24809. ))
  24810. characterMakers.push(() => makeCharacter(
  24811. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24812. {
  24813. upright: {
  24814. height: math.unit(6, "meters"),
  24815. weight: math.unit(4000, "kg"),
  24816. name: "Upright",
  24817. image: {
  24818. source: "./media/characters/ruin/upright.svg",
  24819. extra: 668 / 661,
  24820. bottom: 42 / 799.8396
  24821. }
  24822. },
  24823. },
  24824. [
  24825. {
  24826. name: "Normal",
  24827. height: math.unit(6, "meters"),
  24828. default: true
  24829. },
  24830. ]
  24831. ))
  24832. characterMakers.push(() => makeCharacter(
  24833. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24834. {
  24835. front: {
  24836. height: math.unit(5, "feet"),
  24837. weight: math.unit(106, "lb"),
  24838. name: "Front",
  24839. image: {
  24840. source: "./media/characters/robin/front.svg",
  24841. extra: 862 / 799,
  24842. bottom: 42.4 / 914.8856
  24843. }
  24844. },
  24845. },
  24846. [
  24847. {
  24848. name: "Normal",
  24849. height: math.unit(5, "feet"),
  24850. default: true
  24851. },
  24852. ]
  24853. ))
  24854. characterMakers.push(() => makeCharacter(
  24855. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24856. {
  24857. side: {
  24858. height: math.unit(3, "feet"),
  24859. weight: math.unit(225, "lb"),
  24860. name: "Side",
  24861. image: {
  24862. source: "./media/characters/saian/side.svg",
  24863. extra: 566 / 356,
  24864. bottom: 79.7 / 643
  24865. }
  24866. },
  24867. maw: {
  24868. height: math.unit(2.85, "feet"),
  24869. name: "Maw",
  24870. image: {
  24871. source: "./media/characters/saian/maw.svg"
  24872. }
  24873. },
  24874. },
  24875. [
  24876. {
  24877. name: "Normal",
  24878. height: math.unit(3, "feet"),
  24879. default: true
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24885. {
  24886. side: {
  24887. height: math.unit(8, "feet"),
  24888. weight: math.unit(300, "lb"),
  24889. name: "Side",
  24890. image: {
  24891. source: "./media/characters/equus-silvermane/side.svg",
  24892. extra: 2176 / 2050,
  24893. bottom: 65.7 / 2245
  24894. }
  24895. },
  24896. front: {
  24897. height: math.unit(8, "feet"),
  24898. weight: math.unit(300, "lb"),
  24899. name: "Front",
  24900. image: {
  24901. source: "./media/characters/equus-silvermane/front.svg",
  24902. extra: 4633 / 4400,
  24903. bottom: 71.3 / 4706.915
  24904. }
  24905. },
  24906. sideStepping: {
  24907. height: math.unit(8, "feet"),
  24908. weight: math.unit(300, "lb"),
  24909. name: "Side (Stepping)",
  24910. image: {
  24911. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24912. extra: 1968 / 1860,
  24913. bottom: 16.4 / 1989
  24914. }
  24915. },
  24916. },
  24917. [
  24918. {
  24919. name: "Normal",
  24920. height: math.unit(8, "feet")
  24921. },
  24922. {
  24923. name: "Minimacro",
  24924. height: math.unit(75, "feet"),
  24925. default: true
  24926. },
  24927. {
  24928. name: "Macro",
  24929. height: math.unit(150, "feet")
  24930. },
  24931. {
  24932. name: "Macro+",
  24933. height: math.unit(1000, "feet")
  24934. },
  24935. {
  24936. name: "Megamacro",
  24937. height: math.unit(1, "mile")
  24938. },
  24939. ]
  24940. ))
  24941. characterMakers.push(() => makeCharacter(
  24942. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24943. {
  24944. side: {
  24945. height: math.unit(20, "feet"),
  24946. weight: math.unit(30000, "kg"),
  24947. name: "Side",
  24948. image: {
  24949. source: "./media/characters/windar/side.svg",
  24950. extra: 1491 / 1248,
  24951. bottom: 82.56 / 1568
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(20, "feet"),
  24959. default: true
  24960. },
  24961. ]
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24965. {
  24966. side: {
  24967. height: math.unit(15.66, "feet"),
  24968. weight: math.unit(150, "lb"),
  24969. name: "Side",
  24970. image: {
  24971. source: "./media/characters/melody/side.svg",
  24972. extra: 1097 / 944,
  24973. bottom: 11.8 / 1109
  24974. }
  24975. },
  24976. sideOutfit: {
  24977. height: math.unit(15.66, "feet"),
  24978. weight: math.unit(150, "lb"),
  24979. name: "Side (Outfit)",
  24980. image: {
  24981. source: "./media/characters/melody/side-outfit.svg",
  24982. extra: 1097 / 944,
  24983. bottom: 11.8 / 1109
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Normal",
  24990. height: math.unit(15.66, "feet"),
  24991. default: true
  24992. },
  24993. ]
  24994. ))
  24995. characterMakers.push(() => makeCharacter(
  24996. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24997. {
  24998. armoredFront: {
  24999. height: math.unit(8, "feet"),
  25000. weight: math.unit(325, "lb"),
  25001. name: "Front",
  25002. image: {
  25003. source: "./media/characters/windera/armored-front.svg",
  25004. extra: 1830/1598,
  25005. bottom: 151/1981
  25006. },
  25007. form: "armored",
  25008. default: true
  25009. },
  25010. macroFront: {
  25011. height: math.unit(70, "feet"),
  25012. weight: math.unit(315453, "lb"),
  25013. name: "Front",
  25014. image: {
  25015. source: "./media/characters/windera/macro-front.svg",
  25016. extra: 963/883,
  25017. bottom: 23/986
  25018. },
  25019. form: "macro",
  25020. default: true
  25021. },
  25022. },
  25023. [
  25024. {
  25025. name: "Normal",
  25026. height: math.unit(8, "feet"),
  25027. default: true,
  25028. form: "armored"
  25029. },
  25030. {
  25031. name: "Normal",
  25032. height: math.unit(70, "feet"),
  25033. default: true,
  25034. form: "macro"
  25035. },
  25036. ],
  25037. {
  25038. "armored": {
  25039. name: "Armored",
  25040. default: true
  25041. },
  25042. "macro": {
  25043. name: "Macro",
  25044. },
  25045. }
  25046. ))
  25047. characterMakers.push(() => makeCharacter(
  25048. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  25049. {
  25050. front: {
  25051. height: math.unit(28.75, "feet"),
  25052. weight: math.unit(2000, "kg"),
  25053. name: "Front",
  25054. image: {
  25055. source: "./media/characters/sonear/front.svg",
  25056. extra: 1041.1 / 964.9,
  25057. bottom: 53.7 / 1096.6
  25058. }
  25059. },
  25060. },
  25061. [
  25062. {
  25063. name: "Normal",
  25064. height: math.unit(28.75, "feet"),
  25065. default: true
  25066. },
  25067. ]
  25068. ))
  25069. characterMakers.push(() => makeCharacter(
  25070. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  25071. {
  25072. side: {
  25073. height: math.unit(25.5, "feet"),
  25074. weight: math.unit(23000, "kg"),
  25075. name: "Side",
  25076. image: {
  25077. source: "./media/characters/kanara/side.svg"
  25078. }
  25079. },
  25080. },
  25081. [
  25082. {
  25083. name: "Normal",
  25084. height: math.unit(25.5, "feet"),
  25085. default: true
  25086. },
  25087. ]
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  25091. {
  25092. side: {
  25093. height: math.unit(10, "feet"),
  25094. weight: math.unit(1000, "kg"),
  25095. name: "Side",
  25096. image: {
  25097. source: "./media/characters/ereus/side.svg",
  25098. extra: 1157 / 959,
  25099. bottom: 153 / 1312.5
  25100. }
  25101. },
  25102. },
  25103. [
  25104. {
  25105. name: "Normal",
  25106. height: math.unit(10, "feet"),
  25107. default: true
  25108. },
  25109. ]
  25110. ))
  25111. characterMakers.push(() => makeCharacter(
  25112. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  25113. {
  25114. side: {
  25115. height: math.unit(4.5, "feet"),
  25116. weight: math.unit(500, "lb"),
  25117. name: "Side",
  25118. image: {
  25119. source: "./media/characters/e-ter/side.svg",
  25120. extra: 1550 / 1248,
  25121. bottom: 146 / 1694
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Normal",
  25128. height: math.unit(4.5, "feet"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  25135. {
  25136. side: {
  25137. height: math.unit(9.7, "feet"),
  25138. weight: math.unit(4000, "kg"),
  25139. name: "Side",
  25140. image: {
  25141. source: "./media/characters/yamie/side.svg"
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(9.7, "feet"),
  25149. default: true
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25155. {
  25156. front: {
  25157. height: math.unit(50, "feet"),
  25158. weight: math.unit(50000, "kg"),
  25159. name: "Front",
  25160. image: {
  25161. source: "./media/characters/anders/front.svg",
  25162. extra: 570 / 539,
  25163. bottom: 14.7 / 586.7
  25164. }
  25165. },
  25166. },
  25167. [
  25168. {
  25169. name: "Large",
  25170. height: math.unit(50, "feet")
  25171. },
  25172. {
  25173. name: "Macro",
  25174. height: math.unit(2000, "feet"),
  25175. default: true
  25176. },
  25177. {
  25178. name: "Megamacro",
  25179. height: math.unit(12, "miles")
  25180. },
  25181. ]
  25182. ))
  25183. characterMakers.push(() => makeCharacter(
  25184. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25185. {
  25186. front: {
  25187. height: math.unit(7 + 2 / 12, "feet"),
  25188. weight: math.unit(300, "lb"),
  25189. name: "Front",
  25190. image: {
  25191. source: "./media/characters/reban/front.svg",
  25192. extra: 1287/1212,
  25193. bottom: 148/1435
  25194. }
  25195. },
  25196. head: {
  25197. height: math.unit(1.95, "feet"),
  25198. name: "Head",
  25199. image: {
  25200. source: "./media/characters/reban/head.svg"
  25201. }
  25202. },
  25203. maw: {
  25204. height: math.unit(0.95, "feet"),
  25205. name: "Maw",
  25206. image: {
  25207. source: "./media/characters/reban/maw.svg"
  25208. }
  25209. },
  25210. foot: {
  25211. height: math.unit(1.65, "feet"),
  25212. name: "Foot",
  25213. image: {
  25214. source: "./media/characters/reban/foot.svg"
  25215. }
  25216. },
  25217. dick: {
  25218. height: math.unit(7 / 5, "feet"),
  25219. name: "Dick",
  25220. image: {
  25221. source: "./media/characters/reban/dick.svg"
  25222. }
  25223. },
  25224. },
  25225. [
  25226. {
  25227. name: "Natural Height",
  25228. height: math.unit(7 + 2 / 12, "feet")
  25229. },
  25230. {
  25231. name: "Macro",
  25232. height: math.unit(500, "feet"),
  25233. default: true
  25234. },
  25235. {
  25236. name: "Canon Height",
  25237. height: math.unit(50, "AU")
  25238. },
  25239. ]
  25240. ))
  25241. characterMakers.push(() => makeCharacter(
  25242. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25243. {
  25244. front: {
  25245. height: math.unit(6, "feet"),
  25246. weight: math.unit(150, "lb"),
  25247. name: "Front",
  25248. image: {
  25249. source: "./media/characters/terrance-keayes/front.svg",
  25250. extra: 1.005,
  25251. bottom: 151 / 1615
  25252. }
  25253. },
  25254. side: {
  25255. height: math.unit(6, "feet"),
  25256. weight: math.unit(150, "lb"),
  25257. name: "Side",
  25258. image: {
  25259. source: "./media/characters/terrance-keayes/side.svg",
  25260. extra: 1.005,
  25261. bottom: 129.4 / 1544
  25262. }
  25263. },
  25264. back: {
  25265. height: math.unit(6, "feet"),
  25266. weight: math.unit(150, "lb"),
  25267. name: "Back",
  25268. image: {
  25269. source: "./media/characters/terrance-keayes/back.svg",
  25270. extra: 1.005,
  25271. bottom: 58.4 / 1557.3
  25272. }
  25273. },
  25274. dick: {
  25275. height: math.unit(6 * 0.208, "feet"),
  25276. name: "Dick",
  25277. image: {
  25278. source: "./media/characters/terrance-keayes/dick.svg"
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Canon Height",
  25285. height: math.unit(35, "miles"),
  25286. default: true
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25292. {
  25293. front: {
  25294. height: math.unit(6, "feet"),
  25295. weight: math.unit(150, "lb"),
  25296. name: "Front",
  25297. image: {
  25298. source: "./media/characters/ofelia/front.svg",
  25299. extra: 1130/1117,
  25300. bottom: 91/1221
  25301. }
  25302. },
  25303. back: {
  25304. height: math.unit(6, "feet"),
  25305. weight: math.unit(150, "lb"),
  25306. name: "Back",
  25307. image: {
  25308. source: "./media/characters/ofelia/back.svg",
  25309. extra: 1172/1159,
  25310. bottom: 28/1200
  25311. }
  25312. },
  25313. maw: {
  25314. height: math.unit(1, "feet"),
  25315. name: "Maw",
  25316. image: {
  25317. source: "./media/characters/ofelia/maw.svg"
  25318. }
  25319. },
  25320. foot: {
  25321. height: math.unit(1.949, "feet"),
  25322. name: "Foot",
  25323. image: {
  25324. source: "./media/characters/ofelia/foot.svg"
  25325. }
  25326. },
  25327. },
  25328. [
  25329. {
  25330. name: "Canon Height",
  25331. height: math.unit(2000, "miles"),
  25332. default: true
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25338. {
  25339. front: {
  25340. height: math.unit(6, "feet"),
  25341. weight: math.unit(150, "lb"),
  25342. name: "Front",
  25343. image: {
  25344. source: "./media/characters/samuel/front.svg",
  25345. extra: 265 / 258,
  25346. bottom: 2 / 266.1566
  25347. }
  25348. },
  25349. },
  25350. [
  25351. {
  25352. name: "Macro",
  25353. height: math.unit(100, "feet"),
  25354. default: true
  25355. },
  25356. {
  25357. name: "Full Size",
  25358. height: math.unit(1000, "miles")
  25359. },
  25360. ]
  25361. ))
  25362. characterMakers.push(() => makeCharacter(
  25363. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25364. {
  25365. front: {
  25366. height: math.unit(6, "feet"),
  25367. weight: math.unit(300, "lb"),
  25368. name: "Front",
  25369. image: {
  25370. source: "./media/characters/beishir-kiel/front.svg",
  25371. extra: 569 / 547,
  25372. bottom: 41.9 / 609
  25373. }
  25374. },
  25375. maw: {
  25376. height: math.unit(6 * 0.202, "feet"),
  25377. name: "Maw",
  25378. image: {
  25379. source: "./media/characters/beishir-kiel/maw.svg"
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Macro",
  25386. height: math.unit(300, "feet"),
  25387. default: true
  25388. },
  25389. ]
  25390. ))
  25391. characterMakers.push(() => makeCharacter(
  25392. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25393. {
  25394. front: {
  25395. height: math.unit(5 + 7/12, "feet"),
  25396. weight: math.unit(120, "lb"),
  25397. name: "Front",
  25398. image: {
  25399. source: "./media/characters/logan-grey/front.svg",
  25400. extra: 1836/1738,
  25401. bottom: 108/1944
  25402. }
  25403. },
  25404. back: {
  25405. height: math.unit(5 + 7/12, "feet"),
  25406. weight: math.unit(120, "lb"),
  25407. name: "Back",
  25408. image: {
  25409. source: "./media/characters/logan-grey/back.svg",
  25410. extra: 1880/1794,
  25411. bottom: 24/1904
  25412. }
  25413. },
  25414. frontSfw: {
  25415. height: math.unit(5 + 7/12, "feet"),
  25416. weight: math.unit(120, "lb"),
  25417. name: "Front (SFW)",
  25418. image: {
  25419. source: "./media/characters/logan-grey/front-sfw.svg",
  25420. extra: 1836/1738,
  25421. bottom: 108/1944
  25422. }
  25423. },
  25424. backSfw: {
  25425. height: math.unit(5 + 7/12, "feet"),
  25426. weight: math.unit(120, "lb"),
  25427. name: "Back (SFW)",
  25428. image: {
  25429. source: "./media/characters/logan-grey/back-sfw.svg",
  25430. extra: 1880/1794,
  25431. bottom: 24/1904
  25432. }
  25433. },
  25434. hands: {
  25435. height: math.unit(0.84, "feet"),
  25436. name: "Hands",
  25437. image: {
  25438. source: "./media/characters/logan-grey/hands.svg"
  25439. }
  25440. },
  25441. paws: {
  25442. height: math.unit(0.72, "feet"),
  25443. name: "Paws",
  25444. image: {
  25445. source: "./media/characters/logan-grey/paws.svg"
  25446. }
  25447. },
  25448. cock: {
  25449. height: math.unit(1.45, "feet"),
  25450. name: "Cock",
  25451. image: {
  25452. source: "./media/characters/logan-grey/cock.svg"
  25453. }
  25454. },
  25455. cockAlt: {
  25456. height: math.unit(1.437, "feet"),
  25457. name: "Cock (alt)",
  25458. image: {
  25459. source: "./media/characters/logan-grey/cock-alt.svg"
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Normal",
  25466. height: math.unit(5 + 8 / 12, "feet")
  25467. },
  25468. {
  25469. name: "The 500 Foot Femboy",
  25470. height: math.unit(500, "feet"),
  25471. default: true
  25472. },
  25473. {
  25474. name: "Megmacro",
  25475. height: math.unit(20, "miles")
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(8 + 2 / 12, "feet"),
  25484. weight: math.unit(275, "lb"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/draganta/front.svg",
  25488. extra: 1177 / 1135,
  25489. bottom: 33.46 / 1212.1
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Normal",
  25496. height: math.unit(8 + 6 / 12, "feet"),
  25497. default: true
  25498. },
  25499. {
  25500. name: "Macro",
  25501. height: math.unit(150, "feet")
  25502. },
  25503. {
  25504. name: "Megamacro",
  25505. height: math.unit(1000, "miles")
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25511. {
  25512. front: {
  25513. height: math.unit(1.72, "m"),
  25514. weight: math.unit(80, "lb"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/voski/front.svg",
  25518. extra: 2076.22 / 2022.4,
  25519. bottom: 102.7 / 2177.3866
  25520. }
  25521. },
  25522. frontFlaccid: {
  25523. height: math.unit(1.72, "m"),
  25524. weight: math.unit(80, "lb"),
  25525. name: "Front (Flaccid)",
  25526. image: {
  25527. source: "./media/characters/voski/front-flaccid.svg",
  25528. extra: 2076.22 / 2022.4,
  25529. bottom: 102.7 / 2177.3866
  25530. }
  25531. },
  25532. frontErect: {
  25533. height: math.unit(1.72, "m"),
  25534. weight: math.unit(80, "lb"),
  25535. name: "Front (Erect)",
  25536. image: {
  25537. source: "./media/characters/voski/front-erect.svg",
  25538. extra: 2076.22 / 2022.4,
  25539. bottom: 102.7 / 2177.3866
  25540. }
  25541. },
  25542. back: {
  25543. height: math.unit(1.72, "m"),
  25544. weight: math.unit(80, "lb"),
  25545. name: "Back",
  25546. image: {
  25547. source: "./media/characters/voski/back.svg",
  25548. extra: 2104 / 2051,
  25549. bottom: 10.45 / 2113.63
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Normal",
  25556. height: math.unit(1.72, "m")
  25557. },
  25558. {
  25559. name: "Macro",
  25560. height: math.unit(55, "m"),
  25561. default: true
  25562. },
  25563. {
  25564. name: "Macro+",
  25565. height: math.unit(300, "m")
  25566. },
  25567. {
  25568. name: "Macro++",
  25569. height: math.unit(700, "m")
  25570. },
  25571. {
  25572. name: "Macro+++",
  25573. height: math.unit(4500, "m")
  25574. },
  25575. {
  25576. name: "Macro++++",
  25577. height: math.unit(45, "km")
  25578. },
  25579. {
  25580. name: "Macro+++++",
  25581. height: math.unit(1220, "km")
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25587. {
  25588. front: {
  25589. height: math.unit(2.3, "m"),
  25590. weight: math.unit(304, "kg"),
  25591. name: "Front",
  25592. image: {
  25593. source: "./media/characters/icowom-lee/front.svg",
  25594. extra: 985 / 955,
  25595. bottom: 25.4 / 1012
  25596. }
  25597. },
  25598. fronttentacles: {
  25599. height: math.unit(2.3, "m"),
  25600. weight: math.unit(304, "kg"),
  25601. name: "Front (Tentacles)",
  25602. image: {
  25603. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25604. extra: 985 / 955,
  25605. bottom: 25.4 / 1012
  25606. }
  25607. },
  25608. back: {
  25609. height: math.unit(2.3, "m"),
  25610. weight: math.unit(304, "kg"),
  25611. name: "Back",
  25612. image: {
  25613. source: "./media/characters/icowom-lee/back.svg",
  25614. extra: 975 / 954,
  25615. bottom: 9.5 / 985
  25616. }
  25617. },
  25618. backtentacles: {
  25619. height: math.unit(2.3, "m"),
  25620. weight: math.unit(304, "kg"),
  25621. name: "Back (Tentacles)",
  25622. image: {
  25623. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25624. extra: 975 / 954,
  25625. bottom: 9.5 / 985
  25626. }
  25627. },
  25628. frontDressed: {
  25629. height: math.unit(2.3, "m"),
  25630. weight: math.unit(304, "kg"),
  25631. name: "Front (Dressed)",
  25632. image: {
  25633. source: "./media/characters/icowom-lee/front-dressed.svg",
  25634. extra: 3076 / 2933,
  25635. bottom: 51.4 / 3125.1889
  25636. }
  25637. },
  25638. rump: {
  25639. height: math.unit(0.776, "meters"),
  25640. name: "Rump",
  25641. image: {
  25642. source: "./media/characters/icowom-lee/rump.svg"
  25643. }
  25644. },
  25645. genitals: {
  25646. height: math.unit(0.78, "meters"),
  25647. name: "Genitals",
  25648. image: {
  25649. source: "./media/characters/icowom-lee/genitals.svg"
  25650. }
  25651. },
  25652. },
  25653. [
  25654. {
  25655. name: "Normal",
  25656. height: math.unit(2.3, "meters"),
  25657. default: true
  25658. },
  25659. {
  25660. name: "Macro",
  25661. height: math.unit(94, "meters"),
  25662. default: true
  25663. },
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25668. {
  25669. front: {
  25670. height: math.unit(22, "meters"),
  25671. weight: math.unit(21000, "kg"),
  25672. name: "Front",
  25673. image: {
  25674. source: "./media/characters/shock-diamond/front.svg",
  25675. extra: 2204 / 2053,
  25676. bottom: 65 / 2239.47
  25677. }
  25678. },
  25679. frontNude: {
  25680. height: math.unit(22, "meters"),
  25681. weight: math.unit(21000, "kg"),
  25682. name: "Front (Nude)",
  25683. image: {
  25684. source: "./media/characters/shock-diamond/front-nude.svg",
  25685. extra: 2514 / 2285,
  25686. bottom: 13 / 2527.56
  25687. }
  25688. },
  25689. },
  25690. [
  25691. {
  25692. name: "Normal",
  25693. height: math.unit(3, "meters")
  25694. },
  25695. {
  25696. name: "Macro",
  25697. height: math.unit(22, "meters"),
  25698. default: true
  25699. },
  25700. ]
  25701. ))
  25702. characterMakers.push(() => makeCharacter(
  25703. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25704. {
  25705. front: {
  25706. height: math.unit(5 + 4/12, "feet"),
  25707. weight: math.unit(125, "lb"),
  25708. name: "Front",
  25709. image: {
  25710. source: "./media/characters/rory/front.svg",
  25711. extra: 1790/1681,
  25712. bottom: 66/1856
  25713. },
  25714. form: "normal",
  25715. default: true
  25716. },
  25717. back: {
  25718. height: math.unit(5 + 4/12, "feet"),
  25719. weight: math.unit(125, "lb"),
  25720. name: "Back",
  25721. image: {
  25722. source: "./media/characters/rory/back.svg",
  25723. extra: 1805/1690,
  25724. bottom: 56/1861
  25725. },
  25726. form: "normal"
  25727. },
  25728. frontDressed: {
  25729. height: math.unit(5 + 4/12, "feet"),
  25730. weight: math.unit(125, "lb"),
  25731. name: "Front (Dressed)",
  25732. image: {
  25733. source: "./media/characters/rory/front-dressed.svg",
  25734. extra: 1790/1681,
  25735. bottom: 66/1856
  25736. },
  25737. form: "normal"
  25738. },
  25739. backDressed: {
  25740. height: math.unit(5 + 4/12, "feet"),
  25741. weight: math.unit(125, "lb"),
  25742. name: "Back (Dressed)",
  25743. image: {
  25744. source: "./media/characters/rory/back-dressed.svg",
  25745. extra: 1805/1690,
  25746. bottom: 56/1861
  25747. },
  25748. form: "normal"
  25749. },
  25750. frontNsfw: {
  25751. height: math.unit(5 + 4/12, "feet"),
  25752. weight: math.unit(125, "lb"),
  25753. name: "Front (NSFW)",
  25754. image: {
  25755. source: "./media/characters/rory/front-nsfw.svg",
  25756. extra: 1790/1681,
  25757. bottom: 66/1856
  25758. },
  25759. form: "normal"
  25760. },
  25761. backNsfw: {
  25762. height: math.unit(5 + 4/12, "feet"),
  25763. weight: math.unit(125, "lb"),
  25764. name: "Back (NSFW)",
  25765. image: {
  25766. source: "./media/characters/rory/back-nsfw.svg",
  25767. extra: 1805/1690,
  25768. bottom: 56/1861
  25769. },
  25770. form: "normal"
  25771. },
  25772. dick: {
  25773. height: math.unit(0.8, "feet"),
  25774. name: "Dick",
  25775. image: {
  25776. source: "./media/characters/rory/dick.svg"
  25777. },
  25778. form: "normal"
  25779. },
  25780. thicc_front: {
  25781. height: math.unit(5 + 4/12, "feet"),
  25782. weight: math.unit(195, "lb"),
  25783. name: "Front",
  25784. image: {
  25785. source: "./media/characters/rory/thicc-front.svg",
  25786. extra: 1220/1100,
  25787. bottom: 103/1323
  25788. },
  25789. form: "thicc",
  25790. default: true
  25791. },
  25792. thicc_back: {
  25793. height: math.unit(5 + 4/12, "feet"),
  25794. weight: math.unit(195, "lb"),
  25795. name: "Back",
  25796. image: {
  25797. source: "./media/characters/rory/thicc-back.svg",
  25798. extra: 1166/1086,
  25799. bottom: 35/1201
  25800. },
  25801. form: "thicc"
  25802. },
  25803. },
  25804. [
  25805. {
  25806. name: "Micro",
  25807. height: math.unit(3, "inches"),
  25808. allForms: true
  25809. },
  25810. {
  25811. name: "Normal",
  25812. height: math.unit(5 + 4/12, "feet"),
  25813. allForms: true,
  25814. default: true
  25815. },
  25816. {
  25817. name: "Macro",
  25818. height: math.unit(90, "feet"),
  25819. allForms: true
  25820. },
  25821. {
  25822. name: "Supercharged",
  25823. height: math.unit(270, "feet"),
  25824. allForms: true
  25825. },
  25826. ],
  25827. {
  25828. "normal": {
  25829. name: "Normal",
  25830. default: true
  25831. },
  25832. "thicc": {
  25833. name: "Thicc",
  25834. },
  25835. }
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25839. {
  25840. front: {
  25841. height: math.unit(5 + 9 / 12, "feet"),
  25842. weight: math.unit(190, "lb"),
  25843. name: "Front",
  25844. image: {
  25845. source: "./media/characters/sprisk/front.svg",
  25846. extra: 1225 / 1180,
  25847. bottom: 42.7 / 1266.4
  25848. }
  25849. },
  25850. frontNsfw: {
  25851. height: math.unit(5 + 9 / 12, "feet"),
  25852. weight: math.unit(190, "lb"),
  25853. name: "Front (NSFW)",
  25854. image: {
  25855. source: "./media/characters/sprisk/front-nsfw.svg",
  25856. extra: 1225 / 1180,
  25857. bottom: 42.7 / 1266.4
  25858. }
  25859. },
  25860. back: {
  25861. height: math.unit(5 + 9 / 12, "feet"),
  25862. weight: math.unit(190, "lb"),
  25863. name: "Back",
  25864. image: {
  25865. source: "./media/characters/sprisk/back.svg",
  25866. extra: 1247 / 1200,
  25867. bottom: 5.6 / 1253.04
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Tiny",
  25874. height: math.unit(2, "inches")
  25875. },
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(5 + 9 / 12, "feet"),
  25879. default: true
  25880. },
  25881. {
  25882. name: "Mini Macro",
  25883. height: math.unit(18, "feet")
  25884. },
  25885. {
  25886. name: "Macro",
  25887. height: math.unit(100, "feet")
  25888. },
  25889. {
  25890. name: "MACRO",
  25891. height: math.unit(50, "miles")
  25892. },
  25893. {
  25894. name: "M A C R O",
  25895. height: math.unit(300, "miles")
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25901. {
  25902. side: {
  25903. height: math.unit(15.6, "meters"),
  25904. weight: math.unit(700000, "kg"),
  25905. name: "Side",
  25906. image: {
  25907. source: "./media/characters/bunsen/side.svg",
  25908. extra: 1644 / 358
  25909. }
  25910. },
  25911. foot: {
  25912. height: math.unit(1.611 * 1644 / 358, "meter"),
  25913. name: "Foot",
  25914. image: {
  25915. source: "./media/characters/bunsen/foot.svg"
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Small",
  25922. height: math.unit(10, "feet")
  25923. },
  25924. {
  25925. name: "Normal",
  25926. height: math.unit(15.6, "meters"),
  25927. default: true
  25928. },
  25929. ]
  25930. ))
  25931. characterMakers.push(() => makeCharacter(
  25932. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25933. {
  25934. front: {
  25935. height: math.unit(4 + 11 / 12, "feet"),
  25936. weight: math.unit(140, "lb"),
  25937. name: "Front",
  25938. image: {
  25939. source: "./media/characters/sesh/front.svg",
  25940. extra: 3420 / 3231,
  25941. bottom: 72 / 3949.5
  25942. }
  25943. },
  25944. },
  25945. [
  25946. {
  25947. name: "Normal",
  25948. height: math.unit(4 + 11 / 12, "feet")
  25949. },
  25950. {
  25951. name: "Grown",
  25952. height: math.unit(15, "feet"),
  25953. default: true
  25954. },
  25955. {
  25956. name: "Macro",
  25957. height: math.unit(1500, "feet")
  25958. },
  25959. {
  25960. name: "Megamacro",
  25961. height: math.unit(30, "miles")
  25962. },
  25963. {
  25964. name: "Continental",
  25965. height: math.unit(3000, "miles")
  25966. },
  25967. {
  25968. name: "Gravity Mass",
  25969. height: math.unit(300000, "miles")
  25970. },
  25971. {
  25972. name: "Planet Buster",
  25973. height: math.unit(30000000, "miles")
  25974. },
  25975. {
  25976. name: "Big",
  25977. height: math.unit(3000000000, "miles")
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(9, "feet"),
  25986. weight: math.unit(350, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/pepper/front.svg",
  25990. extra: 1448 / 1312,
  25991. bottom: 9.4 / 1457.88
  25992. }
  25993. },
  25994. back: {
  25995. height: math.unit(9, "feet"),
  25996. weight: math.unit(350, "lb"),
  25997. name: "Back",
  25998. image: {
  25999. source: "./media/characters/pepper/back.svg",
  26000. extra: 1423 / 1300,
  26001. bottom: 4.6 / 1429
  26002. }
  26003. },
  26004. maw: {
  26005. height: math.unit(0.932, "feet"),
  26006. name: "Maw",
  26007. image: {
  26008. source: "./media/characters/pepper/maw.svg"
  26009. }
  26010. },
  26011. },
  26012. [
  26013. {
  26014. name: "Normal",
  26015. height: math.unit(9, "feet"),
  26016. default: true
  26017. },
  26018. ]
  26019. ))
  26020. characterMakers.push(() => makeCharacter(
  26021. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  26022. {
  26023. front: {
  26024. height: math.unit(6, "feet"),
  26025. weight: math.unit(150, "lb"),
  26026. name: "Front",
  26027. image: {
  26028. source: "./media/characters/maelstrom/front.svg",
  26029. extra: 2100 / 1883,
  26030. bottom: 94 / 2196.7
  26031. }
  26032. },
  26033. },
  26034. [
  26035. {
  26036. name: "Less Kaiju",
  26037. height: math.unit(200, "feet")
  26038. },
  26039. {
  26040. name: "Kaiju",
  26041. height: math.unit(400, "feet"),
  26042. default: true
  26043. },
  26044. {
  26045. name: "Kaiju-er",
  26046. height: math.unit(600, "feet")
  26047. },
  26048. ]
  26049. ))
  26050. characterMakers.push(() => makeCharacter(
  26051. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  26052. {
  26053. front: {
  26054. height: math.unit(6 + 5 / 12, "feet"),
  26055. weight: math.unit(180, "lb"),
  26056. name: "Front",
  26057. image: {
  26058. source: "./media/characters/lexir/front.svg",
  26059. extra: 180 / 172,
  26060. bottom: 12 / 192
  26061. }
  26062. },
  26063. back: {
  26064. height: math.unit(6 + 5 / 12, "feet"),
  26065. weight: math.unit(180, "lb"),
  26066. name: "Back",
  26067. image: {
  26068. source: "./media/characters/lexir/back.svg",
  26069. extra: 1273/1201,
  26070. bottom: 39/1312
  26071. }
  26072. },
  26073. },
  26074. [
  26075. {
  26076. name: "Very Smal",
  26077. height: math.unit(1, "nm")
  26078. },
  26079. {
  26080. name: "Normal",
  26081. height: math.unit(6 + 5 / 12, "feet"),
  26082. default: true
  26083. },
  26084. {
  26085. name: "Macro",
  26086. height: math.unit(1, "mile")
  26087. },
  26088. {
  26089. name: "Megamacro",
  26090. height: math.unit(50, "miles")
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(1.5, "meters"),
  26099. weight: math.unit(100, "lb"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/maksio/front.svg",
  26103. extra: 1549 / 1531,
  26104. bottom: 123.7 / 1674.5429
  26105. }
  26106. },
  26107. back: {
  26108. height: math.unit(1.5, "meters"),
  26109. weight: math.unit(100, "lb"),
  26110. name: "Back",
  26111. image: {
  26112. source: "./media/characters/maksio/back.svg",
  26113. extra: 1541 / 1509,
  26114. bottom: 97 / 1639
  26115. }
  26116. },
  26117. hand: {
  26118. height: math.unit(0.621, "feet"),
  26119. name: "Hand",
  26120. image: {
  26121. source: "./media/characters/maksio/hand.svg"
  26122. }
  26123. },
  26124. foot: {
  26125. height: math.unit(1.611, "feet"),
  26126. name: "Foot",
  26127. image: {
  26128. source: "./media/characters/maksio/foot.svg"
  26129. }
  26130. },
  26131. },
  26132. [
  26133. {
  26134. name: "Shrunken",
  26135. height: math.unit(10, "cm")
  26136. },
  26137. {
  26138. name: "Normal",
  26139. height: math.unit(150, "cm"),
  26140. default: true
  26141. },
  26142. ]
  26143. ))
  26144. characterMakers.push(() => makeCharacter(
  26145. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26146. {
  26147. front: {
  26148. height: math.unit(100, "feet"),
  26149. name: "Front",
  26150. image: {
  26151. source: "./media/characters/erza-bear/front.svg",
  26152. extra: 2449 / 2390,
  26153. bottom: 46 / 2494
  26154. }
  26155. },
  26156. back: {
  26157. height: math.unit(100, "feet"),
  26158. name: "Back",
  26159. image: {
  26160. source: "./media/characters/erza-bear/back.svg",
  26161. extra: 2489 / 2430,
  26162. bottom: 85.4 / 2480
  26163. }
  26164. },
  26165. tail: {
  26166. height: math.unit(42, "feet"),
  26167. name: "Tail",
  26168. image: {
  26169. source: "./media/characters/erza-bear/tail.svg"
  26170. }
  26171. },
  26172. tongue: {
  26173. height: math.unit(8, "feet"),
  26174. name: "Tongue",
  26175. image: {
  26176. source: "./media/characters/erza-bear/tongue.svg"
  26177. }
  26178. },
  26179. dick: {
  26180. height: math.unit(10.5, "feet"),
  26181. name: "Dick",
  26182. image: {
  26183. source: "./media/characters/erza-bear/dick.svg"
  26184. }
  26185. },
  26186. dickVertical: {
  26187. height: math.unit(16.9, "feet"),
  26188. name: "Dick (Vertical)",
  26189. image: {
  26190. source: "./media/characters/erza-bear/dick-vertical.svg"
  26191. }
  26192. },
  26193. },
  26194. [
  26195. {
  26196. name: "Macro",
  26197. height: math.unit(100, "feet"),
  26198. default: true
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(172, "cm"),
  26207. weight: math.unit(73, "kg"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/violet-flor/front.svg",
  26211. extra: 1474/1379,
  26212. bottom: 113/1587
  26213. }
  26214. },
  26215. back: {
  26216. height: math.unit(180, "cm"),
  26217. weight: math.unit(73, "kg"),
  26218. name: "Back",
  26219. image: {
  26220. source: "./media/characters/violet-flor/back.svg",
  26221. extra: 1660/1567,
  26222. bottom: 49/1709
  26223. }
  26224. },
  26225. },
  26226. [
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(172, "cm"),
  26230. default: true
  26231. },
  26232. ]
  26233. ))
  26234. characterMakers.push(() => makeCharacter(
  26235. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26236. {
  26237. front: {
  26238. height: math.unit(6, "feet"),
  26239. weight: math.unit(220, "lb"),
  26240. name: "Front",
  26241. image: {
  26242. source: "./media/characters/lynn-rhea/front.svg",
  26243. extra: 310 / 273
  26244. }
  26245. },
  26246. back: {
  26247. height: math.unit(6, "feet"),
  26248. weight: math.unit(220, "lb"),
  26249. name: "Back",
  26250. image: {
  26251. source: "./media/characters/lynn-rhea/back.svg",
  26252. extra: 310 / 273
  26253. }
  26254. },
  26255. dicks: {
  26256. height: math.unit(0.9, "feet"),
  26257. name: "Dicks",
  26258. image: {
  26259. source: "./media/characters/lynn-rhea/dicks.svg"
  26260. }
  26261. },
  26262. slit: {
  26263. height: math.unit(0.4, "feet"),
  26264. name: "Slit",
  26265. image: {
  26266. source: "./media/characters/lynn-rhea/slit.svg"
  26267. }
  26268. },
  26269. },
  26270. [
  26271. {
  26272. name: "Micro",
  26273. height: math.unit(1, "inch")
  26274. },
  26275. {
  26276. name: "Macro",
  26277. height: math.unit(60, "feet"),
  26278. default: true
  26279. },
  26280. {
  26281. name: "Megamacro",
  26282. height: math.unit(2, "miles")
  26283. },
  26284. {
  26285. name: "Gigamacro",
  26286. height: math.unit(3, "earths")
  26287. },
  26288. {
  26289. name: "Galactic",
  26290. height: math.unit(0.8, "galaxies")
  26291. },
  26292. ]
  26293. ))
  26294. characterMakers.push(() => makeCharacter(
  26295. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26296. {
  26297. front: {
  26298. height: math.unit(1600, "feet"),
  26299. weight: math.unit(85758785169, "kg"),
  26300. name: "Front",
  26301. image: {
  26302. source: "./media/characters/valathos/front.svg",
  26303. extra: 1451 / 1339
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Macro",
  26310. height: math.unit(1600, "feet"),
  26311. default: true
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26317. {
  26318. front: {
  26319. height: math.unit(7 + 5 / 12, "feet"),
  26320. weight: math.unit(300, "lb"),
  26321. name: "Front",
  26322. image: {
  26323. source: "./media/characters/azula/front.svg",
  26324. extra: 3208 / 2880,
  26325. bottom: 80.2 / 3277
  26326. }
  26327. },
  26328. back: {
  26329. height: math.unit(7 + 5 / 12, "feet"),
  26330. weight: math.unit(300, "lb"),
  26331. name: "Back",
  26332. image: {
  26333. source: "./media/characters/azula/back.svg",
  26334. extra: 3169 / 2822,
  26335. bottom: 150.6 / 3321
  26336. }
  26337. },
  26338. },
  26339. [
  26340. {
  26341. name: "Normal",
  26342. height: math.unit(7 + 5 / 12, "feet"),
  26343. default: true
  26344. },
  26345. {
  26346. name: "Big",
  26347. height: math.unit(20, "feet")
  26348. },
  26349. ]
  26350. ))
  26351. characterMakers.push(() => makeCharacter(
  26352. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26353. {
  26354. front: {
  26355. height: math.unit(5 + 1 / 12, "feet"),
  26356. weight: math.unit(110, "lb"),
  26357. name: "Front",
  26358. image: {
  26359. source: "./media/characters/rupert/front.svg",
  26360. extra: 1549 / 1495,
  26361. bottom: 54.2 / 1604.4
  26362. }
  26363. },
  26364. },
  26365. [
  26366. {
  26367. name: "Normal",
  26368. height: math.unit(5 + 1 / 12, "feet"),
  26369. default: true
  26370. },
  26371. ]
  26372. ))
  26373. characterMakers.push(() => makeCharacter(
  26374. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26375. {
  26376. front: {
  26377. height: math.unit(8 + 4 / 12, "feet"),
  26378. weight: math.unit(350, "lb"),
  26379. name: "Front",
  26380. image: {
  26381. source: "./media/characters/sheera-castellar/front.svg",
  26382. extra: 1957 / 1894,
  26383. bottom: 26.97 / 1975.017
  26384. }
  26385. },
  26386. side: {
  26387. height: math.unit(8 + 4 / 12, "feet"),
  26388. weight: math.unit(350, "lb"),
  26389. name: "Side",
  26390. image: {
  26391. source: "./media/characters/sheera-castellar/side.svg",
  26392. extra: 1957 / 1894
  26393. }
  26394. },
  26395. back: {
  26396. height: math.unit(8 + 4 / 12, "feet"),
  26397. weight: math.unit(350, "lb"),
  26398. name: "Back",
  26399. image: {
  26400. source: "./media/characters/sheera-castellar/back.svg",
  26401. extra: 1957 / 1894
  26402. }
  26403. },
  26404. angled: {
  26405. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26406. weight: math.unit(350, "lb"),
  26407. name: "Angled",
  26408. image: {
  26409. source: "./media/characters/sheera-castellar/angled.svg",
  26410. extra: 1807 / 1707,
  26411. bottom: 68 / 1875
  26412. }
  26413. },
  26414. genitals: {
  26415. height: math.unit(2.2, "feet"),
  26416. name: "Genitals",
  26417. image: {
  26418. source: "./media/characters/sheera-castellar/genitals.svg"
  26419. }
  26420. },
  26421. taur: {
  26422. height: math.unit(10 + 6/12, "feet"),
  26423. name: "Taur",
  26424. image: {
  26425. source: "./media/characters/sheera-castellar/taur.svg",
  26426. extra: 2017/1909,
  26427. bottom: 185/2202
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Normal",
  26434. height: math.unit(8 + 4 / 12, "feet")
  26435. },
  26436. {
  26437. name: "Macro",
  26438. height: math.unit(150, "feet"),
  26439. default: true
  26440. },
  26441. {
  26442. name: "Macro+",
  26443. height: math.unit(800, "feet")
  26444. },
  26445. ]
  26446. ))
  26447. characterMakers.push(() => makeCharacter(
  26448. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26449. {
  26450. front: {
  26451. height: math.unit(6, "feet"),
  26452. weight: math.unit(150, "lb"),
  26453. name: "Front",
  26454. image: {
  26455. source: "./media/characters/jaipur/front.svg",
  26456. extra: 3860 / 3731,
  26457. bottom: 287 / 4140
  26458. }
  26459. },
  26460. back: {
  26461. height: math.unit(6, "feet"),
  26462. weight: math.unit(150, "lb"),
  26463. name: "Back",
  26464. image: {
  26465. source: "./media/characters/jaipur/back.svg",
  26466. extra: 1637/1561,
  26467. bottom: 154/1791
  26468. }
  26469. },
  26470. },
  26471. [
  26472. {
  26473. name: "Normal",
  26474. height: math.unit(1.85, "meters"),
  26475. default: true
  26476. },
  26477. {
  26478. name: "Macro",
  26479. height: math.unit(150, "meters")
  26480. },
  26481. {
  26482. name: "Macro+",
  26483. height: math.unit(0.5, "miles")
  26484. },
  26485. {
  26486. name: "Macro++",
  26487. height: math.unit(2.5, "miles")
  26488. },
  26489. {
  26490. name: "Macro+++",
  26491. height: math.unit(12, "miles")
  26492. },
  26493. {
  26494. name: "Macro++++",
  26495. height: math.unit(120, "miles")
  26496. },
  26497. {
  26498. name: "Macro+++++",
  26499. height: math.unit(1200, "miles")
  26500. },
  26501. ]
  26502. ))
  26503. characterMakers.push(() => makeCharacter(
  26504. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26505. {
  26506. front: {
  26507. height: math.unit(6, "feet"),
  26508. weight: math.unit(150, "lb"),
  26509. name: "Front",
  26510. image: {
  26511. source: "./media/characters/sheila-wolf/front.svg",
  26512. extra: 1931 / 1808,
  26513. bottom: 29.5 / 1960
  26514. }
  26515. },
  26516. dick: {
  26517. height: math.unit(1.464, "feet"),
  26518. name: "Dick",
  26519. image: {
  26520. source: "./media/characters/sheila-wolf/dick.svg"
  26521. }
  26522. },
  26523. muzzle: {
  26524. height: math.unit(0.513, "feet"),
  26525. name: "Muzzle",
  26526. image: {
  26527. source: "./media/characters/sheila-wolf/muzzle.svg"
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Macro",
  26534. height: math.unit(70, "feet"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(32, "meters"),
  26544. weight: math.unit(300000, "kg"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/almor/front.svg",
  26548. extra: 1408 / 1322,
  26549. bottom: 94.6 / 1506.5
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Macro",
  26556. height: math.unit(32, "meters"),
  26557. default: true
  26558. },
  26559. ]
  26560. ))
  26561. characterMakers.push(() => makeCharacter(
  26562. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26563. {
  26564. front: {
  26565. height: math.unit(7, "feet"),
  26566. weight: math.unit(200, "lb"),
  26567. name: "Front",
  26568. image: {
  26569. source: "./media/characters/silver/front.svg",
  26570. extra: 472.1 / 450.5,
  26571. bottom: 26.5 / 499.424
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Normal",
  26578. height: math.unit(7, "feet"),
  26579. default: true
  26580. },
  26581. {
  26582. name: "Macro",
  26583. height: math.unit(800, "feet")
  26584. },
  26585. {
  26586. name: "Megamacro",
  26587. height: math.unit(250, "miles")
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(6, "feet"),
  26596. weight: math.unit(150, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/pliskin/front.svg",
  26600. extra: 1469 / 1359,
  26601. bottom: 70 / 1540
  26602. }
  26603. },
  26604. },
  26605. [
  26606. {
  26607. name: "Micro",
  26608. height: math.unit(3, "inches")
  26609. },
  26610. {
  26611. name: "Normal",
  26612. height: math.unit(5 + 11 / 12, "feet"),
  26613. default: true
  26614. },
  26615. {
  26616. name: "Macro",
  26617. height: math.unit(120, "feet")
  26618. },
  26619. ]
  26620. ))
  26621. characterMakers.push(() => makeCharacter(
  26622. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26623. {
  26624. front: {
  26625. height: math.unit(6, "feet"),
  26626. weight: math.unit(150, "lb"),
  26627. name: "Front",
  26628. image: {
  26629. source: "./media/characters/sammy/front.svg",
  26630. extra: 1193 / 1089,
  26631. bottom: 30.5 / 1226
  26632. }
  26633. },
  26634. },
  26635. [
  26636. {
  26637. name: "Macro",
  26638. height: math.unit(1700, "feet"),
  26639. default: true
  26640. },
  26641. {
  26642. name: "Examacro",
  26643. height: math.unit(2.5e9, "lightyears")
  26644. },
  26645. ]
  26646. ))
  26647. characterMakers.push(() => makeCharacter(
  26648. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26649. {
  26650. front: {
  26651. height: math.unit(21, "meters"),
  26652. weight: math.unit(12, "tonnes"),
  26653. name: "Front",
  26654. image: {
  26655. source: "./media/characters/kuru/front.svg",
  26656. extra: 4301 / 3785,
  26657. bottom: 371.3 / 4691
  26658. }
  26659. },
  26660. },
  26661. [
  26662. {
  26663. name: "Macro",
  26664. height: math.unit(21, "meters"),
  26665. default: true
  26666. },
  26667. ]
  26668. ))
  26669. characterMakers.push(() => makeCharacter(
  26670. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26671. {
  26672. front: {
  26673. height: math.unit(23, "meters"),
  26674. weight: math.unit(12.2, "tonnes"),
  26675. name: "Front",
  26676. image: {
  26677. source: "./media/characters/rakka/front.svg",
  26678. extra: 4670 / 4169,
  26679. bottom: 301 / 4968.7
  26680. }
  26681. },
  26682. },
  26683. [
  26684. {
  26685. name: "Macro",
  26686. height: math.unit(23, "meters"),
  26687. default: true
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26693. {
  26694. front: {
  26695. height: math.unit(6, "feet"),
  26696. weight: math.unit(150, "lb"),
  26697. name: "Front",
  26698. image: {
  26699. source: "./media/characters/rhys-feline/front.svg",
  26700. extra: 2488 / 2308,
  26701. bottom: 35.67 / 2519.19
  26702. }
  26703. },
  26704. },
  26705. [
  26706. {
  26707. name: "Really Small",
  26708. height: math.unit(1, "nm")
  26709. },
  26710. {
  26711. name: "Micro",
  26712. height: math.unit(4, "inches")
  26713. },
  26714. {
  26715. name: "Normal",
  26716. height: math.unit(4 + 10 / 12, "feet"),
  26717. default: true
  26718. },
  26719. {
  26720. name: "Macro",
  26721. height: math.unit(100, "feet")
  26722. },
  26723. {
  26724. name: "Megamacto",
  26725. height: math.unit(50, "miles")
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26731. {
  26732. side: {
  26733. height: math.unit(30, "feet"),
  26734. weight: math.unit(35000, "kg"),
  26735. name: "Side",
  26736. image: {
  26737. source: "./media/characters/alydar/side.svg",
  26738. extra: 234 / 222,
  26739. bottom: 6.5 / 241
  26740. }
  26741. },
  26742. front: {
  26743. height: math.unit(30, "feet"),
  26744. weight: math.unit(35000, "kg"),
  26745. name: "Front",
  26746. image: {
  26747. source: "./media/characters/alydar/front.svg",
  26748. extra: 223.37 / 210.2,
  26749. bottom: 22.3 / 246.76
  26750. }
  26751. },
  26752. top: {
  26753. height: math.unit(64.54, "feet"),
  26754. weight: math.unit(35000, "kg"),
  26755. name: "Top",
  26756. image: {
  26757. source: "./media/characters/alydar/top.svg"
  26758. }
  26759. },
  26760. anthro: {
  26761. height: math.unit(30, "feet"),
  26762. weight: math.unit(9000, "kg"),
  26763. name: "Anthro",
  26764. image: {
  26765. source: "./media/characters/alydar/anthro.svg",
  26766. extra: 432 / 421,
  26767. bottom: 7.18 / 440
  26768. }
  26769. },
  26770. maw: {
  26771. height: math.unit(11.693, "feet"),
  26772. name: "Maw",
  26773. image: {
  26774. source: "./media/characters/alydar/maw.svg"
  26775. }
  26776. },
  26777. head: {
  26778. height: math.unit(11.693, "feet"),
  26779. name: "Head",
  26780. image: {
  26781. source: "./media/characters/alydar/head.svg"
  26782. }
  26783. },
  26784. headAlt: {
  26785. height: math.unit(12.861, "feet"),
  26786. name: "Head (Alt)",
  26787. image: {
  26788. source: "./media/characters/alydar/head-alt.svg"
  26789. }
  26790. },
  26791. wing: {
  26792. height: math.unit(20.712, "feet"),
  26793. name: "Wing",
  26794. image: {
  26795. source: "./media/characters/alydar/wing.svg"
  26796. }
  26797. },
  26798. wingFeather: {
  26799. height: math.unit(9.662, "feet"),
  26800. name: "Wing Feather",
  26801. image: {
  26802. source: "./media/characters/alydar/wing-feather.svg"
  26803. }
  26804. },
  26805. countourFeather: {
  26806. height: math.unit(4.154, "feet"),
  26807. name: "Contour Feather",
  26808. image: {
  26809. source: "./media/characters/alydar/contour-feather.svg"
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Diplomatic",
  26816. height: math.unit(13, "feet"),
  26817. default: true
  26818. },
  26819. {
  26820. name: "Small",
  26821. height: math.unit(30, "feet")
  26822. },
  26823. {
  26824. name: "Normal",
  26825. height: math.unit(95, "feet"),
  26826. default: true
  26827. },
  26828. {
  26829. name: "Large",
  26830. height: math.unit(285, "feet")
  26831. },
  26832. {
  26833. name: "Incomprehensible",
  26834. height: math.unit(450, "megameters")
  26835. },
  26836. ]
  26837. ))
  26838. characterMakers.push(() => makeCharacter(
  26839. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26840. {
  26841. side: {
  26842. height: math.unit(11, "feet"),
  26843. weight: math.unit(1750, "kg"),
  26844. name: "Side",
  26845. image: {
  26846. source: "./media/characters/selicia/side.svg",
  26847. extra: 440 / 396,
  26848. bottom: 24.8 / 465.979
  26849. }
  26850. },
  26851. maw: {
  26852. height: math.unit(4.665, "feet"),
  26853. name: "Maw",
  26854. image: {
  26855. source: "./media/characters/selicia/maw.svg"
  26856. }
  26857. },
  26858. },
  26859. [
  26860. {
  26861. name: "Normal",
  26862. height: math.unit(11, "feet"),
  26863. default: true
  26864. },
  26865. ]
  26866. ))
  26867. characterMakers.push(() => makeCharacter(
  26868. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26869. {
  26870. side: {
  26871. height: math.unit(2 + 6 / 12, "feet"),
  26872. weight: math.unit(30, "lb"),
  26873. name: "Side",
  26874. image: {
  26875. source: "./media/characters/layla/side.svg",
  26876. extra: 244 / 188,
  26877. bottom: 18.2 / 262.1
  26878. }
  26879. },
  26880. back: {
  26881. height: math.unit(2 + 6 / 12, "feet"),
  26882. weight: math.unit(30, "lb"),
  26883. name: "Back",
  26884. image: {
  26885. source: "./media/characters/layla/back.svg",
  26886. extra: 308 / 241.5,
  26887. bottom: 8.9 / 316.8
  26888. }
  26889. },
  26890. cumming: {
  26891. height: math.unit(2 + 6 / 12, "feet"),
  26892. weight: math.unit(30, "lb"),
  26893. name: "Cumming",
  26894. image: {
  26895. source: "./media/characters/layla/cumming.svg",
  26896. extra: 342 / 279,
  26897. bottom: 595 / 938
  26898. }
  26899. },
  26900. dickFlaccid: {
  26901. height: math.unit(2.595, "feet"),
  26902. name: "Flaccid Genitals",
  26903. image: {
  26904. source: "./media/characters/layla/dick-flaccid.svg"
  26905. }
  26906. },
  26907. dickErect: {
  26908. height: math.unit(2.359, "feet"),
  26909. name: "Erect Genitals",
  26910. image: {
  26911. source: "./media/characters/layla/dick-erect.svg"
  26912. }
  26913. },
  26914. dragon: {
  26915. height: math.unit(40, "feet"),
  26916. name: "Dragon",
  26917. image: {
  26918. source: "./media/characters/layla/dragon.svg",
  26919. extra: 610/535,
  26920. bottom: 367/977
  26921. }
  26922. },
  26923. taur: {
  26924. height: math.unit(30, "feet"),
  26925. name: "Taur",
  26926. image: {
  26927. source: "./media/characters/layla/taur.svg",
  26928. extra: 1268/1199,
  26929. bottom: 112/1380
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Micro",
  26936. height: math.unit(1, "inch")
  26937. },
  26938. {
  26939. name: "Small",
  26940. height: math.unit(1, "foot")
  26941. },
  26942. {
  26943. name: "Normal",
  26944. height: math.unit(2 + 6 / 12, "feet"),
  26945. default: true
  26946. },
  26947. {
  26948. name: "Macro",
  26949. height: math.unit(200, "feet")
  26950. },
  26951. {
  26952. name: "Megamacro",
  26953. height: math.unit(1000, "miles")
  26954. },
  26955. {
  26956. name: "Planetary",
  26957. height: math.unit(8000, "miles")
  26958. },
  26959. {
  26960. name: "True Layla",
  26961. height: math.unit(200000 * 7, "multiverses")
  26962. },
  26963. ]
  26964. ))
  26965. characterMakers.push(() => makeCharacter(
  26966. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26967. {
  26968. back: {
  26969. height: math.unit(10.5, "feet"),
  26970. weight: math.unit(800, "lb"),
  26971. name: "Back",
  26972. image: {
  26973. source: "./media/characters/knox/back.svg",
  26974. extra: 1486 / 1089,
  26975. bottom: 107 / 1601.4
  26976. }
  26977. },
  26978. side: {
  26979. height: math.unit(10.5, "feet"),
  26980. weight: math.unit(800, "lb"),
  26981. name: "Side",
  26982. image: {
  26983. source: "./media/characters/knox/side.svg",
  26984. extra: 244 / 218,
  26985. bottom: 14 / 260
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Compact",
  26992. height: math.unit(10.5, "feet"),
  26993. default: true
  26994. },
  26995. {
  26996. name: "Dynamax",
  26997. height: math.unit(210, "feet")
  26998. },
  26999. {
  27000. name: "Full Macro",
  27001. height: math.unit(850, "feet")
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(28, "feet"),
  27010. weight: math.unit(10500, "lb"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/kayda/front.svg",
  27014. extra: 1536 / 1428,
  27015. bottom: 68.7 / 1603
  27016. }
  27017. },
  27018. back: {
  27019. height: math.unit(28, "feet"),
  27020. weight: math.unit(10500, "lb"),
  27021. name: "Back",
  27022. image: {
  27023. source: "./media/characters/kayda/back.svg",
  27024. extra: 1557 / 1464,
  27025. bottom: 39.5 / 1597.49
  27026. }
  27027. },
  27028. dick: {
  27029. height: math.unit(3.858, "feet"),
  27030. name: "Dick",
  27031. image: {
  27032. source: "./media/characters/kayda/dick.svg"
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Macro",
  27039. height: math.unit(28, "feet"),
  27040. default: true
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  27046. {
  27047. front: {
  27048. height: math.unit(10 + 11 / 12, "feet"),
  27049. weight: math.unit(1400, "lb"),
  27050. name: "Front",
  27051. image: {
  27052. source: "./media/characters/brian/front.svg",
  27053. extra: 737 / 692,
  27054. bottom: 55.4 / 785
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Normal",
  27061. height: math.unit(10 + 11 / 12, "feet"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  27068. {
  27069. front: {
  27070. height: math.unit(5 + 8 / 12, "feet"),
  27071. weight: math.unit(140, "lb"),
  27072. name: "Front",
  27073. image: {
  27074. source: "./media/characters/khemri/front.svg",
  27075. extra: 4780 / 4059,
  27076. bottom: 80.1 / 4859.25
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Micro",
  27083. height: math.unit(6, "inches")
  27084. },
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(5 + 8 / 12, "feet"),
  27088. default: true
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  27094. {
  27095. front: {
  27096. height: math.unit(13, "feet"),
  27097. weight: math.unit(1700, "lb"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/felix-braveheart/front.svg",
  27101. extra: 1222 / 1157,
  27102. bottom: 53.2 / 1280
  27103. }
  27104. },
  27105. back: {
  27106. height: math.unit(13, "feet"),
  27107. weight: math.unit(1700, "lb"),
  27108. name: "Back",
  27109. image: {
  27110. source: "./media/characters/felix-braveheart/back.svg",
  27111. extra: 1277 / 1203,
  27112. bottom: 50.2 / 1327
  27113. }
  27114. },
  27115. feral: {
  27116. height: math.unit(6, "feet"),
  27117. weight: math.unit(400, "lb"),
  27118. name: "Feral",
  27119. image: {
  27120. source: "./media/characters/felix-braveheart/feral.svg",
  27121. extra: 682 / 625,
  27122. bottom: 6.9 / 688
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Normal",
  27129. height: math.unit(13, "feet"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  27136. {
  27137. side: {
  27138. height: math.unit(5 + 11 / 12, "feet"),
  27139. weight: math.unit(1400, "lb"),
  27140. name: "Side",
  27141. image: {
  27142. source: "./media/characters/shadow-blade/side.svg",
  27143. extra: 1726 / 1267,
  27144. bottom: 58.4 / 1785
  27145. }
  27146. },
  27147. },
  27148. [
  27149. {
  27150. name: "Normal",
  27151. height: math.unit(5 + 11 / 12, "feet"),
  27152. default: true
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27158. {
  27159. front: {
  27160. height: math.unit(1 + 6 / 12, "feet"),
  27161. weight: math.unit(25, "lb"),
  27162. name: "Front",
  27163. image: {
  27164. source: "./media/characters/karla-halldor/front.svg",
  27165. extra: 1459 / 1383,
  27166. bottom: 12 / 1472
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Normal",
  27173. height: math.unit(1 + 6 / 12, "feet"),
  27174. default: true
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(6 + 2 / 12, "feet"),
  27183. weight: math.unit(160, "lb"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/ariam/front.svg",
  27187. extra: 1073/976,
  27188. bottom: 52/1125
  27189. }
  27190. },
  27191. back: {
  27192. height: math.unit(6 + 2/12, "feet"),
  27193. weight: math.unit(160, "lb"),
  27194. name: "Back",
  27195. image: {
  27196. source: "./media/characters/ariam/back.svg",
  27197. extra: 1103/1023,
  27198. bottom: 9/1112
  27199. }
  27200. },
  27201. dressed: {
  27202. height: math.unit(6 + 2/12, "feet"),
  27203. weight: math.unit(160, "lb"),
  27204. name: "Dressed",
  27205. image: {
  27206. source: "./media/characters/ariam/dressed.svg",
  27207. extra: 1099/1009,
  27208. bottom: 25/1124
  27209. }
  27210. },
  27211. squatting: {
  27212. height: math.unit(4.1, "feet"),
  27213. weight: math.unit(160, "lb"),
  27214. name: "Squatting",
  27215. image: {
  27216. source: "./media/characters/ariam/squatting.svg",
  27217. extra: 2617 / 2112,
  27218. bottom: 61.2 / 2681,
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(6 + 2 / 12, "feet"),
  27226. default: true
  27227. },
  27228. {
  27229. name: "Normal+",
  27230. height: math.unit(4, "meters")
  27231. },
  27232. {
  27233. name: "Macro",
  27234. height: math.unit(50, "meters")
  27235. },
  27236. {
  27237. name: "Macro+",
  27238. height: math.unit(100, "meters")
  27239. },
  27240. {
  27241. name: "Megamacro",
  27242. height: math.unit(20, "km")
  27243. },
  27244. {
  27245. name: "Caretaker",
  27246. height: math.unit(444, "megameters")
  27247. },
  27248. ]
  27249. ))
  27250. characterMakers.push(() => makeCharacter(
  27251. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27252. {
  27253. front: {
  27254. height: math.unit(1.67, "meters"),
  27255. weight: math.unit(140, "lb"),
  27256. name: "Front",
  27257. image: {
  27258. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27259. extra: 438 / 410,
  27260. bottom: 0.75 / 439
  27261. }
  27262. },
  27263. },
  27264. [
  27265. {
  27266. name: "Shrunken",
  27267. height: math.unit(7.6, "cm")
  27268. },
  27269. {
  27270. name: "Human Scale",
  27271. height: math.unit(1.67, "meters")
  27272. },
  27273. {
  27274. name: "Wolxi Scale",
  27275. height: math.unit(36.7, "meters"),
  27276. default: true
  27277. },
  27278. ]
  27279. ))
  27280. characterMakers.push(() => makeCharacter(
  27281. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27282. {
  27283. front: {
  27284. height: math.unit(1.73, "meters"),
  27285. weight: math.unit(240, "lb"),
  27286. name: "Front",
  27287. image: {
  27288. source: "./media/characters/izue-two-mothers/front.svg",
  27289. extra: 469 / 437,
  27290. bottom: 1.24 / 470.6
  27291. }
  27292. },
  27293. },
  27294. [
  27295. {
  27296. name: "Shrunken",
  27297. height: math.unit(7.86, "cm")
  27298. },
  27299. {
  27300. name: "Human Scale",
  27301. height: math.unit(1.73, "meters")
  27302. },
  27303. {
  27304. name: "Wolxi Scale",
  27305. height: math.unit(38, "meters"),
  27306. default: true
  27307. },
  27308. ]
  27309. ))
  27310. characterMakers.push(() => makeCharacter(
  27311. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27312. {
  27313. front: {
  27314. height: math.unit(1.55, "meters"),
  27315. weight: math.unit(120, "lb"),
  27316. name: "Front",
  27317. image: {
  27318. source: "./media/characters/teeku-love-shack/front.svg",
  27319. extra: 387 / 362,
  27320. bottom: 1.51 / 388
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Shrunken",
  27327. height: math.unit(7, "cm")
  27328. },
  27329. {
  27330. name: "Human Scale",
  27331. height: math.unit(1.55, "meters")
  27332. },
  27333. {
  27334. name: "Wolxi Scale",
  27335. height: math.unit(34.1, "meters"),
  27336. default: true
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27342. {
  27343. front: {
  27344. height: math.unit(1.83, "meters"),
  27345. weight: math.unit(135, "lb"),
  27346. name: "Front",
  27347. image: {
  27348. source: "./media/characters/dejma-the-red/front.svg",
  27349. extra: 480 / 458,
  27350. bottom: 1.8 / 482
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Shrunken",
  27357. height: math.unit(8.3, "cm")
  27358. },
  27359. {
  27360. name: "Human Scale",
  27361. height: math.unit(1.83, "meters")
  27362. },
  27363. {
  27364. name: "Wolxi Scale",
  27365. height: math.unit(40, "meters"),
  27366. default: true
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27372. {
  27373. front: {
  27374. height: math.unit(1.78, "meters"),
  27375. weight: math.unit(65, "kg"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/aki/front.svg",
  27379. extra: 452 / 415
  27380. }
  27381. },
  27382. frontNsfw: {
  27383. height: math.unit(1.78, "meters"),
  27384. weight: math.unit(65, "kg"),
  27385. name: "Front (NSFW)",
  27386. image: {
  27387. source: "./media/characters/aki/front-nsfw.svg",
  27388. extra: 452 / 415
  27389. }
  27390. },
  27391. back: {
  27392. height: math.unit(1.78, "meters"),
  27393. weight: math.unit(65, "kg"),
  27394. name: "Back",
  27395. image: {
  27396. source: "./media/characters/aki/back.svg",
  27397. extra: 452 / 415
  27398. }
  27399. },
  27400. rump: {
  27401. height: math.unit(2.05, "feet"),
  27402. name: "Rump",
  27403. image: {
  27404. source: "./media/characters/aki/rump.svg"
  27405. }
  27406. },
  27407. dick: {
  27408. height: math.unit(0.95, "feet"),
  27409. name: "Dick",
  27410. image: {
  27411. source: "./media/characters/aki/dick.svg"
  27412. }
  27413. },
  27414. },
  27415. [
  27416. {
  27417. name: "Micro",
  27418. height: math.unit(15, "cm")
  27419. },
  27420. {
  27421. name: "Normal",
  27422. height: math.unit(178, "cm"),
  27423. default: true
  27424. },
  27425. {
  27426. name: "Macro",
  27427. height: math.unit(214, "m")
  27428. },
  27429. {
  27430. name: "Macro+",
  27431. height: math.unit(534, "m")
  27432. },
  27433. ]
  27434. ))
  27435. characterMakers.push(() => makeCharacter(
  27436. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27437. {
  27438. front: {
  27439. height: math.unit(5 + 5 / 12, "feet"),
  27440. weight: math.unit(120, "lb"),
  27441. name: "Front",
  27442. image: {
  27443. source: "./media/characters/ari/front.svg",
  27444. extra: 1550/1471,
  27445. bottom: 39/1589
  27446. }
  27447. },
  27448. },
  27449. [
  27450. {
  27451. name: "Normal",
  27452. height: math.unit(5 + 5 / 12, "feet")
  27453. },
  27454. {
  27455. name: "Macro",
  27456. height: math.unit(100, "feet"),
  27457. default: true
  27458. },
  27459. {
  27460. name: "Megamacro",
  27461. height: math.unit(100, "miles")
  27462. },
  27463. {
  27464. name: "Gigamacro",
  27465. height: math.unit(80000, "miles")
  27466. },
  27467. ]
  27468. ))
  27469. characterMakers.push(() => makeCharacter(
  27470. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27471. {
  27472. side: {
  27473. height: math.unit(9, "feet"),
  27474. weight: math.unit(400, "kg"),
  27475. name: "Side",
  27476. image: {
  27477. source: "./media/characters/bolt/side.svg",
  27478. extra: 1126 / 896,
  27479. bottom: 60 / 1187.3,
  27480. }
  27481. },
  27482. },
  27483. [
  27484. {
  27485. name: "Micro",
  27486. height: math.unit(5, "inches")
  27487. },
  27488. {
  27489. name: "Normal",
  27490. height: math.unit(9, "feet"),
  27491. default: true
  27492. },
  27493. {
  27494. name: "Macro",
  27495. height: math.unit(700, "feet")
  27496. },
  27497. {
  27498. name: "Max Size",
  27499. height: math.unit(1.52e22, "yottameters")
  27500. },
  27501. ]
  27502. ))
  27503. characterMakers.push(() => makeCharacter(
  27504. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27505. {
  27506. front: {
  27507. height: math.unit(4.3, "meters"),
  27508. weight: math.unit(3, "tons"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/draekon-sylviar/front.svg",
  27512. extra: 2072/1512,
  27513. bottom: 74/2146
  27514. }
  27515. },
  27516. back: {
  27517. height: math.unit(4.3, "meters"),
  27518. weight: math.unit(3, "tons"),
  27519. name: "Back",
  27520. image: {
  27521. source: "./media/characters/draekon-sylviar/back.svg",
  27522. extra: 1639/1483,
  27523. bottom: 41/1680
  27524. }
  27525. },
  27526. feral: {
  27527. height: math.unit(1.15, "meters"),
  27528. weight: math.unit(3, "tons"),
  27529. name: "Feral",
  27530. image: {
  27531. source: "./media/characters/draekon-sylviar/feral.svg",
  27532. extra: 1033/395,
  27533. bottom: 130/1163
  27534. }
  27535. },
  27536. maw: {
  27537. height: math.unit(1.3, "meters"),
  27538. name: "Maw",
  27539. image: {
  27540. source: "./media/characters/draekon-sylviar/maw.svg"
  27541. }
  27542. },
  27543. mawSeparated: {
  27544. height: math.unit(1.53, "meters"),
  27545. name: "Separated Maw",
  27546. image: {
  27547. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27548. }
  27549. },
  27550. tail: {
  27551. height: math.unit(1.15, "meters"),
  27552. name: "Tail",
  27553. image: {
  27554. source: "./media/characters/draekon-sylviar/tail.svg"
  27555. }
  27556. },
  27557. tailDick: {
  27558. height: math.unit(1.15, "meters"),
  27559. name: "Tail (Dick)",
  27560. image: {
  27561. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27562. }
  27563. },
  27564. tailDickSeparated: {
  27565. height: math.unit(1.19, "meters"),
  27566. name: "Tail (Separated Dick)",
  27567. image: {
  27568. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27569. }
  27570. },
  27571. slit: {
  27572. height: math.unit(1, "meters"),
  27573. name: "Slit",
  27574. image: {
  27575. source: "./media/characters/draekon-sylviar/slit.svg"
  27576. }
  27577. },
  27578. dick: {
  27579. height: math.unit(1.15, "meters"),
  27580. name: "Dick",
  27581. image: {
  27582. source: "./media/characters/draekon-sylviar/dick.svg"
  27583. }
  27584. },
  27585. dickSeparated: {
  27586. height: math.unit(1.1, "meters"),
  27587. name: "Separated Dick",
  27588. image: {
  27589. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27590. }
  27591. },
  27592. sheath: {
  27593. height: math.unit(1.15, "meters"),
  27594. name: "Sheath",
  27595. image: {
  27596. source: "./media/characters/draekon-sylviar/sheath.svg"
  27597. }
  27598. },
  27599. },
  27600. [
  27601. {
  27602. name: "Small",
  27603. height: math.unit(4.53 / 2, "meters"),
  27604. default: true
  27605. },
  27606. {
  27607. name: "Normal",
  27608. height: math.unit(4.53, "meters"),
  27609. default: true
  27610. },
  27611. {
  27612. name: "Large",
  27613. height: math.unit(4.53 * 2, "meters"),
  27614. },
  27615. ]
  27616. ))
  27617. characterMakers.push(() => makeCharacter(
  27618. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27619. {
  27620. front: {
  27621. height: math.unit(6 + 2 / 12, "feet"),
  27622. weight: math.unit(180, "lb"),
  27623. name: "Front",
  27624. image: {
  27625. source: "./media/characters/brawler/front.svg",
  27626. extra: 3301 / 3027,
  27627. bottom: 138 / 3439
  27628. }
  27629. },
  27630. },
  27631. [
  27632. {
  27633. name: "Normal",
  27634. height: math.unit(6 + 2 / 12, "feet"),
  27635. default: true
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27641. {
  27642. front: {
  27643. height: math.unit(11, "feet"),
  27644. weight: math.unit(1000, "lb"),
  27645. name: "Front",
  27646. image: {
  27647. source: "./media/characters/alex/front.svg",
  27648. bottom: 44.5 / 620
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Micro",
  27655. height: math.unit(5, "inches")
  27656. },
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(11, "feet"),
  27660. default: true
  27661. },
  27662. {
  27663. name: "Macro",
  27664. height: math.unit(9.5e9, "feet")
  27665. },
  27666. {
  27667. name: "Max Size",
  27668. height: math.unit(1.4e283, "yottameters")
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27674. {
  27675. female: {
  27676. height: math.unit(29.9, "m"),
  27677. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27678. name: "Female",
  27679. image: {
  27680. source: "./media/characters/zenari/female.svg",
  27681. extra: 3281.6 / 3217,
  27682. bottom: 72.2 / 3353
  27683. }
  27684. },
  27685. male: {
  27686. height: math.unit(27.7, "m"),
  27687. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27688. name: "Male",
  27689. image: {
  27690. source: "./media/characters/zenari/male.svg",
  27691. extra: 3008 / 2991,
  27692. bottom: 54.6 / 3069
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Macro",
  27699. height: math.unit(29.7, "meters"),
  27700. default: true
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27706. {
  27707. female: {
  27708. height: math.unit(23.8, "m"),
  27709. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27710. name: "Female",
  27711. image: {
  27712. source: "./media/characters/mactarian/female.svg",
  27713. extra: 2662 / 2569,
  27714. bottom: 73 / 2736
  27715. }
  27716. },
  27717. male: {
  27718. height: math.unit(23.8, "m"),
  27719. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27720. name: "Male",
  27721. image: {
  27722. source: "./media/characters/mactarian/male.svg",
  27723. extra: 2673 / 2600,
  27724. bottom: 76 / 2750
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Macro",
  27731. height: math.unit(23.8, "meters"),
  27732. default: true
  27733. },
  27734. ]
  27735. ))
  27736. characterMakers.push(() => makeCharacter(
  27737. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27738. {
  27739. female: {
  27740. height: math.unit(19.3, "m"),
  27741. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27742. name: "Female",
  27743. image: {
  27744. source: "./media/characters/umok/female.svg",
  27745. extra: 2186 / 2078,
  27746. bottom: 87 / 2277
  27747. }
  27748. },
  27749. male: {
  27750. height: math.unit(19.5, "m"),
  27751. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27752. name: "Male",
  27753. image: {
  27754. source: "./media/characters/umok/male.svg",
  27755. extra: 2233 / 2140,
  27756. bottom: 24.4 / 2258
  27757. }
  27758. },
  27759. },
  27760. [
  27761. {
  27762. name: "Macro",
  27763. height: math.unit(19.3, "meters"),
  27764. default: true
  27765. },
  27766. ]
  27767. ))
  27768. characterMakers.push(() => makeCharacter(
  27769. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27770. {
  27771. female: {
  27772. height: math.unit(26.15, "m"),
  27773. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27774. name: "Female",
  27775. image: {
  27776. source: "./media/characters/joraxian/female.svg",
  27777. extra: 2912 / 2824,
  27778. bottom: 36 / 2956
  27779. }
  27780. },
  27781. male: {
  27782. height: math.unit(25.4, "m"),
  27783. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27784. name: "Male",
  27785. image: {
  27786. source: "./media/characters/joraxian/male.svg",
  27787. extra: 2877 / 2721,
  27788. bottom: 82 / 2967
  27789. }
  27790. },
  27791. },
  27792. [
  27793. {
  27794. name: "Macro",
  27795. height: math.unit(26.15, "meters"),
  27796. default: true
  27797. },
  27798. ]
  27799. ))
  27800. characterMakers.push(() => makeCharacter(
  27801. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27802. {
  27803. female: {
  27804. height: math.unit(21.6, "m"),
  27805. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27806. name: "Female",
  27807. image: {
  27808. source: "./media/characters/sthara/female.svg",
  27809. extra: 2516 / 2347,
  27810. bottom: 21.5 / 2537
  27811. }
  27812. },
  27813. male: {
  27814. height: math.unit(24, "m"),
  27815. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27816. name: "Male",
  27817. image: {
  27818. source: "./media/characters/sthara/male.svg",
  27819. extra: 2732 / 2607,
  27820. bottom: 23 / 2732
  27821. }
  27822. },
  27823. },
  27824. [
  27825. {
  27826. name: "Macro",
  27827. height: math.unit(21.6, "meters"),
  27828. default: true
  27829. },
  27830. ]
  27831. ))
  27832. characterMakers.push(() => makeCharacter(
  27833. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27834. {
  27835. front: {
  27836. height: math.unit(6 + 4 / 12, "feet"),
  27837. weight: math.unit(175, "lb"),
  27838. name: "Front",
  27839. image: {
  27840. source: "./media/characters/luka-bryzant/front.svg",
  27841. extra: 311 / 289,
  27842. bottom: 4 / 315
  27843. }
  27844. },
  27845. back: {
  27846. height: math.unit(6 + 4 / 12, "feet"),
  27847. weight: math.unit(175, "lb"),
  27848. name: "Back",
  27849. image: {
  27850. source: "./media/characters/luka-bryzant/back.svg",
  27851. extra: 311 / 289,
  27852. bottom: 3.8 / 313.7
  27853. }
  27854. },
  27855. },
  27856. [
  27857. {
  27858. name: "Micro",
  27859. height: math.unit(10, "inches")
  27860. },
  27861. {
  27862. name: "Normal",
  27863. height: math.unit(6 + 4 / 12, "feet"),
  27864. default: true
  27865. },
  27866. {
  27867. name: "Large",
  27868. height: math.unit(12, "feet")
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27874. {
  27875. front: {
  27876. height: math.unit(5 + 7 / 12, "feet"),
  27877. weight: math.unit(185, "lb"),
  27878. name: "Front",
  27879. image: {
  27880. source: "./media/characters/aman-aquila/front.svg",
  27881. extra: 1013 / 976,
  27882. bottom: 45.6 / 1057
  27883. }
  27884. },
  27885. side: {
  27886. height: math.unit(5 + 7 / 12, "feet"),
  27887. weight: math.unit(185, "lb"),
  27888. name: "Side",
  27889. image: {
  27890. source: "./media/characters/aman-aquila/side.svg",
  27891. extra: 1054 / 1011,
  27892. bottom: 15 / 1070
  27893. }
  27894. },
  27895. back: {
  27896. height: math.unit(5 + 7 / 12, "feet"),
  27897. weight: math.unit(185, "lb"),
  27898. name: "Back",
  27899. image: {
  27900. source: "./media/characters/aman-aquila/back.svg",
  27901. extra: 1026 / 970,
  27902. bottom: 12 / 1039
  27903. }
  27904. },
  27905. head: {
  27906. height: math.unit(1.211, "feet"),
  27907. name: "Head",
  27908. image: {
  27909. source: "./media/characters/aman-aquila/head.svg",
  27910. }
  27911. },
  27912. },
  27913. [
  27914. {
  27915. name: "Minimicro",
  27916. height: math.unit(0.057, "inches")
  27917. },
  27918. {
  27919. name: "Micro",
  27920. height: math.unit(7, "inches")
  27921. },
  27922. {
  27923. name: "Mini",
  27924. height: math.unit(3 + 7 / 12, "feet")
  27925. },
  27926. {
  27927. name: "Normal",
  27928. height: math.unit(5 + 7 / 12, "feet"),
  27929. default: true
  27930. },
  27931. {
  27932. name: "Macro",
  27933. height: math.unit(157 + 7 / 12, "feet")
  27934. },
  27935. {
  27936. name: "Megamacro",
  27937. height: math.unit(1557 + 7 / 12, "feet")
  27938. },
  27939. {
  27940. name: "Gigamacro",
  27941. height: math.unit(15557 + 7 / 12, "feet")
  27942. },
  27943. ]
  27944. ))
  27945. characterMakers.push(() => makeCharacter(
  27946. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27947. {
  27948. front: {
  27949. height: math.unit(3 + 2 / 12, "inches"),
  27950. weight: math.unit(0.3, "ounces"),
  27951. name: "Front",
  27952. image: {
  27953. source: "./media/characters/hiphae/front.svg",
  27954. extra: 1931 / 1683,
  27955. bottom: 24 / 1955
  27956. }
  27957. },
  27958. },
  27959. [
  27960. {
  27961. name: "Normal",
  27962. height: math.unit(3 + 1 / 2, "inches"),
  27963. default: true
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27969. {
  27970. front: {
  27971. height: math.unit(5 + 10 / 12, "feet"),
  27972. weight: math.unit(165, "lb"),
  27973. name: "Front",
  27974. image: {
  27975. source: "./media/characters/nicky/front.svg",
  27976. extra: 3144 / 2886,
  27977. bottom: 45.6 / 3192
  27978. }
  27979. },
  27980. back: {
  27981. height: math.unit(5 + 10 / 12, "feet"),
  27982. weight: math.unit(165, "lb"),
  27983. name: "Back",
  27984. image: {
  27985. source: "./media/characters/nicky/back.svg",
  27986. extra: 3055 / 2804,
  27987. bottom: 28.4 / 3087
  27988. }
  27989. },
  27990. frontclothed: {
  27991. height: math.unit(5 + 10 / 12, "feet"),
  27992. weight: math.unit(165, "lb"),
  27993. name: "Front (Clothed)",
  27994. image: {
  27995. source: "./media/characters/nicky/front-clothed.svg",
  27996. extra: 3184.9 / 2926.9,
  27997. bottom: 86.5 / 3239.9
  27998. }
  27999. },
  28000. foot: {
  28001. height: math.unit(1.16, "feet"),
  28002. name: "Foot",
  28003. image: {
  28004. source: "./media/characters/nicky/foot.svg"
  28005. }
  28006. },
  28007. feet: {
  28008. height: math.unit(1.34, "feet"),
  28009. name: "Feet",
  28010. image: {
  28011. source: "./media/characters/nicky/feet.svg"
  28012. }
  28013. },
  28014. maw: {
  28015. height: math.unit(0.9, "feet"),
  28016. name: "Maw",
  28017. image: {
  28018. source: "./media/characters/nicky/maw.svg"
  28019. }
  28020. },
  28021. },
  28022. [
  28023. {
  28024. name: "Normal",
  28025. height: math.unit(5 + 10 / 12, "feet"),
  28026. default: true
  28027. },
  28028. {
  28029. name: "Macro",
  28030. height: math.unit(60, "feet")
  28031. },
  28032. {
  28033. name: "Megamacro",
  28034. height: math.unit(1, "mile")
  28035. },
  28036. ]
  28037. ))
  28038. characterMakers.push(() => makeCharacter(
  28039. { name: "Blair", species: ["seal"], tags: ["taur"] },
  28040. {
  28041. side: {
  28042. height: math.unit(10, "feet"),
  28043. weight: math.unit(600, "lb"),
  28044. name: "Side",
  28045. image: {
  28046. source: "./media/characters/blair/side.svg",
  28047. bottom: 16.6 / 475,
  28048. extra: 458 / 431
  28049. }
  28050. },
  28051. },
  28052. [
  28053. {
  28054. name: "Micro",
  28055. height: math.unit(8, "inches")
  28056. },
  28057. {
  28058. name: "Normal",
  28059. height: math.unit(10, "feet"),
  28060. default: true
  28061. },
  28062. {
  28063. name: "Macro",
  28064. height: math.unit(180, "feet")
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  28070. {
  28071. front: {
  28072. height: math.unit(5 + 4 / 12, "feet"),
  28073. weight: math.unit(125, "lb"),
  28074. name: "Front",
  28075. image: {
  28076. source: "./media/characters/fisher/front.svg",
  28077. extra: 444 / 390,
  28078. bottom: 2 / 444.8
  28079. }
  28080. },
  28081. },
  28082. [
  28083. {
  28084. name: "Micro",
  28085. height: math.unit(4, "inches")
  28086. },
  28087. {
  28088. name: "Normal",
  28089. height: math.unit(5 + 4 / 12, "feet"),
  28090. default: true
  28091. },
  28092. {
  28093. name: "Macro",
  28094. height: math.unit(100, "feet")
  28095. },
  28096. ]
  28097. ))
  28098. characterMakers.push(() => makeCharacter(
  28099. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  28100. {
  28101. front: {
  28102. height: math.unit(6.71, "feet"),
  28103. weight: math.unit(200, "lb"),
  28104. preyCapacity: math.unit(1000000, "people"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/gliss/front.svg",
  28108. extra: 2347 / 2231,
  28109. bottom: 113 / 2462
  28110. }
  28111. },
  28112. hammerspaceSize: {
  28113. height: math.unit(6.71 * 717, "feet"),
  28114. weight: math.unit(200, "lb"),
  28115. preyCapacity: math.unit(1000000, "people"),
  28116. name: "Hammerspace Size",
  28117. image: {
  28118. source: "./media/characters/gliss/front.svg",
  28119. extra: 2347 / 2231,
  28120. bottom: 113 / 2462
  28121. }
  28122. },
  28123. },
  28124. [
  28125. {
  28126. name: "Normal",
  28127. height: math.unit(6.71, "feet"),
  28128. default: true
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  28134. {
  28135. side: {
  28136. height: math.unit(1.44, "m"),
  28137. weight: math.unit(80, "kg"),
  28138. name: "Side",
  28139. image: {
  28140. source: "./media/characters/dune-anderson/side.svg",
  28141. bottom: 49 / 1426
  28142. }
  28143. },
  28144. },
  28145. [
  28146. {
  28147. name: "Wolf-sized",
  28148. height: math.unit(1.44, "meters")
  28149. },
  28150. {
  28151. name: "Normal",
  28152. height: math.unit(5.05, "meters"),
  28153. default: true
  28154. },
  28155. {
  28156. name: "Big",
  28157. height: math.unit(14.4, "meters")
  28158. },
  28159. {
  28160. name: "Huge",
  28161. height: math.unit(144, "meters")
  28162. },
  28163. ]
  28164. ))
  28165. characterMakers.push(() => makeCharacter(
  28166. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28167. {
  28168. front: {
  28169. height: math.unit(6, "feet"),
  28170. weight: math.unit(220, "lb"),
  28171. name: "Front",
  28172. image: {
  28173. source: "./media/characters/hind/front.svg",
  28174. extra: 1912/1787,
  28175. bottom: 52/1964
  28176. }
  28177. },
  28178. back: {
  28179. height: math.unit(6, "feet"),
  28180. weight: math.unit(220, "lb"),
  28181. name: "Back",
  28182. image: {
  28183. source: "./media/characters/hind/back.svg",
  28184. extra: 1901/1794,
  28185. bottom: 26/1927
  28186. }
  28187. },
  28188. },
  28189. [
  28190. {
  28191. name: "Normal",
  28192. height: math.unit(6, "feet"),
  28193. default: true
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28199. {
  28200. front: {
  28201. height: math.unit(2.1, "meters"),
  28202. weight: math.unit(150, "lb"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/tharquench-sizestealer/front.svg",
  28206. extra: 1605/1470,
  28207. bottom: 36/1641
  28208. }
  28209. },
  28210. frontAlt: {
  28211. height: math.unit(2.1, "meters"),
  28212. weight: math.unit(150, "lb"),
  28213. name: "Front (Alt)",
  28214. image: {
  28215. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28216. extra: 2318 / 2063,
  28217. bottom: 93.4 / 2410
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Nano",
  28224. height: math.unit(1, "mm")
  28225. },
  28226. {
  28227. name: "Micro",
  28228. height: math.unit(1, "cm")
  28229. },
  28230. {
  28231. name: "Normal",
  28232. height: math.unit(2.1, "meters"),
  28233. default: true
  28234. },
  28235. ]
  28236. ))
  28237. characterMakers.push(() => makeCharacter(
  28238. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28239. {
  28240. front: {
  28241. height: math.unit(7 + 5 / 12, "feet"),
  28242. weight: math.unit(357, "lb"),
  28243. name: "Front",
  28244. image: {
  28245. source: "./media/characters/solex-draconov/front.svg",
  28246. extra: 1993 / 1865,
  28247. bottom: 117 / 2111
  28248. }
  28249. },
  28250. },
  28251. [
  28252. {
  28253. name: "Natural Height",
  28254. height: math.unit(7 + 5 / 12, "feet"),
  28255. default: true
  28256. },
  28257. {
  28258. name: "Macro",
  28259. height: math.unit(350, "feet")
  28260. },
  28261. {
  28262. name: "Macro+",
  28263. height: math.unit(1000, "feet")
  28264. },
  28265. {
  28266. name: "Megamacro",
  28267. height: math.unit(20, "km")
  28268. },
  28269. {
  28270. name: "Megamacro+",
  28271. height: math.unit(1000, "km")
  28272. },
  28273. {
  28274. name: "Gigamacro",
  28275. height: math.unit(2.5, "Gm")
  28276. },
  28277. {
  28278. name: "Teramacro",
  28279. height: math.unit(15, "Tm")
  28280. },
  28281. {
  28282. name: "Galactic",
  28283. height: math.unit(30, "Zm")
  28284. },
  28285. {
  28286. name: "Universal",
  28287. height: math.unit(21000, "Ym")
  28288. },
  28289. {
  28290. name: "Omniversal",
  28291. height: math.unit(9.861e50, "Ym")
  28292. },
  28293. {
  28294. name: "Existential",
  28295. height: math.unit(1e300, "meters")
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28301. {
  28302. side: {
  28303. height: math.unit(25, "feet"),
  28304. weight: math.unit(90000, "lb"),
  28305. name: "Side",
  28306. image: {
  28307. source: "./media/characters/mandarax/side.svg",
  28308. extra: 614 / 332,
  28309. bottom: 55 / 630
  28310. }
  28311. },
  28312. lounging: {
  28313. height: math.unit(15.4, "feet"),
  28314. weight: math.unit(90000, "lb"),
  28315. name: "Lounging",
  28316. image: {
  28317. source: "./media/characters/mandarax/lounging.svg",
  28318. extra: 817/609,
  28319. bottom: 685/1502
  28320. }
  28321. },
  28322. head: {
  28323. height: math.unit(11.4, "feet"),
  28324. name: "Head",
  28325. image: {
  28326. source: "./media/characters/mandarax/head.svg"
  28327. }
  28328. },
  28329. belly: {
  28330. height: math.unit(33, "feet"),
  28331. name: "Belly",
  28332. preyCapacity: math.unit(500, "people"),
  28333. image: {
  28334. source: "./media/characters/mandarax/belly.svg"
  28335. }
  28336. },
  28337. dick: {
  28338. height: math.unit(8.46, "feet"),
  28339. name: "Dick",
  28340. image: {
  28341. source: "./media/characters/mandarax/dick.svg"
  28342. }
  28343. },
  28344. top: {
  28345. height: math.unit(28, "meters"),
  28346. name: "Top",
  28347. image: {
  28348. source: "./media/characters/mandarax/top.svg"
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(25, "feet"),
  28356. default: true
  28357. },
  28358. ]
  28359. ))
  28360. characterMakers.push(() => makeCharacter(
  28361. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28362. {
  28363. front: {
  28364. height: math.unit(5, "feet"),
  28365. weight: math.unit(90, "lb"),
  28366. name: "Front",
  28367. image: {
  28368. source: "./media/characters/pixil/front.svg",
  28369. extra: 2000 / 1618,
  28370. bottom: 12.3 / 2011
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(5, "feet"),
  28378. default: true
  28379. },
  28380. {
  28381. name: "Megamacro",
  28382. height: math.unit(10, "miles"),
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(7 + 2 / 12, "feet"),
  28391. weight: math.unit(200, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/angel/front.svg",
  28395. extra: 1946/1840,
  28396. bottom: 30/1976
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Normal",
  28403. height: math.unit(7 + 2 / 12, "feet"),
  28404. default: true
  28405. },
  28406. {
  28407. name: "Macro",
  28408. height: math.unit(1000, "feet")
  28409. },
  28410. {
  28411. name: "Megamacro",
  28412. height: math.unit(2, "miles")
  28413. },
  28414. {
  28415. name: "Gigamacro",
  28416. height: math.unit(20, "earths")
  28417. },
  28418. ]
  28419. ))
  28420. characterMakers.push(() => makeCharacter(
  28421. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28422. {
  28423. front: {
  28424. height: math.unit(5, "feet"),
  28425. weight: math.unit(180, "lb"),
  28426. name: "Front",
  28427. image: {
  28428. source: "./media/characters/mekana/front.svg",
  28429. extra: 1671 / 1605,
  28430. bottom: 3.5 / 1691
  28431. }
  28432. },
  28433. side: {
  28434. height: math.unit(5, "feet"),
  28435. weight: math.unit(180, "lb"),
  28436. name: "Side",
  28437. image: {
  28438. source: "./media/characters/mekana/side.svg",
  28439. extra: 1671 / 1605,
  28440. bottom: 3.5 / 1691
  28441. }
  28442. },
  28443. back: {
  28444. height: math.unit(5, "feet"),
  28445. weight: math.unit(180, "lb"),
  28446. name: "Back",
  28447. image: {
  28448. source: "./media/characters/mekana/back.svg",
  28449. extra: 1671 / 1605,
  28450. bottom: 3.5 / 1691
  28451. }
  28452. },
  28453. },
  28454. [
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(5, "feet"),
  28458. default: true
  28459. },
  28460. ]
  28461. ))
  28462. characterMakers.push(() => makeCharacter(
  28463. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28464. {
  28465. front: {
  28466. height: math.unit(4 + 6 / 12, "feet"),
  28467. weight: math.unit(80, "lb"),
  28468. name: "Front",
  28469. image: {
  28470. source: "./media/characters/pixie/front.svg",
  28471. extra: 1924 / 1825,
  28472. bottom: 22.4 / 1946
  28473. }
  28474. },
  28475. },
  28476. [
  28477. {
  28478. name: "Normal",
  28479. height: math.unit(4 + 6 / 12, "feet"),
  28480. default: true
  28481. },
  28482. {
  28483. name: "Macro",
  28484. height: math.unit(40, "feet")
  28485. },
  28486. ]
  28487. ))
  28488. characterMakers.push(() => makeCharacter(
  28489. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28490. {
  28491. front: {
  28492. height: math.unit(2.1, "meters"),
  28493. weight: math.unit(200, "lb"),
  28494. name: "Front",
  28495. image: {
  28496. source: "./media/characters/the-lascivious/front.svg",
  28497. extra: 1 / 0.893,
  28498. bottom: 3.5 / 573.7
  28499. }
  28500. },
  28501. },
  28502. [
  28503. {
  28504. name: "Human Scale",
  28505. height: math.unit(2.1, "meters")
  28506. },
  28507. {
  28508. name: "Wolxi Scale",
  28509. height: math.unit(46.2, "m"),
  28510. default: true
  28511. },
  28512. {
  28513. name: "Boinker of Buildings",
  28514. height: math.unit(10, "km")
  28515. },
  28516. {
  28517. name: "Shagger of Skyscrapers",
  28518. height: math.unit(40, "km")
  28519. },
  28520. {
  28521. name: "Banger of Boroughs",
  28522. height: math.unit(4000, "km")
  28523. },
  28524. {
  28525. name: "Screwer of States",
  28526. height: math.unit(100000, "km")
  28527. },
  28528. {
  28529. name: "Pounder of Planets",
  28530. height: math.unit(2000000, "km")
  28531. },
  28532. ]
  28533. ))
  28534. characterMakers.push(() => makeCharacter(
  28535. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28536. {
  28537. front: {
  28538. height: math.unit(6, "feet"),
  28539. weight: math.unit(150, "lb"),
  28540. name: "Front",
  28541. image: {
  28542. source: "./media/characters/aj/front.svg",
  28543. extra: 2039 / 1562,
  28544. bottom: 40 / 2079
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Normal",
  28551. height: math.unit(11 + 6 / 12, "feet"),
  28552. default: true
  28553. },
  28554. {
  28555. name: "Megamacro",
  28556. height: math.unit(60, "megameters")
  28557. },
  28558. ]
  28559. ))
  28560. characterMakers.push(() => makeCharacter(
  28561. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28562. {
  28563. side: {
  28564. height: math.unit(31 + 8 / 12, "feet"),
  28565. weight: math.unit(75000, "kg"),
  28566. name: "Side",
  28567. image: {
  28568. source: "./media/characters/koros/side.svg",
  28569. extra: 1442 / 1297,
  28570. bottom: 122.7 / 1562
  28571. }
  28572. },
  28573. dicksKingsCrown: {
  28574. height: math.unit(6, "feet"),
  28575. name: "Dicks (King's Crown)",
  28576. image: {
  28577. source: "./media/characters/koros/dicks-kings-crown.svg"
  28578. }
  28579. },
  28580. dicksTailSet: {
  28581. height: math.unit(3, "feet"),
  28582. name: "Dicks (Tail Set)",
  28583. image: {
  28584. source: "./media/characters/koros/dicks-tail-set.svg"
  28585. }
  28586. },
  28587. dickCumming: {
  28588. height: math.unit(7.98, "feet"),
  28589. name: "Dick (Cumming)",
  28590. image: {
  28591. source: "./media/characters/koros/dick-cumming.svg"
  28592. }
  28593. },
  28594. dicksBack: {
  28595. height: math.unit(5.9, "feet"),
  28596. name: "Dicks (Back)",
  28597. image: {
  28598. source: "./media/characters/koros/dicks-back.svg"
  28599. }
  28600. },
  28601. dicksFront: {
  28602. height: math.unit(3.72, "feet"),
  28603. name: "Dicks (Front)",
  28604. image: {
  28605. source: "./media/characters/koros/dicks-front.svg"
  28606. }
  28607. },
  28608. dicksPeeking: {
  28609. height: math.unit(3.0, "feet"),
  28610. name: "Dicks (Peeking)",
  28611. image: {
  28612. source: "./media/characters/koros/dicks-peeking.svg"
  28613. }
  28614. },
  28615. eye: {
  28616. height: math.unit(1.7, "feet"),
  28617. name: "Eye",
  28618. image: {
  28619. source: "./media/characters/koros/eye.svg"
  28620. }
  28621. },
  28622. headFront: {
  28623. height: math.unit(11.69, "feet"),
  28624. name: "Head (Front)",
  28625. image: {
  28626. source: "./media/characters/koros/head-front.svg"
  28627. }
  28628. },
  28629. headSide: {
  28630. height: math.unit(14, "feet"),
  28631. name: "Head (Side)",
  28632. image: {
  28633. source: "./media/characters/koros/head-side.svg"
  28634. }
  28635. },
  28636. leg: {
  28637. height: math.unit(17, "feet"),
  28638. name: "Leg",
  28639. image: {
  28640. source: "./media/characters/koros/leg.svg"
  28641. }
  28642. },
  28643. mawSide: {
  28644. height: math.unit(12.8, "feet"),
  28645. name: "Maw (Side)",
  28646. image: {
  28647. source: "./media/characters/koros/maw-side.svg"
  28648. }
  28649. },
  28650. mawSpitting: {
  28651. height: math.unit(17, "feet"),
  28652. name: "Maw (Spitting)",
  28653. image: {
  28654. source: "./media/characters/koros/maw-spitting.svg"
  28655. }
  28656. },
  28657. slit: {
  28658. height: math.unit(2.8, "feet"),
  28659. name: "Slit",
  28660. image: {
  28661. source: "./media/characters/koros/slit.svg"
  28662. }
  28663. },
  28664. stomach: {
  28665. height: math.unit(6.8, "feet"),
  28666. preyCapacity: math.unit(20, "people"),
  28667. name: "Stomach",
  28668. image: {
  28669. source: "./media/characters/koros/stomach.svg"
  28670. }
  28671. },
  28672. wingspanBottom: {
  28673. height: math.unit(114, "feet"),
  28674. name: "Wingspan (Bottom)",
  28675. image: {
  28676. source: "./media/characters/koros/wingspan-bottom.svg"
  28677. }
  28678. },
  28679. wingspanTop: {
  28680. height: math.unit(104, "feet"),
  28681. name: "Wingspan (Top)",
  28682. image: {
  28683. source: "./media/characters/koros/wingspan-top.svg"
  28684. }
  28685. },
  28686. },
  28687. [
  28688. {
  28689. name: "Normal",
  28690. height: math.unit(31 + 8 / 12, "feet"),
  28691. default: true
  28692. },
  28693. ]
  28694. ))
  28695. characterMakers.push(() => makeCharacter(
  28696. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28697. {
  28698. front: {
  28699. height: math.unit(18 + 5 / 12, "feet"),
  28700. weight: math.unit(3750, "kg"),
  28701. name: "Front",
  28702. image: {
  28703. source: "./media/characters/vexx/front.svg",
  28704. extra: 426 / 396,
  28705. bottom: 31.5 / 458
  28706. }
  28707. },
  28708. maw: {
  28709. height: math.unit(6, "feet"),
  28710. name: "Maw",
  28711. image: {
  28712. source: "./media/characters/vexx/maw.svg"
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Normal",
  28719. height: math.unit(18 + 5 / 12, "feet"),
  28720. default: true
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(17 + 6 / 12, "feet"),
  28729. weight: math.unit(150, "lb"),
  28730. name: "Front",
  28731. image: {
  28732. source: "./media/characters/baadra/front.svg",
  28733. extra: 1694/1553,
  28734. bottom: 179/1873
  28735. }
  28736. },
  28737. frontAlt: {
  28738. height: math.unit(17 + 6 / 12, "feet"),
  28739. weight: math.unit(150, "lb"),
  28740. name: "Front (Alt)",
  28741. image: {
  28742. source: "./media/characters/baadra/front-alt.svg",
  28743. extra: 3137 / 2890,
  28744. bottom: 168.4 / 3305
  28745. }
  28746. },
  28747. back: {
  28748. height: math.unit(17 + 6 / 12, "feet"),
  28749. weight: math.unit(150, "lb"),
  28750. name: "Back",
  28751. image: {
  28752. source: "./media/characters/baadra/back.svg",
  28753. extra: 3142 / 2890,
  28754. bottom: 220 / 3371
  28755. }
  28756. },
  28757. head: {
  28758. height: math.unit(5.45, "feet"),
  28759. name: "Head",
  28760. image: {
  28761. source: "./media/characters/baadra/head.svg"
  28762. }
  28763. },
  28764. headAngry: {
  28765. height: math.unit(4.95, "feet"),
  28766. name: "Head (Angry)",
  28767. image: {
  28768. source: "./media/characters/baadra/head-angry.svg"
  28769. }
  28770. },
  28771. headOpen: {
  28772. height: math.unit(6, "feet"),
  28773. name: "Head (Open)",
  28774. image: {
  28775. source: "./media/characters/baadra/head-open.svg"
  28776. }
  28777. },
  28778. },
  28779. [
  28780. {
  28781. name: "Normal",
  28782. height: math.unit(17 + 6 / 12, "feet"),
  28783. default: true
  28784. },
  28785. ]
  28786. ))
  28787. characterMakers.push(() => makeCharacter(
  28788. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28789. {
  28790. front: {
  28791. height: math.unit(7 + 3 / 12, "feet"),
  28792. weight: math.unit(180, "lb"),
  28793. name: "Front",
  28794. image: {
  28795. source: "./media/characters/juri/front.svg",
  28796. extra: 1401 / 1237,
  28797. bottom: 18.5 / 1418
  28798. }
  28799. },
  28800. side: {
  28801. height: math.unit(7 + 3 / 12, "feet"),
  28802. weight: math.unit(180, "lb"),
  28803. name: "Side",
  28804. image: {
  28805. source: "./media/characters/juri/side.svg",
  28806. extra: 1424 / 1242,
  28807. bottom: 18.5 / 1447
  28808. }
  28809. },
  28810. sitting: {
  28811. height: math.unit(6, "feet"),
  28812. weight: math.unit(180, "lb"),
  28813. name: "Sitting",
  28814. image: {
  28815. source: "./media/characters/juri/sitting.svg",
  28816. extra: 1270 / 1143,
  28817. bottom: 100 / 1343
  28818. }
  28819. },
  28820. back: {
  28821. height: math.unit(7 + 3 / 12, "feet"),
  28822. weight: math.unit(180, "lb"),
  28823. name: "Back",
  28824. image: {
  28825. source: "./media/characters/juri/back.svg",
  28826. extra: 1377 / 1240,
  28827. bottom: 23.7 / 1405
  28828. }
  28829. },
  28830. maw: {
  28831. height: math.unit(2.8, "feet"),
  28832. name: "Maw",
  28833. image: {
  28834. source: "./media/characters/juri/maw.svg"
  28835. }
  28836. },
  28837. stomach: {
  28838. height: math.unit(0.89, "feet"),
  28839. preyCapacity: math.unit(4, "liters"),
  28840. name: "Stomach",
  28841. image: {
  28842. source: "./media/characters/juri/stomach.svg"
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Normal",
  28849. height: math.unit(7 + 3 / 12, "feet"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28856. {
  28857. fox: {
  28858. height: math.unit(5 + 6 / 12, "feet"),
  28859. weight: math.unit(140, "lb"),
  28860. name: "Fox",
  28861. image: {
  28862. source: "./media/characters/maxene-sita/fox.svg",
  28863. extra: 146 / 138,
  28864. bottom: 2.1 / 148.19
  28865. }
  28866. },
  28867. foxLaying: {
  28868. height: math.unit(1.70, "feet"),
  28869. weight: math.unit(140, "lb"),
  28870. name: "Fox (Laying)",
  28871. image: {
  28872. source: "./media/characters/maxene-sita/fox-laying.svg",
  28873. extra: 910 / 572,
  28874. bottom: 71 / 981
  28875. }
  28876. },
  28877. kitsune: {
  28878. height: math.unit(10, "feet"),
  28879. weight: math.unit(800, "lb"),
  28880. name: "Kitsune",
  28881. image: {
  28882. source: "./media/characters/maxene-sita/kitsune.svg",
  28883. extra: 185 / 176,
  28884. bottom: 4.7 / 189.9
  28885. }
  28886. },
  28887. hellhound: {
  28888. height: math.unit(10, "feet"),
  28889. weight: math.unit(700, "lb"),
  28890. name: "Hellhound",
  28891. image: {
  28892. source: "./media/characters/maxene-sita/hellhound.svg",
  28893. extra: 1600 / 1545,
  28894. bottom: 81 / 1681
  28895. }
  28896. },
  28897. },
  28898. [
  28899. {
  28900. name: "Normal",
  28901. height: math.unit(5 + 6 / 12, "feet"),
  28902. default: true
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28908. {
  28909. front: {
  28910. height: math.unit(3 + 4 / 12, "feet"),
  28911. weight: math.unit(70, "lb"),
  28912. name: "Front",
  28913. image: {
  28914. source: "./media/characters/maia/front.svg",
  28915. extra: 227 / 219.5,
  28916. bottom: 40 / 267
  28917. }
  28918. },
  28919. back: {
  28920. height: math.unit(3 + 4 / 12, "feet"),
  28921. weight: math.unit(70, "lb"),
  28922. name: "Back",
  28923. image: {
  28924. source: "./media/characters/maia/back.svg",
  28925. extra: 237 / 225
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(3 + 4 / 12, "feet"),
  28933. default: true
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28939. {
  28940. front: {
  28941. height: math.unit(5 + 10 / 12, "feet"),
  28942. weight: math.unit(197, "lb"),
  28943. name: "Front",
  28944. image: {
  28945. source: "./media/characters/jabaro/front.svg",
  28946. extra: 225 / 216,
  28947. bottom: 5.06 / 230
  28948. }
  28949. },
  28950. back: {
  28951. height: math.unit(5 + 10 / 12, "feet"),
  28952. weight: math.unit(197, "lb"),
  28953. name: "Back",
  28954. image: {
  28955. source: "./media/characters/jabaro/back.svg",
  28956. extra: 225 / 219,
  28957. bottom: 1.9 / 227
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(5 + 10 / 12, "feet"),
  28965. default: true
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28971. {
  28972. front: {
  28973. height: math.unit(5 + 8 / 12, "feet"),
  28974. weight: math.unit(139, "lb"),
  28975. name: "Front",
  28976. image: {
  28977. source: "./media/characters/risa/front.svg",
  28978. extra: 270 / 260,
  28979. bottom: 11.2 / 282
  28980. }
  28981. },
  28982. back: {
  28983. height: math.unit(5 + 8 / 12, "feet"),
  28984. weight: math.unit(139, "lb"),
  28985. name: "Back",
  28986. image: {
  28987. source: "./media/characters/risa/back.svg",
  28988. extra: 264 / 255,
  28989. bottom: 4 / 268
  28990. }
  28991. },
  28992. },
  28993. [
  28994. {
  28995. name: "Normal",
  28996. height: math.unit(5 + 8 / 12, "feet"),
  28997. default: true
  28998. },
  28999. ]
  29000. ))
  29001. characterMakers.push(() => makeCharacter(
  29002. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  29003. {
  29004. front: {
  29005. height: math.unit(2 + 11 / 12, "feet"),
  29006. weight: math.unit(30, "lb"),
  29007. name: "Front",
  29008. image: {
  29009. source: "./media/characters/weatley/front.svg",
  29010. bottom: 10.7 / 414,
  29011. extra: 403.5 / 362
  29012. }
  29013. },
  29014. back: {
  29015. height: math.unit(2 + 11 / 12, "feet"),
  29016. weight: math.unit(30, "lb"),
  29017. name: "Back",
  29018. image: {
  29019. source: "./media/characters/weatley/back.svg",
  29020. bottom: 10.7 / 414,
  29021. extra: 403.5 / 362
  29022. }
  29023. },
  29024. },
  29025. [
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(2 + 11 / 12, "feet"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(5 + 2 / 12, "feet"),
  29038. weight: math.unit(50, "kg"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/mercury-crescent/front.svg",
  29042. extra: 1088 / 1033,
  29043. bottom: 18.9 / 1109
  29044. }
  29045. },
  29046. },
  29047. [
  29048. {
  29049. name: "Normal",
  29050. height: math.unit(5 + 2 / 12, "feet"),
  29051. default: true
  29052. },
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  29057. {
  29058. front: {
  29059. height: math.unit(2, "feet"),
  29060. weight: math.unit(15, "kg"),
  29061. name: "Front",
  29062. image: {
  29063. source: "./media/characters/diamond-jones/front.svg",
  29064. extra: 727/723,
  29065. bottom: 46/773
  29066. }
  29067. },
  29068. },
  29069. [
  29070. {
  29071. name: "Normal",
  29072. height: math.unit(2, "feet"),
  29073. default: true
  29074. },
  29075. ]
  29076. ))
  29077. characterMakers.push(() => makeCharacter(
  29078. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  29079. {
  29080. front: {
  29081. height: math.unit(3, "feet"),
  29082. weight: math.unit(30, "kg"),
  29083. name: "Front",
  29084. image: {
  29085. source: "./media/characters/sweet-bit/front.svg",
  29086. extra: 675 / 567,
  29087. bottom: 27.7 / 703
  29088. }
  29089. },
  29090. },
  29091. [
  29092. {
  29093. name: "Normal",
  29094. height: math.unit(3, "feet"),
  29095. default: true
  29096. },
  29097. ]
  29098. ))
  29099. characterMakers.push(() => makeCharacter(
  29100. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  29101. {
  29102. side: {
  29103. height: math.unit(9.178, "feet"),
  29104. weight: math.unit(500, "lb"),
  29105. name: "Side",
  29106. image: {
  29107. source: "./media/characters/umbrazen/side.svg",
  29108. extra: 1730 / 1473,
  29109. bottom: 34.6 / 1765
  29110. }
  29111. },
  29112. },
  29113. [
  29114. {
  29115. name: "Normal",
  29116. height: math.unit(9.178, "feet"),
  29117. default: true
  29118. },
  29119. ]
  29120. ))
  29121. characterMakers.push(() => makeCharacter(
  29122. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  29123. {
  29124. front: {
  29125. height: math.unit(10, "feet"),
  29126. weight: math.unit(750, "lb"),
  29127. name: "Front",
  29128. image: {
  29129. source: "./media/characters/arlist/front.svg",
  29130. extra: 961 / 778,
  29131. bottom: 6.2 / 986
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Normal",
  29138. height: math.unit(10, "feet"),
  29139. default: true
  29140. },
  29141. ]
  29142. ))
  29143. characterMakers.push(() => makeCharacter(
  29144. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29145. {
  29146. front: {
  29147. height: math.unit(5 + 1 / 12, "feet"),
  29148. weight: math.unit(110, "lb"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/aradel/front.svg",
  29152. extra: 324 / 303,
  29153. bottom: 3.6 / 329.4
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Normal",
  29160. height: math.unit(5 + 1 / 12, "feet"),
  29161. default: true
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29167. {
  29168. dressed: {
  29169. height: math.unit(3 + 8 / 12, "feet"),
  29170. weight: math.unit(50, "lb"),
  29171. name: "Dressed",
  29172. image: {
  29173. source: "./media/characters/serryn/dressed.svg",
  29174. extra: 1792 / 1656,
  29175. bottom: 43.5 / 1840
  29176. }
  29177. },
  29178. nude: {
  29179. height: math.unit(3 + 8 / 12, "feet"),
  29180. weight: math.unit(50, "lb"),
  29181. name: "Nude",
  29182. image: {
  29183. source: "./media/characters/serryn/nude.svg",
  29184. extra: 1792 / 1656,
  29185. bottom: 43.5 / 1840
  29186. }
  29187. },
  29188. },
  29189. [
  29190. {
  29191. name: "Normal",
  29192. height: math.unit(3 + 8 / 12, "feet"),
  29193. default: true
  29194. },
  29195. ]
  29196. ))
  29197. characterMakers.push(() => makeCharacter(
  29198. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29199. {
  29200. front: {
  29201. height: math.unit(7 + 10 / 12, "feet"),
  29202. weight: math.unit(255, "lb"),
  29203. name: "Front",
  29204. image: {
  29205. source: "./media/characters/xavier-thyme/front.svg",
  29206. extra: 3733 / 3642,
  29207. bottom: 131 / 3869
  29208. }
  29209. },
  29210. frontRaven: {
  29211. height: math.unit(7 + 10 / 12, "feet"),
  29212. weight: math.unit(255, "lb"),
  29213. name: "Front (Raven)",
  29214. image: {
  29215. source: "./media/characters/xavier-thyme/front-raven.svg",
  29216. extra: 4385 / 3642,
  29217. bottom: 131 / 4517
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Normal",
  29224. height: math.unit(7 + 10 / 12, "feet"),
  29225. default: true
  29226. },
  29227. ]
  29228. ))
  29229. characterMakers.push(() => makeCharacter(
  29230. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29231. {
  29232. front: {
  29233. height: math.unit(1.6, "m"),
  29234. weight: math.unit(50, "kg"),
  29235. name: "Front",
  29236. image: {
  29237. source: "./media/characters/kiki/front.svg",
  29238. extra: 4682 / 3610,
  29239. bottom: 115 / 4777
  29240. }
  29241. },
  29242. },
  29243. [
  29244. {
  29245. name: "Normal",
  29246. height: math.unit(1.6, "meters"),
  29247. default: true
  29248. },
  29249. ]
  29250. ))
  29251. characterMakers.push(() => makeCharacter(
  29252. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29253. {
  29254. front: {
  29255. height: math.unit(50, "m"),
  29256. weight: math.unit(500, "tonnes"),
  29257. name: "Front",
  29258. image: {
  29259. source: "./media/characters/ryoko/front.svg",
  29260. extra: 4632 / 3926,
  29261. bottom: 193 / 4823
  29262. }
  29263. },
  29264. },
  29265. [
  29266. {
  29267. name: "Normal",
  29268. height: math.unit(50, "meters"),
  29269. default: true
  29270. },
  29271. ]
  29272. ))
  29273. characterMakers.push(() => makeCharacter(
  29274. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29275. {
  29276. front: {
  29277. height: math.unit(30, "m"),
  29278. weight: math.unit(22, "tonnes"),
  29279. name: "Front",
  29280. image: {
  29281. source: "./media/characters/elio/front.svg",
  29282. extra: 4582 / 3720,
  29283. bottom: 236 / 4828
  29284. }
  29285. },
  29286. },
  29287. [
  29288. {
  29289. name: "Normal",
  29290. height: math.unit(30, "meters"),
  29291. default: true
  29292. },
  29293. ]
  29294. ))
  29295. characterMakers.push(() => makeCharacter(
  29296. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29297. {
  29298. front: {
  29299. height: math.unit(6 + 3 / 12, "feet"),
  29300. weight: math.unit(120, "lb"),
  29301. name: "Front",
  29302. image: {
  29303. source: "./media/characters/azura/front.svg",
  29304. extra: 1149 / 1135,
  29305. bottom: 45 / 1194
  29306. }
  29307. },
  29308. frontClothed: {
  29309. height: math.unit(6 + 3 / 12, "feet"),
  29310. weight: math.unit(120, "lb"),
  29311. name: "Front (Clothed)",
  29312. image: {
  29313. source: "./media/characters/azura/front-clothed.svg",
  29314. extra: 1149 / 1135,
  29315. bottom: 45 / 1194
  29316. }
  29317. },
  29318. },
  29319. [
  29320. {
  29321. name: "Normal",
  29322. height: math.unit(6 + 3 / 12, "feet"),
  29323. default: true
  29324. },
  29325. {
  29326. name: "Macro",
  29327. height: math.unit(20 + 6 / 12, "feet")
  29328. },
  29329. {
  29330. name: "Megamacro",
  29331. height: math.unit(12, "miles")
  29332. },
  29333. {
  29334. name: "Gigamacro",
  29335. height: math.unit(10000, "miles")
  29336. },
  29337. {
  29338. name: "Teramacro",
  29339. height: math.unit(900000, "miles")
  29340. },
  29341. ]
  29342. ))
  29343. characterMakers.push(() => makeCharacter(
  29344. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29345. {
  29346. front: {
  29347. height: math.unit(12, "feet"),
  29348. weight: math.unit(1, "ton"),
  29349. capacity: math.unit(660000, "gallons"),
  29350. name: "Front",
  29351. image: {
  29352. source: "./media/characters/zeus/front.svg",
  29353. extra: 5005 / 4717,
  29354. bottom: 363 / 5388
  29355. }
  29356. },
  29357. },
  29358. [
  29359. {
  29360. name: "Normal",
  29361. height: math.unit(12, "feet")
  29362. },
  29363. {
  29364. name: "Preferred Size",
  29365. height: math.unit(0.5, "miles"),
  29366. default: true
  29367. },
  29368. {
  29369. name: "Giga Horse",
  29370. height: math.unit(300, "miles")
  29371. },
  29372. {
  29373. name: "Riding Planets",
  29374. height: math.unit(30, "megameters")
  29375. },
  29376. {
  29377. name: "Cosmic Giant",
  29378. height: math.unit(3, "zettameters")
  29379. },
  29380. {
  29381. name: "Breeding God",
  29382. height: math.unit(9.92e22, "yottameters")
  29383. },
  29384. ]
  29385. ))
  29386. characterMakers.push(() => makeCharacter(
  29387. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29388. {
  29389. side: {
  29390. height: math.unit(9, "feet"),
  29391. weight: math.unit(1500, "kg"),
  29392. name: "Side",
  29393. image: {
  29394. source: "./media/characters/fang/side.svg",
  29395. extra: 924 / 866,
  29396. bottom: 47.5 / 972.3
  29397. }
  29398. },
  29399. },
  29400. [
  29401. {
  29402. name: "Normal",
  29403. height: math.unit(9, "feet"),
  29404. default: true
  29405. },
  29406. {
  29407. name: "Macro",
  29408. height: math.unit(75 + 6 / 12, "feet")
  29409. },
  29410. {
  29411. name: "Teramacro",
  29412. height: math.unit(50000, "miles")
  29413. },
  29414. ]
  29415. ))
  29416. characterMakers.push(() => makeCharacter(
  29417. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29418. {
  29419. front: {
  29420. height: math.unit(10, "feet"),
  29421. weight: math.unit(2, "tons"),
  29422. name: "Front",
  29423. image: {
  29424. source: "./media/characters/rekhit/front.svg",
  29425. extra: 2796 / 2590,
  29426. bottom: 225 / 3022
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Normal",
  29433. height: math.unit(10, "feet"),
  29434. default: true
  29435. },
  29436. {
  29437. name: "Macro",
  29438. height: math.unit(500, "feet")
  29439. },
  29440. ]
  29441. ))
  29442. characterMakers.push(() => makeCharacter(
  29443. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29444. {
  29445. front: {
  29446. height: math.unit(7 + 6.451 / 12, "feet"),
  29447. weight: math.unit(310, "lb"),
  29448. name: "Front",
  29449. image: {
  29450. source: "./media/characters/dahlia-verrick/front.svg",
  29451. extra: 1488 / 1365,
  29452. bottom: 6.2 / 1495
  29453. }
  29454. },
  29455. back: {
  29456. height: math.unit(7 + 6.451 / 12, "feet"),
  29457. weight: math.unit(310, "lb"),
  29458. name: "Back",
  29459. image: {
  29460. source: "./media/characters/dahlia-verrick/back.svg",
  29461. extra: 1472 / 1351,
  29462. bottom: 5.28 / 1477
  29463. }
  29464. },
  29465. frontBusiness: {
  29466. height: math.unit(7 + 6.451 / 12, "feet"),
  29467. weight: math.unit(200, "lb"),
  29468. name: "Front (Business)",
  29469. image: {
  29470. source: "./media/characters/dahlia-verrick/front-business.svg",
  29471. extra: 1478 / 1381,
  29472. bottom: 5.5 / 1484
  29473. }
  29474. },
  29475. frontCasual: {
  29476. height: math.unit(7 + 6.451 / 12, "feet"),
  29477. weight: math.unit(200, "lb"),
  29478. name: "Front (Casual)",
  29479. image: {
  29480. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29481. extra: 1478 / 1381,
  29482. bottom: 5.5 / 1484
  29483. }
  29484. },
  29485. },
  29486. [
  29487. {
  29488. name: "Travel-Sized",
  29489. height: math.unit(7.45, "inches")
  29490. },
  29491. {
  29492. name: "Normal",
  29493. height: math.unit(7 + 6.451 / 12, "feet"),
  29494. default: true
  29495. },
  29496. {
  29497. name: "Hitting the Town",
  29498. height: math.unit(37 + 8 / 12, "feet")
  29499. },
  29500. {
  29501. name: "Stomp in the Suburbs",
  29502. height: math.unit(964 + 9.728 / 12, "feet")
  29503. },
  29504. {
  29505. name: "Sit on the City",
  29506. height: math.unit(61747 + 10.592 / 12, "feet")
  29507. },
  29508. {
  29509. name: "Glomp the Globe",
  29510. height: math.unit(252919327 + 4.832 / 12, "feet")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(6 + 4 / 12, "feet"),
  29519. weight: math.unit(320, "lb"),
  29520. name: "Front",
  29521. image: {
  29522. source: "./media/characters/balina-mahigan/front.svg",
  29523. extra: 447 / 428,
  29524. bottom: 18 / 466
  29525. }
  29526. },
  29527. back: {
  29528. height: math.unit(6 + 4 / 12, "feet"),
  29529. weight: math.unit(320, "lb"),
  29530. name: "Back",
  29531. image: {
  29532. source: "./media/characters/balina-mahigan/back.svg",
  29533. extra: 445 / 428,
  29534. bottom: 4.07 / 448
  29535. }
  29536. },
  29537. arm: {
  29538. height: math.unit(1.88, "feet"),
  29539. name: "Arm",
  29540. image: {
  29541. source: "./media/characters/balina-mahigan/arm.svg"
  29542. }
  29543. },
  29544. backPort: {
  29545. height: math.unit(0.685, "feet"),
  29546. name: "Back Port",
  29547. image: {
  29548. source: "./media/characters/balina-mahigan/back-port.svg"
  29549. }
  29550. },
  29551. hoofpaw: {
  29552. height: math.unit(1.41, "feet"),
  29553. name: "Hoofpaw",
  29554. image: {
  29555. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29556. }
  29557. },
  29558. leftHandBack: {
  29559. height: math.unit(0.938, "feet"),
  29560. name: "Left Hand (Back)",
  29561. image: {
  29562. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29563. }
  29564. },
  29565. leftHandFront: {
  29566. height: math.unit(0.938, "feet"),
  29567. name: "Left Hand (Front)",
  29568. image: {
  29569. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29570. }
  29571. },
  29572. rightHandBack: {
  29573. height: math.unit(0.95, "feet"),
  29574. name: "Right Hand (Back)",
  29575. image: {
  29576. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29577. }
  29578. },
  29579. rightHandFront: {
  29580. height: math.unit(0.95, "feet"),
  29581. name: "Right Hand (Front)",
  29582. image: {
  29583. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29584. }
  29585. },
  29586. },
  29587. [
  29588. {
  29589. name: "Normal",
  29590. height: math.unit(6 + 4 / 12, "feet"),
  29591. default: true
  29592. },
  29593. ]
  29594. ))
  29595. characterMakers.push(() => makeCharacter(
  29596. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29597. {
  29598. front: {
  29599. height: math.unit(6, "feet"),
  29600. weight: math.unit(320, "lb"),
  29601. name: "Front",
  29602. image: {
  29603. source: "./media/characters/balina-mejeri/front.svg",
  29604. extra: 517 / 488,
  29605. bottom: 44.2 / 561
  29606. }
  29607. },
  29608. },
  29609. [
  29610. {
  29611. name: "Normal",
  29612. height: math.unit(6 + 4 / 12, "feet")
  29613. },
  29614. {
  29615. name: "Business",
  29616. height: math.unit(155, "feet"),
  29617. default: true
  29618. },
  29619. ]
  29620. ))
  29621. characterMakers.push(() => makeCharacter(
  29622. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29623. {
  29624. kneeling: {
  29625. height: math.unit(6 + 4 / 12, "feet"),
  29626. weight: math.unit(300 * 20, "lb"),
  29627. name: "Kneeling",
  29628. image: {
  29629. source: "./media/characters/balbarian/kneeling.svg",
  29630. extra: 922 / 862,
  29631. bottom: 42.4 / 965
  29632. }
  29633. },
  29634. },
  29635. [
  29636. {
  29637. name: "Normal",
  29638. height: math.unit(6 + 4 / 12, "feet")
  29639. },
  29640. {
  29641. name: "Treasured",
  29642. height: math.unit(18 + 9 / 12, "feet"),
  29643. default: true
  29644. },
  29645. {
  29646. name: "Macro",
  29647. height: math.unit(900, "feet")
  29648. },
  29649. ]
  29650. ))
  29651. characterMakers.push(() => makeCharacter(
  29652. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29653. {
  29654. front: {
  29655. height: math.unit(6 + 4 / 12, "feet"),
  29656. weight: math.unit(325, "lb"),
  29657. name: "Front",
  29658. image: {
  29659. source: "./media/characters/balina-amarini/front.svg",
  29660. extra: 415 / 403,
  29661. bottom: 19 / 433.4
  29662. }
  29663. },
  29664. back: {
  29665. height: math.unit(6 + 4 / 12, "feet"),
  29666. weight: math.unit(325, "lb"),
  29667. name: "Back",
  29668. image: {
  29669. source: "./media/characters/balina-amarini/back.svg",
  29670. extra: 415 / 403,
  29671. bottom: 13.5 / 432
  29672. }
  29673. },
  29674. overdrive: {
  29675. height: math.unit(6 + 4 / 12, "feet"),
  29676. weight: math.unit(400, "lb"),
  29677. name: "Overdrive",
  29678. image: {
  29679. source: "./media/characters/balina-amarini/overdrive.svg",
  29680. extra: 269 / 259,
  29681. bottom: 12 / 282
  29682. }
  29683. },
  29684. },
  29685. [
  29686. {
  29687. name: "Boom",
  29688. height: math.unit(9 + 10 / 12, "feet"),
  29689. default: true
  29690. },
  29691. {
  29692. name: "Macro",
  29693. height: math.unit(280, "feet")
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29699. {
  29700. goddess: {
  29701. height: math.unit(600, "feet"),
  29702. weight: math.unit(2000000, "tons"),
  29703. name: "Goddess",
  29704. image: {
  29705. source: "./media/characters/lady-kubwa/goddess.svg",
  29706. extra: 1240.5 / 1223,
  29707. bottom: 22 / 1263
  29708. }
  29709. },
  29710. goddesser: {
  29711. height: math.unit(900, "feet"),
  29712. weight: math.unit(20000000, "lb"),
  29713. name: "Goddess-er",
  29714. image: {
  29715. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29716. extra: 899 / 888,
  29717. bottom: 12.6 / 912
  29718. }
  29719. },
  29720. },
  29721. [
  29722. {
  29723. name: "Macro",
  29724. height: math.unit(600, "feet"),
  29725. default: true
  29726. },
  29727. {
  29728. name: "Megamacro",
  29729. height: math.unit(250, "miles")
  29730. },
  29731. ]
  29732. ))
  29733. characterMakers.push(() => makeCharacter(
  29734. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29735. {
  29736. front: {
  29737. height: math.unit(7 + 7 / 12, "feet"),
  29738. weight: math.unit(250, "lb"),
  29739. name: "Front",
  29740. image: {
  29741. source: "./media/characters/tala-grovehorn/front.svg",
  29742. extra: 2636 / 2525,
  29743. bottom: 147 / 2781
  29744. }
  29745. },
  29746. back: {
  29747. height: math.unit(7 + 7 / 12, "feet"),
  29748. weight: math.unit(250, "lb"),
  29749. name: "Back",
  29750. image: {
  29751. source: "./media/characters/tala-grovehorn/back.svg",
  29752. extra: 2635 / 2539,
  29753. bottom: 100 / 2732.8
  29754. }
  29755. },
  29756. mouth: {
  29757. height: math.unit(1.15, "feet"),
  29758. name: "Mouth",
  29759. image: {
  29760. source: "./media/characters/tala-grovehorn/mouth.svg"
  29761. }
  29762. },
  29763. dick: {
  29764. height: math.unit(2.36, "feet"),
  29765. name: "Dick",
  29766. image: {
  29767. source: "./media/characters/tala-grovehorn/dick.svg"
  29768. }
  29769. },
  29770. slit: {
  29771. height: math.unit(0.61, "feet"),
  29772. name: "Slit",
  29773. image: {
  29774. source: "./media/characters/tala-grovehorn/slit.svg"
  29775. }
  29776. },
  29777. },
  29778. [
  29779. ]
  29780. ))
  29781. characterMakers.push(() => makeCharacter(
  29782. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29783. {
  29784. front: {
  29785. height: math.unit(7 + 7 / 12, "feet"),
  29786. weight: math.unit(225, "lb"),
  29787. name: "Front",
  29788. image: {
  29789. source: "./media/characters/epona/front.svg",
  29790. extra: 2445 / 2290,
  29791. bottom: 251 / 2696
  29792. }
  29793. },
  29794. back: {
  29795. height: math.unit(7 + 7 / 12, "feet"),
  29796. weight: math.unit(225, "lb"),
  29797. name: "Back",
  29798. image: {
  29799. source: "./media/characters/epona/back.svg",
  29800. extra: 2546 / 2408,
  29801. bottom: 44 / 2589
  29802. }
  29803. },
  29804. genitals: {
  29805. height: math.unit(1.5, "feet"),
  29806. name: "Genitals",
  29807. image: {
  29808. source: "./media/characters/epona/genitals.svg"
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Normal",
  29815. height: math.unit(7 + 7 / 12, "feet"),
  29816. default: true
  29817. },
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29822. {
  29823. front: {
  29824. height: math.unit(7, "feet"),
  29825. weight: math.unit(518, "lb"),
  29826. name: "Front",
  29827. image: {
  29828. source: "./media/characters/avia-bloodbourn/front.svg",
  29829. extra: 1466 / 1350,
  29830. bottom: 65 / 1527
  29831. }
  29832. },
  29833. },
  29834. [
  29835. ]
  29836. ))
  29837. characterMakers.push(() => makeCharacter(
  29838. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29839. {
  29840. front: {
  29841. height: math.unit(9.35, "feet"),
  29842. weight: math.unit(600, "lb"),
  29843. name: "Front",
  29844. image: {
  29845. source: "./media/characters/amera/front.svg",
  29846. extra: 891 / 818,
  29847. bottom: 30 / 922.7
  29848. }
  29849. },
  29850. back: {
  29851. height: math.unit(9.35, "feet"),
  29852. weight: math.unit(600, "lb"),
  29853. name: "Back",
  29854. image: {
  29855. source: "./media/characters/amera/back.svg",
  29856. extra: 876 / 824,
  29857. bottom: 6.8 / 884
  29858. }
  29859. },
  29860. dick: {
  29861. height: math.unit(2.14, "feet"),
  29862. name: "Dick",
  29863. image: {
  29864. source: "./media/characters/amera/dick.svg"
  29865. }
  29866. },
  29867. },
  29868. [
  29869. {
  29870. name: "Normal",
  29871. height: math.unit(9.35, "feet"),
  29872. default: true
  29873. },
  29874. ]
  29875. ))
  29876. characterMakers.push(() => makeCharacter(
  29877. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29878. {
  29879. kneeling: {
  29880. height: math.unit(3 + 4 / 12, "feet"),
  29881. weight: math.unit(90, "lb"),
  29882. name: "Kneeling",
  29883. image: {
  29884. source: "./media/characters/rosewen/kneeling.svg",
  29885. extra: 1835 / 1571,
  29886. bottom: 27.7 / 1862
  29887. }
  29888. },
  29889. },
  29890. [
  29891. {
  29892. name: "Normal",
  29893. height: math.unit(3 + 4 / 12, "feet"),
  29894. default: true
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29900. {
  29901. front: {
  29902. height: math.unit(5 + 10 / 12, "feet"),
  29903. weight: math.unit(200, "lb"),
  29904. name: "Front",
  29905. image: {
  29906. source: "./media/characters/sabah/front.svg",
  29907. extra: 849 / 763,
  29908. bottom: 33.9 / 881
  29909. }
  29910. },
  29911. },
  29912. [
  29913. {
  29914. name: "Normal",
  29915. height: math.unit(5 + 10 / 12, "feet"),
  29916. default: true
  29917. },
  29918. ]
  29919. ))
  29920. characterMakers.push(() => makeCharacter(
  29921. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29922. {
  29923. front: {
  29924. height: math.unit(3 + 5 / 12, "feet"),
  29925. weight: math.unit(40, "kg"),
  29926. name: "Front",
  29927. image: {
  29928. source: "./media/characters/purple-flame/front.svg",
  29929. extra: 1577 / 1412,
  29930. bottom: 97 / 1694
  29931. }
  29932. },
  29933. frontDressed: {
  29934. height: math.unit(3 + 5 / 12, "feet"),
  29935. weight: math.unit(40, "kg"),
  29936. name: "Front (Dressed)",
  29937. image: {
  29938. source: "./media/characters/purple-flame/front-dressed.svg",
  29939. extra: 1577 / 1412,
  29940. bottom: 97 / 1694
  29941. }
  29942. },
  29943. headphones: {
  29944. height: math.unit(0.85, "feet"),
  29945. name: "Headphones",
  29946. image: {
  29947. source: "./media/characters/purple-flame/headphones.svg"
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Really Small",
  29954. height: math.unit(5, "cm")
  29955. },
  29956. {
  29957. name: "Micro",
  29958. height: math.unit(1 + 5 / 12, "feet")
  29959. },
  29960. {
  29961. name: "Normal",
  29962. height: math.unit(3 + 5 / 12, "feet"),
  29963. default: true
  29964. },
  29965. {
  29966. name: "Minimacro",
  29967. height: math.unit(125, "feet")
  29968. },
  29969. {
  29970. name: "Macro",
  29971. height: math.unit(0.5, "miles")
  29972. },
  29973. {
  29974. name: "Megamacro",
  29975. height: math.unit(50, "miles")
  29976. },
  29977. {
  29978. name: "Gigantic",
  29979. height: math.unit(750, "miles")
  29980. },
  29981. {
  29982. name: "Planetary",
  29983. height: math.unit(15000, "miles")
  29984. },
  29985. ]
  29986. ))
  29987. characterMakers.push(() => makeCharacter(
  29988. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29989. {
  29990. front: {
  29991. height: math.unit(14, "feet"),
  29992. weight: math.unit(959, "lb"),
  29993. name: "Front",
  29994. image: {
  29995. source: "./media/characters/arsenal/front.svg",
  29996. extra: 2357 / 2157,
  29997. bottom: 93 / 2458
  29998. }
  29999. },
  30000. },
  30001. [
  30002. {
  30003. name: "Normal",
  30004. height: math.unit(14, "feet"),
  30005. default: true
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(6, "feet"),
  30014. weight: math.unit(150, "lb"),
  30015. name: "Front",
  30016. image: {
  30017. source: "./media/characters/adira/front.svg",
  30018. extra: 2121/2013,
  30019. bottom: 206/2327
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Micro",
  30026. height: math.unit(4, "inches"),
  30027. default: true
  30028. },
  30029. {
  30030. name: "Macro",
  30031. height: math.unit(50, "feet")
  30032. },
  30033. ]
  30034. ))
  30035. characterMakers.push(() => makeCharacter(
  30036. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  30037. {
  30038. front: {
  30039. height: math.unit(16, "feet"),
  30040. weight: math.unit(1000, "lb"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/grim/front.svg",
  30044. extra: 622 / 614,
  30045. bottom: 18.1 / 642
  30046. }
  30047. },
  30048. back: {
  30049. height: math.unit(16, "feet"),
  30050. weight: math.unit(1000, "lb"),
  30051. name: "Back",
  30052. image: {
  30053. source: "./media/characters/grim/back.svg",
  30054. extra: 610.6 / 602,
  30055. bottom: 40.8 / 652
  30056. }
  30057. },
  30058. hunched: {
  30059. height: math.unit(9.75, "feet"),
  30060. weight: math.unit(1000, "lb"),
  30061. name: "Hunched",
  30062. image: {
  30063. source: "./media/characters/grim/hunched.svg",
  30064. extra: 304 / 297,
  30065. bottom: 35.4 / 394
  30066. }
  30067. },
  30068. },
  30069. [
  30070. {
  30071. name: "Normal",
  30072. height: math.unit(16, "feet"),
  30073. default: true
  30074. },
  30075. ]
  30076. ))
  30077. characterMakers.push(() => makeCharacter(
  30078. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  30079. {
  30080. front: {
  30081. height: math.unit(2.3, "meters"),
  30082. weight: math.unit(300, "lb"),
  30083. name: "Front",
  30084. image: {
  30085. source: "./media/characters/sinja/front-sfw.svg",
  30086. extra: 1393 / 1294,
  30087. bottom: 70 / 1463
  30088. }
  30089. },
  30090. frontNsfw: {
  30091. height: math.unit(2.3, "meters"),
  30092. weight: math.unit(300, "lb"),
  30093. name: "Front (NSFW)",
  30094. image: {
  30095. source: "./media/characters/sinja/front-nsfw.svg",
  30096. extra: 1393 / 1294,
  30097. bottom: 70 / 1463
  30098. }
  30099. },
  30100. back: {
  30101. height: math.unit(2.3, "meters"),
  30102. weight: math.unit(300, "lb"),
  30103. name: "Back",
  30104. image: {
  30105. source: "./media/characters/sinja/back.svg",
  30106. extra: 1393 / 1294,
  30107. bottom: 70 / 1463
  30108. }
  30109. },
  30110. head: {
  30111. height: math.unit(1.771, "feet"),
  30112. name: "Head",
  30113. image: {
  30114. source: "./media/characters/sinja/head.svg"
  30115. }
  30116. },
  30117. slit: {
  30118. height: math.unit(0.8, "feet"),
  30119. name: "Slit",
  30120. image: {
  30121. source: "./media/characters/sinja/slit.svg"
  30122. }
  30123. },
  30124. },
  30125. [
  30126. {
  30127. name: "Normal",
  30128. height: math.unit(2.3, "meters")
  30129. },
  30130. {
  30131. name: "Macro",
  30132. height: math.unit(91, "meters"),
  30133. default: true
  30134. },
  30135. {
  30136. name: "Megamacro",
  30137. height: math.unit(91440, "meters")
  30138. },
  30139. {
  30140. name: "Gigamacro",
  30141. height: math.unit(60960000, "meters")
  30142. },
  30143. {
  30144. name: "Teramacro",
  30145. height: math.unit(9144000000, "meters")
  30146. },
  30147. ]
  30148. ))
  30149. characterMakers.push(() => makeCharacter(
  30150. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30151. {
  30152. front: {
  30153. height: math.unit(1.7, "meters"),
  30154. weight: math.unit(130, "lb"),
  30155. name: "Front",
  30156. image: {
  30157. source: "./media/characters/kyu/front.svg",
  30158. extra: 415 / 395,
  30159. bottom: 5 / 420
  30160. }
  30161. },
  30162. head: {
  30163. height: math.unit(1.75, "feet"),
  30164. name: "Head",
  30165. image: {
  30166. source: "./media/characters/kyu/head.svg"
  30167. }
  30168. },
  30169. foot: {
  30170. height: math.unit(0.81, "feet"),
  30171. name: "Foot",
  30172. image: {
  30173. source: "./media/characters/kyu/foot.svg"
  30174. }
  30175. },
  30176. },
  30177. [
  30178. {
  30179. name: "Normal",
  30180. height: math.unit(1.7, "meters")
  30181. },
  30182. {
  30183. name: "Macro",
  30184. height: math.unit(131, "feet"),
  30185. default: true
  30186. },
  30187. {
  30188. name: "Megamacro",
  30189. height: math.unit(91440, "meters")
  30190. },
  30191. {
  30192. name: "Gigamacro",
  30193. height: math.unit(60960000, "meters")
  30194. },
  30195. {
  30196. name: "Teramacro",
  30197. height: math.unit(9144000000, "meters")
  30198. },
  30199. ]
  30200. ))
  30201. characterMakers.push(() => makeCharacter(
  30202. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30203. {
  30204. front: {
  30205. height: math.unit(7 + 1 / 12, "feet"),
  30206. weight: math.unit(250, "lb"),
  30207. name: "Front",
  30208. image: {
  30209. source: "./media/characters/joey/front.svg",
  30210. extra: 1791 / 1537,
  30211. bottom: 28 / 1816
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Micro",
  30218. height: math.unit(3, "inches")
  30219. },
  30220. {
  30221. name: "Normal",
  30222. height: math.unit(7 + 1 / 12, "feet"),
  30223. default: true
  30224. },
  30225. ]
  30226. ))
  30227. characterMakers.push(() => makeCharacter(
  30228. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30229. {
  30230. front: {
  30231. height: math.unit(165, "cm"),
  30232. weight: math.unit(140, "lb"),
  30233. name: "Front",
  30234. image: {
  30235. source: "./media/characters/sam-evans/front.svg",
  30236. extra: 3417 / 3230,
  30237. bottom: 41.3 / 3417
  30238. }
  30239. },
  30240. frontSixTails: {
  30241. height: math.unit(165, "cm"),
  30242. weight: math.unit(140, "lb"),
  30243. name: "Front-six-tails",
  30244. image: {
  30245. source: "./media/characters/sam-evans/front-six-tails.svg",
  30246. extra: 3417 / 3230,
  30247. bottom: 41.3 / 3417
  30248. }
  30249. },
  30250. back: {
  30251. height: math.unit(165, "cm"),
  30252. weight: math.unit(140, "lb"),
  30253. name: "Back",
  30254. image: {
  30255. source: "./media/characters/sam-evans/back.svg",
  30256. extra: 3227 / 3032,
  30257. bottom: 6.8 / 3234
  30258. }
  30259. },
  30260. face: {
  30261. height: math.unit(0.68, "feet"),
  30262. name: "Face",
  30263. image: {
  30264. source: "./media/characters/sam-evans/face.svg"
  30265. }
  30266. },
  30267. },
  30268. [
  30269. {
  30270. name: "Normal",
  30271. height: math.unit(165, "cm"),
  30272. default: true
  30273. },
  30274. {
  30275. name: "Macro",
  30276. height: math.unit(100, "meters")
  30277. },
  30278. {
  30279. name: "Macro+",
  30280. height: math.unit(800, "meters")
  30281. },
  30282. {
  30283. name: "Macro++",
  30284. height: math.unit(3, "km")
  30285. },
  30286. {
  30287. name: "Macro+++",
  30288. height: math.unit(30, "km")
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30294. {
  30295. front: {
  30296. height: math.unit(10, "feet"),
  30297. weight: math.unit(750, "lb"),
  30298. name: "Front",
  30299. image: {
  30300. source: "./media/characters/juliet-a/front.svg",
  30301. extra: 1766 / 1720,
  30302. bottom: 43 / 1809
  30303. }
  30304. },
  30305. back: {
  30306. height: math.unit(10, "feet"),
  30307. weight: math.unit(750, "lb"),
  30308. name: "Back",
  30309. image: {
  30310. source: "./media/characters/juliet-a/back.svg",
  30311. extra: 1781 / 1734,
  30312. bottom: 35 / 1810,
  30313. }
  30314. },
  30315. },
  30316. [
  30317. {
  30318. name: "Normal",
  30319. height: math.unit(10, "feet"),
  30320. default: true
  30321. },
  30322. {
  30323. name: "Dragon Form",
  30324. height: math.unit(250, "feet")
  30325. },
  30326. {
  30327. name: "Macro",
  30328. height: math.unit(1000, "feet")
  30329. },
  30330. {
  30331. name: "Megamacro",
  30332. height: math.unit(10000, "feet")
  30333. }
  30334. ]
  30335. ))
  30336. characterMakers.push(() => makeCharacter(
  30337. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30338. {
  30339. regular: {
  30340. height: math.unit(7 + 3 / 12, "feet"),
  30341. weight: math.unit(260, "lb"),
  30342. name: "Regular",
  30343. image: {
  30344. source: "./media/characters/wild/regular.svg",
  30345. extra: 97.45 / 92,
  30346. bottom: 6.8 / 104.3
  30347. }
  30348. },
  30349. biggums: {
  30350. height: math.unit(8 + 6 / 12, "feet"),
  30351. weight: math.unit(425, "lb"),
  30352. name: "Biggums",
  30353. image: {
  30354. source: "./media/characters/wild/biggums.svg",
  30355. extra: 97.45 / 92,
  30356. bottom: 7.5 / 132.34
  30357. }
  30358. },
  30359. mawRegular: {
  30360. height: math.unit(1.24, "feet"),
  30361. name: "Maw (Regular)",
  30362. image: {
  30363. source: "./media/characters/wild/maw.svg"
  30364. }
  30365. },
  30366. mawBiggums: {
  30367. height: math.unit(1.47, "feet"),
  30368. name: "Maw (Biggums)",
  30369. image: {
  30370. source: "./media/characters/wild/maw.svg"
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Normal",
  30377. height: math.unit(7 + 3 / 12, "feet"),
  30378. default: true
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30384. {
  30385. front: {
  30386. height: math.unit(2.5, "meters"),
  30387. weight: math.unit(200, "kg"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/vidar/front.svg",
  30391. extra: 2994 / 2795,
  30392. bottom: 56 / 3061
  30393. }
  30394. },
  30395. back: {
  30396. height: math.unit(2.5, "meters"),
  30397. weight: math.unit(200, "kg"),
  30398. name: "Back",
  30399. image: {
  30400. source: "./media/characters/vidar/back.svg",
  30401. extra: 3131 / 2928,
  30402. bottom: 13.5 / 3141.5
  30403. }
  30404. },
  30405. feral: {
  30406. height: math.unit(2.5, "meters"),
  30407. weight: math.unit(2000, "kg"),
  30408. name: "Feral",
  30409. image: {
  30410. source: "./media/characters/vidar/feral.svg",
  30411. extra: 2790 / 1765,
  30412. bottom: 6 / 2796
  30413. }
  30414. },
  30415. },
  30416. [
  30417. {
  30418. name: "Normal",
  30419. height: math.unit(2.5, "meters"),
  30420. default: true
  30421. },
  30422. {
  30423. name: "Macro",
  30424. height: math.unit(100, "meters")
  30425. },
  30426. ]
  30427. ))
  30428. characterMakers.push(() => makeCharacter(
  30429. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30430. {
  30431. front: {
  30432. height: math.unit(5 + 9 / 12, "feet"),
  30433. weight: math.unit(120, "lb"),
  30434. name: "Front",
  30435. image: {
  30436. source: "./media/characters/ash/front.svg",
  30437. extra: 2189 / 1961,
  30438. bottom: 5.2 / 2194
  30439. }
  30440. },
  30441. },
  30442. [
  30443. {
  30444. name: "Normal",
  30445. height: math.unit(5 + 9 / 12, "feet"),
  30446. default: true
  30447. },
  30448. ]
  30449. ))
  30450. characterMakers.push(() => makeCharacter(
  30451. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30452. {
  30453. front: {
  30454. height: math.unit(9, "feet"),
  30455. weight: math.unit(10000, "lb"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/gygabite/front.svg",
  30459. bottom: 31.7 / 537.8,
  30460. extra: 505 / 370
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Normal",
  30467. height: math.unit(9, "feet"),
  30468. default: true
  30469. },
  30470. ]
  30471. ))
  30472. characterMakers.push(() => makeCharacter(
  30473. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30474. {
  30475. front: {
  30476. height: math.unit(12, "feet"),
  30477. weight: math.unit(4000, "lb"),
  30478. name: "Front",
  30479. image: {
  30480. source: "./media/characters/p0tat0/front.svg",
  30481. extra: 1065 / 921,
  30482. bottom: 55.7 / 1121.25
  30483. }
  30484. },
  30485. },
  30486. [
  30487. {
  30488. name: "Normal",
  30489. height: math.unit(12, "feet"),
  30490. default: true
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30496. {
  30497. side: {
  30498. height: math.unit(6.5, "feet"),
  30499. weight: math.unit(800, "lb"),
  30500. name: "Side",
  30501. image: {
  30502. source: "./media/characters/dusk/side.svg",
  30503. extra: 615 / 373,
  30504. bottom: 53 / 664
  30505. }
  30506. },
  30507. sitting: {
  30508. height: math.unit(7, "feet"),
  30509. weight: math.unit(800, "lb"),
  30510. name: "Sitting",
  30511. image: {
  30512. source: "./media/characters/dusk/sitting.svg",
  30513. extra: 753 / 425,
  30514. bottom: 33 / 774
  30515. }
  30516. },
  30517. head: {
  30518. height: math.unit(6.1, "feet"),
  30519. name: "Head",
  30520. image: {
  30521. source: "./media/characters/dusk/head.svg"
  30522. }
  30523. },
  30524. },
  30525. [
  30526. {
  30527. name: "Normal",
  30528. height: math.unit(7, "feet"),
  30529. default: true
  30530. },
  30531. ]
  30532. ))
  30533. characterMakers.push(() => makeCharacter(
  30534. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30535. {
  30536. front: {
  30537. height: math.unit(15, "feet"),
  30538. weight: math.unit(7000, "lb"),
  30539. name: "Front",
  30540. image: {
  30541. source: "./media/characters/jay-direwolf/front.svg",
  30542. extra: 1810 / 1732,
  30543. bottom: 66 / 1892
  30544. }
  30545. },
  30546. },
  30547. [
  30548. {
  30549. name: "Normal",
  30550. height: math.unit(15, "feet"),
  30551. default: true
  30552. },
  30553. ]
  30554. ))
  30555. characterMakers.push(() => makeCharacter(
  30556. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30557. {
  30558. front: {
  30559. height: math.unit(4 + 9 / 12, "feet"),
  30560. weight: math.unit(130, "lb"),
  30561. name: "Front",
  30562. image: {
  30563. source: "./media/characters/anchovie/front.svg",
  30564. extra: 382 / 350,
  30565. bottom: 25 / 409
  30566. }
  30567. },
  30568. back: {
  30569. height: math.unit(4 + 9 / 12, "feet"),
  30570. weight: math.unit(130, "lb"),
  30571. name: "Back",
  30572. image: {
  30573. source: "./media/characters/anchovie/back.svg",
  30574. extra: 385 / 352,
  30575. bottom: 16.6 / 402
  30576. }
  30577. },
  30578. frontDressed: {
  30579. height: math.unit(4 + 9 / 12, "feet"),
  30580. weight: math.unit(130, "lb"),
  30581. name: "Front (Dressed)",
  30582. image: {
  30583. source: "./media/characters/anchovie/front-dressed.svg",
  30584. extra: 382 / 350,
  30585. bottom: 25 / 409
  30586. }
  30587. },
  30588. backDressed: {
  30589. height: math.unit(4 + 9 / 12, "feet"),
  30590. weight: math.unit(130, "lb"),
  30591. name: "Back (Dressed)",
  30592. image: {
  30593. source: "./media/characters/anchovie/back-dressed.svg",
  30594. extra: 385 / 352,
  30595. bottom: 16.6 / 402
  30596. }
  30597. },
  30598. },
  30599. [
  30600. {
  30601. name: "Micro",
  30602. height: math.unit(6.4, "inches")
  30603. },
  30604. {
  30605. name: "Normal",
  30606. height: math.unit(4 + 9 / 12, "feet"),
  30607. default: true
  30608. },
  30609. ]
  30610. ))
  30611. characterMakers.push(() => makeCharacter(
  30612. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30613. {
  30614. front: {
  30615. height: math.unit(2, "meters"),
  30616. weight: math.unit(180, "lb"),
  30617. name: "Front",
  30618. image: {
  30619. source: "./media/characters/acidrenamon/front.svg",
  30620. extra: 987 / 890,
  30621. bottom: 22.8 / 1009
  30622. }
  30623. },
  30624. back: {
  30625. height: math.unit(2, "meters"),
  30626. weight: math.unit(180, "lb"),
  30627. name: "Back",
  30628. image: {
  30629. source: "./media/characters/acidrenamon/back.svg",
  30630. extra: 983 / 891,
  30631. bottom: 8.4 / 992
  30632. }
  30633. },
  30634. head: {
  30635. height: math.unit(1.92, "feet"),
  30636. name: "Head",
  30637. image: {
  30638. source: "./media/characters/acidrenamon/head.svg"
  30639. }
  30640. },
  30641. rump: {
  30642. height: math.unit(1.72, "feet"),
  30643. name: "Rump",
  30644. image: {
  30645. source: "./media/characters/acidrenamon/rump.svg"
  30646. }
  30647. },
  30648. tail: {
  30649. height: math.unit(4.2, "feet"),
  30650. name: "Tail",
  30651. image: {
  30652. source: "./media/characters/acidrenamon/tail.svg"
  30653. }
  30654. },
  30655. },
  30656. [
  30657. {
  30658. name: "Normal",
  30659. height: math.unit(2, "meters"),
  30660. default: true
  30661. },
  30662. {
  30663. name: "Minimacro",
  30664. height: math.unit(7, "meters")
  30665. },
  30666. {
  30667. name: "Macro",
  30668. height: math.unit(200, "meters")
  30669. },
  30670. {
  30671. name: "Gigamacro",
  30672. height: math.unit(0.2, "earths")
  30673. },
  30674. ]
  30675. ))
  30676. characterMakers.push(() => makeCharacter(
  30677. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30678. {
  30679. front: {
  30680. height: math.unit(152, "feet"),
  30681. name: "Front",
  30682. image: {
  30683. source: "./media/characters/kenzie-lee/front.svg",
  30684. extra: 1869/1774,
  30685. bottom: 128/1997
  30686. }
  30687. },
  30688. side: {
  30689. height: math.unit(86, "feet"),
  30690. name: "Side",
  30691. image: {
  30692. source: "./media/characters/kenzie-lee/side.svg",
  30693. extra: 930/815,
  30694. bottom: 177/1107
  30695. }
  30696. },
  30697. paw: {
  30698. height: math.unit(15, "feet"),
  30699. name: "Paw",
  30700. image: {
  30701. source: "./media/characters/kenzie-lee/paw.svg"
  30702. }
  30703. },
  30704. },
  30705. [
  30706. {
  30707. name: "Kenzie Flea",
  30708. height: math.unit(2, "mm"),
  30709. default: true
  30710. },
  30711. {
  30712. name: "Micro",
  30713. height: math.unit(2, "inches")
  30714. },
  30715. {
  30716. name: "Normal",
  30717. height: math.unit(152, "feet")
  30718. },
  30719. {
  30720. name: "Megamacro",
  30721. height: math.unit(7, "miles")
  30722. },
  30723. {
  30724. name: "Gigamacro",
  30725. height: math.unit(8000, "miles")
  30726. },
  30727. ]
  30728. ))
  30729. characterMakers.push(() => makeCharacter(
  30730. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30731. {
  30732. front: {
  30733. height: math.unit(6, "feet"),
  30734. name: "Front",
  30735. image: {
  30736. source: "./media/characters/withers/front.svg",
  30737. extra: 1935/1760,
  30738. bottom: 72/2007
  30739. }
  30740. },
  30741. back: {
  30742. height: math.unit(6, "feet"),
  30743. name: "Back",
  30744. image: {
  30745. source: "./media/characters/withers/back.svg",
  30746. extra: 1944/1792,
  30747. bottom: 12/1956
  30748. }
  30749. },
  30750. dressed: {
  30751. height: math.unit(6, "feet"),
  30752. name: "Dressed",
  30753. image: {
  30754. source: "./media/characters/withers/dressed.svg",
  30755. extra: 1937/1765,
  30756. bottom: 73/2010
  30757. }
  30758. },
  30759. phase1: {
  30760. height: math.unit(1.1, "feet"),
  30761. name: "Phase 1",
  30762. image: {
  30763. source: "./media/characters/withers/phase-1.svg",
  30764. extra: 1885/1232,
  30765. bottom: 0/1885
  30766. }
  30767. },
  30768. phase2: {
  30769. height: math.unit(1.05, "feet"),
  30770. name: "Phase 2",
  30771. image: {
  30772. source: "./media/characters/withers/phase-2.svg",
  30773. extra: 1792/1090,
  30774. bottom: 0/1792
  30775. }
  30776. },
  30777. partyWipe: {
  30778. height: math.unit(1.1, "feet"),
  30779. name: "Party Wipe",
  30780. image: {
  30781. source: "./media/characters/withers/party-wipe.svg",
  30782. extra: 1864/1207,
  30783. bottom: 0/1864
  30784. }
  30785. },
  30786. },
  30787. [
  30788. {
  30789. name: "Macro",
  30790. height: math.unit(167, "feet"),
  30791. default: true
  30792. },
  30793. {
  30794. name: "Megamacro",
  30795. height: math.unit(15, "miles")
  30796. }
  30797. ]
  30798. ))
  30799. characterMakers.push(() => makeCharacter(
  30800. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30801. {
  30802. front: {
  30803. height: math.unit(6 + 7 / 12, "feet"),
  30804. weight: math.unit(250, "lb"),
  30805. name: "Front",
  30806. image: {
  30807. source: "./media/characters/nemoskii/front.svg",
  30808. extra: 2270 / 1734,
  30809. bottom: 86 / 2354
  30810. }
  30811. },
  30812. back: {
  30813. height: math.unit(6 + 7 / 12, "feet"),
  30814. weight: math.unit(250, "lb"),
  30815. name: "Back",
  30816. image: {
  30817. source: "./media/characters/nemoskii/back.svg",
  30818. extra: 1845 / 1788,
  30819. bottom: 10.5 / 1852
  30820. }
  30821. },
  30822. head: {
  30823. height: math.unit(1.31, "feet"),
  30824. name: "Head",
  30825. image: {
  30826. source: "./media/characters/nemoskii/head.svg"
  30827. }
  30828. },
  30829. },
  30830. [
  30831. {
  30832. name: "Micro",
  30833. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30834. },
  30835. {
  30836. name: "Normal",
  30837. height: math.unit(6 + 7 / 12, "feet"),
  30838. default: true
  30839. },
  30840. {
  30841. name: "Macro",
  30842. height: math.unit((6 + 7 / 12) * 150, "feet")
  30843. },
  30844. {
  30845. name: "Macro+",
  30846. height: math.unit((6 + 7 / 12) * 500, "feet")
  30847. },
  30848. {
  30849. name: "Megamacro",
  30850. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30851. },
  30852. ]
  30853. ))
  30854. characterMakers.push(() => makeCharacter(
  30855. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30856. {
  30857. front: {
  30858. height: math.unit(1, "mile"),
  30859. weight: math.unit(265261.9, "lb"),
  30860. name: "Front",
  30861. image: {
  30862. source: "./media/characters/shui/front.svg",
  30863. extra: 1633 / 1564,
  30864. bottom: 91.5 / 1726
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Macro",
  30871. height: math.unit(1, "mile"),
  30872. default: true
  30873. },
  30874. ]
  30875. ))
  30876. characterMakers.push(() => makeCharacter(
  30877. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30878. {
  30879. front: {
  30880. height: math.unit(12 + 6 / 12, "feet"),
  30881. weight: math.unit(1342, "lb"),
  30882. name: "Front",
  30883. image: {
  30884. source: "./media/characters/arokh-takakura/front.svg",
  30885. extra: 1089 / 1043,
  30886. bottom: 77.4 / 1176.7
  30887. }
  30888. },
  30889. back: {
  30890. height: math.unit(12 + 6 / 12, "feet"),
  30891. weight: math.unit(1342, "lb"),
  30892. name: "Back",
  30893. image: {
  30894. source: "./media/characters/arokh-takakura/back.svg",
  30895. extra: 1046 / 1019,
  30896. bottom: 102 / 1150
  30897. }
  30898. },
  30899. },
  30900. [
  30901. {
  30902. name: "Big",
  30903. height: math.unit(12 + 6 / 12, "feet"),
  30904. default: true
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(5 + 6 / 12, "feet"),
  30913. weight: math.unit(150, "lb"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/theo/front.svg",
  30917. extra: 1184 / 1131,
  30918. bottom: 7.4 / 1191
  30919. }
  30920. },
  30921. },
  30922. [
  30923. {
  30924. name: "Micro",
  30925. height: math.unit(5, "inches")
  30926. },
  30927. {
  30928. name: "Normal",
  30929. height: math.unit(5 + 6 / 12, "feet"),
  30930. default: true
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30936. {
  30937. front: {
  30938. height: math.unit(5 + 9 / 12, "feet"),
  30939. weight: math.unit(130, "lb"),
  30940. name: "Front",
  30941. image: {
  30942. source: "./media/characters/cecelia-swift/front.svg",
  30943. extra: 502 / 484,
  30944. bottom: 23 / 523
  30945. }
  30946. },
  30947. back: {
  30948. height: math.unit(5 + 9 / 12, "feet"),
  30949. weight: math.unit(130, "lb"),
  30950. name: "Back",
  30951. image: {
  30952. source: "./media/characters/cecelia-swift/back.svg",
  30953. extra: 499 / 485,
  30954. bottom: 12 / 511
  30955. }
  30956. },
  30957. head: {
  30958. height: math.unit(0.90, "feet"),
  30959. name: "Head",
  30960. image: {
  30961. source: "./media/characters/cecelia-swift/head.svg"
  30962. }
  30963. },
  30964. rump: {
  30965. height: math.unit(1.75, "feet"),
  30966. name: "Rump",
  30967. image: {
  30968. source: "./media/characters/cecelia-swift/rump.svg"
  30969. }
  30970. },
  30971. },
  30972. [
  30973. {
  30974. name: "Normal",
  30975. height: math.unit(5 + 9 / 12, "feet"),
  30976. default: true
  30977. },
  30978. {
  30979. name: "Big",
  30980. height: math.unit(50, "feet")
  30981. },
  30982. {
  30983. name: "Macro",
  30984. height: math.unit(100, "feet")
  30985. },
  30986. {
  30987. name: "Macro+",
  30988. height: math.unit(500, "feet")
  30989. },
  30990. {
  30991. name: "Macro++",
  30992. height: math.unit(1000, "feet")
  30993. },
  30994. ]
  30995. ))
  30996. characterMakers.push(() => makeCharacter(
  30997. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30998. {
  30999. front: {
  31000. height: math.unit(6, "feet"),
  31001. weight: math.unit(150, "lb"),
  31002. name: "Front",
  31003. image: {
  31004. source: "./media/characters/kaunan/front.svg",
  31005. extra: 2890 / 2523,
  31006. bottom: 49 / 2939
  31007. }
  31008. },
  31009. },
  31010. [
  31011. {
  31012. name: "Macro",
  31013. height: math.unit(150, "feet"),
  31014. default: true
  31015. },
  31016. ]
  31017. ))
  31018. characterMakers.push(() => makeCharacter(
  31019. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  31020. {
  31021. dressed: {
  31022. height: math.unit(175, "cm"),
  31023. weight: math.unit(60, "kg"),
  31024. name: "Dressed",
  31025. image: {
  31026. source: "./media/characters/fei/dressed.svg",
  31027. extra: 1402/1278,
  31028. bottom: 27/1429
  31029. }
  31030. },
  31031. nude: {
  31032. height: math.unit(175, "cm"),
  31033. weight: math.unit(60, "kg"),
  31034. name: "Nude",
  31035. image: {
  31036. source: "./media/characters/fei/nude.svg",
  31037. extra: 1402/1278,
  31038. bottom: 27/1429
  31039. }
  31040. },
  31041. heels: {
  31042. height: math.unit(0.466, "feet"),
  31043. name: "Heels",
  31044. image: {
  31045. source: "./media/characters/fei/heels.svg",
  31046. extra: 156/152,
  31047. bottom: 28/184
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Mortal",
  31054. height: math.unit(175, "cm")
  31055. },
  31056. {
  31057. name: "Normal",
  31058. height: math.unit(3500, "m")
  31059. },
  31060. {
  31061. name: "Stroll",
  31062. height: math.unit(18.4, "km"),
  31063. default: true
  31064. },
  31065. {
  31066. name: "Showoff",
  31067. height: math.unit(175, "km")
  31068. },
  31069. ]
  31070. ))
  31071. characterMakers.push(() => makeCharacter(
  31072. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  31073. {
  31074. front: {
  31075. height: math.unit(7, "feet"),
  31076. weight: math.unit(1000, "kg"),
  31077. name: "Front",
  31078. image: {
  31079. source: "./media/characters/edrax/front.svg",
  31080. extra: 2838 / 2550,
  31081. bottom: 130 / 2968
  31082. }
  31083. },
  31084. },
  31085. [
  31086. {
  31087. name: "Small",
  31088. height: math.unit(7, "feet")
  31089. },
  31090. {
  31091. name: "Normal",
  31092. height: math.unit(1500, "meters")
  31093. },
  31094. {
  31095. name: "Mega",
  31096. height: math.unit(12000000, "km"),
  31097. default: true
  31098. },
  31099. {
  31100. name: "Megamacro",
  31101. height: math.unit(10600000, "lightyears")
  31102. },
  31103. {
  31104. name: "Hypermacro",
  31105. height: math.unit(256, "yottameters")
  31106. },
  31107. ]
  31108. ))
  31109. characterMakers.push(() => makeCharacter(
  31110. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  31111. {
  31112. front: {
  31113. height: math.unit(10, "feet"),
  31114. weight: math.unit(750, "lb"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/clove/front.svg",
  31118. extra: 1918/1751,
  31119. bottom: 52/1970
  31120. }
  31121. },
  31122. back: {
  31123. height: math.unit(10, "feet"),
  31124. weight: math.unit(750, "lb"),
  31125. name: "Back",
  31126. image: {
  31127. source: "./media/characters/clove/back.svg",
  31128. extra: 1912/1747,
  31129. bottom: 50/1962
  31130. }
  31131. },
  31132. },
  31133. [
  31134. {
  31135. name: "Normal",
  31136. height: math.unit(10, "feet"),
  31137. default: true
  31138. },
  31139. ]
  31140. ))
  31141. characterMakers.push(() => makeCharacter(
  31142. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31143. {
  31144. front: {
  31145. height: math.unit(4, "feet"),
  31146. weight: math.unit(50, "lb"),
  31147. name: "Front",
  31148. image: {
  31149. source: "./media/characters/alex-rabbit/front.svg",
  31150. extra: 507 / 458,
  31151. bottom: 18.5 / 527
  31152. }
  31153. },
  31154. back: {
  31155. height: math.unit(4, "feet"),
  31156. weight: math.unit(50, "lb"),
  31157. name: "Back",
  31158. image: {
  31159. source: "./media/characters/alex-rabbit/back.svg",
  31160. extra: 502 / 460,
  31161. bottom: 18.9 / 521
  31162. }
  31163. },
  31164. },
  31165. [
  31166. {
  31167. name: "Normal",
  31168. height: math.unit(4, "feet"),
  31169. default: true
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31175. {
  31176. front: {
  31177. height: math.unit(1 + 3 / 12, "feet"),
  31178. weight: math.unit(80, "lb"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/zander-rose/front.svg",
  31182. extra: 916 / 797,
  31183. bottom: 17 / 933
  31184. }
  31185. },
  31186. back: {
  31187. height: math.unit(1 + 3 / 12, "feet"),
  31188. weight: math.unit(80, "lb"),
  31189. name: "Back",
  31190. image: {
  31191. source: "./media/characters/zander-rose/back.svg",
  31192. extra: 903 / 779,
  31193. bottom: 31 / 934
  31194. }
  31195. },
  31196. },
  31197. [
  31198. {
  31199. name: "Normal",
  31200. height: math.unit(1 + 3 / 12, "feet"),
  31201. default: true
  31202. },
  31203. ]
  31204. ))
  31205. characterMakers.push(() => makeCharacter(
  31206. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31207. {
  31208. anthro: {
  31209. height: math.unit(6, "feet"),
  31210. weight: math.unit(150, "lb"),
  31211. name: "Anthro",
  31212. image: {
  31213. source: "./media/characters/razz/anthro.svg",
  31214. extra: 1437 / 1343,
  31215. bottom: 48 / 1485
  31216. }
  31217. },
  31218. feral: {
  31219. height: math.unit(6, "feet"),
  31220. weight: math.unit(150, "lb"),
  31221. name: "Feral",
  31222. image: {
  31223. source: "./media/characters/razz/feral.svg",
  31224. extra: 2569 / 1385,
  31225. bottom: 95 / 2664
  31226. }
  31227. },
  31228. },
  31229. [
  31230. {
  31231. name: "Normal",
  31232. height: math.unit(6, "feet"),
  31233. default: true
  31234. },
  31235. ]
  31236. ))
  31237. characterMakers.push(() => makeCharacter(
  31238. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31239. {
  31240. front: {
  31241. height: math.unit(9 + 4 / 12, "feet"),
  31242. weight: math.unit(500, "lb"),
  31243. name: "Front",
  31244. image: {
  31245. source: "./media/characters/morrigan/front.svg",
  31246. extra: 2707 / 2579,
  31247. bottom: 156 / 2863
  31248. }
  31249. },
  31250. },
  31251. [
  31252. {
  31253. name: "Normal",
  31254. height: math.unit(9 + 4 / 12, "feet"),
  31255. default: true
  31256. },
  31257. ]
  31258. ))
  31259. characterMakers.push(() => makeCharacter(
  31260. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31261. {
  31262. front: {
  31263. height: math.unit(5, "stories"),
  31264. weight: math.unit(4000, "lb"),
  31265. name: "Front",
  31266. image: {
  31267. source: "./media/characters/jenene/front.svg",
  31268. extra: 1780 / 1710,
  31269. bottom: 57 / 1837
  31270. }
  31271. },
  31272. },
  31273. [
  31274. {
  31275. name: "Normal",
  31276. height: math.unit(5, "stories"),
  31277. default: true
  31278. },
  31279. ]
  31280. ))
  31281. characterMakers.push(() => makeCharacter(
  31282. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31283. {
  31284. taurSfw: {
  31285. height: math.unit(10, "meters"),
  31286. weight: math.unit(17500, "kg"),
  31287. name: "Taur",
  31288. image: {
  31289. source: "./media/characters/faey/taur-sfw.svg",
  31290. extra: 1200 / 968,
  31291. bottom: 41 / 1241
  31292. }
  31293. },
  31294. chestmaw: {
  31295. height: math.unit(2.01, "meters"),
  31296. name: "Chestmaw",
  31297. image: {
  31298. source: "./media/characters/faey/chestmaw.svg"
  31299. }
  31300. },
  31301. foot: {
  31302. height: math.unit(2.43, "meters"),
  31303. name: "Foot",
  31304. image: {
  31305. source: "./media/characters/faey/foot.svg"
  31306. }
  31307. },
  31308. jaws: {
  31309. height: math.unit(1.66, "meters"),
  31310. name: "Jaws",
  31311. image: {
  31312. source: "./media/characters/faey/jaws.svg"
  31313. }
  31314. },
  31315. tongues: {
  31316. height: math.unit(2.01, "meters"),
  31317. name: "Tongues",
  31318. image: {
  31319. source: "./media/characters/faey/tongues.svg"
  31320. }
  31321. },
  31322. },
  31323. [
  31324. {
  31325. name: "Small",
  31326. height: math.unit(10, "meters"),
  31327. default: true
  31328. },
  31329. {
  31330. name: "Big",
  31331. height: math.unit(500000, "km")
  31332. },
  31333. ]
  31334. ))
  31335. characterMakers.push(() => makeCharacter(
  31336. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31337. {
  31338. front: {
  31339. height: math.unit(7, "feet"),
  31340. weight: math.unit(275, "lb"),
  31341. name: "Front",
  31342. image: {
  31343. source: "./media/characters/roku/front.svg",
  31344. extra: 903 / 878,
  31345. bottom: 37 / 940
  31346. }
  31347. },
  31348. },
  31349. [
  31350. {
  31351. name: "Normal",
  31352. height: math.unit(7, "feet"),
  31353. default: true
  31354. },
  31355. {
  31356. name: "Macro",
  31357. height: math.unit(500, "feet")
  31358. },
  31359. {
  31360. name: "Megamacro",
  31361. height: math.unit(200, "miles")
  31362. },
  31363. ]
  31364. ))
  31365. characterMakers.push(() => makeCharacter(
  31366. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31367. {
  31368. front: {
  31369. height: math.unit(6 + 2 / 12, "feet"),
  31370. weight: math.unit(150, "lb"),
  31371. name: "Front",
  31372. image: {
  31373. source: "./media/characters/lira/front.svg",
  31374. extra: 1727 / 1605,
  31375. bottom: 26 / 1753
  31376. }
  31377. },
  31378. back: {
  31379. height: math.unit(6 + 2 / 12, "feet"),
  31380. weight: math.unit(150, "lb"),
  31381. name: "Back",
  31382. image: {
  31383. source: "./media/characters/lira/back.svg",
  31384. extra: 1713/1621,
  31385. bottom: 20/1733
  31386. }
  31387. },
  31388. hand: {
  31389. height: math.unit(0.75, "feet"),
  31390. name: "Hand",
  31391. image: {
  31392. source: "./media/characters/lira/hand.svg"
  31393. }
  31394. },
  31395. maw: {
  31396. height: math.unit(0.65, "feet"),
  31397. name: "Maw",
  31398. image: {
  31399. source: "./media/characters/lira/maw.svg"
  31400. }
  31401. },
  31402. pawDigi: {
  31403. height: math.unit(1.6, "feet"),
  31404. name: "Paw Digi",
  31405. image: {
  31406. source: "./media/characters/lira/paw-digi.svg"
  31407. }
  31408. },
  31409. pawPlanti: {
  31410. height: math.unit(1.4, "feet"),
  31411. name: "Paw Planti",
  31412. image: {
  31413. source: "./media/characters/lira/paw-planti.svg"
  31414. }
  31415. },
  31416. },
  31417. [
  31418. {
  31419. name: "Normal",
  31420. height: math.unit(6 + 2 / 12, "feet"),
  31421. default: true
  31422. },
  31423. {
  31424. name: "Macro",
  31425. height: math.unit(100, "feet")
  31426. },
  31427. {
  31428. name: "Macro²",
  31429. height: math.unit(1600, "feet")
  31430. },
  31431. {
  31432. name: "Planetary",
  31433. height: math.unit(20, "earths")
  31434. },
  31435. ]
  31436. ))
  31437. characterMakers.push(() => makeCharacter(
  31438. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31439. {
  31440. front: {
  31441. height: math.unit(6, "feet"),
  31442. weight: math.unit(150, "lb"),
  31443. name: "Front",
  31444. image: {
  31445. source: "./media/characters/hadjet/front.svg",
  31446. extra: 1480 / 1346,
  31447. bottom: 26 / 1506
  31448. }
  31449. },
  31450. frontNsfw: {
  31451. height: math.unit(6, "feet"),
  31452. weight: math.unit(150, "lb"),
  31453. name: "Front (NSFW)",
  31454. image: {
  31455. source: "./media/characters/hadjet/front-nsfw.svg",
  31456. extra: 1440 / 1358,
  31457. bottom: 52 / 1492
  31458. }
  31459. },
  31460. },
  31461. [
  31462. {
  31463. name: "Macro",
  31464. height: math.unit(10, "stories"),
  31465. default: true
  31466. },
  31467. {
  31468. name: "Megamacro",
  31469. height: math.unit(1.5, "miles")
  31470. },
  31471. {
  31472. name: "Megamacro+",
  31473. height: math.unit(5, "miles")
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31479. {
  31480. side: {
  31481. height: math.unit(106, "feet"),
  31482. weight: math.unit(500, "tonnes"),
  31483. name: "Side",
  31484. image: {
  31485. source: "./media/characters/kodran/side.svg",
  31486. extra: 553 / 480,
  31487. bottom: 33 / 586
  31488. }
  31489. },
  31490. front: {
  31491. height: math.unit(132, "feet"),
  31492. weight: math.unit(500, "tonnes"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/kodran/front.svg",
  31496. extra: 667 / 643,
  31497. bottom: 42 / 709
  31498. }
  31499. },
  31500. flying: {
  31501. height: math.unit(350, "feet"),
  31502. weight: math.unit(500, "tonnes"),
  31503. name: "Flying",
  31504. image: {
  31505. source: "./media/characters/kodran/flying.svg"
  31506. }
  31507. },
  31508. foot: {
  31509. height: math.unit(33, "feet"),
  31510. name: "Foot",
  31511. image: {
  31512. source: "./media/characters/kodran/foot.svg"
  31513. }
  31514. },
  31515. footFront: {
  31516. height: math.unit(19, "feet"),
  31517. name: "Foot (Front)",
  31518. image: {
  31519. source: "./media/characters/kodran/foot-front.svg",
  31520. extra: 261 / 261,
  31521. bottom: 91 / 352
  31522. }
  31523. },
  31524. headFront: {
  31525. height: math.unit(53, "feet"),
  31526. name: "Head (Front)",
  31527. image: {
  31528. source: "./media/characters/kodran/head-front.svg"
  31529. }
  31530. },
  31531. headSide: {
  31532. height: math.unit(65, "feet"),
  31533. name: "Head (Side)",
  31534. image: {
  31535. source: "./media/characters/kodran/head-side.svg"
  31536. }
  31537. },
  31538. throat: {
  31539. height: math.unit(79, "feet"),
  31540. name: "Throat",
  31541. image: {
  31542. source: "./media/characters/kodran/throat.svg"
  31543. }
  31544. },
  31545. },
  31546. [
  31547. {
  31548. name: "Large",
  31549. height: math.unit(106, "feet"),
  31550. default: true
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31556. {
  31557. side: {
  31558. height: math.unit(11, "feet"),
  31559. weight: math.unit(150, "lb"),
  31560. name: "Side",
  31561. image: {
  31562. source: "./media/characters/pyxaron/side.svg",
  31563. extra: 305 / 195,
  31564. bottom: 17 / 322
  31565. }
  31566. },
  31567. },
  31568. [
  31569. {
  31570. name: "Normal",
  31571. height: math.unit(11, "feet"),
  31572. default: true
  31573. },
  31574. ]
  31575. ))
  31576. characterMakers.push(() => makeCharacter(
  31577. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31578. {
  31579. front: {
  31580. height: math.unit(6, "feet"),
  31581. weight: math.unit(150, "lb"),
  31582. name: "Front",
  31583. image: {
  31584. source: "./media/characters/meep/front.svg",
  31585. extra: 88 / 80,
  31586. bottom: 6 / 94
  31587. }
  31588. },
  31589. },
  31590. [
  31591. {
  31592. name: "Fun Sized",
  31593. height: math.unit(2, "inches"),
  31594. default: true
  31595. },
  31596. {
  31597. name: "Friend Sized",
  31598. height: math.unit(8, "inches")
  31599. },
  31600. ]
  31601. ))
  31602. characterMakers.push(() => makeCharacter(
  31603. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31604. {
  31605. front: {
  31606. height: math.unit(15, "feet"),
  31607. weight: math.unit(2500, "lb"),
  31608. name: "Front",
  31609. image: {
  31610. source: "./media/characters/holly-rabbit/front.svg",
  31611. extra: 1433 / 1233,
  31612. bottom: 125 / 1558
  31613. }
  31614. },
  31615. dick: {
  31616. height: math.unit(4.6, "feet"),
  31617. name: "Dick",
  31618. image: {
  31619. source: "./media/characters/holly-rabbit/dick.svg"
  31620. }
  31621. },
  31622. },
  31623. [
  31624. {
  31625. name: "Normal",
  31626. height: math.unit(15, "feet"),
  31627. default: true
  31628. },
  31629. {
  31630. name: "Macro",
  31631. height: math.unit(250, "feet")
  31632. },
  31633. {
  31634. name: "Macro+",
  31635. height: math.unit(2500, "feet")
  31636. },
  31637. ]
  31638. ))
  31639. characterMakers.push(() => makeCharacter(
  31640. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31641. {
  31642. front: {
  31643. height: math.unit(3.02, "meters"),
  31644. weight: math.unit(500, "kg"),
  31645. name: "Front",
  31646. image: {
  31647. source: "./media/characters/drena/front.svg",
  31648. extra: 282 / 243,
  31649. bottom: 8 / 290
  31650. }
  31651. },
  31652. side: {
  31653. height: math.unit(3.02, "meters"),
  31654. weight: math.unit(500, "kg"),
  31655. name: "Side",
  31656. image: {
  31657. source: "./media/characters/drena/side.svg",
  31658. extra: 280 / 245,
  31659. bottom: 10 / 290
  31660. }
  31661. },
  31662. back: {
  31663. height: math.unit(3.02, "meters"),
  31664. weight: math.unit(500, "kg"),
  31665. name: "Back",
  31666. image: {
  31667. source: "./media/characters/drena/back.svg",
  31668. extra: 278 / 243,
  31669. bottom: 2 / 280
  31670. }
  31671. },
  31672. foot: {
  31673. height: math.unit(0.75, "meters"),
  31674. name: "Foot",
  31675. image: {
  31676. source: "./media/characters/drena/foot.svg"
  31677. }
  31678. },
  31679. maw: {
  31680. height: math.unit(0.82, "meters"),
  31681. name: "Maw",
  31682. image: {
  31683. source: "./media/characters/drena/maw.svg"
  31684. }
  31685. },
  31686. eating: {
  31687. height: math.unit(0.75, "meters"),
  31688. name: "Eating",
  31689. image: {
  31690. source: "./media/characters/drena/eating.svg"
  31691. }
  31692. },
  31693. rump: {
  31694. height: math.unit(0.93, "meters"),
  31695. name: "Rump",
  31696. image: {
  31697. source: "./media/characters/drena/rump.svg"
  31698. }
  31699. },
  31700. },
  31701. [
  31702. {
  31703. name: "Normal",
  31704. height: math.unit(3.02, "meters"),
  31705. default: true
  31706. },
  31707. ]
  31708. ))
  31709. characterMakers.push(() => makeCharacter(
  31710. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31711. {
  31712. front: {
  31713. height: math.unit(6 + 4 / 12, "feet"),
  31714. weight: math.unit(250, "lb"),
  31715. name: "Front",
  31716. image: {
  31717. source: "./media/characters/remmyzilla/front.svg",
  31718. extra: 4033 / 3588,
  31719. bottom: 123 / 4156
  31720. }
  31721. },
  31722. back: {
  31723. height: math.unit(6 + 4 / 12, "feet"),
  31724. weight: math.unit(250, "lb"),
  31725. name: "Back",
  31726. image: {
  31727. source: "./media/characters/remmyzilla/back.svg",
  31728. extra: 1696/1602,
  31729. bottom: 63/1759
  31730. }
  31731. },
  31732. paw: {
  31733. height: math.unit(1.73, "feet"),
  31734. name: "Paw",
  31735. image: {
  31736. source: "./media/characters/remmyzilla/paw.svg"
  31737. },
  31738. extraAttributes: {
  31739. "toeSize": {
  31740. name: "Toe Size",
  31741. power: 2,
  31742. type: "area",
  31743. base: math.unit(0.0035, "m^2")
  31744. },
  31745. "padSize": {
  31746. name: "Pad Size",
  31747. power: 2,
  31748. type: "area",
  31749. base: math.unit(0.015, "m^2")
  31750. },
  31751. "pawsize": {
  31752. name: "Paw Size",
  31753. power: 2,
  31754. type: "area",
  31755. base: math.unit(0.072, "m^2")
  31756. },
  31757. }
  31758. },
  31759. maw: {
  31760. height: math.unit(1.73, "feet"),
  31761. name: "Maw",
  31762. image: {
  31763. source: "./media/characters/remmyzilla/maw.svg"
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Normal",
  31770. height: math.unit(6 + 4 / 12, "feet")
  31771. },
  31772. {
  31773. name: "Minimacro",
  31774. height: math.unit(12 + 8 / 12, "feet")
  31775. },
  31776. {
  31777. name: "Normal",
  31778. height: math.unit(640, "feet"),
  31779. default: true
  31780. },
  31781. {
  31782. name: "Megamacro",
  31783. height: math.unit(6400, "feet")
  31784. },
  31785. {
  31786. name: "Gigamacro",
  31787. height: math.unit(64000, "miles")
  31788. },
  31789. ]
  31790. ))
  31791. characterMakers.push(() => makeCharacter(
  31792. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31793. {
  31794. front: {
  31795. height: math.unit(2.5, "meters"),
  31796. weight: math.unit(300, "lb"),
  31797. name: "Front",
  31798. image: {
  31799. source: "./media/characters/lawrence/front.svg",
  31800. extra: 357 / 335,
  31801. bottom: 30 / 387
  31802. }
  31803. },
  31804. back: {
  31805. height: math.unit(2.5, "meters"),
  31806. weight: math.unit(300, "lb"),
  31807. name: "Back",
  31808. image: {
  31809. source: "./media/characters/lawrence/back.svg",
  31810. extra: 357 / 338,
  31811. bottom: 16 / 373
  31812. }
  31813. },
  31814. head: {
  31815. height: math.unit(0.9, "meter"),
  31816. name: "Head",
  31817. image: {
  31818. source: "./media/characters/lawrence/head.svg"
  31819. }
  31820. },
  31821. maw: {
  31822. height: math.unit(0.7, "meter"),
  31823. name: "Maw",
  31824. image: {
  31825. source: "./media/characters/lawrence/maw.svg"
  31826. }
  31827. },
  31828. footBottom: {
  31829. height: math.unit(0.5, "meter"),
  31830. name: "Foot (Bottom)",
  31831. image: {
  31832. source: "./media/characters/lawrence/foot-bottom.svg"
  31833. }
  31834. },
  31835. footTop: {
  31836. height: math.unit(0.5, "meter"),
  31837. name: "Foot (Top)",
  31838. image: {
  31839. source: "./media/characters/lawrence/foot-top.svg"
  31840. }
  31841. },
  31842. },
  31843. [
  31844. {
  31845. name: "Normal",
  31846. height: math.unit(2.5, "meters"),
  31847. default: true
  31848. },
  31849. {
  31850. name: "Macro",
  31851. height: math.unit(95, "meters")
  31852. },
  31853. {
  31854. name: "Megamacro",
  31855. height: math.unit(150, "km")
  31856. },
  31857. ]
  31858. ))
  31859. characterMakers.push(() => makeCharacter(
  31860. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31861. {
  31862. front: {
  31863. height: math.unit(4.2, "meters"),
  31864. preyCapacity: math.unit(50, "m^3"),
  31865. weight: math.unit(30, "tonnes"),
  31866. name: "Front",
  31867. image: {
  31868. source: "./media/characters/sydney/front.svg",
  31869. extra: 1177/1129,
  31870. bottom: 197/1374
  31871. },
  31872. extraAttributes: {
  31873. "length": {
  31874. name: "Length",
  31875. power: 1,
  31876. type: "length",
  31877. base: math.unit(21, "meters")
  31878. },
  31879. }
  31880. },
  31881. },
  31882. [
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(4.2, "meters"),
  31886. default: true
  31887. },
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31892. {
  31893. back: {
  31894. height: math.unit(201, "feet"),
  31895. name: "Back",
  31896. image: {
  31897. source: "./media/characters/jessica/back.svg",
  31898. extra: 273 / 259,
  31899. bottom: 7 / 280
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(201, "feet"),
  31907. default: true
  31908. },
  31909. {
  31910. name: "Megamacro",
  31911. height: math.unit(8, "miles")
  31912. },
  31913. ]
  31914. ))
  31915. characterMakers.push(() => makeCharacter(
  31916. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31917. {
  31918. side: {
  31919. height: math.unit(5.6, "m"),
  31920. weight: math.unit(8000, "kg"),
  31921. name: "Side",
  31922. image: {
  31923. source: "./media/characters/victoria/side.svg",
  31924. extra: 1542/1229,
  31925. bottom: 124/1666
  31926. }
  31927. },
  31928. maw: {
  31929. height: math.unit(7.14, "feet"),
  31930. name: "Maw",
  31931. image: {
  31932. source: "./media/characters/victoria/maw.svg"
  31933. }
  31934. },
  31935. },
  31936. [
  31937. {
  31938. name: "Normal",
  31939. height: math.unit(5.6, "m"),
  31940. default: true
  31941. },
  31942. ]
  31943. ))
  31944. characterMakers.push(() => makeCharacter(
  31945. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31946. {
  31947. front: {
  31948. height: math.unit(5 + 6 / 12, "feet"),
  31949. name: "Front",
  31950. image: {
  31951. source: "./media/characters/cat/cat-front.svg",
  31952. extra: 1422/1262,
  31953. bottom: 61/1483
  31954. },
  31955. form: "cat",
  31956. default: true
  31957. },
  31958. back: {
  31959. height: math.unit(5 + 6 / 12, "feet"),
  31960. name: "Back",
  31961. image: {
  31962. source: "./media/characters/cat/cat-back.svg",
  31963. extra: 1466/1301,
  31964. bottom: 19/1485
  31965. },
  31966. form: "cat"
  31967. },
  31968. taur: {
  31969. height: math.unit(7, "feet"),
  31970. name: "Side",
  31971. image: {
  31972. source: "./media/characters/cat/taur-side.svg",
  31973. extra: 1389/1233,
  31974. bottom: 83/1472
  31975. },
  31976. form: "taur",
  31977. default: true
  31978. },
  31979. lucarioFront: {
  31980. height: math.unit(4, "feet"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/cat/lucario-front.svg",
  31984. extra: 1149/1019,
  31985. bottom: 84/1233
  31986. },
  31987. form: "lucario",
  31988. default: true
  31989. },
  31990. lucarioBack: {
  31991. height: math.unit(4, "feet"),
  31992. name: "Back",
  31993. image: {
  31994. source: "./media/characters/cat/lucario-back.svg",
  31995. extra: 1190/1059,
  31996. bottom: 33/1223
  31997. },
  31998. form: "lucario"
  31999. },
  32000. riolu_front: {
  32001. height: math.unit(2 + 4/12, "feet"),
  32002. name: "Front",
  32003. image: {
  32004. source: "./media/characters/cat/riolu-front.svg",
  32005. extra: 1104/956,
  32006. bottom: 70/1174
  32007. },
  32008. form: "riolu",
  32009. default: true
  32010. },
  32011. nickit: {
  32012. height: math.unit(2, "feet"),
  32013. name: "Side",
  32014. image: {
  32015. source: "./media/characters/cat/nickit-side.svg",
  32016. extra: 1087/852,
  32017. bottom: 67/1154
  32018. },
  32019. form: "nickit",
  32020. default: true
  32021. },
  32022. lopunnyFront: {
  32023. height: math.unit(5, "feet"),
  32024. name: "Front",
  32025. image: {
  32026. source: "./media/characters/cat/lopunny-front.svg",
  32027. extra: 1217/1078,
  32028. bottom: 23/1240
  32029. },
  32030. form: "lopunny",
  32031. default: true
  32032. },
  32033. lopunnyBack: {
  32034. height: math.unit(5, "feet"),
  32035. name: "Back",
  32036. image: {
  32037. source: "./media/characters/cat/lopunny-back.svg",
  32038. extra: 1205/1057,
  32039. bottom: 33/1238
  32040. },
  32041. form: "lopunny"
  32042. },
  32043. dog_front: {
  32044. height: math.unit(5 + 9/12, "feet"),
  32045. name: "Front",
  32046. image: {
  32047. source: "./media/characters/cat/dog-front.svg",
  32048. extra: 1403/1309,
  32049. bottom: 31/1434
  32050. },
  32051. form: "dog",
  32052. default: true
  32053. },
  32054. dog_back: {
  32055. height: math.unit(5 + 9/12, "feet"),
  32056. name: "Back",
  32057. image: {
  32058. source: "./media/characters/cat/dog-back.svg",
  32059. extra: 1393/1297,
  32060. bottom: 38/1431
  32061. },
  32062. form: "dog",
  32063. },
  32064. pikachu_front: {
  32065. height: math.unit(2.64, "feet"),
  32066. name: "Front",
  32067. image: {
  32068. source: "./media/characters/cat/pikachu-front.svg",
  32069. extra: 1224/958,
  32070. bottom: 34/1258
  32071. },
  32072. form: "pikachu",
  32073. default: true
  32074. },
  32075. pikachu_back: {
  32076. height: math.unit(2.64, "feet"),
  32077. name: "Back",
  32078. image: {
  32079. source: "./media/characters/cat/pikachu-back.svg",
  32080. extra: 1228/958,
  32081. bottom: 16/1244
  32082. },
  32083. form: "pikachu",
  32084. },
  32085. gigachuFront: {
  32086. height: math.unit(75, "feet"),
  32087. name: "Front",
  32088. image: {
  32089. source: "./media/characters/cat/gigachu-front.svg",
  32090. extra: 1239/1027,
  32091. bottom: 32/1271
  32092. },
  32093. form: "gigachu",
  32094. default: true
  32095. },
  32096. gigachuBack: {
  32097. height: math.unit(75, "feet"),
  32098. name: "Back",
  32099. image: {
  32100. source: "./media/characters/cat/gigachu-back.svg",
  32101. extra: 1229/1030,
  32102. bottom: 9/1238
  32103. },
  32104. form: "gigachu"
  32105. },
  32106. },
  32107. [
  32108. {
  32109. name: "Really small",
  32110. height: math.unit(1, "nm"),
  32111. allForms: true
  32112. },
  32113. {
  32114. name: "Micro",
  32115. height: math.unit(5, "inches"),
  32116. allForms: true
  32117. },
  32118. {
  32119. name: "Normal",
  32120. height: math.unit(5 + 6 / 12, "feet"),
  32121. default: true,
  32122. form: "cat"
  32123. },
  32124. {
  32125. name: "Normal",
  32126. height: math.unit(7, "feet"),
  32127. default: true,
  32128. form: "taur"
  32129. },
  32130. {
  32131. name: "Normal",
  32132. height: math.unit(4, "feet"),
  32133. default: true,
  32134. form: "lucario"
  32135. },
  32136. {
  32137. name: "Normal",
  32138. height: math.unit(2, "feet"),
  32139. default: true,
  32140. form: "nickit"
  32141. },
  32142. {
  32143. name: "Normal",
  32144. height: math.unit(5, "feet"),
  32145. default: true,
  32146. form: "lopunny"
  32147. },
  32148. {
  32149. name: "Normal",
  32150. height: math.unit(2 + 4/12, "feet"),
  32151. default: true,
  32152. form: "riolu"
  32153. },
  32154. {
  32155. name: "Normal",
  32156. height: math.unit(5 + 6 / 12, "feet"),
  32157. default: true,
  32158. form: "dog"
  32159. },
  32160. {
  32161. name: "Macro",
  32162. height: math.unit(50, "feet"),
  32163. allForms: true
  32164. },
  32165. {
  32166. name: "Normal",
  32167. height: math.unit(2.64, "feet"),
  32168. default: true,
  32169. form: "pikachu"
  32170. },
  32171. {
  32172. name: "Dynamax",
  32173. height: math.unit(75, "feet"),
  32174. form: "gigachu",
  32175. default: true
  32176. },
  32177. {
  32178. name: "Macro+",
  32179. height: math.unit(150, "feet"),
  32180. allForms: true
  32181. },
  32182. {
  32183. name: "Megamacro",
  32184. height: math.unit(100, "miles"),
  32185. allForms: true
  32186. },
  32187. ],
  32188. {
  32189. "cat": {
  32190. name: "Cat",
  32191. default: true
  32192. },
  32193. "taur": {
  32194. name: "Taur",
  32195. },
  32196. "lucario": {
  32197. name: "Lucario",
  32198. },
  32199. "riolu": {
  32200. name: "Riolu",
  32201. },
  32202. "nickit": {
  32203. name: "Nickit",
  32204. },
  32205. "lopunny": {
  32206. name: "Lopunny",
  32207. },
  32208. "dog": {
  32209. name: "Dog",
  32210. },
  32211. "pikachu": {
  32212. name: "Pikachu",
  32213. },
  32214. "gigachu": {
  32215. name: "Gigachu",
  32216. ignoreAllFormSizes: true
  32217. }
  32218. }
  32219. ))
  32220. characterMakers.push(() => makeCharacter(
  32221. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32222. {
  32223. front: {
  32224. height: math.unit(63.4, "meters"),
  32225. weight: math.unit(3.28349e+6, "kilograms"),
  32226. name: "Front",
  32227. image: {
  32228. source: "./media/characters/kirina-violet/front.svg",
  32229. extra: 2812 / 2725,
  32230. bottom: 0 / 2812
  32231. }
  32232. },
  32233. back: {
  32234. height: math.unit(63.4, "meters"),
  32235. weight: math.unit(3.28349e+6, "kilograms"),
  32236. name: "Back",
  32237. image: {
  32238. source: "./media/characters/kirina-violet/back.svg",
  32239. extra: 2812 / 2725,
  32240. bottom: 0 / 2812
  32241. }
  32242. },
  32243. mouth: {
  32244. height: math.unit(4.35, "meters"),
  32245. name: "Mouth",
  32246. image: {
  32247. source: "./media/characters/kirina-violet/mouth.svg"
  32248. }
  32249. },
  32250. paw: {
  32251. height: math.unit(5.6, "meters"),
  32252. name: "Paw",
  32253. image: {
  32254. source: "./media/characters/kirina-violet/paw.svg"
  32255. }
  32256. },
  32257. tail: {
  32258. height: math.unit(18, "meters"),
  32259. name: "Tail",
  32260. image: {
  32261. source: "./media/characters/kirina-violet/tail.svg"
  32262. }
  32263. },
  32264. },
  32265. [
  32266. {
  32267. name: "Macro",
  32268. height: math.unit(63.4, "meters"),
  32269. default: true
  32270. },
  32271. ]
  32272. ))
  32273. characterMakers.push(() => makeCharacter(
  32274. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32275. {
  32276. front: {
  32277. height: math.unit(6, "feet"),
  32278. weight: math.unit(150, "lb"),
  32279. name: "Front",
  32280. image: {
  32281. source: "./media/characters/sfaiyan/front.svg",
  32282. extra: 999 / 978,
  32283. bottom: 5 / 1004
  32284. }
  32285. },
  32286. },
  32287. [
  32288. {
  32289. name: "Normal",
  32290. height: math.unit(1.82, "meters")
  32291. },
  32292. {
  32293. name: "Giant",
  32294. height: math.unit(2.27, "km"),
  32295. default: true
  32296. },
  32297. ]
  32298. ))
  32299. characterMakers.push(() => makeCharacter(
  32300. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32301. {
  32302. front: {
  32303. height: math.unit(179, "cm"),
  32304. weight: math.unit(100, "kg"),
  32305. name: "Front",
  32306. image: {
  32307. source: "./media/characters/raunehkeli/front.svg",
  32308. extra: 1934 / 1926,
  32309. bottom: 0 / 1934
  32310. }
  32311. },
  32312. },
  32313. [
  32314. {
  32315. name: "Normal",
  32316. height: math.unit(179, "cm")
  32317. },
  32318. {
  32319. name: "Maximum",
  32320. height: math.unit(575, "meters"),
  32321. default: true
  32322. },
  32323. ]
  32324. ))
  32325. characterMakers.push(() => makeCharacter(
  32326. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32327. {
  32328. dressed: {
  32329. height: math.unit(6 + 2/12, "feet"),
  32330. weight: math.unit(150, "lb"),
  32331. name: "Dressed",
  32332. image: {
  32333. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32334. extra: 2620/2496,
  32335. bottom: 66/2686
  32336. }
  32337. },
  32338. nude: {
  32339. height: math.unit(6 + 2/12, "feet"),
  32340. weight: math.unit(150, "lb"),
  32341. name: "Nude",
  32342. image: {
  32343. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32344. extra: 2620/2496,
  32345. bottom: 66/2686
  32346. }
  32347. },
  32348. },
  32349. [
  32350. {
  32351. name: "Normal",
  32352. height: math.unit(6 + 2 / 12, "feet")
  32353. },
  32354. {
  32355. name: "Max Height",
  32356. height: math.unit(1181, "feet"),
  32357. default: true
  32358. },
  32359. ]
  32360. ))
  32361. characterMakers.push(() => makeCharacter(
  32362. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32363. {
  32364. front: {
  32365. height: math.unit(5 + 6 / 12, "feet"),
  32366. weight: math.unit(108, "lb"),
  32367. name: "Front",
  32368. image: {
  32369. source: "./media/characters/lilith-zott/front.svg",
  32370. extra: 2415/2133,
  32371. bottom: 193/2608
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Base Height",
  32378. height: math.unit(5 + 6 / 12, "feet")
  32379. },
  32380. {
  32381. name: "Preferred Height",
  32382. height: math.unit(200, "feet")
  32383. },
  32384. {
  32385. name: "Max Height",
  32386. height: math.unit(1030, "feet"),
  32387. default: true
  32388. },
  32389. ]
  32390. ))
  32391. characterMakers.push(() => makeCharacter(
  32392. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32393. {
  32394. super: {
  32395. height: math.unit(6 + 2/12, "feet"),
  32396. weight: math.unit(150, "lb"),
  32397. name: "Super",
  32398. image: {
  32399. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32400. extra: 2555/2387,
  32401. bottom: 50/2605
  32402. }
  32403. },
  32404. casual: {
  32405. height: math.unit(6 + 2/12, "feet"),
  32406. weight: math.unit(150, "lb"),
  32407. name: "Casual",
  32408. image: {
  32409. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32410. extra: 2555/2387,
  32411. bottom: 50/2605
  32412. }
  32413. },
  32414. hand: {
  32415. height: math.unit(1.08, "feet"),
  32416. name: "Hand",
  32417. image: {
  32418. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32419. }
  32420. },
  32421. paw: {
  32422. height: math.unit(1.33, "feet"),
  32423. name: "Paw",
  32424. image: {
  32425. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32426. }
  32427. },
  32428. },
  32429. [
  32430. {
  32431. name: "Normal",
  32432. height: math.unit(6 + 2/12, "feet")
  32433. },
  32434. {
  32435. name: "Preferred Height",
  32436. height: math.unit(220, "feet")
  32437. },
  32438. {
  32439. name: "Max Height",
  32440. height: math.unit(1100, "feet"),
  32441. default: true
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32447. {
  32448. front: {
  32449. height: math.unit(100, "miles"),
  32450. name: "Front",
  32451. image: {
  32452. source: "./media/characters/sona/front.svg",
  32453. extra: 2433 / 2201,
  32454. bottom: 53 / 2486
  32455. }
  32456. },
  32457. foot: {
  32458. height: math.unit(16.1, "miles"),
  32459. name: "Foot",
  32460. image: {
  32461. source: "./media/characters/sona/foot.svg"
  32462. }
  32463. },
  32464. },
  32465. [
  32466. {
  32467. name: "Macro",
  32468. height: math.unit(100, "miles"),
  32469. default: true
  32470. },
  32471. ]
  32472. ))
  32473. characterMakers.push(() => makeCharacter(
  32474. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32475. {
  32476. front: {
  32477. height: math.unit(6, "feet"),
  32478. weight: math.unit(150, "lb"),
  32479. name: "Front",
  32480. image: {
  32481. source: "./media/characters/bailey/front.svg",
  32482. extra: 1778 / 1724,
  32483. bottom: 30 / 1808
  32484. }
  32485. },
  32486. },
  32487. [
  32488. {
  32489. name: "Micro",
  32490. height: math.unit(4, "inches")
  32491. },
  32492. {
  32493. name: "Normal",
  32494. height: math.unit(5 + 5 / 12, "feet"),
  32495. default: true
  32496. },
  32497. {
  32498. name: "Macro",
  32499. height: math.unit(250, "feet")
  32500. },
  32501. {
  32502. name: "Megamacro",
  32503. height: math.unit(100, "miles")
  32504. },
  32505. ]
  32506. ))
  32507. characterMakers.push(() => makeCharacter(
  32508. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32509. {
  32510. front: {
  32511. height: math.unit(5 + 2 / 12, "feet"),
  32512. weight: math.unit(120, "lb"),
  32513. name: "Front",
  32514. image: {
  32515. source: "./media/characters/snaps/front.svg",
  32516. extra: 2370 / 2177,
  32517. bottom: 48 / 2418
  32518. }
  32519. },
  32520. back: {
  32521. height: math.unit(5 + 2 / 12, "feet"),
  32522. weight: math.unit(120, "lb"),
  32523. name: "Back",
  32524. image: {
  32525. source: "./media/characters/snaps/back.svg",
  32526. extra: 2408 / 2258,
  32527. bottom: 15 / 2423
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Micro",
  32534. height: math.unit(9, "inches")
  32535. },
  32536. {
  32537. name: "Normal",
  32538. height: math.unit(5 + 2 / 12, "feet"),
  32539. default: true
  32540. },
  32541. {
  32542. name: "Mini Macro",
  32543. height: math.unit(10, "feet")
  32544. },
  32545. ]
  32546. ))
  32547. characterMakers.push(() => makeCharacter(
  32548. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32549. {
  32550. front: {
  32551. height: math.unit(1.8, "meters"),
  32552. weight: math.unit(85, "kg"),
  32553. name: "Front",
  32554. image: {
  32555. source: "./media/characters/azteck/front.svg",
  32556. extra: 2815 / 2625,
  32557. bottom: 89 / 2904
  32558. }
  32559. },
  32560. back: {
  32561. height: math.unit(1.8, "meters"),
  32562. weight: math.unit(85, "kg"),
  32563. name: "Back",
  32564. image: {
  32565. source: "./media/characters/azteck/back.svg",
  32566. extra: 2856 / 2648,
  32567. bottom: 85 / 2941
  32568. }
  32569. },
  32570. frontDressed: {
  32571. height: math.unit(1.8, "meters"),
  32572. weight: math.unit(85, "kg"),
  32573. name: "Front (Dressed)",
  32574. image: {
  32575. source: "./media/characters/azteck/front-dressed.svg",
  32576. extra: 2147 / 2003,
  32577. bottom: 68 / 2215
  32578. }
  32579. },
  32580. head: {
  32581. height: math.unit(0.47, "meters"),
  32582. weight: math.unit(85, "kg"),
  32583. name: "Head",
  32584. image: {
  32585. source: "./media/characters/azteck/head.svg"
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Bite sized",
  32592. height: math.unit(16, "cm")
  32593. },
  32594. {
  32595. name: "Normal",
  32596. height: math.unit(1.8, "meters"),
  32597. default: true
  32598. },
  32599. ]
  32600. ))
  32601. characterMakers.push(() => makeCharacter(
  32602. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32603. {
  32604. front: {
  32605. height: math.unit(6, "feet"),
  32606. weight: math.unit(150, "lb"),
  32607. name: "Front",
  32608. image: {
  32609. source: "./media/characters/pidge/front.svg",
  32610. extra: 1936/1820,
  32611. bottom: 0/1936
  32612. }
  32613. },
  32614. back: {
  32615. height: math.unit(6, "feet"),
  32616. weight: math.unit(150, "lb"),
  32617. name: "Back",
  32618. image: {
  32619. source: "./media/characters/pidge/back.svg",
  32620. extra: 1938/1843,
  32621. bottom: 0/1938
  32622. }
  32623. },
  32624. casual: {
  32625. height: math.unit(6, "feet"),
  32626. weight: math.unit(150, "lb"),
  32627. name: "Casual",
  32628. image: {
  32629. source: "./media/characters/pidge/casual.svg",
  32630. extra: 1936/1820,
  32631. bottom: 0/1936
  32632. }
  32633. },
  32634. tech: {
  32635. height: math.unit(6, "feet"),
  32636. weight: math.unit(150, "lb"),
  32637. name: "Tech",
  32638. image: {
  32639. source: "./media/characters/pidge/tech.svg",
  32640. extra: 1802/1682,
  32641. bottom: 0/1802
  32642. }
  32643. },
  32644. head: {
  32645. height: math.unit(1.61, "feet"),
  32646. name: "Head",
  32647. image: {
  32648. source: "./media/characters/pidge/head.svg"
  32649. }
  32650. },
  32651. collar: {
  32652. height: math.unit(0.82, "feet"),
  32653. name: "Collar",
  32654. image: {
  32655. source: "./media/characters/pidge/collar.svg"
  32656. }
  32657. },
  32658. },
  32659. [
  32660. {
  32661. name: "Macro",
  32662. height: math.unit(2, "mile"),
  32663. default: true
  32664. },
  32665. {
  32666. name: "PUPPY",
  32667. height: math.unit(20, "miles")
  32668. },
  32669. ]
  32670. ))
  32671. characterMakers.push(() => makeCharacter(
  32672. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32673. {
  32674. front: {
  32675. height: math.unit(6, "feet"),
  32676. weight: math.unit(150, "lb"),
  32677. name: "Front",
  32678. image: {
  32679. source: "./media/characters/en/front.svg",
  32680. extra: 1697 / 1563,
  32681. bottom: 103 / 1800
  32682. }
  32683. },
  32684. back: {
  32685. height: math.unit(6, "feet"),
  32686. weight: math.unit(150, "lb"),
  32687. name: "Back",
  32688. image: {
  32689. source: "./media/characters/en/back.svg",
  32690. extra: 1700 / 1570,
  32691. bottom: 51 / 1751
  32692. }
  32693. },
  32694. frontDressed: {
  32695. height: math.unit(6, "feet"),
  32696. weight: math.unit(150, "lb"),
  32697. name: "Front (Dressed)",
  32698. image: {
  32699. source: "./media/characters/en/front-dressed.svg",
  32700. extra: 1697 / 1563,
  32701. bottom: 103 / 1800
  32702. }
  32703. },
  32704. backDressed: {
  32705. height: math.unit(6, "feet"),
  32706. weight: math.unit(150, "lb"),
  32707. name: "Back (Dressed)",
  32708. image: {
  32709. source: "./media/characters/en/back-dressed.svg",
  32710. extra: 1700 / 1570,
  32711. bottom: 51 / 1751
  32712. }
  32713. },
  32714. },
  32715. [
  32716. {
  32717. name: "Macro",
  32718. height: math.unit(210, "feet"),
  32719. default: true
  32720. },
  32721. ]
  32722. ))
  32723. characterMakers.push(() => makeCharacter(
  32724. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32725. {
  32726. front: {
  32727. height: math.unit(6, "feet"),
  32728. weight: math.unit(150, "lb"),
  32729. name: "Front",
  32730. image: {
  32731. source: "./media/characters/haze-orris/front.svg",
  32732. extra: 3975 / 3525,
  32733. bottom: 137 / 4112
  32734. }
  32735. },
  32736. },
  32737. [
  32738. {
  32739. name: "Micro",
  32740. height: math.unit(150, "mm"),
  32741. default: true
  32742. },
  32743. ]
  32744. ))
  32745. characterMakers.push(() => makeCharacter(
  32746. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32747. {
  32748. front: {
  32749. height: math.unit(6, "feet"),
  32750. weight: math.unit(150, "lb"),
  32751. name: "Front",
  32752. image: {
  32753. source: "./media/characters/casselene-yaro/front.svg",
  32754. extra: 4721 / 4541,
  32755. bottom: 82 / 4803
  32756. }
  32757. },
  32758. back: {
  32759. height: math.unit(6, "feet"),
  32760. weight: math.unit(150, "lb"),
  32761. name: "Back",
  32762. image: {
  32763. source: "./media/characters/casselene-yaro/back.svg",
  32764. extra: 4569 / 4377,
  32765. bottom: 69 / 4638
  32766. }
  32767. },
  32768. dressed: {
  32769. height: math.unit(6, "feet"),
  32770. weight: math.unit(150, "lb"),
  32771. name: "Dressed",
  32772. image: {
  32773. source: "./media/characters/casselene-yaro/dressed.svg",
  32774. extra: 4721 / 4541,
  32775. bottom: 82 / 4803
  32776. }
  32777. },
  32778. maw: {
  32779. height: math.unit(1, "feet"),
  32780. name: "Maw",
  32781. image: {
  32782. source: "./media/characters/casselene-yaro/maw.svg"
  32783. }
  32784. },
  32785. },
  32786. [
  32787. {
  32788. name: "Macro",
  32789. height: math.unit(190, "feet"),
  32790. default: true
  32791. },
  32792. ]
  32793. ))
  32794. characterMakers.push(() => makeCharacter(
  32795. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32796. {
  32797. front: {
  32798. height: math.unit(10, "feet"),
  32799. weight: math.unit(15015, "lb"),
  32800. name: "Front",
  32801. image: {
  32802. source: "./media/characters/platine/front.svg",
  32803. extra: 1741/1650,
  32804. bottom: 84/1825
  32805. }
  32806. },
  32807. side: {
  32808. height: math.unit(10, "feet"),
  32809. weight: math.unit(15015, "lb"),
  32810. name: "Side",
  32811. image: {
  32812. source: "./media/characters/platine/side.svg",
  32813. extra: 1790/1705,
  32814. bottom: 29/1819
  32815. }
  32816. },
  32817. },
  32818. [
  32819. {
  32820. name: "Normal",
  32821. height: math.unit(10, "feet"),
  32822. default: true
  32823. },
  32824. {
  32825. name: "Macro",
  32826. height: math.unit(100, "feet")
  32827. },
  32828. {
  32829. name: "Megamacro",
  32830. height: math.unit(1000, "feet")
  32831. },
  32832. ]
  32833. ))
  32834. characterMakers.push(() => makeCharacter(
  32835. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32836. {
  32837. front: {
  32838. height: math.unit(15 + 5 / 12, "feet"),
  32839. weight: math.unit(4600, "lb"),
  32840. name: "Front",
  32841. image: {
  32842. source: "./media/characters/neapolitan-ananassa/front.svg",
  32843. extra: 2903 / 2736,
  32844. bottom: 0 / 2903
  32845. }
  32846. },
  32847. side: {
  32848. height: math.unit(15 + 5 / 12, "feet"),
  32849. weight: math.unit(4600, "lb"),
  32850. name: "Side",
  32851. image: {
  32852. source: "./media/characters/neapolitan-ananassa/side.svg",
  32853. extra: 2925 / 2719,
  32854. bottom: 0 / 2925
  32855. }
  32856. },
  32857. back: {
  32858. height: math.unit(15 + 5 / 12, "feet"),
  32859. weight: math.unit(4600, "lb"),
  32860. name: "Back",
  32861. image: {
  32862. source: "./media/characters/neapolitan-ananassa/back.svg",
  32863. extra: 2903 / 2736,
  32864. bottom: 0 / 2903
  32865. }
  32866. },
  32867. },
  32868. [
  32869. {
  32870. name: "Normal",
  32871. height: math.unit(15 + 5 / 12, "feet"),
  32872. default: true
  32873. },
  32874. {
  32875. name: "Post-Millenium",
  32876. height: math.unit(35 + 5 / 12, "feet")
  32877. },
  32878. {
  32879. name: "Post-Era",
  32880. height: math.unit(450 + 5 / 12, "feet")
  32881. },
  32882. ]
  32883. ))
  32884. characterMakers.push(() => makeCharacter(
  32885. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32886. {
  32887. front: {
  32888. height: math.unit(300, "meters"),
  32889. weight: math.unit(125000, "tonnes"),
  32890. name: "Front",
  32891. image: {
  32892. source: "./media/characters/pazuzu/front.svg",
  32893. extra: 877 / 794,
  32894. bottom: 47 / 924
  32895. }
  32896. },
  32897. },
  32898. [
  32899. {
  32900. name: "Macro",
  32901. height: math.unit(300, "meters"),
  32902. default: true
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32908. {
  32909. side: {
  32910. height: math.unit(10 + 7 / 12, "feet"),
  32911. weight: math.unit(2.5, "tons"),
  32912. name: "Side",
  32913. image: {
  32914. source: "./media/characters/aasha/side.svg",
  32915. extra: 1345 / 1245,
  32916. bottom: 111 / 1456
  32917. }
  32918. },
  32919. back: {
  32920. height: math.unit(10 + 7 / 12, "feet"),
  32921. weight: math.unit(2.5, "tons"),
  32922. name: "Back",
  32923. image: {
  32924. source: "./media/characters/aasha/back.svg",
  32925. extra: 1133 / 1057,
  32926. bottom: 257 / 1390
  32927. }
  32928. },
  32929. },
  32930. [
  32931. {
  32932. name: "Normal",
  32933. height: math.unit(10 + 7 / 12, "feet"),
  32934. default: true
  32935. },
  32936. ]
  32937. ))
  32938. characterMakers.push(() => makeCharacter(
  32939. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32940. {
  32941. front: {
  32942. height: math.unit(6 + 3 / 12, "feet"),
  32943. name: "Front",
  32944. image: {
  32945. source: "./media/characters/nevan/front.svg",
  32946. extra: 704 / 704,
  32947. bottom: 28 / 732
  32948. }
  32949. },
  32950. back: {
  32951. height: math.unit(6 + 3 / 12, "feet"),
  32952. name: "Back",
  32953. image: {
  32954. source: "./media/characters/nevan/back.svg",
  32955. extra: 714 / 714,
  32956. bottom: 21 / 735
  32957. }
  32958. },
  32959. frontFlaccid: {
  32960. height: math.unit(6 + 3 / 12, "feet"),
  32961. name: "Front (Flaccid)",
  32962. image: {
  32963. source: "./media/characters/nevan/front-flaccid.svg",
  32964. extra: 704 / 704,
  32965. bottom: 28 / 732
  32966. }
  32967. },
  32968. frontErect: {
  32969. height: math.unit(6 + 3 / 12, "feet"),
  32970. name: "Front (Erect)",
  32971. image: {
  32972. source: "./media/characters/nevan/front-erect.svg",
  32973. extra: 704 / 704,
  32974. bottom: 28 / 732
  32975. }
  32976. },
  32977. backFlaccid: {
  32978. height: math.unit(6 + 3 / 12, "feet"),
  32979. name: "Back (Flaccid)",
  32980. image: {
  32981. source: "./media/characters/nevan/back-flaccid.svg",
  32982. extra: 714 / 714,
  32983. bottom: 21 / 735
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Normal",
  32990. height: math.unit(6 + 3 / 12, "feet"),
  32991. default: true
  32992. },
  32993. ]
  32994. ))
  32995. characterMakers.push(() => makeCharacter(
  32996. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32997. {
  32998. front: {
  32999. height: math.unit(4, "feet"),
  33000. name: "Front",
  33001. image: {
  33002. source: "./media/characters/arhan/front.svg",
  33003. extra: 3368 / 3133,
  33004. bottom: 0 / 3368
  33005. }
  33006. },
  33007. side: {
  33008. height: math.unit(4, "feet"),
  33009. name: "Side",
  33010. image: {
  33011. source: "./media/characters/arhan/side.svg",
  33012. extra: 3347 / 3105,
  33013. bottom: 0 / 3347
  33014. }
  33015. },
  33016. tongue: {
  33017. height: math.unit(1.42, "feet"),
  33018. name: "Tongue",
  33019. image: {
  33020. source: "./media/characters/arhan/tongue.svg"
  33021. }
  33022. },
  33023. head: {
  33024. height: math.unit(0.85, "feet"),
  33025. name: "Head",
  33026. image: {
  33027. source: "./media/characters/arhan/head.svg"
  33028. }
  33029. },
  33030. },
  33031. [
  33032. {
  33033. name: "Normal",
  33034. height: math.unit(4, "feet"),
  33035. default: true
  33036. },
  33037. ]
  33038. ))
  33039. characterMakers.push(() => makeCharacter(
  33040. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  33041. {
  33042. front: {
  33043. height: math.unit(5 + 7.5 / 12, "feet"),
  33044. weight: math.unit(120, "lb"),
  33045. name: "Front",
  33046. image: {
  33047. source: "./media/characters/digi-duncan/front.svg",
  33048. extra: 330 / 326,
  33049. bottom: 16 / 346
  33050. }
  33051. },
  33052. side: {
  33053. height: math.unit(5 + 7.5 / 12, "feet"),
  33054. weight: math.unit(120, "lb"),
  33055. name: "Side",
  33056. image: {
  33057. source: "./media/characters/digi-duncan/side.svg",
  33058. extra: 341 / 337,
  33059. bottom: 1 / 342
  33060. }
  33061. },
  33062. back: {
  33063. height: math.unit(5 + 7.5 / 12, "feet"),
  33064. weight: math.unit(120, "lb"),
  33065. name: "Back",
  33066. image: {
  33067. source: "./media/characters/digi-duncan/back.svg",
  33068. extra: 330 / 326,
  33069. bottom: 12 / 342
  33070. }
  33071. },
  33072. },
  33073. [
  33074. {
  33075. name: "Speck",
  33076. height: math.unit(0.25, "mm")
  33077. },
  33078. {
  33079. name: "Micro",
  33080. height: math.unit(5, "mm")
  33081. },
  33082. {
  33083. name: "Tiny",
  33084. height: math.unit(0.5, "inches"),
  33085. default: true
  33086. },
  33087. {
  33088. name: "Human",
  33089. height: math.unit(5 + 7.5 / 12, "feet")
  33090. },
  33091. {
  33092. name: "Minigiant",
  33093. height: math.unit(8 + 5.25, "feet")
  33094. },
  33095. {
  33096. name: "Giant",
  33097. height: math.unit(2000, "feet")
  33098. },
  33099. {
  33100. name: "Mega",
  33101. height: math.unit(371.1, "miles")
  33102. },
  33103. ]
  33104. ))
  33105. characterMakers.push(() => makeCharacter(
  33106. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  33107. {
  33108. front: {
  33109. height: math.unit(2, "meters"),
  33110. weight: math.unit(350, "kg"),
  33111. name: "Front",
  33112. image: {
  33113. source: "./media/characters/jagaz-soulbreaker/front.svg",
  33114. extra: 898 / 838,
  33115. bottom: 9 / 907
  33116. }
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Micro",
  33122. height: math.unit(8, "meters")
  33123. },
  33124. {
  33125. name: "Normal",
  33126. height: math.unit(50, "meters"),
  33127. default: true
  33128. },
  33129. {
  33130. name: "Macro",
  33131. height: math.unit(500, "meters")
  33132. },
  33133. ]
  33134. ))
  33135. characterMakers.push(() => makeCharacter(
  33136. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33137. {
  33138. front: {
  33139. height: math.unit(6 + 6 / 12, "feet"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/khardesh/front.svg",
  33143. extra: 1788/1596,
  33144. bottom: 66/1854
  33145. }
  33146. },
  33147. back: {
  33148. height: math.unit(6 + 6 / 12, "feet"),
  33149. name: "Back",
  33150. image: {
  33151. source: "./media/characters/khardesh/back.svg",
  33152. extra: 1781/1584,
  33153. bottom: 68/1849
  33154. }
  33155. },
  33156. },
  33157. [
  33158. {
  33159. name: "Normal",
  33160. height: math.unit(6 + 6 / 12, "feet"),
  33161. default: true
  33162. },
  33163. {
  33164. name: "Normal+",
  33165. height: math.unit(4, "meters")
  33166. },
  33167. {
  33168. name: "Macro",
  33169. height: math.unit(50, "meters")
  33170. },
  33171. {
  33172. name: "Macro+",
  33173. height: math.unit(100, "meters")
  33174. },
  33175. {
  33176. name: "Megamacro",
  33177. height: math.unit(20, "km")
  33178. },
  33179. ]
  33180. ))
  33181. characterMakers.push(() => makeCharacter(
  33182. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33183. {
  33184. front: {
  33185. height: math.unit(6, "feet"),
  33186. weight: math.unit(150, "lb"),
  33187. name: "Front",
  33188. image: {
  33189. source: "./media/characters/kosho/front.svg",
  33190. extra: 1847 / 1847,
  33191. bottom: 86 / 1933
  33192. }
  33193. },
  33194. },
  33195. [
  33196. {
  33197. name: "Second-stage micro",
  33198. height: math.unit(0.5, "inches")
  33199. },
  33200. {
  33201. name: "First-stage micro",
  33202. height: math.unit(6, "inches")
  33203. },
  33204. {
  33205. name: "Normal",
  33206. height: math.unit(6, "feet"),
  33207. default: true
  33208. },
  33209. {
  33210. name: "First-stage macro",
  33211. height: math.unit(72, "feet")
  33212. },
  33213. {
  33214. name: "Second-stage macro",
  33215. height: math.unit(864, "feet")
  33216. },
  33217. ]
  33218. ))
  33219. characterMakers.push(() => makeCharacter(
  33220. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33221. {
  33222. normal: {
  33223. height: math.unit(4 + 6 / 12, "feet"),
  33224. name: "Normal",
  33225. image: {
  33226. source: "./media/characters/hydra/normal.svg",
  33227. extra: 2833 / 2634,
  33228. bottom: 68 / 2901
  33229. }
  33230. },
  33231. smol: {
  33232. height: math.unit(0.705, "inches"),
  33233. name: "Smol",
  33234. image: {
  33235. source: "./media/characters/hydra/smol.svg",
  33236. extra: 2715 / 2540,
  33237. bottom: 0 / 2715
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Normal",
  33244. height: math.unit(4 + 6 / 12, "feet"),
  33245. default: true
  33246. }
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33251. {
  33252. front: {
  33253. height: math.unit(0.6, "cm"),
  33254. name: "Front",
  33255. image: {
  33256. source: "./media/characters/daz/front.svg",
  33257. extra: 1682 / 1164,
  33258. bottom: 42 / 1724
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(0.6, "cm"),
  33266. default: true
  33267. },
  33268. ]
  33269. ))
  33270. characterMakers.push(() => makeCharacter(
  33271. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33272. {
  33273. front: {
  33274. height: math.unit(6, "feet"),
  33275. weight: math.unit(235, "lb"),
  33276. name: "Front",
  33277. image: {
  33278. source: "./media/characters/theo-pangolin/front.svg",
  33279. extra: 1996 / 1969,
  33280. bottom: 115 / 2111
  33281. }
  33282. },
  33283. back: {
  33284. height: math.unit(6, "feet"),
  33285. weight: math.unit(235, "lb"),
  33286. name: "Back",
  33287. image: {
  33288. source: "./media/characters/theo-pangolin/back.svg",
  33289. extra: 1979 / 1979,
  33290. bottom: 40 / 2019
  33291. }
  33292. },
  33293. feral: {
  33294. height: math.unit(2, "feet"),
  33295. weight: math.unit(30, "lb"),
  33296. name: "Feral",
  33297. image: {
  33298. source: "./media/characters/theo-pangolin/feral.svg",
  33299. extra: 803 / 791,
  33300. bottom: 181 / 984
  33301. }
  33302. },
  33303. footFive: {
  33304. height: math.unit(1.43, "feet"),
  33305. name: "Foot (Five Toes)",
  33306. image: {
  33307. source: "./media/characters/theo-pangolin/foot-five.svg"
  33308. }
  33309. },
  33310. footFour: {
  33311. height: math.unit(1.43, "feet"),
  33312. name: "Foot (Four Toes)",
  33313. image: {
  33314. source: "./media/characters/theo-pangolin/foot-four.svg"
  33315. }
  33316. },
  33317. handFour: {
  33318. height: math.unit(0.81, "feet"),
  33319. name: "Hand (Four Fingers)",
  33320. image: {
  33321. source: "./media/characters/theo-pangolin/hand-four.svg"
  33322. }
  33323. },
  33324. handThree: {
  33325. height: math.unit(0.81, "feet"),
  33326. name: "Hand (Three Fingers)",
  33327. image: {
  33328. source: "./media/characters/theo-pangolin/hand-three.svg"
  33329. }
  33330. },
  33331. headFront: {
  33332. height: math.unit(1.37, "feet"),
  33333. name: "Head (Front)",
  33334. image: {
  33335. source: "./media/characters/theo-pangolin/head-front.svg"
  33336. }
  33337. },
  33338. headSide: {
  33339. height: math.unit(1.43, "feet"),
  33340. name: "Head (Side)",
  33341. image: {
  33342. source: "./media/characters/theo-pangolin/head-side.svg"
  33343. }
  33344. },
  33345. tongue: {
  33346. height: math.unit(2.29, "feet"),
  33347. name: "Tongue",
  33348. image: {
  33349. source: "./media/characters/theo-pangolin/tongue.svg"
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Normal",
  33356. height: math.unit(6, "feet")
  33357. },
  33358. {
  33359. name: "Macro",
  33360. height: math.unit(400, "feet"),
  33361. default: true
  33362. },
  33363. ]
  33364. ))
  33365. characterMakers.push(() => makeCharacter(
  33366. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33367. {
  33368. front: {
  33369. height: math.unit(6, "inches"),
  33370. weight: math.unit(0.036, "kg"),
  33371. name: "Front",
  33372. image: {
  33373. source: "./media/characters/renée/front.svg",
  33374. extra: 900 / 886,
  33375. bottom: 8 / 908
  33376. }
  33377. },
  33378. },
  33379. [
  33380. {
  33381. name: "Nano",
  33382. height: math.unit(1, "nm")
  33383. },
  33384. {
  33385. name: "Micro",
  33386. height: math.unit(1, "mm")
  33387. },
  33388. {
  33389. name: "Normal",
  33390. height: math.unit(6, "inches")
  33391. },
  33392. {
  33393. name: "Macro",
  33394. height: math.unit(2000, "feet"),
  33395. default: true
  33396. },
  33397. {
  33398. name: "Megamacro",
  33399. height: math.unit(2, "km")
  33400. },
  33401. {
  33402. name: "Gigamacro",
  33403. height: math.unit(2000, "km")
  33404. },
  33405. {
  33406. name: "Teramacro",
  33407. height: math.unit(250000, "km")
  33408. },
  33409. ]
  33410. ))
  33411. characterMakers.push(() => makeCharacter(
  33412. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33413. {
  33414. front: {
  33415. height: math.unit(4, "meters"),
  33416. weight: math.unit(150, "kg"),
  33417. name: "Front",
  33418. image: {
  33419. source: "./media/characters/caledvwlch/front.svg",
  33420. extra: 1757/1537,
  33421. bottom: 31/1788
  33422. }
  33423. },
  33424. side: {
  33425. height: math.unit(4, "meters"),
  33426. weight: math.unit(150, "kg"),
  33427. name: "Side",
  33428. image: {
  33429. source: "./media/characters/caledvwlch/side.svg",
  33430. extra: 1605 / 1536,
  33431. bottom: 31 / 1636
  33432. }
  33433. },
  33434. back: {
  33435. height: math.unit(4, "meters"),
  33436. weight: math.unit(150, "kg"),
  33437. name: "Back",
  33438. image: {
  33439. source: "./media/characters/caledvwlch/back.svg",
  33440. extra: 1635 / 1565,
  33441. bottom: 27 / 1662
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "\"Incognito\"",
  33448. height: math.unit(4, "meters")
  33449. },
  33450. {
  33451. name: "Small rampage",
  33452. height: math.unit(600, "meters")
  33453. },
  33454. {
  33455. name: "Mega",
  33456. height: math.unit(30, "km")
  33457. },
  33458. {
  33459. name: "Home-size",
  33460. height: math.unit(50, "km"),
  33461. default: true
  33462. },
  33463. {
  33464. name: "Giga",
  33465. height: math.unit(300, "km")
  33466. },
  33467. {
  33468. name: "Lounging",
  33469. height: math.unit(11000, "km")
  33470. },
  33471. {
  33472. name: "Planet snacking",
  33473. height: math.unit(2000000, "km")
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33479. {
  33480. front: {
  33481. height: math.unit(6, "feet"),
  33482. weight: math.unit(215, "lb"),
  33483. name: "Front",
  33484. image: {
  33485. source: "./media/characters/sapphire-svell/front.svg",
  33486. extra: 495 / 455,
  33487. bottom: 20 / 515
  33488. }
  33489. },
  33490. back: {
  33491. height: math.unit(6, "feet"),
  33492. weight: math.unit(216, "lb"),
  33493. name: "Back",
  33494. image: {
  33495. source: "./media/characters/sapphire-svell/back.svg",
  33496. extra: 497 / 477,
  33497. bottom: 7 / 504
  33498. }
  33499. },
  33500. maw: {
  33501. height: math.unit(1.57, "feet"),
  33502. name: "Maw",
  33503. image: {
  33504. source: "./media/characters/sapphire-svell/maw.svg"
  33505. }
  33506. },
  33507. foot: {
  33508. height: math.unit(1.07, "feet"),
  33509. name: "Foot",
  33510. image: {
  33511. source: "./media/characters/sapphire-svell/foot.svg"
  33512. }
  33513. },
  33514. toering: {
  33515. height: math.unit(1.7, "inch"),
  33516. name: "Toering",
  33517. image: {
  33518. source: "./media/characters/sapphire-svell/toering.svg"
  33519. }
  33520. },
  33521. },
  33522. [
  33523. {
  33524. name: "Normal",
  33525. height: math.unit(300, "feet"),
  33526. default: true
  33527. },
  33528. {
  33529. name: "Augmented",
  33530. height: math.unit(1250, "feet")
  33531. },
  33532. {
  33533. name: "Unleashed",
  33534. height: math.unit(3000, "feet")
  33535. },
  33536. ]
  33537. ))
  33538. characterMakers.push(() => makeCharacter(
  33539. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33540. {
  33541. side: {
  33542. height: math.unit(2 + 3 / 12, "feet"),
  33543. weight: math.unit(110, "lb"),
  33544. name: "Side",
  33545. image: {
  33546. source: "./media/characters/glitch-flux/side.svg",
  33547. extra: 997 / 805,
  33548. bottom: 20 / 1017
  33549. }
  33550. },
  33551. },
  33552. [
  33553. {
  33554. name: "Normal",
  33555. height: math.unit(2 + 3 / 12, "feet"),
  33556. default: true
  33557. },
  33558. ]
  33559. ))
  33560. characterMakers.push(() => makeCharacter(
  33561. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33562. {
  33563. front: {
  33564. height: math.unit(4, "meters"),
  33565. name: "Front",
  33566. image: {
  33567. source: "./media/characters/mid/front.svg",
  33568. extra: 507 / 476,
  33569. bottom: 17 / 524
  33570. }
  33571. },
  33572. back: {
  33573. height: math.unit(4, "meters"),
  33574. name: "Back",
  33575. image: {
  33576. source: "./media/characters/mid/back.svg",
  33577. extra: 519 / 487,
  33578. bottom: 7 / 526
  33579. }
  33580. },
  33581. stuck: {
  33582. height: math.unit(2.2, "meters"),
  33583. name: "Stuck",
  33584. image: {
  33585. source: "./media/characters/mid/stuck.svg",
  33586. extra: 1951 / 1869,
  33587. bottom: 88 / 2039
  33588. }
  33589. }
  33590. },
  33591. [
  33592. {
  33593. name: "Normal",
  33594. height: math.unit(4, "meters"),
  33595. default: true
  33596. },
  33597. {
  33598. name: "Big",
  33599. height: math.unit(10, "meters")
  33600. },
  33601. {
  33602. name: "Macro",
  33603. height: math.unit(800, "meters")
  33604. },
  33605. {
  33606. name: "Megamacro",
  33607. height: math.unit(100, "km")
  33608. },
  33609. {
  33610. name: "Overgrown",
  33611. height: math.unit(1, "parsec")
  33612. },
  33613. ]
  33614. ))
  33615. characterMakers.push(() => makeCharacter(
  33616. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33617. {
  33618. front: {
  33619. height: math.unit(2.5, "meters"),
  33620. weight: math.unit(225, "kg"),
  33621. name: "Front",
  33622. image: {
  33623. source: "./media/characters/iris/front.svg",
  33624. extra: 3348 / 3251,
  33625. bottom: 205 / 3553
  33626. }
  33627. },
  33628. maw: {
  33629. height: math.unit(0.56, "meter"),
  33630. name: "Maw",
  33631. image: {
  33632. source: "./media/characters/iris/maw.svg"
  33633. }
  33634. },
  33635. },
  33636. [
  33637. {
  33638. name: "Mewter cat",
  33639. height: math.unit(1.2, "meters")
  33640. },
  33641. {
  33642. name: "Normal",
  33643. height: math.unit(2.5, "meters"),
  33644. default: true
  33645. },
  33646. {
  33647. name: "Minimacro",
  33648. height: math.unit(18, "feet")
  33649. },
  33650. {
  33651. name: "Macro",
  33652. height: math.unit(140, "feet")
  33653. },
  33654. {
  33655. name: "Macro+",
  33656. height: math.unit(180, "meters")
  33657. },
  33658. {
  33659. name: "Megamacro",
  33660. height: math.unit(2746, "meters")
  33661. },
  33662. ]
  33663. ))
  33664. characterMakers.push(() => makeCharacter(
  33665. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33666. {
  33667. front: {
  33668. height: math.unit(6, "feet"),
  33669. weight: math.unit(135, "lb"),
  33670. name: "Front",
  33671. image: {
  33672. source: "./media/characters/axel/front.svg",
  33673. extra: 908 / 908,
  33674. bottom: 58 / 966
  33675. }
  33676. },
  33677. side: {
  33678. height: math.unit(6, "feet"),
  33679. weight: math.unit(135, "lb"),
  33680. name: "Side",
  33681. image: {
  33682. source: "./media/characters/axel/side.svg",
  33683. extra: 958 / 958,
  33684. bottom: 11 / 969
  33685. }
  33686. },
  33687. back: {
  33688. height: math.unit(6, "feet"),
  33689. weight: math.unit(135, "lb"),
  33690. name: "Back",
  33691. image: {
  33692. source: "./media/characters/axel/back.svg",
  33693. extra: 887 / 887,
  33694. bottom: 34 / 921
  33695. }
  33696. },
  33697. head: {
  33698. height: math.unit(1.07, "feet"),
  33699. name: "Head",
  33700. image: {
  33701. source: "./media/characters/axel/head.svg"
  33702. }
  33703. },
  33704. beak: {
  33705. height: math.unit(1.4, "feet"),
  33706. name: "Beak",
  33707. image: {
  33708. source: "./media/characters/axel/beak.svg"
  33709. }
  33710. },
  33711. beakSide: {
  33712. height: math.unit(1.4, "feet"),
  33713. name: "Beak Side",
  33714. image: {
  33715. source: "./media/characters/axel/beak-side.svg"
  33716. }
  33717. },
  33718. sheath: {
  33719. height: math.unit(0.5, "feet"),
  33720. name: "Sheath",
  33721. image: {
  33722. source: "./media/characters/axel/sheath.svg"
  33723. }
  33724. },
  33725. dick: {
  33726. height: math.unit(0.98, "feet"),
  33727. name: "Dick",
  33728. image: {
  33729. source: "./media/characters/axel/dick.svg"
  33730. }
  33731. },
  33732. },
  33733. [
  33734. {
  33735. name: "Macro",
  33736. height: math.unit(68, "meters"),
  33737. default: true
  33738. },
  33739. ]
  33740. ))
  33741. characterMakers.push(() => makeCharacter(
  33742. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33743. {
  33744. front: {
  33745. height: math.unit(3.5, "meters"),
  33746. weight: math.unit(1200, "kg"),
  33747. name: "Front",
  33748. image: {
  33749. source: "./media/characters/joanna/front.svg",
  33750. extra: 1596 / 1488,
  33751. bottom: 29 / 1625
  33752. }
  33753. },
  33754. back: {
  33755. height: math.unit(3.5, "meters"),
  33756. weight: math.unit(1200, "kg"),
  33757. name: "Back",
  33758. image: {
  33759. source: "./media/characters/joanna/back.svg",
  33760. extra: 1594 / 1495,
  33761. bottom: 26 / 1620
  33762. }
  33763. },
  33764. frontShorts: {
  33765. height: math.unit(3.5, "meters"),
  33766. weight: math.unit(1200, "kg"),
  33767. name: "Front (Shorts)",
  33768. image: {
  33769. source: "./media/characters/joanna/front-shorts.svg",
  33770. extra: 1596 / 1488,
  33771. bottom: 29 / 1625
  33772. }
  33773. },
  33774. frontBiker: {
  33775. height: math.unit(3.5, "meters"),
  33776. weight: math.unit(1200, "kg"),
  33777. name: "Front (Biker)",
  33778. image: {
  33779. source: "./media/characters/joanna/front-biker.svg",
  33780. extra: 1596 / 1488,
  33781. bottom: 29 / 1625
  33782. }
  33783. },
  33784. backBiker: {
  33785. height: math.unit(3.5, "meters"),
  33786. weight: math.unit(1200, "kg"),
  33787. name: "Back (Biker)",
  33788. image: {
  33789. source: "./media/characters/joanna/back-biker.svg",
  33790. extra: 1594 / 1495,
  33791. bottom: 88 / 1682
  33792. }
  33793. },
  33794. bikeLeft: {
  33795. height: math.unit(2.4, "meters"),
  33796. weight: math.unit(1600, "kg"),
  33797. name: "Bike (Left)",
  33798. image: {
  33799. source: "./media/characters/joanna/bike-left.svg",
  33800. extra: 720 / 720,
  33801. bottom: 8 / 728
  33802. }
  33803. },
  33804. bikeRight: {
  33805. height: math.unit(2.4, "meters"),
  33806. weight: math.unit(1600, "kg"),
  33807. name: "Bike (Right)",
  33808. image: {
  33809. source: "./media/characters/joanna/bike-right.svg",
  33810. extra: 720 / 720,
  33811. bottom: 8 / 728
  33812. }
  33813. },
  33814. },
  33815. [
  33816. {
  33817. name: "Incognito",
  33818. height: math.unit(3.5, "meters")
  33819. },
  33820. {
  33821. name: "Casual Big",
  33822. height: math.unit(200, "meters")
  33823. },
  33824. {
  33825. name: "Macro",
  33826. height: math.unit(600, "meters")
  33827. },
  33828. {
  33829. name: "Original",
  33830. height: math.unit(20, "km"),
  33831. default: true
  33832. },
  33833. {
  33834. name: "Giga",
  33835. height: math.unit(400, "km")
  33836. },
  33837. {
  33838. name: "Lounging",
  33839. height: math.unit(1500, "km")
  33840. },
  33841. {
  33842. name: "Planetary",
  33843. height: math.unit(200000, "km")
  33844. },
  33845. ]
  33846. ))
  33847. characterMakers.push(() => makeCharacter(
  33848. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33849. {
  33850. front: {
  33851. height: math.unit(6, "feet"),
  33852. weight: math.unit(150, "lb"),
  33853. name: "Front",
  33854. image: {
  33855. source: "./media/characters/hugo-sigil/front.svg",
  33856. extra: 522 / 500,
  33857. bottom: 2 / 524
  33858. }
  33859. },
  33860. back: {
  33861. height: math.unit(6, "feet"),
  33862. weight: math.unit(150, "lb"),
  33863. name: "Back",
  33864. image: {
  33865. source: "./media/characters/hugo-sigil/back.svg",
  33866. extra: 519 / 495,
  33867. bottom: 5 / 524
  33868. }
  33869. },
  33870. maw: {
  33871. height: math.unit(1.4, "feet"),
  33872. weight: math.unit(150, "lb"),
  33873. name: "Maw",
  33874. image: {
  33875. source: "./media/characters/hugo-sigil/maw.svg"
  33876. }
  33877. },
  33878. feet: {
  33879. height: math.unit(1.56, "feet"),
  33880. weight: math.unit(150, "lb"),
  33881. name: "Feet",
  33882. image: {
  33883. source: "./media/characters/hugo-sigil/feet.svg",
  33884. extra: 177 / 177,
  33885. bottom: 12 / 189
  33886. }
  33887. },
  33888. },
  33889. [
  33890. {
  33891. name: "Normal",
  33892. height: math.unit(6, "feet")
  33893. },
  33894. {
  33895. name: "Macro",
  33896. height: math.unit(200, "feet"),
  33897. default: true
  33898. },
  33899. ]
  33900. ))
  33901. characterMakers.push(() => makeCharacter(
  33902. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33903. {
  33904. front: {
  33905. height: math.unit(6, "feet"),
  33906. weight: math.unit(150, "lb"),
  33907. name: "Front",
  33908. image: {
  33909. source: "./media/characters/peri/front.svg",
  33910. extra: 2354 / 2233,
  33911. bottom: 49 / 2403
  33912. }
  33913. },
  33914. },
  33915. [
  33916. {
  33917. name: "Really Small",
  33918. height: math.unit(1, "nm")
  33919. },
  33920. {
  33921. name: "Micro",
  33922. height: math.unit(4, "inches")
  33923. },
  33924. {
  33925. name: "Normal",
  33926. height: math.unit(7, "inches"),
  33927. default: true
  33928. },
  33929. {
  33930. name: "Macro",
  33931. height: math.unit(400, "feet")
  33932. },
  33933. {
  33934. name: "Megamacro",
  33935. height: math.unit(100, "miles")
  33936. },
  33937. ]
  33938. ))
  33939. characterMakers.push(() => makeCharacter(
  33940. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33941. {
  33942. frontSlim: {
  33943. height: math.unit(7, "feet"),
  33944. name: "Front (Slim)",
  33945. image: {
  33946. source: "./media/characters/issilora/front-slim.svg",
  33947. extra: 529 / 449,
  33948. bottom: 53 / 582
  33949. }
  33950. },
  33951. sideSlim: {
  33952. height: math.unit(7, "feet"),
  33953. name: "Side (Slim)",
  33954. image: {
  33955. source: "./media/characters/issilora/side-slim.svg",
  33956. extra: 570 / 480,
  33957. bottom: 30 / 600
  33958. }
  33959. },
  33960. backSlim: {
  33961. height: math.unit(7, "feet"),
  33962. name: "Back (Slim)",
  33963. image: {
  33964. source: "./media/characters/issilora/back-slim.svg",
  33965. extra: 537 / 455,
  33966. bottom: 46 / 583
  33967. }
  33968. },
  33969. frontBuff: {
  33970. height: math.unit(7, "feet"),
  33971. name: "Front (Buff)",
  33972. image: {
  33973. source: "./media/characters/issilora/front-buff.svg",
  33974. extra: 2310 / 2035,
  33975. bottom: 335 / 2645
  33976. }
  33977. },
  33978. head: {
  33979. height: math.unit(1.94, "feet"),
  33980. name: "Head",
  33981. image: {
  33982. source: "./media/characters/issilora/head.svg"
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Minimum",
  33989. height: math.unit(7, "feet")
  33990. },
  33991. {
  33992. name: "Comfortable",
  33993. height: math.unit(17, "feet")
  33994. },
  33995. {
  33996. name: "Fun Size",
  33997. height: math.unit(47, "feet")
  33998. },
  33999. {
  34000. name: "Natural Macro",
  34001. height: math.unit(137, "feet"),
  34002. default: true
  34003. },
  34004. {
  34005. name: "Maximum Kaiju",
  34006. height: math.unit(397, "feet")
  34007. },
  34008. ]
  34009. ))
  34010. characterMakers.push(() => makeCharacter(
  34011. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  34012. {
  34013. front: {
  34014. height: math.unit(50 + 9/12, "feet"),
  34015. weight: math.unit(32.8, "tons"),
  34016. name: "Front",
  34017. image: {
  34018. source: "./media/characters/irb'iiritaahn/front.svg",
  34019. extra: 1878/1826,
  34020. bottom: 326/2204
  34021. }
  34022. },
  34023. back: {
  34024. height: math.unit(50 + 9/12, "feet"),
  34025. weight: math.unit(32.8, "tons"),
  34026. name: "Back",
  34027. image: {
  34028. source: "./media/characters/irb'iiritaahn/back.svg",
  34029. extra: 2052/2018,
  34030. bottom: 152/2204
  34031. }
  34032. },
  34033. head: {
  34034. height: math.unit(12.86, "feet"),
  34035. name: "Head",
  34036. image: {
  34037. source: "./media/characters/irb'iiritaahn/head.svg"
  34038. }
  34039. },
  34040. maw: {
  34041. height: math.unit(9.66, "feet"),
  34042. name: "Maw",
  34043. image: {
  34044. source: "./media/characters/irb'iiritaahn/maw.svg"
  34045. }
  34046. },
  34047. frontDick: {
  34048. height: math.unit(8.78461, "feet"),
  34049. name: "Front Dick",
  34050. image: {
  34051. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  34052. }
  34053. },
  34054. rearDick: {
  34055. height: math.unit(8.78461, "feet"),
  34056. name: "Rear Dick",
  34057. image: {
  34058. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  34059. }
  34060. },
  34061. rearDickUnfolded: {
  34062. height: math.unit(8.78, "feet"),
  34063. name: "Rear Dick (Unfolded)",
  34064. image: {
  34065. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  34066. }
  34067. },
  34068. wings: {
  34069. height: math.unit(43, "feet"),
  34070. name: "Wings",
  34071. image: {
  34072. source: "./media/characters/irb'iiritaahn/wings.svg"
  34073. }
  34074. },
  34075. },
  34076. [
  34077. {
  34078. name: "Macro",
  34079. height: math.unit(50 + 9/12, "feet"),
  34080. default: true
  34081. },
  34082. ]
  34083. ))
  34084. characterMakers.push(() => makeCharacter(
  34085. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  34086. {
  34087. front: {
  34088. height: math.unit(205, "cm"),
  34089. weight: math.unit(102, "kg"),
  34090. name: "Front",
  34091. image: {
  34092. source: "./media/characters/irbisgreif/front.svg",
  34093. extra: 785/706,
  34094. bottom: 13/798
  34095. }
  34096. },
  34097. back: {
  34098. height: math.unit(205, "cm"),
  34099. weight: math.unit(102, "kg"),
  34100. name: "Back",
  34101. image: {
  34102. source: "./media/characters/irbisgreif/back.svg",
  34103. extra: 713/701,
  34104. bottom: 26/739
  34105. }
  34106. },
  34107. frontDressed: {
  34108. height: math.unit(216, "cm"),
  34109. weight: math.unit(102, "kg"),
  34110. name: "Front (Dressed)",
  34111. image: {
  34112. source: "./media/characters/irbisgreif/front-dressed.svg",
  34113. extra: 902/776,
  34114. bottom: 14/916
  34115. }
  34116. },
  34117. sideDressed: {
  34118. height: math.unit(195, "cm"),
  34119. weight: math.unit(102, "kg"),
  34120. name: "Side (Dressed)",
  34121. image: {
  34122. source: "./media/characters/irbisgreif/side-dressed.svg",
  34123. extra: 788/688,
  34124. bottom: 21/809
  34125. }
  34126. },
  34127. backDressed: {
  34128. height: math.unit(216, "cm"),
  34129. weight: math.unit(102, "kg"),
  34130. name: "Back (Dressed)",
  34131. image: {
  34132. source: "./media/characters/irbisgreif/back-dressed.svg",
  34133. extra: 901/783,
  34134. bottom: 10/911
  34135. }
  34136. },
  34137. dick: {
  34138. height: math.unit(0.49, "feet"),
  34139. name: "Dick",
  34140. image: {
  34141. source: "./media/characters/irbisgreif/dick.svg"
  34142. }
  34143. },
  34144. wingTop: {
  34145. height: math.unit(1.93 , "feet"),
  34146. name: "Wing (Top)",
  34147. image: {
  34148. source: "./media/characters/irbisgreif/wing-top.svg"
  34149. }
  34150. },
  34151. wingBottom: {
  34152. height: math.unit(1.93 , "feet"),
  34153. name: "Wing (Bottom)",
  34154. image: {
  34155. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34156. }
  34157. },
  34158. },
  34159. [
  34160. {
  34161. name: "Normal",
  34162. height: math.unit(216, "cm"),
  34163. default: true
  34164. },
  34165. ]
  34166. ))
  34167. characterMakers.push(() => makeCharacter(
  34168. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34169. {
  34170. front: {
  34171. height: math.unit(6, "feet"),
  34172. weight: math.unit(150, "lb"),
  34173. name: "Front",
  34174. image: {
  34175. source: "./media/characters/pride/front.svg",
  34176. extra: 1299/1230,
  34177. bottom: 18/1317
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Normal",
  34184. height: math.unit(7, "feet")
  34185. },
  34186. {
  34187. name: "Mini-macro",
  34188. height: math.unit(11, "feet")
  34189. },
  34190. {
  34191. name: "Macro",
  34192. height: math.unit(15, "meters"),
  34193. default: true
  34194. },
  34195. {
  34196. name: "Macro+",
  34197. height: math.unit(40, "meters")
  34198. },
  34199. ]
  34200. ))
  34201. characterMakers.push(() => makeCharacter(
  34202. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34203. {
  34204. front: {
  34205. height: math.unit(4 + 2 / 12, "feet"),
  34206. weight: math.unit(95, "lb"),
  34207. name: "Front",
  34208. image: {
  34209. source: "./media/characters/vaelophis-nyx/front.svg",
  34210. extra: 2532/2330,
  34211. bottom: 0/2532
  34212. }
  34213. },
  34214. back: {
  34215. height: math.unit(4 + 2 / 12, "feet"),
  34216. weight: math.unit(95, "lb"),
  34217. name: "Back",
  34218. image: {
  34219. source: "./media/characters/vaelophis-nyx/back.svg",
  34220. extra: 2484/2361,
  34221. bottom: 0/2484
  34222. }
  34223. },
  34224. feralSide: {
  34225. height: math.unit(2 + 1/12, "feet"),
  34226. weight: math.unit(20, "lb"),
  34227. name: "Feral (Side)",
  34228. image: {
  34229. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34230. extra: 1721/1581,
  34231. bottom: 70/1791
  34232. }
  34233. },
  34234. feralLazing: {
  34235. height: math.unit(1.08, "feet"),
  34236. weight: math.unit(20, "lb"),
  34237. name: "Feral (Lazing)",
  34238. image: {
  34239. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34240. extra: 822/822,
  34241. bottom: 248/1070
  34242. }
  34243. },
  34244. ear: {
  34245. height: math.unit(0.416, "feet"),
  34246. name: "Ear",
  34247. image: {
  34248. source: "./media/characters/vaelophis-nyx/ear.svg"
  34249. }
  34250. },
  34251. eye: {
  34252. height: math.unit(0.0748, "feet"),
  34253. name: "Eye",
  34254. image: {
  34255. source: "./media/characters/vaelophis-nyx/eye.svg"
  34256. }
  34257. },
  34258. mouth: {
  34259. height: math.unit(0.378, "feet"),
  34260. name: "Mouth",
  34261. image: {
  34262. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34263. }
  34264. },
  34265. spade: {
  34266. height: math.unit(0.55, "feet"),
  34267. name: "Spade",
  34268. image: {
  34269. source: "./media/characters/vaelophis-nyx/spade.svg"
  34270. }
  34271. },
  34272. },
  34273. [
  34274. {
  34275. name: "Normal",
  34276. height: math.unit(4 + 2/12, "feet"),
  34277. default: true
  34278. },
  34279. ]
  34280. ))
  34281. characterMakers.push(() => makeCharacter(
  34282. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34283. {
  34284. front: {
  34285. height: math.unit(7, "feet"),
  34286. weight: math.unit(231, "lb"),
  34287. name: "Front",
  34288. image: {
  34289. source: "./media/characters/flux/front.svg",
  34290. extra: 919/871,
  34291. bottom: 0/919
  34292. }
  34293. },
  34294. back: {
  34295. height: math.unit(7, "feet"),
  34296. weight: math.unit(231, "lb"),
  34297. name: "Back",
  34298. image: {
  34299. source: "./media/characters/flux/back.svg",
  34300. extra: 1040/992,
  34301. bottom: 0/1040
  34302. }
  34303. },
  34304. frontDressed: {
  34305. height: math.unit(7, "feet"),
  34306. weight: math.unit(231, "lb"),
  34307. name: "Front (Dressed)",
  34308. image: {
  34309. source: "./media/characters/flux/front-dressed.svg",
  34310. extra: 919/871,
  34311. bottom: 0/919
  34312. }
  34313. },
  34314. feralSide: {
  34315. height: math.unit(5, "feet"),
  34316. weight: math.unit(150, "lb"),
  34317. name: "Feral (Side)",
  34318. image: {
  34319. source: "./media/characters/flux/feral-side.svg",
  34320. extra: 598/528,
  34321. bottom: 28/626
  34322. }
  34323. },
  34324. head: {
  34325. height: math.unit(1.585, "feet"),
  34326. name: "Head",
  34327. image: {
  34328. source: "./media/characters/flux/head.svg"
  34329. }
  34330. },
  34331. headSide: {
  34332. height: math.unit(1.74, "feet"),
  34333. name: "Head (Side)",
  34334. image: {
  34335. source: "./media/characters/flux/head-side.svg"
  34336. }
  34337. },
  34338. headSideFire: {
  34339. height: math.unit(1.76, "feet"),
  34340. name: "Head (Side, Fire)",
  34341. image: {
  34342. source: "./media/characters/flux/head-side-fire.svg"
  34343. }
  34344. },
  34345. },
  34346. [
  34347. {
  34348. name: "Normal",
  34349. height: math.unit(7, "feet"),
  34350. default: true
  34351. },
  34352. ]
  34353. ))
  34354. characterMakers.push(() => makeCharacter(
  34355. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34356. {
  34357. front: {
  34358. height: math.unit(9, "feet"),
  34359. weight: math.unit(1012, "lb"),
  34360. name: "Front",
  34361. image: {
  34362. source: "./media/characters/ulfra-lupae/front.svg",
  34363. extra: 1083/1011,
  34364. bottom: 67/1150
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Micro",
  34371. height: math.unit(6, "inches")
  34372. },
  34373. {
  34374. name: "Socializing",
  34375. height: math.unit(6 + 5/12, "feet")
  34376. },
  34377. {
  34378. name: "Normal",
  34379. height: math.unit(9, "feet"),
  34380. default: true
  34381. },
  34382. {
  34383. name: "Macro",
  34384. height: math.unit(150, "feet")
  34385. },
  34386. ]
  34387. ))
  34388. characterMakers.push(() => makeCharacter(
  34389. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34390. {
  34391. front: {
  34392. height: math.unit(5 + 2/12, "feet"),
  34393. weight: math.unit(120, "lb"),
  34394. name: "Front",
  34395. image: {
  34396. source: "./media/characters/timber/front.svg",
  34397. extra: 2814/2705,
  34398. bottom: 181/2995
  34399. }
  34400. },
  34401. },
  34402. [
  34403. {
  34404. name: "Normal",
  34405. height: math.unit(5 + 2/12, "feet"),
  34406. default: true
  34407. },
  34408. ]
  34409. ))
  34410. characterMakers.push(() => makeCharacter(
  34411. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34412. {
  34413. front: {
  34414. height: math.unit(9, "feet"),
  34415. name: "Front",
  34416. image: {
  34417. source: "./media/characters/nicki/front.svg",
  34418. extra: 1240/990,
  34419. bottom: 45/1285
  34420. },
  34421. form: "anthro",
  34422. default: true
  34423. },
  34424. side: {
  34425. height: math.unit(9, "feet"),
  34426. name: "Side",
  34427. image: {
  34428. source: "./media/characters/nicki/side.svg",
  34429. extra: 1047/973,
  34430. bottom: 61/1108
  34431. },
  34432. form: "anthro"
  34433. },
  34434. back: {
  34435. height: math.unit(9, "feet"),
  34436. name: "Back",
  34437. image: {
  34438. source: "./media/characters/nicki/back.svg",
  34439. extra: 1006/965,
  34440. bottom: 39/1045
  34441. },
  34442. form: "anthro"
  34443. },
  34444. taur: {
  34445. height: math.unit(15, "feet"),
  34446. name: "Taur",
  34447. image: {
  34448. source: "./media/characters/nicki/taur.svg",
  34449. extra: 1592/1347,
  34450. bottom: 0/1592
  34451. },
  34452. form: "taur",
  34453. default: true
  34454. },
  34455. },
  34456. [
  34457. {
  34458. name: "Normal",
  34459. height: math.unit(9, "feet"),
  34460. form: "anthro",
  34461. default: true
  34462. },
  34463. {
  34464. name: "Normal",
  34465. height: math.unit(15, "feet"),
  34466. form: "taur",
  34467. default: true
  34468. }
  34469. ],
  34470. {
  34471. "anthro": {
  34472. name: "Anthro",
  34473. default: true
  34474. },
  34475. "taur": {
  34476. name: "Taur"
  34477. }
  34478. }
  34479. ))
  34480. characterMakers.push(() => makeCharacter(
  34481. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34482. {
  34483. front: {
  34484. height: math.unit(7 + 10/12, "feet"),
  34485. weight: math.unit(3.5, "tons"),
  34486. name: "Front",
  34487. image: {
  34488. source: "./media/characters/lee/front.svg",
  34489. extra: 1773/1615,
  34490. bottom: 86/1859
  34491. }
  34492. },
  34493. hand: {
  34494. height: math.unit(1.78, "feet"),
  34495. name: "Hand",
  34496. image: {
  34497. source: "./media/characters/lee/hand.svg"
  34498. }
  34499. },
  34500. maw: {
  34501. height: math.unit(1.18, "feet"),
  34502. name: "Maw",
  34503. image: {
  34504. source: "./media/characters/lee/maw.svg"
  34505. }
  34506. },
  34507. },
  34508. [
  34509. {
  34510. name: "Normal",
  34511. height: math.unit(7 + 10/12, "feet"),
  34512. default: true
  34513. },
  34514. ]
  34515. ))
  34516. characterMakers.push(() => makeCharacter(
  34517. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34518. {
  34519. front: {
  34520. height: math.unit(9, "feet"),
  34521. name: "Front",
  34522. image: {
  34523. source: "./media/characters/guti/front.svg",
  34524. extra: 4551/4355,
  34525. bottom: 123/4674
  34526. }
  34527. },
  34528. tongue: {
  34529. height: math.unit(1, "feet"),
  34530. name: "Tongue",
  34531. image: {
  34532. source: "./media/characters/guti/tongue.svg"
  34533. }
  34534. },
  34535. paw: {
  34536. height: math.unit(1.18, "feet"),
  34537. name: "Paw",
  34538. image: {
  34539. source: "./media/characters/guti/paw.svg"
  34540. }
  34541. },
  34542. },
  34543. [
  34544. {
  34545. name: "Normal",
  34546. height: math.unit(9, "feet"),
  34547. default: true
  34548. },
  34549. ]
  34550. ))
  34551. characterMakers.push(() => makeCharacter(
  34552. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34553. {
  34554. side: {
  34555. height: math.unit(5, "meters"),
  34556. name: "Side",
  34557. image: {
  34558. source: "./media/characters/vesper/side.svg",
  34559. extra: 1605/1518,
  34560. bottom: 0/1605
  34561. }
  34562. },
  34563. },
  34564. [
  34565. {
  34566. name: "Small",
  34567. height: math.unit(5, "meters")
  34568. },
  34569. {
  34570. name: "Sage",
  34571. height: math.unit(100, "meters"),
  34572. default: true
  34573. },
  34574. {
  34575. name: "Fun Size",
  34576. height: math.unit(600, "meters")
  34577. },
  34578. {
  34579. name: "Goddess",
  34580. height: math.unit(20000, "km")
  34581. },
  34582. {
  34583. name: "Maximum",
  34584. height: math.unit(5, "galaxies")
  34585. },
  34586. ]
  34587. ))
  34588. characterMakers.push(() => makeCharacter(
  34589. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34590. {
  34591. front: {
  34592. height: math.unit(6 + 3/12, "feet"),
  34593. weight: math.unit(190, "lb"),
  34594. name: "Front",
  34595. image: {
  34596. source: "./media/characters/gawain/front.svg",
  34597. extra: 2222/2139,
  34598. bottom: 90/2312
  34599. }
  34600. },
  34601. back: {
  34602. height: math.unit(6 + 3/12, "feet"),
  34603. weight: math.unit(190, "lb"),
  34604. name: "Back",
  34605. image: {
  34606. source: "./media/characters/gawain/back.svg",
  34607. extra: 2199/2111,
  34608. bottom: 73/2272
  34609. }
  34610. },
  34611. },
  34612. [
  34613. {
  34614. name: "Normal",
  34615. height: math.unit(6 + 3/12, "feet"),
  34616. default: true
  34617. },
  34618. ]
  34619. ))
  34620. characterMakers.push(() => makeCharacter(
  34621. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34622. {
  34623. side: {
  34624. height: math.unit(3.5, "meters"),
  34625. weight: math.unit(16000, "lb"),
  34626. name: "Side",
  34627. image: {
  34628. source: "./media/characters/dascalti/side.svg",
  34629. extra: 392/273,
  34630. bottom: 47/439
  34631. }
  34632. },
  34633. breath: {
  34634. height: math.unit(7.4, "feet"),
  34635. name: "Breath",
  34636. image: {
  34637. source: "./media/characters/dascalti/breath.svg"
  34638. }
  34639. },
  34640. fed: {
  34641. height: math.unit(3.6, "meters"),
  34642. weight: math.unit(16000, "lb"),
  34643. name: "Fed",
  34644. image: {
  34645. source: "./media/characters/dascalti/fed.svg",
  34646. extra: 1419/820,
  34647. bottom: 95/1514
  34648. }
  34649. },
  34650. },
  34651. [
  34652. {
  34653. name: "Normal",
  34654. height: math.unit(3.5, "meters"),
  34655. default: true
  34656. },
  34657. ]
  34658. ))
  34659. characterMakers.push(() => makeCharacter(
  34660. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34661. {
  34662. front: {
  34663. height: math.unit(3 + 5/12, "feet"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/mauve/front.svg",
  34667. extra: 1126/1033,
  34668. bottom: 65/1191
  34669. }
  34670. },
  34671. side: {
  34672. height: math.unit(3 + 5/12, "feet"),
  34673. name: "Side",
  34674. image: {
  34675. source: "./media/characters/mauve/side.svg",
  34676. extra: 1089/1001,
  34677. bottom: 29/1118
  34678. }
  34679. },
  34680. back: {
  34681. height: math.unit(3 + 5/12, "feet"),
  34682. name: "Back",
  34683. image: {
  34684. source: "./media/characters/mauve/back.svg",
  34685. extra: 1173/1053,
  34686. bottom: 109/1282
  34687. }
  34688. },
  34689. },
  34690. [
  34691. {
  34692. name: "Normal",
  34693. height: math.unit(3 + 5/12, "feet"),
  34694. default: true
  34695. },
  34696. ]
  34697. ))
  34698. characterMakers.push(() => makeCharacter(
  34699. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34700. {
  34701. front: {
  34702. height: math.unit(6 + 3/12, "feet"),
  34703. weight: math.unit(450, "lb"),
  34704. name: "Front",
  34705. image: {
  34706. source: "./media/characters/carlos/front.svg",
  34707. extra: 444/423,
  34708. bottom: 27/471
  34709. }
  34710. },
  34711. },
  34712. [
  34713. {
  34714. name: "Normal",
  34715. height: math.unit(6 + 3/12, "feet"),
  34716. default: true
  34717. },
  34718. ]
  34719. ))
  34720. characterMakers.push(() => makeCharacter(
  34721. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34722. {
  34723. back: {
  34724. height: math.unit(5 + 10/12, "feet"),
  34725. weight: math.unit(200, "lb"),
  34726. name: "Back",
  34727. image: {
  34728. source: "./media/characters/jax/back.svg",
  34729. extra: 764/739,
  34730. bottom: 25/789
  34731. }
  34732. },
  34733. },
  34734. [
  34735. {
  34736. name: "Normal",
  34737. height: math.unit(5 + 10/12, "feet"),
  34738. default: true
  34739. },
  34740. ]
  34741. ))
  34742. characterMakers.push(() => makeCharacter(
  34743. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34744. {
  34745. front: {
  34746. height: math.unit(8, "feet"),
  34747. weight: math.unit(250, "lb"),
  34748. name: "Front",
  34749. image: {
  34750. source: "./media/characters/eikthynir/front.svg",
  34751. extra: 1332/1166,
  34752. bottom: 82/1414
  34753. }
  34754. },
  34755. back: {
  34756. height: math.unit(8, "feet"),
  34757. weight: math.unit(250, "lb"),
  34758. name: "Back",
  34759. image: {
  34760. source: "./media/characters/eikthynir/back.svg",
  34761. extra: 1342/1190,
  34762. bottom: 19/1361
  34763. }
  34764. },
  34765. dick: {
  34766. height: math.unit(2.35, "feet"),
  34767. name: "Dick",
  34768. image: {
  34769. source: "./media/characters/eikthynir/dick.svg"
  34770. }
  34771. },
  34772. },
  34773. [
  34774. {
  34775. name: "Normal",
  34776. height: math.unit(8, "feet"),
  34777. default: true
  34778. },
  34779. ]
  34780. ))
  34781. characterMakers.push(() => makeCharacter(
  34782. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34783. {
  34784. front: {
  34785. height: math.unit(99, "meters"),
  34786. weight: math.unit(13000, "tons"),
  34787. name: "Front",
  34788. image: {
  34789. source: "./media/characters/zlmos/front.svg",
  34790. extra: 2202/1992,
  34791. bottom: 315/2517
  34792. }
  34793. },
  34794. },
  34795. [
  34796. {
  34797. name: "Macro",
  34798. height: math.unit(99, "meters"),
  34799. default: true
  34800. },
  34801. ]
  34802. ))
  34803. characterMakers.push(() => makeCharacter(
  34804. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34805. {
  34806. front: {
  34807. height: math.unit(6 + 5/12, "feet"),
  34808. name: "Front",
  34809. image: {
  34810. source: "./media/characters/purri/front.svg",
  34811. extra: 1698/1610,
  34812. bottom: 32/1730
  34813. }
  34814. },
  34815. frontAlt: {
  34816. height: math.unit(6 + 5/12, "feet"),
  34817. name: "Front (Alt)",
  34818. image: {
  34819. source: "./media/characters/purri/front-alt.svg",
  34820. extra: 450/420,
  34821. bottom: 26/476
  34822. }
  34823. },
  34824. boots: {
  34825. height: math.unit(5.5, "feet"),
  34826. name: "Boots",
  34827. image: {
  34828. source: "./media/characters/purri/boots.svg",
  34829. extra: 905/853,
  34830. bottom: 18/923
  34831. },
  34832. extraAttributes: {
  34833. "shoeSize": {
  34834. name: "Shoe Size",
  34835. power: 1,
  34836. type: "length",
  34837. base: math.unit(12, "ShoeSizeMensUS")
  34838. },
  34839. "platformHeight": {
  34840. name: "Platform Height",
  34841. power: 1,
  34842. type: "length",
  34843. base: math.unit(2, "inches")
  34844. },
  34845. }
  34846. },
  34847. lying: {
  34848. height: math.unit(2, "feet"),
  34849. name: "Lying",
  34850. image: {
  34851. source: "./media/characters/purri/lying.svg",
  34852. extra: 940/843,
  34853. bottom: 146/1086
  34854. }
  34855. },
  34856. devious: {
  34857. height: math.unit(1.77, "feet"),
  34858. name: "Devious",
  34859. image: {
  34860. source: "./media/characters/purri/devious.svg",
  34861. extra: 1440/1155,
  34862. bottom: 147/1587
  34863. }
  34864. },
  34865. bean: {
  34866. height: math.unit(1.94, "feet"),
  34867. name: "Bean",
  34868. image: {
  34869. source: "./media/characters/purri/bean.svg"
  34870. }
  34871. },
  34872. },
  34873. [
  34874. {
  34875. name: "Micro",
  34876. height: math.unit(1, "mm")
  34877. },
  34878. {
  34879. name: "Normal",
  34880. height: math.unit(6 + 5/12, "feet"),
  34881. default: true
  34882. },
  34883. {
  34884. name: "Macro :3c",
  34885. height: math.unit(2, "miles")
  34886. },
  34887. ]
  34888. ))
  34889. characterMakers.push(() => makeCharacter(
  34890. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34891. {
  34892. front: {
  34893. height: math.unit(6 + 2/12, "feet"),
  34894. weight: math.unit(250, "lb"),
  34895. name: "Front",
  34896. image: {
  34897. source: "./media/characters/moonlight/front.svg",
  34898. extra: 1044/908,
  34899. bottom: 56/1100
  34900. }
  34901. },
  34902. feral: {
  34903. height: math.unit(3 + 1/12, "feet"),
  34904. weight: math.unit(50, "kg"),
  34905. name: "Feral",
  34906. image: {
  34907. source: "./media/characters/moonlight/feral.svg",
  34908. extra: 3705/2791,
  34909. bottom: 145/3850
  34910. }
  34911. },
  34912. paw: {
  34913. height: math.unit(1, "feet"),
  34914. name: "Paw",
  34915. image: {
  34916. source: "./media/characters/moonlight/paw.svg"
  34917. }
  34918. },
  34919. paws: {
  34920. height: math.unit(0.98, "feet"),
  34921. name: "Paws",
  34922. image: {
  34923. source: "./media/characters/moonlight/paws.svg",
  34924. extra: 939/939,
  34925. bottom: 50/989
  34926. }
  34927. },
  34928. mouth: {
  34929. height: math.unit(0.48, "feet"),
  34930. name: "Mouth",
  34931. image: {
  34932. source: "./media/characters/moonlight/mouth.svg"
  34933. }
  34934. },
  34935. dick: {
  34936. height: math.unit(1.46, "feet"),
  34937. name: "Dick",
  34938. image: {
  34939. source: "./media/characters/moonlight/dick.svg"
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Normal",
  34946. height: math.unit(6 + 2/12, "feet"),
  34947. default: true
  34948. },
  34949. {
  34950. name: "Macro",
  34951. height: math.unit(300, "feet")
  34952. },
  34953. {
  34954. name: "Macro+",
  34955. height: math.unit(1, "mile")
  34956. },
  34957. {
  34958. name: "Mt. Moon",
  34959. height: math.unit(5, "miles")
  34960. },
  34961. {
  34962. name: "Megamacro",
  34963. height: math.unit(15, "miles")
  34964. },
  34965. ]
  34966. ))
  34967. characterMakers.push(() => makeCharacter(
  34968. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34969. {
  34970. back: {
  34971. height: math.unit(6, "feet"),
  34972. weight: math.unit(150, "lb"),
  34973. name: "Back",
  34974. image: {
  34975. source: "./media/characters/sylen/back.svg",
  34976. extra: 1335/1273,
  34977. bottom: 107/1442
  34978. }
  34979. },
  34980. },
  34981. [
  34982. {
  34983. name: "Normal",
  34984. height: math.unit(5 + 5/12, "feet")
  34985. },
  34986. {
  34987. name: "Megamacro",
  34988. height: math.unit(3, "miles"),
  34989. default: true
  34990. },
  34991. ]
  34992. ))
  34993. characterMakers.push(() => makeCharacter(
  34994. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34995. {
  34996. front: {
  34997. height: math.unit(6, "feet"),
  34998. weight: math.unit(190, "lb"),
  34999. name: "Front",
  35000. image: {
  35001. source: "./media/characters/huttser/front.svg",
  35002. extra: 1152/1058,
  35003. bottom: 23/1175
  35004. }
  35005. },
  35006. side: {
  35007. height: math.unit(6, "feet"),
  35008. weight: math.unit(190, "lb"),
  35009. name: "Side",
  35010. image: {
  35011. source: "./media/characters/huttser/side.svg",
  35012. extra: 1174/1065,
  35013. bottom: 18/1192
  35014. }
  35015. },
  35016. back: {
  35017. height: math.unit(6, "feet"),
  35018. weight: math.unit(190, "lb"),
  35019. name: "Back",
  35020. image: {
  35021. source: "./media/characters/huttser/back.svg",
  35022. extra: 1158/1056,
  35023. bottom: 12/1170
  35024. }
  35025. },
  35026. },
  35027. [
  35028. ]
  35029. ))
  35030. characterMakers.push(() => makeCharacter(
  35031. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  35032. {
  35033. side: {
  35034. height: math.unit(12 + 9/12, "feet"),
  35035. weight: math.unit(15000, "lb"),
  35036. name: "Side",
  35037. image: {
  35038. source: "./media/characters/faan/side.svg",
  35039. extra: 2747/2697,
  35040. bottom: 0/2747
  35041. }
  35042. },
  35043. front: {
  35044. height: math.unit(12 + 9/12, "feet"),
  35045. weight: math.unit(15000, "lb"),
  35046. name: "Front",
  35047. image: {
  35048. source: "./media/characters/faan/front.svg",
  35049. extra: 607/571,
  35050. bottom: 24/631
  35051. }
  35052. },
  35053. head: {
  35054. height: math.unit(2.85, "feet"),
  35055. name: "Head",
  35056. image: {
  35057. source: "./media/characters/faan/head.svg"
  35058. }
  35059. },
  35060. headAlt: {
  35061. height: math.unit(3.13, "feet"),
  35062. name: "Head (Alt)",
  35063. image: {
  35064. source: "./media/characters/faan/head-alt.svg"
  35065. }
  35066. },
  35067. },
  35068. [
  35069. {
  35070. name: "Normal",
  35071. height: math.unit(12 + 9/12, "feet"),
  35072. default: true
  35073. },
  35074. ]
  35075. ))
  35076. characterMakers.push(() => makeCharacter(
  35077. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  35078. {
  35079. front: {
  35080. height: math.unit(6, "feet"),
  35081. weight: math.unit(300, "lb"),
  35082. name: "Front",
  35083. image: {
  35084. source: "./media/characters/tanio/front.svg",
  35085. extra: 711/673,
  35086. bottom: 25/736
  35087. }
  35088. },
  35089. },
  35090. [
  35091. {
  35092. name: "Normal",
  35093. height: math.unit(6, "feet"),
  35094. default: true
  35095. },
  35096. ]
  35097. ))
  35098. characterMakers.push(() => makeCharacter(
  35099. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  35100. {
  35101. front: {
  35102. height: math.unit(3, "inches"),
  35103. name: "Front",
  35104. image: {
  35105. source: "./media/characters/noboru/front.svg",
  35106. extra: 1039/932,
  35107. bottom: 18/1057
  35108. }
  35109. },
  35110. },
  35111. [
  35112. {
  35113. name: "Micro",
  35114. height: math.unit(3, "inches"),
  35115. default: true
  35116. },
  35117. ]
  35118. ))
  35119. characterMakers.push(() => makeCharacter(
  35120. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  35121. {
  35122. front: {
  35123. height: math.unit(1.85, "meters"),
  35124. weight: math.unit(80, "kg"),
  35125. name: "Front",
  35126. image: {
  35127. source: "./media/characters/daniel-barrett/front.svg",
  35128. extra: 355/337,
  35129. bottom: 9/364
  35130. }
  35131. },
  35132. },
  35133. [
  35134. {
  35135. name: "Pico",
  35136. height: math.unit(0.0433, "mm")
  35137. },
  35138. {
  35139. name: "Nano",
  35140. height: math.unit(1.5, "mm")
  35141. },
  35142. {
  35143. name: "Micro",
  35144. height: math.unit(5.3, "cm"),
  35145. default: true
  35146. },
  35147. {
  35148. name: "Normal",
  35149. height: math.unit(1.85, "meters")
  35150. },
  35151. {
  35152. name: "Macro",
  35153. height: math.unit(64.7, "meters")
  35154. },
  35155. {
  35156. name: "Megamacro",
  35157. height: math.unit(2.26, "km")
  35158. },
  35159. {
  35160. name: "Gigamacro",
  35161. height: math.unit(79, "km")
  35162. },
  35163. {
  35164. name: "Teramacro",
  35165. height: math.unit(2765, "km")
  35166. },
  35167. {
  35168. name: "Petamacro",
  35169. height: math.unit(96678, "km")
  35170. },
  35171. ]
  35172. ))
  35173. characterMakers.push(() => makeCharacter(
  35174. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35175. {
  35176. front: {
  35177. height: math.unit(30, "meters"),
  35178. weight: math.unit(400, "tons"),
  35179. name: "Front",
  35180. image: {
  35181. source: "./media/characters/zeel/front.svg",
  35182. extra: 2599/2599,
  35183. bottom: 226/2825
  35184. }
  35185. },
  35186. },
  35187. [
  35188. {
  35189. name: "Macro",
  35190. height: math.unit(30, "meters"),
  35191. default: true
  35192. },
  35193. ]
  35194. ))
  35195. characterMakers.push(() => makeCharacter(
  35196. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35197. {
  35198. front: {
  35199. height: math.unit(6 + 7/12, "feet"),
  35200. weight: math.unit(210, "lb"),
  35201. name: "Front",
  35202. image: {
  35203. source: "./media/characters/tarn/front.svg",
  35204. extra: 3517/3220,
  35205. bottom: 91/3608
  35206. }
  35207. },
  35208. back: {
  35209. height: math.unit(6 + 7/12, "feet"),
  35210. weight: math.unit(210, "lb"),
  35211. name: "Back",
  35212. image: {
  35213. source: "./media/characters/tarn/back.svg",
  35214. extra: 3566/3241,
  35215. bottom: 34/3600
  35216. }
  35217. },
  35218. dick: {
  35219. height: math.unit(1.65, "feet"),
  35220. name: "Dick",
  35221. image: {
  35222. source: "./media/characters/tarn/dick.svg"
  35223. }
  35224. },
  35225. paw: {
  35226. height: math.unit(1.80, "feet"),
  35227. name: "Paw",
  35228. image: {
  35229. source: "./media/characters/tarn/paw.svg"
  35230. }
  35231. },
  35232. tongue: {
  35233. height: math.unit(0.97, "feet"),
  35234. name: "Tongue",
  35235. image: {
  35236. source: "./media/characters/tarn/tongue.svg"
  35237. }
  35238. },
  35239. },
  35240. [
  35241. {
  35242. name: "Micro",
  35243. height: math.unit(4, "inches")
  35244. },
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(6 + 7/12, "feet"),
  35248. default: true
  35249. },
  35250. {
  35251. name: "Macro",
  35252. height: math.unit(300, "feet")
  35253. },
  35254. ]
  35255. ))
  35256. characterMakers.push(() => makeCharacter(
  35257. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35258. {
  35259. front: {
  35260. height: math.unit(5 + 7/12, "feet"),
  35261. weight: math.unit(80, "kg"),
  35262. name: "Front",
  35263. image: {
  35264. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35265. extra: 3023/2865,
  35266. bottom: 33/3056
  35267. }
  35268. },
  35269. back: {
  35270. height: math.unit(5 + 7/12, "feet"),
  35271. weight: math.unit(80, "kg"),
  35272. name: "Back",
  35273. image: {
  35274. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35275. extra: 3020/2886,
  35276. bottom: 30/3050
  35277. }
  35278. },
  35279. dick: {
  35280. height: math.unit(0.98, "feet"),
  35281. name: "Dick",
  35282. image: {
  35283. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35284. }
  35285. },
  35286. anatomy: {
  35287. height: math.unit(2.86, "feet"),
  35288. name: "Anatomy",
  35289. image: {
  35290. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35291. }
  35292. },
  35293. },
  35294. [
  35295. {
  35296. name: "Really Small",
  35297. height: math.unit(2, "inches")
  35298. },
  35299. {
  35300. name: "Micro",
  35301. height: math.unit(5.583, "inches")
  35302. },
  35303. {
  35304. name: "Normal",
  35305. height: math.unit(5 + 7/12, "feet"),
  35306. default: true
  35307. },
  35308. {
  35309. name: "Macro",
  35310. height: math.unit(67, "feet")
  35311. },
  35312. {
  35313. name: "Megamacro",
  35314. height: math.unit(134, "feet")
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35320. {
  35321. front: {
  35322. height: math.unit(9, "feet"),
  35323. weight: math.unit(120, "lb"),
  35324. name: "Front",
  35325. image: {
  35326. source: "./media/characters/sally/front.svg",
  35327. extra: 1506/1349,
  35328. bottom: 66/1572
  35329. }
  35330. },
  35331. },
  35332. [
  35333. {
  35334. name: "Normal",
  35335. height: math.unit(9, "feet"),
  35336. default: true
  35337. },
  35338. ]
  35339. ))
  35340. characterMakers.push(() => makeCharacter(
  35341. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35342. {
  35343. front: {
  35344. height: math.unit(8, "feet"),
  35345. weight: math.unit(900, "lb"),
  35346. name: "Front",
  35347. image: {
  35348. source: "./media/characters/owen/front.svg",
  35349. extra: 1761/1657,
  35350. bottom: 74/1835
  35351. }
  35352. },
  35353. side: {
  35354. height: math.unit(8, "feet"),
  35355. weight: math.unit(900, "lb"),
  35356. name: "Side",
  35357. image: {
  35358. source: "./media/characters/owen/side.svg",
  35359. extra: 1797/1734,
  35360. bottom: 30/1827
  35361. }
  35362. },
  35363. back: {
  35364. height: math.unit(8, "feet"),
  35365. weight: math.unit(900, "lb"),
  35366. name: "Back",
  35367. image: {
  35368. source: "./media/characters/owen/back.svg",
  35369. extra: 1796/1706,
  35370. bottom: 59/1855
  35371. }
  35372. },
  35373. maw: {
  35374. height: math.unit(1.76, "feet"),
  35375. name: "Maw",
  35376. image: {
  35377. source: "./media/characters/owen/maw.svg"
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Normal",
  35384. height: math.unit(8, "feet"),
  35385. default: true
  35386. },
  35387. ]
  35388. ))
  35389. characterMakers.push(() => makeCharacter(
  35390. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35391. {
  35392. front: {
  35393. height: math.unit(4, "feet"),
  35394. weight: math.unit(400, "lb"),
  35395. name: "Front",
  35396. image: {
  35397. source: "./media/characters/ryth/front.svg",
  35398. extra: 1920/1748,
  35399. bottom: 42/1962
  35400. }
  35401. },
  35402. back: {
  35403. height: math.unit(4, "feet"),
  35404. weight: math.unit(400, "lb"),
  35405. name: "Back",
  35406. image: {
  35407. source: "./media/characters/ryth/back.svg",
  35408. extra: 1897/1690,
  35409. bottom: 89/1986
  35410. }
  35411. },
  35412. mouth: {
  35413. height: math.unit(1.39, "feet"),
  35414. name: "Mouth",
  35415. image: {
  35416. source: "./media/characters/ryth/mouth.svg"
  35417. }
  35418. },
  35419. tailmaw: {
  35420. height: math.unit(1.23, "feet"),
  35421. name: "Tailmaw",
  35422. image: {
  35423. source: "./media/characters/ryth/tailmaw.svg"
  35424. }
  35425. },
  35426. goia: {
  35427. height: math.unit(4, "meters"),
  35428. weight: math.unit(10800, "lb"),
  35429. name: "Goia",
  35430. image: {
  35431. source: "./media/characters/ryth/goia.svg",
  35432. extra: 745/640,
  35433. bottom: 107/852
  35434. }
  35435. },
  35436. goiaFront: {
  35437. height: math.unit(4, "meters"),
  35438. weight: math.unit(10800, "lb"),
  35439. name: "Goia (Front)",
  35440. image: {
  35441. source: "./media/characters/ryth/goia-front.svg",
  35442. extra: 750/586,
  35443. bottom: 114/864
  35444. }
  35445. },
  35446. goiaMaw: {
  35447. height: math.unit(5.55, "feet"),
  35448. name: "Goia Maw",
  35449. image: {
  35450. source: "./media/characters/ryth/goia-maw.svg"
  35451. }
  35452. },
  35453. goiaForepaw: {
  35454. height: math.unit(3.5, "feet"),
  35455. name: "Goia Forepaw",
  35456. image: {
  35457. source: "./media/characters/ryth/goia-forepaw.svg"
  35458. }
  35459. },
  35460. goiaHindpaw: {
  35461. height: math.unit(5.55, "feet"),
  35462. name: "Goia Hindpaw",
  35463. image: {
  35464. source: "./media/characters/ryth/goia-hindpaw.svg"
  35465. }
  35466. },
  35467. },
  35468. [
  35469. {
  35470. name: "Normal",
  35471. height: math.unit(4, "feet"),
  35472. default: true
  35473. },
  35474. ]
  35475. ))
  35476. characterMakers.push(() => makeCharacter(
  35477. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35478. {
  35479. front: {
  35480. height: math.unit(7, "feet"),
  35481. weight: math.unit(180, "lb"),
  35482. name: "Front",
  35483. image: {
  35484. source: "./media/characters/necrolance/front.svg",
  35485. extra: 1062/947,
  35486. bottom: 41/1103
  35487. }
  35488. },
  35489. back: {
  35490. height: math.unit(7, "feet"),
  35491. weight: math.unit(180, "lb"),
  35492. name: "Back",
  35493. image: {
  35494. source: "./media/characters/necrolance/back.svg",
  35495. extra: 1045/984,
  35496. bottom: 14/1059
  35497. }
  35498. },
  35499. wing: {
  35500. height: math.unit(2.67, "feet"),
  35501. name: "Wing",
  35502. image: {
  35503. source: "./media/characters/necrolance/wing.svg"
  35504. }
  35505. },
  35506. },
  35507. [
  35508. {
  35509. name: "Normal",
  35510. height: math.unit(7, "feet"),
  35511. default: true
  35512. },
  35513. ]
  35514. ))
  35515. characterMakers.push(() => makeCharacter(
  35516. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35517. {
  35518. front: {
  35519. height: math.unit(76, "meters"),
  35520. weight: math.unit(30000, "tons"),
  35521. name: "Front",
  35522. image: {
  35523. source: "./media/characters/tyler/front.svg",
  35524. extra: 1640/1640,
  35525. bottom: 114/1754
  35526. }
  35527. },
  35528. },
  35529. [
  35530. {
  35531. name: "Macro",
  35532. height: math.unit(76, "meters"),
  35533. default: true
  35534. },
  35535. ]
  35536. ))
  35537. characterMakers.push(() => makeCharacter(
  35538. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35539. {
  35540. front: {
  35541. height: math.unit(4 + 11/12, "feet"),
  35542. weight: math.unit(132, "lb"),
  35543. name: "Front",
  35544. image: {
  35545. source: "./media/characters/icey/front.svg",
  35546. extra: 2750/2550,
  35547. bottom: 33/2783
  35548. }
  35549. },
  35550. back: {
  35551. height: math.unit(4 + 11/12, "feet"),
  35552. weight: math.unit(132, "lb"),
  35553. name: "Back",
  35554. image: {
  35555. source: "./media/characters/icey/back.svg",
  35556. extra: 2624/2481,
  35557. bottom: 35/2659
  35558. }
  35559. },
  35560. },
  35561. [
  35562. {
  35563. name: "Normal",
  35564. height: math.unit(4 + 11/12, "feet"),
  35565. default: true
  35566. },
  35567. ]
  35568. ))
  35569. characterMakers.push(() => makeCharacter(
  35570. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35571. {
  35572. front: {
  35573. height: math.unit(100, "feet"),
  35574. weight: math.unit(0, "lb"),
  35575. name: "Front",
  35576. image: {
  35577. source: "./media/characters/smile/front.svg",
  35578. extra: 2983/2912,
  35579. bottom: 162/3145
  35580. }
  35581. },
  35582. back: {
  35583. height: math.unit(100, "feet"),
  35584. weight: math.unit(0, "lb"),
  35585. name: "Back",
  35586. image: {
  35587. source: "./media/characters/smile/back.svg",
  35588. extra: 3143/3031,
  35589. bottom: 91/3234
  35590. }
  35591. },
  35592. head: {
  35593. height: math.unit(26.3, "feet"),
  35594. weight: math.unit(0, "lb"),
  35595. name: "Head",
  35596. image: {
  35597. source: "./media/characters/smile/head.svg"
  35598. }
  35599. },
  35600. collar: {
  35601. height: math.unit(5.3, "feet"),
  35602. weight: math.unit(0, "lb"),
  35603. name: "Collar",
  35604. image: {
  35605. source: "./media/characters/smile/collar.svg"
  35606. }
  35607. },
  35608. },
  35609. [
  35610. {
  35611. name: "Macro",
  35612. height: math.unit(100, "feet"),
  35613. default: true
  35614. },
  35615. ]
  35616. ))
  35617. characterMakers.push(() => makeCharacter(
  35618. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35619. {
  35620. dragon: {
  35621. height: math.unit(26, "feet"),
  35622. weight: math.unit(36, "tons"),
  35623. name: "Dragon",
  35624. image: {
  35625. source: "./media/characters/arimphae/dragon.svg",
  35626. extra: 1574/983,
  35627. bottom: 357/1931
  35628. }
  35629. },
  35630. drake: {
  35631. height: math.unit(9, "feet"),
  35632. weight: math.unit(1.5, "tons"),
  35633. name: "Drake",
  35634. image: {
  35635. source: "./media/characters/arimphae/drake.svg",
  35636. extra: 1120/925,
  35637. bottom: 435/1555
  35638. }
  35639. },
  35640. },
  35641. [
  35642. {
  35643. name: "Small",
  35644. height: math.unit(26*5/9, "feet")
  35645. },
  35646. {
  35647. name: "Normal",
  35648. height: math.unit(26, "feet"),
  35649. default: true
  35650. },
  35651. ]
  35652. ))
  35653. characterMakers.push(() => makeCharacter(
  35654. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35655. {
  35656. front: {
  35657. height: math.unit(8 + 9/12, "feet"),
  35658. name: "Front",
  35659. image: {
  35660. source: "./media/characters/xander/front.svg",
  35661. extra: 1237/974,
  35662. bottom: 94/1331
  35663. }
  35664. },
  35665. },
  35666. [
  35667. {
  35668. name: "Normal",
  35669. height: math.unit(8 + 9/12, "feet"),
  35670. default: true
  35671. },
  35672. {
  35673. name: "Gaze Grabber",
  35674. height: math.unit(13 + 8/12, "feet")
  35675. },
  35676. {
  35677. name: "Jaw Dropper",
  35678. height: math.unit(27, "feet")
  35679. },
  35680. {
  35681. name: "Show Stopper",
  35682. height: math.unit(136, "feet")
  35683. },
  35684. {
  35685. name: "Superstar",
  35686. height: math.unit(1.9e6, "miles")
  35687. },
  35688. ]
  35689. ))
  35690. characterMakers.push(() => makeCharacter(
  35691. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35692. {
  35693. side: {
  35694. height: math.unit(2100, "feet"),
  35695. name: "Side",
  35696. image: {
  35697. source: "./media/characters/osiris/side.svg",
  35698. extra: 1105/939,
  35699. bottom: 167/1272
  35700. }
  35701. },
  35702. },
  35703. [
  35704. {
  35705. name: "Macro",
  35706. height: math.unit(2100, "feet"),
  35707. default: true
  35708. },
  35709. ]
  35710. ))
  35711. characterMakers.push(() => makeCharacter(
  35712. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35713. {
  35714. front: {
  35715. height: math.unit(6 + 8/12, "feet"),
  35716. weight: math.unit(225, "lb"),
  35717. name: "Front",
  35718. image: {
  35719. source: "./media/characters/rhys-londe/front.svg",
  35720. extra: 2258/2141,
  35721. bottom: 188/2446
  35722. }
  35723. },
  35724. back: {
  35725. height: math.unit(6 + 8/12, "feet"),
  35726. weight: math.unit(225, "lb"),
  35727. name: "Back",
  35728. image: {
  35729. source: "./media/characters/rhys-londe/back.svg",
  35730. extra: 2237/2137,
  35731. bottom: 63/2300
  35732. }
  35733. },
  35734. frontNsfw: {
  35735. height: math.unit(6 + 8/12, "feet"),
  35736. weight: math.unit(225, "lb"),
  35737. name: "Front (NSFW)",
  35738. image: {
  35739. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35740. extra: 2258/2141,
  35741. bottom: 188/2446
  35742. }
  35743. },
  35744. backNsfw: {
  35745. height: math.unit(6 + 8/12, "feet"),
  35746. weight: math.unit(225, "lb"),
  35747. name: "Back (NSFW)",
  35748. image: {
  35749. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35750. extra: 2237/2137,
  35751. bottom: 63/2300
  35752. }
  35753. },
  35754. dick: {
  35755. height: math.unit(30, "inches"),
  35756. name: "Dick",
  35757. image: {
  35758. source: "./media/characters/rhys-londe/dick.svg"
  35759. }
  35760. },
  35761. maw: {
  35762. height: math.unit(1.6, "feet"),
  35763. name: "Maw",
  35764. image: {
  35765. source: "./media/characters/rhys-londe/maw.svg"
  35766. }
  35767. },
  35768. },
  35769. [
  35770. {
  35771. name: "Normal",
  35772. height: math.unit(6 + 8/12, "feet"),
  35773. default: true
  35774. },
  35775. ]
  35776. ))
  35777. characterMakers.push(() => makeCharacter(
  35778. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35779. {
  35780. front: {
  35781. height: math.unit(3 + 10/12, "feet"),
  35782. weight: math.unit(90, "lb"),
  35783. name: "Front",
  35784. image: {
  35785. source: "./media/characters/taivas-ensim/front.svg",
  35786. extra: 1327/1216,
  35787. bottom: 96/1423
  35788. }
  35789. },
  35790. back: {
  35791. height: math.unit(3 + 10/12, "feet"),
  35792. weight: math.unit(90, "lb"),
  35793. name: "Back",
  35794. image: {
  35795. source: "./media/characters/taivas-ensim/back.svg",
  35796. extra: 1355/1247,
  35797. bottom: 11/1366
  35798. }
  35799. },
  35800. frontNsfw: {
  35801. height: math.unit(3 + 10/12, "feet"),
  35802. weight: math.unit(90, "lb"),
  35803. name: "Front (NSFW)",
  35804. image: {
  35805. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35806. extra: 1327/1216,
  35807. bottom: 96/1423
  35808. }
  35809. },
  35810. backNsfw: {
  35811. height: math.unit(3 + 10/12, "feet"),
  35812. weight: math.unit(90, "lb"),
  35813. name: "Back (NSFW)",
  35814. image: {
  35815. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35816. extra: 1355/1247,
  35817. bottom: 11/1366
  35818. }
  35819. },
  35820. },
  35821. [
  35822. {
  35823. name: "Normal",
  35824. height: math.unit(3 + 10/12, "feet"),
  35825. default: true
  35826. },
  35827. ]
  35828. ))
  35829. characterMakers.push(() => makeCharacter(
  35830. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35831. {
  35832. front: {
  35833. height: math.unit(9 + 6/12, "feet"),
  35834. weight: math.unit(940, "lb"),
  35835. name: "Front",
  35836. image: {
  35837. source: "./media/characters/byliss/front.svg",
  35838. extra: 1327/1290,
  35839. bottom: 82/1409
  35840. }
  35841. },
  35842. back: {
  35843. height: math.unit(9 + 6/12, "feet"),
  35844. weight: math.unit(940, "lb"),
  35845. name: "Back",
  35846. image: {
  35847. source: "./media/characters/byliss/back.svg",
  35848. extra: 1376/1349,
  35849. bottom: 9/1385
  35850. }
  35851. },
  35852. frontNsfw: {
  35853. height: math.unit(9 + 6/12, "feet"),
  35854. weight: math.unit(940, "lb"),
  35855. name: "Front (NSFW)",
  35856. image: {
  35857. source: "./media/characters/byliss/front-nsfw.svg",
  35858. extra: 1327/1290,
  35859. bottom: 82/1409
  35860. }
  35861. },
  35862. backNsfw: {
  35863. height: math.unit(9 + 6/12, "feet"),
  35864. weight: math.unit(940, "lb"),
  35865. name: "Back (NSFW)",
  35866. image: {
  35867. source: "./media/characters/byliss/back-nsfw.svg",
  35868. extra: 1376/1349,
  35869. bottom: 9/1385
  35870. }
  35871. },
  35872. },
  35873. [
  35874. {
  35875. name: "Normal",
  35876. height: math.unit(9 + 6/12, "feet"),
  35877. default: true
  35878. },
  35879. ]
  35880. ))
  35881. characterMakers.push(() => makeCharacter(
  35882. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35883. {
  35884. front: {
  35885. height: math.unit(5 + 2/12, "feet"),
  35886. weight: math.unit(200, "lb"),
  35887. name: "Front",
  35888. image: {
  35889. source: "./media/characters/noraly/front.svg",
  35890. extra: 4985/4773,
  35891. bottom: 150/5135
  35892. }
  35893. },
  35894. full: {
  35895. height: math.unit(5 + 2/12, "feet"),
  35896. weight: math.unit(164, "lb"),
  35897. name: "Full",
  35898. image: {
  35899. source: "./media/characters/noraly/full.svg",
  35900. extra: 1114/1059,
  35901. bottom: 35/1149
  35902. }
  35903. },
  35904. fuller: {
  35905. height: math.unit(5 + 2/12, "feet"),
  35906. weight: math.unit(230, "lb"),
  35907. name: "Fuller",
  35908. image: {
  35909. source: "./media/characters/noraly/fuller.svg",
  35910. extra: 1114/1059,
  35911. bottom: 35/1149
  35912. }
  35913. },
  35914. fullest: {
  35915. height: math.unit(5 + 2/12, "feet"),
  35916. weight: math.unit(300, "lb"),
  35917. name: "Fullest",
  35918. image: {
  35919. source: "./media/characters/noraly/fullest.svg",
  35920. extra: 1114/1059,
  35921. bottom: 35/1149
  35922. }
  35923. },
  35924. },
  35925. [
  35926. {
  35927. name: "Normal",
  35928. height: math.unit(5 + 2/12, "feet"),
  35929. default: true
  35930. },
  35931. ]
  35932. ))
  35933. characterMakers.push(() => makeCharacter(
  35934. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35935. {
  35936. front: {
  35937. height: math.unit(5 + 2/12, "feet"),
  35938. weight: math.unit(210, "lb"),
  35939. name: "Front",
  35940. image: {
  35941. source: "./media/characters/pera/front.svg",
  35942. extra: 1560/1531,
  35943. bottom: 165/1725
  35944. }
  35945. },
  35946. back: {
  35947. height: math.unit(5 + 2/12, "feet"),
  35948. weight: math.unit(210, "lb"),
  35949. name: "Back",
  35950. image: {
  35951. source: "./media/characters/pera/back.svg",
  35952. extra: 1523/1493,
  35953. bottom: 152/1675
  35954. }
  35955. },
  35956. dick: {
  35957. height: math.unit(2.4, "feet"),
  35958. name: "Dick",
  35959. image: {
  35960. source: "./media/characters/pera/dick.svg"
  35961. }
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(5 + 2/12, "feet"),
  35968. default: true
  35969. },
  35970. ]
  35971. ))
  35972. characterMakers.push(() => makeCharacter(
  35973. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35974. {
  35975. front: {
  35976. height: math.unit(12, "feet"),
  35977. weight: math.unit(3200, "lb"),
  35978. name: "Front",
  35979. image: {
  35980. source: "./media/characters/julian/front.svg",
  35981. extra: 2962/2701,
  35982. bottom: 184/3146
  35983. }
  35984. },
  35985. maw: {
  35986. height: math.unit(5.35, "feet"),
  35987. name: "Maw",
  35988. image: {
  35989. source: "./media/characters/julian/maw.svg"
  35990. }
  35991. },
  35992. paw: {
  35993. height: math.unit(3.07, "feet"),
  35994. name: "Paw",
  35995. image: {
  35996. source: "./media/characters/julian/paw.svg"
  35997. }
  35998. },
  35999. },
  36000. [
  36001. {
  36002. name: "Default",
  36003. height: math.unit(12, "feet"),
  36004. default: true
  36005. },
  36006. {
  36007. name: "Big",
  36008. height: math.unit(50, "feet")
  36009. },
  36010. {
  36011. name: "Really Big",
  36012. height: math.unit(1, "mile")
  36013. },
  36014. {
  36015. name: "Extremely Big",
  36016. height: math.unit(100, "miles")
  36017. },
  36018. {
  36019. name: "Planet Hugger",
  36020. height: math.unit(200, "megameters")
  36021. },
  36022. {
  36023. name: "Unreasonably Big",
  36024. height: math.unit(1e300, "meters")
  36025. },
  36026. ]
  36027. ))
  36028. characterMakers.push(() => makeCharacter(
  36029. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  36030. {
  36031. solgooleo: {
  36032. height: math.unit(4, "meters"),
  36033. weight: math.unit(6000*1.5, "kg"),
  36034. volume: math.unit(6000, "liters"),
  36035. name: "Solgooleo",
  36036. image: {
  36037. source: "./media/characters/pi/solgooleo.svg",
  36038. extra: 388/331,
  36039. bottom: 29/417
  36040. }
  36041. },
  36042. },
  36043. [
  36044. {
  36045. name: "Normal",
  36046. height: math.unit(4, "meters"),
  36047. default: true
  36048. },
  36049. ]
  36050. ))
  36051. characterMakers.push(() => makeCharacter(
  36052. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  36053. {
  36054. front: {
  36055. height: math.unit(8, "feet"),
  36056. weight: math.unit(4, "tons"),
  36057. name: "Front",
  36058. image: {
  36059. source: "./media/characters/shaun/front.svg",
  36060. extra: 503/495,
  36061. bottom: 20/523
  36062. }
  36063. },
  36064. back: {
  36065. height: math.unit(8, "feet"),
  36066. weight: math.unit(4, "tons"),
  36067. name: "Back",
  36068. image: {
  36069. source: "./media/characters/shaun/back.svg",
  36070. extra: 487/480,
  36071. bottom: 20/507
  36072. }
  36073. },
  36074. },
  36075. [
  36076. {
  36077. name: "Lorg",
  36078. height: math.unit(8, "feet"),
  36079. default: true
  36080. },
  36081. ]
  36082. ))
  36083. characterMakers.push(() => makeCharacter(
  36084. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  36085. {
  36086. frontAnthro: {
  36087. height: math.unit(7, "feet"),
  36088. name: "Front",
  36089. image: {
  36090. source: "./media/characters/sini/front-anthro.svg",
  36091. extra: 726/678,
  36092. bottom: 35/761
  36093. },
  36094. form: "anthro",
  36095. default: true
  36096. },
  36097. backAnthro: {
  36098. height: math.unit(7, "feet"),
  36099. name: "Back",
  36100. image: {
  36101. source: "./media/characters/sini/back-anthro.svg",
  36102. extra: 743/701,
  36103. bottom: 12/755
  36104. },
  36105. form: "anthro",
  36106. },
  36107. frontAnthroNsfw: {
  36108. height: math.unit(7, "feet"),
  36109. name: "Front (NSFW)",
  36110. image: {
  36111. source: "./media/characters/sini/front-anthro-nsfw.svg",
  36112. extra: 726/678,
  36113. bottom: 35/761
  36114. },
  36115. form: "anthro"
  36116. },
  36117. backAnthroNsfw: {
  36118. height: math.unit(7, "feet"),
  36119. name: "Back (NSFW)",
  36120. image: {
  36121. source: "./media/characters/sini/back-anthro-nsfw.svg",
  36122. extra: 743/701,
  36123. bottom: 12/755
  36124. },
  36125. form: "anthro",
  36126. },
  36127. mawAnthro: {
  36128. height: math.unit(2.14, "feet"),
  36129. name: "Maw",
  36130. image: {
  36131. source: "./media/characters/sini/maw-anthro.svg"
  36132. },
  36133. form: "anthro"
  36134. },
  36135. dick: {
  36136. height: math.unit(1.45, "feet"),
  36137. name: "Dick",
  36138. image: {
  36139. source: "./media/characters/sini/dick-anthro.svg"
  36140. },
  36141. form: "anthro"
  36142. },
  36143. feral: {
  36144. height: math.unit(16, "feet"),
  36145. name: "Feral",
  36146. image: {
  36147. source: "./media/characters/sini/feral.svg",
  36148. extra: 814/605,
  36149. bottom: 11/825
  36150. },
  36151. form: "feral",
  36152. default: true
  36153. },
  36154. feralNsfw: {
  36155. height: math.unit(16, "feet"),
  36156. name: "Feral (NSFW)",
  36157. image: {
  36158. source: "./media/characters/sini/feral-nsfw.svg",
  36159. extra: 814/605,
  36160. bottom: 11/825
  36161. },
  36162. form: "feral"
  36163. },
  36164. mawFeral: {
  36165. height: math.unit(5.66, "feet"),
  36166. name: "Maw",
  36167. image: {
  36168. source: "./media/characters/sini/maw-feral.svg"
  36169. },
  36170. form: "feral",
  36171. },
  36172. pawFeral: {
  36173. height: math.unit(5.17, "feet"),
  36174. name: "Paw",
  36175. image: {
  36176. source: "./media/characters/sini/paw-feral.svg"
  36177. },
  36178. form: "feral",
  36179. },
  36180. rumpFeral: {
  36181. height: math.unit(13.11, "feet"),
  36182. name: "Rump",
  36183. image: {
  36184. source: "./media/characters/sini/rump-feral.svg"
  36185. },
  36186. form: "feral",
  36187. },
  36188. dickFeral: {
  36189. height: math.unit(1, "feet"),
  36190. name: "Dick",
  36191. image: {
  36192. source: "./media/characters/sini/dick-feral.svg"
  36193. },
  36194. form: "feral",
  36195. },
  36196. eyeFeral: {
  36197. height: math.unit(1.23, "feet"),
  36198. name: "Eye",
  36199. image: {
  36200. source: "./media/characters/sini/eye-feral.svg"
  36201. },
  36202. form: "feral",
  36203. },
  36204. },
  36205. [
  36206. {
  36207. name: "Normal",
  36208. height: math.unit(7, "feet"),
  36209. default: true,
  36210. form: "anthro"
  36211. },
  36212. {
  36213. name: "Normal",
  36214. height: math.unit(16, "feet"),
  36215. default: true,
  36216. form: "feral"
  36217. },
  36218. ],
  36219. {
  36220. "anthro": {
  36221. name: "Anthro",
  36222. default: true
  36223. },
  36224. "feral": {
  36225. name: "Feral",
  36226. }
  36227. }
  36228. ))
  36229. characterMakers.push(() => makeCharacter(
  36230. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36231. {
  36232. side: {
  36233. height: math.unit(47.2, "meters"),
  36234. weight: math.unit(10000, "tons"),
  36235. name: "Side",
  36236. image: {
  36237. source: "./media/characters/raylldo/side.svg",
  36238. extra: 2363/642,
  36239. bottom: 221/2584
  36240. }
  36241. },
  36242. top: {
  36243. height: math.unit(240, "meters"),
  36244. weight: math.unit(10000, "tons"),
  36245. name: "Top",
  36246. image: {
  36247. source: "./media/characters/raylldo/top.svg"
  36248. }
  36249. },
  36250. bottom: {
  36251. height: math.unit(240, "meters"),
  36252. weight: math.unit(10000, "tons"),
  36253. name: "Bottom",
  36254. image: {
  36255. source: "./media/characters/raylldo/bottom.svg"
  36256. }
  36257. },
  36258. head: {
  36259. height: math.unit(38.6, "meters"),
  36260. name: "Head",
  36261. image: {
  36262. source: "./media/characters/raylldo/head.svg",
  36263. extra: 1335/1112,
  36264. bottom: 0/1335
  36265. }
  36266. },
  36267. maw: {
  36268. height: math.unit(16.37, "meters"),
  36269. name: "Maw",
  36270. image: {
  36271. source: "./media/characters/raylldo/maw.svg",
  36272. extra: 883/660,
  36273. bottom: 0/883
  36274. },
  36275. extraAttributes: {
  36276. preyCapacity: {
  36277. name: "Capacity",
  36278. power: 3,
  36279. type: "volume",
  36280. base: math.unit(1000, "people")
  36281. },
  36282. tongueSize: {
  36283. name: "Tongue Size",
  36284. power: 2,
  36285. type: "area",
  36286. base: math.unit(21, "m^2")
  36287. }
  36288. }
  36289. },
  36290. forepaw: {
  36291. height: math.unit(18, "meters"),
  36292. name: "Forepaw",
  36293. image: {
  36294. source: "./media/characters/raylldo/forepaw.svg"
  36295. }
  36296. },
  36297. hindpaw: {
  36298. height: math.unit(23, "meters"),
  36299. name: "Hindpaw",
  36300. image: {
  36301. source: "./media/characters/raylldo/hindpaw.svg"
  36302. }
  36303. },
  36304. genitals: {
  36305. height: math.unit(42, "meters"),
  36306. name: "Genitals",
  36307. image: {
  36308. source: "./media/characters/raylldo/genitals.svg"
  36309. }
  36310. },
  36311. },
  36312. [
  36313. {
  36314. name: "Normal",
  36315. height: math.unit(47.2, "meters"),
  36316. default: true
  36317. },
  36318. ]
  36319. ))
  36320. characterMakers.push(() => makeCharacter(
  36321. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36322. {
  36323. anthroFront: {
  36324. height: math.unit(9, "feet"),
  36325. weight: math.unit(600, "lb"),
  36326. name: "Anthro (Front)",
  36327. image: {
  36328. source: "./media/characters/glint/anthro-front.svg",
  36329. extra: 1097/1018,
  36330. bottom: 28/1125
  36331. }
  36332. },
  36333. anthroBack: {
  36334. height: math.unit(9, "feet"),
  36335. weight: math.unit(600, "lb"),
  36336. name: "Anthro (Back)",
  36337. image: {
  36338. source: "./media/characters/glint/anthro-back.svg",
  36339. extra: 1154/997,
  36340. bottom: 36/1190
  36341. }
  36342. },
  36343. feral: {
  36344. height: math.unit(11, "feet"),
  36345. weight: math.unit(50000, "lb"),
  36346. name: "Feral",
  36347. image: {
  36348. source: "./media/characters/glint/feral.svg",
  36349. extra: 3035/1585,
  36350. bottom: 1169/4204
  36351. }
  36352. },
  36353. dickAnthro: {
  36354. height: math.unit(0.7, "meters"),
  36355. name: "Dick (Anthro)",
  36356. image: {
  36357. source: "./media/characters/glint/dick-anthro.svg"
  36358. }
  36359. },
  36360. dickFeral: {
  36361. height: math.unit(2.65, "meters"),
  36362. name: "Dick (Feral)",
  36363. image: {
  36364. source: "./media/characters/glint/dick-feral.svg"
  36365. }
  36366. },
  36367. slitHidden: {
  36368. height: math.unit(5.85, "meters"),
  36369. name: "Slit (Hidden)",
  36370. image: {
  36371. source: "./media/characters/glint/slit-hidden.svg"
  36372. }
  36373. },
  36374. slitErect: {
  36375. height: math.unit(5.85, "meters"),
  36376. name: "Slit (Erect)",
  36377. image: {
  36378. source: "./media/characters/glint/slit-erect.svg"
  36379. }
  36380. },
  36381. mawAnthro: {
  36382. height: math.unit(0.63, "meters"),
  36383. name: "Maw (Anthro)",
  36384. image: {
  36385. source: "./media/characters/glint/maw.svg"
  36386. }
  36387. },
  36388. mawFeral: {
  36389. height: math.unit(2.89, "meters"),
  36390. name: "Maw (Feral)",
  36391. image: {
  36392. source: "./media/characters/glint/maw.svg"
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(9, "feet"),
  36400. default: true
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36406. {
  36407. side: {
  36408. height: math.unit(15, "feet"),
  36409. weight: math.unit(5000, "kg"),
  36410. name: "Side",
  36411. image: {
  36412. source: "./media/characters/kairne/side.svg",
  36413. extra: 979/811,
  36414. bottom: 13/992
  36415. }
  36416. },
  36417. front: {
  36418. height: math.unit(15, "feet"),
  36419. weight: math.unit(5000, "kg"),
  36420. name: "Front",
  36421. image: {
  36422. source: "./media/characters/kairne/front.svg",
  36423. extra: 908/814,
  36424. bottom: 26/934
  36425. }
  36426. },
  36427. sideNsfw: {
  36428. height: math.unit(15, "feet"),
  36429. weight: math.unit(5000, "kg"),
  36430. name: "Side (NSFW)",
  36431. image: {
  36432. source: "./media/characters/kairne/side-nsfw.svg",
  36433. extra: 979/811,
  36434. bottom: 13/992
  36435. }
  36436. },
  36437. frontNsfw: {
  36438. height: math.unit(15, "feet"),
  36439. weight: math.unit(5000, "kg"),
  36440. name: "Front (NSFW)",
  36441. image: {
  36442. source: "./media/characters/kairne/front-nsfw.svg",
  36443. extra: 908/814,
  36444. bottom: 26/934
  36445. }
  36446. },
  36447. dickCaged: {
  36448. height: math.unit(0.65, "meters"),
  36449. name: "Dick (Caged)",
  36450. image: {
  36451. source: "./media/characters/kairne/dick-caged.svg"
  36452. }
  36453. },
  36454. dick: {
  36455. height: math.unit(0.79, "meters"),
  36456. name: "Dick",
  36457. image: {
  36458. source: "./media/characters/kairne/dick.svg"
  36459. }
  36460. },
  36461. genitals: {
  36462. height: math.unit(1.29, "meters"),
  36463. name: "Genitals",
  36464. image: {
  36465. source: "./media/characters/kairne/genitals.svg"
  36466. }
  36467. },
  36468. maw: {
  36469. height: math.unit(1.73, "meters"),
  36470. name: "Maw",
  36471. image: {
  36472. source: "./media/characters/kairne/maw.svg"
  36473. }
  36474. },
  36475. },
  36476. [
  36477. {
  36478. name: "Normal",
  36479. height: math.unit(15, "feet"),
  36480. default: true
  36481. },
  36482. ]
  36483. ))
  36484. characterMakers.push(() => makeCharacter(
  36485. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36486. {
  36487. front: {
  36488. height: math.unit(5 + 8/12, "feet"),
  36489. weight: math.unit(139, "lb"),
  36490. name: "Front",
  36491. image: {
  36492. source: "./media/characters/biscuit-jackal/front.svg",
  36493. extra: 2106/1961,
  36494. bottom: 58/2164
  36495. }
  36496. },
  36497. back: {
  36498. height: math.unit(5 + 8/12, "feet"),
  36499. weight: math.unit(139, "lb"),
  36500. name: "Back",
  36501. image: {
  36502. source: "./media/characters/biscuit-jackal/back.svg",
  36503. extra: 2132/1976,
  36504. bottom: 57/2189
  36505. }
  36506. },
  36507. werejackal: {
  36508. height: math.unit(6 + 3/12, "feet"),
  36509. weight: math.unit(188, "lb"),
  36510. name: "Werejackal",
  36511. image: {
  36512. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36513. extra: 2373/2178,
  36514. bottom: 53/2426
  36515. }
  36516. },
  36517. },
  36518. [
  36519. {
  36520. name: "Normal",
  36521. height: math.unit(5 + 8/12, "feet"),
  36522. default: true
  36523. },
  36524. ]
  36525. ))
  36526. characterMakers.push(() => makeCharacter(
  36527. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36528. {
  36529. front: {
  36530. height: math.unit(140, "cm"),
  36531. weight: math.unit(45, "kg"),
  36532. name: "Front",
  36533. image: {
  36534. source: "./media/characters/tayra-white/front.svg",
  36535. extra: 2229/2192,
  36536. bottom: 75/2304
  36537. }
  36538. },
  36539. },
  36540. [
  36541. {
  36542. name: "Normal",
  36543. height: math.unit(140, "cm"),
  36544. default: true
  36545. },
  36546. ]
  36547. ))
  36548. characterMakers.push(() => makeCharacter(
  36549. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36550. {
  36551. front: {
  36552. height: math.unit(4 + 5/12, "feet"),
  36553. name: "Front",
  36554. image: {
  36555. source: "./media/characters/scoop/front.svg",
  36556. extra: 1257/1136,
  36557. bottom: 69/1326
  36558. }
  36559. },
  36560. back: {
  36561. height: math.unit(4 + 5/12, "feet"),
  36562. name: "Back",
  36563. image: {
  36564. source: "./media/characters/scoop/back.svg",
  36565. extra: 1321/1152,
  36566. bottom: 32/1353
  36567. }
  36568. },
  36569. maw: {
  36570. height: math.unit(0.68, "feet"),
  36571. name: "Maw",
  36572. image: {
  36573. source: "./media/characters/scoop/maw.svg"
  36574. }
  36575. },
  36576. },
  36577. [
  36578. {
  36579. name: "Really Small",
  36580. height: math.unit(1, "mm")
  36581. },
  36582. {
  36583. name: "Micro",
  36584. height: math.unit(1, "inch")
  36585. },
  36586. {
  36587. name: "Normal",
  36588. height: math.unit(4 + 5/12, "feet"),
  36589. default: true
  36590. },
  36591. {
  36592. name: "Macro",
  36593. height: math.unit(200, "feet")
  36594. },
  36595. {
  36596. name: "Megamacro",
  36597. height: math.unit(3240, "feet")
  36598. },
  36599. {
  36600. name: "Teramacro",
  36601. height: math.unit(2500, "miles")
  36602. },
  36603. ]
  36604. ))
  36605. characterMakers.push(() => makeCharacter(
  36606. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36607. {
  36608. front: {
  36609. height: math.unit(15 + 7/12, "feet"),
  36610. weight: math.unit(1150, "tons"),
  36611. name: "Front",
  36612. image: {
  36613. source: "./media/characters/saphinara/front.svg",
  36614. extra: 1837/1643,
  36615. bottom: 84/1921
  36616. },
  36617. form: "normal",
  36618. default: true
  36619. },
  36620. side: {
  36621. height: math.unit(15 + 7/12, "feet"),
  36622. weight: math.unit(1150, "tons"),
  36623. name: "Side",
  36624. image: {
  36625. source: "./media/characters/saphinara/side.svg",
  36626. extra: 605/547,
  36627. bottom: 6/611
  36628. },
  36629. form: "normal"
  36630. },
  36631. back: {
  36632. height: math.unit(15 + 7/12, "feet"),
  36633. weight: math.unit(1150, "tons"),
  36634. name: "Back",
  36635. image: {
  36636. source: "./media/characters/saphinara/back.svg",
  36637. extra: 591/531,
  36638. bottom: 13/604
  36639. },
  36640. form: "normal"
  36641. },
  36642. frontTail: {
  36643. height: math.unit(15 + 7/12, "feet"),
  36644. weight: math.unit(1150, "tons"),
  36645. name: "Front (Full Tail)",
  36646. image: {
  36647. source: "./media/characters/saphinara/front-tail.svg",
  36648. extra: 2256/1630,
  36649. bottom: 261/2517
  36650. },
  36651. form: "normal"
  36652. },
  36653. insides: {
  36654. height: math.unit(11.92, "feet"),
  36655. name: "Insides",
  36656. image: {
  36657. source: "./media/characters/saphinara/insides.svg"
  36658. },
  36659. form: "normal"
  36660. },
  36661. head: {
  36662. height: math.unit(4.17, "feet"),
  36663. name: "Head",
  36664. image: {
  36665. source: "./media/characters/saphinara/head.svg"
  36666. },
  36667. form: "normal"
  36668. },
  36669. tongue: {
  36670. height: math.unit(4.60, "feet"),
  36671. name: "Tongue",
  36672. image: {
  36673. source: "./media/characters/saphinara/tongue.svg"
  36674. },
  36675. form: "normal"
  36676. },
  36677. headEnraged: {
  36678. height: math.unit(5.55, "feet"),
  36679. name: "Head (Enraged)",
  36680. image: {
  36681. source: "./media/characters/saphinara/head-enraged.svg"
  36682. },
  36683. form: "normal"
  36684. },
  36685. wings: {
  36686. height: math.unit(11.95, "feet"),
  36687. name: "Wings",
  36688. image: {
  36689. source: "./media/characters/saphinara/wings.svg"
  36690. },
  36691. form: "normal"
  36692. },
  36693. feathers: {
  36694. height: math.unit(8.92, "feet"),
  36695. name: "Feathers",
  36696. image: {
  36697. source: "./media/characters/saphinara/feathers.svg"
  36698. },
  36699. form: "normal"
  36700. },
  36701. shackles: {
  36702. height: math.unit(2, "feet"),
  36703. name: "Shackles",
  36704. image: {
  36705. source: "./media/characters/saphinara/shackles.svg"
  36706. },
  36707. form: "normal"
  36708. },
  36709. eyes: {
  36710. height: math.unit(1.331, "feet"),
  36711. name: "Eyes",
  36712. image: {
  36713. source: "./media/characters/saphinara/eyes.svg"
  36714. },
  36715. form: "normal"
  36716. },
  36717. eyesEnraged: {
  36718. height: math.unit(1.331, "feet"),
  36719. name: "Eyes (Enraged)",
  36720. image: {
  36721. source: "./media/characters/saphinara/eyes-enraged.svg"
  36722. },
  36723. form: "normal"
  36724. },
  36725. trueFormSide: {
  36726. height: math.unit(200, "feet"),
  36727. weight: math.unit(1e7, "tons"),
  36728. name: "Side",
  36729. image: {
  36730. source: "./media/characters/saphinara/true-form-side.svg",
  36731. extra: 1399/770,
  36732. bottom: 97/1496
  36733. },
  36734. form: "true-form",
  36735. default: true
  36736. },
  36737. trueFormMaw: {
  36738. height: math.unit(71.5, "feet"),
  36739. name: "Maw",
  36740. image: {
  36741. source: "./media/characters/saphinara/true-form-maw.svg",
  36742. extra: 2302/1453,
  36743. bottom: 0/2302
  36744. },
  36745. form: "true-form"
  36746. },
  36747. meowberusSide: {
  36748. height: math.unit(75, "feet"),
  36749. weight: math.unit(180000, "kg"),
  36750. preyCapacity: math.unit(50000, "people"),
  36751. name: "Side",
  36752. image: {
  36753. source: "./media/characters/saphinara/meowberus-side.svg",
  36754. extra: 1400/711,
  36755. bottom: 126/1526
  36756. },
  36757. form: "meowberus",
  36758. extraAttributes: {
  36759. "pawArea": {
  36760. name: "Paw Size",
  36761. power: 2,
  36762. type: "area",
  36763. base: math.unit(35, "m^2")
  36764. }
  36765. }
  36766. },
  36767. },
  36768. [
  36769. {
  36770. name: "Normal",
  36771. height: math.unit(15 + 7/12, "feet"),
  36772. default: true,
  36773. form: "normal"
  36774. },
  36775. {
  36776. name: "Angry",
  36777. height: math.unit(30 + 6/12, "feet"),
  36778. form: "normal"
  36779. },
  36780. {
  36781. name: "Enraged",
  36782. height: math.unit(102 + 1/12, "feet"),
  36783. form: "normal"
  36784. },
  36785. {
  36786. name: "True",
  36787. height: math.unit(200, "feet"),
  36788. default: true,
  36789. form: "true-form"
  36790. },
  36791. {
  36792. name: "Normal",
  36793. height: math.unit(75, "feet"),
  36794. default: true,
  36795. form: "meowberus"
  36796. },
  36797. ],
  36798. {
  36799. "normal": {
  36800. name: "Normal",
  36801. default: true
  36802. },
  36803. "true-form": {
  36804. name: "True Form"
  36805. },
  36806. "meowberus": {
  36807. name: "Meowberus",
  36808. },
  36809. }
  36810. ))
  36811. characterMakers.push(() => makeCharacter(
  36812. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36813. {
  36814. front: {
  36815. height: math.unit(6 + 8/12, "feet"),
  36816. weight: math.unit(300, "lb"),
  36817. name: "Front",
  36818. image: {
  36819. source: "./media/characters/jrain/front.svg",
  36820. extra: 3039/2865,
  36821. bottom: 399/3438
  36822. }
  36823. },
  36824. back: {
  36825. height: math.unit(6 + 8/12, "feet"),
  36826. weight: math.unit(300, "lb"),
  36827. name: "Back",
  36828. image: {
  36829. source: "./media/characters/jrain/back.svg",
  36830. extra: 3089/2938,
  36831. bottom: 172/3261
  36832. }
  36833. },
  36834. head: {
  36835. height: math.unit(2.14, "feet"),
  36836. name: "Head",
  36837. image: {
  36838. source: "./media/characters/jrain/head.svg"
  36839. }
  36840. },
  36841. maw: {
  36842. height: math.unit(1.77, "feet"),
  36843. name: "Maw",
  36844. image: {
  36845. source: "./media/characters/jrain/maw.svg"
  36846. }
  36847. },
  36848. leftHand: {
  36849. height: math.unit(1.1, "feet"),
  36850. name: "Left Hand",
  36851. image: {
  36852. source: "./media/characters/jrain/left-hand.svg"
  36853. }
  36854. },
  36855. rightHand: {
  36856. height: math.unit(1.1, "feet"),
  36857. name: "Right Hand",
  36858. image: {
  36859. source: "./media/characters/jrain/right-hand.svg"
  36860. }
  36861. },
  36862. eye: {
  36863. height: math.unit(0.35, "feet"),
  36864. name: "Eye",
  36865. image: {
  36866. source: "./media/characters/jrain/eye.svg"
  36867. }
  36868. },
  36869. },
  36870. [
  36871. {
  36872. name: "Normal",
  36873. height: math.unit(6 + 8/12, "feet"),
  36874. default: true
  36875. },
  36876. {
  36877. name: "Casually Large",
  36878. height: math.unit(25, "feet")
  36879. },
  36880. {
  36881. name: "Giant",
  36882. height: math.unit(100, "feet")
  36883. },
  36884. {
  36885. name: "Kaiju",
  36886. height: math.unit(300, "feet")
  36887. },
  36888. ]
  36889. ))
  36890. characterMakers.push(() => makeCharacter(
  36891. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36892. {
  36893. dragon: {
  36894. height: math.unit(5, "meters"),
  36895. name: "Dragon",
  36896. image: {
  36897. source: "./media/characters/sabrina/dragon.svg",
  36898. extra: 3670 / 2365,
  36899. bottom: 333 / 4003
  36900. }
  36901. },
  36902. gryphon: {
  36903. height: math.unit(3, "meters"),
  36904. name: "Gryphon",
  36905. image: {
  36906. source: "./media/characters/sabrina/gryphon.svg",
  36907. extra: 1576 / 945,
  36908. bottom: 71 / 1647
  36909. }
  36910. },
  36911. snake: {
  36912. height: math.unit(12, "meters"),
  36913. name: "Snake",
  36914. image: {
  36915. source: "./media/characters/sabrina/snake.svg",
  36916. extra: 1758 / 1320,
  36917. bottom: 186 / 1944
  36918. }
  36919. },
  36920. collar: {
  36921. height: math.unit(1.86, "meters"),
  36922. name: "Collar",
  36923. image: {
  36924. source: "./media/characters/sabrina/collar.svg"
  36925. }
  36926. },
  36927. eye: {
  36928. height: math.unit(0.53, "meters"),
  36929. name: "Eye",
  36930. image: {
  36931. source: "./media/characters/sabrina/eye.svg"
  36932. }
  36933. },
  36934. foot: {
  36935. height: math.unit(1.86, "meters"),
  36936. name: "Foot",
  36937. image: {
  36938. source: "./media/characters/sabrina/foot.svg"
  36939. }
  36940. },
  36941. hand: {
  36942. height: math.unit(1.32, "meters"),
  36943. name: "Hand",
  36944. image: {
  36945. source: "./media/characters/sabrina/hand.svg"
  36946. }
  36947. },
  36948. head: {
  36949. height: math.unit(2.44, "meters"),
  36950. name: "Head",
  36951. image: {
  36952. source: "./media/characters/sabrina/head.svg"
  36953. }
  36954. },
  36955. headAngry: {
  36956. height: math.unit(2.44, "meters"),
  36957. name: "Head (Angry))",
  36958. image: {
  36959. source: "./media/characters/sabrina/head-angry.svg"
  36960. }
  36961. },
  36962. maw: {
  36963. height: math.unit(1.65, "meters"),
  36964. name: "Maw",
  36965. image: {
  36966. source: "./media/characters/sabrina/maw.svg"
  36967. }
  36968. },
  36969. spikes: {
  36970. height: math.unit(1.69, "meters"),
  36971. name: "Spikes",
  36972. image: {
  36973. source: "./media/characters/sabrina/spikes.svg"
  36974. }
  36975. },
  36976. stomach: {
  36977. height: math.unit(1.15, "meters"),
  36978. name: "Stomach",
  36979. image: {
  36980. source: "./media/characters/sabrina/stomach.svg"
  36981. }
  36982. },
  36983. tongue: {
  36984. height: math.unit(1.27, "meters"),
  36985. name: "Tongue",
  36986. image: {
  36987. source: "./media/characters/sabrina/tongue.svg"
  36988. }
  36989. },
  36990. wingDorsal: {
  36991. height: math.unit(4.85, "meters"),
  36992. name: "Wing (Dorsal)",
  36993. image: {
  36994. source: "./media/characters/sabrina/wing-dorsal.svg"
  36995. }
  36996. },
  36997. wingVentral: {
  36998. height: math.unit(4.85, "meters"),
  36999. name: "Wing (Ventral)",
  37000. image: {
  37001. source: "./media/characters/sabrina/wing-ventral.svg"
  37002. }
  37003. },
  37004. },
  37005. [
  37006. {
  37007. name: "Normal",
  37008. height: math.unit(5, "meters"),
  37009. default: true
  37010. },
  37011. ]
  37012. ))
  37013. characterMakers.push(() => makeCharacter(
  37014. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  37015. {
  37016. frontMaid: {
  37017. height: math.unit(5 + 5/12, "feet"),
  37018. weight: math.unit(130, "lb"),
  37019. name: "Front (Maid)",
  37020. image: {
  37021. source: "./media/characters/midnight-tales/front-maid.svg",
  37022. extra: 489/454,
  37023. bottom: 61/550
  37024. }
  37025. },
  37026. frontFormal: {
  37027. height: math.unit(5 + 5/12, "feet"),
  37028. weight: math.unit(130, "lb"),
  37029. name: "Front (Formal)",
  37030. image: {
  37031. source: "./media/characters/midnight-tales/front-formal.svg",
  37032. extra: 489/454,
  37033. bottom: 61/550
  37034. }
  37035. },
  37036. back: {
  37037. height: math.unit(5 + 5/12, "feet"),
  37038. weight: math.unit(130, "lb"),
  37039. name: "Back",
  37040. image: {
  37041. source: "./media/characters/midnight-tales/back.svg",
  37042. extra: 498/456,
  37043. bottom: 33/531
  37044. }
  37045. },
  37046. frontBeast: {
  37047. height: math.unit(40, "feet"),
  37048. weight: math.unit(64000, "lb"),
  37049. name: "Front (Beast)",
  37050. image: {
  37051. source: "./media/characters/midnight-tales/front-beast.svg",
  37052. extra: 927/860,
  37053. bottom: 53/980
  37054. }
  37055. },
  37056. backBeast: {
  37057. height: math.unit(40, "feet"),
  37058. weight: math.unit(64000, "lb"),
  37059. name: "Back (Beast)",
  37060. image: {
  37061. source: "./media/characters/midnight-tales/back-beast.svg",
  37062. extra: 929/855,
  37063. bottom: 16/945
  37064. }
  37065. },
  37066. footBeast: {
  37067. height: math.unit(6.7, "feet"),
  37068. name: "Foot (Beast)",
  37069. image: {
  37070. source: "./media/characters/midnight-tales/foot-beast.svg"
  37071. }
  37072. },
  37073. headBeast: {
  37074. height: math.unit(8, "feet"),
  37075. name: "Head (Beast)",
  37076. image: {
  37077. source: "./media/characters/midnight-tales/head-beast.svg"
  37078. }
  37079. },
  37080. },
  37081. [
  37082. {
  37083. name: "Normal",
  37084. height: math.unit(5 + 5 / 12, "feet"),
  37085. default: true
  37086. },
  37087. {
  37088. name: "Macro",
  37089. height: math.unit(25, "feet")
  37090. },
  37091. ]
  37092. ))
  37093. characterMakers.push(() => makeCharacter(
  37094. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  37095. {
  37096. front: {
  37097. height: math.unit(6 + 2/12, "feet"),
  37098. weight: math.unit(115, "kg"),
  37099. preyCapacity: math.unit(3, "people"),
  37100. name: "Front",
  37101. image: {
  37102. source: "./media/characters/argon/front.svg",
  37103. extra: 2009/1935,
  37104. bottom: 118/2127
  37105. },
  37106. extraAttributes: {
  37107. "tailLength": {
  37108. name: "Tail Length",
  37109. power: 1,
  37110. type: "length",
  37111. base: math.unit(6, "feet")
  37112. },
  37113. "tailWeight": {
  37114. name: "Tail Weight",
  37115. power: 3,
  37116. type: "mass",
  37117. base: math.unit(40, "kg")
  37118. },
  37119. }
  37120. },
  37121. back: {
  37122. height: math.unit(6 + 2/12, "feet"),
  37123. weight: math.unit(115, "kg"),
  37124. preyCapacity: math.unit(3, "people"),
  37125. name: "Back",
  37126. image: {
  37127. source: "./media/characters/argon/back.svg",
  37128. extra: 2047/1992,
  37129. bottom: 20/2067
  37130. },
  37131. extraAttributes: {
  37132. "tailLength": {
  37133. name: "Tail Length",
  37134. power: 1,
  37135. type: "length",
  37136. base: math.unit(6, "feet")
  37137. },
  37138. "tailWeight": {
  37139. name: "Tail Weight",
  37140. power: 3,
  37141. type: "mass",
  37142. base: math.unit(40, "kg")
  37143. },
  37144. }
  37145. },
  37146. frontDressed: {
  37147. height: math.unit(6 + 2/12, "feet"),
  37148. weight: math.unit(115, "kg"),
  37149. preyCapacity: math.unit(3, "people"),
  37150. name: "Front (Dressed)",
  37151. image: {
  37152. source: "./media/characters/argon/front-dressed.svg",
  37153. extra: 2009/1935,
  37154. bottom: 118/2127
  37155. },
  37156. extraAttributes: {
  37157. "tailLength": {
  37158. name: "Tail Length",
  37159. power: 1,
  37160. type: "length",
  37161. base: math.unit(6, "feet")
  37162. },
  37163. "tailWeight": {
  37164. name: "Tail Weight",
  37165. power: 3,
  37166. type: "mass",
  37167. base: math.unit(40, "kg")
  37168. },
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Minimum",
  37175. height: math.unit(2 + 8/12, "feet")
  37176. },
  37177. {
  37178. name: "Normal",
  37179. height: math.unit(6 + 2/12, "feet"),
  37180. default: true
  37181. },
  37182. {
  37183. name: "Maximum",
  37184. height: math.unit(20, "feet")
  37185. },
  37186. ]
  37187. ))
  37188. characterMakers.push(() => makeCharacter(
  37189. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37190. {
  37191. front: {
  37192. height: math.unit(8 + 6/12, "feet"),
  37193. weight: math.unit(1150, "lb"),
  37194. name: "Front",
  37195. image: {
  37196. source: "./media/characters/kichi/front.svg",
  37197. extra: 1267/1164,
  37198. bottom: 61/1328
  37199. }
  37200. },
  37201. back: {
  37202. height: math.unit(8 + 6/12, "feet"),
  37203. weight: math.unit(1150, "lb"),
  37204. name: "Back",
  37205. image: {
  37206. source: "./media/characters/kichi/back.svg",
  37207. extra: 1273/1166,
  37208. bottom: 33/1306
  37209. }
  37210. },
  37211. },
  37212. [
  37213. {
  37214. name: "Normal",
  37215. height: math.unit(8 + 6/12, "feet"),
  37216. default: true
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Manetel Greyscale", species: ["dragoyle"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(6, "feet"),
  37225. weight: math.unit(210, "lb"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/manetel-greyscale/front.svg",
  37229. extra: 483/444,
  37230. bottom: 22/505
  37231. },
  37232. extraAttributes: {
  37233. "tailLength": {
  37234. name: "Tail Length",
  37235. power: 1,
  37236. type: "length",
  37237. base: math.unit(6.5, "feet")
  37238. },
  37239. }
  37240. },
  37241. side: {
  37242. height: math.unit(6, "feet"),
  37243. weight: math.unit(210, "lb"),
  37244. name: "Side",
  37245. image: {
  37246. source: "./media/characters/manetel-greyscale/side.svg",
  37247. extra: 478/426,
  37248. bottom: 20/498
  37249. },
  37250. extraAttributes: {
  37251. "tailLength": {
  37252. name: "Tail Length",
  37253. power: 1,
  37254. type: "length",
  37255. base: math.unit(6.5, "feet")
  37256. },
  37257. }
  37258. },
  37259. back: {
  37260. height: math.unit(6, "feet"),
  37261. weight: math.unit(210, "lb"),
  37262. name: "Back",
  37263. image: {
  37264. source: "./media/characters/manetel-greyscale/back.svg",
  37265. extra: 482/445,
  37266. bottom: 12/494
  37267. },
  37268. extraAttributes: {
  37269. "tailLength": {
  37270. name: "Tail Length",
  37271. power: 1,
  37272. type: "length",
  37273. base: math.unit(6.5, "feet")
  37274. },
  37275. }
  37276. },
  37277. },
  37278. [
  37279. {
  37280. name: "Micro",
  37281. height: math.unit(2, "inches")
  37282. },
  37283. {
  37284. name: "Normal",
  37285. height: math.unit(6, "feet"),
  37286. default: true
  37287. },
  37288. {
  37289. name: "Macro",
  37290. height: math.unit(117, "feet")
  37291. },
  37292. ]
  37293. ))
  37294. characterMakers.push(() => makeCharacter(
  37295. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37296. {
  37297. side: {
  37298. height: math.unit(5 + 1/12, "feet"),
  37299. weight: math.unit(418, "lb"),
  37300. name: "Side",
  37301. image: {
  37302. source: "./media/characters/softpurr/side.svg",
  37303. extra: 1993/1945,
  37304. bottom: 134/2127
  37305. }
  37306. },
  37307. front: {
  37308. height: math.unit(5 + 1/12, "feet"),
  37309. weight: math.unit(418, "lb"),
  37310. name: "Front",
  37311. image: {
  37312. source: "./media/characters/softpurr/front.svg",
  37313. extra: 1950/1856,
  37314. bottom: 174/2124
  37315. }
  37316. },
  37317. paw: {
  37318. height: math.unit(1, "feet"),
  37319. name: "Paw",
  37320. image: {
  37321. source: "./media/characters/softpurr/paw.svg"
  37322. }
  37323. },
  37324. },
  37325. [
  37326. {
  37327. name: "Normal",
  37328. height: math.unit(5 + 1/12, "feet"),
  37329. default: true
  37330. },
  37331. ]
  37332. ))
  37333. characterMakers.push(() => makeCharacter(
  37334. { name: "Anahita", species: ["sea-serpent"], tags: ["anthro"] },
  37335. {
  37336. front: {
  37337. height: math.unit(300, "meters"),
  37338. name: "Front",
  37339. image: {
  37340. source: "./media/characters/anahita/front.svg",
  37341. extra: 609/576,
  37342. bottom: 51/660
  37343. }
  37344. },
  37345. },
  37346. [
  37347. {
  37348. name: "Macro",
  37349. height: math.unit(300, "meters"),
  37350. default: true
  37351. },
  37352. ]
  37353. ))
  37354. characterMakers.push(() => makeCharacter(
  37355. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37356. {
  37357. front: {
  37358. height: math.unit(4 + 10/12, "feet"),
  37359. weight: math.unit(160, "lb"),
  37360. name: "Front",
  37361. image: {
  37362. source: "./media/characters/chip-mouse/front.svg",
  37363. extra: 3528/3408,
  37364. bottom: 0/3528
  37365. }
  37366. },
  37367. frontNsfw: {
  37368. height: math.unit(4 + 10/12, "feet"),
  37369. weight: math.unit(160, "lb"),
  37370. name: "Front (NSFW)",
  37371. image: {
  37372. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37373. extra: 3528/3408,
  37374. bottom: 0/3528
  37375. }
  37376. },
  37377. },
  37378. [
  37379. {
  37380. name: "Normal",
  37381. height: math.unit(4 + 10/12, "feet"),
  37382. default: true
  37383. },
  37384. ]
  37385. ))
  37386. characterMakers.push(() => makeCharacter(
  37387. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37388. {
  37389. side: {
  37390. height: math.unit(10, "feet"),
  37391. weight: math.unit(14000, "lb"),
  37392. name: "Side",
  37393. image: {
  37394. source: "./media/characters/kremm/side.svg",
  37395. extra: 1390/1053,
  37396. bottom: 90/1480
  37397. }
  37398. },
  37399. gut: {
  37400. height: math.unit(5.8, "feet"),
  37401. name: "Gut",
  37402. image: {
  37403. source: "./media/characters/kremm/gut.svg"
  37404. }
  37405. },
  37406. ass: {
  37407. height: math.unit(6.1, "feet"),
  37408. name: "Ass",
  37409. image: {
  37410. source: "./media/characters/kremm/ass.svg"
  37411. }
  37412. },
  37413. jaws: {
  37414. height: math.unit(2.2, "feet"),
  37415. name: "Jaws",
  37416. image: {
  37417. source: "./media/characters/kremm/jaws.svg"
  37418. }
  37419. },
  37420. dick: {
  37421. height: math.unit(4.26, "feet"),
  37422. name: "Dick",
  37423. image: {
  37424. source: "./media/characters/kremm/dick.svg"
  37425. }
  37426. },
  37427. },
  37428. [
  37429. {
  37430. name: "Normal",
  37431. height: math.unit(10, "feet"),
  37432. default: true
  37433. },
  37434. ]
  37435. ))
  37436. characterMakers.push(() => makeCharacter(
  37437. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37438. {
  37439. front: {
  37440. height: math.unit(30, "stories"),
  37441. name: "Front",
  37442. image: {
  37443. source: "./media/characters/kai/front.svg",
  37444. extra: 1892/1718,
  37445. bottom: 162/2054
  37446. }
  37447. },
  37448. },
  37449. [
  37450. {
  37451. name: "Macro",
  37452. height: math.unit(30, "stories"),
  37453. default: true
  37454. },
  37455. ]
  37456. ))
  37457. characterMakers.push(() => makeCharacter(
  37458. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37459. {
  37460. front: {
  37461. height: math.unit(6 + 4/12, "feet"),
  37462. weight: math.unit(145, "lb"),
  37463. name: "Front",
  37464. image: {
  37465. source: "./media/characters/sykes/front.svg",
  37466. extra: 1321 / 1187,
  37467. bottom: 66 / 1387
  37468. }
  37469. },
  37470. back: {
  37471. height: math.unit(6 + 4/12, "feet"),
  37472. weight: math.unit(145, "lb"),
  37473. name: "Back",
  37474. image: {
  37475. source: "./media/characters/sykes/back.svg",
  37476. extra: 1326/1181,
  37477. bottom: 31/1357
  37478. }
  37479. },
  37480. traditionalOutfit: {
  37481. height: math.unit(6 + 4/12, "feet"),
  37482. weight: math.unit(145, "lb"),
  37483. name: "Traditional Outfit",
  37484. image: {
  37485. source: "./media/characters/sykes/traditional-outfit.svg",
  37486. extra: 1321 / 1187,
  37487. bottom: 66 / 1387
  37488. }
  37489. },
  37490. adventureOutfit: {
  37491. height: math.unit(6 + 4/12, "feet"),
  37492. weight: math.unit(145, "lb"),
  37493. name: "Adventure Outfit",
  37494. image: {
  37495. source: "./media/characters/sykes/adventure-outfit.svg",
  37496. extra: 1321 / 1187,
  37497. bottom: 66 / 1387
  37498. }
  37499. },
  37500. handLeft: {
  37501. height: math.unit(0.9, "feet"),
  37502. name: "Hand (Left)",
  37503. image: {
  37504. source: "./media/characters/sykes/hand-left.svg"
  37505. }
  37506. },
  37507. handRight: {
  37508. height: math.unit(0.839, "feet"),
  37509. name: "Hand (Right)",
  37510. image: {
  37511. source: "./media/characters/sykes/hand-right.svg"
  37512. }
  37513. },
  37514. leftFoot: {
  37515. height: math.unit(1.2, "feet"),
  37516. name: "Foot (Left)",
  37517. image: {
  37518. source: "./media/characters/sykes/foot-left.svg"
  37519. }
  37520. },
  37521. rightFoot: {
  37522. height: math.unit(1.2, "feet"),
  37523. name: "Foot (Right)",
  37524. image: {
  37525. source: "./media/characters/sykes/foot-right.svg"
  37526. }
  37527. },
  37528. maw: {
  37529. height: math.unit(1.93, "feet"),
  37530. name: "Maw",
  37531. image: {
  37532. source: "./media/characters/sykes/maw.svg"
  37533. }
  37534. },
  37535. teeth: {
  37536. height: math.unit(0.51, "feet"),
  37537. name: "Teeth",
  37538. image: {
  37539. source: "./media/characters/sykes/teeth.svg"
  37540. }
  37541. },
  37542. tongue: {
  37543. height: math.unit(2.13, "feet"),
  37544. name: "Tongue",
  37545. image: {
  37546. source: "./media/characters/sykes/tongue.svg"
  37547. }
  37548. },
  37549. uvula: {
  37550. height: math.unit(0.16, "feet"),
  37551. name: "Uvula",
  37552. image: {
  37553. source: "./media/characters/sykes/uvula.svg"
  37554. }
  37555. },
  37556. collar: {
  37557. height: math.unit(0.287, "feet"),
  37558. name: "Collar",
  37559. image: {
  37560. source: "./media/characters/sykes/collar.svg"
  37561. }
  37562. },
  37563. tail: {
  37564. height: math.unit(3.8, "feet"),
  37565. name: "Tail",
  37566. image: {
  37567. source: "./media/characters/sykes/tail.svg"
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Shrunken",
  37574. height: math.unit(5, "inches")
  37575. },
  37576. {
  37577. name: "Normal",
  37578. height: math.unit(6 + 4 / 12, "feet"),
  37579. default: true
  37580. },
  37581. {
  37582. name: "Big",
  37583. height: math.unit(15, "feet")
  37584. },
  37585. ]
  37586. ))
  37587. characterMakers.push(() => makeCharacter(
  37588. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37589. {
  37590. front: {
  37591. height: math.unit(5 + 8/12, "feet"),
  37592. weight: math.unit(190, "lb"),
  37593. name: "Front",
  37594. image: {
  37595. source: "./media/characters/oven-otter/front.svg",
  37596. extra: 1809/1740,
  37597. bottom: 181/1990
  37598. }
  37599. },
  37600. back: {
  37601. height: math.unit(5 + 8/12, "feet"),
  37602. weight: math.unit(190, "lb"),
  37603. name: "Back",
  37604. image: {
  37605. source: "./media/characters/oven-otter/back.svg",
  37606. extra: 1709/1635,
  37607. bottom: 118/1827
  37608. }
  37609. },
  37610. hand: {
  37611. height: math.unit(1.07, "feet"),
  37612. name: "Hand",
  37613. image: {
  37614. source: "./media/characters/oven-otter/hand.svg"
  37615. }
  37616. },
  37617. beans: {
  37618. height: math.unit(1.74, "feet"),
  37619. name: "Beans",
  37620. image: {
  37621. source: "./media/characters/oven-otter/beans.svg"
  37622. }
  37623. },
  37624. },
  37625. [
  37626. {
  37627. name: "Micro",
  37628. height: math.unit(0.5, "inches")
  37629. },
  37630. {
  37631. name: "Normal",
  37632. height: math.unit(5 + 8/12, "feet"),
  37633. default: true
  37634. },
  37635. {
  37636. name: "Macro",
  37637. height: math.unit(250, "feet")
  37638. },
  37639. {
  37640. name: "Really High",
  37641. height: math.unit(420, "feet")
  37642. },
  37643. ]
  37644. ))
  37645. characterMakers.push(() => makeCharacter(
  37646. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37647. {
  37648. front: {
  37649. height: math.unit(5, "meters"),
  37650. weight: math.unit(292000000000000, "kg"),
  37651. name: "Front",
  37652. image: {
  37653. source: "./media/characters/devourer/front.svg",
  37654. extra: 1800/1733,
  37655. bottom: 211/2011
  37656. }
  37657. },
  37658. maw: {
  37659. height: math.unit(1.1, "meter"),
  37660. name: "Maw",
  37661. image: {
  37662. source: "./media/characters/devourer/maw.svg"
  37663. }
  37664. },
  37665. },
  37666. [
  37667. {
  37668. name: "Small",
  37669. height: math.unit(3, "meters")
  37670. },
  37671. {
  37672. name: "Large",
  37673. height: math.unit(5, "meters"),
  37674. default: true
  37675. },
  37676. {
  37677. name: "Macro",
  37678. height: math.unit(20, "meters")
  37679. },
  37680. ]
  37681. ))
  37682. characterMakers.push(() => makeCharacter(
  37683. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37684. {
  37685. front: {
  37686. height: math.unit(6, "feet"),
  37687. weight: math.unit(400, "lb"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/ellarby/front.svg",
  37691. extra: 1909/1763,
  37692. bottom: 80/1989
  37693. }
  37694. },
  37695. back: {
  37696. height: math.unit(6, "feet"),
  37697. weight: math.unit(400, "lb"),
  37698. name: "Back",
  37699. image: {
  37700. source: "./media/characters/ellarby/back.svg",
  37701. extra: 1914/1784,
  37702. bottom: 172/2086
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Mischief",
  37709. height: math.unit(18, "inches")
  37710. },
  37711. {
  37712. name: "Trouble",
  37713. height: math.unit(12, "feet")
  37714. },
  37715. {
  37716. name: "Havoc",
  37717. height: math.unit(200, "feet"),
  37718. default: true
  37719. },
  37720. {
  37721. name: "Pandemonium",
  37722. height: math.unit(1, "mile")
  37723. },
  37724. {
  37725. name: "Catastrophe",
  37726. height: math.unit(100, "miles")
  37727. },
  37728. ]
  37729. ))
  37730. characterMakers.push(() => makeCharacter(
  37731. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37732. {
  37733. front: {
  37734. height: math.unit(4.7, "meters"),
  37735. weight: math.unit(6500, "kg"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/vex/front.svg",
  37739. extra: 1288/1140,
  37740. bottom: 100/1388
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(4.7, "meters"),
  37748. default: true
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37754. {
  37755. normal: {
  37756. height: math.unit(6, "feet"),
  37757. weight: math.unit(350, "lb"),
  37758. name: "Normal",
  37759. image: {
  37760. source: "./media/characters/teshy/normal.svg",
  37761. extra: 1795/1735,
  37762. bottom: 16/1811
  37763. }
  37764. },
  37765. monsterFront: {
  37766. height: math.unit(12, "feet"),
  37767. weight: math.unit(4700, "lb"),
  37768. name: "Monster (Front)",
  37769. image: {
  37770. source: "./media/characters/teshy/monster-front.svg",
  37771. extra: 2042/2034,
  37772. bottom: 128/2170
  37773. }
  37774. },
  37775. monsterSide: {
  37776. height: math.unit(12, "feet"),
  37777. weight: math.unit(4700, "lb"),
  37778. name: "Monster (Side)",
  37779. image: {
  37780. source: "./media/characters/teshy/monster-side.svg",
  37781. extra: 2067/2056,
  37782. bottom: 70/2137
  37783. }
  37784. },
  37785. monsterBack: {
  37786. height: math.unit(12, "feet"),
  37787. weight: math.unit(4700, "lb"),
  37788. name: "Monster (Back)",
  37789. image: {
  37790. source: "./media/characters/teshy/monster-back.svg",
  37791. extra: 1921/1914,
  37792. bottom: 171/2092
  37793. }
  37794. },
  37795. },
  37796. [
  37797. {
  37798. name: "Normal",
  37799. height: math.unit(6, "feet"),
  37800. default: true
  37801. },
  37802. ]
  37803. ))
  37804. characterMakers.push(() => makeCharacter(
  37805. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37806. {
  37807. front: {
  37808. height: math.unit(6, "feet"),
  37809. name: "Front",
  37810. image: {
  37811. source: "./media/characters/ramey/front.svg",
  37812. extra: 790/787,
  37813. bottom: 27/817
  37814. }
  37815. },
  37816. },
  37817. [
  37818. {
  37819. name: "Normal",
  37820. height: math.unit(6, "feet"),
  37821. default: true
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(5 + 5/12, "feet"),
  37830. weight: math.unit(120, "lb"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/phirae/front.svg",
  37834. extra: 2491/2436,
  37835. bottom: 38/2529
  37836. }
  37837. },
  37838. },
  37839. [
  37840. {
  37841. name: "Normal",
  37842. height: math.unit(5 + 5/12, "feet"),
  37843. default: true
  37844. },
  37845. ]
  37846. ))
  37847. characterMakers.push(() => makeCharacter(
  37848. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37849. {
  37850. front: {
  37851. height: math.unit(5 + 3/12, "feet"),
  37852. name: "Front",
  37853. image: {
  37854. source: "./media/characters/stagglas/front.svg",
  37855. extra: 962/882,
  37856. bottom: 53/1015
  37857. }
  37858. },
  37859. feral: {
  37860. height: math.unit(335, "cm"),
  37861. name: "Feral",
  37862. image: {
  37863. source: "./media/characters/stagglas/feral.svg",
  37864. extra: 1732/1090,
  37865. bottom: 48/1780
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Normal",
  37872. height: math.unit(5 + 3/12, "feet"),
  37873. default: true
  37874. },
  37875. ]
  37876. ))
  37877. characterMakers.push(() => makeCharacter(
  37878. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37879. {
  37880. front: {
  37881. height: math.unit(5 + 4/12, "feet"),
  37882. weight: math.unit(145, "lb"),
  37883. name: "Front",
  37884. image: {
  37885. source: "./media/characters/starra/front.svg",
  37886. extra: 1790/1691,
  37887. bottom: 91/1881
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(5 + 4/12, "feet"),
  37895. default: true
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37901. {
  37902. front: {
  37903. height: math.unit(3.5, "meters"),
  37904. name: "Front",
  37905. image: {
  37906. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37907. extra: 1248/972,
  37908. bottom: 38/1286
  37909. }
  37910. },
  37911. },
  37912. [
  37913. {
  37914. name: "Normal",
  37915. height: math.unit(3.5, "meters"),
  37916. default: true
  37917. },
  37918. ]
  37919. ))
  37920. characterMakers.push(() => makeCharacter(
  37921. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37922. {
  37923. side: {
  37924. height: math.unit(8 + 2/12, "feet"),
  37925. weight: math.unit(1240, "lb"),
  37926. name: "Side",
  37927. image: {
  37928. source: "./media/characters/mika-valentine/side.svg",
  37929. extra: 2670/2501,
  37930. bottom: 250/2920
  37931. }
  37932. },
  37933. },
  37934. [
  37935. {
  37936. name: "Normal",
  37937. height: math.unit(8 + 2/12, "feet"),
  37938. default: true
  37939. },
  37940. ]
  37941. ))
  37942. characterMakers.push(() => makeCharacter(
  37943. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37944. {
  37945. front: {
  37946. height: math.unit(7 + 2/12, "feet"),
  37947. name: "Front",
  37948. image: {
  37949. source: "./media/characters/xoltol/front.svg",
  37950. extra: 2212/2124,
  37951. bottom: 84/2296
  37952. }
  37953. },
  37954. side: {
  37955. height: math.unit(7 + 2/12, "feet"),
  37956. name: "Side",
  37957. image: {
  37958. source: "./media/characters/xoltol/side.svg",
  37959. extra: 2273/2197,
  37960. bottom: 26/2299
  37961. }
  37962. },
  37963. hand: {
  37964. height: math.unit(2.5, "feet"),
  37965. name: "Hand",
  37966. image: {
  37967. source: "./media/characters/xoltol/hand.svg"
  37968. }
  37969. },
  37970. },
  37971. [
  37972. {
  37973. name: "Small-ish",
  37974. height: math.unit(5 + 11/12, "feet")
  37975. },
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(7 + 2/12, "feet")
  37979. },
  37980. {
  37981. name: "\"Macro\"",
  37982. height: math.unit(14 + 9/12, "feet"),
  37983. default: true
  37984. },
  37985. {
  37986. name: "Alternate Height",
  37987. height: math.unit(20, "feet")
  37988. },
  37989. {
  37990. name: "Actually Macro",
  37991. height: math.unit(100, "feet")
  37992. },
  37993. ]
  37994. ))
  37995. characterMakers.push(() => makeCharacter(
  37996. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37997. {
  37998. front: {
  37999. height: math.unit(5 + 2/12, "feet"),
  38000. weight: math.unit(75, "kg"),
  38001. name: "Front",
  38002. image: {
  38003. source: "./media/characters/kotetsu-redwood/front.svg",
  38004. extra: 1053/942,
  38005. bottom: 60/1113
  38006. }
  38007. },
  38008. },
  38009. [
  38010. {
  38011. name: "Normal",
  38012. height: math.unit(5 + 2/12, "feet"),
  38013. default: true
  38014. },
  38015. ]
  38016. ))
  38017. characterMakers.push(() => makeCharacter(
  38018. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  38019. {
  38020. front: {
  38021. height: math.unit(2.4, "meters"),
  38022. weight: math.unit(125, "kg"),
  38023. name: "Front",
  38024. image: {
  38025. source: "./media/characters/lilith/front.svg",
  38026. extra: 1590/1513,
  38027. bottom: 203/1793
  38028. }
  38029. },
  38030. },
  38031. [
  38032. {
  38033. name: "Humanoid",
  38034. height: math.unit(2.4, "meters")
  38035. },
  38036. {
  38037. name: "Normal",
  38038. height: math.unit(6, "meters"),
  38039. default: true
  38040. },
  38041. {
  38042. name: "Largest",
  38043. height: math.unit(55, "meters")
  38044. },
  38045. ]
  38046. ))
  38047. characterMakers.push(() => makeCharacter(
  38048. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  38049. {
  38050. front: {
  38051. height: math.unit(8 + 4/12, "feet"),
  38052. weight: math.unit(535, "lb"),
  38053. name: "Front",
  38054. image: {
  38055. source: "./media/characters/beh'kah-bolger/front.svg",
  38056. extra: 1660/1603,
  38057. bottom: 37/1697
  38058. }
  38059. },
  38060. },
  38061. [
  38062. {
  38063. name: "Normal",
  38064. height: math.unit(8 + 4/12, "feet"),
  38065. default: true
  38066. },
  38067. {
  38068. name: "Kaiju",
  38069. height: math.unit(250, "feet")
  38070. },
  38071. {
  38072. name: "Still Growing",
  38073. height: math.unit(10, "miles")
  38074. },
  38075. {
  38076. name: "Continental",
  38077. height: math.unit(5000, "miles")
  38078. },
  38079. {
  38080. name: "Final Form",
  38081. height: math.unit(2500000, "miles")
  38082. },
  38083. ]
  38084. ))
  38085. characterMakers.push(() => makeCharacter(
  38086. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  38087. {
  38088. front: {
  38089. height: math.unit(7 + 2/12, "feet"),
  38090. weight: math.unit(230, "kg"),
  38091. name: "Front",
  38092. image: {
  38093. source: "./media/characters/tatyana-milewska/front.svg",
  38094. extra: 1199/1150,
  38095. bottom: 86/1285
  38096. }
  38097. },
  38098. },
  38099. [
  38100. {
  38101. name: "Normal",
  38102. height: math.unit(7 + 2/12, "feet"),
  38103. default: true
  38104. },
  38105. {
  38106. name: "Big",
  38107. height: math.unit(12, "feet")
  38108. },
  38109. {
  38110. name: "Minimacro",
  38111. height: math.unit(20, "feet")
  38112. },
  38113. {
  38114. name: "Macro",
  38115. height: math.unit(120, "feet")
  38116. },
  38117. ]
  38118. ))
  38119. characterMakers.push(() => makeCharacter(
  38120. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  38121. {
  38122. front: {
  38123. height: math.unit(7 + 8/12, "feet"),
  38124. weight: math.unit(152, "kg"),
  38125. name: "Front",
  38126. image: {
  38127. source: "./media/characters/helen-arri/front.svg",
  38128. extra: 440/423,
  38129. bottom: 14/454
  38130. }
  38131. },
  38132. back: {
  38133. height: math.unit(7 + 8/12, "feet"),
  38134. weight: math.unit(152, "kg"),
  38135. name: "Back",
  38136. image: {
  38137. source: "./media/characters/helen-arri/back.svg",
  38138. extra: 443/426,
  38139. bottom: 8/451
  38140. }
  38141. },
  38142. },
  38143. [
  38144. {
  38145. name: "Normal",
  38146. height: math.unit(7 + 8/12, "feet"),
  38147. default: true
  38148. },
  38149. {
  38150. name: "Big",
  38151. height: math.unit(14, "feet")
  38152. },
  38153. {
  38154. name: "Minimacro",
  38155. height: math.unit(24, "feet")
  38156. },
  38157. {
  38158. name: "Macro",
  38159. height: math.unit(140, "feet")
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(6, "meters"),
  38168. name: "Front",
  38169. image: {
  38170. source: "./media/characters/ehanu-rehu/front.svg",
  38171. extra: 1800/1800,
  38172. bottom: 59/1859
  38173. }
  38174. },
  38175. },
  38176. [
  38177. {
  38178. name: "Normal",
  38179. height: math.unit(6, "meters"),
  38180. default: true
  38181. },
  38182. ]
  38183. ))
  38184. characterMakers.push(() => makeCharacter(
  38185. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38186. {
  38187. front: {
  38188. height: math.unit(7 + 3/12, "feet"),
  38189. name: "Front",
  38190. image: {
  38191. source: "./media/characters/renholder/front.svg",
  38192. extra: 3096/2960,
  38193. bottom: 250/3346
  38194. }
  38195. },
  38196. },
  38197. [
  38198. {
  38199. name: "Normal Bat",
  38200. height: math.unit(7 + 3/12, "feet"),
  38201. default: true
  38202. },
  38203. {
  38204. name: "Slightly Tall Bat",
  38205. height: math.unit(100, "feet")
  38206. },
  38207. {
  38208. name: "Big Bat",
  38209. height: math.unit(1000, "feet")
  38210. },
  38211. {
  38212. name: "City-Sized Bat",
  38213. height: math.unit(200000, "feet")
  38214. },
  38215. {
  38216. name: "Bigger Bat",
  38217. height: math.unit(10000, "miles")
  38218. },
  38219. {
  38220. name: "Solar Sized Bat",
  38221. height: math.unit(100, "AU")
  38222. },
  38223. {
  38224. name: "Galactic Bat",
  38225. height: math.unit(200000, "lightyears")
  38226. },
  38227. {
  38228. name: "Universally Known Bat",
  38229. height: math.unit(1, "universe")
  38230. },
  38231. ]
  38232. ))
  38233. characterMakers.push(() => makeCharacter(
  38234. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38235. {
  38236. front: {
  38237. height: math.unit(6 + 11/12, "feet"),
  38238. weight: math.unit(250, "lb"),
  38239. name: "Front",
  38240. image: {
  38241. source: "./media/characters/cookiecat/front.svg",
  38242. extra: 893/827,
  38243. bottom: 14/907
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Micro",
  38250. height: math.unit(3, "inches")
  38251. },
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(6 + 11/12, "feet"),
  38255. default: true
  38256. },
  38257. {
  38258. name: "Macro",
  38259. height: math.unit(100, "feet")
  38260. },
  38261. {
  38262. name: "Macro+",
  38263. height: math.unit(404, "feet")
  38264. },
  38265. {
  38266. name: "Megamacro",
  38267. height: math.unit(165, "miles")
  38268. },
  38269. {
  38270. name: "Planetary",
  38271. height: math.unit(4600, "miles")
  38272. },
  38273. ]
  38274. ))
  38275. characterMakers.push(() => makeCharacter(
  38276. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38277. {
  38278. front: {
  38279. height: math.unit(10 + 3/12, "feet"),
  38280. weight: math.unit(1500, "lb"),
  38281. name: "Front",
  38282. image: {
  38283. source: "./media/characters/tux-kusanagi/front.svg",
  38284. extra: 944/840,
  38285. bottom: 39/983
  38286. }
  38287. },
  38288. back: {
  38289. height: math.unit(10 + 3/12, "feet"),
  38290. weight: math.unit(1500, "lb"),
  38291. name: "Back",
  38292. image: {
  38293. source: "./media/characters/tux-kusanagi/back.svg",
  38294. extra: 941/842,
  38295. bottom: 28/969
  38296. }
  38297. },
  38298. rump: {
  38299. height: math.unit(5.25, "feet"),
  38300. name: "Rump",
  38301. image: {
  38302. source: "./media/characters/tux-kusanagi/rump.svg"
  38303. }
  38304. },
  38305. beak: {
  38306. height: math.unit(1.54, "feet"),
  38307. name: "Beak",
  38308. image: {
  38309. source: "./media/characters/tux-kusanagi/beak.svg"
  38310. }
  38311. },
  38312. },
  38313. [
  38314. {
  38315. name: "Normal",
  38316. height: math.unit(10 + 3/12, "feet"),
  38317. default: true
  38318. },
  38319. ]
  38320. ))
  38321. characterMakers.push(() => makeCharacter(
  38322. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38323. {
  38324. front: {
  38325. height: math.unit(58, "feet"),
  38326. weight: math.unit(200, "tons"),
  38327. name: "Front",
  38328. image: {
  38329. source: "./media/characters/uzarmazari/front.svg",
  38330. extra: 1575/1455,
  38331. bottom: 152/1727
  38332. }
  38333. },
  38334. back: {
  38335. height: math.unit(58, "feet"),
  38336. weight: math.unit(200, "tons"),
  38337. name: "Back",
  38338. image: {
  38339. source: "./media/characters/uzarmazari/back.svg",
  38340. extra: 1585/1510,
  38341. bottom: 157/1742
  38342. }
  38343. },
  38344. head: {
  38345. height: math.unit(26, "feet"),
  38346. name: "Head",
  38347. image: {
  38348. source: "./media/characters/uzarmazari/head.svg"
  38349. }
  38350. },
  38351. },
  38352. [
  38353. {
  38354. name: "Normal",
  38355. height: math.unit(58, "feet"),
  38356. default: true
  38357. },
  38358. ]
  38359. ))
  38360. characterMakers.push(() => makeCharacter(
  38361. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38362. {
  38363. side: {
  38364. height: math.unit(15, "feet"),
  38365. name: "Side",
  38366. image: {
  38367. source: "./media/characters/akitu/side.svg",
  38368. extra: 1421/1321,
  38369. bottom: 157/1578
  38370. }
  38371. },
  38372. front: {
  38373. height: math.unit(15, "feet"),
  38374. name: "Front",
  38375. image: {
  38376. source: "./media/characters/akitu/front.svg",
  38377. extra: 1435/1326,
  38378. bottom: 232/1667
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Normal",
  38385. height: math.unit(15, "feet"),
  38386. default: true
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(10 + 8/12, "feet"),
  38395. name: "Front",
  38396. image: {
  38397. source: "./media/characters/azalie-croixland/front.svg",
  38398. extra: 1972/1856,
  38399. bottom: 31/2003
  38400. }
  38401. },
  38402. },
  38403. [
  38404. {
  38405. name: "Original Height",
  38406. height: math.unit(5 + 4/12, "feet")
  38407. },
  38408. {
  38409. name: "Normal Height",
  38410. height: math.unit(10 + 8/12, "feet"),
  38411. default: true
  38412. },
  38413. ]
  38414. ))
  38415. characterMakers.push(() => makeCharacter(
  38416. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38417. {
  38418. side: {
  38419. height: math.unit(7 + 1/12, "feet"),
  38420. weight: math.unit(245, "lb"),
  38421. name: "Side",
  38422. image: {
  38423. source: "./media/characters/kavus-kazian/side.svg",
  38424. extra: 349/342,
  38425. bottom: 15/364
  38426. }
  38427. },
  38428. },
  38429. [
  38430. {
  38431. name: "Normal",
  38432. height: math.unit(7 + 1/12, "feet"),
  38433. default: true
  38434. },
  38435. ]
  38436. ))
  38437. characterMakers.push(() => makeCharacter(
  38438. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38439. {
  38440. normalFront: {
  38441. height: math.unit(5 + 11/12, "feet"),
  38442. name: "Front",
  38443. image: {
  38444. source: "./media/characters/moonlight-rose/normal-front.svg",
  38445. extra: 1980/1825,
  38446. bottom: 18/1998
  38447. },
  38448. form: "normal",
  38449. default: true
  38450. },
  38451. normalBack: {
  38452. height: math.unit(5 + 11/12, "feet"),
  38453. name: "Back",
  38454. image: {
  38455. source: "./media/characters/moonlight-rose/normal-back.svg",
  38456. extra: 2010/1839,
  38457. bottom: 10/2020
  38458. },
  38459. form: "normal"
  38460. },
  38461. demonFront: {
  38462. height: math.unit(1.5, "earths"),
  38463. name: "Front",
  38464. image: {
  38465. source: "./media/characters/moonlight-rose/demon.svg",
  38466. extra: 1400/1294,
  38467. bottom: 45/1445
  38468. },
  38469. form: "demon",
  38470. default: true
  38471. },
  38472. terraFront: {
  38473. height: math.unit(1.5, "earths"),
  38474. name: "Front",
  38475. image: {
  38476. source: "./media/characters/moonlight-rose/terra.svg"
  38477. },
  38478. form: "terra",
  38479. default: true
  38480. },
  38481. jupiterFront: {
  38482. height: math.unit(69911*2, "km"),
  38483. name: "Front",
  38484. image: {
  38485. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38486. extra: 1367/1286,
  38487. bottom: 55/1422
  38488. },
  38489. form: "jupiter",
  38490. default: true
  38491. },
  38492. neptuneFront: {
  38493. height: math.unit(24622*2, "feet"),
  38494. name: "Front",
  38495. image: {
  38496. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38497. extra: 1851/1712,
  38498. bottom: 0/1851
  38499. },
  38500. form: "neptune",
  38501. default: true
  38502. },
  38503. },
  38504. [
  38505. {
  38506. name: "\"Natural\" Height",
  38507. height: math.unit(5 + 11/12, "feet"),
  38508. form: "normal"
  38509. },
  38510. {
  38511. name: "Smallest comfortable size",
  38512. height: math.unit(40, "meters"),
  38513. form: "normal"
  38514. },
  38515. {
  38516. name: "Common size",
  38517. height: math.unit(50, "km"),
  38518. form: "normal",
  38519. default: true
  38520. },
  38521. {
  38522. name: "Normal",
  38523. height: math.unit(1.5, "earths"),
  38524. form: "demon",
  38525. default: true
  38526. },
  38527. {
  38528. name: "Universal",
  38529. height: math.unit(15, "universes"),
  38530. form: "demon"
  38531. },
  38532. {
  38533. name: "Earth",
  38534. height: math.unit(1.5, "earths"),
  38535. form: "terra",
  38536. default: true
  38537. },
  38538. {
  38539. name: "Super Earth",
  38540. height: math.unit(67.5, "earths"),
  38541. form: "terra"
  38542. },
  38543. {
  38544. name: "Doesn't fit in a solar system...",
  38545. height: math.unit(1, "galaxy"),
  38546. form: "terra"
  38547. },
  38548. {
  38549. name: "Saturn",
  38550. height: math.unit(58232*2, "km"),
  38551. form: "jupiter"
  38552. },
  38553. {
  38554. name: "Jupiter",
  38555. height: math.unit(69911*2, "km"),
  38556. form: "jupiter",
  38557. default: true
  38558. },
  38559. {
  38560. name: "HD 100546 b",
  38561. height: math.unit(482938, "km"),
  38562. form: "jupiter"
  38563. },
  38564. {
  38565. name: "Enceladus",
  38566. height: math.unit(513*2, "km"),
  38567. form: "neptune"
  38568. },
  38569. {
  38570. name: "Europe",
  38571. height: math.unit(1560*2, "km"),
  38572. form: "neptune"
  38573. },
  38574. {
  38575. name: "Neptune",
  38576. height: math.unit(24622*2, "km"),
  38577. form: "neptune",
  38578. default: true
  38579. },
  38580. {
  38581. name: "CoRoT-9b",
  38582. height: math.unit(75067*2, "km"),
  38583. form: "neptune"
  38584. },
  38585. ],
  38586. {
  38587. "normal": {
  38588. name: "Normal",
  38589. default: true
  38590. },
  38591. "demon": {
  38592. name: "Demon"
  38593. },
  38594. "terra": {
  38595. name: "Terra"
  38596. },
  38597. "jupiter": {
  38598. name: "Jupiter"
  38599. },
  38600. "neptune": {
  38601. name: "Neptune"
  38602. }
  38603. }
  38604. ))
  38605. characterMakers.push(() => makeCharacter(
  38606. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38607. {
  38608. front: {
  38609. height: math.unit(16, "feet"),
  38610. weight: math.unit(610, "kg"),
  38611. name: "Front",
  38612. image: {
  38613. source: "./media/characters/huckle/front.svg",
  38614. extra: 1731/1625,
  38615. bottom: 33/1764
  38616. }
  38617. },
  38618. back: {
  38619. height: math.unit(16, "feet"),
  38620. weight: math.unit(610, "kg"),
  38621. name: "Back",
  38622. image: {
  38623. source: "./media/characters/huckle/back.svg",
  38624. extra: 1738/1651,
  38625. bottom: 37/1775
  38626. }
  38627. },
  38628. laughing: {
  38629. height: math.unit(3.75, "feet"),
  38630. name: "Laughing",
  38631. image: {
  38632. source: "./media/characters/huckle/laughing.svg"
  38633. }
  38634. },
  38635. angry: {
  38636. height: math.unit(4.15, "feet"),
  38637. name: "Angry",
  38638. image: {
  38639. source: "./media/characters/huckle/angry.svg"
  38640. }
  38641. },
  38642. },
  38643. [
  38644. {
  38645. name: "Normal",
  38646. height: math.unit(16, "feet"),
  38647. default: true
  38648. },
  38649. {
  38650. name: "Mini Macro",
  38651. height: math.unit(463, "feet")
  38652. },
  38653. {
  38654. name: "Macro",
  38655. height: math.unit(1680, "meters")
  38656. },
  38657. {
  38658. name: "Mega Macro",
  38659. height: math.unit(175, "km")
  38660. },
  38661. {
  38662. name: "Terra Macro",
  38663. height: math.unit(32, "gigameters")
  38664. },
  38665. {
  38666. name: "Multiverse+",
  38667. height: math.unit(2.56e23, "yottameters")
  38668. },
  38669. ]
  38670. ))
  38671. characterMakers.push(() => makeCharacter(
  38672. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38673. {
  38674. front: {
  38675. height: math.unit(6 + 9/12, "feet"),
  38676. weight: math.unit(280, "lb"),
  38677. name: "Front",
  38678. image: {
  38679. source: "./media/characters/candy/front.svg",
  38680. extra: 234/217,
  38681. bottom: 11/245
  38682. }
  38683. },
  38684. },
  38685. [
  38686. {
  38687. name: "Really Small",
  38688. height: math.unit(0.1, "nm")
  38689. },
  38690. {
  38691. name: "Micro",
  38692. height: math.unit(2, "inches")
  38693. },
  38694. {
  38695. name: "Normal",
  38696. height: math.unit(6 + 9/12, "feet"),
  38697. default: true
  38698. },
  38699. {
  38700. name: "Small Macro",
  38701. height: math.unit(69, "feet")
  38702. },
  38703. {
  38704. name: "Macro",
  38705. height: math.unit(160, "feet")
  38706. },
  38707. {
  38708. name: "Megamacro",
  38709. height: math.unit(22000, "miles")
  38710. },
  38711. {
  38712. name: "Gigamacro",
  38713. height: math.unit(50000, "miles")
  38714. },
  38715. ]
  38716. ))
  38717. characterMakers.push(() => makeCharacter(
  38718. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38719. {
  38720. front: {
  38721. height: math.unit(4, "feet"),
  38722. weight: math.unit(90, "lb"),
  38723. name: "Front",
  38724. image: {
  38725. source: "./media/characters/joey-mcdonald/front.svg",
  38726. extra: 1059/852,
  38727. bottom: 33/1092
  38728. }
  38729. },
  38730. back: {
  38731. height: math.unit(4, "feet"),
  38732. weight: math.unit(90, "lb"),
  38733. name: "Back",
  38734. image: {
  38735. source: "./media/characters/joey-mcdonald/back.svg",
  38736. extra: 1077/879,
  38737. bottom: 5/1082
  38738. }
  38739. },
  38740. frontKobold: {
  38741. height: math.unit(4, "feet"),
  38742. weight: math.unit(100, "lb"),
  38743. name: "Front (Kobold)",
  38744. image: {
  38745. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38746. extra: 1480/1367,
  38747. bottom: 0/1480
  38748. }
  38749. },
  38750. backKobold: {
  38751. height: math.unit(4, "feet"),
  38752. weight: math.unit(100, "lb"),
  38753. name: "Back (Kobold)",
  38754. image: {
  38755. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38756. extra: 1449/1361,
  38757. bottom: 0/1449
  38758. }
  38759. },
  38760. },
  38761. [
  38762. {
  38763. name: "Normal",
  38764. height: math.unit(4, "feet"),
  38765. default: true
  38766. },
  38767. ]
  38768. ))
  38769. characterMakers.push(() => makeCharacter(
  38770. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38771. {
  38772. front: {
  38773. height: math.unit(12 + 6/12, "feet"),
  38774. name: "Front",
  38775. image: {
  38776. source: "./media/characters/kass-lockheed/front.svg",
  38777. extra: 354/343,
  38778. bottom: 9/363
  38779. }
  38780. },
  38781. back: {
  38782. height: math.unit(12 + 6/12, "feet"),
  38783. name: "Back",
  38784. image: {
  38785. source: "./media/characters/kass-lockheed/back.svg",
  38786. extra: 364/352,
  38787. bottom: 3/367
  38788. }
  38789. },
  38790. dick: {
  38791. height: math.unit(3.12, "feet"),
  38792. name: "Dick",
  38793. image: {
  38794. source: "./media/characters/kass-lockheed/dick.svg"
  38795. }
  38796. },
  38797. head: {
  38798. height: math.unit(2.6, "feet"),
  38799. name: "Head",
  38800. image: {
  38801. source: "./media/characters/kass-lockheed/head.svg"
  38802. }
  38803. },
  38804. bleh: {
  38805. height: math.unit(2.85, "feet"),
  38806. name: "Bleh",
  38807. image: {
  38808. source: "./media/characters/kass-lockheed/bleh.svg"
  38809. }
  38810. },
  38811. smug: {
  38812. height: math.unit(2.85, "feet"),
  38813. name: "Smug",
  38814. image: {
  38815. source: "./media/characters/kass-lockheed/smug.svg"
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Normal",
  38822. height: math.unit(12 + 6/12, "feet"),
  38823. default: true
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(6 + 2/12, "feet"),
  38832. name: "Front",
  38833. image: {
  38834. source: "./media/characters/taylor/front.svg",
  38835. extra: 639/495,
  38836. bottom: 12/651
  38837. }
  38838. },
  38839. },
  38840. [
  38841. {
  38842. name: "Normal",
  38843. height: math.unit(6 + 2/12, "feet"),
  38844. default: true
  38845. },
  38846. {
  38847. name: "Big",
  38848. height: math.unit(15, "feet")
  38849. },
  38850. {
  38851. name: "Lorg",
  38852. height: math.unit(80, "feet")
  38853. },
  38854. {
  38855. name: "Too Lorg",
  38856. height: math.unit(120, "feet")
  38857. },
  38858. ]
  38859. ))
  38860. characterMakers.push(() => makeCharacter(
  38861. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38862. {
  38863. front: {
  38864. height: math.unit(15, "feet"),
  38865. name: "Front",
  38866. image: {
  38867. source: "./media/characters/kaizer/front.svg",
  38868. extra: 1612/1436,
  38869. bottom: 43/1655
  38870. }
  38871. },
  38872. },
  38873. [
  38874. {
  38875. name: "Normal",
  38876. height: math.unit(15, "feet"),
  38877. default: true
  38878. },
  38879. ]
  38880. ))
  38881. characterMakers.push(() => makeCharacter(
  38882. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38883. {
  38884. front: {
  38885. height: math.unit(2, "feet"),
  38886. weight: math.unit(30, "lb"),
  38887. name: "Front",
  38888. image: {
  38889. source: "./media/characters/sandy/front.svg",
  38890. extra: 1439/1307,
  38891. bottom: 194/1633
  38892. }
  38893. },
  38894. },
  38895. [
  38896. {
  38897. name: "Normal",
  38898. height: math.unit(2, "feet"),
  38899. default: true
  38900. },
  38901. ]
  38902. ))
  38903. characterMakers.push(() => makeCharacter(
  38904. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38905. {
  38906. front: {
  38907. height: math.unit(3, "feet"),
  38908. name: "Front",
  38909. image: {
  38910. source: "./media/characters/mellvi/front.svg",
  38911. extra: 1831/1630,
  38912. bottom: 58/1889
  38913. }
  38914. },
  38915. },
  38916. [
  38917. {
  38918. name: "Normal",
  38919. height: math.unit(3, "feet"),
  38920. default: true
  38921. },
  38922. ]
  38923. ))
  38924. characterMakers.push(() => makeCharacter(
  38925. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38926. {
  38927. front: {
  38928. height: math.unit(5 + 11/12, "feet"),
  38929. weight: math.unit(200, "lb"),
  38930. name: "Front",
  38931. image: {
  38932. source: "./media/characters/shirou/front.svg",
  38933. extra: 2491/2383,
  38934. bottom: 189/2680
  38935. }
  38936. },
  38937. back: {
  38938. height: math.unit(5 + 11/12, "feet"),
  38939. weight: math.unit(200, "lb"),
  38940. name: "Back",
  38941. image: {
  38942. source: "./media/characters/shirou/back.svg",
  38943. extra: 2554/2450,
  38944. bottom: 76/2630
  38945. }
  38946. },
  38947. },
  38948. [
  38949. {
  38950. name: "Normal",
  38951. height: math.unit(5 + 11/12, "feet"),
  38952. default: true
  38953. },
  38954. ]
  38955. ))
  38956. characterMakers.push(() => makeCharacter(
  38957. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38958. {
  38959. front: {
  38960. height: math.unit(6 + 3/12, "feet"),
  38961. weight: math.unit(177, "lb"),
  38962. name: "Front",
  38963. image: {
  38964. source: "./media/characters/noryu/front.svg",
  38965. extra: 973/885,
  38966. bottom: 10/983
  38967. }
  38968. },
  38969. },
  38970. [
  38971. {
  38972. name: "Normal",
  38973. height: math.unit(6 + 3/12, "feet"),
  38974. default: true
  38975. },
  38976. ]
  38977. ))
  38978. characterMakers.push(() => makeCharacter(
  38979. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38980. {
  38981. front: {
  38982. height: math.unit(5 + 6/12, "feet"),
  38983. weight: math.unit(170, "lb"),
  38984. name: "Front",
  38985. image: {
  38986. source: "./media/characters/mevolas-rubenido/front.svg",
  38987. extra: 2109/1901,
  38988. bottom: 96/2205
  38989. }
  38990. },
  38991. },
  38992. [
  38993. {
  38994. name: "Normal",
  38995. height: math.unit(5 + 6/12, "feet"),
  38996. default: true
  38997. },
  38998. ]
  38999. ))
  39000. characterMakers.push(() => makeCharacter(
  39001. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  39002. {
  39003. front: {
  39004. height: math.unit(100, "feet"),
  39005. name: "Front",
  39006. image: {
  39007. source: "./media/characters/dee/front.svg",
  39008. extra: 2153/2036,
  39009. bottom: 59/2212
  39010. }
  39011. },
  39012. back: {
  39013. height: math.unit(100, "feet"),
  39014. name: "Back",
  39015. image: {
  39016. source: "./media/characters/dee/back.svg",
  39017. extra: 2183/2058,
  39018. bottom: 75/2258
  39019. }
  39020. },
  39021. foot: {
  39022. height: math.unit(19.43, "feet"),
  39023. name: "Foot",
  39024. image: {
  39025. source: "./media/characters/dee/foot.svg"
  39026. }
  39027. },
  39028. hoof: {
  39029. height: math.unit(20.6, "feet"),
  39030. name: "Hoof",
  39031. image: {
  39032. source: "./media/characters/dee/hoof.svg"
  39033. }
  39034. },
  39035. },
  39036. [
  39037. {
  39038. name: "Macro",
  39039. height: math.unit(100, "feet"),
  39040. default: true
  39041. },
  39042. ]
  39043. ))
  39044. characterMakers.push(() => makeCharacter(
  39045. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  39046. {
  39047. front: {
  39048. height: math.unit(5 + 6/12, "feet"),
  39049. name: "Front",
  39050. image: {
  39051. source: "./media/characters/teh/front.svg",
  39052. extra: 1002/847,
  39053. bottom: 62/1064
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(5 + 6/12, "feet"),
  39061. default: true
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  39067. {
  39068. side: {
  39069. height: math.unit(6 + 1/12, "feet"),
  39070. weight: math.unit(204, "lb"),
  39071. name: "Side",
  39072. image: {
  39073. source: "./media/characters/quicksilver-ayukoti/side.svg",
  39074. extra: 974/775,
  39075. bottom: 169/1143
  39076. }
  39077. },
  39078. sitting: {
  39079. height: math.unit(6 + 2/12, "feet"),
  39080. weight: math.unit(204, "lb"),
  39081. name: "Sitting",
  39082. image: {
  39083. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  39084. extra: 1175/964,
  39085. bottom: 378/1553
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "Normal",
  39092. height: math.unit(6 + 1/12, "feet"),
  39093. default: true
  39094. },
  39095. ]
  39096. ))
  39097. characterMakers.push(() => makeCharacter(
  39098. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  39099. {
  39100. front: {
  39101. height: math.unit(6, "inches"),
  39102. name: "Front",
  39103. image: {
  39104. source: "./media/characters/tululi/front.svg",
  39105. extra: 1997/1876,
  39106. bottom: 20/2017
  39107. }
  39108. },
  39109. },
  39110. [
  39111. {
  39112. name: "Normal",
  39113. height: math.unit(6, "inches"),
  39114. default: true
  39115. },
  39116. ]
  39117. ))
  39118. characterMakers.push(() => makeCharacter(
  39119. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  39120. {
  39121. front: {
  39122. height: math.unit(4 + 1/12, "feet"),
  39123. name: "Front",
  39124. image: {
  39125. source: "./media/characters/star/front.svg",
  39126. extra: 1493/1189,
  39127. bottom: 48/1541
  39128. }
  39129. },
  39130. },
  39131. [
  39132. {
  39133. name: "Normal",
  39134. height: math.unit(4 + 1/12, "feet"),
  39135. default: true
  39136. },
  39137. ]
  39138. ))
  39139. characterMakers.push(() => makeCharacter(
  39140. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  39141. {
  39142. front: {
  39143. height: math.unit(6 + 3/12, "feet"),
  39144. name: "Front",
  39145. image: {
  39146. source: "./media/characters/comet/front.svg",
  39147. extra: 1681/1462,
  39148. bottom: 26/1707
  39149. }
  39150. },
  39151. },
  39152. [
  39153. {
  39154. name: "Normal",
  39155. height: math.unit(6 + 3/12, "feet"),
  39156. default: true
  39157. },
  39158. ]
  39159. ))
  39160. characterMakers.push(() => makeCharacter(
  39161. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  39162. {
  39163. front: {
  39164. height: math.unit(950, "feet"),
  39165. name: "Front",
  39166. image: {
  39167. source: "./media/characters/vortex/front.svg",
  39168. extra: 1497/1434,
  39169. bottom: 56/1553
  39170. }
  39171. },
  39172. maw: {
  39173. height: math.unit(285, "feet"),
  39174. name: "Maw",
  39175. image: {
  39176. source: "./media/characters/vortex/maw.svg"
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Macro",
  39183. height: math.unit(950, "feet"),
  39184. default: true
  39185. },
  39186. ]
  39187. ))
  39188. characterMakers.push(() => makeCharacter(
  39189. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39190. {
  39191. front: {
  39192. height: math.unit(600, "feet"),
  39193. weight: math.unit(0.02, "grams"),
  39194. name: "Front",
  39195. image: {
  39196. source: "./media/characters/doodle/front.svg",
  39197. extra: 1578/1413,
  39198. bottom: 37/1615
  39199. }
  39200. },
  39201. },
  39202. [
  39203. {
  39204. name: "Macro",
  39205. height: math.unit(600, "feet"),
  39206. default: true
  39207. },
  39208. ]
  39209. ))
  39210. characterMakers.push(() => makeCharacter(
  39211. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39212. {
  39213. front: {
  39214. height: math.unit(6 + 6/12, "feet"),
  39215. name: "Front",
  39216. image: {
  39217. source: "./media/characters/jai/front.svg",
  39218. extra: 1645/1534,
  39219. bottom: 115/1760
  39220. }
  39221. },
  39222. },
  39223. [
  39224. {
  39225. name: "Normal",
  39226. height: math.unit(6 + 6/12, "feet"),
  39227. default: true
  39228. },
  39229. ]
  39230. ))
  39231. characterMakers.push(() => makeCharacter(
  39232. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39233. {
  39234. front: {
  39235. height: math.unit(6 + 8/12, "feet"),
  39236. name: "Front",
  39237. image: {
  39238. source: "./media/characters/pixel/front.svg",
  39239. extra: 1900/1735,
  39240. bottom: 63/1963
  39241. }
  39242. },
  39243. },
  39244. [
  39245. {
  39246. name: "Normal",
  39247. height: math.unit(6 + 8/12, "feet"),
  39248. default: true
  39249. },
  39250. ]
  39251. ))
  39252. characterMakers.push(() => makeCharacter(
  39253. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39254. {
  39255. back: {
  39256. height: math.unit(4 + 1/12, "feet"),
  39257. weight: math.unit(75, "lb"),
  39258. name: "Back",
  39259. image: {
  39260. source: "./media/characters/rhett/back.svg",
  39261. extra: 930/878,
  39262. bottom: 25/955
  39263. }
  39264. },
  39265. front: {
  39266. height: math.unit(4 + 1/12, "feet"),
  39267. weight: math.unit(75, "lb"),
  39268. name: "Front",
  39269. image: {
  39270. source: "./media/characters/rhett/front.svg",
  39271. extra: 1682/1586,
  39272. bottom: 92/1774
  39273. }
  39274. },
  39275. },
  39276. [
  39277. {
  39278. name: "Micro",
  39279. height: math.unit(8, "inches")
  39280. },
  39281. {
  39282. name: "Tiny",
  39283. height: math.unit(2, "feet")
  39284. },
  39285. {
  39286. name: "Normal",
  39287. height: math.unit(4 + 1/12, "feet"),
  39288. default: true
  39289. },
  39290. ]
  39291. ))
  39292. characterMakers.push(() => makeCharacter(
  39293. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39294. {
  39295. front: {
  39296. height: math.unit(3 + 3/12, "feet"),
  39297. name: "Front",
  39298. image: {
  39299. source: "./media/characters/penny/front.svg",
  39300. extra: 1406/1311,
  39301. bottom: 26/1432
  39302. }
  39303. },
  39304. },
  39305. [
  39306. {
  39307. name: "Normal",
  39308. height: math.unit(3 + 3/12, "feet"),
  39309. default: true
  39310. },
  39311. ]
  39312. ))
  39313. characterMakers.push(() => makeCharacter(
  39314. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39315. {
  39316. front: {
  39317. height: math.unit(4 + 11/12, "feet"),
  39318. name: "Front",
  39319. image: {
  39320. source: "./media/characters/monty/front.svg",
  39321. extra: 1479/1209,
  39322. bottom: 0/1479
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Normal",
  39329. height: math.unit(4 + 11/12, "feet"),
  39330. default: true
  39331. },
  39332. ]
  39333. ))
  39334. characterMakers.push(() => makeCharacter(
  39335. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39336. {
  39337. front: {
  39338. height: math.unit(8 + 4/12, "feet"),
  39339. name: "Front",
  39340. image: {
  39341. source: "./media/characters/sterling/front.svg",
  39342. extra: 1420/1236,
  39343. bottom: 27/1447
  39344. }
  39345. },
  39346. },
  39347. [
  39348. {
  39349. name: "Normal",
  39350. height: math.unit(8 + 4/12, "feet"),
  39351. default: true
  39352. },
  39353. ]
  39354. ))
  39355. characterMakers.push(() => makeCharacter(
  39356. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39357. {
  39358. front: {
  39359. height: math.unit(15, "feet"),
  39360. name: "Front",
  39361. image: {
  39362. source: "./media/characters/marble/front.svg",
  39363. extra: 973/937,
  39364. bottom: 32/1005
  39365. }
  39366. },
  39367. },
  39368. [
  39369. {
  39370. name: "Normal",
  39371. height: math.unit(15, "feet"),
  39372. default: true
  39373. },
  39374. ]
  39375. ))
  39376. characterMakers.push(() => makeCharacter(
  39377. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39378. {
  39379. front: {
  39380. height: math.unit(3, "inches"),
  39381. name: "Front",
  39382. image: {
  39383. source: "./media/characters/powder/front.svg",
  39384. extra: 1504/1334,
  39385. bottom: 518/2022
  39386. }
  39387. },
  39388. },
  39389. [
  39390. {
  39391. name: "Normal",
  39392. height: math.unit(3, "inches"),
  39393. default: true
  39394. },
  39395. ]
  39396. ))
  39397. characterMakers.push(() => makeCharacter(
  39398. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39399. {
  39400. front: {
  39401. height: math.unit(4 + 5/12, "feet"),
  39402. name: "Front",
  39403. image: {
  39404. source: "./media/characters/joey-raccoon/front.svg",
  39405. extra: 1273/1197,
  39406. bottom: 0/1273
  39407. }
  39408. },
  39409. },
  39410. [
  39411. {
  39412. name: "Normal",
  39413. height: math.unit(4 + 5/12, "feet"),
  39414. default: true
  39415. },
  39416. ]
  39417. ))
  39418. characterMakers.push(() => makeCharacter(
  39419. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39420. {
  39421. front: {
  39422. height: math.unit(8 + 4/12, "feet"),
  39423. name: "Front",
  39424. image: {
  39425. source: "./media/characters/vick/front.svg",
  39426. extra: 2187/2118,
  39427. bottom: 47/2234
  39428. }
  39429. },
  39430. },
  39431. [
  39432. {
  39433. name: "Normal",
  39434. height: math.unit(8 + 4/12, "feet"),
  39435. default: true
  39436. },
  39437. ]
  39438. ))
  39439. characterMakers.push(() => makeCharacter(
  39440. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39441. {
  39442. front: {
  39443. height: math.unit(5 + 5/12, "feet"),
  39444. name: "Front",
  39445. image: {
  39446. source: "./media/characters/mitsy/front.svg",
  39447. extra: 1842/1695,
  39448. bottom: 0/1842
  39449. }
  39450. },
  39451. },
  39452. [
  39453. {
  39454. name: "Normal",
  39455. height: math.unit(5 + 5/12, "feet"),
  39456. default: true
  39457. },
  39458. ]
  39459. ))
  39460. characterMakers.push(() => makeCharacter(
  39461. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39462. {
  39463. front: {
  39464. height: math.unit(6 + 3/12, "feet"),
  39465. name: "Front",
  39466. image: {
  39467. source: "./media/characters/silvy/front.svg",
  39468. extra: 1995/1836,
  39469. bottom: 225/2220
  39470. }
  39471. },
  39472. },
  39473. [
  39474. {
  39475. name: "Normal",
  39476. height: math.unit(6 + 3/12, "feet"),
  39477. default: true
  39478. },
  39479. ]
  39480. ))
  39481. characterMakers.push(() => makeCharacter(
  39482. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39483. {
  39484. front: {
  39485. height: math.unit(3 + 8/12, "feet"),
  39486. name: "Front",
  39487. image: {
  39488. source: "./media/characters/rodney/front.svg",
  39489. extra: 1956/1747,
  39490. bottom: 31/1987
  39491. }
  39492. },
  39493. frontDressed: {
  39494. height: math.unit(2.9, "feet"),
  39495. name: "Front (Dressed)",
  39496. image: {
  39497. source: "./media/characters/rodney/front-dressed.svg",
  39498. extra: 1382/1241,
  39499. bottom: 385/1767
  39500. }
  39501. },
  39502. },
  39503. [
  39504. {
  39505. name: "Normal",
  39506. height: math.unit(3 + 8/12, "feet"),
  39507. default: true
  39508. },
  39509. ]
  39510. ))
  39511. characterMakers.push(() => makeCharacter(
  39512. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39513. {
  39514. front: {
  39515. height: math.unit(5 + 9/12, "feet"),
  39516. weight: math.unit(194, "lbs"),
  39517. name: "Front",
  39518. image: {
  39519. source: "./media/characters/zakail-sudekai/front.svg",
  39520. extra: 2696/2533,
  39521. bottom: 248/2944
  39522. }
  39523. },
  39524. maw: {
  39525. height: math.unit(1.35, "feet"),
  39526. name: "Maw",
  39527. image: {
  39528. source: "./media/characters/zakail-sudekai/maw.svg"
  39529. }
  39530. },
  39531. },
  39532. [
  39533. {
  39534. name: "Normal",
  39535. height: math.unit(5 + 9/12, "feet"),
  39536. default: true
  39537. },
  39538. ]
  39539. ))
  39540. characterMakers.push(() => makeCharacter(
  39541. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39542. {
  39543. front: {
  39544. height: math.unit(8 + 4/12, "feet"),
  39545. weight: math.unit(1200, "lb"),
  39546. name: "Front",
  39547. image: {
  39548. source: "./media/characters/eleanor/front.svg",
  39549. extra: 1226/1192,
  39550. bottom: 52/1278
  39551. }
  39552. },
  39553. back: {
  39554. height: math.unit(8 + 4/12, "feet"),
  39555. weight: math.unit(1200, "lb"),
  39556. name: "Back",
  39557. image: {
  39558. source: "./media/characters/eleanor/back.svg",
  39559. extra: 1242/1184,
  39560. bottom: 60/1302
  39561. }
  39562. },
  39563. head: {
  39564. height: math.unit(2.62, "feet"),
  39565. name: "Head",
  39566. image: {
  39567. source: "./media/characters/eleanor/head.svg"
  39568. }
  39569. },
  39570. },
  39571. [
  39572. {
  39573. name: "Normal",
  39574. height: math.unit(8 + 4/12, "feet"),
  39575. default: true
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39581. {
  39582. front: {
  39583. height: math.unit(8 + 4/12, "feet"),
  39584. weight: math.unit(750, "lb"),
  39585. name: "Front",
  39586. image: {
  39587. source: "./media/characters/tanya/front.svg",
  39588. extra: 1749/1615,
  39589. bottom: 33/1782
  39590. }
  39591. },
  39592. },
  39593. [
  39594. {
  39595. name: "Normal",
  39596. height: math.unit(8 + 4/12, "feet"),
  39597. default: true
  39598. },
  39599. ]
  39600. ))
  39601. characterMakers.push(() => makeCharacter(
  39602. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39603. {
  39604. front: {
  39605. height: math.unit(5, "feet"),
  39606. weight: math.unit(225, "lb"),
  39607. name: "Front",
  39608. image: {
  39609. source: "./media/characters/cindy/front.svg",
  39610. extra: 1320/1250,
  39611. bottom: 42/1362
  39612. }
  39613. },
  39614. frontDressed: {
  39615. height: math.unit(5, "feet"),
  39616. weight: math.unit(225, "lb"),
  39617. name: "Front (Dressed)",
  39618. image: {
  39619. source: "./media/characters/cindy/front-dressed.svg",
  39620. extra: 1320/1250,
  39621. bottom: 42/1362
  39622. }
  39623. },
  39624. back: {
  39625. height: math.unit(5, "feet"),
  39626. weight: math.unit(225, "lb"),
  39627. name: "Back",
  39628. image: {
  39629. source: "./media/characters/cindy/back.svg",
  39630. extra: 1384/1346,
  39631. bottom: 14/1398
  39632. }
  39633. },
  39634. },
  39635. [
  39636. {
  39637. name: "Normal",
  39638. height: math.unit(5, "feet"),
  39639. default: true
  39640. },
  39641. ]
  39642. ))
  39643. characterMakers.push(() => makeCharacter(
  39644. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39645. {
  39646. front: {
  39647. height: math.unit(6 + 9/12, "feet"),
  39648. weight: math.unit(440, "lb"),
  39649. name: "Front",
  39650. image: {
  39651. source: "./media/characters/wilbur-owen/front.svg",
  39652. extra: 1575/1448,
  39653. bottom: 72/1647
  39654. }
  39655. },
  39656. back: {
  39657. height: math.unit(6 + 9/12, "feet"),
  39658. weight: math.unit(440, "lb"),
  39659. name: "Back",
  39660. image: {
  39661. source: "./media/characters/wilbur-owen/back.svg",
  39662. extra: 1578/1445,
  39663. bottom: 36/1614
  39664. }
  39665. },
  39666. },
  39667. [
  39668. {
  39669. name: "Normal",
  39670. height: math.unit(6 + 9/12, "feet"),
  39671. default: true
  39672. },
  39673. ]
  39674. ))
  39675. characterMakers.push(() => makeCharacter(
  39676. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39677. {
  39678. front: {
  39679. height: math.unit(6 + 5/12, "feet"),
  39680. weight: math.unit(650, "lb"),
  39681. name: "Front",
  39682. image: {
  39683. source: "./media/characters/keegan/front.svg",
  39684. extra: 2387/2198,
  39685. bottom: 33/2420
  39686. }
  39687. },
  39688. side: {
  39689. height: math.unit(6 + 5/12, "feet"),
  39690. weight: math.unit(650, "lb"),
  39691. name: "Side",
  39692. image: {
  39693. source: "./media/characters/keegan/side.svg",
  39694. extra: 2390/2202,
  39695. bottom: 47/2437
  39696. }
  39697. },
  39698. back: {
  39699. height: math.unit(6 + 5/12, "feet"),
  39700. weight: math.unit(650, "lb"),
  39701. name: "Back",
  39702. image: {
  39703. source: "./media/characters/keegan/back.svg",
  39704. extra: 2418/2268,
  39705. bottom: 15/2433
  39706. }
  39707. },
  39708. frontSfw: {
  39709. height: math.unit(6 + 5/12, "feet"),
  39710. weight: math.unit(650, "lb"),
  39711. name: "Front (SFW)",
  39712. image: {
  39713. source: "./media/characters/keegan/front-sfw.svg",
  39714. extra: 2387/2198,
  39715. bottom: 33/2420
  39716. }
  39717. },
  39718. beans: {
  39719. height: math.unit(1.85, "feet"),
  39720. name: "Beans",
  39721. image: {
  39722. source: "./media/characters/keegan/beans.svg"
  39723. }
  39724. },
  39725. },
  39726. [
  39727. {
  39728. name: "Normal",
  39729. height: math.unit(6 + 5/12, "feet"),
  39730. default: true
  39731. },
  39732. ]
  39733. ))
  39734. characterMakers.push(() => makeCharacter(
  39735. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39736. {
  39737. front: {
  39738. height: math.unit(9, "feet"),
  39739. name: "Front",
  39740. image: {
  39741. source: "./media/characters/colton/front.svg",
  39742. extra: 1589/1326,
  39743. bottom: 139/1728
  39744. }
  39745. },
  39746. },
  39747. [
  39748. {
  39749. name: "Normal",
  39750. height: math.unit(9, "feet"),
  39751. default: true
  39752. },
  39753. ]
  39754. ))
  39755. characterMakers.push(() => makeCharacter(
  39756. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39757. {
  39758. front: {
  39759. height: math.unit(2 + 9/12, "feet"),
  39760. name: "Front",
  39761. image: {
  39762. source: "./media/characters/bora/front.svg",
  39763. extra: 1265/1250,
  39764. bottom: 24/1289
  39765. }
  39766. },
  39767. },
  39768. [
  39769. {
  39770. name: "Normal",
  39771. height: math.unit(2 + 9/12, "feet"),
  39772. default: true
  39773. },
  39774. ]
  39775. ))
  39776. characterMakers.push(() => makeCharacter(
  39777. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39778. {
  39779. front: {
  39780. height: math.unit(8, "feet"),
  39781. name: "Front",
  39782. image: {
  39783. source: "./media/characters/myu-myu/front.svg",
  39784. extra: 1949/1857,
  39785. bottom: 90/2039
  39786. }
  39787. },
  39788. },
  39789. [
  39790. {
  39791. name: "Normal",
  39792. height: math.unit(8, "feet"),
  39793. default: true
  39794. },
  39795. {
  39796. name: "Big",
  39797. height: math.unit(15, "feet")
  39798. },
  39799. {
  39800. name: "BIG",
  39801. height: math.unit(25, "feet")
  39802. },
  39803. ]
  39804. ))
  39805. characterMakers.push(() => makeCharacter(
  39806. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39807. {
  39808. side: {
  39809. height: math.unit(7 + 5/12, "feet"),
  39810. weight: math.unit(2800, "lb"),
  39811. name: "Side",
  39812. image: {
  39813. source: "./media/characters/haloren/side.svg",
  39814. extra: 1793/409,
  39815. bottom: 59/1852
  39816. }
  39817. },
  39818. frontPaw: {
  39819. height: math.unit(2.36, "feet"),
  39820. name: "Front paw",
  39821. image: {
  39822. source: "./media/characters/haloren/front-paw.svg"
  39823. }
  39824. },
  39825. hindPaw: {
  39826. height: math.unit(3.18, "feet"),
  39827. name: "Hind paw",
  39828. image: {
  39829. source: "./media/characters/haloren/hind-paw.svg"
  39830. }
  39831. },
  39832. maw: {
  39833. height: math.unit(5.05, "feet"),
  39834. name: "Maw",
  39835. image: {
  39836. source: "./media/characters/haloren/maw.svg"
  39837. }
  39838. },
  39839. dick: {
  39840. height: math.unit(2.90, "feet"),
  39841. name: "Dick",
  39842. image: {
  39843. source: "./media/characters/haloren/dick.svg"
  39844. }
  39845. },
  39846. },
  39847. [
  39848. {
  39849. name: "Normal",
  39850. height: math.unit(7 + 5/12, "feet"),
  39851. default: true
  39852. },
  39853. {
  39854. name: "Enhanced",
  39855. height: math.unit(14 + 3/12, "feet")
  39856. },
  39857. ]
  39858. ))
  39859. characterMakers.push(() => makeCharacter(
  39860. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39861. {
  39862. front: {
  39863. height: math.unit(171, "cm"),
  39864. name: "Front",
  39865. image: {
  39866. source: "./media/characters/kimmy/front.svg",
  39867. extra: 1491/1435,
  39868. bottom: 53/1544
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Small",
  39875. height: math.unit(9, "cm")
  39876. },
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(171, "cm"),
  39880. default: true
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(8, "feet"),
  39889. weight: math.unit(300, "lb"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/galeboomer/front.svg",
  39893. extra: 4651/4415,
  39894. bottom: 162/4813
  39895. }
  39896. },
  39897. back: {
  39898. height: math.unit(8, "feet"),
  39899. weight: math.unit(300, "lb"),
  39900. name: "Back",
  39901. image: {
  39902. source: "./media/characters/galeboomer/back.svg",
  39903. extra: 4544/4314,
  39904. bottom: 16/4560
  39905. }
  39906. },
  39907. frontAlt: {
  39908. height: math.unit(8, "feet"),
  39909. weight: math.unit(300, "lb"),
  39910. name: "Front (Alt)",
  39911. image: {
  39912. source: "./media/characters/galeboomer/front-alt.svg",
  39913. extra: 4458/4228,
  39914. bottom: 68/4526
  39915. }
  39916. },
  39917. maw: {
  39918. height: math.unit(1.2, "feet"),
  39919. name: "Maw",
  39920. image: {
  39921. source: "./media/characters/galeboomer/maw.svg"
  39922. }
  39923. },
  39924. },
  39925. [
  39926. {
  39927. name: "Normal",
  39928. height: math.unit(8, "feet"),
  39929. default: true
  39930. },
  39931. ]
  39932. ))
  39933. characterMakers.push(() => makeCharacter(
  39934. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39935. {
  39936. front: {
  39937. height: math.unit(5 + 9/12, "feet"),
  39938. weight: math.unit(120, "lb"),
  39939. name: "Front",
  39940. image: {
  39941. source: "./media/characters/chyr/front.svg",
  39942. extra: 1323/1254,
  39943. bottom: 63/1386
  39944. }
  39945. },
  39946. back: {
  39947. height: math.unit(5 + 9/12, "feet"),
  39948. weight: math.unit(120, "lb"),
  39949. name: "Back",
  39950. image: {
  39951. source: "./media/characters/chyr/back.svg",
  39952. extra: 1323/1252,
  39953. bottom: 48/1371
  39954. }
  39955. },
  39956. },
  39957. [
  39958. {
  39959. name: "Normal",
  39960. height: math.unit(5 + 9/12, "feet"),
  39961. default: true
  39962. },
  39963. ]
  39964. ))
  39965. characterMakers.push(() => makeCharacter(
  39966. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39967. {
  39968. front: {
  39969. height: math.unit(7, "feet"),
  39970. weight: math.unit(310, "lb"),
  39971. name: "Front",
  39972. image: {
  39973. source: "./media/characters/solarus/front.svg",
  39974. extra: 2415/2021,
  39975. bottom: 103/2518
  39976. }
  39977. },
  39978. back: {
  39979. height: math.unit(7, "feet"),
  39980. weight: math.unit(310, "lb"),
  39981. name: "Back",
  39982. image: {
  39983. source: "./media/characters/solarus/back.svg",
  39984. extra: 2463/2089,
  39985. bottom: 79/2542
  39986. }
  39987. },
  39988. },
  39989. [
  39990. {
  39991. name: "Normal",
  39992. height: math.unit(7, "feet"),
  39993. default: true
  39994. },
  39995. ]
  39996. ))
  39997. characterMakers.push(() => makeCharacter(
  39998. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39999. {
  40000. front: {
  40001. height: math.unit(16, "feet"),
  40002. name: "Front",
  40003. image: {
  40004. source: "./media/characters/mutsuju-koizaemon/front.svg",
  40005. extra: 1844/1780,
  40006. bottom: 58/1902
  40007. }
  40008. },
  40009. winterCoat: {
  40010. height: math.unit(16, "feet"),
  40011. name: "Winter Coat",
  40012. image: {
  40013. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  40014. extra: 1807/1775,
  40015. bottom: 69/1876
  40016. }
  40017. },
  40018. },
  40019. [
  40020. {
  40021. name: "Normal",
  40022. height: math.unit(16, "feet"),
  40023. default: true
  40024. },
  40025. {
  40026. name: "Chicago Size",
  40027. height: math.unit(560, "feet")
  40028. },
  40029. ]
  40030. ))
  40031. characterMakers.push(() => makeCharacter(
  40032. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  40033. {
  40034. front: {
  40035. height: math.unit(11 + 6/12, "feet"),
  40036. weight: math.unit(1366, "lb"),
  40037. name: "Front",
  40038. image: {
  40039. source: "./media/characters/lexor/front.svg",
  40040. extra: 1560/1481,
  40041. bottom: 211/1771
  40042. }
  40043. },
  40044. back: {
  40045. height: math.unit(11 + 6/12, "feet"),
  40046. weight: math.unit(1366, "lb"),
  40047. name: "Back",
  40048. image: {
  40049. source: "./media/characters/lexor/back.svg",
  40050. extra: 1614/1533,
  40051. bottom: 76/1690
  40052. }
  40053. },
  40054. maw: {
  40055. height: math.unit(3, "feet"),
  40056. name: "Maw",
  40057. image: {
  40058. source: "./media/characters/lexor/maw.svg"
  40059. }
  40060. },
  40061. dick: {
  40062. height: math.unit(2.59, "feet"),
  40063. name: "Dick",
  40064. image: {
  40065. source: "./media/characters/lexor/dick.svg"
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Normal",
  40072. height: math.unit(11 + 6/12, "feet"),
  40073. default: true
  40074. },
  40075. ]
  40076. ))
  40077. characterMakers.push(() => makeCharacter(
  40078. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  40079. {
  40080. front: {
  40081. height: math.unit(5 + 8/12, "feet"),
  40082. name: "Front",
  40083. image: {
  40084. source: "./media/characters/magnum/front.svg",
  40085. extra: 942/855,
  40086. bottom: 26/968
  40087. }
  40088. },
  40089. },
  40090. [
  40091. {
  40092. name: "Normal",
  40093. height: math.unit(5 + 8/12, "feet"),
  40094. default: true
  40095. },
  40096. ]
  40097. ))
  40098. characterMakers.push(() => makeCharacter(
  40099. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  40100. {
  40101. front: {
  40102. height: math.unit(18 + 4/12, "feet"),
  40103. weight: math.unit(1500, "kg"),
  40104. name: "Front",
  40105. image: {
  40106. source: "./media/characters/solas-sharpsman/front.svg",
  40107. extra: 1698/1589,
  40108. bottom: 0/1698
  40109. }
  40110. },
  40111. },
  40112. [
  40113. {
  40114. name: "Normal",
  40115. height: math.unit(18 + 4/12, "feet"),
  40116. default: true
  40117. },
  40118. ]
  40119. ))
  40120. characterMakers.push(() => makeCharacter(
  40121. { name: "October", species: ["tiger"], tags: ["anthro"] },
  40122. {
  40123. front: {
  40124. height: math.unit(5 + 5/12, "feet"),
  40125. weight: math.unit(180, "lb"),
  40126. name: "Front",
  40127. image: {
  40128. source: "./media/characters/october/front.svg",
  40129. extra: 1800/1650,
  40130. bottom: 0/1800
  40131. }
  40132. },
  40133. frontNsfw: {
  40134. height: math.unit(5 + 5/12, "feet"),
  40135. weight: math.unit(180, "lb"),
  40136. name: "Front (NSFW)",
  40137. image: {
  40138. source: "./media/characters/october/front-nsfw.svg",
  40139. extra: 1392/1307,
  40140. bottom: 42/1434
  40141. }
  40142. },
  40143. },
  40144. [
  40145. {
  40146. name: "Normal",
  40147. height: math.unit(5 + 5/12, "feet"),
  40148. default: true
  40149. },
  40150. ]
  40151. ))
  40152. characterMakers.push(() => makeCharacter(
  40153. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  40154. {
  40155. front: {
  40156. height: math.unit(8 + 6/12, "feet"),
  40157. name: "Front",
  40158. image: {
  40159. source: "./media/characters/essynkardi/front.svg",
  40160. extra: 1541/1457,
  40161. bottom: 47/1588
  40162. }
  40163. },
  40164. },
  40165. [
  40166. {
  40167. name: "Normal",
  40168. height: math.unit(8 + 6/12, "feet"),
  40169. default: true
  40170. },
  40171. ]
  40172. ))
  40173. characterMakers.push(() => makeCharacter(
  40174. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  40175. {
  40176. front: {
  40177. height: math.unit(6 + 6/12, "feet"),
  40178. weight: math.unit(7, "lb"),
  40179. name: "Front",
  40180. image: {
  40181. source: "./media/characters/icky/front.svg",
  40182. extra: 813/782,
  40183. bottom: 66/879
  40184. }
  40185. },
  40186. back: {
  40187. height: math.unit(6 + 6/12, "feet"),
  40188. weight: math.unit(7, "lb"),
  40189. name: "Back",
  40190. image: {
  40191. source: "./media/characters/icky/back.svg",
  40192. extra: 754/735,
  40193. bottom: 56/810
  40194. }
  40195. },
  40196. },
  40197. [
  40198. {
  40199. name: "Normal",
  40200. height: math.unit(6 + 6/12, "feet"),
  40201. default: true
  40202. },
  40203. ]
  40204. ))
  40205. characterMakers.push(() => makeCharacter(
  40206. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40207. {
  40208. front: {
  40209. height: math.unit(15, "feet"),
  40210. name: "Front",
  40211. image: {
  40212. source: "./media/characters/rojas/front.svg",
  40213. extra: 1462/1408,
  40214. bottom: 95/1557
  40215. }
  40216. },
  40217. back: {
  40218. height: math.unit(15, "feet"),
  40219. name: "Back",
  40220. image: {
  40221. source: "./media/characters/rojas/back.svg",
  40222. extra: 1023/954,
  40223. bottom: 28/1051
  40224. }
  40225. },
  40226. },
  40227. [
  40228. {
  40229. name: "Normal",
  40230. height: math.unit(15, "feet"),
  40231. default: true
  40232. },
  40233. ]
  40234. ))
  40235. characterMakers.push(() => makeCharacter(
  40236. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40237. {
  40238. frontHuman: {
  40239. height: math.unit(5 + 7/12, "feet"),
  40240. name: "Front (Human)",
  40241. image: {
  40242. source: "./media/characters/alek-dryagan/front-human.svg",
  40243. extra: 1687/1667,
  40244. bottom: 69/1756
  40245. }
  40246. },
  40247. backHuman: {
  40248. height: math.unit(5 + 7/12, "feet"),
  40249. name: "Back (Human)",
  40250. image: {
  40251. source: "./media/characters/alek-dryagan/back-human.svg",
  40252. extra: 1670/1649,
  40253. bottom: 65/1735
  40254. }
  40255. },
  40256. frontDemi: {
  40257. height: math.unit(65, "feet"),
  40258. name: "Front (Demi)",
  40259. image: {
  40260. source: "./media/characters/alek-dryagan/front-demi.svg",
  40261. extra: 1669/1642,
  40262. bottom: 49/1718
  40263. }
  40264. },
  40265. backDemi: {
  40266. height: math.unit(65, "feet"),
  40267. name: "Back (Demi)",
  40268. image: {
  40269. source: "./media/characters/alek-dryagan/back-demi.svg",
  40270. extra: 1658/1637,
  40271. bottom: 40/1698
  40272. }
  40273. },
  40274. mawHuman: {
  40275. height: math.unit(0.3, "feet"),
  40276. name: "Maw (Human)",
  40277. image: {
  40278. source: "./media/characters/alek-dryagan/maw-human.svg"
  40279. }
  40280. },
  40281. mawDemi: {
  40282. height: math.unit(3.8, "feet"),
  40283. name: "Maw (Demi)",
  40284. image: {
  40285. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40286. }
  40287. },
  40288. },
  40289. [
  40290. {
  40291. name: "Normal",
  40292. height: math.unit(5 + 7/12, "feet"),
  40293. default: true
  40294. },
  40295. ]
  40296. ))
  40297. characterMakers.push(() => makeCharacter(
  40298. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40299. {
  40300. frontHuman: {
  40301. height: math.unit(5 + 2/12, "feet"),
  40302. name: "Front (Human)",
  40303. image: {
  40304. source: "./media/characters/gen/front-human.svg",
  40305. extra: 1627/1538,
  40306. bottom: 71/1698
  40307. }
  40308. },
  40309. backHuman: {
  40310. height: math.unit(5 + 2/12, "feet"),
  40311. name: "Back (Human)",
  40312. image: {
  40313. source: "./media/characters/gen/back-human.svg",
  40314. extra: 1638/1548,
  40315. bottom: 69/1707
  40316. }
  40317. },
  40318. frontDemi: {
  40319. height: math.unit(5 + 2/12, "feet"),
  40320. name: "Front (Demi)",
  40321. image: {
  40322. source: "./media/characters/gen/front-demi.svg",
  40323. extra: 1627/1538,
  40324. bottom: 71/1698
  40325. }
  40326. },
  40327. backDemi: {
  40328. height: math.unit(5 + 2/12, "feet"),
  40329. name: "Back (Demi)",
  40330. image: {
  40331. source: "./media/characters/gen/back-demi.svg",
  40332. extra: 1638/1548,
  40333. bottom: 69/1707
  40334. }
  40335. },
  40336. },
  40337. [
  40338. {
  40339. name: "Normal",
  40340. height: math.unit(5 + 2/12, "feet"),
  40341. default: true
  40342. },
  40343. ]
  40344. ))
  40345. characterMakers.push(() => makeCharacter(
  40346. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40347. {
  40348. frontImp: {
  40349. height: math.unit(1 + 11/12, "feet"),
  40350. name: "Front (Imp)",
  40351. image: {
  40352. source: "./media/characters/max-kobold/front-imp.svg",
  40353. extra: 1238/1134,
  40354. bottom: 81/1319
  40355. }
  40356. },
  40357. backImp: {
  40358. height: math.unit(1 + 11/12, "feet"),
  40359. name: "Back (Imp)",
  40360. image: {
  40361. source: "./media/characters/max-kobold/back-imp.svg",
  40362. extra: 1334/1175,
  40363. bottom: 34/1368
  40364. }
  40365. },
  40366. frontDemi: {
  40367. height: math.unit(5 + 9/12, "feet"),
  40368. name: "Front (Demi)",
  40369. image: {
  40370. source: "./media/characters/max-kobold/front-demi.svg",
  40371. extra: 1715/1685,
  40372. bottom: 54/1769
  40373. }
  40374. },
  40375. backDemi: {
  40376. height: math.unit(5 + 9/12, "feet"),
  40377. name: "Back (Demi)",
  40378. image: {
  40379. source: "./media/characters/max-kobold/back-demi.svg",
  40380. extra: 1752/1729,
  40381. bottom: 41/1793
  40382. }
  40383. },
  40384. handImp: {
  40385. height: math.unit(0.45, "feet"),
  40386. name: "Hand (Imp)",
  40387. image: {
  40388. source: "./media/characters/max-kobold/hand.svg"
  40389. }
  40390. },
  40391. pawImp: {
  40392. height: math.unit(0.46, "feet"),
  40393. name: "Paw (Imp)",
  40394. image: {
  40395. source: "./media/characters/max-kobold/paw.svg"
  40396. }
  40397. },
  40398. handDemi: {
  40399. height: math.unit(0.80, "feet"),
  40400. name: "Hand (Demi)",
  40401. image: {
  40402. source: "./media/characters/max-kobold/hand.svg"
  40403. }
  40404. },
  40405. pawDemi: {
  40406. height: math.unit(1.1, "feet"),
  40407. name: "Paw (Demi)",
  40408. image: {
  40409. source: "./media/characters/max-kobold/paw.svg"
  40410. }
  40411. },
  40412. headImp: {
  40413. height: math.unit(1.33, "feet"),
  40414. name: "Head (Imp)",
  40415. image: {
  40416. source: "./media/characters/max-kobold/head-imp.svg"
  40417. }
  40418. },
  40419. mawImp: {
  40420. height: math.unit(0.75, "feet"),
  40421. name: "Maw (Imp)",
  40422. image: {
  40423. source: "./media/characters/max-kobold/maw-imp.svg"
  40424. }
  40425. },
  40426. mawDemi: {
  40427. height: math.unit(0.42, "feet"),
  40428. name: "Maw (Demi)",
  40429. image: {
  40430. source: "./media/characters/max-kobold/maw-demi.svg"
  40431. }
  40432. },
  40433. },
  40434. [
  40435. {
  40436. name: "Normal",
  40437. height: math.unit(1 + 11/12, "feet"),
  40438. default: true
  40439. },
  40440. ]
  40441. ))
  40442. characterMakers.push(() => makeCharacter(
  40443. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40444. {
  40445. front: {
  40446. height: math.unit(7 + 5/12, "feet"),
  40447. name: "Front",
  40448. image: {
  40449. source: "./media/characters/carbon/front.svg",
  40450. extra: 1754/1689,
  40451. bottom: 65/1819
  40452. }
  40453. },
  40454. back: {
  40455. height: math.unit(7 + 5/12, "feet"),
  40456. name: "Back",
  40457. image: {
  40458. source: "./media/characters/carbon/back.svg",
  40459. extra: 1762/1695,
  40460. bottom: 24/1786
  40461. }
  40462. },
  40463. frontGigantamax: {
  40464. height: math.unit(150, "feet"),
  40465. name: "Front (Gigantamax)",
  40466. image: {
  40467. source: "./media/characters/carbon/front-gigantamax.svg",
  40468. extra: 1826/1669,
  40469. bottom: 59/1885
  40470. }
  40471. },
  40472. backGigantamax: {
  40473. height: math.unit(150, "feet"),
  40474. name: "Back (Gigantamax)",
  40475. image: {
  40476. source: "./media/characters/carbon/back-gigantamax.svg",
  40477. extra: 1796/1653,
  40478. bottom: 53/1849
  40479. }
  40480. },
  40481. maw: {
  40482. height: math.unit(0.48, "feet"),
  40483. name: "Maw",
  40484. image: {
  40485. source: "./media/characters/carbon/maw.svg"
  40486. }
  40487. },
  40488. mawGigantamax: {
  40489. height: math.unit(7.5, "feet"),
  40490. name: "Maw (Gigantamax)",
  40491. image: {
  40492. source: "./media/characters/carbon/maw-gigantamax.svg"
  40493. }
  40494. },
  40495. },
  40496. [
  40497. {
  40498. name: "Normal",
  40499. height: math.unit(7 + 5/12, "feet"),
  40500. default: true
  40501. },
  40502. ]
  40503. ))
  40504. characterMakers.push(() => makeCharacter(
  40505. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40506. {
  40507. front: {
  40508. height: math.unit(6, "feet"),
  40509. name: "Front",
  40510. image: {
  40511. source: "./media/characters/maverick/front.svg",
  40512. extra: 1672/1661,
  40513. bottom: 85/1757
  40514. }
  40515. },
  40516. back: {
  40517. height: math.unit(6, "feet"),
  40518. name: "Back",
  40519. image: {
  40520. source: "./media/characters/maverick/back.svg",
  40521. extra: 1642/1631,
  40522. bottom: 38/1680
  40523. }
  40524. },
  40525. },
  40526. [
  40527. {
  40528. name: "Normal",
  40529. height: math.unit(6, "feet"),
  40530. default: true
  40531. },
  40532. ]
  40533. ))
  40534. characterMakers.push(() => makeCharacter(
  40535. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40536. {
  40537. front: {
  40538. height: math.unit(15, "feet"),
  40539. weight: math.unit(615, "lb"),
  40540. name: "Front",
  40541. image: {
  40542. source: "./media/characters/grockle/front.svg",
  40543. extra: 1535/1427,
  40544. bottom: 56/1591
  40545. }
  40546. },
  40547. },
  40548. [
  40549. {
  40550. name: "Normal",
  40551. height: math.unit(15, "feet"),
  40552. default: true
  40553. },
  40554. {
  40555. name: "Large",
  40556. height: math.unit(150, "feet")
  40557. },
  40558. {
  40559. name: "Macro",
  40560. height: math.unit(1876, "feet")
  40561. },
  40562. {
  40563. name: "Mega Macro",
  40564. height: math.unit(121940, "feet")
  40565. },
  40566. {
  40567. name: "Giga Macro",
  40568. height: math.unit(750, "km")
  40569. },
  40570. {
  40571. name: "Tera Macro",
  40572. height: math.unit(750000, "km")
  40573. },
  40574. {
  40575. name: "Galactic",
  40576. height: math.unit(1.4e5, "km")
  40577. },
  40578. {
  40579. name: "Godlike",
  40580. height: math.unit(9.8e280, "galaxies")
  40581. },
  40582. ]
  40583. ))
  40584. characterMakers.push(() => makeCharacter(
  40585. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40586. {
  40587. front: {
  40588. height: math.unit(11, "meters"),
  40589. weight: math.unit(20, "tonnes"),
  40590. name: "Front",
  40591. image: {
  40592. source: "./media/characters/alistair/front.svg",
  40593. extra: 1265/1009,
  40594. bottom: 93/1358
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Normal",
  40601. height: math.unit(11, "meters"),
  40602. default: true
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40608. {
  40609. front: {
  40610. height: math.unit(5 + 8/12, "feet"),
  40611. name: "Front",
  40612. image: {
  40613. source: "./media/characters/haruka/front.svg",
  40614. extra: 2012/1952,
  40615. bottom: 0/2012
  40616. }
  40617. },
  40618. },
  40619. [
  40620. {
  40621. name: "Normal",
  40622. height: math.unit(5 + 8/12, "feet"),
  40623. default: true
  40624. },
  40625. ]
  40626. ))
  40627. characterMakers.push(() => makeCharacter(
  40628. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40629. {
  40630. back: {
  40631. height: math.unit(9, "feet"),
  40632. name: "Back",
  40633. image: {
  40634. source: "./media/characters/vivian-sylveon/back.svg",
  40635. extra: 1853/1714,
  40636. bottom: 0/1853
  40637. }
  40638. },
  40639. hyper: {
  40640. height: math.unit(5.58, "feet"),
  40641. name: "Hyper",
  40642. preyCapacity: math.unit(2.80616218797, "m^3"),
  40643. image: {
  40644. source: "./media/characters/vivian-sylveon/hyper.svg",
  40645. extra: 999/676,
  40646. bottom: 697/1696
  40647. },
  40648. },
  40649. paw: {
  40650. height: math.unit(1.8, "feet"),
  40651. name: "Paw",
  40652. image: {
  40653. source: "./media/characters/vivian-sylveon/paw.svg"
  40654. }
  40655. },
  40656. danger: {
  40657. height: math.unit(7.5, "feet"),
  40658. name: "DANGER",
  40659. image: {
  40660. source: "./media/characters/vivian-sylveon/danger.svg"
  40661. }
  40662. },
  40663. },
  40664. [
  40665. {
  40666. name: "Normal",
  40667. height: math.unit(10, "feet"),
  40668. default: true
  40669. },
  40670. {
  40671. name: "Macro",
  40672. height: math.unit(500, "feet")
  40673. },
  40674. {
  40675. name: "Megamacro",
  40676. height: math.unit(600, "miles")
  40677. },
  40678. {
  40679. name: "Gigamacro",
  40680. height: math.unit(30000, "miles")
  40681. },
  40682. ]
  40683. ))
  40684. characterMakers.push(() => makeCharacter(
  40685. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40686. {
  40687. anthro: {
  40688. height: math.unit(5 + 10/12, "feet"),
  40689. weight: math.unit(100, "lb"),
  40690. name: "Anthro",
  40691. image: {
  40692. source: "./media/characters/daiki/anthro.svg",
  40693. extra: 1115/1027,
  40694. bottom: 69/1184
  40695. }
  40696. },
  40697. feral: {
  40698. height: math.unit(200, "feet"),
  40699. name: "Feral",
  40700. image: {
  40701. source: "./media/characters/daiki/feral.svg",
  40702. extra: 1256/313,
  40703. bottom: 39/1295
  40704. }
  40705. },
  40706. feralHead: {
  40707. height: math.unit(171, "feet"),
  40708. name: "Feral Head",
  40709. image: {
  40710. source: "./media/characters/daiki/feral-head.svg"
  40711. }
  40712. },
  40713. manaDragon: {
  40714. height: math.unit(170, "meters"),
  40715. name: "Mana Dragon",
  40716. image: {
  40717. source: "./media/characters/daiki/mana-dragon.svg",
  40718. extra: 763/420,
  40719. bottom: 97/860
  40720. }
  40721. },
  40722. },
  40723. [
  40724. {
  40725. name: "Normal",
  40726. height: math.unit(5 + 10/12, "feet"),
  40727. default: true
  40728. },
  40729. ]
  40730. ))
  40731. characterMakers.push(() => makeCharacter(
  40732. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40733. {
  40734. fullyEquippedFront: {
  40735. height: math.unit(3 + 1/12, "feet"),
  40736. weight: math.unit(24, "lb"),
  40737. name: "Fully Equipped (Front)",
  40738. image: {
  40739. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40740. extra: 687/605,
  40741. bottom: 18/705
  40742. }
  40743. },
  40744. fullyEquippedBack: {
  40745. height: math.unit(3 + 1/12, "feet"),
  40746. weight: math.unit(24, "lb"),
  40747. name: "Fully Equipped (Back)",
  40748. image: {
  40749. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40750. extra: 689/590,
  40751. bottom: 18/707
  40752. }
  40753. },
  40754. dailyWear: {
  40755. height: math.unit(3 + 1/12, "feet"),
  40756. weight: math.unit(24, "lb"),
  40757. name: "Daily Wear",
  40758. image: {
  40759. source: "./media/characters/tea-spot/daily-wear.svg",
  40760. extra: 701/620,
  40761. bottom: 21/722
  40762. }
  40763. },
  40764. maidWork: {
  40765. height: math.unit(3 + 1/12, "feet"),
  40766. weight: math.unit(24, "lb"),
  40767. name: "Maid Work",
  40768. image: {
  40769. source: "./media/characters/tea-spot/maid-work.svg",
  40770. extra: 693/609,
  40771. bottom: 15/708
  40772. }
  40773. },
  40774. },
  40775. [
  40776. {
  40777. name: "Normal",
  40778. height: math.unit(3 + 1/12, "feet"),
  40779. default: true
  40780. },
  40781. ]
  40782. ))
  40783. characterMakers.push(() => makeCharacter(
  40784. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40785. {
  40786. front: {
  40787. height: math.unit(175, "cm"),
  40788. weight: math.unit(75, "kg"),
  40789. name: "Front",
  40790. image: {
  40791. source: "./media/characters/chee/front.svg",
  40792. extra: 1796/1740,
  40793. bottom: 40/1836
  40794. }
  40795. },
  40796. },
  40797. [
  40798. {
  40799. name: "Micro-Micro",
  40800. height: math.unit(1, "nm")
  40801. },
  40802. {
  40803. name: "Micro-erst",
  40804. height: math.unit(1, "micrometer")
  40805. },
  40806. {
  40807. name: "Micro-er",
  40808. height: math.unit(1, "cm")
  40809. },
  40810. {
  40811. name: "Normal",
  40812. height: math.unit(175, "cm"),
  40813. default: true
  40814. },
  40815. {
  40816. name: "Macro",
  40817. height: math.unit(100, "m")
  40818. },
  40819. {
  40820. name: "Macro-er",
  40821. height: math.unit(1, "km")
  40822. },
  40823. {
  40824. name: "Macro-erst",
  40825. height: math.unit(10, "km")
  40826. },
  40827. {
  40828. name: "Macro-Macro",
  40829. height: math.unit(100, "km")
  40830. },
  40831. ]
  40832. ))
  40833. characterMakers.push(() => makeCharacter(
  40834. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40835. {
  40836. front: {
  40837. height: math.unit(11 + 9/12, "feet"),
  40838. weight: math.unit(935, "lb"),
  40839. name: "Front",
  40840. image: {
  40841. source: "./media/characters/kingsley/front.svg",
  40842. extra: 1803/1674,
  40843. bottom: 127/1930
  40844. }
  40845. },
  40846. frontNude: {
  40847. height: math.unit(11 + 9/12, "feet"),
  40848. weight: math.unit(935, "lb"),
  40849. name: "Front (Nude)",
  40850. image: {
  40851. source: "./media/characters/kingsley/front-nude.svg",
  40852. extra: 1803/1674,
  40853. bottom: 127/1930
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "Normal",
  40860. height: math.unit(11 + 9/12, "feet"),
  40861. default: true
  40862. },
  40863. ]
  40864. ))
  40865. characterMakers.push(() => makeCharacter(
  40866. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40867. {
  40868. side: {
  40869. height: math.unit(9, "feet"),
  40870. name: "Side",
  40871. image: {
  40872. source: "./media/characters/rymel/side.svg",
  40873. extra: 792/469,
  40874. bottom: 121/913
  40875. }
  40876. },
  40877. maw: {
  40878. height: math.unit(2.4, "meters"),
  40879. name: "Maw",
  40880. image: {
  40881. source: "./media/characters/rymel/maw.svg"
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "House Drake",
  40888. height: math.unit(2, "feet")
  40889. },
  40890. {
  40891. name: "Reduced",
  40892. height: math.unit(4.5, "feet")
  40893. },
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(9, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(1.74, "meters"),
  40906. weight: math.unit(55, "kg"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/rubus/front.svg",
  40910. extra: 1894/1742,
  40911. bottom: 44/1938
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Normal",
  40918. height: math.unit(1.74, "meters"),
  40919. default: true
  40920. },
  40921. ]
  40922. ))
  40923. characterMakers.push(() => makeCharacter(
  40924. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40925. {
  40926. front: {
  40927. height: math.unit(5 + 2/12, "feet"),
  40928. weight: math.unit(112, "lb"),
  40929. name: "Front",
  40930. image: {
  40931. source: "./media/characters/cassie-kingston/front.svg",
  40932. extra: 1438/1390,
  40933. bottom: 47/1485
  40934. }
  40935. },
  40936. },
  40937. [
  40938. {
  40939. name: "Normal",
  40940. height: math.unit(5 + 2/12, "feet"),
  40941. default: true
  40942. },
  40943. {
  40944. name: "Macro",
  40945. height: math.unit(128, "feet")
  40946. },
  40947. {
  40948. name: "Megamacro",
  40949. height: math.unit(2.56, "miles")
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40955. {
  40956. front: {
  40957. height: math.unit(7, "feet"),
  40958. name: "Front",
  40959. image: {
  40960. source: "./media/characters/fox/front.svg",
  40961. extra: 1798/1703,
  40962. bottom: 55/1853
  40963. }
  40964. },
  40965. back: {
  40966. height: math.unit(7, "feet"),
  40967. name: "Back",
  40968. image: {
  40969. source: "./media/characters/fox/back.svg",
  40970. extra: 1748/1649,
  40971. bottom: 32/1780
  40972. }
  40973. },
  40974. head: {
  40975. height: math.unit(1.95, "feet"),
  40976. name: "Head",
  40977. image: {
  40978. source: "./media/characters/fox/head.svg"
  40979. }
  40980. },
  40981. dick: {
  40982. height: math.unit(1.33, "feet"),
  40983. name: "Dick",
  40984. image: {
  40985. source: "./media/characters/fox/dick.svg"
  40986. }
  40987. },
  40988. foot: {
  40989. height: math.unit(1, "feet"),
  40990. name: "Foot",
  40991. image: {
  40992. source: "./media/characters/fox/foot.svg"
  40993. }
  40994. },
  40995. paw: {
  40996. height: math.unit(0.92, "feet"),
  40997. name: "Paw",
  40998. image: {
  40999. source: "./media/characters/fox/paw.svg"
  41000. }
  41001. },
  41002. },
  41003. [
  41004. {
  41005. name: "Small",
  41006. height: math.unit(3, "inches")
  41007. },
  41008. {
  41009. name: "\"Realistic\"",
  41010. height: math.unit(7, "feet")
  41011. },
  41012. {
  41013. name: "Normal",
  41014. height: math.unit(150, "feet"),
  41015. default: true
  41016. },
  41017. {
  41018. name: "BIG",
  41019. height: math.unit(1200, "feet")
  41020. },
  41021. {
  41022. name: "👀",
  41023. height: math.unit(5, "miles")
  41024. },
  41025. {
  41026. name: "👀👀👀",
  41027. height: math.unit(64, "miles")
  41028. },
  41029. ]
  41030. ))
  41031. characterMakers.push(() => makeCharacter(
  41032. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  41033. {
  41034. front: {
  41035. height: math.unit(625, "feet"),
  41036. name: "Front",
  41037. image: {
  41038. source: "./media/characters/asonja-rossa/front.svg",
  41039. extra: 1833/1686,
  41040. bottom: 24/1857
  41041. }
  41042. },
  41043. back: {
  41044. height: math.unit(625, "feet"),
  41045. name: "Back",
  41046. image: {
  41047. source: "./media/characters/asonja-rossa/back.svg",
  41048. extra: 1852/1753,
  41049. bottom: 26/1878
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Macro",
  41056. height: math.unit(625, "feet"),
  41057. default: true
  41058. },
  41059. ]
  41060. ))
  41061. characterMakers.push(() => makeCharacter(
  41062. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  41063. {
  41064. side: {
  41065. height: math.unit(8, "feet"),
  41066. name: "Side",
  41067. image: {
  41068. source: "./media/characters/rezukii/side.svg",
  41069. extra: 979/542,
  41070. bottom: 87/1066
  41071. }
  41072. },
  41073. sitting: {
  41074. height: math.unit(14.6, "feet"),
  41075. name: "Sitting",
  41076. image: {
  41077. source: "./media/characters/rezukii/sitting.svg",
  41078. extra: 1023/813,
  41079. bottom: 45/1068
  41080. }
  41081. },
  41082. },
  41083. [
  41084. {
  41085. name: "Tiny",
  41086. height: math.unit(2, "feet")
  41087. },
  41088. {
  41089. name: "Smol",
  41090. height: math.unit(4, "feet")
  41091. },
  41092. {
  41093. name: "Normal",
  41094. height: math.unit(8, "feet"),
  41095. default: true
  41096. },
  41097. {
  41098. name: "Big",
  41099. height: math.unit(12, "feet")
  41100. },
  41101. {
  41102. name: "Macro",
  41103. height: math.unit(30, "feet")
  41104. },
  41105. ]
  41106. ))
  41107. characterMakers.push(() => makeCharacter(
  41108. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  41109. {
  41110. front: {
  41111. height: math.unit(14, "feet"),
  41112. weight: math.unit(9.5, "tonnes"),
  41113. name: "Front",
  41114. image: {
  41115. source: "./media/characters/dawnheart/front.svg",
  41116. extra: 2792/2675,
  41117. bottom: 64/2856
  41118. }
  41119. },
  41120. },
  41121. [
  41122. {
  41123. name: "Normal",
  41124. height: math.unit(14, "feet"),
  41125. default: true
  41126. },
  41127. ]
  41128. ))
  41129. characterMakers.push(() => makeCharacter(
  41130. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  41131. {
  41132. front: {
  41133. height: math.unit(1.7, "m"),
  41134. name: "Front",
  41135. image: {
  41136. source: "./media/characters/gladi/front.svg",
  41137. extra: 1460/1362,
  41138. bottom: 19/1479
  41139. }
  41140. },
  41141. back: {
  41142. height: math.unit(1.7, "m"),
  41143. name: "Back",
  41144. image: {
  41145. source: "./media/characters/gladi/back.svg",
  41146. extra: 1459/1357,
  41147. bottom: 12/1471
  41148. }
  41149. },
  41150. feral: {
  41151. height: math.unit(2.05, "m"),
  41152. name: "Feral",
  41153. image: {
  41154. source: "./media/characters/gladi/feral.svg",
  41155. extra: 821/557,
  41156. bottom: 91/912
  41157. }
  41158. },
  41159. },
  41160. [
  41161. {
  41162. name: "Shortest",
  41163. height: math.unit(70, "cm")
  41164. },
  41165. {
  41166. name: "Normal",
  41167. height: math.unit(1.7, "m")
  41168. },
  41169. {
  41170. name: "Macro",
  41171. height: math.unit(10, "m"),
  41172. default: true
  41173. },
  41174. {
  41175. name: "Tallest",
  41176. height: math.unit(200, "m")
  41177. },
  41178. ]
  41179. ))
  41180. characterMakers.push(() => makeCharacter(
  41181. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41182. {
  41183. front: {
  41184. height: math.unit(5 + 7/12, "feet"),
  41185. weight: math.unit(2, "tons"),
  41186. name: "Front",
  41187. image: {
  41188. source: "./media/characters/erdno/front.svg",
  41189. extra: 1234/1129,
  41190. bottom: 35/1269
  41191. }
  41192. },
  41193. angled: {
  41194. height: math.unit(5 + 7/12, "feet"),
  41195. weight: math.unit(2, "tons"),
  41196. name: "Angled",
  41197. image: {
  41198. source: "./media/characters/erdno/angled.svg",
  41199. extra: 1185/1139,
  41200. bottom: 36/1221
  41201. }
  41202. },
  41203. side: {
  41204. height: math.unit(5 + 7/12, "feet"),
  41205. weight: math.unit(2, "tons"),
  41206. name: "Side",
  41207. image: {
  41208. source: "./media/characters/erdno/side.svg",
  41209. extra: 1191/1144,
  41210. bottom: 40/1231
  41211. }
  41212. },
  41213. back: {
  41214. height: math.unit(5 + 7/12, "feet"),
  41215. weight: math.unit(2, "tons"),
  41216. name: "Back",
  41217. image: {
  41218. source: "./media/characters/erdno/back.svg",
  41219. extra: 1202/1146,
  41220. bottom: 17/1219
  41221. }
  41222. },
  41223. frontNsfw: {
  41224. height: math.unit(5 + 7/12, "feet"),
  41225. weight: math.unit(2, "tons"),
  41226. name: "Front (NSFW)",
  41227. image: {
  41228. source: "./media/characters/erdno/front-nsfw.svg",
  41229. extra: 1234/1129,
  41230. bottom: 35/1269
  41231. }
  41232. },
  41233. angledNsfw: {
  41234. height: math.unit(5 + 7/12, "feet"),
  41235. weight: math.unit(2, "tons"),
  41236. name: "Angled (NSFW)",
  41237. image: {
  41238. source: "./media/characters/erdno/angled-nsfw.svg",
  41239. extra: 1185/1139,
  41240. bottom: 36/1221
  41241. }
  41242. },
  41243. sideNsfw: {
  41244. height: math.unit(5 + 7/12, "feet"),
  41245. weight: math.unit(2, "tons"),
  41246. name: "Side (NSFW)",
  41247. image: {
  41248. source: "./media/characters/erdno/side-nsfw.svg",
  41249. extra: 1191/1144,
  41250. bottom: 40/1231
  41251. }
  41252. },
  41253. backNsfw: {
  41254. height: math.unit(5 + 7/12, "feet"),
  41255. weight: math.unit(2, "tons"),
  41256. name: "Back (NSFW)",
  41257. image: {
  41258. source: "./media/characters/erdno/back-nsfw.svg",
  41259. extra: 1202/1146,
  41260. bottom: 17/1219
  41261. }
  41262. },
  41263. frontHyper: {
  41264. height: math.unit(5 + 7/12, "feet"),
  41265. weight: math.unit(2, "tons"),
  41266. name: "Front (Hyper)",
  41267. image: {
  41268. source: "./media/characters/erdno/front-hyper.svg",
  41269. extra: 1298/1136,
  41270. bottom: 35/1333
  41271. }
  41272. },
  41273. },
  41274. [
  41275. {
  41276. name: "Normal",
  41277. height: math.unit(5 + 7/12, "feet"),
  41278. default: true
  41279. },
  41280. {
  41281. name: "Big",
  41282. height: math.unit(5.7, "meters")
  41283. },
  41284. {
  41285. name: "Macro",
  41286. height: math.unit(5.7, "kilometers")
  41287. },
  41288. {
  41289. name: "Megamacro",
  41290. height: math.unit(5.7, "earths")
  41291. },
  41292. ]
  41293. ))
  41294. characterMakers.push(() => makeCharacter(
  41295. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41296. {
  41297. front: {
  41298. height: math.unit(5 + 10/12, "feet"),
  41299. weight: math.unit(150, "lb"),
  41300. name: "Front",
  41301. image: {
  41302. source: "./media/characters/jamie/front.svg",
  41303. extra: 1908/1768,
  41304. bottom: 19/1927
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Minimum",
  41311. height: math.unit(2, "cm")
  41312. },
  41313. {
  41314. name: "Micro",
  41315. height: math.unit(3, "inches")
  41316. },
  41317. {
  41318. name: "Normal",
  41319. height: math.unit(5 + 10/12, "feet"),
  41320. default: true
  41321. },
  41322. {
  41323. name: "Macro",
  41324. height: math.unit(150, "feet")
  41325. },
  41326. {
  41327. name: "Megamacro",
  41328. height: math.unit(10000, "m")
  41329. },
  41330. ]
  41331. ))
  41332. characterMakers.push(() => makeCharacter(
  41333. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41334. {
  41335. front: {
  41336. height: math.unit(2, "meters"),
  41337. weight: math.unit(100, "kg"),
  41338. name: "Front",
  41339. image: {
  41340. source: "./media/characters/shiron/front.svg",
  41341. extra: 2103/1985,
  41342. bottom: 98/2201
  41343. }
  41344. },
  41345. back: {
  41346. height: math.unit(2, "meters"),
  41347. weight: math.unit(100, "kg"),
  41348. name: "Back",
  41349. image: {
  41350. source: "./media/characters/shiron/back.svg",
  41351. extra: 2110/2015,
  41352. bottom: 89/2199
  41353. }
  41354. },
  41355. hand: {
  41356. height: math.unit(0.96, "feet"),
  41357. name: "Hand",
  41358. image: {
  41359. source: "./media/characters/shiron/hand.svg"
  41360. }
  41361. },
  41362. foot: {
  41363. height: math.unit(1.464, "feet"),
  41364. name: "Foot",
  41365. image: {
  41366. source: "./media/characters/shiron/foot.svg"
  41367. }
  41368. },
  41369. },
  41370. [
  41371. {
  41372. name: "Normal",
  41373. height: math.unit(2, "meters")
  41374. },
  41375. {
  41376. name: "Macro",
  41377. height: math.unit(500, "meters"),
  41378. default: true
  41379. },
  41380. {
  41381. name: "Megamacro",
  41382. height: math.unit(20, "km")
  41383. },
  41384. ]
  41385. ))
  41386. characterMakers.push(() => makeCharacter(
  41387. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41388. {
  41389. front: {
  41390. height: math.unit(6, "feet"),
  41391. name: "Front",
  41392. image: {
  41393. source: "./media/characters/sam/front.svg",
  41394. extra: 849/826,
  41395. bottom: 19/868
  41396. }
  41397. },
  41398. },
  41399. [
  41400. {
  41401. name: "Normal",
  41402. height: math.unit(6, "feet"),
  41403. default: true
  41404. },
  41405. ]
  41406. ))
  41407. characterMakers.push(() => makeCharacter(
  41408. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41409. {
  41410. front: {
  41411. height: math.unit(8 + 4/12, "feet"),
  41412. weight: math.unit(122, "kg"),
  41413. name: "Front",
  41414. image: {
  41415. source: "./media/characters/namori-kurogawa/front.svg",
  41416. extra: 1894/1576,
  41417. bottom: 34/1928
  41418. }
  41419. },
  41420. },
  41421. [
  41422. {
  41423. name: "Normal",
  41424. height: math.unit(8 + 4/12, "feet"),
  41425. default: true
  41426. },
  41427. ]
  41428. ))
  41429. characterMakers.push(() => makeCharacter(
  41430. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41431. {
  41432. front: {
  41433. height: math.unit(9, "feet"),
  41434. weight: math.unit(621, "lb"),
  41435. name: "Front",
  41436. image: {
  41437. source: "./media/characters/unmru/front.svg",
  41438. extra: 1853/1747,
  41439. bottom: 73/1926
  41440. }
  41441. },
  41442. side: {
  41443. height: math.unit(9, "feet"),
  41444. weight: math.unit(621, "lb"),
  41445. name: "Side",
  41446. image: {
  41447. source: "./media/characters/unmru/side.svg",
  41448. extra: 1781/1671,
  41449. bottom: 127/1908
  41450. }
  41451. },
  41452. back: {
  41453. height: math.unit(9, "feet"),
  41454. weight: math.unit(621, "lb"),
  41455. name: "Back",
  41456. image: {
  41457. source: "./media/characters/unmru/back.svg",
  41458. extra: 1894/1765,
  41459. bottom: 75/1969
  41460. }
  41461. },
  41462. dick: {
  41463. height: math.unit(3, "feet"),
  41464. weight: math.unit(35, "lb"),
  41465. name: "Dick",
  41466. image: {
  41467. source: "./media/characters/unmru/dick.svg"
  41468. }
  41469. },
  41470. },
  41471. [
  41472. {
  41473. name: "Normal",
  41474. height: math.unit(9, "feet")
  41475. },
  41476. {
  41477. name: "Natural",
  41478. height: math.unit(27, "feet"),
  41479. default: true
  41480. },
  41481. {
  41482. name: "Giant",
  41483. height: math.unit(90, "feet")
  41484. },
  41485. {
  41486. name: "Kaiju",
  41487. height: math.unit(270, "feet")
  41488. },
  41489. {
  41490. name: "Macro",
  41491. height: math.unit(900, "feet")
  41492. },
  41493. {
  41494. name: "Macro+",
  41495. height: math.unit(2700, "feet")
  41496. },
  41497. {
  41498. name: "Megamacro",
  41499. height: math.unit(9000, "feet")
  41500. },
  41501. {
  41502. name: "City-Crushing",
  41503. height: math.unit(27000, "feet")
  41504. },
  41505. {
  41506. name: "Mountain-Mashing",
  41507. height: math.unit(90000, "feet")
  41508. },
  41509. {
  41510. name: "Earth-Eclipsing",
  41511. height: math.unit(2.7e8, "feet")
  41512. },
  41513. {
  41514. name: "Sol-Swallowing",
  41515. height: math.unit(9e10, "feet")
  41516. },
  41517. {
  41518. name: "Majoris-Munching",
  41519. height: math.unit(2.7e13, "feet")
  41520. },
  41521. ]
  41522. ))
  41523. characterMakers.push(() => makeCharacter(
  41524. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41525. {
  41526. front: {
  41527. height: math.unit(1, "inch"),
  41528. name: "Front",
  41529. image: {
  41530. source: "./media/characters/squeaks-mouse/front.svg",
  41531. extra: 352/308,
  41532. bottom: 25/377
  41533. }
  41534. },
  41535. },
  41536. [
  41537. {
  41538. name: "Micro",
  41539. height: math.unit(1, "inch"),
  41540. default: true
  41541. },
  41542. ]
  41543. ))
  41544. characterMakers.push(() => makeCharacter(
  41545. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41546. {
  41547. side: {
  41548. height: math.unit(35, "feet"),
  41549. name: "Side",
  41550. image: {
  41551. source: "./media/characters/sayko/side.svg",
  41552. extra: 1697/1021,
  41553. bottom: 82/1779
  41554. }
  41555. },
  41556. head: {
  41557. height: math.unit(16, "feet"),
  41558. name: "Head",
  41559. image: {
  41560. source: "./media/characters/sayko/head.svg"
  41561. }
  41562. },
  41563. forepaw: {
  41564. height: math.unit(7.85, "feet"),
  41565. name: "Forepaw",
  41566. image: {
  41567. source: "./media/characters/sayko/forepaw.svg"
  41568. }
  41569. },
  41570. hindpaw: {
  41571. height: math.unit(8.8, "feet"),
  41572. name: "Hindpaw",
  41573. image: {
  41574. source: "./media/characters/sayko/hindpaw.svg"
  41575. }
  41576. },
  41577. },
  41578. [
  41579. {
  41580. name: "Normal",
  41581. height: math.unit(35, "feet"),
  41582. default: true
  41583. },
  41584. {
  41585. name: "Colossus",
  41586. height: math.unit(100, "meters")
  41587. },
  41588. {
  41589. name: "\"Small\" Deity",
  41590. height: math.unit(1, "km")
  41591. },
  41592. {
  41593. name: "\"Large\" Deity",
  41594. height: math.unit(15, "km")
  41595. },
  41596. ]
  41597. ))
  41598. characterMakers.push(() => makeCharacter(
  41599. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41600. {
  41601. front: {
  41602. height: math.unit(6, "feet"),
  41603. weight: math.unit(250, "lb"),
  41604. name: "Front",
  41605. image: {
  41606. source: "./media/characters/mukiro/front.svg",
  41607. extra: 1368/1310,
  41608. bottom: 34/1402
  41609. }
  41610. },
  41611. },
  41612. [
  41613. {
  41614. name: "Normal",
  41615. height: math.unit(6, "feet"),
  41616. default: true
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41622. {
  41623. front: {
  41624. height: math.unit(12 + 4/12, "feet"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41628. extra: 1346/1311,
  41629. bottom: 65/1411
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Base",
  41636. height: math.unit(12 + 4/12, "feet"),
  41637. default: true
  41638. },
  41639. {
  41640. name: "Macro",
  41641. height: math.unit(150, "feet")
  41642. },
  41643. {
  41644. name: "Mega",
  41645. height: math.unit(2, "miles")
  41646. },
  41647. {
  41648. name: "Demi God",
  41649. height: math.unit(4, "AU")
  41650. },
  41651. {
  41652. name: "God Size",
  41653. height: math.unit(1, "universe")
  41654. },
  41655. ]
  41656. ))
  41657. characterMakers.push(() => makeCharacter(
  41658. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41659. {
  41660. front: {
  41661. height: math.unit(3 + 3/12, "feet"),
  41662. weight: math.unit(88, "lb"),
  41663. name: "Front",
  41664. image: {
  41665. source: "./media/characters/trey/front.svg",
  41666. extra: 1815/1509,
  41667. bottom: 60/1875
  41668. }
  41669. },
  41670. },
  41671. [
  41672. {
  41673. name: "Normal",
  41674. height: math.unit(3 + 3/12, "feet"),
  41675. default: true
  41676. },
  41677. ]
  41678. ))
  41679. characterMakers.push(() => makeCharacter(
  41680. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41681. {
  41682. front: {
  41683. height: math.unit(4, "meters"),
  41684. name: "Front",
  41685. image: {
  41686. source: "./media/characters/adelonda/front.svg",
  41687. extra: 1077/982,
  41688. bottom: 39/1116
  41689. }
  41690. },
  41691. back: {
  41692. height: math.unit(4, "meters"),
  41693. name: "Back",
  41694. image: {
  41695. source: "./media/characters/adelonda/back.svg",
  41696. extra: 1105/1003,
  41697. bottom: 25/1130
  41698. }
  41699. },
  41700. feral: {
  41701. height: math.unit(40/1.5, "meters"),
  41702. name: "Feral",
  41703. image: {
  41704. source: "./media/characters/adelonda/feral.svg",
  41705. extra: 597/271,
  41706. bottom: 387/984
  41707. }
  41708. },
  41709. },
  41710. [
  41711. {
  41712. name: "Normal",
  41713. height: math.unit(4, "meters"),
  41714. default: true
  41715. },
  41716. ]
  41717. ))
  41718. characterMakers.push(() => makeCharacter(
  41719. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41720. {
  41721. front: {
  41722. height: math.unit(8 + 4/12, "feet"),
  41723. weight: math.unit(670, "lb"),
  41724. name: "Front",
  41725. image: {
  41726. source: "./media/characters/acadiel/front.svg",
  41727. extra: 1901/1595,
  41728. bottom: 142/2043
  41729. }
  41730. },
  41731. },
  41732. [
  41733. {
  41734. name: "Normal",
  41735. height: math.unit(8 + 4/12, "feet"),
  41736. default: true
  41737. },
  41738. {
  41739. name: "Macro",
  41740. height: math.unit(200, "feet")
  41741. },
  41742. ]
  41743. ))
  41744. characterMakers.push(() => makeCharacter(
  41745. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41746. {
  41747. front: {
  41748. height: math.unit(6 + 2/12, "feet"),
  41749. weight: math.unit(185, "lb"),
  41750. name: "Front",
  41751. image: {
  41752. source: "./media/characters/kayne-ein/front.svg",
  41753. extra: 1780/1560,
  41754. bottom: 81/1861
  41755. }
  41756. },
  41757. },
  41758. [
  41759. {
  41760. name: "Normal",
  41761. height: math.unit(6 + 2/12, "feet"),
  41762. default: true
  41763. },
  41764. {
  41765. name: "Transformation Stage",
  41766. height: math.unit(15, "feet")
  41767. },
  41768. {
  41769. name: "Macro",
  41770. height: math.unit(150, "feet")
  41771. },
  41772. {
  41773. name: "Earth's Shadow",
  41774. height: math.unit(6200, "miles")
  41775. },
  41776. {
  41777. name: "Universal Demon",
  41778. height: math.unit(28e9, "parsecs")
  41779. },
  41780. {
  41781. name: "Multiverse God",
  41782. height: math.unit(3, "multiverses")
  41783. },
  41784. ]
  41785. ))
  41786. characterMakers.push(() => makeCharacter(
  41787. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41788. {
  41789. front: {
  41790. height: math.unit(5 + 5/12, "feet"),
  41791. name: "Front",
  41792. image: {
  41793. source: "./media/characters/fawn/front.svg",
  41794. extra: 1873/1731,
  41795. bottom: 95/1968
  41796. }
  41797. },
  41798. back: {
  41799. height: math.unit(5 + 5/12, "feet"),
  41800. name: "Back",
  41801. image: {
  41802. source: "./media/characters/fawn/back.svg",
  41803. extra: 1813/1700,
  41804. bottom: 14/1827
  41805. }
  41806. },
  41807. hoof: {
  41808. height: math.unit(1.45, "feet"),
  41809. name: "Hoof",
  41810. image: {
  41811. source: "./media/characters/fawn/hoof.svg"
  41812. }
  41813. },
  41814. },
  41815. [
  41816. {
  41817. name: "Normal",
  41818. height: math.unit(5 + 5/12, "feet"),
  41819. default: true
  41820. },
  41821. ]
  41822. ))
  41823. characterMakers.push(() => makeCharacter(
  41824. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41825. {
  41826. front: {
  41827. height: math.unit(2 + 5/12, "feet"),
  41828. name: "Front",
  41829. image: {
  41830. source: "./media/characters/orion/front.svg",
  41831. extra: 1366/1304,
  41832. bottom: 43/1409
  41833. }
  41834. },
  41835. paw: {
  41836. height: math.unit(0.52, "feet"),
  41837. name: "Paw",
  41838. image: {
  41839. source: "./media/characters/orion/paw.svg"
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "Normal",
  41846. height: math.unit(2 + 5/12, "feet"),
  41847. default: true
  41848. },
  41849. ]
  41850. ))
  41851. characterMakers.push(() => makeCharacter(
  41852. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41853. {
  41854. front: {
  41855. height: math.unit(5 + 10/12, "feet"),
  41856. name: "Front",
  41857. image: {
  41858. source: "./media/characters/vera/front.svg",
  41859. extra: 1680/1575,
  41860. bottom: 49/1729
  41861. }
  41862. },
  41863. back: {
  41864. height: math.unit(5 + 10/12, "feet"),
  41865. name: "Back",
  41866. image: {
  41867. source: "./media/characters/vera/back.svg",
  41868. extra: 1700/1588,
  41869. bottom: 18/1718
  41870. }
  41871. },
  41872. arcanine: {
  41873. height: math.unit(6 + 8/12, "feet"),
  41874. name: "Arcanine",
  41875. image: {
  41876. source: "./media/characters/vera/arcanine.svg",
  41877. extra: 1590/1511,
  41878. bottom: 71/1661
  41879. }
  41880. },
  41881. maw: {
  41882. height: math.unit(0.82, "feet"),
  41883. name: "Maw",
  41884. image: {
  41885. source: "./media/characters/vera/maw.svg"
  41886. }
  41887. },
  41888. mawArcanine: {
  41889. height: math.unit(0.97, "feet"),
  41890. name: "Maw (Arcanine)",
  41891. image: {
  41892. source: "./media/characters/vera/maw-arcanine.svg"
  41893. }
  41894. },
  41895. paw: {
  41896. height: math.unit(0.75, "feet"),
  41897. name: "Paw",
  41898. image: {
  41899. source: "./media/characters/vera/paw.svg"
  41900. }
  41901. },
  41902. pawprint: {
  41903. height: math.unit(0.52, "feet"),
  41904. name: "Pawprint",
  41905. image: {
  41906. source: "./media/characters/vera/pawprint.svg"
  41907. }
  41908. },
  41909. },
  41910. [
  41911. {
  41912. name: "Normal",
  41913. height: math.unit(5 + 10/12, "feet"),
  41914. default: true
  41915. },
  41916. {
  41917. name: "Macro",
  41918. height: math.unit(75, "feet")
  41919. },
  41920. ]
  41921. ))
  41922. characterMakers.push(() => makeCharacter(
  41923. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41924. {
  41925. front: {
  41926. height: math.unit(4, "feet"),
  41927. weight: math.unit(40, "lb"),
  41928. name: "Front",
  41929. image: {
  41930. source: "./media/characters/orvan-rabbit/front.svg",
  41931. extra: 1896/1642,
  41932. bottom: 29/1925
  41933. }
  41934. },
  41935. },
  41936. [
  41937. {
  41938. name: "Normal",
  41939. height: math.unit(4, "feet"),
  41940. default: true
  41941. },
  41942. ]
  41943. ))
  41944. characterMakers.push(() => makeCharacter(
  41945. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41946. {
  41947. front: {
  41948. height: math.unit(6, "feet"),
  41949. weight: math.unit(168, "lb"),
  41950. name: "Front",
  41951. image: {
  41952. source: "./media/characters/lisa/front.svg",
  41953. extra: 2065/1867,
  41954. bottom: 46/2111
  41955. }
  41956. },
  41957. back: {
  41958. height: math.unit(6, "feet"),
  41959. weight: math.unit(168, "lb"),
  41960. name: "Back",
  41961. image: {
  41962. source: "./media/characters/lisa/back.svg",
  41963. extra: 1982/1838,
  41964. bottom: 29/2011
  41965. }
  41966. },
  41967. maw: {
  41968. height: math.unit(0.81, "feet"),
  41969. name: "Maw",
  41970. image: {
  41971. source: "./media/characters/lisa/maw.svg"
  41972. }
  41973. },
  41974. paw: {
  41975. height: math.unit(0.9, "feet"),
  41976. name: "Paw",
  41977. image: {
  41978. source: "./media/characters/lisa/paw.svg"
  41979. }
  41980. },
  41981. caribousune: {
  41982. height: math.unit(7 + 2/12, "feet"),
  41983. weight: math.unit(268, "lb"),
  41984. name: "Caribousune",
  41985. image: {
  41986. source: "./media/characters/lisa/caribousune.svg",
  41987. extra: 1843/1633,
  41988. bottom: 29/1872
  41989. }
  41990. },
  41991. frontCaribousune: {
  41992. height: math.unit(7 + 2/12, "feet"),
  41993. weight: math.unit(268, "lb"),
  41994. name: "Front (Caribousune)",
  41995. image: {
  41996. source: "./media/characters/lisa/front-caribousune.svg",
  41997. extra: 1818/1638,
  41998. bottom: 52/1870
  41999. }
  42000. },
  42001. sideCaribousune: {
  42002. height: math.unit(7 + 2/12, "feet"),
  42003. weight: math.unit(268, "lb"),
  42004. name: "Side (Caribousune)",
  42005. image: {
  42006. source: "./media/characters/lisa/side-caribousune.svg",
  42007. extra: 1851/1635,
  42008. bottom: 16/1867
  42009. }
  42010. },
  42011. backCaribousune: {
  42012. height: math.unit(7 + 2/12, "feet"),
  42013. weight: math.unit(268, "lb"),
  42014. name: "Back (Caribousune)",
  42015. image: {
  42016. source: "./media/characters/lisa/back-caribousune.svg",
  42017. extra: 1801/1604,
  42018. bottom: 44/1845
  42019. }
  42020. },
  42021. caribou: {
  42022. height: math.unit(7 + 2/12, "feet"),
  42023. weight: math.unit(268, "lb"),
  42024. name: "Caribou",
  42025. image: {
  42026. source: "./media/characters/lisa/caribou.svg",
  42027. extra: 1843/1633,
  42028. bottom: 29/1872
  42029. }
  42030. },
  42031. frontCaribou: {
  42032. height: math.unit(7 + 2/12, "feet"),
  42033. weight: math.unit(268, "lb"),
  42034. name: "Front (Caribou)",
  42035. image: {
  42036. source: "./media/characters/lisa/front-caribou.svg",
  42037. extra: 1818/1638,
  42038. bottom: 52/1870
  42039. }
  42040. },
  42041. sideCaribou: {
  42042. height: math.unit(7 + 2/12, "feet"),
  42043. weight: math.unit(268, "lb"),
  42044. name: "Side (Caribou)",
  42045. image: {
  42046. source: "./media/characters/lisa/side-caribou.svg",
  42047. extra: 1851/1635,
  42048. bottom: 16/1867
  42049. }
  42050. },
  42051. backCaribou: {
  42052. height: math.unit(7 + 2/12, "feet"),
  42053. weight: math.unit(268, "lb"),
  42054. name: "Back (Caribou)",
  42055. image: {
  42056. source: "./media/characters/lisa/back-caribou.svg",
  42057. extra: 1801/1604,
  42058. bottom: 44/1845
  42059. }
  42060. },
  42061. mawCaribou: {
  42062. height: math.unit(1.45, "feet"),
  42063. name: "Maw (Caribou)",
  42064. image: {
  42065. source: "./media/characters/lisa/maw-caribou.svg"
  42066. }
  42067. },
  42068. mawCaribousune: {
  42069. height: math.unit(1.45, "feet"),
  42070. name: "Maw (Caribousune)",
  42071. image: {
  42072. source: "./media/characters/lisa/maw-caribousune.svg"
  42073. }
  42074. },
  42075. pawCaribousune: {
  42076. height: math.unit(1.61, "feet"),
  42077. name: "Paw (Caribou)",
  42078. image: {
  42079. source: "./media/characters/lisa/paw-caribousune.svg"
  42080. }
  42081. },
  42082. },
  42083. [
  42084. {
  42085. name: "Normal",
  42086. height: math.unit(6, "feet")
  42087. },
  42088. {
  42089. name: "God Size",
  42090. height: math.unit(72, "feet"),
  42091. default: true
  42092. },
  42093. {
  42094. name: "Towering",
  42095. height: math.unit(288, "feet")
  42096. },
  42097. {
  42098. name: "City Size",
  42099. height: math.unit(48384, "feet")
  42100. },
  42101. {
  42102. name: "Continental",
  42103. height: math.unit(4200, "miles")
  42104. },
  42105. {
  42106. name: "Planet Eater",
  42107. height: math.unit(42, "earths")
  42108. },
  42109. {
  42110. name: "Star Swallower",
  42111. height: math.unit(42, "solarradii")
  42112. },
  42113. {
  42114. name: "System Swallower",
  42115. height: math.unit(84000, "AU")
  42116. },
  42117. {
  42118. name: "Galaxy Gobbler",
  42119. height: math.unit(42, "galaxies")
  42120. },
  42121. {
  42122. name: "Universe Devourer",
  42123. height: math.unit(42, "universes")
  42124. },
  42125. {
  42126. name: "Multiverse Muncher",
  42127. height: math.unit(42, "multiverses")
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  42133. {
  42134. front: {
  42135. height: math.unit(36, "feet"),
  42136. name: "Front",
  42137. image: {
  42138. source: "./media/characters/shadow-rat/front.svg",
  42139. extra: 1845/1758,
  42140. bottom: 83/1928
  42141. }
  42142. },
  42143. },
  42144. [
  42145. {
  42146. name: "Macro",
  42147. height: math.unit(36, "feet"),
  42148. default: true
  42149. },
  42150. ]
  42151. ))
  42152. characterMakers.push(() => makeCharacter(
  42153. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  42154. {
  42155. side: {
  42156. height: math.unit(8, "feet"),
  42157. weight: math.unit(2630, "lb"),
  42158. name: "Side",
  42159. image: {
  42160. source: "./media/characters/torallia/side.svg",
  42161. extra: 2164/2021,
  42162. bottom: 371/2535
  42163. }
  42164. },
  42165. },
  42166. [
  42167. {
  42168. name: "Mortal Interaction",
  42169. height: math.unit(8, "feet")
  42170. },
  42171. {
  42172. name: "Natural",
  42173. height: math.unit(24, "feet"),
  42174. default: true
  42175. },
  42176. {
  42177. name: "Giant",
  42178. height: math.unit(80, "feet")
  42179. },
  42180. {
  42181. name: "Kaiju",
  42182. height: math.unit(240, "feet")
  42183. },
  42184. {
  42185. name: "Macro",
  42186. height: math.unit(800, "feet")
  42187. },
  42188. {
  42189. name: "Macro+",
  42190. height: math.unit(2400, "feet")
  42191. },
  42192. {
  42193. name: "Macro++",
  42194. height: math.unit(8000, "feet")
  42195. },
  42196. {
  42197. name: "City-Crushing",
  42198. height: math.unit(24000, "feet")
  42199. },
  42200. {
  42201. name: "Mountain-Mashing",
  42202. height: math.unit(80000, "feet")
  42203. },
  42204. {
  42205. name: "District Demolisher",
  42206. height: math.unit(240000, "feet")
  42207. },
  42208. {
  42209. name: "Tri-County Terror",
  42210. height: math.unit(800000, "feet")
  42211. },
  42212. {
  42213. name: "State Smasher",
  42214. height: math.unit(2.4e6, "feet")
  42215. },
  42216. {
  42217. name: "Nation Nemesis",
  42218. height: math.unit(8e6, "feet")
  42219. },
  42220. {
  42221. name: "Continent Cracker",
  42222. height: math.unit(2.4e7, "feet")
  42223. },
  42224. {
  42225. name: "Planet-Pillaging",
  42226. height: math.unit(8e7, "feet")
  42227. },
  42228. {
  42229. name: "Earth-Eclipsing",
  42230. height: math.unit(2.4e8, "feet")
  42231. },
  42232. {
  42233. name: "Jovian-Jostling",
  42234. height: math.unit(8e8, "feet")
  42235. },
  42236. {
  42237. name: "Gas Giant Gulper",
  42238. height: math.unit(2.4e9, "feet")
  42239. },
  42240. {
  42241. name: "Astral Annihilator",
  42242. height: math.unit(8e9, "feet")
  42243. },
  42244. {
  42245. name: "Celestial Conqueror",
  42246. height: math.unit(2.4e10, "feet")
  42247. },
  42248. {
  42249. name: "Sol-Swallowing",
  42250. height: math.unit(8e10, "feet")
  42251. },
  42252. {
  42253. name: "Hunter of the Heavens",
  42254. height: math.unit(2.4e13, "feet")
  42255. },
  42256. ]
  42257. ))
  42258. characterMakers.push(() => makeCharacter(
  42259. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42260. {
  42261. front: {
  42262. height: math.unit(10, "feet"),
  42263. weight: math.unit(844, "kilograms"),
  42264. name: "Front",
  42265. image: {
  42266. source: "./media/characters/rebecca-pawlson/front.svg",
  42267. extra: 1196/1099,
  42268. bottom: 81/1277
  42269. },
  42270. extraAttributes: {
  42271. "pawSize": {
  42272. name: "Paw Size",
  42273. power: 2,
  42274. type: "area",
  42275. base: math.unit(0.2 * 0.375, "meters^2")
  42276. },
  42277. "handSize": {
  42278. name: "Hand Size",
  42279. power: 2,
  42280. type: "area",
  42281. base: math.unit(0.2 * 0.35, "meters^2")
  42282. },
  42283. "breastDiameter": {
  42284. name: "Breast Diameter",
  42285. power: 1,
  42286. type: "length",
  42287. base: math.unit(0.5, "meters")
  42288. },
  42289. "breastVolume": {
  42290. name: "Breast Volume",
  42291. power: 3,
  42292. type: "volume",
  42293. base: math.unit(0.065, "m^3")
  42294. },
  42295. "breastMass": {
  42296. name: "Breast Mass",
  42297. power: 3,
  42298. type: "mass",
  42299. base: math.unit(65, "kg")
  42300. },
  42301. "nippleDiameter": {
  42302. name: "Nipple Diameter",
  42303. power: 1,
  42304. type: "length",
  42305. base: math.unit(0.1, "meters")
  42306. },
  42307. }
  42308. },
  42309. back: {
  42310. height: math.unit(10, "feet"),
  42311. weight: math.unit(844, "kilograms"),
  42312. name: "Back",
  42313. image: {
  42314. source: "./media/characters/rebecca-pawlson/back.svg",
  42315. extra: 879/776,
  42316. bottom: 43/922
  42317. },
  42318. extraAttributes: {
  42319. "pawSize": {
  42320. name: "Paw Size",
  42321. power: 2,
  42322. type: "area",
  42323. base: math.unit(0.2 * 0.375, "meters^2")
  42324. },
  42325. "handSize": {
  42326. name: "Hand Size",
  42327. power: 2,
  42328. type: "area",
  42329. base: math.unit(0.2 * 0.35, "meters^2")
  42330. },
  42331. "breastDiameter": {
  42332. name: "Breast Diameter",
  42333. power: 1,
  42334. type: "length",
  42335. base: math.unit(0.5, "meters")
  42336. },
  42337. "breastVolume": {
  42338. name: "Breast Volume",
  42339. power: 3,
  42340. type: "volume",
  42341. base: math.unit(0.065, "m^3")
  42342. },
  42343. "breastMass": {
  42344. name: "Breast Mass",
  42345. power: 3,
  42346. type: "mass",
  42347. base: math.unit(65, "kg")
  42348. },
  42349. "nippleDiameter": {
  42350. name: "Nipple Diameter",
  42351. power: 1,
  42352. type: "length",
  42353. base: math.unit(0.1, "meters")
  42354. },
  42355. }
  42356. },
  42357. },
  42358. [
  42359. {
  42360. name: "Normal",
  42361. height: math.unit(6 + 8/12, "feet")
  42362. },
  42363. {
  42364. name: "Mini Macro",
  42365. height: math.unit(10, "feet"),
  42366. default: true
  42367. },
  42368. {
  42369. name: "Macro",
  42370. height: math.unit(100, "feet")
  42371. },
  42372. {
  42373. name: "Mega Macro",
  42374. height: math.unit(2500, "feet")
  42375. },
  42376. {
  42377. name: "Giga Macro",
  42378. height: math.unit(50, "miles")
  42379. },
  42380. ]
  42381. ))
  42382. characterMakers.push(() => makeCharacter(
  42383. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42384. {
  42385. front: {
  42386. height: math.unit(7 + 6/12, "feet"),
  42387. weight: math.unit(600, "lb"),
  42388. name: "Front",
  42389. image: {
  42390. source: "./media/characters/moxie-nova/front.svg",
  42391. extra: 1734/1652,
  42392. bottom: 41/1775
  42393. }
  42394. },
  42395. },
  42396. [
  42397. {
  42398. name: "Normal",
  42399. height: math.unit(7 + 6/12, "feet"),
  42400. default: true
  42401. },
  42402. ]
  42403. ))
  42404. characterMakers.push(() => makeCharacter(
  42405. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42406. {
  42407. goat: {
  42408. height: math.unit(4, "feet"),
  42409. weight: math.unit(180, "lb"),
  42410. name: "Goat",
  42411. image: {
  42412. source: "./media/characters/tiffany/goat.svg",
  42413. extra: 1845/1595,
  42414. bottom: 106/1951
  42415. }
  42416. },
  42417. front: {
  42418. height: math.unit(5, "feet"),
  42419. weight: math.unit(150, "lb"),
  42420. name: "Foxcoon",
  42421. image: {
  42422. source: "./media/characters/tiffany/foxcoon.svg",
  42423. extra: 1941/1845,
  42424. bottom: 58/1999
  42425. }
  42426. },
  42427. },
  42428. [
  42429. {
  42430. name: "Normal",
  42431. height: math.unit(5, "feet"),
  42432. default: true
  42433. },
  42434. ]
  42435. ))
  42436. characterMakers.push(() => makeCharacter(
  42437. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42438. {
  42439. front: {
  42440. height: math.unit(8, "feet"),
  42441. weight: math.unit(300, "lb"),
  42442. name: "Front",
  42443. image: {
  42444. source: "./media/characters/raxinath/front.svg",
  42445. extra: 1407/1309,
  42446. bottom: 39/1446
  42447. }
  42448. },
  42449. back: {
  42450. height: math.unit(8, "feet"),
  42451. weight: math.unit(300, "lb"),
  42452. name: "Back",
  42453. image: {
  42454. source: "./media/characters/raxinath/back.svg",
  42455. extra: 1405/1315,
  42456. bottom: 9/1414
  42457. }
  42458. },
  42459. },
  42460. [
  42461. {
  42462. name: "Speck",
  42463. height: math.unit(0.5, "nm")
  42464. },
  42465. {
  42466. name: "Micro",
  42467. height: math.unit(3, "inches")
  42468. },
  42469. {
  42470. name: "Kobold",
  42471. height: math.unit(3, "feet")
  42472. },
  42473. {
  42474. name: "Normal",
  42475. height: math.unit(8, "feet"),
  42476. default: true
  42477. },
  42478. {
  42479. name: "Giant",
  42480. height: math.unit(50, "feet")
  42481. },
  42482. {
  42483. name: "Macro",
  42484. height: math.unit(1000, "feet")
  42485. },
  42486. {
  42487. name: "Megamacro",
  42488. height: math.unit(1, "mile")
  42489. },
  42490. ]
  42491. ))
  42492. characterMakers.push(() => makeCharacter(
  42493. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42494. {
  42495. front: {
  42496. height: math.unit(10, "feet"),
  42497. weight: math.unit(1442, "lb"),
  42498. name: "Front",
  42499. image: {
  42500. source: "./media/characters/mal-dragon/front.svg",
  42501. extra: 1515/1444,
  42502. bottom: 113/1628
  42503. }
  42504. },
  42505. back: {
  42506. height: math.unit(10, "feet"),
  42507. weight: math.unit(1442, "lb"),
  42508. name: "Back",
  42509. image: {
  42510. source: "./media/characters/mal-dragon/back.svg",
  42511. extra: 1527/1434,
  42512. bottom: 25/1552
  42513. }
  42514. },
  42515. },
  42516. [
  42517. {
  42518. name: "Mortal Interaction",
  42519. height: math.unit(10, "feet"),
  42520. default: true
  42521. },
  42522. {
  42523. name: "Large",
  42524. height: math.unit(30, "feet")
  42525. },
  42526. {
  42527. name: "Kaiju",
  42528. height: math.unit(300, "feet")
  42529. },
  42530. {
  42531. name: "Megamacro",
  42532. height: math.unit(10000, "feet")
  42533. },
  42534. {
  42535. name: "Continent Cracker",
  42536. height: math.unit(30000000, "feet")
  42537. },
  42538. {
  42539. name: "Sol-Swallowing",
  42540. height: math.unit(1e11, "feet")
  42541. },
  42542. {
  42543. name: "Light Universal",
  42544. height: math.unit(5, "universes")
  42545. },
  42546. {
  42547. name: "Universe Atoms",
  42548. height: math.unit(1.829e9, "universes")
  42549. },
  42550. {
  42551. name: "Light Multiversal",
  42552. height: math.unit(5, "multiverses")
  42553. },
  42554. {
  42555. name: "Multiverse Atoms",
  42556. height: math.unit(1.829e9, "multiverses")
  42557. },
  42558. {
  42559. name: "Fabric of Time",
  42560. height: math.unit(1e262, "multiverses")
  42561. },
  42562. ]
  42563. ))
  42564. characterMakers.push(() => makeCharacter(
  42565. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42566. {
  42567. front: {
  42568. height: math.unit(9, "feet"),
  42569. weight: math.unit(1050, "lb"),
  42570. name: "Front",
  42571. image: {
  42572. source: "./media/characters/tabitha/front.svg",
  42573. extra: 2083/1994,
  42574. bottom: 68/2151
  42575. }
  42576. },
  42577. },
  42578. [
  42579. {
  42580. name: "Baseline",
  42581. height: math.unit(9, "feet"),
  42582. default: true
  42583. },
  42584. {
  42585. name: "Giant",
  42586. height: math.unit(90, "feet")
  42587. },
  42588. {
  42589. name: "Macro",
  42590. height: math.unit(900, "feet")
  42591. },
  42592. {
  42593. name: "Megamacro",
  42594. height: math.unit(9000, "feet")
  42595. },
  42596. {
  42597. name: "City-Crushing",
  42598. height: math.unit(27000, "feet")
  42599. },
  42600. {
  42601. name: "Mountain-Mashing",
  42602. height: math.unit(90000, "feet")
  42603. },
  42604. {
  42605. name: "Nation Nemesis",
  42606. height: math.unit(9e6, "feet")
  42607. },
  42608. {
  42609. name: "Continent Cracker",
  42610. height: math.unit(27e6, "feet")
  42611. },
  42612. {
  42613. name: "Earth-Eclipsing",
  42614. height: math.unit(2.7e8, "feet")
  42615. },
  42616. {
  42617. name: "Gas Giant Gulper",
  42618. height: math.unit(2.7e9, "feet")
  42619. },
  42620. {
  42621. name: "Sol-Swallowing",
  42622. height: math.unit(9e10, "feet")
  42623. },
  42624. {
  42625. name: "Galaxy Gulper",
  42626. height: math.unit(9, "galaxies")
  42627. },
  42628. {
  42629. name: "Cosmos Churner",
  42630. height: math.unit(9, "universes")
  42631. },
  42632. ]
  42633. ))
  42634. characterMakers.push(() => makeCharacter(
  42635. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42636. {
  42637. front: {
  42638. height: math.unit(160, "cm"),
  42639. weight: math.unit(55, "kg"),
  42640. name: "Front",
  42641. image: {
  42642. source: "./media/characters/tow/front.svg",
  42643. extra: 1751/1722,
  42644. bottom: 74/1825
  42645. }
  42646. },
  42647. },
  42648. [
  42649. {
  42650. name: "Norm",
  42651. height: math.unit(160, "cm")
  42652. },
  42653. {
  42654. name: "Casual",
  42655. height: math.unit(3200, "m"),
  42656. default: true
  42657. },
  42658. {
  42659. name: "Show-Off",
  42660. height: math.unit(160, "km")
  42661. },
  42662. ]
  42663. ))
  42664. characterMakers.push(() => makeCharacter(
  42665. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42666. {
  42667. front: {
  42668. height: math.unit(7 + 11/12, "feet"),
  42669. weight: math.unit(342.8, "lb"),
  42670. name: "Front",
  42671. image: {
  42672. source: "./media/characters/vivian-orca-dragon/front.svg",
  42673. extra: 1890/1865,
  42674. bottom: 28/1918
  42675. }
  42676. },
  42677. },
  42678. [
  42679. {
  42680. name: "Micro",
  42681. height: math.unit(5, "inches")
  42682. },
  42683. {
  42684. name: "Normal",
  42685. height: math.unit(7 + 11/12, "feet"),
  42686. default: true
  42687. },
  42688. {
  42689. name: "Macro",
  42690. height: math.unit(395 + 7/12, "feet")
  42691. },
  42692. ]
  42693. ))
  42694. characterMakers.push(() => makeCharacter(
  42695. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42696. {
  42697. side: {
  42698. height: math.unit(10, "feet"),
  42699. weight: math.unit(1442, "lb"),
  42700. name: "Side",
  42701. image: {
  42702. source: "./media/characters/lotherakon/side.svg",
  42703. extra: 1604/1497,
  42704. bottom: 89/1693
  42705. }
  42706. },
  42707. },
  42708. [
  42709. {
  42710. name: "Mortal Interaction",
  42711. height: math.unit(10, "feet")
  42712. },
  42713. {
  42714. name: "Large",
  42715. height: math.unit(30, "feet"),
  42716. default: true
  42717. },
  42718. {
  42719. name: "Giant",
  42720. height: math.unit(100, "feet")
  42721. },
  42722. {
  42723. name: "Kaiju",
  42724. height: math.unit(300, "feet")
  42725. },
  42726. {
  42727. name: "Macro",
  42728. height: math.unit(1000, "feet")
  42729. },
  42730. {
  42731. name: "Macro+",
  42732. height: math.unit(3000, "feet")
  42733. },
  42734. {
  42735. name: "Megamacro",
  42736. height: math.unit(10000, "feet")
  42737. },
  42738. {
  42739. name: "City-Crushing",
  42740. height: math.unit(30000, "feet")
  42741. },
  42742. {
  42743. name: "Continent Cracker",
  42744. height: math.unit(30e6, "feet")
  42745. },
  42746. {
  42747. name: "Earth Eclipsing",
  42748. height: math.unit(3e8, "feet")
  42749. },
  42750. {
  42751. name: "Gas Giant Gulper",
  42752. height: math.unit(3e9, "feet")
  42753. },
  42754. {
  42755. name: "Sol-Swallowing",
  42756. height: math.unit(1e11, "feet")
  42757. },
  42758. {
  42759. name: "System Swallower",
  42760. height: math.unit(3e14, "feet")
  42761. },
  42762. {
  42763. name: "Galaxy Gulper",
  42764. height: math.unit(10, "galaxies")
  42765. },
  42766. {
  42767. name: "Light Universal",
  42768. height: math.unit(5, "universes")
  42769. },
  42770. {
  42771. name: "Universe Palm",
  42772. height: math.unit(20, "universes")
  42773. },
  42774. {
  42775. name: "Light Multiversal",
  42776. height: math.unit(5, "multiverses")
  42777. },
  42778. {
  42779. name: "Multiverse Palm",
  42780. height: math.unit(20, "multiverses")
  42781. },
  42782. {
  42783. name: "Inferno Incarnate",
  42784. height: math.unit(1e7, "multiverses")
  42785. },
  42786. ]
  42787. ))
  42788. characterMakers.push(() => makeCharacter(
  42789. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42790. {
  42791. front: {
  42792. height: math.unit(8, "feet"),
  42793. weight: math.unit(1200, "lb"),
  42794. name: "Front",
  42795. image: {
  42796. source: "./media/characters/malithee/front.svg",
  42797. extra: 1675/1640,
  42798. bottom: 162/1837
  42799. }
  42800. },
  42801. },
  42802. [
  42803. {
  42804. name: "Mortal Interaction",
  42805. height: math.unit(8, "feet"),
  42806. default: true
  42807. },
  42808. {
  42809. name: "Large",
  42810. height: math.unit(24, "feet")
  42811. },
  42812. {
  42813. name: "Kaiju",
  42814. height: math.unit(240, "feet")
  42815. },
  42816. {
  42817. name: "Megamacro",
  42818. height: math.unit(8000, "feet")
  42819. },
  42820. {
  42821. name: "Continent Cracker",
  42822. height: math.unit(24e6, "feet")
  42823. },
  42824. {
  42825. name: "Earth-Eclipsing",
  42826. height: math.unit(2.4e8, "feet")
  42827. },
  42828. {
  42829. name: "Sol-Swallowing",
  42830. height: math.unit(8e10, "feet")
  42831. },
  42832. {
  42833. name: "Galaxy Gulper",
  42834. height: math.unit(8, "galaxies")
  42835. },
  42836. {
  42837. name: "Light Universal",
  42838. height: math.unit(4, "universes")
  42839. },
  42840. {
  42841. name: "Universe Atoms",
  42842. height: math.unit(1.829e9, "universes")
  42843. },
  42844. {
  42845. name: "Light Multiversal",
  42846. height: math.unit(4, "multiverses")
  42847. },
  42848. {
  42849. name: "Multiverse Atoms",
  42850. height: math.unit(1.829e9, "multiverses")
  42851. },
  42852. {
  42853. name: "Nigh-Omnipresence",
  42854. height: math.unit(8e261, "multiverses")
  42855. },
  42856. ]
  42857. ))
  42858. characterMakers.push(() => makeCharacter(
  42859. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42860. {
  42861. front: {
  42862. height: math.unit(10, "feet"),
  42863. weight: math.unit(1500, "lb"),
  42864. name: "Front",
  42865. image: {
  42866. source: "./media/characters/miles-thestia/front.svg",
  42867. extra: 1812/1727,
  42868. bottom: 86/1898
  42869. }
  42870. },
  42871. back: {
  42872. height: math.unit(10, "feet"),
  42873. weight: math.unit(1500, "lb"),
  42874. name: "Back",
  42875. image: {
  42876. source: "./media/characters/miles-thestia/back.svg",
  42877. extra: 1799/1690,
  42878. bottom: 47/1846
  42879. }
  42880. },
  42881. frontNsfw: {
  42882. height: math.unit(10, "feet"),
  42883. weight: math.unit(1500, "lb"),
  42884. name: "Front (NSFW)",
  42885. image: {
  42886. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42887. extra: 1812/1727,
  42888. bottom: 86/1898
  42889. }
  42890. },
  42891. },
  42892. [
  42893. {
  42894. name: "Mini-Macro",
  42895. height: math.unit(10, "feet"),
  42896. default: true
  42897. },
  42898. ]
  42899. ))
  42900. characterMakers.push(() => makeCharacter(
  42901. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42902. {
  42903. front: {
  42904. height: math.unit(25, "feet"),
  42905. name: "Front",
  42906. image: {
  42907. source: "./media/characters/titan-s-wulf/front.svg",
  42908. extra: 1560/1484,
  42909. bottom: 76/1636
  42910. }
  42911. },
  42912. },
  42913. [
  42914. {
  42915. name: "Smallest",
  42916. height: math.unit(25, "feet"),
  42917. default: true
  42918. },
  42919. {
  42920. name: "Normal",
  42921. height: math.unit(200, "feet")
  42922. },
  42923. {
  42924. name: "Macro",
  42925. height: math.unit(200000, "feet")
  42926. },
  42927. {
  42928. name: "Multiversal Original",
  42929. height: math.unit(10000, "multiverses")
  42930. },
  42931. ]
  42932. ))
  42933. characterMakers.push(() => makeCharacter(
  42934. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42935. {
  42936. front: {
  42937. height: math.unit(8, "feet"),
  42938. weight: math.unit(553, "lb"),
  42939. name: "Front",
  42940. image: {
  42941. source: "./media/characters/tawendeh/front.svg",
  42942. extra: 2365/2268,
  42943. bottom: 83/2448
  42944. }
  42945. },
  42946. frontClothed: {
  42947. height: math.unit(8, "feet"),
  42948. weight: math.unit(553, "lb"),
  42949. name: "Front (Clothed)",
  42950. image: {
  42951. source: "./media/characters/tawendeh/front-clothed.svg",
  42952. extra: 2365/2268,
  42953. bottom: 83/2448
  42954. }
  42955. },
  42956. back: {
  42957. height: math.unit(8, "feet"),
  42958. weight: math.unit(553, "lb"),
  42959. name: "Back",
  42960. image: {
  42961. source: "./media/characters/tawendeh/back.svg",
  42962. extra: 2397/2294,
  42963. bottom: 42/2439
  42964. }
  42965. },
  42966. },
  42967. [
  42968. {
  42969. name: "Mortal Interaction",
  42970. height: math.unit(8, "feet"),
  42971. default: true
  42972. },
  42973. {
  42974. name: "Giant",
  42975. height: math.unit(80, "feet")
  42976. },
  42977. {
  42978. name: "Macro",
  42979. height: math.unit(800, "feet")
  42980. },
  42981. {
  42982. name: "Megamacro",
  42983. height: math.unit(8000, "feet")
  42984. },
  42985. {
  42986. name: "City-Crushing",
  42987. height: math.unit(24000, "feet")
  42988. },
  42989. {
  42990. name: "Mountain-Mashing",
  42991. height: math.unit(80000, "feet")
  42992. },
  42993. {
  42994. name: "Nation Nemesis",
  42995. height: math.unit(8e6, "feet")
  42996. },
  42997. {
  42998. name: "Continent Cracker",
  42999. height: math.unit(24e6, "feet")
  43000. },
  43001. {
  43002. name: "Earth-Eclipsing",
  43003. height: math.unit(2.4e8, "feet")
  43004. },
  43005. {
  43006. name: "Gas Giant Gulper",
  43007. height: math.unit(2.4e9, "feet")
  43008. },
  43009. {
  43010. name: "Sol-Swallowing",
  43011. height: math.unit(8e10, "feet")
  43012. },
  43013. {
  43014. name: "Galaxy Gulper",
  43015. height: math.unit(8, "galaxies")
  43016. },
  43017. {
  43018. name: "Cosmos Churner",
  43019. height: math.unit(8, "universes")
  43020. },
  43021. {
  43022. name: "Omnipotent Otter",
  43023. height: math.unit(80, "universes")
  43024. },
  43025. ]
  43026. ))
  43027. characterMakers.push(() => makeCharacter(
  43028. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  43029. {
  43030. front: {
  43031. height: math.unit(2.6, "meters"),
  43032. weight: math.unit(900, "kg"),
  43033. name: "Front",
  43034. image: {
  43035. source: "./media/characters/neesha/front.svg",
  43036. extra: 1803/1653,
  43037. bottom: 128/1931
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Normal",
  43044. height: math.unit(2.6, "meters"),
  43045. default: true
  43046. },
  43047. {
  43048. name: "Macro",
  43049. height: math.unit(50, "meters")
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  43055. {
  43056. front: {
  43057. height: math.unit(5, "feet"),
  43058. weight: math.unit(185, "lb"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/kyera/front.svg",
  43062. extra: 1875/1790,
  43063. bottom: 96/1971
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "Normal",
  43070. height: math.unit(5, "feet"),
  43071. default: true
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  43077. {
  43078. front: {
  43079. height: math.unit(7 + 6/12, "feet"),
  43080. weight: math.unit(540, "lb"),
  43081. name: "Front",
  43082. image: {
  43083. source: "./media/characters/yuko/front.svg",
  43084. extra: 1282/1222,
  43085. bottom: 101/1383
  43086. }
  43087. },
  43088. frontClothed: {
  43089. height: math.unit(7 + 6/12, "feet"),
  43090. weight: math.unit(540, "lb"),
  43091. name: "Front (Clothed)",
  43092. image: {
  43093. source: "./media/characters/yuko/front-clothed.svg",
  43094. extra: 1282/1222,
  43095. bottom: 101/1383
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Normal",
  43102. height: math.unit(7 + 6/12, "feet"),
  43103. default: true
  43104. },
  43105. {
  43106. name: "Macro",
  43107. height: math.unit(26 + 9/12, "feet")
  43108. },
  43109. {
  43110. name: "Megamacro",
  43111. height: math.unit(300, "feet")
  43112. },
  43113. {
  43114. name: "Gigamacro",
  43115. height: math.unit(5000, "feet")
  43116. },
  43117. {
  43118. name: "Planetary",
  43119. height: math.unit(10000, "miles")
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  43125. {
  43126. front: {
  43127. height: math.unit(8 + 2/12, "feet"),
  43128. weight: math.unit(600, "lb"),
  43129. name: "Front",
  43130. image: {
  43131. source: "./media/characters/deam-nitrel/front.svg",
  43132. extra: 1308/1234,
  43133. bottom: 125/1433
  43134. }
  43135. },
  43136. },
  43137. [
  43138. {
  43139. name: "Normal",
  43140. height: math.unit(8 + 2/12, "feet"),
  43141. default: true
  43142. },
  43143. ]
  43144. ))
  43145. characterMakers.push(() => makeCharacter(
  43146. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  43147. {
  43148. front: {
  43149. height: math.unit(6.1, "feet"),
  43150. weight: math.unit(180, "lb"),
  43151. name: "Front",
  43152. image: {
  43153. source: "./media/characters/skyress/front.svg",
  43154. extra: 1045/915,
  43155. bottom: 28/1073
  43156. }
  43157. },
  43158. maw: {
  43159. height: math.unit(1, "feet"),
  43160. name: "Maw",
  43161. image: {
  43162. source: "./media/characters/skyress/maw.svg"
  43163. }
  43164. },
  43165. },
  43166. [
  43167. {
  43168. name: "Normal",
  43169. height: math.unit(6.1, "feet"),
  43170. default: true
  43171. },
  43172. {
  43173. name: "Macro",
  43174. height: math.unit(200, "feet")
  43175. },
  43176. ]
  43177. ))
  43178. characterMakers.push(() => makeCharacter(
  43179. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43180. {
  43181. front: {
  43182. height: math.unit(4 + 2/12, "feet"),
  43183. weight: math.unit(40, "kg"),
  43184. name: "Front",
  43185. image: {
  43186. source: "./media/characters/amethyst-jones/front.svg",
  43187. extra: 1220/1150,
  43188. bottom: 101/1321
  43189. }
  43190. },
  43191. },
  43192. [
  43193. {
  43194. name: "Normal",
  43195. height: math.unit(4 + 2/12, "feet"),
  43196. default: true
  43197. },
  43198. ]
  43199. ))
  43200. characterMakers.push(() => makeCharacter(
  43201. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43202. {
  43203. front: {
  43204. height: math.unit(1.7, "m"),
  43205. weight: math.unit(135, "lb"),
  43206. name: "Front",
  43207. image: {
  43208. source: "./media/characters/jade/front.svg",
  43209. extra: 1818/1767,
  43210. bottom: 32/1850
  43211. }
  43212. },
  43213. back: {
  43214. height: math.unit(1.7, "m"),
  43215. weight: math.unit(135, "lb"),
  43216. name: "Back",
  43217. image: {
  43218. source: "./media/characters/jade/back.svg",
  43219. extra: 1869/1809,
  43220. bottom: 35/1904
  43221. }
  43222. },
  43223. hand: {
  43224. height: math.unit(0.24, "m"),
  43225. name: "Hand",
  43226. image: {
  43227. source: "./media/characters/jade/hand.svg"
  43228. }
  43229. },
  43230. foot: {
  43231. height: math.unit(0.263, "m"),
  43232. name: "Foot",
  43233. image: {
  43234. source: "./media/characters/jade/foot.svg"
  43235. }
  43236. },
  43237. dick: {
  43238. height: math.unit(0.47, "m"),
  43239. name: "Dick",
  43240. image: {
  43241. source: "./media/characters/jade/dick.svg"
  43242. }
  43243. },
  43244. },
  43245. [
  43246. {
  43247. name: "Micro",
  43248. height: math.unit(22, "cm")
  43249. },
  43250. {
  43251. name: "Normal",
  43252. height: math.unit(1.7, "m"),
  43253. default: true
  43254. },
  43255. {
  43256. name: "Macro",
  43257. height: math.unit(152, "m")
  43258. },
  43259. ]
  43260. ))
  43261. characterMakers.push(() => makeCharacter(
  43262. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43263. {
  43264. front: {
  43265. height: math.unit(100, "miles"),
  43266. weight: math.unit(20000, "tons"),
  43267. name: "Front",
  43268. image: {
  43269. source: "./media/characters/cookie/front.svg",
  43270. extra: 1125/1070,
  43271. bottom: 30/1155
  43272. }
  43273. },
  43274. },
  43275. [
  43276. {
  43277. name: "Big",
  43278. height: math.unit(50, "feet")
  43279. },
  43280. {
  43281. name: "Macro",
  43282. height: math.unit(100, "miles"),
  43283. default: true
  43284. },
  43285. {
  43286. name: "Megamacro",
  43287. height: math.unit(90000, "miles")
  43288. },
  43289. ]
  43290. ))
  43291. characterMakers.push(() => makeCharacter(
  43292. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43293. {
  43294. front: {
  43295. height: math.unit(6, "feet"),
  43296. weight: math.unit(145, "lb"),
  43297. name: "Front",
  43298. image: {
  43299. source: "./media/characters/farzian/front.svg",
  43300. extra: 1902/1693,
  43301. bottom: 108/2010
  43302. }
  43303. },
  43304. },
  43305. [
  43306. {
  43307. name: "Macro",
  43308. height: math.unit(500, "feet"),
  43309. default: true
  43310. },
  43311. ]
  43312. ))
  43313. characterMakers.push(() => makeCharacter(
  43314. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43315. {
  43316. front: {
  43317. height: math.unit(3 + 6/12, "feet"),
  43318. weight: math.unit(50, "lb"),
  43319. name: "Front",
  43320. image: {
  43321. source: "./media/characters/kimberly-tilson/front.svg",
  43322. extra: 1400/1322,
  43323. bottom: 36/1436
  43324. }
  43325. },
  43326. back: {
  43327. height: math.unit(3 + 6/12, "feet"),
  43328. weight: math.unit(50, "lb"),
  43329. name: "Back",
  43330. image: {
  43331. source: "./media/characters/kimberly-tilson/back.svg",
  43332. extra: 1370/1307,
  43333. bottom: 20/1390
  43334. }
  43335. },
  43336. },
  43337. [
  43338. {
  43339. name: "Normal",
  43340. height: math.unit(3 + 6/12, "feet"),
  43341. default: true
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(350, "meters"),
  43350. weight: math.unit(7.57059e+8, "lb"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/harthos/front.svg",
  43354. extra: 455/446,
  43355. bottom: 15/470
  43356. },
  43357. form: "peacekeeper",
  43358. default: true
  43359. },
  43360. allusus_front: {
  43361. height: math.unit(270, "meters"),
  43362. weight: math.unit(3.47550e+8, "lb"),
  43363. name: "Front",
  43364. image: {
  43365. source: "./media/characters/harthos/allusus-front.svg",
  43366. extra: 455/446,
  43367. bottom: 15/470
  43368. },
  43369. form: "allusus",
  43370. },
  43371. },
  43372. [
  43373. {
  43374. name: "Macro",
  43375. height: math.unit(350, "meters"),
  43376. default: true,
  43377. form: "peacekeeper"
  43378. },
  43379. {
  43380. name: "Macro",
  43381. height: math.unit(270, "meters"),
  43382. default: true,
  43383. form: "allusus"
  43384. },
  43385. ],
  43386. {
  43387. "peacekeeper": {
  43388. name: "Peacekeeper",
  43389. default: true
  43390. },
  43391. "allusus": {
  43392. name: "Allusus",
  43393. },
  43394. }
  43395. ))
  43396. characterMakers.push(() => makeCharacter(
  43397. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43398. {
  43399. front: {
  43400. height: math.unit(15, "feet"),
  43401. name: "Front",
  43402. image: {
  43403. source: "./media/characters/hypatia/front.svg",
  43404. extra: 1653/1591,
  43405. bottom: 79/1732
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Normal",
  43412. height: math.unit(15, "feet")
  43413. },
  43414. {
  43415. name: "Small",
  43416. height: math.unit(300, "feet")
  43417. },
  43418. {
  43419. name: "Macro",
  43420. height: math.unit(2500, "feet"),
  43421. default: true
  43422. },
  43423. {
  43424. name: "Mega Macro",
  43425. height: math.unit(1500, "miles")
  43426. },
  43427. {
  43428. name: "Giga Macro",
  43429. height: math.unit(1.5e6, "miles")
  43430. },
  43431. ]
  43432. ))
  43433. characterMakers.push(() => makeCharacter(
  43434. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43435. {
  43436. front: {
  43437. height: math.unit(6, "feet"),
  43438. weight: math.unit(200, "lb"),
  43439. name: "Front",
  43440. image: {
  43441. source: "./media/characters/wulver/front.svg",
  43442. extra: 1724/1632,
  43443. bottom: 130/1854
  43444. }
  43445. },
  43446. frontNsfw: {
  43447. height: math.unit(6, "feet"),
  43448. weight: math.unit(200, "lb"),
  43449. name: "Front (NSFW)",
  43450. image: {
  43451. source: "./media/characters/wulver/front-nsfw.svg",
  43452. extra: 1724/1632,
  43453. bottom: 130/1854
  43454. }
  43455. },
  43456. },
  43457. [
  43458. {
  43459. name: "Human-Sized",
  43460. height: math.unit(6, "feet")
  43461. },
  43462. {
  43463. name: "Normal",
  43464. height: math.unit(4, "meters"),
  43465. default: true
  43466. },
  43467. {
  43468. name: "Large",
  43469. height: math.unit(6, "m")
  43470. },
  43471. ]
  43472. ))
  43473. characterMakers.push(() => makeCharacter(
  43474. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43475. {
  43476. front: {
  43477. height: math.unit(7, "feet"),
  43478. name: "Front",
  43479. image: {
  43480. source: "./media/characters/maru/front.svg",
  43481. extra: 1595/1570,
  43482. bottom: 0/1595
  43483. }
  43484. },
  43485. },
  43486. [
  43487. {
  43488. name: "Normal",
  43489. height: math.unit(7, "feet"),
  43490. default: true
  43491. },
  43492. {
  43493. name: "Macro",
  43494. height: math.unit(700, "feet")
  43495. },
  43496. {
  43497. name: "Mega Macro",
  43498. height: math.unit(25, "miles")
  43499. },
  43500. ]
  43501. ))
  43502. characterMakers.push(() => makeCharacter(
  43503. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43504. {
  43505. front: {
  43506. height: math.unit(6, "feet"),
  43507. weight: math.unit(170, "lb"),
  43508. name: "Front",
  43509. image: {
  43510. source: "./media/characters/xenon/front.svg",
  43511. extra: 1376/1305,
  43512. bottom: 56/1432
  43513. }
  43514. },
  43515. back: {
  43516. height: math.unit(6, "feet"),
  43517. weight: math.unit(170, "lb"),
  43518. name: "Back",
  43519. image: {
  43520. source: "./media/characters/xenon/back.svg",
  43521. extra: 1328/1259,
  43522. bottom: 95/1423
  43523. }
  43524. },
  43525. maw: {
  43526. height: math.unit(0.52, "feet"),
  43527. name: "Maw",
  43528. image: {
  43529. source: "./media/characters/xenon/maw.svg"
  43530. }
  43531. },
  43532. handLeft: {
  43533. height: math.unit(0.82 * 169 / 153, "feet"),
  43534. name: "Hand (Left)",
  43535. image: {
  43536. source: "./media/characters/xenon/hand-left.svg"
  43537. }
  43538. },
  43539. handRight: {
  43540. height: math.unit(0.82, "feet"),
  43541. name: "Hand (Right)",
  43542. image: {
  43543. source: "./media/characters/xenon/hand-right.svg"
  43544. }
  43545. },
  43546. footLeft: {
  43547. height: math.unit(1.13, "feet"),
  43548. name: "Foot (Left)",
  43549. image: {
  43550. source: "./media/characters/xenon/foot-left.svg"
  43551. }
  43552. },
  43553. footRight: {
  43554. height: math.unit(1.13 * 194 / 196, "feet"),
  43555. name: "Foot (Right)",
  43556. image: {
  43557. source: "./media/characters/xenon/foot-right.svg"
  43558. }
  43559. },
  43560. },
  43561. [
  43562. {
  43563. name: "Micro",
  43564. height: math.unit(0.8, "inches")
  43565. },
  43566. {
  43567. name: "Normal",
  43568. height: math.unit(6, "feet")
  43569. },
  43570. {
  43571. name: "Macro",
  43572. height: math.unit(50, "feet"),
  43573. default: true
  43574. },
  43575. {
  43576. name: "Macro+",
  43577. height: math.unit(250, "feet")
  43578. },
  43579. {
  43580. name: "Megamacro",
  43581. height: math.unit(1500, "feet")
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43587. {
  43588. front: {
  43589. height: math.unit(7 + 5/12, "feet"),
  43590. name: "Front",
  43591. image: {
  43592. source: "./media/characters/zane/front.svg",
  43593. extra: 1260/1203,
  43594. bottom: 94/1354
  43595. }
  43596. },
  43597. back: {
  43598. height: math.unit(5.05, "feet"),
  43599. name: "Back",
  43600. image: {
  43601. source: "./media/characters/zane/back.svg",
  43602. extra: 893/829,
  43603. bottom: 30/923
  43604. }
  43605. },
  43606. werewolf: {
  43607. height: math.unit(11, "feet"),
  43608. name: "Werewolf",
  43609. image: {
  43610. source: "./media/characters/zane/werewolf.svg",
  43611. extra: 1383/1323,
  43612. bottom: 89/1472
  43613. }
  43614. },
  43615. foot: {
  43616. height: math.unit(1.46, "feet"),
  43617. name: "Foot",
  43618. image: {
  43619. source: "./media/characters/zane/foot.svg"
  43620. }
  43621. },
  43622. footFront: {
  43623. height: math.unit(0.784, "feet"),
  43624. name: "Foot (Front)",
  43625. image: {
  43626. source: "./media/characters/zane/foot-front.svg"
  43627. }
  43628. },
  43629. dick: {
  43630. height: math.unit(1.95, "feet"),
  43631. name: "Dick",
  43632. image: {
  43633. source: "./media/characters/zane/dick.svg"
  43634. }
  43635. },
  43636. dickWerewolf: {
  43637. height: math.unit(3.77, "feet"),
  43638. name: "Dick (Werewolf)",
  43639. image: {
  43640. source: "./media/characters/zane/dick.svg"
  43641. }
  43642. },
  43643. },
  43644. [
  43645. {
  43646. name: "Normal",
  43647. height: math.unit(7 + 5/12, "feet"),
  43648. default: true
  43649. },
  43650. ]
  43651. ))
  43652. characterMakers.push(() => makeCharacter(
  43653. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43654. {
  43655. front: {
  43656. height: math.unit(6 + 2/12, "feet"),
  43657. weight: math.unit(284, "lb"),
  43658. name: "Front",
  43659. image: {
  43660. source: "./media/characters/benni-desparque/front.svg",
  43661. extra: 878/729,
  43662. bottom: 58/936
  43663. }
  43664. },
  43665. back: {
  43666. height: math.unit(6 + 2/12, "feet"),
  43667. weight: math.unit(284, "lb"),
  43668. name: "Back",
  43669. image: {
  43670. source: "./media/characters/benni-desparque/back.svg",
  43671. extra: 901/756,
  43672. bottom: 51/952
  43673. }
  43674. },
  43675. dressed: {
  43676. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43677. weight: math.unit(284, "lb"),
  43678. name: "Dressed",
  43679. image: {
  43680. source: "./media/characters/benni-desparque/dressed.svg",
  43681. extra: 1514/1276,
  43682. bottom: 65/1579
  43683. }
  43684. },
  43685. hand: {
  43686. height: math.unit(1.28, "feet"),
  43687. name: "Hand",
  43688. image: {
  43689. source: "./media/characters/benni-desparque/hand.svg"
  43690. }
  43691. },
  43692. foot: {
  43693. height: math.unit(1.53, "feet"),
  43694. name: "Foot",
  43695. image: {
  43696. source: "./media/characters/benni-desparque/foot.svg"
  43697. }
  43698. },
  43699. aiControlUnit: {
  43700. height: math.unit(0.175, "feet"),
  43701. name: "AI Control Unit",
  43702. image: {
  43703. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43704. }
  43705. },
  43706. },
  43707. [
  43708. {
  43709. name: "Civilian",
  43710. height: math.unit(6 + 2/12, "feet")
  43711. },
  43712. {
  43713. name: "Normal",
  43714. height: math.unit(98, "feet"),
  43715. default: true
  43716. },
  43717. {
  43718. name: "Kaiju Fighter",
  43719. height: math.unit(268, "feet")
  43720. },
  43721. ]
  43722. ))
  43723. characterMakers.push(() => makeCharacter(
  43724. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43725. {
  43726. front: {
  43727. height: math.unit(5, "feet"),
  43728. weight: math.unit(105, "lb"),
  43729. name: "Front",
  43730. image: {
  43731. source: "./media/characters/maxine/front.svg",
  43732. extra: 1386/1250,
  43733. bottom: 71/1457
  43734. }
  43735. },
  43736. },
  43737. [
  43738. {
  43739. name: "Normal",
  43740. height: math.unit(5, "feet"),
  43741. default: true
  43742. },
  43743. ]
  43744. ))
  43745. characterMakers.push(() => makeCharacter(
  43746. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43747. {
  43748. front: {
  43749. height: math.unit(11 + 7/12, "feet"),
  43750. weight: math.unit(9576, "lb"),
  43751. name: "Front",
  43752. image: {
  43753. source: "./media/characters/scaly/front.svg",
  43754. extra: 888/867,
  43755. bottom: 36/924
  43756. }
  43757. },
  43758. },
  43759. [
  43760. {
  43761. name: "Normal",
  43762. height: math.unit(11 + 7/12, "feet"),
  43763. default: true
  43764. },
  43765. ]
  43766. ))
  43767. characterMakers.push(() => makeCharacter(
  43768. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43769. {
  43770. front: {
  43771. height: math.unit(6 + 3/12, "feet"),
  43772. name: "Front",
  43773. image: {
  43774. source: "./media/characters/saelria/front.svg",
  43775. extra: 1243/1138,
  43776. bottom: 46/1289
  43777. }
  43778. },
  43779. },
  43780. [
  43781. {
  43782. name: "Micro",
  43783. height: math.unit(6, "inches"),
  43784. },
  43785. {
  43786. name: "Normal",
  43787. height: math.unit(6 + 3/12, "feet"),
  43788. default: true
  43789. },
  43790. {
  43791. name: "Macro",
  43792. height: math.unit(25, "feet")
  43793. },
  43794. ]
  43795. ))
  43796. characterMakers.push(() => makeCharacter(
  43797. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43798. {
  43799. front: {
  43800. height: math.unit(80, "meters"),
  43801. weight: math.unit(7000, "tonnes"),
  43802. name: "Front",
  43803. image: {
  43804. source: "./media/characters/tef/front.svg",
  43805. extra: 2036/1991,
  43806. bottom: 54/2090
  43807. }
  43808. },
  43809. back: {
  43810. height: math.unit(80, "meters"),
  43811. weight: math.unit(7000, "tonnes"),
  43812. name: "Back",
  43813. image: {
  43814. source: "./media/characters/tef/back.svg",
  43815. extra: 2036/1991,
  43816. bottom: 54/2090
  43817. }
  43818. },
  43819. },
  43820. [
  43821. {
  43822. name: "Macro",
  43823. height: math.unit(80, "meters"),
  43824. default: true
  43825. },
  43826. ]
  43827. ))
  43828. characterMakers.push(() => makeCharacter(
  43829. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43830. {
  43831. front: {
  43832. height: math.unit(13, "feet"),
  43833. weight: math.unit(6, "tons"),
  43834. name: "Front",
  43835. image: {
  43836. source: "./media/characters/rover/front.svg",
  43837. extra: 1233/1156,
  43838. bottom: 50/1283
  43839. }
  43840. },
  43841. back: {
  43842. height: math.unit(13, "feet"),
  43843. weight: math.unit(6, "tons"),
  43844. name: "Back",
  43845. image: {
  43846. source: "./media/characters/rover/back.svg",
  43847. extra: 1327/1258,
  43848. bottom: 39/1366
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Normal",
  43855. height: math.unit(13, "feet"),
  43856. default: true
  43857. },
  43858. {
  43859. name: "Macro",
  43860. height: math.unit(1300, "feet")
  43861. },
  43862. {
  43863. name: "Megamacro",
  43864. height: math.unit(1300, "miles")
  43865. },
  43866. {
  43867. name: "Gigamacro",
  43868. height: math.unit(1300000, "miles")
  43869. },
  43870. ]
  43871. ))
  43872. characterMakers.push(() => makeCharacter(
  43873. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43874. {
  43875. front: {
  43876. height: math.unit(10, "feet"),
  43877. weight: math.unit(500, "lb"),
  43878. name: "Front",
  43879. image: {
  43880. source: "./media/characters/ariz/front.svg",
  43881. extra: 461/450,
  43882. bottom: 16/477
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "MiniMacro",
  43889. height: math.unit(10, "feet"),
  43890. default: true
  43891. },
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43896. {
  43897. front: {
  43898. height: math.unit(6, "feet"),
  43899. weight: math.unit(140, "lb"),
  43900. name: "Front",
  43901. image: {
  43902. source: "./media/characters/sigrun/front.svg",
  43903. extra: 1418/1359,
  43904. bottom: 27/1445
  43905. }
  43906. },
  43907. },
  43908. [
  43909. {
  43910. name: "Macro",
  43911. height: math.unit(35, "feet"),
  43912. default: true
  43913. },
  43914. ]
  43915. ))
  43916. characterMakers.push(() => makeCharacter(
  43917. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43918. {
  43919. front: {
  43920. height: math.unit(6, "feet"),
  43921. weight: math.unit(150, "lb"),
  43922. name: "Front",
  43923. image: {
  43924. source: "./media/characters/numin/front.svg",
  43925. extra: 1433/1388,
  43926. bottom: 12/1445
  43927. }
  43928. },
  43929. },
  43930. [
  43931. {
  43932. name: "Macro",
  43933. height: math.unit(21.5, "km"),
  43934. default: true
  43935. },
  43936. ]
  43937. ))
  43938. characterMakers.push(() => makeCharacter(
  43939. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43940. {
  43941. front: {
  43942. height: math.unit(6, "feet"),
  43943. weight: math.unit(463, "lb"),
  43944. name: "Front",
  43945. image: {
  43946. source: "./media/characters/melwa/front.svg",
  43947. extra: 1307/1248,
  43948. bottom: 93/1400
  43949. }
  43950. },
  43951. },
  43952. [
  43953. {
  43954. name: "Macro",
  43955. height: math.unit(50, "meters"),
  43956. default: true
  43957. },
  43958. ]
  43959. ))
  43960. characterMakers.push(() => makeCharacter(
  43961. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43962. {
  43963. front: {
  43964. height: math.unit(325, "feet"),
  43965. name: "Front",
  43966. image: {
  43967. source: "./media/characters/zorkaiju/front.svg",
  43968. extra: 1955/1814,
  43969. bottom: 40/1995
  43970. }
  43971. },
  43972. frontExtended: {
  43973. height: math.unit(325, "feet"),
  43974. name: "Front (Extended)",
  43975. image: {
  43976. source: "./media/characters/zorkaiju/front-extended.svg",
  43977. extra: 1955/1814,
  43978. bottom: 40/1995
  43979. }
  43980. },
  43981. side: {
  43982. height: math.unit(325, "feet"),
  43983. name: "Side",
  43984. image: {
  43985. source: "./media/characters/zorkaiju/side.svg",
  43986. extra: 1495/1396,
  43987. bottom: 17/1512
  43988. }
  43989. },
  43990. sideExtended: {
  43991. height: math.unit(325, "feet"),
  43992. name: "Side (Extended)",
  43993. image: {
  43994. source: "./media/characters/zorkaiju/side-extended.svg",
  43995. extra: 1495/1396,
  43996. bottom: 17/1512
  43997. }
  43998. },
  43999. back: {
  44000. height: math.unit(325, "feet"),
  44001. name: "Back",
  44002. image: {
  44003. source: "./media/characters/zorkaiju/back.svg",
  44004. extra: 1959/1821,
  44005. bottom: 31/1990
  44006. }
  44007. },
  44008. backExtended: {
  44009. height: math.unit(325, "feet"),
  44010. name: "Back (Extended)",
  44011. image: {
  44012. source: "./media/characters/zorkaiju/back-extended.svg",
  44013. extra: 1959/1821,
  44014. bottom: 31/1990
  44015. }
  44016. },
  44017. hand: {
  44018. height: math.unit(58.4, "feet"),
  44019. name: "Hand",
  44020. image: {
  44021. source: "./media/characters/zorkaiju/hand.svg"
  44022. }
  44023. },
  44024. handExtended: {
  44025. height: math.unit(61.4, "feet"),
  44026. name: "Hand (Extended)",
  44027. image: {
  44028. source: "./media/characters/zorkaiju/hand-extended.svg"
  44029. }
  44030. },
  44031. foot: {
  44032. height: math.unit(95, "feet"),
  44033. name: "Foot",
  44034. image: {
  44035. source: "./media/characters/zorkaiju/foot.svg"
  44036. }
  44037. },
  44038. leftArm: {
  44039. height: math.unit(59, "feet"),
  44040. name: "Left Arm",
  44041. image: {
  44042. source: "./media/characters/zorkaiju/left-arm.svg"
  44043. }
  44044. },
  44045. rightArm: {
  44046. height: math.unit(59, "feet"),
  44047. name: "Right Arm",
  44048. image: {
  44049. source: "./media/characters/zorkaiju/right-arm.svg"
  44050. }
  44051. },
  44052. leftArmExtended: {
  44053. height: math.unit(59 * 1.033546, "feet"),
  44054. name: "Left Arm (Extended)",
  44055. image: {
  44056. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  44057. }
  44058. },
  44059. rightArmExtended: {
  44060. height: math.unit(59 * 1.0496, "feet"),
  44061. name: "Right Arm (Extended)",
  44062. image: {
  44063. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  44064. }
  44065. },
  44066. tail: {
  44067. height: math.unit(104, "feet"),
  44068. name: "Tail",
  44069. image: {
  44070. source: "./media/characters/zorkaiju/tail.svg"
  44071. }
  44072. },
  44073. tailExtended: {
  44074. height: math.unit(104, "feet"),
  44075. name: "Tail (Extended)",
  44076. image: {
  44077. source: "./media/characters/zorkaiju/tail-extended.svg"
  44078. }
  44079. },
  44080. tailBottom: {
  44081. height: math.unit(104, "feet"),
  44082. name: "Tail Bottom",
  44083. image: {
  44084. source: "./media/characters/zorkaiju/tail-bottom.svg"
  44085. }
  44086. },
  44087. crystal: {
  44088. height: math.unit(27.54, "feet"),
  44089. name: "Crystal",
  44090. image: {
  44091. source: "./media/characters/zorkaiju/crystal.svg"
  44092. }
  44093. },
  44094. },
  44095. [
  44096. {
  44097. name: "Kaiju",
  44098. height: math.unit(325, "feet"),
  44099. default: true
  44100. },
  44101. ]
  44102. ))
  44103. characterMakers.push(() => makeCharacter(
  44104. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  44105. {
  44106. front: {
  44107. height: math.unit(6 + 1/12, "feet"),
  44108. weight: math.unit(115, "lb"),
  44109. name: "Front",
  44110. image: {
  44111. source: "./media/characters/bailey-belfry/front.svg",
  44112. extra: 1240/1121,
  44113. bottom: 101/1341
  44114. }
  44115. },
  44116. },
  44117. [
  44118. {
  44119. name: "Normal",
  44120. height: math.unit(6 + 1/12, "feet"),
  44121. default: true
  44122. },
  44123. ]
  44124. ))
  44125. characterMakers.push(() => makeCharacter(
  44126. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  44127. {
  44128. side: {
  44129. height: math.unit(4, "meters"),
  44130. weight: math.unit(250, "kg"),
  44131. name: "Side",
  44132. image: {
  44133. source: "./media/characters/blacky/side.svg",
  44134. extra: 1027/919,
  44135. bottom: 43/1070
  44136. }
  44137. },
  44138. maw: {
  44139. height: math.unit(1, "meters"),
  44140. name: "Maw",
  44141. image: {
  44142. source: "./media/characters/blacky/maw.svg"
  44143. }
  44144. },
  44145. paw: {
  44146. height: math.unit(1, "meters"),
  44147. name: "Paw",
  44148. image: {
  44149. source: "./media/characters/blacky/paw.svg"
  44150. }
  44151. },
  44152. },
  44153. [
  44154. {
  44155. name: "Normal",
  44156. height: math.unit(4, "meters"),
  44157. default: true
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(170, "cm"),
  44166. weight: math.unit(66, "kg"),
  44167. name: "Front",
  44168. image: {
  44169. source: "./media/characters/thux-ei/front.svg",
  44170. extra: 1109/1011,
  44171. bottom: 8/1117
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Normal",
  44178. height: math.unit(170, "cm"),
  44179. default: true
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44185. {
  44186. front: {
  44187. height: math.unit(5, "feet"),
  44188. weight: math.unit(120, "lb"),
  44189. name: "Front",
  44190. image: {
  44191. source: "./media/characters/roxanne-voltaire/front.svg",
  44192. extra: 1901/1779,
  44193. bottom: 53/1954
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(5, "feet"),
  44201. default: true
  44202. },
  44203. {
  44204. name: "Giant",
  44205. height: math.unit(50, "feet")
  44206. },
  44207. {
  44208. name: "Titan",
  44209. height: math.unit(500, "feet")
  44210. },
  44211. {
  44212. name: "Macro",
  44213. height: math.unit(5000, "feet")
  44214. },
  44215. {
  44216. name: "Megamacro",
  44217. height: math.unit(50000, "feet")
  44218. },
  44219. {
  44220. name: "Gigamacro",
  44221. height: math.unit(500000, "feet")
  44222. },
  44223. {
  44224. name: "Teramacro",
  44225. height: math.unit(5e6, "feet")
  44226. },
  44227. ]
  44228. ))
  44229. characterMakers.push(() => makeCharacter(
  44230. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44231. {
  44232. front: {
  44233. height: math.unit(6 + 2/12, "feet"),
  44234. name: "Front",
  44235. image: {
  44236. source: "./media/characters/squeaks/front.svg",
  44237. extra: 1823/1768,
  44238. bottom: 138/1961
  44239. }
  44240. },
  44241. },
  44242. [
  44243. {
  44244. name: "Micro",
  44245. height: math.unit(0.5, "inches")
  44246. },
  44247. {
  44248. name: "Normal",
  44249. height: math.unit(6 + 2/12, "feet"),
  44250. default: true
  44251. },
  44252. {
  44253. name: "Macro",
  44254. height: math.unit(600, "feet")
  44255. },
  44256. ]
  44257. ))
  44258. characterMakers.push(() => makeCharacter(
  44259. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44260. {
  44261. front: {
  44262. height: math.unit(1.72, "meters"),
  44263. name: "Front",
  44264. image: {
  44265. source: "./media/characters/archinger/front.svg",
  44266. extra: 1861/1675,
  44267. bottom: 125/1986
  44268. }
  44269. },
  44270. back: {
  44271. height: math.unit(1.72, "meters"),
  44272. name: "Back",
  44273. image: {
  44274. source: "./media/characters/archinger/back.svg",
  44275. extra: 1844/1701,
  44276. bottom: 104/1948
  44277. }
  44278. },
  44279. cock: {
  44280. height: math.unit(0.59, "feet"),
  44281. name: "Cock",
  44282. image: {
  44283. source: "./media/characters/archinger/cock.svg"
  44284. }
  44285. },
  44286. },
  44287. [
  44288. {
  44289. name: "Normal",
  44290. height: math.unit(1.72, "meters"),
  44291. default: true
  44292. },
  44293. {
  44294. name: "Macro",
  44295. height: math.unit(84, "meters")
  44296. },
  44297. {
  44298. name: "Macro+",
  44299. height: math.unit(112, "meters")
  44300. },
  44301. {
  44302. name: "Macro++",
  44303. height: math.unit(960, "meters")
  44304. },
  44305. {
  44306. name: "Macro+++",
  44307. height: math.unit(4, "km")
  44308. },
  44309. {
  44310. name: "Macro++++",
  44311. height: math.unit(48, "km")
  44312. },
  44313. {
  44314. name: "Macro+++++",
  44315. height: math.unit(4500, "km")
  44316. },
  44317. ]
  44318. ))
  44319. characterMakers.push(() => makeCharacter(
  44320. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44321. {
  44322. front: {
  44323. height: math.unit(5 + 5/12, "feet"),
  44324. name: "Front",
  44325. image: {
  44326. source: "./media/characters/alsnapz/front.svg",
  44327. extra: 1157/1065,
  44328. bottom: 42/1199
  44329. }
  44330. },
  44331. },
  44332. [
  44333. {
  44334. name: "Normal",
  44335. height: math.unit(5 + 5/12, "feet"),
  44336. default: true
  44337. },
  44338. ]
  44339. ))
  44340. characterMakers.push(() => makeCharacter(
  44341. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44342. {
  44343. side: {
  44344. height: math.unit(3.2, "earths"),
  44345. name: "Side",
  44346. image: {
  44347. source: "./media/characters/mag/side.svg",
  44348. extra: 1331/1008,
  44349. bottom: 52/1383
  44350. }
  44351. },
  44352. wing: {
  44353. height: math.unit(1.94, "earths"),
  44354. name: "Wing",
  44355. image: {
  44356. source: "./media/characters/mag/wing.svg"
  44357. }
  44358. },
  44359. dick: {
  44360. height: math.unit(1.8, "earths"),
  44361. name: "Dick",
  44362. image: {
  44363. source: "./media/characters/mag/dick.svg"
  44364. }
  44365. },
  44366. ass: {
  44367. height: math.unit(1.33, "earths"),
  44368. name: "Ass",
  44369. image: {
  44370. source: "./media/characters/mag/ass.svg"
  44371. }
  44372. },
  44373. head: {
  44374. height: math.unit(1.1, "earths"),
  44375. name: "Head",
  44376. image: {
  44377. source: "./media/characters/mag/head.svg"
  44378. }
  44379. },
  44380. maw: {
  44381. height: math.unit(1.62, "earths"),
  44382. name: "Maw",
  44383. image: {
  44384. source: "./media/characters/mag/maw.svg"
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "Small",
  44391. height: math.unit(162, "feet")
  44392. },
  44393. {
  44394. name: "Normal",
  44395. height: math.unit(3.2, "earths"),
  44396. default: true
  44397. },
  44398. ]
  44399. ))
  44400. characterMakers.push(() => makeCharacter(
  44401. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44402. {
  44403. front: {
  44404. height: math.unit(512, "feet"),
  44405. weight: math.unit(63509, "tonnes"),
  44406. name: "Front",
  44407. image: {
  44408. source: "./media/characters/vorrel-harroc/front.svg",
  44409. extra: 1075/1063,
  44410. bottom: 62/1137
  44411. }
  44412. },
  44413. },
  44414. [
  44415. {
  44416. name: "Normal",
  44417. height: math.unit(10, "feet")
  44418. },
  44419. {
  44420. name: "Macro",
  44421. height: math.unit(512, "feet"),
  44422. default: true
  44423. },
  44424. {
  44425. name: "Megamacro",
  44426. height: math.unit(256, "miles")
  44427. },
  44428. {
  44429. name: "Gigamacro",
  44430. height: math.unit(4096, "miles")
  44431. },
  44432. ]
  44433. ))
  44434. characterMakers.push(() => makeCharacter(
  44435. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44436. {
  44437. side: {
  44438. height: math.unit(50, "feet"),
  44439. name: "Side",
  44440. image: {
  44441. source: "./media/characters/froimar/side.svg",
  44442. extra: 855/638,
  44443. bottom: 99/954
  44444. }
  44445. },
  44446. },
  44447. [
  44448. {
  44449. name: "Macro",
  44450. height: math.unit(50, "feet"),
  44451. default: true
  44452. },
  44453. ]
  44454. ))
  44455. characterMakers.push(() => makeCharacter(
  44456. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44457. {
  44458. front: {
  44459. height: math.unit(210, "miles"),
  44460. name: "Front",
  44461. image: {
  44462. source: "./media/characters/timothy/front.svg",
  44463. extra: 1007/943,
  44464. bottom: 62/1069
  44465. }
  44466. },
  44467. frontSkirt: {
  44468. height: math.unit(210, "miles"),
  44469. name: "Front (Skirt)",
  44470. image: {
  44471. source: "./media/characters/timothy/front-skirt.svg",
  44472. extra: 1007/943,
  44473. bottom: 62/1069
  44474. }
  44475. },
  44476. frontCoat: {
  44477. height: math.unit(210, "miles"),
  44478. name: "Front (Coat)",
  44479. image: {
  44480. source: "./media/characters/timothy/front-coat.svg",
  44481. extra: 1007/943,
  44482. bottom: 62/1069
  44483. }
  44484. },
  44485. },
  44486. [
  44487. {
  44488. name: "Macro",
  44489. height: math.unit(210, "miles"),
  44490. default: true
  44491. },
  44492. {
  44493. name: "Megamacro",
  44494. height: math.unit(210000, "miles")
  44495. },
  44496. ]
  44497. ))
  44498. characterMakers.push(() => makeCharacter(
  44499. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44500. {
  44501. front: {
  44502. height: math.unit(188, "feet"),
  44503. name: "Front",
  44504. image: {
  44505. source: "./media/characters/pyotr/front.svg",
  44506. extra: 1912/1826,
  44507. bottom: 18/1930
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Macro",
  44514. height: math.unit(188, "feet"),
  44515. default: true
  44516. },
  44517. {
  44518. name: "Megamacro",
  44519. height: math.unit(8, "miles")
  44520. },
  44521. ]
  44522. ))
  44523. characterMakers.push(() => makeCharacter(
  44524. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44525. {
  44526. side: {
  44527. height: math.unit(10, "feet"),
  44528. weight: math.unit(4500, "lb"),
  44529. name: "Side",
  44530. image: {
  44531. source: "./media/characters/ackart/side.svg",
  44532. extra: 1776/1668,
  44533. bottom: 116/1892
  44534. }
  44535. },
  44536. },
  44537. [
  44538. {
  44539. name: "Normal",
  44540. height: math.unit(10, "feet"),
  44541. default: true
  44542. },
  44543. ]
  44544. ))
  44545. characterMakers.push(() => makeCharacter(
  44546. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44547. {
  44548. side: {
  44549. height: math.unit(21, "feet"),
  44550. name: "Side",
  44551. image: {
  44552. source: "./media/characters/nolow/side.svg",
  44553. extra: 1484/1434,
  44554. bottom: 85/1569
  44555. }
  44556. },
  44557. sideErect: {
  44558. height: math.unit(21, "feet"),
  44559. name: "Side (Erect)",
  44560. image: {
  44561. source: "./media/characters/nolow/side-erect.svg",
  44562. extra: 1484/1434,
  44563. bottom: 85/1569
  44564. }
  44565. },
  44566. },
  44567. [
  44568. {
  44569. name: "Regular",
  44570. height: math.unit(12, "feet")
  44571. },
  44572. {
  44573. name: "Big Chee",
  44574. height: math.unit(21, "feet"),
  44575. default: true
  44576. },
  44577. ]
  44578. ))
  44579. characterMakers.push(() => makeCharacter(
  44580. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44581. {
  44582. front: {
  44583. height: math.unit(7, "feet"),
  44584. weight: math.unit(250, "lb"),
  44585. name: "Front",
  44586. image: {
  44587. source: "./media/characters/nines/front.svg",
  44588. extra: 1741/1607,
  44589. bottom: 41/1782
  44590. }
  44591. },
  44592. side: {
  44593. height: math.unit(7, "feet"),
  44594. weight: math.unit(250, "lb"),
  44595. name: "Side",
  44596. image: {
  44597. source: "./media/characters/nines/side.svg",
  44598. extra: 1854/1735,
  44599. bottom: 93/1947
  44600. }
  44601. },
  44602. back: {
  44603. height: math.unit(7, "feet"),
  44604. weight: math.unit(250, "lb"),
  44605. name: "Back",
  44606. image: {
  44607. source: "./media/characters/nines/back.svg",
  44608. extra: 1748/1615,
  44609. bottom: 20/1768
  44610. }
  44611. },
  44612. },
  44613. [
  44614. {
  44615. name: "Megamacro",
  44616. height: math.unit(99, "km"),
  44617. default: true
  44618. },
  44619. ]
  44620. ))
  44621. characterMakers.push(() => makeCharacter(
  44622. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44623. {
  44624. front: {
  44625. height: math.unit(5 + 10/12, "feet"),
  44626. weight: math.unit(210, "lb"),
  44627. name: "Front",
  44628. image: {
  44629. source: "./media/characters/zenith/front.svg",
  44630. extra: 1531/1452,
  44631. bottom: 198/1729
  44632. }
  44633. },
  44634. back: {
  44635. height: math.unit(5 + 10/12, "feet"),
  44636. weight: math.unit(210, "lb"),
  44637. name: "Back",
  44638. image: {
  44639. source: "./media/characters/zenith/back.svg",
  44640. extra: 1571/1487,
  44641. bottom: 75/1646
  44642. }
  44643. },
  44644. },
  44645. [
  44646. {
  44647. name: "Normal",
  44648. height: math.unit(5 + 10/12, "feet"),
  44649. default: true
  44650. }
  44651. ]
  44652. ))
  44653. characterMakers.push(() => makeCharacter(
  44654. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44655. {
  44656. front: {
  44657. height: math.unit(4, "feet"),
  44658. weight: math.unit(60, "lb"),
  44659. name: "Front",
  44660. image: {
  44661. source: "./media/characters/jasper/front.svg",
  44662. extra: 1450/1379,
  44663. bottom: 19/1469
  44664. }
  44665. },
  44666. },
  44667. [
  44668. {
  44669. name: "Normal",
  44670. height: math.unit(4, "feet"),
  44671. default: true
  44672. },
  44673. ]
  44674. ))
  44675. characterMakers.push(() => makeCharacter(
  44676. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44677. {
  44678. front: {
  44679. height: math.unit(6 + 5/12, "feet"),
  44680. weight: math.unit(290, "lb"),
  44681. name: "Front",
  44682. image: {
  44683. source: "./media/characters/tiberius-thyben/front.svg",
  44684. extra: 757/739,
  44685. bottom: 39/796
  44686. }
  44687. },
  44688. },
  44689. [
  44690. {
  44691. name: "Micro",
  44692. height: math.unit(1.5, "inches")
  44693. },
  44694. {
  44695. name: "Normal",
  44696. height: math.unit(6 + 5/12, "feet"),
  44697. default: true
  44698. },
  44699. {
  44700. name: "Macro",
  44701. height: math.unit(300, "feet")
  44702. },
  44703. ]
  44704. ))
  44705. characterMakers.push(() => makeCharacter(
  44706. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44707. {
  44708. front: {
  44709. height: math.unit(5 + 6/12, "feet"),
  44710. weight: math.unit(60, "kg"),
  44711. name: "Front",
  44712. image: {
  44713. source: "./media/characters/sabre/front.svg",
  44714. extra: 738/671,
  44715. bottom: 27/765
  44716. }
  44717. },
  44718. },
  44719. [
  44720. {
  44721. name: "Teeny",
  44722. height: math.unit(2, "inches")
  44723. },
  44724. {
  44725. name: "Smol",
  44726. height: math.unit(8, "inches")
  44727. },
  44728. {
  44729. name: "Normal",
  44730. height: math.unit(5 + 6/12, "feet"),
  44731. default: true
  44732. },
  44733. {
  44734. name: "Mini-Macro",
  44735. height: math.unit(15, "feet")
  44736. },
  44737. {
  44738. name: "Macro",
  44739. height: math.unit(50, "feet")
  44740. },
  44741. ]
  44742. ))
  44743. characterMakers.push(() => makeCharacter(
  44744. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44745. {
  44746. front: {
  44747. height: math.unit(6 + 4/12, "feet"),
  44748. weight: math.unit(170, "lb"),
  44749. name: "Front",
  44750. image: {
  44751. source: "./media/characters/charlie/front.svg",
  44752. extra: 1348/1228,
  44753. bottom: 15/1363
  44754. }
  44755. },
  44756. },
  44757. [
  44758. {
  44759. name: "Macro",
  44760. height: math.unit(1700, "meters"),
  44761. default: true
  44762. },
  44763. {
  44764. name: "MegaMacro",
  44765. height: math.unit(20400, "meters")
  44766. },
  44767. ]
  44768. ))
  44769. characterMakers.push(() => makeCharacter(
  44770. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44771. {
  44772. front: {
  44773. height: math.unit(1.96, "meters"),
  44774. weight: math.unit(220, "lb"),
  44775. name: "Front",
  44776. image: {
  44777. source: "./media/characters/susan-grant/front.svg",
  44778. extra: 482/478,
  44779. bottom: 7/489
  44780. }
  44781. },
  44782. },
  44783. [
  44784. {
  44785. name: "Normal",
  44786. height: math.unit(1.96, "meters"),
  44787. default: true
  44788. },
  44789. {
  44790. name: "Macro",
  44791. height: math.unit(76.2, "meters")
  44792. },
  44793. {
  44794. name: "MegaMacro",
  44795. height: math.unit(305, "meters")
  44796. },
  44797. {
  44798. name: "GigaMacro",
  44799. height: math.unit(1220, "meters")
  44800. },
  44801. {
  44802. name: "SuperMacro",
  44803. height: math.unit(4878, "meters")
  44804. },
  44805. ]
  44806. ))
  44807. characterMakers.push(() => makeCharacter(
  44808. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44809. {
  44810. front: {
  44811. height: math.unit(5 + 4/12, "feet"),
  44812. weight: math.unit(110, "lb"),
  44813. name: "Front",
  44814. image: {
  44815. source: "./media/characters/axel-isanov/front.svg",
  44816. extra: 1096/1065,
  44817. bottom: 13/1109
  44818. }
  44819. },
  44820. },
  44821. [
  44822. {
  44823. name: "Normal",
  44824. height: math.unit(5 + 4/12, "feet"),
  44825. default: true
  44826. },
  44827. ]
  44828. ))
  44829. characterMakers.push(() => makeCharacter(
  44830. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44831. {
  44832. front: {
  44833. height: math.unit(9, "feet"),
  44834. weight: math.unit(467, "lb"),
  44835. name: "Front",
  44836. image: {
  44837. source: "./media/characters/necahual/front.svg",
  44838. extra: 920/873,
  44839. bottom: 26/946
  44840. }
  44841. },
  44842. back: {
  44843. height: math.unit(9, "feet"),
  44844. weight: math.unit(467, "lb"),
  44845. name: "Back",
  44846. image: {
  44847. source: "./media/characters/necahual/back.svg",
  44848. extra: 930/884,
  44849. bottom: 16/946
  44850. }
  44851. },
  44852. frontUnderwear: {
  44853. height: math.unit(9, "feet"),
  44854. weight: math.unit(467, "lb"),
  44855. name: "Front (Underwear)",
  44856. image: {
  44857. source: "./media/characters/necahual/front-underwear.svg",
  44858. extra: 920/873,
  44859. bottom: 26/946
  44860. }
  44861. },
  44862. frontDressed: {
  44863. height: math.unit(9, "feet"),
  44864. weight: math.unit(467, "lb"),
  44865. name: "Front (Dressed)",
  44866. image: {
  44867. source: "./media/characters/necahual/front-dressed.svg",
  44868. extra: 920/873,
  44869. bottom: 26/946
  44870. }
  44871. },
  44872. },
  44873. [
  44874. {
  44875. name: "Comprsesed",
  44876. height: math.unit(9, "feet")
  44877. },
  44878. {
  44879. name: "Natural",
  44880. height: math.unit(15, "feet"),
  44881. default: true
  44882. },
  44883. {
  44884. name: "Boosted",
  44885. height: math.unit(50, "feet")
  44886. },
  44887. {
  44888. name: "Boosted+",
  44889. height: math.unit(150, "feet")
  44890. },
  44891. {
  44892. name: "Max",
  44893. height: math.unit(500, "feet")
  44894. },
  44895. ]
  44896. ))
  44897. characterMakers.push(() => makeCharacter(
  44898. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44899. {
  44900. front: {
  44901. height: math.unit(22 + 1/12, "feet"),
  44902. weight: math.unit(3200, "lb"),
  44903. name: "Front",
  44904. image: {
  44905. source: "./media/characters/theo-acacia/front.svg",
  44906. extra: 1796/1741,
  44907. bottom: 83/1879
  44908. }
  44909. },
  44910. frontUnderwear: {
  44911. height: math.unit(22 + 1/12, "feet"),
  44912. weight: math.unit(3200, "lb"),
  44913. name: "Front (Underwear)",
  44914. image: {
  44915. source: "./media/characters/theo-acacia/front-underwear.svg",
  44916. extra: 1796/1741,
  44917. bottom: 83/1879
  44918. }
  44919. },
  44920. frontNude: {
  44921. height: math.unit(22 + 1/12, "feet"),
  44922. weight: math.unit(3200, "lb"),
  44923. name: "Front (Nude)",
  44924. image: {
  44925. source: "./media/characters/theo-acacia/front-nude.svg",
  44926. extra: 1796/1741,
  44927. bottom: 83/1879
  44928. }
  44929. },
  44930. },
  44931. [
  44932. {
  44933. name: "Normal",
  44934. height: math.unit(22 + 1/12, "feet"),
  44935. default: true
  44936. },
  44937. ]
  44938. ))
  44939. characterMakers.push(() => makeCharacter(
  44940. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44941. {
  44942. front: {
  44943. height: math.unit(20, "feet"),
  44944. name: "Front",
  44945. image: {
  44946. source: "./media/characters/astra/front.svg",
  44947. extra: 1850/1714,
  44948. bottom: 106/1956
  44949. }
  44950. },
  44951. frontUndressed: {
  44952. height: math.unit(20, "feet"),
  44953. name: "Front (Undressed)",
  44954. image: {
  44955. source: "./media/characters/astra/front-undressed.svg",
  44956. extra: 1926/1749,
  44957. bottom: 0/1926
  44958. }
  44959. },
  44960. hand: {
  44961. height: math.unit(1.53, "feet"),
  44962. name: "Hand",
  44963. image: {
  44964. source: "./media/characters/astra/hand.svg"
  44965. }
  44966. },
  44967. paw: {
  44968. height: math.unit(1.53, "feet"),
  44969. name: "Paw",
  44970. image: {
  44971. source: "./media/characters/astra/paw.svg"
  44972. }
  44973. },
  44974. },
  44975. [
  44976. {
  44977. name: "Smallest",
  44978. height: math.unit(20, "feet")
  44979. },
  44980. {
  44981. name: "Normal",
  44982. height: math.unit(1e9, "miles"),
  44983. default: true
  44984. },
  44985. {
  44986. name: "Larger",
  44987. height: math.unit(5, "multiverses")
  44988. },
  44989. {
  44990. name: "Largest",
  44991. height: math.unit(1e9, "multiverses")
  44992. },
  44993. ]
  44994. ))
  44995. characterMakers.push(() => makeCharacter(
  44996. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44997. {
  44998. front: {
  44999. height: math.unit(8, "feet"),
  45000. name: "Front",
  45001. image: {
  45002. source: "./media/characters/breanna/front.svg",
  45003. extra: 1912/1632,
  45004. bottom: 33/1945
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Smallest",
  45011. height: math.unit(8, "feet")
  45012. },
  45013. {
  45014. name: "Normal",
  45015. height: math.unit(1, "mile"),
  45016. default: true
  45017. },
  45018. {
  45019. name: "Maximum",
  45020. height: math.unit(1500000000000, "lightyears")
  45021. },
  45022. ]
  45023. ))
  45024. characterMakers.push(() => makeCharacter(
  45025. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  45026. {
  45027. front: {
  45028. height: math.unit(5 + 11/12, "feet"),
  45029. weight: math.unit(155, "lb"),
  45030. name: "Front",
  45031. image: {
  45032. source: "./media/characters/cai/front.svg",
  45033. extra: 1823/1702,
  45034. bottom: 32/1855
  45035. }
  45036. },
  45037. back: {
  45038. height: math.unit(5 + 11/12, "feet"),
  45039. weight: math.unit(155, "lb"),
  45040. name: "Back",
  45041. image: {
  45042. source: "./media/characters/cai/back.svg",
  45043. extra: 1809/1708,
  45044. bottom: 31/1840
  45045. }
  45046. },
  45047. },
  45048. [
  45049. {
  45050. name: "Normal",
  45051. height: math.unit(5 + 11/12, "feet"),
  45052. default: true
  45053. },
  45054. {
  45055. name: "Big",
  45056. height: math.unit(15, "feet")
  45057. },
  45058. {
  45059. name: "Macro",
  45060. height: math.unit(200, "feet")
  45061. },
  45062. ]
  45063. ))
  45064. characterMakers.push(() => makeCharacter(
  45065. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  45066. {
  45067. front: {
  45068. height: math.unit(5 + 6/12, "feet"),
  45069. weight: math.unit(160, "lb"),
  45070. name: "Front",
  45071. image: {
  45072. source: "./media/characters/zanna-virtuedòttir/front.svg",
  45073. extra: 1227/1174,
  45074. bottom: 37/1264
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Macro",
  45081. height: math.unit(444, "meters"),
  45082. default: true
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  45088. {
  45089. front: {
  45090. height: math.unit(18 + 7/12, "feet"),
  45091. name: "Front",
  45092. image: {
  45093. source: "./media/characters/rex/front.svg",
  45094. extra: 1941/1807,
  45095. bottom: 66/2007
  45096. }
  45097. },
  45098. back: {
  45099. height: math.unit(18 + 7/12, "feet"),
  45100. name: "Back",
  45101. image: {
  45102. source: "./media/characters/rex/back.svg",
  45103. extra: 1937/1822,
  45104. bottom: 42/1979
  45105. }
  45106. },
  45107. boot: {
  45108. height: math.unit(3.45, "feet"),
  45109. name: "Boot",
  45110. image: {
  45111. source: "./media/characters/rex/boot.svg"
  45112. }
  45113. },
  45114. paw: {
  45115. height: math.unit(4.17, "feet"),
  45116. name: "Paw",
  45117. image: {
  45118. source: "./media/characters/rex/paw.svg"
  45119. }
  45120. },
  45121. head: {
  45122. height: math.unit(6.728, "feet"),
  45123. name: "Head",
  45124. image: {
  45125. source: "./media/characters/rex/head.svg"
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Nano",
  45132. height: math.unit(18 + 7/12, "feet")
  45133. },
  45134. {
  45135. name: "Micro",
  45136. height: math.unit(1.5, "megameters")
  45137. },
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(440, "megameters"),
  45141. default: true
  45142. },
  45143. {
  45144. name: "Macro",
  45145. height: math.unit(2.5, "gigameters")
  45146. },
  45147. {
  45148. name: "Gigamacro",
  45149. height: math.unit(2, "galaxies")
  45150. },
  45151. ]
  45152. ))
  45153. characterMakers.push(() => makeCharacter(
  45154. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  45155. {
  45156. side: {
  45157. height: math.unit(32, "feet"),
  45158. weight: math.unit(250000, "lb"),
  45159. name: "Side",
  45160. image: {
  45161. source: "./media/characters/silverwing/side.svg",
  45162. extra: 1100/1019,
  45163. bottom: 204/1304
  45164. }
  45165. },
  45166. },
  45167. [
  45168. {
  45169. name: "Normal",
  45170. height: math.unit(32, "feet"),
  45171. default: true
  45172. },
  45173. ]
  45174. ))
  45175. characterMakers.push(() => makeCharacter(
  45176. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45177. {
  45178. skunkFront: {
  45179. height: math.unit(4 + 6/12, "feet"),
  45180. weight: math.unit(120, "lb"),
  45181. name: "Front",
  45182. image: {
  45183. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45184. extra: 330/318,
  45185. bottom: 25/355
  45186. },
  45187. form: "skunk",
  45188. default: true
  45189. },
  45190. alolanUmbraichu_front: {
  45191. height: math.unit(2 + 6/12, "feet"),
  45192. name: "Front",
  45193. image: {
  45194. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45195. extra: 389/350,
  45196. bottom: 33/422
  45197. },
  45198. form: "alolan-umbraichu",
  45199. default: true
  45200. },
  45201. },
  45202. [
  45203. {
  45204. name: "Normal",
  45205. height: math.unit(4 + 6/12, "feet"),
  45206. form: "skunk",
  45207. default: true
  45208. },
  45209. {
  45210. name: "Normal",
  45211. height: math.unit(2 + 6/12, "feet"),
  45212. form: "alolan-umbraichu",
  45213. default: true
  45214. },
  45215. ],
  45216. {
  45217. "skunk": {
  45218. name: "Skunk",
  45219. default: true
  45220. },
  45221. "alolan-umbraichu": {
  45222. name: "Alolan Umbraichu",
  45223. },
  45224. }
  45225. ))
  45226. characterMakers.push(() => makeCharacter(
  45227. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45228. {
  45229. front: {
  45230. height: math.unit(5 + 11/12, "feet"),
  45231. weight: math.unit(190, "lb"),
  45232. name: "Front",
  45233. image: {
  45234. source: "./media/characters/mizu/front.svg",
  45235. extra: 1988/1788,
  45236. bottom: 14/2002
  45237. }
  45238. },
  45239. },
  45240. [
  45241. {
  45242. name: "Normal",
  45243. height: math.unit(5 + 11/12, "feet"),
  45244. default: true
  45245. },
  45246. ]
  45247. ))
  45248. characterMakers.push(() => makeCharacter(
  45249. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45250. {
  45251. front: {
  45252. height: math.unit(1.7, "feet"),
  45253. weight: math.unit(50, "lb"),
  45254. name: "Front",
  45255. image: {
  45256. source: "./media/characters/dechroma/front.svg",
  45257. extra: 1095/859,
  45258. bottom: 64/1159
  45259. }
  45260. },
  45261. },
  45262. [
  45263. {
  45264. name: "Normal",
  45265. height: math.unit(1.7, "feet"),
  45266. default: true
  45267. },
  45268. ]
  45269. ))
  45270. characterMakers.push(() => makeCharacter(
  45271. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45272. {
  45273. side: {
  45274. height: math.unit(30, "feet"),
  45275. name: "Side",
  45276. image: {
  45277. source: "./media/characters/veluren-thanazel/side.svg",
  45278. extra: 1611/633,
  45279. bottom: 118/1729
  45280. }
  45281. },
  45282. front: {
  45283. height: math.unit(30, "feet"),
  45284. name: "Front",
  45285. image: {
  45286. source: "./media/characters/veluren-thanazel/front.svg",
  45287. extra: 1486/636,
  45288. bottom: 238/1724
  45289. }
  45290. },
  45291. head: {
  45292. height: math.unit(21.4, "feet"),
  45293. name: "Head",
  45294. image: {
  45295. source: "./media/characters/veluren-thanazel/head.svg"
  45296. }
  45297. },
  45298. genitals: {
  45299. height: math.unit(19.4, "feet"),
  45300. name: "Genitals",
  45301. image: {
  45302. source: "./media/characters/veluren-thanazel/genitals.svg"
  45303. }
  45304. },
  45305. },
  45306. [
  45307. {
  45308. name: "Social",
  45309. height: math.unit(6, "feet")
  45310. },
  45311. {
  45312. name: "Play",
  45313. height: math.unit(12, "feet")
  45314. },
  45315. {
  45316. name: "True",
  45317. height: math.unit(30, "feet"),
  45318. default: true
  45319. },
  45320. ]
  45321. ))
  45322. characterMakers.push(() => makeCharacter(
  45323. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45324. {
  45325. front: {
  45326. height: math.unit(7 + 6/12, "feet"),
  45327. weight: math.unit(500, "kg"),
  45328. name: "Front",
  45329. image: {
  45330. source: "./media/characters/arcturas/front.svg",
  45331. extra: 1700/1500,
  45332. bottom: 145/1845
  45333. }
  45334. },
  45335. },
  45336. [
  45337. {
  45338. name: "Normal",
  45339. height: math.unit(7 + 6/12, "feet"),
  45340. default: true
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45346. {
  45347. side: {
  45348. height: math.unit(6, "feet"),
  45349. weight: math.unit(2, "tons"),
  45350. name: "Side",
  45351. image: {
  45352. source: "./media/characters/vitaen/side.svg",
  45353. extra: 1157/617,
  45354. bottom: 122/1279
  45355. }
  45356. },
  45357. },
  45358. [
  45359. {
  45360. name: "Normal",
  45361. height: math.unit(6, "feet"),
  45362. default: true
  45363. },
  45364. ]
  45365. ))
  45366. characterMakers.push(() => makeCharacter(
  45367. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45368. {
  45369. front: {
  45370. height: math.unit(19, "feet"),
  45371. name: "Front",
  45372. image: {
  45373. source: "./media/characters/fia-dreamweaver/front.svg",
  45374. extra: 1630/1504,
  45375. bottom: 25/1655
  45376. }
  45377. },
  45378. },
  45379. [
  45380. {
  45381. name: "Normal",
  45382. height: math.unit(19, "feet"),
  45383. default: true
  45384. },
  45385. ]
  45386. ))
  45387. characterMakers.push(() => makeCharacter(
  45388. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45389. {
  45390. front: {
  45391. height: math.unit(5 + 4/12, "feet"),
  45392. name: "Front",
  45393. image: {
  45394. source: "./media/characters/artan/front.svg",
  45395. extra: 1618/1535,
  45396. bottom: 46/1664
  45397. }
  45398. },
  45399. back: {
  45400. height: math.unit(5 + 4/12, "feet"),
  45401. name: "Back",
  45402. image: {
  45403. source: "./media/characters/artan/back.svg",
  45404. extra: 1618/1543,
  45405. bottom: 31/1649
  45406. }
  45407. },
  45408. },
  45409. [
  45410. {
  45411. name: "Normal",
  45412. height: math.unit(5 + 4/12, "feet"),
  45413. default: true
  45414. },
  45415. ]
  45416. ))
  45417. characterMakers.push(() => makeCharacter(
  45418. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45419. {
  45420. side: {
  45421. height: math.unit(182, "cm"),
  45422. weight: math.unit(1000, "lb"),
  45423. name: "Side",
  45424. image: {
  45425. source: "./media/characters/silver-dragon/side.svg",
  45426. extra: 710/287,
  45427. bottom: 88/798
  45428. }
  45429. },
  45430. },
  45431. [
  45432. {
  45433. name: "Normal",
  45434. height: math.unit(182, "cm"),
  45435. default: true
  45436. },
  45437. ]
  45438. ))
  45439. characterMakers.push(() => makeCharacter(
  45440. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45441. {
  45442. side: {
  45443. height: math.unit(6 + 6/12, "feet"),
  45444. weight: math.unit(1.5, "tons"),
  45445. name: "Side",
  45446. image: {
  45447. source: "./media/characters/zephyr/side.svg",
  45448. extra: 1436/603,
  45449. bottom: 105/1541
  45450. }
  45451. },
  45452. },
  45453. [
  45454. {
  45455. name: "Normal",
  45456. height: math.unit(6 + 6/12, "feet"),
  45457. default: true
  45458. },
  45459. ]
  45460. ))
  45461. characterMakers.push(() => makeCharacter(
  45462. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45463. {
  45464. side: {
  45465. height: math.unit(1, "feet"),
  45466. name: "Side",
  45467. image: {
  45468. source: "./media/characters/vixye/side.svg",
  45469. extra: 632/541,
  45470. bottom: 0/632
  45471. }
  45472. },
  45473. },
  45474. [
  45475. {
  45476. name: "Normal",
  45477. height: math.unit(1, "feet"),
  45478. default: true
  45479. },
  45480. {
  45481. name: "True",
  45482. height: math.unit(1e15, "multiverses")
  45483. },
  45484. ]
  45485. ))
  45486. characterMakers.push(() => makeCharacter(
  45487. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45488. {
  45489. front: {
  45490. height: math.unit(8 + 2/12, "feet"),
  45491. weight: math.unit(650, "lb"),
  45492. name: "Front",
  45493. image: {
  45494. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45495. extra: 1174/1137,
  45496. bottom: 82/1256
  45497. }
  45498. },
  45499. back: {
  45500. height: math.unit(8 + 2/12, "feet"),
  45501. weight: math.unit(650, "lb"),
  45502. name: "Back",
  45503. image: {
  45504. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45505. extra: 1204/1157,
  45506. bottom: 46/1250
  45507. }
  45508. },
  45509. },
  45510. [
  45511. {
  45512. name: "Wildform",
  45513. height: math.unit(8 + 2/12, "feet"),
  45514. default: true
  45515. },
  45516. ]
  45517. ))
  45518. characterMakers.push(() => makeCharacter(
  45519. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45520. {
  45521. front: {
  45522. height: math.unit(18, "feet"),
  45523. name: "Front",
  45524. image: {
  45525. source: "./media/characters/cyphin/front.svg",
  45526. extra: 970/886,
  45527. bottom: 42/1012
  45528. }
  45529. },
  45530. back: {
  45531. height: math.unit(18, "feet"),
  45532. name: "Back",
  45533. image: {
  45534. source: "./media/characters/cyphin/back.svg",
  45535. extra: 1009/894,
  45536. bottom: 24/1033
  45537. }
  45538. },
  45539. head: {
  45540. height: math.unit(5.05, "feet"),
  45541. name: "Head",
  45542. image: {
  45543. source: "./media/characters/cyphin/head.svg"
  45544. }
  45545. },
  45546. tailbud: {
  45547. height: math.unit(5, "feet"),
  45548. name: "Tailbud",
  45549. image: {
  45550. source: "./media/characters/cyphin/tailbud.svg"
  45551. }
  45552. },
  45553. },
  45554. [
  45555. ]
  45556. ))
  45557. characterMakers.push(() => makeCharacter(
  45558. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45559. {
  45560. side: {
  45561. height: math.unit(10, "feet"),
  45562. weight: math.unit(6, "tons"),
  45563. name: "Side",
  45564. image: {
  45565. source: "./media/characters/raijin/side.svg",
  45566. extra: 1529/613,
  45567. bottom: 337/1866
  45568. }
  45569. },
  45570. },
  45571. [
  45572. {
  45573. name: "Normal",
  45574. height: math.unit(10, "feet"),
  45575. default: true
  45576. },
  45577. ]
  45578. ))
  45579. characterMakers.push(() => makeCharacter(
  45580. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45581. {
  45582. side: {
  45583. height: math.unit(9, "feet"),
  45584. name: "Side",
  45585. image: {
  45586. source: "./media/characters/nilghais/side.svg",
  45587. extra: 1047/744,
  45588. bottom: 91/1138
  45589. }
  45590. },
  45591. head: {
  45592. height: math.unit(3.14, "feet"),
  45593. name: "Head",
  45594. image: {
  45595. source: "./media/characters/nilghais/head.svg"
  45596. }
  45597. },
  45598. mouth: {
  45599. height: math.unit(4.6, "feet"),
  45600. name: "Mouth",
  45601. image: {
  45602. source: "./media/characters/nilghais/mouth.svg"
  45603. }
  45604. },
  45605. wings: {
  45606. height: math.unit(24, "feet"),
  45607. name: "Wings",
  45608. image: {
  45609. source: "./media/characters/nilghais/wings.svg"
  45610. }
  45611. },
  45612. ass: {
  45613. height: math.unit(6.12, "feet"),
  45614. name: "Ass",
  45615. image: {
  45616. source: "./media/characters/nilghais/ass.svg"
  45617. }
  45618. },
  45619. },
  45620. [
  45621. {
  45622. name: "Normal",
  45623. height: math.unit(9, "feet"),
  45624. default: true
  45625. },
  45626. ]
  45627. ))
  45628. characterMakers.push(() => makeCharacter(
  45629. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45630. {
  45631. regular: {
  45632. height: math.unit(16 + 2/12, "feet"),
  45633. weight: math.unit(2300, "lb"),
  45634. name: "Regular",
  45635. image: {
  45636. source: "./media/characters/zolgar/regular.svg",
  45637. extra: 1246/1004,
  45638. bottom: 124/1370
  45639. }
  45640. },
  45641. boxers: {
  45642. height: math.unit(16 + 2/12, "feet"),
  45643. weight: math.unit(2300, "lb"),
  45644. name: "Boxers",
  45645. image: {
  45646. source: "./media/characters/zolgar/boxers.svg",
  45647. extra: 1246/1004,
  45648. bottom: 124/1370
  45649. }
  45650. },
  45651. armored: {
  45652. height: math.unit(16 + 2/12, "feet"),
  45653. weight: math.unit(2300, "lb"),
  45654. name: "Armored",
  45655. image: {
  45656. source: "./media/characters/zolgar/armored.svg",
  45657. extra: 1246/1004,
  45658. bottom: 124/1370
  45659. }
  45660. },
  45661. goth: {
  45662. height: math.unit(16 + 2/12, "feet"),
  45663. weight: math.unit(2300, "lb"),
  45664. name: "Goth",
  45665. image: {
  45666. source: "./media/characters/zolgar/goth.svg",
  45667. extra: 1246/1004,
  45668. bottom: 124/1370
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Shrunken Down",
  45675. height: math.unit(9 + 2/12, "feet")
  45676. },
  45677. {
  45678. name: "Normal",
  45679. height: math.unit(16 + 2/12, "feet"),
  45680. default: true
  45681. },
  45682. ]
  45683. ))
  45684. characterMakers.push(() => makeCharacter(
  45685. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45686. {
  45687. front: {
  45688. height: math.unit(6, "feet"),
  45689. weight: math.unit(168, "lb"),
  45690. name: "Front",
  45691. image: {
  45692. source: "./media/characters/luca/front.svg",
  45693. extra: 841/667,
  45694. bottom: 102/943
  45695. }
  45696. },
  45697. },
  45698. [
  45699. {
  45700. name: "Normal",
  45701. height: math.unit(6, "feet"),
  45702. default: true
  45703. },
  45704. ]
  45705. ))
  45706. characterMakers.push(() => makeCharacter(
  45707. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45708. {
  45709. side: {
  45710. height: math.unit(7 + 3/12, "feet"),
  45711. weight: math.unit(312, "lb"),
  45712. name: "Side",
  45713. image: {
  45714. source: "./media/characters/zezo/side.svg",
  45715. extra: 1192/1067,
  45716. bottom: 63/1255
  45717. }
  45718. },
  45719. },
  45720. [
  45721. {
  45722. name: "Normal",
  45723. height: math.unit(7 + 3/12, "feet"),
  45724. default: true
  45725. },
  45726. ]
  45727. ))
  45728. characterMakers.push(() => makeCharacter(
  45729. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45730. {
  45731. front: {
  45732. height: math.unit(5 + 5/12, "feet"),
  45733. weight: math.unit(170, "lb"),
  45734. name: "Front",
  45735. image: {
  45736. source: "./media/characters/mayso/front.svg",
  45737. extra: 1215/1108,
  45738. bottom: 16/1231
  45739. }
  45740. },
  45741. },
  45742. [
  45743. {
  45744. name: "Normal",
  45745. height: math.unit(5 + 5/12, "feet"),
  45746. default: true
  45747. },
  45748. ]
  45749. ))
  45750. characterMakers.push(() => makeCharacter(
  45751. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45752. {
  45753. front: {
  45754. height: math.unit(4 + 3/12, "feet"),
  45755. weight: math.unit(80, "lb"),
  45756. name: "Front",
  45757. image: {
  45758. source: "./media/characters/hess/front.svg",
  45759. extra: 1200/1123,
  45760. bottom: 16/1216
  45761. }
  45762. },
  45763. },
  45764. [
  45765. {
  45766. name: "Normal",
  45767. height: math.unit(4 + 3/12, "feet"),
  45768. default: true
  45769. },
  45770. ]
  45771. ))
  45772. characterMakers.push(() => makeCharacter(
  45773. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45774. {
  45775. front: {
  45776. height: math.unit(1.9, "meters"),
  45777. name: "Front",
  45778. image: {
  45779. source: "./media/characters/ashgar/front.svg",
  45780. extra: 1177/1146,
  45781. bottom: 99/1276
  45782. }
  45783. },
  45784. back: {
  45785. height: math.unit(1.9, "meters"),
  45786. name: "Back",
  45787. image: {
  45788. source: "./media/characters/ashgar/back.svg",
  45789. extra: 1201/1183,
  45790. bottom: 53/1254
  45791. }
  45792. },
  45793. feral: {
  45794. height: math.unit(1.4, "meters"),
  45795. name: "Feral",
  45796. image: {
  45797. source: "./media/characters/ashgar/feral.svg",
  45798. extra: 370/345,
  45799. bottom: 45/415
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Normal",
  45806. height: math.unit(1.9, "meters"),
  45807. default: true
  45808. },
  45809. ]
  45810. ))
  45811. characterMakers.push(() => makeCharacter(
  45812. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45813. {
  45814. regular: {
  45815. height: math.unit(6, "feet"),
  45816. weight: math.unit(220, "lb"),
  45817. name: "Regular",
  45818. image: {
  45819. source: "./media/characters/phillip/regular.svg",
  45820. extra: 1373/1277,
  45821. bottom: 75/1448
  45822. }
  45823. },
  45824. dressed: {
  45825. height: math.unit(6, "feet"),
  45826. weight: math.unit(220, "lb"),
  45827. name: "Dressed",
  45828. image: {
  45829. source: "./media/characters/phillip/dressed.svg",
  45830. extra: 1373/1277,
  45831. bottom: 75/1448
  45832. }
  45833. },
  45834. paw: {
  45835. height: math.unit(1.44, "feet"),
  45836. name: "Paw",
  45837. image: {
  45838. source: "./media/characters/phillip/paw.svg"
  45839. }
  45840. },
  45841. },
  45842. [
  45843. {
  45844. name: "Normal",
  45845. height: math.unit(6, "feet"),
  45846. default: true
  45847. },
  45848. ]
  45849. ))
  45850. characterMakers.push(() => makeCharacter(
  45851. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45852. {
  45853. side: {
  45854. height: math.unit(42, "feet"),
  45855. name: "Side",
  45856. image: {
  45857. source: "./media/characters/uvula/side.svg",
  45858. extra: 683/586,
  45859. bottom: 60/743
  45860. }
  45861. },
  45862. front: {
  45863. height: math.unit(42, "feet"),
  45864. name: "Front",
  45865. image: {
  45866. source: "./media/characters/uvula/front.svg",
  45867. extra: 705/613,
  45868. bottom: 54/759
  45869. }
  45870. },
  45871. maw: {
  45872. height: math.unit(23.5, "feet"),
  45873. name: "Maw",
  45874. image: {
  45875. source: "./media/characters/uvula/maw.svg"
  45876. }
  45877. },
  45878. },
  45879. [
  45880. {
  45881. name: "Original Size",
  45882. height: math.unit(14, "inches")
  45883. },
  45884. {
  45885. name: "Human Size",
  45886. height: math.unit(6, "feet")
  45887. },
  45888. {
  45889. name: "Big",
  45890. height: math.unit(42, "feet"),
  45891. default: true
  45892. },
  45893. {
  45894. name: "Bigger",
  45895. height: math.unit(100, "feet")
  45896. },
  45897. ]
  45898. ))
  45899. characterMakers.push(() => makeCharacter(
  45900. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45901. {
  45902. front: {
  45903. height: math.unit(5 + 11/12, "feet"),
  45904. name: "Front",
  45905. image: {
  45906. source: "./media/characters/lannah/front.svg",
  45907. extra: 1208/1113,
  45908. bottom: 97/1305
  45909. }
  45910. },
  45911. },
  45912. [
  45913. {
  45914. name: "Normal",
  45915. height: math.unit(5 + 11/12, "feet"),
  45916. default: true
  45917. },
  45918. ]
  45919. ))
  45920. characterMakers.push(() => makeCharacter(
  45921. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45922. {
  45923. front: {
  45924. height: math.unit(6 + 3/12, "feet"),
  45925. weight: math.unit(3.5, "tons"),
  45926. name: "Front",
  45927. image: {
  45928. source: "./media/characters/emberflame/front.svg",
  45929. extra: 1198/672,
  45930. bottom: 82/1280
  45931. }
  45932. },
  45933. side: {
  45934. height: math.unit(6 + 3/12, "feet"),
  45935. weight: math.unit(3.5, "tons"),
  45936. name: "Side",
  45937. image: {
  45938. source: "./media/characters/emberflame/side.svg",
  45939. extra: 938/527,
  45940. bottom: 56/994
  45941. }
  45942. },
  45943. },
  45944. [
  45945. {
  45946. name: "Normal",
  45947. height: math.unit(6 + 3/12, "feet"),
  45948. default: true
  45949. },
  45950. ]
  45951. ))
  45952. characterMakers.push(() => makeCharacter(
  45953. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45954. {
  45955. side: {
  45956. height: math.unit(17.5, "feet"),
  45957. weight: math.unit(35, "tons"),
  45958. name: "Side",
  45959. image: {
  45960. source: "./media/characters/sophie-ambrose/side.svg",
  45961. extra: 1573/1242,
  45962. bottom: 71/1644
  45963. }
  45964. },
  45965. maw: {
  45966. height: math.unit(7.4, "feet"),
  45967. name: "Maw",
  45968. image: {
  45969. source: "./media/characters/sophie-ambrose/maw.svg"
  45970. }
  45971. },
  45972. },
  45973. [
  45974. {
  45975. name: "Normal",
  45976. height: math.unit(17.5, "feet"),
  45977. default: true
  45978. },
  45979. ]
  45980. ))
  45981. characterMakers.push(() => makeCharacter(
  45982. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45983. {
  45984. front: {
  45985. height: math.unit(280, "feet"),
  45986. weight: math.unit(550, "tons"),
  45987. name: "Front",
  45988. image: {
  45989. source: "./media/characters/king-mugi/front.svg",
  45990. extra: 1102/947,
  45991. bottom: 104/1206
  45992. }
  45993. },
  45994. },
  45995. [
  45996. {
  45997. name: "King Mugi",
  45998. height: math.unit(280, "feet"),
  45999. default: true
  46000. },
  46001. ]
  46002. ))
  46003. characterMakers.push(() => makeCharacter(
  46004. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  46005. {
  46006. female: {
  46007. height: math.unit(300, "meters"),
  46008. name: "Front",
  46009. image: {
  46010. source: "./media/characters/nova-fox/female.svg",
  46011. extra: 664/632,
  46012. bottom: 51/715
  46013. },
  46014. form: "female",
  46015. default: true
  46016. },
  46017. male: {
  46018. height: math.unit(300, "meters"),
  46019. name: "Front",
  46020. image: {
  46021. source: "./media/characters/nova-fox/male.svg",
  46022. extra: 663/631,
  46023. bottom: 30/693
  46024. },
  46025. form: "male",
  46026. default: true
  46027. },
  46028. },
  46029. [
  46030. {
  46031. name: "Macro",
  46032. height: math.unit(300, "meters"),
  46033. default: true,
  46034. allForms: true
  46035. },
  46036. ],
  46037. {
  46038. "female": {
  46039. name: "Female",
  46040. default: true
  46041. },
  46042. "male": {
  46043. name: "Male",
  46044. },
  46045. }
  46046. ))
  46047. characterMakers.push(() => makeCharacter(
  46048. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  46049. {
  46050. front: {
  46051. height: math.unit(6 + 3/12, "feet"),
  46052. weight: math.unit(170, "lb"),
  46053. name: "Front",
  46054. image: {
  46055. source: "./media/characters/sam-bat/front.svg",
  46056. extra: 1601/1411,
  46057. bottom: 125/1726
  46058. }
  46059. },
  46060. back: {
  46061. height: math.unit(6 + 3/12, "feet"),
  46062. weight: math.unit(170, "lb"),
  46063. name: "Back",
  46064. image: {
  46065. source: "./media/characters/sam-bat/back.svg",
  46066. extra: 1577/1405,
  46067. bottom: 58/1635
  46068. }
  46069. },
  46070. },
  46071. [
  46072. {
  46073. name: "Normal",
  46074. height: math.unit(6 + 3/12, "feet"),
  46075. default: true
  46076. },
  46077. ]
  46078. ))
  46079. characterMakers.push(() => makeCharacter(
  46080. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  46081. {
  46082. front: {
  46083. height: math.unit(59, "feet"),
  46084. weight: math.unit(40000, "lb"),
  46085. name: "Front",
  46086. image: {
  46087. source: "./media/characters/inari/front.svg",
  46088. extra: 1884/1350,
  46089. bottom: 95/1979
  46090. }
  46091. },
  46092. },
  46093. [
  46094. {
  46095. name: "Gigantamax",
  46096. height: math.unit(59, "feet"),
  46097. default: true
  46098. },
  46099. ]
  46100. ))
  46101. characterMakers.push(() => makeCharacter(
  46102. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  46103. {
  46104. front: {
  46105. height: math.unit(5 + 8/12, "feet"),
  46106. name: "Front",
  46107. image: {
  46108. source: "./media/characters/elizabeth/front.svg",
  46109. extra: 1395/1298,
  46110. bottom: 54/1449
  46111. }
  46112. },
  46113. mouth: {
  46114. height: math.unit(1.97, "feet"),
  46115. name: "Mouth",
  46116. image: {
  46117. source: "./media/characters/elizabeth/mouth.svg"
  46118. }
  46119. },
  46120. foot: {
  46121. height: math.unit(1.17, "feet"),
  46122. name: "Foot",
  46123. image: {
  46124. source: "./media/characters/elizabeth/foot.svg"
  46125. }
  46126. },
  46127. },
  46128. [
  46129. {
  46130. name: "Normal",
  46131. height: math.unit(5 + 8/12, "feet"),
  46132. default: true
  46133. },
  46134. {
  46135. name: "Minimacro",
  46136. height: math.unit(18, "feet")
  46137. },
  46138. {
  46139. name: "Macro",
  46140. height: math.unit(180, "feet")
  46141. },
  46142. ]
  46143. ))
  46144. characterMakers.push(() => makeCharacter(
  46145. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  46146. {
  46147. front: {
  46148. height: math.unit(5 + 2/12, "feet"),
  46149. name: "Front",
  46150. image: {
  46151. source: "./media/characters/october-gossamer/front.svg",
  46152. extra: 505/454,
  46153. bottom: 7/512
  46154. }
  46155. },
  46156. back: {
  46157. height: math.unit(5 + 2/12, "feet"),
  46158. name: "Back",
  46159. image: {
  46160. source: "./media/characters/october-gossamer/back.svg",
  46161. extra: 501/454,
  46162. bottom: 11/512
  46163. }
  46164. },
  46165. },
  46166. [
  46167. {
  46168. name: "Normal",
  46169. height: math.unit(5 + 2/12, "feet"),
  46170. default: true
  46171. },
  46172. ]
  46173. ))
  46174. characterMakers.push(() => makeCharacter(
  46175. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  46176. {
  46177. front: {
  46178. height: math.unit(5, "feet"),
  46179. name: "Front",
  46180. image: {
  46181. source: "./media/characters/epiglottis/front.svg",
  46182. extra: 923/849,
  46183. bottom: 17/940
  46184. }
  46185. },
  46186. },
  46187. [
  46188. {
  46189. name: "Original Size",
  46190. height: math.unit(10, "inches")
  46191. },
  46192. {
  46193. name: "Human Size",
  46194. height: math.unit(5, "feet"),
  46195. default: true
  46196. },
  46197. {
  46198. name: "Big",
  46199. height: math.unit(25, "feet")
  46200. },
  46201. {
  46202. name: "Bigger",
  46203. height: math.unit(50, "feet")
  46204. },
  46205. {
  46206. name: "oh lawd",
  46207. height: math.unit(75, "feet")
  46208. },
  46209. ]
  46210. ))
  46211. characterMakers.push(() => makeCharacter(
  46212. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46213. {
  46214. front: {
  46215. height: math.unit(2 + 4/12, "feet"),
  46216. weight: math.unit(60, "lb"),
  46217. name: "Front",
  46218. image: {
  46219. source: "./media/characters/lerm/front.svg",
  46220. extra: 796/790,
  46221. bottom: 79/875
  46222. }
  46223. },
  46224. },
  46225. [
  46226. {
  46227. name: "Normal",
  46228. height: math.unit(2 + 4/12, "feet"),
  46229. default: true
  46230. },
  46231. ]
  46232. ))
  46233. characterMakers.push(() => makeCharacter(
  46234. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46235. {
  46236. front: {
  46237. height: math.unit(5.5, "feet"),
  46238. weight: math.unit(130, "lb"),
  46239. name: "Front",
  46240. image: {
  46241. source: "./media/characters/xena-nebadon/front.svg",
  46242. extra: 1828/1730,
  46243. bottom: 79/1907
  46244. }
  46245. },
  46246. },
  46247. [
  46248. {
  46249. name: "Tiny Puppy",
  46250. height: math.unit(3, "inches")
  46251. },
  46252. {
  46253. name: "Normal",
  46254. height: math.unit(5.5, "feet"),
  46255. default: true
  46256. },
  46257. {
  46258. name: "Lotta Lady",
  46259. height: math.unit(12, "feet")
  46260. },
  46261. {
  46262. name: "Pretty Big",
  46263. height: math.unit(100, "feet")
  46264. },
  46265. {
  46266. name: "Big",
  46267. height: math.unit(500, "feet")
  46268. },
  46269. {
  46270. name: "Skyscraper Toys",
  46271. height: math.unit(2500, "feet")
  46272. },
  46273. {
  46274. name: "Plane Catcher",
  46275. height: math.unit(8, "miles")
  46276. },
  46277. {
  46278. name: "Planet Toys",
  46279. height: math.unit(15, "earths")
  46280. },
  46281. {
  46282. name: "Stardust",
  46283. height: math.unit(0.25, "galaxies")
  46284. },
  46285. {
  46286. name: "Snacks",
  46287. height: math.unit(70, "universes")
  46288. },
  46289. ]
  46290. ))
  46291. characterMakers.push(() => makeCharacter(
  46292. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46293. {
  46294. front: {
  46295. height: math.unit(1.6, "meters"),
  46296. weight: math.unit(60, "kg"),
  46297. name: "Front",
  46298. image: {
  46299. source: "./media/characters/bounty/front.svg",
  46300. extra: 1426/1308,
  46301. bottom: 15/1441
  46302. }
  46303. },
  46304. back: {
  46305. height: math.unit(1.6, "meters"),
  46306. weight: math.unit(60, "kg"),
  46307. name: "Back",
  46308. image: {
  46309. source: "./media/characters/bounty/back.svg",
  46310. extra: 1417/1307,
  46311. bottom: 8/1425
  46312. }
  46313. },
  46314. },
  46315. [
  46316. {
  46317. name: "Normal",
  46318. height: math.unit(1.6, "meters"),
  46319. default: true
  46320. },
  46321. {
  46322. name: "Macro",
  46323. height: math.unit(300, "meters")
  46324. },
  46325. ]
  46326. ))
  46327. characterMakers.push(() => makeCharacter(
  46328. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46329. {
  46330. front: {
  46331. height: math.unit(2 + 8/12, "feet"),
  46332. weight: math.unit(15, "lb"),
  46333. name: "Front",
  46334. image: {
  46335. source: "./media/characters/mochi/front.svg",
  46336. extra: 1022/852,
  46337. bottom: 435/1457
  46338. }
  46339. },
  46340. back: {
  46341. height: math.unit(2 + 8/12, "feet"),
  46342. weight: math.unit(15, "lb"),
  46343. name: "Back",
  46344. image: {
  46345. source: "./media/characters/mochi/back.svg",
  46346. extra: 1335/1119,
  46347. bottom: 39/1374
  46348. }
  46349. },
  46350. bird: {
  46351. height: math.unit(2 + 8/12, "feet"),
  46352. weight: math.unit(15, "lb"),
  46353. name: "Bird",
  46354. image: {
  46355. source: "./media/characters/mochi/bird.svg",
  46356. extra: 1251/1113,
  46357. bottom: 178/1429
  46358. }
  46359. },
  46360. kaiju: {
  46361. height: math.unit(154, "feet"),
  46362. weight: math.unit(1e7, "lb"),
  46363. name: "Kaiju",
  46364. image: {
  46365. source: "./media/characters/mochi/kaiju.svg",
  46366. extra: 460/324,
  46367. bottom: 40/500
  46368. }
  46369. },
  46370. head: {
  46371. height: math.unit(1.21, "feet"),
  46372. name: "Head",
  46373. image: {
  46374. source: "./media/characters/mochi/head.svg"
  46375. }
  46376. },
  46377. alternateTail: {
  46378. height: math.unit(2 + 8/12, "feet"),
  46379. weight: math.unit(45, "lb"),
  46380. name: "Alternate Tail",
  46381. image: {
  46382. source: "./media/characters/mochi/alternate-tail.svg",
  46383. extra: 139/76,
  46384. bottom: 45/184
  46385. }
  46386. },
  46387. },
  46388. [
  46389. {
  46390. name: "Micro",
  46391. height: math.unit(2, "inches")
  46392. },
  46393. {
  46394. name: "Normal",
  46395. height: math.unit(2 + 8/12, "feet"),
  46396. default: true
  46397. },
  46398. {
  46399. name: "Macro",
  46400. height: math.unit(106, "feet")
  46401. },
  46402. ]
  46403. ))
  46404. characterMakers.push(() => makeCharacter(
  46405. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46406. {
  46407. front: {
  46408. height: math.unit(5.67, "feet"),
  46409. weight: math.unit(135, "lb"),
  46410. name: "Front",
  46411. image: {
  46412. source: "./media/characters/sarel/front.svg",
  46413. extra: 865/788,
  46414. bottom: 97/962
  46415. }
  46416. },
  46417. back: {
  46418. height: math.unit(5.67, "feet"),
  46419. weight: math.unit(135, "lb"),
  46420. name: "Back",
  46421. image: {
  46422. source: "./media/characters/sarel/back.svg",
  46423. extra: 857/777,
  46424. bottom: 32/889
  46425. }
  46426. },
  46427. chozoan: {
  46428. height: math.unit(5.67, "feet"),
  46429. weight: math.unit(135, "lb"),
  46430. name: "Chozoan",
  46431. image: {
  46432. source: "./media/characters/sarel/chozoan.svg",
  46433. extra: 865/788,
  46434. bottom: 97/962
  46435. }
  46436. },
  46437. current: {
  46438. height: math.unit(5.67, "feet"),
  46439. weight: math.unit(135, "lb"),
  46440. name: "Current",
  46441. image: {
  46442. source: "./media/characters/sarel/current.svg",
  46443. extra: 865/788,
  46444. bottom: 97/962
  46445. }
  46446. },
  46447. head: {
  46448. height: math.unit(1.77, "feet"),
  46449. name: "Head",
  46450. image: {
  46451. source: "./media/characters/sarel/head.svg"
  46452. }
  46453. },
  46454. claws: {
  46455. height: math.unit(1.8, "feet"),
  46456. name: "Claws",
  46457. image: {
  46458. source: "./media/characters/sarel/claws.svg"
  46459. }
  46460. },
  46461. clawsAlt: {
  46462. height: math.unit(1.8, "feet"),
  46463. name: "Claws (Alt)",
  46464. image: {
  46465. source: "./media/characters/sarel/claws-alt.svg"
  46466. }
  46467. },
  46468. },
  46469. [
  46470. {
  46471. name: "Normal",
  46472. height: math.unit(5.67, "feet"),
  46473. default: true
  46474. },
  46475. ]
  46476. ))
  46477. characterMakers.push(() => makeCharacter(
  46478. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46479. {
  46480. front: {
  46481. height: math.unit(5500, "feet"),
  46482. name: "Front",
  46483. image: {
  46484. source: "./media/characters/alyonia/front.svg",
  46485. extra: 1200/1135,
  46486. bottom: 29/1229
  46487. }
  46488. },
  46489. back: {
  46490. height: math.unit(5500, "feet"),
  46491. name: "Back",
  46492. image: {
  46493. source: "./media/characters/alyonia/back.svg",
  46494. extra: 1205/1138,
  46495. bottom: 10/1215
  46496. }
  46497. },
  46498. },
  46499. [
  46500. {
  46501. name: "Small",
  46502. height: math.unit(10, "feet")
  46503. },
  46504. {
  46505. name: "Macro",
  46506. height: math.unit(500, "feet")
  46507. },
  46508. {
  46509. name: "Mega Macro",
  46510. height: math.unit(5500, "feet"),
  46511. default: true
  46512. },
  46513. {
  46514. name: "Mega Macro+",
  46515. height: math.unit(500000, "feet")
  46516. },
  46517. {
  46518. name: "Giga Macro",
  46519. height: math.unit(3000, "miles")
  46520. },
  46521. {
  46522. name: "Tera Macro",
  46523. height: math.unit(2.8e6, "miles")
  46524. },
  46525. {
  46526. name: "Galactic",
  46527. height: math.unit(120000, "lightyears")
  46528. },
  46529. ]
  46530. ))
  46531. characterMakers.push(() => makeCharacter(
  46532. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46533. {
  46534. werewolf: {
  46535. height: math.unit(8, "feet"),
  46536. weight: math.unit(425, "lb"),
  46537. name: "Werewolf",
  46538. image: {
  46539. source: "./media/characters/autumn/werewolf.svg",
  46540. extra: 2154/2031,
  46541. bottom: 160/2314
  46542. }
  46543. },
  46544. human: {
  46545. height: math.unit(5 + 8/12, "feet"),
  46546. weight: math.unit(150, "lb"),
  46547. name: "Human",
  46548. image: {
  46549. source: "./media/characters/autumn/human.svg",
  46550. extra: 1200/1149,
  46551. bottom: 30/1230
  46552. }
  46553. },
  46554. },
  46555. [
  46556. {
  46557. name: "Normal",
  46558. height: math.unit(8, "feet"),
  46559. default: true
  46560. },
  46561. ]
  46562. ))
  46563. characterMakers.push(() => makeCharacter(
  46564. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46565. {
  46566. front: {
  46567. height: math.unit(8 + 5/12, "feet"),
  46568. weight: math.unit(825, "lb"),
  46569. name: "Front",
  46570. image: {
  46571. source: "./media/characters/cobalt-charizard/front.svg",
  46572. extra: 1268/1155,
  46573. bottom: 122/1390
  46574. }
  46575. },
  46576. side: {
  46577. height: math.unit(8 + 5/12, "feet"),
  46578. weight: math.unit(825, "lb"),
  46579. name: "Side",
  46580. image: {
  46581. source: "./media/characters/cobalt-charizard/side.svg",
  46582. extra: 1348/1257,
  46583. bottom: 58/1406
  46584. }
  46585. },
  46586. gMax: {
  46587. height: math.unit(134 + 11/12, "feet"),
  46588. name: "G-Max",
  46589. image: {
  46590. source: "./media/characters/cobalt-charizard/g-max.svg",
  46591. extra: 1835/1541,
  46592. bottom: 151/1986
  46593. }
  46594. },
  46595. },
  46596. [
  46597. {
  46598. name: "Normal",
  46599. height: math.unit(8 + 5/12, "feet"),
  46600. default: true
  46601. },
  46602. ]
  46603. ))
  46604. characterMakers.push(() => makeCharacter(
  46605. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46606. {
  46607. front: {
  46608. height: math.unit(6 + 3/12, "feet"),
  46609. weight: math.unit(210, "lb"),
  46610. name: "Front",
  46611. image: {
  46612. source: "./media/characters/stella/front.svg",
  46613. extra: 3549/3335,
  46614. bottom: 51/3600
  46615. }
  46616. },
  46617. },
  46618. [
  46619. {
  46620. name: "Normal",
  46621. height: math.unit(6 + 3/12, "feet"),
  46622. default: true
  46623. },
  46624. ]
  46625. ))
  46626. characterMakers.push(() => makeCharacter(
  46627. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46628. {
  46629. front: {
  46630. height: math.unit(5, "feet"),
  46631. weight: math.unit(90, "lb"),
  46632. name: "Front",
  46633. image: {
  46634. source: "./media/characters/riley-bishop/front.svg",
  46635. extra: 1450/1428,
  46636. bottom: 152/1602
  46637. }
  46638. },
  46639. },
  46640. [
  46641. {
  46642. name: "Normal",
  46643. height: math.unit(5, "feet"),
  46644. default: true
  46645. },
  46646. ]
  46647. ))
  46648. characterMakers.push(() => makeCharacter(
  46649. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46650. {
  46651. side: {
  46652. height: math.unit(8 + 2/12, "feet"),
  46653. weight: math.unit(500, "kg"),
  46654. name: "Side",
  46655. image: {
  46656. source: "./media/characters/theo-arcanine/side.svg",
  46657. extra: 1342/1074,
  46658. bottom: 111/1453
  46659. }
  46660. },
  46661. },
  46662. [
  46663. {
  46664. name: "Normal",
  46665. height: math.unit(8 + 2/12, "feet"),
  46666. default: true
  46667. },
  46668. ]
  46669. ))
  46670. characterMakers.push(() => makeCharacter(
  46671. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46672. {
  46673. front: {
  46674. height: math.unit(4, "feet"),
  46675. name: "Front",
  46676. image: {
  46677. source: "./media/characters/kali/front.svg",
  46678. extra: 1074/867,
  46679. bottom: 34/1108
  46680. }
  46681. },
  46682. back: {
  46683. height: math.unit(4, "feet"),
  46684. name: "Back",
  46685. image: {
  46686. source: "./media/characters/kali/back.svg",
  46687. extra: 1068/863,
  46688. bottom: 26/1094
  46689. }
  46690. },
  46691. frontAlt: {
  46692. height: math.unit(4, "feet"),
  46693. name: "Front (Alt)",
  46694. image: {
  46695. source: "./media/characters/kali/front-alt.svg",
  46696. extra: 1921/1357,
  46697. bottom: 70/1991
  46698. }
  46699. },
  46700. },
  46701. [
  46702. {
  46703. name: "Normal",
  46704. height: math.unit(4, "feet"),
  46705. default: true
  46706. },
  46707. {
  46708. name: "Big'vali",
  46709. height: math.unit(11, "feet")
  46710. },
  46711. {
  46712. name: "Macro",
  46713. height: math.unit(32, "meters")
  46714. },
  46715. {
  46716. name: "Macro+",
  46717. height: math.unit(150, "meters")
  46718. },
  46719. {
  46720. name: "Megamacro",
  46721. height: math.unit(7500, "meters")
  46722. },
  46723. {
  46724. name: "Megamacro+",
  46725. height: math.unit(80, "kilometers")
  46726. },
  46727. ]
  46728. ))
  46729. characterMakers.push(() => makeCharacter(
  46730. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46731. {
  46732. side: {
  46733. height: math.unit(5 + 11/12, "feet"),
  46734. weight: math.unit(236, "lb"),
  46735. name: "Side",
  46736. image: {
  46737. source: "./media/characters/gapp/side.svg",
  46738. extra: 775/340,
  46739. bottom: 58/833
  46740. }
  46741. },
  46742. mouth: {
  46743. height: math.unit(2.98, "feet"),
  46744. name: "Mouth",
  46745. image: {
  46746. source: "./media/characters/gapp/mouth.svg"
  46747. }
  46748. },
  46749. },
  46750. [
  46751. {
  46752. name: "Normal",
  46753. height: math.unit(5 + 1/12, "feet"),
  46754. default: true
  46755. },
  46756. ]
  46757. ))
  46758. characterMakers.push(() => makeCharacter(
  46759. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46760. {
  46761. front: {
  46762. height: math.unit(6, "feet"),
  46763. name: "Front",
  46764. image: {
  46765. source: "./media/characters/persephone/front.svg",
  46766. extra: 1895/1717,
  46767. bottom: 96/1991
  46768. }
  46769. },
  46770. back: {
  46771. height: math.unit(6, "feet"),
  46772. name: "Back",
  46773. image: {
  46774. source: "./media/characters/persephone/back.svg",
  46775. extra: 1868/1679,
  46776. bottom: 26/1894
  46777. }
  46778. },
  46779. casual: {
  46780. height: math.unit(6, "feet"),
  46781. name: "Casual",
  46782. image: {
  46783. source: "./media/characters/persephone/casual.svg",
  46784. extra: 1713/1541,
  46785. bottom: 76/1789
  46786. }
  46787. },
  46788. gaming: {
  46789. height: math.unit(3.55, "feet"),
  46790. name: "Gaming",
  46791. image: {
  46792. source: "./media/characters/persephone/gaming.svg",
  46793. extra: 1242/1038,
  46794. bottom: 66/1308
  46795. }
  46796. },
  46797. head: {
  46798. height: math.unit(2.15, "feet"),
  46799. name: "😐",
  46800. image: {
  46801. source: "./media/characters/persephone/head.svg"
  46802. }
  46803. },
  46804. talking: {
  46805. height: math.unit(2.5, "feet"),
  46806. name: "💬",
  46807. image: {
  46808. source: "./media/characters/persephone/talking.svg"
  46809. }
  46810. },
  46811. hmm: {
  46812. height: math.unit(2.28, "feet"),
  46813. name: "🤨",
  46814. image: {
  46815. source: "./media/characters/persephone/hmm.svg"
  46816. }
  46817. },
  46818. },
  46819. [
  46820. {
  46821. name: "Human Size",
  46822. height: math.unit(6, "feet")
  46823. },
  46824. {
  46825. name: "Big Steppy",
  46826. height: math.unit(600, "meters"),
  46827. default: true
  46828. },
  46829. {
  46830. name: "Galaxy Brain",
  46831. height: math.unit(1, "zettameter")
  46832. },
  46833. ]
  46834. ))
  46835. characterMakers.push(() => makeCharacter(
  46836. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46837. {
  46838. front: {
  46839. height: math.unit(1.85, "meters"),
  46840. name: "Front",
  46841. image: {
  46842. source: "./media/characters/riley-foxthing/front.svg",
  46843. extra: 1495/1354,
  46844. bottom: 122/1617
  46845. }
  46846. },
  46847. frontAlt: {
  46848. height: math.unit(1.85, "meters"),
  46849. name: "Front (Alt)",
  46850. image: {
  46851. source: "./media/characters/riley-foxthing/front-alt.svg",
  46852. extra: 1572/1389,
  46853. bottom: 116/1688
  46854. }
  46855. },
  46856. },
  46857. [
  46858. {
  46859. name: "Normal Sized",
  46860. height: math.unit(1.85, "meters"),
  46861. default: true
  46862. },
  46863. {
  46864. name: "Quite Sizable",
  46865. height: math.unit(5, "meters")
  46866. },
  46867. {
  46868. name: "Rather Large",
  46869. height: math.unit(20, "meters")
  46870. },
  46871. {
  46872. name: "Macro",
  46873. height: math.unit(450, "meters")
  46874. },
  46875. {
  46876. name: "Giga",
  46877. height: math.unit(5, "km")
  46878. },
  46879. ]
  46880. ))
  46881. characterMakers.push(() => makeCharacter(
  46882. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46883. {
  46884. front: {
  46885. height: math.unit(6, "feet"),
  46886. weight: math.unit(200, "lb"),
  46887. name: "Front",
  46888. image: {
  46889. source: "./media/characters/blizzard/front.svg",
  46890. extra: 1136/990,
  46891. bottom: 136/1272
  46892. }
  46893. },
  46894. back: {
  46895. height: math.unit(6, "feet"),
  46896. weight: math.unit(200, "lb"),
  46897. name: "Back",
  46898. image: {
  46899. source: "./media/characters/blizzard/back.svg",
  46900. extra: 1175/1034,
  46901. bottom: 97/1272
  46902. }
  46903. },
  46904. sitting: {
  46905. height: math.unit(3.725, "feet"),
  46906. weight: math.unit(200, "lb"),
  46907. name: "Sitting",
  46908. image: {
  46909. source: "./media/characters/blizzard/sitting.svg",
  46910. extra: 581/485,
  46911. bottom: 90/671
  46912. }
  46913. },
  46914. frontWizard: {
  46915. height: math.unit(7.9, "feet"),
  46916. weight: math.unit(200, "lb"),
  46917. name: "Front (Wizard)",
  46918. image: {
  46919. source: "./media/characters/blizzard/front-wizard.svg"
  46920. }
  46921. },
  46922. backWizard: {
  46923. height: math.unit(7.9, "feet"),
  46924. weight: math.unit(200, "lb"),
  46925. name: "Back (Wizard)",
  46926. image: {
  46927. source: "./media/characters/blizzard/back-wizard.svg"
  46928. }
  46929. },
  46930. frontNsfw: {
  46931. height: math.unit(6, "feet"),
  46932. weight: math.unit(200, "lb"),
  46933. name: "Front (NSFW)",
  46934. image: {
  46935. source: "./media/characters/blizzard/front-nsfw.svg",
  46936. extra: 1136/990,
  46937. bottom: 136/1272
  46938. }
  46939. },
  46940. backNsfw: {
  46941. height: math.unit(6, "feet"),
  46942. weight: math.unit(200, "lb"),
  46943. name: "Back (NSFW)",
  46944. image: {
  46945. source: "./media/characters/blizzard/back-nsfw.svg",
  46946. extra: 1175/1034,
  46947. bottom: 97/1272
  46948. }
  46949. },
  46950. sittingNsfw: {
  46951. height: math.unit(3.725, "feet"),
  46952. weight: math.unit(200, "lb"),
  46953. name: "Sitting (NSFW)",
  46954. image: {
  46955. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46956. extra: 581/485,
  46957. bottom: 90/671
  46958. }
  46959. },
  46960. wizardFrontNsfw: {
  46961. height: math.unit(7.9, "feet"),
  46962. weight: math.unit(200, "lb"),
  46963. name: "Wizard (Front, NSFW)",
  46964. image: {
  46965. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46966. }
  46967. },
  46968. },
  46969. [
  46970. {
  46971. name: "Normal",
  46972. height: math.unit(6, "feet"),
  46973. default: true
  46974. },
  46975. ]
  46976. ))
  46977. characterMakers.push(() => makeCharacter(
  46978. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46979. {
  46980. front: {
  46981. height: math.unit(5 + 2/12, "feet"),
  46982. name: "Front",
  46983. image: {
  46984. source: "./media/characters/lumi/front.svg",
  46985. extra: 1328/1268,
  46986. bottom: 103/1431
  46987. }
  46988. },
  46989. back: {
  46990. height: math.unit(5 + 2/12, "feet"),
  46991. name: "Back",
  46992. image: {
  46993. source: "./media/characters/lumi/back.svg",
  46994. extra: 1381/1327,
  46995. bottom: 43/1424
  46996. }
  46997. },
  46998. },
  46999. [
  47000. {
  47001. name: "Normal",
  47002. height: math.unit(5 + 2/12, "feet"),
  47003. default: true
  47004. },
  47005. ]
  47006. ))
  47007. characterMakers.push(() => makeCharacter(
  47008. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  47009. {
  47010. front: {
  47011. height: math.unit(5 + 9/12, "feet"),
  47012. name: "Front",
  47013. image: {
  47014. source: "./media/characters/aliya-cotton/front.svg",
  47015. extra: 577/564,
  47016. bottom: 29/606
  47017. }
  47018. },
  47019. },
  47020. [
  47021. {
  47022. name: "Normal",
  47023. height: math.unit(5 + 9/12, "feet"),
  47024. default: true
  47025. },
  47026. ]
  47027. ))
  47028. characterMakers.push(() => makeCharacter(
  47029. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  47030. {
  47031. front: {
  47032. height: math.unit(2.7, "meters"),
  47033. weight: math.unit(25000, "lb"),
  47034. name: "Front",
  47035. image: {
  47036. source: "./media/characters/noah-luxray/front.svg",
  47037. extra: 1644/825,
  47038. bottom: 339/1983
  47039. }
  47040. },
  47041. side: {
  47042. height: math.unit(2.97, "meters"),
  47043. weight: math.unit(25000, "lb"),
  47044. name: "Side",
  47045. image: {
  47046. source: "./media/characters/noah-luxray/side.svg",
  47047. extra: 1319/650,
  47048. bottom: 163/1482
  47049. }
  47050. },
  47051. dick: {
  47052. height: math.unit(7.4, "feet"),
  47053. weight: math.unit(2500, "lb"),
  47054. name: "Dick",
  47055. image: {
  47056. source: "./media/characters/noah-luxray/dick.svg"
  47057. }
  47058. },
  47059. dickAlt: {
  47060. height: math.unit(10.83, "feet"),
  47061. weight: math.unit(2500, "lb"),
  47062. name: "Dick (Alt)",
  47063. image: {
  47064. source: "./media/characters/noah-luxray/dick-alt.svg"
  47065. }
  47066. },
  47067. },
  47068. [
  47069. {
  47070. name: "BIG",
  47071. height: math.unit(2.7, "meters"),
  47072. default: true
  47073. },
  47074. ]
  47075. ))
  47076. characterMakers.push(() => makeCharacter(
  47077. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  47078. {
  47079. standing: {
  47080. height: math.unit(183, "cm"),
  47081. weight: math.unit(68, "kg"),
  47082. name: "Standing",
  47083. image: {
  47084. source: "./media/characters/arion/standing.svg",
  47085. extra: 1869/1807,
  47086. bottom: 93/1962
  47087. }
  47088. },
  47089. reclining: {
  47090. height: math.unit(70.5, "cm"),
  47091. weight: math.unit(68, "lb"),
  47092. name: "Reclining",
  47093. image: {
  47094. source: "./media/characters/arion/reclining.svg",
  47095. extra: 937/870,
  47096. bottom: 63/1000
  47097. }
  47098. },
  47099. },
  47100. [
  47101. {
  47102. name: "Colossus Size, Low",
  47103. height: math.unit(33, "meters"),
  47104. default: true
  47105. },
  47106. {
  47107. name: "Colossus Size, Mid",
  47108. height: math.unit(52, "meters")
  47109. },
  47110. {
  47111. name: "Colossus Size, High",
  47112. height: math.unit(60, "meters")
  47113. },
  47114. {
  47115. name: "Titan Size, Low",
  47116. height: math.unit(91, "meters"),
  47117. },
  47118. {
  47119. name: "Titan Size, Mid",
  47120. height: math.unit(122, "meters")
  47121. },
  47122. {
  47123. name: "Titan Size, High",
  47124. height: math.unit(162, "meters")
  47125. },
  47126. ]
  47127. ))
  47128. characterMakers.push(() => makeCharacter(
  47129. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  47130. {
  47131. front: {
  47132. height: math.unit(53, "meters"),
  47133. name: "Front",
  47134. image: {
  47135. source: "./media/characters/stellar-marbey/front.svg",
  47136. extra: 1913/1805,
  47137. bottom: 92/2005
  47138. }
  47139. },
  47140. back: {
  47141. height: math.unit(53, "meters"),
  47142. name: "Back",
  47143. image: {
  47144. source: "./media/characters/stellar-marbey/back.svg",
  47145. extra: 1960/1851,
  47146. bottom: 28/1988
  47147. }
  47148. },
  47149. mouth: {
  47150. height: math.unit(3.5, "meters"),
  47151. name: "Mouth",
  47152. image: {
  47153. source: "./media/characters/stellar-marbey/mouth.svg"
  47154. }
  47155. },
  47156. },
  47157. [
  47158. {
  47159. name: "Macro",
  47160. height: math.unit(53, "meters"),
  47161. default: true
  47162. },
  47163. ]
  47164. ))
  47165. characterMakers.push(() => makeCharacter(
  47166. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  47167. {
  47168. front: {
  47169. height: math.unit(8 + 1/12, "feet"),
  47170. weight: math.unit(233, "lb"),
  47171. name: "Front",
  47172. image: {
  47173. source: "./media/characters/matsu/front.svg",
  47174. extra: 832/772,
  47175. bottom: 40/872
  47176. }
  47177. },
  47178. back: {
  47179. height: math.unit(8 + 1/12, "feet"),
  47180. weight: math.unit(233, "lb"),
  47181. name: "Back",
  47182. image: {
  47183. source: "./media/characters/matsu/back.svg",
  47184. extra: 839/780,
  47185. bottom: 47/886
  47186. }
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(8 + 1/12, "feet"),
  47193. default: true
  47194. },
  47195. ]
  47196. ))
  47197. characterMakers.push(() => makeCharacter(
  47198. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47199. {
  47200. front: {
  47201. height: math.unit(4, "feet"),
  47202. weight: math.unit(148, "lb"),
  47203. name: "Front",
  47204. image: {
  47205. source: "./media/characters/thiz/front.svg",
  47206. extra: 1913/1748,
  47207. bottom: 62/1975
  47208. }
  47209. },
  47210. },
  47211. [
  47212. {
  47213. name: "Normal",
  47214. height: math.unit(4, "feet"),
  47215. default: true
  47216. },
  47217. ]
  47218. ))
  47219. characterMakers.push(() => makeCharacter(
  47220. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47221. {
  47222. front: {
  47223. height: math.unit(7 + 6/12, "feet"),
  47224. weight: math.unit(267, "lb"),
  47225. name: "Front",
  47226. image: {
  47227. source: "./media/characters/marcel/front.svg",
  47228. extra: 1221/1096,
  47229. bottom: 76/1297
  47230. }
  47231. },
  47232. },
  47233. [
  47234. {
  47235. name: "Normal",
  47236. height: math.unit(7 + 6/12, "feet"),
  47237. default: true
  47238. },
  47239. ]
  47240. ))
  47241. characterMakers.push(() => makeCharacter(
  47242. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47243. {
  47244. side: {
  47245. height: math.unit(42, "meters"),
  47246. name: "Side",
  47247. image: {
  47248. source: "./media/characters/flake/side.svg",
  47249. extra: 1525/1306,
  47250. bottom: 209/1734
  47251. }
  47252. },
  47253. },
  47254. [
  47255. {
  47256. name: "Normal",
  47257. height: math.unit(42, "meters"),
  47258. default: true
  47259. },
  47260. ]
  47261. ))
  47262. characterMakers.push(() => makeCharacter(
  47263. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47264. {
  47265. dressed: {
  47266. height: math.unit(6 + 4/12, "feet"),
  47267. weight: math.unit(520, "lb"),
  47268. name: "Dressed",
  47269. image: {
  47270. source: "./media/characters/someonne/dressed.svg",
  47271. extra: 1020/1010,
  47272. bottom: 178/1198
  47273. }
  47274. },
  47275. undressed: {
  47276. height: math.unit(6 + 4/12, "feet"),
  47277. weight: math.unit(520, "lb"),
  47278. name: "Undressed",
  47279. image: {
  47280. source: "./media/characters/someonne/undressed.svg",
  47281. extra: 1019/1014,
  47282. bottom: 169/1188
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Normal",
  47289. height: math.unit(6 + 4/12, "feet"),
  47290. default: true
  47291. },
  47292. ]
  47293. ))
  47294. characterMakers.push(() => makeCharacter(
  47295. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47296. {
  47297. front: {
  47298. height: math.unit(3, "feet"),
  47299. weight: math.unit(30, "lb"),
  47300. name: "Front",
  47301. image: {
  47302. source: "./media/characters/till/front.svg",
  47303. extra: 892/823,
  47304. bottom: 55/947
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(3, "feet"),
  47312. default: true
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47318. {
  47319. front: {
  47320. height: math.unit(9 + 8/12, "feet"),
  47321. weight: math.unit(800, "lb"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/sydney-heki/front.svg",
  47325. extra: 1360/1300,
  47326. bottom: 22/1382
  47327. }
  47328. },
  47329. back: {
  47330. height: math.unit(9 + 8/12, "feet"),
  47331. weight: math.unit(800, "lb"),
  47332. name: "Back",
  47333. image: {
  47334. source: "./media/characters/sydney-heki/back.svg",
  47335. extra: 1356/1293,
  47336. bottom: 12/1368
  47337. }
  47338. },
  47339. frontDressed: {
  47340. height: math.unit(9 + 8/12, "feet"),
  47341. weight: math.unit(800, "lb"),
  47342. name: "Front (Dressed)",
  47343. image: {
  47344. source: "./media/characters/sydney-heki/front-dressed.svg",
  47345. extra: 1360/1300,
  47346. bottom: 22/1382
  47347. }
  47348. },
  47349. },
  47350. [
  47351. {
  47352. name: "Normal",
  47353. height: math.unit(9 + 8/12, "feet"),
  47354. default: true
  47355. },
  47356. {
  47357. name: "Macro",
  47358. height: math.unit(500, "feet")
  47359. },
  47360. {
  47361. name: "Megamacro",
  47362. height: math.unit(3.6, "miles")
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47368. {
  47369. front: {
  47370. height: math.unit(200, "cm"),
  47371. weight: math.unit(250, "lb"),
  47372. name: "Front",
  47373. image: {
  47374. source: "./media/characters/fowler-karlsson/front.svg",
  47375. extra: 897/845,
  47376. bottom: 123/1020
  47377. }
  47378. },
  47379. back: {
  47380. height: math.unit(200, "cm"),
  47381. weight: math.unit(250, "lb"),
  47382. name: "Back",
  47383. image: {
  47384. source: "./media/characters/fowler-karlsson/back.svg",
  47385. extra: 999/944,
  47386. bottom: 26/1025
  47387. }
  47388. },
  47389. dick: {
  47390. height: math.unit(1.92, "feet"),
  47391. weight: math.unit(150, "lb"),
  47392. name: "Dick",
  47393. image: {
  47394. source: "./media/characters/fowler-karlsson/dick.svg"
  47395. }
  47396. },
  47397. },
  47398. [
  47399. {
  47400. name: "Normal",
  47401. height: math.unit(200, "cm"),
  47402. default: true
  47403. },
  47404. {
  47405. name: "Smaller Macro",
  47406. height: math.unit(90, "m")
  47407. },
  47408. {
  47409. name: "Macro",
  47410. height: math.unit(150, "m")
  47411. },
  47412. {
  47413. name: "Bigger Macro",
  47414. height: math.unit(300, "m")
  47415. },
  47416. ]
  47417. ))
  47418. characterMakers.push(() => makeCharacter(
  47419. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47420. {
  47421. side: {
  47422. height: math.unit(8 + 2/12, "feet"),
  47423. weight: math.unit(1, "tonne"),
  47424. name: "Side",
  47425. image: {
  47426. source: "./media/characters/rylide/side.svg",
  47427. extra: 1318/1034,
  47428. bottom: 106/1424
  47429. }
  47430. },
  47431. sitting: {
  47432. height: math.unit(303, "cm"),
  47433. weight: math.unit(1, "tonne"),
  47434. name: "Sitting",
  47435. image: {
  47436. source: "./media/characters/rylide/sitting.svg",
  47437. extra: 1303/1103,
  47438. bottom: 36/1339
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Normal",
  47445. height: math.unit(8 + 2/12, "feet"),
  47446. default: true
  47447. },
  47448. ]
  47449. ))
  47450. characterMakers.push(() => makeCharacter(
  47451. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47452. {
  47453. front: {
  47454. height: math.unit(5 + 10/12, "feet"),
  47455. weight: math.unit(160, "lb"),
  47456. name: "Front",
  47457. image: {
  47458. source: "./media/characters/pudask/front.svg",
  47459. extra: 1616/1590,
  47460. bottom: 161/1777
  47461. }
  47462. },
  47463. },
  47464. [
  47465. {
  47466. name: "Ferret Height",
  47467. height: math.unit(2 + 5/12, "feet")
  47468. },
  47469. {
  47470. name: "Canon Height",
  47471. height: math.unit(5 + 10/12, "feet"),
  47472. default: true
  47473. },
  47474. ]
  47475. ))
  47476. characterMakers.push(() => makeCharacter(
  47477. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47478. {
  47479. front: {
  47480. height: math.unit(3 + 6/12, "feet"),
  47481. weight: math.unit(60, "lb"),
  47482. name: "Front",
  47483. image: {
  47484. source: "./media/characters/ramita/front.svg",
  47485. extra: 1402/1232,
  47486. bottom: 62/1464
  47487. }
  47488. },
  47489. dressed: {
  47490. height: math.unit(3 + 6/12, "feet"),
  47491. weight: math.unit(60, "lb"),
  47492. name: "Dressed",
  47493. image: {
  47494. source: "./media/characters/ramita/dressed.svg",
  47495. extra: 1534/1249,
  47496. bottom: 50/1584
  47497. }
  47498. },
  47499. },
  47500. [
  47501. {
  47502. name: "Normal",
  47503. height: math.unit(3 + 6/12, "feet"),
  47504. default: true
  47505. },
  47506. ]
  47507. ))
  47508. characterMakers.push(() => makeCharacter(
  47509. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47510. {
  47511. front: {
  47512. height: math.unit(8, "feet"),
  47513. name: "Front",
  47514. image: {
  47515. source: "./media/characters/ark/front.svg",
  47516. extra: 772/693,
  47517. bottom: 45/817
  47518. }
  47519. },
  47520. },
  47521. [
  47522. {
  47523. name: "Normal",
  47524. height: math.unit(8, "feet"),
  47525. default: true
  47526. },
  47527. ]
  47528. ))
  47529. characterMakers.push(() => makeCharacter(
  47530. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47531. {
  47532. front: {
  47533. height: math.unit(6, "feet"),
  47534. weight: math.unit(250, "lb"),
  47535. volume: math.unit(5/8, "gallons"),
  47536. name: "Front",
  47537. image: {
  47538. source: "./media/characters/ludwig-horn/front.svg",
  47539. extra: 1782/1635,
  47540. bottom: 96/1878
  47541. }
  47542. },
  47543. back: {
  47544. height: math.unit(6, "feet"),
  47545. weight: math.unit(250, "lb"),
  47546. volume: math.unit(5/8, "gallons"),
  47547. name: "Back",
  47548. image: {
  47549. source: "./media/characters/ludwig-horn/back.svg",
  47550. extra: 1874/1729,
  47551. bottom: 27/1901
  47552. }
  47553. },
  47554. dick: {
  47555. height: math.unit(1.05, "feet"),
  47556. weight: math.unit(15, "lb"),
  47557. volume: math.unit(5/8, "gallons"),
  47558. name: "Dick",
  47559. image: {
  47560. source: "./media/characters/ludwig-horn/dick.svg"
  47561. }
  47562. },
  47563. },
  47564. [
  47565. {
  47566. name: "Small",
  47567. height: math.unit(6, "feet")
  47568. },
  47569. {
  47570. name: "Typical",
  47571. height: math.unit(12, "feet"),
  47572. default: true
  47573. },
  47574. {
  47575. name: "Building",
  47576. height: math.unit(80, "feet")
  47577. },
  47578. {
  47579. name: "Town",
  47580. height: math.unit(800, "feet")
  47581. },
  47582. {
  47583. name: "Kingdom",
  47584. height: math.unit(80000, "feet")
  47585. },
  47586. {
  47587. name: "Planet",
  47588. height: math.unit(8000000, "feet")
  47589. },
  47590. {
  47591. name: "Universe",
  47592. height: math.unit(8000000000, "feet")
  47593. },
  47594. {
  47595. name: "Transcended",
  47596. height: math.unit(8e27, "feet")
  47597. },
  47598. ]
  47599. ))
  47600. characterMakers.push(() => makeCharacter(
  47601. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47602. {
  47603. front: {
  47604. height: math.unit(5, "feet"),
  47605. weight: math.unit(50, "kg"),
  47606. name: "Front",
  47607. image: {
  47608. source: "./media/characters/biot-avery/front.svg",
  47609. extra: 1295/1232,
  47610. bottom: 86/1381
  47611. }
  47612. },
  47613. },
  47614. [
  47615. {
  47616. name: "Normal",
  47617. height: math.unit(5, "feet"),
  47618. default: true
  47619. },
  47620. ]
  47621. ))
  47622. characterMakers.push(() => makeCharacter(
  47623. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47624. {
  47625. front: {
  47626. height: math.unit(6, "feet"),
  47627. name: "Front",
  47628. image: {
  47629. source: "./media/characters/kitsune-kiro/front.svg",
  47630. extra: 1270/1158,
  47631. bottom: 42/1312
  47632. }
  47633. },
  47634. frontAlt: {
  47635. height: math.unit(6, "feet"),
  47636. name: "Front (Alt)",
  47637. image: {
  47638. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47639. extra: 1130/1081,
  47640. bottom: 36/1166
  47641. }
  47642. },
  47643. },
  47644. [
  47645. {
  47646. name: "Smol",
  47647. height: math.unit(3, "feet")
  47648. },
  47649. {
  47650. name: "Normal",
  47651. height: math.unit(6, "feet"),
  47652. default: true
  47653. },
  47654. ]
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47658. {
  47659. front: {
  47660. height: math.unit(6, "feet"),
  47661. weight: math.unit(125, "lb"),
  47662. name: "Front",
  47663. image: {
  47664. source: "./media/characters/jack-thatcher/front.svg",
  47665. extra: 1474/1370,
  47666. bottom: 26/1500
  47667. }
  47668. },
  47669. back: {
  47670. height: math.unit(6, "feet"),
  47671. weight: math.unit(125, "lb"),
  47672. name: "Back",
  47673. image: {
  47674. source: "./media/characters/jack-thatcher/back.svg",
  47675. extra: 1489/1384,
  47676. bottom: 18/1507
  47677. }
  47678. },
  47679. },
  47680. [
  47681. {
  47682. name: "Normal",
  47683. height: math.unit(6, "feet"),
  47684. default: true
  47685. },
  47686. {
  47687. name: "Macro",
  47688. height: math.unit(75, "feet")
  47689. },
  47690. {
  47691. name: "Macro-er",
  47692. height: math.unit(250, "feet")
  47693. },
  47694. ]
  47695. ))
  47696. characterMakers.push(() => makeCharacter(
  47697. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47698. {
  47699. front: {
  47700. height: math.unit(7, "feet"),
  47701. weight: math.unit(110, "kg"),
  47702. name: "Front",
  47703. image: {
  47704. source: "./media/characters/max-hyper/front.svg",
  47705. extra: 1969/1881,
  47706. bottom: 49/2018
  47707. }
  47708. },
  47709. },
  47710. [
  47711. {
  47712. name: "Normal",
  47713. height: math.unit(7, "feet"),
  47714. default: true
  47715. },
  47716. ]
  47717. ))
  47718. characterMakers.push(() => makeCharacter(
  47719. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47720. {
  47721. front: {
  47722. height: math.unit(5 + 5/12, "feet"),
  47723. weight: math.unit(160, "lb"),
  47724. name: "Front",
  47725. image: {
  47726. source: "./media/characters/spook/front.svg",
  47727. extra: 794/791,
  47728. bottom: 54/848
  47729. }
  47730. },
  47731. back: {
  47732. height: math.unit(5 + 5/12, "feet"),
  47733. weight: math.unit(160, "lb"),
  47734. name: "Back",
  47735. image: {
  47736. source: "./media/characters/spook/back.svg",
  47737. extra: 812/798,
  47738. bottom: 32/844
  47739. }
  47740. },
  47741. },
  47742. [
  47743. {
  47744. name: "Normal",
  47745. height: math.unit(5 + 5/12, "feet"),
  47746. default: true
  47747. },
  47748. ]
  47749. ))
  47750. characterMakers.push(() => makeCharacter(
  47751. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47752. {
  47753. front: {
  47754. height: math.unit(18, "feet"),
  47755. name: "Front",
  47756. image: {
  47757. source: "./media/characters/xeaduulix/front.svg",
  47758. extra: 1380/1166,
  47759. bottom: 110/1490
  47760. }
  47761. },
  47762. back: {
  47763. height: math.unit(18, "feet"),
  47764. name: "Back",
  47765. image: {
  47766. source: "./media/characters/xeaduulix/back.svg",
  47767. extra: 1592/1170,
  47768. bottom: 128/1720
  47769. }
  47770. },
  47771. frontNsfw: {
  47772. height: math.unit(18, "feet"),
  47773. name: "Front (NSFW)",
  47774. image: {
  47775. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47776. extra: 1380/1166,
  47777. bottom: 110/1490
  47778. }
  47779. },
  47780. backNsfw: {
  47781. height: math.unit(18, "feet"),
  47782. name: "Back (NSFW)",
  47783. image: {
  47784. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47785. extra: 1592/1170,
  47786. bottom: 128/1720
  47787. }
  47788. },
  47789. },
  47790. [
  47791. {
  47792. name: "Normal",
  47793. height: math.unit(18, "feet"),
  47794. default: true
  47795. },
  47796. ]
  47797. ))
  47798. characterMakers.push(() => makeCharacter(
  47799. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47800. {
  47801. spreadWings: {
  47802. height: math.unit(20, "feet"),
  47803. name: "Spread Wings",
  47804. image: {
  47805. source: "./media/characters/fledge/spread-wings.svg",
  47806. extra: 693/635,
  47807. bottom: 26/719
  47808. }
  47809. },
  47810. front: {
  47811. height: math.unit(20, "feet"),
  47812. name: "Front",
  47813. image: {
  47814. source: "./media/characters/fledge/front.svg",
  47815. extra: 684/637,
  47816. bottom: 18/702
  47817. }
  47818. },
  47819. frontAlt: {
  47820. height: math.unit(20, "feet"),
  47821. name: "Front (Alt)",
  47822. image: {
  47823. source: "./media/characters/fledge/front-alt.svg",
  47824. extra: 708/664,
  47825. bottom: 13/721
  47826. }
  47827. },
  47828. back: {
  47829. height: math.unit(20, "feet"),
  47830. name: "Back",
  47831. image: {
  47832. source: "./media/characters/fledge/back.svg",
  47833. extra: 718/634,
  47834. bottom: 22/740
  47835. }
  47836. },
  47837. head: {
  47838. height: math.unit(5.55, "feet"),
  47839. name: "Head",
  47840. image: {
  47841. source: "./media/characters/fledge/head.svg"
  47842. }
  47843. },
  47844. headAlt: {
  47845. height: math.unit(5.1, "feet"),
  47846. name: "Head (Alt)",
  47847. image: {
  47848. source: "./media/characters/fledge/head-alt.svg"
  47849. }
  47850. },
  47851. },
  47852. [
  47853. {
  47854. name: "Small",
  47855. height: math.unit(6 + 2/12, "feet")
  47856. },
  47857. {
  47858. name: "Big",
  47859. height: math.unit(20, "feet"),
  47860. default: true
  47861. },
  47862. {
  47863. name: "Giant",
  47864. height: math.unit(100, "feet")
  47865. },
  47866. {
  47867. name: "Macro",
  47868. height: math.unit(200, "feet")
  47869. },
  47870. ]
  47871. ))
  47872. characterMakers.push(() => makeCharacter(
  47873. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47874. {
  47875. front: {
  47876. height: math.unit(1, "meter"),
  47877. name: "Front",
  47878. image: {
  47879. source: "./media/characters/atlas-morenai/front.svg",
  47880. extra: 1275/1043,
  47881. bottom: 19/1294
  47882. }
  47883. },
  47884. back: {
  47885. height: math.unit(1, "meter"),
  47886. name: "Back",
  47887. image: {
  47888. source: "./media/characters/atlas-morenai/back.svg",
  47889. extra: 1141/1001,
  47890. bottom: 25/1166
  47891. }
  47892. },
  47893. },
  47894. [
  47895. {
  47896. name: "Normal",
  47897. height: math.unit(1, "meter"),
  47898. default: true
  47899. },
  47900. {
  47901. name: "Magic-Infused",
  47902. height: math.unit(5, "meters")
  47903. },
  47904. ]
  47905. ))
  47906. characterMakers.push(() => makeCharacter(
  47907. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47908. {
  47909. front: {
  47910. height: math.unit(5, "meters"),
  47911. name: "Front",
  47912. image: {
  47913. source: "./media/characters/cintia/front.svg",
  47914. extra: 1312/1228,
  47915. bottom: 38/1350
  47916. }
  47917. },
  47918. back: {
  47919. height: math.unit(5, "meters"),
  47920. name: "Back",
  47921. image: {
  47922. source: "./media/characters/cintia/back.svg",
  47923. extra: 1260/1166,
  47924. bottom: 98/1358
  47925. }
  47926. },
  47927. frontDick: {
  47928. height: math.unit(5, "meters"),
  47929. name: "Front (Dick)",
  47930. image: {
  47931. source: "./media/characters/cintia/front-dick.svg",
  47932. extra: 1312/1228,
  47933. bottom: 38/1350
  47934. }
  47935. },
  47936. backDick: {
  47937. height: math.unit(5, "meters"),
  47938. name: "Back (Dick)",
  47939. image: {
  47940. source: "./media/characters/cintia/back-dick.svg",
  47941. extra: 1260/1166,
  47942. bottom: 98/1358
  47943. }
  47944. },
  47945. bust: {
  47946. height: math.unit(1.97, "meters"),
  47947. name: "Bust",
  47948. image: {
  47949. source: "./media/characters/cintia/bust.svg",
  47950. extra: 617/565,
  47951. bottom: 0/617
  47952. }
  47953. },
  47954. },
  47955. [
  47956. {
  47957. name: "Normal",
  47958. height: math.unit(5, "meters"),
  47959. default: true
  47960. },
  47961. ]
  47962. ))
  47963. characterMakers.push(() => makeCharacter(
  47964. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47965. {
  47966. side: {
  47967. height: math.unit(100, "feet"),
  47968. name: "Side",
  47969. image: {
  47970. source: "./media/characters/denora/side.svg",
  47971. extra: 875/803,
  47972. bottom: 9/884
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Standard",
  47979. height: math.unit(100, "feet"),
  47980. default: true
  47981. },
  47982. {
  47983. name: "Grand",
  47984. height: math.unit(1000, "feet")
  47985. },
  47986. {
  47987. name: "Conquering",
  47988. height: math.unit(10000, "feet")
  47989. },
  47990. ]
  47991. ))
  47992. characterMakers.push(() => makeCharacter(
  47993. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47994. {
  47995. front: {
  47996. height: math.unit(8 + 5/12, "feet"),
  47997. weight: math.unit(700, "lb"),
  47998. name: "Front",
  47999. image: {
  48000. source: "./media/characters/kiva/front.svg",
  48001. extra: 419/406,
  48002. bottom: 30/449
  48003. }
  48004. },
  48005. sideDressed: {
  48006. height: math.unit(8 + 5/12, "feet"),
  48007. weight: math.unit(700, "lb"),
  48008. name: "Side (Dressed)",
  48009. image: {
  48010. source: "./media/characters/kiva/side-dressed.svg",
  48011. extra: 1102/1055,
  48012. bottom: 60/1162
  48013. }
  48014. },
  48015. sideNude: {
  48016. height: math.unit(8 + 5/12, "feet"),
  48017. weight: math.unit(700, "lb"),
  48018. name: "Side (Nude)",
  48019. image: {
  48020. source: "./media/characters/kiva/side-nude.svg",
  48021. extra: 1102/1055,
  48022. bottom: 60/1162
  48023. }
  48024. },
  48025. },
  48026. [
  48027. {
  48028. name: "Base Height",
  48029. height: math.unit(8 + 5/12, "feet"),
  48030. default: true
  48031. },
  48032. {
  48033. name: "Macro",
  48034. height: math.unit(100, "feet")
  48035. },
  48036. {
  48037. name: "Max",
  48038. height: math.unit(3280, "feet")
  48039. },
  48040. ]
  48041. ))
  48042. characterMakers.push(() => makeCharacter(
  48043. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  48044. {
  48045. front: {
  48046. height: math.unit(6 + 8/12, "feet"),
  48047. weight: math.unit(250, "lb"),
  48048. name: "Front",
  48049. image: {
  48050. source: "./media/characters/ztragon/front.svg",
  48051. extra: 1825/1684,
  48052. bottom: 98/1923
  48053. }
  48054. },
  48055. },
  48056. [
  48057. {
  48058. name: "Normal",
  48059. height: math.unit(6 + 8/12, "feet"),
  48060. default: true
  48061. },
  48062. {
  48063. name: "Macro",
  48064. height: math.unit(80, "feet")
  48065. },
  48066. ]
  48067. ))
  48068. characterMakers.push(() => makeCharacter(
  48069. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  48070. {
  48071. front: {
  48072. height: math.unit(10.4, "feet"),
  48073. weight: math.unit(2, "tons"),
  48074. name: "Front",
  48075. image: {
  48076. source: "./media/characters/yesenia/front.svg",
  48077. extra: 1479/1474,
  48078. bottom: 233/1712
  48079. }
  48080. },
  48081. },
  48082. [
  48083. {
  48084. name: "Normal",
  48085. height: math.unit(10.4, "feet"),
  48086. default: true
  48087. },
  48088. ]
  48089. ))
  48090. characterMakers.push(() => makeCharacter(
  48091. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  48092. {
  48093. normal: {
  48094. height: math.unit(6 + 1/12, "feet"),
  48095. weight: math.unit(180, "lb"),
  48096. name: "Normal",
  48097. image: {
  48098. source: "./media/characters/leanne-lycheborne/normal.svg",
  48099. extra: 1748/1660,
  48100. bottom: 98/1846
  48101. }
  48102. },
  48103. were: {
  48104. height: math.unit(12, "feet"),
  48105. weight: math.unit(1600, "lb"),
  48106. name: "Were",
  48107. image: {
  48108. source: "./media/characters/leanne-lycheborne/were.svg",
  48109. extra: 1485/1432,
  48110. bottom: 66/1551
  48111. }
  48112. },
  48113. },
  48114. [
  48115. {
  48116. name: "Normal",
  48117. height: math.unit(6 + 1/12, "feet"),
  48118. default: true
  48119. },
  48120. ]
  48121. ))
  48122. characterMakers.push(() => makeCharacter(
  48123. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  48124. {
  48125. side: {
  48126. height: math.unit(13, "feet"),
  48127. name: "Side",
  48128. image: {
  48129. source: "./media/characters/kira-tyler/side.svg",
  48130. extra: 693/393,
  48131. bottom: 58/751
  48132. }
  48133. },
  48134. },
  48135. [
  48136. {
  48137. name: "Normal",
  48138. height: math.unit(13, "feet"),
  48139. default: true
  48140. },
  48141. ]
  48142. ))
  48143. characterMakers.push(() => makeCharacter(
  48144. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  48145. {
  48146. front: {
  48147. height: math.unit(10.3, "feet"),
  48148. weight: math.unit(150, "lb"),
  48149. name: "Front",
  48150. image: {
  48151. source: "./media/characters/blaze/front.svg",
  48152. extra: 1378/1286,
  48153. bottom: 172/1550
  48154. }
  48155. },
  48156. },
  48157. [
  48158. {
  48159. name: "Normal",
  48160. height: math.unit(10.3, "feet"),
  48161. default: true
  48162. },
  48163. ]
  48164. ))
  48165. characterMakers.push(() => makeCharacter(
  48166. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  48167. {
  48168. side: {
  48169. height: math.unit(2, "meters"),
  48170. weight: math.unit(400, "kg"),
  48171. name: "Side",
  48172. image: {
  48173. source: "./media/characters/anu/side.svg",
  48174. extra: 506/394,
  48175. bottom: 18/524
  48176. }
  48177. },
  48178. },
  48179. [
  48180. {
  48181. name: "Humanoid",
  48182. height: math.unit(2, "meters")
  48183. },
  48184. {
  48185. name: "Normal",
  48186. height: math.unit(5, "meters"),
  48187. default: true
  48188. },
  48189. ]
  48190. ))
  48191. characterMakers.push(() => makeCharacter(
  48192. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48193. {
  48194. front: {
  48195. height: math.unit(5 + 5/12, "feet"),
  48196. weight: math.unit(170, "lb"),
  48197. name: "Front",
  48198. image: {
  48199. source: "./media/characters/synx-the-lynx/front.svg",
  48200. extra: 1893/1745,
  48201. bottom: 17/1910
  48202. }
  48203. },
  48204. side: {
  48205. height: math.unit(5 + 5/12, "feet"),
  48206. weight: math.unit(170, "lb"),
  48207. name: "Side",
  48208. image: {
  48209. source: "./media/characters/synx-the-lynx/side.svg",
  48210. extra: 1884/1740,
  48211. bottom: 39/1923
  48212. }
  48213. },
  48214. back: {
  48215. height: math.unit(5 + 5/12, "feet"),
  48216. weight: math.unit(170, "lb"),
  48217. name: "Back",
  48218. image: {
  48219. source: "./media/characters/synx-the-lynx/back.svg",
  48220. extra: 1903/1755,
  48221. bottom: 14/1917
  48222. }
  48223. },
  48224. },
  48225. [
  48226. {
  48227. name: "Normal",
  48228. height: math.unit(5 + 5/12, "feet"),
  48229. default: true
  48230. },
  48231. ]
  48232. ))
  48233. characterMakers.push(() => makeCharacter(
  48234. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48235. {
  48236. back: {
  48237. height: math.unit(15, "feet"),
  48238. name: "Back",
  48239. image: {
  48240. source: "./media/characters/nadezda-fex/back.svg",
  48241. extra: 1695/1481,
  48242. bottom: 25/1720
  48243. }
  48244. },
  48245. },
  48246. [
  48247. {
  48248. name: "Normal",
  48249. height: math.unit(15, "feet"),
  48250. default: true
  48251. },
  48252. {
  48253. name: "Macro",
  48254. height: math.unit(2.5, "miles")
  48255. },
  48256. {
  48257. name: "Goddess",
  48258. height: math.unit(2, "multiverses")
  48259. },
  48260. ]
  48261. ))
  48262. characterMakers.push(() => makeCharacter(
  48263. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48264. {
  48265. front: {
  48266. height: math.unit(216, "cm"),
  48267. name: "Front",
  48268. image: {
  48269. source: "./media/characters/lev/front.svg",
  48270. extra: 1728/1670,
  48271. bottom: 82/1810
  48272. }
  48273. },
  48274. back: {
  48275. height: math.unit(216, "cm"),
  48276. name: "Back",
  48277. image: {
  48278. source: "./media/characters/lev/back.svg",
  48279. extra: 1738/1675,
  48280. bottom: 24/1762
  48281. }
  48282. },
  48283. dressed: {
  48284. height: math.unit(216, "cm"),
  48285. name: "Dressed",
  48286. image: {
  48287. source: "./media/characters/lev/dressed.svg",
  48288. extra: 1397/1351,
  48289. bottom: 73/1470
  48290. }
  48291. },
  48292. head: {
  48293. height: math.unit(0.51, "meter"),
  48294. name: "Head",
  48295. image: {
  48296. source: "./media/characters/lev/head.svg"
  48297. }
  48298. },
  48299. },
  48300. [
  48301. {
  48302. name: "Normal",
  48303. height: math.unit(216, "cm"),
  48304. default: true
  48305. },
  48306. {
  48307. name: "Relatively Macro",
  48308. height: math.unit(80, "meters")
  48309. },
  48310. {
  48311. name: "Megamacro",
  48312. height: math.unit(21600, "meters")
  48313. },
  48314. {
  48315. name: "Megamacro+",
  48316. height: math.unit(64800, "meters")
  48317. },
  48318. ]
  48319. ))
  48320. characterMakers.push(() => makeCharacter(
  48321. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48322. {
  48323. front: {
  48324. height: math.unit(2, "meters"),
  48325. weight: math.unit(80, "kg"),
  48326. name: "Front",
  48327. image: {
  48328. source: "./media/characters/moka/front.svg",
  48329. extra: 1337/1255,
  48330. bottom: 58/1395
  48331. }
  48332. },
  48333. },
  48334. [
  48335. {
  48336. name: "Micro",
  48337. height: math.unit(15, "cm")
  48338. },
  48339. {
  48340. name: "Normal",
  48341. height: math.unit(2, "meters"),
  48342. default: true
  48343. },
  48344. {
  48345. name: "Macro",
  48346. height: math.unit(20, "meters"),
  48347. },
  48348. ]
  48349. ))
  48350. characterMakers.push(() => makeCharacter(
  48351. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48352. {
  48353. front: {
  48354. height: math.unit(9, "feet"),
  48355. weight: math.unit(240, "lb"),
  48356. name: "Front",
  48357. image: {
  48358. source: "./media/characters/kuzco/front.svg",
  48359. extra: 1593/1487,
  48360. bottom: 32/1625
  48361. }
  48362. },
  48363. side: {
  48364. height: math.unit(9, "feet"),
  48365. weight: math.unit(240, "lb"),
  48366. name: "Side",
  48367. image: {
  48368. source: "./media/characters/kuzco/side.svg",
  48369. extra: 1575/1485,
  48370. bottom: 30/1605
  48371. }
  48372. },
  48373. back: {
  48374. height: math.unit(9, "feet"),
  48375. weight: math.unit(240, "lb"),
  48376. name: "Back",
  48377. image: {
  48378. source: "./media/characters/kuzco/back.svg",
  48379. extra: 1603/1514,
  48380. bottom: 14/1617
  48381. }
  48382. },
  48383. },
  48384. [
  48385. {
  48386. name: "Normal",
  48387. height: math.unit(9, "feet"),
  48388. default: true
  48389. },
  48390. ]
  48391. ))
  48392. characterMakers.push(() => makeCharacter(
  48393. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48394. {
  48395. side: {
  48396. height: math.unit(2, "meters"),
  48397. weight: math.unit(300, "kg"),
  48398. name: "Side",
  48399. image: {
  48400. source: "./media/characters/ceruleus/side.svg",
  48401. extra: 1068/974,
  48402. bottom: 126/1194
  48403. }
  48404. },
  48405. maw: {
  48406. height: math.unit(0.8125, "meter"),
  48407. name: "Maw",
  48408. image: {
  48409. source: "./media/characters/ceruleus/maw.svg"
  48410. }
  48411. },
  48412. },
  48413. [
  48414. {
  48415. name: "Normal",
  48416. height: math.unit(16, "meters"),
  48417. default: true
  48418. },
  48419. ]
  48420. ))
  48421. characterMakers.push(() => makeCharacter(
  48422. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48423. {
  48424. front: {
  48425. height: math.unit(9, "feet"),
  48426. weight: math.unit(500, "kg"),
  48427. name: "Front",
  48428. image: {
  48429. source: "./media/characters/acouya/front.svg",
  48430. extra: 1660/1473,
  48431. bottom: 28/1688
  48432. }
  48433. },
  48434. },
  48435. [
  48436. {
  48437. name: "Normal",
  48438. height: math.unit(9, "feet"),
  48439. default: true
  48440. },
  48441. ]
  48442. ))
  48443. characterMakers.push(() => makeCharacter(
  48444. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48445. {
  48446. front: {
  48447. height: math.unit(5 + 6/12, "feet"),
  48448. weight: math.unit(195, "lb"),
  48449. name: "Front",
  48450. image: {
  48451. source: "./media/characters/vant/front.svg",
  48452. extra: 1396/1320,
  48453. bottom: 20/1416
  48454. }
  48455. },
  48456. back: {
  48457. height: math.unit(5 + 6/12, "feet"),
  48458. weight: math.unit(195, "lb"),
  48459. name: "Back",
  48460. image: {
  48461. source: "./media/characters/vant/back.svg",
  48462. extra: 1396/1320,
  48463. bottom: 20/1416
  48464. }
  48465. },
  48466. maw: {
  48467. height: math.unit(0.75, "feet"),
  48468. name: "Maw",
  48469. image: {
  48470. source: "./media/characters/vant/maw.svg"
  48471. }
  48472. },
  48473. paw: {
  48474. height: math.unit(1.07, "feet"),
  48475. name: "Paw",
  48476. image: {
  48477. source: "./media/characters/vant/paw.svg"
  48478. }
  48479. },
  48480. },
  48481. [
  48482. {
  48483. name: "Micro",
  48484. height: math.unit(0.25, "inches")
  48485. },
  48486. {
  48487. name: "Normal",
  48488. height: math.unit(5 + 6/12, "feet"),
  48489. default: true
  48490. },
  48491. {
  48492. name: "Macro",
  48493. height: math.unit(75, "feet")
  48494. },
  48495. ]
  48496. ))
  48497. characterMakers.push(() => makeCharacter(
  48498. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48499. {
  48500. front: {
  48501. height: math.unit(30, "meters"),
  48502. weight: math.unit(363, "tons"),
  48503. name: "Front",
  48504. image: {
  48505. source: "./media/characters/ahra/front.svg",
  48506. extra: 1914/1814,
  48507. bottom: 46/1960
  48508. }
  48509. },
  48510. },
  48511. [
  48512. {
  48513. name: "Macro",
  48514. height: math.unit(30, "meters"),
  48515. default: true
  48516. },
  48517. ]
  48518. ))
  48519. characterMakers.push(() => makeCharacter(
  48520. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48521. {
  48522. undressed: {
  48523. height: math.unit(2, "m"),
  48524. weight: math.unit(250, "kg"),
  48525. name: "Undressed",
  48526. image: {
  48527. source: "./media/characters/coriander/undressed.svg",
  48528. extra: 1757/1606,
  48529. bottom: 107/1864
  48530. }
  48531. },
  48532. dressed: {
  48533. height: math.unit(2, "m"),
  48534. weight: math.unit(250, "kg"),
  48535. name: "Dressed",
  48536. image: {
  48537. source: "./media/characters/coriander/dressed.svg",
  48538. extra: 1757/1606,
  48539. bottom: 107/1864
  48540. }
  48541. },
  48542. },
  48543. [
  48544. {
  48545. name: "Normal",
  48546. height: math.unit(4, "meters"),
  48547. default: true
  48548. },
  48549. {
  48550. name: "XL",
  48551. height: math.unit(6, "meters")
  48552. },
  48553. {
  48554. name: "XXL",
  48555. height: math.unit(8, "meters")
  48556. },
  48557. ]
  48558. ))
  48559. characterMakers.push(() => makeCharacter(
  48560. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48561. {
  48562. front: {
  48563. height: math.unit(6, "feet"),
  48564. name: "Front",
  48565. image: {
  48566. source: "./media/characters/syrinx/front.svg",
  48567. extra: 1557/1259,
  48568. bottom: 171/1728
  48569. }
  48570. },
  48571. },
  48572. [
  48573. {
  48574. name: "Normal",
  48575. height: math.unit(6 + 3/12, "feet"),
  48576. default: true
  48577. },
  48578. ]
  48579. ))
  48580. characterMakers.push(() => makeCharacter(
  48581. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48582. {
  48583. front: {
  48584. height: math.unit(11 + 6/12, "feet"),
  48585. weight: math.unit(1.5, "tons"),
  48586. name: "Front",
  48587. image: {
  48588. source: "./media/characters/bor/front.svg",
  48589. extra: 1189/1109,
  48590. bottom: 170/1359
  48591. }
  48592. },
  48593. },
  48594. [
  48595. {
  48596. name: "Normal",
  48597. height: math.unit(11 + 6/12, "feet"),
  48598. default: true
  48599. },
  48600. {
  48601. name: "Macro",
  48602. height: math.unit(32 + 9/12, "feet")
  48603. },
  48604. ]
  48605. ))
  48606. characterMakers.push(() => makeCharacter(
  48607. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48608. {
  48609. anthro: {
  48610. height: math.unit(9, "feet"),
  48611. weight: math.unit(2076, "lb"),
  48612. name: "Anthro",
  48613. image: {
  48614. source: "./media/characters/abacus/anthro.svg",
  48615. extra: 1540/1494,
  48616. bottom: 233/1773
  48617. }
  48618. },
  48619. pigeon: {
  48620. height: math.unit(1, "feet"),
  48621. name: "Pigeon",
  48622. image: {
  48623. source: "./media/characters/abacus/pigeon.svg",
  48624. extra: 528/525,
  48625. bottom: 46/574
  48626. }
  48627. },
  48628. },
  48629. [
  48630. {
  48631. name: "Normal",
  48632. height: math.unit(9, "feet"),
  48633. default: true
  48634. },
  48635. ]
  48636. ))
  48637. characterMakers.push(() => makeCharacter(
  48638. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48639. {
  48640. side: {
  48641. height: math.unit(6, "feet"),
  48642. name: "Side",
  48643. image: {
  48644. source: "./media/characters/delkhan/side.svg",
  48645. extra: 1884/1786,
  48646. bottom: 308/2192
  48647. }
  48648. },
  48649. head: {
  48650. height: math.unit(3.38, "feet"),
  48651. name: "Head",
  48652. image: {
  48653. source: "./media/characters/delkhan/head.svg"
  48654. }
  48655. },
  48656. },
  48657. [
  48658. {
  48659. name: "Normal",
  48660. height: math.unit(72, "feet"),
  48661. default: true
  48662. },
  48663. {
  48664. name: "Giant",
  48665. height: math.unit(172, "feet")
  48666. },
  48667. ]
  48668. ))
  48669. characterMakers.push(() => makeCharacter(
  48670. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48671. {
  48672. standing: {
  48673. height: math.unit(6, "feet"),
  48674. name: "Standing",
  48675. image: {
  48676. source: "./media/characters/euchidat/standing.svg",
  48677. extra: 1612/1553,
  48678. bottom: 116/1728
  48679. }
  48680. },
  48681. leaning: {
  48682. height: math.unit(6, "feet"),
  48683. name: "Leaning",
  48684. image: {
  48685. source: "./media/characters/euchidat/leaning.svg",
  48686. extra: 1719/1674,
  48687. bottom: 27/1746
  48688. }
  48689. },
  48690. },
  48691. [
  48692. {
  48693. name: "Normal",
  48694. height: math.unit(175, "feet"),
  48695. default: true
  48696. },
  48697. {
  48698. name: "Megamacro",
  48699. height: math.unit(190, "miles")
  48700. },
  48701. {
  48702. name: "Gigamacro",
  48703. height: math.unit(190000, "miles")
  48704. },
  48705. ]
  48706. ))
  48707. characterMakers.push(() => makeCharacter(
  48708. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48709. {
  48710. front: {
  48711. height: math.unit(6, "feet"),
  48712. weight: math.unit(150, "lb"),
  48713. name: "Front",
  48714. image: {
  48715. source: "./media/characters/rebecca-stack/front.svg",
  48716. extra: 1256/1201,
  48717. bottom: 18/1274
  48718. }
  48719. },
  48720. },
  48721. [
  48722. {
  48723. name: "Normal",
  48724. height: math.unit(5 + 8/12, "feet"),
  48725. default: true
  48726. },
  48727. {
  48728. name: "Demolitionist",
  48729. height: math.unit(200, "feet")
  48730. },
  48731. {
  48732. name: "Out of Control",
  48733. height: math.unit(2, "miles")
  48734. },
  48735. {
  48736. name: "Giga",
  48737. height: math.unit(7200, "miles")
  48738. },
  48739. ]
  48740. ))
  48741. characterMakers.push(() => makeCharacter(
  48742. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48743. {
  48744. front: {
  48745. height: math.unit(6, "feet"),
  48746. weight: math.unit(150, "lb"),
  48747. name: "Front",
  48748. image: {
  48749. source: "./media/characters/jenny-cartwright/front.svg",
  48750. extra: 1384/1376,
  48751. bottom: 58/1442
  48752. }
  48753. },
  48754. },
  48755. [
  48756. {
  48757. name: "Normal",
  48758. height: math.unit(6 + 7/12, "feet"),
  48759. default: true
  48760. },
  48761. {
  48762. name: "Librarian",
  48763. height: math.unit(55, "feet")
  48764. },
  48765. {
  48766. name: "Sightseer",
  48767. height: math.unit(50, "miles")
  48768. },
  48769. {
  48770. name: "Giga",
  48771. height: math.unit(30000, "miles")
  48772. },
  48773. ]
  48774. ))
  48775. characterMakers.push(() => makeCharacter(
  48776. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48777. {
  48778. nude: {
  48779. height: math.unit(8, "feet"),
  48780. weight: math.unit(225, "lb"),
  48781. name: "Nude",
  48782. image: {
  48783. source: "./media/characters/marvy/nude.svg",
  48784. extra: 1900/1683,
  48785. bottom: 89/1989
  48786. }
  48787. },
  48788. dressed: {
  48789. height: math.unit(8, "feet"),
  48790. weight: math.unit(225, "lb"),
  48791. name: "Dressed",
  48792. image: {
  48793. source: "./media/characters/marvy/dressed.svg",
  48794. extra: 1900/1683,
  48795. bottom: 89/1989
  48796. }
  48797. },
  48798. head: {
  48799. height: math.unit(2.85, "feet"),
  48800. name: "Head",
  48801. image: {
  48802. source: "./media/characters/marvy/head.svg"
  48803. }
  48804. },
  48805. },
  48806. [
  48807. {
  48808. name: "Normal",
  48809. height: math.unit(8, "feet"),
  48810. default: true
  48811. },
  48812. ]
  48813. ))
  48814. characterMakers.push(() => makeCharacter(
  48815. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48816. {
  48817. front: {
  48818. height: math.unit(8, "feet"),
  48819. weight: math.unit(250, "lb"),
  48820. name: "Front",
  48821. image: {
  48822. source: "./media/characters/leah/front.svg",
  48823. extra: 1257/1149,
  48824. bottom: 109/1366
  48825. }
  48826. },
  48827. },
  48828. [
  48829. {
  48830. name: "Normal",
  48831. height: math.unit(8, "feet"),
  48832. default: true
  48833. },
  48834. {
  48835. name: "Minimacro",
  48836. height: math.unit(40, "feet")
  48837. },
  48838. {
  48839. name: "Macro",
  48840. height: math.unit(124, "feet")
  48841. },
  48842. {
  48843. name: "Megamacro",
  48844. height: math.unit(850, "feet")
  48845. },
  48846. ]
  48847. ))
  48848. characterMakers.push(() => makeCharacter(
  48849. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48850. {
  48851. side: {
  48852. height: math.unit(13 + 6/12, "feet"),
  48853. weight: math.unit(3200, "lb"),
  48854. name: "Side",
  48855. image: {
  48856. source: "./media/characters/alvir/side.svg",
  48857. extra: 896/589,
  48858. bottom: 26/922
  48859. }
  48860. },
  48861. },
  48862. [
  48863. {
  48864. name: "Normal",
  48865. height: math.unit(13 + 6/12, "feet"),
  48866. default: true
  48867. },
  48868. ]
  48869. ))
  48870. characterMakers.push(() => makeCharacter(
  48871. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48872. {
  48873. front: {
  48874. height: math.unit(5 + 4/12, "feet"),
  48875. weight: math.unit(236, "lb"),
  48876. name: "Front",
  48877. image: {
  48878. source: "./media/characters/zaina-khalil/front.svg",
  48879. extra: 1533/1485,
  48880. bottom: 94/1627
  48881. }
  48882. },
  48883. side: {
  48884. height: math.unit(5 + 4/12, "feet"),
  48885. weight: math.unit(236, "lb"),
  48886. name: "Side",
  48887. image: {
  48888. source: "./media/characters/zaina-khalil/side.svg",
  48889. extra: 1537/1498,
  48890. bottom: 66/1603
  48891. }
  48892. },
  48893. back: {
  48894. height: math.unit(5 + 4/12, "feet"),
  48895. weight: math.unit(236, "lb"),
  48896. name: "Back",
  48897. image: {
  48898. source: "./media/characters/zaina-khalil/back.svg",
  48899. extra: 1546/1494,
  48900. bottom: 89/1635
  48901. }
  48902. },
  48903. },
  48904. [
  48905. {
  48906. name: "Normal",
  48907. height: math.unit(5 + 4/12, "feet"),
  48908. default: true
  48909. },
  48910. ]
  48911. ))
  48912. characterMakers.push(() => makeCharacter(
  48913. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48914. {
  48915. side: {
  48916. height: math.unit(12, "feet"),
  48917. weight: math.unit(4000, "lb"),
  48918. name: "Side",
  48919. image: {
  48920. source: "./media/characters/terry/side.svg",
  48921. extra: 1518/1439,
  48922. bottom: 149/1667
  48923. }
  48924. },
  48925. },
  48926. [
  48927. {
  48928. name: "Normal",
  48929. height: math.unit(12, "feet"),
  48930. default: true
  48931. },
  48932. ]
  48933. ))
  48934. characterMakers.push(() => makeCharacter(
  48935. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48936. {
  48937. front: {
  48938. height: math.unit(12, "feet"),
  48939. weight: math.unit(1500, "lb"),
  48940. name: "Front",
  48941. image: {
  48942. source: "./media/characters/kahea/front.svg",
  48943. extra: 1722/1617,
  48944. bottom: 179/1901
  48945. }
  48946. },
  48947. },
  48948. [
  48949. {
  48950. name: "Normal",
  48951. height: math.unit(12, "feet"),
  48952. default: true
  48953. },
  48954. ]
  48955. ))
  48956. characterMakers.push(() => makeCharacter(
  48957. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48958. {
  48959. demonFront: {
  48960. height: math.unit(36, "feet"),
  48961. name: "Front",
  48962. image: {
  48963. source: "./media/characters/alex-xuria/demon-front.svg",
  48964. extra: 1705/1673,
  48965. bottom: 198/1903
  48966. },
  48967. form: "demon",
  48968. default: true
  48969. },
  48970. demonBack: {
  48971. height: math.unit(36, "feet"),
  48972. name: "Back",
  48973. image: {
  48974. source: "./media/characters/alex-xuria/demon-back.svg",
  48975. extra: 1725/1693,
  48976. bottom: 70/1795
  48977. },
  48978. form: "demon"
  48979. },
  48980. demonHead: {
  48981. height: math.unit(2.14, "meters"),
  48982. name: "Head",
  48983. image: {
  48984. source: "./media/characters/alex-xuria/demon-head.svg"
  48985. },
  48986. form: "demon"
  48987. },
  48988. demonHand: {
  48989. height: math.unit(1.61, "meters"),
  48990. name: "Hand",
  48991. image: {
  48992. source: "./media/characters/alex-xuria/demon-hand.svg"
  48993. },
  48994. form: "demon"
  48995. },
  48996. demonPaw: {
  48997. height: math.unit(1.35, "meters"),
  48998. name: "Paw",
  48999. image: {
  49000. source: "./media/characters/alex-xuria/demon-paw.svg"
  49001. },
  49002. form: "demon"
  49003. },
  49004. demonFoot: {
  49005. height: math.unit(2.2, "meters"),
  49006. name: "Foot",
  49007. image: {
  49008. source: "./media/characters/alex-xuria/demon-foot.svg"
  49009. },
  49010. form: "demon"
  49011. },
  49012. demonCock: {
  49013. height: math.unit(1.74, "meters"),
  49014. name: "Cock",
  49015. image: {
  49016. source: "./media/characters/alex-xuria/demon-cock.svg"
  49017. },
  49018. form: "demon"
  49019. },
  49020. demonTailClosed: {
  49021. height: math.unit(1.47, "meters"),
  49022. name: "Tail (Closed)",
  49023. image: {
  49024. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  49025. },
  49026. form: "demon"
  49027. },
  49028. demonTailOpen: {
  49029. height: math.unit(2.85, "meters"),
  49030. name: "Tail (Open)",
  49031. image: {
  49032. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  49033. },
  49034. form: "demon"
  49035. },
  49036. incubusFront: {
  49037. height: math.unit(12, "feet"),
  49038. name: "Front",
  49039. image: {
  49040. source: "./media/characters/alex-xuria/incubus-front.svg",
  49041. extra: 1754/1677,
  49042. bottom: 125/1879
  49043. },
  49044. form: "incubus",
  49045. default: true
  49046. },
  49047. incubusBack: {
  49048. height: math.unit(12, "feet"),
  49049. name: "Back",
  49050. image: {
  49051. source: "./media/characters/alex-xuria/incubus-back.svg",
  49052. extra: 1702/1647,
  49053. bottom: 30/1732
  49054. },
  49055. form: "incubus"
  49056. },
  49057. incubusHead: {
  49058. height: math.unit(3.45, "feet"),
  49059. name: "Head",
  49060. image: {
  49061. source: "./media/characters/alex-xuria/incubus-head.svg"
  49062. },
  49063. form: "incubus"
  49064. },
  49065. rabbitFront: {
  49066. height: math.unit(6, "feet"),
  49067. name: "Front",
  49068. image: {
  49069. source: "./media/characters/alex-xuria/rabbit-front.svg",
  49070. extra: 1369/1349,
  49071. bottom: 45/1414
  49072. },
  49073. form: "rabbit",
  49074. default: true
  49075. },
  49076. rabbitSide: {
  49077. height: math.unit(6, "feet"),
  49078. name: "Side",
  49079. image: {
  49080. source: "./media/characters/alex-xuria/rabbit-side.svg",
  49081. extra: 1370/1356,
  49082. bottom: 37/1407
  49083. },
  49084. form: "rabbit"
  49085. },
  49086. rabbitBack: {
  49087. height: math.unit(6, "feet"),
  49088. name: "Back",
  49089. image: {
  49090. source: "./media/characters/alex-xuria/rabbit-back.svg",
  49091. extra: 1375/1358,
  49092. bottom: 43/1418
  49093. },
  49094. form: "rabbit"
  49095. },
  49096. },
  49097. [
  49098. {
  49099. name: "Normal",
  49100. height: math.unit(6, "feet"),
  49101. default: true,
  49102. form: "rabbit"
  49103. },
  49104. {
  49105. name: "Incubus",
  49106. height: math.unit(12, "feet"),
  49107. default: true,
  49108. form: "incubus"
  49109. },
  49110. {
  49111. name: "Demon",
  49112. height: math.unit(36, "feet"),
  49113. default: true,
  49114. form: "demon"
  49115. }
  49116. ],
  49117. {
  49118. "demon": {
  49119. name: "Demon",
  49120. default: true
  49121. },
  49122. "incubus": {
  49123. name: "Incubus",
  49124. },
  49125. "rabbit": {
  49126. name: "Rabbit"
  49127. }
  49128. }
  49129. ))
  49130. characterMakers.push(() => makeCharacter(
  49131. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  49132. {
  49133. front: {
  49134. height: math.unit(7 + 5/12, "feet"),
  49135. weight: math.unit(510, "lb"),
  49136. name: "Front",
  49137. image: {
  49138. source: "./media/characters/syrup/front.svg",
  49139. extra: 932/916,
  49140. bottom: 26/958
  49141. }
  49142. },
  49143. },
  49144. [
  49145. {
  49146. name: "Normal",
  49147. height: math.unit(7 + 5/12, "feet"),
  49148. default: true
  49149. },
  49150. {
  49151. name: "Big",
  49152. height: math.unit(50, "feet")
  49153. },
  49154. {
  49155. name: "Macro",
  49156. height: math.unit(300, "feet")
  49157. },
  49158. {
  49159. name: "Megamacro",
  49160. height: math.unit(1, "mile")
  49161. },
  49162. ]
  49163. ))
  49164. characterMakers.push(() => makeCharacter(
  49165. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  49166. {
  49167. front: {
  49168. height: math.unit(6 + 9/12, "feet"),
  49169. name: "Front",
  49170. image: {
  49171. source: "./media/characters/zeimne/front.svg",
  49172. extra: 1969/1806,
  49173. bottom: 53/2022
  49174. }
  49175. },
  49176. },
  49177. [
  49178. {
  49179. name: "Normal",
  49180. height: math.unit(6 + 9/12, "feet"),
  49181. default: true
  49182. },
  49183. {
  49184. name: "Giant",
  49185. height: math.unit(550, "feet")
  49186. },
  49187. {
  49188. name: "Mega",
  49189. height: math.unit(3, "miles")
  49190. },
  49191. {
  49192. name: "Giga",
  49193. height: math.unit(250, "miles")
  49194. },
  49195. {
  49196. name: "Tera",
  49197. height: math.unit(1, "AU")
  49198. },
  49199. ]
  49200. ))
  49201. characterMakers.push(() => makeCharacter(
  49202. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49203. {
  49204. front: {
  49205. height: math.unit(5 + 2/12, "feet"),
  49206. name: "Front",
  49207. image: {
  49208. source: "./media/characters/grar/front.svg",
  49209. extra: 1331/1119,
  49210. bottom: 60/1391
  49211. }
  49212. },
  49213. back: {
  49214. height: math.unit(5 + 2/12, "feet"),
  49215. name: "Back",
  49216. image: {
  49217. source: "./media/characters/grar/back.svg",
  49218. extra: 1385/1169,
  49219. bottom: 23/1408
  49220. }
  49221. },
  49222. },
  49223. [
  49224. {
  49225. name: "Normal",
  49226. height: math.unit(5 + 2/12, "feet"),
  49227. default: true
  49228. },
  49229. ]
  49230. ))
  49231. characterMakers.push(() => makeCharacter(
  49232. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49233. {
  49234. front: {
  49235. height: math.unit(13 + 7/12, "feet"),
  49236. weight: math.unit(2200, "lb"),
  49237. name: "Front",
  49238. image: {
  49239. source: "./media/characters/endraya/front.svg",
  49240. extra: 1289/1215,
  49241. bottom: 50/1339
  49242. }
  49243. },
  49244. nude: {
  49245. height: math.unit(13 + 7/12, "feet"),
  49246. weight: math.unit(2200, "lb"),
  49247. name: "Nude",
  49248. image: {
  49249. source: "./media/characters/endraya/nude.svg",
  49250. extra: 1247/1171,
  49251. bottom: 40/1287
  49252. }
  49253. },
  49254. head: {
  49255. height: math.unit(2.6, "feet"),
  49256. name: "Head",
  49257. image: {
  49258. source: "./media/characters/endraya/head.svg"
  49259. }
  49260. },
  49261. slit: {
  49262. height: math.unit(3.4, "feet"),
  49263. name: "Slit",
  49264. image: {
  49265. source: "./media/characters/endraya/slit.svg"
  49266. }
  49267. },
  49268. },
  49269. [
  49270. {
  49271. name: "Normal",
  49272. height: math.unit(13 + 7/12, "feet"),
  49273. default: true
  49274. },
  49275. {
  49276. name: "Macro",
  49277. height: math.unit(200, "feet")
  49278. },
  49279. ]
  49280. ))
  49281. characterMakers.push(() => makeCharacter(
  49282. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49283. {
  49284. front: {
  49285. height: math.unit(1.81, "meters"),
  49286. weight: math.unit(69, "kg"),
  49287. name: "Front",
  49288. image: {
  49289. source: "./media/characters/rodryana/front.svg",
  49290. extra: 2002/1921,
  49291. bottom: 53/2055
  49292. }
  49293. },
  49294. back: {
  49295. height: math.unit(1.81, "meters"),
  49296. weight: math.unit(69, "kg"),
  49297. name: "Back",
  49298. image: {
  49299. source: "./media/characters/rodryana/back.svg",
  49300. extra: 1993/1926,
  49301. bottom: 48/2041
  49302. }
  49303. },
  49304. maw: {
  49305. height: math.unit(0.19769417475, "meters"),
  49306. name: "Maw",
  49307. image: {
  49308. source: "./media/characters/rodryana/maw.svg"
  49309. }
  49310. },
  49311. slit: {
  49312. height: math.unit(0.31631067961, "meters"),
  49313. name: "Slit",
  49314. image: {
  49315. source: "./media/characters/rodryana/slit.svg"
  49316. }
  49317. },
  49318. },
  49319. [
  49320. {
  49321. name: "Normal",
  49322. height: math.unit(1.81, "meters")
  49323. },
  49324. {
  49325. name: "Mini Macro",
  49326. height: math.unit(181, "meters")
  49327. },
  49328. {
  49329. name: "Macro",
  49330. height: math.unit(452, "meters"),
  49331. default: true
  49332. },
  49333. {
  49334. name: "Mega Macro",
  49335. height: math.unit(1.375, "km")
  49336. },
  49337. {
  49338. name: "Giga Macro",
  49339. height: math.unit(13.575, "km")
  49340. },
  49341. ]
  49342. ))
  49343. characterMakers.push(() => makeCharacter(
  49344. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49345. {
  49346. front: {
  49347. height: math.unit(6, "feet"),
  49348. weight: math.unit(1000, "lb"),
  49349. name: "Front",
  49350. image: {
  49351. source: "./media/characters/asaya/front.svg",
  49352. extra: 1460/1200,
  49353. bottom: 71/1531
  49354. }
  49355. },
  49356. },
  49357. [
  49358. {
  49359. name: "Normal",
  49360. height: math.unit(8, "km"),
  49361. default: true
  49362. },
  49363. ]
  49364. ))
  49365. characterMakers.push(() => makeCharacter(
  49366. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49367. {
  49368. front: {
  49369. height: math.unit(3.5, "meters"),
  49370. name: "Front",
  49371. image: {
  49372. source: "./media/characters/sarzu-and-israz/front.svg",
  49373. extra: 1570/1558,
  49374. bottom: 150/1720
  49375. },
  49376. },
  49377. back: {
  49378. height: math.unit(3.5, "meters"),
  49379. name: "Back",
  49380. image: {
  49381. source: "./media/characters/sarzu-and-israz/back.svg",
  49382. extra: 1523/1509,
  49383. bottom: 132/1655
  49384. },
  49385. },
  49386. frontFemale: {
  49387. height: math.unit(3.5, "meters"),
  49388. name: "Front (Female)",
  49389. image: {
  49390. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49391. extra: 1570/1558,
  49392. bottom: 150/1720
  49393. },
  49394. },
  49395. frontHerm: {
  49396. height: math.unit(3.5, "meters"),
  49397. name: "Front (Herm)",
  49398. image: {
  49399. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49400. extra: 1570/1558,
  49401. bottom: 150/1720
  49402. },
  49403. },
  49404. },
  49405. [
  49406. {
  49407. name: "Normal",
  49408. height: math.unit(3.5, "meters"),
  49409. default: true,
  49410. },
  49411. {
  49412. name: "Macro",
  49413. height: math.unit(65.5, "meters"),
  49414. },
  49415. ],
  49416. ))
  49417. characterMakers.push(() => makeCharacter(
  49418. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49419. {
  49420. front: {
  49421. height: math.unit(6, "feet"),
  49422. weight: math.unit(250, "lb"),
  49423. name: "Front",
  49424. image: {
  49425. source: "./media/characters/zenimma/front.svg",
  49426. extra: 1346/1320,
  49427. bottom: 58/1404
  49428. }
  49429. },
  49430. back: {
  49431. height: math.unit(6, "feet"),
  49432. weight: math.unit(250, "lb"),
  49433. name: "Back",
  49434. image: {
  49435. source: "./media/characters/zenimma/back.svg",
  49436. extra: 1324/1308,
  49437. bottom: 44/1368
  49438. }
  49439. },
  49440. dick: {
  49441. height: math.unit(1.44, "feet"),
  49442. name: "Dick",
  49443. image: {
  49444. source: "./media/characters/zenimma/dick.svg"
  49445. }
  49446. },
  49447. },
  49448. [
  49449. {
  49450. name: "Canon Height",
  49451. height: math.unit(66, "miles"),
  49452. default: true
  49453. },
  49454. ]
  49455. ))
  49456. characterMakers.push(() => makeCharacter(
  49457. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49458. {
  49459. nude: {
  49460. height: math.unit(6, "feet"),
  49461. weight: math.unit(150, "lb"),
  49462. name: "Nude",
  49463. image: {
  49464. source: "./media/characters/shavon/nude.svg",
  49465. extra: 1242/1096,
  49466. bottom: 98/1340
  49467. }
  49468. },
  49469. dressed: {
  49470. height: math.unit(6, "feet"),
  49471. weight: math.unit(150, "lb"),
  49472. name: "Dressed",
  49473. image: {
  49474. source: "./media/characters/shavon/dressed.svg",
  49475. extra: 1242/1096,
  49476. bottom: 98/1340
  49477. }
  49478. },
  49479. },
  49480. [
  49481. {
  49482. name: "Macro",
  49483. height: math.unit(255, "feet"),
  49484. default: true
  49485. },
  49486. ]
  49487. ))
  49488. characterMakers.push(() => makeCharacter(
  49489. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49490. {
  49491. front: {
  49492. height: math.unit(6, "feet"),
  49493. name: "Front",
  49494. image: {
  49495. source: "./media/characters/steph/front.svg",
  49496. extra: 1430/1330,
  49497. bottom: 54/1484
  49498. }
  49499. },
  49500. },
  49501. [
  49502. {
  49503. name: "Normal",
  49504. height: math.unit(6, "feet"),
  49505. default: true
  49506. },
  49507. ]
  49508. ))
  49509. characterMakers.push(() => makeCharacter(
  49510. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49511. {
  49512. front: {
  49513. height: math.unit(9, "feet"),
  49514. weight: math.unit(400, "lb"),
  49515. name: "Front",
  49516. image: {
  49517. source: "./media/characters/kil'aman/front.svg",
  49518. extra: 1210/1159,
  49519. bottom: 109/1319
  49520. }
  49521. },
  49522. head: {
  49523. height: math.unit(2.14, "feet"),
  49524. name: "Head",
  49525. image: {
  49526. source: "./media/characters/kil'aman/head.svg"
  49527. }
  49528. },
  49529. maw: {
  49530. height: math.unit(1.21, "feet"),
  49531. name: "Maw",
  49532. image: {
  49533. source: "./media/characters/kil'aman/maw.svg"
  49534. }
  49535. },
  49536. foot: {
  49537. height: math.unit(1.7, "feet"),
  49538. name: "Foot",
  49539. image: {
  49540. source: "./media/characters/kil'aman/foot.svg"
  49541. }
  49542. },
  49543. dick: {
  49544. height: math.unit(2.1, "feet"),
  49545. name: "Dick",
  49546. image: {
  49547. source: "./media/characters/kil'aman/dick.svg"
  49548. }
  49549. },
  49550. },
  49551. [
  49552. {
  49553. name: "Normal",
  49554. height: math.unit(9, "feet")
  49555. },
  49556. {
  49557. name: "Canon Height",
  49558. height: math.unit(10, "miles"),
  49559. default: true
  49560. },
  49561. {
  49562. name: "Maximum",
  49563. height: math.unit(6e9, "miles")
  49564. },
  49565. ]
  49566. ))
  49567. characterMakers.push(() => makeCharacter(
  49568. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49569. {
  49570. front: {
  49571. height: math.unit(90, "feet"),
  49572. weight: math.unit(675000, "lb"),
  49573. name: "Front",
  49574. image: {
  49575. source: "./media/characters/qadan/front.svg",
  49576. extra: 1012/1004,
  49577. bottom: 78/1090
  49578. }
  49579. },
  49580. back: {
  49581. height: math.unit(90, "feet"),
  49582. weight: math.unit(675000, "lb"),
  49583. name: "Back",
  49584. image: {
  49585. source: "./media/characters/qadan/back.svg",
  49586. extra: 1042/1031,
  49587. bottom: 55/1097
  49588. }
  49589. },
  49590. armored: {
  49591. height: math.unit(90, "feet"),
  49592. weight: math.unit(675000, "lb"),
  49593. name: "Armored",
  49594. image: {
  49595. source: "./media/characters/qadan/armored.svg",
  49596. extra: 1047/1037,
  49597. bottom: 48/1095
  49598. }
  49599. },
  49600. },
  49601. [
  49602. {
  49603. name: "Normal",
  49604. height: math.unit(90, "feet"),
  49605. default: true
  49606. },
  49607. ]
  49608. ))
  49609. characterMakers.push(() => makeCharacter(
  49610. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49611. {
  49612. front: {
  49613. height: math.unit(6, "feet"),
  49614. weight: math.unit(225, "lb"),
  49615. name: "Front",
  49616. image: {
  49617. source: "./media/characters/brooke/front.svg",
  49618. extra: 1050/1010,
  49619. bottom: 66/1116
  49620. }
  49621. },
  49622. back: {
  49623. height: math.unit(6, "feet"),
  49624. weight: math.unit(225, "lb"),
  49625. name: "Back",
  49626. image: {
  49627. source: "./media/characters/brooke/back.svg",
  49628. extra: 1053/1013,
  49629. bottom: 41/1094
  49630. }
  49631. },
  49632. dressed: {
  49633. height: math.unit(6, "feet"),
  49634. weight: math.unit(225, "lb"),
  49635. name: "Dressed",
  49636. image: {
  49637. source: "./media/characters/brooke/dressed.svg",
  49638. extra: 1050/1010,
  49639. bottom: 66/1116
  49640. }
  49641. },
  49642. },
  49643. [
  49644. {
  49645. name: "Canon Height",
  49646. height: math.unit(500, "miles"),
  49647. default: true
  49648. },
  49649. ]
  49650. ))
  49651. characterMakers.push(() => makeCharacter(
  49652. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49653. {
  49654. front: {
  49655. height: math.unit(6 + 2/12, "feet"),
  49656. weight: math.unit(210, "lb"),
  49657. name: "Front",
  49658. image: {
  49659. source: "./media/characters/wubs/front.svg",
  49660. extra: 1345/1325,
  49661. bottom: 70/1415
  49662. }
  49663. },
  49664. back: {
  49665. height: math.unit(6 + 2/12, "feet"),
  49666. weight: math.unit(210, "lb"),
  49667. name: "Back",
  49668. image: {
  49669. source: "./media/characters/wubs/back.svg",
  49670. extra: 1296/1275,
  49671. bottom: 58/1354
  49672. }
  49673. },
  49674. },
  49675. [
  49676. {
  49677. name: "Normal",
  49678. height: math.unit(6 + 2/12, "feet"),
  49679. default: true
  49680. },
  49681. {
  49682. name: "Macro",
  49683. height: math.unit(1000, "feet")
  49684. },
  49685. {
  49686. name: "Megamacro",
  49687. height: math.unit(1, "mile")
  49688. },
  49689. ]
  49690. ))
  49691. characterMakers.push(() => makeCharacter(
  49692. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49693. {
  49694. front: {
  49695. height: math.unit(4, "feet"),
  49696. weight: math.unit(120, "lb"),
  49697. name: "Front",
  49698. image: {
  49699. source: "./media/characters/blue/front.svg",
  49700. extra: 1636/1525,
  49701. bottom: 43/1679
  49702. }
  49703. },
  49704. back: {
  49705. height: math.unit(4, "feet"),
  49706. weight: math.unit(120, "lb"),
  49707. name: "Back",
  49708. image: {
  49709. source: "./media/characters/blue/back.svg",
  49710. extra: 1660/1560,
  49711. bottom: 57/1717
  49712. }
  49713. },
  49714. paws: {
  49715. height: math.unit(0.826, "feet"),
  49716. name: "Paws",
  49717. image: {
  49718. source: "./media/characters/blue/paws.svg"
  49719. }
  49720. },
  49721. },
  49722. [
  49723. {
  49724. name: "Micro",
  49725. height: math.unit(3, "inches")
  49726. },
  49727. {
  49728. name: "Normal",
  49729. height: math.unit(4, "feet"),
  49730. default: true
  49731. },
  49732. {
  49733. name: "Femenine Form",
  49734. height: math.unit(14, "feet")
  49735. },
  49736. {
  49737. name: "Werebat Form",
  49738. height: math.unit(18, "feet")
  49739. },
  49740. ]
  49741. ))
  49742. characterMakers.push(() => makeCharacter(
  49743. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49744. {
  49745. female: {
  49746. height: math.unit(7 + 4/12, "feet"),
  49747. weight: math.unit(243, "lb"),
  49748. name: "Female",
  49749. image: {
  49750. source: "./media/characters/kaya/female.svg",
  49751. extra: 975/898,
  49752. bottom: 34/1009
  49753. }
  49754. },
  49755. herm: {
  49756. height: math.unit(7 + 4/12, "feet"),
  49757. weight: math.unit(243, "lb"),
  49758. name: "Herm",
  49759. image: {
  49760. source: "./media/characters/kaya/herm.svg",
  49761. extra: 975/898,
  49762. bottom: 34/1009
  49763. }
  49764. },
  49765. },
  49766. [
  49767. {
  49768. name: "Normal",
  49769. height: math.unit(7 + 4/12, "feet"),
  49770. default: true
  49771. },
  49772. ]
  49773. ))
  49774. characterMakers.push(() => makeCharacter(
  49775. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49776. {
  49777. female: {
  49778. height: math.unit(9 + 4/12, "feet"),
  49779. weight: math.unit(398, "lb"),
  49780. name: "Female",
  49781. image: {
  49782. source: "./media/characters/kassandra/female.svg",
  49783. extra: 908/839,
  49784. bottom: 61/969
  49785. }
  49786. },
  49787. intersex: {
  49788. height: math.unit(9 + 4/12, "feet"),
  49789. weight: math.unit(398, "lb"),
  49790. name: "Intersex",
  49791. image: {
  49792. source: "./media/characters/kassandra/intersex.svg",
  49793. extra: 908/839,
  49794. bottom: 61/969
  49795. }
  49796. },
  49797. },
  49798. [
  49799. {
  49800. name: "Normal",
  49801. height: math.unit(9 + 4/12, "feet"),
  49802. default: true
  49803. },
  49804. ]
  49805. ))
  49806. characterMakers.push(() => makeCharacter(
  49807. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49808. {
  49809. front: {
  49810. height: math.unit(3, "meters"),
  49811. name: "Front",
  49812. image: {
  49813. source: "./media/characters/amy/front.svg",
  49814. extra: 1380/1343,
  49815. bottom: 70/1450
  49816. }
  49817. },
  49818. back: {
  49819. height: math.unit(3, "meters"),
  49820. name: "Back",
  49821. image: {
  49822. source: "./media/characters/amy/back.svg",
  49823. extra: 1380/1347,
  49824. bottom: 66/1446
  49825. }
  49826. },
  49827. },
  49828. [
  49829. {
  49830. name: "Normal",
  49831. height: math.unit(3, "meters"),
  49832. default: true
  49833. },
  49834. ]
  49835. ))
  49836. characterMakers.push(() => makeCharacter(
  49837. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49838. {
  49839. side: {
  49840. height: math.unit(47, "cm"),
  49841. weight: math.unit(10.8, "kg"),
  49842. name: "Side",
  49843. image: {
  49844. source: "./media/characters/alphaschakal/side.svg",
  49845. extra: 1058/568,
  49846. bottom: 62/1120
  49847. }
  49848. },
  49849. back: {
  49850. height: math.unit(78, "cm"),
  49851. weight: math.unit(10.8, "kg"),
  49852. name: "Back",
  49853. image: {
  49854. source: "./media/characters/alphaschakal/back.svg",
  49855. extra: 1102/942,
  49856. bottom: 185/1287
  49857. }
  49858. },
  49859. head: {
  49860. height: math.unit(28, "cm"),
  49861. name: "Head",
  49862. image: {
  49863. source: "./media/characters/alphaschakal/head.svg",
  49864. extra: 696/508,
  49865. bottom: 0/696
  49866. }
  49867. },
  49868. paw: {
  49869. height: math.unit(16, "cm"),
  49870. name: "Paw",
  49871. image: {
  49872. source: "./media/characters/alphaschakal/paw.svg"
  49873. }
  49874. },
  49875. },
  49876. [
  49877. {
  49878. name: "Normal",
  49879. height: math.unit(47, "cm"),
  49880. default: true
  49881. },
  49882. {
  49883. name: "Macro",
  49884. height: math.unit(340, "cm")
  49885. },
  49886. ]
  49887. ))
  49888. characterMakers.push(() => makeCharacter(
  49889. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49890. {
  49891. front: {
  49892. height: math.unit(36, "earths"),
  49893. name: "Front",
  49894. image: {
  49895. source: "./media/characters/ecobyss/front.svg",
  49896. extra: 1282/1215,
  49897. bottom: 11/1293
  49898. }
  49899. },
  49900. back: {
  49901. height: math.unit(36, "earths"),
  49902. name: "Back",
  49903. image: {
  49904. source: "./media/characters/ecobyss/back.svg",
  49905. extra: 1291/1222,
  49906. bottom: 8/1299
  49907. }
  49908. },
  49909. },
  49910. [
  49911. {
  49912. name: "Normal",
  49913. height: math.unit(36, "earths"),
  49914. default: true
  49915. },
  49916. ]
  49917. ))
  49918. characterMakers.push(() => makeCharacter(
  49919. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49920. {
  49921. front: {
  49922. height: math.unit(12, "feet"),
  49923. name: "Front",
  49924. image: {
  49925. source: "./media/characters/vasuk/front.svg",
  49926. extra: 1326/1207,
  49927. bottom: 64/1390
  49928. }
  49929. },
  49930. },
  49931. [
  49932. {
  49933. name: "Normal",
  49934. height: math.unit(12, "feet"),
  49935. default: true
  49936. },
  49937. ]
  49938. ))
  49939. characterMakers.push(() => makeCharacter(
  49940. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49941. {
  49942. side: {
  49943. height: math.unit(100, "feet"),
  49944. name: "Side",
  49945. image: {
  49946. source: "./media/characters/linneaus/side.svg",
  49947. extra: 987/807,
  49948. bottom: 47/1034
  49949. }
  49950. },
  49951. },
  49952. [
  49953. {
  49954. name: "Macro",
  49955. height: math.unit(100, "feet"),
  49956. default: true
  49957. },
  49958. ]
  49959. ))
  49960. characterMakers.push(() => makeCharacter(
  49961. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49962. {
  49963. front: {
  49964. height: math.unit(8, "feet"),
  49965. weight: math.unit(1200, "lb"),
  49966. name: "Front",
  49967. image: {
  49968. source: "./media/characters/nyterious-daligdig/front.svg",
  49969. extra: 1284/1094,
  49970. bottom: 84/1368
  49971. }
  49972. },
  49973. back: {
  49974. height: math.unit(8, "feet"),
  49975. weight: math.unit(1200, "lb"),
  49976. name: "Back",
  49977. image: {
  49978. source: "./media/characters/nyterious-daligdig/back.svg",
  49979. extra: 1301/1121,
  49980. bottom: 129/1430
  49981. }
  49982. },
  49983. mouth: {
  49984. height: math.unit(1.464, "feet"),
  49985. name: "Mouth",
  49986. image: {
  49987. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49988. }
  49989. },
  49990. },
  49991. [
  49992. {
  49993. name: "Small",
  49994. height: math.unit(8, "feet"),
  49995. default: true
  49996. },
  49997. {
  49998. name: "Normal",
  49999. height: math.unit(15, "feet")
  50000. },
  50001. {
  50002. name: "Macro",
  50003. height: math.unit(90, "feet")
  50004. },
  50005. ]
  50006. ))
  50007. characterMakers.push(() => makeCharacter(
  50008. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  50009. {
  50010. front: {
  50011. height: math.unit(7 + 4/12, "feet"),
  50012. weight: math.unit(252, "lb"),
  50013. name: "Front",
  50014. image: {
  50015. source: "./media/characters/bandel/front.svg",
  50016. extra: 1946/1775,
  50017. bottom: 26/1972
  50018. }
  50019. },
  50020. back: {
  50021. height: math.unit(7 + 4/12, "feet"),
  50022. weight: math.unit(252, "lb"),
  50023. name: "Back",
  50024. image: {
  50025. source: "./media/characters/bandel/back.svg",
  50026. extra: 1940/1770,
  50027. bottom: 25/1965
  50028. }
  50029. },
  50030. maw: {
  50031. height: math.unit(2.15, "feet"),
  50032. name: "Maw",
  50033. image: {
  50034. source: "./media/characters/bandel/maw.svg"
  50035. }
  50036. },
  50037. stomach: {
  50038. height: math.unit(1.95, "feet"),
  50039. name: "Stomach",
  50040. image: {
  50041. source: "./media/characters/bandel/stomach.svg"
  50042. }
  50043. },
  50044. },
  50045. [
  50046. {
  50047. name: "Normal",
  50048. height: math.unit(7 + 4/12, "feet"),
  50049. default: true
  50050. },
  50051. ]
  50052. ))
  50053. characterMakers.push(() => makeCharacter(
  50054. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  50055. {
  50056. front: {
  50057. height: math.unit(10 + 5/12, "feet"),
  50058. weight: math.unit(773.5, "kg"),
  50059. name: "Front",
  50060. image: {
  50061. source: "./media/characters/zed/front.svg",
  50062. extra: 987/941,
  50063. bottom: 52/1039
  50064. }
  50065. },
  50066. },
  50067. [
  50068. {
  50069. name: "Short",
  50070. height: math.unit(5 + 4/12, "feet")
  50071. },
  50072. {
  50073. name: "Average",
  50074. height: math.unit(10 + 5/12, "feet"),
  50075. default: true
  50076. },
  50077. {
  50078. name: "Mini-Macro",
  50079. height: math.unit(24 + 9/12, "feet")
  50080. },
  50081. {
  50082. name: "Macro",
  50083. height: math.unit(249, "feet")
  50084. },
  50085. {
  50086. name: "Mega-Macro",
  50087. height: math.unit(12490, "feet")
  50088. },
  50089. {
  50090. name: "Giga-Macro",
  50091. height: math.unit(24.9, "miles")
  50092. },
  50093. {
  50094. name: "Tera-Macro",
  50095. height: math.unit(24900, "miles")
  50096. },
  50097. {
  50098. name: "Cosmic Scale",
  50099. height: math.unit(38.9, "lightyears")
  50100. },
  50101. {
  50102. name: "Universal Scale",
  50103. height: math.unit(138e12, "lightyears")
  50104. },
  50105. ]
  50106. ))
  50107. characterMakers.push(() => makeCharacter(
  50108. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  50109. {
  50110. front: {
  50111. height: math.unit(1561, "inches"),
  50112. name: "Front",
  50113. image: {
  50114. source: "./media/characters/ivan/front.svg",
  50115. extra: 1126/1071,
  50116. bottom: 26/1152
  50117. }
  50118. },
  50119. back: {
  50120. height: math.unit(1561, "inches"),
  50121. name: "Back",
  50122. image: {
  50123. source: "./media/characters/ivan/back.svg",
  50124. extra: 1134/1079,
  50125. bottom: 30/1164
  50126. }
  50127. },
  50128. },
  50129. [
  50130. {
  50131. name: "Normal",
  50132. height: math.unit(1561, "inches"),
  50133. default: true
  50134. },
  50135. ]
  50136. ))
  50137. characterMakers.push(() => makeCharacter(
  50138. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  50139. {
  50140. front: {
  50141. height: math.unit(5 + 7/12, "feet"),
  50142. weight: math.unit(150, "lb"),
  50143. name: "Front",
  50144. image: {
  50145. source: "./media/characters/robin-arctic-hare/front.svg",
  50146. extra: 1148/974,
  50147. bottom: 20/1168
  50148. }
  50149. },
  50150. },
  50151. [
  50152. {
  50153. name: "Normal",
  50154. height: math.unit(5 + 7/12, "feet"),
  50155. default: true
  50156. },
  50157. ]
  50158. ))
  50159. characterMakers.push(() => makeCharacter(
  50160. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  50161. {
  50162. side: {
  50163. height: math.unit(5, "feet"),
  50164. name: "Side",
  50165. image: {
  50166. source: "./media/characters/birch/side.svg",
  50167. extra: 985/796,
  50168. bottom: 111/1096
  50169. }
  50170. },
  50171. },
  50172. [
  50173. {
  50174. name: "Normal",
  50175. height: math.unit(5, "feet"),
  50176. default: true
  50177. },
  50178. ]
  50179. ))
  50180. characterMakers.push(() => makeCharacter(
  50181. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  50182. {
  50183. front: {
  50184. height: math.unit(4, "feet"),
  50185. name: "Front",
  50186. image: {
  50187. source: "./media/characters/rasp/front.svg",
  50188. extra: 561/478,
  50189. bottom: 74/635
  50190. }
  50191. },
  50192. },
  50193. [
  50194. {
  50195. name: "Normal",
  50196. height: math.unit(4, "feet"),
  50197. default: true
  50198. },
  50199. ]
  50200. ))
  50201. characterMakers.push(() => makeCharacter(
  50202. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50203. {
  50204. front: {
  50205. height: math.unit(4 + 6/12, "feet"),
  50206. name: "Front",
  50207. image: {
  50208. source: "./media/characters/agatha/front.svg",
  50209. extra: 947/933,
  50210. bottom: 42/989
  50211. }
  50212. },
  50213. back: {
  50214. height: math.unit(4 + 6/12, "feet"),
  50215. name: "Back",
  50216. image: {
  50217. source: "./media/characters/agatha/back.svg",
  50218. extra: 935/922,
  50219. bottom: 48/983
  50220. }
  50221. },
  50222. },
  50223. [
  50224. {
  50225. name: "Normal",
  50226. height: math.unit(4 + 6 /12, "feet"),
  50227. default: true
  50228. },
  50229. {
  50230. name: "Max Size",
  50231. height: math.unit(500, "feet")
  50232. },
  50233. ]
  50234. ))
  50235. characterMakers.push(() => makeCharacter(
  50236. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50237. {
  50238. side: {
  50239. height: math.unit(30, "feet"),
  50240. name: "Side",
  50241. image: {
  50242. source: "./media/characters/roggy/side.svg",
  50243. extra: 909/643,
  50244. bottom: 63/972
  50245. }
  50246. },
  50247. lounging: {
  50248. height: math.unit(20, "feet"),
  50249. name: "Lounging",
  50250. image: {
  50251. source: "./media/characters/roggy/lounging.svg",
  50252. extra: 643/479,
  50253. bottom: 145/788
  50254. }
  50255. },
  50256. handpaw: {
  50257. height: math.unit(13.1, "feet"),
  50258. name: "Handpaw",
  50259. image: {
  50260. source: "./media/characters/roggy/handpaw.svg"
  50261. }
  50262. },
  50263. footpaw: {
  50264. height: math.unit(15.8, "feet"),
  50265. name: "Footpaw",
  50266. image: {
  50267. source: "./media/characters/roggy/footpaw.svg"
  50268. }
  50269. },
  50270. },
  50271. [
  50272. {
  50273. name: "Menacing",
  50274. height: math.unit(30, "feet"),
  50275. default: true
  50276. },
  50277. ]
  50278. ))
  50279. characterMakers.push(() => makeCharacter(
  50280. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50281. {
  50282. front: {
  50283. height: math.unit(5 + 7/12, "feet"),
  50284. weight: math.unit(135, "lb"),
  50285. name: "Front",
  50286. image: {
  50287. source: "./media/characters/naomi/front.svg",
  50288. extra: 1209/1154,
  50289. bottom: 129/1338
  50290. }
  50291. },
  50292. back: {
  50293. height: math.unit(5 + 7/12, "feet"),
  50294. weight: math.unit(135, "lb"),
  50295. name: "Back",
  50296. image: {
  50297. source: "./media/characters/naomi/back.svg",
  50298. extra: 1252/1190,
  50299. bottom: 23/1275
  50300. }
  50301. },
  50302. },
  50303. [
  50304. {
  50305. name: "Normal",
  50306. height: math.unit(5 + 7 /12, "feet"),
  50307. default: true
  50308. },
  50309. ]
  50310. ))
  50311. characterMakers.push(() => makeCharacter(
  50312. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50313. {
  50314. side: {
  50315. height: math.unit(35, "meters"),
  50316. name: "Side",
  50317. image: {
  50318. source: "./media/characters/kimpi/side.svg",
  50319. extra: 419/382,
  50320. bottom: 63/482
  50321. }
  50322. },
  50323. hand: {
  50324. height: math.unit(8.96, "meters"),
  50325. name: "Hand",
  50326. image: {
  50327. source: "./media/characters/kimpi/hand.svg"
  50328. }
  50329. },
  50330. },
  50331. [
  50332. {
  50333. name: "Normal",
  50334. height: math.unit(35, "meters"),
  50335. default: true
  50336. },
  50337. ]
  50338. ))
  50339. characterMakers.push(() => makeCharacter(
  50340. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50341. {
  50342. front: {
  50343. height: math.unit(4 + 4/12, "feet"),
  50344. name: "Front",
  50345. image: {
  50346. source: "./media/characters/pepper-purrloin/front.svg",
  50347. extra: 1141/1024,
  50348. bottom: 21/1162
  50349. }
  50350. },
  50351. },
  50352. [
  50353. {
  50354. name: "Normal",
  50355. height: math.unit(4 + 4/12, "feet"),
  50356. default: true
  50357. },
  50358. ]
  50359. ))
  50360. characterMakers.push(() => makeCharacter(
  50361. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50362. {
  50363. front: {
  50364. height: math.unit(6 + 2/12, "feet"),
  50365. name: "Front",
  50366. image: {
  50367. source: "./media/characters/raphael/front.svg",
  50368. extra: 1101/962,
  50369. bottom: 59/1160
  50370. }
  50371. },
  50372. },
  50373. [
  50374. {
  50375. name: "Normal",
  50376. height: math.unit(6 + 2/12, "feet"),
  50377. default: true
  50378. },
  50379. ]
  50380. ))
  50381. characterMakers.push(() => makeCharacter(
  50382. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50383. {
  50384. front: {
  50385. height: math.unit(6, "feet"),
  50386. weight: math.unit(150, "lb"),
  50387. name: "Front",
  50388. image: {
  50389. source: "./media/characters/victor-williams/front.svg",
  50390. extra: 1894/1825,
  50391. bottom: 67/1961
  50392. }
  50393. },
  50394. },
  50395. [
  50396. {
  50397. name: "Normal",
  50398. height: math.unit(6, "feet"),
  50399. default: true
  50400. },
  50401. ]
  50402. ))
  50403. characterMakers.push(() => makeCharacter(
  50404. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50405. {
  50406. front: {
  50407. height: math.unit(5 + 8/12, "feet"),
  50408. weight: math.unit(150, "lb"),
  50409. name: "Front",
  50410. image: {
  50411. source: "./media/characters/rachel/front.svg",
  50412. extra: 1902/1787,
  50413. bottom: 46/1948
  50414. }
  50415. },
  50416. },
  50417. [
  50418. {
  50419. name: "Base Height",
  50420. height: math.unit(5 + 8/12, "feet"),
  50421. default: true
  50422. },
  50423. {
  50424. name: "Macro",
  50425. height: math.unit(200, "feet")
  50426. },
  50427. {
  50428. name: "Mega Macro",
  50429. height: math.unit(1, "mile")
  50430. },
  50431. {
  50432. name: "Giga Macro",
  50433. height: math.unit(1500, "miles")
  50434. },
  50435. {
  50436. name: "Tera Macro",
  50437. height: math.unit(8000, "miles")
  50438. },
  50439. {
  50440. name: "Tera Macro+",
  50441. height: math.unit(2e5, "miles")
  50442. },
  50443. ]
  50444. ))
  50445. characterMakers.push(() => makeCharacter(
  50446. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50447. {
  50448. front: {
  50449. height: math.unit(6.5, "feet"),
  50450. name: "Front",
  50451. image: {
  50452. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50453. extra: 860/819,
  50454. bottom: 307/1167
  50455. }
  50456. },
  50457. back: {
  50458. height: math.unit(6.5, "feet"),
  50459. name: "Back",
  50460. image: {
  50461. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50462. extra: 880/837,
  50463. bottom: 395/1275
  50464. }
  50465. },
  50466. sleeping: {
  50467. height: math.unit(2.79, "feet"),
  50468. name: "Sleeping",
  50469. image: {
  50470. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50471. extra: 465/383,
  50472. bottom: 263/728
  50473. }
  50474. },
  50475. maw: {
  50476. height: math.unit(2.52, "feet"),
  50477. name: "Maw",
  50478. image: {
  50479. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50480. }
  50481. },
  50482. },
  50483. [
  50484. {
  50485. name: "Normal",
  50486. height: math.unit(6.5, "feet"),
  50487. default: true
  50488. },
  50489. ]
  50490. ))
  50491. characterMakers.push(() => makeCharacter(
  50492. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50493. {
  50494. front: {
  50495. height: math.unit(5, "feet"),
  50496. name: "Front",
  50497. image: {
  50498. source: "./media/characters/nova-nerium/front.svg",
  50499. extra: 1548/1392,
  50500. bottom: 374/1922
  50501. }
  50502. },
  50503. back: {
  50504. height: math.unit(5, "feet"),
  50505. name: "Back",
  50506. image: {
  50507. source: "./media/characters/nova-nerium/back.svg",
  50508. extra: 1658/1468,
  50509. bottom: 257/1915
  50510. }
  50511. },
  50512. },
  50513. [
  50514. {
  50515. name: "Normal",
  50516. height: math.unit(5, "feet"),
  50517. default: true
  50518. },
  50519. ]
  50520. ))
  50521. characterMakers.push(() => makeCharacter(
  50522. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50523. {
  50524. front: {
  50525. height: math.unit(5 + 4/12, "feet"),
  50526. name: "Front",
  50527. image: {
  50528. source: "./media/characters/ashe-pyriph/front.svg",
  50529. extra: 1935/1747,
  50530. bottom: 60/1995
  50531. }
  50532. },
  50533. },
  50534. [
  50535. {
  50536. name: "Normal",
  50537. height: math.unit(5 + 4/12, "feet"),
  50538. default: true
  50539. },
  50540. ]
  50541. ))
  50542. characterMakers.push(() => makeCharacter(
  50543. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50544. {
  50545. front: {
  50546. height: math.unit(8.7, "feet"),
  50547. name: "Front",
  50548. image: {
  50549. source: "./media/characters/flicker-wisp/front.svg",
  50550. extra: 1835/1613,
  50551. bottom: 449/2284
  50552. }
  50553. },
  50554. side: {
  50555. height: math.unit(8.7, "feet"),
  50556. name: "Side",
  50557. image: {
  50558. source: "./media/characters/flicker-wisp/side.svg",
  50559. extra: 1841/1642,
  50560. bottom: 336/2177
  50561. },
  50562. default: true
  50563. },
  50564. maw: {
  50565. height: math.unit(3.35, "feet"),
  50566. name: "Maw",
  50567. image: {
  50568. source: "./media/characters/flicker-wisp/maw.svg",
  50569. extra: 2338/1506,
  50570. bottom: 0/2338
  50571. }
  50572. },
  50573. ovipositor: {
  50574. height: math.unit(4.95, "feet"),
  50575. name: "Ovipositor",
  50576. image: {
  50577. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50578. }
  50579. },
  50580. egg: {
  50581. height: math.unit(0.385, "feet"),
  50582. weight: math.unit(2, "lb"),
  50583. name: "Egg",
  50584. image: {
  50585. source: "./media/characters/flicker-wisp/egg.svg"
  50586. }
  50587. },
  50588. },
  50589. [
  50590. {
  50591. name: "Normal",
  50592. height: math.unit(8.7, "feet"),
  50593. default: true
  50594. },
  50595. ]
  50596. ))
  50597. characterMakers.push(() => makeCharacter(
  50598. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50599. {
  50600. side: {
  50601. height: math.unit(11, "feet"),
  50602. name: "Side",
  50603. image: {
  50604. source: "./media/characters/faefnul/side.svg",
  50605. extra: 1100/1007,
  50606. bottom: 0/1100
  50607. }
  50608. },
  50609. },
  50610. [
  50611. {
  50612. name: "Normal",
  50613. height: math.unit(11, "feet"),
  50614. default: true
  50615. },
  50616. ]
  50617. ))
  50618. characterMakers.push(() => makeCharacter(
  50619. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50620. {
  50621. front: {
  50622. height: math.unit(6 + 2/12, "feet"),
  50623. name: "Front",
  50624. image: {
  50625. source: "./media/characters/shady/front.svg",
  50626. extra: 502/461,
  50627. bottom: 9/511
  50628. }
  50629. },
  50630. kneeling: {
  50631. height: math.unit(4.6, "feet"),
  50632. name: "Kneeling",
  50633. image: {
  50634. source: "./media/characters/shady/kneeling.svg",
  50635. extra: 1328/1219,
  50636. bottom: 117/1445
  50637. }
  50638. },
  50639. maw: {
  50640. height: math.unit(2, "feet"),
  50641. name: "Maw",
  50642. image: {
  50643. source: "./media/characters/shady/maw.svg"
  50644. }
  50645. },
  50646. },
  50647. [
  50648. {
  50649. name: "Nano",
  50650. height: math.unit(1, "mm")
  50651. },
  50652. {
  50653. name: "Micro",
  50654. height: math.unit(12, "mm")
  50655. },
  50656. {
  50657. name: "Tiny",
  50658. height: math.unit(3, "inches")
  50659. },
  50660. {
  50661. name: "Normal",
  50662. height: math.unit(6 + 2/12, "feet"),
  50663. default: true
  50664. },
  50665. {
  50666. name: "Big",
  50667. height: math.unit(15, "feet")
  50668. },
  50669. {
  50670. name: "Macro",
  50671. height: math.unit(150, "feet")
  50672. },
  50673. {
  50674. name: "Titanic",
  50675. height: math.unit(500, "feet")
  50676. },
  50677. ]
  50678. ))
  50679. characterMakers.push(() => makeCharacter(
  50680. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50681. {
  50682. front: {
  50683. height: math.unit(12, "feet"),
  50684. name: "Front",
  50685. image: {
  50686. source: "./media/characters/fenrir/front.svg",
  50687. extra: 968/875,
  50688. bottom: 22/990
  50689. }
  50690. },
  50691. },
  50692. [
  50693. {
  50694. name: "Big",
  50695. height: math.unit(12, "feet"),
  50696. default: true
  50697. },
  50698. ]
  50699. ))
  50700. characterMakers.push(() => makeCharacter(
  50701. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50702. {
  50703. front: {
  50704. height: math.unit(5 + 4/12, "feet"),
  50705. name: "Front",
  50706. image: {
  50707. source: "./media/characters/makar/front.svg",
  50708. extra: 1181/1112,
  50709. bottom: 78/1259
  50710. }
  50711. },
  50712. },
  50713. [
  50714. {
  50715. name: "Normal",
  50716. height: math.unit(5 + 4/12, "feet"),
  50717. default: true
  50718. },
  50719. ]
  50720. ))
  50721. characterMakers.push(() => makeCharacter(
  50722. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50723. {
  50724. front: {
  50725. height: math.unit(5 + 7/12, "feet"),
  50726. name: "Front",
  50727. image: {
  50728. source: "./media/characters/callow/front.svg",
  50729. extra: 1482/1304,
  50730. bottom: 23/1505
  50731. }
  50732. },
  50733. back: {
  50734. height: math.unit(5 + 7/12, "feet"),
  50735. name: "Back",
  50736. image: {
  50737. source: "./media/characters/callow/back.svg",
  50738. extra: 1484/1296,
  50739. bottom: 25/1509
  50740. }
  50741. },
  50742. },
  50743. [
  50744. {
  50745. name: "Micro",
  50746. height: math.unit(3, "inches"),
  50747. default: true
  50748. },
  50749. {
  50750. name: "Normal",
  50751. height: math.unit(5 + 7/12, "feet")
  50752. },
  50753. ]
  50754. ))
  50755. characterMakers.push(() => makeCharacter(
  50756. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50757. {
  50758. front: {
  50759. height: math.unit(6 + 2/12, "feet"),
  50760. name: "Front",
  50761. image: {
  50762. source: "./media/characters/natel/front.svg",
  50763. extra: 1833/1692,
  50764. bottom: 166/1999
  50765. }
  50766. },
  50767. },
  50768. [
  50769. {
  50770. name: "Normal",
  50771. height: math.unit(6 + 2/12, "feet"),
  50772. default: true
  50773. },
  50774. ]
  50775. ))
  50776. characterMakers.push(() => makeCharacter(
  50777. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50778. {
  50779. front: {
  50780. height: math.unit(1.75, "meters"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/misu/front.svg",
  50784. extra: 1690/1558,
  50785. bottom: 234/1924
  50786. }
  50787. },
  50788. back: {
  50789. height: math.unit(1.75, "meters"),
  50790. name: "Back",
  50791. image: {
  50792. source: "./media/characters/misu/back.svg",
  50793. extra: 1762/1618,
  50794. bottom: 146/1908
  50795. }
  50796. },
  50797. frontNude: {
  50798. height: math.unit(1.75, "meters"),
  50799. name: "Front (Nude)",
  50800. image: {
  50801. source: "./media/characters/misu/front-nude.svg",
  50802. extra: 1690/1558,
  50803. bottom: 234/1924
  50804. }
  50805. },
  50806. backNude: {
  50807. height: math.unit(1.75, "meters"),
  50808. name: "Back (Nude)",
  50809. image: {
  50810. source: "./media/characters/misu/back-nude.svg",
  50811. extra: 1762/1618,
  50812. bottom: 146/1908
  50813. }
  50814. },
  50815. frontErect: {
  50816. height: math.unit(1.75, "meters"),
  50817. name: "Front (Erect)",
  50818. image: {
  50819. source: "./media/characters/misu/front-erect.svg",
  50820. extra: 1690/1558,
  50821. bottom: 234/1924
  50822. }
  50823. },
  50824. maw: {
  50825. height: math.unit(0.47, "meters"),
  50826. name: "Maw",
  50827. image: {
  50828. source: "./media/characters/misu/maw.svg"
  50829. }
  50830. },
  50831. head: {
  50832. height: math.unit(0.35, "meters"),
  50833. name: "Head",
  50834. image: {
  50835. source: "./media/characters/misu/head.svg"
  50836. }
  50837. },
  50838. rear: {
  50839. height: math.unit(0.47, "meters"),
  50840. name: "Rear",
  50841. image: {
  50842. source: "./media/characters/misu/rear.svg"
  50843. }
  50844. },
  50845. },
  50846. [
  50847. {
  50848. name: "Normal",
  50849. height: math.unit(1.75, "meters")
  50850. },
  50851. {
  50852. name: "Not good for the people",
  50853. height: math.unit(42, "meters")
  50854. },
  50855. {
  50856. name: "Not good for the neighborhood",
  50857. height: math.unit(135, "meters")
  50858. },
  50859. {
  50860. name: "Bit bigger problem",
  50861. height: math.unit(380, "meters"),
  50862. default: true
  50863. },
  50864. {
  50865. name: "Not good for the city",
  50866. height: math.unit(1.5, "km")
  50867. },
  50868. {
  50869. name: "Not good for the county",
  50870. height: math.unit(5.5, "km")
  50871. },
  50872. {
  50873. name: "Not good for the state",
  50874. height: math.unit(25, "km")
  50875. },
  50876. {
  50877. name: "Not good for the country",
  50878. height: math.unit(125, "km")
  50879. },
  50880. {
  50881. name: "Not good for the continent",
  50882. height: math.unit(2100, "km")
  50883. },
  50884. {
  50885. name: "Not good for the planet",
  50886. height: math.unit(35000, "km")
  50887. },
  50888. {
  50889. name: "Just no",
  50890. height: math.unit(8.5e18, "km")
  50891. },
  50892. ]
  50893. ))
  50894. characterMakers.push(() => makeCharacter(
  50895. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50896. {
  50897. front: {
  50898. height: math.unit(6.5, "feet"),
  50899. name: "Front",
  50900. image: {
  50901. source: "./media/characters/poppy/front.svg",
  50902. extra: 1878/1812,
  50903. bottom: 43/1921
  50904. }
  50905. },
  50906. feet: {
  50907. height: math.unit(1.06, "feet"),
  50908. name: "Feet",
  50909. image: {
  50910. source: "./media/characters/poppy/feet.svg",
  50911. extra: 1083/1083,
  50912. bottom: 87/1170
  50913. }
  50914. },
  50915. },
  50916. [
  50917. {
  50918. name: "Human",
  50919. height: math.unit(6.5, "feet")
  50920. },
  50921. {
  50922. name: "Default",
  50923. height: math.unit(300, "feet"),
  50924. default: true
  50925. },
  50926. {
  50927. name: "Huge",
  50928. height: math.unit(850, "feet")
  50929. },
  50930. {
  50931. name: "Mega",
  50932. height: math.unit(8000, "feet")
  50933. },
  50934. {
  50935. name: "Giga",
  50936. height: math.unit(300, "miles")
  50937. },
  50938. ]
  50939. ))
  50940. characterMakers.push(() => makeCharacter(
  50941. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50942. {
  50943. bipedal: {
  50944. height: math.unit(7, "feet"),
  50945. name: "Bipedal",
  50946. image: {
  50947. source: "./media/characters/zener/bipedal.svg",
  50948. extra: 874/805,
  50949. bottom: 109/983
  50950. }
  50951. },
  50952. quadrupedal: {
  50953. height: math.unit(4.64, "feet"),
  50954. name: "Quadrupedal",
  50955. image: {
  50956. source: "./media/characters/zener/quadrupedal.svg",
  50957. extra: 638/507,
  50958. bottom: 190/828
  50959. }
  50960. },
  50961. cock: {
  50962. height: math.unit(18, "inches"),
  50963. name: "Cock",
  50964. image: {
  50965. source: "./media/characters/zener/cock.svg"
  50966. }
  50967. },
  50968. },
  50969. [
  50970. {
  50971. name: "Normal",
  50972. height: math.unit(7, "feet"),
  50973. default: true
  50974. },
  50975. ]
  50976. ))
  50977. characterMakers.push(() => makeCharacter(
  50978. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50979. {
  50980. nude: {
  50981. height: math.unit(5 + 6/12, "feet"),
  50982. name: "Nude",
  50983. image: {
  50984. source: "./media/characters/charlie-dog/nude.svg",
  50985. extra: 768/734,
  50986. bottom: 26/794
  50987. }
  50988. },
  50989. dressed: {
  50990. height: math.unit(5 + 6/12, "feet"),
  50991. name: "Dressed",
  50992. image: {
  50993. source: "./media/characters/charlie-dog/dressed.svg",
  50994. extra: 768/734,
  50995. bottom: 26/794
  50996. }
  50997. },
  50998. },
  50999. [
  51000. {
  51001. name: "Normal",
  51002. height: math.unit(5 + 6/12, "feet"),
  51003. default: true
  51004. },
  51005. ]
  51006. ))
  51007. characterMakers.push(() => makeCharacter(
  51008. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  51009. {
  51010. front: {
  51011. height: math.unit(6 + 4/12, "feet"),
  51012. name: "Front",
  51013. image: {
  51014. source: "./media/characters/ir'istrasz/front.svg",
  51015. extra: 1014/977,
  51016. bottom: 65/1079
  51017. }
  51018. },
  51019. back: {
  51020. height: math.unit(6 + 4/12, "feet"),
  51021. name: "Back",
  51022. image: {
  51023. source: "./media/characters/ir'istrasz/back.svg",
  51024. extra: 1024/992,
  51025. bottom: 34/1058
  51026. }
  51027. },
  51028. },
  51029. [
  51030. {
  51031. name: "Normal",
  51032. height: math.unit(6 + 4/12, "feet"),
  51033. default: true
  51034. },
  51035. ]
  51036. ))
  51037. characterMakers.push(() => makeCharacter(
  51038. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  51039. {
  51040. front: {
  51041. height: math.unit(5 + 8/12, "feet"),
  51042. name: "Front",
  51043. image: {
  51044. source: "./media/characters/dee-ditto/front.svg",
  51045. extra: 1874/1785,
  51046. bottom: 68/1942
  51047. }
  51048. },
  51049. back: {
  51050. height: math.unit(5 + 8/12, "feet"),
  51051. name: "Back",
  51052. image: {
  51053. source: "./media/characters/dee-ditto/back.svg",
  51054. extra: 1870/1783,
  51055. bottom: 77/1947
  51056. }
  51057. },
  51058. },
  51059. [
  51060. {
  51061. name: "Normal",
  51062. height: math.unit(5 + 8/12, "feet"),
  51063. default: true
  51064. },
  51065. ]
  51066. ))
  51067. characterMakers.push(() => makeCharacter(
  51068. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  51069. {
  51070. front: {
  51071. height: math.unit(7 + 6/12, "feet"),
  51072. name: "Front",
  51073. image: {
  51074. source: "./media/characters/fey/front.svg",
  51075. extra: 995/979,
  51076. bottom: 30/1025
  51077. }
  51078. },
  51079. back: {
  51080. height: math.unit(7 + 6/12, "feet"),
  51081. name: "Back",
  51082. image: {
  51083. source: "./media/characters/fey/back.svg",
  51084. extra: 1079/1008,
  51085. bottom: 5/1084
  51086. }
  51087. },
  51088. dressed: {
  51089. height: math.unit(7 + 6/12, "feet"),
  51090. name: "Dressed",
  51091. image: {
  51092. source: "./media/characters/fey/dressed.svg",
  51093. extra: 995/979,
  51094. bottom: 30/1025
  51095. }
  51096. },
  51097. },
  51098. [
  51099. {
  51100. name: "Normal",
  51101. height: math.unit(7 + 6/12, "feet"),
  51102. default: true
  51103. },
  51104. ]
  51105. ))
  51106. characterMakers.push(() => makeCharacter(
  51107. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  51108. {
  51109. standing: {
  51110. height: math.unit(17, "feet"),
  51111. name: "Standing",
  51112. image: {
  51113. source: "./media/characters/aster/standing.svg",
  51114. extra: 1798/1598,
  51115. bottom: 117/1915
  51116. }
  51117. },
  51118. },
  51119. [
  51120. {
  51121. name: "Normal",
  51122. height: math.unit(17, "feet"),
  51123. default: true
  51124. },
  51125. {
  51126. name: "Homewrecker",
  51127. height: math.unit(95, "feet")
  51128. },
  51129. {
  51130. name: "Planet Devourer",
  51131. height: math.unit(1008000, "miles")
  51132. },
  51133. ]
  51134. ))
  51135. characterMakers.push(() => makeCharacter(
  51136. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  51137. {
  51138. front: {
  51139. height: math.unit(6 + 5/12, "feet"),
  51140. weight: math.unit(265, "lb"),
  51141. name: "Front",
  51142. image: {
  51143. source: "./media/characters/devon-childs/front.svg",
  51144. extra: 1795/1721,
  51145. bottom: 41/1836
  51146. }
  51147. },
  51148. side: {
  51149. height: math.unit(6 + 5/12, "feet"),
  51150. weight: math.unit(265, "lb"),
  51151. name: "Side",
  51152. image: {
  51153. source: "./media/characters/devon-childs/side.svg",
  51154. extra: 1812/1738,
  51155. bottom: 30/1842
  51156. }
  51157. },
  51158. back: {
  51159. height: math.unit(6 + 5/12, "feet"),
  51160. weight: math.unit(265, "lb"),
  51161. name: "Back",
  51162. image: {
  51163. source: "./media/characters/devon-childs/back.svg",
  51164. extra: 1808/1735,
  51165. bottom: 23/1831
  51166. }
  51167. },
  51168. hand: {
  51169. height: math.unit(1.464, "feet"),
  51170. name: "Hand",
  51171. image: {
  51172. source: "./media/characters/devon-childs/hand.svg"
  51173. }
  51174. },
  51175. foot: {
  51176. height: math.unit(1.6, "feet"),
  51177. name: "Foot",
  51178. image: {
  51179. source: "./media/characters/devon-childs/foot.svg"
  51180. }
  51181. },
  51182. },
  51183. [
  51184. {
  51185. name: "Micro",
  51186. height: math.unit(7, "cm")
  51187. },
  51188. {
  51189. name: "Normal",
  51190. height: math.unit(6 + 5/12, "feet"),
  51191. default: true
  51192. },
  51193. {
  51194. name: "Macro",
  51195. height: math.unit(154, "feet")
  51196. },
  51197. ]
  51198. ))
  51199. characterMakers.push(() => makeCharacter(
  51200. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51201. {
  51202. front: {
  51203. height: math.unit(6, "feet"),
  51204. weight: math.unit(180, "lb"),
  51205. name: "Front",
  51206. image: {
  51207. source: "./media/characters/lydemox-vir/front.svg",
  51208. extra: 1632/1435,
  51209. bottom: 58/1690
  51210. }
  51211. },
  51212. frontSFW: {
  51213. height: math.unit(6, "feet"),
  51214. weight: math.unit(180, "lb"),
  51215. name: "Front (SFW)",
  51216. image: {
  51217. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51218. extra: 1632/1435,
  51219. bottom: 58/1690
  51220. }
  51221. },
  51222. back: {
  51223. height: math.unit(6, "feet"),
  51224. weight: math.unit(180, "lb"),
  51225. name: "Back",
  51226. image: {
  51227. source: "./media/characters/lydemox-vir/back.svg",
  51228. extra: 1593/1408,
  51229. bottom: 31/1624
  51230. }
  51231. },
  51232. paw: {
  51233. height: math.unit(1.85, "feet"),
  51234. name: "Paw",
  51235. image: {
  51236. source: "./media/characters/lydemox-vir/paw.svg"
  51237. }
  51238. },
  51239. dick: {
  51240. height: math.unit(1.8, "feet"),
  51241. name: "Dick",
  51242. image: {
  51243. source: "./media/characters/lydemox-vir/dick.svg"
  51244. }
  51245. },
  51246. },
  51247. [
  51248. {
  51249. name: "Macro",
  51250. height: math.unit(100, "feet"),
  51251. default: true
  51252. },
  51253. {
  51254. name: "Teramacro",
  51255. height: math.unit(1, "earth")
  51256. },
  51257. {
  51258. name: "Planetary",
  51259. height: math.unit(20, "earths")
  51260. },
  51261. ]
  51262. ))
  51263. characterMakers.push(() => makeCharacter(
  51264. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51265. {
  51266. front: {
  51267. height: math.unit(15 + 8/12, "feet"),
  51268. weight: math.unit(1237, "kg"),
  51269. name: "Front",
  51270. image: {
  51271. source: "./media/characters/mia/front.svg",
  51272. extra: 1573/1446,
  51273. bottom: 58/1631
  51274. }
  51275. },
  51276. },
  51277. [
  51278. {
  51279. name: "Small",
  51280. height: math.unit(9 + 5/12, "feet")
  51281. },
  51282. {
  51283. name: "Normal",
  51284. height: math.unit(15 + 8/12, "feet"),
  51285. default: true
  51286. },
  51287. ]
  51288. ))
  51289. characterMakers.push(() => makeCharacter(
  51290. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51291. {
  51292. front: {
  51293. height: math.unit(10 + 6/12, "feet"),
  51294. weight: math.unit(1.3, "tons"),
  51295. name: "Front",
  51296. image: {
  51297. source: "./media/characters/mr-graves/front.svg",
  51298. extra: 1779/1695,
  51299. bottom: 198/1977
  51300. }
  51301. },
  51302. },
  51303. [
  51304. {
  51305. name: "Normal",
  51306. height: math.unit(10 + 6 /12, "feet"),
  51307. default: true
  51308. },
  51309. ]
  51310. ))
  51311. characterMakers.push(() => makeCharacter(
  51312. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51313. {
  51314. dressedFront: {
  51315. height: math.unit(5 + 8/12, "feet"),
  51316. weight: math.unit(125, "lb"),
  51317. name: "Dressed (Front)",
  51318. image: {
  51319. source: "./media/characters/jess/dressed-front.svg",
  51320. extra: 1176/1152,
  51321. bottom: 42/1218
  51322. }
  51323. },
  51324. dressedSide: {
  51325. height: math.unit(5 + 8/12, "feet"),
  51326. weight: math.unit(125, "lb"),
  51327. name: "Dressed (Side)",
  51328. image: {
  51329. source: "./media/characters/jess/dressed-side.svg",
  51330. extra: 1204/1190,
  51331. bottom: 6/1210
  51332. }
  51333. },
  51334. nudeFront: {
  51335. height: math.unit(5 + 8/12, "feet"),
  51336. weight: math.unit(125, "lb"),
  51337. name: "Nude (Front)",
  51338. image: {
  51339. source: "./media/characters/jess/nude-front.svg",
  51340. extra: 1176/1152,
  51341. bottom: 42/1218
  51342. }
  51343. },
  51344. nudeSide: {
  51345. height: math.unit(5 + 8/12, "feet"),
  51346. weight: math.unit(125, "lb"),
  51347. name: "Nude (Side)",
  51348. image: {
  51349. source: "./media/characters/jess/nude-side.svg",
  51350. extra: 1204/1190,
  51351. bottom: 6/1210
  51352. }
  51353. },
  51354. organsFront: {
  51355. height: math.unit(2.83799342105, "feet"),
  51356. name: "Organs (Front)",
  51357. image: {
  51358. source: "./media/characters/jess/organs-front.svg"
  51359. }
  51360. },
  51361. organsSide: {
  51362. height: math.unit(2.64225290474, "feet"),
  51363. name: "Organs (Side)",
  51364. image: {
  51365. source: "./media/characters/jess/organs-side.svg"
  51366. }
  51367. },
  51368. digestiveTractFront: {
  51369. height: math.unit(2.8106580871, "feet"),
  51370. name: "Digestive Tract (Front)",
  51371. image: {
  51372. source: "./media/characters/jess/digestive-tract-front.svg"
  51373. }
  51374. },
  51375. digestiveTractSide: {
  51376. height: math.unit(2.54365045014, "feet"),
  51377. name: "Digestive Tract (Side)",
  51378. image: {
  51379. source: "./media/characters/jess/digestive-tract-side.svg"
  51380. }
  51381. },
  51382. respiratorySystemFront: {
  51383. height: math.unit(1.11196233456, "feet"),
  51384. name: "Respiratory System (Front)",
  51385. image: {
  51386. source: "./media/characters/jess/respiratory-system-front.svg"
  51387. }
  51388. },
  51389. respiratorySystemSide: {
  51390. height: math.unit(0.89327966297, "feet"),
  51391. name: "Respiratory System (Side)",
  51392. image: {
  51393. source: "./media/characters/jess/respiratory-system-side.svg"
  51394. }
  51395. },
  51396. urinaryTractFront: {
  51397. height: math.unit(1.16126356186, "feet"),
  51398. name: "Urinary Tract (Front)",
  51399. image: {
  51400. source: "./media/characters/jess/urinary-tract-front.svg"
  51401. }
  51402. },
  51403. urinaryTractSide: {
  51404. height: math.unit(1.20910039627, "feet"),
  51405. name: "Urinary Tract (Side)",
  51406. image: {
  51407. source: "./media/characters/jess/urinary-tract-side.svg"
  51408. }
  51409. },
  51410. reproductiveOrgansFront: {
  51411. height: math.unit(0.48422591566, "feet"),
  51412. name: "Reproductive Organs (Front)",
  51413. image: {
  51414. source: "./media/characters/jess/reproductive-organs-front.svg"
  51415. }
  51416. },
  51417. reproductiveOrgansSide: {
  51418. height: math.unit(0.61553314481, "feet"),
  51419. name: "Reproductive Organs (Side)",
  51420. image: {
  51421. source: "./media/characters/jess/reproductive-organs-side.svg"
  51422. }
  51423. },
  51424. breastsFront: {
  51425. height: math.unit(0.47690395121, "feet"),
  51426. name: "Breasts (Front)",
  51427. image: {
  51428. source: "./media/characters/jess/breasts-front.svg"
  51429. }
  51430. },
  51431. breastsSide: {
  51432. height: math.unit(0.30556998307, "feet"),
  51433. name: "Breasts (Side)",
  51434. image: {
  51435. source: "./media/characters/jess/breasts-side.svg"
  51436. }
  51437. },
  51438. heartFront: {
  51439. height: math.unit(0.53011022622, "feet"),
  51440. name: "Heart (Front)",
  51441. image: {
  51442. source: "./media/characters/jess/heart-front.svg"
  51443. }
  51444. },
  51445. heartSide: {
  51446. height: math.unit(0.51790695213, "feet"),
  51447. name: "Heart (Side)",
  51448. image: {
  51449. source: "./media/characters/jess/heart-side.svg"
  51450. }
  51451. },
  51452. earsAndNoseFront: {
  51453. height: math.unit(0.29385483995, "feet"),
  51454. name: "Ears and Nose (Front)",
  51455. image: {
  51456. source: "./media/characters/jess/ears-and-nose-front.svg"
  51457. }
  51458. },
  51459. earsAndNoseSide: {
  51460. height: math.unit(0.18109658741, "feet"),
  51461. name: "Ears and Nose (Side)",
  51462. image: {
  51463. source: "./media/characters/jess/ears-and-nose-side.svg"
  51464. }
  51465. },
  51466. },
  51467. [
  51468. {
  51469. name: "Normal",
  51470. height: math.unit(5 + 8/12, "feet"),
  51471. default: true
  51472. },
  51473. ]
  51474. ))
  51475. characterMakers.push(() => makeCharacter(
  51476. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51477. {
  51478. front: {
  51479. height: math.unit(6, "feet"),
  51480. weight: math.unit(6.64467e-7, "grams"),
  51481. name: "Front",
  51482. image: {
  51483. source: "./media/characters/wimpering/front.svg",
  51484. extra: 597/587,
  51485. bottom: 34/631
  51486. }
  51487. },
  51488. },
  51489. [
  51490. {
  51491. name: "Micro",
  51492. height: math.unit(0.4, "mm"),
  51493. default: true
  51494. },
  51495. ]
  51496. ))
  51497. characterMakers.push(() => makeCharacter(
  51498. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51499. {
  51500. front: {
  51501. height: math.unit(5 + 2/12, "feet"),
  51502. weight: math.unit(110, "lb"),
  51503. name: "Front",
  51504. image: {
  51505. source: "./media/characters/keltre/front.svg",
  51506. extra: 1099/1057,
  51507. bottom: 22/1121
  51508. }
  51509. },
  51510. back: {
  51511. height: math.unit(5 + 2/12, "feet"),
  51512. weight: math.unit(110, "lb"),
  51513. name: "Back",
  51514. image: {
  51515. source: "./media/characters/keltre/back.svg",
  51516. extra: 1095/1053,
  51517. bottom: 17/1112
  51518. }
  51519. },
  51520. dressed: {
  51521. height: math.unit(5 + 2/12, "feet"),
  51522. weight: math.unit(110, "lb"),
  51523. name: "Dressed",
  51524. image: {
  51525. source: "./media/characters/keltre/dressed.svg",
  51526. extra: 1099/1057,
  51527. bottom: 22/1121
  51528. }
  51529. },
  51530. winter: {
  51531. height: math.unit(5 + 2/12, "feet"),
  51532. weight: math.unit(110, "lb"),
  51533. name: "Winter",
  51534. image: {
  51535. source: "./media/characters/keltre/winter.svg",
  51536. extra: 1099/1057,
  51537. bottom: 22/1121
  51538. }
  51539. },
  51540. head: {
  51541. height: math.unit(1.61 * 0.86, "feet"),
  51542. name: "Head",
  51543. image: {
  51544. source: "./media/characters/keltre/head.svg",
  51545. extra: 534/421,
  51546. bottom: 0/534
  51547. }
  51548. },
  51549. hand: {
  51550. height: math.unit(1.3 * 0.86, "feet"),
  51551. name: "Hand",
  51552. image: {
  51553. source: "./media/characters/keltre/hand.svg"
  51554. }
  51555. },
  51556. foot: {
  51557. height: math.unit(1.8 * 0.86, "feet"),
  51558. name: "Foot",
  51559. image: {
  51560. source: "./media/characters/keltre/foot.svg"
  51561. }
  51562. },
  51563. },
  51564. [
  51565. {
  51566. name: "Fine",
  51567. height: math.unit(1, "inch")
  51568. },
  51569. {
  51570. name: "Dimnutive",
  51571. height: math.unit(4, "inches")
  51572. },
  51573. {
  51574. name: "Tiny",
  51575. height: math.unit(1, "foot")
  51576. },
  51577. {
  51578. name: "Small",
  51579. height: math.unit(3, "feet")
  51580. },
  51581. {
  51582. name: "Normal",
  51583. height: math.unit(5 + 2/12, "feet"),
  51584. default: true
  51585. },
  51586. ]
  51587. ))
  51588. characterMakers.push(() => makeCharacter(
  51589. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51590. {
  51591. front: {
  51592. height: math.unit(6 + 2/12, "feet"),
  51593. name: "Front",
  51594. image: {
  51595. source: "./media/characters/nox/front.svg",
  51596. extra: 1917/1830,
  51597. bottom: 74/1991
  51598. }
  51599. },
  51600. back: {
  51601. height: math.unit(6 + 2/12, "feet"),
  51602. name: "Back",
  51603. image: {
  51604. source: "./media/characters/nox/back.svg",
  51605. extra: 1896/1815,
  51606. bottom: 21/1917
  51607. }
  51608. },
  51609. head: {
  51610. height: math.unit(1.1, "feet"),
  51611. name: "Head",
  51612. image: {
  51613. source: "./media/characters/nox/head.svg",
  51614. extra: 874/704,
  51615. bottom: 0/874
  51616. }
  51617. },
  51618. tattoo: {
  51619. height: math.unit(0.729, "feet"),
  51620. name: "Tattoo",
  51621. image: {
  51622. source: "./media/characters/nox/tattoo.svg"
  51623. }
  51624. },
  51625. },
  51626. [
  51627. {
  51628. name: "Normal",
  51629. height: math.unit(6 + 2/12, "feet")
  51630. },
  51631. {
  51632. name: "Gigamacro",
  51633. height: math.unit(2, "earths"),
  51634. default: true
  51635. },
  51636. {
  51637. name: "Cosmic",
  51638. height: math.unit(867, "yottameters")
  51639. },
  51640. ]
  51641. ))
  51642. characterMakers.push(() => makeCharacter(
  51643. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51644. {
  51645. front: {
  51646. height: math.unit(6, "feet"),
  51647. weight: math.unit(150, "lb"),
  51648. name: "Front",
  51649. image: {
  51650. source: "./media/characters/caspian/front.svg",
  51651. extra: 1443/1359,
  51652. bottom: 0/1443
  51653. }
  51654. },
  51655. back: {
  51656. height: math.unit(6, "feet"),
  51657. weight: math.unit(150, "lb"),
  51658. name: "Back",
  51659. image: {
  51660. source: "./media/characters/caspian/back.svg",
  51661. extra: 1379/1309,
  51662. bottom: 0/1379
  51663. }
  51664. },
  51665. head: {
  51666. height: math.unit(0.9, "feet"),
  51667. name: "Head",
  51668. image: {
  51669. source: "./media/characters/caspian/head.svg",
  51670. extra: 692/492,
  51671. bottom: 0/692
  51672. }
  51673. },
  51674. headAlt: {
  51675. height: math.unit(0.95, "feet"),
  51676. name: "Head (Alt)",
  51677. image: {
  51678. source: "./media/characters/caspian/head-alt.svg",
  51679. extra: 668/508,
  51680. bottom: 0/668
  51681. }
  51682. },
  51683. hand: {
  51684. height: math.unit(0.8, "feet"),
  51685. name: "Hand",
  51686. image: {
  51687. source: "./media/characters/caspian/hand.svg"
  51688. }
  51689. },
  51690. paw: {
  51691. height: math.unit(0.95, "feet"),
  51692. name: "Paw",
  51693. image: {
  51694. source: "./media/characters/caspian/paw.svg"
  51695. }
  51696. },
  51697. },
  51698. [
  51699. {
  51700. name: "Normal",
  51701. height: math.unit(162, "feet"),
  51702. default: true
  51703. },
  51704. ]
  51705. ))
  51706. characterMakers.push(() => makeCharacter(
  51707. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51708. {
  51709. front: {
  51710. height: math.unit(6, "feet"),
  51711. name: "Front",
  51712. image: {
  51713. source: "./media/characters/myra-aisling/front.svg",
  51714. extra: 1268/1166,
  51715. bottom: 73/1341
  51716. }
  51717. },
  51718. back: {
  51719. height: math.unit(6, "feet"),
  51720. name: "Back",
  51721. image: {
  51722. source: "./media/characters/myra-aisling/back.svg",
  51723. extra: 1249/1149,
  51724. bottom: 79/1328
  51725. }
  51726. },
  51727. dressed: {
  51728. height: math.unit(6, "feet"),
  51729. name: "Dressed",
  51730. image: {
  51731. source: "./media/characters/myra-aisling/dressed.svg",
  51732. extra: 1290/1189,
  51733. bottom: 47/1337
  51734. }
  51735. },
  51736. hand: {
  51737. height: math.unit(1.1, "feet"),
  51738. name: "Hand",
  51739. image: {
  51740. source: "./media/characters/myra-aisling/hand.svg"
  51741. }
  51742. },
  51743. paw: {
  51744. height: math.unit(1.23, "feet"),
  51745. name: "Paw",
  51746. image: {
  51747. source: "./media/characters/myra-aisling/paw.svg"
  51748. }
  51749. },
  51750. },
  51751. [
  51752. {
  51753. name: "Normal",
  51754. height: math.unit(160, "feet"),
  51755. default: true
  51756. },
  51757. ]
  51758. ))
  51759. characterMakers.push(() => makeCharacter(
  51760. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51761. {
  51762. front: {
  51763. height: math.unit(6, "feet"),
  51764. name: "Front",
  51765. image: {
  51766. source: "./media/characters/tenley-sidero/front.svg",
  51767. extra: 1365/1276,
  51768. bottom: 47/1412
  51769. }
  51770. },
  51771. back: {
  51772. height: math.unit(6, "feet"),
  51773. name: "Back",
  51774. image: {
  51775. source: "./media/characters/tenley-sidero/back.svg",
  51776. extra: 1383/1283,
  51777. bottom: 35/1418
  51778. }
  51779. },
  51780. dressed: {
  51781. height: math.unit(6, "feet"),
  51782. name: "Dressed",
  51783. image: {
  51784. source: "./media/characters/tenley-sidero/dressed.svg",
  51785. extra: 1364/1275,
  51786. bottom: 42/1406
  51787. }
  51788. },
  51789. head: {
  51790. height: math.unit(1.47, "feet"),
  51791. name: "Head",
  51792. image: {
  51793. source: "./media/characters/tenley-sidero/head.svg",
  51794. extra: 610/490,
  51795. bottom: 0/610
  51796. }
  51797. },
  51798. },
  51799. [
  51800. {
  51801. name: "Normal",
  51802. height: math.unit(154, "feet"),
  51803. default: true
  51804. },
  51805. ]
  51806. ))
  51807. characterMakers.push(() => makeCharacter(
  51808. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51809. {
  51810. front: {
  51811. height: math.unit(5, "inches"),
  51812. name: "Front",
  51813. image: {
  51814. source: "./media/characters/mallory/front.svg",
  51815. extra: 1919/1678,
  51816. bottom: 29/1948
  51817. }
  51818. },
  51819. hand: {
  51820. height: math.unit(0.73, "inches"),
  51821. name: "Hand",
  51822. image: {
  51823. source: "./media/characters/mallory/hand.svg"
  51824. }
  51825. },
  51826. paw: {
  51827. height: math.unit(0.68, "inches"),
  51828. name: "Paw",
  51829. image: {
  51830. source: "./media/characters/mallory/paw.svg"
  51831. }
  51832. },
  51833. },
  51834. [
  51835. {
  51836. name: "Small",
  51837. height: math.unit(5, "inches"),
  51838. default: true
  51839. },
  51840. ]
  51841. ))
  51842. characterMakers.push(() => makeCharacter(
  51843. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51844. {
  51845. naked: {
  51846. height: math.unit(6, "feet"),
  51847. name: "Naked",
  51848. image: {
  51849. source: "./media/characters/mab/naked.svg",
  51850. extra: 1855/1757,
  51851. bottom: 208/2063
  51852. }
  51853. },
  51854. outside: {
  51855. height: math.unit(6, "feet"),
  51856. name: "Outside",
  51857. image: {
  51858. source: "./media/characters/mab/outside.svg",
  51859. extra: 1855/1757,
  51860. bottom: 208/2063
  51861. }
  51862. },
  51863. party: {
  51864. height: math.unit(6, "feet"),
  51865. name: "Party",
  51866. image: {
  51867. source: "./media/characters/mab/party.svg",
  51868. extra: 1855/1757,
  51869. bottom: 208/2063
  51870. }
  51871. },
  51872. },
  51873. [
  51874. {
  51875. name: "Normal",
  51876. height: math.unit(165, "feet"),
  51877. default: true
  51878. },
  51879. ]
  51880. ))
  51881. characterMakers.push(() => makeCharacter(
  51882. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51883. {
  51884. feral: {
  51885. height: math.unit(12, "feet"),
  51886. weight: math.unit(20000, "lb"),
  51887. name: "Side",
  51888. image: {
  51889. source: "./media/characters/winter/feral.svg",
  51890. extra: 1286/943,
  51891. bottom: 112/1398
  51892. },
  51893. form: "feral",
  51894. default: true
  51895. },
  51896. feralNsfw: {
  51897. height: math.unit(12, "feet"),
  51898. weight: math.unit(20000, "lb"),
  51899. name: "Side (NSFW)",
  51900. image: {
  51901. source: "./media/characters/winter/feral-nsfw.svg",
  51902. extra: 1286/943,
  51903. bottom: 112/1398
  51904. },
  51905. form: "feral"
  51906. },
  51907. dick: {
  51908. height: math.unit(3.79, "feet"),
  51909. name: "Dick",
  51910. image: {
  51911. source: "./media/characters/winter/dick.svg"
  51912. },
  51913. form: "feral"
  51914. },
  51915. anthro: {
  51916. height: math.unit(12, "feet"),
  51917. weight: math.unit(10, "tons"),
  51918. name: "Anthro",
  51919. image: {
  51920. source: "./media/characters/winter/anthro.svg",
  51921. extra: 1701/1553,
  51922. bottom: 64/1765
  51923. },
  51924. form: "anthro",
  51925. default: true
  51926. },
  51927. },
  51928. [
  51929. {
  51930. name: "Big",
  51931. height: math.unit(12, "feet"),
  51932. default: true,
  51933. form: "feral"
  51934. },
  51935. {
  51936. name: "Big",
  51937. height: math.unit(12, "feet"),
  51938. default: true,
  51939. form: "anthro"
  51940. },
  51941. ],
  51942. {
  51943. "feral": {
  51944. name: "Feral",
  51945. default: true
  51946. },
  51947. "anthro": {
  51948. name: "Anthro"
  51949. }
  51950. }
  51951. ))
  51952. characterMakers.push(() => makeCharacter(
  51953. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51954. {
  51955. front: {
  51956. height: math.unit(4.1, "inches"),
  51957. name: "Front",
  51958. image: {
  51959. source: "./media/characters/alto/front.svg",
  51960. extra: 736/627,
  51961. bottom: 90/826
  51962. }
  51963. },
  51964. },
  51965. [
  51966. {
  51967. name: "Normal",
  51968. height: math.unit(4.1, "inches"),
  51969. default: true
  51970. },
  51971. ]
  51972. ))
  51973. characterMakers.push(() => makeCharacter(
  51974. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51975. {
  51976. sitting: {
  51977. height: math.unit(3, "feet"),
  51978. name: "Sitting",
  51979. image: {
  51980. source: "./media/characters/ratstrid-v/sitting.svg",
  51981. extra: 355/310,
  51982. bottom: 136/491
  51983. }
  51984. },
  51985. },
  51986. [
  51987. {
  51988. name: "Normal",
  51989. height: math.unit(3, "feet"),
  51990. default: true
  51991. },
  51992. ]
  51993. ))
  51994. characterMakers.push(() => makeCharacter(
  51995. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51996. {
  51997. back: {
  51998. height: math.unit(6, "feet"),
  51999. weight: math.unit(450, "lb"),
  52000. name: "Back",
  52001. image: {
  52002. source: "./media/characters/siz/back.svg",
  52003. extra: 1449/1274,
  52004. bottom: 13/1462
  52005. }
  52006. },
  52007. },
  52008. [
  52009. {
  52010. name: "Smallest",
  52011. height: math.unit(18 + 3/12, "feet")
  52012. },
  52013. {
  52014. name: "Modest",
  52015. height: math.unit(56 + 8/12, "feet"),
  52016. default: true
  52017. },
  52018. {
  52019. name: "Largest",
  52020. height: math.unit(3590, "feet")
  52021. },
  52022. ]
  52023. ))
  52024. characterMakers.push(() => makeCharacter(
  52025. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  52026. {
  52027. front: {
  52028. height: math.unit(5 + 9/12, "feet"),
  52029. weight: math.unit(150, "lb"),
  52030. name: "Front",
  52031. image: {
  52032. source: "./media/characters/ven/front.svg",
  52033. extra: 1372/1320,
  52034. bottom: 73/1445
  52035. }
  52036. },
  52037. side: {
  52038. height: math.unit(5 + 9/12, "feet"),
  52039. weight: math.unit(1150, "lb"),
  52040. name: "Side",
  52041. image: {
  52042. source: "./media/characters/ven/side.svg",
  52043. extra: 1119/1070,
  52044. bottom: 42/1161
  52045. },
  52046. default: true
  52047. },
  52048. },
  52049. [
  52050. {
  52051. name: "Normal",
  52052. height: math.unit(5 + 9/12, "feet"),
  52053. default: true
  52054. },
  52055. ]
  52056. ))
  52057. characterMakers.push(() => makeCharacter(
  52058. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  52059. {
  52060. front: {
  52061. height: math.unit(12, "feet"),
  52062. weight: math.unit(1000, "kg"),
  52063. name: "Front",
  52064. image: {
  52065. source: "./media/characters/maple/front.svg",
  52066. extra: 1193/1081,
  52067. bottom: 22/1215
  52068. }
  52069. },
  52070. },
  52071. [
  52072. {
  52073. name: "Compressed",
  52074. height: math.unit(7, "feet")
  52075. },
  52076. {
  52077. name: "Normal",
  52078. height: math.unit(12, "feet"),
  52079. default: true
  52080. },
  52081. ]
  52082. ))
  52083. characterMakers.push(() => makeCharacter(
  52084. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  52085. {
  52086. front: {
  52087. height: math.unit(9, "feet"),
  52088. weight: math.unit(1500, "lb"),
  52089. name: "Front",
  52090. image: {
  52091. source: "./media/characters/nora/front.svg",
  52092. extra: 1348/1286,
  52093. bottom: 218/1566
  52094. }
  52095. },
  52096. erect: {
  52097. height: math.unit(9, "feet"),
  52098. weight: math.unit(11500, "lb"),
  52099. name: "Erect",
  52100. image: {
  52101. source: "./media/characters/nora/erect.svg",
  52102. extra: 1488/1433,
  52103. bottom: 133/1621
  52104. }
  52105. },
  52106. },
  52107. [
  52108. {
  52109. name: "Normal",
  52110. height: math.unit(9, "feet"),
  52111. default: true
  52112. },
  52113. ]
  52114. ))
  52115. characterMakers.push(() => makeCharacter(
  52116. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  52117. {
  52118. front: {
  52119. height: math.unit(25, "feet"),
  52120. weight: math.unit(27500, "lb"),
  52121. name: "Front",
  52122. image: {
  52123. source: "./media/characters/north-caudin/front.svg",
  52124. extra: 1184/1082,
  52125. bottom: 23/1207
  52126. }
  52127. },
  52128. },
  52129. [
  52130. {
  52131. name: "Compressed",
  52132. height: math.unit(10, "feet")
  52133. },
  52134. {
  52135. name: "Normal",
  52136. height: math.unit(25, "feet"),
  52137. default: true
  52138. },
  52139. ]
  52140. ))
  52141. characterMakers.push(() => makeCharacter(
  52142. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  52143. {
  52144. front: {
  52145. height: math.unit(9, "feet"),
  52146. weight: math.unit(1250, "lb"),
  52147. name: "Front",
  52148. image: {
  52149. source: "./media/characters/merrian/front.svg",
  52150. extra: 2393/2304,
  52151. bottom: 40/2433
  52152. }
  52153. },
  52154. },
  52155. [
  52156. {
  52157. name: "Normal",
  52158. height: math.unit(9, "feet"),
  52159. default: true
  52160. },
  52161. ]
  52162. ))
  52163. characterMakers.push(() => makeCharacter(
  52164. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  52165. {
  52166. front: {
  52167. height: math.unit(9, "feet"),
  52168. weight: math.unit(1000, "lb"),
  52169. name: "Front",
  52170. image: {
  52171. source: "./media/characters/hazel/front.svg",
  52172. extra: 2351/2298,
  52173. bottom: 38/2389
  52174. }
  52175. },
  52176. },
  52177. [
  52178. {
  52179. name: "Normal",
  52180. height: math.unit(9, "feet"),
  52181. default: true
  52182. },
  52183. ]
  52184. ))
  52185. characterMakers.push(() => makeCharacter(
  52186. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52187. {
  52188. front: {
  52189. height: math.unit(13, "feet"),
  52190. weight: math.unit(3200, "lb"),
  52191. name: "Front",
  52192. image: {
  52193. source: "./media/characters/emma/front.svg",
  52194. extra: 2263/2029,
  52195. bottom: 68/2331
  52196. }
  52197. },
  52198. },
  52199. [
  52200. {
  52201. name: "Normal",
  52202. height: math.unit(13, "feet"),
  52203. default: true
  52204. },
  52205. ]
  52206. ))
  52207. characterMakers.push(() => makeCharacter(
  52208. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52209. {
  52210. front: {
  52211. height: math.unit(11 + 9/12, "feet"),
  52212. weight: math.unit(2500, "lb"),
  52213. name: "Front",
  52214. image: {
  52215. source: "./media/characters/ilumina/front.svg",
  52216. extra: 2248/2209,
  52217. bottom: 164/2412
  52218. }
  52219. },
  52220. },
  52221. [
  52222. {
  52223. name: "Normal",
  52224. height: math.unit(11 + 9/12, "feet"),
  52225. default: true
  52226. },
  52227. ]
  52228. ))
  52229. characterMakers.push(() => makeCharacter(
  52230. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52231. {
  52232. front: {
  52233. height: math.unit(8 + 10/12, "feet"),
  52234. weight: math.unit(1350, "lb"),
  52235. name: "Front",
  52236. image: {
  52237. source: "./media/characters/moonshine/front.svg",
  52238. extra: 2395/2288,
  52239. bottom: 40/2435
  52240. }
  52241. },
  52242. },
  52243. [
  52244. {
  52245. name: "Normal",
  52246. height: math.unit(8 + 10/12, "feet"),
  52247. default: true
  52248. },
  52249. ]
  52250. ))
  52251. characterMakers.push(() => makeCharacter(
  52252. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52253. {
  52254. front: {
  52255. height: math.unit(14, "feet"),
  52256. weight: math.unit(3400, "lb"),
  52257. name: "Front",
  52258. image: {
  52259. source: "./media/characters/aletia/front.svg",
  52260. extra: 1185/1052,
  52261. bottom: 21/1206
  52262. }
  52263. },
  52264. },
  52265. [
  52266. {
  52267. name: "Compressed",
  52268. height: math.unit(8, "feet")
  52269. },
  52270. {
  52271. name: "Normal",
  52272. height: math.unit(14, "feet"),
  52273. default: true
  52274. },
  52275. ]
  52276. ))
  52277. characterMakers.push(() => makeCharacter(
  52278. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52279. {
  52280. front: {
  52281. height: math.unit(17, "feet"),
  52282. weight: math.unit(6500, "lb"),
  52283. name: "Front",
  52284. image: {
  52285. source: "./media/characters/deidra/front.svg",
  52286. extra: 1201/1081,
  52287. bottom: 16/1217
  52288. }
  52289. },
  52290. },
  52291. [
  52292. {
  52293. name: "Compressed",
  52294. height: math.unit(9 + 6/12, "feet")
  52295. },
  52296. {
  52297. name: "Normal",
  52298. height: math.unit(17, "feet"),
  52299. default: true
  52300. },
  52301. ]
  52302. ))
  52303. characterMakers.push(() => makeCharacter(
  52304. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52305. {
  52306. front: {
  52307. height: math.unit(7 + 4/12, "feet"),
  52308. weight: math.unit(280, "lb"),
  52309. name: "Front",
  52310. image: {
  52311. source: "./media/characters/freki-yrmori/front.svg",
  52312. extra: 1286/1182,
  52313. bottom: 29/1315
  52314. }
  52315. },
  52316. maw: {
  52317. height: math.unit(0.9, "feet"),
  52318. name: "Maw",
  52319. image: {
  52320. source: "./media/characters/freki-yrmori/maw.svg"
  52321. }
  52322. },
  52323. },
  52324. [
  52325. {
  52326. name: "Normal",
  52327. height: math.unit(7 + 4/12, "feet"),
  52328. default: true
  52329. },
  52330. {
  52331. name: "Macro",
  52332. height: math.unit(38.5, "meters")
  52333. },
  52334. ]
  52335. ))
  52336. characterMakers.push(() => makeCharacter(
  52337. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52338. {
  52339. side: {
  52340. height: math.unit(47.2, "meters"),
  52341. weight: math.unit(10000, "tons"),
  52342. name: "Side",
  52343. image: {
  52344. source: "./media/characters/aetherios/side.svg",
  52345. extra: 2363/642,
  52346. bottom: 221/2584
  52347. }
  52348. },
  52349. top: {
  52350. height: math.unit(240, "meters"),
  52351. weight: math.unit(10000, "tons"),
  52352. name: "Top",
  52353. image: {
  52354. source: "./media/characters/aetherios/top.svg"
  52355. }
  52356. },
  52357. bottom: {
  52358. height: math.unit(240, "meters"),
  52359. weight: math.unit(10000, "tons"),
  52360. name: "Bottom",
  52361. image: {
  52362. source: "./media/characters/aetherios/bottom.svg"
  52363. }
  52364. },
  52365. head: {
  52366. height: math.unit(38.6, "meters"),
  52367. name: "Head",
  52368. image: {
  52369. source: "./media/characters/aetherios/head.svg",
  52370. extra: 1335/1112,
  52371. bottom: 0/1335
  52372. }
  52373. },
  52374. front: {
  52375. height: math.unit(29, "meters"),
  52376. name: "Front",
  52377. image: {
  52378. source: "./media/characters/aetherios/front.svg",
  52379. extra: 1266/953,
  52380. bottom: 158/1424
  52381. }
  52382. },
  52383. maw: {
  52384. height: math.unit(16.37, "meters"),
  52385. name: "Maw",
  52386. image: {
  52387. source: "./media/characters/aetherios/maw.svg",
  52388. extra: 748/637,
  52389. bottom: 0/748
  52390. },
  52391. extraAttributes: {
  52392. preyCapacity: {
  52393. name: "Capacity",
  52394. power: 3,
  52395. type: "volume",
  52396. base: math.unit(1000, "people")
  52397. },
  52398. tongueSize: {
  52399. name: "Tongue Size",
  52400. power: 2,
  52401. type: "area",
  52402. base: math.unit(21, "m^2")
  52403. }
  52404. }
  52405. },
  52406. forepaw: {
  52407. height: math.unit(18, "meters"),
  52408. name: "Forepaw",
  52409. image: {
  52410. source: "./media/characters/aetherios/forepaw.svg"
  52411. }
  52412. },
  52413. hindpaw: {
  52414. height: math.unit(23, "meters"),
  52415. name: "Hindpaw",
  52416. image: {
  52417. source: "./media/characters/aetherios/hindpaw.svg"
  52418. }
  52419. },
  52420. genitals: {
  52421. height: math.unit(42, "meters"),
  52422. name: "Genitals",
  52423. image: {
  52424. source: "./media/characters/aetherios/genitals.svg"
  52425. }
  52426. },
  52427. },
  52428. [
  52429. {
  52430. name: "Normal",
  52431. height: math.unit(47.2, "meters"),
  52432. default: true
  52433. },
  52434. {
  52435. name: "Macro",
  52436. height: math.unit(160, "meters")
  52437. },
  52438. {
  52439. name: "Mega",
  52440. height: math.unit(1.87, "km")
  52441. },
  52442. {
  52443. name: "Giga",
  52444. height: math.unit(40000, "km")
  52445. },
  52446. {
  52447. name: "Stellar",
  52448. height: math.unit(158000000, "km")
  52449. },
  52450. {
  52451. name: "Cosmic",
  52452. height: math.unit(9.46e12, "km")
  52453. },
  52454. ]
  52455. ))
  52456. characterMakers.push(() => makeCharacter(
  52457. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52458. {
  52459. front: {
  52460. height: math.unit(5 + 4/12, "feet"),
  52461. weight: math.unit(80, "lb"),
  52462. name: "Front",
  52463. image: {
  52464. source: "./media/characters/mizu-gieeg/front.svg",
  52465. extra: 850/709,
  52466. bottom: 52/902
  52467. }
  52468. },
  52469. back: {
  52470. height: math.unit(5 + 4/12, "feet"),
  52471. weight: math.unit(80, "lb"),
  52472. name: "Back",
  52473. image: {
  52474. source: "./media/characters/mizu-gieeg/back.svg",
  52475. extra: 882/745,
  52476. bottom: 25/907
  52477. }
  52478. },
  52479. },
  52480. [
  52481. {
  52482. name: "Normal",
  52483. height: math.unit(5 + 4/12, "feet"),
  52484. default: true
  52485. },
  52486. ]
  52487. ))
  52488. characterMakers.push(() => makeCharacter(
  52489. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52490. {
  52491. front: {
  52492. height: math.unit(6, "feet"),
  52493. name: "Front",
  52494. image: {
  52495. source: "./media/characters/roselle-st-papier/front.svg",
  52496. extra: 1430/1280,
  52497. bottom: 37/1467
  52498. }
  52499. },
  52500. back: {
  52501. height: math.unit(6, "feet"),
  52502. name: "Back",
  52503. image: {
  52504. source: "./media/characters/roselle-st-papier/back.svg",
  52505. extra: 1491/1296,
  52506. bottom: 23/1514
  52507. }
  52508. },
  52509. ear: {
  52510. height: math.unit(1.26, "feet"),
  52511. name: "Ear",
  52512. image: {
  52513. source: "./media/characters/roselle-st-papier/ear.svg"
  52514. }
  52515. },
  52516. },
  52517. [
  52518. {
  52519. name: "Normal",
  52520. height: math.unit(150, "feet"),
  52521. default: true
  52522. },
  52523. ]
  52524. ))
  52525. characterMakers.push(() => makeCharacter(
  52526. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52527. {
  52528. front: {
  52529. height: math.unit(1, "inches"),
  52530. name: "Front",
  52531. image: {
  52532. source: "./media/characters/valargent/front.svg",
  52533. extra: 1825/1694,
  52534. bottom: 62/1887
  52535. }
  52536. },
  52537. back: {
  52538. height: math.unit(1, "inches"),
  52539. name: "Back",
  52540. image: {
  52541. source: "./media/characters/valargent/back.svg",
  52542. extra: 1775/1682,
  52543. bottom: 88/1863
  52544. }
  52545. },
  52546. },
  52547. [
  52548. {
  52549. name: "Micro",
  52550. height: math.unit(1, "inch"),
  52551. default: true
  52552. },
  52553. ]
  52554. ))
  52555. characterMakers.push(() => makeCharacter(
  52556. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52557. {
  52558. front: {
  52559. height: math.unit(3.4, "meters"),
  52560. name: "Front",
  52561. image: {
  52562. source: "./media/characters/zarina/front.svg",
  52563. extra: 1733/1425,
  52564. bottom: 93/1826
  52565. }
  52566. },
  52567. squatting: {
  52568. height: math.unit(2.14, "meters"),
  52569. name: "Squatting",
  52570. image: {
  52571. source: "./media/characters/zarina/squatting.svg",
  52572. extra: 1073/788,
  52573. bottom: 63/1136
  52574. }
  52575. },
  52576. back: {
  52577. height: math.unit(2.14, "meters"),
  52578. name: "Back",
  52579. image: {
  52580. source: "./media/characters/zarina/back.svg",
  52581. extra: 1128/885,
  52582. bottom: 0/1128
  52583. }
  52584. },
  52585. },
  52586. [
  52587. {
  52588. name: "Normal",
  52589. height: math.unit(3.4, "meters"),
  52590. default: true
  52591. },
  52592. {
  52593. name: "Big",
  52594. height: math.unit(5, "meters")
  52595. },
  52596. {
  52597. name: "Macro",
  52598. height: math.unit(110, "meters")
  52599. },
  52600. ]
  52601. ))
  52602. characterMakers.push(() => makeCharacter(
  52603. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52604. {
  52605. front: {
  52606. height: math.unit(7, "feet"),
  52607. name: "Front",
  52608. image: {
  52609. source: "./media/characters/ventus-astro-fox/front.svg",
  52610. extra: 1792/1623,
  52611. bottom: 28/1820
  52612. }
  52613. },
  52614. back: {
  52615. height: math.unit(7, "feet"),
  52616. name: "Back",
  52617. image: {
  52618. source: "./media/characters/ventus-astro-fox/back.svg",
  52619. extra: 1789/1620,
  52620. bottom: 31/1820
  52621. }
  52622. },
  52623. outfit: {
  52624. height: math.unit(7, "feet"),
  52625. name: "Outfit",
  52626. image: {
  52627. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52628. extra: 1054/925,
  52629. bottom: 15/1069
  52630. }
  52631. },
  52632. head: {
  52633. height: math.unit(1.12, "feet"),
  52634. name: "Head",
  52635. image: {
  52636. source: "./media/characters/ventus-astro-fox/head.svg",
  52637. extra: 866/504,
  52638. bottom: 0/866
  52639. }
  52640. },
  52641. hand: {
  52642. height: math.unit(1, "feet"),
  52643. name: "Hand",
  52644. image: {
  52645. source: "./media/characters/ventus-astro-fox/hand.svg"
  52646. }
  52647. },
  52648. paw: {
  52649. height: math.unit(1.5, "feet"),
  52650. name: "Paw",
  52651. image: {
  52652. source: "./media/characters/ventus-astro-fox/paw.svg"
  52653. }
  52654. },
  52655. },
  52656. [
  52657. {
  52658. name: "Normal",
  52659. height: math.unit(7, "feet"),
  52660. default: true
  52661. },
  52662. {
  52663. name: "Macro",
  52664. height: math.unit(200, "feet")
  52665. },
  52666. {
  52667. name: "Cosmic",
  52668. height: math.unit(3, "universes")
  52669. },
  52670. ]
  52671. ))
  52672. characterMakers.push(() => makeCharacter(
  52673. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52674. {
  52675. front: {
  52676. height: math.unit(3, "meters"),
  52677. weight: math.unit(7000, "lb"),
  52678. name: "Front",
  52679. image: {
  52680. source: "./media/characters/core-t/front.svg",
  52681. extra: 5729/4941,
  52682. bottom: 1129/6858
  52683. }
  52684. },
  52685. },
  52686. [
  52687. {
  52688. name: "Big",
  52689. height: math.unit(3, "meters"),
  52690. default: true
  52691. },
  52692. ]
  52693. ))
  52694. characterMakers.push(() => makeCharacter(
  52695. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52696. {
  52697. normal: {
  52698. height: math.unit(6 + 6/12, "feet"),
  52699. weight: math.unit(275, "lb"),
  52700. name: "Front",
  52701. image: {
  52702. source: "./media/characters/cadbunny/normal.svg",
  52703. extra: 1129/947,
  52704. bottom: 93/1222
  52705. },
  52706. default: true,
  52707. form: "normal"
  52708. },
  52709. gigantamax: {
  52710. height: math.unit(26, "feet"),
  52711. weight: math.unit(16000, "lb"),
  52712. name: "Front",
  52713. image: {
  52714. source: "./media/characters/cadbunny/gigantamax.svg",
  52715. extra: 1133/944,
  52716. bottom: 90/1223
  52717. },
  52718. default: true,
  52719. form: "gigantamax"
  52720. },
  52721. },
  52722. [
  52723. {
  52724. name: "Normal",
  52725. height: math.unit(6 + 6/12, "feet"),
  52726. default: true,
  52727. form: "normal"
  52728. },
  52729. {
  52730. name: "Small",
  52731. height: math.unit(26, "feet"),
  52732. default: true,
  52733. form: "gigantamax"
  52734. },
  52735. {
  52736. name: "Large",
  52737. height: math.unit(78, "feet"),
  52738. form: "gigantamax"
  52739. },
  52740. ],
  52741. {
  52742. "normal": {
  52743. name: "Normal",
  52744. default: true
  52745. },
  52746. "gigantamax": {
  52747. name: "Gigantamax"
  52748. }
  52749. }
  52750. ))
  52751. characterMakers.push(() => makeCharacter(
  52752. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52753. {
  52754. anthroFront: {
  52755. height: math.unit(8, "feet"),
  52756. weight: math.unit(300, "lb"),
  52757. name: "Front",
  52758. image: {
  52759. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52760. extra: 1272/1176,
  52761. bottom: 53/1325
  52762. },
  52763. form: "anthro",
  52764. default: true
  52765. },
  52766. feralSide: {
  52767. height: math.unit(4, "feet"),
  52768. weight: math.unit(250, "lb"),
  52769. name: "Side",
  52770. image: {
  52771. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52772. extra: 731/621,
  52773. bottom: 0/731
  52774. },
  52775. form: "feral",
  52776. default: true
  52777. },
  52778. },
  52779. [
  52780. {
  52781. name: "Regular",
  52782. height: math.unit(8, "feet"),
  52783. form: "anthro"
  52784. },
  52785. {
  52786. name: "Macro",
  52787. height: math.unit(250, "feet"),
  52788. form: "anthro",
  52789. default: true
  52790. },
  52791. {
  52792. name: "Regular",
  52793. height: math.unit(4, "feet"),
  52794. form: "feral"
  52795. },
  52796. {
  52797. name: "Macro",
  52798. height: math.unit(125, "feet"),
  52799. form: "feral",
  52800. default: true
  52801. },
  52802. ],
  52803. {
  52804. "anthro": {
  52805. name: "Anthro",
  52806. default: true
  52807. },
  52808. "feral": {
  52809. name: "Feral",
  52810. },
  52811. }
  52812. ))
  52813. characterMakers.push(() => makeCharacter(
  52814. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52815. {
  52816. front: {
  52817. height: math.unit(11 + 10/12, "feet"),
  52818. weight: math.unit(1587, "kg"),
  52819. name: "Front",
  52820. image: {
  52821. source: "./media/characters/maple-javira-dragon/front.svg",
  52822. extra: 1136/744,
  52823. bottom: 73/1209
  52824. }
  52825. },
  52826. side: {
  52827. height: math.unit(11 + 10/12, "feet"),
  52828. weight: math.unit(1587, "kg"),
  52829. name: "Side",
  52830. image: {
  52831. source: "./media/characters/maple-javira-dragon/side.svg",
  52832. extra: 712/505,
  52833. bottom: 17/729
  52834. }
  52835. },
  52836. head: {
  52837. height: math.unit(8.05, "feet"),
  52838. name: "Head",
  52839. image: {
  52840. source: "./media/characters/maple-javira-dragon/head.svg",
  52841. extra: 1420/1344,
  52842. bottom: 0/1420
  52843. }
  52844. },
  52845. },
  52846. [
  52847. {
  52848. name: "Normal",
  52849. height: math.unit(11 + 10/12, "feet"),
  52850. default: true
  52851. },
  52852. ]
  52853. ))
  52854. characterMakers.push(() => makeCharacter(
  52855. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52856. {
  52857. front: {
  52858. height: math.unit(117, "cm"),
  52859. weight: math.unit(50, "kg"),
  52860. name: "Front",
  52861. image: {
  52862. source: "./media/characters/sonia-wyverntail/front.svg",
  52863. extra: 708/592,
  52864. bottom: 25/733
  52865. }
  52866. },
  52867. },
  52868. [
  52869. {
  52870. name: "Normal",
  52871. height: math.unit(117, "cm"),
  52872. default: true
  52873. },
  52874. ]
  52875. ))
  52876. characterMakers.push(() => makeCharacter(
  52877. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52878. {
  52879. front: {
  52880. height: math.unit(6 + 5/12, "feet"),
  52881. name: "Front",
  52882. image: {
  52883. source: "./media/characters/micah/front.svg",
  52884. extra: 1758/1546,
  52885. bottom: 214/1972
  52886. }
  52887. },
  52888. },
  52889. [
  52890. {
  52891. name: "Normal",
  52892. height: math.unit(6 + 5/12, "feet"),
  52893. default: true
  52894. },
  52895. ]
  52896. ))
  52897. characterMakers.push(() => makeCharacter(
  52898. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52899. {
  52900. front: {
  52901. height: math.unit(1.75, "meters"),
  52902. weight: math.unit(100, "kg"),
  52903. name: "Front",
  52904. image: {
  52905. source: "./media/characters/zarya/front.svg",
  52906. extra: 741/735,
  52907. bottom: 44/785
  52908. },
  52909. extraAttributes: {
  52910. "tailLength": {
  52911. name: "Tail Length",
  52912. power: 1,
  52913. type: "length",
  52914. base: math.unit(180, "cm")
  52915. },
  52916. "pawLength": {
  52917. name: "Paw Length",
  52918. power: 1,
  52919. type: "length",
  52920. base: math.unit(31, "cm")
  52921. },
  52922. }
  52923. },
  52924. side: {
  52925. height: math.unit(1.75, "meters"),
  52926. weight: math.unit(100, "kg"),
  52927. name: "Side",
  52928. image: {
  52929. source: "./media/characters/zarya/side.svg",
  52930. extra: 776/770,
  52931. bottom: 17/793
  52932. },
  52933. extraAttributes: {
  52934. "tailLength": {
  52935. name: "Tail Length",
  52936. power: 1,
  52937. type: "length",
  52938. base: math.unit(180, "cm")
  52939. },
  52940. "pawLength": {
  52941. name: "Paw Length",
  52942. power: 1,
  52943. type: "length",
  52944. base: math.unit(31, "cm")
  52945. },
  52946. }
  52947. },
  52948. back: {
  52949. height: math.unit(1.75, "meters"),
  52950. weight: math.unit(100, "kg"),
  52951. name: "Back",
  52952. image: {
  52953. source: "./media/characters/zarya/back.svg",
  52954. extra: 741/735,
  52955. bottom: 44/785
  52956. },
  52957. extraAttributes: {
  52958. "tailLength": {
  52959. name: "Tail Length",
  52960. power: 1,
  52961. type: "length",
  52962. base: math.unit(180, "cm")
  52963. },
  52964. "pawLength": {
  52965. name: "Paw Length",
  52966. power: 1,
  52967. type: "length",
  52968. base: math.unit(31, "cm")
  52969. },
  52970. }
  52971. },
  52972. frontNoTail: {
  52973. height: math.unit(1.75, "meters"),
  52974. weight: math.unit(100, "kg"),
  52975. name: "Front (No Tail)",
  52976. image: {
  52977. source: "./media/characters/zarya/front-no-tail.svg",
  52978. extra: 741/735,
  52979. bottom: 44/785
  52980. },
  52981. extraAttributes: {
  52982. "tailLength": {
  52983. name: "Tail Length",
  52984. power: 1,
  52985. type: "length",
  52986. base: math.unit(180, "cm")
  52987. },
  52988. "pawLength": {
  52989. name: "Paw Length",
  52990. power: 1,
  52991. type: "length",
  52992. base: math.unit(31, "cm")
  52993. },
  52994. }
  52995. },
  52996. dressed: {
  52997. height: math.unit(1.75, "meters"),
  52998. weight: math.unit(100, "kg"),
  52999. name: "Dressed",
  53000. image: {
  53001. source: "./media/characters/zarya/dressed.svg",
  53002. extra: 683/672,
  53003. bottom: 79/762
  53004. },
  53005. extraAttributes: {
  53006. "tailLength": {
  53007. name: "Tail Length",
  53008. power: 1,
  53009. type: "length",
  53010. base: math.unit(180, "cm")
  53011. },
  53012. "pawLength": {
  53013. name: "Paw Length",
  53014. power: 1,
  53015. type: "length",
  53016. base: math.unit(31, "cm")
  53017. },
  53018. }
  53019. },
  53020. },
  53021. [
  53022. {
  53023. name: "Micro",
  53024. height: math.unit(5, "cm")
  53025. },
  53026. {
  53027. name: "Normal",
  53028. height: math.unit(1.75, "meters"),
  53029. default: true
  53030. },
  53031. {
  53032. name: "Macro",
  53033. height: math.unit(122, "meters")
  53034. },
  53035. ]
  53036. ))
  53037. characterMakers.push(() => makeCharacter(
  53038. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  53039. {
  53040. front: {
  53041. height: math.unit(7.5, "feet"),
  53042. name: "Front",
  53043. image: {
  53044. source: "./media/characters/sven-hatisson/front.svg",
  53045. extra: 917/857,
  53046. bottom: 42/959
  53047. }
  53048. },
  53049. back: {
  53050. height: math.unit(7.5, "feet"),
  53051. name: "Back",
  53052. image: {
  53053. source: "./media/characters/sven-hatisson/back.svg",
  53054. extra: 903/856,
  53055. bottom: 15/918
  53056. }
  53057. },
  53058. },
  53059. [
  53060. {
  53061. name: "Base Height",
  53062. height: math.unit(7.5, "feet")
  53063. },
  53064. {
  53065. name: "Usual Height",
  53066. height: math.unit(13.5, "feet"),
  53067. default: true
  53068. },
  53069. {
  53070. name: "Smaller Macro",
  53071. height: math.unit(85, "feet")
  53072. },
  53073. {
  53074. name: "Moderate Macro",
  53075. height: math.unit(320, "feet")
  53076. },
  53077. {
  53078. name: "Large Macro",
  53079. height: math.unit(1000, "feet")
  53080. },
  53081. {
  53082. name: "Largest Size",
  53083. height: math.unit(2, "miles")
  53084. },
  53085. ]
  53086. ))
  53087. characterMakers.push(() => makeCharacter(
  53088. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  53089. {
  53090. side: {
  53091. height: math.unit(1.8, "meters"),
  53092. weight: math.unit(275, "kg"),
  53093. name: "Side",
  53094. image: {
  53095. source: "./media/characters/terra/side.svg",
  53096. extra: 1273/1147,
  53097. bottom: 0/1273
  53098. }
  53099. },
  53100. },
  53101. [
  53102. {
  53103. name: "Normal",
  53104. height: math.unit(16.2, "meters"),
  53105. default: true
  53106. },
  53107. ]
  53108. ))
  53109. characterMakers.push(() => makeCharacter(
  53110. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  53111. {
  53112. borzoiFront: {
  53113. height: math.unit(6 + 9/12, "feet"),
  53114. name: "Front",
  53115. image: {
  53116. source: "./media/characters/rae/borzoi-front.svg",
  53117. extra: 1161/1098,
  53118. bottom: 31/1192
  53119. },
  53120. form: "borzoi",
  53121. default: true
  53122. },
  53123. werewolfFront: {
  53124. height: math.unit(8 + 7/12, "feet"),
  53125. name: "Front",
  53126. image: {
  53127. source: "./media/characters/rae/werewolf-front.svg",
  53128. extra: 1411/1334,
  53129. bottom: 127/1538
  53130. },
  53131. form: "werewolf",
  53132. default: true
  53133. },
  53134. },
  53135. [
  53136. {
  53137. name: "Normal",
  53138. height: math.unit(6 + 9/12, "feet"),
  53139. default: true,
  53140. form: "borzoi"
  53141. },
  53142. {
  53143. name: "Normal",
  53144. height: math.unit(8 + 7/12, "feet"),
  53145. default: true,
  53146. form: "werewolf"
  53147. },
  53148. ],
  53149. {
  53150. "borzoi": {
  53151. name: "Borzoi",
  53152. default: true
  53153. },
  53154. "werewolf": {
  53155. name: "Werewolf",
  53156. },
  53157. }
  53158. ))
  53159. characterMakers.push(() => makeCharacter(
  53160. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  53161. {
  53162. front: {
  53163. height: math.unit(8 + 7/12, "feet"),
  53164. weight: math.unit(482, "lb"),
  53165. name: "Front",
  53166. image: {
  53167. source: "./media/characters/kit/front.svg",
  53168. extra: 1247/1103,
  53169. bottom: 41/1288
  53170. }
  53171. },
  53172. back: {
  53173. height: math.unit(8 + 7/12, "feet"),
  53174. weight: math.unit(482, "lb"),
  53175. name: "Back",
  53176. image: {
  53177. source: "./media/characters/kit/back.svg",
  53178. extra: 1252/1123,
  53179. bottom: 21/1273
  53180. }
  53181. },
  53182. paw: {
  53183. height: math.unit(1.46, "feet"),
  53184. name: "Paw",
  53185. image: {
  53186. source: "./media/characters/kit/paw.svg"
  53187. }
  53188. },
  53189. },
  53190. [
  53191. {
  53192. name: "Normal",
  53193. height: math.unit(2.61, "meters"),
  53194. default: true
  53195. },
  53196. {
  53197. name: "\"Tall\"",
  53198. height: math.unit(8.21, "meters")
  53199. },
  53200. {
  53201. name: "Tall",
  53202. height: math.unit(19.6, "meters")
  53203. },
  53204. {
  53205. name: "Very Tall",
  53206. height: math.unit(57.91, "meters")
  53207. },
  53208. {
  53209. name: "Semi-Macro",
  53210. height: math.unit(138.64, "meters")
  53211. },
  53212. {
  53213. name: "Macro",
  53214. height: math.unit(831.99, "meters")
  53215. },
  53216. {
  53217. name: "EX-Macro",
  53218. height: math.unit(96451121, "meters")
  53219. },
  53220. {
  53221. name: "S1-Omnipotent",
  53222. height: math.unit(4.42074e+9, "meters")
  53223. },
  53224. {
  53225. name: "S2-Omnipotent",
  53226. height: math.unit(9.42074e+17, "meters")
  53227. },
  53228. {
  53229. name: "Omnipotent",
  53230. height: math.unit(4.23112e+24, "meters")
  53231. },
  53232. {
  53233. name: "Hypergod",
  53234. height: math.unit(5.05176e+27, "meters")
  53235. },
  53236. {
  53237. name: "Hypergod-EX",
  53238. height: math.unit(9.45532e+49, "meters")
  53239. },
  53240. {
  53241. name: "Hypergod-SP",
  53242. height: math.unit(9.45532e+195, "meters")
  53243. },
  53244. ]
  53245. ))
  53246. characterMakers.push(() => makeCharacter(
  53247. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53248. {
  53249. side: {
  53250. height: math.unit(0.6, "meters"),
  53251. weight: math.unit(24, "kg"),
  53252. name: "Side",
  53253. image: {
  53254. source: "./media/characters/celeste/side.svg",
  53255. extra: 810/517,
  53256. bottom: 53/863
  53257. }
  53258. },
  53259. },
  53260. [
  53261. {
  53262. name: "Velociraptor",
  53263. height: math.unit(0.6, "meters"),
  53264. default: true
  53265. },
  53266. {
  53267. name: "Utahraptor",
  53268. height: math.unit(1.8, "meters")
  53269. },
  53270. {
  53271. name: "Gallimimus",
  53272. height: math.unit(4.0, "meters")
  53273. },
  53274. {
  53275. name: "Large",
  53276. height: math.unit(20, "meters")
  53277. },
  53278. {
  53279. name: "Planetary",
  53280. height: math.unit(50, "megameters")
  53281. },
  53282. {
  53283. name: "Stellar",
  53284. height: math.unit(1.5, "gigameters")
  53285. },
  53286. {
  53287. name: "Galactic",
  53288. height: math.unit(100, "exameters")
  53289. },
  53290. ]
  53291. ))
  53292. characterMakers.push(() => makeCharacter(
  53293. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53294. {
  53295. front: {
  53296. height: math.unit(6, "feet"),
  53297. weight: math.unit(210, "lb"),
  53298. name: "Front",
  53299. image: {
  53300. source: "./media/characters/glacia/front.svg",
  53301. extra: 958/901,
  53302. bottom: 45/1003
  53303. }
  53304. },
  53305. },
  53306. [
  53307. {
  53308. name: "Macro",
  53309. height: math.unit(1000, "meters"),
  53310. default: true
  53311. },
  53312. ]
  53313. ))
  53314. characterMakers.push(() => makeCharacter(
  53315. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53316. {
  53317. front: {
  53318. height: math.unit(4, "meters"),
  53319. name: "Front",
  53320. image: {
  53321. source: "./media/characters/giri/front.svg",
  53322. extra: 966/894,
  53323. bottom: 21/987
  53324. }
  53325. },
  53326. },
  53327. [
  53328. {
  53329. name: "Normal",
  53330. height: math.unit(4, "meters"),
  53331. default: true
  53332. },
  53333. ]
  53334. ))
  53335. characterMakers.push(() => makeCharacter(
  53336. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53337. {
  53338. back: {
  53339. height: math.unit(4, "feet"),
  53340. weight: math.unit(37, "lb"),
  53341. name: "Back",
  53342. image: {
  53343. source: "./media/characters/tin/back.svg",
  53344. extra: 845/780,
  53345. bottom: 28/873
  53346. }
  53347. },
  53348. },
  53349. [
  53350. {
  53351. name: "Normal",
  53352. height: math.unit(4, "feet"),
  53353. default: true
  53354. },
  53355. ]
  53356. ))
  53357. characterMakers.push(() => makeCharacter(
  53358. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53359. {
  53360. front: {
  53361. height: math.unit(25, "feet"),
  53362. name: "Front",
  53363. image: {
  53364. source: "./media/characters/cadenza-vivace/front.svg",
  53365. extra: 1842/1578,
  53366. bottom: 30/1872
  53367. }
  53368. },
  53369. },
  53370. [
  53371. {
  53372. name: "Macro",
  53373. height: math.unit(25, "feet"),
  53374. default: true
  53375. },
  53376. ]
  53377. ))
  53378. characterMakers.push(() => makeCharacter(
  53379. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53380. {
  53381. front: {
  53382. height: math.unit(10, "feet"),
  53383. weight: math.unit(625, "kg"),
  53384. name: "Front",
  53385. image: {
  53386. source: "./media/characters/zain/front.svg",
  53387. extra: 1682/1498,
  53388. bottom: 223/1905
  53389. }
  53390. },
  53391. back: {
  53392. height: math.unit(10, "feet"),
  53393. weight: math.unit(625, "kg"),
  53394. name: "Back",
  53395. image: {
  53396. source: "./media/characters/zain/back.svg",
  53397. extra: 1814/1657,
  53398. bottom: 152/1966
  53399. }
  53400. },
  53401. head: {
  53402. height: math.unit(10, "feet"),
  53403. weight: math.unit(625, "kg"),
  53404. name: "Head",
  53405. image: {
  53406. source: "./media/characters/zain/head.svg",
  53407. extra: 1059/762,
  53408. bottom: 0/1059
  53409. }
  53410. },
  53411. },
  53412. [
  53413. {
  53414. name: "Normal",
  53415. height: math.unit(10, "feet"),
  53416. default: true
  53417. },
  53418. ]
  53419. ))
  53420. characterMakers.push(() => makeCharacter(
  53421. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53422. {
  53423. front: {
  53424. height: math.unit(6 + 5/12, "feet"),
  53425. weight: math.unit(750, "lb"),
  53426. name: "Front",
  53427. image: {
  53428. source: "./media/characters/ruchex/front.svg",
  53429. extra: 877/820,
  53430. bottom: 17/894
  53431. },
  53432. extraAttributes: {
  53433. "width": {
  53434. name: "Width",
  53435. power: 1,
  53436. type: "length",
  53437. base: math.unit(4.757, "feet")
  53438. },
  53439. }
  53440. },
  53441. },
  53442. [
  53443. {
  53444. name: "Normal",
  53445. height: math.unit(6 + 5/12, "feet"),
  53446. default: true
  53447. },
  53448. ]
  53449. ))
  53450. characterMakers.push(() => makeCharacter(
  53451. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53452. {
  53453. dressedFront: {
  53454. height: math.unit(191, "cm"),
  53455. weight: math.unit(80, "kg"),
  53456. name: "Front",
  53457. image: {
  53458. source: "./media/characters/buster/dressed-front.svg",
  53459. extra: 1022/973,
  53460. bottom: 69/1091
  53461. }
  53462. },
  53463. dressedBack: {
  53464. height: math.unit(191, "cm"),
  53465. weight: math.unit(80, "kg"),
  53466. name: "Back",
  53467. image: {
  53468. source: "./media/characters/buster/dressed-back.svg",
  53469. extra: 1018/970,
  53470. bottom: 55/1073
  53471. }
  53472. },
  53473. nudeFront: {
  53474. height: math.unit(191, "cm"),
  53475. weight: math.unit(80, "kg"),
  53476. name: "Front (Nude)",
  53477. image: {
  53478. source: "./media/characters/buster/nude-front.svg",
  53479. extra: 1022/973,
  53480. bottom: 69/1091
  53481. }
  53482. },
  53483. nudeBack: {
  53484. height: math.unit(191, "cm"),
  53485. weight: math.unit(80, "kg"),
  53486. name: "Back (Nude)",
  53487. image: {
  53488. source: "./media/characters/buster/nude-back.svg",
  53489. extra: 1018/970,
  53490. bottom: 55/1073
  53491. }
  53492. },
  53493. dick: {
  53494. height: math.unit(2.59, "feet"),
  53495. name: "Dick",
  53496. image: {
  53497. source: "./media/characters/buster/dick.svg"
  53498. }
  53499. },
  53500. ass: {
  53501. height: math.unit(1.2, "feet"),
  53502. name: "Ass",
  53503. image: {
  53504. source: "./media/characters/buster/ass.svg"
  53505. }
  53506. },
  53507. },
  53508. [
  53509. {
  53510. name: "Normal",
  53511. height: math.unit(191, "cm"),
  53512. default: true
  53513. },
  53514. ]
  53515. ))
  53516. characterMakers.push(() => makeCharacter(
  53517. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53518. {
  53519. side: {
  53520. height: math.unit(8.1, "feet"),
  53521. weight: math.unit(3500, "lb"),
  53522. name: "Side",
  53523. image: {
  53524. source: "./media/characters/sonya/side.svg",
  53525. extra: 1730/1317,
  53526. bottom: 86/1816
  53527. }
  53528. },
  53529. },
  53530. [
  53531. {
  53532. name: "Normal",
  53533. height: math.unit(8.1, "feet"),
  53534. default: true
  53535. },
  53536. ]
  53537. ))
  53538. characterMakers.push(() => makeCharacter(
  53539. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53540. {
  53541. front: {
  53542. height: math.unit(6, "feet"),
  53543. weight: math.unit(150, "lb"),
  53544. name: "Front",
  53545. image: {
  53546. source: "./media/characters/cadence-andrysiak/front.svg",
  53547. extra: 1164/1121,
  53548. bottom: 60/1224
  53549. }
  53550. },
  53551. back: {
  53552. height: math.unit(6, "feet"),
  53553. weight: math.unit(150, "lb"),
  53554. name: "Back",
  53555. image: {
  53556. source: "./media/characters/cadence-andrysiak/back.svg",
  53557. extra: 1200/1165,
  53558. bottom: 9/1209
  53559. }
  53560. },
  53561. dressed: {
  53562. height: math.unit(6, "feet"),
  53563. weight: math.unit(150, "lb"),
  53564. name: "Dressed",
  53565. image: {
  53566. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53567. extra: 1164/1121,
  53568. bottom: 60/1224
  53569. }
  53570. },
  53571. },
  53572. [
  53573. {
  53574. name: "Micro",
  53575. height: math.unit(1, "mm")
  53576. },
  53577. {
  53578. name: "Normal",
  53579. height: math.unit(6, "feet"),
  53580. default: true
  53581. },
  53582. ]
  53583. ))
  53584. characterMakers.push(() => makeCharacter(
  53585. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53586. {
  53587. front: {
  53588. height: math.unit(60, "inches"),
  53589. weight: math.unit(16, "lb"),
  53590. preyCapacity: math.unit(80, "liters"),
  53591. name: "Front",
  53592. image: {
  53593. source: "./media/characters/penny-lynx/front.svg",
  53594. extra: 1959/1769,
  53595. bottom: 49/2008
  53596. }
  53597. },
  53598. },
  53599. [
  53600. {
  53601. name: "Nokia",
  53602. height: math.unit(2, "inches")
  53603. },
  53604. {
  53605. name: "Desktop",
  53606. height: math.unit(24, "inches")
  53607. },
  53608. {
  53609. name: "TV",
  53610. height: math.unit(60, "inches")
  53611. },
  53612. {
  53613. name: "Jumbotron",
  53614. height: math.unit(12, "feet")
  53615. },
  53616. {
  53617. name: "Billboard",
  53618. height: math.unit(48, "feet"),
  53619. default: true
  53620. },
  53621. {
  53622. name: "IMAX",
  53623. height: math.unit(96, "feet")
  53624. },
  53625. {
  53626. name: "SINGULARITY",
  53627. height: math.unit(864938, "miles")
  53628. },
  53629. ]
  53630. ))
  53631. characterMakers.push(() => makeCharacter(
  53632. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53633. {
  53634. front: {
  53635. height: math.unit(5 + 4/12, "feet"),
  53636. weight: math.unit(230, "lb"),
  53637. name: "Front",
  53638. image: {
  53639. source: "./media/characters/sukebe/front.svg",
  53640. extra: 2130/2038,
  53641. bottom: 90/2220
  53642. }
  53643. },
  53644. back: {
  53645. height: math.unit(3.48, "feet"),
  53646. weight: math.unit(230, "lb"),
  53647. name: "Back",
  53648. image: {
  53649. source: "./media/characters/sukebe/back.svg",
  53650. extra: 1670/1604,
  53651. bottom: 0/1670
  53652. }
  53653. },
  53654. },
  53655. [
  53656. {
  53657. name: "Normal",
  53658. height: math.unit(5 + 4/12, "feet"),
  53659. default: true
  53660. },
  53661. ]
  53662. ))
  53663. characterMakers.push(() => makeCharacter(
  53664. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53665. {
  53666. front: {
  53667. height: math.unit(6, "feet"),
  53668. name: "Front",
  53669. image: {
  53670. source: "./media/characters/nylla/front.svg",
  53671. extra: 1868/1699,
  53672. bottom: 97/1965
  53673. }
  53674. },
  53675. back: {
  53676. height: math.unit(6, "feet"),
  53677. name: "Back",
  53678. image: {
  53679. source: "./media/characters/nylla/back.svg",
  53680. extra: 1889/1712,
  53681. bottom: 93/1982
  53682. }
  53683. },
  53684. frontNsfw: {
  53685. height: math.unit(6, "feet"),
  53686. name: "Front (NSFW)",
  53687. image: {
  53688. source: "./media/characters/nylla/front-nsfw.svg",
  53689. extra: 1868/1699,
  53690. bottom: 97/1965
  53691. },
  53692. extraAttributes: {
  53693. "dickLength": {
  53694. name: "Dick Length",
  53695. power: 1,
  53696. type: "length",
  53697. base: math.unit(1.4, "feet")
  53698. },
  53699. "cumVolume": {
  53700. name: "Cum Volume",
  53701. power: 3,
  53702. type: "volume",
  53703. base: math.unit(100, "mL")
  53704. },
  53705. }
  53706. },
  53707. backNsfw: {
  53708. height: math.unit(6, "feet"),
  53709. name: "Back (NSFW)",
  53710. image: {
  53711. source: "./media/characters/nylla/back-nsfw.svg",
  53712. extra: 1889/1712,
  53713. bottom: 93/1982
  53714. }
  53715. },
  53716. maw: {
  53717. height: math.unit(2.10, "feet"),
  53718. name: "Maw",
  53719. image: {
  53720. source: "./media/characters/nylla/maw.svg"
  53721. }
  53722. },
  53723. paws: {
  53724. height: math.unit(2.06, "feet"),
  53725. name: "Paws",
  53726. image: {
  53727. source: "./media/characters/nylla/paws.svg"
  53728. }
  53729. },
  53730. muzzle: {
  53731. height: math.unit(0.61, "feet"),
  53732. name: "Muzzle",
  53733. image: {
  53734. source: "./media/characters/nylla/muzzle.svg"
  53735. }
  53736. },
  53737. sheath: {
  53738. height: math.unit(1.305, "feet"),
  53739. name: "Sheath",
  53740. image: {
  53741. source: "./media/characters/nylla/sheath.svg"
  53742. }
  53743. },
  53744. },
  53745. [
  53746. {
  53747. name: "Micro",
  53748. height: math.unit(7.5, "inches")
  53749. },
  53750. {
  53751. name: "Normal",
  53752. height: math.unit(7, "feet"),
  53753. default: true
  53754. },
  53755. {
  53756. name: "Macro",
  53757. height: math.unit(60, "feet")
  53758. },
  53759. {
  53760. name: "Mega",
  53761. height: math.unit(200, "feet")
  53762. },
  53763. ]
  53764. ))
  53765. characterMakers.push(() => makeCharacter(
  53766. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53767. {
  53768. front: {
  53769. height: math.unit(10, "feet"),
  53770. weight: math.unit(2300, "lb"),
  53771. name: "Front",
  53772. image: {
  53773. source: "./media/characters/hunt3r/front.svg",
  53774. extra: 1909/1742,
  53775. bottom: 46/1955
  53776. }
  53777. },
  53778. },
  53779. [
  53780. {
  53781. name: "Normal",
  53782. height: math.unit(10, "feet"),
  53783. default: true
  53784. },
  53785. ]
  53786. ))
  53787. characterMakers.push(() => makeCharacter(
  53788. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53789. {
  53790. dressed: {
  53791. height: math.unit(11, "feet"),
  53792. weight: math.unit(18500, "lb"),
  53793. preyCapacity: math.unit(9, "people"),
  53794. name: "Dressed",
  53795. image: {
  53796. source: "./media/characters/cylphis/dressed.svg",
  53797. extra: 1028/1003,
  53798. bottom: 75/1103
  53799. },
  53800. },
  53801. undressed: {
  53802. height: math.unit(11, "feet"),
  53803. weight: math.unit(18500, "lb"),
  53804. preyCapacity: math.unit(9, "people"),
  53805. name: "Undressed",
  53806. image: {
  53807. source: "./media/characters/cylphis/undressed.svg",
  53808. extra: 1028/1003,
  53809. bottom: 75/1103
  53810. }
  53811. },
  53812. full: {
  53813. height: math.unit(11, "feet"),
  53814. weight: math.unit(18500 + 150*9, "lb"),
  53815. preyCapacity: math.unit(9, "people"),
  53816. name: "Full",
  53817. image: {
  53818. source: "./media/characters/cylphis/full.svg",
  53819. extra: 1028/1003,
  53820. bottom: 75/1103
  53821. }
  53822. },
  53823. },
  53824. [
  53825. {
  53826. name: "Small",
  53827. height: math.unit(8, "feet")
  53828. },
  53829. {
  53830. name: "Normal",
  53831. height: math.unit(11, "feet"),
  53832. default: true
  53833. },
  53834. ]
  53835. ))
  53836. characterMakers.push(() => makeCharacter(
  53837. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53838. {
  53839. front: {
  53840. height: math.unit(2 + 7/12, "feet"),
  53841. name: "Front",
  53842. image: {
  53843. source: "./media/characters/orishan/front.svg",
  53844. extra: 1058/1023,
  53845. bottom: 23/1081
  53846. }
  53847. },
  53848. back: {
  53849. height: math.unit(2 + 7/12, "feet"),
  53850. name: "Back",
  53851. image: {
  53852. source: "./media/characters/orishan/back.svg",
  53853. extra: 1058/1023,
  53854. bottom: 23/1081
  53855. }
  53856. },
  53857. },
  53858. [
  53859. {
  53860. name: "Micro",
  53861. height: math.unit(2, "cm")
  53862. },
  53863. {
  53864. name: "Normal",
  53865. height: math.unit(2 + 7/12, "feet"),
  53866. default: true
  53867. },
  53868. ]
  53869. ))
  53870. characterMakers.push(() => makeCharacter(
  53871. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53872. {
  53873. front: {
  53874. height: math.unit(3, "meters"),
  53875. weight: math.unit(508, "kg"),
  53876. name: "Front",
  53877. image: {
  53878. source: "./media/characters/seranis/front.svg",
  53879. extra: 1478/1454,
  53880. bottom: 41/1519
  53881. }
  53882. },
  53883. },
  53884. [
  53885. {
  53886. name: "Normal",
  53887. height: math.unit(3, "meters"),
  53888. default: true
  53889. },
  53890. {
  53891. name: "Macro",
  53892. height: math.unit(108, "meters")
  53893. },
  53894. {
  53895. name: "Megamacro",
  53896. height: math.unit(1250, "meters")
  53897. },
  53898. ]
  53899. ))
  53900. characterMakers.push(() => makeCharacter(
  53901. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53902. {
  53903. undressed: {
  53904. height: math.unit(5 + 3/12, "feet"),
  53905. name: "Undressed",
  53906. image: {
  53907. source: "./media/characters/ankou/undressed.svg",
  53908. extra: 1301/1213,
  53909. bottom: 87/1388
  53910. }
  53911. },
  53912. dressed: {
  53913. height: math.unit(5 + 3/12, "feet"),
  53914. name: "Dressed",
  53915. image: {
  53916. source: "./media/characters/ankou/dressed.svg",
  53917. extra: 1301/1213,
  53918. bottom: 87/1388
  53919. }
  53920. },
  53921. head: {
  53922. height: math.unit(1.61, "feet"),
  53923. name: "Head",
  53924. image: {
  53925. source: "./media/characters/ankou/head.svg"
  53926. }
  53927. },
  53928. },
  53929. [
  53930. {
  53931. name: "Normal",
  53932. height: math.unit(5 + 3/12, "feet"),
  53933. default: true
  53934. },
  53935. ]
  53936. ))
  53937. characterMakers.push(() => makeCharacter(
  53938. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53939. {
  53940. side: {
  53941. height: math.unit(6 + 3/12, "feet"),
  53942. weight: math.unit(200, "kg"),
  53943. name: "Side",
  53944. image: {
  53945. source: "./media/characters/juniper-skunktaur/side.svg",
  53946. extra: 1574/1229,
  53947. bottom: 38/1612
  53948. }
  53949. },
  53950. front: {
  53951. height: math.unit(6 + 3/12, "feet"),
  53952. weight: math.unit(200, "kg"),
  53953. name: "Front",
  53954. image: {
  53955. source: "./media/characters/juniper-skunktaur/front.svg",
  53956. extra: 1337/1278,
  53957. bottom: 22/1359
  53958. }
  53959. },
  53960. back: {
  53961. height: math.unit(6 + 3/12, "feet"),
  53962. weight: math.unit(200, "kg"),
  53963. name: "Back",
  53964. image: {
  53965. source: "./media/characters/juniper-skunktaur/back.svg",
  53966. extra: 1618/1273,
  53967. bottom: 13/1631
  53968. }
  53969. },
  53970. top: {
  53971. height: math.unit(2.62, "feet"),
  53972. weight: math.unit(200, "kg"),
  53973. name: "Top",
  53974. image: {
  53975. source: "./media/characters/juniper-skunktaur/top.svg"
  53976. }
  53977. },
  53978. },
  53979. [
  53980. {
  53981. name: "Normal",
  53982. height: math.unit(6 + 3/12, "feet"),
  53983. default: true
  53984. },
  53985. ]
  53986. ))
  53987. characterMakers.push(() => makeCharacter(
  53988. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53989. {
  53990. front: {
  53991. height: math.unit(20.5, "feet"),
  53992. name: "Front",
  53993. image: {
  53994. source: "./media/characters/rei/front.svg",
  53995. extra: 1349/1195,
  53996. bottom: 31/1380
  53997. }
  53998. },
  53999. back: {
  54000. height: math.unit(20.5, "feet"),
  54001. name: "Back",
  54002. image: {
  54003. source: "./media/characters/rei/back.svg",
  54004. extra: 1358/1204,
  54005. bottom: 22/1380
  54006. }
  54007. },
  54008. pawsDigi: {
  54009. height: math.unit(3.45, "feet"),
  54010. name: "Paws (Digi)",
  54011. image: {
  54012. source: "./media/characters/rei/paws-digi.svg"
  54013. }
  54014. },
  54015. pawsPlanti: {
  54016. height: math.unit(3.45, "feet"),
  54017. name: "Paws (Planti)",
  54018. image: {
  54019. source: "./media/characters/rei/paws-planti.svg"
  54020. }
  54021. },
  54022. },
  54023. [
  54024. {
  54025. name: "Normal",
  54026. height: math.unit(20.5, "feet"),
  54027. default: true
  54028. },
  54029. ]
  54030. ))
  54031. characterMakers.push(() => makeCharacter(
  54032. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  54033. {
  54034. front: {
  54035. height: math.unit(5 + 11/12, "feet"),
  54036. name: "Front",
  54037. image: {
  54038. source: "./media/characters/carina/front.svg",
  54039. extra: 1720/1449,
  54040. bottom: 14/1734
  54041. }
  54042. },
  54043. back: {
  54044. height: math.unit(5 + 11/12, "feet"),
  54045. name: "Back",
  54046. image: {
  54047. source: "./media/characters/carina/back.svg",
  54048. extra: 1493/1445,
  54049. bottom: 17/1510
  54050. }
  54051. },
  54052. paw: {
  54053. height: math.unit(0.92, "feet"),
  54054. name: "Paw",
  54055. image: {
  54056. source: "./media/characters/carina/paw.svg"
  54057. }
  54058. },
  54059. },
  54060. [
  54061. {
  54062. name: "Normal",
  54063. height: math.unit(5 + 11/12, "feet"),
  54064. default: true
  54065. },
  54066. ]
  54067. ))
  54068. characterMakers.push(() => makeCharacter(
  54069. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  54070. {
  54071. normal_front: {
  54072. height: math.unit(4.88, "meters"),
  54073. name: "Front",
  54074. image: {
  54075. source: "./media/characters/maya/normal-front.svg",
  54076. extra: 1222/1145,
  54077. bottom: 57/1279
  54078. },
  54079. form: "normal",
  54080. default: true
  54081. },
  54082. monstrous_front: {
  54083. height: math.unit(10, "meters"),
  54084. name: "Front",
  54085. image: {
  54086. source: "./media/characters/maya/monstrous-front.svg",
  54087. extra: 1523/1109,
  54088. bottom: 113/1636
  54089. },
  54090. form: "monstrous",
  54091. extraAttributes: {
  54092. "swallowSize": {
  54093. name: "Tailmaw Bite Size",
  54094. power: 3,
  54095. type: "volume",
  54096. base: math.unit(43000, "liters")
  54097. },
  54098. }
  54099. },
  54100. taur_front: {
  54101. height: math.unit(10, "meters"),
  54102. name: "Front",
  54103. image: {
  54104. source: "./media/characters/maya/taur-front.svg",
  54105. extra: 743/506,
  54106. bottom: 101/844
  54107. },
  54108. form: "taur",
  54109. },
  54110. },
  54111. [
  54112. {
  54113. name: "Normal",
  54114. height: math.unit(4.88, "meters"),
  54115. default: true,
  54116. form: "normal"
  54117. },
  54118. {
  54119. name: "Macro",
  54120. height: math.unit(38.1, "meters"),
  54121. form: "normal"
  54122. },
  54123. {
  54124. name: "Macro+",
  54125. height: math.unit(152.4, "meters"),
  54126. form: "normal"
  54127. },
  54128. {
  54129. name: "Macro++",
  54130. height: math.unit(16.09, "km"),
  54131. form: "normal"
  54132. },
  54133. {
  54134. name: "Mega-macro",
  54135. height: math.unit(700, "megameters"),
  54136. form: "normal"
  54137. },
  54138. {
  54139. name: "Satiated",
  54140. height: math.unit(10, "meters"),
  54141. default: true,
  54142. form: "monstrous"
  54143. },
  54144. {
  54145. name: "Hungry",
  54146. height: math.unit(75, "meters"),
  54147. form: "monstrous"
  54148. },
  54149. {
  54150. name: "Ravenous",
  54151. height: math.unit(500, "meters"),
  54152. form: "monstrous"
  54153. },
  54154. {
  54155. name: "\"Normal\"",
  54156. height: math.unit(10, "meters"),
  54157. form: "taur"
  54158. },
  54159. {
  54160. name: "Macro",
  54161. height: math.unit(50, "meters"),
  54162. form: "taur"
  54163. },
  54164. ],
  54165. {
  54166. "normal": {
  54167. name: "Normal",
  54168. default: true
  54169. },
  54170. "monstrous": {
  54171. name: "Monstrous",
  54172. },
  54173. "taur": {
  54174. name: "Taur",
  54175. },
  54176. }
  54177. ))
  54178. characterMakers.push(() => makeCharacter(
  54179. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  54180. {
  54181. front: {
  54182. height: math.unit(6 + 2/12, "feet"),
  54183. weight: math.unit(500, "lb"),
  54184. preyCapacity: math.unit(4, "people"),
  54185. name: "Front",
  54186. image: {
  54187. source: "./media/characters/yepir/front.svg"
  54188. }
  54189. },
  54190. side: {
  54191. height: math.unit(6 + 2/12, "feet"),
  54192. weight: math.unit(500, "lb"),
  54193. preyCapacity: math.unit(4, "people"),
  54194. name: "Side",
  54195. image: {
  54196. source: "./media/characters/yepir/side.svg"
  54197. }
  54198. },
  54199. paw: {
  54200. height: math.unit(1.05, "feet"),
  54201. name: "Paw",
  54202. image: {
  54203. source: "./media/characters/yepir/paw.svg"
  54204. }
  54205. },
  54206. },
  54207. [
  54208. {
  54209. name: "Normal",
  54210. height: math.unit(6 + 2/12, "feet"),
  54211. default: true
  54212. },
  54213. ]
  54214. ))
  54215. characterMakers.push(() => makeCharacter(
  54216. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54217. {
  54218. front: {
  54219. height: math.unit(5 + 4/12, "feet"),
  54220. name: "Front",
  54221. image: {
  54222. source: "./media/characters/russec/front.svg",
  54223. extra: 1926/1626,
  54224. bottom: 72/1998
  54225. }
  54226. },
  54227. back: {
  54228. height: math.unit(5 + 4/12, "feet"),
  54229. name: "Back",
  54230. image: {
  54231. source: "./media/characters/russec/back.svg",
  54232. extra: 1910/1591,
  54233. bottom: 48/1958
  54234. }
  54235. },
  54236. },
  54237. [
  54238. {
  54239. name: "Small",
  54240. height: math.unit(5 + 4/12, "feet")
  54241. },
  54242. {
  54243. name: "Normal",
  54244. height: math.unit(72, "feet"),
  54245. default: true
  54246. },
  54247. ]
  54248. ))
  54249. characterMakers.push(() => makeCharacter(
  54250. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54251. {
  54252. side: {
  54253. height: math.unit(12, "feet"),
  54254. name: "Side",
  54255. image: {
  54256. source: "./media/characters/cianus/side.svg",
  54257. extra: 808/526,
  54258. bottom: 61/869
  54259. }
  54260. },
  54261. },
  54262. [
  54263. {
  54264. name: "Normal",
  54265. height: math.unit(12, "feet"),
  54266. default: true
  54267. },
  54268. ]
  54269. ))
  54270. characterMakers.push(() => makeCharacter(
  54271. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54272. {
  54273. front: {
  54274. height: math.unit(9 + 6/12, "feet"),
  54275. weight: math.unit(300, "lb"),
  54276. name: "Front",
  54277. image: {
  54278. source: "./media/characters/ahab/front.svg",
  54279. extra: 1897/1868,
  54280. bottom: 121/2018
  54281. }
  54282. },
  54283. frontNsfw: {
  54284. height: math.unit(9 + 6/12, "feet"),
  54285. weight: math.unit(300, "lb"),
  54286. name: "Front (NSFW)",
  54287. image: {
  54288. source: "./media/characters/ahab/front-nsfw.svg",
  54289. extra: 1897/1868,
  54290. bottom: 121/2018
  54291. }
  54292. },
  54293. },
  54294. [
  54295. {
  54296. name: "Normal",
  54297. height: math.unit(9 + 6/12, "feet")
  54298. },
  54299. {
  54300. name: "Macro",
  54301. height: math.unit(657, "feet"),
  54302. default: true
  54303. },
  54304. ]
  54305. ))
  54306. characterMakers.push(() => makeCharacter(
  54307. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54308. {
  54309. front: {
  54310. height: math.unit(2.69, "meters"),
  54311. weight: math.unit(132, "kg"),
  54312. name: "Front",
  54313. image: {
  54314. source: "./media/characters/aarkus/front.svg",
  54315. extra: 1400/1231,
  54316. bottom: 34/1434
  54317. }
  54318. },
  54319. back: {
  54320. height: math.unit(2.69, "meters"),
  54321. weight: math.unit(132, "kg"),
  54322. name: "Back",
  54323. image: {
  54324. source: "./media/characters/aarkus/back.svg",
  54325. extra: 1381/1218,
  54326. bottom: 30/1411
  54327. }
  54328. },
  54329. frontNsfw: {
  54330. height: math.unit(2.69, "meters"),
  54331. weight: math.unit(132, "kg"),
  54332. name: "Front (NSFW)",
  54333. image: {
  54334. source: "./media/characters/aarkus/front-nsfw.svg",
  54335. extra: 1400/1231,
  54336. bottom: 34/1434
  54337. }
  54338. },
  54339. foot: {
  54340. height: math.unit(1.45, "feet"),
  54341. name: "Foot",
  54342. image: {
  54343. source: "./media/characters/aarkus/foot.svg"
  54344. }
  54345. },
  54346. head: {
  54347. height: math.unit(2.85, "feet"),
  54348. name: "Head",
  54349. image: {
  54350. source: "./media/characters/aarkus/head.svg"
  54351. }
  54352. },
  54353. headAlt: {
  54354. height: math.unit(3.07, "feet"),
  54355. name: "Head (Alt)",
  54356. image: {
  54357. source: "./media/characters/aarkus/head-alt.svg"
  54358. }
  54359. },
  54360. mouth: {
  54361. height: math.unit(1.25, "feet"),
  54362. name: "Mouth",
  54363. image: {
  54364. source: "./media/characters/aarkus/mouth.svg"
  54365. }
  54366. },
  54367. dick: {
  54368. height: math.unit(1.77, "feet"),
  54369. name: "Dick",
  54370. image: {
  54371. source: "./media/characters/aarkus/dick.svg"
  54372. }
  54373. },
  54374. },
  54375. [
  54376. {
  54377. name: "Normal",
  54378. height: math.unit(2.69, "meters"),
  54379. default: true
  54380. },
  54381. {
  54382. name: "Macro",
  54383. height: math.unit(269, "meters")
  54384. },
  54385. {
  54386. name: "Macro+",
  54387. height: math.unit(672.5, "meters")
  54388. },
  54389. {
  54390. name: "Megamacro",
  54391. height: math.unit(2.017, "km")
  54392. },
  54393. ]
  54394. ))
  54395. characterMakers.push(() => makeCharacter(
  54396. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54397. {
  54398. front: {
  54399. height: math.unit(23.47, "cm"),
  54400. weight: math.unit(600, "grams"),
  54401. name: "Front",
  54402. image: {
  54403. source: "./media/characters/diode/front.svg",
  54404. extra: 1778/1396,
  54405. bottom: 95/1873
  54406. }
  54407. },
  54408. side: {
  54409. height: math.unit(23.47, "cm"),
  54410. weight: math.unit(600, "grams"),
  54411. name: "Side",
  54412. image: {
  54413. source: "./media/characters/diode/side.svg",
  54414. extra: 1831/1404,
  54415. bottom: 86/1917
  54416. }
  54417. },
  54418. wings: {
  54419. height: math.unit(0.683, "feet"),
  54420. name: "Wings",
  54421. image: {
  54422. source: "./media/characters/diode/wings.svg"
  54423. }
  54424. },
  54425. },
  54426. [
  54427. {
  54428. name: "Normal",
  54429. height: math.unit(23.47, "cm"),
  54430. default: true
  54431. },
  54432. ]
  54433. ))
  54434. characterMakers.push(() => makeCharacter(
  54435. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54436. {
  54437. front: {
  54438. height: math.unit(6 + 3/12, "feet"),
  54439. weight: math.unit(250, "lb"),
  54440. name: "Front",
  54441. image: {
  54442. source: "./media/characters/reika/front.svg",
  54443. extra: 1120/1078,
  54444. bottom: 86/1206
  54445. }
  54446. },
  54447. },
  54448. [
  54449. {
  54450. name: "Normal",
  54451. height: math.unit(6 + 3/12, "feet"),
  54452. default: true
  54453. },
  54454. ]
  54455. ))
  54456. characterMakers.push(() => makeCharacter(
  54457. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54458. {
  54459. front: {
  54460. height: math.unit(16 + 8/12, "feet"),
  54461. weight: math.unit(9000, "lb"),
  54462. name: "Front",
  54463. image: {
  54464. source: "./media/characters/lokuto-takama/front.svg",
  54465. extra: 1774/1632,
  54466. bottom: 147/1921
  54467. },
  54468. extraAttributes: {
  54469. "bustWidth": {
  54470. name: "Bust Width",
  54471. power: 1,
  54472. type: "length",
  54473. base: math.unit(2.4, "meters")
  54474. },
  54475. "breastWeight": {
  54476. name: "Breast Weight",
  54477. power: 3,
  54478. type: "mass",
  54479. base: math.unit(1000, "kg")
  54480. },
  54481. }
  54482. },
  54483. },
  54484. [
  54485. {
  54486. name: "Normal",
  54487. height: math.unit(16 + 8/12, "feet"),
  54488. default: true
  54489. },
  54490. ]
  54491. ))
  54492. characterMakers.push(() => makeCharacter(
  54493. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54494. {
  54495. front: {
  54496. height: math.unit(10, "cm"),
  54497. weight: math.unit(850, "grams"),
  54498. name: "Front",
  54499. image: {
  54500. source: "./media/characters/owak-bone/front.svg",
  54501. extra: 1965/1801,
  54502. bottom: 31/1996
  54503. }
  54504. },
  54505. },
  54506. [
  54507. {
  54508. name: "Normal",
  54509. height: math.unit(10, "cm"),
  54510. default: true
  54511. },
  54512. ]
  54513. ))
  54514. characterMakers.push(() => makeCharacter(
  54515. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54516. {
  54517. front: {
  54518. height: math.unit(2 + 6/12, "feet"),
  54519. weight: math.unit(9, "lb"),
  54520. name: "Front",
  54521. image: {
  54522. source: "./media/characters/muffin/front.svg",
  54523. extra: 1220/1195,
  54524. bottom: 84/1304
  54525. }
  54526. },
  54527. },
  54528. [
  54529. {
  54530. name: "Normal",
  54531. height: math.unit(2 + 6/12, "feet"),
  54532. default: true
  54533. },
  54534. ]
  54535. ))
  54536. characterMakers.push(() => makeCharacter(
  54537. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54538. {
  54539. front: {
  54540. height: math.unit(7, "feet"),
  54541. name: "Front",
  54542. image: {
  54543. source: "./media/characters/chimera/front.svg",
  54544. extra: 1752/1614,
  54545. bottom: 68/1820
  54546. }
  54547. },
  54548. },
  54549. [
  54550. {
  54551. name: "Normal",
  54552. height: math.unit(7, "feet")
  54553. },
  54554. {
  54555. name: "Gigamacro",
  54556. height: math.unit(2.9, "gigameters"),
  54557. default: true
  54558. },
  54559. {
  54560. name: "Universal",
  54561. height: math.unit(1.56e26, "yottameters")
  54562. },
  54563. ]
  54564. ))
  54565. characterMakers.push(() => makeCharacter(
  54566. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54567. {
  54568. front: {
  54569. height: math.unit(3, "feet"),
  54570. weight: math.unit(20, "lb"),
  54571. name: "Front",
  54572. image: {
  54573. source: "./media/characters/kit-fennec-fox/front.svg",
  54574. extra: 1027/932,
  54575. bottom: 16/1043
  54576. }
  54577. },
  54578. back: {
  54579. height: math.unit(3, "feet"),
  54580. weight: math.unit(20, "lb"),
  54581. name: "Back",
  54582. image: {
  54583. source: "./media/characters/kit-fennec-fox/back.svg",
  54584. extra: 1027/932,
  54585. bottom: 16/1043
  54586. }
  54587. },
  54588. },
  54589. [
  54590. {
  54591. name: "Normal",
  54592. height: math.unit(3, "feet"),
  54593. default: true
  54594. },
  54595. ]
  54596. ))
  54597. characterMakers.push(() => makeCharacter(
  54598. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54599. {
  54600. front: {
  54601. height: math.unit(167, "cm"),
  54602. name: "Front",
  54603. image: {
  54604. source: "./media/characters/blue-otter/front.svg",
  54605. extra: 1951/1920,
  54606. bottom: 31/1982
  54607. }
  54608. },
  54609. },
  54610. [
  54611. {
  54612. name: "Otter-Sized",
  54613. height: math.unit(100, "cm")
  54614. },
  54615. {
  54616. name: "Normal",
  54617. height: math.unit(167, "cm"),
  54618. default: true
  54619. },
  54620. ]
  54621. ))
  54622. characterMakers.push(() => makeCharacter(
  54623. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54624. {
  54625. front: {
  54626. height: math.unit(4 + 4/12, "feet"),
  54627. name: "Front",
  54628. image: {
  54629. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54630. extra: 1072/1067,
  54631. bottom: 117/1189
  54632. }
  54633. },
  54634. back: {
  54635. height: math.unit(4 + 4/12, "feet"),
  54636. name: "Back",
  54637. image: {
  54638. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54639. extra: 1135/1129,
  54640. bottom: 57/1192
  54641. }
  54642. },
  54643. head: {
  54644. height: math.unit(1.77, "feet"),
  54645. name: "Head",
  54646. image: {
  54647. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54648. }
  54649. },
  54650. },
  54651. [
  54652. {
  54653. name: "Normal",
  54654. height: math.unit(4 + 4/12, "feet"),
  54655. default: true
  54656. },
  54657. ]
  54658. ))
  54659. characterMakers.push(() => makeCharacter(
  54660. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54661. {
  54662. front: {
  54663. height: math.unit(2, "inches"),
  54664. name: "Front",
  54665. image: {
  54666. source: "./media/characters/carley-hartford/front.svg",
  54667. extra: 1035/988,
  54668. bottom: 23/1058
  54669. }
  54670. },
  54671. back: {
  54672. height: math.unit(2, "inches"),
  54673. name: "Back",
  54674. image: {
  54675. source: "./media/characters/carley-hartford/back.svg",
  54676. extra: 1035/988,
  54677. bottom: 23/1058
  54678. }
  54679. },
  54680. dressed: {
  54681. height: math.unit(2, "inches"),
  54682. name: "Dressed",
  54683. image: {
  54684. source: "./media/characters/carley-hartford/dressed.svg",
  54685. extra: 651/620,
  54686. bottom: 0/651
  54687. }
  54688. },
  54689. },
  54690. [
  54691. {
  54692. name: "Micro",
  54693. height: math.unit(2, "inches"),
  54694. default: true
  54695. },
  54696. {
  54697. name: "Macro",
  54698. height: math.unit(6 + 3/12, "feet")
  54699. },
  54700. ]
  54701. ))
  54702. characterMakers.push(() => makeCharacter(
  54703. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54704. {
  54705. front: {
  54706. height: math.unit(2 + 3/12, "feet"),
  54707. weight: math.unit(15 + 7/16, "lb"),
  54708. name: "Front",
  54709. image: {
  54710. source: "./media/characters/duke/front.svg",
  54711. extra: 910/815,
  54712. bottom: 30/940
  54713. }
  54714. },
  54715. },
  54716. [
  54717. {
  54718. name: "Normal",
  54719. height: math.unit(2 + 3/12, "feet"),
  54720. default: true
  54721. },
  54722. ]
  54723. ))
  54724. characterMakers.push(() => makeCharacter(
  54725. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54726. {
  54727. front: {
  54728. height: math.unit(5 + 4/12, "feet"),
  54729. weight: math.unit(156, "lb"),
  54730. name: "Front",
  54731. image: {
  54732. source: "./media/characters/dein/front.svg",
  54733. extra: 855/815,
  54734. bottom: 48/903
  54735. }
  54736. },
  54737. side: {
  54738. height: math.unit(5 + 4/12, "feet"),
  54739. weight: math.unit(156, "lb"),
  54740. name: "side",
  54741. image: {
  54742. source: "./media/characters/dein/side.svg",
  54743. extra: 846/803,
  54744. bottom: 25/871
  54745. }
  54746. },
  54747. maw: {
  54748. height: math.unit(1.45, "feet"),
  54749. name: "Maw",
  54750. image: {
  54751. source: "./media/characters/dein/maw.svg"
  54752. }
  54753. },
  54754. },
  54755. [
  54756. {
  54757. name: "Ferret Sized",
  54758. height: math.unit(2 + 5/12, "feet")
  54759. },
  54760. {
  54761. name: "Normal",
  54762. height: math.unit(5 + 4/12, "feet"),
  54763. default: true
  54764. },
  54765. ]
  54766. ))
  54767. characterMakers.push(() => makeCharacter(
  54768. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54769. {
  54770. front: {
  54771. height: math.unit(84 + 8/12, "feet"),
  54772. weight: math.unit(942180, "lb"),
  54773. name: "Front",
  54774. image: {
  54775. source: "./media/characters/daurine-arima/front.svg",
  54776. extra: 1989/1782,
  54777. bottom: 37/2026
  54778. }
  54779. },
  54780. side: {
  54781. height: math.unit(84 + 8/12, "feet"),
  54782. weight: math.unit(942180, "lb"),
  54783. name: "Side",
  54784. image: {
  54785. source: "./media/characters/daurine-arima/side.svg",
  54786. extra: 1997/1790,
  54787. bottom: 21/2018
  54788. }
  54789. },
  54790. back: {
  54791. height: math.unit(84 + 8/12, "feet"),
  54792. weight: math.unit(942180, "lb"),
  54793. name: "Back",
  54794. image: {
  54795. source: "./media/characters/daurine-arima/back.svg",
  54796. extra: 1992/1800,
  54797. bottom: 12/2004
  54798. }
  54799. },
  54800. head: {
  54801. height: math.unit(15.5, "feet"),
  54802. name: "Head",
  54803. image: {
  54804. source: "./media/characters/daurine-arima/head.svg"
  54805. }
  54806. },
  54807. headAlt: {
  54808. height: math.unit(19.19, "feet"),
  54809. name: "Head (Alt)",
  54810. image: {
  54811. source: "./media/characters/daurine-arima/head-alt.svg"
  54812. }
  54813. },
  54814. },
  54815. [
  54816. {
  54817. name: "Minimum height",
  54818. height: math.unit(8 + 10/12, "feet")
  54819. },
  54820. {
  54821. name: "Comfort height",
  54822. height: math.unit(19 + 6 /12, "feet")
  54823. },
  54824. {
  54825. name: "\"Normal\" height",
  54826. height: math.unit(28 + 10/12, "feet")
  54827. },
  54828. {
  54829. name: "Base height",
  54830. height: math.unit(84 + 8/12, "feet"),
  54831. default: true
  54832. },
  54833. {
  54834. name: "Mini-macro",
  54835. height: math.unit(2360, "feet")
  54836. },
  54837. {
  54838. name: "Macro",
  54839. height: math.unit(10, "miles")
  54840. },
  54841. {
  54842. name: "Goddess",
  54843. height: math.unit(9.99e40, "yottameters")
  54844. },
  54845. ]
  54846. ))
  54847. characterMakers.push(() => makeCharacter(
  54848. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54849. {
  54850. front: {
  54851. height: math.unit(2.3, "meters"),
  54852. name: "Front",
  54853. image: {
  54854. source: "./media/characters/cilenomon/front.svg",
  54855. extra: 1963/1778,
  54856. bottom: 54/2017
  54857. }
  54858. },
  54859. },
  54860. [
  54861. {
  54862. name: "Normal",
  54863. height: math.unit(2.3, "meters"),
  54864. default: true
  54865. },
  54866. {
  54867. name: "Big",
  54868. height: math.unit(5, "meters")
  54869. },
  54870. {
  54871. name: "Macro",
  54872. height: math.unit(30, "meters")
  54873. },
  54874. {
  54875. name: "True",
  54876. height: math.unit(1, "universe")
  54877. },
  54878. ]
  54879. ))
  54880. characterMakers.push(() => makeCharacter(
  54881. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54882. {
  54883. front: {
  54884. height: math.unit(5, "feet"),
  54885. name: "Front",
  54886. image: {
  54887. source: "./media/characters/sen-mink/front.svg",
  54888. extra: 1727/1675,
  54889. bottom: 35/1762
  54890. }
  54891. },
  54892. },
  54893. [
  54894. {
  54895. name: "Normal",
  54896. height: math.unit(5, "feet"),
  54897. default: true
  54898. },
  54899. ]
  54900. ))
  54901. characterMakers.push(() => makeCharacter(
  54902. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54903. {
  54904. front: {
  54905. height: math.unit(5.42999, "feet"),
  54906. weight: math.unit(100, "lb"),
  54907. name: "Front",
  54908. image: {
  54909. source: "./media/characters/ophois/front.svg",
  54910. extra: 1429/1286,
  54911. bottom: 60/1489
  54912. }
  54913. },
  54914. },
  54915. [
  54916. {
  54917. name: "Normal",
  54918. height: math.unit(5.42999, "feet"),
  54919. default: true
  54920. },
  54921. ]
  54922. ))
  54923. characterMakers.push(() => makeCharacter(
  54924. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54925. {
  54926. front: {
  54927. height: math.unit(2, "meters"),
  54928. name: "Front",
  54929. image: {
  54930. source: "./media/characters/riley/front.svg",
  54931. extra: 1779/1754,
  54932. bottom: 139/1918
  54933. }
  54934. },
  54935. },
  54936. [
  54937. {
  54938. name: "Normal",
  54939. height: math.unit(2, "meters"),
  54940. default: true
  54941. },
  54942. ]
  54943. ))
  54944. characterMakers.push(() => makeCharacter(
  54945. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54946. {
  54947. front: {
  54948. height: math.unit(6 + 2/12, "feet"),
  54949. weight: math.unit(195, "lb"),
  54950. preyCapacity: math.unit(6, "people"),
  54951. name: "Front",
  54952. image: {
  54953. source: "./media/characters/shuken-flash/front.svg",
  54954. extra: 1905/1739,
  54955. bottom: 65/1970
  54956. }
  54957. },
  54958. back: {
  54959. height: math.unit(6 + 2/12, "feet"),
  54960. weight: math.unit(195, "lb"),
  54961. preyCapacity: math.unit(6, "people"),
  54962. name: "Back",
  54963. image: {
  54964. source: "./media/characters/shuken-flash/back.svg",
  54965. extra: 1912/1751,
  54966. bottom: 13/1925
  54967. }
  54968. },
  54969. },
  54970. [
  54971. {
  54972. name: "Normal",
  54973. height: math.unit(6 + 2/12, "feet"),
  54974. default: true
  54975. },
  54976. ]
  54977. ))
  54978. characterMakers.push(() => makeCharacter(
  54979. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54980. {
  54981. front: {
  54982. height: math.unit(5 + 9/12, "feet"),
  54983. weight: math.unit(150, "lb"),
  54984. name: "Front",
  54985. image: {
  54986. source: "./media/characters/plat/front.svg",
  54987. extra: 1816/1703,
  54988. bottom: 43/1859
  54989. }
  54990. },
  54991. side: {
  54992. height: math.unit(5 + 9/12, "feet"),
  54993. weight: math.unit(300, "lb"),
  54994. name: "Side",
  54995. image: {
  54996. source: "./media/characters/plat/side.svg",
  54997. extra: 1824/1699,
  54998. bottom: 18/1842
  54999. }
  55000. },
  55001. },
  55002. [
  55003. {
  55004. name: "Normal",
  55005. height: math.unit(5 + 9/12, "feet"),
  55006. default: true
  55007. },
  55008. ]
  55009. ))
  55010. characterMakers.push(() => makeCharacter(
  55011. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  55012. {
  55013. front: {
  55014. height: math.unit(9, "feet"),
  55015. weight: math.unit(1800, "lb"),
  55016. name: "Front",
  55017. image: {
  55018. source: "./media/characters/elaine/front.svg",
  55019. extra: 1833/1354,
  55020. bottom: 25/1858
  55021. }
  55022. },
  55023. back: {
  55024. height: math.unit(8.8, "feet"),
  55025. weight: math.unit(1800, "lb"),
  55026. name: "Back",
  55027. image: {
  55028. source: "./media/characters/elaine/back.svg",
  55029. extra: 1641/1233,
  55030. bottom: 53/1694
  55031. }
  55032. },
  55033. },
  55034. [
  55035. {
  55036. name: "Normal",
  55037. height: math.unit(9, "feet"),
  55038. default: true
  55039. },
  55040. ]
  55041. ))
  55042. characterMakers.push(() => makeCharacter(
  55043. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  55044. {
  55045. front: {
  55046. height: math.unit(17 + 9/12, "feet"),
  55047. weight: math.unit(8000, "lb"),
  55048. name: "Front",
  55049. image: {
  55050. source: "./media/characters/vera-raven/front.svg",
  55051. extra: 1457/1412,
  55052. bottom: 121/1578
  55053. }
  55054. },
  55055. side: {
  55056. height: math.unit(17 + 9/12, "feet"),
  55057. weight: math.unit(8000, "lb"),
  55058. name: "Side",
  55059. image: {
  55060. source: "./media/characters/vera-raven/side.svg",
  55061. extra: 1510/1464,
  55062. bottom: 54/1564
  55063. }
  55064. },
  55065. },
  55066. [
  55067. {
  55068. name: "Normal",
  55069. height: math.unit(17 + 9/12, "feet"),
  55070. default: true
  55071. },
  55072. ]
  55073. ))
  55074. characterMakers.push(() => makeCharacter(
  55075. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  55076. {
  55077. dressed: {
  55078. height: math.unit(6 + 9/12, "feet"),
  55079. name: "Dressed",
  55080. image: {
  55081. source: "./media/characters/nakisha/dressed.svg",
  55082. extra: 1909/1757,
  55083. bottom: 48/1957
  55084. }
  55085. },
  55086. nude: {
  55087. height: math.unit(6 + 9/12, "feet"),
  55088. name: "Nude",
  55089. image: {
  55090. source: "./media/characters/nakisha/nude.svg",
  55091. extra: 1917/1765,
  55092. bottom: 34/1951
  55093. }
  55094. },
  55095. },
  55096. [
  55097. {
  55098. name: "Normal",
  55099. height: math.unit(6 + 9/12, "feet"),
  55100. default: true
  55101. },
  55102. ]
  55103. ))
  55104. characterMakers.push(() => makeCharacter(
  55105. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  55106. {
  55107. front: {
  55108. height: math.unit(87, "meters"),
  55109. name: "Front",
  55110. image: {
  55111. source: "./media/characters/serafin/front.svg",
  55112. extra: 1919/1776,
  55113. bottom: 65/1984
  55114. }
  55115. },
  55116. },
  55117. [
  55118. {
  55119. name: "Normal",
  55120. height: math.unit(87, "meters"),
  55121. default: true
  55122. },
  55123. ]
  55124. ))
  55125. characterMakers.push(() => makeCharacter(
  55126. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  55127. {
  55128. front: {
  55129. height: math.unit(6, "feet"),
  55130. weight: math.unit(200, "lb"),
  55131. name: "Front",
  55132. image: {
  55133. source: "./media/characters/poptart/front.svg",
  55134. extra: 615/583,
  55135. bottom: 23/638
  55136. }
  55137. },
  55138. back: {
  55139. height: math.unit(6, "feet"),
  55140. weight: math.unit(200, "lb"),
  55141. name: "Back",
  55142. image: {
  55143. source: "./media/characters/poptart/back.svg",
  55144. extra: 617/584,
  55145. bottom: 22/639
  55146. }
  55147. },
  55148. frontNsfw: {
  55149. height: math.unit(6, "feet"),
  55150. weight: math.unit(200, "lb"),
  55151. name: "Front (NSFW)",
  55152. image: {
  55153. source: "./media/characters/poptart/front-nsfw.svg",
  55154. extra: 615/583,
  55155. bottom: 23/638
  55156. }
  55157. },
  55158. backNsfw: {
  55159. height: math.unit(6, "feet"),
  55160. weight: math.unit(200, "lb"),
  55161. name: "Back (NSFW)",
  55162. image: {
  55163. source: "./media/characters/poptart/back-nsfw.svg",
  55164. extra: 617/584,
  55165. bottom: 22/639
  55166. }
  55167. },
  55168. hand: {
  55169. height: math.unit(1.14, "feet"),
  55170. name: "Hand",
  55171. image: {
  55172. source: "./media/characters/poptart/hand.svg"
  55173. }
  55174. },
  55175. foot: {
  55176. height: math.unit(1.5, "feet"),
  55177. name: "Foot",
  55178. image: {
  55179. source: "./media/characters/poptart/foot.svg"
  55180. }
  55181. },
  55182. },
  55183. [
  55184. {
  55185. name: "Normal",
  55186. height: math.unit(6, "feet"),
  55187. default: true
  55188. },
  55189. {
  55190. name: "Grande",
  55191. height: math.unit(350, "feet")
  55192. },
  55193. {
  55194. name: "Massif",
  55195. height: math.unit(967, "feet")
  55196. },
  55197. ]
  55198. ))
  55199. characterMakers.push(() => makeCharacter(
  55200. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55201. {
  55202. hyenaSide: {
  55203. height: math.unit(120, "cm"),
  55204. weight: math.unit(120, "lb"),
  55205. name: "Side",
  55206. image: {
  55207. source: "./media/characters/trance/hyena-side.svg",
  55208. extra: 998/904,
  55209. bottom: 76/1074
  55210. }
  55211. },
  55212. },
  55213. [
  55214. {
  55215. name: "Normal",
  55216. height: math.unit(120, "cm"),
  55217. default: true
  55218. },
  55219. {
  55220. name: "Dire",
  55221. height: math.unit(230, "cm")
  55222. },
  55223. {
  55224. name: "Macro",
  55225. height: math.unit(37, "feet")
  55226. },
  55227. ]
  55228. ))
  55229. characterMakers.push(() => makeCharacter(
  55230. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55231. {
  55232. front: {
  55233. height: math.unit(6 + 3/12, "feet"),
  55234. name: "Front",
  55235. image: {
  55236. source: "./media/characters/michael-berretta/front.svg",
  55237. extra: 515/494,
  55238. bottom: 20/535
  55239. }
  55240. },
  55241. back: {
  55242. height: math.unit(6 + 3/12, "feet"),
  55243. name: "Back",
  55244. image: {
  55245. source: "./media/characters/michael-berretta/back.svg",
  55246. extra: 520/497,
  55247. bottom: 21/541
  55248. }
  55249. },
  55250. frontNsfw: {
  55251. height: math.unit(6 + 3/12, "feet"),
  55252. name: "Front (NSFW)",
  55253. image: {
  55254. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55255. extra: 515/494,
  55256. bottom: 20/535
  55257. }
  55258. },
  55259. dick: {
  55260. height: math.unit(1, "feet"),
  55261. name: "Dick",
  55262. image: {
  55263. source: "./media/characters/michael-berretta/dick.svg"
  55264. }
  55265. },
  55266. },
  55267. [
  55268. {
  55269. name: "Normal",
  55270. height: math.unit(6 + 3/12, "feet"),
  55271. default: true
  55272. },
  55273. {
  55274. name: "Big",
  55275. height: math.unit(12, "feet")
  55276. },
  55277. {
  55278. name: "Macro",
  55279. height: math.unit(187.5, "feet")
  55280. },
  55281. ]
  55282. ))
  55283. characterMakers.push(() => makeCharacter(
  55284. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55285. {
  55286. front: {
  55287. height: math.unit(9 + 9/12, "feet"),
  55288. weight: math.unit(1244, "lb"),
  55289. name: "Front",
  55290. image: {
  55291. source: "./media/characters/stella-edgecomb/front.svg",
  55292. extra: 1835/1706,
  55293. bottom: 49/1884
  55294. }
  55295. },
  55296. pen: {
  55297. height: math.unit(0.95, "feet"),
  55298. name: "Pen",
  55299. image: {
  55300. source: "./media/characters/stella-edgecomb/pen.svg"
  55301. }
  55302. },
  55303. },
  55304. [
  55305. {
  55306. name: "Cozy Bear",
  55307. height: math.unit(0.5, "inches")
  55308. },
  55309. {
  55310. name: "Normal",
  55311. height: math.unit(9 + 9/12, "feet"),
  55312. default: true
  55313. },
  55314. {
  55315. name: "Giga Bear",
  55316. height: math.unit(1, "mile")
  55317. },
  55318. {
  55319. name: "Great Bear",
  55320. height: math.unit(53, "miles")
  55321. },
  55322. {
  55323. name: "Goddess Bear",
  55324. height: math.unit(40000, "miles")
  55325. },
  55326. {
  55327. name: "Sun Bear",
  55328. height: math.unit(900000, "miles")
  55329. },
  55330. ]
  55331. ))
  55332. characterMakers.push(() => makeCharacter(
  55333. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55334. {
  55335. anthroFront: {
  55336. height: math.unit(556, "cm"),
  55337. weight: math.unit(2650, "kg"),
  55338. preyCapacity: math.unit(3, "people"),
  55339. name: "Front",
  55340. image: {
  55341. source: "./media/characters/ash´iika/front.svg",
  55342. extra: 710/673,
  55343. bottom: 15/725
  55344. },
  55345. form: "anthro",
  55346. default: true
  55347. },
  55348. anthroSide: {
  55349. height: math.unit(556, "cm"),
  55350. weight: math.unit(2650, "kg"),
  55351. preyCapacity: math.unit(3, "people"),
  55352. name: "Side",
  55353. image: {
  55354. source: "./media/characters/ash´iika/side.svg",
  55355. extra: 696/676,
  55356. bottom: 13/709
  55357. },
  55358. form: "anthro"
  55359. },
  55360. anthroDressed: {
  55361. height: math.unit(556, "cm"),
  55362. weight: math.unit(2650, "kg"),
  55363. preyCapacity: math.unit(3, "people"),
  55364. name: "Dressed",
  55365. image: {
  55366. source: "./media/characters/ash´iika/dressed.svg",
  55367. extra: 710/673,
  55368. bottom: 15/725
  55369. },
  55370. form: "anthro"
  55371. },
  55372. anthroHead: {
  55373. height: math.unit(3.5, "feet"),
  55374. name: "Head",
  55375. image: {
  55376. source: "./media/characters/ash´iika/head.svg",
  55377. extra: 348/291,
  55378. bottom: 45/393
  55379. },
  55380. form: "anthro"
  55381. },
  55382. feralSide: {
  55383. height: math.unit(870, "cm"),
  55384. weight: math.unit(17500, "kg"),
  55385. preyCapacity: math.unit(15, "people"),
  55386. name: "Side",
  55387. image: {
  55388. source: "./media/characters/ash´iika/feral.svg",
  55389. extra: 595/199,
  55390. bottom: 7/602
  55391. },
  55392. form: "feral",
  55393. default: true,
  55394. },
  55395. },
  55396. [
  55397. {
  55398. name: "Normal",
  55399. height: math.unit(556, "cm"),
  55400. default: true,
  55401. form: "anthro"
  55402. },
  55403. {
  55404. name: "Macro",
  55405. height: math.unit(88, "meters"),
  55406. form: "anthro"
  55407. },
  55408. {
  55409. name: "Normal",
  55410. height: math.unit(870, "cm"),
  55411. default: true,
  55412. form: "feral"
  55413. },
  55414. {
  55415. name: "Large",
  55416. height: math.unit(25, "meters"),
  55417. form: "feral"
  55418. },
  55419. ],
  55420. {
  55421. "anthro": {
  55422. name: "Anthro",
  55423. default: true
  55424. },
  55425. "feral": {
  55426. name: "Feral",
  55427. },
  55428. }
  55429. ))
  55430. characterMakers.push(() => makeCharacter(
  55431. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55432. {
  55433. front: {
  55434. height: math.unit(10, "feet"),
  55435. weight: math.unit(800, "lb"),
  55436. name: "Front",
  55437. image: {
  55438. source: "./media/characters/yen/front.svg",
  55439. extra: 443/411,
  55440. bottom: 6/449
  55441. }
  55442. },
  55443. sleeping: {
  55444. height: math.unit(10, "feet"),
  55445. weight: math.unit(800, "lb"),
  55446. name: "Sleeping",
  55447. image: {
  55448. source: "./media/characters/yen/sleeping.svg",
  55449. extra: 470/422,
  55450. bottom: 0/470
  55451. }
  55452. },
  55453. head: {
  55454. height: math.unit(2.2, "feet"),
  55455. name: "Head",
  55456. image: {
  55457. source: "./media/characters/yen/head.svg"
  55458. }
  55459. },
  55460. headAlt: {
  55461. height: math.unit(2.1, "feet"),
  55462. name: "Head (Alt)",
  55463. image: {
  55464. source: "./media/characters/yen/head-alt.svg"
  55465. }
  55466. },
  55467. },
  55468. [
  55469. {
  55470. name: "Normal",
  55471. height: math.unit(10, "feet"),
  55472. default: true
  55473. },
  55474. ]
  55475. ))
  55476. characterMakers.push(() => makeCharacter(
  55477. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55478. {
  55479. front: {
  55480. height: math.unit(12, "feet"),
  55481. name: "Front",
  55482. image: {
  55483. source: "./media/characters/citra/front.svg",
  55484. extra: 1950/1710,
  55485. bottom: 47/1997
  55486. }
  55487. },
  55488. },
  55489. [
  55490. {
  55491. name: "Normal",
  55492. height: math.unit(12, "feet"),
  55493. default: true
  55494. },
  55495. ]
  55496. ))
  55497. characterMakers.push(() => makeCharacter(
  55498. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55499. {
  55500. side: {
  55501. height: math.unit(7 + 10/12, "feet"),
  55502. name: "Side",
  55503. image: {
  55504. source: "./media/characters/sholstim/side.svg",
  55505. extra: 786/682,
  55506. bottom: 40/826
  55507. }
  55508. },
  55509. },
  55510. [
  55511. {
  55512. name: "Normal",
  55513. height: math.unit(7 + 10/12, "feet"),
  55514. default: true
  55515. },
  55516. ]
  55517. ))
  55518. characterMakers.push(() => makeCharacter(
  55519. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55520. {
  55521. front: {
  55522. height: math.unit(3.10, "meters"),
  55523. name: "Front",
  55524. image: {
  55525. source: "./media/characters/aggyn/front.svg",
  55526. extra: 1188/963,
  55527. bottom: 24/1212
  55528. }
  55529. },
  55530. },
  55531. [
  55532. {
  55533. name: "Normal",
  55534. height: math.unit(3.10, "meters"),
  55535. default: true
  55536. },
  55537. ]
  55538. ))
  55539. characterMakers.push(() => makeCharacter(
  55540. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55541. {
  55542. front: {
  55543. height: math.unit(7 + 5/12, "feet"),
  55544. weight: math.unit(687, "lb"),
  55545. name: "Front",
  55546. image: {
  55547. source: "./media/characters/alsandair-hergenroether/front.svg",
  55548. extra: 1251/1186,
  55549. bottom: 75/1326
  55550. }
  55551. },
  55552. back: {
  55553. height: math.unit(7 + 5/12, "feet"),
  55554. weight: math.unit(687, "lb"),
  55555. name: "Back",
  55556. image: {
  55557. source: "./media/characters/alsandair-hergenroether/back.svg",
  55558. extra: 1290/1229,
  55559. bottom: 17/1307
  55560. }
  55561. },
  55562. },
  55563. [
  55564. {
  55565. name: "Max Compression",
  55566. height: math.unit(7 + 5/12, "feet"),
  55567. default: true
  55568. },
  55569. {
  55570. name: "\"Normal\"",
  55571. height: math.unit(2, "universes")
  55572. },
  55573. ]
  55574. ))
  55575. characterMakers.push(() => makeCharacter(
  55576. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55577. {
  55578. front: {
  55579. height: math.unit(4 + 1/12, "feet"),
  55580. weight: math.unit(92, "lb"),
  55581. name: "Front",
  55582. image: {
  55583. source: "./media/characters/ie/front.svg",
  55584. extra: 1585/1352,
  55585. bottom: 91/1676
  55586. }
  55587. },
  55588. },
  55589. [
  55590. {
  55591. name: "Normal",
  55592. height: math.unit(4 + 1/12, "feet"),
  55593. default: true
  55594. },
  55595. ]
  55596. ))
  55597. characterMakers.push(() => makeCharacter(
  55598. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55599. {
  55600. anthro: {
  55601. height: math.unit(6, "feet"),
  55602. weight: math.unit(150, "lb"),
  55603. name: "Front",
  55604. image: {
  55605. source: "./media/characters/willow/anthro.svg",
  55606. extra: 1073/986,
  55607. bottom: 34/1107
  55608. },
  55609. form: "anthro",
  55610. default: true
  55611. },
  55612. taur: {
  55613. height: math.unit(6, "feet"),
  55614. weight: math.unit(150, "lb"),
  55615. name: "Side",
  55616. image: {
  55617. source: "./media/characters/willow/taur.svg",
  55618. extra: 647/512,
  55619. bottom: 136/783
  55620. },
  55621. form: "taur",
  55622. default: true
  55623. },
  55624. },
  55625. [
  55626. {
  55627. name: "Humanoid",
  55628. height: math.unit(2.7, "meters"),
  55629. form: "anthro"
  55630. },
  55631. {
  55632. name: "Normal",
  55633. height: math.unit(9, "meters"),
  55634. form: "anthro",
  55635. default: true
  55636. },
  55637. {
  55638. name: "Humanoid",
  55639. height: math.unit(2.1, "meters"),
  55640. form: "taur"
  55641. },
  55642. {
  55643. name: "Normal",
  55644. height: math.unit(7, "meters"),
  55645. form: "taur",
  55646. default: true
  55647. },
  55648. ],
  55649. {
  55650. "anthro": {
  55651. name: "Anthro",
  55652. default: true
  55653. },
  55654. "taur": {
  55655. name: "Taur",
  55656. },
  55657. }
  55658. ))
  55659. characterMakers.push(() => makeCharacter(
  55660. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55661. {
  55662. front: {
  55663. height: math.unit(2 + 5/12, "feet"),
  55664. name: "Front",
  55665. image: {
  55666. source: "./media/characters/kyan/front.svg",
  55667. extra: 460/334,
  55668. bottom: 23/483
  55669. },
  55670. extraAttributes: {
  55671. "toeLength": {
  55672. name: "Toe Length",
  55673. power: 1,
  55674. type: "length",
  55675. base: math.unit(7, "cm")
  55676. },
  55677. "toeclawLength": {
  55678. name: "Toeclaw Length",
  55679. power: 1,
  55680. type: "length",
  55681. base: math.unit(4.7, "cm")
  55682. },
  55683. "earHeight": {
  55684. name: "Ear Height",
  55685. power: 1,
  55686. type: "length",
  55687. base: math.unit(14.1, "cm")
  55688. },
  55689. }
  55690. },
  55691. paws: {
  55692. height: math.unit(0.45, "feet"),
  55693. name: "Paws",
  55694. image: {
  55695. source: "./media/characters/kyan/paws.svg",
  55696. extra: 581/581,
  55697. bottom: 114/695
  55698. }
  55699. },
  55700. },
  55701. [
  55702. {
  55703. name: "Normal",
  55704. height: math.unit(2 + 5/12, "feet"),
  55705. default: true
  55706. },
  55707. ]
  55708. ))
  55709. characterMakers.push(() => makeCharacter(
  55710. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55711. {
  55712. front: {
  55713. height: math.unit(2 + 2/3, "feet"),
  55714. name: "Front",
  55715. image: {
  55716. source: "./media/characters/xazzon/front.svg",
  55717. extra: 1109/984,
  55718. bottom: 42/1151
  55719. }
  55720. },
  55721. back: {
  55722. height: math.unit(2 + 2/3, "feet"),
  55723. name: "Back",
  55724. image: {
  55725. source: "./media/characters/xazzon/back.svg",
  55726. extra: 1095/971,
  55727. bottom: 23/1118
  55728. }
  55729. },
  55730. },
  55731. [
  55732. {
  55733. name: "Normal",
  55734. height: math.unit(2 + 2/3, "feet"),
  55735. default: true
  55736. },
  55737. ]
  55738. ))
  55739. characterMakers.push(() => makeCharacter(
  55740. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55741. {
  55742. front: {
  55743. height: math.unit(8, "feet"),
  55744. weight: math.unit(300, "lb"),
  55745. name: "Front",
  55746. image: {
  55747. source: "./media/characters/khyla-shadowsong/front.svg",
  55748. extra: 861/798,
  55749. bottom: 32/893
  55750. }
  55751. },
  55752. side: {
  55753. height: math.unit(8, "feet"),
  55754. weight: math.unit(300, "lb"),
  55755. name: "Side",
  55756. image: {
  55757. source: "./media/characters/khyla-shadowsong/side.svg",
  55758. extra: 790/750,
  55759. bottom: 87/877
  55760. }
  55761. },
  55762. back: {
  55763. height: math.unit(8, "feet"),
  55764. weight: math.unit(300, "lb"),
  55765. name: "Back",
  55766. image: {
  55767. source: "./media/characters/khyla-shadowsong/back.svg",
  55768. extra: 855/808,
  55769. bottom: 14/869
  55770. }
  55771. },
  55772. head: {
  55773. height: math.unit(2.7, "feet"),
  55774. name: "Head",
  55775. image: {
  55776. source: "./media/characters/khyla-shadowsong/head.svg"
  55777. }
  55778. },
  55779. },
  55780. [
  55781. {
  55782. name: "Micro",
  55783. height: math.unit(6, "inches")
  55784. },
  55785. {
  55786. name: "Normal",
  55787. height: math.unit(8, "feet"),
  55788. default: true
  55789. },
  55790. ]
  55791. ))
  55792. characterMakers.push(() => makeCharacter(
  55793. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55794. {
  55795. hyperFront: {
  55796. height: math.unit(9 + 4/12, "feet"),
  55797. weight: math.unit(2000, "lb"),
  55798. name: "Front",
  55799. image: {
  55800. source: "./media/characters/tiden/hyper-front.svg",
  55801. extra: 400/382,
  55802. bottom: 6/406
  55803. },
  55804. form: "hyper",
  55805. },
  55806. regularFront: {
  55807. height: math.unit(7 + 10/12, "feet"),
  55808. weight: math.unit(470, "lb"),
  55809. name: "Front",
  55810. image: {
  55811. source: "./media/characters/tiden/regular-front.svg",
  55812. extra: 468/442,
  55813. bottom: 6/474
  55814. },
  55815. form: "regular",
  55816. },
  55817. },
  55818. [
  55819. {
  55820. name: "Normal",
  55821. height: math.unit(9 + 4/12, "feet"),
  55822. default: true,
  55823. form: "hyper"
  55824. },
  55825. {
  55826. name: "Normal",
  55827. height: math.unit(7 + 10/12, "feet"),
  55828. default: true,
  55829. form: "regular"
  55830. },
  55831. ],
  55832. {
  55833. "hyper": {
  55834. name: "Hyper",
  55835. default: true
  55836. },
  55837. "regular": {
  55838. name: "Regular",
  55839. },
  55840. }
  55841. ))
  55842. characterMakers.push(() => makeCharacter(
  55843. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55844. {
  55845. side: {
  55846. height: math.unit(6, "feet"),
  55847. weight: math.unit(150, "lb"),
  55848. name: "Side",
  55849. image: {
  55850. source: "./media/characters/jason-crowe/side.svg",
  55851. extra: 1771/766,
  55852. bottom: 219/1990
  55853. }
  55854. },
  55855. },
  55856. [
  55857. {
  55858. name: "Pocket Gryphon",
  55859. height: math.unit(6, "cm")
  55860. },
  55861. {
  55862. name: "Raven",
  55863. height: math.unit(60, "cm")
  55864. },
  55865. {
  55866. name: "Normal",
  55867. height: math.unit(1, "meter"),
  55868. default: true
  55869. },
  55870. ]
  55871. ))
  55872. characterMakers.push(() => makeCharacter(
  55873. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55874. {
  55875. front: {
  55876. height: math.unit(9 + 6/12, "feet"),
  55877. weight: math.unit(1100, "lb"),
  55878. name: "Front",
  55879. image: {
  55880. source: "./media/characters/django/front.svg",
  55881. extra: 1231/1136,
  55882. bottom: 34/1265
  55883. }
  55884. },
  55885. side: {
  55886. height: math.unit(9 + 6/12, "feet"),
  55887. weight: math.unit(1100, "lb"),
  55888. name: "Side",
  55889. image: {
  55890. source: "./media/characters/django/side.svg",
  55891. extra: 1267/1174,
  55892. bottom: 9/1276
  55893. }
  55894. },
  55895. },
  55896. [
  55897. {
  55898. name: "Normal",
  55899. height: math.unit(9 + 6/12, "feet"),
  55900. default: true
  55901. },
  55902. {
  55903. name: "Macro 1",
  55904. height: math.unit(50, "feet")
  55905. },
  55906. {
  55907. name: "Macro 2",
  55908. height: math.unit(500, "feet")
  55909. },
  55910. {
  55911. name: "Mega Macro",
  55912. height: math.unit(5300, "feet")
  55913. },
  55914. ]
  55915. ))
  55916. characterMakers.push(() => makeCharacter(
  55917. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55918. {
  55919. frontSfw: {
  55920. height: math.unit(120, "cm"),
  55921. weight: math.unit(15, "kg"),
  55922. name: "Front (SFW)",
  55923. image: {
  55924. source: "./media/characters/eri/front-sfw.svg",
  55925. extra: 1014/939,
  55926. bottom: 37/1051
  55927. },
  55928. form: "moth",
  55929. },
  55930. frontNsfw: {
  55931. height: math.unit(120, "cm"),
  55932. weight: math.unit(15, "kg"),
  55933. name: "Front (NSFW)",
  55934. image: {
  55935. source: "./media/characters/eri/front-nsfw.svg",
  55936. extra: 1014/939,
  55937. bottom: 37/1051
  55938. },
  55939. form: "moth",
  55940. default: true
  55941. },
  55942. egg: {
  55943. height: math.unit(10, "cm"),
  55944. name: "Egg",
  55945. image: {
  55946. source: "./media/characters/eri/egg.svg"
  55947. },
  55948. form: "egg",
  55949. default: true
  55950. },
  55951. },
  55952. [
  55953. {
  55954. name: "Normal",
  55955. height: math.unit(120, "cm"),
  55956. default: true,
  55957. form: "moth"
  55958. },
  55959. {
  55960. name: "Normal",
  55961. height: math.unit(10, "cm"),
  55962. default: true,
  55963. form: "egg"
  55964. },
  55965. ],
  55966. {
  55967. "moth": {
  55968. name: "Moth",
  55969. default: true
  55970. },
  55971. "egg": {
  55972. name: "Egg",
  55973. },
  55974. }
  55975. ))
  55976. characterMakers.push(() => makeCharacter(
  55977. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55978. {
  55979. front: {
  55980. height: math.unit(200, "feet"),
  55981. name: "Front",
  55982. image: {
  55983. source: "./media/characters/bishop-dowser/front.svg",
  55984. extra: 933/868,
  55985. bottom: 106/1039
  55986. }
  55987. },
  55988. },
  55989. [
  55990. {
  55991. name: "Giant",
  55992. height: math.unit(200, "feet"),
  55993. default: true
  55994. },
  55995. ]
  55996. ))
  55997. characterMakers.push(() => makeCharacter(
  55998. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55999. {
  56000. front: {
  56001. height: math.unit(2, "meters"),
  56002. preyCapacity: math.unit(3, "people"),
  56003. name: "Front",
  56004. image: {
  56005. source: "./media/characters/fryra/front.svg",
  56006. extra: 1025/948,
  56007. bottom: 30/1055
  56008. },
  56009. extraAttributes: {
  56010. "breastVolume": {
  56011. name: "Breast Volume",
  56012. power: 3,
  56013. type: "volume",
  56014. base: math.unit(8, "liters")
  56015. },
  56016. }
  56017. },
  56018. back: {
  56019. height: math.unit(2, "meters"),
  56020. preyCapacity: math.unit(3, "people"),
  56021. name: "Back",
  56022. image: {
  56023. source: "./media/characters/fryra/back.svg",
  56024. extra: 993/938,
  56025. bottom: 38/1031
  56026. },
  56027. extraAttributes: {
  56028. "breastVolume": {
  56029. name: "Breast Volume",
  56030. power: 3,
  56031. type: "volume",
  56032. base: math.unit(8, "liters")
  56033. },
  56034. }
  56035. },
  56036. head: {
  56037. height: math.unit(1.33, "feet"),
  56038. name: "Head",
  56039. image: {
  56040. source: "./media/characters/fryra/head.svg"
  56041. }
  56042. },
  56043. maw: {
  56044. height: math.unit(0.56, "feet"),
  56045. name: "Maw",
  56046. image: {
  56047. source: "./media/characters/fryra/maw.svg"
  56048. }
  56049. },
  56050. },
  56051. [
  56052. {
  56053. name: "Micro",
  56054. height: math.unit(5, "cm")
  56055. },
  56056. {
  56057. name: "Normal",
  56058. height: math.unit(2, "meters"),
  56059. default: true
  56060. },
  56061. {
  56062. name: "Small Macro",
  56063. height: math.unit(8, "meters")
  56064. },
  56065. {
  56066. name: "Macro",
  56067. height: math.unit(50, "meters")
  56068. },
  56069. {
  56070. name: "Megamacro",
  56071. height: math.unit(1, "km")
  56072. },
  56073. {
  56074. name: "Planetary",
  56075. height: math.unit(300000, "km")
  56076. },
  56077. {
  56078. name: "Universal",
  56079. height: math.unit(250, "lightyears")
  56080. },
  56081. {
  56082. name: "Fabric of Reality",
  56083. height: math.unit(1000, "multiverses")
  56084. },
  56085. ]
  56086. ))
  56087. characterMakers.push(() => makeCharacter(
  56088. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  56089. {
  56090. frontDressed: {
  56091. height: math.unit(6 + 2/12, "feet"),
  56092. name: "Front (Dressed)",
  56093. image: {
  56094. source: "./media/characters/fiera/front-dressed.svg",
  56095. extra: 1883/1793,
  56096. bottom: 70/1953
  56097. }
  56098. },
  56099. backDressed: {
  56100. height: math.unit(6 + 2/12, "feet"),
  56101. name: "Back (Dressed)",
  56102. image: {
  56103. source: "./media/characters/fiera/back-dressed.svg",
  56104. extra: 1847/1780,
  56105. bottom: 70/1917
  56106. }
  56107. },
  56108. frontNude: {
  56109. height: math.unit(6 + 2/12, "feet"),
  56110. name: "Front (Nude)",
  56111. image: {
  56112. source: "./media/characters/fiera/front-nude.svg",
  56113. extra: 1875/1785,
  56114. bottom: 66/1941
  56115. }
  56116. },
  56117. backNude: {
  56118. height: math.unit(6 + 2/12, "feet"),
  56119. name: "Back (Nude)",
  56120. image: {
  56121. source: "./media/characters/fiera/back-nude.svg",
  56122. extra: 1855/1788,
  56123. bottom: 44/1899
  56124. }
  56125. },
  56126. maw: {
  56127. height: math.unit(1.3, "feet"),
  56128. name: "Maw",
  56129. image: {
  56130. source: "./media/characters/fiera/maw.svg"
  56131. }
  56132. },
  56133. paw: {
  56134. height: math.unit(1, "feet"),
  56135. name: "Paw",
  56136. image: {
  56137. source: "./media/characters/fiera/paw.svg"
  56138. }
  56139. },
  56140. shoe: {
  56141. height: math.unit(1.05, "feet"),
  56142. name: "Shoe",
  56143. image: {
  56144. source: "./media/characters/fiera/shoe.svg"
  56145. }
  56146. },
  56147. },
  56148. [
  56149. {
  56150. name: "Normal",
  56151. height: math.unit(6 + 2/12, "feet"),
  56152. default: true
  56153. },
  56154. {
  56155. name: "Size Difference",
  56156. height: math.unit(13, "feet")
  56157. },
  56158. {
  56159. name: "Macro",
  56160. height: math.unit(60, "feet")
  56161. },
  56162. {
  56163. name: "Mega Macro",
  56164. height: math.unit(200, "feet")
  56165. },
  56166. ]
  56167. ))
  56168. characterMakers.push(() => makeCharacter(
  56169. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  56170. {
  56171. back: {
  56172. height: math.unit(6, "feet"),
  56173. name: "Back",
  56174. image: {
  56175. source: "./media/characters/flare/back.svg",
  56176. extra: 1883/1765,
  56177. bottom: 32/1915
  56178. }
  56179. },
  56180. },
  56181. [
  56182. {
  56183. name: "Normal",
  56184. height: math.unit(6 + 2/12, "feet"),
  56185. default: true
  56186. },
  56187. {
  56188. name: "Size Difference",
  56189. height: math.unit(13, "feet")
  56190. },
  56191. {
  56192. name: "Macro",
  56193. height: math.unit(60, "feet")
  56194. },
  56195. {
  56196. name: "Macro 2",
  56197. height: math.unit(100, "feet")
  56198. },
  56199. {
  56200. name: "Mega Macro",
  56201. height: math.unit(200, "feet")
  56202. },
  56203. ]
  56204. ))
  56205. characterMakers.push(() => makeCharacter(
  56206. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56207. {
  56208. front: {
  56209. height: math.unit(2.2, "m"),
  56210. weight: math.unit(300, "kg"),
  56211. name: "Front",
  56212. image: {
  56213. source: "./media/characters/hanna/front.svg",
  56214. extra: 1696/1502,
  56215. bottom: 206/1902
  56216. }
  56217. },
  56218. },
  56219. [
  56220. {
  56221. name: "Humanoid",
  56222. height: math.unit(2.2, "meters")
  56223. },
  56224. {
  56225. name: "Normal",
  56226. height: math.unit(4.8, "meters"),
  56227. default: true
  56228. },
  56229. ]
  56230. ))
  56231. characterMakers.push(() => makeCharacter(
  56232. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56233. {
  56234. front: {
  56235. height: math.unit(2.8, "meters"),
  56236. name: "Front",
  56237. image: {
  56238. source: "./media/characters/argo/front.svg",
  56239. extra: 731/518,
  56240. bottom: 84/815
  56241. }
  56242. },
  56243. },
  56244. [
  56245. {
  56246. name: "Normal",
  56247. height: math.unit(3, "meters"),
  56248. default: true
  56249. },
  56250. ]
  56251. ))
  56252. characterMakers.push(() => makeCharacter(
  56253. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56254. {
  56255. side: {
  56256. height: math.unit(3.8, "meters"),
  56257. name: "Side",
  56258. image: {
  56259. source: "./media/characters/sybil/side.svg",
  56260. extra: 382/361,
  56261. bottom: 25/407
  56262. }
  56263. },
  56264. },
  56265. [
  56266. {
  56267. name: "Normal",
  56268. height: math.unit(3.8, "meters"),
  56269. default: true
  56270. },
  56271. ]
  56272. ))
  56273. characterMakers.push(() => makeCharacter(
  56274. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56275. {
  56276. side: {
  56277. height: math.unit(6, "meters"),
  56278. name: "Side",
  56279. image: {
  56280. source: "./media/characters/plum/side.svg",
  56281. extra: 858/755,
  56282. bottom: 45/903
  56283. },
  56284. form: "taur",
  56285. default: true
  56286. },
  56287. back: {
  56288. height: math.unit(6.3, "meters"),
  56289. name: "Back",
  56290. image: {
  56291. source: "./media/characters/plum/back.svg",
  56292. extra: 887/813,
  56293. bottom: 32/919
  56294. },
  56295. form: "taur",
  56296. },
  56297. feral: {
  56298. height: math.unit(5.5, "meter"),
  56299. name: "Front",
  56300. image: {
  56301. source: "./media/characters/plum/feral.svg",
  56302. extra: 568/403,
  56303. bottom: 51/619
  56304. },
  56305. form: "feral",
  56306. default: true
  56307. },
  56308. head: {
  56309. height: math.unit(1.46, "meter"),
  56310. name: "Head",
  56311. image: {
  56312. source: "./media/characters/plum/head.svg"
  56313. },
  56314. form: "taur"
  56315. },
  56316. tailTop: {
  56317. height: math.unit(5.6, "meter"),
  56318. name: "Tail (Top)",
  56319. image: {
  56320. source: "./media/characters/plum/tail-top.svg"
  56321. },
  56322. form: "taur",
  56323. },
  56324. tailBottom: {
  56325. height: math.unit(5.6, "meter"),
  56326. name: "Tail (Bottom)",
  56327. image: {
  56328. source: "./media/characters/plum/tail-bottom.svg"
  56329. },
  56330. form: "taur",
  56331. },
  56332. feralHead: {
  56333. height: math.unit(2.56549521, "meter"),
  56334. name: "Head",
  56335. image: {
  56336. source: "./media/characters/plum/head.svg"
  56337. },
  56338. form: "feral"
  56339. },
  56340. feralTailTop: {
  56341. height: math.unit(5.44728435, "meter"),
  56342. name: "Tail (Top)",
  56343. image: {
  56344. source: "./media/characters/plum/tail-top.svg"
  56345. },
  56346. form: "feral",
  56347. },
  56348. feralTailBottom: {
  56349. height: math.unit(5.44728435, "meter"),
  56350. name: "Tail (Bottom)",
  56351. image: {
  56352. source: "./media/characters/plum/tail-bottom.svg"
  56353. },
  56354. form: "feral",
  56355. },
  56356. },
  56357. [
  56358. {
  56359. name: "Normal",
  56360. height: math.unit(6, "meters"),
  56361. default: true,
  56362. form: "taur"
  56363. },
  56364. {
  56365. name: "Normal",
  56366. height: math.unit(5.5, "meters"),
  56367. default: true,
  56368. form: "feral"
  56369. },
  56370. ],
  56371. {
  56372. "taur": {
  56373. name: "Taur",
  56374. default: true
  56375. },
  56376. "feral": {
  56377. name: "Feral",
  56378. },
  56379. }
  56380. ))
  56381. characterMakers.push(() => makeCharacter(
  56382. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56383. {
  56384. front: {
  56385. height: math.unit(6, "feet"),
  56386. weight: math.unit(115, "lb"),
  56387. name: "Front",
  56388. image: {
  56389. source: "./media/characters/celeste-kitsune/front.svg",
  56390. extra: 393/366,
  56391. bottom: 7/400
  56392. }
  56393. },
  56394. side: {
  56395. height: math.unit(6, "feet"),
  56396. weight: math.unit(115, "lb"),
  56397. name: "Side",
  56398. image: {
  56399. source: "./media/characters/celeste-kitsune/side.svg",
  56400. extra: 818/765,
  56401. bottom: 40/858
  56402. }
  56403. },
  56404. },
  56405. [
  56406. {
  56407. name: "Megamacro",
  56408. height: math.unit(1500, "miles"),
  56409. default: true
  56410. },
  56411. ]
  56412. ))
  56413. characterMakers.push(() => makeCharacter(
  56414. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56415. {
  56416. front: {
  56417. height: math.unit(8, "meters"),
  56418. name: "Front",
  56419. image: {
  56420. source: "./media/characters/io/front.svg",
  56421. extra: 865/722,
  56422. bottom: 58/923
  56423. }
  56424. },
  56425. back: {
  56426. height: math.unit(8, "meters"),
  56427. name: "Back",
  56428. image: {
  56429. source: "./media/characters/io/back.svg",
  56430. extra: 920/776,
  56431. bottom: 42/962
  56432. }
  56433. },
  56434. head: {
  56435. height: math.unit(5.09, "meters"),
  56436. name: "Head",
  56437. image: {
  56438. source: "./media/characters/io/head.svg"
  56439. }
  56440. },
  56441. hand: {
  56442. height: math.unit(1.6, "meters"),
  56443. name: "Hand",
  56444. image: {
  56445. source: "./media/characters/io/hand.svg"
  56446. }
  56447. },
  56448. foot: {
  56449. height: math.unit(2.4, "meters"),
  56450. name: "Foot",
  56451. image: {
  56452. source: "./media/characters/io/foot.svg"
  56453. }
  56454. },
  56455. },
  56456. [
  56457. {
  56458. name: "Normal",
  56459. height: math.unit(8, "meters"),
  56460. default: true
  56461. },
  56462. ]
  56463. ))
  56464. characterMakers.push(() => makeCharacter(
  56465. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56466. {
  56467. side: {
  56468. height: math.unit(6 + 3/12, "feet"),
  56469. weight: math.unit(225, "lb"),
  56470. name: "Side",
  56471. image: {
  56472. source: "./media/characters/silas/side.svg",
  56473. extra: 703/653,
  56474. bottom: 23/726
  56475. },
  56476. extraAttributes: {
  56477. "pawLength": {
  56478. name: "Paw Length",
  56479. power: 1,
  56480. type: "length",
  56481. base: math.unit(12, "inches")
  56482. },
  56483. "pawWidth": {
  56484. name: "Paw Width",
  56485. power: 1,
  56486. type: "length",
  56487. base: math.unit(4.5, "inches")
  56488. },
  56489. "pawArea": {
  56490. name: "Paw Area",
  56491. power: 2,
  56492. type: "area",
  56493. base: math.unit(12 * 4.5, "inches^2")
  56494. },
  56495. }
  56496. },
  56497. },
  56498. [
  56499. {
  56500. name: "Normal",
  56501. height: math.unit(6 + 3/12, "feet"),
  56502. default: true
  56503. },
  56504. ]
  56505. ))
  56506. characterMakers.push(() => makeCharacter(
  56507. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56508. {
  56509. back: {
  56510. height: math.unit(1.6, "meters"),
  56511. weight: math.unit(150, "lb"),
  56512. name: "Back",
  56513. image: {
  56514. source: "./media/characters/zari/back.svg",
  56515. extra: 424/411,
  56516. bottom: 32/456
  56517. },
  56518. extraAttributes: {
  56519. "bladderCapacity": {
  56520. name: "Bladder Size",
  56521. power: 3,
  56522. type: "volume",
  56523. base: math.unit(500, "mL")
  56524. },
  56525. "bladderFlow": {
  56526. name: "Flow Rate",
  56527. power: 3,
  56528. type: "volume",
  56529. base: math.unit(25, "mL")
  56530. },
  56531. }
  56532. },
  56533. },
  56534. [
  56535. {
  56536. name: "Normal",
  56537. height: math.unit(1.6, "meters"),
  56538. default: true
  56539. },
  56540. ]
  56541. ))
  56542. characterMakers.push(() => makeCharacter(
  56543. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56544. {
  56545. front: {
  56546. height: math.unit(25, "feet"),
  56547. weight: math.unit(5, "tons"),
  56548. name: "Front",
  56549. image: {
  56550. source: "./media/characters/charlie-human/front.svg",
  56551. extra: 1870/1740,
  56552. bottom: 102/1972
  56553. },
  56554. extraAttributes: {
  56555. "dickLength": {
  56556. name: "Dick Length",
  56557. power: 1,
  56558. type: "length",
  56559. base: math.unit(9, "feet")
  56560. },
  56561. }
  56562. },
  56563. back: {
  56564. height: math.unit(25, "feet"),
  56565. weight: math.unit(5, "tons"),
  56566. name: "Back",
  56567. image: {
  56568. source: "./media/characters/charlie-human/back.svg",
  56569. extra: 1858/1733,
  56570. bottom: 105/1963
  56571. },
  56572. extraAttributes: {
  56573. "dickLength": {
  56574. name: "Dick Length",
  56575. power: 1,
  56576. type: "length",
  56577. base: math.unit(9, "feet")
  56578. },
  56579. }
  56580. },
  56581. },
  56582. [
  56583. {
  56584. name: "\"Normal\"",
  56585. height: math.unit(6 + 4/12, "feet")
  56586. },
  56587. {
  56588. name: "Big",
  56589. height: math.unit(25, "feet"),
  56590. default: true
  56591. },
  56592. ]
  56593. ))
  56594. characterMakers.push(() => makeCharacter(
  56595. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56596. {
  56597. front: {
  56598. height: math.unit(6 + 4/12, "feet"),
  56599. weight: math.unit(320, "lb"),
  56600. name: "Front",
  56601. image: {
  56602. source: "./media/characters/ookitsu/front.svg",
  56603. extra: 1160/976,
  56604. bottom: 38/1198
  56605. }
  56606. },
  56607. frontNsfw: {
  56608. height: math.unit(6 + 4/12, "feet"),
  56609. weight: math.unit(320, "lb"),
  56610. name: "Front (NSFW)",
  56611. image: {
  56612. source: "./media/characters/ookitsu/front-nsfw.svg",
  56613. extra: 1160/976,
  56614. bottom: 38/1198
  56615. }
  56616. },
  56617. back: {
  56618. height: math.unit(6 + 4/12, "feet"),
  56619. weight: math.unit(320, "lb"),
  56620. name: "Back",
  56621. image: {
  56622. source: "./media/characters/ookitsu/back.svg",
  56623. extra: 1030/975,
  56624. bottom: 70/1100
  56625. }
  56626. },
  56627. head: {
  56628. height: math.unit(1.79, "feet"),
  56629. name: "Head",
  56630. image: {
  56631. source: "./media/characters/ookitsu/head.svg"
  56632. }
  56633. },
  56634. hand: {
  56635. height: math.unit(0.92, "feet"),
  56636. name: "Hand",
  56637. image: {
  56638. source: "./media/characters/ookitsu/hand.svg"
  56639. }
  56640. },
  56641. tails: {
  56642. height: math.unit(3.3, "feet"),
  56643. name: "Tails",
  56644. image: {
  56645. source: "./media/characters/ookitsu/tails.svg"
  56646. }
  56647. },
  56648. dick: {
  56649. height: math.unit(1.10833, "feet"),
  56650. name: "Dick",
  56651. image: {
  56652. source: "./media/characters/ookitsu/dick.svg"
  56653. }
  56654. },
  56655. },
  56656. [
  56657. {
  56658. name: "Normal",
  56659. height: math.unit(6 + 4/12, "feet"),
  56660. default: true
  56661. },
  56662. {
  56663. name: "Macro",
  56664. height: math.unit(30, "feet")
  56665. },
  56666. ]
  56667. ))
  56668. characterMakers.push(() => makeCharacter(
  56669. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56670. {
  56671. anthroFront: {
  56672. height: math.unit(6, "feet"),
  56673. weight: math.unit(250, "lb"),
  56674. name: "Front",
  56675. image: {
  56676. source: "./media/characters/jhusky/anthro-front.svg",
  56677. extra: 474/439,
  56678. bottom: 7/481
  56679. },
  56680. form: "anthro",
  56681. default: true
  56682. },
  56683. taurSideSfw: {
  56684. height: math.unit(6 + 4/12, "feet"),
  56685. weight: math.unit(500, "lb"),
  56686. name: "Side (SFW)",
  56687. image: {
  56688. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56689. extra: 1741/1629,
  56690. bottom: 196/1937
  56691. },
  56692. form: "taur",
  56693. default: true
  56694. },
  56695. taurSideNsfw: {
  56696. height: math.unit(6 + 4/12, "feet"),
  56697. weight: math.unit(500, "lb"),
  56698. name: "Taur (NSFW)",
  56699. image: {
  56700. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56701. extra: 1741/1629,
  56702. bottom: 196/1937
  56703. },
  56704. form: "taur",
  56705. },
  56706. },
  56707. [
  56708. {
  56709. name: "Huge",
  56710. height: math.unit(500, "feet"),
  56711. form: "anthro"
  56712. },
  56713. {
  56714. name: "Macro",
  56715. height: math.unit(1000, "feet"),
  56716. default: true,
  56717. form: "anthro"
  56718. },
  56719. {
  56720. name: "Megamacro",
  56721. height: math.unit(10000, "feet"),
  56722. form: "anthro"
  56723. },
  56724. {
  56725. name: "Huge",
  56726. height: math.unit(528, "feet"),
  56727. form: "taur"
  56728. },
  56729. {
  56730. name: "Macro",
  56731. height: math.unit(1056, "feet"),
  56732. default: true,
  56733. form: "taur"
  56734. },
  56735. {
  56736. name: "Megamacro",
  56737. height: math.unit(10556, "feet"),
  56738. form: "taur"
  56739. },
  56740. ],
  56741. {
  56742. "anthro": {
  56743. name: "Anthro",
  56744. default: true
  56745. },
  56746. "taur": {
  56747. name: "Taur",
  56748. },
  56749. }
  56750. ))
  56751. characterMakers.push(() => makeCharacter(
  56752. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56753. {
  56754. front: {
  56755. height: math.unit(8, "feet"),
  56756. weight: math.unit(500, "lb"),
  56757. name: "Front",
  56758. image: {
  56759. source: "./media/characters/armail/front.svg",
  56760. extra: 1753/1669,
  56761. bottom: 155/1908
  56762. }
  56763. },
  56764. back: {
  56765. height: math.unit(8, "feet"),
  56766. weight: math.unit(500, "lb"),
  56767. name: "Back",
  56768. image: {
  56769. source: "./media/characters/armail/back.svg",
  56770. extra: 1872/1803,
  56771. bottom: 63/1935
  56772. }
  56773. },
  56774. },
  56775. [
  56776. {
  56777. name: "Micro",
  56778. height: math.unit(0.25, "feet")
  56779. },
  56780. {
  56781. name: "Normal",
  56782. height: math.unit(8, "feet"),
  56783. default: true
  56784. },
  56785. {
  56786. name: "Mini-macro",
  56787. height: math.unit(30, "feet")
  56788. },
  56789. {
  56790. name: "Macro",
  56791. height: math.unit(400, "feet")
  56792. },
  56793. {
  56794. name: "Mega-macro",
  56795. height: math.unit(6000, "feet")
  56796. },
  56797. ]
  56798. ))
  56799. characterMakers.push(() => makeCharacter(
  56800. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56801. {
  56802. front: {
  56803. height: math.unit(6 + 7/12, "feet"),
  56804. weight: math.unit(210, "lb"),
  56805. name: "Front",
  56806. image: {
  56807. source: "./media/characters/wilfred-t-buxton/front.svg",
  56808. extra: 1068/882,
  56809. bottom: 28/1096
  56810. }
  56811. },
  56812. },
  56813. [
  56814. {
  56815. name: "Normal",
  56816. height: math.unit(6 + 7/12, "feet"),
  56817. default: true
  56818. },
  56819. ]
  56820. ))
  56821. characterMakers.push(() => makeCharacter(
  56822. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56823. {
  56824. front: {
  56825. height: math.unit(5 + 2/12, "feet"),
  56826. weight: math.unit(120, "lb"),
  56827. name: "Front",
  56828. image: {
  56829. source: "./media/characters/leighton-marrow/front.svg",
  56830. extra: 441/409,
  56831. bottom: 37/478
  56832. }
  56833. },
  56834. },
  56835. [
  56836. {
  56837. name: "Normal",
  56838. height: math.unit(5 + 2/12, "feet"),
  56839. default: true
  56840. },
  56841. ]
  56842. ))
  56843. characterMakers.push(() => makeCharacter(
  56844. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56845. {
  56846. front: {
  56847. height: math.unit(4, "meters"),
  56848. weight: math.unit(1200, "kg"),
  56849. name: "Front",
  56850. image: {
  56851. source: "./media/characters/licos/front.svg",
  56852. extra: 1727/1604,
  56853. bottom: 101/1828
  56854. },
  56855. form: "anthro",
  56856. default: true
  56857. },
  56858. taur_side: {
  56859. height: math.unit(20, "meters"),
  56860. weight: math.unit(1100000, "kg"),
  56861. name: "Side",
  56862. image: {
  56863. source: "./media/characters/licos/taur.svg",
  56864. extra: 1158/1091,
  56865. bottom: 80/1238
  56866. },
  56867. form: "taur",
  56868. default: true
  56869. },
  56870. },
  56871. [
  56872. {
  56873. name: "Normal",
  56874. height: math.unit(4, "meters"),
  56875. default: true,
  56876. form: "anthro"
  56877. },
  56878. {
  56879. name: "Normal",
  56880. height: math.unit(20, "meters"),
  56881. default: true,
  56882. form: "taur"
  56883. },
  56884. ],
  56885. {
  56886. "anthro": {
  56887. name: "Anthro",
  56888. default: true
  56889. },
  56890. "taur": {
  56891. name: "Taur",
  56892. },
  56893. }
  56894. ))
  56895. characterMakers.push(() => makeCharacter(
  56896. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56897. {
  56898. front: {
  56899. height: math.unit(10 + 3/12, "feet"),
  56900. name: "Front",
  56901. image: {
  56902. source: "./media/characters/theo-monkey/front.svg",
  56903. extra: 1735/1658,
  56904. bottom: 73/1808
  56905. }
  56906. },
  56907. back: {
  56908. height: math.unit(10 + 3/12, "feet"),
  56909. name: "Back",
  56910. image: {
  56911. source: "./media/characters/theo-monkey/back.svg",
  56912. extra: 1742/1664,
  56913. bottom: 33/1775
  56914. }
  56915. },
  56916. head: {
  56917. height: math.unit(2.29, "feet"),
  56918. name: "Head",
  56919. image: {
  56920. source: "./media/characters/theo-monkey/head.svg"
  56921. }
  56922. },
  56923. handPalm: {
  56924. height: math.unit(1.73, "feet"),
  56925. name: "Hand (Palm)",
  56926. image: {
  56927. source: "./media/characters/theo-monkey/hand-palm.svg"
  56928. }
  56929. },
  56930. handBack: {
  56931. height: math.unit(1.63, "feet"),
  56932. name: "Hand (Back)",
  56933. image: {
  56934. source: "./media/characters/theo-monkey/hand-back.svg"
  56935. }
  56936. },
  56937. footSole: {
  56938. height: math.unit(2.15, "feet"),
  56939. name: "Foot (Sole)",
  56940. image: {
  56941. source: "./media/characters/theo-monkey/foot-sole.svg"
  56942. }
  56943. },
  56944. footSide: {
  56945. height: math.unit(1.6, "feet"),
  56946. name: "Foot (Side)",
  56947. image: {
  56948. source: "./media/characters/theo-monkey/foot-side.svg"
  56949. }
  56950. },
  56951. },
  56952. [
  56953. {
  56954. name: "Normal",
  56955. height: math.unit(10 + 3/12, "feet"),
  56956. default: true
  56957. },
  56958. ]
  56959. ))
  56960. characterMakers.push(() => makeCharacter(
  56961. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56962. {
  56963. front: {
  56964. height: math.unit(11, "feet"),
  56965. weight: math.unit(3000, "lb"),
  56966. preyCapacity: math.unit(10, "people"),
  56967. name: "Front",
  56968. image: {
  56969. source: "./media/characters/brook/front.svg",
  56970. extra: 909/835,
  56971. bottom: 108/1017
  56972. }
  56973. },
  56974. back: {
  56975. height: math.unit(11, "feet"),
  56976. weight: math.unit(3000, "lb"),
  56977. preyCapacity: math.unit(10, "people"),
  56978. name: "Back",
  56979. image: {
  56980. source: "./media/characters/brook/back.svg",
  56981. extra: 976/916,
  56982. bottom: 34/1010
  56983. }
  56984. },
  56985. backAlt: {
  56986. height: math.unit(11, "feet"),
  56987. weight: math.unit(3000, "lb"),
  56988. preyCapacity: math.unit(10, "people"),
  56989. name: "Back (Alt)",
  56990. image: {
  56991. source: "./media/characters/brook/back-alt.svg",
  56992. extra: 1283/1213,
  56993. bottom: 35/1318
  56994. }
  56995. },
  56996. bust: {
  56997. height: math.unit(9.0859030837, "feet"),
  56998. weight: math.unit(3000, "lb"),
  56999. preyCapacity: math.unit(10, "people"),
  57000. name: "Bust",
  57001. image: {
  57002. source: "./media/characters/brook/bust.svg",
  57003. extra: 2043/1923,
  57004. bottom: 0/2043
  57005. }
  57006. },
  57007. },
  57008. [
  57009. {
  57010. name: "Small",
  57011. height: math.unit(11, "feet"),
  57012. default: true
  57013. },
  57014. {
  57015. name: "Towering",
  57016. height: math.unit(5, "km")
  57017. },
  57018. {
  57019. name: "Enormous",
  57020. height: math.unit(25, "earths")
  57021. },
  57022. ]
  57023. ))
  57024. characterMakers.push(() => makeCharacter(
  57025. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  57026. {
  57027. front: {
  57028. height: math.unit(4, "feet"),
  57029. weight: math.unit(150, "lb"),
  57030. name: "Front",
  57031. image: {
  57032. source: "./media/characters/squishi/front.svg",
  57033. extra: 1428/1271,
  57034. bottom: 30/1458
  57035. },
  57036. extraAttributes: {
  57037. "pawSize": {
  57038. name: "Paw Size",
  57039. power: 1,
  57040. type: "length",
  57041. base: math.unit(14, "ShoeSizeMensUS"),
  57042. defaultUnit: "ShoeSizeMensUS"
  57043. },
  57044. }
  57045. },
  57046. side: {
  57047. height: math.unit(4, "feet"),
  57048. weight: math.unit(150, "lb"),
  57049. name: "Side",
  57050. image: {
  57051. source: "./media/characters/squishi/side.svg",
  57052. extra: 1428/1271,
  57053. bottom: 30/1458
  57054. },
  57055. extraAttributes: {
  57056. "pawSize": {
  57057. name: "Paw Size",
  57058. power: 1,
  57059. type: "length",
  57060. base: math.unit(14, "ShoeSizeMensUS"),
  57061. defaultUnit: "ShoeSizeMensUS"
  57062. },
  57063. }
  57064. },
  57065. back: {
  57066. height: math.unit(4, "feet"),
  57067. weight: math.unit(150, "lb"),
  57068. name: "Back",
  57069. image: {
  57070. source: "./media/characters/squishi/back.svg",
  57071. extra: 1428/1271,
  57072. bottom: 30/1458
  57073. },
  57074. extraAttributes: {
  57075. "pawSize": {
  57076. name: "Paw Size",
  57077. power: 1,
  57078. type: "length",
  57079. base: math.unit(14, "ShoeSizeMensUS"),
  57080. defaultUnit: "ShoeSizeMensUS"
  57081. },
  57082. }
  57083. },
  57084. },
  57085. [
  57086. {
  57087. name: "Normal",
  57088. height: math.unit(4, "feet"),
  57089. default: true
  57090. },
  57091. ]
  57092. ))
  57093. characterMakers.push(() => makeCharacter(
  57094. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  57095. {
  57096. front: {
  57097. height: math.unit(7 + 8/12, "feet"),
  57098. weight: math.unit(333, "lb"),
  57099. name: "Front",
  57100. image: {
  57101. source: "./media/characters/vincent-vasroc/front.svg",
  57102. extra: 1962/1860,
  57103. bottom: 41/2003
  57104. }
  57105. },
  57106. back: {
  57107. height: math.unit(7 + 8/12, "feet"),
  57108. weight: math.unit(333, "lb"),
  57109. name: "Back",
  57110. image: {
  57111. source: "./media/characters/vincent-vasroc/back.svg",
  57112. extra: 1952/1815,
  57113. bottom: 33/1985
  57114. }
  57115. },
  57116. paw: {
  57117. height: math.unit(1.24, "feet"),
  57118. name: "Paw",
  57119. image: {
  57120. source: "./media/characters/vincent-vasroc/paw.svg"
  57121. }
  57122. },
  57123. ear: {
  57124. height: math.unit(0.75, "feet"),
  57125. name: "Ear",
  57126. image: {
  57127. source: "./media/characters/vincent-vasroc/ear.svg"
  57128. }
  57129. },
  57130. },
  57131. [
  57132. {
  57133. name: "Nano",
  57134. height: math.unit(92, "micrometers")
  57135. },
  57136. {
  57137. name: "Normal",
  57138. height: math.unit(7 + 8/12, "feet"),
  57139. default: true
  57140. },
  57141. ]
  57142. ))
  57143. characterMakers.push(() => makeCharacter(
  57144. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  57145. {
  57146. frontNsfw: {
  57147. height: math.unit(40, "feet"),
  57148. weight: math.unit(58, "tons"),
  57149. name: "Front (NSFW)",
  57150. image: {
  57151. source: "./media/characters/ru-kahn/front-nsfw.svg",
  57152. extra: 1265/965,
  57153. bottom: 155/1420
  57154. }
  57155. },
  57156. frontSfw: {
  57157. height: math.unit(40, "feet"),
  57158. weight: math.unit(58, "tons"),
  57159. name: "Front (SFW)",
  57160. image: {
  57161. source: "./media/characters/ru-kahn/front-sfw.svg",
  57162. extra: 1265/965,
  57163. bottom: 80/1345
  57164. }
  57165. },
  57166. },
  57167. [
  57168. {
  57169. name: "Small",
  57170. height: math.unit(4, "feet")
  57171. },
  57172. {
  57173. name: "Normal",
  57174. height: math.unit(40, "feet"),
  57175. default: true
  57176. },
  57177. {
  57178. name: "Macro",
  57179. height: math.unit(400, "feet")
  57180. },
  57181. ]
  57182. ))
  57183. characterMakers.push(() => makeCharacter(
  57184. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  57185. {
  57186. frontNude: {
  57187. height: math.unit(6 + 5/12, "feet"),
  57188. name: "Front (Nude)",
  57189. image: {
  57190. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57191. extra: 1369/1366,
  57192. bottom: 68/1437
  57193. }
  57194. },
  57195. frontDressed: {
  57196. height: math.unit(6 + 5/12, "feet"),
  57197. name: "Front (Dressed)",
  57198. image: {
  57199. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57200. extra: 1369/1366,
  57201. bottom: 68/1437
  57202. }
  57203. },
  57204. },
  57205. [
  57206. {
  57207. name: "Normal",
  57208. height: math.unit(6 + 5/12, "feet"),
  57209. default: true
  57210. },
  57211. {
  57212. name: "Maximum",
  57213. height: math.unit(1930, "feet")
  57214. },
  57215. ]
  57216. ))
  57217. characterMakers.push(() => makeCharacter(
  57218. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57219. {
  57220. front: {
  57221. height: math.unit(5 + 6/12, "feet"),
  57222. name: "Front",
  57223. image: {
  57224. source: "./media/characters/kaja/front.svg",
  57225. extra: 1874/1514,
  57226. bottom: 117/1991
  57227. }
  57228. },
  57229. },
  57230. [
  57231. {
  57232. name: "Normal",
  57233. height: math.unit(5 + 6/12, "feet"),
  57234. default: true
  57235. },
  57236. ]
  57237. ))
  57238. characterMakers.push(() => makeCharacter(
  57239. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57240. {
  57241. front: {
  57242. height: math.unit(5 + 9/12, "feet"),
  57243. weight: math.unit(200, "lb"),
  57244. name: "Front",
  57245. image: {
  57246. source: "./media/characters/mark-smith/front.svg",
  57247. extra: 1004/943,
  57248. bottom: 58/1062
  57249. }
  57250. },
  57251. back: {
  57252. height: math.unit(5 + 9/12, "feet"),
  57253. weight: math.unit(200, "lb"),
  57254. name: "Back",
  57255. image: {
  57256. source: "./media/characters/mark-smith/back.svg",
  57257. extra: 1023/953,
  57258. bottom: 24/1047
  57259. }
  57260. },
  57261. head: {
  57262. height: math.unit(1.82, "feet"),
  57263. name: "Head",
  57264. image: {
  57265. source: "./media/characters/mark-smith/head.svg"
  57266. }
  57267. },
  57268. hand: {
  57269. height: math.unit(1.4, "feet"),
  57270. name: "Hand",
  57271. image: {
  57272. source: "./media/characters/mark-smith/hand.svg"
  57273. }
  57274. },
  57275. paw: {
  57276. height: math.unit(1.69, "feet"),
  57277. name: "Paw",
  57278. image: {
  57279. source: "./media/characters/mark-smith/paw.svg"
  57280. }
  57281. },
  57282. },
  57283. [
  57284. {
  57285. name: "Micro",
  57286. height: math.unit(0.25, "inches")
  57287. },
  57288. {
  57289. name: "Normal",
  57290. height: math.unit(5 + 9/12, "feet"),
  57291. default: true
  57292. },
  57293. {
  57294. name: "Macro",
  57295. height: math.unit(500, "feet")
  57296. },
  57297. ]
  57298. ))
  57299. characterMakers.push(() => makeCharacter(
  57300. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57301. {
  57302. frontNude: {
  57303. height: math.unit(6, "feet"),
  57304. name: "Front (Nude)",
  57305. image: {
  57306. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57307. extra: 1384/1321,
  57308. bottom: 57/1441
  57309. }
  57310. },
  57311. frontDressed: {
  57312. height: math.unit(6, "feet"),
  57313. name: "Front (Dressed)",
  57314. image: {
  57315. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57316. extra: 1384/1321,
  57317. bottom: 57/1441
  57318. }
  57319. },
  57320. },
  57321. [
  57322. {
  57323. name: "Normal",
  57324. height: math.unit(6, "feet"),
  57325. default: true
  57326. },
  57327. {
  57328. name: "Maximum",
  57329. height: math.unit(1776, "feet")
  57330. },
  57331. ]
  57332. ))
  57333. characterMakers.push(() => makeCharacter(
  57334. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57335. {
  57336. front: {
  57337. height: math.unit(2 + 4/12, "feet"),
  57338. weight: math.unit(350, "lb"),
  57339. name: "Front",
  57340. image: {
  57341. source: "./media/characters/devos/front.svg",
  57342. extra: 958/852,
  57343. bottom: 143/1101
  57344. }
  57345. },
  57346. },
  57347. [
  57348. {
  57349. name: "Base",
  57350. height: math.unit(2 + 4/12, "feet"),
  57351. default: true
  57352. },
  57353. ]
  57354. ))
  57355. characterMakers.push(() => makeCharacter(
  57356. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57357. {
  57358. front: {
  57359. height: math.unit(9 + 2/12, "feet"),
  57360. name: "Front",
  57361. image: {
  57362. source: "./media/characters/hiveheart/front.svg",
  57363. extra: 394/364,
  57364. bottom: 65/459
  57365. }
  57366. },
  57367. back: {
  57368. height: math.unit(9 + 2/12, "feet"),
  57369. name: "Back",
  57370. image: {
  57371. source: "./media/characters/hiveheart/back.svg",
  57372. extra: 374/357,
  57373. bottom: 63/437
  57374. }
  57375. },
  57376. },
  57377. [
  57378. {
  57379. name: "Base",
  57380. height: math.unit(9 + 2/12, "feet"),
  57381. default: true
  57382. },
  57383. ]
  57384. ))
  57385. characterMakers.push(() => makeCharacter(
  57386. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57387. {
  57388. front: {
  57389. height: math.unit(2.5, "inches"),
  57390. weight: math.unit(0.6, "oz"),
  57391. name: "Front",
  57392. image: {
  57393. source: "./media/characters/bryn/front.svg",
  57394. extra: 1484/1119,
  57395. bottom: 66/1550
  57396. }
  57397. },
  57398. back: {
  57399. height: math.unit(2.5, "inches"),
  57400. weight: math.unit(0.6, "oz"),
  57401. name: "Back",
  57402. image: {
  57403. source: "./media/characters/bryn/back.svg",
  57404. extra: 1472/1170,
  57405. bottom: 32/1504
  57406. }
  57407. },
  57408. wings: {
  57409. height: math.unit(2.5, "inches"),
  57410. weight: math.unit(0.6, "oz"),
  57411. name: "Wings",
  57412. image: {
  57413. source: "./media/characters/bryn/wings.svg",
  57414. extra: 567/448,
  57415. bottom: 10/577
  57416. }
  57417. },
  57418. dressed: {
  57419. height: math.unit(2.5, "inches"),
  57420. weight: math.unit(0.6, "oz"),
  57421. name: "Dressed",
  57422. image: {
  57423. source: "./media/characters/bryn/dressed.svg",
  57424. extra: 719/589,
  57425. bottom: 54/773
  57426. }
  57427. },
  57428. head: {
  57429. height: math.unit(1.75, "inches"),
  57430. name: "Head",
  57431. image: {
  57432. source: "./media/characters/bryn/head.svg"
  57433. }
  57434. },
  57435. foot: {
  57436. height: math.unit(0.4, "inches"),
  57437. name: "Foot",
  57438. image: {
  57439. source: "./media/characters/bryn/foot.svg"
  57440. }
  57441. },
  57442. },
  57443. [
  57444. {
  57445. name: "Normal",
  57446. height: math.unit(2.5, "inches"),
  57447. default: true
  57448. },
  57449. ]
  57450. ))
  57451. characterMakers.push(() => makeCharacter(
  57452. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57453. {
  57454. side: {
  57455. height: math.unit(7, "feet"),
  57456. weight: math.unit(657, "kg"),
  57457. name: "Side",
  57458. image: {
  57459. source: "./media/characters/delta/side.svg",
  57460. extra: 781/212,
  57461. bottom: 7/788
  57462. },
  57463. extraAttributes: {
  57464. "wingspan": {
  57465. name: "Wingspan",
  57466. power: 1,
  57467. type: "length",
  57468. base: math.unit(48, "feet")
  57469. },
  57470. "length": {
  57471. name: "Length",
  57472. power: 1,
  57473. type: "length",
  57474. base: math.unit(21, "feet")
  57475. },
  57476. "pawSize": {
  57477. name: "Paw Size",
  57478. power: 2,
  57479. type: "area",
  57480. base: math.unit(1.5*1.4, "feet^2")
  57481. },
  57482. }
  57483. },
  57484. },
  57485. [
  57486. {
  57487. name: "Normal",
  57488. height: math.unit(6, "feet"),
  57489. default: true
  57490. },
  57491. ]
  57492. ))
  57493. characterMakers.push(() => makeCharacter(
  57494. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57495. {
  57496. front: {
  57497. height: math.unit(6, "feet"),
  57498. name: "Front",
  57499. image: {
  57500. source: "./media/characters/pyrow/front.svg",
  57501. extra: 513/486,
  57502. bottom: 14/527
  57503. }
  57504. },
  57505. frontWing: {
  57506. height: math.unit(6, "feet"),
  57507. name: "Front (Wing)",
  57508. image: {
  57509. source: "./media/characters/pyrow/front-wing.svg",
  57510. extra: 539/383,
  57511. bottom: 20/559
  57512. }
  57513. },
  57514. back: {
  57515. height: math.unit(6, "feet"),
  57516. name: "Back",
  57517. image: {
  57518. source: "./media/characters/pyrow/back.svg",
  57519. extra: 500/473,
  57520. bottom: 9/509
  57521. }
  57522. },
  57523. },
  57524. [
  57525. {
  57526. name: "Normal",
  57527. height: math.unit(6, "feet"),
  57528. default: true
  57529. },
  57530. ]
  57531. ))
  57532. characterMakers.push(() => makeCharacter(
  57533. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57534. {
  57535. front: {
  57536. height: math.unit(5, "meters"),
  57537. weight: math.unit(3, "tonnes"),
  57538. name: "Front",
  57539. image: {
  57540. source: "./media/characters/velikan/front.svg",
  57541. extra: 867/744,
  57542. bottom: 71/938
  57543. },
  57544. extraAttributes: {
  57545. "shoeSize": {
  57546. name: "Shoe Size",
  57547. power: 1,
  57548. type: "length",
  57549. base: math.unit(135, "ShoeSizeUK"),
  57550. defaultUnit: "ShoeSizeUK"
  57551. },
  57552. }
  57553. },
  57554. },
  57555. [
  57556. {
  57557. name: "Normal",
  57558. height: math.unit(5, "meters"),
  57559. default: true
  57560. },
  57561. {
  57562. name: "Macro",
  57563. height: math.unit(1, "km")
  57564. },
  57565. {
  57566. name: "Mega Macro",
  57567. height: math.unit(100, "km")
  57568. },
  57569. {
  57570. name: "Giga Macro",
  57571. height: math.unit(2, "megameters")
  57572. },
  57573. {
  57574. name: "Planetary",
  57575. height: math.unit(22, "megameters")
  57576. },
  57577. {
  57578. name: "Solar",
  57579. height: math.unit(8, "gigameters")
  57580. },
  57581. {
  57582. name: "Cosmic",
  57583. height: math.unit(10, "zettameters")
  57584. },
  57585. {
  57586. name: "Omni",
  57587. height: math.unit(9e260, "multiverses")
  57588. },
  57589. ]
  57590. ))
  57591. characterMakers.push(() => makeCharacter(
  57592. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57593. {
  57594. front: {
  57595. height: math.unit(4 + 3/12, "feet"),
  57596. weight: math.unit(90, "lb"),
  57597. name: "Front",
  57598. image: {
  57599. source: "./media/characters/sabiki/front.svg",
  57600. extra: 1662/1423,
  57601. bottom: 65/1727
  57602. }
  57603. },
  57604. },
  57605. [
  57606. {
  57607. name: "Normal",
  57608. height: math.unit(4 + 3/12, "feet"),
  57609. default: true
  57610. },
  57611. ]
  57612. ))
  57613. characterMakers.push(() => makeCharacter(
  57614. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57615. {
  57616. frontSfw: {
  57617. height: math.unit(2, "mm"),
  57618. name: "Front (SFW)",
  57619. image: {
  57620. source: "./media/characters/carmel/front-sfw.svg",
  57621. extra: 1131/1006,
  57622. bottom: 66/1197
  57623. }
  57624. },
  57625. frontNsfw: {
  57626. height: math.unit(2, "mm"),
  57627. name: "Front (NSFW)",
  57628. image: {
  57629. source: "./media/characters/carmel/front-nsfw.svg",
  57630. extra: 1131/1006,
  57631. bottom: 66/1197
  57632. }
  57633. },
  57634. foot: {
  57635. height: math.unit(0.3, "mm"),
  57636. name: "Foot",
  57637. image: {
  57638. source: "./media/characters/carmel/foot.svg"
  57639. }
  57640. },
  57641. tongue: {
  57642. height: math.unit(0.71, "mm"),
  57643. name: "Tongue",
  57644. image: {
  57645. source: "./media/characters/carmel/tongue.svg"
  57646. }
  57647. },
  57648. dick: {
  57649. height: math.unit(0.085, "mm"),
  57650. name: "Dick",
  57651. image: {
  57652. source: "./media/characters/carmel/dick.svg"
  57653. }
  57654. },
  57655. },
  57656. [
  57657. {
  57658. name: "Micro",
  57659. height: math.unit(2, "mm"),
  57660. default: true
  57661. },
  57662. {
  57663. name: "Normal",
  57664. height: math.unit(4 + 8/12, "feet")
  57665. },
  57666. {
  57667. name: "Mega Macro",
  57668. height: math.unit(250, "feet")
  57669. },
  57670. {
  57671. name: "BIGGER",
  57672. height: math.unit(1000, "feet")
  57673. },
  57674. {
  57675. name: "BIGGEST",
  57676. height: math.unit(2, "miles")
  57677. },
  57678. ]
  57679. ))
  57680. characterMakers.push(() => makeCharacter(
  57681. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57682. {
  57683. front: {
  57684. height: math.unit(6.5, "feet"),
  57685. weight: math.unit(198, "lb"),
  57686. name: "Front",
  57687. image: {
  57688. source: "./media/characters/tamani/anthro.svg",
  57689. extra: 930/890,
  57690. bottom: 34/964
  57691. },
  57692. form: "anthro",
  57693. default: true
  57694. },
  57695. side: {
  57696. height: math.unit(6, "feet"),
  57697. weight: math.unit(198*2, "lb"),
  57698. name: "Side",
  57699. image: {
  57700. source: "./media/characters/tamani/feral.svg",
  57701. extra: 559/519,
  57702. bottom: 43/602
  57703. },
  57704. form: "feral"
  57705. },
  57706. },
  57707. [
  57708. {
  57709. name: "Normal",
  57710. height: math.unit(6.5, "feet"),
  57711. default: true,
  57712. form: "anthro"
  57713. },
  57714. {
  57715. name: "Normal",
  57716. height: math.unit(6, "feet"),
  57717. default: true,
  57718. form: "feral"
  57719. },
  57720. ],
  57721. {
  57722. "anthro": {
  57723. name: "Anthro",
  57724. default: true
  57725. },
  57726. "feral": {
  57727. name: "Feral",
  57728. },
  57729. }
  57730. ))
  57731. characterMakers.push(() => makeCharacter(
  57732. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57733. {
  57734. front: {
  57735. height: math.unit(4 + 1/12, "feet"),
  57736. weight: math.unit(114, "lb"),
  57737. name: "Front",
  57738. image: {
  57739. source: "./media/characters/dex/front.svg",
  57740. extra: 787/680,
  57741. bottom: 18/805
  57742. }
  57743. },
  57744. side: {
  57745. height: math.unit(4 + 1/12, "feet"),
  57746. weight: math.unit(114, "lb"),
  57747. name: "Side",
  57748. image: {
  57749. source: "./media/characters/dex/side.svg",
  57750. extra: 785/680,
  57751. bottom: 12/797
  57752. }
  57753. },
  57754. back: {
  57755. height: math.unit(4 + 1/12, "feet"),
  57756. weight: math.unit(114, "lb"),
  57757. name: "Back",
  57758. image: {
  57759. source: "./media/characters/dex/back.svg",
  57760. extra: 785/681,
  57761. bottom: 17/802
  57762. }
  57763. },
  57764. loungewear: {
  57765. height: math.unit(4 + 1/12, "feet"),
  57766. weight: math.unit(114, "lb"),
  57767. name: "Loungewear",
  57768. image: {
  57769. source: "./media/characters/dex/loungewear.svg",
  57770. extra: 787/680,
  57771. bottom: 18/805
  57772. }
  57773. },
  57774. workout: {
  57775. height: math.unit(4 + 1/12, "feet"),
  57776. weight: math.unit(114, "lb"),
  57777. name: "Workout",
  57778. image: {
  57779. source: "./media/characters/dex/workout.svg",
  57780. extra: 787/680,
  57781. bottom: 18/805
  57782. }
  57783. },
  57784. schoolUniform: {
  57785. height: math.unit(4 + 1/12, "feet"),
  57786. weight: math.unit(114, "lb"),
  57787. name: "School Uniform",
  57788. image: {
  57789. source: "./media/characters/dex/school-uniform.svg",
  57790. extra: 787/680,
  57791. bottom: 18/805
  57792. }
  57793. },
  57794. maw: {
  57795. height: math.unit(0.55, "feet"),
  57796. name: "Maw",
  57797. image: {
  57798. source: "./media/characters/dex/maw.svg"
  57799. }
  57800. },
  57801. paw: {
  57802. height: math.unit(0.87, "feet"),
  57803. name: "Paw",
  57804. image: {
  57805. source: "./media/characters/dex/paw.svg"
  57806. }
  57807. },
  57808. bust: {
  57809. height: math.unit(1.67, "feet"),
  57810. name: "Bust",
  57811. image: {
  57812. source: "./media/characters/dex/bust.svg"
  57813. }
  57814. },
  57815. },
  57816. [
  57817. {
  57818. name: "Normal",
  57819. height: math.unit(4 + 1/12, "feet"),
  57820. default: true
  57821. },
  57822. ]
  57823. ))
  57824. characterMakers.push(() => makeCharacter(
  57825. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57826. {
  57827. front: {
  57828. height: math.unit(4 + 3/12, "feet"),
  57829. weight: math.unit(60, "lb"),
  57830. name: "Front",
  57831. image: {
  57832. source: "./media/characters/silke/front.svg",
  57833. extra: 1334/1122,
  57834. bottom: 21/1355
  57835. }
  57836. },
  57837. back: {
  57838. height: math.unit(4 + 3/12, "feet"),
  57839. weight: math.unit(60, "lb"),
  57840. name: "Back",
  57841. image: {
  57842. source: "./media/characters/silke/back.svg",
  57843. extra: 1328/1092,
  57844. bottom: 16/1344
  57845. }
  57846. },
  57847. dressed: {
  57848. height: math.unit(4 + 3/12, "feet"),
  57849. weight: math.unit(60, "lb"),
  57850. name: "Dressed",
  57851. image: {
  57852. source: "./media/characters/silke/dressed.svg",
  57853. extra: 1334/1122,
  57854. bottom: 43/1377
  57855. }
  57856. },
  57857. },
  57858. [
  57859. {
  57860. name: "Normal",
  57861. height: math.unit(4 + 3/12, "feet"),
  57862. default: true
  57863. },
  57864. ]
  57865. ))
  57866. characterMakers.push(() => makeCharacter(
  57867. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57868. {
  57869. front: {
  57870. height: math.unit(1.58, "meters"),
  57871. weight: math.unit(47, "kg"),
  57872. name: "Front",
  57873. image: {
  57874. source: "./media/characters/wireshark/front.svg",
  57875. extra: 883/838,
  57876. bottom: 66/949
  57877. }
  57878. },
  57879. },
  57880. [
  57881. {
  57882. name: "Normal",
  57883. height: math.unit(1.58, "meters"),
  57884. default: true
  57885. },
  57886. ]
  57887. ))
  57888. characterMakers.push(() => makeCharacter(
  57889. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57890. {
  57891. front: {
  57892. height: math.unit(6, "meters"),
  57893. weight: math.unit(15000, "kg"),
  57894. name: "Front",
  57895. image: {
  57896. source: "./media/characters/gallagher/front.svg",
  57897. extra: 532/493,
  57898. bottom: 0/532
  57899. }
  57900. },
  57901. },
  57902. [
  57903. {
  57904. name: "Normal",
  57905. height: math.unit(6, "meters"),
  57906. default: true
  57907. },
  57908. ]
  57909. ))
  57910. characterMakers.push(() => makeCharacter(
  57911. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57912. {
  57913. front: {
  57914. height: math.unit(2.4, "meters"),
  57915. weight: math.unit(270, "kg"),
  57916. name: "Front",
  57917. image: {
  57918. source: "./media/characters/alice/front.svg",
  57919. extra: 950/900,
  57920. bottom: 36/986
  57921. }
  57922. },
  57923. side: {
  57924. height: math.unit(2.4, "meters"),
  57925. weight: math.unit(270, "kg"),
  57926. name: "Side",
  57927. image: {
  57928. source: "./media/characters/alice/side.svg",
  57929. extra: 921/876,
  57930. bottom: 19/940
  57931. }
  57932. },
  57933. dressed: {
  57934. height: math.unit(2.4, "meters"),
  57935. weight: math.unit(270, "kg"),
  57936. name: "Dressed",
  57937. image: {
  57938. source: "./media/characters/alice/dressed.svg",
  57939. extra: 905/850,
  57940. bottom: 81/986
  57941. }
  57942. },
  57943. fishnet: {
  57944. height: math.unit(2.4, "meters"),
  57945. weight: math.unit(270, "kg"),
  57946. name: "Fishnet",
  57947. image: {
  57948. source: "./media/characters/alice/fishnet.svg",
  57949. extra: 905/850,
  57950. bottom: 81/986
  57951. }
  57952. },
  57953. },
  57954. [
  57955. {
  57956. name: "Normal",
  57957. height: math.unit(2.4, "meters"),
  57958. default: true
  57959. },
  57960. ]
  57961. ))
  57962. characterMakers.push(() => makeCharacter(
  57963. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57964. {
  57965. front: {
  57966. height: math.unit(175.25, "feet"),
  57967. name: "Front",
  57968. image: {
  57969. source: "./media/characters/fio/front.svg",
  57970. extra: 1883/1591,
  57971. bottom: 34/1917
  57972. }
  57973. },
  57974. },
  57975. [
  57976. {
  57977. name: "Normal",
  57978. height: math.unit(175.25, "cm"),
  57979. default: true
  57980. },
  57981. ]
  57982. ))
  57983. characterMakers.push(() => makeCharacter(
  57984. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57985. {
  57986. side: {
  57987. height: math.unit(6, "meters"),
  57988. weight: math.unit(3400, "kg"),
  57989. preyCapacity: math.unit(1700, "liters"),
  57990. name: "Side",
  57991. image: {
  57992. source: "./media/characters/hass/side.svg",
  57993. extra: 1058/997,
  57994. bottom: 177/1235
  57995. }
  57996. },
  57997. feeding: {
  57998. height: math.unit(6*0.63, "meters"),
  57999. weight: math.unit(3400, "kg"),
  58000. preyCapacity: math.unit(1700, "liters"),
  58001. name: "Feeding",
  58002. image: {
  58003. source: "./media/characters/hass/feeding.svg",
  58004. extra: 689/579,
  58005. bottom: 146/835
  58006. }
  58007. },
  58008. guts: {
  58009. height: math.unit(6, "meters"),
  58010. weight: math.unit(3400, "kg"),
  58011. name: "Guts",
  58012. image: {
  58013. source: "./media/characters/hass/guts.svg",
  58014. extra: 1223/1198,
  58015. bottom: 182/1405
  58016. }
  58017. },
  58018. dickFront: {
  58019. height: math.unit(1.4, "meters"),
  58020. name: "Dick (Front)",
  58021. image: {
  58022. source: "./media/characters/hass/dick-front.svg"
  58023. }
  58024. },
  58025. dickSide: {
  58026. height: math.unit(1.3, "meters"),
  58027. name: "Dick (Side)",
  58028. image: {
  58029. source: "./media/characters/hass/dick-side.svg"
  58030. }
  58031. },
  58032. dickBack: {
  58033. height: math.unit(1.4, "meters"),
  58034. name: "Dick (Back)",
  58035. image: {
  58036. source: "./media/characters/hass/dick-back.svg"
  58037. }
  58038. },
  58039. },
  58040. [
  58041. {
  58042. name: "Normal",
  58043. height: math.unit(6, "meters"),
  58044. default: true
  58045. },
  58046. ]
  58047. ))
  58048. characterMakers.push(() => makeCharacter(
  58049. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  58050. {
  58051. front: {
  58052. height: math.unit(4, "feet"),
  58053. weight: math.unit(60, "lb"),
  58054. name: "Front",
  58055. image: {
  58056. source: "./media/characters/hickory-finnegan/front.svg",
  58057. extra: 444/411,
  58058. bottom: 10/454
  58059. }
  58060. },
  58061. side: {
  58062. height: math.unit(4, "feet"),
  58063. weight: math.unit(60, "lb"),
  58064. name: "Side",
  58065. image: {
  58066. source: "./media/characters/hickory-finnegan/side.svg",
  58067. extra: 444/411,
  58068. bottom: 10/454
  58069. }
  58070. },
  58071. back: {
  58072. height: math.unit(4, "feet"),
  58073. weight: math.unit(60, "lb"),
  58074. name: "Back",
  58075. image: {
  58076. source: "./media/characters/hickory-finnegan/back.svg",
  58077. extra: 444/411,
  58078. bottom: 10/454
  58079. }
  58080. },
  58081. },
  58082. [
  58083. {
  58084. name: "Normal",
  58085. height: math.unit(4, "feet"),
  58086. default: true
  58087. },
  58088. ]
  58089. ))
  58090. characterMakers.push(() => makeCharacter(
  58091. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  58092. {
  58093. snivy_front: {
  58094. height: math.unit(2, "feet"),
  58095. weight: math.unit(17.9, "lb"),
  58096. name: "Front",
  58097. image: {
  58098. source: "./media/characters/robin-phox/snivy-front.svg",
  58099. extra: 569/504,
  58100. bottom: 33/602
  58101. },
  58102. form: "snivy",
  58103. default: true
  58104. },
  58105. snivy_frontNsfw: {
  58106. height: math.unit(2, "feet"),
  58107. weight: math.unit(17.9, "lb"),
  58108. name: "Front (NSFW)",
  58109. image: {
  58110. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  58111. extra: 569/504,
  58112. bottom: 33/602
  58113. },
  58114. form: "snivy",
  58115. },
  58116. snivy_back: {
  58117. height: math.unit(2, "feet"),
  58118. weight: math.unit(17.9, "lb"),
  58119. name: "Back",
  58120. image: {
  58121. source: "./media/characters/robin-phox/snivy-back.svg",
  58122. extra: 577/508,
  58123. bottom: 21/598
  58124. },
  58125. form: "snivy",
  58126. },
  58127. snivy_foot: {
  58128. height: math.unit(0.68, "feet"),
  58129. name: "Foot",
  58130. image: {
  58131. source: "./media/characters/robin-phox/snivy-foot.svg"
  58132. },
  58133. form: "snivy",
  58134. },
  58135. snivy_sole: {
  58136. height: math.unit(0.68, "feet"),
  58137. name: "Sole",
  58138. image: {
  58139. source: "./media/characters/robin-phox/snivy-sole.svg"
  58140. },
  58141. form: "snivy",
  58142. },
  58143. yoshi_front: {
  58144. height: math.unit(6, "feet"),
  58145. weight: math.unit(150, "lb"),
  58146. name: "Front",
  58147. image: {
  58148. source: "./media/characters/robin-phox/yoshi-front.svg",
  58149. extra: 890/792,
  58150. bottom: 29/919
  58151. },
  58152. form: "yoshi",
  58153. default: true
  58154. },
  58155. yoshi_frontNsfw: {
  58156. height: math.unit(6, "feet"),
  58157. weight: math.unit(150, "lb"),
  58158. name: "Front (NSFW)",
  58159. image: {
  58160. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  58161. extra: 890/792,
  58162. bottom: 29/919
  58163. },
  58164. form: "yoshi",
  58165. },
  58166. yoshi_back: {
  58167. height: math.unit(6, "feet"),
  58168. weight: math.unit(150, "lb"),
  58169. name: "Back",
  58170. image: {
  58171. source: "./media/characters/robin-phox/yoshi-back.svg",
  58172. extra: 890/792,
  58173. bottom: 29/919
  58174. },
  58175. form: "yoshi",
  58176. },
  58177. yoshi_foot: {
  58178. height: math.unit(1.5, "feet"),
  58179. name: "Foot",
  58180. image: {
  58181. source: "./media/characters/robin-phox/yoshi-foot.svg"
  58182. },
  58183. form: "yoshi",
  58184. },
  58185. delphox_front: {
  58186. height: math.unit(4 + 11/12, "feet"),
  58187. weight: math.unit(86, "lb"),
  58188. name: "Front",
  58189. image: {
  58190. source: "./media/characters/robin-phox/delphox-front.svg",
  58191. extra: 1266/1069,
  58192. bottom: 32/1298
  58193. },
  58194. form: "delphox",
  58195. default: true
  58196. },
  58197. delphox_frontNsfw: {
  58198. height: math.unit(4 + 11/12, "feet"),
  58199. weight: math.unit(86, "lb"),
  58200. name: "Front (NSFW)",
  58201. image: {
  58202. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58203. extra: 1266/1069,
  58204. bottom: 32/1298
  58205. },
  58206. form: "delphox",
  58207. },
  58208. delphox_back: {
  58209. height: math.unit(4 + 11/12, "feet"),
  58210. weight: math.unit(86, "lb"),
  58211. name: "Back",
  58212. image: {
  58213. source: "./media/characters/robin-phox/delphox-back.svg",
  58214. extra: 1269/1083,
  58215. bottom: 15/1284
  58216. },
  58217. form: "delphox",
  58218. },
  58219. mienshao_front: {
  58220. height: math.unit(4 + 7/12, "feet"),
  58221. weight: math.unit(78.3, "lb"),
  58222. name: "Front",
  58223. image: {
  58224. source: "./media/characters/robin-phox/mienshao-front.svg",
  58225. extra: 1052/970,
  58226. bottom: 108/1160
  58227. },
  58228. form: "mienshao",
  58229. default: true
  58230. },
  58231. mienshao_frontNsfw: {
  58232. height: math.unit(4 + 7/12, "feet"),
  58233. weight: math.unit(78.3, "lb"),
  58234. name: "Front (NSFW)",
  58235. image: {
  58236. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58237. extra: 1052/970,
  58238. bottom: 108/1160
  58239. },
  58240. form: "mienshao",
  58241. },
  58242. mienshao_back: {
  58243. height: math.unit(4 + 7/12, "feet"),
  58244. weight: math.unit(78.3, "lb"),
  58245. name: "Back",
  58246. image: {
  58247. source: "./media/characters/robin-phox/mienshao-back.svg",
  58248. extra: 1102/982,
  58249. bottom: 32/1134
  58250. },
  58251. form: "mienshao",
  58252. },
  58253. inteleon_front: {
  58254. height: math.unit(6 + 3/12, "feet"),
  58255. weight: math.unit(99.6, "lb"),
  58256. name: "Front",
  58257. image: {
  58258. source: "./media/characters/robin-phox/inteleon-front.svg",
  58259. extra: 910/799,
  58260. bottom: 76/986
  58261. },
  58262. form: "inteleon",
  58263. default: true
  58264. },
  58265. inteleon_frontNsfw: {
  58266. height: math.unit(6 + 3/12, "feet"),
  58267. weight: math.unit(99.6, "lb"),
  58268. name: "Front (NSFW)",
  58269. image: {
  58270. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58271. extra: 910/799,
  58272. bottom: 76/986
  58273. },
  58274. form: "inteleon",
  58275. },
  58276. inteleon_back: {
  58277. height: math.unit(6 + 3/12, "feet"),
  58278. weight: math.unit(99.6, "lb"),
  58279. name: "Back",
  58280. image: {
  58281. source: "./media/characters/robin-phox/inteleon-back.svg",
  58282. extra: 907/796,
  58283. bottom: 25/932
  58284. },
  58285. form: "inteleon",
  58286. },
  58287. reshiram_front: {
  58288. height: math.unit(10 + 6/12, "feet"),
  58289. weight: math.unit(727.5, "lb"),
  58290. name: "Front",
  58291. image: {
  58292. source: "./media/characters/robin-phox/reshiram-front.svg",
  58293. extra: 1198/940,
  58294. bottom: 123/1321
  58295. },
  58296. form: "reshiram",
  58297. },
  58298. reshiram_frontNsfw: {
  58299. height: math.unit(10 + 6/12, "feet"),
  58300. weight: math.unit(727.5, "lb"),
  58301. name: "Front (NSFW)",
  58302. image: {
  58303. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58304. extra: 1198/940,
  58305. bottom: 123/1321
  58306. },
  58307. form: "reshiram",
  58308. },
  58309. reshiram_back: {
  58310. height: math.unit(10 + 6/12, "feet"),
  58311. weight: math.unit(727.5, "lb"),
  58312. name: "Back",
  58313. image: {
  58314. source: "./media/characters/robin-phox/reshiram-back.svg",
  58315. extra: 1024/904,
  58316. bottom: 85/1109
  58317. },
  58318. form: "reshiram",
  58319. },
  58320. samurott_front: {
  58321. height: math.unit(8, "feet"),
  58322. weight: math.unit(208.6, "lb"),
  58323. name: "Front",
  58324. image: {
  58325. source: "./media/characters/robin-phox/samurott-front.svg",
  58326. extra: 1048/984,
  58327. bottom: 100/1148
  58328. },
  58329. form: "samurott",
  58330. },
  58331. samurott_frontNsfw: {
  58332. height: math.unit(8, "feet"),
  58333. weight: math.unit(208.6, "lb"),
  58334. name: "Front NSFW",
  58335. image: {
  58336. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58337. extra: 1048/984,
  58338. bottom: 100/1148
  58339. },
  58340. form: "samurott",
  58341. },
  58342. samurott_back: {
  58343. height: math.unit(8, "feet"),
  58344. weight: math.unit(208.6, "lb"),
  58345. name: "Back",
  58346. image: {
  58347. source: "./media/characters/robin-phox/samurott-back.svg",
  58348. extra: 1110/1042,
  58349. bottom: 12/1122
  58350. },
  58351. form: "samurott",
  58352. },
  58353. samurott_feral: {
  58354. height: math.unit(4 + 11/12, "feet"),
  58355. weight: math.unit(208.6, "lb"),
  58356. name: "Feral",
  58357. image: {
  58358. source: "./media/characters/robin-phox/samurott-feral.svg",
  58359. extra: 766/681,
  58360. bottom: 108/874
  58361. },
  58362. form: "samurott",
  58363. },
  58364. },
  58365. [
  58366. {
  58367. name: "Normal",
  58368. height: math.unit(2, "feet"),
  58369. default: true,
  58370. form: "snivy"
  58371. },
  58372. {
  58373. name: "Normal",
  58374. height: math.unit(6, "feet"),
  58375. default: true,
  58376. form: "yoshi"
  58377. },
  58378. {
  58379. name: "Normal",
  58380. height: math.unit(4 + 11/12, "feet"),
  58381. default: true,
  58382. form: "delphox"
  58383. },
  58384. {
  58385. name: "Normal",
  58386. height: math.unit(4 + 7/12, "feet"),
  58387. default: true,
  58388. form: "mienshao"
  58389. },
  58390. {
  58391. name: "Normal",
  58392. height: math.unit(6 + 3/12, "feet"),
  58393. default: true,
  58394. form: "inteleon"
  58395. },
  58396. {
  58397. name: "Normal",
  58398. height: math.unit(10 + 6/12, "feet"),
  58399. default: true,
  58400. form: "reshiram"
  58401. },
  58402. {
  58403. name: "Normal",
  58404. height: math.unit(8, "feet"),
  58405. default: true,
  58406. form: "samurott"
  58407. },
  58408. {
  58409. name: "Macro",
  58410. height: math.unit(500, "feet"),
  58411. allForms: true
  58412. },
  58413. {
  58414. name: "Mega Macro",
  58415. height: math.unit(10, "earths"),
  58416. allForms: true
  58417. },
  58418. {
  58419. name: "Giga Macro",
  58420. height: math.unit(1, "galaxy"),
  58421. allForms: true
  58422. },
  58423. {
  58424. name: "Godly Macro",
  58425. height: math.unit(1e10, "multiverses"),
  58426. allForms: true
  58427. },
  58428. ],
  58429. {
  58430. "snivy": {
  58431. name: "Snivy",
  58432. default: true
  58433. },
  58434. "yoshi": {
  58435. name: "Yoshi",
  58436. },
  58437. "delphox": {
  58438. name: "Delphox",
  58439. },
  58440. "mienshao": {
  58441. name: "Mienshao",
  58442. },
  58443. "inteleon": {
  58444. name: "Inteleon",
  58445. },
  58446. "reshiram": {
  58447. name: "Reshiram",
  58448. },
  58449. "samurott": {
  58450. name: "Samurott",
  58451. },
  58452. }
  58453. ))
  58454. characterMakers.push(() => makeCharacter(
  58455. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58456. {
  58457. front: {
  58458. height: math.unit(4, "feet"),
  58459. name: "Front",
  58460. image: {
  58461. source: "./media/characters/ash-leung/front.svg",
  58462. extra: 1916/1792,
  58463. bottom: 50/1966
  58464. }
  58465. },
  58466. },
  58467. [
  58468. {
  58469. name: "Atomic",
  58470. height: math.unit(1, "angstrom")
  58471. },
  58472. {
  58473. name: "Microscopic",
  58474. height: math.unit(4000, "angstroms")
  58475. },
  58476. {
  58477. name: "Speck",
  58478. height: math.unit(1, "mm")
  58479. },
  58480. {
  58481. name: "Small",
  58482. height: math.unit(1, "inch")
  58483. },
  58484. {
  58485. name: "Normal",
  58486. height: math.unit(4, "feet"),
  58487. default: true
  58488. },
  58489. ]
  58490. ))
  58491. characterMakers.push(() => makeCharacter(
  58492. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58493. {
  58494. frontDressed: {
  58495. height: math.unit(2.08, "meters"),
  58496. weight: math.unit(175, "lb"),
  58497. name: "Front (Dressed)",
  58498. image: {
  58499. source: "./media/characters/carie/front-dressed.svg",
  58500. extra: 456/417,
  58501. bottom: 7/463
  58502. }
  58503. },
  58504. backDressed: {
  58505. height: math.unit(2.08, "meters"),
  58506. weight: math.unit(175, "lb"),
  58507. name: "Back (Dressed)",
  58508. image: {
  58509. source: "./media/characters/carie/back-dressed.svg",
  58510. extra: 455/414,
  58511. bottom: 11/466
  58512. }
  58513. },
  58514. front: {
  58515. height: math.unit(2, "meters"),
  58516. weight: math.unit(175, "lb"),
  58517. name: "Front",
  58518. image: {
  58519. source: "./media/characters/carie/front.svg",
  58520. extra: 438/399,
  58521. bottom: 12/450
  58522. }
  58523. },
  58524. back: {
  58525. height: math.unit(2, "meters"),
  58526. weight: math.unit(175, "lb"),
  58527. name: "Back",
  58528. image: {
  58529. source: "./media/characters/carie/back.svg",
  58530. extra: 438/397,
  58531. bottom: 7/445
  58532. }
  58533. },
  58534. },
  58535. [
  58536. {
  58537. name: "Normal",
  58538. height: math.unit(2.08, "meters"),
  58539. default: true
  58540. },
  58541. {
  58542. name: "Macro",
  58543. height: math.unit(2.08e3, "meters")
  58544. },
  58545. {
  58546. name: "Mega Macro",
  58547. height: math.unit(2.08e6, "meters")
  58548. },
  58549. {
  58550. name: "Giga Macro",
  58551. height: math.unit(2.08e9, "meters")
  58552. },
  58553. {
  58554. name: "Tera Macro",
  58555. height: math.unit(2.08e12, "meters")
  58556. },
  58557. {
  58558. name: "Peta Macro",
  58559. height: math.unit(2.08e15, "meters")
  58560. },
  58561. {
  58562. name: "Exa Macro",
  58563. height: math.unit(2.08e18, "meters")
  58564. },
  58565. {
  58566. name: "Zetta Macro",
  58567. height: math.unit(2.08e21, "meters")
  58568. },
  58569. {
  58570. name: "Yotta Macro",
  58571. height: math.unit(2.08e24, "meters")
  58572. },
  58573. ]
  58574. ))
  58575. characterMakers.push(() => makeCharacter(
  58576. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58577. {
  58578. front: {
  58579. height: math.unit(5 + 2/12, "feet"),
  58580. weight: math.unit(120, "lb"),
  58581. name: "Front",
  58582. image: {
  58583. source: "./media/characters/sai-bree/front.svg",
  58584. extra: 1843/1702,
  58585. bottom: 91/1934
  58586. }
  58587. },
  58588. back: {
  58589. height: math.unit(5 + 2/12, "feet"),
  58590. weight: math.unit(120, "lb"),
  58591. name: "Back",
  58592. image: {
  58593. source: "./media/characters/sai-bree/back.svg",
  58594. extra: 1809/1637,
  58595. bottom: 56/1865
  58596. }
  58597. },
  58598. },
  58599. [
  58600. {
  58601. name: "Normal",
  58602. height: math.unit(5 + 2/12, "feet"),
  58603. default: true
  58604. },
  58605. {
  58606. name: "Macro",
  58607. height: math.unit(500, "feet")
  58608. },
  58609. ]
  58610. ))
  58611. characterMakers.push(() => makeCharacter(
  58612. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58613. {
  58614. side: {
  58615. height: math.unit(0.77, "meters"),
  58616. weight: math.unit(120, "lb"),
  58617. name: "Side",
  58618. image: {
  58619. source: "./media/characters/davwyn/side.svg",
  58620. extra: 1557/1225,
  58621. bottom: 131/1688
  58622. }
  58623. },
  58624. front: {
  58625. height: math.unit(0.835410, "meters"),
  58626. weight: math.unit(120, "lb"),
  58627. name: "Front",
  58628. image: {
  58629. source: "./media/characters/davwyn/front.svg",
  58630. extra: 870/843,
  58631. bottom: 175/1045
  58632. }
  58633. },
  58634. },
  58635. [
  58636. {
  58637. name: "Minidrake",
  58638. height: math.unit(0.77/4, "meters")
  58639. },
  58640. {
  58641. name: "Normal",
  58642. height: math.unit(0.77, "meters"),
  58643. default: true
  58644. },
  58645. ]
  58646. ))
  58647. characterMakers.push(() => makeCharacter(
  58648. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58649. {
  58650. front: {
  58651. height: math.unit(10 + 3/12, "feet"),
  58652. weight: math.unit(2857, "lb"),
  58653. name: "Front",
  58654. image: {
  58655. source: "./media/characters/balans/front.svg",
  58656. extra: 427/402,
  58657. bottom: 26/453
  58658. }
  58659. },
  58660. side: {
  58661. height: math.unit(10 + 3/12, "feet"),
  58662. weight: math.unit(2857, "lb"),
  58663. name: "Side",
  58664. image: {
  58665. source: "./media/characters/balans/side.svg",
  58666. extra: 397/371,
  58667. bottom: 17/414
  58668. }
  58669. },
  58670. back: {
  58671. height: math.unit(10 + 3/12, "feet"),
  58672. weight: math.unit(2857, "lb"),
  58673. name: "Back",
  58674. image: {
  58675. source: "./media/characters/balans/back.svg",
  58676. extra: 408/381,
  58677. bottom: 14/422
  58678. }
  58679. },
  58680. hand: {
  58681. height: math.unit(1.15, "feet"),
  58682. name: "Hand",
  58683. image: {
  58684. source: "./media/characters/balans/hand.svg"
  58685. }
  58686. },
  58687. footRest: {
  58688. height: math.unit(3.1, "feet"),
  58689. name: "Foot (Rest)",
  58690. image: {
  58691. source: "./media/characters/balans/foot-rest.svg"
  58692. }
  58693. },
  58694. footActive: {
  58695. height: math.unit(3.5, "feet"),
  58696. name: "Foot (Active)",
  58697. image: {
  58698. source: "./media/characters/balans/foot-active.svg"
  58699. }
  58700. },
  58701. },
  58702. [
  58703. {
  58704. name: "Normal",
  58705. height: math.unit(10 + 3/12, "feet"),
  58706. default: true
  58707. },
  58708. ]
  58709. ))
  58710. characterMakers.push(() => makeCharacter(
  58711. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58712. {
  58713. side: {
  58714. height: math.unit(9, "meters"),
  58715. weight: math.unit(114, "tonnes"),
  58716. name: "Side",
  58717. image: {
  58718. source: "./media/characters/eldkveikir/side.svg",
  58719. extra: 1927/338,
  58720. bottom: 42/1969
  58721. }
  58722. },
  58723. sitting: {
  58724. height: math.unit(13.4, "meters"),
  58725. weight: math.unit(114, "tonnes"),
  58726. name: "Sitting",
  58727. image: {
  58728. source: "./media/characters/eldkveikir/sitting.svg",
  58729. extra: 1108/963,
  58730. bottom: 610/1718
  58731. }
  58732. },
  58733. maw: {
  58734. height: math.unit(8.36, "meters"),
  58735. name: "Maw",
  58736. image: {
  58737. source: "./media/characters/eldkveikir/maw.svg"
  58738. }
  58739. },
  58740. hand: {
  58741. height: math.unit(4.84, "meters"),
  58742. name: "Hand",
  58743. image: {
  58744. source: "./media/characters/eldkveikir/hand.svg"
  58745. }
  58746. },
  58747. foot: {
  58748. height: math.unit(6.9, "meters"),
  58749. name: "Foot",
  58750. image: {
  58751. source: "./media/characters/eldkveikir/foot.svg"
  58752. }
  58753. },
  58754. genitals: {
  58755. height: math.unit(9.6, "meters"),
  58756. name: "Genitals",
  58757. image: {
  58758. source: "./media/characters/eldkveikir/genitals.svg"
  58759. }
  58760. },
  58761. },
  58762. [
  58763. {
  58764. name: "Normal",
  58765. height: math.unit(9, "meters"),
  58766. default: true
  58767. },
  58768. ]
  58769. ))
  58770. characterMakers.push(() => makeCharacter(
  58771. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58772. {
  58773. front: {
  58774. height: math.unit(14, "feet"),
  58775. weight: math.unit(4100, "lb"),
  58776. name: "Front",
  58777. image: {
  58778. source: "./media/characters/arrow/front.svg",
  58779. extra: 330/318,
  58780. bottom: 56/386
  58781. }
  58782. },
  58783. },
  58784. [
  58785. {
  58786. name: "Normal",
  58787. height: math.unit(14, "feet"),
  58788. default: true
  58789. },
  58790. {
  58791. name: "Minimacro",
  58792. height: math.unit(63, "feet")
  58793. },
  58794. {
  58795. name: "Macro",
  58796. height: math.unit(630, "feet")
  58797. },
  58798. {
  58799. name: "Megamacro",
  58800. height: math.unit(12600, "feet")
  58801. },
  58802. {
  58803. name: "Gigamacro",
  58804. height: math.unit(18000, "miles")
  58805. },
  58806. ]
  58807. ))
  58808. characterMakers.push(() => makeCharacter(
  58809. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58810. {
  58811. front: {
  58812. height: math.unit(10, "feet"),
  58813. weight: math.unit(2.4, "tons"),
  58814. name: "Front",
  58815. image: {
  58816. source: "./media/characters/3yk-k0-unit/front.svg",
  58817. extra: 573/561,
  58818. bottom: 33/606
  58819. }
  58820. },
  58821. back: {
  58822. height: math.unit(10, "feet"),
  58823. weight: math.unit(2.4, "tons"),
  58824. name: "Back",
  58825. image: {
  58826. source: "./media/characters/3yk-k0-unit/back.svg",
  58827. extra: 614/573,
  58828. bottom: 32/646
  58829. }
  58830. },
  58831. maw: {
  58832. height: math.unit(2.15, "feet"),
  58833. name: "Maw",
  58834. image: {
  58835. source: "./media/characters/3yk-k0-unit/maw.svg"
  58836. }
  58837. },
  58838. },
  58839. [
  58840. {
  58841. name: "Normal",
  58842. height: math.unit(10, "feet"),
  58843. default: true
  58844. },
  58845. ]
  58846. ))
  58847. characterMakers.push(() => makeCharacter(
  58848. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58849. {
  58850. front: {
  58851. height: math.unit(8 + 8/12, "feet"),
  58852. name: "Front",
  58853. image: {
  58854. source: "./media/characters/nemo/front.svg",
  58855. extra: 1308/1217,
  58856. bottom: 57/1365
  58857. }
  58858. },
  58859. },
  58860. [
  58861. {
  58862. name: "Normal",
  58863. height: math.unit(8 + 8/12, "feet"),
  58864. default: true
  58865. },
  58866. ]
  58867. ))
  58868. characterMakers.push(() => makeCharacter(
  58869. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58870. {
  58871. front: {
  58872. height: math.unit(8, "feet"),
  58873. weight: math.unit(760, "lb"),
  58874. name: "Front",
  58875. image: {
  58876. source: "./media/characters/rexx/front.svg",
  58877. extra: 786/750,
  58878. bottom: 17/803
  58879. },
  58880. extraAttributes: {
  58881. "pawLength": {
  58882. name: "Paw Length",
  58883. power: 1,
  58884. type: "length",
  58885. base: math.unit(27, "inches")
  58886. },
  58887. }
  58888. },
  58889. },
  58890. [
  58891. {
  58892. name: "Micro",
  58893. height: math.unit(2, "inches")
  58894. },
  58895. {
  58896. name: "Normal",
  58897. height: math.unit(8, "feet"),
  58898. default: true
  58899. },
  58900. {
  58901. name: "Macro",
  58902. height: math.unit(150, "feet")
  58903. },
  58904. ]
  58905. ))
  58906. characterMakers.push(() => makeCharacter(
  58907. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58908. {
  58909. front: {
  58910. height: math.unit(18, "feet"),
  58911. weight: math.unit(1975, "lb"),
  58912. name: "Front",
  58913. image: {
  58914. source: "./media/characters/draco/front.svg",
  58915. extra: 1325/1241,
  58916. bottom: 83/1408
  58917. }
  58918. },
  58919. back: {
  58920. height: math.unit(18, "feet"),
  58921. weight: math.unit(1975, "lb"),
  58922. name: "Back",
  58923. image: {
  58924. source: "./media/characters/draco/back.svg",
  58925. extra: 1332/1250,
  58926. bottom: 43/1375
  58927. }
  58928. },
  58929. dick: {
  58930. height: math.unit(7.5, "feet"),
  58931. name: "Dick",
  58932. image: {
  58933. source: "./media/characters/draco/dick.svg"
  58934. }
  58935. },
  58936. },
  58937. [
  58938. {
  58939. name: "Normal",
  58940. height: math.unit(18, "feet"),
  58941. default: true
  58942. },
  58943. ]
  58944. ))
  58945. characterMakers.push(() => makeCharacter(
  58946. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58947. {
  58948. front: {
  58949. height: math.unit(3.2, "meters"),
  58950. name: "Front",
  58951. image: {
  58952. source: "./media/characters/harriett/front.svg",
  58953. extra: 1966/1915,
  58954. bottom: 9/1975
  58955. }
  58956. },
  58957. },
  58958. [
  58959. {
  58960. name: "Normal",
  58961. height: math.unit(3.2, "meters"),
  58962. default: true
  58963. },
  58964. ]
  58965. ))
  58966. characterMakers.push(() => makeCharacter(
  58967. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58968. {
  58969. standing: {
  58970. height: math.unit(180, "cm"),
  58971. weight: math.unit(185, "lb"),
  58972. name: "Standing",
  58973. image: {
  58974. source: "./media/characters/serpentus/standing.svg",
  58975. extra: 882/878,
  58976. bottom: 16/898
  58977. }
  58978. },
  58979. sitting: {
  58980. height: math.unit(0.8, "meter"),
  58981. weight: math.unit(155, "lb"),
  58982. name: "Sitting",
  58983. image: {
  58984. source: "./media/characters/serpentus/sitting.svg",
  58985. extra: 293/290,
  58986. bottom: 140/433
  58987. }
  58988. },
  58989. },
  58990. [
  58991. {
  58992. name: "Normal",
  58993. height: math.unit(1.8, "meter"),
  58994. default: true
  58995. },
  58996. ]
  58997. ))
  58998. characterMakers.push(() => makeCharacter(
  58999. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  59000. {
  59001. front: {
  59002. height: math.unit(5.7174385736, "feet"),
  59003. name: "Front",
  59004. image: {
  59005. source: "./media/characters/nova-polecat/front.svg",
  59006. extra: 1317/1216,
  59007. bottom: 92/1409
  59008. }
  59009. },
  59010. },
  59011. [
  59012. {
  59013. name: "Normal",
  59014. height: math.unit(5.7174385736, "feet"),
  59015. default: true
  59016. },
  59017. ]
  59018. ))
  59019. characterMakers.push(() => makeCharacter(
  59020. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  59021. {
  59022. front: {
  59023. height: math.unit(5 + 4/12, "feet"),
  59024. weight: math.unit(250, "lb"),
  59025. name: "Front",
  59026. image: {
  59027. source: "./media/characters/mook/front.svg",
  59028. extra: 1088/1037,
  59029. bottom: 132/1220
  59030. }
  59031. },
  59032. back: {
  59033. height: math.unit(5 + 1/12, "feet"),
  59034. weight: math.unit(250, "lb"),
  59035. name: "Back",
  59036. image: {
  59037. source: "./media/characters/mook/back.svg",
  59038. extra: 1184/905,
  59039. bottom: 96/1280
  59040. }
  59041. },
  59042. head: {
  59043. height: math.unit(1.85, "feet"),
  59044. name: "Head",
  59045. image: {
  59046. source: "./media/characters/mook/head.svg"
  59047. }
  59048. },
  59049. hand: {
  59050. height: math.unit(1.9, "feet"),
  59051. name: "Hand",
  59052. image: {
  59053. source: "./media/characters/mook/hand.svg"
  59054. }
  59055. },
  59056. palm: {
  59057. height: math.unit(1.84, "feet"),
  59058. name: "Palm",
  59059. image: {
  59060. source: "./media/characters/mook/palm.svg"
  59061. }
  59062. },
  59063. foot: {
  59064. height: math.unit(1.44, "feet"),
  59065. name: "Foot",
  59066. image: {
  59067. source: "./media/characters/mook/foot.svg"
  59068. }
  59069. },
  59070. sole: {
  59071. height: math.unit(1.44, "feet"),
  59072. name: "Sole",
  59073. image: {
  59074. source: "./media/characters/mook/sole.svg"
  59075. }
  59076. },
  59077. },
  59078. [
  59079. {
  59080. name: "Normal",
  59081. height: math.unit(5 + 4/12, "feet"),
  59082. default: true
  59083. },
  59084. {
  59085. name: "Big",
  59086. height: math.unit(12, "feet")
  59087. },
  59088. ]
  59089. ))
  59090. characterMakers.push(() => makeCharacter(
  59091. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  59092. {
  59093. front: {
  59094. height: math.unit(6 + 10/12, "feet"),
  59095. weight: math.unit(233, "lb"),
  59096. name: "Front",
  59097. image: {
  59098. source: "./media/characters/kayla/front.svg",
  59099. extra: 1850/1775,
  59100. bottom: 65/1915
  59101. }
  59102. },
  59103. },
  59104. [
  59105. {
  59106. name: "Normal",
  59107. height: math.unit(6 + 10/12, "feet"),
  59108. default: true
  59109. },
  59110. {
  59111. name: "Amazonian",
  59112. height: math.unit(12 + 5/12, "feet")
  59113. },
  59114. {
  59115. name: "Mini Giantess",
  59116. height: math.unit(26, "feet")
  59117. },
  59118. {
  59119. name: "Giantess",
  59120. height: math.unit(200, "feet")
  59121. },
  59122. {
  59123. name: "Mega Giantess",
  59124. height: math.unit(2500, "feet")
  59125. },
  59126. {
  59127. name: "City Sized",
  59128. height: math.unit(50, "miles")
  59129. },
  59130. {
  59131. name: "Country Sized",
  59132. height: math.unit(500, "miles")
  59133. },
  59134. {
  59135. name: "Continent Sized",
  59136. height: math.unit(2500, "miles")
  59137. },
  59138. {
  59139. name: "Planet Sized",
  59140. height: math.unit(10000, "miles")
  59141. },
  59142. {
  59143. name: "Star Sized",
  59144. height: math.unit(5e6, "miles")
  59145. },
  59146. {
  59147. name: "Solar System Sized",
  59148. height: math.unit(125, "AU")
  59149. },
  59150. {
  59151. name: "Galaxy Sized",
  59152. height: math.unit(300e3, "lightyears")
  59153. },
  59154. {
  59155. name: "Universe Sized",
  59156. height: math.unit(200e9, "lightyears")
  59157. },
  59158. {
  59159. name: "Multiverse Sized",
  59160. height: math.unit(20, "exauniverses")
  59161. },
  59162. {
  59163. name: "Mother of Existence",
  59164. height: math.unit(1e6, "yottauniverses")
  59165. },
  59166. ]
  59167. ))
  59168. characterMakers.push(() => makeCharacter(
  59169. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  59170. {
  59171. side: {
  59172. height: math.unit(9.5, "meters"),
  59173. name: "Side",
  59174. image: {
  59175. source: "./media/characters/kulve-ragnarok/side.svg",
  59176. extra: 364/326,
  59177. bottom: 50/414
  59178. }
  59179. },
  59180. },
  59181. [
  59182. {
  59183. name: "Normal",
  59184. height: math.unit(9.5, "meters"),
  59185. default: true
  59186. },
  59187. ]
  59188. ))
  59189. characterMakers.push(() => makeCharacter(
  59190. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59191. {
  59192. front: {
  59193. height: math.unit(8 + 9/12, "feet"),
  59194. name: "Front",
  59195. image: {
  59196. source: "./media/characters/atlas-goat/front.svg",
  59197. extra: 1462/1323,
  59198. bottom: 12/1474
  59199. }
  59200. },
  59201. },
  59202. [
  59203. {
  59204. name: "Normal",
  59205. height: math.unit(8 + 9/12, "feet"),
  59206. default: true
  59207. },
  59208. {
  59209. name: "Skyline",
  59210. height: math.unit(845, "feet")
  59211. },
  59212. {
  59213. name: "Orbital",
  59214. height: math.unit(93000, "miles")
  59215. },
  59216. {
  59217. name: "Constellation",
  59218. height: math.unit(27000, "lightyears")
  59219. },
  59220. ]
  59221. ))
  59222. characterMakers.push(() => makeCharacter(
  59223. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59224. {
  59225. side: {
  59226. height: math.unit(1.8, "meters"),
  59227. weight: math.unit(120, "kg"),
  59228. name: "Side",
  59229. image: {
  59230. source: "./media/characters/xie-ling/side.svg",
  59231. extra: 646/574,
  59232. bottom: 44/690
  59233. }
  59234. },
  59235. },
  59236. [
  59237. {
  59238. name: "Tiny",
  59239. height: math.unit(1.80, "meters")
  59240. },
  59241. {
  59242. name: "Small",
  59243. height: math.unit(6, "meters")
  59244. },
  59245. {
  59246. name: "Medium",
  59247. height: math.unit(15, "meters")
  59248. },
  59249. {
  59250. name: "Normal",
  59251. height: math.unit(30, "meters"),
  59252. default: true
  59253. },
  59254. {
  59255. name: "Above Normal",
  59256. height: math.unit(60, "meters")
  59257. },
  59258. {
  59259. name: "Big",
  59260. height: math.unit(220, "meters")
  59261. },
  59262. {
  59263. name: "Giant",
  59264. height: math.unit(2.2, "km")
  59265. },
  59266. {
  59267. name: "Macro",
  59268. height: math.unit(25, "km")
  59269. },
  59270. {
  59271. name: "Mega Macro",
  59272. height: math.unit(350, "km")
  59273. },
  59274. {
  59275. name: "Mega Macro+",
  59276. height: math.unit(5000, "km")
  59277. },
  59278. {
  59279. name: "Goddess",
  59280. height: math.unit(3, "multiverses")
  59281. },
  59282. ]
  59283. ))
  59284. characterMakers.push(() => makeCharacter(
  59285. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59286. {
  59287. frontSfw: {
  59288. height: math.unit(5 + 11/12, "feet"),
  59289. weight: math.unit(210, "lb"),
  59290. name: "Front",
  59291. image: {
  59292. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59293. extra: 1928/1821,
  59294. bottom: 45/1973
  59295. }
  59296. },
  59297. backSfw: {
  59298. height: math.unit(5 + 11/12, "feet"),
  59299. weight: math.unit(210, "lb"),
  59300. name: "Back",
  59301. image: {
  59302. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59303. extra: 1920/1813,
  59304. bottom: 34/1954
  59305. }
  59306. },
  59307. frontNsfw: {
  59308. height: math.unit(5 + 11/12, "feet"),
  59309. weight: math.unit(210, "lb"),
  59310. name: "Front (NSFW)",
  59311. image: {
  59312. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59313. extra: 1928/1821,
  59314. bottom: 45/1973
  59315. }
  59316. },
  59317. backNsfw: {
  59318. height: math.unit(5 + 11/12, "feet"),
  59319. weight: math.unit(210, "lb"),
  59320. name: "Back (NSFW)",
  59321. image: {
  59322. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59323. extra: 1920/1813,
  59324. bottom: 34/1954
  59325. }
  59326. },
  59327. },
  59328. [
  59329. {
  59330. name: "Normal",
  59331. height: math.unit(5 + 11/12, "feet"),
  59332. default: true
  59333. },
  59334. {
  59335. name: "Goddess",
  59336. height: math.unit(20 + 3/12, "feet")
  59337. },
  59338. {
  59339. name: "Breaker of Man",
  59340. height: math.unit(329 + 9/12, "feet")
  59341. },
  59342. {
  59343. name: "Solar Justice",
  59344. height: math.unit(0.6, "solarradii")
  59345. },
  59346. {
  59347. name: "She Who Judges",
  59348. height: math.unit(1, "universe")
  59349. },
  59350. ]
  59351. ))
  59352. characterMakers.push(() => makeCharacter(
  59353. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59354. {
  59355. casual_front: {
  59356. height: math.unit(6 + 1/12, "feet"),
  59357. weight: math.unit(190, "lb"),
  59358. preyCapacity: math.unit(1, "people"),
  59359. name: "Front",
  59360. image: {
  59361. source: "./media/characters/managarmr/casual-front.svg",
  59362. extra: 411/381,
  59363. bottom: 15/426
  59364. },
  59365. extraAttributes: {
  59366. "pawSize": {
  59367. name: "Paw Size",
  59368. power: 1,
  59369. type: "length",
  59370. base: math.unit(0.2, "meters")
  59371. },
  59372. },
  59373. form: "casual",
  59374. },
  59375. casual_back: {
  59376. height: math.unit(6 + 1/12, "feet"),
  59377. weight: math.unit(190, "lb"),
  59378. preyCapacity: math.unit(1, "people"),
  59379. name: "Back",
  59380. image: {
  59381. source: "./media/characters/managarmr/casual-back.svg",
  59382. extra: 413/383,
  59383. bottom: 13/426
  59384. },
  59385. extraAttributes: {
  59386. "pawSize": {
  59387. name: "Paw Size",
  59388. power: 1,
  59389. type: "length",
  59390. base: math.unit(0.2, "meters")
  59391. },
  59392. },
  59393. form: "casual",
  59394. },
  59395. base_front: {
  59396. height: math.unit(7, "feet"),
  59397. weight: math.unit(210, "lb"),
  59398. preyCapacity: math.unit(2, "people"),
  59399. name: "Front",
  59400. image: {
  59401. source: "./media/characters/managarmr/base-front.svg",
  59402. extra: 580/485,
  59403. bottom: 32/612
  59404. },
  59405. extraAttributes: {
  59406. "wingspan": {
  59407. name: "Wingspan",
  59408. power: 1,
  59409. type: "length",
  59410. base: math.unit(4, "meters")
  59411. },
  59412. "pawSize": {
  59413. name: "Paw Size",
  59414. power: 1,
  59415. type: "length",
  59416. base: math.unit(0.2, "meters")
  59417. },
  59418. },
  59419. form: "base",
  59420. },
  59421. "true-divine_front": {
  59422. height: math.unit(40, "feet"),
  59423. weight: math.unit(39000, "lb"),
  59424. preyCapacity: math.unit(375, "people"),
  59425. name: "Front",
  59426. image: {
  59427. source: "./media/characters/managarmr/true-divine-front.svg",
  59428. extra: 725/573,
  59429. bottom: 120/845
  59430. },
  59431. extraAttributes: {
  59432. "wingspan": {
  59433. name: "Wingspan",
  59434. power: 1,
  59435. type: "length",
  59436. base: math.unit(20, "meters")
  59437. },
  59438. "pawSize": {
  59439. name: "Paw Size",
  59440. power: 1,
  59441. type: "length",
  59442. base: math.unit(1.5, "meters")
  59443. },
  59444. },
  59445. form: "true-divine",
  59446. },
  59447. },
  59448. [
  59449. {
  59450. name: "Normal",
  59451. height: math.unit(6 + 1/12, "feet"),
  59452. form: "casual",
  59453. default: true
  59454. },
  59455. {
  59456. name: "Normal",
  59457. height: math.unit(7, "feet"),
  59458. form: "base",
  59459. default: true
  59460. },
  59461. ],
  59462. {
  59463. "casual": {
  59464. name: "Casual",
  59465. default: true
  59466. },
  59467. "base": {
  59468. name: "Base",
  59469. },
  59470. "true-divine": {
  59471. name: "True Divine",
  59472. },
  59473. }
  59474. ))
  59475. characterMakers.push(() => makeCharacter(
  59476. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59477. {
  59478. front: {
  59479. height: math.unit(1.8, "meters"),
  59480. weight: math.unit(110, "kg"),
  59481. name: "Front",
  59482. image: {
  59483. source: "./media/characters/mystra/front.svg",
  59484. extra: 529/442,
  59485. bottom: 31/560
  59486. }
  59487. },
  59488. frontLewd: {
  59489. height: math.unit(1.8, "meters"),
  59490. weight: math.unit(110, "kg"),
  59491. name: "Front (Lewd)",
  59492. image: {
  59493. source: "./media/characters/mystra/front-lewd.svg",
  59494. extra: 529/442,
  59495. bottom: 31/560
  59496. }
  59497. },
  59498. head: {
  59499. height: math.unit(1.63, "feet"),
  59500. name: "Head",
  59501. image: {
  59502. source: "./media/characters/mystra/head.svg"
  59503. }
  59504. },
  59505. paw: {
  59506. height: math.unit(1.9, "feet"),
  59507. name: "Paw",
  59508. image: {
  59509. source: "./media/characters/mystra/paw.svg"
  59510. }
  59511. },
  59512. },
  59513. [
  59514. {
  59515. name: "Incognito",
  59516. height: math.unit(2.3, "meters")
  59517. },
  59518. {
  59519. name: "Small Macro",
  59520. height: math.unit(300, "meters")
  59521. },
  59522. {
  59523. name: "Small Mega",
  59524. height: math.unit(2, "km")
  59525. },
  59526. {
  59527. name: "Mega",
  59528. height: math.unit(30, "km")
  59529. },
  59530. {
  59531. name: "Small Giga",
  59532. height: math.unit(100, "km")
  59533. },
  59534. {
  59535. name: "Giga",
  59536. height: math.unit(1000, "km"),
  59537. default: true
  59538. },
  59539. {
  59540. name: "Continental",
  59541. height: math.unit(5000, "km")
  59542. },
  59543. {
  59544. name: "Terra",
  59545. height: math.unit(20000, "km")
  59546. },
  59547. {
  59548. name: "Solar",
  59549. height: math.unit(2e6, "km")
  59550. },
  59551. {
  59552. name: "Galactic",
  59553. height: math.unit(528502, "lightyears")
  59554. },
  59555. {
  59556. name: "Universal",
  59557. height: math.unit(20, "universes")
  59558. },
  59559. ]
  59560. ))
  59561. characterMakers.push(() => makeCharacter(
  59562. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59563. {
  59564. front: {
  59565. height: math.unit(2, "meters"),
  59566. weight: math.unit(140, "kg"),
  59567. name: "Front",
  59568. image: {
  59569. source: "./media/characters/caleb/front.svg",
  59570. extra: 873/817,
  59571. bottom: 47/920
  59572. }
  59573. },
  59574. back: {
  59575. height: math.unit(2, "meters"),
  59576. weight: math.unit(140, "kg"),
  59577. name: "Back",
  59578. image: {
  59579. source: "./media/characters/caleb/back.svg",
  59580. extra: 877/828,
  59581. bottom: 24/901
  59582. }
  59583. },
  59584. snakeTail: {
  59585. height: math.unit(1.44, "feet"),
  59586. name: "Snake Tail",
  59587. image: {
  59588. source: "./media/characters/caleb/snake-tail.svg"
  59589. }
  59590. },
  59591. dick: {
  59592. height: math.unit(2.6, "feet"),
  59593. name: "Dick",
  59594. image: {
  59595. source: "./media/characters/caleb/dick.svg"
  59596. }
  59597. },
  59598. },
  59599. [
  59600. {
  59601. name: "Incognito",
  59602. height: math.unit(3, "meters")
  59603. },
  59604. {
  59605. name: "Home Size",
  59606. height: math.unit(200, "meters"),
  59607. default: true
  59608. },
  59609. {
  59610. name: "Macro",
  59611. height: math.unit(500, "meters")
  59612. },
  59613. {
  59614. name: "Big Macro",
  59615. height: math.unit(5, "km")
  59616. },
  59617. {
  59618. name: "Giga",
  59619. height: math.unit(250, "km")
  59620. },
  59621. {
  59622. name: "Giga+",
  59623. height: math.unit(5000, "km")
  59624. },
  59625. {
  59626. name: "Small Terra",
  59627. height: math.unit(35e3, "km")
  59628. },
  59629. {
  59630. name: "Terra",
  59631. height: math.unit(2e6, "km")
  59632. },
  59633. {
  59634. name: "Terra+",
  59635. height: math.unit(1.5e6, "km")
  59636. },
  59637. ]
  59638. ))
  59639. characterMakers.push(() => makeCharacter(
  59640. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59641. {
  59642. front: {
  59643. height: math.unit(2, "meters"),
  59644. weight: math.unit(120, "kg"),
  59645. name: "Front",
  59646. image: {
  59647. source: "./media/characters/gilirian/front.svg",
  59648. extra: 805/737,
  59649. bottom: 13/818
  59650. }
  59651. },
  59652. side: {
  59653. height: math.unit(2, "meters"),
  59654. weight: math.unit(120, "kg"),
  59655. name: "Side",
  59656. image: {
  59657. source: "./media/characters/gilirian/side.svg",
  59658. extra: 810/746,
  59659. bottom: 6/816
  59660. }
  59661. },
  59662. back: {
  59663. height: math.unit(2, "meters"),
  59664. weight: math.unit(120, "kg"),
  59665. name: "Back",
  59666. image: {
  59667. source: "./media/characters/gilirian/back.svg",
  59668. extra: 815/745,
  59669. bottom: 15/830
  59670. }
  59671. },
  59672. frontNsfw: {
  59673. height: math.unit(2, "meters"),
  59674. weight: math.unit(120, "kg"),
  59675. name: "Front (NSFW)",
  59676. image: {
  59677. source: "./media/characters/gilirian/front-nsfw.svg",
  59678. extra: 805/737,
  59679. bottom: 13/818
  59680. }
  59681. },
  59682. sideNsfw: {
  59683. height: math.unit(2, "meters"),
  59684. weight: math.unit(120, "kg"),
  59685. name: "Side (NSFW)",
  59686. image: {
  59687. source: "./media/characters/gilirian/side-nsfw.svg",
  59688. extra: 810/746,
  59689. bottom: 6/816
  59690. }
  59691. },
  59692. },
  59693. [
  59694. {
  59695. name: "Incognito",
  59696. height: math.unit(2, "meters"),
  59697. default: true
  59698. },
  59699. {
  59700. name: "Macro",
  59701. height: math.unit(250, "meters")
  59702. },
  59703. {
  59704. name: "Big Macro",
  59705. height: math.unit(1500, "meters")
  59706. },
  59707. {
  59708. name: "Mega",
  59709. height: math.unit(40, "km")
  59710. },
  59711. {
  59712. name: "Giga",
  59713. height: math.unit(300, "km")
  59714. },
  59715. {
  59716. name: "Extra Giga",
  59717. height: math.unit(5000, "km")
  59718. },
  59719. {
  59720. name: "Small Terra",
  59721. height: math.unit(10e3, "km")
  59722. },
  59723. {
  59724. name: "Terra",
  59725. height: math.unit(3e5, "km")
  59726. },
  59727. {
  59728. name: "Galactic",
  59729. height: math.unit(369950, "lightyears")
  59730. },
  59731. ]
  59732. ))
  59733. characterMakers.push(() => makeCharacter(
  59734. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59735. {
  59736. front: {
  59737. height: math.unit(2.5, "meters"),
  59738. weight: math.unit(230, "lb"),
  59739. name: "Front",
  59740. image: {
  59741. source: "./media/characters/tarken/front.svg",
  59742. extra: 764/720,
  59743. bottom: 49/813
  59744. }
  59745. },
  59746. back: {
  59747. height: math.unit(2.5, "meters"),
  59748. weight: math.unit(230, "lb"),
  59749. name: "Back",
  59750. image: {
  59751. source: "./media/characters/tarken/back.svg",
  59752. extra: 756/720,
  59753. bottom: 35/791
  59754. }
  59755. },
  59756. frontNsfw: {
  59757. height: math.unit(2.5, "meters"),
  59758. weight: math.unit(230, "lb"),
  59759. name: "Front (NSFW)",
  59760. image: {
  59761. source: "./media/characters/tarken/front-nsfw.svg",
  59762. extra: 764/720,
  59763. bottom: 49/813
  59764. }
  59765. },
  59766. backNsfw: {
  59767. height: math.unit(2.5, "meters"),
  59768. weight: math.unit(230, "lb"),
  59769. name: "Back (NSFW)",
  59770. image: {
  59771. source: "./media/characters/tarken/back-nsfw.svg",
  59772. extra: 756/720,
  59773. bottom: 35/791
  59774. }
  59775. },
  59776. head: {
  59777. height: math.unit(2.22, "feet"),
  59778. name: "Head",
  59779. image: {
  59780. source: "./media/characters/tarken/head.svg"
  59781. }
  59782. },
  59783. tail: {
  59784. height: math.unit(5.25, "feet"),
  59785. name: "Tail",
  59786. image: {
  59787. source: "./media/characters/tarken/tail.svg"
  59788. }
  59789. },
  59790. dick: {
  59791. height: math.unit(1.95, "feet"),
  59792. name: "Dick",
  59793. image: {
  59794. source: "./media/characters/tarken/dick.svg"
  59795. }
  59796. },
  59797. hand: {
  59798. height: math.unit(1.78, "feet"),
  59799. name: "Hand",
  59800. image: {
  59801. source: "./media/characters/tarken/hand.svg"
  59802. }
  59803. },
  59804. beam: {
  59805. height: math.unit(1.5, "feet"),
  59806. name: "Beam",
  59807. image: {
  59808. source: "./media/characters/tarken/beam.svg"
  59809. }
  59810. },
  59811. },
  59812. [
  59813. {
  59814. name: "Original Size",
  59815. height: math.unit(2.5, "meters")
  59816. },
  59817. {
  59818. name: "Macro",
  59819. height: math.unit(150, "meters"),
  59820. default: true
  59821. },
  59822. {
  59823. name: "Macro+",
  59824. height: math.unit(300, "meters")
  59825. },
  59826. {
  59827. name: "Mega",
  59828. height: math.unit(2, "km")
  59829. },
  59830. {
  59831. name: "Mega+",
  59832. height: math.unit(35, "km")
  59833. },
  59834.  {
  59835. name: "Mega++",
  59836. height: math.unit(60, "km")
  59837. },
  59838. {
  59839. name: "Giga",
  59840. height: math.unit(200, "km")
  59841. },
  59842. {
  59843. name: "Giga+",
  59844. height: math.unit(2500, "km")
  59845. },
  59846. {
  59847. name: "Giga++",
  59848. height: math.unit(6600, "km")
  59849. },
  59850. {
  59851. name: "Terra",
  59852. height: math.unit(20000, "km")
  59853. },
  59854. {
  59855. name: "Terra+",
  59856. height: math.unit(300000, "km")
  59857. },
  59858. ]
  59859. ))
  59860. characterMakers.push(() => makeCharacter(
  59861. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59862. {
  59863. magpie_dressed: {
  59864. height: math.unit(1.7, "meters"),
  59865. weight: math.unit(70, "kg"),
  59866. name: "Dressed",
  59867. image: {
  59868. source: "./media/characters/otreus/magpie-dressed.svg",
  59869. extra: 691/672,
  59870. bottom: 116/807
  59871. },
  59872. form: "magpie",
  59873. default: true
  59874. },
  59875. magpie_nude: {
  59876. height: math.unit(1.7, "meters"),
  59877. weight: math.unit(70, "kg"),
  59878. name: "Nude",
  59879. image: {
  59880. source: "./media/characters/otreus/magpie-nude.svg",
  59881. extra: 691/672,
  59882. bottom: 116/807
  59883. },
  59884. form: "magpie",
  59885. },
  59886. magpie_dressedLewd: {
  59887. height: math.unit(1.7, "meters"),
  59888. weight: math.unit(70, "kg"),
  59889. name: "Dressed (Lewd)",
  59890. image: {
  59891. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59892. extra: 691/672,
  59893. bottom: 116/807
  59894. },
  59895. form: "magpie",
  59896. },
  59897. magpie_nudeLewd: {
  59898. height: math.unit(1.7, "meters"),
  59899. weight: math.unit(70, "kg"),
  59900. name: "Nude (Lewd)",
  59901. image: {
  59902. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59903. extra: 691/672,
  59904. bottom: 116/807
  59905. },
  59906. form: "magpie",
  59907. },
  59908. magpie_leftFoot: {
  59909. height: math.unit(1.58, "feet"),
  59910. name: "Left Foot",
  59911. image: {
  59912. source: "./media/characters/otreus/magpie-left-foot.svg"
  59913. },
  59914. form: "magpie",
  59915. },
  59916. magpie_rightFoot: {
  59917. height: math.unit(1.58, "feet"),
  59918. name: "Right Foot",
  59919. image: {
  59920. source: "./media/characters/otreus/magpie-right-foot.svg"
  59921. },
  59922. form: "magpie",
  59923. },
  59924. magpie_wingspan: {
  59925. height: math.unit(2, "meters"),
  59926. weight: math.unit(70, "kg"),
  59927. name: "Wingspan",
  59928. image: {
  59929. source: "./media/characters/otreus/magpie-wingspan.svg"
  59930. },
  59931. extraAttributes: {
  59932. "wingspan": {
  59933. name: "Wingspan",
  59934. power: 1,
  59935. type: "length",
  59936. base: math.unit(3.35, "meters")
  59937. },
  59938. },
  59939. form: "magpie",
  59940. },
  59941. hippogriff_dressed: {
  59942. height: math.unit(1.7, "meters"),
  59943. weight: math.unit(70, "kg"),
  59944. name: "Dressed",
  59945. image: {
  59946. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59947. extra: 710/689,
  59948. bottom: 67/777
  59949. },
  59950. form: "hippogriff",
  59951. default: true
  59952. },
  59953. hippogriff_nude: {
  59954. height: math.unit(1.7, "meters"),
  59955. weight: math.unit(70, "kg"),
  59956. name: "Nude",
  59957. image: {
  59958. source: "./media/characters/otreus/hippogriff-nude.svg",
  59959. extra: 710/689,
  59960. bottom: 67/777
  59961. },
  59962. form: "hippogriff",
  59963. },
  59964. hippogriff_dressedLewd: {
  59965. height: math.unit(1.7, "meters"),
  59966. weight: math.unit(70, "kg"),
  59967. name: "Dressed (Lewd)",
  59968. image: {
  59969. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59970. extra: 710/689,
  59971. bottom: 67/777
  59972. },
  59973. form: "hippogriff",
  59974. },
  59975. hippogriff_nudeLewd: {
  59976. height: math.unit(1.7, "meters"),
  59977. weight: math.unit(70, "kg"),
  59978. name: "Nude (Lewd)",
  59979. image: {
  59980. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59981. extra: 710/689,
  59982. bottom: 67/777
  59983. },
  59984. form: "hippogriff",
  59985. },
  59986. },
  59987. [
  59988. {
  59989. name: "Original Size",
  59990. height: math.unit(1.7, "meters"),
  59991. allForms: true
  59992. },
  59993. {
  59994. name: "Incognito Size",
  59995. height: math.unit(2, "meters"),
  59996. allForms: true
  59997. },
  59998. {
  59999. name: "Mega",
  60000. height: math.unit(2, "km"),
  60001. allForms: true
  60002. },
  60003. {
  60004. name: "Mega+",
  60005. height: math.unit(40, "km"),
  60006. allForms: true
  60007. },
  60008. {
  60009. name: "Giga",
  60010. height: math.unit(250, "km"),
  60011. allForms: true
  60012. },
  60013. {
  60014. name: "Giga+",
  60015. height: math.unit(3000, "km"),
  60016. allForms: true
  60017. },
  60018. {
  60019. name: "Terra",
  60020. height: math.unit(20000, "km"),
  60021. allForms: true
  60022. },
  60023. {
  60024. name: "Solar (Home Size)",
  60025. height: math.unit(3e6, "km"),
  60026. allForms: true,
  60027. default: true
  60028. },
  60029. ],
  60030. {
  60031. "magpie": {
  60032. name: "Magpie",
  60033. default: true
  60034. },
  60035. "hippogriff": {
  60036. name: "Hippogriff",
  60037. },
  60038. }
  60039. ))
  60040. characterMakers.push(() => makeCharacter(
  60041. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  60042. {
  60043. frontDressed: {
  60044. height: math.unit(1.8, "meters"),
  60045. weight: math.unit(90, "kg"),
  60046. name: "Front (Dressed)",
  60047. image: {
  60048. source: "./media/characters/thalia/front-dressed.svg",
  60049. extra: 478/402,
  60050. bottom: 55/533
  60051. }
  60052. },
  60053. backDressed: {
  60054. height: math.unit(1.8, "meters"),
  60055. weight: math.unit(90, "kg"),
  60056. name: "Back (Dressed)",
  60057. image: {
  60058. source: "./media/characters/thalia/back-dressed.svg",
  60059. extra: 500/424,
  60060. bottom: 15/515
  60061. }
  60062. },
  60063. frontNude: {
  60064. height: math.unit(1.8, "meters"),
  60065. weight: math.unit(90, "kg"),
  60066. name: "Front (Nude)",
  60067. image: {
  60068. source: "./media/characters/thalia/front-nude.svg",
  60069. extra: 478/402,
  60070. bottom: 55/533
  60071. }
  60072. },
  60073. backNude: {
  60074. height: math.unit(1.8, "meters"),
  60075. weight: math.unit(90, "kg"),
  60076. name: "Back (Nude)",
  60077. image: {
  60078. source: "./media/characters/thalia/back-nude.svg",
  60079. extra: 500/424,
  60080. bottom: 15/515
  60081. }
  60082. },
  60083. },
  60084. [
  60085. {
  60086. name: "Incognito",
  60087. height: math.unit(3, "meters")
  60088. },
  60089. {
  60090. name: "Macro",
  60091. height: math.unit(500, "meters")
  60092. },
  60093. {
  60094. name: "Mega",
  60095. height: math.unit(5, "km")
  60096. },
  60097. {
  60098. name: "Mega+",
  60099. height: math.unit(30, "km")
  60100. },
  60101. {
  60102. name: "Giga",
  60103. height: math.unit(350, "km")
  60104. },
  60105. {
  60106. name: "Giga+",
  60107. height: math.unit(4000, "km")
  60108. },
  60109. {
  60110. name: "Terra",
  60111. height: math.unit(35000, "km")
  60112. },
  60113. {
  60114. name: "Original Size",
  60115. height: math.unit(130000, "km")
  60116. },
  60117. {
  60118. name: "Solar (Home Size)",
  60119. height: math.unit(4e6, "km"),
  60120. default: true
  60121. },
  60122. ]
  60123. ))
  60124. characterMakers.push(() => makeCharacter(
  60125. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  60126. {
  60127. front: {
  60128. height: math.unit(1.8, "meters"),
  60129. weight: math.unit(95, "kg"),
  60130. name: "Front",
  60131. image: {
  60132. source: "./media/characters/shango/front.svg",
  60133. extra: 1925/1774,
  60134. bottom: 67/1992
  60135. }
  60136. },
  60137. back: {
  60138. height: math.unit(1.8, "meters"),
  60139. weight: math.unit(95, "kg"),
  60140. name: "Back",
  60141. image: {
  60142. source: "./media/characters/shango/back.svg",
  60143. extra: 1915/1766,
  60144. bottom: 52/1967
  60145. }
  60146. },
  60147. frontLewd: {
  60148. height: math.unit(1.8, "meters"),
  60149. weight: math.unit(95, "kg"),
  60150. name: "Front (Lewd)",
  60151. image: {
  60152. source: "./media/characters/shango/front-lewd.svg",
  60153. extra: 1925/1774,
  60154. bottom: 67/1992
  60155. }
  60156. },
  60157. backLewd: {
  60158. height: math.unit(1.8, "meters"),
  60159. weight: math.unit(95, "kg"),
  60160. name: "Back (Lewd)",
  60161. image: {
  60162. source: "./media/characters/shango/back-lewd.svg",
  60163. extra: 1915/1766,
  60164. bottom: 52/1967
  60165. }
  60166. },
  60167. maw: {
  60168. height: math.unit(1.64, "feet"),
  60169. name: "Maw",
  60170. image: {
  60171. source: "./media/characters/shango/maw.svg"
  60172. }
  60173. },
  60174. dick: {
  60175. height: math.unit(2.14, "feet"),
  60176. name: "Dick",
  60177. image: {
  60178. source: "./media/characters/shango/dick.svg"
  60179. }
  60180. },
  60181. },
  60182. [
  60183. {
  60184. name: "Incognito",
  60185. height: math.unit(1.8, "meters")
  60186. },
  60187. {
  60188. name: "Home Size",
  60189. height: math.unit(60, "meters"),
  60190. default: true
  60191. },
  60192. {
  60193. name: "Macro",
  60194. height: math.unit(450, "meters")
  60195. },
  60196. {
  60197. name: "Mega",
  60198. height: math.unit(6, "km")
  60199. },
  60200. {
  60201. name: "Mega+",
  60202. height: math.unit(35, "km")
  60203. },
  60204. {
  60205. name: "Giga",
  60206. height: math.unit(500, "km")
  60207. },
  60208. {
  60209. name: "Giga+",
  60210. height: math.unit(5000, "km")
  60211. },
  60212. {
  60213. name: "Terra",
  60214. height: math.unit(60000, "km")
  60215. },
  60216. {
  60217. name: "Terra+",
  60218. height: math.unit(400000, "km")
  60219. },
  60220. ]
  60221. ))
  60222. characterMakers.push(() => makeCharacter(
  60223. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60224. {
  60225. front: {
  60226. height: math.unit(2, "meters"),
  60227. weight: math.unit(95, "kg"),
  60228. name: "Front",
  60229. image: {
  60230. source: "./media/characters/osiris-gryphon/front.svg",
  60231. extra: 1508/1313,
  60232. bottom: 87/1595
  60233. }
  60234. },
  60235. back: {
  60236. height: math.unit(2, "meters"),
  60237. weight: math.unit(95, "kg"),
  60238. name: "Back",
  60239. image: {
  60240. source: "./media/characters/osiris-gryphon/back.svg",
  60241. extra: 1436/1309,
  60242. bottom: 64/1500
  60243. }
  60244. },
  60245. frontLewd: {
  60246. height: math.unit(2, "meters"),
  60247. weight: math.unit(95, "kg"),
  60248. name: "Front (Lewd)",
  60249. image: {
  60250. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60251. extra: 1508/1313,
  60252. bottom: 87/1595
  60253. }
  60254. },
  60255. wing: {
  60256. height: math.unit(6.3333, "feet"),
  60257. name: "Wing",
  60258. image: {
  60259. source: "./media/characters/osiris-gryphon/wing.svg"
  60260. }
  60261. },
  60262. },
  60263. [
  60264. {
  60265. name: "Incognito",
  60266. height: math.unit(2, "meters")
  60267. },
  60268. {
  60269. name: "Home Size",
  60270. height: math.unit(30, "meters"),
  60271. default: true
  60272. },
  60273. {
  60274. name: "Macro",
  60275. height: math.unit(100, "meters")
  60276. },
  60277. {
  60278. name: "Macro+",
  60279. height: math.unit(350, "meters")
  60280. },
  60281. {
  60282. name: "Mega",
  60283. height: math.unit(40, "km")
  60284. },
  60285. {
  60286. name: "Giga",
  60287. height: math.unit(300, "km")
  60288. },
  60289. {
  60290. name: "Giga+",
  60291. height: math.unit(2000, "km")
  60292. },
  60293. {
  60294. name: "Terra",
  60295. height: math.unit(30000, "km")
  60296. },
  60297. ]
  60298. ))
  60299. characterMakers.push(() => makeCharacter(
  60300. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60301. {
  60302. front: {
  60303. height: math.unit(2.5, "meters"),
  60304. weight: math.unit(200, "kg"),
  60305. name: "Front",
  60306. image: {
  60307. source: "./media/characters/atlas-dragon/front.svg",
  60308. extra: 745/462,
  60309. bottom: 36/781
  60310. }
  60311. },
  60312. back: {
  60313. height: math.unit(2.5, "meters"),
  60314. weight: math.unit(200, "kg"),
  60315. name: "Back",
  60316. image: {
  60317. source: "./media/characters/atlas-dragon/back.svg",
  60318. extra: 848/822,
  60319. bottom: 57/905
  60320. }
  60321. },
  60322. frontLewd: {
  60323. height: math.unit(2.5, "meters"),
  60324. weight: math.unit(200, "kg"),
  60325. name: "Front (Lewd)",
  60326. image: {
  60327. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60328. extra: 745/462,
  60329. bottom: 36/781
  60330. }
  60331. },
  60332. backLewd: {
  60333. height: math.unit(2.5, "meters"),
  60334. weight: math.unit(200, "kg"),
  60335. name: "Back (Lewd)",
  60336. image: {
  60337. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60338. extra: 848/822,
  60339. bottom: 57/905
  60340. }
  60341. },
  60342. },
  60343. [
  60344. {
  60345. name: "Incognito",
  60346. height: math.unit(2.5, "meters")
  60347. },
  60348. {
  60349. name: "Small Macro",
  60350. height: math.unit(50, "meters")
  60351. },
  60352. {
  60353. name: "Macro",
  60354. height: math.unit(350, "meters")
  60355. },
  60356. {
  60357. name: "Mega",
  60358. height: math.unit(5.5, "kilometers")
  60359. },
  60360. {
  60361. name: "Mega+",
  60362. height: math.unit(50, "km")
  60363. },
  60364. {
  60365. name: "Giga",
  60366. height: math.unit(350, "km")
  60367. },
  60368. {
  60369. name: "Giga+",
  60370. height: math.unit(2000, "km")
  60371. },
  60372. {
  60373. name: "Giga++",
  60374. height: math.unit(6500, "km")
  60375. },
  60376. {
  60377. name: "Terra",
  60378. height: math.unit(30000, "km")
  60379. },
  60380. {
  60381. name: "Terra+",
  60382. height: math.unit(250000, "km")
  60383. },
  60384. {
  60385. name: "True Size",
  60386. height: math.unit(100, "multiverses"),
  60387. default: true
  60388. },
  60389. ]
  60390. ))
  60391. characterMakers.push(() => makeCharacter(
  60392. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60393. {
  60394. front: {
  60395. height: math.unit(1.8, "m"),
  60396. weight: math.unit(120, "kg"),
  60397. name: "Front",
  60398. image: {
  60399. source: "./media/characters/chey/front.svg",
  60400. extra: 1359/1270,
  60401. bottom: 18/1377
  60402. }
  60403. },
  60404. arm: {
  60405. height: math.unit(2.05, "feet"),
  60406. name: "Arm",
  60407. image: {
  60408. source: "./media/characters/chey/arm.svg"
  60409. }
  60410. },
  60411. head: {
  60412. height: math.unit(1.89, "feet"),
  60413. name: "Head",
  60414. image: {
  60415. source: "./media/characters/chey/head.svg"
  60416. }
  60417. },
  60418. },
  60419. [
  60420. {
  60421. name: "Original Size",
  60422. height: math.unit(5, "cm")
  60423. },
  60424. {
  60425. name: "Incognito Size",
  60426. height: math.unit(2.4, "m")
  60427. },
  60428. {
  60429. name: "Home Size",
  60430. height: math.unit(200, "meters"),
  60431. default: true
  60432. },
  60433. {
  60434. name: "Mega",
  60435. height: math.unit(2, "km")
  60436. },
  60437. {
  60438. name: "Giga (Preferred Size)",
  60439. height: math.unit(2000, "km")
  60440. },
  60441. {
  60442. name: "Giga+",
  60443. height: math.unit(6000, "km")
  60444. },
  60445. {
  60446. name: "Terra",
  60447. height: math.unit(17000, "km")
  60448. },
  60449. {
  60450. name: "Terra+",
  60451. height: math.unit(75000, "km")
  60452. },
  60453. {
  60454. name: "Terra++",
  60455. height: math.unit(225000, "km")
  60456. },
  60457. ]
  60458. ))
  60459. characterMakers.push(() => makeCharacter(
  60460. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60461. {
  60462. side: {
  60463. height: math.unit(7.8, "meters"),
  60464. name: "Side",
  60465. image: {
  60466. source: "./media/characters/ragnarok/side.svg",
  60467. extra: 725/621,
  60468. bottom: 72/797
  60469. }
  60470. },
  60471. },
  60472. [
  60473. {
  60474. name: "Normal",
  60475. height: math.unit(7.8, "meters"),
  60476. default: true
  60477. },
  60478. ]
  60479. ))
  60480. characterMakers.push(() => makeCharacter(
  60481. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60482. {
  60483. hyena_front: {
  60484. height: math.unit(2.1, "meters"),
  60485. weight: math.unit(110, "kg"),
  60486. name: "Front",
  60487. image: {
  60488. source: "./media/characters/nima/hyena-front.svg",
  60489. extra: 1904/1796,
  60490. bottom: 67/1971
  60491. },
  60492. form: "hyena",
  60493. },
  60494. hyena_back: {
  60495. height: math.unit(2.1, "meters"),
  60496. weight: math.unit(110, "kg"),
  60497. name: "Back",
  60498. image: {
  60499. source: "./media/characters/nima/hyena-back.svg",
  60500. extra: 1964/1884,
  60501. bottom: 35/1999
  60502. },
  60503. form: "hyena",
  60504. },
  60505. shark_front: {
  60506. height: math.unit(1.95, "meters"),
  60507. weight: math.unit(110, "kg"),
  60508. name: "Front",
  60509. image: {
  60510. source: "./media/characters/nima/shark-front.svg",
  60511. extra: 2238/2013,
  60512. bottom: 0/223
  60513. },
  60514. form: "shark",
  60515. },
  60516. paw: {
  60517. height: math.unit(1, "feet"),
  60518. name: "Paw",
  60519. image: {
  60520. source: "./media/characters/nima/paw.svg"
  60521. }
  60522. },
  60523. circlet: {
  60524. height: math.unit(0.3, "feet"),
  60525. name: "Circlet",
  60526. image: {
  60527. source: "./media/characters/nima/circlet.svg"
  60528. }
  60529. },
  60530. necklace: {
  60531. height: math.unit(1.2, "feet"),
  60532. name: "Necklace",
  60533. image: {
  60534. source: "./media/characters/nima/necklace.svg"
  60535. }
  60536. },
  60537. bracelet: {
  60538. height: math.unit(0.51, "feet"),
  60539. name: "Bracelet",
  60540. image: {
  60541. source: "./media/characters/nima/bracelet.svg"
  60542. }
  60543. },
  60544. armband: {
  60545. height: math.unit(1.3, "feet"),
  60546. name: "Armband",
  60547. image: {
  60548. source: "./media/characters/nima/armband.svg"
  60549. }
  60550. },
  60551. },
  60552. [
  60553. {
  60554. name: "Incognito",
  60555. height: math.unit(2.1, "meters"),
  60556. allForms: true
  60557. },
  60558. {
  60559. name: "Small Macro",
  60560. height: math.unit(50, "meters"),
  60561. allForms: true
  60562. },
  60563. {
  60564. name: "Macro",
  60565. height: math.unit(200, "meters"),
  60566. allForms: true
  60567. },
  60568. {
  60569. name: "Mega",
  60570. height: math.unit(2.5, "km"),
  60571. allForms: true
  60572. },
  60573. {
  60574. name: "Mega+",
  60575. height: math.unit(30, "km"),
  60576. allForms: true
  60577. },
  60578. {
  60579. name: "Giga (Home Size)",
  60580. height: math.unit(400, "km"),
  60581. allForms: true,
  60582. default: true
  60583. },
  60584. {
  60585. name: "Giga+",
  60586. height: math.unit(2500, "km"),
  60587. allForms: true
  60588. },
  60589. {
  60590. name: "Giga++",
  60591. height: math.unit(8000, "km"),
  60592. allForms: true
  60593. },
  60594. {
  60595. name: "Terra",
  60596. height: math.unit(20000, "km"),
  60597. allForms: true
  60598. },
  60599. {
  60600. name: "Terra+",
  60601. height: math.unit(70000, "km"),
  60602. allForms: true
  60603. },
  60604. {
  60605. name: "Terra++",
  60606. height: math.unit(600000, "km"),
  60607. allForms: true
  60608. },
  60609. {
  60610. name: "Galactic",
  60611. height: math.unit(40, "galaxies"),
  60612. allForms: true
  60613. },
  60614. {
  60615. name: "Universal",
  60616. height: math.unit(40, "universes"),
  60617. allForms: true
  60618. },
  60619. ],
  60620. {
  60621. "hyena": {
  60622. name: "Hyena",
  60623. default: true
  60624. },
  60625. "shark": {
  60626. name: "Shark",
  60627. },
  60628. }
  60629. ))
  60630. characterMakers.push(() => makeCharacter(
  60631. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60632. {
  60633. anthro_front: {
  60634. height: math.unit(1.5, "meters"),
  60635. name: "Front",
  60636. image: {
  60637. source: "./media/characters/adelaide/anthro-front.svg",
  60638. extra: 860/783,
  60639. bottom: 60/920
  60640. },
  60641. form: "anthro",
  60642. default: true
  60643. },
  60644. hand: {
  60645. height: math.unit(0.65, "feet"),
  60646. name: "Hand",
  60647. image: {
  60648. source: "./media/characters/adelaide/hand.svg"
  60649. },
  60650. form: "anthro"
  60651. },
  60652. foot: {
  60653. height: math.unit(1.38 * 259 / 314, "feet"),
  60654. name: "Foot",
  60655. image: {
  60656. source: "./media/characters/adelaide/foot.svg",
  60657. extra: 259/259,
  60658. bottom: 55/314
  60659. },
  60660. form: "anthro"
  60661. },
  60662. feather: {
  60663. height: math.unit(0.85, "feet"),
  60664. name: "Feather",
  60665. image: {
  60666. source: "./media/characters/adelaide/feather.svg"
  60667. },
  60668. form: "anthro"
  60669. },
  60670. feral_side: {
  60671. height: math.unit(1, "meters"),
  60672. name: "Side",
  60673. image: {
  60674. source: "./media/characters/adelaide/feral-side.svg",
  60675. extra: 550/467,
  60676. bottom: 37/587
  60677. },
  60678. form: "feral",
  60679. default: true
  60680. },
  60681. feral_hand: {
  60682. height: math.unit(0.58, "feet"),
  60683. name: "Hand",
  60684. image: {
  60685. source: "./media/characters/adelaide/hand.svg"
  60686. },
  60687. form: "feral"
  60688. },
  60689. feral_foot: {
  60690. height: math.unit(1.2 * 259 / 314, "feet"),
  60691. name: "Foot",
  60692. image: {
  60693. source: "./media/characters/adelaide/foot.svg",
  60694. extra: 259/259,
  60695. bottom: 55/314
  60696. },
  60697. form: "feral"
  60698. },
  60699. feral_feather: {
  60700. height: math.unit(0.63, "feet"),
  60701. name: "Feather",
  60702. image: {
  60703. source: "./media/characters/adelaide/feather.svg"
  60704. },
  60705. form: "feral"
  60706. },
  60707. },
  60708. [
  60709. {
  60710. name: "Normal",
  60711. height: math.unit(1.5, "meters"),
  60712. form: "anthro",
  60713. default: true
  60714. },
  60715. {
  60716. name: "Normal",
  60717. height: math.unit(1, "meters"),
  60718. form: "feral",
  60719. default: true
  60720. },
  60721. ],
  60722. {
  60723. "anthro": {
  60724. name: "Anthro",
  60725. default: true
  60726. },
  60727. "feral": {
  60728. name: "Feral",
  60729. },
  60730. }
  60731. ))
  60732. characterMakers.push(() => makeCharacter(
  60733. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60734. {
  60735. front: {
  60736. height: math.unit(2.5, "meters"),
  60737. name: "Front",
  60738. image: {
  60739. source: "./media/characters/goa/front.svg",
  60740. extra: 1109/1013,
  60741. bottom: 150/1259
  60742. }
  60743. },
  60744. },
  60745. [
  60746. {
  60747. name: "Normal",
  60748. height: math.unit(2.5, "meters"),
  60749. default: true
  60750. },
  60751. ]
  60752. ))
  60753. characterMakers.push(() => makeCharacter(
  60754. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60755. {
  60756. front: {
  60757. height: math.unit(2, "meters"),
  60758. weight: math.unit(100, "kg"),
  60759. name: "Front",
  60760. image: {
  60761. source: "./media/characters/kiki-weavile/front.svg",
  60762. extra: 357/332,
  60763. bottom: 60/417
  60764. }
  60765. },
  60766. },
  60767. [
  60768. {
  60769. name: "Normal",
  60770. height: math.unit(2, "meters"),
  60771. default: true
  60772. },
  60773. ]
  60774. ))
  60775. characterMakers.push(() => makeCharacter(
  60776. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60777. {
  60778. side: {
  60779. height: math.unit(1.6, "meters"),
  60780. name: "Side",
  60781. image: {
  60782. source: "./media/characters/liza/side.svg",
  60783. extra: 943/915,
  60784. bottom: 72/1015
  60785. }
  60786. },
  60787. },
  60788. [
  60789. {
  60790. name: "Normal",
  60791. height: math.unit(1.6, "meters"),
  60792. default: true
  60793. },
  60794. ]
  60795. ))
  60796. characterMakers.push(() => makeCharacter(
  60797. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60798. {
  60799. side: {
  60800. height: math.unit(2.5, "meters"),
  60801. preyCapacity: math.unit(1, "people"),
  60802. name: "Side",
  60803. image: {
  60804. source: "./media/characters/persephone-sweetbreath/side.svg",
  60805. extra: 796/700,
  60806. bottom: 44/840
  60807. }
  60808. },
  60809. sideVore: {
  60810. height: math.unit(2.5, "meters"),
  60811. preyCapacity: math.unit(1, "people"),
  60812. name: "Side (Full)",
  60813. image: {
  60814. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60815. extra: 796/700,
  60816. bottom: 44/840
  60817. }
  60818. },
  60819. },
  60820. [
  60821. {
  60822. name: "Normal",
  60823. height: math.unit(2.5, "meters"),
  60824. default: true
  60825. },
  60826. ]
  60827. ))
  60828. characterMakers.push(() => makeCharacter(
  60829. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60830. {
  60831. front: {
  60832. height: math.unit(32, "meters"),
  60833. name: "Front",
  60834. image: {
  60835. source: "./media/characters/pierce/front.svg",
  60836. extra: 1695/1475,
  60837. bottom: 185/1880
  60838. }
  60839. },
  60840. side: {
  60841. height: math.unit(32, "meters"),
  60842. name: "Side",
  60843. image: {
  60844. source: "./media/characters/pierce/side.svg",
  60845. extra: 974/859,
  60846. bottom: 43/1017
  60847. }
  60848. },
  60849. frontWingless: {
  60850. height: math.unit(32, "meters"),
  60851. name: "Front (Wingless)",
  60852. image: {
  60853. source: "./media/characters/pierce/front-wingless.svg",
  60854. extra: 1695/1475,
  60855. bottom: 185/1880
  60856. }
  60857. },
  60858. sideWingless: {
  60859. height: math.unit(32, "meters"),
  60860. name: "Side (Wingless)",
  60861. image: {
  60862. source: "./media/characters/pierce/side-wingless.svg",
  60863. extra: 974/859,
  60864. bottom: 43/1017
  60865. }
  60866. },
  60867. maw: {
  60868. height: math.unit(19.3, "meters"),
  60869. name: "Maw",
  60870. image: {
  60871. source: "./media/characters/pierce/maw.svg"
  60872. }
  60873. },
  60874. },
  60875. [
  60876. {
  60877. name: "Small",
  60878. height: math.unit(8.5, "meters")
  60879. },
  60880. {
  60881. name: "Normal",
  60882. height: math.unit(32, "meters"),
  60883. default: true
  60884. },
  60885. ]
  60886. ))
  60887. characterMakers.push(() => makeCharacter(
  60888. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60889. {
  60890. front: {
  60891. height: math.unit(2.3, "meters"),
  60892. weight: math.unit(165, "kg"),
  60893. name: "Front",
  60894. image: {
  60895. source: "./media/characters/shira/front.svg",
  60896. extra: 924/919,
  60897. bottom: 17/941
  60898. },
  60899. form: "cobra",
  60900. default: true
  60901. },
  60902. back: {
  60903. height: math.unit(2.3, "meters"),
  60904. weight: math.unit(165, "kg"),
  60905. name: "Back",
  60906. image: {
  60907. source: "./media/characters/shira/back.svg",
  60908. extra: 928/922,
  60909. bottom: 18/946
  60910. },
  60911. form: "cobra"
  60912. },
  60913. frontLewd: {
  60914. height: math.unit(2.3, "meters"),
  60915. weight: math.unit(165, "kg"),
  60916. name: "Front (Lewd)",
  60917. image: {
  60918. source: "./media/characters/shira/front-lewd.svg",
  60919. extra: 924/919,
  60920. bottom: 17/941
  60921. },
  60922. form: "cobra"
  60923. },
  60924. backLewd: {
  60925. height: math.unit(2.3, "meters"),
  60926. weight: math.unit(165, "kg"),
  60927. name: "Back (Lewd)",
  60928. image: {
  60929. source: "./media/characters/shira/back-lewd.svg",
  60930. extra: 928/922,
  60931. bottom: 18/946
  60932. },
  60933. form: "cobra"
  60934. },
  60935. maw: {
  60936. height: math.unit(1.14, "feet"),
  60937. name: "Maw",
  60938. image: {
  60939. source: "./media/characters/shira/maw.svg"
  60940. },
  60941. form: "cobra"
  60942. },
  60943. magma_front: {
  60944. height: math.unit(2.3, "meters"),
  60945. weight: math.unit(165, "kg"),
  60946. name: "Front",
  60947. image: {
  60948. source: "./media/characters/shira/magma-front.svg",
  60949. extra: 1870/1693,
  60950. bottom: 24/1894
  60951. },
  60952. form: "magma",
  60953. },
  60954. magma_back: {
  60955. height: math.unit(2.3, "meters"),
  60956. weight: math.unit(165, "kg"),
  60957. name: "Back",
  60958. image: {
  60959. source: "./media/characters/shira/magma-back.svg",
  60960. extra: 1918/1756,
  60961. bottom: 46/1964
  60962. },
  60963. form: "magma",
  60964. },
  60965. },
  60966. [
  60967. {
  60968. name: "Incognito",
  60969. height: math.unit(2.3, "meters"),
  60970. allForms: true
  60971. },
  60972. {
  60973. name: "Home Size",
  60974. height: math.unit(150, "meters"),
  60975. default: true,
  60976. allForms: true
  60977. },
  60978. {
  60979. name: "Macro",
  60980. height: math.unit(2, "km"),
  60981. allForms: true
  60982. },
  60983. {
  60984. name: "Mega",
  60985. height: math.unit(30, "km"),
  60986. allForms: true
  60987. },
  60988. {
  60989. name: "Giga",
  60990. height: math.unit(450, "km"),
  60991. allForms: true
  60992. },
  60993. {
  60994. name: "Giga+",
  60995. height: math.unit(3000, "km"),
  60996. allForms: true
  60997. },
  60998. {
  60999. name: "Giga++",
  61000. height: math.unit(6000, "km"),
  61001. allForms: true
  61002. },
  61003. {
  61004. name: "Terra",
  61005. height: math.unit(80000, "km"),
  61006. allForms: true
  61007. },
  61008. {
  61009. name: "Terra+",
  61010. height: math.unit(350000, "km"),
  61011. allForms: true
  61012. },
  61013. {
  61014. name: "Solar",
  61015. height: math.unit(1e6, "km"),
  61016. allForms: true
  61017. },
  61018. ],
  61019. {
  61020. "cobra": {
  61021. name: "Cobra",
  61022. default: true
  61023. },
  61024. "magma": {
  61025. name: "Magma Dragon",
  61026. },
  61027. }
  61028. ))
  61029. characterMakers.push(() => makeCharacter(
  61030. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  61031. {
  61032. front: {
  61033. height: math.unit(2, "meters"),
  61034. weight: math.unit(160, "kg"),
  61035. name: "Front",
  61036. image: {
  61037. source: "./media/characters/daxerios/front.svg",
  61038. extra: 1334/1277,
  61039. bottom: 45/1379
  61040. }
  61041. },
  61042. frontLewd: {
  61043. height: math.unit(2, "meters"),
  61044. weight: math.unit(160, "kg"),
  61045. name: "Front (Lewd)",
  61046. image: {
  61047. source: "./media/characters/daxerios/front-lewd.svg",
  61048. extra: 1334/1277,
  61049. bottom: 45/1379
  61050. }
  61051. },
  61052. dick: {
  61053. height: math.unit(2.35, "feet"),
  61054. name: "Dick",
  61055. image: {
  61056. source: "./media/characters/daxerios/dick.svg"
  61057. }
  61058. },
  61059. },
  61060. [
  61061. {
  61062. name: "\"Small\"",
  61063. height: math.unit(5, "meters")
  61064. },
  61065. {
  61066. name: "Original Size",
  61067. height: math.unit(500, "meters"),
  61068. default: true
  61069. },
  61070. {
  61071. name: "Mega",
  61072. height: math.unit(2, "km")
  61073. },
  61074. {
  61075. name: "Mega+",
  61076. height: math.unit(35, "km")
  61077. },
  61078. {
  61079. name: "Giga",
  61080. height: math.unit(250, "km")
  61081. },
  61082. {
  61083. name: "Giga+",
  61084. height: math.unit(3000, "km")
  61085. },
  61086. {
  61087. name: "Terra",
  61088. height: math.unit(25000, "km")
  61089. },
  61090. {
  61091. name: "Terra+",
  61092. height: math.unit(300000, "km")
  61093. },
  61094. {
  61095. name: "Solar",
  61096. height: math.unit(1e6, "km")
  61097. },
  61098. ]
  61099. ))
  61100. characterMakers.push(() => makeCharacter(
  61101. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  61102. {
  61103. front: {
  61104. height: math.unit(8 + 4/12, "feet"),
  61105. weight: math.unit(464, "lb"),
  61106. name: "Front",
  61107. image: {
  61108. source: "./media/characters/caveat/front.svg",
  61109. extra: 1861/1678,
  61110. bottom: 40/1901
  61111. }
  61112. },
  61113. },
  61114. [
  61115. {
  61116. name: "Normal",
  61117. height: math.unit(8 + 4/12, "feet"),
  61118. default: true
  61119. },
  61120. ]
  61121. ))
  61122. characterMakers.push(() => makeCharacter(
  61123. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  61124. {
  61125. front: {
  61126. height: math.unit(12, "feet"),
  61127. weight: math.unit(1800, "lb"),
  61128. name: "Front",
  61129. image: {
  61130. source: "./media/characters/centbair/front.svg",
  61131. extra: 781/663,
  61132. bottom: 25/806
  61133. }
  61134. },
  61135. frontNsfw: {
  61136. height: math.unit(12, "feet"),
  61137. weight: math.unit(1800, "lb"),
  61138. name: "Front (NSFW)",
  61139. image: {
  61140. source: "./media/characters/centbair/front-nsfw.svg",
  61141. extra: 781/663,
  61142. bottom: 25/806
  61143. }
  61144. },
  61145. back: {
  61146. height: math.unit(12, "feet"),
  61147. weight: math.unit(1800, "lb"),
  61148. name: "Back",
  61149. image: {
  61150. source: "./media/characters/centbair/back.svg",
  61151. extra: 808/761,
  61152. bottom: 19/827
  61153. }
  61154. },
  61155. dick: {
  61156. height: math.unit(6.5, "feet"),
  61157. name: "Dick",
  61158. image: {
  61159. source: "./media/characters/centbair/dick.svg"
  61160. }
  61161. },
  61162. slit: {
  61163. height: math.unit(3.25, "feet"),
  61164. name: "Slit",
  61165. image: {
  61166. source: "./media/characters/centbair/slit.svg"
  61167. }
  61168. },
  61169. },
  61170. [
  61171. {
  61172. name: "Normal",
  61173. height: math.unit(12, "feet"),
  61174. default: true
  61175. },
  61176. ]
  61177. ))
  61178. characterMakers.push(() => makeCharacter(
  61179. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  61180. {
  61181. front: {
  61182. height: math.unit(5 + 7/12, "feet"),
  61183. name: "Front",
  61184. image: {
  61185. source: "./media/characters/andy/front.svg",
  61186. extra: 634/588,
  61187. bottom: 36/670
  61188. },
  61189. extraAttributes: {
  61190. "pawLength": {
  61191. name: "Paw Length",
  61192. power: 1,
  61193. type: "length",
  61194. base: math.unit(1, "feet")
  61195. },
  61196. }
  61197. },
  61198. side: {
  61199. height: math.unit(5 + 7/12, "feet"),
  61200. name: "Side",
  61201. image: {
  61202. source: "./media/characters/andy/side.svg",
  61203. extra: 641/596,
  61204. bottom: 34/675
  61205. },
  61206. extraAttributes: {
  61207. "pawLength": {
  61208. name: "Paw Length",
  61209. power: 1,
  61210. type: "length",
  61211. base: math.unit(1, "feet")
  61212. },
  61213. }
  61214. },
  61215. back: {
  61216. height: math.unit(5 + 7/12, "feet"),
  61217. name: "Back",
  61218. image: {
  61219. source: "./media/characters/andy/back.svg",
  61220. extra: 618/583,
  61221. bottom: 39/657
  61222. },
  61223. extraAttributes: {
  61224. "pawLength": {
  61225. name: "Paw Length",
  61226. power: 1,
  61227. type: "length",
  61228. base: math.unit(1, "feet")
  61229. },
  61230. }
  61231. },
  61232. paw: {
  61233. height: math.unit(1.13, "feet"),
  61234. name: "Paw",
  61235. image: {
  61236. source: "./media/characters/andy/paw.svg"
  61237. }
  61238. },
  61239. },
  61240. [
  61241. {
  61242. name: "Micro",
  61243. height: math.unit(4, "inches")
  61244. },
  61245. {
  61246. name: "Normal",
  61247. height: math.unit(5 + 7/12, "feet"),
  61248. default: true
  61249. },
  61250. {
  61251. name: "Macro",
  61252. height: math.unit(390.42, "feet")
  61253. },
  61254. ]
  61255. ))
  61256. characterMakers.push(() => makeCharacter(
  61257. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61258. {
  61259. front: {
  61260. height: math.unit(7, "feet"),
  61261. weight: math.unit(250, "lb"),
  61262. name: "Front",
  61263. image: {
  61264. source: "./media/characters/vix-titan/front.svg",
  61265. extra: 460/428,
  61266. bottom: 15/475
  61267. },
  61268. extraAttributes: {
  61269. "pawWidth": {
  61270. name: "Paw Width",
  61271. power: 1,
  61272. type: "length",
  61273. base: math.unit(0.75, "feet")
  61274. },
  61275. }
  61276. },
  61277. },
  61278. [
  61279. {
  61280. name: "Normal",
  61281. height: math.unit(7, "feet"),
  61282. default: true
  61283. },
  61284. {
  61285. name: "Giant",
  61286. height: math.unit(1500, "feet")
  61287. },
  61288. {
  61289. name: "Mega",
  61290. height: math.unit(10, "miles")
  61291. },
  61292. {
  61293. name: "Giga",
  61294. height: math.unit(150, "miles")
  61295. },
  61296. {
  61297. name: "Tera",
  61298. height: math.unit(144000, "miles")
  61299. },
  61300. ]
  61301. ))
  61302. characterMakers.push(() => makeCharacter(
  61303. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61304. {
  61305. front: {
  61306. height: math.unit(6 + 2/12, "feet"),
  61307. name: "Front",
  61308. image: {
  61309. source: "./media/characters/reiku/front.svg",
  61310. extra: 1910/1757,
  61311. bottom: 103/2013
  61312. },
  61313. extraAttributes: {
  61314. "thighThickness": {
  61315. name: "Thigh Thickness",
  61316. power: 1,
  61317. type: "length",
  61318. base: math.unit(1.12, "feet")
  61319. },
  61320. "assThickness": {
  61321. name: "Ass Thickness",
  61322. power: 1,
  61323. type: "length",
  61324. base: math.unit(1.12*2, "feet")
  61325. },
  61326. }
  61327. },
  61328. side: {
  61329. height: math.unit(6 + 2/12, "feet"),
  61330. name: "Side",
  61331. image: {
  61332. source: "./media/characters/reiku/side.svg",
  61333. extra: 1846/1748,
  61334. bottom: 99/1945
  61335. },
  61336. extraAttributes: {
  61337. "thighThickness": {
  61338. name: "Thigh Thickness",
  61339. power: 1,
  61340. type: "length",
  61341. base: math.unit(1.12, "feet")
  61342. },
  61343. "assThickness": {
  61344. name: "Ass Thickness",
  61345. power: 1,
  61346. type: "length",
  61347. base: math.unit(1.12*2, "feet")
  61348. },
  61349. }
  61350. },
  61351. back: {
  61352. height: math.unit(6 + 2/12, "feet"),
  61353. name: "Back",
  61354. image: {
  61355. source: "./media/characters/reiku/back.svg",
  61356. extra: 1941/1786,
  61357. bottom: 34/1975
  61358. },
  61359. extraAttributes: {
  61360. "thighThickness": {
  61361. name: "Thigh Thickness",
  61362. power: 1,
  61363. type: "length",
  61364. base: math.unit(1.12, "feet")
  61365. },
  61366. "assThickness": {
  61367. name: "Ass Thickness",
  61368. power: 1,
  61369. type: "length",
  61370. base: math.unit(1.12*2, "feet")
  61371. },
  61372. }
  61373. },
  61374. head: {
  61375. height: math.unit(1.8, "feet"),
  61376. name: "Head",
  61377. image: {
  61378. source: "./media/characters/reiku/head.svg"
  61379. }
  61380. },
  61381. tailTop: {
  61382. height: math.unit(8.4, "feet"),
  61383. name: "Tail (Top)",
  61384. image: {
  61385. source: "./media/characters/reiku/tail-top.svg"
  61386. }
  61387. },
  61388. tailBottom: {
  61389. height: math.unit(8.4, "feet"),
  61390. name: "Tail (Bottom)",
  61391. image: {
  61392. source: "./media/characters/reiku/tail-bottom.svg"
  61393. }
  61394. },
  61395. foot: {
  61396. height: math.unit(2.6, "feet"),
  61397. name: "Foot",
  61398. image: {
  61399. source: "./media/characters/reiku/foot.svg"
  61400. }
  61401. },
  61402. footCurled: {
  61403. height: math.unit(2.3, "feet"),
  61404. name: "Foot (Curled)",
  61405. image: {
  61406. source: "./media/characters/reiku/foot-curled.svg"
  61407. }
  61408. },
  61409. footSide: {
  61410. height: math.unit(1.26, "feet"),
  61411. name: "Foot (Side)",
  61412. image: {
  61413. source: "./media/characters/reiku/foot-side.svg"
  61414. }
  61415. },
  61416. },
  61417. [
  61418. {
  61419. name: "Normal",
  61420. height: math.unit(6 + 2/12, "feet"),
  61421. default: true
  61422. },
  61423. ]
  61424. ))
  61425. characterMakers.push(() => makeCharacter(
  61426. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61427. {
  61428. front: {
  61429. height: math.unit(7, "feet"),
  61430. weight: math.unit(500, "kg"),
  61431. name: "Front",
  61432. image: {
  61433. source: "./media/characters/cialda/front.svg",
  61434. extra: 912/745,
  61435. bottom: 55/967
  61436. }
  61437. },
  61438. },
  61439. [
  61440. {
  61441. name: "Normal",
  61442. height: math.unit(7, "feet"),
  61443. default: true
  61444. },
  61445. ]
  61446. ))
  61447. characterMakers.push(() => makeCharacter(
  61448. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61449. {
  61450. side: {
  61451. height: math.unit(6, "feet"),
  61452. weight: math.unit(600, "lb"),
  61453. preyCapacity: math.unit(25, "liters"),
  61454. name: "Side",
  61455. image: {
  61456. source: "./media/characters/darkkin/side.svg",
  61457. extra: 1597/1447,
  61458. bottom: 101/1698
  61459. }
  61460. },
  61461. },
  61462. [
  61463. {
  61464. name: "Canon Height",
  61465. height: math.unit(568, "feet"),
  61466. default: true
  61467. },
  61468. ]
  61469. ))
  61470. characterMakers.push(() => makeCharacter(
  61471. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61472. {
  61473. front: {
  61474. height: math.unit(6, "feet"),
  61475. weight: math.unit(1500, "lb"),
  61476. preyCapacity: math.unit(3, "people"),
  61477. name: "Front",
  61478. image: {
  61479. source: "./media/characters/livnia/front.svg",
  61480. extra: 934/932,
  61481. bottom: 83/1017
  61482. }
  61483. },
  61484. back: {
  61485. height: math.unit(6, "feet"),
  61486. weight: math.unit(1500, "lb"),
  61487. preyCapacity: math.unit(3, "people"),
  61488. name: "Back",
  61489. image: {
  61490. source: "./media/characters/livnia/back.svg",
  61491. extra: 916/915,
  61492. bottom: 58/974
  61493. }
  61494. },
  61495. head: {
  61496. height: math.unit(1.53, "feet"),
  61497. name: "Head",
  61498. image: {
  61499. source: "./media/characters/livnia/head.svg"
  61500. }
  61501. },
  61502. maw: {
  61503. height: math.unit(0.78, "feet"),
  61504. name: "Maw",
  61505. image: {
  61506. source: "./media/characters/livnia/maw.svg"
  61507. }
  61508. },
  61509. genitals: {
  61510. height: math.unit(0.35, "feet"),
  61511. name: "Genitals",
  61512. image: {
  61513. source: "./media/characters/livnia/genitals.svg"
  61514. }
  61515. },
  61516. },
  61517. [
  61518. {
  61519. name: "Normal",
  61520. height: math.unit(1000, "feet"),
  61521. default: true
  61522. },
  61523. ]
  61524. ))
  61525. characterMakers.push(() => makeCharacter(
  61526. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61527. {
  61528. front: {
  61529. height: math.unit(4, "feet"),
  61530. weight: math.unit(73, "lb"),
  61531. name: "Front",
  61532. image: {
  61533. source: "./media/characters/hayaku/front.svg",
  61534. extra: 1011/888,
  61535. bottom: 33/1044
  61536. }
  61537. },
  61538. back: {
  61539. height: math.unit(4, "feet"),
  61540. weight: math.unit(73, "lb"),
  61541. name: "Back",
  61542. image: {
  61543. source: "./media/characters/hayaku/back.svg",
  61544. extra: 1040/930,
  61545. bottom: 20/1060
  61546. }
  61547. },
  61548. },
  61549. [
  61550. {
  61551. name: "Normal",
  61552. height: math.unit(4, "feet"),
  61553. default: true
  61554. },
  61555. ]
  61556. ))
  61557. characterMakers.push(() => makeCharacter(
  61558. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61559. {
  61560. front: {
  61561. height: math.unit(6 + 7/12, "feet"),
  61562. weight: math.unit(300, "lb"),
  61563. name: "Front",
  61564. image: {
  61565. source: "./media/characters/athena-bryzant/front.svg",
  61566. extra: 870/835,
  61567. bottom: 33/903
  61568. }
  61569. },
  61570. back: {
  61571. height: math.unit(6 + 7/12, "feet"),
  61572. weight: math.unit(300, "lb"),
  61573. name: "Back",
  61574. image: {
  61575. source: "./media/characters/athena-bryzant/back.svg",
  61576. extra: 858/823,
  61577. bottom: 30/888
  61578. }
  61579. },
  61580. head: {
  61581. height: math.unit(2.38, "feet"),
  61582. name: "Head",
  61583. image: {
  61584. source: "./media/characters/athena-bryzant/head.svg"
  61585. }
  61586. },
  61587. wings: {
  61588. height: math.unit(2.85, "feet"),
  61589. name: "Wings",
  61590. image: {
  61591. source: "./media/characters/athena-bryzant/wings.svg"
  61592. }
  61593. },
  61594. },
  61595. [
  61596. {
  61597. name: "Normal",
  61598. height: math.unit(6 + 7/12, "feet"),
  61599. default: true
  61600. },
  61601. {
  61602. name: "Big",
  61603. height: math.unit(8, "feet")
  61604. },
  61605. {
  61606. name: "Very Big",
  61607. height: math.unit(11, "feet")
  61608. },
  61609. ]
  61610. ))
  61611. characterMakers.push(() => makeCharacter(
  61612. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61613. {
  61614. side: {
  61615. height: math.unit(3, "meters"),
  61616. weight: math.unit(7500, "kg"),
  61617. preyCapacity: math.unit(1e12, "people"),
  61618. name: "Side",
  61619. image: {
  61620. source: "./media/characters/zel-kesh/side.svg",
  61621. extra: 910/407,
  61622. bottom: 147/1057
  61623. }
  61624. },
  61625. },
  61626. [
  61627. {
  61628. name: "Normal",
  61629. height: math.unit(3, "meters"),
  61630. default: true
  61631. },
  61632. ]
  61633. ))
  61634. characterMakers.push(() => makeCharacter(
  61635. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61636. {
  61637. front: {
  61638. height: math.unit(2, "meters"),
  61639. weight: math.unit(95, "kg"),
  61640. name: "Front",
  61641. image: {
  61642. source: "./media/characters/kane-fox/front.svg",
  61643. extra: 945/888,
  61644. bottom: 27/972
  61645. }
  61646. },
  61647. back: {
  61648. height: math.unit(2, "meters"),
  61649. weight: math.unit(95, "kg"),
  61650. name: "Back",
  61651. image: {
  61652. source: "./media/characters/kane-fox/back.svg",
  61653. extra: 959/914,
  61654. bottom: 15/974
  61655. }
  61656. },
  61657. frontLewd: {
  61658. height: math.unit(2, "meters"),
  61659. weight: math.unit(95, "kg"),
  61660. name: "Front (Lewd)",
  61661. image: {
  61662. source: "./media/characters/kane-fox/front-lewd.svg",
  61663. extra: 945/888,
  61664. bottom: 27/972
  61665. }
  61666. },
  61667. },
  61668. [
  61669. {
  61670. name: "Home Size",
  61671. height: math.unit(2, "meters"),
  61672. default: true
  61673. },
  61674. {
  61675. name: "Macro",
  61676. height: math.unit(200, "meters")
  61677. },
  61678. {
  61679. name: "Small Mega",
  61680. height: math.unit(3, "km")
  61681. },
  61682. {
  61683. name: "Mega",
  61684. height: math.unit(50, "km")
  61685. },
  61686. {
  61687. name: "Giga",
  61688. height: math.unit(200, "km")
  61689. },
  61690. {
  61691. name: "Giga+",
  61692. height: math.unit(2500, "km")
  61693. },
  61694. {
  61695. name: "Terra",
  61696. height: math.unit(70000, "km")
  61697. },
  61698. {
  61699. name: "Terra+",
  61700. height: math.unit(150000, "km")
  61701. },
  61702. {
  61703. name: "Terra++",
  61704. height: math.unit(400000, "km")
  61705. },
  61706. ]
  61707. ))
  61708. characterMakers.push(() => makeCharacter(
  61709. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61710. {
  61711. otter_front: {
  61712. height: math.unit(1.8, "meters"),
  61713. weight: math.unit(90, "kg"),
  61714. name: "Front",
  61715. image: {
  61716. source: "./media/characters/ayranus/otter-front.svg",
  61717. extra: 468/452,
  61718. bottom: 43/511
  61719. },
  61720. form: "otter",
  61721. },
  61722. otter_frontLewd: {
  61723. height: math.unit(1.8, "meters"),
  61724. weight: math.unit(90, "kg"),
  61725. name: "Front (Lewd)",
  61726. image: {
  61727. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61728. extra: 468/452,
  61729. bottom: 43/511
  61730. },
  61731. form: "otter",
  61732. },
  61733. lionbat_front: {
  61734. height: math.unit(1.8, "meters"),
  61735. weight: math.unit(90, "kg"),
  61736. name: "Front (Lewd)",
  61737. image: {
  61738. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61739. extra: 797/740,
  61740. bottom: 78/875
  61741. },
  61742. form: "lionbat",
  61743. },
  61744. paw: {
  61745. height: math.unit(1.5, "feet"),
  61746. name: "Paw",
  61747. image: {
  61748. source: "./media/characters/ayranus/paw.svg"
  61749. },
  61750. },
  61751. },
  61752. [
  61753. {
  61754. name: "Incognito",
  61755. height: math.unit(1.8, "meters"),
  61756. allForms: true
  61757. },
  61758. {
  61759. name: "Macro",
  61760. height: math.unit(60, "meters"),
  61761. allForms: true
  61762. },
  61763. {
  61764. name: "Macro+",
  61765. height: math.unit(200, "meters"),
  61766. allForms: true
  61767. },
  61768. {
  61769. name: "Mega",
  61770. height: math.unit(35, "km"),
  61771. allForms: true
  61772. },
  61773. {
  61774. name: "Giga",
  61775. height: math.unit(220, "km"),
  61776. allForms: true
  61777. },
  61778. {
  61779. name: "Giga+",
  61780. height: math.unit(1500, "km"),
  61781. allForms: true
  61782. },
  61783. {
  61784. name: "Terra",
  61785. height: math.unit(13000, "km"),
  61786. allForms: true
  61787. },
  61788. {
  61789. name: "Terra+",
  61790. height: math.unit(500000, "km"),
  61791. allForms: true
  61792. },
  61793. {
  61794. name: "Galactic",
  61795. height: math.unit(486080, "parsecs"),
  61796. default: true,
  61797. allForms: true
  61798. },
  61799. ],
  61800. {
  61801. "otter": {
  61802. name: "Otter",
  61803. default: true
  61804. },
  61805. "lionbat": {
  61806. name: "Lionbat",
  61807. },
  61808. }
  61809. ))
  61810. characterMakers.push(() => makeCharacter(
  61811. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61812. {
  61813. front: {
  61814. height: math.unit(7 + 4/12, "feet"),
  61815. weight: math.unit(400, "lb"),
  61816. name: "Front",
  61817. image: {
  61818. source: "./media/characters/proxy/front.svg",
  61819. extra: 1605/1542,
  61820. bottom: 55/1660
  61821. }
  61822. },
  61823. side: {
  61824. height: math.unit(7 + 4/12, "feet"),
  61825. weight: math.unit(400, "lb"),
  61826. name: "Side",
  61827. image: {
  61828. source: "./media/characters/proxy/side.svg",
  61829. extra: 794/759,
  61830. bottom: 6/800
  61831. }
  61832. },
  61833. hand: {
  61834. height: math.unit(1.54, "feet"),
  61835. name: "Hand",
  61836. image: {
  61837. source: "./media/characters/proxy/hand.svg"
  61838. }
  61839. },
  61840. paw: {
  61841. height: math.unit(1.53, "feet"),
  61842. name: "Paw",
  61843. image: {
  61844. source: "./media/characters/proxy/paw.svg"
  61845. }
  61846. },
  61847. maw: {
  61848. height: math.unit(1.9, "feet"),
  61849. name: "Maw",
  61850. image: {
  61851. source: "./media/characters/proxy/maw.svg"
  61852. }
  61853. },
  61854. },
  61855. [
  61856. {
  61857. name: "Normal",
  61858. height: math.unit(7 + 4/12, "feet"),
  61859. default: true
  61860. },
  61861. ]
  61862. ))
  61863. characterMakers.push(() => makeCharacter(
  61864. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61865. {
  61866. front: {
  61867. height: math.unit(4, "meters"),
  61868. name: "Front",
  61869. image: {
  61870. source: "./media/characters/crocozilla/front.svg",
  61871. extra: 1790/1742,
  61872. bottom: 78/1868
  61873. }
  61874. },
  61875. },
  61876. [
  61877. {
  61878. name: "Normal",
  61879. height: math.unit(4, "meters"),
  61880. default: true
  61881. },
  61882. ]
  61883. ))
  61884. characterMakers.push(() => makeCharacter(
  61885. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61886. {
  61887. front: {
  61888. height: math.unit(1.8, "meters"),
  61889. weight: math.unit(120, "kg"),
  61890. name: "Front",
  61891. image: {
  61892. source: "./media/characters/kurz/front.svg",
  61893. extra: 1960/1824,
  61894. bottom: 41/2001
  61895. }
  61896. },
  61897. back: {
  61898. height: math.unit(1.8, "meters"),
  61899. weight: math.unit(120, "kg"),
  61900. name: "Back",
  61901. image: {
  61902. source: "./media/characters/kurz/back.svg",
  61903. extra: 1906/1787,
  61904. bottom: 60/1966
  61905. }
  61906. },
  61907. frontLewd: {
  61908. height: math.unit(1.8, "meters"),
  61909. weight: math.unit(120, "kg"),
  61910. name: "Front (Lewd)",
  61911. image: {
  61912. source: "./media/characters/kurz/front-lewd.svg",
  61913. extra: 1960/1824,
  61914. bottom: 41/2001
  61915. }
  61916. },
  61917. maw: {
  61918. height: math.unit(0.69, "meters"),
  61919. name: "Maw",
  61920. image: {
  61921. source: "./media/characters/kurz/maw.svg"
  61922. }
  61923. },
  61924. },
  61925. [
  61926. {
  61927. name: "Original Size",
  61928. height: math.unit(1.8, "meters")
  61929. },
  61930. {
  61931. name: "Incognito Size",
  61932. height: math.unit(2.4, "meters"),
  61933. default: true
  61934. },
  61935. {
  61936. name: "Macro",
  61937. height: math.unit(30, "meters")
  61938. },
  61939. {
  61940. name: "Macro+",
  61941. height: math.unit(250, "meters")
  61942. },
  61943. {
  61944. name: "Mega",
  61945. height: math.unit(2, "km")
  61946. },
  61947. {
  61948. name: "Mega+",
  61949. height: math.unit(35, "km")
  61950. },
  61951. {
  61952. name: "Mega++",
  61953. height: math.unit(75, "km")
  61954. },
  61955. {
  61956. name: "Giga",
  61957. height: math.unit(250, "km")
  61958. },
  61959. {
  61960. name: "Terra",
  61961. height: math.unit(15000, "km")
  61962. },
  61963. {
  61964. name: "Terra+",
  61965. height: math.unit(2250000, "km")
  61966. },
  61967. ]
  61968. ))
  61969. characterMakers.push(() => makeCharacter(
  61970. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61971. {
  61972. front: {
  61973. height: math.unit(16 + 3/12, "feet"),
  61974. weight: math.unit(3575, "lb"),
  61975. name: "Front",
  61976. image: {
  61977. source: "./media/characters/nikita/front.svg",
  61978. extra: 1064/955,
  61979. bottom: 47/1111
  61980. }
  61981. },
  61982. },
  61983. [
  61984. {
  61985. name: "Normal",
  61986. height: math.unit(16 + 3/12, "feet"),
  61987. default: true
  61988. },
  61989. {
  61990. name: "Big",
  61991. height: math.unit(21, "feet")
  61992. },
  61993. {
  61994. name: "Biggest",
  61995. height: math.unit(50, "feet")
  61996. },
  61997. ]
  61998. ))
  61999. characterMakers.push(() => makeCharacter(
  62000. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  62001. {
  62002. front: {
  62003. height: math.unit(1.92, "m"),
  62004. weight: math.unit(76, "kg"),
  62005. name: "Front",
  62006. image: {
  62007. source: "./media/characters/kyara/front.svg",
  62008. extra: 1550/1438,
  62009. bottom: 139/1689
  62010. }
  62011. },
  62012. back: {
  62013. height: math.unit(1.92, "m"),
  62014. weight: math.unit(76, "kg"),
  62015. name: "Back",
  62016. image: {
  62017. source: "./media/characters/kyara/back.svg",
  62018. extra: 1523/1427,
  62019. bottom: 83/1606
  62020. }
  62021. },
  62022. head: {
  62023. height: math.unit(1.22, "feet"),
  62024. name: "Head",
  62025. image: {
  62026. source: "./media/characters/kyara/head.svg"
  62027. }
  62028. },
  62029. maw: {
  62030. height: math.unit(0.73, "feet"),
  62031. name: "Maw",
  62032. image: {
  62033. source: "./media/characters/kyara/maw.svg"
  62034. }
  62035. },
  62036. paws: {
  62037. height: math.unit(0.95, "feet"),
  62038. name: "Paws",
  62039. image: {
  62040. source: "./media/characters/kyara/paws.svg"
  62041. }
  62042. },
  62043. },
  62044. [
  62045. {
  62046. name: "Normal",
  62047. height: math.unit(1.92, "meters"),
  62048. default: true
  62049. },
  62050. {
  62051. name: "Mini Macro",
  62052. height: math.unit(192, "meters")
  62053. },
  62054. {
  62055. name: "Macro",
  62056. height: math.unit(480, "meters")
  62057. },
  62058. {
  62059. name: "Mega Macro",
  62060. height: math.unit(1440, "meters")
  62061. },
  62062. ]
  62063. ))
  62064. characterMakers.push(() => makeCharacter(
  62065. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  62066. {
  62067. front: {
  62068. height: math.unit(6, "feet"),
  62069. weight: math.unit(160, "lbs"),
  62070. preyCapacity: math.unit(0.05, "people"),
  62071. name: "Front",
  62072. image: {
  62073. source: "./media/characters/layla-amari/front.svg",
  62074. extra: 1922/1723,
  62075. bottom: 90/2012
  62076. }
  62077. },
  62078. back: {
  62079. height: math.unit(6, "feet"),
  62080. weight: math.unit(160, "lbs"),
  62081. preyCapacity: math.unit(0.05, "people"),
  62082. name: "Back",
  62083. image: {
  62084. source: "./media/characters/layla-amari/back.svg",
  62085. extra: 1917/1718,
  62086. bottom: 50/1967
  62087. }
  62088. },
  62089. frontDressed: {
  62090. height: math.unit(6, "feet"),
  62091. weight: math.unit(160, "lbs"),
  62092. preyCapacity: math.unit(0.05, "people"),
  62093. name: "Front (Dressed)",
  62094. image: {
  62095. source: "./media/characters/layla-amari/front-dressed.svg",
  62096. extra: 1922/1723,
  62097. bottom: 90/2012
  62098. }
  62099. },
  62100. face: {
  62101. height: math.unit(0.93, "feet"),
  62102. name: "Face",
  62103. image: {
  62104. source: "./media/characters/layla-amari/face.svg"
  62105. }
  62106. },
  62107. hand: {
  62108. height: math.unit(0.66 , "feet"),
  62109. name: "Hand",
  62110. image: {
  62111. source: "./media/characters/layla-amari/hand.svg"
  62112. }
  62113. },
  62114. foot: {
  62115. height: math.unit(1, "feet"),
  62116. name: "Foot",
  62117. image: {
  62118. source: "./media/characters/layla-amari/foot.svg"
  62119. }
  62120. },
  62121. necklace: {
  62122. height: math.unit(0.32, "feet"),
  62123. name: "Necklace",
  62124. image: {
  62125. source: "./media/characters/layla-amari/necklace.svg"
  62126. }
  62127. },
  62128. nipple: {
  62129. height: math.unit(0.2, "feet"),
  62130. name: "Nipple",
  62131. image: {
  62132. source: "./media/characters/layla-amari/nipple.svg"
  62133. }
  62134. },
  62135. slit: {
  62136. height: math.unit(0.26, "feet"),
  62137. name: "Slit",
  62138. image: {
  62139. source: "./media/characters/layla-amari/slit.svg"
  62140. }
  62141. },
  62142. },
  62143. [
  62144. {
  62145. name: "Natural",
  62146. height: math.unit(825, "feet"),
  62147. default: true
  62148. },
  62149. {
  62150. name: "Enhanced",
  62151. height: math.unit(8250, "feet")
  62152. },
  62153. {
  62154. name: "Apparent Size",
  62155. height: math.unit(9.04363e+8, "meters")
  62156. },
  62157. ]
  62158. ))
  62159. characterMakers.push(() => makeCharacter(
  62160. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  62161. {
  62162. front: {
  62163. height: math.unit(1.3, "meters"),
  62164. name: "Front",
  62165. image: {
  62166. source: "./media/characters/percy/front.svg",
  62167. extra: 1444/1289,
  62168. bottom: 54/1498
  62169. }
  62170. },
  62171. },
  62172. [
  62173. {
  62174. name: "Normal",
  62175. height: math.unit(1.3, "meters"),
  62176. default: true
  62177. },
  62178. ]
  62179. ))
  62180. characterMakers.push(() => makeCharacter(
  62181. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  62182. {
  62183. side: {
  62184. height: math.unit(10, "meters"),
  62185. name: "Side",
  62186. image: {
  62187. source: "./media/characters/grev/side.svg",
  62188. extra: 653/266,
  62189. bottom: 77/730
  62190. }
  62191. },
  62192. head: {
  62193. height: math.unit(16.2, "m"),
  62194. name: "Head",
  62195. image: {
  62196. source: "./media/characters/grev/head.svg"
  62197. }
  62198. },
  62199. dick: {
  62200. height: math.unit(2.8135932034, "m"),
  62201. name: "Dick",
  62202. image: {
  62203. source: "./media/characters/grev/dick.svg"
  62204. }
  62205. },
  62206. },
  62207. [
  62208. {
  62209. name: "Friend-Sized",
  62210. height: math.unit(80, "cm")
  62211. },
  62212. {
  62213. name: "Normal",
  62214. height: math.unit(10, "meters"),
  62215. default: true
  62216. },
  62217. {
  62218. name: "Macro",
  62219. height: math.unit(200, "meters")
  62220. },
  62221. ]
  62222. ))
  62223. characterMakers.push(() => makeCharacter(
  62224. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62225. {
  62226. front: {
  62227. height: math.unit(19.75, "feet"),
  62228. weight: math.unit(20000, "lb"),
  62229. name: "Front",
  62230. image: {
  62231. source: "./media/characters/azuuca/front.svg",
  62232. extra: 1593/1511,
  62233. bottom: 55/1648
  62234. }
  62235. },
  62236. },
  62237. [
  62238. {
  62239. name: "Normal",
  62240. height: math.unit(19.75, "feet"),
  62241. default: true
  62242. },
  62243. ]
  62244. ))
  62245. characterMakers.push(() => makeCharacter(
  62246. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62247. {
  62248. front: {
  62249. height: math.unit(15, "feet"),
  62250. weight: math.unit(1500, "lb"),
  62251. name: "Front",
  62252. image: {
  62253. source: "./media/characters/valuria/front.svg",
  62254. extra: 1588/1486,
  62255. bottom: 31/1619
  62256. }
  62257. },
  62258. },
  62259. [
  62260. {
  62261. name: "Normal",
  62262. height: math.unit(15, "feet"),
  62263. default: true
  62264. },
  62265. {
  62266. name: "Small",
  62267. height: math.unit(500, "feet")
  62268. },
  62269. {
  62270. name: "Macro",
  62271. height: math.unit(4000, "feet")
  62272. },
  62273. {
  62274. name: "Mega Macro",
  62275. height: math.unit(2000, "miles")
  62276. },
  62277. {
  62278. name: "Giga Macro",
  62279. height: math.unit(3e6, "miles")
  62280. },
  62281. ]
  62282. ))
  62283. characterMakers.push(() => makeCharacter(
  62284. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62285. {
  62286. front: {
  62287. height: math.unit(3500, "solarradii"),
  62288. name: "Front",
  62289. image: {
  62290. source: "./media/characters/terigaia/front.svg",
  62291. extra: 1531/1451,
  62292. bottom: 98/1629
  62293. }
  62294. },
  62295. },
  62296. [
  62297. {
  62298. name: "Normal",
  62299. height: math.unit(3500, "solarradii"),
  62300. default: true
  62301. },
  62302. ]
  62303. ))
  62304. characterMakers.push(() => makeCharacter(
  62305. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62306. {
  62307. front: {
  62308. height: math.unit(9.34, "feet"),
  62309. weight: math.unit(600, "lb"),
  62310. name: "Front",
  62311. image: {
  62312. source: "./media/characters/blair-blaziken/front.svg",
  62313. extra: 1557/1462,
  62314. bottom: 55/1612
  62315. }
  62316. },
  62317. },
  62318. [
  62319. {
  62320. name: "Normal",
  62321. height: math.unit(9.34, "feet"),
  62322. default: true
  62323. },
  62324. ]
  62325. ))
  62326. characterMakers.push(() => makeCharacter(
  62327. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62328. {
  62329. pistrogre_front: {
  62330. height: math.unit(10, "feet"),
  62331. weight: math.unit(10, "tons"),
  62332. name: "Front",
  62333. image: {
  62334. source: "./media/characters/braxia/pistrogre-front.svg",
  62335. extra: 1531/1334,
  62336. bottom: 114/1645
  62337. },
  62338. form: "pistrogre",
  62339. default: true
  62340. },
  62341. human_front: {
  62342. height: math.unit(10, "feet"),
  62343. weight: math.unit(10, "tons"),
  62344. name: "Front",
  62345. image: {
  62346. source: "./media/characters/braxia/human-front.svg",
  62347. extra: 1574/1501,
  62348. bottom: 37/1611
  62349. },
  62350. form: "human",
  62351. default: true
  62352. },
  62353. },
  62354. [
  62355. {
  62356. name: "Normal",
  62357. height: math.unit(10, "feet"),
  62358. default: true,
  62359. allForms: true
  62360. },
  62361. {
  62362. name: "Macro",
  62363. height: math.unit(1000, "feet"),
  62364. allForms: true
  62365. },
  62366. {
  62367. name: "Mega Macro",
  62368. height: math.unit(100, "miles"),
  62369. allForms: true
  62370. },
  62371. {
  62372. name: "Cosmic",
  62373. height: math.unit(1000000, "lightyears"),
  62374. allForms: true
  62375. },
  62376. {
  62377. name: "ϐѮԆԬӁꭍϞԢ",
  62378. height: math.unit(1000, "multiverses"),
  62379. allForms: true
  62380. },
  62381. ],
  62382. {
  62383. "pistrogre": {
  62384. name: "Pistrogre",
  62385. default: true
  62386. },
  62387. "human": {
  62388. name: "Human",
  62389. },
  62390. }
  62391. ))
  62392. characterMakers.push(() => makeCharacter(
  62393. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62394. {
  62395. front: {
  62396. height: math.unit(6 + 1/12, "feet"),
  62397. weight: math.unit(280, "lb"),
  62398. name: "Front",
  62399. image: {
  62400. source: "./media/characters/kiriga-yato/front.svg",
  62401. extra: 445/394,
  62402. bottom: 11/456
  62403. }
  62404. },
  62405. },
  62406. [
  62407. {
  62408. name: "Descended",
  62409. height: math.unit(3, "feet")
  62410. },
  62411. {
  62412. name: "Average",
  62413. height: math.unit(6 + 1/12, "feet"),
  62414. default: true
  62415. },
  62416. {
  62417. name: "Ascended",
  62418. height: math.unit(9 + 2/12, "feet")
  62419. },
  62420. ]
  62421. ))
  62422. characterMakers.push(() => makeCharacter(
  62423. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62424. {
  62425. front: {
  62426. height: math.unit(6, "feet"),
  62427. weight: math.unit(150, "lb"),
  62428. name: "Front",
  62429. image: {
  62430. source: "./media/characters/kylie/front.svg",
  62431. extra: 1114/1046,
  62432. bottom: 65/1179
  62433. },
  62434. extraAttributes: {
  62435. "hoofSize": {
  62436. name: "Hoof Size",
  62437. power: 2,
  62438. type: "area",
  62439. base: math.unit(0.034, "m^2")
  62440. },
  62441. "footSize": {
  62442. name: "Foot Size",
  62443. power: 2,
  62444. type: "area",
  62445. base: math.unit(0.75, "m^2")
  62446. },
  62447. }
  62448. },
  62449. side: {
  62450. height: math.unit(6, "feet"),
  62451. weight: math.unit(150, "lb"),
  62452. name: "Side",
  62453. image: {
  62454. source: "./media/characters/kylie/side.svg",
  62455. extra: 1178/1110,
  62456. bottom: 21/1199
  62457. },
  62458. extraAttributes: {
  62459. "hoofSize": {
  62460. name: "Hoof Size",
  62461. power: 2,
  62462. type: "area",
  62463. base: math.unit(0.034, "m^2")
  62464. },
  62465. "footSize": {
  62466. name: "Foot Size",
  62467. power: 2,
  62468. type: "area",
  62469. base: math.unit(0.75, "m^2")
  62470. },
  62471. }
  62472. },
  62473. back: {
  62474. height: math.unit(6, "feet"),
  62475. weight: math.unit(150, "lb"),
  62476. name: "Back",
  62477. image: {
  62478. source: "./media/characters/kylie/back.svg",
  62479. extra: 1115/1047,
  62480. bottom: 66/1181
  62481. },
  62482. extraAttributes: {
  62483. "hoofSize": {
  62484. name: "Hoof Size",
  62485. power: 2,
  62486. type: "area",
  62487. base: math.unit(0.034, "m^2")
  62488. },
  62489. "footSize": {
  62490. name: "Foot Size",
  62491. power: 2,
  62492. type: "area",
  62493. base: math.unit(0.75, "m^2")
  62494. },
  62495. }
  62496. },
  62497. head: {
  62498. height: math.unit(1.85, "feet"),
  62499. name: "Head",
  62500. image: {
  62501. source: "./media/characters/kylie/head.svg"
  62502. }
  62503. },
  62504. },
  62505. [
  62506. {
  62507. name: "Normal",
  62508. height: math.unit(90, "meters"),
  62509. default: true
  62510. },
  62511. ]
  62512. ))
  62513. characterMakers.push(() => makeCharacter(
  62514. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62515. {
  62516. front: {
  62517. height: math.unit(245, "feet"),
  62518. weight: math.unit(400000, "lb"),
  62519. name: "Front",
  62520. image: {
  62521. source: "./media/characters/sabado/front.svg",
  62522. extra: 1309/1164,
  62523. bottom: 29/1338
  62524. }
  62525. },
  62526. },
  62527. [
  62528. {
  62529. name: "Normal",
  62530. height: math.unit(245, "feet"),
  62531. default: true
  62532. },
  62533. ]
  62534. ))
  62535. characterMakers.push(() => makeCharacter(
  62536. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62537. {
  62538. shark_front: {
  62539. height: math.unit(2, "meters"),
  62540. weight: math.unit(200, "kg"),
  62541. name: "Front",
  62542. image: {
  62543. source: "./media/characters/zechal/shark-front.svg",
  62544. extra: 969/925,
  62545. bottom: 74/1043
  62546. },
  62547. form: "shark",
  62548. },
  62549. shark_back: {
  62550. height: math.unit(2, "meters"),
  62551. weight: math.unit(200, "kg"),
  62552. name: "Back",
  62553. image: {
  62554. source: "./media/characters/zechal/shark-back.svg",
  62555. extra: 994/949,
  62556. bottom: 176/1170
  62557. },
  62558. form: "shark",
  62559. },
  62560. shark_frontLewd: {
  62561. height: math.unit(2, "meters"),
  62562. weight: math.unit(200, "kg"),
  62563. name: "Front (Lewd)",
  62564. image: {
  62565. source: "./media/characters/zechal/shark-front-lewd.svg",
  62566. extra: 969/925,
  62567. bottom: 74/1043
  62568. },
  62569. form: "shark",
  62570. },
  62571. shark_side: {
  62572. height: math.unit(1.56, "meters"),
  62573. weight: math.unit(200, "kg"),
  62574. name: "Side",
  62575. image: {
  62576. source: "./media/characters/zechal/shark-side.svg"
  62577. },
  62578. form: "shark",
  62579. },
  62580. dragon_front: {
  62581. height: math.unit(2, "meters"),
  62582. weight: math.unit(200, "kg"),
  62583. name: "Front",
  62584. image: {
  62585. source: "./media/characters/zechal/dragon-front.svg",
  62586. extra: 1041/925,
  62587. bottom: 74/1115
  62588. },
  62589. form: "dragon",
  62590. },
  62591. dragon_back: {
  62592. height: math.unit(2, "meters"),
  62593. weight: math.unit(200, "kg"),
  62594. name: "Back",
  62595. image: {
  62596. source: "./media/characters/zechal/dragon-back.svg",
  62597. extra: 1061/949,
  62598. bottom: 176/1237
  62599. },
  62600. form: "dragon",
  62601. },
  62602. dragon_frontLewd: {
  62603. height: math.unit(2, "meters"),
  62604. weight: math.unit(200, "kg"),
  62605. name: "Front (Lewd)",
  62606. image: {
  62607. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62608. extra: 1041/925,
  62609. bottom: 74/1115
  62610. },
  62611. form: "dragon",
  62612. },
  62613. dragon_side: {
  62614. height: math.unit(1.56, "meters"),
  62615. weight: math.unit(200, "kg"),
  62616. name: "Side",
  62617. image: {
  62618. source: "./media/characters/zechal/dragon-side.svg"
  62619. },
  62620. form: "dragon",
  62621. },
  62622. foot: {
  62623. height: math.unit(0.5, "meters"),
  62624. name: "Foot",
  62625. image: {
  62626. source: "./media/characters/zechal/foot.svg"
  62627. }
  62628. },
  62629. sheathFront: {
  62630. height: math.unit(0.45, "meters"),
  62631. name: "Sheath (Front)",
  62632. image: {
  62633. source: "./media/characters/zechal/sheath-front.svg"
  62634. }
  62635. },
  62636. sheathSide: {
  62637. height: math.unit(0.45, "meters"),
  62638. name: "Sheath (Side)",
  62639. image: {
  62640. source: "./media/characters/zechal/sheath-side.svg"
  62641. }
  62642. },
  62643. },
  62644. [
  62645. {
  62646. name: "Incognito",
  62647. height: math.unit(2, "meters"),
  62648. allForms: true
  62649. },
  62650. {
  62651. name: "Small Rampage",
  62652. height: math.unit(25, "meters"),
  62653. allForms: true
  62654. },
  62655. {
  62656. name: "Home Size",
  62657. height: math.unit(250, "meters"),
  62658. allForms: true,
  62659. default: true
  62660. },
  62661. {
  62662. name: "Macro+",
  62663. height: math.unit(700, "meters"),
  62664. allForms: true
  62665. },
  62666. {
  62667. name: "Small Mega",
  62668. height: math.unit(3, "km"),
  62669. allForms: true
  62670. },
  62671. {
  62672. name: "Mega",
  62673. height: math.unit(15, "km"),
  62674. allForms: true
  62675. },
  62676. {
  62677. name: "Giga",
  62678. height: math.unit(300, "km"),
  62679. allForms: true
  62680. },
  62681. {
  62682. name: "Giga+",
  62683. height: math.unit(1750, "km"),
  62684. allForms: true
  62685. },
  62686. {
  62687. name: "Continental",
  62688. height: math.unit(5000, "km"),
  62689. allForms: true
  62690. },
  62691. {
  62692. name: "Terra",
  62693. height: math.unit(20000, "km"),
  62694. allForms: true
  62695. },
  62696. {
  62697. name: "Terra+",
  62698. height: math.unit(300000, "km"),
  62699. allForms: true
  62700. },
  62701. {
  62702. name: "Solar",
  62703. height: math.unit(40000000, "km"),
  62704. allForms: true
  62705. },
  62706. {
  62707. name: "Galactic",
  62708. height: math.unit(810133, "parsecs"),
  62709. allForms: true
  62710. },
  62711. {
  62712. name: "Universal",
  62713. height: math.unit(25, "universes"),
  62714. allForms: true
  62715. },
  62716. ],
  62717. {
  62718. "shark": {
  62719. name: "Shark",
  62720. default: true
  62721. },
  62722. "dragon": {
  62723. name: "Dragon",
  62724. },
  62725. }
  62726. ))
  62727. characterMakers.push(() => makeCharacter(
  62728. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62729. {
  62730. front: {
  62731. height: math.unit(2.2, "meters"),
  62732. weight: math.unit(150, "kg"),
  62733. name: "Front",
  62734. image: {
  62735. source: "./media/characters/sergis/front.svg",
  62736. extra: 1314/1312,
  62737. bottom: 112/1426
  62738. }
  62739. },
  62740. back: {
  62741. height: math.unit(2.2, "meters"),
  62742. weight: math.unit(150, "kg"),
  62743. name: "Back",
  62744. image: {
  62745. source: "./media/characters/sergis/back.svg",
  62746. extra: 1335/1333,
  62747. bottom: 19/1354
  62748. }
  62749. },
  62750. frontLewd: {
  62751. height: math.unit(2.2, "meters"),
  62752. weight: math.unit(150, "kg"),
  62753. name: "Front (Lewd)",
  62754. image: {
  62755. source: "./media/characters/sergis/front-lewd.svg",
  62756. extra: 1314/1312,
  62757. bottom: 112/1426
  62758. }
  62759. },
  62760. frontDressed: {
  62761. height: math.unit(2.2, "meters"),
  62762. weight: math.unit(150, "kg"),
  62763. name: "Front (Dressed)",
  62764. image: {
  62765. source: "./media/characters/sergis/front-dressed.svg",
  62766. extra: 1330/1328,
  62767. bottom: 95/1425
  62768. }
  62769. },
  62770. frontDressedLewd: {
  62771. height: math.unit(2.2, "meters"),
  62772. weight: math.unit(150, "kg"),
  62773. name: "Front (Dressed, Lewd)",
  62774. image: {
  62775. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62776. extra: 1330/1328,
  62777. bottom: 95/1425
  62778. }
  62779. },
  62780. maw: {
  62781. height: math.unit(0.48, "meters"),
  62782. name: "Maw",
  62783. image: {
  62784. source: "./media/characters/sergis/maw.svg"
  62785. }
  62786. },
  62787. sheath: {
  62788. height: math.unit(0.38, "meters"),
  62789. name: "Sheath",
  62790. image: {
  62791. source: "./media/characters/sergis/sheath.svg"
  62792. }
  62793. },
  62794. },
  62795. [
  62796. {
  62797. name: "Incognito Size",
  62798. height: math.unit(2.2, "meters")
  62799. },
  62800. {
  62801. name: "Small Macro",
  62802. height: math.unit(40, "meters")
  62803. },
  62804. {
  62805. name: "Macro",
  62806. height: math.unit(150, "meters")
  62807. },
  62808. {
  62809. name: "Macro+",
  62810. height: math.unit(300, "meters")
  62811. },
  62812. {
  62813. name: "Mega",
  62814. height: math.unit(2.5, "km")
  62815. },
  62816. {
  62817. name: "Mega+",
  62818. height: math.unit(30, "km")
  62819. },
  62820. {
  62821. name: "Home Size",
  62822. height: math.unit(300, "km"),
  62823. default: true
  62824. },
  62825. {
  62826. name: "Giga+",
  62827. height: math.unit(1000, "km")
  62828. },
  62829. {
  62830. name: "Giga++",
  62831. height: math.unit(6000, "km")
  62832. },
  62833. {
  62834. name: "Terra",
  62835. height: math.unit(70000, "km")
  62836. },
  62837. {
  62838. name: "Terra+",
  62839. height: math.unit(200000, "km")
  62840. },
  62841. {
  62842. name: "Galactic",
  62843. height: math.unit(634200, "lightyears")
  62844. },
  62845. ]
  62846. ))
  62847. characterMakers.push(() => makeCharacter(
  62848. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62849. {
  62850. standard: {
  62851. height: math.unit(1 + 5/12, "feet"),
  62852. name: "Standard",
  62853. image: {
  62854. source: "./media/characters/spade/standard.svg",
  62855. extra: 1794/1703,
  62856. bottom: 115/1909
  62857. }
  62858. },
  62859. disguised: {
  62860. height: math.unit(1 + 5/12, "feet"),
  62861. name: "Disguised",
  62862. image: {
  62863. source: "./media/characters/spade/disguised.svg",
  62864. extra: 1794/1700,
  62865. bottom: 98/1892
  62866. }
  62867. },
  62868. },
  62869. [
  62870. {
  62871. name: "Normal",
  62872. height: math.unit(1 + 5/12, "feet"),
  62873. default: true
  62874. },
  62875. ]
  62876. ))
  62877. characterMakers.push(() => makeCharacter(
  62878. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62879. {
  62880. frontNsfw: {
  62881. height: math.unit(5, "meters"),
  62882. weight: math.unit(2000, "kg"),
  62883. preyCapacity: math.unit(5, "people"),
  62884. name: "Front (NSFW)",
  62885. image: {
  62886. source: "./media/characters/zeanlain/front-nsfw.svg",
  62887. extra: 1087/938,
  62888. bottom: 93/1180
  62889. },
  62890. extraAttributes: {
  62891. "wingspan": {
  62892. name: "Wingspan",
  62893. power: 1,
  62894. type: "length",
  62895. base: math.unit(10, "meters")
  62896. },
  62897. "footSize": {
  62898. name: "Foot Size",
  62899. power: 1,
  62900. type: "length",
  62901. base: math.unit(0.68, "meters")
  62902. },
  62903. "cockLength": {
  62904. name: "Cock Length",
  62905. power: 1,
  62906. type: "length",
  62907. base: math.unit(1.69, "meters")
  62908. },
  62909. "ballVolume": {
  62910. name: "Ball Volume",
  62911. power: 3,
  62912. type: "volume",
  62913. base: math.unit(0.028, "m^3")
  62914. },
  62915. }
  62916. },
  62917. front: {
  62918. height: math.unit(5, "meters"),
  62919. weight: math.unit(2000, "kg"),
  62920. preyCapacity: math.unit(3, "people"),
  62921. name: "Front",
  62922. image: {
  62923. source: "./media/characters/zeanlain/front.svg",
  62924. extra: 1087/938,
  62925. bottom: 93/1180
  62926. },
  62927. extraAttributes: {
  62928. "wingspan": {
  62929. name: "Wingspan",
  62930. power: 1,
  62931. type: "length",
  62932. base: math.unit(10, "meters")
  62933. },
  62934. "footSize": {
  62935. name: "Foot Size",
  62936. power: 1,
  62937. type: "length",
  62938. base: math.unit(0.68, "meters")
  62939. },
  62940. }
  62941. },
  62942. dick: {
  62943. height: math.unit(5.15, "feet"),
  62944. name: "Dick",
  62945. image: {
  62946. source: "./media/characters/zeanlain/dick.svg"
  62947. }
  62948. },
  62949. },
  62950. [
  62951. {
  62952. name: "Normal",
  62953. height: math.unit(5, "meters"),
  62954. default: true
  62955. },
  62956. ]
  62957. ))
  62958. characterMakers.push(() => makeCharacter(
  62959. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62960. {
  62961. front: {
  62962. height: math.unit(10, "meters"),
  62963. weight: math.unit(250000, "kg"),
  62964. name: "Front",
  62965. image: {
  62966. source: "./media/characters/airamis/front.svg",
  62967. extra: 865/835,
  62968. bottom: 13/878
  62969. }
  62970. },
  62971. },
  62972. [
  62973. {
  62974. name: "Normal",
  62975. height: math.unit(10, "meters"),
  62976. default: true
  62977. },
  62978. ]
  62979. ))
  62980. characterMakers.push(() => makeCharacter(
  62981. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62982. {
  62983. front: {
  62984. height: math.unit(3 + 3/12, "feet"),
  62985. weight: math.unit(75, "lb"),
  62986. name: "Front",
  62987. image: {
  62988. source: "./media/characters/corra-tourmaline/front.svg",
  62989. extra: 1037/864,
  62990. bottom: 39/1076
  62991. }
  62992. },
  62993. back: {
  62994. height: math.unit(3 + 3/12, "feet"),
  62995. weight: math.unit(75, "lb"),
  62996. name: "Back",
  62997. image: {
  62998. source: "./media/characters/corra-tourmaline/back.svg",
  62999. extra: 1022/849,
  63000. bottom: 26/1048
  63001. }
  63002. },
  63003. dressed: {
  63004. height: math.unit(3 + 3/12, "feet"),
  63005. weight: math.unit(75, "lb"),
  63006. name: "Dressed",
  63007. image: {
  63008. source: "./media/characters/corra-tourmaline/dressed.svg",
  63009. extra: 1037/864,
  63010. bottom: 39/1076
  63011. }
  63012. },
  63013. beans: {
  63014. height: math.unit(0.37, "feet"),
  63015. name: "Beans",
  63016. image: {
  63017. source: "./media/characters/corra-tourmaline/beans.svg"
  63018. }
  63019. },
  63020. },
  63021. [
  63022. {
  63023. name: "Normal",
  63024. height: math.unit(3 + 3/12, "feet"),
  63025. default: true
  63026. },
  63027. {
  63028. name: "Macro",
  63029. height: math.unit(32, "feet")
  63030. },
  63031. ]
  63032. ))
  63033. characterMakers.push(() => makeCharacter(
  63034. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  63035. {
  63036. front: {
  63037. height: math.unit(6 + 2/12, "feet"),
  63038. weight: math.unit(203, "lb"),
  63039. name: "Front",
  63040. image: {
  63041. source: "./media/characters/maki-kawa/front.svg",
  63042. extra: 950/890,
  63043. bottom: 62/1012
  63044. }
  63045. },
  63046. back: {
  63047. height: math.unit(6 + 2/12, "feet"),
  63048. weight: math.unit(203, "lb"),
  63049. name: "Back",
  63050. image: {
  63051. source: "./media/characters/maki-kawa/back.svg",
  63052. extra: 953/878,
  63053. bottom: 49/1002
  63054. }
  63055. },
  63056. frontBarista: {
  63057. height: math.unit(6 + 2/12, "feet"),
  63058. weight: math.unit(203, "lb"),
  63059. name: "Front (Barista)",
  63060. image: {
  63061. source: "./media/characters/maki-kawa/front-barista.svg",
  63062. extra: 943/883,
  63063. bottom: 69/1012
  63064. }
  63065. },
  63066. backBarista: {
  63067. height: math.unit(6 + 2/12, "feet"),
  63068. weight: math.unit(203, "lb"),
  63069. name: "Back (Barista)",
  63070. image: {
  63071. source: "./media/characters/maki-kawa/back-barista.svg",
  63072. extra: 953/878,
  63073. bottom: 49/1002
  63074. }
  63075. },
  63076. frontWrestler: {
  63077. height: math.unit(6 + 2/12, "feet"),
  63078. weight: math.unit(203, "lb"),
  63079. name: "Front (Wrestler)",
  63080. image: {
  63081. source: "./media/characters/maki-kawa/front-wrestler.svg",
  63082. extra: 950/890,
  63083. bottom: 62/1012
  63084. }
  63085. },
  63086. backWrestler: {
  63087. height: math.unit(6 + 2/12, "feet"),
  63088. weight: math.unit(203, "lb"),
  63089. name: "Back (Wrestler)",
  63090. image: {
  63091. source: "./media/characters/maki-kawa/back-wrestler.svg",
  63092. extra: 953/878,
  63093. bottom: 49/1002
  63094. }
  63095. },
  63096. headFront: {
  63097. height: math.unit(1.64, "feet"),
  63098. name: "Head (Front)",
  63099. image: {
  63100. source: "./media/characters/maki-kawa/head-front.svg"
  63101. }
  63102. },
  63103. headSide: {
  63104. height: math.unit(1.59, "feet"),
  63105. name: "Head (Side)",
  63106. image: {
  63107. source: "./media/characters/maki-kawa/head-side.svg"
  63108. }
  63109. },
  63110. paw: {
  63111. height: math.unit(0.9, "feet"),
  63112. name: "Paw",
  63113. image: {
  63114. source: "./media/characters/maki-kawa/paw.svg"
  63115. }
  63116. },
  63117. },
  63118. [
  63119. {
  63120. name: "Normal",
  63121. height: math.unit(6 + 2/12, "feet"),
  63122. default: true
  63123. },
  63124. {
  63125. name: "Macro",
  63126. height: math.unit(617, "feet")
  63127. },
  63128. ]
  63129. ))
  63130. characterMakers.push(() => makeCharacter(
  63131. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  63132. {
  63133. frontNsfw: {
  63134. height: math.unit(10, "feet"),
  63135. weight: math.unit(1500, "lb"),
  63136. name: "Front (NSFW)",
  63137. image: {
  63138. source: "./media/characters/lennox/front-nsfw.svg",
  63139. extra: 1623/1496,
  63140. bottom: 18/1641
  63141. },
  63142. extraAttributes: {
  63143. "cumVolume": {
  63144. name: "Cum Volume",
  63145. power: 3,
  63146. type: "volume",
  63147. base: math.unit(75, "liters")
  63148. },
  63149. }
  63150. },
  63151. backNsfw: {
  63152. height: math.unit(10, "feet"),
  63153. weight: math.unit(1500, "lb"),
  63154. name: "Back (NSFW)",
  63155. image: {
  63156. source: "./media/characters/lennox/back-nsfw.svg",
  63157. extra: 1641/1481,
  63158. bottom: 13/1654
  63159. },
  63160. extraAttributes: {
  63161. "cumVolume": {
  63162. name: "Cum Volume",
  63163. power: 3,
  63164. type: "volume",
  63165. base: math.unit(75, "liters")
  63166. },
  63167. }
  63168. },
  63169. frontSfw: {
  63170. height: math.unit(10, "feet"),
  63171. weight: math.unit(1500, "lb"),
  63172. name: "Front (SFW)",
  63173. image: {
  63174. source: "./media/characters/lennox/front-sfw.svg",
  63175. extra: 1623/1496,
  63176. bottom: 18/1641
  63177. }
  63178. },
  63179. backSfw: {
  63180. height: math.unit(10, "feet"),
  63181. weight: math.unit(1500, "lb"),
  63182. name: "Back (SFW)",
  63183. image: {
  63184. source: "./media/characters/lennox/back-sfw.svg",
  63185. extra: 1641/1481,
  63186. bottom: 13/1654
  63187. }
  63188. },
  63189. maw: {
  63190. height: math.unit(2.94, "feet"),
  63191. name: "Maw",
  63192. image: {
  63193. source: "./media/characters/lennox/maw.svg"
  63194. }
  63195. },
  63196. dick: {
  63197. height: math.unit(0.8323, "meters"),
  63198. weight: math.unit(0.07315728637*1000, "kg"),
  63199. name: "Dick",
  63200. image: {
  63201. source: "./media/characters/lennox/dick.svg"
  63202. },
  63203. extraAttributes: {
  63204. "thickness": {
  63205. name: "Thickness",
  63206. power: 1,
  63207. type: "length",
  63208. base: math.unit(0.330, "meters")
  63209. },
  63210. "length": {
  63211. name: "Length",
  63212. power: 1,
  63213. type: "length",
  63214. base: math.unit(0.8, "meters")
  63215. },
  63216. "cumVolume": {
  63217. name: "Cum Volume",
  63218. power: 3,
  63219. type: "volume",
  63220. base: math.unit(75, "liters")
  63221. },
  63222. }
  63223. },
  63224. },
  63225. [
  63226. {
  63227. name: "Micro",
  63228. height: math.unit(1, "inch")
  63229. },
  63230. {
  63231. name: "Normal",
  63232. height: math.unit(10, "feet"),
  63233. default: true
  63234. },
  63235. {
  63236. name: "Macro",
  63237. height: math.unit(200, "feet")
  63238. },
  63239. ]
  63240. ))
  63241. characterMakers.push(() => makeCharacter(
  63242. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63243. {
  63244. frontDressed: {
  63245. height: math.unit(15 + 7/12, "feet"),
  63246. weight: math.unit(5000, "lb"),
  63247. name: "Front (Dressed)",
  63248. image: {
  63249. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63250. extra: 1136/1023,
  63251. bottom: 51/1187
  63252. }
  63253. },
  63254. backDressed: {
  63255. height: math.unit(15 + 7/12, "feet"),
  63256. weight: math.unit(5000, "lb"),
  63257. name: "Back (Dressed)",
  63258. image: {
  63259. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63260. extra: 2359/2143,
  63261. bottom: 103/2462
  63262. }
  63263. },
  63264. front: {
  63265. height: math.unit(15 + 7/12, "feet"),
  63266. weight: math.unit(5000, "lb"),
  63267. name: "Front",
  63268. image: {
  63269. source: "./media/characters/vyse-iron-thunder/front.svg",
  63270. extra: 1136/1023,
  63271. bottom: 51/1187
  63272. }
  63273. },
  63274. hand: {
  63275. height: math.unit(2.36, "feet"),
  63276. name: "Hand",
  63277. image: {
  63278. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63279. }
  63280. },
  63281. foot: {
  63282. height: math.unit(1.72, "feet"),
  63283. name: "Foot",
  63284. image: {
  63285. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63286. }
  63287. },
  63288. mouth: {
  63289. height: math.unit(2, "feet"),
  63290. name: "Mouth",
  63291. image: {
  63292. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63293. }
  63294. },
  63295. eye: {
  63296. height: math.unit(0.58, "feet"),
  63297. name: "Eye",
  63298. image: {
  63299. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63300. }
  63301. },
  63302. },
  63303. [
  63304. {
  63305. name: "Normal",
  63306. height: math.unit(15 + 7/12, "feet"),
  63307. default: true
  63308. },
  63309. {
  63310. name: "Macro",
  63311. height: math.unit(157, "feet")
  63312. },
  63313. {
  63314. name: "Macro+",
  63315. height: math.unit(1570, "feet")
  63316. },
  63317. {
  63318. name: "Macro++",
  63319. height: math.unit(15700, "feet")
  63320. },
  63321. {
  63322. name: "Macro+++",
  63323. height: math.unit(157000, "feet")
  63324. },
  63325. {
  63326. name: "Macro++++",
  63327. height: math.unit(1570000, "feet")
  63328. },
  63329. ]
  63330. ))
  63331. characterMakers.push(() => makeCharacter(
  63332. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63333. {
  63334. side: {
  63335. height: math.unit(6, "feet"),
  63336. weight: math.unit(115, "lb"),
  63337. name: "Side",
  63338. image: {
  63339. source: "./media/characters/moonbeam/side.svg",
  63340. extra: 839/485,
  63341. bottom: 60/899
  63342. }
  63343. },
  63344. },
  63345. [
  63346. {
  63347. name: "Normal",
  63348. height: math.unit(6, "feet"),
  63349. default: true
  63350. },
  63351. ]
  63352. ))
  63353. characterMakers.push(() => makeCharacter(
  63354. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63355. {
  63356. front: {
  63357. height: math.unit(3500, "miles"),
  63358. weight: math.unit(1659, "petatonnes"),
  63359. name: "Front",
  63360. image: {
  63361. source: "./media/characters/baltica/front.svg",
  63362. extra: 429/428,
  63363. bottom: 41/470
  63364. }
  63365. },
  63366. back: {
  63367. height: math.unit(3500, "miles"),
  63368. weight: math.unit(1659, "petatonnes"),
  63369. name: "Back",
  63370. image: {
  63371. source: "./media/characters/baltica/back.svg",
  63372. extra: 452/451,
  63373. bottom: 8/460
  63374. }
  63375. },
  63376. },
  63377. [
  63378. {
  63379. name: "Gigamacro",
  63380. height: math.unit(3500, "miles"),
  63381. default: true
  63382. },
  63383. ]
  63384. ))
  63385. characterMakers.push(() => makeCharacter(
  63386. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63387. {
  63388. front: {
  63389. height: math.unit(6 + 10/12, "feet"),
  63390. weight: math.unit(200, "lb"),
  63391. name: "Front",
  63392. image: {
  63393. source: "./media/characters/shadow-wolf/front.svg",
  63394. extra: 1931/1760,
  63395. bottom: 88/2019
  63396. }
  63397. },
  63398. },
  63399. [
  63400. {
  63401. name: "Normal",
  63402. height: math.unit(6 + 10/12, "feet"),
  63403. default: true
  63404. },
  63405. ]
  63406. ))
  63407. characterMakers.push(() => makeCharacter(
  63408. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63409. {
  63410. front: {
  63411. height: math.unit(5 + 10/12, "feet"),
  63412. name: "Front",
  63413. image: {
  63414. source: "./media/characters/quincy-praying-mantis/front.svg",
  63415. extra: 1055/891,
  63416. bottom: 92/1147
  63417. }
  63418. },
  63419. soles: {
  63420. height: math.unit(0.85, "feet"),
  63421. name: "Soles",
  63422. image: {
  63423. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63424. extra: 429/324,
  63425. bottom: 89/518
  63426. },
  63427. extraAttributes: {
  63428. "shoeSize": {
  63429. name: "Shoe Size",
  63430. power: 1,
  63431. type: "length",
  63432. base: math.unit(23, "ShoeSizeMensUS"),
  63433. defaultUnit: "ShoeSizeMensUS"
  63434. },
  63435. }
  63436. },
  63437. foot: {
  63438. height: math.unit(0.72, "feet"),
  63439. name: "Foot",
  63440. image: {
  63441. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63442. extra: 349/349,
  63443. bottom: 76/425
  63444. }
  63445. },
  63446. },
  63447. [
  63448. {
  63449. name: "Normal",
  63450. height: math.unit(5 + 10/12, "feet"),
  63451. default: true
  63452. },
  63453. ]
  63454. ))
  63455. characterMakers.push(() => makeCharacter(
  63456. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63457. {
  63458. front: {
  63459. height: math.unit(6, "feet"),
  63460. name: "Front",
  63461. image: {
  63462. source: "./media/characters/christopher-redwood/front.svg",
  63463. extra: 1402/1341,
  63464. bottom: 23/1425
  63465. }
  63466. },
  63467. back: {
  63468. height: math.unit(6, "feet"),
  63469. name: "Back",
  63470. image: {
  63471. source: "./media/characters/christopher-redwood/back.svg",
  63472. extra: 1406/1345,
  63473. bottom: 36/1442
  63474. }
  63475. },
  63476. head: {
  63477. height: math.unit(1.685, "feet"),
  63478. name: "Head",
  63479. image: {
  63480. source: "./media/characters/christopher-redwood/head.svg"
  63481. }
  63482. },
  63483. },
  63484. [
  63485. {
  63486. name: "Normal",
  63487. height: math.unit(6, "feet"),
  63488. default: true
  63489. },
  63490. ]
  63491. ))
  63492. characterMakers.push(() => makeCharacter(
  63493. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63494. {
  63495. front: {
  63496. height: math.unit(1.9, "meters"),
  63497. weight: math.unit(140, "lb"),
  63498. name: "Front",
  63499. image: {
  63500. source: "./media/characters/kara-fox/front.svg",
  63501. extra: 766/711,
  63502. bottom: 41/807
  63503. }
  63504. },
  63505. back: {
  63506. height: math.unit(1.9, "meters"),
  63507. weight: math.unit(140, "lb"),
  63508. name: "Back",
  63509. image: {
  63510. source: "./media/characters/kara-fox/back.svg",
  63511. extra: 766/596,
  63512. bottom: 29/795
  63513. }
  63514. },
  63515. maw: {
  63516. height: math.unit(0.78, "feet"),
  63517. name: "Maw",
  63518. image: {
  63519. source: "./media/characters/kara-fox/maw.svg"
  63520. }
  63521. },
  63522. pawpads: {
  63523. height: math.unit(0.96, "feet"),
  63524. name: "Pawpads",
  63525. image: {
  63526. source: "./media/characters/kara-fox/pawpads.svg"
  63527. }
  63528. },
  63529. },
  63530. [
  63531. {
  63532. name: "Normal",
  63533. height: math.unit(1.9, "meters"),
  63534. default: true
  63535. },
  63536. {
  63537. name: "Giantess",
  63538. height: math.unit(80, "meters")
  63539. },
  63540. ]
  63541. ))
  63542. characterMakers.push(() => makeCharacter(
  63543. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63544. {
  63545. front: {
  63546. height: math.unit(12, "feet"),
  63547. name: "Front",
  63548. image: {
  63549. source: "./media/characters/naomi-espeon/front.svg",
  63550. extra: 892/797,
  63551. bottom: 5/897
  63552. }
  63553. },
  63554. back: {
  63555. height: math.unit(12, "feet"),
  63556. name: "Back",
  63557. image: {
  63558. source: "./media/characters/naomi-espeon/back.svg",
  63559. extra: 890/785,
  63560. bottom: 12/902
  63561. }
  63562. },
  63563. },
  63564. [
  63565. {
  63566. name: "Normal",
  63567. height: math.unit(12, "feet"),
  63568. default: true
  63569. },
  63570. ]
  63571. ))
  63572. characterMakers.push(() => makeCharacter(
  63573. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63574. {
  63575. anthro_front: {
  63576. height: math.unit(8, "feet"),
  63577. weight: math.unit(625, "lb"),
  63578. name: "Front",
  63579. image: {
  63580. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63581. extra: 638/574,
  63582. bottom: 73/711
  63583. },
  63584. form: "anthro",
  63585. default: true
  63586. },
  63587. anthro_back: {
  63588. height: math.unit(8, "feet"),
  63589. weight: math.unit(625, "lb"),
  63590. name: "Back",
  63591. image: {
  63592. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63593. extra: 674/614,
  63594. bottom: 7/681
  63595. },
  63596. form: "anthro",
  63597. },
  63598. taur_side: {
  63599. height: math.unit(16, "feet"),
  63600. weight: math.unit(4.5, "tons"),
  63601. name: "Side",
  63602. image: {
  63603. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63604. extra: 704/646,
  63605. bottom: 132/836
  63606. },
  63607. form: "taur",
  63608. default: true
  63609. },
  63610. },
  63611. [
  63612. {
  63613. name: "Normal",
  63614. height: math.unit(8, "feet"),
  63615. default: true,
  63616. form: "anthro"
  63617. },
  63618. {
  63619. name: "Normal",
  63620. height: math.unit(16, "feet"),
  63621. default: true,
  63622. form: "taur"
  63623. },
  63624. ],
  63625. {
  63626. "anthro": {
  63627. name: "Anthro",
  63628. default: true
  63629. },
  63630. "taur": {
  63631. name: "Taur",
  63632. },
  63633. }
  63634. ))
  63635. characterMakers.push(() => makeCharacter(
  63636. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63637. {
  63638. front: {
  63639. height: math.unit(190, "cm"),
  63640. weight: math.unit(110, "kg"),
  63641. name: "Front",
  63642. image: {
  63643. source: "./media/characters/amelie/front.svg",
  63644. extra: 530/442,
  63645. bottom: 35/565
  63646. }
  63647. },
  63648. },
  63649. [
  63650. {
  63651. name: "Normal",
  63652. height: math.unit(190, "cm"),
  63653. default: true
  63654. },
  63655. ]
  63656. ))
  63657. characterMakers.push(() => makeCharacter(
  63658. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63659. {
  63660. front: {
  63661. height: math.unit(21, "feet"),
  63662. weight: math.unit(30000, "lb"),
  63663. name: "Front",
  63664. image: {
  63665. source: "./media/characters/valence/front.svg",
  63666. extra: 1430/1306,
  63667. bottom: 51/1481
  63668. }
  63669. },
  63670. },
  63671. [
  63672. {
  63673. name: "Normal",
  63674. height: math.unit(21, "feet"),
  63675. default: true
  63676. },
  63677. ]
  63678. ))
  63679. characterMakers.push(() => makeCharacter(
  63680. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63681. {
  63682. front: {
  63683. height: math.unit(5 + 9/12, "feet"),
  63684. weight: math.unit(170, "lb"),
  63685. name: "Front",
  63686. image: {
  63687. source: "./media/characters/aurora-adkins/front.svg",
  63688. extra: 1141/1089,
  63689. bottom: 41/1182
  63690. }
  63691. },
  63692. },
  63693. [
  63694. {
  63695. name: "Tiny",
  63696. height: math.unit(7, "mm")
  63697. },
  63698. {
  63699. name: "Small",
  63700. height: math.unit(3.4, "inches")
  63701. },
  63702. {
  63703. name: "Normal",
  63704. height: math.unit(5 + 9/12, "feet"),
  63705. default: true
  63706. },
  63707. {
  63708. name: "Big",
  63709. height: math.unit(31, "feet")
  63710. },
  63711. {
  63712. name: "Giant",
  63713. height: math.unit(300, "feet")
  63714. },
  63715. ]
  63716. ))
  63717. characterMakers.push(() => makeCharacter(
  63718. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63719. {
  63720. front: {
  63721. height: math.unit(5 + 6/12, "feet"),
  63722. weight: math.unit(210, "lb"),
  63723. name: "Front",
  63724. image: {
  63725. source: "./media/characters/cyber/front.svg",
  63726. extra: 1968/1798,
  63727. bottom: 10/1978
  63728. },
  63729. extraAttributes: {
  63730. "shoeSize": {
  63731. name: "Shoe Size",
  63732. power: 1,
  63733. type: "length",
  63734. base: math.unit(30, "ShoeSizeMensUS")
  63735. },
  63736. }
  63737. },
  63738. },
  63739. [
  63740. {
  63741. name: "Normal",
  63742. height: math.unit(5 + 6/12, "feet"),
  63743. default: true
  63744. },
  63745. ]
  63746. ))
  63747. characterMakers.push(() => makeCharacter(
  63748. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63749. {
  63750. front: {
  63751. height: math.unit(6 + 6/12, "feet"),
  63752. weight: math.unit(140, "lb"),
  63753. name: "Front",
  63754. image: {
  63755. source: "./media/characters/sapphire-wairimea/front.svg",
  63756. extra: 475/458,
  63757. bottom: 14/489
  63758. }
  63759. },
  63760. },
  63761. [
  63762. {
  63763. name: "Normal",
  63764. height: math.unit(6 + 6/12, "feet")
  63765. },
  63766. {
  63767. name: "Macro",
  63768. height: math.unit(132, "feet"),
  63769. default: true
  63770. },
  63771. ]
  63772. ))
  63773. characterMakers.push(() => makeCharacter(
  63774. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63775. {
  63776. front: {
  63777. height: math.unit(1.6, "meters"),
  63778. weight: math.unit(100, "lb"),
  63779. name: "Front",
  63780. image: {
  63781. source: "./media/characters/cirkazi/front.svg",
  63782. extra: 489/477,
  63783. bottom: 0/489
  63784. }
  63785. },
  63786. },
  63787. [
  63788. {
  63789. name: "Normal",
  63790. height: math.unit(1.6, "meters")
  63791. },
  63792. {
  63793. name: "Macro",
  63794. height: math.unit(800, "feet"),
  63795. default: true
  63796. },
  63797. ]
  63798. ))
  63799. characterMakers.push(() => makeCharacter(
  63800. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63801. {
  63802. front: {
  63803. height: math.unit(5 + 10/12, "feet"),
  63804. weight: math.unit(145, "lb"),
  63805. name: "Front",
  63806. image: {
  63807. source: "./media/characters/corrin-cavelli/front.svg",
  63808. extra: 483/464,
  63809. bottom: 6/489
  63810. }
  63811. },
  63812. },
  63813. [
  63814. {
  63815. name: "Human",
  63816. height: math.unit(5 + 10/12, "feet")
  63817. },
  63818. {
  63819. name: "Giant",
  63820. height: math.unit(210, "feet"),
  63821. default: true
  63822. },
  63823. ]
  63824. ))
  63825. characterMakers.push(() => makeCharacter(
  63826. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63827. {
  63828. back: {
  63829. height: math.unit(5 + 6/12, "feet"),
  63830. weight: math.unit(115, "lb"),
  63831. name: "Back",
  63832. image: {
  63833. source: "./media/characters/lori-lopez/back.svg",
  63834. extra: 483/474,
  63835. bottom: 6/489
  63836. }
  63837. },
  63838. },
  63839. [
  63840. {
  63841. name: "Human",
  63842. height: math.unit(5 + 6/12, "feet")
  63843. },
  63844. {
  63845. name: "Macro",
  63846. height: math.unit(198, "feet"),
  63847. default: true
  63848. },
  63849. ]
  63850. ))
  63851. characterMakers.push(() => makeCharacter(
  63852. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63853. {
  63854. front: {
  63855. height: math.unit(6, "feet"),
  63856. weight: math.unit(220, "lb"),
  63857. name: "Front",
  63858. image: {
  63859. source: "./media/characters/sylvia-beauregard/front.svg",
  63860. extra: 483/479,
  63861. bottom: 6/489
  63862. }
  63863. },
  63864. },
  63865. [
  63866. {
  63867. name: "Macro",
  63868. height: math.unit(2071, "feet"),
  63869. default: true
  63870. },
  63871. ]
  63872. ))
  63873. characterMakers.push(() => makeCharacter(
  63874. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63875. {
  63876. back: {
  63877. height: math.unit(5 + 6/12, "feet"),
  63878. weight: math.unit(160, "lb"),
  63879. name: "Back",
  63880. image: {
  63881. source: "./media/characters/akiko-takahashi/back.svg",
  63882. extra: 459/454,
  63883. bottom: 27/486
  63884. }
  63885. },
  63886. },
  63887. [
  63888. {
  63889. name: "Human",
  63890. height: math.unit(5 + 6/12, "feet")
  63891. },
  63892. {
  63893. name: "Macro",
  63894. height: math.unit(198, "feet"),
  63895. default: true
  63896. },
  63897. {
  63898. name: "Megamacro",
  63899. height: math.unit(7128, "feet")
  63900. },
  63901. ]
  63902. ))
  63903. characterMakers.push(() => makeCharacter(
  63904. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63905. {
  63906. front: {
  63907. height: math.unit(6, "feet"),
  63908. weight: math.unit(140, "lb"),
  63909. name: "Front",
  63910. image: {
  63911. source: "./media/characters/velvet-garza/front.svg",
  63912. extra: 480/462,
  63913. bottom: 7/487
  63914. }
  63915. },
  63916. },
  63917. [
  63918. {
  63919. name: "Macro",
  63920. height: math.unit(37, "feet"),
  63921. default: true
  63922. },
  63923. ]
  63924. ))
  63925. characterMakers.push(() => makeCharacter(
  63926. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63927. {
  63928. front: {
  63929. height: math.unit(7 + 6/12, "feet"),
  63930. weight: math.unit(400, "lb"),
  63931. name: "Front",
  63932. image: {
  63933. source: "./media/characters/gaia/front.svg",
  63934. extra: 474/463,
  63935. bottom: 13/487
  63936. }
  63937. },
  63938. },
  63939. [
  63940. {
  63941. name: "MiniMacro",
  63942. height: math.unit(7 + 6/12, "feet")
  63943. },
  63944. {
  63945. name: "GigaMacro",
  63946. height: math.unit(14500, "feet"),
  63947. default: true
  63948. },
  63949. ]
  63950. ))
  63951. characterMakers.push(() => makeCharacter(
  63952. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63953. {
  63954. front: {
  63955. height: math.unit(6, "feet"),
  63956. weight: math.unit(150, "lb"),
  63957. name: "Front",
  63958. image: {
  63959. source: "./media/characters/tim/front.svg",
  63960. extra: 1878/1743,
  63961. bottom: 9/1887
  63962. }
  63963. },
  63964. frontDressed: {
  63965. height: math.unit(6, "feet"),
  63966. weight: math.unit(150, "lb"),
  63967. name: "Front (Dressed)",
  63968. image: {
  63969. source: "./media/characters/tim/front-dressed.svg",
  63970. extra: 1765/1485,
  63971. bottom: 48/1813
  63972. }
  63973. },
  63974. backDressed: {
  63975. height: math.unit(6, "feet"),
  63976. weight: math.unit(150, "lb"),
  63977. name: "Back (Dressed)",
  63978. image: {
  63979. source: "./media/characters/tim/back-dressed.svg",
  63980. extra: 1750/1465,
  63981. bottom: 25/1775
  63982. }
  63983. },
  63984. dick: {
  63985. height: math.unit(1.5, "feet"),
  63986. weight: math.unit(6, "lb"),
  63987. name: "Dick",
  63988. image: {
  63989. source: "./media/characters/tim/dick.svg"
  63990. }
  63991. },
  63992. hand: {
  63993. height: math.unit(0.522, "feet"),
  63994. name: "Hand",
  63995. image: {
  63996. source: "./media/characters/tim/hand.svg"
  63997. }
  63998. },
  63999. palm: {
  64000. height: math.unit(0.48, "feet"),
  64001. name: "Palm",
  64002. image: {
  64003. source: "./media/characters/tim/palm.svg"
  64004. }
  64005. },
  64006. paw: {
  64007. height: math.unit(0.9, "feet"),
  64008. name: "Paw",
  64009. image: {
  64010. source: "./media/characters/tim/paw.svg"
  64011. }
  64012. },
  64013. sole: {
  64014. height: math.unit(0.88, "feet"),
  64015. name: "Sole",
  64016. image: {
  64017. source: "./media/characters/tim/sole.svg"
  64018. }
  64019. },
  64020. },
  64021. [
  64022. {
  64023. name: "Macro",
  64024. height: math.unit(1000, "feet")
  64025. },
  64026. {
  64027. name: "Megamacro",
  64028. height: math.unit(10000, "feet"),
  64029. default: true
  64030. },
  64031. {
  64032. name: "Megamacro+",
  64033. height: math.unit(50000, "feet")
  64034. },
  64035. {
  64036. name: "Gigamacro",
  64037. height: math.unit(150000, "km")
  64038. },
  64039. ]
  64040. ))
  64041. characterMakers.push(() => makeCharacter(
  64042. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  64043. {
  64044. front: {
  64045. height: math.unit(5 + 8/12, "feet"),
  64046. weight: math.unit(170, "lb"),
  64047. name: "Front",
  64048. image: {
  64049. source: "./media/characters/abel-delreoux/front.svg",
  64050. extra: 1615/1500,
  64051. bottom: 82/1697
  64052. }
  64053. },
  64054. back: {
  64055. height: math.unit(5 + 8/12, "feet"),
  64056. weight: math.unit(170, "lb"),
  64057. name: "Back",
  64058. image: {
  64059. source: "./media/characters/abel-delreoux/back.svg",
  64060. extra: 1644/1534,
  64061. bottom: 24/1668
  64062. }
  64063. },
  64064. casual: {
  64065. height: math.unit(5 + 8/12, "feet"),
  64066. weight: math.unit(170, "lb"),
  64067. name: "Casual",
  64068. image: {
  64069. source: "./media/characters/abel-delreoux/casual.svg",
  64070. extra: 1716/1598,
  64071. bottom: 29/1745
  64072. }
  64073. },
  64074. sleepy: {
  64075. height: math.unit(5 + 8/12, "feet"),
  64076. weight: math.unit(170, "lb"),
  64077. name: "Sleepy",
  64078. image: {
  64079. source: "./media/characters/abel-delreoux/sleepy.svg",
  64080. extra: 1649/1573,
  64081. bottom: 22/1671
  64082. }
  64083. },
  64084. fem: {
  64085. height: math.unit(5 + 8/12, "feet"),
  64086. weight: math.unit(170, "lb"),
  64087. name: "Fem",
  64088. image: {
  64089. source: "./media/characters/abel-delreoux/fem.svg",
  64090. extra: 1680/1564,
  64091. bottom: 17/1697
  64092. }
  64093. },
  64094. hand: {
  64095. height: math.unit(0.78, "feet"),
  64096. name: "Hand",
  64097. image: {
  64098. source: "./media/characters/abel-delreoux/hand.svg"
  64099. }
  64100. },
  64101. paw: {
  64102. height: math.unit(0.78, "feet"),
  64103. name: "Paw",
  64104. image: {
  64105. source: "./media/characters/abel-delreoux/paw.svg"
  64106. }
  64107. },
  64108. },
  64109. [
  64110. {
  64111. name: "Normal",
  64112. height: math.unit(5 + 8/12, "feet"),
  64113. default: true
  64114. },
  64115. ]
  64116. ))
  64117. characterMakers.push(() => makeCharacter(
  64118. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  64119. {
  64120. front: {
  64121. height: math.unit(6, "feet"),
  64122. weight: math.unit(159, "lb"),
  64123. name: "Front",
  64124. image: {
  64125. source: "./media/characters/meus/front.svg",
  64126. extra: 938/843,
  64127. bottom: 37/975
  64128. }
  64129. },
  64130. back: {
  64131. height: math.unit(6, "feet"),
  64132. weight: math.unit(159, "lb"),
  64133. name: "Back",
  64134. image: {
  64135. source: "./media/characters/meus/back.svg",
  64136. extra: 967/873,
  64137. bottom: 12/979
  64138. }
  64139. },
  64140. },
  64141. [
  64142. {
  64143. name: "Micro",
  64144. height: math.unit(2, "inches")
  64145. },
  64146. {
  64147. name: "Mini",
  64148. height: math.unit(6, "inches")
  64149. },
  64150. {
  64151. name: "Normal",
  64152. height: math.unit(6, "feet"),
  64153. default: true
  64154. },
  64155. {
  64156. name: "Macro",
  64157. height: math.unit(84, "feet")
  64158. },
  64159. ]
  64160. ))
  64161. characterMakers.push(() => makeCharacter(
  64162. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  64163. {
  64164. front: {
  64165. height: math.unit(60, "cm"),
  64166. weight: math.unit(18, "kg"),
  64167. name: "Front",
  64168. image: {
  64169. source: "./media/characters/yamato/front.svg",
  64170. extra: 733/688,
  64171. bottom: 29/762
  64172. }
  64173. },
  64174. },
  64175. [
  64176. {
  64177. name: "Micro",
  64178. height: math.unit(6, "cm")
  64179. },
  64180. {
  64181. name: "Normal",
  64182. height: math.unit(60, "cm"),
  64183. default: true
  64184. },
  64185. ]
  64186. ))
  64187. characterMakers.push(() => makeCharacter(
  64188. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64189. {
  64190. front: {
  64191. height: math.unit(9, "feet"),
  64192. weight: math.unit(518, "lb"),
  64193. name: "Front",
  64194. image: {
  64195. source: "./media/characters/barus/front.svg",
  64196. extra: 1877/1795,
  64197. bottom: 55/1932
  64198. }
  64199. },
  64200. },
  64201. [
  64202. {
  64203. name: "Base Height",
  64204. height: math.unit(9, "feet"),
  64205. default: true
  64206. },
  64207. {
  64208. name: "Large",
  64209. height: math.unit(18, "feet")
  64210. },
  64211. {
  64212. name: "Giant",
  64213. height: math.unit(100, "feet")
  64214. },
  64215. {
  64216. name: "Huge",
  64217. height: math.unit(500, "feet")
  64218. },
  64219. {
  64220. name: "Enormous",
  64221. height: math.unit(300, "meters")
  64222. },
  64223. {
  64224. name: "Deity Among Man",
  64225. height: math.unit(3000, "meters")
  64226. },
  64227. ]
  64228. ))
  64229. characterMakers.push(() => makeCharacter(
  64230. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64231. {
  64232. front: {
  64233. height: math.unit(1.7, "meters"),
  64234. name: "Front",
  64235. image: {
  64236. source: "./media/characters/yari/front.svg",
  64237. extra: 1210/1125,
  64238. bottom: 283/1493
  64239. }
  64240. },
  64241. back: {
  64242. height: math.unit(1.7, "meters"),
  64243. name: "Back",
  64244. image: {
  64245. source: "./media/characters/yari/back.svg",
  64246. extra: 1240/1195,
  64247. bottom: 180/1420
  64248. }
  64249. },
  64250. head: {
  64251. height: math.unit(1.26, "feet"),
  64252. name: "Head",
  64253. image: {
  64254. source: "./media/characters/yari/head.svg"
  64255. }
  64256. },
  64257. },
  64258. [
  64259. {
  64260. name: "Nano",
  64261. height: math.unit(0.5, "mm")
  64262. },
  64263. {
  64264. name: "Micro",
  64265. height: math.unit(3, "inches")
  64266. },
  64267. {
  64268. name: "Short",
  64269. height: math.unit(1.5, "meters")
  64270. },
  64271. {
  64272. name: "Norm",
  64273. height: math.unit(1.7, "meters"),
  64274. default: true
  64275. },
  64276. ]
  64277. ))
  64278. characterMakers.push(() => makeCharacter(
  64279. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64280. {
  64281. front: {
  64282. height: math.unit(5 + 2/12, "feet"),
  64283. weight: math.unit(110, "lb"),
  64284. name: "Front",
  64285. image: {
  64286. source: "./media/characters/salem/front.svg",
  64287. extra: 1895/1800,
  64288. bottom: 23/1918
  64289. }
  64290. },
  64291. back: {
  64292. height: math.unit(5 + 2/12, "feet"),
  64293. weight: math.unit(110, "lb"),
  64294. name: "Back",
  64295. image: {
  64296. source: "./media/characters/salem/back.svg",
  64297. extra: 1875/1802,
  64298. bottom: 20/1895
  64299. }
  64300. },
  64301. head: {
  64302. height: math.unit(1, "feet"),
  64303. name: "Head",
  64304. image: {
  64305. source: "./media/characters/salem/head.svg"
  64306. }
  64307. },
  64308. paw: {
  64309. height: math.unit(0.59, "feet"),
  64310. name: "Paw",
  64311. image: {
  64312. source: "./media/characters/salem/paw.svg"
  64313. }
  64314. },
  64315. beans: {
  64316. height: math.unit(0.66, "feet"),
  64317. name: "Beans",
  64318. image: {
  64319. source: "./media/characters/salem/beans.svg"
  64320. }
  64321. },
  64322. eye: {
  64323. height: math.unit(0.224, "feet"),
  64324. name: "Eye",
  64325. image: {
  64326. source: "./media/characters/salem/eye.svg"
  64327. }
  64328. },
  64329. semiferal: {
  64330. height: math.unit(2.3, "feet"),
  64331. name: "Semiferal",
  64332. image: {
  64333. source: "./media/characters/salem/semiferal.svg",
  64334. extra: 914/839,
  64335. bottom: 32/946
  64336. }
  64337. },
  64338. },
  64339. [
  64340. {
  64341. name: "Micro",
  64342. height: math.unit(4, "inches")
  64343. },
  64344. {
  64345. name: "Normal",
  64346. height: math.unit(5 + 2/12, "feet"),
  64347. default: true
  64348. },
  64349. {
  64350. name: "Macro",
  64351. height: math.unit(108, "feet")
  64352. },
  64353. {
  64354. name: "Macro+",
  64355. height: math.unit(1500, "feet")
  64356. },
  64357. ]
  64358. ))
  64359. characterMakers.push(() => makeCharacter(
  64360. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64361. {
  64362. front: {
  64363. height: math.unit(7 + 6/12, "feet"),
  64364. weight: math.unit(600, "kg"),
  64365. preyCapacity: math.unit(10, "people"),
  64366. name: "Front",
  64367. image: {
  64368. source: "./media/characters/kii/front.svg",
  64369. extra: 3296/3087,
  64370. bottom: 130/3426
  64371. }
  64372. },
  64373. },
  64374. [
  64375. {
  64376. name: "Normal",
  64377. height: math.unit(7 + 6/12, "feet"),
  64378. default: true
  64379. },
  64380. ]
  64381. ))
  64382. characterMakers.push(() => makeCharacter(
  64383. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64384. {
  64385. front: {
  64386. height: math.unit(2, "meters"),
  64387. weight: math.unit(200, "lb"),
  64388. name: "Front",
  64389. image: {
  64390. source: "./media/characters/taffy/front.svg",
  64391. extra: 1666/1618,
  64392. bottom: 157/1823
  64393. }
  64394. },
  64395. back: {
  64396. height: math.unit(2, "meters"),
  64397. weight: math.unit(200, "lb"),
  64398. name: "Back",
  64399. image: {
  64400. source: "./media/characters/taffy/back.svg",
  64401. extra: 1635/1583,
  64402. bottom: 153/1788
  64403. }
  64404. },
  64405. },
  64406. [
  64407. {
  64408. name: "Normal",
  64409. height: math.unit(2, "meters"),
  64410. default: true
  64411. },
  64412. ]
  64413. ))
  64414. characterMakers.push(() => makeCharacter(
  64415. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64416. {
  64417. front: {
  64418. height: math.unit(1.55, "meters"),
  64419. weight: math.unit(60, "kg"),
  64420. name: "Front",
  64421. image: {
  64422. source: "./media/characters/barley/front.svg",
  64423. extra: 1520/1340,
  64424. bottom: 47/1567
  64425. }
  64426. },
  64427. back: {
  64428. height: math.unit(1.55, "meters"),
  64429. weight: math.unit(60, "kg"),
  64430. name: "Back",
  64431. image: {
  64432. source: "./media/characters/barley/back.svg",
  64433. extra: 1543/1341,
  64434. bottom: 12/1555
  64435. }
  64436. },
  64437. feet: {
  64438. height: math.unit(2.18, "feet"),
  64439. name: "Feet",
  64440. image: {
  64441. source: "./media/characters/barley/feet.svg"
  64442. }
  64443. },
  64444. },
  64445. [
  64446. {
  64447. name: "Normal",
  64448. height: math.unit(1.55, "meters"),
  64449. default: true
  64450. },
  64451. ]
  64452. ))
  64453. characterMakers.push(() => makeCharacter(
  64454. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64455. {
  64456. dressed: {
  64457. height: math.unit(6, "feet"),
  64458. name: "Dressed",
  64459. image: {
  64460. source: "./media/characters/lydia-lopez/dressed.svg",
  64461. extra: 1319/1277,
  64462. bottom: 90/1409
  64463. }
  64464. },
  64465. nude: {
  64466. height: math.unit(6, "feet"),
  64467. name: "Nude",
  64468. image: {
  64469. source: "./media/characters/lydia-lopez/nude.svg",
  64470. extra: 1319/1277,
  64471. bottom: 90/1409
  64472. }
  64473. },
  64474. },
  64475. [
  64476. {
  64477. name: "Normal",
  64478. height: math.unit(6, "feet"),
  64479. default: true
  64480. },
  64481. {
  64482. name: "Maximum",
  64483. height: math.unit(2101, "feet")
  64484. },
  64485. ]
  64486. ))
  64487. characterMakers.push(() => makeCharacter(
  64488. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64489. {
  64490. front: {
  64491. height: math.unit(5 + 4/12, "feet"),
  64492. weight: math.unit(250, "lb"),
  64493. volume: math.unit(20, "gallons"),
  64494. name: "Front",
  64495. image: {
  64496. source: "./media/characters/kira-slime/front.svg",
  64497. extra: 442/403,
  64498. bottom: 18/460
  64499. }
  64500. },
  64501. frontNsfw: {
  64502. height: math.unit(5 + 4/12, "feet"),
  64503. weight: math.unit(250, "lb"),
  64504. volume: math.unit(20, "gallons"),
  64505. name: "Front (NSFW)",
  64506. image: {
  64507. source: "./media/characters/kira-slime/front-nsfw.svg",
  64508. extra: 442/403,
  64509. bottom: 18/460
  64510. }
  64511. },
  64512. },
  64513. [
  64514. {
  64515. name: "Droplet",
  64516. height: math.unit(0.0464452, "feet")
  64517. },
  64518. {
  64519. name: "Pint",
  64520. height: math.unit(0.9824, "feet")
  64521. },
  64522. {
  64523. name: "Bucket",
  64524. height: math.unit(2.83, "feet")
  64525. },
  64526. {
  64527. name: "Normal",
  64528. height: math.unit(5 + 4/12, "feet"),
  64529. default: true
  64530. },
  64531. {
  64532. name: "Tub",
  64533. height: math.unit(8.46614, "feet")
  64534. },
  64535. {
  64536. name: "Pool",
  64537. height: math.unit(31.1895, "feet")
  64538. },
  64539. {
  64540. name: "Pond",
  64541. height: math.unit(170.349, "feet")
  64542. },
  64543. {
  64544. name: "Lake",
  64545. height: math.unit(289334, "feet")
  64546. },
  64547. {
  64548. name: "Ocean",
  64549. height: math.unit(1.11940e+7, "feet")
  64550. },
  64551. ]
  64552. ))
  64553. characterMakers.push(() => makeCharacter(
  64554. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64555. {
  64556. front: {
  64557. height: math.unit(5 + 6/12, "feet"),
  64558. weight: math.unit(120, "lb"),
  64559. name: "Front",
  64560. image: {
  64561. source: "./media/characters/holiday/front.svg",
  64562. extra: 456/403,
  64563. bottom: 4/460
  64564. }
  64565. },
  64566. back: {
  64567. height: math.unit(5 + 6/12, "feet"),
  64568. weight: math.unit(120, "lb"),
  64569. name: "Back",
  64570. image: {
  64571. source: "./media/characters/holiday/back.svg",
  64572. extra: 450/404,
  64573. bottom: 12/462
  64574. }
  64575. },
  64576. head: {
  64577. height: math.unit(2.3, "feet"),
  64578. name: "Head",
  64579. image: {
  64580. source: "./media/characters/holiday/head.svg"
  64581. }
  64582. },
  64583. scifi_front: {
  64584. height: math.unit(145, "km"),
  64585. name: "Front",
  64586. image: {
  64587. source: "./media/characters/holiday/scifi-front.svg"
  64588. },
  64589. form: "scifi",
  64590. },
  64591. },
  64592. [
  64593. {
  64594. name: "Normal",
  64595. height: math.unit(5 + 6/12, "feet"),
  64596. default: true
  64597. },
  64598. {
  64599. name: "Macro",
  64600. height: math.unit(6574.25, "feet")
  64601. },
  64602. ]
  64603. ))
  64604. characterMakers.push(() => makeCharacter(
  64605. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64606. {
  64607. front: {
  64608. height: math.unit(6 + 2/12, "feet"),
  64609. weight: math.unit(200, "lb"),
  64610. name: "Front",
  64611. image: {
  64612. source: "./media/characters/camina/front.svg",
  64613. extra: 1048/985,
  64614. bottom: 30/1078
  64615. }
  64616. },
  64617. },
  64618. [
  64619. {
  64620. name: "Normal",
  64621. height: math.unit(6 + 2/12, "feet"),
  64622. default: true
  64623. },
  64624. ]
  64625. ))
  64626. characterMakers.push(() => makeCharacter(
  64627. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64628. {
  64629. front: {
  64630. height: math.unit(30, "cm"),
  64631. weight: math.unit(420, "grams"),
  64632. name: "Front",
  64633. image: {
  64634. source: "./media/characters/smuck/front.svg",
  64635. extra: 379/345,
  64636. bottom: 36/415
  64637. }
  64638. },
  64639. },
  64640. [
  64641. {
  64642. name: "Smuck-Sized",
  64643. height: math.unit(30, "cm"),
  64644. default: true
  64645. },
  64646. ]
  64647. ))
  64648. characterMakers.push(() => makeCharacter(
  64649. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64650. {
  64651. frontSfw: {
  64652. height: math.unit(10, "feet"),
  64653. weight: math.unit(1000, "kg"),
  64654. preyCapacity: math.unit(2, "people"),
  64655. name: "Front (SFW)",
  64656. image: {
  64657. source: "./media/characters/bylur/front-sfw.svg",
  64658. extra: 419/343,
  64659. bottom: 3/422
  64660. },
  64661. default: true
  64662. },
  64663. frontSheath: {
  64664. height: math.unit(10, "feet"),
  64665. weight: math.unit(1000, "kg"),
  64666. preyCapacity: math.unit(2, "people"),
  64667. name: "Front (Sheath)",
  64668. image: {
  64669. source: "./media/characters/bylur/front-sheath.svg",
  64670. extra: 419/343,
  64671. bottom: 3/422
  64672. }
  64673. },
  64674. frontErect: {
  64675. height: math.unit(10, "feet"),
  64676. weight: math.unit(1000, "kg"),
  64677. preyCapacity: math.unit(2, "people"),
  64678. name: "Front (Erect)",
  64679. image: {
  64680. source: "./media/characters/bylur/front-erect.svg",
  64681. extra: 419/343,
  64682. bottom: 3/422
  64683. }
  64684. },
  64685. back: {
  64686. height: math.unit(10, "feet"),
  64687. weight: math.unit(1000, "kg"),
  64688. preyCapacity: math.unit(2, "people"),
  64689. name: "Back",
  64690. image: {
  64691. source: "./media/characters/bylur/back.svg",
  64692. extra: 392/315,
  64693. bottom: 3/395
  64694. }
  64695. },
  64696. maw: {
  64697. height: math.unit(3.65, "feet"),
  64698. name: "Maw",
  64699. image: {
  64700. source: "./media/characters/bylur/maw.svg"
  64701. }
  64702. },
  64703. },
  64704. [
  64705. {
  64706. name: "Slightly Human Sized",
  64707. height: math.unit(10, "feet")
  64708. },
  64709. {
  64710. name: "Normal",
  64711. height: math.unit(35, "feet"),
  64712. default: true
  64713. },
  64714. {
  64715. name: "Macro",
  64716. height: math.unit(130, "feet")
  64717. },
  64718. ]
  64719. ))
  64720. characterMakers.push(() => makeCharacter(
  64721. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64722. {
  64723. frontNsfw: {
  64724. height: math.unit(6, "feet"),
  64725. weight: math.unit(250, "lb"),
  64726. preyCapacity: math.unit(0.05, "people"),
  64727. name: "Front (NSFW)",
  64728. image: {
  64729. source: "./media/characters/oarven/front-nsfw.svg",
  64730. extra: 1795/1783,
  64731. bottom: 142/1937
  64732. }
  64733. },
  64734. frontSfw: {
  64735. height: math.unit(6, "feet"),
  64736. weight: math.unit(250, "lb"),
  64737. preyCapacity: math.unit(0.05, "people"),
  64738. name: "Front (SFW)",
  64739. image: {
  64740. source: "./media/characters/oarven/front-sfw.svg",
  64741. extra: 1795/1783,
  64742. bottom: 142/1937
  64743. }
  64744. },
  64745. },
  64746. [
  64747. {
  64748. name: "Megamacro",
  64749. height: math.unit(5, "miles"),
  64750. default: true
  64751. },
  64752. {
  64753. name: "Maximum Height",
  64754. height: math.unit(5, "AUs")
  64755. },
  64756. ]
  64757. ))
  64758. characterMakers.push(() => makeCharacter(
  64759. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64760. {
  64761. side: {
  64762. height: math.unit(1065, "meters"),
  64763. weight: math.unit(1e12, "kg"),
  64764. volume: math.unit(3265000000, "m^3"),
  64765. name: "Side",
  64766. image: {
  64767. source: "./media/characters/solidarity/side.svg"
  64768. }
  64769. },
  64770. front: {
  64771. height: math.unit(1065, "meters"),
  64772. weight: math.unit(3265000000000, "kg"),
  64773. volume: math.unit(3265000000, "m^3"),
  64774. name: "Front",
  64775. image: {
  64776. source: "./media/characters/solidarity/front.svg"
  64777. }
  64778. },
  64779. top: {
  64780. height: math.unit(5823, "meters"),
  64781. weight: math.unit(3265000000000, "kg"),
  64782. volume: math.unit(3265000000, "m^3"),
  64783. name: "Top",
  64784. image: {
  64785. source: "./media/characters/solidarity/top.svg"
  64786. }
  64787. },
  64788. },
  64789. [
  64790. {
  64791. name: "Normal",
  64792. height: math.unit(1065, "meters"),
  64793. default: true
  64794. },
  64795. ]
  64796. ))
  64797. characterMakers.push(() => makeCharacter(
  64798. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64799. {
  64800. side: {
  64801. height: math.unit(18 + 4/12, "feet"),
  64802. weight: math.unit(13000, "kg"),
  64803. name: "Side",
  64804. image: {
  64805. source: "./media/characters/ani'szi/side.svg",
  64806. extra: 468/459,
  64807. bottom: 60/528
  64808. }
  64809. },
  64810. head: {
  64811. height: math.unit(4.8, "feet"),
  64812. name: "Head",
  64813. image: {
  64814. source: "./media/characters/ani'szi/head.svg"
  64815. }
  64816. },
  64817. jaws: {
  64818. height: math.unit(2.25, "feet"),
  64819. name: "Jaws",
  64820. image: {
  64821. source: "./media/characters/ani'szi/jaws.svg"
  64822. }
  64823. },
  64824. bust: {
  64825. height: math.unit(8.9, "feet"),
  64826. name: "Bust",
  64827. image: {
  64828. source: "./media/characters/ani'szi/bust.svg"
  64829. }
  64830. },
  64831. back: {
  64832. height: math.unit(13.53, "feet"),
  64833. name: "Back",
  64834. image: {
  64835. source: "./media/characters/ani'szi/back.svg"
  64836. }
  64837. },
  64838. eye: {
  64839. height: math.unit(0.44, "feet"),
  64840. name: "Eye",
  64841. image: {
  64842. source: "./media/characters/ani'szi/eye.svg"
  64843. }
  64844. },
  64845. },
  64846. [
  64847. {
  64848. name: "Normal",
  64849. height: math.unit(18 + 4/12, "feet"),
  64850. default: true
  64851. },
  64852. ]
  64853. ))
  64854. characterMakers.push(() => makeCharacter(
  64855. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64856. {
  64857. front: {
  64858. height: math.unit(7 + 6/12, "feet"),
  64859. weight: math.unit(300, "lb"),
  64860. name: "Front",
  64861. image: {
  64862. source: "./media/characters/rain/front.svg",
  64863. extra: 2955/2698,
  64864. bottom: 235/3190
  64865. }
  64866. },
  64867. dressed: {
  64868. height: math.unit(7 + 6/12, "feet"),
  64869. weight: math.unit(300, "lb"),
  64870. name: "Dressed",
  64871. image: {
  64872. source: "./media/characters/rain/dressed.svg",
  64873. extra: 2783/2572,
  64874. bottom: 430/3213
  64875. }
  64876. },
  64877. },
  64878. [
  64879. {
  64880. name: "Normal",
  64881. height: math.unit(7 + 6/12, "feet"),
  64882. default: true
  64883. },
  64884. {
  64885. name: "Macro",
  64886. height: math.unit(200, "feet")
  64887. },
  64888. {
  64889. name: "Macro+",
  64890. height: math.unit(500, "feet")
  64891. },
  64892. {
  64893. name: "Megamacro",
  64894. height: math.unit(5, "miles")
  64895. },
  64896. ]
  64897. ))
  64898. characterMakers.push(() => makeCharacter(
  64899. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64900. {
  64901. taur_side: {
  64902. height: math.unit(3, "meters"),
  64903. name: "Side",
  64904. image: {
  64905. source: "./media/characters/anise/taur-side.svg",
  64906. extra: 1833/926,
  64907. bottom: 134/1967
  64908. },
  64909. form: "taur",
  64910. default: true
  64911. },
  64912. feral_side: {
  64913. height: math.unit(3, "meters"),
  64914. name: "Side",
  64915. image: {
  64916. source: "./media/characters/anise/feral-side.svg",
  64917. extra: 681/349,
  64918. bottom: 26/707
  64919. },
  64920. form: "feral"
  64921. },
  64922. },
  64923. [
  64924. {
  64925. name: "Normal",
  64926. height: math.unit(3, "meters"),
  64927. default: true,
  64928. allForms: true
  64929. },
  64930. ],
  64931. {
  64932. "taur": {
  64933. name: "Taur",
  64934. default: true
  64935. },
  64936. "feral": {
  64937. name: "Feral",
  64938. },
  64939. }
  64940. ))
  64941. characterMakers.push(() => makeCharacter(
  64942. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64943. {
  64944. front: {
  64945. height: math.unit(1.9, "meters"),
  64946. weight: math.unit(75, "kg"),
  64947. name: "Front",
  64948. image: {
  64949. source: "./media/characters/sarina/front.svg",
  64950. extra: 1275/1200,
  64951. bottom: 49/1324
  64952. }
  64953. },
  64954. back: {
  64955. height: math.unit(1.9, "meters"),
  64956. weight: math.unit(75, "kg"),
  64957. name: "Back",
  64958. image: {
  64959. source: "./media/characters/sarina/back.svg",
  64960. extra: 1279/1209,
  64961. bottom: 14/1293
  64962. }
  64963. },
  64964. dressed: {
  64965. height: math.unit(1.9, "meters"),
  64966. weight: math.unit(75, "kg"),
  64967. name: "Dressed",
  64968. image: {
  64969. source: "./media/characters/sarina/dressed.svg",
  64970. extra: 1256/1187,
  64971. bottom: 56/1312
  64972. }
  64973. },
  64974. paw: {
  64975. height: math.unit(0.57, "feet"),
  64976. name: "Paw",
  64977. image: {
  64978. source: "./media/characters/sarina/paw.svg"
  64979. }
  64980. },
  64981. toering: {
  64982. height: math.unit(0.27, "feet"),
  64983. name: "Toering",
  64984. image: {
  64985. source: "./media/characters/sarina/toering.svg"
  64986. }
  64987. },
  64988. },
  64989. [
  64990. {
  64991. name: "Incognito",
  64992. height: math.unit(1.9, "meters")
  64993. },
  64994. {
  64995. name: "Home Size",
  64996. height: math.unit(160, "meters"),
  64997. default: true
  64998. },
  64999. {
  65000. name: "Mega",
  65001. height: math.unit(50, "km")
  65002. },
  65003. {
  65004. name: "Small Giga",
  65005. height: math.unit(250, "km")
  65006. },
  65007. {
  65008. name: "Giga (Preferred Size)",
  65009. height: math.unit(3000, "km")
  65010. },
  65011. {
  65012. name: "Terra",
  65013. height: math.unit(40000, "km")
  65014. },
  65015. {
  65016. name: "Terra+",
  65017. height: math.unit(400000, "km")
  65018. },
  65019. {
  65020. name: "Solar",
  65021. height: math.unit(35e6, "km")
  65022. },
  65023. {
  65024. name: "Galactic",
  65025. height: math.unit(648106, "parsecs")
  65026. },
  65027. {
  65028. name: "Universal",
  65029. height: math.unit(7, "universes")
  65030. },
  65031. {
  65032. name: "Universal+",
  65033. height: math.unit(30, "universes")
  65034. },
  65035. ]
  65036. ))
  65037. characterMakers.push(() => makeCharacter(
  65038. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  65039. {
  65040. front: {
  65041. height: math.unit(5 + 6/12, "feet"),
  65042. name: "Front",
  65043. image: {
  65044. source: "./media/characters/sifray/front.svg",
  65045. extra: 722/691,
  65046. bottom: 64/786
  65047. }
  65048. },
  65049. },
  65050. [
  65051. {
  65052. name: "Normal",
  65053. height: math.unit(5 + 6/12, "feet"),
  65054. default: true
  65055. },
  65056. ]
  65057. ))
  65058. characterMakers.push(() => makeCharacter(
  65059. { name: "Spots", species: ["dog"], tags: ["feral"] },
  65060. {
  65061. side: {
  65062. height: math.unit(2.64, "feet"),
  65063. weight: math.unit(7, "tons"),
  65064. preyCapacity: math.unit(3, "people"),
  65065. name: "Side",
  65066. image: {
  65067. source: "./media/characters/spots/side.svg",
  65068. extra: 1859/977,
  65069. bottom: 19/1878
  65070. },
  65071. extraAttributes: {
  65072. "preyPerMinute": {
  65073. name: "Prey Per Minute",
  65074. power: 3,
  65075. type: "volume",
  65076. base: math.unit(6, "people"),
  65077. defaultUnit: "people"
  65078. },
  65079. "preyPerDay": {
  65080. name: "Prey Per Day",
  65081. power: 3,
  65082. type: "volume",
  65083. base: math.unit(6 * 60 * 24, "people"),
  65084. defaultUnit: "people"
  65085. },
  65086. }
  65087. },
  65088. },
  65089. [
  65090. {
  65091. name: "Normal",
  65092. height: math.unit(2.64, "feet"),
  65093. default: true
  65094. },
  65095. ]
  65096. ))
  65097. characterMakers.push(() => makeCharacter(
  65098. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  65099. {
  65100. front: {
  65101. height: math.unit(29 + 11/12, "feet"),
  65102. weight: math.unit(40, "tons"),
  65103. name: "Front",
  65104. image: {
  65105. source: "./media/characters/mona/front.svg",
  65106. extra: 1257/1116,
  65107. bottom: 34/1291
  65108. }
  65109. },
  65110. },
  65111. [
  65112. {
  65113. name: "Normal",
  65114. height: math.unit(29 + 11/12, "feet"),
  65115. default: true
  65116. },
  65117. ]
  65118. ))
  65119. characterMakers.push(() => makeCharacter(
  65120. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  65121. {
  65122. front: {
  65123. height: math.unit(15, "feet"),
  65124. weight: math.unit(3000, "kg"),
  65125. preyCapacity: math.unit(5, "people"),
  65126. name: "Front",
  65127. image: {
  65128. source: "./media/characters/frostfire/front.svg",
  65129. extra: 675/558,
  65130. bottom: 73/748
  65131. }
  65132. },
  65133. side: {
  65134. height: math.unit(15, "feet"),
  65135. weight: math.unit(3000, "kg"),
  65136. preyCapacity: math.unit(5, "people"),
  65137. name: "Side",
  65138. image: {
  65139. source: "./media/characters/frostfire/side.svg",
  65140. extra: 687/585,
  65141. bottom: 50/737
  65142. }
  65143. },
  65144. back: {
  65145. height: math.unit(15, "feet"),
  65146. weight: math.unit(3000, "kg"),
  65147. preyCapacity: math.unit(5, "people"),
  65148. name: "Back",
  65149. image: {
  65150. source: "./media/characters/frostfire/back.svg",
  65151. extra: 707/607,
  65152. bottom: 16/723
  65153. }
  65154. },
  65155. head: {
  65156. height: math.unit(9.35, "feet"),
  65157. name: "Head",
  65158. image: {
  65159. source: "./media/characters/frostfire/head.svg"
  65160. }
  65161. },
  65162. maw: {
  65163. height: math.unit(3.32, "feet"),
  65164. name: "Maw",
  65165. image: {
  65166. source: "./media/characters/frostfire/maw.svg"
  65167. }
  65168. },
  65169. hand: {
  65170. height: math.unit(3.7, "feet"),
  65171. name: "Hand",
  65172. image: {
  65173. source: "./media/characters/frostfire/hand.svg"
  65174. }
  65175. },
  65176. paw: {
  65177. height: math.unit(5.8, "feet"),
  65178. name: "Paw",
  65179. image: {
  65180. source: "./media/characters/frostfire/paw.svg"
  65181. }
  65182. },
  65183. },
  65184. [
  65185. {
  65186. name: "Normal",
  65187. height: math.unit(15, "feet"),
  65188. default: true
  65189. },
  65190. ]
  65191. ))
  65192. characterMakers.push(() => makeCharacter(
  65193. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  65194. {
  65195. front: {
  65196. height: math.unit(5 + 2/12, "feet"),
  65197. weight: math.unit(122, "lb"),
  65198. name: "Front",
  65199. image: {
  65200. source: "./media/characters/valeroo/front.svg",
  65201. extra: 1789/1534,
  65202. bottom: 66/1855
  65203. }
  65204. },
  65205. back: {
  65206. height: math.unit(5 + 2/12, "feet"),
  65207. weight: math.unit(122, "lb"),
  65208. name: "Back",
  65209. image: {
  65210. source: "./media/characters/valeroo/back.svg",
  65211. extra: 1848/1588,
  65212. bottom: 68/1916
  65213. }
  65214. },
  65215. head: {
  65216. height: math.unit(1.87, "feet"),
  65217. name: "Head",
  65218. image: {
  65219. source: "./media/characters/valeroo/head.svg"
  65220. }
  65221. },
  65222. hand: {
  65223. height: math.unit(0.82, "feet"),
  65224. name: "Hand",
  65225. image: {
  65226. source: "./media/characters/valeroo/hand.svg"
  65227. }
  65228. },
  65229. foot: {
  65230. height: math.unit(2.42, "feet"),
  65231. name: "Foot",
  65232. image: {
  65233. source: "./media/characters/valeroo/foot.svg"
  65234. }
  65235. },
  65236. },
  65237. [
  65238. {
  65239. name: "Normal",
  65240. height: math.unit(5 + 2/12, "feet"),
  65241. default: true
  65242. },
  65243. ]
  65244. ))
  65245. characterMakers.push(() => makeCharacter(
  65246. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65247. {
  65248. front: {
  65249. height: math.unit(11 + 3/12, "feet"),
  65250. name: "Front",
  65251. image: {
  65252. source: "./media/characters/corrin/front.svg",
  65253. extra: 665/597,
  65254. bottom: 74/739
  65255. }
  65256. },
  65257. },
  65258. [
  65259. {
  65260. name: "Standard",
  65261. height: math.unit(11 + 3/12, "feet"),
  65262. default: true
  65263. },
  65264. {
  65265. name: "The Boss",
  65266. height: math.unit(110, "feet")
  65267. },
  65268. {
  65269. name: "Shipbreaker",
  65270. height: math.unit(38, "km")
  65271. },
  65272. ]
  65273. ))
  65274. characterMakers.push(() => makeCharacter(
  65275. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65276. {
  65277. front: {
  65278. height: math.unit(10, "feet"),
  65279. weight: math.unit(1750, "lb"),
  65280. name: "Front",
  65281. image: {
  65282. source: "./media/characters/kiba-ulrich/front.svg",
  65283. extra: 1037/973,
  65284. bottom: 36/1073
  65285. }
  65286. },
  65287. },
  65288. [
  65289. {
  65290. name: "Normal",
  65291. height: math.unit(10, "feet"),
  65292. default: true
  65293. },
  65294. {
  65295. name: "Minimacro",
  65296. height: math.unit(20, "feet")
  65297. },
  65298. {
  65299. name: "Macro",
  65300. height: math.unit(200, "feet")
  65301. },
  65302. {
  65303. name: "Megamacro",
  65304. height: math.unit(22500, "feet")
  65305. },
  65306. {
  65307. name: "Gigamacro",
  65308. height: math.unit(2700, "miles")
  65309. },
  65310. {
  65311. name: "Teramacro",
  65312. height: math.unit(10000, "miles")
  65313. },
  65314. ]
  65315. ))
  65316. characterMakers.push(() => makeCharacter(
  65317. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65318. {
  65319. gryphon_front: {
  65320. height: math.unit(220, "cm"),
  65321. weight: math.unit(160, "kg"),
  65322. name: "Front",
  65323. image: {
  65324. source: "./media/characters/ceanoth/gryphon-front.svg",
  65325. extra: 616/552,
  65326. bottom: 33/649
  65327. },
  65328. form: "gryphon",
  65329. default: true
  65330. },
  65331. },
  65332. [
  65333. {
  65334. name: "Normal",
  65335. height: math.unit(220, "cm"),
  65336. form: "gryphon",
  65337. default: true
  65338. },
  65339. ],
  65340. {
  65341. "gryphon": {
  65342. name: "Grpyhon",
  65343. default: true
  65344. },
  65345. }
  65346. ))
  65347. characterMakers.push(() => makeCharacter(
  65348. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65349. {
  65350. dressed: {
  65351. height: math.unit(2.2 * 0.79, "meters"),
  65352. weight: math.unit(0.5, "tonnes"),
  65353. name: "Dressed",
  65354. image: {
  65355. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65356. extra: 665/315,
  65357. bottom: 106/771
  65358. },
  65359. extraAttributes: {
  65360. "bodyLength": {
  65361. name: "Body Length",
  65362. power: 1,
  65363. type: "length",
  65364. base: math.unit(2.5, "meters")
  65365. },
  65366. "tailLength": {
  65367. name: "Tail Length",
  65368. power: 1,
  65369. type: "length",
  65370. base: math.unit(4.5, "meters")
  65371. },
  65372. "wingspan": {
  65373. name: "Wingspan",
  65374. power: 1,
  65375. type: "length",
  65376. base: math.unit(6, "meters")
  65377. },
  65378. "taurStomachCapacity": {
  65379. name: "Taur Stomach Capacity",
  65380. power: 3,
  65381. type: "volume",
  65382. base: math.unit(4, "people"),
  65383. defaultUnit: "people"
  65384. },
  65385. "anthroStomachCapacity": {
  65386. name: "Anthro Stomach Capacity",
  65387. power: 3,
  65388. type: "volume",
  65389. base: math.unit(1, "people"),
  65390. defaultUnit: "people"
  65391. },
  65392. }
  65393. },
  65394. nude: {
  65395. height: math.unit(2.2 * 0.79, "meters"),
  65396. weight: math.unit(0.5, "tonnes"),
  65397. name: "Nude",
  65398. image: {
  65399. source: "./media/characters/vanadiya-athelya/nude.svg",
  65400. extra: 665/315,
  65401. bottom: 106/771
  65402. },
  65403. extraAttributes: {
  65404. "bodyLength": {
  65405. name: "Body Length",
  65406. power: 1,
  65407. type: "length",
  65408. base: math.unit(2.5, "meters")
  65409. },
  65410. "tailLength": {
  65411. name: "Tail Length",
  65412. power: 1,
  65413. type: "length",
  65414. base: math.unit(4.5, "meters")
  65415. },
  65416. "wingspan": {
  65417. name: "Wingspan",
  65418. power: 1,
  65419. type: "length",
  65420. base: math.unit(6, "meters")
  65421. },
  65422. "taurStomachCapacity": {
  65423. name: "Taur Stomach Capacity",
  65424. power: 3,
  65425. type: "volume",
  65426. base: math.unit(4, "people"),
  65427. defaultUnit: "people"
  65428. },
  65429. "anthroStomachCapacity": {
  65430. name: "Anthro Stomach Capacity",
  65431. power: 3,
  65432. type: "volume",
  65433. base: math.unit(1, "people"),
  65434. defaultUnit: "people"
  65435. },
  65436. }
  65437. },
  65438. },
  65439. [
  65440. {
  65441. name: "Handheld",
  65442. height: math.unit(0.79 * 0.06, "meters")
  65443. },
  65444. {
  65445. name: "Mini",
  65446. height: math.unit(0.79 * 0.7, "meters")
  65447. },
  65448. {
  65449. name: "Short",
  65450. height: math.unit(0.79 * 1.4, "meters")
  65451. },
  65452. {
  65453. name: "Imposing",
  65454. height: math.unit(0.79 * 2.2, "meters"),
  65455. default: true
  65456. },
  65457. {
  65458. name: "Big",
  65459. height: math.unit(0.79 * 3.8, "meters")
  65460. },
  65461. {
  65462. name: "Giant",
  65463. height: math.unit(0.79 * 6.7, "meters")
  65464. },
  65465. {
  65466. name: "Airliner",
  65467. height: math.unit(0.79 * 64, "meters")
  65468. },
  65469. {
  65470. name: "Skyscraper",
  65471. height: math.unit(0.79 * 220, "meters")
  65472. },
  65473. {
  65474. name: "Mountain",
  65475. height: math.unit(0.79 * 3.6, "km")
  65476. },
  65477. {
  65478. name: "Spacescraper",
  65479. height: math.unit(0.79 * 70, "km")
  65480. },
  65481. {
  65482. name: "Continental",
  65483. height: math.unit(0.79 * 1290, "km")
  65484. },
  65485. {
  65486. name: "Moon",
  65487. height: math.unit(0.79 * 32200, "km")
  65488. },
  65489. {
  65490. name: "Planetary",
  65491. height: math.unit(0.79 * 145000, "km")
  65492. },
  65493. {
  65494. name: "Stellar",
  65495. height: math.unit(0.79 * 19e6, "km")
  65496. },
  65497. {
  65498. name: "Solar",
  65499. height: math.unit(0.79 * 40, "AU")
  65500. },
  65501. {
  65502. name: "Intersteller",
  65503. height: math.unit(0.79 * 3, "lightyears")
  65504. },
  65505. {
  65506. name: "Star Cluster",
  65507. height: math.unit(0.79 * 80, "lightyears")
  65508. },
  65509. {
  65510. name: "Ecumenical",
  65511. height: math.unit(0.79 * 2e3, "lightyears")
  65512. },
  65513. {
  65514. name: "Galactic",
  65515. height: math.unit(0.79 * 175000, "lightyears")
  65516. },
  65517. {
  65518. name: "Galaxy Cluster",
  65519. height: math.unit(0.79 * 25e6, "lightyears")
  65520. },
  65521. ]
  65522. ))
  65523. characterMakers.push(() => makeCharacter(
  65524. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65525. {
  65526. front: {
  65527. height: math.unit(6 + 2/12, "feet"),
  65528. weight: math.unit(160, "lb"),
  65529. name: "Front",
  65530. image: {
  65531. source: "./media/characters/yana-amelin/front.svg",
  65532. extra: 1413/1295,
  65533. bottom: 42/1455
  65534. }
  65535. },
  65536. back: {
  65537. height: math.unit(6 + 2/12, "feet"),
  65538. weight: math.unit(160, "lb"),
  65539. name: "Back",
  65540. image: {
  65541. source: "./media/characters/yana-amelin/back.svg",
  65542. extra: 1424/1310,
  65543. bottom: 24/1448
  65544. }
  65545. },
  65546. paws: {
  65547. height: math.unit(1.48, "feet"),
  65548. name: "Paws",
  65549. image: {
  65550. source: "./media/characters/yana-amelin/paws.svg",
  65551. extra: 304/304,
  65552. bottom: 49/353
  65553. }
  65554. },
  65555. },
  65556. [
  65557. {
  65558. name: "Micro",
  65559. height: math.unit(4, "inches")
  65560. },
  65561. {
  65562. name: "Normal",
  65563. height: math.unit(6 + 2/12, "feet"),
  65564. default: true
  65565. },
  65566. {
  65567. name: "Minimacro",
  65568. height: math.unit(20, "feet")
  65569. },
  65570. {
  65571. name: "Macro",
  65572. height: math.unit(70, "feet")
  65573. },
  65574. ]
  65575. ))
  65576. characterMakers.push(() => makeCharacter(
  65577. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65578. {
  65579. frontNsfw: {
  65580. height: math.unit(2.48, "meters"),
  65581. weight: math.unit(112, "kg"),
  65582. name: "Front (NSFW)",
  65583. image: {
  65584. source: "./media/characters/titania/front-nsfw.svg",
  65585. extra: 1302/1232,
  65586. bottom: 90/1392
  65587. }
  65588. },
  65589. backNsfw: {
  65590. height: math.unit(2.48, "meters"),
  65591. weight: math.unit(112, "kg"),
  65592. name: "Back (NSFW)",
  65593. image: {
  65594. source: "./media/characters/titania/back-nsfw.svg",
  65595. extra: 1355/1288,
  65596. bottom: 18/1373
  65597. }
  65598. },
  65599. frontSfw: {
  65600. height: math.unit(2.48, "meters"),
  65601. weight: math.unit(112, "kg"),
  65602. name: "Front (SFW)",
  65603. image: {
  65604. source: "./media/characters/titania/front-sfw.svg",
  65605. extra: 1302/1232,
  65606. bottom: 90/1392
  65607. }
  65608. },
  65609. backSfw: {
  65610. height: math.unit(2.48, "meters"),
  65611. weight: math.unit(112, "kg"),
  65612. name: "Back (SFW)",
  65613. image: {
  65614. source: "./media/characters/titania/back-sfw.svg",
  65615. extra: 1355/1288,
  65616. bottom: 18/1373
  65617. }
  65618. },
  65619. head: {
  65620. height: math.unit(2.06, "feet"),
  65621. name: "Head",
  65622. image: {
  65623. source: "./media/characters/titania/head.svg"
  65624. }
  65625. },
  65626. maw: {
  65627. height: math.unit(0.8, "feet"),
  65628. name: "Maw",
  65629. image: {
  65630. source: "./media/characters/titania/maw.svg"
  65631. }
  65632. },
  65633. foot: {
  65634. height: math.unit(1.65, "feet"),
  65635. name: "Foot",
  65636. image: {
  65637. source: "./media/characters/titania/foot.svg"
  65638. }
  65639. },
  65640. nethers: {
  65641. height: math.unit(1.7, "feet"),
  65642. name: "Nethers",
  65643. image: {
  65644. source: "./media/characters/titania/nethers.svg"
  65645. }
  65646. },
  65647. },
  65648. [
  65649. {
  65650. name: "Normal",
  65651. height: math.unit(2.48, "meters"),
  65652. default: true
  65653. },
  65654. {
  65655. name: "Mini Macro",
  65656. height: math.unit(248, "meters")
  65657. },
  65658. {
  65659. name: "Macro",
  65660. height: math.unit(620, "meters")
  65661. },
  65662. {
  65663. name: "Mega Macro",
  65664. height: math.unit(1860, "meters")
  65665. },
  65666. ]
  65667. ))
  65668. characterMakers.push(() => makeCharacter(
  65669. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65670. {
  65671. front: {
  65672. height: math.unit(5 + 9/12, "feet"),
  65673. weight: math.unit(1500, "lb"),
  65674. name: "Front",
  65675. image: {
  65676. source: "./media/characters/tony-gray/front.svg",
  65677. extra: 700/575,
  65678. bottom: 71/771
  65679. }
  65680. },
  65681. },
  65682. [
  65683. {
  65684. name: "Normal",
  65685. height: math.unit(5 + 9/12, "feet"),
  65686. default: true
  65687. },
  65688. ]
  65689. ))
  65690. characterMakers.push(() => makeCharacter(
  65691. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65692. {
  65693. side: {
  65694. height: math.unit(8 + 2/12, "feet"),
  65695. name: "Side",
  65696. image: {
  65697. source: "./media/characters/kelby/side.svg",
  65698. extra: 804/578,
  65699. bottom: 70/874
  65700. },
  65701. form: "regular",
  65702. default: true
  65703. },
  65704. lounging: {
  65705. height: math.unit(12.41, "feet"),
  65706. name: "Lounging",
  65707. image: {
  65708. source: "./media/characters/kelby/lounging.svg"
  65709. },
  65710. form: "regular"
  65711. },
  65712. maw: {
  65713. height: math.unit(5, "feet"),
  65714. name: "Maw",
  65715. image: {
  65716. source: "./media/characters/kelby/maw.svg"
  65717. },
  65718. form: "regular"
  65719. },
  65720. dick: {
  65721. height: math.unit(2.4, "feet"),
  65722. name: "Dick",
  65723. image: {
  65724. source: "./media/characters/kelby/dick.svg"
  65725. },
  65726. form: "regular"
  65727. },
  65728. slit: {
  65729. height: math.unit(1.2, "feet"),
  65730. name: "Slit",
  65731. image: {
  65732. source: "./media/characters/kelby/slit.svg"
  65733. },
  65734. form: "regular"
  65735. },
  65736. chibi: {
  65737. height: math.unit(5, "feet"),
  65738. name: "Chibi",
  65739. image: {
  65740. source: "./media/characters/kelby/chibi.svg",
  65741. extra: 245/200,
  65742. bottom: 43/288
  65743. },
  65744. form: "chibi",
  65745. default: true
  65746. },
  65747. },
  65748. [
  65749. {
  65750. name: "Normal",
  65751. height: math.unit(8 + 2/12, "feet"),
  65752. default: true,
  65753. form: "regular"
  65754. },
  65755. {
  65756. name: "Normal",
  65757. height: math.unit(5, "feet"),
  65758. default: true,
  65759. form: "chibi"
  65760. },
  65761. ],
  65762. {
  65763. "regular": {
  65764. name: "Regular",
  65765. default: true
  65766. },
  65767. "chibi": {
  65768. name: "Chibi",
  65769. },
  65770. }
  65771. ))
  65772. characterMakers.push(() => makeCharacter(
  65773. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65774. {
  65775. front: {
  65776. height: math.unit(7 + 10/12, "feet"),
  65777. weight: math.unit(300, "lb"),
  65778. name: "Front",
  65779. image: {
  65780. source: "./media/characters/elisa-mitchell/front.svg",
  65781. extra: 2562/2355,
  65782. bottom: 62/2624
  65783. }
  65784. },
  65785. maw: {
  65786. height: math.unit(2.37, "feet"),
  65787. name: "Maw",
  65788. image: {
  65789. source: "./media/characters/elisa-mitchell/maw.svg"
  65790. }
  65791. },
  65792. },
  65793. [
  65794. {
  65795. name: "Normal",
  65796. height: math.unit(7 + 10/12, "feet"),
  65797. default: true
  65798. },
  65799. {
  65800. name: "Macro",
  65801. height: math.unit(1490, "feet"),
  65802. default: true
  65803. },
  65804. ]
  65805. ))
  65806. characterMakers.push(() => makeCharacter(
  65807. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65808. {
  65809. front: {
  65810. height: math.unit(122, "cm"),
  65811. weight: math.unit(40, "lb"),
  65812. name: "Front",
  65813. image: {
  65814. source: "./media/characters/camia-vertigo-zott/front.svg",
  65815. extra: 2112/1902,
  65816. bottom: 21/2133
  65817. }
  65818. },
  65819. },
  65820. [
  65821. {
  65822. name: "Base Height",
  65823. height: math.unit(122, "cm")
  65824. },
  65825. {
  65826. name: "Macro Height",
  65827. height: math.unit(345, "meters"),
  65828. default: true
  65829. },
  65830. ]
  65831. ))
  65832. characterMakers.push(() => makeCharacter(
  65833. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65834. {
  65835. front: {
  65836. height: math.unit(6 + 3/12, "feet"),
  65837. weight: math.unit(180, "lb"),
  65838. name: "Front",
  65839. image: {
  65840. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65841. extra: 2580/2457,
  65842. bottom: 131/2711
  65843. }
  65844. },
  65845. },
  65846. [
  65847. {
  65848. name: "Normal",
  65849. height: math.unit(6 + 3/12, "feet"),
  65850. default: true
  65851. },
  65852. ]
  65853. ))
  65854. characterMakers.push(() => makeCharacter(
  65855. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65856. {
  65857. front: {
  65858. height: math.unit(165, "cm"),
  65859. weight: math.unit(130, "lb"),
  65860. name: "Front",
  65861. image: {
  65862. source: "./media/characters/sleeka/front.svg",
  65863. extra: 1252/1200,
  65864. bottom: 46/1298
  65865. }
  65866. },
  65867. },
  65868. [
  65869. {
  65870. name: "Normal",
  65871. height: math.unit(165, "cm")
  65872. },
  65873. {
  65874. name: "Galactic",
  65875. height: math.unit(5.8e22, "meters"),
  65876. default: true
  65877. },
  65878. {
  65879. name: "Universal",
  65880. height: math.unit(1.02e29, "meters")
  65881. },
  65882. ]
  65883. ))
  65884. characterMakers.push(() => makeCharacter(
  65885. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65886. {
  65887. front: {
  65888. height: math.unit(5 + 11/12, "feet"),
  65889. weight: math.unit(145, "lb"),
  65890. name: "Front",
  65891. image: {
  65892. source: "./media/characters/emily-whitetail/front.svg",
  65893. extra: 2510/2280,
  65894. bottom: 128/2638
  65895. }
  65896. },
  65897. },
  65898. [
  65899. {
  65900. name: "Normal",
  65901. height: math.unit(5 + 11/12, "feet")
  65902. },
  65903. {
  65904. name: "Galactic",
  65905. height: math.unit(6.3e22, "meters"),
  65906. default: true
  65907. },
  65908. {
  65909. name: "Universal",
  65910. height: math.unit(1.12e29, "meters")
  65911. },
  65912. ]
  65913. ))
  65914. characterMakers.push(() => makeCharacter(
  65915. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65916. {
  65917. front: {
  65918. height: math.unit(5 + 4/12, "feet"),
  65919. weight: math.unit(110, "lb"),
  65920. name: "Front",
  65921. image: {
  65922. source: "./media/characters/buck-whitetail/front.svg",
  65923. extra: 2430/2186,
  65924. bottom: 125/2555
  65925. }
  65926. },
  65927. },
  65928. [
  65929. {
  65930. name: "Normal",
  65931. height: math.unit(5 + 4/12, "feet")
  65932. },
  65933. {
  65934. name: "Galactic",
  65935. height: math.unit(5.4e22, "meters"),
  65936. default: true
  65937. },
  65938. {
  65939. name: "Universal",
  65940. height: math.unit(9.6e28, "meters")
  65941. },
  65942. ]
  65943. ))
  65944. characterMakers.push(() => makeCharacter(
  65945. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65946. {
  65947. front: {
  65948. height: math.unit(5 + 3/12, "feet"),
  65949. name: "Front",
  65950. image: {
  65951. source: "./media/characters/zoey-frisk/front.svg",
  65952. extra: 2825/2646,
  65953. bottom: 57/2882
  65954. }
  65955. },
  65956. },
  65957. [
  65958. {
  65959. name: "Normal",
  65960. height: math.unit(5 + 3/12, "feet"),
  65961. default: true
  65962. },
  65963. {
  65964. name: "Macro",
  65965. height: math.unit(800, "feet")
  65966. },
  65967. ]
  65968. ))
  65969. characterMakers.push(() => makeCharacter(
  65970. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65971. {
  65972. front: {
  65973. height: math.unit(210, "cm"),
  65974. weight: math.unit(102, "kg"),
  65975. name: "Front",
  65976. image: {
  65977. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65978. extra: 831/790,
  65979. bottom: 19/850
  65980. }
  65981. },
  65982. },
  65983. [
  65984. {
  65985. name: "Micro",
  65986. height: math.unit(1, "mm")
  65987. },
  65988. {
  65989. name: "Small",
  65990. height: math.unit(1, "cm")
  65991. },
  65992. {
  65993. name: "Short",
  65994. height: math.unit(1, "foot")
  65995. },
  65996. {
  65997. name: "Normal",
  65998. height: math.unit(210, "cm"),
  65999. default: true
  66000. },
  66001. {
  66002. name: "Big",
  66003. height: math.unit(15, "feet")
  66004. },
  66005. {
  66006. name: "Macro",
  66007. height: math.unit(50, "feet")
  66008. },
  66009. ]
  66010. ))
  66011. characterMakers.push(() => makeCharacter(
  66012. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  66013. {
  66014. front: {
  66015. height: math.unit(80, "feet"),
  66016. weight: math.unit(410000, "lb"),
  66017. name: "Front",
  66018. image: {
  66019. source: "./media/characters/trouble/front.svg",
  66020. extra: 780/723,
  66021. bottom: 11/791
  66022. },
  66023. extraAttributes: {
  66024. "pawArea": {
  66025. name: "Paw Area",
  66026. power: 2,
  66027. type: "area",
  66028. base: math.unit(49, "feet^2")
  66029. },
  66030. }
  66031. },
  66032. },
  66033. [
  66034. {
  66035. name: "Normal",
  66036. height: math.unit(80, "feet"),
  66037. default: true
  66038. },
  66039. ]
  66040. ))
  66041. characterMakers.push(() => makeCharacter(
  66042. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  66043. {
  66044. front: {
  66045. height: math.unit(5 + 7/12, "feet"),
  66046. weight: math.unit(140, "lb"),
  66047. name: "Front",
  66048. image: {
  66049. source: "./media/characters/bastion-aralus/front.svg",
  66050. extra: 1122/1045,
  66051. bottom: 24/1146
  66052. }
  66053. },
  66054. back: {
  66055. height: math.unit(5 + 7/12, "feet"),
  66056. weight: math.unit(140, "lb"),
  66057. name: "Back",
  66058. image: {
  66059. source: "./media/characters/bastion-aralus/back.svg",
  66060. extra: 1158/1078,
  66061. bottom: 39/1197
  66062. }
  66063. },
  66064. dick: {
  66065. height: math.unit(1.16, "feet"),
  66066. name: "Dick",
  66067. image: {
  66068. source: "./media/characters/bastion-aralus/dick.svg"
  66069. }
  66070. },
  66071. },
  66072. [
  66073. {
  66074. name: "Micro",
  66075. height: math.unit(1, "mm")
  66076. },
  66077. {
  66078. name: "Normal",
  66079. height: math.unit(5 + 7/12, "feet"),
  66080. default: true
  66081. },
  66082. {
  66083. name: "Macro",
  66084. height: math.unit(57, "feet")
  66085. },
  66086. ]
  66087. ))
  66088. characterMakers.push(() => makeCharacter(
  66089. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  66090. {
  66091. sona_front: {
  66092. height: math.unit(6, "feet"),
  66093. weight: math.unit(350, "lb"),
  66094. name: "Front",
  66095. image: {
  66096. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  66097. extra: 1099/1005,
  66098. bottom: 22/1121
  66099. },
  66100. form: "sona",
  66101. default: true
  66102. },
  66103. sona_side: {
  66104. height: math.unit(6, "feet"),
  66105. weight: math.unit(350, "lb"),
  66106. name: "Side",
  66107. image: {
  66108. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  66109. extra: 1075/1017,
  66110. bottom: 20/1095
  66111. },
  66112. form: "sona",
  66113. },
  66114. character_front: {
  66115. height: math.unit(6, "feet"),
  66116. weight: math.unit(300, "lb"),
  66117. name: "Front",
  66118. image: {
  66119. source: "./media/characters/midnight-yamikidate/character-front.svg",
  66120. extra: 1099/1005,
  66121. bottom: 22/1121
  66122. },
  66123. form: "character",
  66124. default: true
  66125. },
  66126. character_side: {
  66127. height: math.unit(6, "feet"),
  66128. weight: math.unit(300, "lb"),
  66129. name: "Side",
  66130. image: {
  66131. source: "./media/characters/midnight-yamikidate/character-side.svg",
  66132. extra: 1075/1017,
  66133. bottom: 20/1095
  66134. },
  66135. form: "character",
  66136. },
  66137. },
  66138. [
  66139. {
  66140. name: "Normal",
  66141. height: math.unit(500, "feet"),
  66142. default: true,
  66143. form: "sona"
  66144. },
  66145. {
  66146. name: "Normal",
  66147. height: math.unit(50, "feet"),
  66148. default: true,
  66149. form: "character"
  66150. },
  66151. ],
  66152. {
  66153. "sona": {
  66154. name: "Sona",
  66155. default: true
  66156. },
  66157. "character": {
  66158. name: "Character",
  66159. },
  66160. }
  66161. ))
  66162. characterMakers.push(() => makeCharacter(
  66163. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  66164. {
  66165. front: {
  66166. height: math.unit(5 + 4/12, "feet"),
  66167. weight: math.unit(58, "kg"),
  66168. name: "Front",
  66169. image: {
  66170. source: "./media/characters/hood/front.svg",
  66171. extra: 1474/1309,
  66172. bottom: 0/1474
  66173. }
  66174. },
  66175. },
  66176. [
  66177. {
  66178. name: "Normal",
  66179. height: math.unit(5 + 4/12, "feet"),
  66180. default: true
  66181. },
  66182. ]
  66183. ))
  66184. characterMakers.push(() => makeCharacter(
  66185. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  66186. {
  66187. front: {
  66188. height: math.unit(8 + 2/12, "feet"),
  66189. name: "Front",
  66190. image: {
  66191. source: "./media/characters/rena/front.svg",
  66192. extra: 1768/1632,
  66193. bottom: 57/1825
  66194. }
  66195. },
  66196. },
  66197. [
  66198. {
  66199. name: "Normal",
  66200. height: math.unit(8 + 2/12, "feet"),
  66201. default: true
  66202. },
  66203. ]
  66204. ))
  66205. characterMakers.push(() => makeCharacter(
  66206. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66207. {
  66208. front: {
  66209. height: math.unit(5 + 3/12, "feet"),
  66210. name: "Front",
  66211. image: {
  66212. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66213. extra: 1209/1159,
  66214. bottom: 33/1242
  66215. }
  66216. },
  66217. maw: {
  66218. height: math.unit(1.75, "feet"),
  66219. name: "Maw",
  66220. image: {
  66221. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66222. }
  66223. },
  66224. },
  66225. [
  66226. {
  66227. name: "Micro",
  66228. height: math.unit(3, "inches")
  66229. },
  66230. {
  66231. name: "Regular",
  66232. height: math.unit(5 + 3/12, "feet"),
  66233. default: true
  66234. },
  66235. {
  66236. name: "Imagined",
  66237. height: math.unit(90, "meters")
  66238. },
  66239. ]
  66240. ))
  66241. characterMakers.push(() => makeCharacter(
  66242. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66243. {
  66244. front: {
  66245. height: math.unit(11.75, "feet"),
  66246. weight: math.unit(4346, "lb"),
  66247. preyCapacity: math.unit(20, "people"),
  66248. name: "Front",
  66249. image: {
  66250. source: "./media/characters/suma-roo/front.svg",
  66251. extra: 1370/1365,
  66252. bottom: 164/1534
  66253. }
  66254. },
  66255. },
  66256. [
  66257. {
  66258. name: "Normal",
  66259. height: math.unit(11.75, "feet"),
  66260. default: true
  66261. },
  66262. ]
  66263. ))
  66264. characterMakers.push(() => makeCharacter(
  66265. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66266. {
  66267. front: {
  66268. height: math.unit(2.35, "meters"),
  66269. weight: math.unit(240, "kg"),
  66270. name: "Front",
  66271. image: {
  66272. source: "./media/characters/hymmanios/front.svg",
  66273. extra: 2032/1994,
  66274. bottom: 194/2226
  66275. }
  66276. },
  66277. },
  66278. [
  66279. {
  66280. name: "Normal",
  66281. height: math.unit(2.35, "meters"),
  66282. default: true
  66283. },
  66284. {
  66285. name: "Macro",
  66286. height: math.unit(75, "meters")
  66287. },
  66288. {
  66289. name: "Mega",
  66290. height: math.unit(1250, "meters")
  66291. },
  66292. {
  66293. name: "Giga",
  66294. height: math.unit(235000, "meters")
  66295. },
  66296. ]
  66297. ))
  66298. characterMakers.push(() => makeCharacter(
  66299. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66300. {
  66301. front: {
  66302. height: math.unit(134, "feet"),
  66303. weight: math.unit(932.635, "tons"),
  66304. name: "Front",
  66305. image: {
  66306. source: "./media/characters/azalea/front.svg",
  66307. extra: 703/687,
  66308. bottom: 75/778
  66309. }
  66310. },
  66311. },
  66312. [
  66313. {
  66314. name: "Normal",
  66315. height: math.unit(134, "feet"),
  66316. default: true
  66317. },
  66318. ]
  66319. ))
  66320. characterMakers.push(() => makeCharacter(
  66321. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66322. {
  66323. front: {
  66324. height: math.unit(6.4, "feet"),
  66325. weight: math.unit(167.5, "lb"),
  66326. name: "Front",
  66327. image: {
  66328. source: "./media/characters/lizzy/front.svg",
  66329. extra: 1916/1791,
  66330. bottom: 103/2019
  66331. }
  66332. },
  66333. back: {
  66334. height: math.unit(6.4, "feet"),
  66335. weight: math.unit(167.5, "lb"),
  66336. name: "Back",
  66337. image: {
  66338. source: "./media/characters/lizzy/back.svg",
  66339. extra: 1995/1856,
  66340. bottom: 11/2006
  66341. }
  66342. },
  66343. },
  66344. [
  66345. {
  66346. name: "Normal",
  66347. height: math.unit(6.4, "feet"),
  66348. default: true
  66349. },
  66350. ]
  66351. ))
  66352. characterMakers.push(() => makeCharacter(
  66353. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66354. {
  66355. front: {
  66356. height: math.unit(66, "inches"),
  66357. name: "Front",
  66358. image: {
  66359. source: "./media/characters/sasha/front.svg",
  66360. extra: 620/571,
  66361. bottom: 33/653
  66362. }
  66363. },
  66364. back: {
  66365. height: math.unit(66, "inches"),
  66366. name: "Back",
  66367. image: {
  66368. source: "./media/characters/sasha/back.svg",
  66369. extra: 615/564,
  66370. bottom: 38/653
  66371. }
  66372. },
  66373. },
  66374. [
  66375. {
  66376. name: "IRL",
  66377. height: math.unit(2, "inches")
  66378. },
  66379. {
  66380. name: "Normal",
  66381. height: math.unit(66, "inches"),
  66382. default: true
  66383. },
  66384. {
  66385. name: "Macro",
  66386. height: math.unit(400, "feet")
  66387. },
  66388. {
  66389. name: "Mega Macro",
  66390. height: math.unit(500000, "feet")
  66391. },
  66392. {
  66393. name: "Giga Macro",
  66394. height: math.unit(50000, "miles")
  66395. },
  66396. ]
  66397. ))
  66398. characterMakers.push(() => makeCharacter(
  66399. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66400. {
  66401. front: {
  66402. height: math.unit(52, "inches"),
  66403. name: "Front",
  66404. image: {
  66405. source: "./media/characters/autumn-avali/front.svg",
  66406. extra: 1031/908,
  66407. bottom: 38/1069
  66408. }
  66409. },
  66410. back: {
  66411. height: math.unit(52, "inches"),
  66412. name: "Back",
  66413. image: {
  66414. source: "./media/characters/autumn-avali/back.svg",
  66415. extra: 1047/923,
  66416. bottom: 11/1058
  66417. }
  66418. },
  66419. maw: {
  66420. height: math.unit(0.59, "feet"),
  66421. name: "Maw",
  66422. image: {
  66423. source: "./media/characters/autumn-avali/maw.svg"
  66424. }
  66425. },
  66426. },
  66427. [
  66428. {
  66429. name: "Normal",
  66430. height: math.unit(52, "inches"),
  66431. default: true
  66432. },
  66433. {
  66434. name: "Big'vali",
  66435. height: math.unit(3.5, "meters")
  66436. },
  66437. {
  66438. name: "Macro",
  66439. height: math.unit(35, "meters")
  66440. },
  66441. {
  66442. name: "Macro+",
  66443. height: math.unit(165, "meters")
  66444. },
  66445. {
  66446. name: "Megamacro",
  66447. height: math.unit(8250, "meters")
  66448. },
  66449. {
  66450. name: "Megamacro+",
  66451. height: math.unit(88000, "meters")
  66452. },
  66453. {
  66454. name: "Gigamacro",
  66455. height: math.unit(1.32, "megameters")
  66456. },
  66457. {
  66458. name: "Planet Cracker",
  66459. height: math.unit(77, "megameters")
  66460. },
  66461. ]
  66462. ))
  66463. characterMakers.push(() => makeCharacter(
  66464. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66465. {
  66466. front: {
  66467. height: math.unit(200, "feet"),
  66468. name: "Front",
  66469. image: {
  66470. source: "./media/characters/sophie/front.svg",
  66471. extra: 710/680,
  66472. bottom: 3/713
  66473. },
  66474. extraAttributes: {
  66475. "milkProduction": {
  66476. name: "Milk Production",
  66477. power: 3,
  66478. type: "volume",
  66479. base: math.unit(27000, "liters")
  66480. },
  66481. }
  66482. },
  66483. },
  66484. [
  66485. {
  66486. name: "Normal",
  66487. height: math.unit(200, "feet"),
  66488. default: true
  66489. },
  66490. ]
  66491. ))
  66492. characterMakers.push(() => makeCharacter(
  66493. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66494. {
  66495. front: {
  66496. height: math.unit(23, "feet"),
  66497. name: "Front",
  66498. image: {
  66499. source: "./media/characters/adelaide-spireborn/front.svg",
  66500. extra: 671/625,
  66501. bottom: 18/689
  66502. }
  66503. },
  66504. maw: {
  66505. height: math.unit(7.8, "feet"),
  66506. name: "Maw",
  66507. image: {
  66508. source: "./media/characters/adelaide-spireborn/maw.svg"
  66509. }
  66510. },
  66511. sword: {
  66512. height: math.unit(13.4, "feet"),
  66513. name: "Sword",
  66514. image: {
  66515. source: "./media/characters/adelaide-spireborn/sword.svg"
  66516. }
  66517. },
  66518. },
  66519. [
  66520. {
  66521. name: "Magically Induced",
  66522. height: math.unit(8.5, "feet")
  66523. },
  66524. {
  66525. name: "Normal",
  66526. height: math.unit(23, "feet"),
  66527. default: true
  66528. },
  66529. ]
  66530. ))
  66531. characterMakers.push(() => makeCharacter(
  66532. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66533. {
  66534. side: {
  66535. height: math.unit(8, "feet"),
  66536. name: "Side",
  66537. image: {
  66538. source: "./media/characters/artemus/side.svg",
  66539. extra: 800/397,
  66540. bottom: 83/883
  66541. }
  66542. },
  66543. front: {
  66544. height: math.unit(8, "feet"),
  66545. name: "Front",
  66546. image: {
  66547. source: "./media/characters/artemus/front.svg",
  66548. extra: 763/348,
  66549. bottom: 89/852
  66550. }
  66551. },
  66552. maw: {
  66553. height: math.unit(5.63, "feet"),
  66554. name: "Maw",
  66555. image: {
  66556. source: "./media/characters/artemus/maw.svg"
  66557. }
  66558. },
  66559. forepaw: {
  66560. height: math.unit(3.13, "feet"),
  66561. name: "Forepaw",
  66562. image: {
  66563. source: "./media/characters/artemus/forepaw.svg"
  66564. }
  66565. },
  66566. hindpaw: {
  66567. height: math.unit(4.85, "feet"),
  66568. name: "Hindpaw",
  66569. image: {
  66570. source: "./media/characters/artemus/hindpaw.svg"
  66571. }
  66572. },
  66573. },
  66574. [
  66575. {
  66576. name: "Normal",
  66577. height: math.unit(8, "feet"),
  66578. default: true
  66579. },
  66580. ]
  66581. ))
  66582. characterMakers.push(() => makeCharacter(
  66583. { name: "Flynn", species: ["cross-fox"], tags: ["anthro"] },
  66584. {
  66585. front: {
  66586. height: math.unit(4, "feet"),
  66587. name: "Front",
  66588. image: {
  66589. source: "./media/characters/flynn/front.svg",
  66590. extra: 427/404,
  66591. bottom: 14/441
  66592. },
  66593. extraAttributes: {
  66594. "tailLength": {
  66595. name: "Tail Length",
  66596. power: 1,
  66597. type: "length",
  66598. base: math.unit(2.7, "feet")
  66599. },
  66600. }
  66601. },
  66602. frontNsfw: {
  66603. height: math.unit(4, "feet"),
  66604. name: "Front NSFW",
  66605. image: {
  66606. source: "./media/characters/flynn/front-nsfw.svg",
  66607. extra: 427/404,
  66608. bottom: 14/441
  66609. },
  66610. extraAttributes: {
  66611. "tailLength": {
  66612. name: "Tail Length",
  66613. power: 1,
  66614. type: "length",
  66615. base: math.unit(2.7, "feet")
  66616. },
  66617. "dickLength": {
  66618. name: "Dick Length",
  66619. power: 1,
  66620. type: "length",
  66621. base: math.unit(0.7, "feet")
  66622. },
  66623. }
  66624. },
  66625. back: {
  66626. height: math.unit(4, "feet"),
  66627. name: "Back",
  66628. image: {
  66629. source: "./media/characters/flynn/back.svg",
  66630. extra: 420/400,
  66631. bottom: 12/432
  66632. },
  66633. extraAttributes: {
  66634. "tailLength": {
  66635. name: "Tail Length",
  66636. power: 1,
  66637. type: "length",
  66638. base: math.unit(2.7, "feet")
  66639. },
  66640. }
  66641. },
  66642. },
  66643. [
  66644. {
  66645. name: "Normal",
  66646. height: math.unit(4, "feet"),
  66647. default: true
  66648. },
  66649. ]
  66650. ))
  66651. characterMakers.push(() => makeCharacter(
  66652. { name: "Orun", species: ["sabertooth-tiger"], tags: ["anthro"] },
  66653. {
  66654. frontSfw: {
  66655. height: math.unit(1.9, "meters"),
  66656. name: "Front (SFW)",
  66657. image: {
  66658. source: "./media/characters/orun/front-sfw.svg",
  66659. extra: 1684/1625,
  66660. bottom: 64/1748
  66661. }
  66662. },
  66663. frontNsfw: {
  66664. height: math.unit(1.9, "meters"),
  66665. name: "Front (NSFW)",
  66666. image: {
  66667. source: "./media/characters/orun/front-nsfw.svg",
  66668. extra: 1684/1625,
  66669. bottom: 64/1748
  66670. }
  66671. },
  66672. frontErect: {
  66673. height: math.unit(1.9, "meters"),
  66674. name: "Front (Erect)",
  66675. image: {
  66676. source: "./media/characters/orun/front-erect.svg",
  66677. extra: 1684/1625,
  66678. bottom: 64/1748
  66679. }
  66680. },
  66681. },
  66682. [
  66683. {
  66684. name: "Normal",
  66685. height: math.unit(1.9, "meters"),
  66686. default: true
  66687. },
  66688. {
  66689. name: "Giant",
  66690. height: math.unit(45, "meters")
  66691. },
  66692. {
  66693. name: "Bigger Giant",
  66694. height: math.unit(155, "meters")
  66695. },
  66696. {
  66697. name: "Macro",
  66698. height: math.unit(550, "meters")
  66699. },
  66700. {
  66701. name: "Bigger Macro",
  66702. height: math.unit(1050, "meters")
  66703. },
  66704. {
  66705. name: "Titan",
  66706. height: math.unit(5, "km")
  66707. },
  66708. {
  66709. name: "Bigger Titan",
  66710. height: math.unit(15, "km")
  66711. },
  66712. ]
  66713. ))
  66714. characterMakers.push(() => makeCharacter(
  66715. { name: "Catherine Busch", species: ["arctic-fox"], tags: ["anthro"] },
  66716. {
  66717. clothed: {
  66718. height: math.unit(5 + 6/12, "feet"),
  66719. name: "Clothed",
  66720. image: {
  66721. source: "./media/characters/catherine-busch/clothed.svg",
  66722. extra: 1330/1273,
  66723. bottom: 45/1375
  66724. }
  66725. },
  66726. nude: {
  66727. height: math.unit(5 + 6/12, "feet"),
  66728. name: "Nude",
  66729. image: {
  66730. source: "./media/characters/catherine-busch/nude.svg",
  66731. extra: 1330/1273,
  66732. bottom: 45/1375
  66733. }
  66734. },
  66735. },
  66736. [
  66737. {
  66738. name: "Normal",
  66739. height: math.unit(5 + 6/12, "feet"),
  66740. default: true
  66741. },
  66742. {
  66743. name: "Maximum",
  66744. height: math.unit(1644, "feet")
  66745. },
  66746. ]
  66747. ))
  66748. characterMakers.push(() => makeCharacter(
  66749. { name: "Carter", species: ["cross-fox"], tags: ["anthro"] },
  66750. {
  66751. front: {
  66752. height: math.unit(5 + 4/12, "feet"),
  66753. weight: math.unit(160, "lb"),
  66754. name: "Front",
  66755. image: {
  66756. source: "./media/characters/carter/front.svg",
  66757. extra: 1007/940,
  66758. bottom: 37/1044
  66759. }
  66760. },
  66761. back: {
  66762. height: math.unit(5 + 4/12, "feet"),
  66763. weight: math.unit(160, "lb"),
  66764. name: "Back",
  66765. image: {
  66766. source: "./media/characters/carter/back.svg",
  66767. extra: 1010/941,
  66768. bottom: 25/1035
  66769. }
  66770. },
  66771. frontErect: {
  66772. height: math.unit(5 + 4/12, "feet"),
  66773. weight: math.unit(160, "lb"),
  66774. name: "Front (Erect)",
  66775. image: {
  66776. source: "./media/characters/carter/front-erect.svg",
  66777. extra: 1015/948,
  66778. bottom: 33/1048
  66779. }
  66780. },
  66781. },
  66782. [
  66783. {
  66784. name: "Normal",
  66785. height: math.unit(5 + 4/12, "feet"),
  66786. default: true
  66787. },
  66788. ]
  66789. ))
  66790. characterMakers.push(() => makeCharacter(
  66791. { name: "Yula", species: ["german-shepherd"], tags: ["anthro"] },
  66792. {
  66793. front: {
  66794. height: math.unit(90, "feet"),
  66795. name: "Front",
  66796. image: {
  66797. source: "./media/characters/yula/front.svg",
  66798. extra: 686/641,
  66799. bottom: 5/691
  66800. }
  66801. },
  66802. },
  66803. [
  66804. {
  66805. name: "Normal",
  66806. height: math.unit(90, "feet"),
  66807. default: true
  66808. },
  66809. ]
  66810. ))
  66811. characterMakers.push(() => makeCharacter(
  66812. { name: "Thomas Bakes", species: ["dutch-angel-dragon"], tags: ["anthro"] },
  66813. {
  66814. front: {
  66815. height: math.unit(2.16, "meters"),
  66816. weight: math.unit(275, "kg"),
  66817. name: "Front",
  66818. image: {
  66819. source: "./media/characters/thomas-bakes/front.svg",
  66820. extra: 333/283,
  66821. bottom: 46/379
  66822. },
  66823. extraAttributes: {
  66824. "pawLength": {
  66825. name: "Paw Length",
  66826. power: 1,
  66827. type: "length",
  66828. base: math.unit(35, "cm")
  66829. },
  66830. "pawWidth": {
  66831. name: "Paw Width",
  66832. power: 1,
  66833. type: "length",
  66834. base: math.unit(30, "cm")
  66835. },
  66836. "handLength": {
  66837. name: "Hand Length",
  66838. power: 1,
  66839. type: "length",
  66840. base: math.unit(30, "cm")
  66841. },
  66842. "handWidth": {
  66843. name: "Hand Width",
  66844. power: 1,
  66845. type: "length",
  66846. base: math.unit(25, "cm")
  66847. },
  66848. "preyCapacity": {
  66849. name: "Prey Capacity",
  66850. power: 3,
  66851. type: "volume",
  66852. base: math.unit(40*20*20, "cm^3")
  66853. },
  66854. "swallowSize": {
  66855. name: "Swallow Size",
  66856. power: 1,
  66857. type: "length",
  66858. base: math.unit(13, "cm")
  66859. },
  66860. "energyIntake": {
  66861. name: "Food Intake",
  66862. power: 3,
  66863. type: "energy",
  66864. base: math.unit(3250, "kcal")
  66865. },
  66866. "wingspan": {
  66867. name: "Wingspan",
  66868. power: 1,
  66869. type: "length",
  66870. base: math.unit(3.7, "meters")
  66871. },
  66872. "wingWidth": {
  66873. name: "Wing Width",
  66874. power: 1,
  66875. type: "length",
  66876. base: math.unit(1.7, "meters")
  66877. },
  66878. }
  66879. },
  66880. },
  66881. [
  66882. {
  66883. name: "Normal",
  66884. height: math.unit(2.16, "meters"),
  66885. default: true
  66886. },
  66887. ]
  66888. ))
  66889. characterMakers.push(() => makeCharacter(
  66890. { name: "Rekka", species: ["kaiju", "hyena"], tags: ["anthro"] },
  66891. {
  66892. front: {
  66893. height: math.unit(8 + 6/12, "feet"),
  66894. weight: math.unit(600, "lb"),
  66895. name: "Front",
  66896. image: {
  66897. source: "./media/characters/rekka/front.svg",
  66898. extra: 1814/1672,
  66899. bottom: 92/1906
  66900. }
  66901. },
  66902. back: {
  66903. height: math.unit(8 + 6/12, "feet"),
  66904. weight: math.unit(600, "lb"),
  66905. name: "Back",
  66906. image: {
  66907. source: "./media/characters/rekka/back.svg",
  66908. extra: 1795/1682,
  66909. bottom: 86/1881
  66910. }
  66911. },
  66912. },
  66913. [
  66914. {
  66915. name: "Normal",
  66916. height: math.unit(8 + 6/12, "feet"),
  66917. default: true
  66918. },
  66919. {
  66920. name: "Category 1",
  66921. height: math.unit(30, "feet")
  66922. },
  66923. {
  66924. name: "Category 2",
  66925. height: math.unit(150, "feet")
  66926. },
  66927. {
  66928. name: "Category 3",
  66929. height: math.unit(300, "feet")
  66930. },
  66931. {
  66932. name: "Category 4",
  66933. height: math.unit(550, "feet")
  66934. },
  66935. ]
  66936. ))
  66937. characterMakers.push(() => makeCharacter(
  66938. { name: "Zeke", species: ["german-shepherd"], tags: ["anthro"] },
  66939. {
  66940. front: {
  66941. height: math.unit(5 + 8/12, "feet"),
  66942. weight: math.unit(180, "lb"),
  66943. name: "Front",
  66944. image: {
  66945. source: "./media/characters/zeke/front.svg",
  66946. extra: 452/417,
  66947. bottom: 21/473
  66948. }
  66949. },
  66950. back: {
  66951. height: math.unit(5 + 8/12, "feet"),
  66952. weight: math.unit(180, "lb"),
  66953. name: "Back",
  66954. image: {
  66955. source: "./media/characters/zeke/back.svg",
  66956. extra: 473/444,
  66957. bottom: 8/481
  66958. }
  66959. },
  66960. frontNsfw: {
  66961. height: math.unit(5 + 8/12, "feet"),
  66962. weight: math.unit(180, "lb"),
  66963. name: "Front (NSFW)",
  66964. image: {
  66965. source: "./media/characters/zeke/front-nsfw.svg",
  66966. extra: 452/417,
  66967. bottom: 21/473
  66968. }
  66969. },
  66970. backNsfw: {
  66971. height: math.unit(5 + 8/12, "feet"),
  66972. weight: math.unit(180, "lb"),
  66973. name: "Back (NSFW)",
  66974. image: {
  66975. source: "./media/characters/zeke/back-nsfw.svg",
  66976. extra: 473/444,
  66977. bottom: 8/481
  66978. }
  66979. },
  66980. frontErect: {
  66981. height: math.unit(5 + 8/12, "feet"),
  66982. weight: math.unit(180, "lb"),
  66983. name: "Front (Erect)",
  66984. image: {
  66985. source: "./media/characters/zeke/front-erect.svg",
  66986. extra: 452/417,
  66987. bottom: 21/473
  66988. }
  66989. },
  66990. },
  66991. [
  66992. {
  66993. name: "Normal",
  66994. height: math.unit(5 + 8/12, "feet"),
  66995. default: true
  66996. },
  66997. {
  66998. name: "Kaiju",
  66999. height: math.unit((5 + 8/12) * 54.6087, "feet")
  67000. },
  67001. {
  67002. name: "Pez Humans",
  67003. height: math.unit((5 + 8/12) * 121.92, "feet")
  67004. },
  67005. {
  67006. name: "Pez Buses",
  67007. height: math.unit((5 + 8/12) * 796.67, "feet")
  67008. },
  67009. {
  67010. name: "Pez Planes",
  67011. height: math.unit((5 + 8/12) * 5086.6, "feet")
  67012. },
  67013. {
  67014. name: "Pez Khalifa",
  67015. height: math.unit((5 + 8/12) * 55320, "feet")
  67016. },
  67017. ]
  67018. ))
  67019. characterMakers.push(() => makeCharacter(
  67020. { name: "Adalwen", species: ["german-shepherd"], tags: ["anthro"] },
  67021. {
  67022. frontSfw: {
  67023. height: math.unit(2.2, "meters"),
  67024. name: "Front (SFW)",
  67025. image: {
  67026. source: "./media/characters/adalwen/front-sfw.svg",
  67027. extra: 1654/1574,
  67028. bottom: 107/1761
  67029. }
  67030. },
  67031. frontNsfw: {
  67032. height: math.unit(2.2, "meters"),
  67033. name: "Front (NSFW)",
  67034. image: {
  67035. source: "./media/characters/adalwen/front-nsfw.svg",
  67036. extra: 1654/1574,
  67037. bottom: 107/1761
  67038. }
  67039. },
  67040. frontErect: {
  67041. height: math.unit(2.2, "meters"),
  67042. name: "Front (Erect)",
  67043. image: {
  67044. source: "./media/characters/adalwen/front-erect.svg",
  67045. extra: 1654/1574,
  67046. bottom: 107/1761
  67047. }
  67048. },
  67049. },
  67050. [
  67051. {
  67052. name: "Normal",
  67053. height: math.unit(2.2, "meters"),
  67054. default: true
  67055. },
  67056. {
  67057. name: "Giant",
  67058. height: math.unit(55, "meters")
  67059. },
  67060. {
  67061. name: "Bigger Giant",
  67062. height: math.unit(200, "meters")
  67063. },
  67064. {
  67065. name: "Macro",
  67066. height: math.unit(650, "meters")
  67067. },
  67068. {
  67069. name: "Bigger Macro",
  67070. height: math.unit(1300, "meters")
  67071. },
  67072. {
  67073. name: "Titan",
  67074. height: math.unit(5500, "meters")
  67075. },
  67076. {
  67077. name: "Titan 2",
  67078. height: math.unit(17, "km")
  67079. },
  67080. {
  67081. name: "Titan 3",
  67082. height: math.unit(125, "km")
  67083. },
  67084. {
  67085. name: "Titan 4",
  67086. height: math.unit(1500, "km")
  67087. },
  67088. {
  67089. name: "Titan 5",
  67090. height: math.unit(55000, "km")
  67091. },
  67092. ]
  67093. ))
  67094. characterMakers.push(() => makeCharacter(
  67095. { name: "Alexio", species: ["lemur"], tags: ["anthro"] },
  67096. {
  67097. front: {
  67098. height: math.unit(1.91, "meters"),
  67099. weight: math.unit(76, "kg"),
  67100. name: "Front",
  67101. image: {
  67102. source: "./media/characters/alexio/front.svg",
  67103. extra: 1440/1376,
  67104. bottom: 141/1581
  67105. }
  67106. },
  67107. back: {
  67108. height: math.unit(1.91, "meters"),
  67109. weight: math.unit(76, "kg"),
  67110. name: "Back",
  67111. image: {
  67112. source: "./media/characters/alexio/back.svg",
  67113. extra: 1448/1388,
  67114. bottom: 57/1505
  67115. }
  67116. },
  67117. head: {
  67118. height: math.unit(1.17, "feet"),
  67119. name: "Head",
  67120. image: {
  67121. source: "./media/characters/alexio/head.svg"
  67122. }
  67123. },
  67124. maw: {
  67125. height: math.unit(0.6, "feet"),
  67126. name: "Maw",
  67127. image: {
  67128. source: "./media/characters/alexio/maw.svg"
  67129. }
  67130. },
  67131. feet: {
  67132. height: math.unit(1.34, "feet"),
  67133. name: "Feet",
  67134. image: {
  67135. source: "./media/characters/alexio/feet.svg"
  67136. }
  67137. },
  67138. genitals: {
  67139. height: math.unit(1.03, "feet"),
  67140. name: "Genitals",
  67141. image: {
  67142. source: "./media/characters/alexio/genitals.svg"
  67143. }
  67144. },
  67145. },
  67146. [
  67147. {
  67148. name: "Normal",
  67149. height: math.unit(1.91, "meters"),
  67150. default: true
  67151. },
  67152. {
  67153. name: "Minimacro",
  67154. height: math.unit(191, "meters")
  67155. },
  67156. {
  67157. name: "Macro",
  67158. height: math.unit(477.5, "meters")
  67159. },
  67160. {
  67161. name: "Mega Macro",
  67162. height: math.unit(1432.5, "meters")
  67163. },
  67164. ]
  67165. ))
  67166. characterMakers.push(() => makeCharacter(
  67167. { name: "Quake Lee", species: ["red-fox"], tags: ["anthro"] },
  67168. {
  67169. front: {
  67170. height: math.unit(5 + 2/12, "feet"),
  67171. weight: math.unit(110, "lb"),
  67172. name: "Front",
  67173. image: {
  67174. source: "./media/characters/quake-lee/front.svg",
  67175. extra: 1376/1295,
  67176. bottom: 69/1445
  67177. }
  67178. },
  67179. paw: {
  67180. height: math.unit(0.786, "feet"),
  67181. name: "Paw",
  67182. image: {
  67183. source: "./media/characters/quake-lee/paw.svg"
  67184. }
  67185. },
  67186. },
  67187. [
  67188. {
  67189. name: "Avey",
  67190. height: math.unit(5 + 2/12, "feet"),
  67191. default: true
  67192. },
  67193. {
  67194. name: "Macro",
  67195. height: math.unit(146, "feet")
  67196. },
  67197. {
  67198. name: "Mega",
  67199. height: math.unit(7, "miles")
  67200. },
  67201. {
  67202. name: "Ultra",
  67203. height: math.unit(1.6, "gigameters")
  67204. },
  67205. ]
  67206. ))
  67207. characterMakers.push(() => makeCharacter(
  67208. { name: "Wolf", species: ["wolf"], tags: ["feral"] },
  67209. {
  67210. side: {
  67211. height: math.unit(40, "inches"),
  67212. weight: math.unit(200, "lb"),
  67213. preyCapacity: math.unit(2, "people"),
  67214. name: "Side",
  67215. image: {
  67216. source: "./media/characters/wolf/side.svg",
  67217. extra: 432/345,
  67218. bottom: 15/447
  67219. }
  67220. },
  67221. front: {
  67222. height: math.unit(40, "inches"),
  67223. weight: math.unit(200, "lb"),
  67224. preyCapacity: math.unit(2, "people"),
  67225. name: "Front",
  67226. image: {
  67227. source: "./media/characters/wolf/front.svg",
  67228. extra: 803/467,
  67229. bottom: 97/900
  67230. }
  67231. },
  67232. },
  67233. [
  67234. {
  67235. name: "Small",
  67236. height: math.unit(40, "inches"),
  67237. default: true
  67238. },
  67239. {
  67240. name: "Medium",
  67241. height: math.unit(60, "inches")
  67242. },
  67243. {
  67244. name: "Large",
  67245. height: math.unit(110, "inches")
  67246. },
  67247. ]
  67248. ))
  67249. characterMakers.push(() => makeCharacter(
  67250. { name: "Cherry Spark", species: ["cheetah", "deity"], tags: ["feral"] },
  67251. {
  67252. sphinx_side: {
  67253. height: math.unit(64.7, "feet"),
  67254. weight: math.unit(150265, "lb"),
  67255. name: "Side",
  67256. image: {
  67257. source: "./media/characters/cherry-spark/sphinx-side.svg",
  67258. extra: 410/299,
  67259. bottom: 7/417
  67260. },
  67261. form: "sphinx",
  67262. default: true
  67263. },
  67264. sphinx_cooch: {
  67265. height: math.unit(57, "feet"),
  67266. name: "Cooch",
  67267. image: {
  67268. source: "./media/characters/cherry-spark/sphinx-cooch.svg"
  67269. },
  67270. form: "sphinx",
  67271. },
  67272. },
  67273. [
  67274. {
  67275. name: "Macro",
  67276. height: math.unit(64.7, "feet"),
  67277. default: true,
  67278. form: "sphinx"
  67279. },
  67280. ],
  67281. {
  67282. "sphinx": {
  67283. name: "Sphinx",
  67284. default: true
  67285. },
  67286. }
  67287. ))
  67288. characterMakers.push(() => makeCharacter(
  67289. { name: "Jaanada Palzathan", species: ["dragon"], tags: ["anthro"] },
  67290. {
  67291. front: {
  67292. height: math.unit(100, "meters"),
  67293. weight: math.unit(12700, "tonnes"),
  67294. name: "Front",
  67295. image: {
  67296. source: "./media/characters/jaanada-palzathan/front.svg",
  67297. extra: 691/652,
  67298. bottom: 13/704
  67299. }
  67300. },
  67301. },
  67302. [
  67303. {
  67304. name: "Giant 1",
  67305. height: math.unit(2.62, "meters")
  67306. },
  67307. {
  67308. name: "Giant 2",
  67309. height: math.unit(4.14, "meters")
  67310. },
  67311. {
  67312. name: "Macro 1",
  67313. height: math.unit(38.4, "meters")
  67314. },
  67315. {
  67316. name: "Macro 2",
  67317. height: math.unit(100, "meters"),
  67318. default: true
  67319. },
  67320. {
  67321. name: "Macro 3",
  67322. height: math.unit(1800, "meters")
  67323. },
  67324. ]
  67325. ))
  67326. //characters
  67327. function makeCharacters() {
  67328. const results = [];
  67329. characterMakers.forEach(character => {
  67330. results.push(character());
  67331. });
  67332. return results;
  67333. }