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.
 
 
 

66843 line
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. }
  2443. //species
  2444. function getSpeciesInfo(speciesList) {
  2445. let result = new Set();
  2446. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2447. result.add(entry)
  2448. });
  2449. return Array.from(result);
  2450. };
  2451. function getSpeciesInfoHelper(species) {
  2452. if (!speciesData[species]) {
  2453. console.warn(species + " doesn't exist");
  2454. return [];
  2455. }
  2456. if (speciesData[species].parents) {
  2457. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2458. } else {
  2459. return [species];
  2460. }
  2461. }
  2462. characterMakers.push(() => makeCharacter(
  2463. {
  2464. name: "Fen",
  2465. species: ["crux"],
  2466. description: {
  2467. title: "Bio",
  2468. text: "Very furry. Sheds on everything."
  2469. },
  2470. tags: [
  2471. "anthro",
  2472. "goo"
  2473. ]
  2474. },
  2475. {
  2476. front: {
  2477. height: math.unit(12, "feet"),
  2478. weight: math.unit(2400, "lb"),
  2479. preyCapacity: math.unit(1, "people"),
  2480. name: "Front",
  2481. image: {
  2482. source: "./media/characters/fen/front.svg",
  2483. extra: 1804/1562,
  2484. bottom: 205/2009
  2485. },
  2486. extraAttributes: {
  2487. pawSize: {
  2488. name: "Paw Size",
  2489. power: 2,
  2490. type: "area",
  2491. base: math.unit(0.35, "m^2")
  2492. }
  2493. }
  2494. },
  2495. diving: {
  2496. height: math.unit(4.9, "meters"),
  2497. weight: math.unit(2400, "lb"),
  2498. name: "Diving",
  2499. image: {
  2500. source: "./media/characters/fen/diving.svg"
  2501. }
  2502. },
  2503. sleeby: {
  2504. height: math.unit(3.45, "meters"),
  2505. weight: math.unit(2400, "lb"),
  2506. name: "Sleeby",
  2507. image: {
  2508. source: "./media/characters/fen/sleeby.svg"
  2509. }
  2510. },
  2511. goo: {
  2512. height: math.unit(12, "feet"),
  2513. weight: math.unit(3600, "lb"),
  2514. volume: math.unit(1000, "liters"),
  2515. preyCapacity: math.unit(6, "people"),
  2516. name: "Goo",
  2517. image: {
  2518. source: "./media/characters/fen/goo.svg",
  2519. extra: 1307/1071,
  2520. bottom: 134/1441
  2521. }
  2522. },
  2523. horror: {
  2524. height: math.unit(13.6, "feet"),
  2525. weight: math.unit(2400, "lb"),
  2526. preyCapacity: math.unit(1, "people"),
  2527. name: "Horror",
  2528. image: {
  2529. source: "./media/characters/fen/horror.svg",
  2530. extra: 893/797,
  2531. bottom: 0/893
  2532. }
  2533. },
  2534. gooNsfw: {
  2535. height: math.unit(12, "feet"),
  2536. weight: math.unit(3750, "lb"),
  2537. volume: math.unit(1000, "liters"),
  2538. preyCapacity: math.unit(6, "people"),
  2539. name: "Goo (NSFW)",
  2540. image: {
  2541. source: "./media/characters/fen/goo-nsfw.svg",
  2542. extra: 1875/1734,
  2543. bottom: 122/1997
  2544. }
  2545. },
  2546. maw: {
  2547. height: math.unit(5.03, "feet"),
  2548. name: "Maw",
  2549. image: {
  2550. source: "./media/characters/fen/maw.svg"
  2551. }
  2552. },
  2553. gooCeiling: {
  2554. height: math.unit(6.6, "feet"),
  2555. weight: math.unit(3000, "lb"),
  2556. volume: math.unit(1000, "liters"),
  2557. preyCapacity: math.unit(6, "people"),
  2558. name: "Maw (Goo)",
  2559. image: {
  2560. source: "./media/characters/fen/goo-maw.svg"
  2561. }
  2562. },
  2563. paw: {
  2564. height: math.unit(3.77, "feet"),
  2565. name: "Paw",
  2566. image: {
  2567. source: "./media/characters/fen/paw.svg"
  2568. },
  2569. extraAttributes: {
  2570. "toeSize": {
  2571. name: "Toe Size",
  2572. power: 2,
  2573. type: "area",
  2574. base: math.unit(0.02875, "m^2")
  2575. },
  2576. "pawSize": {
  2577. name: "Paw Size",
  2578. power: 2,
  2579. type: "area",
  2580. base: math.unit(0.378, "m^2")
  2581. },
  2582. }
  2583. },
  2584. tail: {
  2585. height: math.unit(12.1, "feet"),
  2586. name: "Tail",
  2587. image: {
  2588. source: "./media/characters/fen/tail.svg"
  2589. }
  2590. },
  2591. tailFull: {
  2592. height: math.unit(12.1, "feet"),
  2593. name: "Full Tail",
  2594. image: {
  2595. source: "./media/characters/fen/tail-full.svg"
  2596. }
  2597. },
  2598. back: {
  2599. height: math.unit(12, "feet"),
  2600. weight: math.unit(2400, "lb"),
  2601. name: "Back",
  2602. image: {
  2603. source: "./media/characters/fen/back.svg",
  2604. },
  2605. info: {
  2606. description: {
  2607. mode: "append",
  2608. text: "\n\nHe is not currently looking at you."
  2609. }
  2610. }
  2611. },
  2612. full: {
  2613. height: math.unit(1.85, "meter"),
  2614. weight: math.unit(3200, "lb"),
  2615. preyCapacity: math.unit(3, "people"),
  2616. name: "Full",
  2617. image: {
  2618. source: "./media/characters/fen/full.svg",
  2619. extra: 1133/859,
  2620. bottom: 145/1278
  2621. },
  2622. info: {
  2623. description: {
  2624. mode: "append",
  2625. text: "\n\nMunch."
  2626. }
  2627. }
  2628. },
  2629. gooLounging: {
  2630. height: math.unit(4.53, "feet"),
  2631. weight: math.unit(3000, "lb"),
  2632. preyCapacity: math.unit(6, "people"),
  2633. name: "Goo (Lounging)",
  2634. image: {
  2635. source: "./media/characters/fen/goo-lounging.svg",
  2636. bottom: 116 / 613
  2637. }
  2638. },
  2639. lounging: {
  2640. height: math.unit(10.52, "feet"),
  2641. weight: math.unit(2400, "lb"),
  2642. name: "Lounging",
  2643. image: {
  2644. source: "./media/characters/fen/lounging.svg"
  2645. }
  2646. },
  2647. },
  2648. [
  2649. {
  2650. name: "Small",
  2651. height: math.unit(2.2428, "meter")
  2652. },
  2653. {
  2654. name: "Normal",
  2655. height: math.unit(12, "feet"),
  2656. default: true,
  2657. },
  2658. {
  2659. name: "Big",
  2660. height: math.unit(20, "feet")
  2661. },
  2662. {
  2663. name: "Minimacro",
  2664. height: math.unit(40, "feet"),
  2665. info: {
  2666. description: {
  2667. mode: "append",
  2668. text: "\n\nTOO DAMN BIG"
  2669. }
  2670. }
  2671. },
  2672. {
  2673. name: "Macro",
  2674. height: math.unit(100, "feet"),
  2675. info: {
  2676. description: {
  2677. mode: "append",
  2678. text: "\n\nTOO DAMN BIG"
  2679. }
  2680. }
  2681. },
  2682. {
  2683. name: "Megamacro",
  2684. height: math.unit(2, "miles")
  2685. },
  2686. {
  2687. name: "Gigamacro",
  2688. height: math.unit(10, "earths")
  2689. },
  2690. ]
  2691. ))
  2692. characterMakers.push(() => makeCharacter(
  2693. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2694. {
  2695. front: {
  2696. height: math.unit(183, "cm"),
  2697. weight: math.unit(80, "kg"),
  2698. name: "Front",
  2699. image: {
  2700. source: "./media/characters/sofia-fluttertail/front.svg",
  2701. bottom: 0.01,
  2702. extra: 2154 / 2081
  2703. }
  2704. },
  2705. frontAlt: {
  2706. height: math.unit(183, "cm"),
  2707. weight: math.unit(80, "kg"),
  2708. name: "Front (alt)",
  2709. image: {
  2710. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2711. }
  2712. },
  2713. back: {
  2714. height: math.unit(183, "cm"),
  2715. weight: math.unit(80, "kg"),
  2716. name: "Back",
  2717. image: {
  2718. source: "./media/characters/sofia-fluttertail/back.svg"
  2719. }
  2720. },
  2721. kneeling: {
  2722. height: math.unit(125, "cm"),
  2723. weight: math.unit(80, "kg"),
  2724. name: "Kneeling",
  2725. image: {
  2726. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2727. extra: 1033 / 977,
  2728. bottom: 23.7 / 1057
  2729. }
  2730. },
  2731. maw: {
  2732. height: math.unit(183 / 5, "cm"),
  2733. name: "Maw",
  2734. image: {
  2735. source: "./media/characters/sofia-fluttertail/maw.svg"
  2736. }
  2737. },
  2738. mawcloseup: {
  2739. height: math.unit(183 / 5 * 0.41, "cm"),
  2740. name: "Maw (Closeup)",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2743. }
  2744. },
  2745. paws: {
  2746. height: math.unit(1.17, "feet"),
  2747. name: "Paws",
  2748. image: {
  2749. source: "./media/characters/sofia-fluttertail/paws.svg",
  2750. extra: 851 / 851,
  2751. bottom: 17 / 868
  2752. }
  2753. },
  2754. },
  2755. [
  2756. {
  2757. name: "Normal",
  2758. height: math.unit(1.83, "meter")
  2759. },
  2760. {
  2761. name: "Size Thief",
  2762. height: math.unit(18, "feet")
  2763. },
  2764. {
  2765. name: "50 Foot Collie",
  2766. height: math.unit(50, "feet")
  2767. },
  2768. {
  2769. name: "Macro",
  2770. height: math.unit(96, "feet"),
  2771. default: true
  2772. },
  2773. {
  2774. name: "Megamerger",
  2775. height: math.unit(650, "feet")
  2776. },
  2777. ]
  2778. ))
  2779. characterMakers.push(() => makeCharacter(
  2780. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2781. {
  2782. front: {
  2783. height: math.unit(7, "feet"),
  2784. weight: math.unit(100, "kg"),
  2785. name: "Front",
  2786. image: {
  2787. source: "./media/characters/march/front.svg",
  2788. extra: 1992/1851,
  2789. bottom: 39/2031
  2790. }
  2791. },
  2792. foot: {
  2793. height: math.unit(0.9, "feet"),
  2794. name: "Foot",
  2795. image: {
  2796. source: "./media/characters/march/foot.svg"
  2797. }
  2798. },
  2799. },
  2800. [
  2801. {
  2802. name: "Normal",
  2803. height: math.unit(7.9, "feet")
  2804. },
  2805. {
  2806. name: "Macro",
  2807. height: math.unit(220, "meters")
  2808. },
  2809. {
  2810. name: "Megamacro",
  2811. height: math.unit(2.98, "km"),
  2812. default: true
  2813. },
  2814. {
  2815. name: "Gigamacro",
  2816. height: math.unit(15963, "km")
  2817. },
  2818. {
  2819. name: "Teramacro",
  2820. height: math.unit(2980000000, "km")
  2821. },
  2822. {
  2823. name: "Examacro",
  2824. height: math.unit(250, "parsecs")
  2825. },
  2826. ]
  2827. ))
  2828. characterMakers.push(() => makeCharacter(
  2829. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2830. {
  2831. front: {
  2832. height: math.unit(6, "feet"),
  2833. weight: math.unit(60, "kg"),
  2834. name: "Front",
  2835. image: {
  2836. source: "./media/characters/noir/front.svg",
  2837. extra: 1,
  2838. bottom: 0.032
  2839. }
  2840. },
  2841. },
  2842. [
  2843. {
  2844. name: "Normal",
  2845. height: math.unit(6.6, "feet")
  2846. },
  2847. {
  2848. name: "Macro",
  2849. height: math.unit(500, "feet")
  2850. },
  2851. {
  2852. name: "Megamacro",
  2853. height: math.unit(2.5, "km"),
  2854. default: true
  2855. },
  2856. {
  2857. name: "Gigamacro",
  2858. height: math.unit(22500, "km")
  2859. },
  2860. {
  2861. name: "Teramacro",
  2862. height: math.unit(2500000000, "km")
  2863. },
  2864. {
  2865. name: "Examacro",
  2866. height: math.unit(200, "parsecs")
  2867. },
  2868. ]
  2869. ))
  2870. characterMakers.push(() => makeCharacter(
  2871. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2872. {
  2873. front: {
  2874. height: math.unit(7, "feet"),
  2875. weight: math.unit(100, "kg"),
  2876. name: "Front",
  2877. image: {
  2878. source: "./media/characters/okuri/front.svg",
  2879. extra: 739/665,
  2880. bottom: 39/778
  2881. }
  2882. },
  2883. back: {
  2884. height: math.unit(7, "feet"),
  2885. weight: math.unit(100, "kg"),
  2886. name: "Back",
  2887. image: {
  2888. source: "./media/characters/okuri/back.svg",
  2889. extra: 734/653,
  2890. bottom: 13/747
  2891. }
  2892. },
  2893. sitting: {
  2894. height: math.unit(2.95, "feet"),
  2895. weight: math.unit(100, "kg"),
  2896. name: "Sitting",
  2897. image: {
  2898. source: "./media/characters/okuri/sitting.svg",
  2899. extra: 370/318,
  2900. bottom: 99/469
  2901. }
  2902. },
  2903. },
  2904. [
  2905. {
  2906. name: "Smallest",
  2907. height: math.unit(5 + 2/12, "feet")
  2908. },
  2909. {
  2910. name: "Smaller",
  2911. height: math.unit(300, "feet")
  2912. },
  2913. {
  2914. name: "Small",
  2915. height: math.unit(1000, "feet")
  2916. },
  2917. {
  2918. name: "Macro",
  2919. height: math.unit(1, "mile")
  2920. },
  2921. {
  2922. name: "Mega Macro (Small)",
  2923. height: math.unit(20, "km")
  2924. },
  2925. {
  2926. name: "Mega Macro (Large)",
  2927. height: math.unit(600, "km")
  2928. },
  2929. {
  2930. name: "Giga Macro",
  2931. height: math.unit(10000, "km")
  2932. },
  2933. {
  2934. name: "Normal",
  2935. height: math.unit(577560, "km"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Large",
  2940. height: math.unit(4, "galaxies")
  2941. },
  2942. {
  2943. name: "Largest",
  2944. height: math.unit(15, "multiverses")
  2945. },
  2946. ]
  2947. ))
  2948. characterMakers.push(() => makeCharacter(
  2949. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2950. {
  2951. front: {
  2952. height: math.unit(7, "feet"),
  2953. weight: math.unit(100, "kg"),
  2954. name: "Front",
  2955. image: {
  2956. source: "./media/characters/manny/front.svg",
  2957. extra: 1,
  2958. bottom: 0.06
  2959. }
  2960. },
  2961. back: {
  2962. height: math.unit(7, "feet"),
  2963. weight: math.unit(100, "kg"),
  2964. name: "Back",
  2965. image: {
  2966. source: "./media/characters/manny/back.svg",
  2967. extra: 1,
  2968. bottom: 0.014
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(7, "feet"),
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(78, "feet"),
  2980. default: true
  2981. },
  2982. {
  2983. name: "Macro+",
  2984. height: math.unit(300, "meters")
  2985. },
  2986. {
  2987. name: "Macro++",
  2988. height: math.unit(2400, "meters")
  2989. },
  2990. {
  2991. name: "Megamacro",
  2992. height: math.unit(5167, "meters")
  2993. },
  2994. {
  2995. name: "Gigamacro",
  2996. height: math.unit(41769, "miles")
  2997. },
  2998. ]
  2999. ))
  3000. characterMakers.push(() => makeCharacter(
  3001. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3002. {
  3003. front: {
  3004. height: math.unit(7, "feet"),
  3005. weight: math.unit(100, "kg"),
  3006. name: "Front",
  3007. image: {
  3008. source: "./media/characters/adake/front-1.svg"
  3009. }
  3010. },
  3011. frontAlt: {
  3012. height: math.unit(7, "feet"),
  3013. weight: math.unit(100, "kg"),
  3014. name: "Front (Alt)",
  3015. image: {
  3016. source: "./media/characters/adake/front-2.svg",
  3017. extra: 1,
  3018. bottom: 0.01
  3019. }
  3020. },
  3021. back: {
  3022. height: math.unit(7, "feet"),
  3023. weight: math.unit(100, "kg"),
  3024. name: "Back",
  3025. image: {
  3026. source: "./media/characters/adake/back.svg",
  3027. }
  3028. },
  3029. kneel: {
  3030. height: math.unit(5.385, "feet"),
  3031. weight: math.unit(100, "kg"),
  3032. name: "Kneeling",
  3033. image: {
  3034. source: "./media/characters/adake/kneel.svg",
  3035. bottom: 0.052
  3036. }
  3037. },
  3038. },
  3039. [
  3040. {
  3041. name: "Normal",
  3042. height: math.unit(7, "feet"),
  3043. },
  3044. {
  3045. name: "Macro",
  3046. height: math.unit(78, "feet"),
  3047. default: true
  3048. },
  3049. {
  3050. name: "Macro+",
  3051. height: math.unit(300, "meters")
  3052. },
  3053. {
  3054. name: "Macro++",
  3055. height: math.unit(2400, "meters")
  3056. },
  3057. {
  3058. name: "Megamacro",
  3059. height: math.unit(5167, "meters")
  3060. },
  3061. {
  3062. name: "Gigamacro",
  3063. height: math.unit(41769, "miles")
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3069. {
  3070. front: {
  3071. height: math.unit(1.65, "meters"),
  3072. weight: math.unit(50, "kg"),
  3073. name: "Front",
  3074. image: {
  3075. source: "./media/characters/elijah/front.svg",
  3076. extra: 858 / 830,
  3077. bottom: 95.5 / 953.8559
  3078. }
  3079. },
  3080. back: {
  3081. height: math.unit(1.65, "meters"),
  3082. weight: math.unit(50, "kg"),
  3083. name: "Back",
  3084. image: {
  3085. source: "./media/characters/elijah/back.svg",
  3086. extra: 895 / 850,
  3087. bottom: 5.3 / 897.956
  3088. }
  3089. },
  3090. frontNsfw: {
  3091. height: math.unit(1.65, "meters"),
  3092. weight: math.unit(50, "kg"),
  3093. name: "Front (NSFW)",
  3094. image: {
  3095. source: "./media/characters/elijah/front-nsfw.svg",
  3096. extra: 858 / 830,
  3097. bottom: 95.5 / 953.8559
  3098. }
  3099. },
  3100. backNsfw: {
  3101. height: math.unit(1.65, "meters"),
  3102. weight: math.unit(50, "kg"),
  3103. name: "Back (NSFW)",
  3104. image: {
  3105. source: "./media/characters/elijah/back-nsfw.svg",
  3106. extra: 895 / 850,
  3107. bottom: 5.3 / 897.956
  3108. }
  3109. },
  3110. dick: {
  3111. height: math.unit(1, "feet"),
  3112. name: "Dick",
  3113. image: {
  3114. source: "./media/characters/elijah/dick.svg"
  3115. }
  3116. },
  3117. beakOpen: {
  3118. height: math.unit(1.25, "feet"),
  3119. name: "Beak (Open)",
  3120. image: {
  3121. source: "./media/characters/elijah/beak-open.svg"
  3122. }
  3123. },
  3124. beakShut: {
  3125. height: math.unit(1.25, "feet"),
  3126. name: "Beak (Shut)",
  3127. image: {
  3128. source: "./media/characters/elijah/beak-shut.svg"
  3129. }
  3130. },
  3131. footFlexing: {
  3132. height: math.unit(1.61, "feet"),
  3133. name: "Foot (Flexing)",
  3134. image: {
  3135. source: "./media/characters/elijah/foot-flexing.svg"
  3136. }
  3137. },
  3138. footStepping: {
  3139. height: math.unit(1.44, "feet"),
  3140. name: "Foot (Stepping)",
  3141. image: {
  3142. source: "./media/characters/elijah/foot-stepping.svg"
  3143. }
  3144. },
  3145. plantigradeLeg: {
  3146. height: math.unit(2.34, "feet"),
  3147. name: "Plantigrade Leg",
  3148. image: {
  3149. source: "./media/characters/elijah/plantigrade-leg.svg"
  3150. }
  3151. },
  3152. plantigradeFootLeft: {
  3153. height: math.unit(0.9, "feet"),
  3154. name: "Plantigrade Foot (Left)",
  3155. image: {
  3156. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3157. }
  3158. },
  3159. plantigradeFootRight: {
  3160. height: math.unit(0.9, "feet"),
  3161. name: "Plantigrade Foot (Right)",
  3162. image: {
  3163. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3164. }
  3165. },
  3166. },
  3167. [
  3168. {
  3169. name: "Normal",
  3170. height: math.unit(1.65, "meters")
  3171. },
  3172. {
  3173. name: "Macro",
  3174. height: math.unit(55, "meters"),
  3175. default: true
  3176. },
  3177. {
  3178. name: "Macro+",
  3179. height: math.unit(105, "meters")
  3180. },
  3181. ]
  3182. ))
  3183. characterMakers.push(() => makeCharacter(
  3184. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3185. {
  3186. front: {
  3187. height: math.unit(7 + 2/12, "feet"),
  3188. weight: math.unit(320, "kg"),
  3189. preyCapacity: math.unit(0.276549935, "people"),
  3190. name: "Front",
  3191. image: {
  3192. source: "./media/characters/rai/front.svg",
  3193. extra: 1802/1696,
  3194. bottom: 68/1870
  3195. },
  3196. form: "anthro",
  3197. default: true
  3198. },
  3199. frontDressed: {
  3200. height: math.unit(7 + 2/12, "feet"),
  3201. weight: math.unit(320, "kg"),
  3202. preyCapacity: math.unit(0.276549935, "people"),
  3203. name: "Front (Dressed)",
  3204. image: {
  3205. source: "./media/characters/rai/front-dressed.svg",
  3206. extra: 1802/1696,
  3207. bottom: 68/1870
  3208. },
  3209. form: "anthro"
  3210. },
  3211. side: {
  3212. height: math.unit(7 + 2/12, "feet"),
  3213. weight: math.unit(320, "kg"),
  3214. preyCapacity: math.unit(0.276549935, "people"),
  3215. name: "Side",
  3216. image: {
  3217. source: "./media/characters/rai/side.svg",
  3218. extra: 1789/1710,
  3219. bottom: 115/1904
  3220. },
  3221. form: "anthro"
  3222. },
  3223. back: {
  3224. height: math.unit(7 + 2/12, "feet"),
  3225. weight: math.unit(320, "kg"),
  3226. preyCapacity: math.unit(0.276549935, "people"),
  3227. name: "Back",
  3228. image: {
  3229. source: "./media/characters/rai/back.svg",
  3230. extra: 1770/1707,
  3231. bottom: 28/1798
  3232. },
  3233. form: "anthro"
  3234. },
  3235. feral: {
  3236. height: math.unit(9.5, "feet"),
  3237. weight: math.unit(640, "kg"),
  3238. preyCapacity: math.unit(4, "people"),
  3239. name: "Feral",
  3240. image: {
  3241. source: "./media/characters/rai/feral.svg",
  3242. extra: 945/553,
  3243. bottom: 176/1121
  3244. },
  3245. form: "feral",
  3246. default: true
  3247. },
  3248. dragon: {
  3249. height: math.unit(23, "feet"),
  3250. weight: math.unit(50000, "lb"),
  3251. name: "Dragon",
  3252. image: {
  3253. source: "./media/characters/rai/dragon.svg",
  3254. extra: 2498 / 2030,
  3255. bottom: 85.2 / 2584
  3256. },
  3257. form: "dragon",
  3258. default: true
  3259. },
  3260. maw: {
  3261. height: math.unit(1.69, "feet"),
  3262. name: "Maw",
  3263. image: {
  3264. source: "./media/characters/rai/maw.svg"
  3265. },
  3266. form: "anthro"
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(7 + 2/12, "feet"),
  3273. form: "anthro"
  3274. },
  3275. {
  3276. name: "Big",
  3277. height: math.unit(11, "feet"),
  3278. form: "anthro"
  3279. },
  3280. {
  3281. name: "Minimacro",
  3282. height: math.unit(77, "feet"),
  3283. form: "anthro"
  3284. },
  3285. {
  3286. name: "Macro",
  3287. height: math.unit(302, "feet"),
  3288. default: true,
  3289. form: "anthro"
  3290. },
  3291. {
  3292. name: "Normal",
  3293. height: math.unit(9.5, "feet"),
  3294. form: "feral",
  3295. default: true
  3296. },
  3297. {
  3298. name: "Normal",
  3299. height: math.unit(23, "feet"),
  3300. form: "dragon",
  3301. default: true
  3302. }
  3303. ],
  3304. {
  3305. "anthro": {
  3306. name: "Anthro",
  3307. default: true
  3308. },
  3309. "feral": {
  3310. name: "Feral",
  3311. },
  3312. "dragon": {
  3313. name: "Dragon",
  3314. },
  3315. }
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3319. {
  3320. frontDressed: {
  3321. height: math.unit(216, "feet"),
  3322. weight: math.unit(7000000, "lb"),
  3323. preyCapacity: math.unit(1321, "people"),
  3324. name: "Front (Dressed)",
  3325. image: {
  3326. source: "./media/characters/jazzy/front-dressed.svg",
  3327. extra: 2738 / 2651,
  3328. bottom: 41.8 / 2786
  3329. }
  3330. },
  3331. backDressed: {
  3332. height: math.unit(216, "feet"),
  3333. weight: math.unit(7000000, "lb"),
  3334. preyCapacity: math.unit(1321, "people"),
  3335. name: "Back (Dressed)",
  3336. image: {
  3337. source: "./media/characters/jazzy/back-dressed.svg",
  3338. extra: 2775 / 2673,
  3339. bottom: 36.8 / 2817
  3340. }
  3341. },
  3342. front: {
  3343. height: math.unit(216, "feet"),
  3344. weight: math.unit(7000000, "lb"),
  3345. preyCapacity: math.unit(1321, "people"),
  3346. name: "Front",
  3347. image: {
  3348. source: "./media/characters/jazzy/front.svg",
  3349. extra: 2738 / 2651,
  3350. bottom: 41.8 / 2786
  3351. }
  3352. },
  3353. back: {
  3354. height: math.unit(216, "feet"),
  3355. weight: math.unit(7000000, "lb"),
  3356. preyCapacity: math.unit(1321, "people"),
  3357. name: "Back",
  3358. image: {
  3359. source: "./media/characters/jazzy/back.svg",
  3360. extra: 2775 / 2673,
  3361. bottom: 36.8 / 2817
  3362. }
  3363. },
  3364. maw: {
  3365. height: math.unit(20, "feet"),
  3366. name: "Maw",
  3367. image: {
  3368. source: "./media/characters/jazzy/maw.svg"
  3369. }
  3370. },
  3371. paws: {
  3372. height: math.unit(27.5, "feet"),
  3373. name: "Paws",
  3374. image: {
  3375. source: "./media/characters/jazzy/paws.svg"
  3376. }
  3377. },
  3378. eye: {
  3379. height: math.unit(4.4, "feet"),
  3380. name: "Eye",
  3381. image: {
  3382. source: "./media/characters/jazzy/eye.svg"
  3383. }
  3384. },
  3385. droneOffense: {
  3386. height: math.unit(9.5, "inches"),
  3387. name: "Drone (Offense)",
  3388. image: {
  3389. source: "./media/characters/jazzy/drone-offense.svg"
  3390. }
  3391. },
  3392. droneRecon: {
  3393. height: math.unit(9.5, "inches"),
  3394. name: "Drone (Recon)",
  3395. image: {
  3396. source: "./media/characters/jazzy/drone-recon.svg"
  3397. }
  3398. },
  3399. droneDefense: {
  3400. height: math.unit(9.5, "inches"),
  3401. name: "Drone (Defense)",
  3402. image: {
  3403. source: "./media/characters/jazzy/drone-defense.svg"
  3404. }
  3405. },
  3406. },
  3407. [
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(216, "feet"),
  3411. default: true
  3412. },
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3417. {
  3418. front: {
  3419. height: math.unit(9 + 6/12, "feet"),
  3420. weight: math.unit(700, "lb"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/flamm/front.svg",
  3424. extra: 1736/1596,
  3425. bottom: 93/1829
  3426. }
  3427. },
  3428. buff: {
  3429. height: math.unit(9 + 6/12, "feet"),
  3430. weight: math.unit(950, "lb"),
  3431. name: "Buff",
  3432. image: {
  3433. source: "./media/characters/flamm/buff.svg",
  3434. extra: 3018/2874,
  3435. bottom: 221/3239
  3436. }
  3437. },
  3438. },
  3439. [
  3440. {
  3441. name: "Normal",
  3442. height: math.unit(9.5, "feet")
  3443. },
  3444. {
  3445. name: "Macro",
  3446. height: math.unit(200, "feet"),
  3447. default: true
  3448. },
  3449. ]
  3450. ))
  3451. characterMakers.push(() => makeCharacter(
  3452. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3453. {
  3454. front: {
  3455. height: math.unit(5 + 3/12, "feet"),
  3456. weight: math.unit(60, "kg"),
  3457. name: "Front",
  3458. image: {
  3459. source: "./media/characters/zephiro/front.svg",
  3460. extra: 1873/1761,
  3461. bottom: 147/2020
  3462. }
  3463. },
  3464. side: {
  3465. height: math.unit(5 + 3/12, "feet"),
  3466. weight: math.unit(60, "kg"),
  3467. name: "Side",
  3468. image: {
  3469. source: "./media/characters/zephiro/side.svg",
  3470. extra: 1929/1827,
  3471. bottom: 65/1994
  3472. }
  3473. },
  3474. back: {
  3475. height: math.unit(5 + 3/12, "feet"),
  3476. weight: math.unit(60, "kg"),
  3477. name: "Back",
  3478. image: {
  3479. source: "./media/characters/zephiro/back.svg",
  3480. extra: 1926/1816,
  3481. bottom: 41/1967
  3482. }
  3483. },
  3484. hand: {
  3485. height: math.unit(0.68, "feet"),
  3486. name: "Hand",
  3487. image: {
  3488. source: "./media/characters/zephiro/hand.svg"
  3489. }
  3490. },
  3491. paw: {
  3492. height: math.unit(1, "feet"),
  3493. name: "Paw",
  3494. image: {
  3495. source: "./media/characters/zephiro/paw.svg"
  3496. }
  3497. },
  3498. beans: {
  3499. height: math.unit(0.93, "feet"),
  3500. name: "Beans",
  3501. image: {
  3502. source: "./media/characters/zephiro/beans.svg"
  3503. }
  3504. },
  3505. },
  3506. [
  3507. {
  3508. name: "Micro",
  3509. height: math.unit(3, "inches")
  3510. },
  3511. {
  3512. name: "Normal",
  3513. height: math.unit(5 + 3 / 12, "feet"),
  3514. default: true
  3515. },
  3516. {
  3517. name: "Macro",
  3518. height: math.unit(118, "feet")
  3519. },
  3520. ]
  3521. ))
  3522. characterMakers.push(() => makeCharacter(
  3523. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3524. {
  3525. front: {
  3526. height: math.unit(5, "feet"),
  3527. weight: math.unit(90, "kg"),
  3528. preyCapacity: math.unit(14, "people"),
  3529. name: "Front",
  3530. image: {
  3531. source: "./media/characters/fory/front.svg",
  3532. extra: 2862 / 2674,
  3533. bottom: 180 / 3043.8
  3534. },
  3535. form: "weaselbun",
  3536. default: true,
  3537. extraAttributes: {
  3538. "pawSize": {
  3539. name: "Paw Size",
  3540. power: 2,
  3541. type: "area",
  3542. base: math.unit(0.1596, "m^2")
  3543. },
  3544. "pawLength": {
  3545. name: "Paw Length",
  3546. power: 1,
  3547. type: "length",
  3548. base: math.unit(0.7, "m")
  3549. }
  3550. }
  3551. },
  3552. back: {
  3553. height: math.unit(5, "feet"),
  3554. weight: math.unit(90, "kg"),
  3555. preyCapacity: math.unit(14, "people"),
  3556. name: "Back",
  3557. image: {
  3558. source: "./media/characters/fory/back.svg",
  3559. extra: 1790/1672,
  3560. bottom: 84/1874
  3561. },
  3562. form: "weaselbun",
  3563. extraAttributes: {
  3564. "pawSize": {
  3565. name: "Paw Size",
  3566. power: 2,
  3567. type: "area",
  3568. base: math.unit(0.1596, "m^2")
  3569. },
  3570. "pawLength": {
  3571. name: "Paw Length",
  3572. power: 1,
  3573. type: "length",
  3574. base: math.unit(0.7, "m")
  3575. }
  3576. }
  3577. },
  3578. paw: {
  3579. height: math.unit(2.14, "feet"),
  3580. name: "Paw",
  3581. image: {
  3582. source: "./media/characters/fory/paw.svg"
  3583. },
  3584. form: "weaselbun",
  3585. extraAttributes: {
  3586. "pawSize": {
  3587. name: "Paw Size",
  3588. power: 2,
  3589. type: "area",
  3590. base: math.unit(0.1596, "m^2")
  3591. },
  3592. "pawLength": {
  3593. name: "Paw Length",
  3594. power: 1,
  3595. type: "length",
  3596. base: math.unit(0.48, "m")
  3597. }
  3598. }
  3599. },
  3600. bunBack: {
  3601. height: math.unit(3, "feet"),
  3602. weight: math.unit(20, "kg"),
  3603. preyCapacity: math.unit(3, "people"),
  3604. name: "Back",
  3605. image: {
  3606. source: "./media/characters/fory/bun-back.svg",
  3607. extra: 1749/1564,
  3608. bottom: 246/1995
  3609. },
  3610. form: "bun",
  3611. default: true,
  3612. extraAttributes: {
  3613. "pawSize": {
  3614. name: "Paw Size",
  3615. power: 2,
  3616. type: "area",
  3617. base: math.unit(0.072, "m^2")
  3618. },
  3619. "pawLength": {
  3620. name: "Paw Length",
  3621. power: 1,
  3622. type: "length",
  3623. base: math.unit(0.45, "m")
  3624. }
  3625. }
  3626. },
  3627. },
  3628. [
  3629. {
  3630. name: "Normal",
  3631. height: math.unit(5, "feet"),
  3632. form: "weaselbun"
  3633. },
  3634. {
  3635. name: "Macro",
  3636. height: math.unit(50, "feet"),
  3637. default: true,
  3638. form: "weaselbun"
  3639. },
  3640. {
  3641. name: "Megamacro",
  3642. height: math.unit(10, "miles"),
  3643. form: "weaselbun"
  3644. },
  3645. {
  3646. name: "Gigamacro",
  3647. height: math.unit(5, "earths"),
  3648. form: "weaselbun"
  3649. },
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(3, "feet"),
  3653. default: true,
  3654. form: "bun"
  3655. },
  3656. {
  3657. name: "Fun-Size",
  3658. height: math.unit(12, "feet"),
  3659. form: "bun"
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(100, "feet"),
  3664. form: "bun"
  3665. },
  3666. {
  3667. name: "Planetary",
  3668. height: math.unit(3, "earths"),
  3669. form: "bun"
  3670. },
  3671. ],
  3672. {
  3673. "weaselbun": {
  3674. name: "Weaselbun",
  3675. default: true
  3676. },
  3677. "bun": {
  3678. name: "Bun",
  3679. },
  3680. }
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3684. {
  3685. front: {
  3686. height: math.unit(7, "feet"),
  3687. weight: math.unit(90, "kg"),
  3688. name: "Front",
  3689. image: {
  3690. source: "./media/characters/kurrikage/front.svg",
  3691. extra: 1845/1733,
  3692. bottom: 119/1964
  3693. }
  3694. },
  3695. back: {
  3696. height: math.unit(7, "feet"),
  3697. weight: math.unit(90, "kg"),
  3698. name: "Back",
  3699. image: {
  3700. source: "./media/characters/kurrikage/back.svg",
  3701. extra: 1790/1677,
  3702. bottom: 61/1851
  3703. }
  3704. },
  3705. dressed: {
  3706. height: math.unit(7, "feet"),
  3707. weight: math.unit(90, "kg"),
  3708. name: "Dressed",
  3709. image: {
  3710. source: "./media/characters/kurrikage/dressed.svg",
  3711. extra: 1845/1733,
  3712. bottom: 119/1964
  3713. }
  3714. },
  3715. foot: {
  3716. height: math.unit(1.5, "feet"),
  3717. name: "Foot",
  3718. image: {
  3719. source: "./media/characters/kurrikage/foot.svg"
  3720. }
  3721. },
  3722. staff: {
  3723. height: math.unit(6.7, "feet"),
  3724. name: "Staff",
  3725. image: {
  3726. source: "./media/characters/kurrikage/staff.svg"
  3727. }
  3728. },
  3729. peek: {
  3730. height: math.unit(1.05, "feet"),
  3731. name: "Peeking",
  3732. image: {
  3733. source: "./media/characters/kurrikage/peek.svg",
  3734. bottom: 0.08
  3735. }
  3736. },
  3737. },
  3738. [
  3739. {
  3740. name: "Normal",
  3741. height: math.unit(12, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Big",
  3746. height: math.unit(20, "feet")
  3747. },
  3748. {
  3749. name: "Macro",
  3750. height: math.unit(500, "feet")
  3751. },
  3752. {
  3753. name: "Megamacro",
  3754. height: math.unit(20, "miles")
  3755. },
  3756. ]
  3757. ))
  3758. characterMakers.push(() => makeCharacter(
  3759. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3760. {
  3761. front: {
  3762. height: math.unit(6, "feet"),
  3763. weight: math.unit(75, "kg"),
  3764. name: "Front",
  3765. image: {
  3766. source: "./media/characters/shingo/front.svg",
  3767. extra: 1900/1825,
  3768. bottom: 82/1982
  3769. }
  3770. },
  3771. side: {
  3772. height: math.unit(6, "feet"),
  3773. weight: math.unit(75, "kg"),
  3774. name: "Side",
  3775. image: {
  3776. source: "./media/characters/shingo/side.svg",
  3777. extra: 1930/1865,
  3778. bottom: 16/1946
  3779. }
  3780. },
  3781. back: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(75, "kg"),
  3784. name: "Back",
  3785. image: {
  3786. source: "./media/characters/shingo/back.svg",
  3787. extra: 1922/1852,
  3788. bottom: 16/1938
  3789. }
  3790. },
  3791. frontDressed: {
  3792. height: math.unit(6, "feet"),
  3793. weight: math.unit(150, "lb"),
  3794. name: "Front-dressed",
  3795. image: {
  3796. source: "./media/characters/shingo/front-dressed.svg",
  3797. extra: 1900/1825,
  3798. bottom: 82/1982
  3799. }
  3800. },
  3801. paw: {
  3802. height: math.unit(1.29, "feet"),
  3803. name: "Paw",
  3804. image: {
  3805. source: "./media/characters/shingo/paw.svg"
  3806. }
  3807. },
  3808. hand: {
  3809. height: math.unit(1.07, "feet"),
  3810. name: "Hand",
  3811. image: {
  3812. source: "./media/characters/shingo/hand.svg"
  3813. }
  3814. },
  3815. frontAlt: {
  3816. height: math.unit(6, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Front (Alt)",
  3819. image: {
  3820. source: "./media/characters/shingo/front-alt.svg",
  3821. extra: 3511 / 3338,
  3822. bottom: 0.005
  3823. }
  3824. },
  3825. frontAlt2: {
  3826. height: math.unit(6, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Front (Alt 2)",
  3829. image: {
  3830. source: "./media/characters/shingo/front-alt-2.svg",
  3831. extra: 706/681,
  3832. bottom: 11/717
  3833. }
  3834. },
  3835. pawAlt: {
  3836. height: math.unit(1, "feet"),
  3837. name: "Paw (Alt)",
  3838. image: {
  3839. source: "./media/characters/shingo/paw-alt.svg"
  3840. }
  3841. },
  3842. },
  3843. [
  3844. {
  3845. name: "Micro",
  3846. height: math.unit(4, "inches")
  3847. },
  3848. {
  3849. name: "Normal",
  3850. height: math.unit(6, "feet"),
  3851. default: true
  3852. },
  3853. {
  3854. name: "Macro",
  3855. height: math.unit(108, "feet")
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(1500, "feet")
  3860. },
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3865. {
  3866. side: {
  3867. height: math.unit(6, "feet"),
  3868. weight: math.unit(75, "kg"),
  3869. name: "Side",
  3870. image: {
  3871. source: "./media/characters/aigey/side.svg"
  3872. }
  3873. },
  3874. },
  3875. [
  3876. {
  3877. name: "Macro",
  3878. height: math.unit(200, "feet"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Megamacro",
  3883. height: math.unit(100, "miles")
  3884. },
  3885. ]
  3886. )
  3887. )
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(13, "feet"),
  3893. weight: math.unit(1036.80, "kg"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/natasha/front.svg",
  3897. extra: 1301/1210,
  3898. bottom: 39/1340
  3899. }
  3900. },
  3901. back: {
  3902. height: math.unit(13, "feet"),
  3903. weight: math.unit(1036.80, "kg"),
  3904. name: "Back",
  3905. image: {
  3906. source: "./media/characters/natasha/back.svg",
  3907. extra: 1342/1252,
  3908. bottom: 20/1362
  3909. }
  3910. },
  3911. head: {
  3912. height: math.unit(3.48, "feet"),
  3913. name: "Head",
  3914. image: {
  3915. source: "./media/characters/natasha/head.svg"
  3916. }
  3917. },
  3918. jaws: {
  3919. height: math.unit(3.52, "feet"),
  3920. name: "Jaws",
  3921. image: {
  3922. source: "./media/characters/natasha/jaws.svg"
  3923. }
  3924. },
  3925. paws: {
  3926. height: math.unit(2.7, "feet"),
  3927. name: "Paws",
  3928. image: {
  3929. source: "./media/characters/natasha/paws.svg"
  3930. }
  3931. },
  3932. collar: {
  3933. height: math.unit(0.89, "feet"),
  3934. name: "Collar",
  3935. image: {
  3936. source: "./media/characters/natasha/collar.svg"
  3937. }
  3938. },
  3939. gauge: {
  3940. height: math.unit(0.36, "feet"),
  3941. name: "Gauge",
  3942. image: {
  3943. source: "./media/characters/natasha/gauge.svg"
  3944. }
  3945. },
  3946. },
  3947. [
  3948. {
  3949. name: "Shortstack",
  3950. height: math.unit(3, "feet")
  3951. },
  3952. {
  3953. name: "Normal",
  3954. height: math.unit(13, "feet"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(100, "feet")
  3960. },
  3961. {
  3962. name: "Macro+",
  3963. height: math.unit(260, "feet")
  3964. },
  3965. {
  3966. name: "Macro++",
  3967. height: math.unit(1, "mile")
  3968. },
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3973. {
  3974. front: {
  3975. height: math.unit(6, "feet"),
  3976. weight: math.unit(75, "kg"),
  3977. name: "Front",
  3978. image: {
  3979. source: "./media/characters/malik/front.svg",
  3980. extra: 1750/1561,
  3981. bottom: 80/1830
  3982. },
  3983. extraAttributes: {
  3984. "toeSize": {
  3985. name: "Toe Size",
  3986. power: 2,
  3987. type: "area",
  3988. base: math.unit(0.0159, "m^2")
  3989. },
  3990. "pawSize": {
  3991. name: "Paw Size",
  3992. power: 2,
  3993. type: "area",
  3994. base: math.unit(0.09834, "m^2")
  3995. },
  3996. }
  3997. },
  3998. side: {
  3999. height: math.unit(6, "feet"),
  4000. weight: math.unit(75, "kg"),
  4001. name: "Side",
  4002. image: {
  4003. source: "./media/characters/malik/side.svg",
  4004. extra: 1802/1685,
  4005. bottom: 42/1844
  4006. },
  4007. extraAttributes: {
  4008. "toeSize": {
  4009. name: "Toe Size",
  4010. power: 2,
  4011. type: "area",
  4012. base: math.unit(0.0159, "m^2")
  4013. },
  4014. "pawSize": {
  4015. name: "Paw Size",
  4016. power: 2,
  4017. type: "area",
  4018. base: math.unit(0.09834, "m^2")
  4019. },
  4020. }
  4021. },
  4022. back: {
  4023. height: math.unit(6, "feet"),
  4024. weight: math.unit(75, "kg"),
  4025. name: "Back",
  4026. image: {
  4027. source: "./media/characters/malik/back.svg",
  4028. extra: 1803/1607,
  4029. bottom: 33/1836
  4030. },
  4031. extraAttributes: {
  4032. "toeSize": {
  4033. name: "Toe Size",
  4034. power: 2,
  4035. type: "area",
  4036. base: math.unit(0.0159, "m^2")
  4037. },
  4038. "pawSize": {
  4039. name: "Paw Size",
  4040. power: 2,
  4041. type: "area",
  4042. base: math.unit(0.09834, "m^2")
  4043. },
  4044. }
  4045. },
  4046. },
  4047. [
  4048. {
  4049. name: "Macro",
  4050. height: math.unit(156, "feet"),
  4051. default: true
  4052. },
  4053. {
  4054. name: "Macro+",
  4055. height: math.unit(1188, "feet")
  4056. },
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4061. {
  4062. front: {
  4063. height: math.unit(6, "feet"),
  4064. weight: math.unit(75, "kg"),
  4065. name: "Front",
  4066. image: {
  4067. source: "./media/characters/sefer/front.svg",
  4068. extra: 848 / 659,
  4069. bottom: 28.3 / 876.442
  4070. }
  4071. },
  4072. back: {
  4073. height: math.unit(6, "feet"),
  4074. weight: math.unit(75, "kg"),
  4075. name: "Back",
  4076. image: {
  4077. source: "./media/characters/sefer/back.svg",
  4078. extra: 864 / 695,
  4079. bottom: 10 / 871
  4080. }
  4081. },
  4082. frontDressed: {
  4083. height: math.unit(6, "feet"),
  4084. weight: math.unit(75, "kg"),
  4085. name: "Dressed",
  4086. image: {
  4087. source: "./media/characters/sefer/dressed.svg",
  4088. extra: 839 / 653,
  4089. bottom: 37.6 / 878
  4090. }
  4091. },
  4092. },
  4093. [
  4094. {
  4095. name: "Normal",
  4096. height: math.unit(6, "feet"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Big",
  4101. height: math.unit(8, "meters")
  4102. },
  4103. ]
  4104. ))
  4105. characterMakers.push(() => makeCharacter(
  4106. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4107. {
  4108. body: {
  4109. height: math.unit(2.2428, "meter"),
  4110. weight: math.unit(124.738, "kg"),
  4111. name: "Body",
  4112. image: {
  4113. extra: 1225 / 1050,
  4114. source: "./media/characters/north/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Micro",
  4121. height: math.unit(4, "inches")
  4122. },
  4123. {
  4124. name: "Macro",
  4125. height: math.unit(63, "meters")
  4126. },
  4127. {
  4128. name: "Megamacro",
  4129. height: math.unit(101, "miles"),
  4130. default: true
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4136. {
  4137. angled: {
  4138. height: math.unit(4, "meter"),
  4139. weight: math.unit(150, "kg"),
  4140. name: "Angled",
  4141. image: {
  4142. source: "./media/characters/talan/angled-sfw.svg",
  4143. bottom: 29 / 3734
  4144. }
  4145. },
  4146. angledNsfw: {
  4147. height: math.unit(4, "meter"),
  4148. weight: math.unit(150, "kg"),
  4149. name: "Angled (NSFW)",
  4150. image: {
  4151. source: "./media/characters/talan/angled-nsfw.svg",
  4152. bottom: 29 / 3734
  4153. }
  4154. },
  4155. frontNsfw: {
  4156. height: math.unit(4, "meter"),
  4157. weight: math.unit(150, "kg"),
  4158. name: "Front (NSFW)",
  4159. image: {
  4160. source: "./media/characters/talan/front-nsfw.svg",
  4161. bottom: 29 / 3734
  4162. }
  4163. },
  4164. sideNsfw: {
  4165. height: math.unit(4, "meter"),
  4166. weight: math.unit(150, "kg"),
  4167. name: "Side (NSFW)",
  4168. image: {
  4169. source: "./media/characters/talan/side-nsfw.svg",
  4170. bottom: 29 / 3734
  4171. }
  4172. },
  4173. back: {
  4174. height: math.unit(4, "meter"),
  4175. weight: math.unit(150, "kg"),
  4176. name: "Back",
  4177. image: {
  4178. source: "./media/characters/talan/back.svg"
  4179. }
  4180. },
  4181. dickBottom: {
  4182. height: math.unit(0.621, "meter"),
  4183. name: "Dick (Bottom)",
  4184. image: {
  4185. source: "./media/characters/talan/dick-bottom.svg"
  4186. }
  4187. },
  4188. dickTop: {
  4189. height: math.unit(0.621, "meter"),
  4190. name: "Dick (Top)",
  4191. image: {
  4192. source: "./media/characters/talan/dick-top.svg"
  4193. }
  4194. },
  4195. dickSide: {
  4196. height: math.unit(0.305, "meter"),
  4197. name: "Dick (Side)",
  4198. image: {
  4199. source: "./media/characters/talan/dick-side.svg"
  4200. }
  4201. },
  4202. dickFront: {
  4203. height: math.unit(0.305, "meter"),
  4204. name: "Dick (Front)",
  4205. image: {
  4206. source: "./media/characters/talan/dick-front.svg"
  4207. }
  4208. },
  4209. },
  4210. [
  4211. {
  4212. name: "Normal",
  4213. height: math.unit(4, "meters")
  4214. },
  4215. {
  4216. name: "Macro",
  4217. height: math.unit(100, "meters")
  4218. },
  4219. {
  4220. name: "Megamacro",
  4221. height: math.unit(2, "miles"),
  4222. default: true
  4223. },
  4224. {
  4225. name: "Gigamacro",
  4226. height: math.unit(5000, "miles")
  4227. },
  4228. {
  4229. name: "Teramacro",
  4230. height: math.unit(100, "parsecs")
  4231. }
  4232. ]
  4233. ))
  4234. characterMakers.push(() => makeCharacter(
  4235. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4236. {
  4237. front: {
  4238. height: math.unit(2, "meter"),
  4239. weight: math.unit(90, "kg"),
  4240. name: "Front",
  4241. image: {
  4242. source: "./media/characters/gael'rathus/front.svg"
  4243. }
  4244. },
  4245. frontAlt: {
  4246. height: math.unit(2, "meter"),
  4247. weight: math.unit(90, "kg"),
  4248. name: "Front (alt)",
  4249. image: {
  4250. source: "./media/characters/gael'rathus/front-alt.svg"
  4251. }
  4252. },
  4253. frontAlt2: {
  4254. height: math.unit(2, "meter"),
  4255. weight: math.unit(90, "kg"),
  4256. name: "Front (alt 2)",
  4257. image: {
  4258. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4259. }
  4260. }
  4261. },
  4262. [
  4263. {
  4264. name: "Normal",
  4265. height: math.unit(9, "feet"),
  4266. default: true
  4267. },
  4268. {
  4269. name: "Large",
  4270. height: math.unit(25, "feet")
  4271. },
  4272. {
  4273. name: "Macro",
  4274. height: math.unit(0.25, "miles")
  4275. },
  4276. {
  4277. name: "Megamacro",
  4278. height: math.unit(10, "miles")
  4279. }
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4284. {
  4285. side: {
  4286. height: math.unit(2, "meter"),
  4287. weight: math.unit(140, "kg"),
  4288. name: "Side",
  4289. image: {
  4290. source: "./media/characters/sosha/side.svg",
  4291. extra: 1170/1006,
  4292. bottom: 94/1264
  4293. }
  4294. },
  4295. maw: {
  4296. height: math.unit(2.87, "feet"),
  4297. name: "Maw",
  4298. image: {
  4299. source: "./media/characters/sosha/maw.svg",
  4300. extra: 966/865,
  4301. bottom: 0/966
  4302. }
  4303. },
  4304. cooch: {
  4305. height: math.unit(5.6, "feet"),
  4306. name: "Cooch",
  4307. image: {
  4308. source: "./media/characters/sosha/cooch.svg"
  4309. }
  4310. },
  4311. },
  4312. [
  4313. {
  4314. name: "Normal",
  4315. height: math.unit(12, "feet"),
  4316. default: true
  4317. }
  4318. ]
  4319. ))
  4320. characterMakers.push(() => makeCharacter(
  4321. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4322. {
  4323. side: {
  4324. height: math.unit(5 + 5 / 12, "feet"),
  4325. weight: math.unit(170, "kg"),
  4326. name: "Side",
  4327. image: {
  4328. source: "./media/characters/runnola/side.svg",
  4329. extra: 741 / 448,
  4330. bottom: 0.05
  4331. }
  4332. },
  4333. },
  4334. [
  4335. {
  4336. name: "Small",
  4337. height: math.unit(3, "feet")
  4338. },
  4339. {
  4340. name: "Normal",
  4341. height: math.unit(5 + 5 / 12, "feet"),
  4342. default: true
  4343. },
  4344. {
  4345. name: "Big",
  4346. height: math.unit(10, "feet")
  4347. },
  4348. ]
  4349. ))
  4350. characterMakers.push(() => makeCharacter(
  4351. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4352. {
  4353. front: {
  4354. height: math.unit(2, "meter"),
  4355. weight: math.unit(50, "kg"),
  4356. name: "Front",
  4357. image: {
  4358. source: "./media/characters/kurribird/front.svg",
  4359. bottom: 0.015
  4360. }
  4361. },
  4362. frontAlt: {
  4363. height: math.unit(1.5, "meter"),
  4364. weight: math.unit(50, "kg"),
  4365. name: "Front (Alt)",
  4366. image: {
  4367. source: "./media/characters/kurribird/front-alt.svg",
  4368. extra: 1.45
  4369. }
  4370. },
  4371. },
  4372. [
  4373. {
  4374. name: "Normal",
  4375. height: math.unit(7, "feet")
  4376. },
  4377. {
  4378. name: "Big",
  4379. height: math.unit(12, "feet"),
  4380. default: true
  4381. },
  4382. {
  4383. name: "Macro",
  4384. height: math.unit(1500, "feet")
  4385. },
  4386. {
  4387. name: "Megamacro",
  4388. height: math.unit(2, "miles")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4394. {
  4395. front: {
  4396. height: math.unit(2, "meter"),
  4397. weight: math.unit(80, "kg"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/elbial/front.svg",
  4401. extra: 1643 / 1556,
  4402. bottom: 60.2 / 1696
  4403. }
  4404. },
  4405. side: {
  4406. height: math.unit(2, "meter"),
  4407. weight: math.unit(80, "kg"),
  4408. name: "Side",
  4409. image: {
  4410. source: "./media/characters/elbial/side.svg",
  4411. extra: 1601/1528,
  4412. bottom: 97/1698
  4413. }
  4414. },
  4415. back: {
  4416. height: math.unit(2, "meter"),
  4417. weight: math.unit(80, "kg"),
  4418. name: "Back",
  4419. image: {
  4420. source: "./media/characters/elbial/back.svg",
  4421. extra: 1653/1569,
  4422. bottom: 20/1673
  4423. }
  4424. },
  4425. frontDressed: {
  4426. height: math.unit(2, "meter"),
  4427. weight: math.unit(80, "kg"),
  4428. name: "Front (Dressed)",
  4429. image: {
  4430. source: "./media/characters/elbial/front-dressed.svg",
  4431. extra: 1638/1569,
  4432. bottom: 70/1708
  4433. }
  4434. },
  4435. genitals: {
  4436. height: math.unit(2 / 3.367, "meter"),
  4437. name: "Genitals",
  4438. image: {
  4439. source: "./media/characters/elbial/genitals.svg"
  4440. }
  4441. },
  4442. },
  4443. [
  4444. {
  4445. name: "Large",
  4446. height: math.unit(100, "feet")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(500, "feet"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(10, "miles")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(25000, "miles")
  4460. },
  4461. {
  4462. name: "Full-Size",
  4463. height: math.unit(8000000, "gigaparsecs")
  4464. }
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(2, "meter"),
  4472. weight: math.unit(60, "kg"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/noah/front.svg",
  4476. extra: 1383/1313,
  4477. bottom: 104/1487
  4478. }
  4479. },
  4480. hand: {
  4481. height: math.unit(0.6, "feet"),
  4482. name: "Hand",
  4483. image: {
  4484. source: "./media/characters/noah/hand.svg"
  4485. }
  4486. },
  4487. talons: {
  4488. height: math.unit(1.385, "feet"),
  4489. name: "Talons",
  4490. image: {
  4491. source: "./media/characters/noah/talons.svg"
  4492. }
  4493. },
  4494. beak: {
  4495. height: math.unit(0.43, "feet"),
  4496. name: "Beak",
  4497. image: {
  4498. source: "./media/characters/noah/beak.svg"
  4499. }
  4500. },
  4501. collar: {
  4502. height: math.unit(0.88, "feet"),
  4503. name: "Collar",
  4504. image: {
  4505. source: "./media/characters/noah/collar.svg"
  4506. }
  4507. },
  4508. eyeNarrow: {
  4509. height: math.unit(0.18, "feet"),
  4510. name: "Eye (Narrow)",
  4511. image: {
  4512. source: "./media/characters/noah/eye-narrow.svg"
  4513. }
  4514. },
  4515. eyeNormal: {
  4516. height: math.unit(0.18, "feet"),
  4517. name: "Eye (Normal)",
  4518. image: {
  4519. source: "./media/characters/noah/eye-normal.svg"
  4520. }
  4521. },
  4522. eyeWide: {
  4523. height: math.unit(0.18, "feet"),
  4524. name: "Eye (Wide)",
  4525. image: {
  4526. source: "./media/characters/noah/eye-wide.svg"
  4527. }
  4528. },
  4529. ear: {
  4530. height: math.unit(0.64, "feet"),
  4531. name: "Ear",
  4532. image: {
  4533. source: "./media/characters/noah/ear.svg"
  4534. }
  4535. },
  4536. },
  4537. [
  4538. {
  4539. name: "Large",
  4540. height: math.unit(50, "feet")
  4541. },
  4542. {
  4543. name: "Macro",
  4544. height: math.unit(750, "feet"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Megamacro",
  4549. height: math.unit(50, "miles")
  4550. },
  4551. {
  4552. name: "Gigamacro",
  4553. height: math.unit(100000, "miles")
  4554. },
  4555. {
  4556. name: "Full-Size",
  4557. height: math.unit(3000000000, "miles")
  4558. }
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4563. {
  4564. front: {
  4565. height: math.unit(2, "meter"),
  4566. weight: math.unit(80, "kg"),
  4567. name: "Front",
  4568. image: {
  4569. source: "./media/characters/natalya/front.svg"
  4570. }
  4571. },
  4572. back: {
  4573. height: math.unit(2, "meter"),
  4574. weight: math.unit(80, "kg"),
  4575. name: "Back",
  4576. image: {
  4577. source: "./media/characters/natalya/back.svg"
  4578. }
  4579. }
  4580. },
  4581. [
  4582. {
  4583. name: "Normal",
  4584. height: math.unit(150, "feet"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(5, "miles")
  4590. },
  4591. {
  4592. name: "Full-Size",
  4593. height: math.unit(600, "kiloparsecs")
  4594. }
  4595. ]
  4596. ))
  4597. characterMakers.push(() => makeCharacter(
  4598. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4599. {
  4600. front: {
  4601. height: math.unit(2, "meter"),
  4602. weight: math.unit(50, "kg"),
  4603. name: "Front",
  4604. image: {
  4605. source: "./media/characters/erestrebah/front.svg",
  4606. extra: 1262/1162,
  4607. bottom: 96/1358
  4608. }
  4609. },
  4610. back: {
  4611. height: math.unit(2, "meter"),
  4612. weight: math.unit(50, "kg"),
  4613. name: "Back",
  4614. image: {
  4615. source: "./media/characters/erestrebah/back.svg",
  4616. extra: 1257/1139,
  4617. bottom: 13/1270
  4618. }
  4619. },
  4620. wing: {
  4621. height: math.unit(2, "meter"),
  4622. weight: math.unit(50, "kg"),
  4623. name: "Wing",
  4624. image: {
  4625. source: "./media/characters/erestrebah/wing.svg",
  4626. extra: 1262/1162,
  4627. bottom: 96/1358
  4628. }
  4629. },
  4630. mouth: {
  4631. height: math.unit(0.39, "feet"),
  4632. name: "Mouth",
  4633. image: {
  4634. source: "./media/characters/erestrebah/mouth.svg"
  4635. }
  4636. }
  4637. },
  4638. [
  4639. {
  4640. name: "Normal",
  4641. height: math.unit(10, "feet")
  4642. },
  4643. {
  4644. name: "Large",
  4645. height: math.unit(50, "feet"),
  4646. default: true
  4647. },
  4648. {
  4649. name: "Macro",
  4650. height: math.unit(300, "feet")
  4651. },
  4652. {
  4653. name: "Macro+",
  4654. height: math.unit(750, "feet")
  4655. },
  4656. {
  4657. name: "Megamacro",
  4658. height: math.unit(3, "miles")
  4659. }
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4664. {
  4665. front: {
  4666. height: math.unit(2, "meter"),
  4667. weight: math.unit(80, "kg"),
  4668. name: "Front",
  4669. image: {
  4670. source: "./media/characters/jennifer/front.svg",
  4671. bottom: 0.11,
  4672. extra: 1.16
  4673. }
  4674. },
  4675. frontAlt: {
  4676. height: math.unit(2, "meter"),
  4677. weight: math.unit(80, "kg"),
  4678. name: "Front (Alt)",
  4679. image: {
  4680. source: "./media/characters/jennifer/front-alt.svg"
  4681. }
  4682. }
  4683. },
  4684. [
  4685. {
  4686. name: "Canon Height",
  4687. height: math.unit(120, "feet"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Macro+",
  4692. height: math.unit(300, "feet")
  4693. },
  4694. {
  4695. name: "Megamacro",
  4696. height: math.unit(20000, "feet")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(2, "meter"),
  4705. weight: math.unit(50, "kg"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/kalista/front.svg",
  4709. extra: 1314/1145,
  4710. bottom: 101/1415
  4711. }
  4712. },
  4713. back: {
  4714. height: math.unit(2, "meter"),
  4715. weight: math.unit(50, "kg"),
  4716. name: "Back",
  4717. image: {
  4718. source: "./media/characters/kalista/back.svg",
  4719. extra: 1366 / 1156,
  4720. bottom: 33.9 / 1362.78
  4721. }
  4722. }
  4723. },
  4724. [
  4725. {
  4726. name: "Uncomfortably Small",
  4727. height: math.unit(10, "feet")
  4728. },
  4729. {
  4730. name: "Small",
  4731. height: math.unit(30, "feet")
  4732. },
  4733. {
  4734. name: "Macro",
  4735. height: math.unit(100, "feet"),
  4736. default: true
  4737. },
  4738. {
  4739. name: "Macro+",
  4740. height: math.unit(2000, "feet")
  4741. },
  4742. {
  4743. name: "True Form",
  4744. height: math.unit(8924, "miles")
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(2, "meter"),
  4753. weight: math.unit(120, "kg"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/ggv/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(2, "meter"),
  4761. weight: math.unit(120, "kg"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/ggv/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Extremely Puny",
  4771. height: math.unit(9 + 5 / 12, "feet")
  4772. },
  4773. {
  4774. name: "Horribly Small",
  4775. height: math.unit(47.7, "miles"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Reasonably Sized",
  4780. height: math.unit(25000, "parsecs")
  4781. },
  4782. {
  4783. name: "Slightly Uncompressed",
  4784. height: math.unit(7.77e31, "parsecs")
  4785. },
  4786. {
  4787. name: "Omniversal",
  4788. height: math.unit(1e300, "meters")
  4789. },
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(2, "meter"),
  4797. weight: math.unit(75, "lb"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/napalm/front.svg"
  4801. }
  4802. },
  4803. back: {
  4804. height: math.unit(2, "meter"),
  4805. weight: math.unit(75, "lb"),
  4806. name: "Back",
  4807. image: {
  4808. source: "./media/characters/napalm/back.svg"
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Standard",
  4815. height: math.unit(55, "feet"),
  4816. default: true
  4817. }
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(7 + 5 / 6, "feet"),
  4825. weight: math.unit(325, "lb"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/asana/front.svg",
  4829. extra: 1133 / 1060,
  4830. bottom: 15.2 / 1148.6
  4831. }
  4832. },
  4833. back: {
  4834. height: math.unit(7 + 5 / 6, "feet"),
  4835. weight: math.unit(325, "lb"),
  4836. name: "Back",
  4837. image: {
  4838. source: "./media/characters/asana/back.svg",
  4839. extra: 1114 / 1043,
  4840. bottom: 5 / 1120
  4841. }
  4842. },
  4843. dressedDark: {
  4844. height: math.unit(7 + 5 / 6, "feet"),
  4845. weight: math.unit(325, "lb"),
  4846. name: "Dressed (Dark)",
  4847. image: {
  4848. source: "./media/characters/asana/dressed-dark.svg",
  4849. extra: 1133 / 1060,
  4850. bottom: 15.2 / 1148.6
  4851. }
  4852. },
  4853. dressedLight: {
  4854. height: math.unit(7 + 5 / 6, "feet"),
  4855. weight: math.unit(325, "lb"),
  4856. name: "Dressed (Light)",
  4857. image: {
  4858. source: "./media/characters/asana/dressed-light.svg",
  4859. extra: 1133 / 1060,
  4860. bottom: 15.2 / 1148.6
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Standard",
  4867. height: math.unit(7 + 5 / 6, "feet"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Large",
  4872. height: math.unit(10, "meters")
  4873. },
  4874. {
  4875. name: "Macro",
  4876. height: math.unit(2500, "meters")
  4877. },
  4878. {
  4879. name: "Megamacro",
  4880. height: math.unit(5e6, "meters")
  4881. },
  4882. {
  4883. name: "Examacro",
  4884. height: math.unit(5e12, "lightyears")
  4885. },
  4886. {
  4887. name: "Max Size",
  4888. height: math.unit(1e31, "lightyears")
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4894. {
  4895. front: {
  4896. height: math.unit(2, "meter"),
  4897. weight: math.unit(60, "kg"),
  4898. name: "Front",
  4899. image: {
  4900. source: "./media/characters/ebony/front.svg",
  4901. bottom: 0.03,
  4902. extra: 1045 / 810 + 0.03
  4903. }
  4904. },
  4905. side: {
  4906. height: math.unit(2, "meter"),
  4907. weight: math.unit(60, "kg"),
  4908. name: "Side",
  4909. image: {
  4910. source: "./media/characters/ebony/side.svg",
  4911. bottom: 0.03,
  4912. extra: 1045 / 810 + 0.03
  4913. }
  4914. },
  4915. back: {
  4916. height: math.unit(2, "meter"),
  4917. weight: math.unit(60, "kg"),
  4918. name: "Back",
  4919. image: {
  4920. source: "./media/characters/ebony/back.svg",
  4921. bottom: 0.01,
  4922. extra: 1045 / 810 + 0.01
  4923. }
  4924. },
  4925. },
  4926. [
  4927. // TODO check why I did this lol
  4928. {
  4929. name: "Standard",
  4930. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Macro",
  4935. height: math.unit(200, "feet")
  4936. },
  4937. {
  4938. name: "Gigamacro",
  4939. height: math.unit(13000, "km")
  4940. }
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4945. {
  4946. front: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(175, "lb"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/mountain/front.svg",
  4952. extra: 972 / 955,
  4953. bottom: 64 / 1036.6
  4954. }
  4955. },
  4956. back: {
  4957. height: math.unit(6, "feet"),
  4958. weight: math.unit(175, "lb"),
  4959. name: "Back",
  4960. image: {
  4961. source: "./media/characters/mountain/back.svg",
  4962. extra: 970 / 950,
  4963. bottom: 28.25 / 999
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Large",
  4970. height: math.unit(20, "meters")
  4971. },
  4972. {
  4973. name: "Macro",
  4974. height: math.unit(300, "meters")
  4975. },
  4976. {
  4977. name: "Gigamacro",
  4978. height: math.unit(10000, "km"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "Examacro",
  4983. height: math.unit(10e9, "lightyears")
  4984. }
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(8, "feet"),
  4992. weight: math.unit(500, "lb"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/rick/front.svg"
  4996. }
  4997. }
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(8, "feet"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Macro",
  5007. height: math.unit(5, "km")
  5008. }
  5009. ]
  5010. ))
  5011. characterMakers.push(() => makeCharacter(
  5012. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5013. {
  5014. front: {
  5015. height: math.unit(8, "feet"),
  5016. weight: math.unit(120, "lb"),
  5017. name: "Front",
  5018. image: {
  5019. source: "./media/characters/ona/front.svg"
  5020. }
  5021. },
  5022. frontAlt: {
  5023. height: math.unit(8, "feet"),
  5024. weight: math.unit(120, "lb"),
  5025. name: "Front (Alt)",
  5026. image: {
  5027. source: "./media/characters/ona/front-alt.svg"
  5028. }
  5029. },
  5030. back: {
  5031. height: math.unit(8, "feet"),
  5032. weight: math.unit(120, "lb"),
  5033. name: "Back",
  5034. image: {
  5035. source: "./media/characters/ona/back.svg"
  5036. }
  5037. },
  5038. foot: {
  5039. height: math.unit(1.1, "feet"),
  5040. name: "Foot",
  5041. image: {
  5042. source: "./media/characters/ona/foot.svg"
  5043. }
  5044. }
  5045. },
  5046. [
  5047. {
  5048. name: "Megamacro",
  5049. height: math.unit(70, "km"),
  5050. default: true
  5051. },
  5052. {
  5053. name: "Gigamacro",
  5054. height: math.unit(681818, "miles")
  5055. },
  5056. {
  5057. name: "Examacro",
  5058. height: math.unit(3800000, "lightyears")
  5059. },
  5060. ]
  5061. ))
  5062. characterMakers.push(() => makeCharacter(
  5063. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5064. {
  5065. front: {
  5066. height: math.unit(12, "feet"),
  5067. weight: math.unit(3000, "lb"),
  5068. name: "Front",
  5069. image: {
  5070. source: "./media/characters/mech/front.svg",
  5071. extra: 2900 / 2770,
  5072. bottom: 110 / 3010
  5073. }
  5074. },
  5075. back: {
  5076. height: math.unit(12, "feet"),
  5077. weight: math.unit(3000, "lb"),
  5078. name: "Back",
  5079. image: {
  5080. source: "./media/characters/mech/back.svg",
  5081. extra: 3011 / 2890,
  5082. bottom: 94 / 3105
  5083. }
  5084. },
  5085. maw: {
  5086. height: math.unit(3.07, "feet"),
  5087. name: "Maw",
  5088. image: {
  5089. source: "./media/characters/mech/maw.svg"
  5090. }
  5091. },
  5092. head: {
  5093. height: math.unit(3.07, "feet"),
  5094. name: "Head",
  5095. image: {
  5096. source: "./media/characters/mech/head.svg"
  5097. }
  5098. },
  5099. dick: {
  5100. height: math.unit(1.43, "feet"),
  5101. name: "Dick",
  5102. image: {
  5103. source: "./media/characters/mech/dick.svg"
  5104. }
  5105. },
  5106. },
  5107. [
  5108. {
  5109. name: "Normal",
  5110. height: math.unit(12, "feet")
  5111. },
  5112. {
  5113. name: "Macro",
  5114. height: math.unit(300, "feet"),
  5115. default: true
  5116. },
  5117. {
  5118. name: "Macro+",
  5119. height: math.unit(1500, "feet")
  5120. },
  5121. ]
  5122. ))
  5123. characterMakers.push(() => makeCharacter(
  5124. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5125. {
  5126. front: {
  5127. height: math.unit(1.3, "meter"),
  5128. weight: math.unit(30, "kg"),
  5129. name: "Front",
  5130. image: {
  5131. source: "./media/characters/gregory/front.svg",
  5132. }
  5133. }
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(1.3, "meter"),
  5139. default: true
  5140. },
  5141. {
  5142. name: "Macro",
  5143. height: math.unit(20, "meter")
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(2.8, "meter"),
  5152. weight: math.unit(200, "kg"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/elory/front.svg",
  5156. }
  5157. }
  5158. },
  5159. [
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(2.8, "meter"),
  5163. default: true
  5164. },
  5165. {
  5166. name: "Macro",
  5167. height: math.unit(38, "meter")
  5168. }
  5169. ]
  5170. ))
  5171. characterMakers.push(() => makeCharacter(
  5172. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5173. {
  5174. front: {
  5175. height: math.unit(470, "feet"),
  5176. weight: math.unit(924, "tons"),
  5177. name: "Front",
  5178. image: {
  5179. source: "./media/characters/angelpatamon/front.svg",
  5180. }
  5181. }
  5182. },
  5183. [
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(470, "feet"),
  5187. default: true
  5188. },
  5189. {
  5190. name: "Deity Size I",
  5191. height: math.unit(28651.2, "km")
  5192. },
  5193. {
  5194. name: "Deity Size II",
  5195. height: math.unit(171907.2, "km")
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5201. {
  5202. side: {
  5203. height: math.unit(7.2, "meter"),
  5204. weight: math.unit(8.2, "tons"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/cryae/side.svg",
  5208. extra: 3500 / 1500
  5209. }
  5210. }
  5211. },
  5212. [
  5213. {
  5214. name: "Normal",
  5215. height: math.unit(7.2, "meter"),
  5216. default: true
  5217. }
  5218. ]
  5219. ))
  5220. characterMakers.push(() => makeCharacter(
  5221. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5222. {
  5223. front: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(175, "lb"),
  5226. name: "Front",
  5227. image: {
  5228. source: "./media/characters/xera/front.svg",
  5229. extra: 2377 / 1972,
  5230. bottom: 75.5 / 2452
  5231. }
  5232. },
  5233. side: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(175, "lb"),
  5236. name: "Side",
  5237. image: {
  5238. source: "./media/characters/xera/side.svg",
  5239. extra: 2345 / 2019,
  5240. bottom: 39.7 / 2384
  5241. }
  5242. },
  5243. back: {
  5244. height: math.unit(6, "feet"),
  5245. weight: math.unit(175, "lb"),
  5246. name: "Back",
  5247. image: {
  5248. source: "./media/characters/xera/back.svg",
  5249. extra: 2095 / 1984,
  5250. bottom: 67 / 2166
  5251. }
  5252. },
  5253. },
  5254. [
  5255. {
  5256. name: "Small",
  5257. height: math.unit(10, "feet")
  5258. },
  5259. {
  5260. name: "Macro",
  5261. height: math.unit(500, "meters"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Macro+",
  5266. height: math.unit(10, "km")
  5267. },
  5268. {
  5269. name: "Gigamacro",
  5270. height: math.unit(25000, "km")
  5271. },
  5272. {
  5273. name: "Teramacro",
  5274. height: math.unit(3e6, "km")
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5280. {
  5281. front: {
  5282. height: math.unit(6, "feet"),
  5283. weight: math.unit(175, "lb"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/nebula/front.svg",
  5287. extra: 2566 / 2362,
  5288. bottom: 81 / 2644
  5289. }
  5290. }
  5291. },
  5292. [
  5293. {
  5294. name: "Small",
  5295. height: math.unit(4.5, "meters")
  5296. },
  5297. {
  5298. name: "Macro",
  5299. height: math.unit(1500, "meters"),
  5300. default: true
  5301. },
  5302. {
  5303. name: "Megamacro",
  5304. height: math.unit(150, "km")
  5305. },
  5306. {
  5307. name: "Gigamacro",
  5308. height: math.unit(27000, "km")
  5309. }
  5310. ]
  5311. ))
  5312. characterMakers.push(() => makeCharacter(
  5313. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5314. {
  5315. front: {
  5316. height: math.unit(6, "feet"),
  5317. weight: math.unit(225, "lb"),
  5318. name: "Front",
  5319. image: {
  5320. source: "./media/characters/abysgar/front.svg",
  5321. extra: 1739/1614,
  5322. bottom: 71/1810
  5323. }
  5324. },
  5325. frontNsfw: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(225, "lb"),
  5328. name: "Front (NSFW)",
  5329. image: {
  5330. source: "./media/characters/abysgar/front-nsfw.svg",
  5331. extra: 1739/1614,
  5332. bottom: 71/1810
  5333. }
  5334. },
  5335. back: {
  5336. height: math.unit(4.6, "feet"),
  5337. weight: math.unit(225, "lb"),
  5338. name: "Back",
  5339. image: {
  5340. source: "./media/characters/abysgar/back.svg",
  5341. extra: 1384/1327,
  5342. bottom: 0/1384
  5343. }
  5344. },
  5345. head: {
  5346. height: math.unit(1.25, "feet"),
  5347. name: "Head",
  5348. image: {
  5349. source: "./media/characters/abysgar/head.svg",
  5350. extra: 669/569,
  5351. bottom: 0/669
  5352. }
  5353. },
  5354. },
  5355. [
  5356. {
  5357. name: "Small",
  5358. height: math.unit(4.5, "meters")
  5359. },
  5360. {
  5361. name: "Macro",
  5362. height: math.unit(1250, "meters"),
  5363. default: true
  5364. },
  5365. {
  5366. name: "Megamacro",
  5367. height: math.unit(125, "km")
  5368. },
  5369. {
  5370. name: "Gigamacro",
  5371. height: math.unit(26000, "km")
  5372. }
  5373. ]
  5374. ))
  5375. characterMakers.push(() => makeCharacter(
  5376. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5377. {
  5378. front: {
  5379. height: math.unit(6, "feet"),
  5380. weight: math.unit(180, "lb"),
  5381. name: "Front",
  5382. image: {
  5383. source: "./media/characters/yakuz/front.svg"
  5384. }
  5385. }
  5386. },
  5387. [
  5388. {
  5389. name: "Small",
  5390. height: math.unit(5, "meters")
  5391. },
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(1500, "meters"),
  5395. default: true
  5396. },
  5397. {
  5398. name: "Megamacro",
  5399. height: math.unit(200, "km")
  5400. },
  5401. {
  5402. name: "Gigamacro",
  5403. height: math.unit(100000, "km")
  5404. }
  5405. ]
  5406. ))
  5407. characterMakers.push(() => makeCharacter(
  5408. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5409. {
  5410. front: {
  5411. height: math.unit(6, "feet"),
  5412. weight: math.unit(175, "lb"),
  5413. name: "Front",
  5414. image: {
  5415. source: "./media/characters/mirova/front.svg",
  5416. extra: 3334 / 3071,
  5417. bottom: 42 / 3375.6
  5418. }
  5419. }
  5420. },
  5421. [
  5422. {
  5423. name: "Small",
  5424. height: math.unit(5, "meters")
  5425. },
  5426. {
  5427. name: "Macro",
  5428. height: math.unit(900, "meters"),
  5429. default: true
  5430. },
  5431. {
  5432. name: "Megamacro",
  5433. height: math.unit(135, "km")
  5434. },
  5435. {
  5436. name: "Gigamacro",
  5437. height: math.unit(20000, "km")
  5438. }
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5443. {
  5444. side: {
  5445. height: math.unit(28.35, "feet"),
  5446. weight: math.unit(99.75, "tons"),
  5447. name: "Side",
  5448. image: {
  5449. source: "./media/characters/asana-mech/side.svg",
  5450. extra: 923 / 699,
  5451. bottom: 50 / 975
  5452. }
  5453. },
  5454. chaingun: {
  5455. height: math.unit(7, "feet"),
  5456. weight: math.unit(2400, "lb"),
  5457. name: "Chaingun",
  5458. image: {
  5459. source: "./media/characters/asana-mech/chaingun.svg"
  5460. }
  5461. },
  5462. laser: {
  5463. height: math.unit(7.12, "feet"),
  5464. weight: math.unit(2000, "lb"),
  5465. name: "Laser",
  5466. image: {
  5467. source: "./media/characters/asana-mech/laser.svg"
  5468. }
  5469. },
  5470. },
  5471. [
  5472. {
  5473. name: "Normal",
  5474. height: math.unit(28.35, "feet"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Macro",
  5479. height: math.unit(2500, "feet")
  5480. },
  5481. {
  5482. name: "Megamacro",
  5483. height: math.unit(25, "miles")
  5484. },
  5485. {
  5486. name: "Examacro",
  5487. height: math.unit(6e8, "lightyears")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(5, "meters"),
  5496. weight: math.unit(1000, "kg"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/asche/front.svg",
  5500. extra: 1258 / 1190,
  5501. bottom: 47 / 1305
  5502. }
  5503. },
  5504. frontUnderwear: {
  5505. height: math.unit(5, "meters"),
  5506. weight: math.unit(1000, "kg"),
  5507. name: "Front (Underwear)",
  5508. image: {
  5509. source: "./media/characters/asche/front-underwear.svg",
  5510. extra: 1258 / 1190,
  5511. bottom: 47 / 1305
  5512. }
  5513. },
  5514. frontDressed: {
  5515. height: math.unit(5, "meters"),
  5516. weight: math.unit(1000, "kg"),
  5517. name: "Front (Dressed)",
  5518. image: {
  5519. source: "./media/characters/asche/front-dressed.svg",
  5520. extra: 1258 / 1190,
  5521. bottom: 47 / 1305
  5522. }
  5523. },
  5524. frontArmor: {
  5525. height: math.unit(5, "meters"),
  5526. weight: math.unit(1000, "kg"),
  5527. name: "Front (Armored)",
  5528. image: {
  5529. source: "./media/characters/asche/front-armored.svg",
  5530. extra: 1374 / 1308,
  5531. bottom: 23 / 1397
  5532. }
  5533. },
  5534. mp724: {
  5535. height: math.unit(0.96, "meters"),
  5536. weight: math.unit(38, "kg"),
  5537. name: "H&K MP724",
  5538. image: {
  5539. source: "./media/characters/asche/h&k-mp724.svg"
  5540. }
  5541. },
  5542. side: {
  5543. height: math.unit(5, "meters"),
  5544. weight: math.unit(1000, "kg"),
  5545. name: "Side",
  5546. image: {
  5547. source: "./media/characters/asche/side.svg",
  5548. extra: 1717 / 1609,
  5549. bottom: 0.005
  5550. }
  5551. },
  5552. back: {
  5553. height: math.unit(5, "meters"),
  5554. weight: math.unit(1000, "kg"),
  5555. name: "Back",
  5556. image: {
  5557. source: "./media/characters/asche/back.svg",
  5558. extra: 1570 / 1501
  5559. }
  5560. },
  5561. },
  5562. [
  5563. {
  5564. name: "DEFCON 5",
  5565. height: math.unit(5, "meters")
  5566. },
  5567. {
  5568. name: "DEFCON 4",
  5569. height: math.unit(500, "meters"),
  5570. default: true
  5571. },
  5572. {
  5573. name: "DEFCON 3",
  5574. height: math.unit(5, "km")
  5575. },
  5576. {
  5577. name: "DEFCON 2",
  5578. height: math.unit(500, "km")
  5579. },
  5580. {
  5581. name: "DEFCON 1",
  5582. height: math.unit(500000, "km")
  5583. },
  5584. {
  5585. name: "DEFCON 0",
  5586. height: math.unit(3, "gigaparsecs")
  5587. },
  5588. ]
  5589. ))
  5590. characterMakers.push(() => makeCharacter(
  5591. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5592. {
  5593. front: {
  5594. height: math.unit(7, "feet"),
  5595. weight: math.unit(92.7, "kg"),
  5596. name: "Front",
  5597. image: {
  5598. source: "./media/characters/gale/front.svg",
  5599. extra: 977/919,
  5600. bottom: 105/1082
  5601. }
  5602. },
  5603. side: {
  5604. height: math.unit(6.7, "feet"),
  5605. weight: math.unit(92.7, "kg"),
  5606. name: "Side",
  5607. image: {
  5608. source: "./media/characters/gale/side.svg",
  5609. extra: 978/922,
  5610. bottom: 140/1118
  5611. }
  5612. },
  5613. back: {
  5614. height: math.unit(7, "feet"),
  5615. weight: math.unit(92.7, "kg"),
  5616. name: "Back",
  5617. image: {
  5618. source: "./media/characters/gale/back.svg",
  5619. extra: 966/920,
  5620. bottom: 61/1027
  5621. }
  5622. },
  5623. maw: {
  5624. height: math.unit(2.23, "feet"),
  5625. name: "Maw",
  5626. image: {
  5627. source: "./media/characters/gale/maw.svg"
  5628. }
  5629. },
  5630. foot: {
  5631. height: math.unit(2.1, "feet"),
  5632. name: "Foot",
  5633. image: {
  5634. source: "./media/characters/gale/foot.svg"
  5635. }
  5636. },
  5637. },
  5638. [
  5639. {
  5640. name: "Normal",
  5641. height: math.unit(7, "feet")
  5642. },
  5643. {
  5644. name: "Macro",
  5645. height: math.unit(150, "feet"),
  5646. default: true
  5647. },
  5648. {
  5649. name: "Macro+",
  5650. height: math.unit(300, "feet")
  5651. },
  5652. ]
  5653. ))
  5654. characterMakers.push(() => makeCharacter(
  5655. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5656. {
  5657. front: {
  5658. height: math.unit(5 + 10/12, "feet"),
  5659. weight: math.unit(67, "kg"),
  5660. name: "Front",
  5661. image: {
  5662. source: "./media/characters/draylen/front.svg",
  5663. extra: 832/777,
  5664. bottom: 85/917
  5665. }
  5666. }
  5667. },
  5668. [
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(5 + 10/12, "feet")
  5672. },
  5673. {
  5674. name: "Macro",
  5675. height: math.unit(150, "feet"),
  5676. default: true
  5677. }
  5678. ]
  5679. ))
  5680. characterMakers.push(() => makeCharacter(
  5681. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5682. {
  5683. front: {
  5684. height: math.unit(7 + 9 / 12, "feet"),
  5685. weight: math.unit(379, "lbs"),
  5686. name: "Front",
  5687. image: {
  5688. source: "./media/characters/chez/front.svg"
  5689. }
  5690. },
  5691. side: {
  5692. height: math.unit(7 + 9 / 12, "feet"),
  5693. weight: math.unit(379, "lbs"),
  5694. name: "Side",
  5695. image: {
  5696. source: "./media/characters/chez/side.svg"
  5697. }
  5698. }
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(7 + 9 / 12, "feet"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "God King",
  5708. height: math.unit(9750000, "meters")
  5709. }
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5714. {
  5715. front: {
  5716. height: math.unit(6, "feet"),
  5717. weight: math.unit(275, "lbs"),
  5718. name: "Front",
  5719. image: {
  5720. source: "./media/characters/kaylum/front.svg",
  5721. bottom: 0.01,
  5722. extra: 1166 / 1031
  5723. }
  5724. },
  5725. frontWingless: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(275, "lbs"),
  5728. name: "Front (Wingless)",
  5729. image: {
  5730. source: "./media/characters/kaylum/front-wingless.svg",
  5731. bottom: 0.01,
  5732. extra: 1117 / 1031
  5733. }
  5734. }
  5735. },
  5736. [
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(3.05, "meters")
  5740. },
  5741. {
  5742. name: "Master",
  5743. height: math.unit(5.5, "meters")
  5744. },
  5745. {
  5746. name: "Rampage",
  5747. height: math.unit(19, "meters")
  5748. },
  5749. {
  5750. name: "Macro Lite",
  5751. height: math.unit(37, "meters")
  5752. },
  5753. {
  5754. name: "Hyper Predator",
  5755. height: math.unit(61, "meters")
  5756. },
  5757. {
  5758. name: "Macro",
  5759. height: math.unit(138, "meters"),
  5760. default: true
  5761. }
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5766. {
  5767. front: {
  5768. height: math.unit(5 + 5 / 12, "feet"),
  5769. weight: math.unit(120, "lbs"),
  5770. name: "Front",
  5771. image: {
  5772. source: "./media/characters/geta/front.svg",
  5773. extra: 1003/933,
  5774. bottom: 21/1024
  5775. }
  5776. },
  5777. paw: {
  5778. height: math.unit(0.35, "feet"),
  5779. name: "Paw",
  5780. image: {
  5781. source: "./media/characters/geta/paw.svg"
  5782. }
  5783. },
  5784. },
  5785. [
  5786. {
  5787. name: "Micro",
  5788. height: math.unit(3, "inches"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(5 + 5 / 12, "feet")
  5794. }
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5799. {
  5800. front: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(300, "lbs"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/tyrnn/front.svg"
  5806. }
  5807. }
  5808. },
  5809. [
  5810. {
  5811. name: "Main Height",
  5812. height: math.unit(355, "feet"),
  5813. default: true
  5814. },
  5815. {
  5816. name: "Fave. Height",
  5817. height: math.unit(2400, "feet")
  5818. }
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5823. {
  5824. front: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(300, "lbs"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/appledectomy/front.svg"
  5830. }
  5831. }
  5832. },
  5833. [
  5834. {
  5835. name: "Macro",
  5836. height: math.unit(2500, "feet")
  5837. },
  5838. {
  5839. name: "Megamacro",
  5840. height: math.unit(50, "miles"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Gigamacro",
  5845. height: math.unit(5000, "miles")
  5846. },
  5847. {
  5848. name: "Teramacro",
  5849. height: math.unit(250000, "miles")
  5850. },
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(6, "feet"),
  5858. weight: math.unit(200, "lbs"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/vulpes/front.svg",
  5862. extra: 573 / 543,
  5863. bottom: 0.033
  5864. }
  5865. },
  5866. side: {
  5867. height: math.unit(6, "feet"),
  5868. weight: math.unit(200, "lbs"),
  5869. name: "Side",
  5870. image: {
  5871. source: "./media/characters/vulpes/side.svg",
  5872. extra: 577 / 549,
  5873. bottom: 11 / 588
  5874. }
  5875. },
  5876. back: {
  5877. height: math.unit(6, "feet"),
  5878. weight: math.unit(200, "lbs"),
  5879. name: "Back",
  5880. image: {
  5881. source: "./media/characters/vulpes/back.svg",
  5882. extra: 573 / 549,
  5883. bottom: 20 / 593
  5884. }
  5885. },
  5886. feet: {
  5887. height: math.unit(1.276, "feet"),
  5888. name: "Feet",
  5889. image: {
  5890. source: "./media/characters/vulpes/feet.svg"
  5891. }
  5892. },
  5893. maw: {
  5894. height: math.unit(1.18, "feet"),
  5895. name: "Maw",
  5896. image: {
  5897. source: "./media/characters/vulpes/maw.svg"
  5898. }
  5899. },
  5900. },
  5901. [
  5902. {
  5903. name: "Micro",
  5904. height: math.unit(2, "inches")
  5905. },
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(6.3, "feet")
  5909. },
  5910. {
  5911. name: "Macro",
  5912. height: math.unit(850, "feet")
  5913. },
  5914. {
  5915. name: "Megamacro",
  5916. height: math.unit(7500, "feet"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Gigamacro",
  5921. height: math.unit(570000, "miles")
  5922. }
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5927. {
  5928. front: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(210, "lbs"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/rain-fallen/front.svg"
  5934. }
  5935. },
  5936. side: {
  5937. height: math.unit(6, "feet"),
  5938. weight: math.unit(210, "lbs"),
  5939. name: "Side",
  5940. image: {
  5941. source: "./media/characters/rain-fallen/side.svg"
  5942. }
  5943. },
  5944. back: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(210, "lbs"),
  5947. name: "Back",
  5948. image: {
  5949. source: "./media/characters/rain-fallen/back.svg"
  5950. }
  5951. },
  5952. feral: {
  5953. height: math.unit(9, "feet"),
  5954. weight: math.unit(700, "lbs"),
  5955. name: "Feral",
  5956. image: {
  5957. source: "./media/characters/rain-fallen/feral.svg"
  5958. }
  5959. },
  5960. },
  5961. [
  5962. {
  5963. name: "Meddling with Mortals",
  5964. height: math.unit(8 + 8/12, "feet")
  5965. },
  5966. {
  5967. name: "Normal",
  5968. height: math.unit(5, "meter")
  5969. },
  5970. {
  5971. name: "Macro",
  5972. height: math.unit(150, "meter"),
  5973. default: true
  5974. },
  5975. {
  5976. name: "Megamacro",
  5977. height: math.unit(278e6, "meter")
  5978. },
  5979. {
  5980. name: "Gigamacro",
  5981. height: math.unit(2e9, "meter")
  5982. },
  5983. {
  5984. name: "Teramacro",
  5985. height: math.unit(8e12, "meter")
  5986. },
  5987. {
  5988. name: "Devourer",
  5989. height: math.unit(14, "zettameters")
  5990. },
  5991. {
  5992. name: "Scarlet King",
  5993. height: math.unit(18, "yottameters")
  5994. },
  5995. {
  5996. name: "Void",
  5997. height: math.unit(1e88, "yottameters")
  5998. }
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6003. {
  6004. standing: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(180, "lbs"),
  6007. name: "Standing",
  6008. image: {
  6009. source: "./media/characters/zaakira/standing.svg",
  6010. extra: 1599/1504,
  6011. bottom: 39/1638
  6012. }
  6013. },
  6014. laying: {
  6015. height: math.unit(3.3, "feet"),
  6016. weight: math.unit(180, "lbs"),
  6017. name: "Laying",
  6018. image: {
  6019. source: "./media/characters/zaakira/laying.svg"
  6020. }
  6021. },
  6022. },
  6023. [
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(12, "feet")
  6027. },
  6028. {
  6029. name: "Macro",
  6030. height: math.unit(279, "feet"),
  6031. default: true
  6032. }
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6037. {
  6038. femSfw: {
  6039. height: math.unit(8, "feet"),
  6040. weight: math.unit(350, "lb"),
  6041. name: "Fem",
  6042. image: {
  6043. source: "./media/characters/sigvald/fem-sfw.svg",
  6044. extra: 182 / 164,
  6045. bottom: 8.7 / 190.5
  6046. }
  6047. },
  6048. femNsfw: {
  6049. height: math.unit(8, "feet"),
  6050. weight: math.unit(350, "lb"),
  6051. name: "Fem (NSFW)",
  6052. image: {
  6053. source: "./media/characters/sigvald/fem-nsfw.svg",
  6054. extra: 182 / 164,
  6055. bottom: 8.7 / 190.5
  6056. }
  6057. },
  6058. maleNsfw: {
  6059. height: math.unit(8, "feet"),
  6060. weight: math.unit(350, "lb"),
  6061. name: "Male (NSFW)",
  6062. image: {
  6063. source: "./media/characters/sigvald/male-nsfw.svg",
  6064. extra: 182 / 164,
  6065. bottom: 8.7 / 190.5
  6066. }
  6067. },
  6068. hermNsfw: {
  6069. height: math.unit(8, "feet"),
  6070. weight: math.unit(350, "lb"),
  6071. name: "Herm (NSFW)",
  6072. image: {
  6073. source: "./media/characters/sigvald/herm-nsfw.svg",
  6074. extra: 182 / 164,
  6075. bottom: 8.7 / 190.5
  6076. }
  6077. },
  6078. dick: {
  6079. height: math.unit(2.36, "feet"),
  6080. name: "Dick",
  6081. image: {
  6082. source: "./media/characters/sigvald/dick.svg"
  6083. }
  6084. },
  6085. eye: {
  6086. height: math.unit(0.31, "feet"),
  6087. name: "Eye",
  6088. image: {
  6089. source: "./media/characters/sigvald/eye.svg"
  6090. }
  6091. },
  6092. mouth: {
  6093. height: math.unit(0.92, "feet"),
  6094. name: "Mouth",
  6095. image: {
  6096. source: "./media/characters/sigvald/mouth.svg"
  6097. }
  6098. },
  6099. paws: {
  6100. height: math.unit(2.2, "feet"),
  6101. name: "Paws",
  6102. image: {
  6103. source: "./media/characters/sigvald/paws.svg"
  6104. }
  6105. }
  6106. },
  6107. [
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(8, "feet")
  6111. },
  6112. {
  6113. name: "Large",
  6114. height: math.unit(12, "feet")
  6115. },
  6116. {
  6117. name: "Larger",
  6118. height: math.unit(20, "feet")
  6119. },
  6120. {
  6121. name: "Macro",
  6122. height: math.unit(150, "feet")
  6123. },
  6124. {
  6125. name: "Macro+",
  6126. height: math.unit(200, "feet"),
  6127. default: true
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6133. {
  6134. anthro_front: {
  6135. height: math.unit(5 + 11/12, "feet"),
  6136. weight: math.unit(250, "lb"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/scott/anthro-front.svg",
  6140. extra: 851/781,
  6141. bottom: 54/905
  6142. },
  6143. form: "anthro",
  6144. default: true
  6145. },
  6146. anthro_side: {
  6147. height: math.unit(5.1, "feet"),
  6148. weight: math.unit(250, "lb"),
  6149. name: "Side",
  6150. image: {
  6151. source: "./media/characters/scott/anthro-side.svg"
  6152. },
  6153. form: "anthro",
  6154. },
  6155. anthro_dick: {
  6156. height: math.unit(1.33, "feet"),
  6157. name: "Dick",
  6158. image: {
  6159. source: "./media/characters/scott/anthro-dick.svg"
  6160. },
  6161. form: "anthro",
  6162. },
  6163. side: {
  6164. height: math.unit(12, "feet"),
  6165. weight: math.unit(2000, "kg"),
  6166. name: "Side",
  6167. image: {
  6168. source: "./media/characters/scott/side.svg",
  6169. extra: 754 / 724,
  6170. bottom: 0.069
  6171. },
  6172. form: "taur",
  6173. default: true
  6174. },
  6175. upright: {
  6176. height: math.unit(12, "feet"),
  6177. weight: math.unit(2000, "kg"),
  6178. name: "Upright",
  6179. image: {
  6180. source: "./media/characters/scott/upright.svg",
  6181. extra: 3881 / 3722,
  6182. bottom: 0.05
  6183. },
  6184. form: "taur",
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(5 + 11/12, "feet"),
  6191. default: true,
  6192. form: "anthro"
  6193. },
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(12, "feet"),
  6197. default: true,
  6198. form: "taur"
  6199. },
  6200. ],
  6201. {
  6202. "anthro": {
  6203. name: "Anthro",
  6204. default: true
  6205. },
  6206. "taur": {
  6207. name: "Taur",
  6208. },
  6209. }
  6210. ))
  6211. characterMakers.push(() => makeCharacter(
  6212. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6213. {
  6214. side: {
  6215. height: math.unit(8, "meters"),
  6216. weight: math.unit(84755, "lbs"),
  6217. name: "Side",
  6218. image: {
  6219. source: "./media/characters/tobias/side.svg",
  6220. extra: 1474 / 1096,
  6221. bottom: 38.9 / 1513.1235
  6222. }
  6223. },
  6224. maw: {
  6225. height: math.unit(2.3, "meters"),
  6226. name: "Maw",
  6227. image: {
  6228. source: "./media/characters/tobias/maw.svg"
  6229. }
  6230. },
  6231. burp: {
  6232. height: math.unit(2.85, "meters"),
  6233. name: "Burp",
  6234. image: {
  6235. source: "./media/characters/tobias/burp.svg"
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(8, "meters"),
  6243. default: true
  6244. },
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6249. {
  6250. front: {
  6251. height: math.unit(5.5, "feet"),
  6252. weight: math.unit(400, "lbs"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/kieran/front.svg",
  6256. extra: 2694 / 2364,
  6257. bottom: 217 / 2908
  6258. }
  6259. },
  6260. side: {
  6261. height: math.unit(5.5, "feet"),
  6262. weight: math.unit(400, "lbs"),
  6263. name: "Side",
  6264. image: {
  6265. source: "./media/characters/kieran/side.svg",
  6266. extra: 875 / 777,
  6267. bottom: 84.6 / 959
  6268. }
  6269. },
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(5.5, "feet"),
  6275. default: true
  6276. },
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6281. {
  6282. side: {
  6283. height: math.unit(2, "meters"),
  6284. weight: math.unit(70, "kg"),
  6285. name: "Side",
  6286. image: {
  6287. source: "./media/characters/sanya/side.svg",
  6288. bottom: 0.02,
  6289. extra: 1.02
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Small",
  6296. height: math.unit(2, "meters")
  6297. },
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(3, "meters")
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(16, "meters"),
  6305. default: true
  6306. },
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(2, "meters"),
  6314. weight: math.unit(120, "kg"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/miranda/front.svg",
  6318. extra: 195 / 185,
  6319. bottom: 10.9 / 206.5
  6320. }
  6321. },
  6322. back: {
  6323. height: math.unit(2, "meters"),
  6324. weight: math.unit(120, "kg"),
  6325. name: "Back",
  6326. image: {
  6327. source: "./media/characters/miranda/back.svg",
  6328. extra: 201 / 193,
  6329. bottom: 2.3 / 203.7
  6330. }
  6331. },
  6332. },
  6333. [
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(10, "feet"),
  6337. default: true
  6338. }
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "James", species: ["deer"], tags: ["anthro"] },
  6343. {
  6344. side: {
  6345. height: math.unit(2, "meters"),
  6346. weight: math.unit(100, "kg"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/james/front.svg",
  6350. extra: 10 / 8.5
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(8.5, "feet"),
  6358. default: true
  6359. }
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6364. {
  6365. side: {
  6366. height: math.unit(9.5, "feet"),
  6367. weight: math.unit(2500, "lbs"),
  6368. name: "Side",
  6369. image: {
  6370. source: "./media/characters/heather/side.svg"
  6371. }
  6372. },
  6373. },
  6374. [
  6375. {
  6376. name: "Normal",
  6377. height: math.unit(9.5, "feet"),
  6378. default: true
  6379. }
  6380. ]
  6381. ))
  6382. characterMakers.push(() => makeCharacter(
  6383. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6384. {
  6385. side: {
  6386. height: math.unit(6.5, "feet"),
  6387. weight: math.unit(400, "lbs"),
  6388. name: "Side",
  6389. image: {
  6390. source: "./media/characters/lukas/side.svg",
  6391. extra: 7.25 / 6.5
  6392. }
  6393. },
  6394. },
  6395. [
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(6.5, "feet"),
  6399. default: true
  6400. }
  6401. ]
  6402. ))
  6403. characterMakers.push(() => makeCharacter(
  6404. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6405. {
  6406. side: {
  6407. height: math.unit(5, "feet"),
  6408. weight: math.unit(3000, "lbs"),
  6409. name: "Side",
  6410. image: {
  6411. source: "./media/characters/louise/side.svg"
  6412. }
  6413. },
  6414. },
  6415. [
  6416. {
  6417. name: "Normal",
  6418. height: math.unit(5, "feet"),
  6419. default: true
  6420. }
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6425. {
  6426. side: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(150, "lbs"),
  6429. name: "Side",
  6430. image: {
  6431. source: "./media/characters/ramona/side.svg",
  6432. extra: 871/854,
  6433. bottom: 41/912
  6434. }
  6435. },
  6436. },
  6437. [
  6438. {
  6439. name: "Normal",
  6440. height: math.unit(6 + 4/12, "feet")
  6441. },
  6442. {
  6443. name: "Minimacro",
  6444. height: math.unit(5.3, "meters"),
  6445. default: true
  6446. },
  6447. {
  6448. name: "Macro",
  6449. height: math.unit(20, "stories")
  6450. },
  6451. {
  6452. name: "Macro+",
  6453. height: math.unit(50, "stories")
  6454. },
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6459. {
  6460. standing: {
  6461. height: math.unit(5.75, "feet"),
  6462. weight: math.unit(160, "lbs"),
  6463. name: "Standing",
  6464. image: {
  6465. source: "./media/characters/deerpuff/standing.svg",
  6466. extra: 682 / 624
  6467. }
  6468. },
  6469. sitting: {
  6470. height: math.unit(5.75 / 1.79, "feet"),
  6471. weight: math.unit(160, "lbs"),
  6472. name: "Sitting",
  6473. image: {
  6474. source: "./media/characters/deerpuff/sitting.svg",
  6475. bottom: 44 / 400,
  6476. extra: 1
  6477. }
  6478. },
  6479. taurLaying: {
  6480. height: math.unit(6, "feet"),
  6481. weight: math.unit(400, "lbs"),
  6482. name: "Taur (Laying)",
  6483. image: {
  6484. source: "./media/characters/deerpuff/taur-laying.svg"
  6485. }
  6486. },
  6487. },
  6488. [
  6489. {
  6490. name: "Puffball",
  6491. height: math.unit(6, "inches")
  6492. },
  6493. {
  6494. name: "Normalpuff",
  6495. height: math.unit(5.75, "feet")
  6496. },
  6497. {
  6498. name: "Macropuff",
  6499. height: math.unit(1500, "feet"),
  6500. default: true
  6501. },
  6502. {
  6503. name: "Megapuff",
  6504. height: math.unit(500, "miles")
  6505. },
  6506. {
  6507. name: "Gigapuff",
  6508. height: math.unit(250000, "miles")
  6509. },
  6510. {
  6511. name: "Omegapuff",
  6512. height: math.unit(1000, "lightyears")
  6513. },
  6514. ]
  6515. ))
  6516. characterMakers.push(() => makeCharacter(
  6517. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6518. {
  6519. stomping: {
  6520. height: math.unit(6, "feet"),
  6521. weight: math.unit(170, "lbs"),
  6522. name: "Stomping",
  6523. image: {
  6524. source: "./media/characters/vivian/stomping.svg"
  6525. }
  6526. },
  6527. sitting: {
  6528. height: math.unit(6 / 1.75, "feet"),
  6529. weight: math.unit(170, "lbs"),
  6530. name: "Sitting",
  6531. image: {
  6532. source: "./media/characters/vivian/sitting.svg",
  6533. bottom: 1 / 6.4,
  6534. extra: 1,
  6535. }
  6536. },
  6537. },
  6538. [
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(7, "feet"),
  6542. default: true
  6543. },
  6544. {
  6545. name: "Macro",
  6546. height: math.unit(10, "stories")
  6547. },
  6548. {
  6549. name: "Macro+",
  6550. height: math.unit(30, "stories")
  6551. },
  6552. {
  6553. name: "Megamacro",
  6554. height: math.unit(10, "miles")
  6555. },
  6556. {
  6557. name: "Megamacro+",
  6558. height: math.unit(2750000, "meters")
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(160, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/prince/front.svg",
  6571. extra: 1938/1682,
  6572. bottom: 45/1983
  6573. }
  6574. },
  6575. back: {
  6576. height: math.unit(6, "feet"),
  6577. weight: math.unit(160, "lbs"),
  6578. name: "Back",
  6579. image: {
  6580. source: "./media/characters/prince/back.svg",
  6581. extra: 1955/1726,
  6582. bottom: 6/1961
  6583. }
  6584. },
  6585. },
  6586. [
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(7.75, "feet"),
  6590. default: true
  6591. },
  6592. {
  6593. name: "Not cute",
  6594. height: math.unit(17, "feet")
  6595. },
  6596. {
  6597. name: "I said NOT",
  6598. height: math.unit(91, "feet")
  6599. },
  6600. {
  6601. name: "Please stop",
  6602. height: math.unit(560, "feet")
  6603. },
  6604. {
  6605. name: "What have you done",
  6606. height: math.unit(2200, "feet")
  6607. },
  6608. {
  6609. name: "Deer God",
  6610. height: math.unit(3.6, "miles")
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6616. {
  6617. standing: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(300, "lbs"),
  6620. name: "Standing",
  6621. image: {
  6622. source: "./media/characters/psymon/standing.svg",
  6623. extra: 1888 / 1810,
  6624. bottom: 0.05
  6625. }
  6626. },
  6627. slithering: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(300, "lbs"),
  6630. name: "Slithering",
  6631. image: {
  6632. source: "./media/characters/psymon/slithering.svg",
  6633. extra: 1330 / 1224
  6634. }
  6635. },
  6636. slitheringAlt: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(300, "lbs"),
  6639. name: "Slithering (Alt)",
  6640. image: {
  6641. source: "./media/characters/psymon/slithering-alt.svg",
  6642. extra: 1330 / 1224
  6643. }
  6644. },
  6645. },
  6646. [
  6647. {
  6648. name: "Normal",
  6649. height: math.unit(11.25, "feet"),
  6650. default: true
  6651. },
  6652. {
  6653. name: "Large",
  6654. height: math.unit(27, "feet")
  6655. },
  6656. {
  6657. name: "Giant",
  6658. height: math.unit(87, "feet")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(365, "feet")
  6663. },
  6664. {
  6665. name: "Megamacro",
  6666. height: math.unit(3, "miles")
  6667. },
  6668. {
  6669. name: "World Serpent",
  6670. height: math.unit(8000, "miles")
  6671. },
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(180, "lbs"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/daimos/front.svg",
  6683. extra: 4160 / 3897,
  6684. bottom: 0.021
  6685. }
  6686. }
  6687. },
  6688. [
  6689. {
  6690. name: "Normal",
  6691. height: math.unit(8, "feet"),
  6692. default: true
  6693. },
  6694. {
  6695. name: "Big Dog",
  6696. height: math.unit(22, "feet")
  6697. },
  6698. {
  6699. name: "Macro",
  6700. height: math.unit(127, "feet")
  6701. },
  6702. {
  6703. name: "Megamacro",
  6704. height: math.unit(3600, "feet")
  6705. },
  6706. ]
  6707. ))
  6708. characterMakers.push(() => makeCharacter(
  6709. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6710. {
  6711. side: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(180, "lbs"),
  6714. name: "Side",
  6715. image: {
  6716. source: "./media/characters/blake/side.svg",
  6717. extra: 1212 / 1120,
  6718. bottom: 0.05
  6719. }
  6720. },
  6721. crouched: {
  6722. height: math.unit(6 * 0.57, "feet"),
  6723. weight: math.unit(180, "lbs"),
  6724. name: "Crouched",
  6725. image: {
  6726. source: "./media/characters/blake/crouched.svg",
  6727. extra: 840 / 587,
  6728. bottom: 0.04
  6729. }
  6730. },
  6731. bent: {
  6732. height: math.unit(6 * 0.75, "feet"),
  6733. weight: math.unit(180, "lbs"),
  6734. name: "Bent",
  6735. image: {
  6736. source: "./media/characters/blake/bent.svg",
  6737. extra: 592 / 544,
  6738. bottom: 0.035
  6739. }
  6740. },
  6741. },
  6742. [
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(8 + 1 / 6, "feet"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Big Backside",
  6750. height: math.unit(37, "feet")
  6751. },
  6752. {
  6753. name: "Subway Shredder",
  6754. height: math.unit(72, "feet")
  6755. },
  6756. {
  6757. name: "City Carver",
  6758. height: math.unit(1675, "feet")
  6759. },
  6760. {
  6761. name: "Tectonic Tweaker",
  6762. height: math.unit(2300, "miles")
  6763. },
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(180, "lbs"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/guisetto/front.svg",
  6775. extra: 856 / 817,
  6776. bottom: 0.06
  6777. }
  6778. },
  6779. airborne: {
  6780. height: math.unit(6, "feet"),
  6781. weight: math.unit(180, "lbs"),
  6782. name: "Airborne",
  6783. image: {
  6784. source: "./media/characters/guisetto/airborne.svg",
  6785. extra: 584 / 525
  6786. }
  6787. },
  6788. },
  6789. [
  6790. {
  6791. name: "Normal",
  6792. height: math.unit(10 + 11 / 12, "feet"),
  6793. default: true
  6794. },
  6795. {
  6796. name: "Large",
  6797. height: math.unit(35, "feet")
  6798. },
  6799. {
  6800. name: "Macro",
  6801. height: math.unit(475, "feet")
  6802. },
  6803. ]
  6804. ))
  6805. characterMakers.push(() => makeCharacter(
  6806. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6807. {
  6808. front: {
  6809. height: math.unit(6, "feet"),
  6810. weight: math.unit(180, "lbs"),
  6811. name: "Front",
  6812. image: {
  6813. source: "./media/characters/luxor/front.svg",
  6814. extra: 2940 / 2152
  6815. }
  6816. },
  6817. back: {
  6818. height: math.unit(6, "feet"),
  6819. weight: math.unit(180, "lbs"),
  6820. name: "Back",
  6821. image: {
  6822. source: "./media/characters/luxor/back.svg",
  6823. extra: 1083 / 960
  6824. }
  6825. },
  6826. },
  6827. [
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(5 + 5 / 6, "feet"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Lamp",
  6835. height: math.unit(50, "feet")
  6836. },
  6837. {
  6838. name: "Lämp",
  6839. height: math.unit(300, "feet")
  6840. },
  6841. {
  6842. name: "The sun is a lamp",
  6843. height: math.unit(250000, "miles")
  6844. },
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6849. {
  6850. front: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(50, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/huoyan/front.svg"
  6856. }
  6857. },
  6858. side: {
  6859. height: math.unit(6, "feet"),
  6860. weight: math.unit(180, "lbs"),
  6861. name: "Side",
  6862. image: {
  6863. source: "./media/characters/huoyan/side.svg"
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Chef",
  6870. height: math.unit(9, "feet")
  6871. },
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(65, "feet"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(780, "feet")
  6880. },
  6881. {
  6882. name: "Flaming Mountain",
  6883. height: math.unit(4.8, "miles")
  6884. },
  6885. {
  6886. name: "Celestial",
  6887. height: math.unit(765000, "miles")
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(5 + 3 / 4, "feet"),
  6896. weight: math.unit(120, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/tails/front.svg"
  6900. }
  6901. }
  6902. },
  6903. [
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(5 + 3 / 4, "feet"),
  6907. default: true
  6908. }
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(4, "feet"),
  6916. weight: math.unit(50, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/rainy/front.svg"
  6920. }
  6921. }
  6922. },
  6923. [
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(800, "feet"),
  6927. default: true
  6928. }
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(150, "lbs"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/rainier/front.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Micro",
  6946. height: math.unit(2, "mm"),
  6947. default: true
  6948. }
  6949. ]
  6950. ))
  6951. characterMakers.push(() => makeCharacter(
  6952. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6953. {
  6954. front: {
  6955. height: math.unit(8 + 4/12, "feet"),
  6956. weight: math.unit(450, "kilograms"),
  6957. name: "Front",
  6958. image: {
  6959. source: "./media/characters/andy-renard/front.svg",
  6960. extra: 862/809,
  6961. bottom: 85/947
  6962. },
  6963. extraAttributes: {
  6964. "pawSize": {
  6965. name: "Paw Size",
  6966. power: 2,
  6967. type: "area",
  6968. base: math.unit(0.45*0.3, "meters^2")
  6969. },
  6970. "handSize": {
  6971. name: "Hand Size",
  6972. power: 2,
  6973. type: "area",
  6974. base: math.unit(0.4 * 0.3, "meters^2")
  6975. },
  6976. "cockSize": {
  6977. name: "Cock Length",
  6978. power: 1,
  6979. type: "length",
  6980. base: math.unit(0.75, "meters")
  6981. },
  6982. "ballDiameter": {
  6983. name: "Ball Diameter",
  6984. power: 1,
  6985. type: "length",
  6986. base: math.unit(0.3, "meters")
  6987. },
  6988. "ballVolume": {
  6989. name: "Ball Volume",
  6990. power: 3,
  6991. type: "volume",
  6992. base: math.unit(0.01413716694, "meters^3")
  6993. },
  6994. }
  6995. },
  6996. back: {
  6997. height: math.unit(8 + 4/12, "feet"),
  6998. weight: math.unit(450, "kilograms"),
  6999. name: "Back",
  7000. image: {
  7001. source: "./media/characters/andy-renard/back.svg",
  7002. extra: 1112/1033,
  7003. bottom: 64/1176
  7004. },
  7005. extraAttributes: {
  7006. "pawSize": {
  7007. name: "Paw Size",
  7008. power: 2,
  7009. type: "area",
  7010. base: math.unit(0.45*0.3, "meters^2")
  7011. },
  7012. "handSize": {
  7013. name: "Hand Size",
  7014. power: 2,
  7015. type: "area",
  7016. base: math.unit(0.4 * 0.3, "meters^2")
  7017. },
  7018. "cockSize": {
  7019. name: "Cock Length",
  7020. power: 1,
  7021. type: "length",
  7022. base: math.unit(0.75, "meters")
  7023. },
  7024. "ballDiameter": {
  7025. name: "Ball Diameter",
  7026. power: 1,
  7027. type: "length",
  7028. base: math.unit(0.3, "meters")
  7029. },
  7030. "ballVolume": {
  7031. name: "Ball Volume",
  7032. power: 3,
  7033. type: "volume",
  7034. base: math.unit(0.01413716694, "meters^3")
  7035. },
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Tall",
  7042. height: math.unit(6 + 8/12, "feet")
  7043. },
  7044. {
  7045. name: "Very Tall",
  7046. height: math.unit(8 + 4/12, "feet")
  7047. },
  7048. {
  7049. name: "Mini Macro",
  7050. height: math.unit(15, "feet"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Giant",
  7055. height: math.unit(50, "feet")
  7056. },
  7057. {
  7058. name: "Nice",
  7059. height: math.unit(69, "feet")
  7060. },
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(100, "feet")
  7064. },
  7065. {
  7066. name: "Enormous",
  7067. height: math.unit(500, "feet")
  7068. },
  7069. {
  7070. name: "Gargantuan",
  7071. height: math.unit(1000, "feet")
  7072. },
  7073. {
  7074. name: "Mega",
  7075. height: math.unit(1, "mile")
  7076. },
  7077. {
  7078. name: "Giga",
  7079. height: math.unit(50, "miles")
  7080. },
  7081. {
  7082. name: "Tera",
  7083. height: math.unit(1000, "miles")
  7084. },
  7085. {
  7086. name: "Cosmic",
  7087. height: math.unit(1.5, "galaxies")
  7088. },
  7089. {
  7090. name: "God",
  7091. height: math.unit(1.5, "universes")
  7092. },
  7093. {
  7094. name: "Chief Execute God",
  7095. height: math.unit(1.5, "multiverses")
  7096. },
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(6, "feet"),
  7104. weight: math.unit(210, "lbs"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/cimmaron/front-sfw.svg",
  7108. extra: 701 / 676,
  7109. bottom: 0.046
  7110. }
  7111. },
  7112. back: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(210, "lbs"),
  7115. name: "Back",
  7116. image: {
  7117. source: "./media/characters/cimmaron/back-sfw.svg",
  7118. extra: 701 / 676,
  7119. bottom: 0.046
  7120. }
  7121. },
  7122. frontNsfw: {
  7123. height: math.unit(6, "feet"),
  7124. weight: math.unit(210, "lbs"),
  7125. name: "Front (NSFW)",
  7126. image: {
  7127. source: "./media/characters/cimmaron/front-nsfw.svg",
  7128. extra: 701 / 676,
  7129. bottom: 0.046
  7130. }
  7131. },
  7132. backNsfw: {
  7133. height: math.unit(6, "feet"),
  7134. weight: math.unit(210, "lbs"),
  7135. name: "Back (NSFW)",
  7136. image: {
  7137. source: "./media/characters/cimmaron/back-nsfw.svg",
  7138. extra: 701 / 676,
  7139. bottom: 0.046
  7140. }
  7141. },
  7142. dick: {
  7143. height: math.unit(1.714, "feet"),
  7144. name: "Dick",
  7145. image: {
  7146. source: "./media/characters/cimmaron/dick.svg"
  7147. }
  7148. },
  7149. },
  7150. [
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(6, "feet"),
  7154. default: true
  7155. },
  7156. {
  7157. name: "Macro Mayor",
  7158. height: math.unit(350, "meters")
  7159. },
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(6, "feet"),
  7167. weight: math.unit(200, "lbs"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/akari/front.svg",
  7171. extra: 962 / 901,
  7172. bottom: 0.04
  7173. }
  7174. }
  7175. },
  7176. [
  7177. {
  7178. name: "Micro",
  7179. height: math.unit(5, "inches"),
  7180. default: true
  7181. },
  7182. {
  7183. name: "Normal",
  7184. height: math.unit(7, "feet")
  7185. },
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7190. {
  7191. front: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(140, "lbs"),
  7194. name: "Front",
  7195. image: {
  7196. source: "./media/characters/cynosura/front.svg",
  7197. extra: 437/410,
  7198. bottom: 9/446
  7199. }
  7200. },
  7201. back: {
  7202. height: math.unit(6, "feet"),
  7203. weight: math.unit(140, "lbs"),
  7204. name: "Back",
  7205. image: {
  7206. source: "./media/characters/cynosura/back.svg",
  7207. extra: 1304/1160,
  7208. bottom: 71/1375
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Micro",
  7215. height: math.unit(4, "inches")
  7216. },
  7217. {
  7218. name: "Normal",
  7219. height: math.unit(5.75, "feet"),
  7220. default: true
  7221. },
  7222. {
  7223. name: "Tall",
  7224. height: math.unit(10, "feet")
  7225. },
  7226. {
  7227. name: "Big",
  7228. height: math.unit(20, "feet")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(50, "feet")
  7233. },
  7234. ]
  7235. ))
  7236. characterMakers.push(() => makeCharacter(
  7237. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7238. {
  7239. front: {
  7240. height: math.unit(13 + 2/12, "feet"),
  7241. weight: math.unit(800, "kg"),
  7242. name: "Front",
  7243. image: {
  7244. source: "./media/characters/gin/front.svg",
  7245. extra: 1312/1191,
  7246. bottom: 45/1357
  7247. }
  7248. },
  7249. mouth: {
  7250. height: math.unit(2.39 * 1.8, "feet"),
  7251. name: "Mouth",
  7252. image: {
  7253. source: "./media/characters/gin/mouth.svg"
  7254. }
  7255. },
  7256. hand: {
  7257. height: math.unit(1.57 * 2.19, "feet"),
  7258. name: "Hand",
  7259. image: {
  7260. source: "./media/characters/gin/hand.svg"
  7261. }
  7262. },
  7263. foot: {
  7264. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7265. name: "Foot",
  7266. image: {
  7267. source: "./media/characters/gin/foot.svg"
  7268. }
  7269. },
  7270. sole: {
  7271. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7272. name: "Sole",
  7273. image: {
  7274. source: "./media/characters/gin/sole.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Very Small",
  7281. height: math.unit(13 + 2 / 12, "feet")
  7282. },
  7283. {
  7284. name: "Micro",
  7285. height: math.unit(600, "miles")
  7286. },
  7287. {
  7288. name: "Regular",
  7289. height: math.unit(20, "earths"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(2.2, "solarradii")
  7295. },
  7296. {
  7297. name: "Teramacro",
  7298. height: math.unit(1.2, "galaxies")
  7299. },
  7300. {
  7301. name: "Omegamacro",
  7302. height: math.unit(200, "universes")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(6 + 1 / 6, "feet"),
  7311. weight: math.unit(178, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/guy/front.svg"
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(6 + 1 / 6, "feet"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Large",
  7326. height: math.unit(25 + 7 / 12, "feet")
  7327. },
  7328. {
  7329. name: "Macro",
  7330. height: math.unit(60 + 9 / 12, "feet")
  7331. },
  7332. {
  7333. name: "Macro+",
  7334. height: math.unit(246, "feet")
  7335. },
  7336. {
  7337. name: "Macro++",
  7338. height: math.unit(878, "feet")
  7339. }
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(9, "feet"),
  7347. weight: math.unit(800, "lbs"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/tiberius/front.svg",
  7351. extra: 2295 / 2071
  7352. }
  7353. },
  7354. back: {
  7355. height: math.unit(9, "feet"),
  7356. weight: math.unit(800, "lbs"),
  7357. name: "Back",
  7358. image: {
  7359. source: "./media/characters/tiberius/back.svg",
  7360. extra: 2373 / 2160
  7361. }
  7362. },
  7363. },
  7364. [
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(9, "feet"),
  7368. default: true
  7369. }
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7374. {
  7375. front: {
  7376. height: math.unit(6, "feet"),
  7377. weight: math.unit(600, "lbs"),
  7378. name: "Front",
  7379. image: {
  7380. source: "./media/characters/surgo/front.svg",
  7381. extra: 3591 / 2227
  7382. }
  7383. },
  7384. back: {
  7385. height: math.unit(6, "feet"),
  7386. weight: math.unit(600, "lbs"),
  7387. name: "Back",
  7388. image: {
  7389. source: "./media/characters/surgo/back.svg",
  7390. extra: 3557 / 2228
  7391. }
  7392. },
  7393. laying: {
  7394. height: math.unit(6 * 0.85, "feet"),
  7395. weight: math.unit(600, "lbs"),
  7396. name: "Laying",
  7397. image: {
  7398. source: "./media/characters/surgo/laying.svg"
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Normal",
  7405. height: math.unit(6, "feet"),
  7406. default: true
  7407. }
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7412. {
  7413. side: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(150, "lbs"),
  7416. name: "Side",
  7417. image: {
  7418. source: "./media/characters/cibus/side.svg",
  7419. extra: 800 / 400
  7420. }
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "Normal",
  7426. height: math.unit(6, "feet"),
  7427. default: true
  7428. }
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(240, "lbs"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/nibbles/front.svg"
  7440. }
  7441. },
  7442. side: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(240, "lbs"),
  7445. name: "Side",
  7446. image: {
  7447. source: "./media/characters/nibbles/side.svg"
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(9, "feet"),
  7455. default: true
  7456. }
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7461. {
  7462. side: {
  7463. height: math.unit(5 + 1 / 6, "feet"),
  7464. weight: math.unit(130, "lbs"),
  7465. name: "Side",
  7466. image: {
  7467. source: "./media/characters/rikky/side.svg",
  7468. extra: 851 / 801
  7469. }
  7470. },
  7471. },
  7472. [
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(5 + 1 / 6, "feet")
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(152, "feet"),
  7480. default: true
  7481. },
  7482. {
  7483. name: "Megamacro",
  7484. height: math.unit(7, "miles")
  7485. }
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7490. {
  7491. side: {
  7492. height: math.unit(370, "cm"),
  7493. weight: math.unit(350, "lbs"),
  7494. name: "Side",
  7495. image: {
  7496. source: "./media/characters/malfressa/side.svg"
  7497. }
  7498. },
  7499. walking: {
  7500. height: math.unit(370, "cm"),
  7501. weight: math.unit(350, "lbs"),
  7502. name: "Walking",
  7503. image: {
  7504. source: "./media/characters/malfressa/walking.svg"
  7505. }
  7506. },
  7507. feral: {
  7508. height: math.unit(2500, "cm"),
  7509. weight: math.unit(100000, "lbs"),
  7510. name: "Feral",
  7511. image: {
  7512. source: "./media/characters/malfressa/feral.svg",
  7513. extra: 2108 / 837,
  7514. bottom: 0.02
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(370, "cm")
  7522. },
  7523. {
  7524. name: "Macro",
  7525. height: math.unit(300, "meters"),
  7526. default: true
  7527. }
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(6, "feet"),
  7535. weight: math.unit(60, "kg"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/jaro/front.svg",
  7539. extra: 845/817,
  7540. bottom: 45/890
  7541. }
  7542. },
  7543. back: {
  7544. height: math.unit(6, "feet"),
  7545. weight: math.unit(60, "kg"),
  7546. name: "Back",
  7547. image: {
  7548. source: "./media/characters/jaro/back.svg",
  7549. extra: 847/817,
  7550. bottom: 34/881
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Micro",
  7557. height: math.unit(7, "inches")
  7558. },
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(5.5, "feet"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Minimacro",
  7566. height: math.unit(20, "feet")
  7567. },
  7568. {
  7569. name: "Macro",
  7570. height: math.unit(200, "meters")
  7571. }
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(195, "lb"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/rogue/front.svg"
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(90, "feet"),
  7590. default: true
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7596. {
  7597. standing: {
  7598. height: math.unit(5 + 8 / 12, "feet"),
  7599. weight: math.unit(140, "lb"),
  7600. name: "Standing",
  7601. image: {
  7602. source: "./media/characters/piper/standing.svg",
  7603. extra: 1440/1284,
  7604. bottom: 66/1506
  7605. }
  7606. },
  7607. running: {
  7608. height: math.unit(5 + 8 / 12, "feet"),
  7609. weight: math.unit(140, "lb"),
  7610. name: "Running",
  7611. image: {
  7612. source: "./media/characters/piper/running.svg",
  7613. extra: 3948/3655,
  7614. bottom: 0/3948
  7615. }
  7616. },
  7617. sole: {
  7618. height: math.unit(0.81, "feet"),
  7619. weight: math.unit(2, "kg"),
  7620. name: "Sole",
  7621. image: {
  7622. source: "./media/characters/piper/sole.svg"
  7623. }
  7624. },
  7625. nipple: {
  7626. height: math.unit(0.25, "feet"),
  7627. weight: math.unit(1.5, "lb"),
  7628. name: "Nipple",
  7629. image: {
  7630. source: "./media/characters/piper/nipple.svg"
  7631. }
  7632. },
  7633. head: {
  7634. height: math.unit(1.1, "feet"),
  7635. name: "Head",
  7636. image: {
  7637. source: "./media/characters/piper/head.svg"
  7638. }
  7639. },
  7640. },
  7641. [
  7642. {
  7643. name: "Micro",
  7644. height: math.unit(2, "inches")
  7645. },
  7646. {
  7647. name: "Normal",
  7648. height: math.unit(5 + 8 / 12, "feet")
  7649. },
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(250, "feet"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Megamacro",
  7657. height: math.unit(7, "miles")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(220, "lb"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/gemini/front.svg"
  7670. }
  7671. },
  7672. back: {
  7673. height: math.unit(6, "feet"),
  7674. weight: math.unit(220, "lb"),
  7675. name: "Back",
  7676. image: {
  7677. source: "./media/characters/gemini/back.svg"
  7678. }
  7679. },
  7680. kneeling: {
  7681. height: math.unit(6 / 1.5, "feet"),
  7682. weight: math.unit(220, "lb"),
  7683. name: "Kneeling",
  7684. image: {
  7685. source: "./media/characters/gemini/kneeling.svg",
  7686. bottom: 0.02
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(300, "meters"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Megamacro",
  7698. height: math.unit(6900, "meters")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7704. {
  7705. anthro: {
  7706. height: math.unit(2.35, "meters"),
  7707. weight: math.unit(73, "kg"),
  7708. name: "Anthro",
  7709. image: {
  7710. source: "./media/characters/alicia/anthro.svg",
  7711. extra: 2571 / 2385,
  7712. bottom: 75 / 2648
  7713. }
  7714. },
  7715. paw: {
  7716. height: math.unit(1.32, "feet"),
  7717. name: "Paw",
  7718. image: {
  7719. source: "./media/characters/alicia/paw.svg"
  7720. }
  7721. },
  7722. feral: {
  7723. height: math.unit(1.69, "meters"),
  7724. weight: math.unit(73, "kg"),
  7725. name: "Feral",
  7726. image: {
  7727. source: "./media/characters/alicia/feral.svg",
  7728. extra: 2123 / 1715,
  7729. bottom: 222 / 2349
  7730. }
  7731. },
  7732. },
  7733. [
  7734. {
  7735. name: "Normal",
  7736. height: math.unit(2.35, "meters")
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(60, "meters"),
  7741. default: true
  7742. },
  7743. {
  7744. name: "Megamacro",
  7745. height: math.unit(10000, "kilometers")
  7746. },
  7747. ]
  7748. ))
  7749. characterMakers.push(() => makeCharacter(
  7750. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7751. {
  7752. front: {
  7753. height: math.unit(7, "feet"),
  7754. weight: math.unit(250, "lbs"),
  7755. name: "Front",
  7756. image: {
  7757. source: "./media/characters/archy/front.svg"
  7758. }
  7759. }
  7760. },
  7761. [
  7762. {
  7763. name: "Micro",
  7764. height: math.unit(1, "inch")
  7765. },
  7766. {
  7767. name: "Shorty",
  7768. height: math.unit(5, "feet")
  7769. },
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(7, "feet")
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(600, "meters"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Megamacro",
  7781. height: math.unit(1, "mile")
  7782. },
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(1.65, "meters"),
  7790. weight: math.unit(74, "kg"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/berri/front.svg",
  7794. extra: 857 / 837,
  7795. bottom: 18 / 877
  7796. }
  7797. },
  7798. bum: {
  7799. height: math.unit(1.46, "feet"),
  7800. name: "Bum",
  7801. image: {
  7802. source: "./media/characters/berri/bum.svg"
  7803. }
  7804. },
  7805. mouth: {
  7806. height: math.unit(0.44, "feet"),
  7807. name: "Mouth",
  7808. image: {
  7809. source: "./media/characters/berri/mouth.svg"
  7810. }
  7811. },
  7812. paw: {
  7813. height: math.unit(0.826, "feet"),
  7814. name: "Paw",
  7815. image: {
  7816. source: "./media/characters/berri/paw.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(1.65, "meters")
  7824. },
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(60, "m"),
  7828. default: true
  7829. },
  7830. {
  7831. name: "Megamacro",
  7832. height: math.unit(9.213, "km")
  7833. },
  7834. {
  7835. name: "Planet Eater",
  7836. height: math.unit(489, "megameters")
  7837. },
  7838. {
  7839. name: "Teramacro",
  7840. height: math.unit(2471635000000, "meters")
  7841. },
  7842. {
  7843. name: "Examacro",
  7844. height: math.unit(8.0624e+26, "meters")
  7845. }
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7850. {
  7851. front: {
  7852. height: math.unit(1.72, "meters"),
  7853. weight: math.unit(68, "kg"),
  7854. name: "Front",
  7855. image: {
  7856. source: "./media/characters/lexi/front.svg"
  7857. }
  7858. }
  7859. },
  7860. [
  7861. {
  7862. name: "Very Smol",
  7863. height: math.unit(10, "mm")
  7864. },
  7865. {
  7866. name: "Micro",
  7867. height: math.unit(6.8, "cm"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Normal",
  7872. height: math.unit(1.72, "m")
  7873. }
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(1.69, "meters"),
  7881. weight: math.unit(68, "kg"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/martin/front.svg",
  7885. extra: 596 / 581
  7886. }
  7887. }
  7888. },
  7889. [
  7890. {
  7891. name: "Micro",
  7892. height: math.unit(6.85, "cm"),
  7893. default: true
  7894. },
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(1.69, "m")
  7898. }
  7899. ]
  7900. ))
  7901. characterMakers.push(() => makeCharacter(
  7902. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7903. {
  7904. front: {
  7905. height: math.unit(1.69, "meters"),
  7906. weight: math.unit(68, "kg"),
  7907. name: "Front",
  7908. image: {
  7909. source: "./media/characters/juno/front.svg"
  7910. }
  7911. }
  7912. },
  7913. [
  7914. {
  7915. name: "Micro",
  7916. height: math.unit(7, "cm")
  7917. },
  7918. {
  7919. name: "Normal",
  7920. height: math.unit(1.89, "m")
  7921. },
  7922. {
  7923. name: "Macro",
  7924. height: math.unit(353, "meters"),
  7925. default: true
  7926. }
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(1.93, "meters"),
  7934. weight: math.unit(83, "kg"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/samantha/front.svg"
  7938. }
  7939. },
  7940. frontClothed: {
  7941. height: math.unit(1.93, "meters"),
  7942. weight: math.unit(83, "kg"),
  7943. name: "Front (Clothed)",
  7944. image: {
  7945. source: "./media/characters/samantha/front-clothed.svg"
  7946. }
  7947. },
  7948. back: {
  7949. height: math.unit(1.93, "meters"),
  7950. weight: math.unit(83, "kg"),
  7951. name: "Back",
  7952. image: {
  7953. source: "./media/characters/samantha/back.svg"
  7954. }
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "Normal",
  7960. height: math.unit(1.93, "m")
  7961. },
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(74, "meters"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Macro+",
  7969. height: math.unit(223, "meters"),
  7970. },
  7971. {
  7972. name: "Megamacro",
  7973. height: math.unit(8381, "meters"),
  7974. },
  7975. {
  7976. name: "Megamacro+",
  7977. height: math.unit(12000, "kilometers")
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7983. {
  7984. front: {
  7985. height: math.unit(1.92, "meters"),
  7986. weight: math.unit(80, "kg"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/dr-clay/front.svg"
  7990. }
  7991. },
  7992. frontClothed: {
  7993. height: math.unit(1.92, "meters"),
  7994. weight: math.unit(80, "kg"),
  7995. name: "Front (Clothed)",
  7996. image: {
  7997. source: "./media/characters/dr-clay/front-clothed.svg"
  7998. }
  7999. }
  8000. },
  8001. [
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(1.92, "m")
  8005. },
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(214, "meters"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Macro+",
  8013. height: math.unit(12.237, "meters"),
  8014. },
  8015. {
  8016. name: "Megamacro",
  8017. height: math.unit(557, "megameters"),
  8018. },
  8019. {
  8020. name: "Unimaginable",
  8021. height: math.unit(120e9, "lightyears")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(2, "meters"),
  8030. weight: math.unit(80, "kg"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8034. }
  8035. }
  8036. },
  8037. [
  8038. {
  8039. name: "Teramacro",
  8040. height: math.unit(500000, "lightyears"),
  8041. default: true
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8047. {
  8048. crux: {
  8049. height: math.unit(2, "meters"),
  8050. weight: math.unit(150, "kg"),
  8051. name: "Crux",
  8052. image: {
  8053. source: "./media/characters/vemus/crux.svg",
  8054. extra: 1074/936,
  8055. bottom: 23/1097
  8056. }
  8057. },
  8058. skunkTanuki: {
  8059. height: math.unit(2, "meters"),
  8060. weight: math.unit(150, "kg"),
  8061. name: "Skunk-Tanuki",
  8062. image: {
  8063. source: "./media/characters/vemus/skunk-tanuki.svg",
  8064. extra: 926/893,
  8065. bottom: 20/946
  8066. }
  8067. },
  8068. },
  8069. [
  8070. {
  8071. name: "Normal",
  8072. height: math.unit(4, "meters"),
  8073. default: true
  8074. },
  8075. {
  8076. name: "Big",
  8077. height: math.unit(8, "meters")
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(100, "meters")
  8082. },
  8083. {
  8084. name: "Macro+",
  8085. height: math.unit(1500, "meters")
  8086. },
  8087. {
  8088. name: "Stellar",
  8089. height: math.unit(14e8, "meters")
  8090. },
  8091. ]
  8092. ))
  8093. characterMakers.push(() => makeCharacter(
  8094. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8095. {
  8096. front: {
  8097. height: math.unit(2, "meters"),
  8098. weight: math.unit(70, "kg"),
  8099. name: "Front",
  8100. image: {
  8101. source: "./media/characters/beherit/front.svg",
  8102. extra: 1234/1109,
  8103. bottom: 55/1289
  8104. }
  8105. }
  8106. },
  8107. [
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(6, "feet")
  8111. },
  8112. {
  8113. name: "Lorg",
  8114. height: math.unit(25, "feet"),
  8115. default: true
  8116. },
  8117. {
  8118. name: "Lorger",
  8119. height: math.unit(75, "feet")
  8120. },
  8121. {
  8122. name: "Macro",
  8123. height: math.unit(200, "meters")
  8124. },
  8125. ]
  8126. ))
  8127. characterMakers.push(() => makeCharacter(
  8128. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8129. {
  8130. front: {
  8131. height: math.unit(2, "meters"),
  8132. weight: math.unit(150, "kg"),
  8133. name: "Front",
  8134. image: {
  8135. source: "./media/characters/everett/front.svg",
  8136. extra: 1017/866,
  8137. bottom: 86/1103
  8138. }
  8139. },
  8140. paw: {
  8141. height: math.unit(2 / 3.6, "meters"),
  8142. name: "Paw",
  8143. image: {
  8144. source: "./media/characters/everett/paw.svg"
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Normal",
  8151. height: math.unit(15, "feet"),
  8152. default: true
  8153. },
  8154. {
  8155. name: "Lorg",
  8156. height: math.unit(70, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Lorger",
  8161. height: math.unit(250, "feet")
  8162. },
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(500, "meters")
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(2, "meters"),
  8174. weight: math.unit(86, "kg"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/rose/front.svg",
  8178. extra: 1785/1636,
  8179. bottom: 30/1815
  8180. },
  8181. form: "liom",
  8182. default: true
  8183. },
  8184. frontSporty: {
  8185. height: math.unit(2, "meters"),
  8186. weight: math.unit(86, "kg"),
  8187. name: "Front (Sporty)",
  8188. image: {
  8189. source: "./media/characters/rose/front-sporty.svg",
  8190. extra: 350/335,
  8191. bottom: 10/360
  8192. },
  8193. form: "liom"
  8194. },
  8195. frontAlt: {
  8196. height: math.unit(1.6, "meters"),
  8197. weight: math.unit(86, "kg"),
  8198. name: "Front (Alt)",
  8199. image: {
  8200. source: "./media/characters/rose/front-alt.svg",
  8201. extra: 299/283,
  8202. bottom: 3/302
  8203. },
  8204. form: "liom"
  8205. },
  8206. plush: {
  8207. height: math.unit(2, "meters"),
  8208. weight: math.unit(86/3, "kg"),
  8209. name: "Plush",
  8210. image: {
  8211. source: "./media/characters/rose/plush.svg",
  8212. extra: 361/337,
  8213. bottom: 11/372
  8214. },
  8215. form: "plush",
  8216. default: true
  8217. },
  8218. faeStanding: {
  8219. height: math.unit(10, "cm"),
  8220. weight: math.unit(10, "grams"),
  8221. name: "Standing",
  8222. image: {
  8223. source: "./media/characters/rose/fae-standing.svg",
  8224. extra: 1189/1060,
  8225. bottom: 27/1216
  8226. },
  8227. form: "fae",
  8228. default: true
  8229. },
  8230. faeSitting: {
  8231. height: math.unit(5, "cm"),
  8232. weight: math.unit(10, "grams"),
  8233. name: "Sitting",
  8234. image: {
  8235. source: "./media/characters/rose/fae-sitting.svg",
  8236. extra: 737/577,
  8237. bottom: 356/1093
  8238. },
  8239. form: "fae"
  8240. },
  8241. faePaw: {
  8242. height: math.unit(1.35, "cm"),
  8243. name: "Paw",
  8244. image: {
  8245. source: "./media/characters/rose/fae-paw.svg"
  8246. },
  8247. form: "fae"
  8248. },
  8249. },
  8250. [
  8251. {
  8252. name: "True Micro",
  8253. height: math.unit(9, "cm"),
  8254. form: "liom"
  8255. },
  8256. {
  8257. name: "Micro",
  8258. height: math.unit(16, "cm"),
  8259. form: "liom"
  8260. },
  8261. {
  8262. name: "Normal",
  8263. height: math.unit(1.85, "meters"),
  8264. default: true,
  8265. form: "liom"
  8266. },
  8267. {
  8268. name: "Mini-Macro",
  8269. height: math.unit(5, "meters"),
  8270. form: "liom"
  8271. },
  8272. {
  8273. name: "Macro",
  8274. height: math.unit(15, "meters"),
  8275. form: "liom"
  8276. },
  8277. {
  8278. name: "True Macro",
  8279. height: math.unit(40, "meters"),
  8280. form: "liom"
  8281. },
  8282. {
  8283. name: "City Scale",
  8284. height: math.unit(1, "km"),
  8285. form: "liom"
  8286. },
  8287. {
  8288. name: "Plushie",
  8289. height: math.unit(9, "cm"),
  8290. form: "plush",
  8291. default: true
  8292. },
  8293. {
  8294. name: "Fae",
  8295. height: math.unit(10, "cm"),
  8296. form: "fae",
  8297. default: true
  8298. },
  8299. ],
  8300. {
  8301. "liom": {
  8302. name: "Liom"
  8303. },
  8304. "plush": {
  8305. name: "Plush"
  8306. },
  8307. "fae": {
  8308. name: "Fae Fox",
  8309. default: true
  8310. }
  8311. }
  8312. ))
  8313. characterMakers.push(() => makeCharacter(
  8314. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8315. {
  8316. front: {
  8317. height: math.unit(2, "meters"),
  8318. weight: math.unit(350, "lbs"),
  8319. name: "Front",
  8320. image: {
  8321. source: "./media/characters/regal/front.svg"
  8322. }
  8323. },
  8324. back: {
  8325. height: math.unit(2, "meters"),
  8326. weight: math.unit(350, "lbs"),
  8327. name: "Back",
  8328. image: {
  8329. source: "./media/characters/regal/back.svg"
  8330. }
  8331. },
  8332. },
  8333. [
  8334. {
  8335. name: "Macro",
  8336. height: math.unit(350, "feet"),
  8337. default: true
  8338. }
  8339. ]
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8343. {
  8344. standing: {
  8345. height: math.unit(4 + 11/12, "feet"),
  8346. weight: math.unit(100, "lb"),
  8347. name: "Standing",
  8348. image: {
  8349. source: "./media/characters/opal/standing.svg",
  8350. extra: 1588/1513,
  8351. bottom: 23/1611
  8352. }
  8353. },
  8354. sitting: {
  8355. height: math.unit(2.3, "feet"),
  8356. weight: math.unit(100, "lb"),
  8357. name: "Sitting",
  8358. image: {
  8359. source: "./media/characters/opal/sitting.svg",
  8360. extra: 1031/892,
  8361. bottom: 142/1173
  8362. }
  8363. },
  8364. hand: {
  8365. height: math.unit(0.59, "feet"),
  8366. name: "Hand",
  8367. image: {
  8368. source: "./media/characters/opal/hand.svg"
  8369. }
  8370. },
  8371. foot: {
  8372. height: math.unit(0.61, "feet"),
  8373. name: "Foot",
  8374. image: {
  8375. source: "./media/characters/opal/foot.svg"
  8376. }
  8377. },
  8378. },
  8379. [
  8380. {
  8381. name: "Small",
  8382. height: math.unit(4 + 11 / 12, "feet")
  8383. },
  8384. {
  8385. name: "Normal",
  8386. height: math.unit(20, "feet"),
  8387. default: true
  8388. },
  8389. {
  8390. name: "Macro",
  8391. height: math.unit(120, "feet")
  8392. },
  8393. {
  8394. name: "Megamacro",
  8395. height: math.unit(80, "miles")
  8396. },
  8397. {
  8398. name: "True Size",
  8399. height: math.unit(100000, "lightyears")
  8400. },
  8401. ]
  8402. ))
  8403. characterMakers.push(() => makeCharacter(
  8404. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8405. {
  8406. front: {
  8407. height: math.unit(6, "feet"),
  8408. weight: math.unit(200, "lbs"),
  8409. name: "Front",
  8410. image: {
  8411. source: "./media/characters/vector-wuff/front.svg"
  8412. }
  8413. }
  8414. },
  8415. [
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(2.8, "meters")
  8419. },
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(450, "meters"),
  8423. default: true
  8424. },
  8425. {
  8426. name: "Megamacro",
  8427. height: math.unit(15, "kilometers")
  8428. }
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(256, "lbs"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/dannik/front.svg"
  8440. }
  8441. }
  8442. },
  8443. [
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(69.57, "meters"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(120, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/azura-saharah/front.svg"
  8460. }
  8461. },
  8462. back: {
  8463. height: math.unit(6, "feet"),
  8464. weight: math.unit(120, "lbs"),
  8465. name: "Back",
  8466. image: {
  8467. source: "./media/characters/azura-saharah/back.svg"
  8468. }
  8469. },
  8470. },
  8471. [
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(100, "feet"),
  8475. default: true
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8481. {
  8482. side: {
  8483. height: math.unit(5 + 4 / 12, "feet"),
  8484. weight: math.unit(163, "lbs"),
  8485. name: "Side",
  8486. image: {
  8487. source: "./media/characters/kennedy/side.svg"
  8488. }
  8489. }
  8490. },
  8491. [
  8492. {
  8493. name: "Standard Doggo",
  8494. height: math.unit(5 + 4 / 12, "feet")
  8495. },
  8496. {
  8497. name: "Big Doggo",
  8498. height: math.unit(25 + 3 / 12, "feet"),
  8499. default: true
  8500. },
  8501. ]
  8502. ))
  8503. characterMakers.push(() => makeCharacter(
  8504. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8505. {
  8506. front: {
  8507. height: math.unit(5 + 5/12, "feet"),
  8508. weight: math.unit(100, "lbs"),
  8509. name: "Front",
  8510. image: {
  8511. source: "./media/characters/odios-de-lunar/front.svg",
  8512. extra: 1468/1323,
  8513. bottom: 22/1490
  8514. }
  8515. }
  8516. },
  8517. [
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(3, "inches")
  8521. },
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(5.5, "feet"),
  8525. default: true
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(100, "feet")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8535. {
  8536. back: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(220, "lbs"),
  8539. name: "Back",
  8540. image: {
  8541. source: "./media/characters/mandake/back.svg"
  8542. }
  8543. }
  8544. },
  8545. [
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(7, "feet"),
  8549. default: true
  8550. },
  8551. {
  8552. name: "Macro",
  8553. height: math.unit(78, "feet")
  8554. },
  8555. {
  8556. name: "Macro+",
  8557. height: math.unit(300, "meters")
  8558. },
  8559. {
  8560. name: "Macro++",
  8561. height: math.unit(2400, "feet")
  8562. },
  8563. {
  8564. name: "Megamacro",
  8565. height: math.unit(5167, "meters")
  8566. },
  8567. {
  8568. name: "Gigamacro",
  8569. height: math.unit(41769, "miles")
  8570. },
  8571. ]
  8572. ))
  8573. characterMakers.push(() => makeCharacter(
  8574. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8575. {
  8576. front: {
  8577. height: math.unit(6, "feet"),
  8578. weight: math.unit(120, "lbs"),
  8579. name: "Front",
  8580. image: {
  8581. source: "./media/characters/yozey/front.svg"
  8582. }
  8583. },
  8584. frontAlt: {
  8585. height: math.unit(6, "feet"),
  8586. weight: math.unit(120, "lbs"),
  8587. name: "Front (Alt)",
  8588. image: {
  8589. source: "./media/characters/yozey/front-alt.svg"
  8590. }
  8591. },
  8592. side: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Side",
  8596. image: {
  8597. source: "./media/characters/yozey/side.svg"
  8598. }
  8599. },
  8600. },
  8601. [
  8602. {
  8603. name: "Micro",
  8604. height: math.unit(3, "inches"),
  8605. default: true
  8606. },
  8607. {
  8608. name: "Normal",
  8609. height: math.unit(6, "feet")
  8610. }
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8615. {
  8616. front: {
  8617. height: math.unit(6, "feet"),
  8618. weight: math.unit(103, "lbs"),
  8619. name: "Front",
  8620. image: {
  8621. source: "./media/characters/valeska-voss/front.svg"
  8622. }
  8623. }
  8624. },
  8625. [
  8626. {
  8627. name: "Mini-Sized Sub",
  8628. height: math.unit(3.1, "inches")
  8629. },
  8630. {
  8631. name: "Mid-Sized Sub",
  8632. height: math.unit(6.2, "inches")
  8633. },
  8634. {
  8635. name: "Full-Sized Sub",
  8636. height: math.unit(9.3, "inches")
  8637. },
  8638. {
  8639. name: "Normal",
  8640. height: math.unit(5 + 2 / 12, "foot"),
  8641. default: true
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(6, "feet"),
  8650. weight: math.unit(160, "lbs"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/gene-zeta/front.svg",
  8654. extra: 3006 / 2826,
  8655. bottom: 182 / 3188
  8656. }
  8657. }
  8658. },
  8659. [
  8660. {
  8661. name: "Micro",
  8662. height: math.unit(6, "inches")
  8663. },
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(5 + 11 / 12, "foot"),
  8667. default: true
  8668. },
  8669. {
  8670. name: "Macro",
  8671. height: math.unit(140, "feet")
  8672. },
  8673. {
  8674. name: "Supercharged",
  8675. height: math.unit(2500, "feet")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(350, "lbs"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/razinox/front.svg",
  8688. extra: 1686 / 1548,
  8689. bottom: 28.2 / 1868
  8690. }
  8691. },
  8692. back: {
  8693. height: math.unit(6, "feet"),
  8694. weight: math.unit(350, "lbs"),
  8695. name: "Back",
  8696. image: {
  8697. source: "./media/characters/razinox/back.svg",
  8698. extra: 1660 / 1590,
  8699. bottom: 15 / 1665
  8700. }
  8701. },
  8702. },
  8703. [
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(10 + 8 / 12, "foot")
  8707. },
  8708. {
  8709. name: "Minimacro",
  8710. height: math.unit(15, "foot")
  8711. },
  8712. {
  8713. name: "Macro",
  8714. height: math.unit(60, "foot"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Megamacro",
  8719. height: math.unit(5, "miles")
  8720. },
  8721. {
  8722. name: "Gigamacro",
  8723. height: math.unit(6000, "miles")
  8724. },
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(6, "feet"),
  8732. weight: math.unit(150, "lbs"),
  8733. name: "Front",
  8734. image: {
  8735. source: "./media/characters/cobalt/front.svg"
  8736. }
  8737. }
  8738. },
  8739. [
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(8 + 1 / 12, "foot")
  8743. },
  8744. {
  8745. name: "Macro",
  8746. height: math.unit(111, "foot"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Supracosmic",
  8751. height: math.unit(1e42, "feet")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(5, "inches"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/amanda/front.svg",
  8763. extra: 926/791,
  8764. bottom: 38/964
  8765. }
  8766. },
  8767. back: {
  8768. height: math.unit(5, "inches"),
  8769. name: "Back",
  8770. image: {
  8771. source: "./media/characters/amanda/back.svg",
  8772. extra: 909/805,
  8773. bottom: 43/952
  8774. }
  8775. },
  8776. },
  8777. [
  8778. {
  8779. name: "Micro",
  8780. height: math.unit(5, "inches"),
  8781. default: true
  8782. },
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(2.75, "meters"),
  8790. weight: math.unit(1200, "lb"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/teal/front.svg",
  8794. extra: 2463 / 2320,
  8795. bottom: 166 / 2629
  8796. }
  8797. },
  8798. back: {
  8799. height: math.unit(2.75, "meters"),
  8800. weight: math.unit(1200, "lb"),
  8801. name: "Back",
  8802. image: {
  8803. source: "./media/characters/teal/back.svg",
  8804. extra: 2580 / 2489,
  8805. bottom: 151 / 2731
  8806. }
  8807. },
  8808. sitting: {
  8809. height: math.unit(1.9, "meters"),
  8810. weight: math.unit(1200, "lb"),
  8811. name: "Sitting",
  8812. image: {
  8813. source: "./media/characters/teal/sitting.svg",
  8814. extra: 623 / 590,
  8815. bottom: 121 / 744
  8816. }
  8817. },
  8818. standing: {
  8819. height: math.unit(2.75, "meters"),
  8820. weight: math.unit(1200, "lb"),
  8821. name: "Standing",
  8822. image: {
  8823. source: "./media/characters/teal/standing.svg",
  8824. extra: 923 / 893,
  8825. bottom: 60 / 983
  8826. }
  8827. },
  8828. stretching: {
  8829. height: math.unit(3.65, "meters"),
  8830. weight: math.unit(1200, "lb"),
  8831. name: "Stretching",
  8832. image: {
  8833. source: "./media/characters/teal/stretching.svg",
  8834. extra: 1276 / 1244,
  8835. bottom: 0 / 1276
  8836. }
  8837. },
  8838. legged: {
  8839. height: math.unit(1.3, "meters"),
  8840. weight: math.unit(100, "lb"),
  8841. name: "Legged",
  8842. image: {
  8843. source: "./media/characters/teal/legged.svg",
  8844. extra: 462 / 437,
  8845. bottom: 24 / 486
  8846. }
  8847. },
  8848. naga: {
  8849. height: math.unit(5.4, "meters"),
  8850. weight: math.unit(4000, "lb"),
  8851. name: "Naga",
  8852. image: {
  8853. source: "./media/characters/teal/naga.svg",
  8854. extra: 1902 / 1858,
  8855. bottom: 0 / 1902
  8856. }
  8857. },
  8858. hand: {
  8859. height: math.unit(0.52, "meters"),
  8860. name: "Hand",
  8861. image: {
  8862. source: "./media/characters/teal/hand.svg"
  8863. }
  8864. },
  8865. maw: {
  8866. height: math.unit(0.43, "meters"),
  8867. name: "Maw",
  8868. image: {
  8869. source: "./media/characters/teal/maw.svg"
  8870. }
  8871. },
  8872. slit: {
  8873. height: math.unit(0.25, "meters"),
  8874. name: "Slit",
  8875. image: {
  8876. source: "./media/characters/teal/slit.svg"
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Normal",
  8883. height: math.unit(2.75, "meters"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Macro",
  8888. height: math.unit(300, "feet")
  8889. },
  8890. {
  8891. name: "Macro+",
  8892. height: math.unit(2000, "feet")
  8893. },
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8898. {
  8899. frontCat: {
  8900. height: math.unit(6, "feet"),
  8901. weight: math.unit(180, "lbs"),
  8902. name: "Front (Cat)",
  8903. image: {
  8904. source: "./media/characters/ravin-amulet/front-cat.svg"
  8905. }
  8906. },
  8907. frontCatAlt: {
  8908. height: math.unit(6, "feet"),
  8909. weight: math.unit(180, "lbs"),
  8910. name: "Front (Alt, Cat)",
  8911. image: {
  8912. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8913. }
  8914. },
  8915. frontWerewolf: {
  8916. height: math.unit(6 * 1.2, "feet"),
  8917. weight: math.unit(225, "lbs"),
  8918. name: "Front (Werewolf)",
  8919. image: {
  8920. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8921. }
  8922. },
  8923. backWerewolf: {
  8924. height: math.unit(6 * 1.2, "feet"),
  8925. weight: math.unit(225, "lbs"),
  8926. name: "Back (Werewolf)",
  8927. image: {
  8928. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8929. }
  8930. },
  8931. },
  8932. [
  8933. {
  8934. name: "Nano",
  8935. height: math.unit(1, "micrometer")
  8936. },
  8937. {
  8938. name: "Micro",
  8939. height: math.unit(1, "inch")
  8940. },
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(6, "feet"),
  8944. default: true
  8945. },
  8946. {
  8947. name: "Macro",
  8948. height: math.unit(60, "feet")
  8949. }
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8954. {
  8955. front: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(165, "lbs"),
  8958. name: "Front",
  8959. image: {
  8960. source: "./media/characters/fluoresce/front.svg"
  8961. }
  8962. }
  8963. },
  8964. [
  8965. {
  8966. name: "Micro",
  8967. height: math.unit(6, "cm")
  8968. },
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(5 + 7 / 12, "feet"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(56, "feet")
  8977. },
  8978. {
  8979. name: "Megamacro",
  8980. height: math.unit(1.9, "miles")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(9 + 6 / 12, "feet"),
  8989. weight: math.unit(523, "lbs"),
  8990. name: "Side",
  8991. image: {
  8992. source: "./media/characters/aurora/side.svg",
  8993. extra: 474/393,
  8994. bottom: 5/479
  8995. }
  8996. }
  8997. },
  8998. [
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(9 + 6 / 12, "feet")
  9002. },
  9003. {
  9004. name: "Macro",
  9005. height: math.unit(96, "feet"),
  9006. default: true
  9007. },
  9008. {
  9009. name: "Macro+",
  9010. height: math.unit(243, "feet")
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(194, "cm"),
  9019. weight: math.unit(90, "kg"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/ranek/front.svg",
  9023. extra: 1862/1791,
  9024. bottom: 80/1942
  9025. }
  9026. },
  9027. back: {
  9028. height: math.unit(194, "cm"),
  9029. weight: math.unit(90, "kg"),
  9030. name: "Back",
  9031. image: {
  9032. source: "./media/characters/ranek/back.svg",
  9033. extra: 1853/1787,
  9034. bottom: 74/1927
  9035. }
  9036. },
  9037. feral: {
  9038. height: math.unit(30, "cm"),
  9039. weight: math.unit(1.6, "lbs"),
  9040. name: "Feral",
  9041. image: {
  9042. source: "./media/characters/ranek/feral.svg",
  9043. extra: 990/631,
  9044. bottom: 29/1019
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(194, "cm"),
  9052. default: true
  9053. },
  9054. {
  9055. name: "Macro",
  9056. height: math.unit(100, "meters")
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9062. {
  9063. front: {
  9064. height: math.unit(5 + 6 / 12, "feet"),
  9065. weight: math.unit(153, "lbs"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/andrew-cooper/front.svg"
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Nano",
  9075. height: math.unit(1, "mm")
  9076. },
  9077. {
  9078. name: "Micro",
  9079. height: math.unit(2, "inches")
  9080. },
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(5 + 6 / 12, "feet"),
  9084. default: true
  9085. }
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9090. {
  9091. front: {
  9092. height: math.unit(6, "feet"),
  9093. weight: math.unit(180, "lbs"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/akane-sato/front.svg",
  9097. extra: 1219 / 1140
  9098. }
  9099. },
  9100. back: {
  9101. height: math.unit(6, "feet"),
  9102. weight: math.unit(180, "lbs"),
  9103. name: "Back",
  9104. image: {
  9105. source: "./media/characters/akane-sato/back.svg",
  9106. extra: 1219 / 1170
  9107. }
  9108. },
  9109. },
  9110. [
  9111. {
  9112. name: "Normal",
  9113. height: math.unit(2.5, "meters")
  9114. },
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(250, "meters"),
  9118. default: true
  9119. },
  9120. {
  9121. name: "Megamacro",
  9122. height: math.unit(25, "km")
  9123. },
  9124. ]
  9125. ))
  9126. characterMakers.push(() => makeCharacter(
  9127. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9128. {
  9129. front: {
  9130. height: math.unit(6, "feet"),
  9131. weight: math.unit(65, "kg"),
  9132. name: "Front",
  9133. image: {
  9134. source: "./media/characters/rook/front.svg",
  9135. extra: 960 / 950
  9136. }
  9137. }
  9138. },
  9139. [
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(8.8, "feet")
  9143. },
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(88, "feet"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "Megamacro",
  9151. height: math.unit(8, "miles")
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(12 + 2 / 12, "feet"),
  9160. weight: math.unit(808, "lbs"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/prodigy/front.svg"
  9164. }
  9165. }
  9166. },
  9167. [
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(12 + 2 / 12, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(143, "feet")
  9176. },
  9177. {
  9178. name: "Macro+",
  9179. height: math.unit(400, "feet")
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(6, "feet"),
  9188. weight: math.unit(225, "lbs"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/daniel/front.svg"
  9192. }
  9193. },
  9194. leaning: {
  9195. height: math.unit(6, "feet"),
  9196. weight: math.unit(225, "lbs"),
  9197. name: "Leaning",
  9198. image: {
  9199. source: "./media/characters/daniel/leaning.svg"
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Macro",
  9206. height: math.unit(1000, "feet"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(6, "feet"),
  9216. weight: math.unit(88, "lbs"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/chiros/front.svg",
  9220. extra: 306 / 226
  9221. }
  9222. },
  9223. side: {
  9224. height: math.unit(6, "feet"),
  9225. weight: math.unit(88, "lbs"),
  9226. name: "Side",
  9227. image: {
  9228. source: "./media/characters/chiros/side.svg",
  9229. extra: 306 / 226
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(6, "cm"),
  9237. default: true
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9243. {
  9244. front: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(100, "lbs"),
  9247. name: "Front",
  9248. image: {
  9249. source: "./media/characters/selka/front.svg",
  9250. extra: 947 / 887
  9251. }
  9252. }
  9253. },
  9254. [
  9255. {
  9256. name: "Normal",
  9257. height: math.unit(5, "cm"),
  9258. default: true
  9259. },
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(8 + 3 / 12, "feet"),
  9267. weight: math.unit(424, "lbs"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/verin/front.svg",
  9271. extra: 1845 / 1550
  9272. }
  9273. },
  9274. frontArmored: {
  9275. height: math.unit(8 + 3 / 12, "feet"),
  9276. weight: math.unit(424, "lbs"),
  9277. name: "Front (Armored)",
  9278. image: {
  9279. source: "./media/characters/verin/front-armor.svg",
  9280. extra: 1845 / 1550,
  9281. bottom: 0.01
  9282. }
  9283. },
  9284. back: {
  9285. height: math.unit(8 + 3 / 12, "feet"),
  9286. weight: math.unit(424, "lbs"),
  9287. name: "Back",
  9288. image: {
  9289. source: "./media/characters/verin/back.svg",
  9290. bottom: 0.1,
  9291. extra: 1
  9292. }
  9293. },
  9294. foot: {
  9295. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9296. name: "Foot",
  9297. image: {
  9298. source: "./media/characters/verin/foot.svg"
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Normal",
  9305. height: math.unit(8 + 3 / 12, "feet")
  9306. },
  9307. {
  9308. name: "Minimacro",
  9309. height: math.unit(21, "feet"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Macro",
  9314. height: math.unit(626, "feet")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(2.718, "meters"),
  9323. weight: math.unit(150, "lbs"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/sovrim-terraquian/front.svg",
  9327. extra: 1752/1689,
  9328. bottom: 36/1788
  9329. }
  9330. },
  9331. back: {
  9332. height: math.unit(2.718, "meters"),
  9333. weight: math.unit(150, "lbs"),
  9334. name: "Back",
  9335. image: {
  9336. source: "./media/characters/sovrim-terraquian/back.svg",
  9337. extra: 1698/1657,
  9338. bottom: 58/1756
  9339. }
  9340. },
  9341. tongue: {
  9342. height: math.unit(2.865, "feet"),
  9343. name: "Tongue",
  9344. image: {
  9345. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9346. }
  9347. },
  9348. hand: {
  9349. height: math.unit(1.61, "feet"),
  9350. name: "Hand",
  9351. image: {
  9352. source: "./media/characters/sovrim-terraquian/hand.svg"
  9353. }
  9354. },
  9355. foot: {
  9356. height: math.unit(1.05, "feet"),
  9357. name: "Foot",
  9358. image: {
  9359. source: "./media/characters/sovrim-terraquian/foot.svg"
  9360. }
  9361. },
  9362. footAlt: {
  9363. height: math.unit(0.88, "feet"),
  9364. name: "Foot (Alt)",
  9365. image: {
  9366. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Micro",
  9373. height: math.unit(2, "inches")
  9374. },
  9375. {
  9376. name: "Small",
  9377. height: math.unit(1, "meter")
  9378. },
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(Math.E, "meters"),
  9382. default: true
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(20, "meters")
  9387. },
  9388. {
  9389. name: "Macro+",
  9390. height: math.unit(400, "meters")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(7, "feet"),
  9399. weight: math.unit(489, "lbs"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/reece-silvermane/front.svg",
  9403. bottom: 0.02,
  9404. extra: 1
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Macro",
  9411. height: math.unit(1.5, "miles"),
  9412. default: true
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9418. {
  9419. front: {
  9420. height: math.unit(6, "feet"),
  9421. weight: math.unit(78, "kg"),
  9422. name: "Front",
  9423. image: {
  9424. source: "./media/characters/kane/front.svg",
  9425. extra: 978 / 899
  9426. }
  9427. },
  9428. back: {
  9429. height: math.unit(6, "feet"),
  9430. weight: math.unit(78, "kg"),
  9431. name: "Back",
  9432. image: {
  9433. source: "./media/characters/kane/back.svg",
  9434. extra: 1966/1800,
  9435. bottom: 0/1966
  9436. }
  9437. },
  9438. head: {
  9439. height: math.unit(1.4, "feet"),
  9440. name: "Head",
  9441. image: {
  9442. source: "./media/characters/kane/head.svg"
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(2.1, "m"),
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(1, "km"),
  9454. default: true
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(200, "kg"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/tegon/front.svg",
  9467. bottom: 0.01,
  9468. extra: 1
  9469. }
  9470. },
  9471. },
  9472. [
  9473. {
  9474. name: "Micro",
  9475. height: math.unit(1, "inch")
  9476. },
  9477. {
  9478. name: "Normal",
  9479. height: math.unit(6 + 3 / 12, "feet"),
  9480. default: true
  9481. },
  9482. {
  9483. name: "Macro",
  9484. height: math.unit(300, "feet")
  9485. },
  9486. {
  9487. name: "Megamacro",
  9488. height: math.unit(69, "miles")
  9489. },
  9490. ]
  9491. ))
  9492. characterMakers.push(() => makeCharacter(
  9493. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9494. {
  9495. side: {
  9496. height: math.unit(6, "feet"),
  9497. weight: math.unit(2304, "lbs"),
  9498. name: "Side",
  9499. image: {
  9500. source: "./media/characters/arcturax/side.svg",
  9501. extra: 790 / 376,
  9502. bottom: 0.01
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Micro",
  9509. height: math.unit(2, "inch")
  9510. },
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(6, "feet")
  9514. },
  9515. {
  9516. name: "Macro",
  9517. height: math.unit(39, "feet"),
  9518. default: true
  9519. },
  9520. {
  9521. name: "Megamacro",
  9522. height: math.unit(7, "miles")
  9523. },
  9524. ]
  9525. ))
  9526. characterMakers.push(() => makeCharacter(
  9527. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9528. {
  9529. front: {
  9530. height: math.unit(6, "feet"),
  9531. weight: math.unit(50, "lbs"),
  9532. name: "Front",
  9533. image: {
  9534. source: "./media/characters/sentri/front.svg",
  9535. extra: 1750 / 1570,
  9536. bottom: 0.025
  9537. }
  9538. },
  9539. frontAlt: {
  9540. height: math.unit(6, "feet"),
  9541. weight: math.unit(50, "lbs"),
  9542. name: "Front (Alt)",
  9543. image: {
  9544. source: "./media/characters/sentri/front-alt.svg",
  9545. extra: 1750 / 1570,
  9546. bottom: 0.025
  9547. }
  9548. },
  9549. },
  9550. [
  9551. {
  9552. name: "Normal",
  9553. height: math.unit(15, "feet"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Macro",
  9558. height: math.unit(2500, "feet")
  9559. }
  9560. ]
  9561. ))
  9562. characterMakers.push(() => makeCharacter(
  9563. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9564. {
  9565. front: {
  9566. height: math.unit(5 + 8 / 12, "feet"),
  9567. weight: math.unit(130, "lbs"),
  9568. name: "Front",
  9569. image: {
  9570. source: "./media/characters/corvin/front.svg",
  9571. extra: 1803 / 1629
  9572. }
  9573. },
  9574. frontShirt: {
  9575. height: math.unit(5 + 8 / 12, "feet"),
  9576. weight: math.unit(130, "lbs"),
  9577. name: "Front (Shirt)",
  9578. image: {
  9579. source: "./media/characters/corvin/front-shirt.svg",
  9580. extra: 1803 / 1629
  9581. }
  9582. },
  9583. frontPoncho: {
  9584. height: math.unit(5 + 8 / 12, "feet"),
  9585. weight: math.unit(130, "lbs"),
  9586. name: "Front (Poncho)",
  9587. image: {
  9588. source: "./media/characters/corvin/front-poncho.svg",
  9589. extra: 1803 / 1629
  9590. }
  9591. },
  9592. side: {
  9593. height: math.unit(5 + 8 / 12, "feet"),
  9594. weight: math.unit(130, "lbs"),
  9595. name: "Side",
  9596. image: {
  9597. source: "./media/characters/corvin/side.svg",
  9598. extra: 1012 / 945
  9599. }
  9600. },
  9601. back: {
  9602. height: math.unit(5 + 8 / 12, "feet"),
  9603. weight: math.unit(130, "lbs"),
  9604. name: "Back",
  9605. image: {
  9606. source: "./media/characters/corvin/back.svg",
  9607. extra: 1803 / 1629
  9608. }
  9609. },
  9610. },
  9611. [
  9612. {
  9613. name: "Micro",
  9614. height: math.unit(3, "inches")
  9615. },
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(5 + 8 / 12, "feet")
  9619. },
  9620. {
  9621. name: "Macro",
  9622. height: math.unit(300, "feet"),
  9623. default: true
  9624. },
  9625. {
  9626. name: "Megamacro",
  9627. height: math.unit(500, "miles")
  9628. }
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9633. {
  9634. front: {
  9635. height: math.unit(6, "feet"),
  9636. weight: math.unit(135, "lbs"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/q/front.svg",
  9640. extra: 854 / 752,
  9641. bottom: 0.005
  9642. }
  9643. },
  9644. back: {
  9645. height: math.unit(6, "feet"),
  9646. weight: math.unit(130, "lbs"),
  9647. name: "Back",
  9648. image: {
  9649. source: "./media/characters/q/back.svg",
  9650. extra: 854 / 752
  9651. }
  9652. },
  9653. },
  9654. [
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(90, "feet"),
  9658. default: true
  9659. },
  9660. {
  9661. name: "Extra Macro",
  9662. height: math.unit(300, "feet"),
  9663. },
  9664. {
  9665. name: "BIG WALF",
  9666. height: math.unit(750, "feet"),
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(3, "feet"),
  9675. weight: math.unit(28, "lbs"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/citrine/front.svg"
  9679. }
  9680. }
  9681. },
  9682. [
  9683. {
  9684. name: "Normal",
  9685. height: math.unit(3, "feet"),
  9686. default: true
  9687. }
  9688. ]
  9689. ))
  9690. characterMakers.push(() => makeCharacter(
  9691. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9692. {
  9693. front: {
  9694. height: math.unit(14, "feet"),
  9695. weight: math.unit(1450, "kg"),
  9696. preyCapacity: math.unit(15, "people"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/aura-starwind/front.svg",
  9700. extra: 1440/1327,
  9701. bottom: 11/1451
  9702. }
  9703. },
  9704. side: {
  9705. height: math.unit(14, "feet"),
  9706. weight: math.unit(1450, "kg"),
  9707. preyCapacity: math.unit(15, "people"),
  9708. name: "Side",
  9709. image: {
  9710. source: "./media/characters/aura-starwind/side.svg",
  9711. extra: 1654 / 1497
  9712. }
  9713. },
  9714. taur: {
  9715. height: math.unit(18, "feet"),
  9716. weight: math.unit(5500, "kg"),
  9717. preyCapacity: math.unit(50, "people"),
  9718. name: "Taur",
  9719. image: {
  9720. source: "./media/characters/aura-starwind/taur.svg",
  9721. extra: 1760 / 1650
  9722. }
  9723. },
  9724. feral: {
  9725. height: math.unit(46, "feet"),
  9726. weight: math.unit(25000, "kg"),
  9727. preyCapacity: math.unit(120, "people"),
  9728. name: "Feral",
  9729. image: {
  9730. source: "./media/characters/aura-starwind/feral.svg"
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(14, "feet"),
  9738. default: true
  9739. },
  9740. {
  9741. name: "Macro",
  9742. height: math.unit(50, "meters")
  9743. },
  9744. {
  9745. name: "Megamacro",
  9746. height: math.unit(5000, "meters")
  9747. },
  9748. {
  9749. name: "Gigamacro",
  9750. height: math.unit(100000, "kilometers")
  9751. },
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(2 + 7 / 12, "feet"),
  9759. weight: math.unit(32, "lbs"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/rivet/front.svg",
  9763. extra: 1716 / 1658,
  9764. bottom: 0.03
  9765. }
  9766. },
  9767. foot: {
  9768. height: math.unit(0.551, "feet"),
  9769. name: "Rivet's Foot",
  9770. image: {
  9771. source: "./media/characters/rivet/foot.svg"
  9772. },
  9773. rename: true
  9774. }
  9775. },
  9776. [
  9777. {
  9778. name: "Micro",
  9779. height: math.unit(1.5, "inches"),
  9780. },
  9781. {
  9782. name: "Normal",
  9783. height: math.unit(2 + 7 / 12, "feet"),
  9784. default: true
  9785. },
  9786. {
  9787. name: "Macro",
  9788. height: math.unit(85, "feet")
  9789. },
  9790. {
  9791. name: "Megamacro",
  9792. height: math.unit(2.2, "km")
  9793. }
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9798. {
  9799. front: {
  9800. height: math.unit(5 + 9 / 12, "feet"),
  9801. weight: math.unit(150, "lbs"),
  9802. name: "Front",
  9803. image: {
  9804. source: "./media/characters/coffee/front.svg",
  9805. extra: 946/880,
  9806. bottom: 66/1012
  9807. }
  9808. },
  9809. foot: {
  9810. height: math.unit(1.29, "feet"),
  9811. name: "Foot",
  9812. image: {
  9813. source: "./media/characters/coffee/foot.svg"
  9814. }
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Micro",
  9820. height: math.unit(2, "inches"),
  9821. },
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(5 + 9 / 12, "feet"),
  9825. default: true
  9826. },
  9827. {
  9828. name: "Macro",
  9829. height: math.unit(800, "feet")
  9830. },
  9831. {
  9832. name: "Megamacro",
  9833. height: math.unit(25, "miles")
  9834. }
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9839. {
  9840. front: {
  9841. height: math.unit(6, "feet"),
  9842. weight: math.unit(200, "lbs"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/chari-gal/front.svg",
  9846. extra: 735/649,
  9847. bottom: 55/790
  9848. },
  9849. form: "normal",
  9850. default: true
  9851. },
  9852. back: {
  9853. height: math.unit(6, "feet"),
  9854. weight: math.unit(200, "lb"),
  9855. name: "Back",
  9856. image: {
  9857. source: "./media/characters/chari-gal/back.svg",
  9858. extra: 762/666,
  9859. bottom: 31/793
  9860. },
  9861. form: "normal"
  9862. },
  9863. mouth: {
  9864. height: math.unit(1.35, "feet"),
  9865. name: "Mouth",
  9866. image: {
  9867. source: "./media/characters/chari-gal/mouth.svg"
  9868. },
  9869. form: "normal"
  9870. },
  9871. gigantamax: {
  9872. height: math.unit(6 * 16, "feet"),
  9873. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9874. name: "Gigantamax",
  9875. image: {
  9876. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9877. extra: 1507/1149,
  9878. bottom: 254/1761
  9879. },
  9880. form: "gigantamax",
  9881. default: true
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(5 + 7 / 12, "feet"),
  9888. form: "normal",
  9889. },
  9890. {
  9891. name: "Macro",
  9892. height: math.unit(200, "feet"),
  9893. default: true,
  9894. form: "normal"
  9895. },
  9896. {
  9897. name: "Normal",
  9898. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9899. form: "gigantamax",
  9900. },
  9901. {
  9902. name: "Macro",
  9903. height: math.unit(16 * 200, "feet"),
  9904. default: true,
  9905. form: "gigantamax"
  9906. },
  9907. ],
  9908. {
  9909. "normal": {
  9910. name: "Normal",
  9911. default: true
  9912. },
  9913. "gigantamax": {
  9914. name: "Gigantamax",
  9915. },
  9916. }
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9920. {
  9921. front: {
  9922. height: math.unit(6, "feet"),
  9923. weight: math.unit(150, "lbs"),
  9924. name: "Front",
  9925. image: {
  9926. source: "./media/characters/nova/front.svg",
  9927. extra: 5000 / 4722,
  9928. bottom: 0.02
  9929. }
  9930. }
  9931. },
  9932. [
  9933. {
  9934. name: "Micro-",
  9935. height: math.unit(0.8, "inches")
  9936. },
  9937. {
  9938. name: "Micro",
  9939. height: math.unit(2, "inches"),
  9940. default: true
  9941. },
  9942. ]
  9943. ))
  9944. characterMakers.push(() => makeCharacter(
  9945. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9946. {
  9947. koboldFront: {
  9948. height: math.unit(3 + 1 / 12, "feet"),
  9949. weight: math.unit(21.7, "lbs"),
  9950. name: "Front",
  9951. image: {
  9952. source: "./media/characters/argent/kobold-front.svg",
  9953. extra: 1471 / 1331,
  9954. bottom: 100.8 / 1575.5
  9955. },
  9956. form: "kobold",
  9957. default: true
  9958. },
  9959. dragonFront: {
  9960. height: math.unit(75, "inches"),
  9961. name: "Front",
  9962. image: {
  9963. source: "./media/characters/argent/dragon-front.svg",
  9964. extra: 1389/1248,
  9965. bottom: 54/1443
  9966. },
  9967. form: "dragon",
  9968. },
  9969. dragonBack: {
  9970. height: math.unit(75, "inches"),
  9971. name: "Back",
  9972. image: {
  9973. source: "./media/characters/argent/dragon-back.svg",
  9974. extra: 1399/1271,
  9975. bottom: 23/1422
  9976. },
  9977. form: "dragon",
  9978. },
  9979. dragonDressed: {
  9980. height: math.unit(75, "inches"),
  9981. name: "Dressed",
  9982. image: {
  9983. source: "./media/characters/argent/dragon-dressed.svg",
  9984. extra: 1350/1215,
  9985. bottom: 26/1376
  9986. },
  9987. form: "dragon"
  9988. },
  9989. dragonHead: {
  9990. height: math.unit(23.5, "inches"),
  9991. name: "Head",
  9992. image: {
  9993. source: "./media/characters/argent/dragon-head.svg"
  9994. },
  9995. form: "dragon",
  9996. },
  9997. },
  9998. [
  9999. {
  10000. name: "Micro",
  10001. height: math.unit(2, "inches"),
  10002. form: "kobold",
  10003. },
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(3 + 1 / 12, "feet"),
  10007. form: "kobold",
  10008. default: true
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(120, "feet"),
  10013. form: "kobold",
  10014. },
  10015. {
  10016. name: "Speck",
  10017. height: math.unit(1, "mm"),
  10018. form: "dragon",
  10019. },
  10020. {
  10021. name: "Tiny",
  10022. height: math.unit(1, "cm"),
  10023. form: "dragon",
  10024. },
  10025. {
  10026. name: "Micro",
  10027. height: math.unit(5, "cm"),
  10028. form: "dragon",
  10029. },
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(75, "inches"),
  10033. form: "dragon",
  10034. default: true
  10035. },
  10036. {
  10037. name: "Extra Tall",
  10038. height: math.unit(9, "feet"),
  10039. form: "dragon",
  10040. },
  10041. {
  10042. name: "Inconvenient",
  10043. height: math.unit(5, "meters"),
  10044. form: "dragon",
  10045. },
  10046. {
  10047. name: "Macro",
  10048. height: math.unit(70, "meters"),
  10049. form: "dragon",
  10050. },
  10051. {
  10052. name: "Macro+",
  10053. height: math.unit(250, "meters"),
  10054. form: "dragon",
  10055. },
  10056. {
  10057. name: "Megamacro",
  10058. height: math.unit(20, "km"),
  10059. form: "dragon",
  10060. },
  10061. {
  10062. name: "Mountainous",
  10063. height: math.unit(100, "km"),
  10064. form: "dragon",
  10065. },
  10066. {
  10067. name: "Continental",
  10068. height: math.unit(2, "megameters"),
  10069. form: "dragon",
  10070. },
  10071. {
  10072. name: "Too Big",
  10073. height: math.unit(900, "megameters"),
  10074. form: "dragon",
  10075. },
  10076. ],
  10077. {
  10078. "kobold": {
  10079. name: "Kobold",
  10080. default: true
  10081. },
  10082. "dragon": {
  10083. name: "Dragon",
  10084. },
  10085. }
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10089. {
  10090. lamp: {
  10091. height: math.unit(7 * 1559 / 989, "feet"),
  10092. name: "Magic Lamp",
  10093. image: {
  10094. source: "./media/characters/mira-al-cul/lamp.svg",
  10095. extra: 1617 / 1559
  10096. }
  10097. },
  10098. front: {
  10099. height: math.unit(7, "feet"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/mira-al-cul/front.svg",
  10103. extra: 1044 / 990
  10104. }
  10105. },
  10106. },
  10107. [
  10108. {
  10109. name: "Heavily Restricted",
  10110. height: math.unit(7 * 1559 / 989, "feet")
  10111. },
  10112. {
  10113. name: "Freshly Freed",
  10114. height: math.unit(50 * 1559 / 989, "feet")
  10115. },
  10116. {
  10117. name: "World Encompassing",
  10118. height: math.unit(10000 * 1559 / 989, "miles")
  10119. },
  10120. {
  10121. name: "Galactic",
  10122. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10123. },
  10124. {
  10125. name: "Palmed Universe",
  10126. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10127. default: true
  10128. },
  10129. {
  10130. name: "Multiversal Matriarch",
  10131. height: math.unit(8.87e10, "yottameters")
  10132. },
  10133. {
  10134. name: "Void Mother",
  10135. height: math.unit(3.14e110, "yottaparsecs")
  10136. },
  10137. {
  10138. name: "Toying with Transcendence",
  10139. height: math.unit(1e307, "meters")
  10140. },
  10141. ]
  10142. ))
  10143. characterMakers.push(() => makeCharacter(
  10144. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10145. {
  10146. front: {
  10147. height: math.unit(17 + 1 / 12, "feet"),
  10148. weight: math.unit(476.2 * 5, "lbs"),
  10149. name: "Front",
  10150. image: {
  10151. source: "./media/characters/kuro-shi-uchū/front.svg",
  10152. extra: 2329 / 1835,
  10153. bottom: 0.02
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Micro",
  10160. height: math.unit(2, "inches")
  10161. },
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(12, "meters")
  10165. },
  10166. {
  10167. name: "Planetary",
  10168. height: math.unit(0.00929, "AU"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Universal",
  10173. height: math.unit(20, "gigaparsecs")
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10179. {
  10180. front: {
  10181. height: math.unit(5 + 2 / 12, "feet"),
  10182. weight: math.unit(120, "lbs"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/katherine/front.svg",
  10186. extra: 2075 / 1969
  10187. }
  10188. },
  10189. dress: {
  10190. height: math.unit(5 + 2 / 12, "feet"),
  10191. weight: math.unit(120, "lbs"),
  10192. name: "Dress",
  10193. image: {
  10194. source: "./media/characters/katherine/dress.svg",
  10195. extra: 2258 / 2064
  10196. }
  10197. },
  10198. },
  10199. [
  10200. {
  10201. name: "Micro",
  10202. height: math.unit(1, "inches"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "Normal",
  10207. height: math.unit(5 + 2 / 12, "feet")
  10208. },
  10209. {
  10210. name: "Macro",
  10211. height: math.unit(100, "meters")
  10212. },
  10213. {
  10214. name: "Megamacro",
  10215. height: math.unit(80, "miles")
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10221. {
  10222. front: {
  10223. height: math.unit(7 + 8 / 12, "feet"),
  10224. weight: math.unit(250, "lbs"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/yevis/front.svg",
  10228. extra: 1938 / 1755
  10229. }
  10230. }
  10231. },
  10232. [
  10233. {
  10234. name: "Mortal",
  10235. height: math.unit(7 + 8 / 12, "feet")
  10236. },
  10237. {
  10238. name: "Battle",
  10239. height: math.unit(25 + 11 / 12, "feet")
  10240. },
  10241. {
  10242. name: "Wrath",
  10243. height: math.unit(1654 + 11 / 12, "feet")
  10244. },
  10245. {
  10246. name: "Planet Destroyer",
  10247. height: math.unit(12000, "miles")
  10248. },
  10249. {
  10250. name: "Galaxy Conqueror",
  10251. height: math.unit(1.45, "zettameters"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Universal War",
  10256. height: math.unit(184, "gigaparsecs")
  10257. },
  10258. {
  10259. name: "Eternity War",
  10260. height: math.unit(1.98e55, "yottaparsecs")
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10266. {
  10267. front: {
  10268. height: math.unit(5 + 8 / 12, "feet"),
  10269. weight: math.unit(63, "kg"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/xavier/front.svg",
  10273. extra: 944 / 883
  10274. }
  10275. },
  10276. frontStretch: {
  10277. height: math.unit(5 + 8 / 12, "feet"),
  10278. weight: math.unit(63, "kg"),
  10279. name: "Stretching",
  10280. image: {
  10281. source: "./media/characters/xavier/front-stretch.svg",
  10282. extra: 962 / 820
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(5 + 8 / 12, "feet")
  10290. },
  10291. {
  10292. name: "Macro",
  10293. height: math.unit(100, "meters"),
  10294. default: true
  10295. },
  10296. {
  10297. name: "McLargeHuge",
  10298. height: math.unit(10, "miles")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(5 + 5 / 12, "feet"),
  10307. weight: math.unit(150, "lb"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/joshii/front.svg",
  10311. extra: 765 / 653,
  10312. bottom: 51 / 816
  10313. }
  10314. },
  10315. foot: {
  10316. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10317. name: "Foot",
  10318. image: {
  10319. source: "./media/characters/joshii/foot.svg"
  10320. }
  10321. },
  10322. },
  10323. [
  10324. {
  10325. name: "Micro",
  10326. height: math.unit(2, "inches")
  10327. },
  10328. {
  10329. name: "Normal",
  10330. height: math.unit(5 + 5 / 12, "feet")
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(785, "feet"),
  10335. default: true
  10336. },
  10337. {
  10338. name: "Megamacro",
  10339. height: math.unit(24.5, "miles")
  10340. },
  10341. ]
  10342. ))
  10343. characterMakers.push(() => makeCharacter(
  10344. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10345. {
  10346. front: {
  10347. height: math.unit(6, "feet"),
  10348. weight: math.unit(150, "lb"),
  10349. name: "Front",
  10350. image: {
  10351. source: "./media/characters/goddess-elizabeth/front.svg",
  10352. extra: 1800 / 1525,
  10353. bottom: 0.005
  10354. }
  10355. },
  10356. foot: {
  10357. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10358. name: "Foot",
  10359. image: {
  10360. source: "./media/characters/goddess-elizabeth/foot.svg"
  10361. }
  10362. },
  10363. mouth: {
  10364. height: math.unit(6, "feet"),
  10365. name: "Mouth",
  10366. image: {
  10367. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Micro",
  10374. height: math.unit(12, "feet")
  10375. },
  10376. {
  10377. name: "Normal",
  10378. height: math.unit(80, "miles"),
  10379. default: true
  10380. },
  10381. {
  10382. name: "Macro",
  10383. height: math.unit(15000, "parsecs")
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(5 + 9 / 12, "feet"),
  10392. weight: math.unit(144, "lb"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/kara/front.svg"
  10396. }
  10397. },
  10398. feet: {
  10399. height: math.unit(6 / 6.765, "feet"),
  10400. name: "Kara's Feet",
  10401. rename: true,
  10402. image: {
  10403. source: "./media/characters/kara/feet.svg"
  10404. }
  10405. },
  10406. },
  10407. [
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(5 + 9 / 12, "feet")
  10411. },
  10412. {
  10413. name: "Macro",
  10414. height: math.unit(174, "feet"),
  10415. default: true
  10416. },
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(18, "feet"),
  10424. weight: math.unit(4050, "lb"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/tyrone/front.svg",
  10428. extra: 2405 / 2270,
  10429. bottom: 182 / 2587
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(18, "feet"),
  10437. default: true
  10438. },
  10439. {
  10440. name: "Macro",
  10441. height: math.unit(300, "feet")
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(15, "km")
  10446. },
  10447. {
  10448. name: "Gigamacro",
  10449. height: math.unit(500, "km")
  10450. },
  10451. {
  10452. name: "Teramacro",
  10453. height: math.unit(0.5, "gigameters")
  10454. },
  10455. {
  10456. name: "Omnimacro",
  10457. height: math.unit(1e252, "yottauniverse")
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10463. {
  10464. front: {
  10465. height: math.unit(7 + 8 / 12, "feet"),
  10466. weight: math.unit(120, "lb"),
  10467. name: "Front",
  10468. image: {
  10469. source: "./media/characters/danny/front.svg",
  10470. extra: 1490 / 1350
  10471. }
  10472. },
  10473. back: {
  10474. height: math.unit(7 + 8 / 12, "feet"),
  10475. weight: math.unit(120, "lb"),
  10476. name: "Back",
  10477. image: {
  10478. source: "./media/characters/danny/back.svg",
  10479. extra: 1490 / 1350
  10480. }
  10481. },
  10482. },
  10483. [
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(7 + 8 / 12, "feet"),
  10487. default: true
  10488. },
  10489. ]
  10490. ))
  10491. characterMakers.push(() => makeCharacter(
  10492. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10493. {
  10494. front: {
  10495. height: math.unit(3.5, "inches"),
  10496. weight: math.unit(19, "grams"),
  10497. name: "Front",
  10498. image: {
  10499. source: "./media/characters/mallow/front.svg",
  10500. extra: 471 / 431
  10501. }
  10502. },
  10503. back: {
  10504. height: math.unit(3.5, "inches"),
  10505. weight: math.unit(19, "grams"),
  10506. name: "Back",
  10507. image: {
  10508. source: "./media/characters/mallow/back.svg",
  10509. extra: 471 / 431
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(3.5, "inches"),
  10517. default: true
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(9, "feet"),
  10526. weight: math.unit(230, "kg"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/starry-aqua/front.svg"
  10530. }
  10531. },
  10532. back: {
  10533. height: math.unit(9, "feet"),
  10534. weight: math.unit(230, "kg"),
  10535. name: "Back",
  10536. image: {
  10537. source: "./media/characters/starry-aqua/back.svg"
  10538. }
  10539. },
  10540. hand: {
  10541. height: math.unit(9 * 0.1168, "feet"),
  10542. name: "Hand",
  10543. image: {
  10544. source: "./media/characters/starry-aqua/hand.svg"
  10545. }
  10546. },
  10547. foot: {
  10548. height: math.unit(9 * 0.18, "feet"),
  10549. name: "Foot",
  10550. image: {
  10551. source: "./media/characters/starry-aqua/foot.svg"
  10552. }
  10553. }
  10554. },
  10555. [
  10556. {
  10557. name: "Micro",
  10558. height: math.unit(3, "inches")
  10559. },
  10560. {
  10561. name: "Normal",
  10562. height: math.unit(9, "feet")
  10563. },
  10564. {
  10565. name: "Macro",
  10566. height: math.unit(300, "feet"),
  10567. default: true
  10568. },
  10569. {
  10570. name: "Megamacro",
  10571. height: math.unit(3200, "feet")
  10572. }
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10577. {
  10578. front: {
  10579. height: math.unit(15, "feet"),
  10580. weight: math.unit(5026, "lb"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/luka-towers/front.svg",
  10584. extra: 1269/1133,
  10585. bottom: 51/1320
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Normal",
  10592. height: math.unit(15, "feet"),
  10593. default: true
  10594. },
  10595. {
  10596. name: "Minimacro",
  10597. height: math.unit(25, "feet")
  10598. },
  10599. {
  10600. name: "Macro",
  10601. height: math.unit(320, "feet")
  10602. },
  10603. {
  10604. name: "Megamacro",
  10605. height: math.unit(35000, "feet")
  10606. },
  10607. {
  10608. name: "Gigamacro",
  10609. height: math.unit(4000, "miles")
  10610. },
  10611. {
  10612. name: "Teramacro",
  10613. height: math.unit(15000, "miles")
  10614. },
  10615. ]
  10616. ))
  10617. characterMakers.push(() => makeCharacter(
  10618. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10619. {
  10620. front: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(150, "lb"),
  10623. name: "Front",
  10624. image: {
  10625. source: "./media/characters/natalie-nightring/front.svg",
  10626. extra: 1,
  10627. bottom: 0.06
  10628. }
  10629. },
  10630. },
  10631. [
  10632. {
  10633. name: "Uh Oh",
  10634. height: math.unit(0.1, "mm")
  10635. },
  10636. {
  10637. name: "Small",
  10638. height: math.unit(3, "inches")
  10639. },
  10640. {
  10641. name: "Human Scale",
  10642. height: math.unit(6, "feet")
  10643. },
  10644. {
  10645. name: "Librarian",
  10646. height: math.unit(50, "feet"),
  10647. default: true
  10648. },
  10649. {
  10650. name: "Immense",
  10651. height: math.unit(200, "miles")
  10652. },
  10653. ]
  10654. ))
  10655. characterMakers.push(() => makeCharacter(
  10656. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10657. {
  10658. front: {
  10659. height: math.unit(6, "feet"),
  10660. weight: math.unit(180, "lbs"),
  10661. name: "Front",
  10662. image: {
  10663. source: "./media/characters/danni-rosie/front.svg",
  10664. extra: 1260 / 1128,
  10665. bottom: 0.022
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Micro",
  10672. height: math.unit(2, "inches"),
  10673. default: true
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(5 + 9 / 12, "feet"),
  10682. weight: math.unit(220, "lb"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/samantha-kruse/front.svg",
  10686. extra: (985 / 935),
  10687. bottom: 0.03
  10688. }
  10689. },
  10690. frontUndressed: {
  10691. height: math.unit(5 + 9 / 12, "feet"),
  10692. weight: math.unit(220, "lb"),
  10693. name: "Front (Undressed)",
  10694. image: {
  10695. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10696. extra: (973 / 923),
  10697. bottom: 0.025
  10698. }
  10699. },
  10700. fat: {
  10701. height: math.unit(5 + 9 / 12, "feet"),
  10702. weight: math.unit(900, "lb"),
  10703. name: "Front (Fat)",
  10704. image: {
  10705. source: "./media/characters/samantha-kruse/fat.svg",
  10706. extra: 2688 / 2561
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(5 + 9 / 12, "feet"),
  10714. default: true
  10715. }
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10720. {
  10721. back: {
  10722. height: math.unit(5 + 4 / 12, "feet"),
  10723. weight: math.unit(4963, "lb"),
  10724. name: "Back",
  10725. image: {
  10726. source: "./media/characters/amelia-rosie/back.svg",
  10727. extra: 1113 / 963,
  10728. bottom: 0.01
  10729. }
  10730. },
  10731. },
  10732. [
  10733. {
  10734. name: "Level 0",
  10735. height: math.unit(5 + 4 / 12, "feet")
  10736. },
  10737. {
  10738. name: "Level 1",
  10739. height: math.unit(164597, "feet"),
  10740. default: true
  10741. },
  10742. {
  10743. name: "Level 2",
  10744. height: math.unit(956243, "miles")
  10745. },
  10746. {
  10747. name: "Level 3",
  10748. height: math.unit(29421709423, "miles")
  10749. },
  10750. {
  10751. name: "Level 4",
  10752. height: math.unit(154, "lightyears")
  10753. },
  10754. {
  10755. name: "Level 5",
  10756. height: math.unit(4738272, "lightyears")
  10757. },
  10758. {
  10759. name: "Level 6",
  10760. height: math.unit(145787152896, "lightyears")
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(5 + 11 / 12, "feet"),
  10769. weight: math.unit(65, "kg"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/rook-kitara/front.svg",
  10773. extra: 1347 / 1274,
  10774. bottom: 0.005
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Totally Unfair",
  10781. height: math.unit(1.8, "mm")
  10782. },
  10783. {
  10784. name: "Lap Rookie",
  10785. height: math.unit(1.4, "feet")
  10786. },
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(5 + 11 / 12, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "How Did This Happen",
  10794. height: math.unit(80, "miles")
  10795. }
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(7, "feet"),
  10803. weight: math.unit(300, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/pisces/front.svg",
  10807. extra: 2255 / 2115,
  10808. bottom: 0.03
  10809. }
  10810. },
  10811. back: {
  10812. height: math.unit(7, "feet"),
  10813. weight: math.unit(300, "lb"),
  10814. name: "Back",
  10815. image: {
  10816. source: "./media/characters/pisces/back.svg",
  10817. extra: 2146 / 2055,
  10818. bottom: 0.04
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(7, "feet"),
  10826. default: true
  10827. },
  10828. {
  10829. name: "Swimming Pool",
  10830. height: math.unit(12.2, "meters")
  10831. },
  10832. {
  10833. name: "Olympic Swimming Pool",
  10834. height: math.unit(56.3, "meters")
  10835. },
  10836. {
  10837. name: "Lake Superior",
  10838. height: math.unit(93900, "meters")
  10839. },
  10840. {
  10841. name: "Mediterranean Sea",
  10842. height: math.unit(644457, "meters")
  10843. },
  10844. {
  10845. name: "World's Oceans",
  10846. height: math.unit(4567491, "meters")
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10852. {
  10853. front: {
  10854. height: math.unit(2.3, "meters"),
  10855. weight: math.unit(120, "kg"),
  10856. name: "Front",
  10857. image: {
  10858. source: "./media/characters/zelas/front.svg"
  10859. }
  10860. },
  10861. side: {
  10862. height: math.unit(2.3, "meters"),
  10863. weight: math.unit(120, "kg"),
  10864. name: "Side",
  10865. image: {
  10866. source: "./media/characters/zelas/side.svg"
  10867. }
  10868. },
  10869. back: {
  10870. height: math.unit(2.3, "meters"),
  10871. weight: math.unit(120, "kg"),
  10872. name: "Back",
  10873. image: {
  10874. source: "./media/characters/zelas/back.svg"
  10875. }
  10876. },
  10877. foot: {
  10878. height: math.unit(1.116, "feet"),
  10879. name: "Foot",
  10880. image: {
  10881. source: "./media/characters/zelas/foot.svg"
  10882. }
  10883. },
  10884. },
  10885. [
  10886. {
  10887. name: "Normal",
  10888. height: math.unit(2.3, "meters")
  10889. },
  10890. {
  10891. name: "Macro",
  10892. height: math.unit(30, "meters"),
  10893. default: true
  10894. },
  10895. ]
  10896. ))
  10897. characterMakers.push(() => makeCharacter(
  10898. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10899. {
  10900. front: {
  10901. height: math.unit(1, "inch"),
  10902. weight: math.unit(0.21, "grams"),
  10903. name: "Front",
  10904. image: {
  10905. source: "./media/characters/talbot/front.svg",
  10906. extra: 594 / 544
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Micro",
  10913. height: math.unit(1, "inch"),
  10914. default: true
  10915. },
  10916. ]
  10917. ))
  10918. characterMakers.push(() => makeCharacter(
  10919. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10920. {
  10921. front: {
  10922. height: math.unit(3 + 3 / 12, "feet"),
  10923. weight: math.unit(51.8, "lb"),
  10924. name: "Front",
  10925. image: {
  10926. source: "./media/characters/fliss/front.svg",
  10927. extra: 840 / 640
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Teeny Tiny",
  10934. height: math.unit(1, "mm")
  10935. },
  10936. {
  10937. name: "Small",
  10938. height: math.unit(1, "inch"),
  10939. default: true
  10940. },
  10941. {
  10942. name: "Standard Sylveon",
  10943. height: math.unit(3 + 3 / 12, "feet")
  10944. },
  10945. {
  10946. name: "Large Nuisance",
  10947. height: math.unit(33, "feet")
  10948. },
  10949. {
  10950. name: "City Filler",
  10951. height: math.unit(3000, "feet")
  10952. },
  10953. {
  10954. name: "New Horizon",
  10955. height: math.unit(6000, "miles")
  10956. },
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10961. {
  10962. front: {
  10963. height: math.unit(5, "cm"),
  10964. weight: math.unit(1.94, "g"),
  10965. name: "Front",
  10966. image: {
  10967. source: "./media/characters/fleta/front.svg",
  10968. extra: 835 / 803
  10969. }
  10970. },
  10971. back: {
  10972. height: math.unit(5, "cm"),
  10973. weight: math.unit(1.94, "g"),
  10974. name: "Back",
  10975. image: {
  10976. source: "./media/characters/fleta/back.svg",
  10977. extra: 835 / 803
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Micro",
  10984. height: math.unit(5, "cm"),
  10985. default: true
  10986. },
  10987. ]
  10988. ))
  10989. characterMakers.push(() => makeCharacter(
  10990. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10991. {
  10992. front: {
  10993. height: math.unit(6, "feet"),
  10994. weight: math.unit(225, "lb"),
  10995. name: "Front",
  10996. image: {
  10997. source: "./media/characters/dominic/front.svg",
  10998. extra: 1770 / 1620,
  10999. bottom: 0.025
  11000. }
  11001. },
  11002. back: {
  11003. height: math.unit(6, "feet"),
  11004. weight: math.unit(225, "lb"),
  11005. name: "Back",
  11006. image: {
  11007. source: "./media/characters/dominic/back.svg",
  11008. extra: 1745 / 1620,
  11009. bottom: 0.065
  11010. }
  11011. },
  11012. },
  11013. [
  11014. {
  11015. name: "Nano",
  11016. height: math.unit(0.1, "mm")
  11017. },
  11018. {
  11019. name: "Micro-",
  11020. height: math.unit(1, "mm")
  11021. },
  11022. {
  11023. name: "Micro",
  11024. height: math.unit(4, "inches")
  11025. },
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(6 + 4 / 12, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Macro",
  11033. height: math.unit(115, "feet")
  11034. },
  11035. {
  11036. name: "Macro+",
  11037. height: math.unit(955, "feet")
  11038. },
  11039. {
  11040. name: "Megamacro",
  11041. height: math.unit(8990, "feet")
  11042. },
  11043. {
  11044. name: "Gigmacro",
  11045. height: math.unit(9310, "miles")
  11046. },
  11047. {
  11048. name: "Teramacro",
  11049. height: math.unit(1567005010, "miles")
  11050. },
  11051. {
  11052. name: "Examacro",
  11053. height: math.unit(1425, "parsecs")
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11059. {
  11060. front: {
  11061. height: math.unit(400, "feet"),
  11062. weight: math.unit(44444444, "lb"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/major-colonel/front.svg"
  11066. }
  11067. },
  11068. back: {
  11069. height: math.unit(400, "feet"),
  11070. weight: math.unit(44444444, "lb"),
  11071. name: "Back",
  11072. image: {
  11073. source: "./media/characters/major-colonel/back.svg"
  11074. }
  11075. },
  11076. },
  11077. [
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(400, "feet"),
  11081. default: true
  11082. },
  11083. ]
  11084. ))
  11085. characterMakers.push(() => makeCharacter(
  11086. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11087. {
  11088. catFront: {
  11089. height: math.unit(6, "feet"),
  11090. weight: math.unit(120, "lb"),
  11091. name: "Front (Cat Side)",
  11092. image: {
  11093. source: "./media/characters/axel-lycan/cat-front.svg",
  11094. extra: 430 / 402,
  11095. bottom: 43 / 472.35
  11096. }
  11097. },
  11098. catBack: {
  11099. height: math.unit(6, "feet"),
  11100. weight: math.unit(120, "lb"),
  11101. name: "Back (Cat Side)",
  11102. image: {
  11103. source: "./media/characters/axel-lycan/cat-back.svg",
  11104. extra: 447 / 419,
  11105. bottom: 23.3 / 469
  11106. }
  11107. },
  11108. wolfFront: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(120, "lb"),
  11111. name: "Front (Wolf Side)",
  11112. image: {
  11113. source: "./media/characters/axel-lycan/wolf-front.svg",
  11114. extra: 485 / 456,
  11115. bottom: 19 / 504
  11116. }
  11117. },
  11118. wolfBack: {
  11119. height: math.unit(6, "feet"),
  11120. weight: math.unit(120, "lb"),
  11121. name: "Back (Wolf Side)",
  11122. image: {
  11123. source: "./media/characters/axel-lycan/wolf-back.svg",
  11124. extra: 475 / 438,
  11125. bottom: 39.2 / 514
  11126. }
  11127. },
  11128. },
  11129. [
  11130. {
  11131. name: "Macro",
  11132. height: math.unit(1, "km"),
  11133. default: true
  11134. },
  11135. ]
  11136. ))
  11137. characterMakers.push(() => makeCharacter(
  11138. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11139. {
  11140. front: {
  11141. height: math.unit(5 + 9 / 12, "feet"),
  11142. weight: math.unit(175, "lb"),
  11143. name: "Front",
  11144. image: {
  11145. source: "./media/characters/vanrel-hyena/front.svg",
  11146. extra: 1086 / 1010,
  11147. bottom: 0.04
  11148. }
  11149. },
  11150. },
  11151. [
  11152. {
  11153. name: "Normal",
  11154. height: math.unit(5 + 9 / 12, "feet"),
  11155. default: true
  11156. },
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11161. {
  11162. front: {
  11163. height: math.unit(6, "feet"),
  11164. weight: math.unit(103, "lb"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/abbott-absol/front.svg",
  11168. extra: 765/694,
  11169. bottom: 47/812
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Megamicro",
  11176. height: math.unit(0.1, "mm")
  11177. },
  11178. {
  11179. name: "Micro",
  11180. height: math.unit(1, "inch")
  11181. },
  11182. {
  11183. name: "Normal",
  11184. height: math.unit(6, "feet"),
  11185. default: true
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11191. {
  11192. front: {
  11193. height: math.unit(6, "feet"),
  11194. weight: math.unit(264, "lb"),
  11195. name: "Front",
  11196. image: {
  11197. source: "./media/characters/hector/front.svg",
  11198. extra: 2280 / 2130,
  11199. bottom: 0.07
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(12.25, "foot"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Macro",
  11211. height: math.unit(160, "feet")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(6, "feet"),
  11220. weight: math.unit(150, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/sal/front.svg",
  11224. extra: 1846 / 1699,
  11225. bottom: 0.04
  11226. }
  11227. },
  11228. },
  11229. [
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(10, "miles"),
  11233. default: true
  11234. },
  11235. ]
  11236. ))
  11237. characterMakers.push(() => makeCharacter(
  11238. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11239. {
  11240. front: {
  11241. height: math.unit(3, "meters"),
  11242. weight: math.unit(450, "kg"),
  11243. name: "front",
  11244. image: {
  11245. source: "./media/characters/ranger/front.svg",
  11246. extra: 2401 / 2243,
  11247. bottom: 0.05
  11248. }
  11249. },
  11250. },
  11251. [
  11252. {
  11253. name: "Normal",
  11254. height: math.unit(3, "meters"),
  11255. default: true
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11261. {
  11262. front: {
  11263. height: math.unit(14, "feet"),
  11264. weight: math.unit(800, "kg"),
  11265. name: "Front",
  11266. image: {
  11267. source: "./media/characters/theresa/front.svg",
  11268. extra: 3575 / 3346,
  11269. bottom: 0.03
  11270. }
  11271. },
  11272. },
  11273. [
  11274. {
  11275. name: "Normal",
  11276. height: math.unit(14, "feet"),
  11277. default: true
  11278. },
  11279. ]
  11280. ))
  11281. characterMakers.push(() => makeCharacter(
  11282. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11283. {
  11284. front: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(3, "kg"),
  11287. name: "Front",
  11288. image: {
  11289. source: "./media/characters/ine/front.svg",
  11290. extra: 678 / 539,
  11291. bottom: 0.023
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Normal",
  11298. height: math.unit(2.265, "feet"),
  11299. default: true
  11300. },
  11301. ]
  11302. ))
  11303. characterMakers.push(() => makeCharacter(
  11304. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11305. {
  11306. front: {
  11307. height: math.unit(5, "feet"),
  11308. weight: math.unit(30, "kg"),
  11309. name: "Front",
  11310. image: {
  11311. source: "./media/characters/vial/front.svg",
  11312. extra: 1365 / 1277,
  11313. bottom: 0.04
  11314. }
  11315. },
  11316. },
  11317. [
  11318. {
  11319. name: "Normal",
  11320. height: math.unit(5, "feet"),
  11321. default: true
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11327. {
  11328. side: {
  11329. height: math.unit(3.4, "meters"),
  11330. weight: math.unit(1000, "lb"),
  11331. name: "Side",
  11332. image: {
  11333. source: "./media/characters/rovoska/side.svg",
  11334. extra: 4403 / 1515
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(3.4, "meters"),
  11342. default: true
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(8, "feet"),
  11351. weight: math.unit(315, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/gunner-rotthbauer/front.svg"
  11355. }
  11356. },
  11357. back: {
  11358. height: math.unit(8, "feet"),
  11359. weight: math.unit(315, "lb"),
  11360. name: "Back",
  11361. image: {
  11362. source: "./media/characters/gunner-rotthbauer/back.svg"
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Micro",
  11369. height: math.unit(3.5, "inches")
  11370. },
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(8, "feet"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(250, "feet")
  11379. },
  11380. {
  11381. name: "Megamacro",
  11382. height: math.unit(1, "AU")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11388. {
  11389. front: {
  11390. height: math.unit(5 + 5 / 12, "feet"),
  11391. weight: math.unit(140, "lb"),
  11392. name: "Front",
  11393. image: {
  11394. source: "./media/characters/allatia/front.svg",
  11395. extra: 1227 / 1180,
  11396. bottom: 0.027
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(5 + 5 / 12, "feet")
  11404. },
  11405. {
  11406. name: "Macro",
  11407. height: math.unit(250, "feet"),
  11408. default: true
  11409. },
  11410. {
  11411. name: "Megamacro",
  11412. height: math.unit(8, "miles")
  11413. }
  11414. ]
  11415. ))
  11416. characterMakers.push(() => makeCharacter(
  11417. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11418. {
  11419. front: {
  11420. height: math.unit(6, "feet"),
  11421. weight: math.unit(120, "lb"),
  11422. name: "Front",
  11423. image: {
  11424. source: "./media/characters/tene/front.svg",
  11425. extra: 814/750,
  11426. bottom: 36/850
  11427. }
  11428. },
  11429. stomping: {
  11430. height: math.unit(2.025, "meters"),
  11431. weight: math.unit(120, "lb"),
  11432. name: "Stomping",
  11433. image: {
  11434. source: "./media/characters/tene/stomping.svg",
  11435. extra: 885/821,
  11436. bottom: 15/900
  11437. }
  11438. },
  11439. sitting: {
  11440. height: math.unit(1, "meter"),
  11441. weight: math.unit(120, "lb"),
  11442. name: "Sitting",
  11443. image: {
  11444. source: "./media/characters/tene/sitting.svg",
  11445. extra: 396/366,
  11446. bottom: 79/475
  11447. }
  11448. },
  11449. smiling: {
  11450. height: math.unit(1.2, "feet"),
  11451. name: "Smiling",
  11452. image: {
  11453. source: "./media/characters/tene/smiling.svg",
  11454. extra: 1364/1071,
  11455. bottom: 0/1364
  11456. }
  11457. },
  11458. smug: {
  11459. height: math.unit(1.3, "feet"),
  11460. name: "Smug",
  11461. image: {
  11462. source: "./media/characters/tene/smug.svg",
  11463. extra: 1323/1082,
  11464. bottom: 0/1323
  11465. }
  11466. },
  11467. feral: {
  11468. height: math.unit(3.9, "feet"),
  11469. weight: math.unit(250, "lb"),
  11470. name: "Feral",
  11471. image: {
  11472. source: "./media/characters/tene/feral.svg",
  11473. extra: 717 / 458,
  11474. bottom: 0.179
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(6, "feet")
  11482. },
  11483. {
  11484. name: "Macro",
  11485. height: math.unit(300, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Megamacro",
  11490. height: math.unit(5, "miles")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11496. {
  11497. side: {
  11498. height: math.unit(6, "feet"),
  11499. name: "Side",
  11500. image: {
  11501. source: "./media/characters/evander/side.svg",
  11502. extra: 877 / 477
  11503. }
  11504. },
  11505. },
  11506. [
  11507. {
  11508. name: "Normal",
  11509. height: math.unit(0.83, "meters"),
  11510. default: true
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11516. {
  11517. front: {
  11518. height: math.unit(12, "feet"),
  11519. weight: math.unit(1000, "lb"),
  11520. name: "Front",
  11521. image: {
  11522. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11523. extra: 1762 / 1611
  11524. }
  11525. },
  11526. back: {
  11527. height: math.unit(12, "feet"),
  11528. weight: math.unit(1000, "lb"),
  11529. name: "Back",
  11530. image: {
  11531. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11532. extra: 1762 / 1611
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(12, "feet"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Kaiju",
  11544. height: math.unit(150, "feet")
  11545. },
  11546. ]
  11547. ))
  11548. characterMakers.push(() => makeCharacter(
  11549. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11550. {
  11551. front: {
  11552. height: math.unit(5 + 11/12, "feet"),
  11553. weight: math.unit(180, "lb"),
  11554. name: "Front",
  11555. image: {
  11556. source: "./media/characters/zero-alurus/front.svg",
  11557. extra: 1032/957,
  11558. bottom: 10/1042
  11559. }
  11560. },
  11561. back: {
  11562. height: math.unit(5 + 11/12, "feet"),
  11563. weight: math.unit(180, "lb"),
  11564. name: "Back",
  11565. image: {
  11566. source: "./media/characters/zero-alurus/back.svg",
  11567. extra: 1027/950,
  11568. bottom: 12/1039
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Normal",
  11575. height: math.unit(5 + 11 / 12, "feet")
  11576. },
  11577. {
  11578. name: "Mini-Macro",
  11579. height: math.unit(25, "feet")
  11580. },
  11581. {
  11582. name: "Macro",
  11583. height: math.unit(90, "feet"),
  11584. default: true
  11585. },
  11586. {
  11587. name: "Macro+",
  11588. height: math.unit(500, "feet")
  11589. },
  11590. {
  11591. name: "Megamacro",
  11592. height: math.unit(1200, "feet")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(6, "feet"),
  11601. weight: math.unit(200, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/mega-shi/front.svg",
  11605. extra: 1279 / 1250,
  11606. bottom: 0.02
  11607. }
  11608. },
  11609. back: {
  11610. height: math.unit(6, "feet"),
  11611. weight: math.unit(200, "lb"),
  11612. name: "Back",
  11613. image: {
  11614. source: "./media/characters/mega-shi/back.svg",
  11615. extra: 1279 / 1250,
  11616. bottom: 0.02
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Micro",
  11623. height: math.unit(16 + 6 / 12, "feet")
  11624. },
  11625. {
  11626. name: "Third Dimension",
  11627. height: math.unit(40, "meters")
  11628. },
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(660, "feet"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Megamacro",
  11636. height: math.unit(10, "miles")
  11637. },
  11638. {
  11639. name: "Planetary Launch",
  11640. height: math.unit(500, "miles")
  11641. },
  11642. {
  11643. name: "Interstellar",
  11644. height: math.unit(1e9, "miles")
  11645. },
  11646. {
  11647. name: "Leaving the Universe",
  11648. height: math.unit(1, "gigaparsec")
  11649. },
  11650. {
  11651. name: "Travelling Universes",
  11652. height: math.unit(30e15, "parsecs")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(5 + 4/12, "feet"),
  11661. weight: math.unit(120, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/odyssey/front.svg",
  11665. extra: 1747/1571,
  11666. bottom: 47/1794
  11667. }
  11668. },
  11669. side: {
  11670. height: math.unit(5.1, "feet"),
  11671. weight: math.unit(120, "lb"),
  11672. name: "Side",
  11673. image: {
  11674. source: "./media/characters/odyssey/side.svg",
  11675. extra: 1847/1619,
  11676. bottom: 47/1894
  11677. }
  11678. },
  11679. lounging: {
  11680. height: math.unit(1.464, "feet"),
  11681. weight: math.unit(120, "lb"),
  11682. name: "Lounging",
  11683. image: {
  11684. source: "./media/characters/odyssey/lounging.svg",
  11685. extra: 1235/837,
  11686. bottom: 551/1786
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(5 + 4 / 12, "feet")
  11694. },
  11695. {
  11696. name: "Macro",
  11697. height: math.unit(1, "km")
  11698. },
  11699. {
  11700. name: "Megamacro",
  11701. height: math.unit(3000, "km")
  11702. },
  11703. {
  11704. name: "Gigamacro",
  11705. height: math.unit(1, "AU"),
  11706. default: true
  11707. },
  11708. {
  11709. name: "Omniversal",
  11710. height: math.unit(100e14, "lightyears")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(5 + 10/12, "feet"),
  11719. name: "Front",
  11720. image: {
  11721. source: "./media/characters/mekuto/front.svg",
  11722. extra: 875/835,
  11723. bottom: 46/921
  11724. }
  11725. },
  11726. },
  11727. [
  11728. {
  11729. name: "Minimicro",
  11730. height: math.unit(0.2, "inches")
  11731. },
  11732. {
  11733. name: "Micro",
  11734. height: math.unit(1.5, "inches")
  11735. },
  11736. {
  11737. name: "Normal",
  11738. height: math.unit(5 + 10 / 12, "feet"),
  11739. default: true
  11740. },
  11741. {
  11742. name: "Minimacro",
  11743. height: math.unit(17 + 9 / 12, "feet")
  11744. },
  11745. {
  11746. name: "Macro",
  11747. height: math.unit(177.5, "feet")
  11748. },
  11749. {
  11750. name: "Megamacro",
  11751. height: math.unit(152, "miles")
  11752. },
  11753. ]
  11754. ))
  11755. characterMakers.push(() => makeCharacter(
  11756. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11757. {
  11758. front: {
  11759. height: math.unit(6.5, "inches"),
  11760. weight: math.unit(13, "oz"),
  11761. name: "Front",
  11762. image: {
  11763. source: "./media/characters/dafydd-tomos/front.svg",
  11764. extra: 2990 / 2603,
  11765. bottom: 0.03
  11766. }
  11767. },
  11768. },
  11769. [
  11770. {
  11771. name: "Micro",
  11772. height: math.unit(6.5, "inches"),
  11773. default: true
  11774. },
  11775. ]
  11776. ))
  11777. characterMakers.push(() => makeCharacter(
  11778. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11779. {
  11780. front: {
  11781. height: math.unit(6, "feet"),
  11782. weight: math.unit(150, "lb"),
  11783. name: "Front",
  11784. image: {
  11785. source: "./media/characters/splinter/front.svg",
  11786. extra: 2990 / 2882,
  11787. bottom: 0.04
  11788. }
  11789. },
  11790. back: {
  11791. height: math.unit(6, "feet"),
  11792. weight: math.unit(150, "lb"),
  11793. name: "Back",
  11794. image: {
  11795. source: "./media/characters/splinter/back.svg",
  11796. extra: 2990 / 2882,
  11797. bottom: 0.04
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(6, "feet")
  11805. },
  11806. {
  11807. name: "Macro",
  11808. height: math.unit(230, "meters"),
  11809. default: true
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(4 + 10 / 12, "feet"),
  11818. weight: math.unit(480, "lb"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/snow-gabumon/front.svg",
  11822. extra: 1140 / 963,
  11823. bottom: 0.058
  11824. }
  11825. },
  11826. back: {
  11827. height: math.unit(4 + 10 / 12, "feet"),
  11828. weight: math.unit(480, "lb"),
  11829. name: "Back",
  11830. image: {
  11831. source: "./media/characters/snow-gabumon/back.svg",
  11832. extra: 1115 / 962,
  11833. bottom: 0.041
  11834. }
  11835. },
  11836. frontUndresed: {
  11837. height: math.unit(4 + 10 / 12, "feet"),
  11838. weight: math.unit(480, "lb"),
  11839. name: "Front (Undressed)",
  11840. image: {
  11841. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11842. extra: 1061 / 960,
  11843. bottom: 0.045
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Micro",
  11850. height: math.unit(1, "inch")
  11851. },
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(4 + 10 / 12, "feet"),
  11855. default: true
  11856. },
  11857. {
  11858. name: "Macro",
  11859. height: math.unit(200, "feet")
  11860. },
  11861. {
  11862. name: "Megamacro",
  11863. height: math.unit(120, "miles")
  11864. },
  11865. {
  11866. name: "Gigamacro",
  11867. height: math.unit(9800, "miles")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11873. {
  11874. front: {
  11875. height: math.unit(1.7, "meters"),
  11876. weight: math.unit(140, "lb"),
  11877. name: "Front",
  11878. image: {
  11879. source: "./media/characters/moody/front.svg",
  11880. extra: 3226 / 3007,
  11881. bottom: 0.087
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Micro",
  11888. height: math.unit(1, "mm")
  11889. },
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(1.7, "meters"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Macro",
  11897. height: math.unit(80, "meters")
  11898. },
  11899. {
  11900. name: "Macro+",
  11901. height: math.unit(500, "meters")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(6, "feet"),
  11910. weight: math.unit(150, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/zyas/front.svg",
  11914. extra: 1180 / 1120,
  11915. bottom: 0.045
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Normal",
  11922. height: math.unit(10, "feet"),
  11923. default: true
  11924. },
  11925. {
  11926. name: "Macro",
  11927. height: math.unit(500, "feet")
  11928. },
  11929. {
  11930. name: "Megamacro",
  11931. height: math.unit(5, "miles")
  11932. },
  11933. {
  11934. name: "Teramacro",
  11935. height: math.unit(150000, "miles")
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(6, "feet"),
  11944. weight: math.unit(150, "lb"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/cuon/front.svg",
  11948. extra: 1390 / 1320,
  11949. bottom: 0.008
  11950. }
  11951. },
  11952. },
  11953. [
  11954. {
  11955. name: "Micro",
  11956. height: math.unit(3, "inches")
  11957. },
  11958. {
  11959. name: "Normal",
  11960. height: math.unit(18 + 9 / 12, "feet"),
  11961. default: true
  11962. },
  11963. {
  11964. name: "Macro",
  11965. height: math.unit(360, "feet")
  11966. },
  11967. {
  11968. name: "Megamacro",
  11969. height: math.unit(360, "miles")
  11970. },
  11971. ]
  11972. ))
  11973. characterMakers.push(() => makeCharacter(
  11974. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11975. {
  11976. front: {
  11977. height: math.unit(2.4, "meters"),
  11978. weight: math.unit(70, "kg"),
  11979. name: "Front",
  11980. image: {
  11981. source: "./media/characters/nyanuxk/front.svg",
  11982. extra: 1172 / 1084,
  11983. bottom: 0.065
  11984. }
  11985. },
  11986. side: {
  11987. height: math.unit(2.4, "meters"),
  11988. weight: math.unit(70, "kg"),
  11989. name: "Side",
  11990. image: {
  11991. source: "./media/characters/nyanuxk/side.svg",
  11992. extra: 1190 / 1132,
  11993. bottom: 0.007
  11994. }
  11995. },
  11996. back: {
  11997. height: math.unit(2.4, "meters"),
  11998. weight: math.unit(70, "kg"),
  11999. name: "Back",
  12000. image: {
  12001. source: "./media/characters/nyanuxk/back.svg",
  12002. extra: 1200 / 1141,
  12003. bottom: 0.015
  12004. }
  12005. },
  12006. foot: {
  12007. height: math.unit(0.52, "meters"),
  12008. name: "Foot",
  12009. image: {
  12010. source: "./media/characters/nyanuxk/foot.svg"
  12011. }
  12012. },
  12013. },
  12014. [
  12015. {
  12016. name: "Micro",
  12017. height: math.unit(2, "cm")
  12018. },
  12019. {
  12020. name: "Normal",
  12021. height: math.unit(2.4, "meters"),
  12022. default: true
  12023. },
  12024. {
  12025. name: "Smaller Macro",
  12026. height: math.unit(120, "meters")
  12027. },
  12028. {
  12029. name: "Bigger Macro",
  12030. height: math.unit(1.2, "km")
  12031. },
  12032. {
  12033. name: "Megamacro",
  12034. height: math.unit(15, "kilometers")
  12035. },
  12036. {
  12037. name: "Gigamacro",
  12038. height: math.unit(2000, "km")
  12039. },
  12040. {
  12041. name: "Teramacro",
  12042. height: math.unit(500000, "km")
  12043. },
  12044. ]
  12045. ))
  12046. characterMakers.push(() => makeCharacter(
  12047. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12048. {
  12049. side: {
  12050. height: math.unit(6, "feet"),
  12051. name: "Side",
  12052. image: {
  12053. source: "./media/characters/ailbhe/side.svg",
  12054. extra: 757 / 464,
  12055. bottom: 0.041
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Normal",
  12062. height: math.unit(1.07, "meters"),
  12063. default: true
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(120, "kg"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/zevulfius/front.svg",
  12076. extra: 965 / 903
  12077. }
  12078. },
  12079. side: {
  12080. height: math.unit(6, "feet"),
  12081. weight: math.unit(120, "kg"),
  12082. name: "Side",
  12083. image: {
  12084. source: "./media/characters/zevulfius/side.svg",
  12085. extra: 939 / 900
  12086. }
  12087. },
  12088. back: {
  12089. height: math.unit(6, "feet"),
  12090. weight: math.unit(120, "kg"),
  12091. name: "Back",
  12092. image: {
  12093. source: "./media/characters/zevulfius/back.svg",
  12094. extra: 918 / 854,
  12095. bottom: 0.005
  12096. }
  12097. },
  12098. foot: {
  12099. height: math.unit(6 / 3.72, "feet"),
  12100. name: "Foot",
  12101. image: {
  12102. source: "./media/characters/zevulfius/foot.svg"
  12103. }
  12104. },
  12105. },
  12106. [
  12107. {
  12108. name: "Macro",
  12109. height: math.unit(750, "meters")
  12110. },
  12111. {
  12112. name: "Megamacro",
  12113. height: math.unit(20, "km"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Gigamacro",
  12118. height: math.unit(2000, "km")
  12119. },
  12120. {
  12121. name: "Teramacro",
  12122. height: math.unit(250000, "km")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(100, "feet"),
  12131. weight: math.unit(350, "kg"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/rikes/front.svg",
  12135. extra: 1565 / 1483,
  12136. bottom: 0.017
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Macro",
  12143. height: math.unit(100, "feet"),
  12144. default: true
  12145. },
  12146. ]
  12147. ))
  12148. characterMakers.push(() => makeCharacter(
  12149. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12150. {
  12151. front: {
  12152. height: math.unit(8, "feet"),
  12153. weight: math.unit(356, "lb"),
  12154. name: "Front",
  12155. image: {
  12156. source: "./media/characters/adam-silver-mane/front.svg",
  12157. extra: 1036/937,
  12158. bottom: 63/1099
  12159. }
  12160. },
  12161. side: {
  12162. height: math.unit(8, "feet"),
  12163. weight: math.unit(356, "lb"),
  12164. name: "Side",
  12165. image: {
  12166. source: "./media/characters/adam-silver-mane/side.svg",
  12167. extra: 997/901,
  12168. bottom: 59/1056
  12169. }
  12170. },
  12171. frontNsfw: {
  12172. height: math.unit(8, "feet"),
  12173. weight: math.unit(356, "lb"),
  12174. name: "Front (NSFW)",
  12175. image: {
  12176. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12177. extra: 1036/937,
  12178. bottom: 63/1099
  12179. }
  12180. },
  12181. sideNsfw: {
  12182. height: math.unit(8, "feet"),
  12183. weight: math.unit(356, "lb"),
  12184. name: "Side (NSFW)",
  12185. image: {
  12186. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12187. extra: 997/901,
  12188. bottom: 59/1056
  12189. }
  12190. },
  12191. dick: {
  12192. height: math.unit(2.1, "feet"),
  12193. name: "Dick",
  12194. image: {
  12195. source: "./media/characters/adam-silver-mane/dick.svg"
  12196. }
  12197. },
  12198. taur: {
  12199. height: math.unit(16, "feet"),
  12200. weight: math.unit(1500, "kg"),
  12201. name: "Taur",
  12202. image: {
  12203. source: "./media/characters/adam-silver-mane/taur.svg",
  12204. extra: 1713 / 1571,
  12205. bottom: 0.01
  12206. }
  12207. },
  12208. },
  12209. [
  12210. {
  12211. name: "Normal",
  12212. height: math.unit(8, "feet")
  12213. },
  12214. {
  12215. name: "Minimacro",
  12216. height: math.unit(80, "feet")
  12217. },
  12218. {
  12219. name: "MDA",
  12220. height: math.unit(80, "meters")
  12221. },
  12222. {
  12223. name: "Macro",
  12224. height: math.unit(800, "feet"),
  12225. default: true
  12226. },
  12227. {
  12228. name: "Megamacro",
  12229. height: math.unit(8000, "feet")
  12230. },
  12231. {
  12232. name: "Gigamacro",
  12233. height: math.unit(800, "miles")
  12234. },
  12235. {
  12236. name: "Teramacro",
  12237. height: math.unit(80000, "miles")
  12238. },
  12239. {
  12240. name: "Celestial",
  12241. height: math.unit(8e6, "miles")
  12242. },
  12243. {
  12244. name: "Star Dragon",
  12245. height: math.unit(800000, "parsecs")
  12246. },
  12247. {
  12248. name: "Godly",
  12249. height: math.unit(800, "teraparsecs")
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/ky'owin/front.svg",
  12262. extra: 3862/3053,
  12263. bottom: 74/3936
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(6 + 8 / 12, "feet")
  12271. },
  12272. {
  12273. name: "Large",
  12274. height: math.unit(68, "feet")
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(132, "feet")
  12279. },
  12280. {
  12281. name: "Macro+",
  12282. height: math.unit(340, "feet")
  12283. },
  12284. {
  12285. name: "Macro++",
  12286. height: math.unit(680, "feet"),
  12287. default: true
  12288. },
  12289. {
  12290. name: "Megamacro",
  12291. height: math.unit(1, "mile")
  12292. },
  12293. {
  12294. name: "Megamacro+",
  12295. height: math.unit(10, "miles")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(4, "feet"),
  12304. weight: math.unit(50, "lb"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/mal/front.svg",
  12308. extra: 785 / 724,
  12309. bottom: 0.07
  12310. }
  12311. },
  12312. },
  12313. [
  12314. {
  12315. name: "Micro",
  12316. height: math.unit(4, "inches")
  12317. },
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(4, "feet"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Macro",
  12325. height: math.unit(200, "feet")
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(6, "feet"),
  12334. weight: math.unit(150, "lb"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/jordan-deware/front.svg",
  12338. extra: 1191 / 1012
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Nano",
  12345. height: math.unit(0.01, "mm")
  12346. },
  12347. {
  12348. name: "Minimicro",
  12349. height: math.unit(1, "mm")
  12350. },
  12351. {
  12352. name: "Micro",
  12353. height: math.unit(0.5, "inches")
  12354. },
  12355. {
  12356. name: "Normal",
  12357. height: math.unit(4, "feet"),
  12358. default: true
  12359. },
  12360. {
  12361. name: "Minimacro",
  12362. height: math.unit(40, "meters")
  12363. },
  12364. {
  12365. name: "Small Macro",
  12366. height: math.unit(400, "meters")
  12367. },
  12368. {
  12369. name: "Macro",
  12370. height: math.unit(4, "miles")
  12371. },
  12372. {
  12373. name: "Megamacro",
  12374. height: math.unit(40, "miles")
  12375. },
  12376. {
  12377. name: "Megamacro+",
  12378. height: math.unit(400, "miles")
  12379. },
  12380. {
  12381. name: "Gigamacro",
  12382. height: math.unit(400000, "miles")
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(15, "feet"),
  12391. weight: math.unit(3000, "kg"),
  12392. preyCapacity: math.unit(450, "people"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/kimiko/front.svg",
  12396. extra: 875/832,
  12397. bottom: 36/911
  12398. },
  12399. extraAttributes: {
  12400. "pawSize": {
  12401. name: "Paw Size",
  12402. power: 1,
  12403. type: "length",
  12404. base: math.unit(0.9, "meters")
  12405. },
  12406. }
  12407. },
  12408. side: {
  12409. height: math.unit(15, "feet"),
  12410. weight: math.unit(3000, "kg"),
  12411. preyCapacity: math.unit(400, "people"),
  12412. name: "Side",
  12413. image: {
  12414. source: "./media/characters/kimiko/side.svg",
  12415. extra: 448/270,
  12416. bottom: 7/455
  12417. },
  12418. extraAttributes: {
  12419. "pawSize": {
  12420. name: "Paw Size",
  12421. power: 1,
  12422. type: "length",
  12423. base: math.unit(0.9, "meters")
  12424. },
  12425. }
  12426. },
  12427. maw: {
  12428. height: math.unit(0.81, "feet"),
  12429. name: "Maw",
  12430. image: {
  12431. source: "./media/characters/kimiko/maw.svg"
  12432. }
  12433. },
  12434. },
  12435. [
  12436. {
  12437. name: "Normal",
  12438. height: math.unit(15, "feet"),
  12439. default: true
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(220, "feet")
  12444. },
  12445. {
  12446. name: "Macro+",
  12447. height: math.unit(1450, "feet")
  12448. },
  12449. {
  12450. name: "Megamacro",
  12451. height: math.unit(11500, "feet")
  12452. },
  12453. {
  12454. name: "Gigamacro",
  12455. height: math.unit(9500, "miles")
  12456. },
  12457. {
  12458. name: "Teramacro",
  12459. height: math.unit(2208005005, "miles")
  12460. },
  12461. {
  12462. name: "Examacro",
  12463. height: math.unit(2750, "parsecs")
  12464. },
  12465. {
  12466. name: "Zettamacro",
  12467. height: math.unit(101500, "parsecs")
  12468. },
  12469. ]
  12470. ))
  12471. characterMakers.push(() => makeCharacter(
  12472. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12473. {
  12474. front: {
  12475. height: math.unit(6, "feet"),
  12476. weight: math.unit(70, "kg"),
  12477. name: "Front",
  12478. image: {
  12479. source: "./media/characters/andrew-sleepy/front.svg"
  12480. }
  12481. },
  12482. side: {
  12483. height: math.unit(6, "feet"),
  12484. weight: math.unit(70, "kg"),
  12485. name: "Side",
  12486. image: {
  12487. source: "./media/characters/andrew-sleepy/side.svg"
  12488. }
  12489. },
  12490. },
  12491. [
  12492. {
  12493. name: "Micro",
  12494. height: math.unit(1, "mm"),
  12495. default: true
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12501. {
  12502. front: {
  12503. height: math.unit(6, "feet"),
  12504. weight: math.unit(150, "lb"),
  12505. name: "Front",
  12506. image: {
  12507. source: "./media/characters/judio/front.svg",
  12508. extra: 1258 / 1110
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(5 + 6 / 12, "feet")
  12516. },
  12517. {
  12518. name: "Macro",
  12519. height: math.unit(1000, "feet"),
  12520. default: true
  12521. },
  12522. {
  12523. name: "Megamacro",
  12524. height: math.unit(10, "miles")
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12530. {
  12531. frontDressed: {
  12532. height: math.unit(6, "feet"),
  12533. weight: math.unit(68, "kg"),
  12534. name: "Front (Dressed)",
  12535. image: {
  12536. source: "./media/characters/nomaxice/front-dressed.svg",
  12537. extra: 1137/824,
  12538. bottom: 74/1211
  12539. }
  12540. },
  12541. frontShorts: {
  12542. height: math.unit(6, "feet"),
  12543. weight: math.unit(68, "kg"),
  12544. name: "Front (Shorts)",
  12545. image: {
  12546. source: "./media/characters/nomaxice/front-shorts.svg",
  12547. extra: 1137/824,
  12548. bottom: 74/1211
  12549. }
  12550. },
  12551. back: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(68, "kg"),
  12554. name: "Back",
  12555. image: {
  12556. source: "./media/characters/nomaxice/back.svg",
  12557. extra: 822/786,
  12558. bottom: 39/861
  12559. }
  12560. },
  12561. hand: {
  12562. height: math.unit(0.565, "feet"),
  12563. name: "Hand",
  12564. image: {
  12565. source: "./media/characters/nomaxice/hand.svg"
  12566. }
  12567. },
  12568. foot: {
  12569. height: math.unit(1, "feet"),
  12570. name: "Foot",
  12571. image: {
  12572. source: "./media/characters/nomaxice/foot.svg"
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Micro",
  12579. height: math.unit(8, "cm")
  12580. },
  12581. {
  12582. name: "Norm",
  12583. height: math.unit(1.82, "m")
  12584. },
  12585. {
  12586. name: "Norm+",
  12587. height: math.unit(8.8, "feet"),
  12588. default: true
  12589. },
  12590. {
  12591. name: "Big",
  12592. height: math.unit(8, "meters")
  12593. },
  12594. {
  12595. name: "Macro",
  12596. height: math.unit(18, "meters")
  12597. },
  12598. {
  12599. name: "Macro+",
  12600. height: math.unit(88, "meters")
  12601. },
  12602. ]
  12603. ))
  12604. characterMakers.push(() => makeCharacter(
  12605. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12606. {
  12607. front: {
  12608. height: math.unit(12, "feet"),
  12609. weight: math.unit(1.5, "tons"),
  12610. name: "Front",
  12611. image: {
  12612. source: "./media/characters/dydros/front.svg",
  12613. extra: 863 / 800,
  12614. bottom: 0.015
  12615. }
  12616. },
  12617. back: {
  12618. height: math.unit(12, "feet"),
  12619. weight: math.unit(1.5, "tons"),
  12620. name: "Back",
  12621. image: {
  12622. source: "./media/characters/dydros/back.svg",
  12623. extra: 900 / 843,
  12624. bottom: 0.005
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12638. {
  12639. front: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(100, "kg"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/riggi/front.svg",
  12645. extra: 5787 / 5303
  12646. }
  12647. },
  12648. hyper: {
  12649. height: math.unit(6 * 5 / 3, "feet"),
  12650. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12651. name: "Hyper",
  12652. image: {
  12653. source: "./media/characters/riggi/hyper.svg",
  12654. extra: 3595 / 3485
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Small Macro",
  12661. height: math.unit(50, "feet")
  12662. },
  12663. {
  12664. name: "Default",
  12665. height: math.unit(200, "feet"),
  12666. default: true
  12667. },
  12668. {
  12669. name: "Loom",
  12670. height: math.unit(10000, "feet")
  12671. },
  12672. {
  12673. name: "Cruising Altitude",
  12674. height: math.unit(30000, "feet")
  12675. },
  12676. {
  12677. name: "Megamacro",
  12678. height: math.unit(100, "miles")
  12679. },
  12680. {
  12681. name: "Continent Sized",
  12682. height: math.unit(2800, "miles")
  12683. },
  12684. {
  12685. name: "Earth Sized",
  12686. height: math.unit(8000, "miles")
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12692. {
  12693. front: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(250, "lb"),
  12696. name: "Front",
  12697. image: {
  12698. source: "./media/characters/alexi/front.svg",
  12699. extra: 3483 / 3291,
  12700. bottom: 0.04
  12701. }
  12702. },
  12703. back: {
  12704. height: math.unit(6, "feet"),
  12705. weight: math.unit(250, "lb"),
  12706. name: "Back",
  12707. image: {
  12708. source: "./media/characters/alexi/back.svg",
  12709. extra: 3533 / 3356,
  12710. bottom: 0.021
  12711. }
  12712. },
  12713. frontTransforming: {
  12714. height: math.unit(8.58, "feet"),
  12715. weight: math.unit(1300, "lb"),
  12716. name: "Transforming",
  12717. image: {
  12718. source: "./media/characters/alexi/front-transforming.svg",
  12719. extra: 437 / 409,
  12720. bottom: 19 / 458.66
  12721. }
  12722. },
  12723. frontTransformed: {
  12724. height: math.unit(12.5, "feet"),
  12725. weight: math.unit(4000, "lb"),
  12726. name: "Transformed",
  12727. image: {
  12728. source: "./media/characters/alexi/front-transformed.svg",
  12729. extra: 639 / 614,
  12730. bottom: 30.55 / 671
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Normal",
  12737. height: math.unit(14, "feet"),
  12738. default: true
  12739. },
  12740. {
  12741. name: "Minimacro",
  12742. height: math.unit(30, "meters")
  12743. },
  12744. {
  12745. name: "Macro",
  12746. height: math.unit(500, "meters")
  12747. },
  12748. {
  12749. name: "Megamacro",
  12750. height: math.unit(9000, "km")
  12751. },
  12752. {
  12753. name: "Teramacro",
  12754. height: math.unit(384000, "km")
  12755. },
  12756. ]
  12757. ))
  12758. characterMakers.push(() => makeCharacter(
  12759. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12760. {
  12761. front: {
  12762. height: math.unit(6, "feet"),
  12763. weight: math.unit(150, "lb"),
  12764. name: "Front",
  12765. image: {
  12766. source: "./media/characters/kayroo/front.svg",
  12767. extra: 1153 / 1038,
  12768. bottom: 0.06
  12769. }
  12770. },
  12771. foot: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(150, "lb"),
  12774. name: "Foot",
  12775. image: {
  12776. source: "./media/characters/kayroo/foot.svg"
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(8, "feet"),
  12784. default: true
  12785. },
  12786. {
  12787. name: "Minimacro",
  12788. height: math.unit(250, "feet")
  12789. },
  12790. {
  12791. name: "Macro",
  12792. height: math.unit(2800, "feet")
  12793. },
  12794. {
  12795. name: "Megamacro",
  12796. height: math.unit(5200, "feet")
  12797. },
  12798. {
  12799. name: "Gigamacro",
  12800. height: math.unit(27000, "feet")
  12801. },
  12802. {
  12803. name: "Omega",
  12804. height: math.unit(45000, "feet")
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(18, "feet"),
  12813. weight: math.unit(5800, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/rhys/front.svg",
  12817. extra: 3386 / 3090,
  12818. bottom: 0.07
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Normal",
  12825. height: math.unit(18, "feet"),
  12826. default: true
  12827. },
  12828. {
  12829. name: "Working Size",
  12830. height: math.unit(200, "feet")
  12831. },
  12832. {
  12833. name: "Demolition Size",
  12834. height: math.unit(2000, "feet")
  12835. },
  12836. {
  12837. name: "Maximum Licensed Size",
  12838. height: math.unit(5, "miles")
  12839. },
  12840. {
  12841. name: "Maximum Observed Size",
  12842. height: math.unit(10, "yottameters")
  12843. },
  12844. ]
  12845. ))
  12846. characterMakers.push(() => makeCharacter(
  12847. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12848. {
  12849. front: {
  12850. height: math.unit(6, "feet"),
  12851. weight: math.unit(250, "lb"),
  12852. name: "Front",
  12853. image: {
  12854. source: "./media/characters/toto/front.svg",
  12855. extra: 527 / 479,
  12856. bottom: 0.05
  12857. }
  12858. },
  12859. },
  12860. [
  12861. {
  12862. name: "Micro",
  12863. height: math.unit(3, "feet")
  12864. },
  12865. {
  12866. name: "Normal",
  12867. height: math.unit(10, "feet")
  12868. },
  12869. {
  12870. name: "Macro",
  12871. height: math.unit(150, "feet"),
  12872. default: true
  12873. },
  12874. {
  12875. name: "Megamacro",
  12876. height: math.unit(1200, "feet")
  12877. },
  12878. ]
  12879. ))
  12880. characterMakers.push(() => makeCharacter(
  12881. { name: "King", species: ["lion"], tags: ["anthro"] },
  12882. {
  12883. back: {
  12884. height: math.unit(6, "feet"),
  12885. weight: math.unit(150, "lb"),
  12886. name: "Back",
  12887. image: {
  12888. source: "./media/characters/king/back.svg"
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Micro",
  12895. height: math.unit(2, "inches")
  12896. },
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(8, "feet")
  12900. },
  12901. {
  12902. name: "Macro",
  12903. height: math.unit(200, "feet"),
  12904. default: true
  12905. },
  12906. {
  12907. name: "Megamacro",
  12908. height: math.unit(50, "miles")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(11, "feet"),
  12917. weight: math.unit(1400, "lb"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/cordite/front.svg",
  12921. extra: 1919/1827,
  12922. bottom: 40/1959
  12923. }
  12924. },
  12925. side: {
  12926. height: math.unit(11, "feet"),
  12927. weight: math.unit(1400, "lb"),
  12928. name: "Side",
  12929. image: {
  12930. source: "./media/characters/cordite/side.svg",
  12931. extra: 1908/1793,
  12932. bottom: 38/1946
  12933. }
  12934. },
  12935. back: {
  12936. height: math.unit(11, "feet"),
  12937. weight: math.unit(1400, "lb"),
  12938. name: "Back",
  12939. image: {
  12940. source: "./media/characters/cordite/back.svg",
  12941. extra: 1938/1837,
  12942. bottom: 10/1948
  12943. }
  12944. },
  12945. feral: {
  12946. height: math.unit(2, "feet"),
  12947. weight: math.unit(90, "lb"),
  12948. name: "Feral",
  12949. image: {
  12950. source: "./media/characters/cordite/feral.svg",
  12951. extra: 1260 / 755,
  12952. bottom: 0.05
  12953. }
  12954. },
  12955. },
  12956. [
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(11, "feet"),
  12960. default: true
  12961. },
  12962. ]
  12963. ))
  12964. characterMakers.push(() => makeCharacter(
  12965. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12966. {
  12967. front: {
  12968. height: math.unit(6, "feet"),
  12969. weight: math.unit(150, "lb"),
  12970. name: "Front",
  12971. image: {
  12972. source: "./media/characters/pianostrong/front.svg",
  12973. extra: 6577 / 6254,
  12974. bottom: 0.02
  12975. }
  12976. },
  12977. side: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(150, "lb"),
  12980. name: "Side",
  12981. image: {
  12982. source: "./media/characters/pianostrong/side.svg",
  12983. extra: 6106 / 5730
  12984. }
  12985. },
  12986. back: {
  12987. height: math.unit(6, "feet"),
  12988. weight: math.unit(150, "lb"),
  12989. name: "Back",
  12990. image: {
  12991. source: "./media/characters/pianostrong/back.svg",
  12992. extra: 6085 / 5733,
  12993. bottom: 0.01
  12994. }
  12995. },
  12996. },
  12997. [
  12998. {
  12999. name: "Macro",
  13000. height: math.unit(100, "feet")
  13001. },
  13002. {
  13003. name: "Macro+",
  13004. height: math.unit(300, "feet"),
  13005. default: true
  13006. },
  13007. {
  13008. name: "Macro++",
  13009. height: math.unit(1000, "feet")
  13010. },
  13011. ]
  13012. ))
  13013. characterMakers.push(() => makeCharacter(
  13014. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13015. {
  13016. front: {
  13017. height: math.unit(6, "feet"),
  13018. weight: math.unit(150, "lb"),
  13019. name: "Front",
  13020. image: {
  13021. source: "./media/characters/kona/front.svg",
  13022. extra: 2960 / 2629,
  13023. bottom: 0.005
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Normal",
  13030. height: math.unit(11 + 8 / 12, "feet")
  13031. },
  13032. {
  13033. name: "Macro",
  13034. height: math.unit(850, "feet"),
  13035. default: true
  13036. },
  13037. {
  13038. name: "Macro+",
  13039. height: math.unit(1.5, "km"),
  13040. default: true
  13041. },
  13042. {
  13043. name: "Megamacro",
  13044. height: math.unit(80, "miles")
  13045. },
  13046. {
  13047. name: "Gigamacro",
  13048. height: math.unit(3500, "miles")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13054. {
  13055. side: {
  13056. height: math.unit(1.9, "meters"),
  13057. weight: math.unit(326, "kg"),
  13058. name: "Side",
  13059. image: {
  13060. source: "./media/characters/levi/side.svg",
  13061. extra: 1704 / 1334,
  13062. bottom: 0.02
  13063. }
  13064. },
  13065. },
  13066. [
  13067. {
  13068. name: "Normal",
  13069. height: math.unit(1.9, "meters"),
  13070. default: true
  13071. },
  13072. {
  13073. name: "Macro",
  13074. height: math.unit(20, "meters")
  13075. },
  13076. {
  13077. name: "Macro+",
  13078. height: math.unit(200, "meters")
  13079. },
  13080. {
  13081. name: "Megamacro",
  13082. height: math.unit(2, "km")
  13083. },
  13084. {
  13085. name: "Megamacro+",
  13086. height: math.unit(20, "km")
  13087. },
  13088. {
  13089. name: "Gigamacro",
  13090. height: math.unit(2500, "km")
  13091. },
  13092. {
  13093. name: "Gigamacro+",
  13094. height: math.unit(120000, "km")
  13095. },
  13096. {
  13097. name: "Teramacro",
  13098. height: math.unit(7.77e6, "km")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13104. {
  13105. front: {
  13106. height: math.unit(6 + 4/12, "feet"),
  13107. weight: math.unit(190, "lb"),
  13108. name: "Front",
  13109. image: {
  13110. source: "./media/characters/bmc/front.svg",
  13111. extra: 1626/1472,
  13112. bottom: 79/1705
  13113. }
  13114. },
  13115. back: {
  13116. height: math.unit(6 + 4/12, "feet"),
  13117. weight: math.unit(190, "lb"),
  13118. name: "Back",
  13119. image: {
  13120. source: "./media/characters/bmc/back.svg",
  13121. extra: 1640/1479,
  13122. bottom: 45/1685
  13123. }
  13124. },
  13125. frontArmor: {
  13126. height: math.unit(6 + 4/12, "feet"),
  13127. weight: math.unit(190, "lb"),
  13128. name: "Front-armor",
  13129. image: {
  13130. source: "./media/characters/bmc/front-armor.svg",
  13131. extra: 1538/1468,
  13132. bottom: 79/1617
  13133. }
  13134. },
  13135. },
  13136. [
  13137. {
  13138. name: "Human-sized",
  13139. height: math.unit(6 + 4 / 12, "feet")
  13140. },
  13141. {
  13142. name: "Interactive Size",
  13143. height: math.unit(25, "feet")
  13144. },
  13145. {
  13146. name: "Small",
  13147. height: math.unit(250, "feet")
  13148. },
  13149. {
  13150. name: "Normal",
  13151. height: math.unit(1250, "feet"),
  13152. default: true
  13153. },
  13154. {
  13155. name: "Good Day",
  13156. height: math.unit(88, "miles")
  13157. },
  13158. {
  13159. name: "Largest Measured Size",
  13160. height: math.unit(105.960, "galaxies")
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(20, "feet"),
  13169. weight: math.unit(2016, "kg"),
  13170. name: "Front",
  13171. image: {
  13172. source: "./media/characters/sven-the-kaiju/front.svg",
  13173. extra: 1277/1250,
  13174. bottom: 35/1312
  13175. }
  13176. },
  13177. mouth: {
  13178. height: math.unit(1.85, "feet"),
  13179. name: "Mouth",
  13180. image: {
  13181. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13182. }
  13183. },
  13184. },
  13185. [
  13186. {
  13187. name: "Fairy",
  13188. height: math.unit(6, "inches")
  13189. },
  13190. {
  13191. name: "Normal",
  13192. height: math.unit(20, "feet"),
  13193. default: true
  13194. },
  13195. {
  13196. name: "Rampage",
  13197. height: math.unit(200, "feet")
  13198. },
  13199. {
  13200. name: "Archfey Forest Guardian",
  13201. height: math.unit(1, "mile")
  13202. },
  13203. ]
  13204. ))
  13205. characterMakers.push(() => makeCharacter(
  13206. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13207. {
  13208. front: {
  13209. height: math.unit(4, "meters"),
  13210. weight: math.unit(2, "tons"),
  13211. name: "Front",
  13212. image: {
  13213. source: "./media/characters/marik/front.svg",
  13214. extra: 1057 / 1003,
  13215. bottom: 0.08
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(4, "meters"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Macro",
  13227. height: math.unit(20, "meters")
  13228. },
  13229. {
  13230. name: "Megamacro",
  13231. height: math.unit(50, "km")
  13232. },
  13233. {
  13234. name: "Gigamacro",
  13235. height: math.unit(100, "km")
  13236. },
  13237. {
  13238. name: "Alpha Macro",
  13239. height: math.unit(7.88e7, "yottameters")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(6, "feet"),
  13248. weight: math.unit(110, "lb"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/mel/front.svg",
  13252. extra: 736 / 617,
  13253. bottom: 0.017
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Pico",
  13260. height: math.unit(3, "pm")
  13261. },
  13262. {
  13263. name: "Nano",
  13264. height: math.unit(3, "nm")
  13265. },
  13266. {
  13267. name: "Micro",
  13268. height: math.unit(0.3, "mm"),
  13269. default: true
  13270. },
  13271. {
  13272. name: "Micro+",
  13273. height: math.unit(3, "mm")
  13274. },
  13275. {
  13276. name: "Normal",
  13277. height: math.unit(5 + 10.5 / 12, "feet")
  13278. },
  13279. ]
  13280. ))
  13281. characterMakers.push(() => makeCharacter(
  13282. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13283. {
  13284. kaiju: {
  13285. height: math.unit(1.75, "meters"),
  13286. weight: math.unit(55, "kg"),
  13287. name: "Kaiju",
  13288. image: {
  13289. source: "./media/characters/lykonous/kaiju.svg",
  13290. extra: 1055 / 946,
  13291. bottom: 0.135
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(2.5, "meters"),
  13299. default: true
  13300. },
  13301. {
  13302. name: "Kaiju Dragon",
  13303. height: math.unit(60, "meters")
  13304. },
  13305. {
  13306. name: "Mega Kaiju",
  13307. height: math.unit(120, "km")
  13308. },
  13309. {
  13310. name: "Giga Kaiju",
  13311. height: math.unit(200, "megameters")
  13312. },
  13313. {
  13314. name: "Terra Kaiju",
  13315. height: math.unit(400, "gigameters")
  13316. },
  13317. {
  13318. name: "Kaiju Dragon God",
  13319. height: math.unit(13000, "exaparsecs")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(6, "feet"),
  13328. weight: math.unit(150, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/blü/front.svg",
  13332. extra: 1883 / 1564,
  13333. bottom: 0.031
  13334. }
  13335. },
  13336. },
  13337. [
  13338. {
  13339. name: "Normal",
  13340. height: math.unit(13, "feet"),
  13341. default: true
  13342. },
  13343. {
  13344. name: "Big Boi",
  13345. height: math.unit(150, "meters")
  13346. },
  13347. {
  13348. name: "Mini Stomper",
  13349. height: math.unit(300, "meters")
  13350. },
  13351. {
  13352. name: "Macro",
  13353. height: math.unit(1000, "meters")
  13354. },
  13355. {
  13356. name: "Megamacro",
  13357. height: math.unit(11000, "meters")
  13358. },
  13359. {
  13360. name: "Gigamacro",
  13361. height: math.unit(11000, "km")
  13362. },
  13363. {
  13364. name: "Teramacro",
  13365. height: math.unit(420000, "km")
  13366. },
  13367. {
  13368. name: "Examacro",
  13369. height: math.unit(120, "parsecs")
  13370. },
  13371. {
  13372. name: "God Tho",
  13373. height: math.unit(98000000000, "parsecs")
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13379. {
  13380. taurFront: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(200, "lb"),
  13383. name: "Taur (Front)",
  13384. image: {
  13385. source: "./media/characters/scales/taur-front.svg",
  13386. extra: 1,
  13387. bottom: 0.05
  13388. }
  13389. },
  13390. taurBack: {
  13391. height: math.unit(6, "feet"),
  13392. weight: math.unit(200, "lb"),
  13393. name: "Taur (Back)",
  13394. image: {
  13395. source: "./media/characters/scales/taur-back.svg",
  13396. extra: 1,
  13397. bottom: 0.08
  13398. }
  13399. },
  13400. anthro: {
  13401. height: math.unit(6 * 7 / 12, "feet"),
  13402. weight: math.unit(100, "lb"),
  13403. name: "Anthro",
  13404. image: {
  13405. source: "./media/characters/scales/anthro.svg",
  13406. extra: 1,
  13407. bottom: 0.06
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(12, "feet"),
  13415. default: true
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(6, "feet"),
  13424. weight: math.unit(150, "lb"),
  13425. name: "Front",
  13426. image: {
  13427. source: "./media/characters/koragos/front.svg",
  13428. extra: 841 / 794,
  13429. bottom: 0.035
  13430. }
  13431. },
  13432. back: {
  13433. height: math.unit(6, "feet"),
  13434. weight: math.unit(150, "lb"),
  13435. name: "Back",
  13436. image: {
  13437. source: "./media/characters/koragos/back.svg",
  13438. extra: 841 / 810,
  13439. bottom: 0.022
  13440. }
  13441. },
  13442. },
  13443. [
  13444. {
  13445. name: "Normal",
  13446. height: math.unit(6 + 11 / 12, "feet"),
  13447. default: true
  13448. },
  13449. {
  13450. name: "Macro",
  13451. height: math.unit(490, "feet")
  13452. },
  13453. {
  13454. name: "Megamacro",
  13455. height: math.unit(10, "miles")
  13456. },
  13457. {
  13458. name: "Gigamacro",
  13459. height: math.unit(50, "miles")
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(6, "feet"),
  13468. weight: math.unit(250, "lb"),
  13469. name: "Front",
  13470. image: {
  13471. source: "./media/characters/xylrem/front.svg",
  13472. extra: 3323 / 3050,
  13473. bottom: 0.065
  13474. }
  13475. },
  13476. },
  13477. [
  13478. {
  13479. name: "Micro",
  13480. height: math.unit(4, "feet")
  13481. },
  13482. {
  13483. name: "Normal",
  13484. height: math.unit(16, "feet"),
  13485. default: true
  13486. },
  13487. {
  13488. name: "Macro",
  13489. height: math.unit(2720, "feet")
  13490. },
  13491. {
  13492. name: "Megamacro",
  13493. height: math.unit(25000, "miles")
  13494. },
  13495. ]
  13496. ))
  13497. characterMakers.push(() => makeCharacter(
  13498. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13499. {
  13500. front: {
  13501. height: math.unit(8, "feet"),
  13502. weight: math.unit(250, "kg"),
  13503. name: "Front",
  13504. image: {
  13505. source: "./media/characters/ikideru/front.svg",
  13506. extra: 930 / 870,
  13507. bottom: 0.087
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(8, "feet"),
  13512. weight: math.unit(250, "kg"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/ikideru/back.svg",
  13516. extra: 919 / 852,
  13517. bottom: 0.055
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Rare",
  13524. height: math.unit(8, "feet"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Playful Loom",
  13529. height: math.unit(80, "feet")
  13530. },
  13531. {
  13532. name: "City Leaner",
  13533. height: math.unit(230, "feet")
  13534. },
  13535. {
  13536. name: "Megamacro",
  13537. height: math.unit(2500, "feet")
  13538. },
  13539. {
  13540. name: "Gigamacro",
  13541. height: math.unit(26400, "feet")
  13542. },
  13543. {
  13544. name: "Tectonic Shifter",
  13545. height: math.unit(1.7, "megameters")
  13546. },
  13547. {
  13548. name: "Planet Carer",
  13549. height: math.unit(21, "megameters")
  13550. },
  13551. {
  13552. name: "God",
  13553. height: math.unit(11157.22, "parsecs")
  13554. },
  13555. ]
  13556. ))
  13557. characterMakers.push(() => makeCharacter(
  13558. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13559. {
  13560. front: {
  13561. height: math.unit(6, "feet"),
  13562. weight: math.unit(120, "lb"),
  13563. name: "Front",
  13564. image: {
  13565. source: "./media/characters/neo/front.svg"
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Micro",
  13572. height: math.unit(2, "inches"),
  13573. default: true
  13574. },
  13575. {
  13576. name: "Human Size",
  13577. height: math.unit(5 + 8 / 12, "feet")
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(13 + 10 / 12, "feet"),
  13586. weight: math.unit(5320, "lb"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/chauncey-chantz/front.svg",
  13590. extra: 1587 / 1435,
  13591. bottom: 0.02
  13592. }
  13593. },
  13594. },
  13595. [
  13596. {
  13597. name: "Normal",
  13598. height: math.unit(13 + 10 / 12, "feet"),
  13599. default: true
  13600. },
  13601. {
  13602. name: "Macro",
  13603. height: math.unit(45, "feet")
  13604. },
  13605. {
  13606. name: "Megamacro",
  13607. height: math.unit(250, "miles")
  13608. },
  13609. {
  13610. name: "Planetary",
  13611. height: math.unit(10000, "miles")
  13612. },
  13613. {
  13614. name: "Galactic",
  13615. height: math.unit(40000, "parsecs")
  13616. },
  13617. {
  13618. name: "Universal",
  13619. height: math.unit(1, "yottameter")
  13620. },
  13621. ]
  13622. ))
  13623. characterMakers.push(() => makeCharacter(
  13624. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13625. {
  13626. front: {
  13627. height: math.unit(6, "feet"),
  13628. weight: math.unit(150, "lb"),
  13629. name: "Front",
  13630. image: {
  13631. source: "./media/characters/epifox/front.svg",
  13632. extra: 1,
  13633. bottom: 0.075
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Micro",
  13640. height: math.unit(6, "inches")
  13641. },
  13642. {
  13643. name: "Normal",
  13644. height: math.unit(12, "feet"),
  13645. default: true
  13646. },
  13647. {
  13648. name: "Macro",
  13649. height: math.unit(3810, "feet")
  13650. },
  13651. {
  13652. name: "Megamacro",
  13653. height: math.unit(500, "miles")
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(1.8796, "m"),
  13662. weight: math.unit(230, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/colin-t/front.svg",
  13666. extra: 1272 / 1193,
  13667. bottom: 0.07
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Micro",
  13674. height: math.unit(0.571, "meters")
  13675. },
  13676. {
  13677. name: "Normal",
  13678. height: math.unit(1.8796, "meters"),
  13679. default: true
  13680. },
  13681. {
  13682. name: "Tall",
  13683. height: math.unit(4, "meters")
  13684. },
  13685. {
  13686. name: "Macro",
  13687. height: math.unit(67.241, "meters")
  13688. },
  13689. {
  13690. name: "Megamacro",
  13691. height: math.unit(371.856, "meters")
  13692. },
  13693. {
  13694. name: "Planetary",
  13695. height: math.unit(12631.5689, "km")
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13701. {
  13702. front: {
  13703. height: math.unit(1.85, "meters"),
  13704. weight: math.unit(80, "kg"),
  13705. name: "Front",
  13706. image: {
  13707. source: "./media/characters/matvei/front.svg",
  13708. extra: 456/447,
  13709. bottom: 8/464
  13710. }
  13711. },
  13712. back: {
  13713. height: math.unit(1.85, "meters"),
  13714. weight: math.unit(80, "kg"),
  13715. name: "Back",
  13716. image: {
  13717. source: "./media/characters/matvei/back.svg",
  13718. extra: 434/427,
  13719. bottom: 11/445
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "Normal",
  13726. height: math.unit(1.85, "meters"),
  13727. default: true
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13733. {
  13734. front: {
  13735. height: math.unit(5 + 9 / 12, "feet"),
  13736. weight: math.unit(70, "lb"),
  13737. name: "Front",
  13738. image: {
  13739. source: "./media/characters/quincy/front.svg",
  13740. extra: 3041 / 2751
  13741. }
  13742. },
  13743. back: {
  13744. height: math.unit(5 + 9 / 12, "feet"),
  13745. weight: math.unit(70, "lb"),
  13746. name: "Back",
  13747. image: {
  13748. source: "./media/characters/quincy/back.svg",
  13749. extra: 3041 / 2751
  13750. }
  13751. },
  13752. flying: {
  13753. height: math.unit(5 + 4 / 12, "feet"),
  13754. weight: math.unit(70, "lb"),
  13755. name: "Flying",
  13756. image: {
  13757. source: "./media/characters/quincy/flying.svg",
  13758. extra: 1044 / 930
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Micro",
  13765. height: math.unit(3, "cm")
  13766. },
  13767. {
  13768. name: "Normal",
  13769. height: math.unit(5 + 9 / 12, "feet")
  13770. },
  13771. {
  13772. name: "Macro",
  13773. height: math.unit(200, "meters"),
  13774. default: true
  13775. },
  13776. {
  13777. name: "Megamacro",
  13778. height: math.unit(1000, "meters")
  13779. },
  13780. ]
  13781. ))
  13782. characterMakers.push(() => makeCharacter(
  13783. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13784. {
  13785. front: {
  13786. height: math.unit(3 + 11/12, "feet"),
  13787. weight: math.unit(50, "lb"),
  13788. name: "Front",
  13789. image: {
  13790. source: "./media/characters/vanrel/front.svg",
  13791. extra: 1104/949,
  13792. bottom: 52/1156
  13793. }
  13794. },
  13795. back: {
  13796. height: math.unit(3 + 11/12, "feet"),
  13797. weight: math.unit(50, "lb"),
  13798. name: "Back",
  13799. image: {
  13800. source: "./media/characters/vanrel/back.svg",
  13801. extra: 1119/976,
  13802. bottom: 37/1156
  13803. }
  13804. },
  13805. tome: {
  13806. height: math.unit(1.35, "feet"),
  13807. weight: math.unit(10, "lb"),
  13808. name: "Vanrel's Tome",
  13809. rename: true,
  13810. image: {
  13811. source: "./media/characters/vanrel/tome.svg"
  13812. }
  13813. },
  13814. beans: {
  13815. height: math.unit(0.89, "feet"),
  13816. name: "Beans",
  13817. image: {
  13818. source: "./media/characters/vanrel/beans.svg"
  13819. }
  13820. },
  13821. },
  13822. [
  13823. {
  13824. name: "Normal",
  13825. height: math.unit(3 + 11/12, "feet"),
  13826. default: true
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13832. {
  13833. front: {
  13834. height: math.unit(7 + 5 / 12, "feet"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/kuiper-vanrel/front.svg",
  13838. extra: 1219/1169,
  13839. bottom: 69/1288
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(7 + 5 / 12, "feet"),
  13844. name: "Back",
  13845. image: {
  13846. source: "./media/characters/kuiper-vanrel/back.svg",
  13847. extra: 1236/1193,
  13848. bottom: 27/1263
  13849. }
  13850. },
  13851. foot: {
  13852. height: math.unit(0.55, "meters"),
  13853. name: "Foot",
  13854. image: {
  13855. source: "./media/characters/kuiper-vanrel/foot.svg",
  13856. }
  13857. },
  13858. battle: {
  13859. height: math.unit(6.824, "feet"),
  13860. name: "Battle",
  13861. image: {
  13862. source: "./media/characters/kuiper-vanrel/battle.svg",
  13863. extra: 1466 / 1327,
  13864. bottom: 29 / 1492.5
  13865. }
  13866. },
  13867. meerkui: {
  13868. height: math.unit(18, "inches"),
  13869. name: "Meerkui",
  13870. image: {
  13871. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13872. extra: 1354/1289,
  13873. bottom: 69/1423
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Normal",
  13880. height: math.unit(7 + 5 / 12, "feet"),
  13881. default: true
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(8 + 5 / 12, "feet"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/keset-vanrel/front.svg",
  13893. extra: 1231/1148,
  13894. bottom: 82/1313
  13895. }
  13896. },
  13897. back: {
  13898. height: math.unit(8 + 5 / 12, "feet"),
  13899. name: "Back",
  13900. image: {
  13901. source: "./media/characters/keset-vanrel/back.svg",
  13902. extra: 1240/1174,
  13903. bottom: 33/1273
  13904. }
  13905. },
  13906. hand: {
  13907. height: math.unit(0.6, "meters"),
  13908. name: "Hand",
  13909. image: {
  13910. source: "./media/characters/keset-vanrel/hand.svg"
  13911. }
  13912. },
  13913. foot: {
  13914. height: math.unit(0.94978, "meters"),
  13915. name: "Foot",
  13916. image: {
  13917. source: "./media/characters/keset-vanrel/foot.svg"
  13918. }
  13919. },
  13920. battle: {
  13921. height: math.unit(7.408, "feet"),
  13922. name: "Battle",
  13923. image: {
  13924. source: "./media/characters/keset-vanrel/battle.svg",
  13925. extra: 1890 / 1386,
  13926. bottom: 73.28 / 1970
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(8 + 5 / 12, "feet"),
  13934. default: true
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13940. {
  13941. front: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(150, "lb"),
  13944. name: "Front",
  13945. image: {
  13946. source: "./media/characters/neos/front.svg",
  13947. extra: 1696 / 992,
  13948. bottom: 0.14
  13949. }
  13950. },
  13951. },
  13952. [
  13953. {
  13954. name: "Normal",
  13955. height: math.unit(54, "cm"),
  13956. default: true
  13957. },
  13958. {
  13959. name: "Macro",
  13960. height: math.unit(100, "m")
  13961. },
  13962. {
  13963. name: "Megamacro",
  13964. height: math.unit(10, "km")
  13965. },
  13966. {
  13967. name: "Megamacro+",
  13968. height: math.unit(100, "km")
  13969. },
  13970. {
  13971. name: "Gigamacro",
  13972. height: math.unit(100, "Mm")
  13973. },
  13974. {
  13975. name: "Teramacro",
  13976. height: math.unit(100, "Gm")
  13977. },
  13978. {
  13979. name: "Examacro",
  13980. height: math.unit(100, "Em")
  13981. },
  13982. {
  13983. name: "Godly",
  13984. height: math.unit(10000, "Ym")
  13985. },
  13986. {
  13987. name: "Beyond Godly",
  13988. height: math.unit(25, "multiverses")
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13994. {
  13995. fluide_tame: {
  13996. height: math.unit(5, "feet"),
  13997. name: "Tame",
  13998. image: {
  13999. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14000. extra: 1655/1574,
  14001. bottom: 231/1886
  14002. },
  14003. form: "fluide",
  14004. default: true
  14005. },
  14006. fluide_nude: {
  14007. height: math.unit(5, "feet"),
  14008. name: "Nude",
  14009. image: {
  14010. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14011. extra: 1655/1574,
  14012. bottom: 231/1886
  14013. },
  14014. form: "fluide",
  14015. },
  14016. male_tame: {
  14017. height: math.unit(5, "feet"),
  14018. name: "Tame",
  14019. image: {
  14020. source: "./media/characters/sammy-mouse/male-tame.svg",
  14021. extra: 1655/1574,
  14022. bottom: 231/1886
  14023. },
  14024. form: "male",
  14025. default: true
  14026. },
  14027. male_nude: {
  14028. height: math.unit(5, "feet"),
  14029. name: "Nude",
  14030. image: {
  14031. source: "./media/characters/sammy-mouse/male-nude.svg",
  14032. extra: 1655/1574,
  14033. bottom: 231/1886
  14034. },
  14035. form: "male",
  14036. },
  14037. female_nude: {
  14038. height: math.unit(5, "feet"),
  14039. name: "Nude",
  14040. image: {
  14041. source: "./media/characters/sammy-mouse/female-nude.svg",
  14042. extra: 1655/1574,
  14043. bottom: 231/1886
  14044. },
  14045. form: "female",
  14046. default: true
  14047. },
  14048. mouth: {
  14049. height: math.unit(0.32, "feet"),
  14050. name: "Mouth",
  14051. image: {
  14052. source: "./media/characters/sammy-mouse/mouth.svg"
  14053. },
  14054. allForms: true
  14055. },
  14056. paw: {
  14057. height: math.unit(0.42, "feet"),
  14058. name: "Paw",
  14059. image: {
  14060. source: "./media/characters/sammy-mouse/paw.svg"
  14061. },
  14062. allForms: true
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Micro",
  14068. height: math.unit(5, "inches"),
  14069. allForms: true
  14070. },
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(5, "feet"),
  14074. default: true,
  14075. allForms: true
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(60, "feet"),
  14080. allForms: true
  14081. },
  14082. ],
  14083. {
  14084. "fluide": {
  14085. name: "Fluide",
  14086. default: true
  14087. },
  14088. "male": {
  14089. name: "Male",
  14090. },
  14091. "female": {
  14092. name: "Female",
  14093. },
  14094. }
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14098. {
  14099. front: {
  14100. height: math.unit(4, "feet"),
  14101. weight: math.unit(50, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/kole/front.svg",
  14105. extra: 1423 / 1303,
  14106. bottom: 0.025
  14107. }
  14108. },
  14109. back: {
  14110. height: math.unit(4, "feet"),
  14111. weight: math.unit(50, "lb"),
  14112. name: "Back",
  14113. image: {
  14114. source: "./media/characters/kole/back.svg",
  14115. extra: 1426 / 1280,
  14116. bottom: 0.02
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(4, "feet"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(2.5, "feet"),
  14133. weight: math.unit(32, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/rufran/front.svg",
  14137. extra: 1313/885,
  14138. bottom: 94/1407
  14139. }
  14140. },
  14141. side: {
  14142. height: math.unit(2.5, "feet"),
  14143. weight: math.unit(32, "lb"),
  14144. name: "Side",
  14145. image: {
  14146. source: "./media/characters/rufran/side.svg",
  14147. extra: 1109/852,
  14148. bottom: 118/1227
  14149. }
  14150. },
  14151. back: {
  14152. height: math.unit(2.5, "feet"),
  14153. weight: math.unit(32, "lb"),
  14154. name: "Back",
  14155. image: {
  14156. source: "./media/characters/rufran/back.svg",
  14157. extra: 1280/878,
  14158. bottom: 131/1411
  14159. }
  14160. },
  14161. mouth: {
  14162. height: math.unit(1.13, "feet"),
  14163. name: "Mouth",
  14164. image: {
  14165. source: "./media/characters/rufran/mouth.svg"
  14166. }
  14167. },
  14168. foot: {
  14169. height: math.unit(1.33, "feet"),
  14170. name: "Foot",
  14171. image: {
  14172. source: "./media/characters/rufran/foot.svg"
  14173. }
  14174. },
  14175. koboldFront: {
  14176. height: math.unit(2 + 6 / 12, "feet"),
  14177. weight: math.unit(20, "lb"),
  14178. name: "Front (Kobold)",
  14179. image: {
  14180. source: "./media/characters/rufran/kobold-front.svg",
  14181. extra: 2041 / 1839,
  14182. bottom: 0.055
  14183. }
  14184. },
  14185. koboldBack: {
  14186. height: math.unit(2 + 6 / 12, "feet"),
  14187. weight: math.unit(20, "lb"),
  14188. name: "Back (Kobold)",
  14189. image: {
  14190. source: "./media/characters/rufran/kobold-back.svg",
  14191. extra: 2054 / 1839,
  14192. bottom: 0.01
  14193. }
  14194. },
  14195. koboldHand: {
  14196. height: math.unit(0.2166, "meters"),
  14197. name: "Hand (Kobold)",
  14198. image: {
  14199. source: "./media/characters/rufran/kobold-hand.svg"
  14200. }
  14201. },
  14202. koboldFoot: {
  14203. height: math.unit(0.185, "meters"),
  14204. name: "Foot (Kobold)",
  14205. image: {
  14206. source: "./media/characters/rufran/kobold-foot.svg"
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Micro",
  14213. height: math.unit(1, "inch")
  14214. },
  14215. {
  14216. name: "Normal",
  14217. height: math.unit(2 + 6 / 12, "feet"),
  14218. default: true
  14219. },
  14220. {
  14221. name: "Big",
  14222. height: math.unit(60, "feet")
  14223. },
  14224. {
  14225. name: "Macro",
  14226. height: math.unit(325, "feet")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(0.3, "meters"),
  14235. weight: math.unit(3.5, "kg"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/chip/front.svg",
  14239. extra: 748 / 674
  14240. }
  14241. },
  14242. },
  14243. [
  14244. {
  14245. name: "Micro",
  14246. height: math.unit(1, "inch"),
  14247. default: true
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14253. {
  14254. side: {
  14255. height: math.unit(2.3, "meters"),
  14256. weight: math.unit(3500, "lb"),
  14257. name: "Side",
  14258. image: {
  14259. source: "./media/characters/torvid/side.svg",
  14260. extra: 1972 / 722,
  14261. bottom: 0.035
  14262. }
  14263. },
  14264. },
  14265. [
  14266. {
  14267. name: "Normal",
  14268. height: math.unit(2.3, "meters"),
  14269. default: true
  14270. },
  14271. ]
  14272. ))
  14273. characterMakers.push(() => makeCharacter(
  14274. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14275. {
  14276. front: {
  14277. height: math.unit(2, "meters"),
  14278. weight: math.unit(150.5, "kg"),
  14279. name: "Front",
  14280. image: {
  14281. source: "./media/characters/susan/front.svg",
  14282. extra: 693 / 635,
  14283. bottom: 0.05
  14284. }
  14285. },
  14286. },
  14287. [
  14288. {
  14289. name: "Megamacro",
  14290. height: math.unit(505, "miles"),
  14291. default: true
  14292. },
  14293. ]
  14294. ))
  14295. characterMakers.push(() => makeCharacter(
  14296. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14297. {
  14298. front: {
  14299. height: math.unit(6, "feet"),
  14300. weight: math.unit(150, "lb"),
  14301. name: "Front",
  14302. image: {
  14303. source: "./media/characters/raindrops/front.svg",
  14304. extra: 2655 / 2461,
  14305. bottom: 49 / 2705
  14306. }
  14307. },
  14308. back: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Back",
  14312. image: {
  14313. source: "./media/characters/raindrops/back.svg",
  14314. extra: 2574 / 2400,
  14315. bottom: 65 / 2634
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Micro",
  14322. height: math.unit(6, "inches")
  14323. },
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(6 + 2 / 12, "feet")
  14327. },
  14328. {
  14329. name: "Macro",
  14330. height: math.unit(131, "feet"),
  14331. default: true
  14332. },
  14333. {
  14334. name: "Megamacro",
  14335. height: math.unit(15, "miles")
  14336. },
  14337. {
  14338. name: "Gigamacro",
  14339. height: math.unit(4000, "miles")
  14340. },
  14341. {
  14342. name: "Teramacro",
  14343. height: math.unit(315000, "miles")
  14344. },
  14345. ]
  14346. ))
  14347. characterMakers.push(() => makeCharacter(
  14348. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14349. {
  14350. front: {
  14351. height: math.unit(2.794, "meters"),
  14352. weight: math.unit(325, "kg"),
  14353. name: "Front",
  14354. image: {
  14355. source: "./media/characters/tezwa/front.svg",
  14356. extra: 2083 / 1906,
  14357. bottom: 0.031
  14358. }
  14359. },
  14360. foot: {
  14361. height: math.unit(0.687, "meters"),
  14362. name: "Foot",
  14363. image: {
  14364. source: "./media/characters/tezwa/foot.svg"
  14365. }
  14366. },
  14367. },
  14368. [
  14369. {
  14370. name: "Normal",
  14371. height: math.unit(9 + 2 / 12, "feet"),
  14372. default: true
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(58, "feet"),
  14381. weight: math.unit(89000, "lb"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/typhus/front.svg",
  14385. extra: 816 / 800,
  14386. bottom: 0.065
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Macro",
  14393. height: math.unit(58, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14400. {
  14401. front: {
  14402. height: math.unit(12, "feet"),
  14403. weight: math.unit(6, "tonnes"),
  14404. name: "Front",
  14405. image: {
  14406. source: "./media/characters/lyra-von-wulf/front.svg",
  14407. extra: 1,
  14408. bottom: 0.10
  14409. }
  14410. },
  14411. frontMecha: {
  14412. height: math.unit(12, "feet"),
  14413. weight: math.unit(12, "tonnes"),
  14414. name: "Front (Mecha)",
  14415. image: {
  14416. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14417. extra: 1,
  14418. bottom: 0.042
  14419. }
  14420. },
  14421. maw: {
  14422. height: math.unit(2.2, "feet"),
  14423. name: "Maw",
  14424. image: {
  14425. source: "./media/characters/lyra-von-wulf/maw.svg"
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(12, "feet"),
  14433. default: true
  14434. },
  14435. {
  14436. name: "Classic",
  14437. height: math.unit(50, "feet")
  14438. },
  14439. {
  14440. name: "Macro",
  14441. height: math.unit(500, "feet")
  14442. },
  14443. {
  14444. name: "Megamacro",
  14445. height: math.unit(1, "mile")
  14446. },
  14447. {
  14448. name: "Gigamacro",
  14449. height: math.unit(400, "miles")
  14450. },
  14451. {
  14452. name: "Teramacro",
  14453. height: math.unit(22000, "miles")
  14454. },
  14455. {
  14456. name: "Solarmacro",
  14457. height: math.unit(8600000, "miles")
  14458. },
  14459. {
  14460. name: "Galactic",
  14461. height: math.unit(1057000, "lightyears")
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(6 + 10 / 12, "feet"),
  14470. weight: math.unit(150, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/dixon/front.svg",
  14474. extra: 3361 / 3209,
  14475. bottom: 0.01
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Normal",
  14482. height: math.unit(6 + 10 / 12, "feet"),
  14483. default: true
  14484. },
  14485. {
  14486. name: "Big",
  14487. height: math.unit(12, "meters")
  14488. },
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(500, "meters")
  14492. },
  14493. {
  14494. name: "Megamacro",
  14495. height: math.unit(2, "km")
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14501. {
  14502. kingCheetah_front: {
  14503. height: math.unit(1.85, "meters"),
  14504. weight: math.unit(68, "kg"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/kauko/king-cheetah-front.svg",
  14508. extra: 1007/972,
  14509. bottom: 35/1042
  14510. },
  14511. form: "king-cheetah",
  14512. default: true
  14513. },
  14514. kingCheetah_back: {
  14515. height: math.unit(1.85, "meters"),
  14516. weight: math.unit(68, "kg"),
  14517. name: "Back",
  14518. image: {
  14519. source: "./media/characters/kauko/king-cheetah-back.svg",
  14520. extra: 1015/980,
  14521. bottom: 11/1026
  14522. },
  14523. form: "king-cheetah",
  14524. },
  14525. kingCheetah_hand: {
  14526. height: math.unit(0.23, "meters"),
  14527. name: "Hand",
  14528. image: {
  14529. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14530. },
  14531. form: "king-cheetah",
  14532. },
  14533. kingCheetah_paw: {
  14534. height: math.unit(0.38, "meters"),
  14535. name: "Paw",
  14536. image: {
  14537. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14538. },
  14539. form: "king-cheetah",
  14540. },
  14541. kingCheetah_nape: {
  14542. height: math.unit(0.23, "meters"),
  14543. name: "Nape",
  14544. image: {
  14545. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14546. },
  14547. form: "king-cheetah",
  14548. },
  14549. wolf_front: {
  14550. height: math.unit(1.88, "meters"),
  14551. weight: math.unit(74, "kg"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/kauko/wolf-front.svg",
  14555. extra: 952/908,
  14556. bottom: 64/1016
  14557. },
  14558. form: "wolf",
  14559. default: true
  14560. },
  14561. wolf_dressed: {
  14562. height: math.unit(1.88, "meters"),
  14563. weight: math.unit(74, "kg"),
  14564. name: "Dressed",
  14565. image: {
  14566. source: "./media/characters/kauko/wolf-dressed.svg",
  14567. extra: 963/916,
  14568. bottom: 101/1064
  14569. },
  14570. form: "wolf",
  14571. },
  14572. wolf_hand: {
  14573. height: math.unit(0.3, "meters"),
  14574. name: "Hand",
  14575. image: {
  14576. source: "./media/characters/kauko/wolf-hand.svg"
  14577. },
  14578. form: "wolf",
  14579. },
  14580. wolf_paw: {
  14581. height: math.unit(0.407, "meters"),
  14582. name: "Paw",
  14583. image: {
  14584. source: "./media/characters/kauko/wolf-paw.svg"
  14585. },
  14586. form: "wolf",
  14587. },
  14588. wolf_nape: {
  14589. height: math.unit(0.25, "meters"),
  14590. name: "Nape",
  14591. image: {
  14592. source: "./media/characters/kauko/wolf-nape.svg"
  14593. },
  14594. form: "wolf",
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(1.85, "m"),
  14601. default: true,
  14602. form: "king-cheetah"
  14603. },
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(1.88, "m"),
  14607. default: true,
  14608. form: "wolf"
  14609. },
  14610. ],
  14611. {
  14612. "king-cheetah": {
  14613. name: "King Cheetah",
  14614. default: true
  14615. },
  14616. "wolf": {
  14617. name: "Wolf",
  14618. },
  14619. }
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14623. {
  14624. frontSfw: {
  14625. height: math.unit(5, "meters"),
  14626. weight: math.unit(4250, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/varg/front-sfw.svg",
  14630. extra: 1103/1010,
  14631. bottom: 50/1153
  14632. },
  14633. form: "anthro",
  14634. default: true
  14635. },
  14636. backSfw: {
  14637. height: math.unit(5, "meters"),
  14638. weight: math.unit(4250, "lb"),
  14639. name: "Back",
  14640. image: {
  14641. source: "./media/characters/varg/back-sfw.svg",
  14642. extra: 1038/1022,
  14643. bottom: 36/1074
  14644. },
  14645. form: "anthro"
  14646. },
  14647. frontNsfw: {
  14648. height: math.unit(5, "meters"),
  14649. weight: math.unit(4250, "lb"),
  14650. name: "Front (NSFW)",
  14651. image: {
  14652. source: "./media/characters/varg/front-nsfw.svg",
  14653. extra: 1103/1010,
  14654. bottom: 50/1153
  14655. },
  14656. form: "anthro"
  14657. },
  14658. sheath: {
  14659. height: math.unit(3.8, "feet"),
  14660. weight: math.unit(90, "kilograms"),
  14661. name: "Sheath",
  14662. image: {
  14663. source: "./media/characters/varg/sheath.svg"
  14664. },
  14665. form: "anthro"
  14666. },
  14667. dick: {
  14668. height: math.unit(4.6, "feet"),
  14669. weight: math.unit(451, "kilograms"),
  14670. name: "Dick",
  14671. image: {
  14672. source: "./media/characters/varg/dick.svg"
  14673. },
  14674. form: "anthro"
  14675. },
  14676. feralSfw: {
  14677. height: math.unit(5, "meters"),
  14678. weight: math.unit(100000, "lb"),
  14679. name: "Side",
  14680. image: {
  14681. source: "./media/characters/varg/feral-sfw.svg",
  14682. extra: 1065/511,
  14683. bottom: 211/1276
  14684. },
  14685. form: "feral",
  14686. default: true
  14687. },
  14688. feralNsfw: {
  14689. height: math.unit(5, "meters"),
  14690. weight: math.unit(100000, "lb"),
  14691. name: "Side (NSFW)",
  14692. image: {
  14693. source: "./media/characters/varg/feral-nsfw.svg",
  14694. extra: 1065/511,
  14695. bottom: 211/1276
  14696. },
  14697. form: "feral",
  14698. },
  14699. feralSheath: {
  14700. height: math.unit(9.8, "feet"),
  14701. weight: math.unit(2000, "kilograms"),
  14702. name: "Sheath",
  14703. image: {
  14704. source: "./media/characters/varg/sheath.svg"
  14705. },
  14706. form: "feral"
  14707. },
  14708. feralDick: {
  14709. height: math.unit(13.11, "feet"),
  14710. weight: math.unit(10440, "kilograms"),
  14711. name: "Dick",
  14712. image: {
  14713. source: "./media/characters/varg/dick.svg"
  14714. },
  14715. form: "feral"
  14716. },
  14717. },
  14718. [
  14719. {
  14720. name: "Normal",
  14721. height: math.unit(5, "meters"),
  14722. form: "anthro"
  14723. },
  14724. {
  14725. name: "Macro",
  14726. height: math.unit(200, "meters"),
  14727. form: "anthro"
  14728. },
  14729. {
  14730. name: "Megamacro",
  14731. height: math.unit(20, "kilometers"),
  14732. form: "anthro"
  14733. },
  14734. {
  14735. name: "True Size",
  14736. height: math.unit(211, "km"),
  14737. form: "anthro",
  14738. default: true
  14739. },
  14740. {
  14741. name: "Gigamacro",
  14742. height: math.unit(1000, "km"),
  14743. form: "anthro"
  14744. },
  14745. {
  14746. name: "Gigamacro+",
  14747. height: math.unit(8000, "km"),
  14748. form: "anthro"
  14749. },
  14750. {
  14751. name: "Teramacro",
  14752. height: math.unit(1000000, "km"),
  14753. form: "anthro"
  14754. },
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(5, "meters"),
  14758. form: "feral"
  14759. },
  14760. {
  14761. name: "Macro",
  14762. height: math.unit(200, "meters"),
  14763. form: "feral"
  14764. },
  14765. {
  14766. name: "Megamacro",
  14767. height: math.unit(20, "kilometers"),
  14768. form: "feral"
  14769. },
  14770. {
  14771. name: "True Size",
  14772. height: math.unit(211, "km"),
  14773. form: "feral",
  14774. default: true
  14775. },
  14776. {
  14777. name: "Gigamacro",
  14778. height: math.unit(1000, "km"),
  14779. form: "feral"
  14780. },
  14781. {
  14782. name: "Gigamacro+",
  14783. height: math.unit(8000, "km"),
  14784. form: "feral"
  14785. },
  14786. {
  14787. name: "Teramacro",
  14788. height: math.unit(1000000, "km"),
  14789. form: "feral"
  14790. },
  14791. ],
  14792. {
  14793. "anthro": {
  14794. name: "Anthro",
  14795. default: true
  14796. },
  14797. "feral": {
  14798. name: "Feral",
  14799. },
  14800. }
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(7 + 7 / 12, "feet"),
  14807. weight: math.unit(267, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/dayza/front.svg",
  14811. extra: 1262 / 1200,
  14812. bottom: 0.035
  14813. }
  14814. },
  14815. side: {
  14816. height: math.unit(7 + 7 / 12, "feet"),
  14817. weight: math.unit(267, "lb"),
  14818. name: "Side",
  14819. image: {
  14820. source: "./media/characters/dayza/side.svg",
  14821. extra: 1295 / 1245,
  14822. bottom: 0.05
  14823. }
  14824. },
  14825. back: {
  14826. height: math.unit(7 + 7 / 12, "feet"),
  14827. weight: math.unit(267, "lb"),
  14828. name: "Back",
  14829. image: {
  14830. source: "./media/characters/dayza/back.svg",
  14831. extra: 1241 / 1170
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(7 + 7 / 12, "feet"),
  14839. default: true
  14840. },
  14841. {
  14842. name: "Macro",
  14843. height: math.unit(155, "feet")
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14849. {
  14850. front: {
  14851. height: math.unit(6 + 5 / 12, "feet"),
  14852. weight: math.unit(160, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/xanthos/front.svg",
  14856. extra: 1,
  14857. bottom: 0.04
  14858. }
  14859. },
  14860. back: {
  14861. height: math.unit(6 + 5 / 12, "feet"),
  14862. weight: math.unit(160, "lb"),
  14863. name: "Back",
  14864. image: {
  14865. source: "./media/characters/xanthos/back.svg",
  14866. extra: 1,
  14867. bottom: 0.03
  14868. }
  14869. },
  14870. hand: {
  14871. height: math.unit(0.928, "feet"),
  14872. name: "Hand",
  14873. image: {
  14874. source: "./media/characters/xanthos/hand.svg"
  14875. }
  14876. },
  14877. foot: {
  14878. height: math.unit(1.286, "feet"),
  14879. name: "Foot",
  14880. image: {
  14881. source: "./media/characters/xanthos/foot.svg"
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Normal",
  14888. height: math.unit(6 + 5 / 12, "feet"),
  14889. default: true
  14890. },
  14891. {
  14892. name: "Normal+",
  14893. height: math.unit(6, "meters")
  14894. },
  14895. {
  14896. name: "Macro",
  14897. height: math.unit(40, "feet")
  14898. },
  14899. {
  14900. name: "Macro+",
  14901. height: math.unit(200, "meters")
  14902. },
  14903. {
  14904. name: "Megamacro",
  14905. height: math.unit(20, "km")
  14906. },
  14907. {
  14908. name: "Megamacro+",
  14909. height: math.unit(100, "km")
  14910. },
  14911. {
  14912. name: "Gigamacro",
  14913. height: math.unit(200, "megameters")
  14914. },
  14915. {
  14916. name: "Gigamacro+",
  14917. height: math.unit(1.5, "gigameters")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(6 + 3 / 12, "feet"),
  14926. weight: math.unit(215, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/grynn/front.svg",
  14930. extra: 4627 / 4209,
  14931. bottom: 0.047
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Micro",
  14938. height: math.unit(6, "inches")
  14939. },
  14940. {
  14941. name: "Normal",
  14942. height: math.unit(6 + 3 / 12, "feet"),
  14943. default: true
  14944. },
  14945. {
  14946. name: "Big",
  14947. height: math.unit(104, "feet")
  14948. },
  14949. {
  14950. name: "Macro",
  14951. height: math.unit(944, "feet")
  14952. },
  14953. {
  14954. name: "Macro+",
  14955. height: math.unit(9480, "feet")
  14956. },
  14957. {
  14958. name: "Megamacro",
  14959. height: math.unit(78752, "feet")
  14960. },
  14961. {
  14962. name: "Megamacro+",
  14963. height: math.unit(630128, "feet")
  14964. },
  14965. {
  14966. name: "Megamacro++",
  14967. height: math.unit(3150695, "feet")
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14973. {
  14974. front: {
  14975. height: math.unit(7 + 5 / 12, "feet"),
  14976. weight: math.unit(450, "lb"),
  14977. name: "Front",
  14978. image: {
  14979. source: "./media/characters/mocha-aura/front.svg",
  14980. extra: 1907 / 1817,
  14981. bottom: 0.04
  14982. }
  14983. },
  14984. back: {
  14985. height: math.unit(7 + 5 / 12, "feet"),
  14986. weight: math.unit(450, "lb"),
  14987. name: "Back",
  14988. image: {
  14989. source: "./media/characters/mocha-aura/back.svg",
  14990. extra: 1900 / 1825,
  14991. bottom: 0.045
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Nano",
  14998. height: math.unit(1, "nm")
  14999. },
  15000. {
  15001. name: "Megamicro",
  15002. height: math.unit(1, "mm")
  15003. },
  15004. {
  15005. name: "Micro",
  15006. height: math.unit(3, "inches")
  15007. },
  15008. {
  15009. name: "Normal",
  15010. height: math.unit(7 + 5 / 12, "feet"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Macro",
  15015. height: math.unit(30, "feet")
  15016. },
  15017. {
  15018. name: "Megamacro",
  15019. height: math.unit(3500, "feet")
  15020. },
  15021. {
  15022. name: "Teramacro",
  15023. height: math.unit(500000, "miles")
  15024. },
  15025. {
  15026. name: "Petamacro",
  15027. height: math.unit(50000000000000000, "parsecs")
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15033. {
  15034. front: {
  15035. height: math.unit(6, "feet"),
  15036. weight: math.unit(150, "lb"),
  15037. name: "Front",
  15038. image: {
  15039. source: "./media/characters/ilisha-devya/front.svg",
  15040. extra: 1053/1049,
  15041. bottom: 270/1323
  15042. }
  15043. },
  15044. back: {
  15045. height: math.unit(6, "feet"),
  15046. weight: math.unit(150, "lb"),
  15047. name: "Back",
  15048. image: {
  15049. source: "./media/characters/ilisha-devya/back.svg",
  15050. extra: 1131/1128,
  15051. bottom: 39/1170
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Macro",
  15058. height: math.unit(500, "feet"),
  15059. default: true
  15060. },
  15061. {
  15062. name: "Megamacro",
  15063. height: math.unit(10, "miles")
  15064. },
  15065. {
  15066. name: "Gigamacro",
  15067. height: math.unit(100000, "miles")
  15068. },
  15069. {
  15070. name: "Examacro",
  15071. height: math.unit(1e9, "lightyears")
  15072. },
  15073. {
  15074. name: "Omniversal",
  15075. height: math.unit(1e33, "lightyears")
  15076. },
  15077. {
  15078. name: "Beyond Infinite",
  15079. height: math.unit(1e100, "lightyears")
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15085. {
  15086. Side: {
  15087. height: math.unit(6, "feet"),
  15088. weight: math.unit(150, "lb"),
  15089. name: "Side",
  15090. image: {
  15091. source: "./media/characters/mira/side.svg",
  15092. extra: 900 / 799,
  15093. bottom: 0.02
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "Human Size",
  15100. height: math.unit(6, "feet")
  15101. },
  15102. {
  15103. name: "Macro",
  15104. height: math.unit(100, "feet"),
  15105. default: true
  15106. },
  15107. {
  15108. name: "Megamacro",
  15109. height: math.unit(10, "miles")
  15110. },
  15111. {
  15112. name: "Gigamacro",
  15113. height: math.unit(25000, "miles")
  15114. },
  15115. {
  15116. name: "Teramacro",
  15117. height: math.unit(300, "AU")
  15118. },
  15119. {
  15120. name: "Full Size",
  15121. height: math.unit(4.5e10, "lightyears")
  15122. },
  15123. ]
  15124. ))
  15125. characterMakers.push(() => makeCharacter(
  15126. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15127. {
  15128. front: {
  15129. height: math.unit(6, "feet"),
  15130. weight: math.unit(150, "lb"),
  15131. name: "Front",
  15132. image: {
  15133. source: "./media/characters/holly/front.svg",
  15134. extra: 639 / 606
  15135. }
  15136. },
  15137. back: {
  15138. height: math.unit(6, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Back",
  15141. image: {
  15142. source: "./media/characters/holly/back.svg",
  15143. extra: 623 / 598
  15144. }
  15145. },
  15146. frontWorking: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(150, "lb"),
  15149. name: "Front (Working)",
  15150. image: {
  15151. source: "./media/characters/holly/front-working.svg",
  15152. extra: 607 / 577,
  15153. bottom: 0.048
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(12 + 3 / 12, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/porter/front.svg",
  15174. extra: 1,
  15175. bottom: 0.01
  15176. }
  15177. },
  15178. frontRobes: {
  15179. height: math.unit(6, "feet"),
  15180. weight: math.unit(150, "lb"),
  15181. name: "Front (Robes)",
  15182. image: {
  15183. source: "./media/characters/porter/front-robes.svg",
  15184. extra: 1.01,
  15185. bottom: 0.01
  15186. }
  15187. },
  15188. },
  15189. [
  15190. {
  15191. name: "Normal",
  15192. height: math.unit(11 + 9 / 12, "feet"),
  15193. default: true
  15194. },
  15195. ]
  15196. ))
  15197. characterMakers.push(() => makeCharacter(
  15198. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15199. {
  15200. legendary: {
  15201. height: math.unit(6, "feet"),
  15202. weight: math.unit(150, "lb"),
  15203. name: "Legendary",
  15204. image: {
  15205. source: "./media/characters/lucy/legendary.svg",
  15206. extra: 1355 / 1100,
  15207. bottom: 0.045
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Legendary",
  15214. height: math.unit(86882 * 2, "miles"),
  15215. default: true
  15216. },
  15217. ]
  15218. ))
  15219. characterMakers.push(() => makeCharacter(
  15220. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15221. {
  15222. front: {
  15223. height: math.unit(6, "feet"),
  15224. weight: math.unit(150, "lb"),
  15225. name: "Front",
  15226. image: {
  15227. source: "./media/characters/drusilla/front.svg",
  15228. extra: 678 / 635,
  15229. bottom: 0.03
  15230. }
  15231. },
  15232. back: {
  15233. height: math.unit(6, "feet"),
  15234. weight: math.unit(150, "lb"),
  15235. name: "Back",
  15236. image: {
  15237. source: "./media/characters/drusilla/back.svg",
  15238. extra: 678 / 635,
  15239. bottom: 0.005
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Macro",
  15246. height: math.unit(100, "feet")
  15247. },
  15248. {
  15249. name: "Canon Height",
  15250. height: math.unit(2000, "feet"),
  15251. default: true
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(6, "feet"),
  15260. weight: math.unit(180, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/renard-thatch/front.svg",
  15264. extra: 2411 / 2275,
  15265. bottom: 0.01
  15266. }
  15267. },
  15268. frontPosing: {
  15269. height: math.unit(6, "feet"),
  15270. weight: math.unit(180, "lb"),
  15271. name: "Front (Posing)",
  15272. image: {
  15273. source: "./media/characters/renard-thatch/front-posing.svg",
  15274. extra: 2381 / 2261,
  15275. bottom: 0.01
  15276. }
  15277. },
  15278. back: {
  15279. height: math.unit(6, "feet"),
  15280. weight: math.unit(180, "lb"),
  15281. name: "Back",
  15282. image: {
  15283. source: "./media/characters/renard-thatch/back.svg",
  15284. extra: 2428 / 2288
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Micro",
  15291. height: math.unit(3, "inches")
  15292. },
  15293. {
  15294. name: "Default",
  15295. height: math.unit(6, "feet"),
  15296. default: true
  15297. },
  15298. {
  15299. name: "Macro",
  15300. height: math.unit(75, "feet")
  15301. },
  15302. ]
  15303. ))
  15304. characterMakers.push(() => makeCharacter(
  15305. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15306. {
  15307. front: {
  15308. height: math.unit(1450, "feet"),
  15309. weight: math.unit(1.21e6, "tons"),
  15310. name: "Front",
  15311. image: {
  15312. source: "./media/characters/sekvra/front.svg",
  15313. extra: 1193/1190,
  15314. bottom: 78/1271
  15315. }
  15316. },
  15317. side: {
  15318. height: math.unit(1450, "feet"),
  15319. weight: math.unit(1.21e6, "tons"),
  15320. name: "Side",
  15321. image: {
  15322. source: "./media/characters/sekvra/side.svg",
  15323. extra: 1193/1190,
  15324. bottom: 52/1245
  15325. }
  15326. },
  15327. back: {
  15328. height: math.unit(1450, "feet"),
  15329. weight: math.unit(1.21e6, "tons"),
  15330. name: "Back",
  15331. image: {
  15332. source: "./media/characters/sekvra/back.svg",
  15333. extra: 1219/1216,
  15334. bottom: 21/1240
  15335. }
  15336. },
  15337. frontClothed: {
  15338. height: math.unit(1450, "feet"),
  15339. weight: math.unit(1.21e6, "tons"),
  15340. name: "Front (Clothed)",
  15341. image: {
  15342. source: "./media/characters/sekvra/front-clothed.svg",
  15343. extra: 1192/1189,
  15344. bottom: 79/1271
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Macro",
  15351. height: math.unit(1450, "feet"),
  15352. default: true
  15353. },
  15354. {
  15355. name: "Megamacro",
  15356. height: math.unit(15000, "feet")
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15362. {
  15363. front: {
  15364. height: math.unit(6, "feet"),
  15365. weight: math.unit(150, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/carmine/front.svg",
  15369. extra: 1557/1538,
  15370. bottom: 68/1625
  15371. }
  15372. },
  15373. frontArmor: {
  15374. height: math.unit(6, "feet"),
  15375. weight: math.unit(150, "lb"),
  15376. name: "Front (Armor)",
  15377. image: {
  15378. source: "./media/characters/carmine/front-armor.svg",
  15379. extra: 1549/1530,
  15380. bottom: 82/1631
  15381. }
  15382. },
  15383. mouth: {
  15384. height: math.unit(0.55, "feet"),
  15385. name: "Mouth",
  15386. image: {
  15387. source: "./media/characters/carmine/mouth.svg"
  15388. }
  15389. },
  15390. hand: {
  15391. height: math.unit(1.05, "feet"),
  15392. name: "Hand",
  15393. image: {
  15394. source: "./media/characters/carmine/hand.svg"
  15395. }
  15396. },
  15397. foot: {
  15398. height: math.unit(0.6, "feet"),
  15399. name: "Foot",
  15400. image: {
  15401. source: "./media/characters/carmine/foot.svg"
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Large",
  15408. height: math.unit(1, "mile")
  15409. },
  15410. {
  15411. name: "Huge",
  15412. height: math.unit(40, "miles"),
  15413. default: true
  15414. },
  15415. {
  15416. name: "Colossal",
  15417. height: math.unit(2500, "miles")
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15423. {
  15424. front: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/elyssia/front.svg",
  15430. extra: 2201 / 2035,
  15431. bottom: 0.05
  15432. }
  15433. },
  15434. frontClothed: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Front (Clothed)",
  15438. image: {
  15439. source: "./media/characters/elyssia/front-clothed.svg",
  15440. extra: 2201 / 2035,
  15441. bottom: 0.05
  15442. }
  15443. },
  15444. back: {
  15445. height: math.unit(6, "feet"),
  15446. weight: math.unit(150, "lb"),
  15447. name: "Back",
  15448. image: {
  15449. source: "./media/characters/elyssia/back.svg",
  15450. extra: 2201 / 2035,
  15451. bottom: 0.013
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Smaller",
  15458. height: math.unit(150, "feet")
  15459. },
  15460. {
  15461. name: "Standard",
  15462. height: math.unit(1400, "feet"),
  15463. default: true
  15464. },
  15465. {
  15466. name: "Distracted",
  15467. height: math.unit(15000, "feet")
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15473. {
  15474. front: {
  15475. height: math.unit(7 + 4/12, "feet"),
  15476. weight: math.unit(690, "lb"),
  15477. name: "Front",
  15478. image: {
  15479. source: "./media/characters/geno-maxwell/front.svg",
  15480. extra: 984/856,
  15481. bottom: 87/1071
  15482. }
  15483. },
  15484. back: {
  15485. height: math.unit(7 + 4/12, "feet"),
  15486. weight: math.unit(690, "lb"),
  15487. name: "Back",
  15488. image: {
  15489. source: "./media/characters/geno-maxwell/back.svg",
  15490. extra: 981/854,
  15491. bottom: 57/1038
  15492. }
  15493. },
  15494. frontCostume: {
  15495. height: math.unit(7 + 4/12, "feet"),
  15496. weight: math.unit(690, "lb"),
  15497. name: "Front (Costume)",
  15498. image: {
  15499. source: "./media/characters/geno-maxwell/front-costume.svg",
  15500. extra: 984/856,
  15501. bottom: 87/1071
  15502. }
  15503. },
  15504. backcostume: {
  15505. height: math.unit(7 + 4/12, "feet"),
  15506. weight: math.unit(690, "lb"),
  15507. name: "Back (Costume)",
  15508. image: {
  15509. source: "./media/characters/geno-maxwell/back-costume.svg",
  15510. extra: 981/854,
  15511. bottom: 57/1038
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Micro",
  15518. height: math.unit(3, "inches")
  15519. },
  15520. {
  15521. name: "Normal",
  15522. height: math.unit(7 + 4 / 12, "feet"),
  15523. default: true
  15524. },
  15525. {
  15526. name: "Macro",
  15527. height: math.unit(220, "feet")
  15528. },
  15529. {
  15530. name: "Megamacro",
  15531. height: math.unit(11, "miles")
  15532. },
  15533. ]
  15534. ))
  15535. characterMakers.push(() => makeCharacter(
  15536. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15537. {
  15538. front: {
  15539. height: math.unit(7 + 4/12, "feet"),
  15540. weight: math.unit(750, "lb"),
  15541. name: "Front",
  15542. image: {
  15543. source: "./media/characters/regena-maxwell/front.svg",
  15544. extra: 984/856,
  15545. bottom: 87/1071
  15546. }
  15547. },
  15548. back: {
  15549. height: math.unit(7 + 4/12, "feet"),
  15550. weight: math.unit(750, "lb"),
  15551. name: "Back",
  15552. image: {
  15553. source: "./media/characters/regena-maxwell/back.svg",
  15554. extra: 981/854,
  15555. bottom: 57/1038
  15556. }
  15557. },
  15558. frontCostume: {
  15559. height: math.unit(7 + 4/12, "feet"),
  15560. weight: math.unit(750, "lb"),
  15561. name: "Front (Costume)",
  15562. image: {
  15563. source: "./media/characters/regena-maxwell/front-costume.svg",
  15564. extra: 984/856,
  15565. bottom: 87/1071
  15566. }
  15567. },
  15568. backcostume: {
  15569. height: math.unit(7 + 4/12, "feet"),
  15570. weight: math.unit(750, "lb"),
  15571. name: "Back (Costume)",
  15572. image: {
  15573. source: "./media/characters/regena-maxwell/back-costume.svg",
  15574. extra: 981/854,
  15575. bottom: 57/1038
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(7 + 4 / 12, "feet"),
  15583. default: true
  15584. },
  15585. {
  15586. name: "Macro",
  15587. height: math.unit(220, "feet")
  15588. },
  15589. {
  15590. name: "Megamacro",
  15591. height: math.unit(11, "miles")
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(6, "feet"),
  15600. weight: math.unit(150, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15604. extra: 860 / 690,
  15605. bottom: 0.03
  15606. }
  15607. },
  15608. },
  15609. [
  15610. {
  15611. name: "Normal",
  15612. height: math.unit(1.7, "meters"),
  15613. default: true
  15614. },
  15615. ]
  15616. ))
  15617. characterMakers.push(() => makeCharacter(
  15618. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15619. {
  15620. front: {
  15621. height: math.unit(6, "feet"),
  15622. weight: math.unit(150, "lb"),
  15623. name: "Front",
  15624. image: {
  15625. source: "./media/characters/quilly/front.svg",
  15626. extra: 890 / 776
  15627. }
  15628. },
  15629. },
  15630. [
  15631. {
  15632. name: "Gigamacro",
  15633. height: math.unit(404090, "miles"),
  15634. default: true
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(7 + 8 / 12, "feet"),
  15643. weight: math.unit(350, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/tempest/front.svg",
  15647. extra: 1175 / 1086,
  15648. bottom: 0.02
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Normal",
  15655. height: math.unit(7 + 8 / 12, "feet"),
  15656. default: true
  15657. },
  15658. ]
  15659. ))
  15660. characterMakers.push(() => makeCharacter(
  15661. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15662. {
  15663. side: {
  15664. height: math.unit(4 + 5 / 12, "feet"),
  15665. weight: math.unit(80, "lb"),
  15666. name: "Side",
  15667. image: {
  15668. source: "./media/characters/rodger/side.svg",
  15669. extra: 1235 / 1118
  15670. }
  15671. },
  15672. },
  15673. [
  15674. {
  15675. name: "Micro",
  15676. height: math.unit(1, "inch")
  15677. },
  15678. {
  15679. name: "Normal",
  15680. height: math.unit(4 + 5 / 12, "feet"),
  15681. default: true
  15682. },
  15683. {
  15684. name: "Macro",
  15685. height: math.unit(120, "feet")
  15686. },
  15687. ]
  15688. ))
  15689. characterMakers.push(() => makeCharacter(
  15690. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15691. {
  15692. front: {
  15693. height: math.unit(6, "feet"),
  15694. weight: math.unit(150, "lb"),
  15695. name: "Front",
  15696. image: {
  15697. source: "./media/characters/danyel/front.svg",
  15698. extra: 1185 / 1123,
  15699. bottom: 0.05
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Shrunken",
  15706. height: math.unit(0.5, "mm")
  15707. },
  15708. {
  15709. name: "Micro",
  15710. height: math.unit(1, "mm"),
  15711. default: true
  15712. },
  15713. {
  15714. name: "Upsized",
  15715. height: math.unit(5 + 5 / 12, "feet")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(5 + 6 / 12, "feet"),
  15724. weight: math.unit(200, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/vivian-bijoux/front.svg",
  15728. extra: 1217/1209,
  15729. bottom: 76/1293
  15730. }
  15731. },
  15732. back: {
  15733. height: math.unit(5 + 6 / 12, "feet"),
  15734. weight: math.unit(200, "lb"),
  15735. name: "Back",
  15736. image: {
  15737. source: "./media/characters/vivian-bijoux/back.svg",
  15738. extra: 1214/1208,
  15739. bottom: 51/1265
  15740. }
  15741. },
  15742. dressed: {
  15743. height: math.unit(5 + 6 / 12, "feet"),
  15744. weight: math.unit(200, "lb"),
  15745. name: "Dressed",
  15746. image: {
  15747. source: "./media/characters/vivian-bijoux/dressed.svg",
  15748. extra: 1217/1209,
  15749. bottom: 76/1293
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(5 + 6 / 12, "feet"),
  15757. default: true
  15758. },
  15759. {
  15760. name: "Bad Dream",
  15761. height: math.unit(500, "feet")
  15762. },
  15763. {
  15764. name: "Nightmare",
  15765. height: math.unit(500, "miles")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15771. {
  15772. front: {
  15773. height: math.unit(6 + 1 / 12, "feet"),
  15774. weight: math.unit(260, "lb"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/zeta/front.svg",
  15778. extra: 1968 / 1889,
  15779. bottom: 0.06
  15780. }
  15781. },
  15782. back: {
  15783. height: math.unit(6 + 1 / 12, "feet"),
  15784. weight: math.unit(260, "lb"),
  15785. name: "Back",
  15786. image: {
  15787. source: "./media/characters/zeta/back.svg",
  15788. extra: 1944 / 1858,
  15789. bottom: 0.03
  15790. }
  15791. },
  15792. hand: {
  15793. height: math.unit(1.112, "feet"),
  15794. name: "Hand",
  15795. image: {
  15796. source: "./media/characters/zeta/hand.svg"
  15797. }
  15798. },
  15799. foot: {
  15800. height: math.unit(1.48, "feet"),
  15801. name: "Foot",
  15802. image: {
  15803. source: "./media/characters/zeta/foot.svg"
  15804. }
  15805. },
  15806. },
  15807. [
  15808. {
  15809. name: "Micro",
  15810. height: math.unit(6, "inches")
  15811. },
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(6 + 1 / 12, "feet"),
  15815. default: true
  15816. },
  15817. {
  15818. name: "Macro",
  15819. height: math.unit(20, "feet")
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15825. {
  15826. front: {
  15827. height: math.unit(6, "feet"),
  15828. weight: math.unit(150, "lb"),
  15829. name: "Front",
  15830. image: {
  15831. source: "./media/characters/jamie-larsen/front.svg",
  15832. extra: 962 / 933,
  15833. bottom: 0.02
  15834. }
  15835. },
  15836. back: {
  15837. height: math.unit(6, "feet"),
  15838. weight: math.unit(150, "lb"),
  15839. name: "Back",
  15840. image: {
  15841. source: "./media/characters/jamie-larsen/back.svg",
  15842. extra: 997 / 946
  15843. }
  15844. },
  15845. },
  15846. [
  15847. {
  15848. name: "Macro",
  15849. height: math.unit(28 + 7 / 12, "feet"),
  15850. default: true
  15851. },
  15852. {
  15853. name: "Macro+",
  15854. height: math.unit(180, "feet")
  15855. },
  15856. {
  15857. name: "Megamacro",
  15858. height: math.unit(10, "miles")
  15859. },
  15860. {
  15861. name: "Gigamacro",
  15862. height: math.unit(200000, "miles")
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(6, "feet"),
  15871. weight: math.unit(120, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/vance/front.svg",
  15875. extra: 1980 / 1890,
  15876. bottom: 0.09
  15877. }
  15878. },
  15879. back: {
  15880. height: math.unit(6, "feet"),
  15881. weight: math.unit(120, "lb"),
  15882. name: "Back",
  15883. image: {
  15884. source: "./media/characters/vance/back.svg",
  15885. extra: 2081 / 1994,
  15886. bottom: 0.014
  15887. }
  15888. },
  15889. hand: {
  15890. height: math.unit(0.88, "feet"),
  15891. name: "Hand",
  15892. image: {
  15893. source: "./media/characters/vance/hand.svg"
  15894. }
  15895. },
  15896. foot: {
  15897. height: math.unit(0.64, "feet"),
  15898. name: "Foot",
  15899. image: {
  15900. source: "./media/characters/vance/foot.svg"
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Small",
  15907. height: math.unit(90, "feet"),
  15908. default: true
  15909. },
  15910. {
  15911. name: "Macro",
  15912. height: math.unit(100, "meters")
  15913. },
  15914. {
  15915. name: "Megamacro",
  15916. height: math.unit(15, "miles")
  15917. },
  15918. ]
  15919. ))
  15920. characterMakers.push(() => makeCharacter(
  15921. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15922. {
  15923. front: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(180, "lb"),
  15926. name: "Front",
  15927. image: {
  15928. source: "./media/characters/xochitl/front.svg",
  15929. extra: 2297 / 2261,
  15930. bottom: 0.065
  15931. }
  15932. },
  15933. back: {
  15934. height: math.unit(6, "feet"),
  15935. weight: math.unit(180, "lb"),
  15936. name: "Back",
  15937. image: {
  15938. source: "./media/characters/xochitl/back.svg",
  15939. extra: 2386 / 2354,
  15940. bottom: 0.01
  15941. }
  15942. },
  15943. foot: {
  15944. height: math.unit(6 / 5 * 1.15, "feet"),
  15945. weight: math.unit(150, "lb"),
  15946. name: "Foot",
  15947. image: {
  15948. source: "./media/characters/xochitl/foot.svg"
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Macro",
  15955. height: math.unit(80, "feet")
  15956. },
  15957. {
  15958. name: "Macro+",
  15959. height: math.unit(400, "feet"),
  15960. default: true
  15961. },
  15962. {
  15963. name: "Gigamacro",
  15964. height: math.unit(80000, "miles")
  15965. },
  15966. {
  15967. name: "Gigamacro+",
  15968. height: math.unit(400000, "miles")
  15969. },
  15970. {
  15971. name: "Teramacro",
  15972. height: math.unit(300, "AU")
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15978. {
  15979. front: {
  15980. height: math.unit(6, "feet"),
  15981. weight: math.unit(150, "lb"),
  15982. name: "Front",
  15983. image: {
  15984. source: "./media/characters/vincent/front.svg",
  15985. extra: 1130 / 1080,
  15986. bottom: 0.055
  15987. }
  15988. },
  15989. beak: {
  15990. height: math.unit(6 * 0.1, "feet"),
  15991. name: "Beak",
  15992. image: {
  15993. source: "./media/characters/vincent/beak.svg"
  15994. }
  15995. },
  15996. hand: {
  15997. height: math.unit(6 * 0.85, "feet"),
  15998. weight: math.unit(150, "lb"),
  15999. name: "Hand",
  16000. image: {
  16001. source: "./media/characters/vincent/hand.svg"
  16002. }
  16003. },
  16004. foot: {
  16005. height: math.unit(6 * 0.19, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Foot",
  16008. image: {
  16009. source: "./media/characters/vincent/foot.svg"
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Base",
  16016. height: math.unit(6 + 5 / 12, "feet"),
  16017. default: true
  16018. },
  16019. {
  16020. name: "Macro",
  16021. height: math.unit(300, "feet")
  16022. },
  16023. {
  16024. name: "Megamacro",
  16025. height: math.unit(2, "miles")
  16026. },
  16027. {
  16028. name: "Gigamacro",
  16029. height: math.unit(1000, "miles")
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16035. {
  16036. front: {
  16037. height: math.unit(2, "meters"),
  16038. weight: math.unit(500, "kg"),
  16039. name: "Front",
  16040. image: {
  16041. source: "./media/characters/coatl/front.svg",
  16042. extra: 3948 / 3500,
  16043. bottom: 0.082
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Normal",
  16050. height: math.unit(4, "meters")
  16051. },
  16052. {
  16053. name: "Macro",
  16054. height: math.unit(100, "meters"),
  16055. default: true
  16056. },
  16057. {
  16058. name: "Macro+",
  16059. height: math.unit(300, "meters")
  16060. },
  16061. {
  16062. name: "Megamacro",
  16063. height: math.unit(3, "gigameters")
  16064. },
  16065. {
  16066. name: "Megamacro+",
  16067. height: math.unit(300, "terameters")
  16068. },
  16069. {
  16070. name: "Megamacro++",
  16071. height: math.unit(3, "lightyears")
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16077. {
  16078. front: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(50, "kg"),
  16081. name: "front",
  16082. image: {
  16083. source: "./media/characters/shiroryu/front.svg",
  16084. extra: 1990 / 1935
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Mortal Mingling",
  16091. height: math.unit(3, "meters")
  16092. },
  16093. {
  16094. name: "Kaiju-ish",
  16095. height: math.unit(250, "meters")
  16096. },
  16097. {
  16098. name: "Somewhat Godly",
  16099. height: math.unit(400, "km"),
  16100. default: true
  16101. },
  16102. {
  16103. name: "Planetary",
  16104. height: math.unit(300, "megameters")
  16105. },
  16106. {
  16107. name: "Galaxy-dwarfing",
  16108. height: math.unit(450, "kiloparsecs")
  16109. },
  16110. {
  16111. name: "Universe Eater",
  16112. height: math.unit(150, "gigaparsecs")
  16113. },
  16114. {
  16115. name: "Almost Immeasurable",
  16116. height: math.unit(1.3e266, "yottaparsecs")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(6, "feet"),
  16125. weight: math.unit(150, "lb"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/umeko/front.svg",
  16129. extra: 1,
  16130. bottom: 0.019
  16131. }
  16132. },
  16133. frontArmored: {
  16134. height: math.unit(6, "feet"),
  16135. weight: math.unit(150, "lb"),
  16136. name: "Front (Armored)",
  16137. image: {
  16138. source: "./media/characters/umeko/front-armored.svg",
  16139. extra: 1,
  16140. bottom: 0.021
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Macro",
  16147. height: math.unit(220, "feet"),
  16148. default: true
  16149. },
  16150. {
  16151. name: "Guardian Dragon",
  16152. height: math.unit(50, "miles")
  16153. },
  16154. {
  16155. name: "Cosmic",
  16156. height: math.unit(800000, "miles")
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(6, "feet"),
  16165. weight: math.unit(150, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/cassidy/front.svg",
  16169. extra: 810/808,
  16170. bottom: 41/851
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Canon Height",
  16177. height: math.unit(120, "feet"),
  16178. default: true
  16179. },
  16180. {
  16181. name: "Macro+",
  16182. height: math.unit(400, "feet")
  16183. },
  16184. {
  16185. name: "Macro++",
  16186. height: math.unit(4000, "feet")
  16187. },
  16188. {
  16189. name: "Megamacro",
  16190. height: math.unit(3, "miles")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(150, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/isaac/front.svg",
  16203. extra: 896 / 815,
  16204. bottom: 0.11
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Human Size",
  16211. height: math.unit(8, "feet"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Macro",
  16216. height: math.unit(400, "feet")
  16217. },
  16218. {
  16219. name: "Megamacro",
  16220. height: math.unit(50, "miles")
  16221. },
  16222. {
  16223. name: "Canon Height",
  16224. height: math.unit(200, "AU")
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(6, "feet"),
  16233. weight: math.unit(72, "kg"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/sleekit/front.svg",
  16237. extra: 4693 / 4487,
  16238. bottom: 0.012
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Minimum Height",
  16245. height: math.unit(10, "meters")
  16246. },
  16247. {
  16248. name: "Smaller",
  16249. height: math.unit(25, "meters")
  16250. },
  16251. {
  16252. name: "Larger",
  16253. height: math.unit(38, "meters"),
  16254. default: true
  16255. },
  16256. {
  16257. name: "Maximum height",
  16258. height: math.unit(100, "meters")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(150, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/nillia/front.svg",
  16271. extra: 719/665,
  16272. bottom: 6/725
  16273. }
  16274. },
  16275. back: {
  16276. height: math.unit(6, "feet"),
  16277. weight: math.unit(150, "lb"),
  16278. name: "Back",
  16279. image: {
  16280. source: "./media/characters/nillia/back.svg",
  16281. extra: 705/651,
  16282. bottom: 5/710
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Canon Height",
  16289. height: math.unit(489, "feet"),
  16290. default: true
  16291. }
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(150, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/mesmyriza/front.svg",
  16303. extra: 1541/1291,
  16304. bottom: 87/1628
  16305. }
  16306. },
  16307. foot: {
  16308. height: math.unit(6 / (250 / 35), "feet"),
  16309. name: "Foot",
  16310. image: {
  16311. source: "./media/characters/mesmyriza/foot.svg"
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "Macro",
  16318. height: math.unit(457, "meters"),
  16319. default: true
  16320. },
  16321. {
  16322. name: "Megamacro",
  16323. height: math.unit(8, "megameters")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16329. {
  16330. front: {
  16331. height: math.unit(6, "feet"),
  16332. weight: math.unit(250, "lb"),
  16333. name: "Front",
  16334. image: {
  16335. source: "./media/characters/saudade/front.svg",
  16336. extra: 1172 / 1139,
  16337. bottom: 0.035
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Micro",
  16344. height: math.unit(3, "inches")
  16345. },
  16346. {
  16347. name: "Normal",
  16348. height: math.unit(6, "feet"),
  16349. default: true
  16350. },
  16351. {
  16352. name: "Macro",
  16353. height: math.unit(50, "feet")
  16354. },
  16355. {
  16356. name: "Megamacro",
  16357. height: math.unit(2800, "feet")
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16363. {
  16364. front: {
  16365. height: math.unit(5 + 4 / 12, "feet"),
  16366. weight: math.unit(100, "lb"),
  16367. name: "Front",
  16368. image: {
  16369. source: "./media/characters/keireer/front.svg",
  16370. extra: 716 / 666,
  16371. bottom: 0.05
  16372. }
  16373. },
  16374. },
  16375. [
  16376. {
  16377. name: "Normal",
  16378. height: math.unit(5 + 4 / 12, "feet"),
  16379. default: true
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16385. {
  16386. front: {
  16387. height: math.unit(5.5, "feet"),
  16388. weight: math.unit(90, "kg"),
  16389. name: "Front",
  16390. image: {
  16391. source: "./media/characters/mirja/front.svg",
  16392. extra: 1452/1262,
  16393. bottom: 67/1519
  16394. }
  16395. },
  16396. frontDressed: {
  16397. height: math.unit(5.5, "feet"),
  16398. weight: math.unit(90, "lb"),
  16399. name: "Front (Dressed)",
  16400. image: {
  16401. source: "./media/characters/mirja/dressed.svg",
  16402. extra: 1452/1262,
  16403. bottom: 67/1519
  16404. }
  16405. },
  16406. back: {
  16407. height: math.unit(6, "feet"),
  16408. weight: math.unit(90, "lb"),
  16409. name: "Back",
  16410. image: {
  16411. source: "./media/characters/mirja/back.svg",
  16412. extra: 1892/1795,
  16413. bottom: 48/1940
  16414. }
  16415. },
  16416. maw: {
  16417. height: math.unit(1.312, "feet"),
  16418. name: "Maw",
  16419. image: {
  16420. source: "./media/characters/mirja/maw.svg"
  16421. }
  16422. },
  16423. paw: {
  16424. height: math.unit(1.15, "feet"),
  16425. name: "Paw",
  16426. image: {
  16427. source: "./media/characters/mirja/paw.svg"
  16428. }
  16429. },
  16430. },
  16431. [
  16432. {
  16433. name: "\"Incognito\"",
  16434. height: math.unit(3, "meters")
  16435. },
  16436. {
  16437. name: "Strolling Size",
  16438. height: math.unit(15, "km")
  16439. },
  16440. {
  16441. name: "Larger Strolling Size",
  16442. height: math.unit(400, "km")
  16443. },
  16444. {
  16445. name: "Preferred Size",
  16446. height: math.unit(5000, "km"),
  16447. default: true
  16448. },
  16449. {
  16450. name: "True Size",
  16451. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16457. {
  16458. front: {
  16459. height: math.unit(15, "feet"),
  16460. weight: math.unit(880, "kg"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/nightraver/front.svg",
  16464. extra: 2444 / 2160,
  16465. bottom: 0.027
  16466. }
  16467. },
  16468. back: {
  16469. height: math.unit(15, "feet"),
  16470. weight: math.unit(880, "kg"),
  16471. name: "Back",
  16472. image: {
  16473. source: "./media/characters/nightraver/back.svg",
  16474. extra: 2309 / 2180,
  16475. bottom: 0.005
  16476. }
  16477. },
  16478. sole: {
  16479. height: math.unit(2.878, "feet"),
  16480. name: "Sole",
  16481. image: {
  16482. source: "./media/characters/nightraver/sole.svg"
  16483. }
  16484. },
  16485. foot: {
  16486. height: math.unit(2.285, "feet"),
  16487. name: "Foot",
  16488. image: {
  16489. source: "./media/characters/nightraver/foot.svg"
  16490. }
  16491. },
  16492. maw: {
  16493. height: math.unit(2.67, "feet"),
  16494. name: "Maw",
  16495. image: {
  16496. source: "./media/characters/nightraver/maw.svg"
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Micro",
  16503. height: math.unit(1, "cm")
  16504. },
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(15, "feet"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Macro",
  16512. height: math.unit(300, "feet")
  16513. },
  16514. {
  16515. name: "Megamacro",
  16516. height: math.unit(300, "miles")
  16517. },
  16518. {
  16519. name: "Gigamacro",
  16520. height: math.unit(10000, "miles")
  16521. },
  16522. ]
  16523. ))
  16524. characterMakers.push(() => makeCharacter(
  16525. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16526. {
  16527. side: {
  16528. height: math.unit(2, "inches"),
  16529. weight: math.unit(5, "grams"),
  16530. name: "Side",
  16531. image: {
  16532. source: "./media/characters/arc/side.svg"
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Micro",
  16539. height: math.unit(2, "inches"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(1.1938, "meters"),
  16549. weight: math.unit(54, "kg"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/nebula-shahar/front.svg",
  16553. extra: 1642 / 1436,
  16554. bottom: 0.06
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Megamicro",
  16561. height: math.unit(0.3, "mm")
  16562. },
  16563. {
  16564. name: "Micro",
  16565. height: math.unit(3, "cm")
  16566. },
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(138, "cm"),
  16570. default: true
  16571. },
  16572. {
  16573. name: "Macro",
  16574. height: math.unit(30, "m")
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16580. {
  16581. front: {
  16582. height: math.unit(5.24, "feet"),
  16583. weight: math.unit(150, "lb"),
  16584. name: "Front",
  16585. image: {
  16586. source: "./media/characters/shayla/front.svg",
  16587. extra: 1512 / 1414,
  16588. bottom: 0.01
  16589. }
  16590. },
  16591. back: {
  16592. height: math.unit(5.24, "feet"),
  16593. weight: math.unit(150, "lb"),
  16594. name: "Back",
  16595. image: {
  16596. source: "./media/characters/shayla/back.svg",
  16597. extra: 1512 / 1414
  16598. }
  16599. },
  16600. hand: {
  16601. height: math.unit(0.7781496062992126, "feet"),
  16602. name: "Hand",
  16603. image: {
  16604. source: "./media/characters/shayla/hand.svg"
  16605. }
  16606. },
  16607. foot: {
  16608. height: math.unit(1.4206036745406823, "feet"),
  16609. name: "Foot",
  16610. image: {
  16611. source: "./media/characters/shayla/foot.svg"
  16612. }
  16613. },
  16614. },
  16615. [
  16616. {
  16617. name: "Micro",
  16618. height: math.unit(0.32, "feet")
  16619. },
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(5.24, "feet"),
  16623. default: true
  16624. },
  16625. {
  16626. name: "Macro",
  16627. height: math.unit(492.12, "feet")
  16628. },
  16629. {
  16630. name: "Megamacro",
  16631. height: math.unit(186.41, "miles")
  16632. },
  16633. ]
  16634. ))
  16635. characterMakers.push(() => makeCharacter(
  16636. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16637. {
  16638. front: {
  16639. height: math.unit(2.2, "m"),
  16640. weight: math.unit(120, "kg"),
  16641. name: "Front",
  16642. image: {
  16643. source: "./media/characters/pia-jr/front.svg",
  16644. extra: 1000 / 970,
  16645. bottom: 0.035
  16646. }
  16647. },
  16648. hand: {
  16649. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16650. name: "Hand",
  16651. image: {
  16652. source: "./media/characters/pia-jr/hand.svg"
  16653. }
  16654. },
  16655. paw: {
  16656. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16657. name: "Paw",
  16658. image: {
  16659. source: "./media/characters/pia-jr/paw.svg"
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Micro",
  16666. height: math.unit(1.2, "cm")
  16667. },
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(2.2, "m"),
  16671. default: true
  16672. },
  16673. {
  16674. name: "Macro",
  16675. height: math.unit(180, "m")
  16676. },
  16677. {
  16678. name: "Megamacro",
  16679. height: math.unit(420, "km")
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16685. {
  16686. front: {
  16687. height: math.unit(2, "m"),
  16688. weight: math.unit(115, "kg"),
  16689. name: "Front",
  16690. image: {
  16691. source: "./media/characters/pia-sr/front.svg",
  16692. extra: 760 / 730,
  16693. bottom: 0.015
  16694. }
  16695. },
  16696. back: {
  16697. height: math.unit(2, "m"),
  16698. weight: math.unit(115, "kg"),
  16699. name: "Back",
  16700. image: {
  16701. source: "./media/characters/pia-sr/back.svg",
  16702. extra: 760 / 730,
  16703. bottom: 0.01
  16704. }
  16705. },
  16706. hand: {
  16707. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16708. name: "Hand",
  16709. image: {
  16710. source: "./media/characters/pia-sr/hand.svg"
  16711. }
  16712. },
  16713. foot: {
  16714. height: math.unit(1.83, "feet"),
  16715. name: "Foot",
  16716. image: {
  16717. source: "./media/characters/pia-sr/foot.svg"
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Micro",
  16724. height: math.unit(88, "mm")
  16725. },
  16726. {
  16727. name: "Normal",
  16728. height: math.unit(2, "m"),
  16729. default: true
  16730. },
  16731. {
  16732. name: "Macro",
  16733. height: math.unit(200, "m")
  16734. },
  16735. {
  16736. name: "Megamacro",
  16737. height: math.unit(420, "km")
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(8 + 2 / 12, "feet"),
  16746. weight: math.unit(300, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/kibibyte/front.svg",
  16750. extra: 2221 / 2098,
  16751. bottom: 0.04
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(8 + 2 / 12, "feet"),
  16759. default: true
  16760. },
  16761. {
  16762. name: "Socialable Macro",
  16763. height: math.unit(50, "feet")
  16764. },
  16765. {
  16766. name: "Macro",
  16767. height: math.unit(300, "feet")
  16768. },
  16769. {
  16770. name: "Megamacro",
  16771. height: math.unit(500, "miles")
  16772. },
  16773. ]
  16774. ))
  16775. characterMakers.push(() => makeCharacter(
  16776. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16777. {
  16778. front: {
  16779. height: math.unit(6, "feet"),
  16780. weight: math.unit(150, "lb"),
  16781. name: "Front",
  16782. image: {
  16783. source: "./media/characters/felix/front.svg",
  16784. extra: 762 / 722,
  16785. bottom: 0.02
  16786. }
  16787. },
  16788. frontClothed: {
  16789. height: math.unit(6, "feet"),
  16790. weight: math.unit(150, "lb"),
  16791. name: "Front (Clothed)",
  16792. image: {
  16793. source: "./media/characters/felix/front-clothed.svg",
  16794. extra: 762 / 722,
  16795. bottom: 0.02
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(6 + 8 / 12, "feet"),
  16803. default: true
  16804. },
  16805. {
  16806. name: "Macro",
  16807. height: math.unit(2600, "feet")
  16808. },
  16809. {
  16810. name: "Megamacro",
  16811. height: math.unit(450, "miles")
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(6 + 1 / 12, "feet"),
  16820. weight: math.unit(250, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/tobo/front.svg",
  16824. extra: 608 / 586,
  16825. bottom: 0.023
  16826. }
  16827. },
  16828. back: {
  16829. height: math.unit(6 + 1 / 12, "feet"),
  16830. weight: math.unit(250, "lb"),
  16831. name: "Back",
  16832. image: {
  16833. source: "./media/characters/tobo/back.svg",
  16834. extra: 608 / 586
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Nano",
  16841. height: math.unit(2, "nm")
  16842. },
  16843. {
  16844. name: "Megamicro",
  16845. height: math.unit(0.1, "mm")
  16846. },
  16847. {
  16848. name: "Micro",
  16849. height: math.unit(1, "inch"),
  16850. default: true
  16851. },
  16852. {
  16853. name: "Human-sized",
  16854. height: math.unit(6 + 1 / 12, "feet")
  16855. },
  16856. {
  16857. name: "Macro",
  16858. height: math.unit(250, "feet")
  16859. },
  16860. {
  16861. name: "Megamacro",
  16862. height: math.unit(75, "miles")
  16863. },
  16864. {
  16865. name: "Texas-sized",
  16866. height: math.unit(750, "miles")
  16867. },
  16868. {
  16869. name: "Teramacro",
  16870. height: math.unit(50000, "miles")
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16876. {
  16877. front: {
  16878. height: math.unit(6, "feet"),
  16879. weight: math.unit(269, "lb"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/danny-kapowsky/front.svg",
  16883. extra: 766 / 736,
  16884. bottom: 0.044
  16885. }
  16886. },
  16887. back: {
  16888. height: math.unit(6, "feet"),
  16889. weight: math.unit(269, "lb"),
  16890. name: "Back",
  16891. image: {
  16892. source: "./media/characters/danny-kapowsky/back.svg",
  16893. extra: 797 / 760,
  16894. bottom: 0.025
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Macro",
  16901. height: math.unit(150, "feet"),
  16902. default: true
  16903. },
  16904. {
  16905. name: "Macro+",
  16906. height: math.unit(200, "feet")
  16907. },
  16908. {
  16909. name: "Macro++",
  16910. height: math.unit(300, "feet")
  16911. },
  16912. {
  16913. name: "Macro+++",
  16914. height: math.unit(400, "feet")
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16920. {
  16921. side: {
  16922. height: math.unit(6, "feet"),
  16923. weight: math.unit(170, "lb"),
  16924. name: "Side",
  16925. image: {
  16926. source: "./media/characters/finn/side.svg",
  16927. extra: 1953 / 1807,
  16928. bottom: 0.057
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Megamacro",
  16935. height: math.unit(14445, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16942. {
  16943. front: {
  16944. height: math.unit(5 + 6 / 12, "feet"),
  16945. weight: math.unit(125, "lb"),
  16946. name: "Front",
  16947. image: {
  16948. source: "./media/characters/roy/front.svg",
  16949. extra: 1,
  16950. bottom: 0.11
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Micro",
  16957. height: math.unit(3, "inches"),
  16958. default: true
  16959. },
  16960. {
  16961. name: "Normal",
  16962. height: math.unit(5 + 6 / 12, "feet")
  16963. },
  16964. {
  16965. name: "Lesser Macro",
  16966. height: math.unit(60, "feet")
  16967. },
  16968. {
  16969. name: "Greater Macro",
  16970. height: math.unit(120, "feet")
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(6, "feet"),
  16979. weight: math.unit(100, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/aevsivs/front.svg",
  16983. extra: 1,
  16984. bottom: 0.03
  16985. }
  16986. },
  16987. back: {
  16988. height: math.unit(6, "feet"),
  16989. weight: math.unit(100, "lb"),
  16990. name: "Back",
  16991. image: {
  16992. source: "./media/characters/aevsivs/back.svg"
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Micro",
  16999. height: math.unit(2, "inches"),
  17000. default: true
  17001. },
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(5, "feet")
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(5 + 7 / 12, "feet"),
  17013. weight: math.unit(159, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/hildegard/front.svg",
  17017. extra: 289 / 269,
  17018. bottom: 7.63 / 297.8
  17019. }
  17020. },
  17021. back: {
  17022. height: math.unit(5 + 7 / 12, "feet"),
  17023. weight: math.unit(159, "lb"),
  17024. name: "Back",
  17025. image: {
  17026. source: "./media/characters/hildegard/back.svg",
  17027. extra: 280 / 260,
  17028. bottom: 2.3 / 282
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(5 + 7 / 12, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17042. {
  17043. bernard: {
  17044. height: math.unit(2 + 7 / 12, "feet"),
  17045. weight: math.unit(66, "lb"),
  17046. name: "Bernard",
  17047. rename: true,
  17048. image: {
  17049. source: "./media/characters/bernard-wilder/bernard.svg",
  17050. extra: 192 / 128,
  17051. bottom: 0.05
  17052. }
  17053. },
  17054. wilder: {
  17055. height: math.unit(5 + 8 / 12, "feet"),
  17056. weight: math.unit(143, "lb"),
  17057. name: "Wilder",
  17058. rename: true,
  17059. image: {
  17060. source: "./media/characters/bernard-wilder/wilder.svg",
  17061. extra: 361 / 312,
  17062. bottom: 0.02
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(2 + 7 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17076. {
  17077. anthro: {
  17078. height: math.unit(6 + 1 / 12, "feet"),
  17079. weight: math.unit(155, "lb"),
  17080. name: "Anthro",
  17081. image: {
  17082. source: "./media/characters/hearth/anthro.svg",
  17083. extra: 1178/1136,
  17084. bottom: 28/1206
  17085. }
  17086. },
  17087. feral: {
  17088. height: math.unit(3.78, "feet"),
  17089. weight: math.unit(35, "kg"),
  17090. name: "Feral",
  17091. image: {
  17092. source: "./media/characters/hearth/feral.svg",
  17093. extra: 153 / 135,
  17094. bottom: 0.03
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Normal",
  17101. height: math.unit(6 + 1 / 12, "feet"),
  17102. default: true
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(6, "feet"),
  17111. weight: math.unit(182, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/ingrid/front.svg",
  17115. extra: 294 / 268,
  17116. bottom: 0.027
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Normal",
  17123. height: math.unit(6, "feet"),
  17124. default: true
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17130. {
  17131. eevee: {
  17132. height: math.unit(2 + 10 / 12, "feet"),
  17133. weight: math.unit(86, "lb"),
  17134. name: "Malgam",
  17135. image: {
  17136. source: "./media/characters/malgam/eevee.svg",
  17137. extra: 952/784,
  17138. bottom: 38/990
  17139. }
  17140. },
  17141. sylveon: {
  17142. height: math.unit(4, "feet"),
  17143. weight: math.unit(101, "lb"),
  17144. name: "Future Malgam",
  17145. rename: true,
  17146. image: {
  17147. source: "./media/characters/malgam/sylveon.svg",
  17148. extra: 371 / 325,
  17149. bottom: 0.015
  17150. }
  17151. },
  17152. gigantamax: {
  17153. height: math.unit(50, "feet"),
  17154. name: "Gigantamax Malgam",
  17155. rename: true,
  17156. image: {
  17157. source: "./media/characters/malgam/gigantamax.svg"
  17158. }
  17159. },
  17160. },
  17161. [
  17162. {
  17163. name: "Normal",
  17164. height: math.unit(2 + 10 / 12, "feet"),
  17165. default: true
  17166. },
  17167. ]
  17168. ))
  17169. characterMakers.push(() => makeCharacter(
  17170. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17171. {
  17172. front: {
  17173. height: math.unit(5 + 11 / 12, "feet"),
  17174. weight: math.unit(188, "lb"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/fleur/front.svg",
  17178. extra: 309 / 283,
  17179. bottom: 0.007
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(5 + 11 / 12, "feet"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17193. {
  17194. front: {
  17195. height: math.unit(5 + 4 / 12, "feet"),
  17196. weight: math.unit(122, "lb"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/jude/front.svg",
  17200. extra: 288 / 273,
  17201. bottom: 0.03
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(5 + 4 / 12, "feet"),
  17209. default: true
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(5 + 11 / 12, "feet"),
  17218. weight: math.unit(190, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/seara/front.svg",
  17222. extra: 1,
  17223. bottom: 0.05
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Normal",
  17230. height: math.unit(5 + 11 / 12, "feet"),
  17231. default: true
  17232. },
  17233. ]
  17234. ))
  17235. characterMakers.push(() => makeCharacter(
  17236. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17237. {
  17238. front: {
  17239. height: math.unit(16 + 5 / 12, "feet"),
  17240. weight: math.unit(524, "lb"),
  17241. name: "Front",
  17242. image: {
  17243. source: "./media/characters/caspian-lugia/front.svg",
  17244. extra: 1,
  17245. bottom: 0.04
  17246. }
  17247. },
  17248. },
  17249. [
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(16 + 5 / 12, "feet"),
  17253. default: true
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(5 + 7 / 12, "feet"),
  17262. weight: math.unit(170, "lb"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/mika/front.svg",
  17266. extra: 1,
  17267. bottom: 0.016
  17268. }
  17269. },
  17270. },
  17271. [
  17272. {
  17273. name: "Normal",
  17274. height: math.unit(5 + 7 / 12, "feet"),
  17275. default: true
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(6 + 2 / 12, "feet"),
  17284. weight: math.unit(268, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/sol/front.svg",
  17288. extra: 247 / 231,
  17289. bottom: 0.05
  17290. }
  17291. },
  17292. },
  17293. [
  17294. {
  17295. name: "Normal",
  17296. height: math.unit(6 + 2 / 12, "feet"),
  17297. default: true
  17298. },
  17299. ]
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17303. {
  17304. buizel: {
  17305. height: math.unit(2 + 5 / 12, "feet"),
  17306. weight: math.unit(87, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/umiko/buizel.svg",
  17310. extra: 172 / 157,
  17311. bottom: 0.01
  17312. },
  17313. form: "buizel",
  17314. default: true
  17315. },
  17316. floatzel: {
  17317. height: math.unit(5 + 9 / 12, "feet"),
  17318. weight: math.unit(250, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/umiko/floatzel.svg",
  17322. extra: 1076/1006,
  17323. bottom: 15/1091
  17324. },
  17325. form: "floatzel",
  17326. default: true
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(2 + 5 / 12, "feet"),
  17333. form: "buizel",
  17334. default: true
  17335. },
  17336. {
  17337. name: "Normal",
  17338. height: math.unit(5 + 9 / 12, "feet"),
  17339. form: "floatzel",
  17340. default: true
  17341. },
  17342. ],
  17343. {
  17344. "buizel": {
  17345. name: "Buizel"
  17346. },
  17347. "floatzel": {
  17348. name: "Floatzel",
  17349. default: true
  17350. }
  17351. }
  17352. ))
  17353. characterMakers.push(() => makeCharacter(
  17354. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17355. {
  17356. front: {
  17357. height: math.unit(6 + 2 / 12, "feet"),
  17358. weight: math.unit(146, "lb"),
  17359. name: "Front",
  17360. image: {
  17361. source: "./media/characters/iliac/front.svg",
  17362. extra: 389 / 365,
  17363. bottom: 0.035
  17364. }
  17365. },
  17366. },
  17367. [
  17368. {
  17369. name: "Normal",
  17370. height: math.unit(6 + 2 / 12, "feet"),
  17371. default: true
  17372. },
  17373. ]
  17374. ))
  17375. characterMakers.push(() => makeCharacter(
  17376. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17377. {
  17378. front: {
  17379. height: math.unit(6, "feet"),
  17380. weight: math.unit(170, "lb"),
  17381. name: "Front",
  17382. image: {
  17383. source: "./media/characters/topaz/front.svg",
  17384. extra: 317 / 303,
  17385. bottom: 0.055
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(6, "feet"),
  17393. default: true
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17399. {
  17400. front: {
  17401. height: math.unit(5 + 11 / 12, "feet"),
  17402. weight: math.unit(144, "lb"),
  17403. name: "Front",
  17404. image: {
  17405. source: "./media/characters/gabriel/front.svg",
  17406. extra: 285 / 262,
  17407. bottom: 0.004
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(5 + 11 / 12, "feet"),
  17415. default: true
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17421. {
  17422. side: {
  17423. height: math.unit(6 + 5 / 12, "feet"),
  17424. weight: math.unit(300, "lb"),
  17425. name: "Side",
  17426. image: {
  17427. source: "./media/characters/tempest-suicune/side.svg",
  17428. extra: 195 / 154,
  17429. bottom: 0.04
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(6 + 5 / 12, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17443. {
  17444. front: {
  17445. height: math.unit(7 + 2 / 12, "feet"),
  17446. weight: math.unit(322, "lb"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/vulcan/front.svg",
  17450. extra: 154 / 147,
  17451. bottom: 0.04
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(7 + 2 / 12, "feet"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17465. {
  17466. front: {
  17467. height: math.unit(5 + 10 / 12, "feet"),
  17468. weight: math.unit(264, "lb"),
  17469. name: "Front",
  17470. image: {
  17471. source: "./media/characters/gault/front.svg",
  17472. extra: 161 / 140,
  17473. bottom: 0.028
  17474. }
  17475. },
  17476. },
  17477. [
  17478. {
  17479. name: "Normal",
  17480. height: math.unit(5 + 10 / 12, "feet"),
  17481. default: true
  17482. },
  17483. ]
  17484. ))
  17485. characterMakers.push(() => makeCharacter(
  17486. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17487. {
  17488. front: {
  17489. height: math.unit(6, "feet"),
  17490. weight: math.unit(150, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/shard/front.svg",
  17494. extra: 273 / 238,
  17495. bottom: 0.02
  17496. }
  17497. },
  17498. },
  17499. [
  17500. {
  17501. name: "Normal",
  17502. height: math.unit(3 + 6 / 12, "feet"),
  17503. default: true
  17504. },
  17505. ]
  17506. ))
  17507. characterMakers.push(() => makeCharacter(
  17508. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17509. {
  17510. front: {
  17511. height: math.unit(5 + 11 / 12, "feet"),
  17512. weight: math.unit(146, "lb"),
  17513. name: "Front",
  17514. image: {
  17515. source: "./media/characters/ashe/front.svg",
  17516. extra: 400 / 373,
  17517. bottom: 0.01
  17518. }
  17519. },
  17520. },
  17521. [
  17522. {
  17523. name: "Normal",
  17524. height: math.unit(5 + 11 / 12, "feet"),
  17525. default: true
  17526. },
  17527. ]
  17528. ))
  17529. characterMakers.push(() => makeCharacter(
  17530. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17531. {
  17532. front: {
  17533. height: math.unit(5 + 5 / 12, "feet"),
  17534. weight: math.unit(135, "lb"),
  17535. name: "Front",
  17536. image: {
  17537. source: "./media/characters/beatrix/front.svg",
  17538. extra: 392 / 379,
  17539. bottom: 0.01
  17540. }
  17541. },
  17542. },
  17543. [
  17544. {
  17545. name: "Normal",
  17546. height: math.unit(6, "feet"),
  17547. default: true
  17548. },
  17549. ]
  17550. ))
  17551. characterMakers.push(() => makeCharacter(
  17552. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17553. {
  17554. front: {
  17555. height: math.unit(6 + 2/12, "feet"),
  17556. weight: math.unit(135, "lb"),
  17557. name: "Front",
  17558. image: {
  17559. source: "./media/characters/ignatius/front.svg",
  17560. extra: 1380/1259,
  17561. bottom: 27/1407
  17562. }
  17563. },
  17564. },
  17565. [
  17566. {
  17567. name: "Normal",
  17568. height: math.unit(6 + 2/12, "feet"),
  17569. default: true
  17570. },
  17571. ]
  17572. ))
  17573. characterMakers.push(() => makeCharacter(
  17574. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17575. {
  17576. front: {
  17577. height: math.unit(6 + 2 / 12, "feet"),
  17578. weight: math.unit(138, "lb"),
  17579. name: "Front",
  17580. image: {
  17581. source: "./media/characters/mei-li/front.svg",
  17582. extra: 237 / 229,
  17583. bottom: 0.03
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(6 + 2 / 12, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(2 + 4 / 12, "feet"),
  17600. weight: math.unit(62, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/puru/front.svg",
  17604. extra: 206 / 149,
  17605. bottom: 0.06
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(2 + 4 / 12, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17619. {
  17620. anthro: {
  17621. height: math.unit(5 + 8/12, "feet"),
  17622. weight: math.unit(200, "lb"),
  17623. energyNeed: math.unit(2000, "kcal"),
  17624. name: "Anthro",
  17625. image: {
  17626. source: "./media/characters/kee/anthro.svg",
  17627. extra: 3251/3184,
  17628. bottom: 250/3501
  17629. }
  17630. },
  17631. taur: {
  17632. height: math.unit(11, "feet"),
  17633. weight: math.unit(500, "lb"),
  17634. energyNeed: math.unit(5000, "kcal"),
  17635. name: "Taur",
  17636. image: {
  17637. source: "./media/characters/kee/taur.svg",
  17638. extra: 1362/1320,
  17639. bottom: 83/1445
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(5 + 8/12, "feet"),
  17647. default: true
  17648. },
  17649. {
  17650. name: "Macro",
  17651. height: math.unit(35, "feet")
  17652. },
  17653. ]
  17654. ))
  17655. characterMakers.push(() => makeCharacter(
  17656. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17657. {
  17658. anthro: {
  17659. height: math.unit(7, "feet"),
  17660. weight: math.unit(190, "lb"),
  17661. name: "Anthro",
  17662. image: {
  17663. source: "./media/characters/cobalt-dracha/anthro.svg",
  17664. extra: 231 / 225,
  17665. bottom: 0.04
  17666. }
  17667. },
  17668. feral: {
  17669. height: math.unit(9 + 7 / 12, "feet"),
  17670. weight: math.unit(294, "lb"),
  17671. name: "Feral",
  17672. image: {
  17673. source: "./media/characters/cobalt-dracha/feral.svg",
  17674. extra: 692 / 633,
  17675. bottom: 0.05
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(7, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17689. {
  17690. fallen: {
  17691. height: math.unit(11 + 8 / 12, "feet"),
  17692. weight: math.unit(485, "lb"),
  17693. name: "Java (Fallen)",
  17694. rename: true,
  17695. image: {
  17696. source: "./media/characters/java/fallen.svg",
  17697. extra: 226 / 208,
  17698. bottom: 0.005
  17699. }
  17700. },
  17701. godkin: {
  17702. height: math.unit(10 + 6 / 12, "feet"),
  17703. weight: math.unit(328, "lb"),
  17704. name: "Java (Godkin)",
  17705. rename: true,
  17706. image: {
  17707. source: "./media/characters/java/godkin.svg",
  17708. extra: 1104/1068,
  17709. bottom: 36/1140
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(11 + 8 / 12, "feet"),
  17717. default: true
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17723. {
  17724. front: {
  17725. height: math.unit(5 + 9 / 12, "feet"),
  17726. weight: math.unit(170, "lb"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/purna/front.svg",
  17730. extra: 239 / 229,
  17731. bottom: 0.01
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(5 + 9 / 12, "feet"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(5 + 9 / 12, "feet"),
  17748. weight: math.unit(142, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/kuva/front.svg",
  17752. extra: 281 / 271,
  17753. bottom: 0.006
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(5 + 9 / 12, "feet"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17767. {
  17768. anthro: {
  17769. height: math.unit(9 + 2 / 12, "feet"),
  17770. weight: math.unit(270, "lb"),
  17771. name: "Anthro",
  17772. image: {
  17773. source: "./media/characters/embra/anthro.svg",
  17774. extra: 200 / 187,
  17775. bottom: 0.02
  17776. }
  17777. },
  17778. feral: {
  17779. height: math.unit(18 + 8 / 12, "feet"),
  17780. weight: math.unit(576, "lb"),
  17781. name: "Feral",
  17782. image: {
  17783. source: "./media/characters/embra/feral.svg",
  17784. extra: 152 / 137,
  17785. bottom: 0.037
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(9 + 2 / 12, "feet"),
  17793. default: true
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17799. {
  17800. anthro: {
  17801. height: math.unit(10 + 9 / 12, "feet"),
  17802. weight: math.unit(224, "lb"),
  17803. name: "Anthro",
  17804. image: {
  17805. source: "./media/characters/grottos/anthro.svg",
  17806. extra: 350 / 332,
  17807. bottom: 0.045
  17808. }
  17809. },
  17810. feral: {
  17811. height: math.unit(20 + 7 / 12, "feet"),
  17812. weight: math.unit(629, "lb"),
  17813. name: "Feral",
  17814. image: {
  17815. source: "./media/characters/grottos/feral.svg",
  17816. extra: 207 / 190,
  17817. bottom: 0.05
  17818. }
  17819. },
  17820. },
  17821. [
  17822. {
  17823. name: "Normal",
  17824. height: math.unit(10 + 9 / 12, "feet"),
  17825. default: true
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17831. {
  17832. anthro: {
  17833. height: math.unit(9 + 6 / 12, "feet"),
  17834. weight: math.unit(298, "lb"),
  17835. name: "Anthro",
  17836. image: {
  17837. source: "./media/characters/frifna/anthro.svg",
  17838. extra: 282 / 269,
  17839. bottom: 0.015
  17840. }
  17841. },
  17842. feral: {
  17843. height: math.unit(16 + 2 / 12, "feet"),
  17844. weight: math.unit(624, "lb"),
  17845. name: "Feral",
  17846. image: {
  17847. source: "./media/characters/frifna/feral.svg"
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(9 + 6 / 12, "feet"),
  17855. default: true
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17861. {
  17862. front: {
  17863. height: math.unit(6 + 2 / 12, "feet"),
  17864. weight: math.unit(168, "lb"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/elise/front.svg",
  17868. extra: 276 / 271
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(6 + 2 / 12, "feet"),
  17876. default: true
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(5 + 10 / 12, "feet"),
  17885. weight: math.unit(210, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/glade/front.svg",
  17889. extra: 258 / 247,
  17890. bottom: 0.008
  17891. }
  17892. },
  17893. },
  17894. [
  17895. {
  17896. name: "Normal",
  17897. height: math.unit(5 + 10 / 12, "feet"),
  17898. default: true
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(5 + 10 / 12, "feet"),
  17907. weight: math.unit(129, "lb"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/rina/front.svg",
  17911. extra: 266 / 255,
  17912. bottom: 0.005
  17913. }
  17914. },
  17915. },
  17916. [
  17917. {
  17918. name: "Normal",
  17919. height: math.unit(5 + 10 / 12, "feet"),
  17920. default: true
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(6 + 1 / 12, "feet"),
  17929. weight: math.unit(192, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/veronica/front.svg",
  17933. extra: 319 / 309,
  17934. bottom: 0.005
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(6 + 1 / 12, "feet"),
  17942. default: true
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17948. {
  17949. front: {
  17950. height: math.unit(9 + 3 / 12, "feet"),
  17951. weight: math.unit(1100, "lb"),
  17952. name: "Front",
  17953. image: {
  17954. source: "./media/characters/braxton/front.svg",
  17955. extra: 1057 / 984,
  17956. bottom: 0.05
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(9 + 3 / 12, "feet")
  17964. },
  17965. {
  17966. name: "Giant",
  17967. height: math.unit(300, "feet"),
  17968. default: true
  17969. },
  17970. {
  17971. name: "Macro",
  17972. height: math.unit(700, "feet")
  17973. },
  17974. {
  17975. name: "Megamacro",
  17976. height: math.unit(6000, "feet")
  17977. },
  17978. ]
  17979. ))
  17980. characterMakers.push(() => makeCharacter(
  17981. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17982. {
  17983. front: {
  17984. height: math.unit(6 + 7 / 12, "feet"),
  17985. weight: math.unit(150, "lb"),
  17986. name: "Front",
  17987. image: {
  17988. source: "./media/characters/blue-feyonics/front.svg",
  17989. extra: 1403 / 1306,
  17990. bottom: 0.047
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(6 + 7 / 12, "feet"),
  17998. default: true
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18004. {
  18005. front: {
  18006. height: math.unit(1.8, "meters"),
  18007. weight: math.unit(60, "kg"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/maxwell/front.svg",
  18011. extra: 2060 / 1873
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Micro",
  18018. height: math.unit(1, "mm")
  18019. },
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(1.8, "meter"),
  18023. default: true
  18024. },
  18025. {
  18026. name: "Macro",
  18027. height: math.unit(30, "meters")
  18028. },
  18029. {
  18030. name: "Megamacro",
  18031. height: math.unit(10, "km")
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18037. {
  18038. front: {
  18039. height: math.unit(6, "feet"),
  18040. weight: math.unit(150, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/jack/front.svg",
  18044. extra: 1754 / 1640,
  18045. bottom: 0.01
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(80000, "feet"),
  18053. default: true
  18054. },
  18055. {
  18056. name: "Max size",
  18057. height: math.unit(10, "lightyears")
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18063. {
  18064. urban: {
  18065. height: math.unit(5, "feet"),
  18066. weight: math.unit(240, "lb"),
  18067. name: "Urban",
  18068. image: {
  18069. source: "./media/characters/cafat/urban.svg",
  18070. extra: 1223/1126,
  18071. bottom: 205/1428
  18072. }
  18073. },
  18074. summer: {
  18075. height: math.unit(5, "feet"),
  18076. weight: math.unit(240, "lb"),
  18077. name: "Summer",
  18078. image: {
  18079. source: "./media/characters/cafat/summer.svg",
  18080. extra: 1223/1126,
  18081. bottom: 205/1428
  18082. }
  18083. },
  18084. winter: {
  18085. height: math.unit(5, "feet"),
  18086. weight: math.unit(240, "lb"),
  18087. name: "Winter",
  18088. image: {
  18089. source: "./media/characters/cafat/winter.svg",
  18090. extra: 1223/1126,
  18091. bottom: 205/1428
  18092. }
  18093. },
  18094. lingerie: {
  18095. height: math.unit(5, "feet"),
  18096. weight: math.unit(240, "lb"),
  18097. name: "Lingerie",
  18098. image: {
  18099. source: "./media/characters/cafat/lingerie.svg",
  18100. extra: 1223/1126,
  18101. bottom: 205/1428
  18102. }
  18103. },
  18104. upright: {
  18105. height: math.unit(6.3, "feet"),
  18106. weight: math.unit(240, "lb"),
  18107. name: "Upright",
  18108. image: {
  18109. source: "./media/characters/cafat/upright.svg",
  18110. bottom: 0.01
  18111. }
  18112. },
  18113. uprightFull: {
  18114. height: math.unit(6.3, "feet"),
  18115. weight: math.unit(240, "lb"),
  18116. name: "Upright (Full)",
  18117. image: {
  18118. source: "./media/characters/cafat/upright-full.svg",
  18119. bottom: 0.01
  18120. }
  18121. },
  18122. },
  18123. [
  18124. {
  18125. name: "Small",
  18126. height: math.unit(5, "feet"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Large",
  18131. height: math.unit(13, "feet")
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(6, "feet"),
  18140. weight: math.unit(150, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/verin-raharra/front.svg",
  18144. extra: 5019 / 4835,
  18145. bottom: 0.023
  18146. }
  18147. },
  18148. },
  18149. [
  18150. {
  18151. name: "Normal",
  18152. height: math.unit(7 + 5 / 12, "feet"),
  18153. default: true
  18154. },
  18155. {
  18156. name: "Upsized",
  18157. height: math.unit(20, "feet")
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18163. {
  18164. front: {
  18165. height: math.unit(7, "feet"),
  18166. weight: math.unit(230, "lb"),
  18167. name: "Front",
  18168. image: {
  18169. source: "./media/characters/nakata/front.svg",
  18170. extra: 1.005,
  18171. bottom: 0.01
  18172. }
  18173. },
  18174. },
  18175. [
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(7, "feet"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Big",
  18183. height: math.unit(14, "feet")
  18184. },
  18185. {
  18186. name: "Macro",
  18187. height: math.unit(400, "feet")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(4.91, "feet"),
  18196. weight: math.unit(100, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/lily/front.svg",
  18200. extra: 1585 / 1415,
  18201. bottom: 0.02
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(4.91, "feet"),
  18209. default: true
  18210. },
  18211. ]
  18212. ))
  18213. characterMakers.push(() => makeCharacter(
  18214. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18215. {
  18216. laying: {
  18217. height: math.unit(4 + 4 / 12, "feet"),
  18218. weight: math.unit(600, "lb"),
  18219. name: "Laying",
  18220. image: {
  18221. source: "./media/characters/sheila/laying.svg",
  18222. extra: 1333 / 1265,
  18223. bottom: 0.16
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Normal",
  18230. height: math.unit(4 + 4 / 12, "feet"),
  18231. default: true
  18232. },
  18233. ]
  18234. ))
  18235. characterMakers.push(() => makeCharacter(
  18236. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18237. {
  18238. front: {
  18239. height: math.unit(6, "feet"),
  18240. weight: math.unit(190, "lb"),
  18241. name: "Front",
  18242. image: {
  18243. source: "./media/characters/sax/front.svg",
  18244. extra: 1187 / 973,
  18245. bottom: 0.042
  18246. }
  18247. },
  18248. },
  18249. [
  18250. {
  18251. name: "Micro",
  18252. height: math.unit(4, "inches"),
  18253. default: true
  18254. },
  18255. ]
  18256. ))
  18257. characterMakers.push(() => makeCharacter(
  18258. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18259. {
  18260. front: {
  18261. height: math.unit(6, "feet"),
  18262. weight: math.unit(150, "lb"),
  18263. name: "Front",
  18264. image: {
  18265. source: "./media/characters/pandora/front.svg",
  18266. extra: 2720 / 2556,
  18267. bottom: 0.015
  18268. }
  18269. },
  18270. back: {
  18271. height: math.unit(6, "feet"),
  18272. weight: math.unit(150, "lb"),
  18273. name: "Back",
  18274. image: {
  18275. source: "./media/characters/pandora/back.svg",
  18276. extra: 2720 / 2556,
  18277. bottom: 0.01
  18278. }
  18279. },
  18280. beans: {
  18281. height: math.unit(6 / 8, "feet"),
  18282. name: "Beans",
  18283. image: {
  18284. source: "./media/characters/pandora/beans.svg"
  18285. }
  18286. },
  18287. collar: {
  18288. height: math.unit(0.31, "feet"),
  18289. name: "Collar",
  18290. image: {
  18291. source: "./media/characters/pandora/collar.svg"
  18292. }
  18293. },
  18294. skirt: {
  18295. height: math.unit(6, "feet"),
  18296. weight: math.unit(150, "lb"),
  18297. name: "Skirt",
  18298. image: {
  18299. source: "./media/characters/pandora/skirt.svg",
  18300. extra: 1622 / 1525,
  18301. bottom: 0.015
  18302. }
  18303. },
  18304. hoodie: {
  18305. height: math.unit(6, "feet"),
  18306. weight: math.unit(150, "lb"),
  18307. name: "Hoodie",
  18308. image: {
  18309. source: "./media/characters/pandora/hoodie.svg",
  18310. extra: 1622 / 1525,
  18311. bottom: 0.015
  18312. }
  18313. },
  18314. casual: {
  18315. height: math.unit(6, "feet"),
  18316. weight: math.unit(150, "lb"),
  18317. name: "Casual",
  18318. image: {
  18319. source: "./media/characters/pandora/casual.svg",
  18320. extra: 1622 / 1525,
  18321. bottom: 0.015
  18322. }
  18323. },
  18324. },
  18325. [
  18326. {
  18327. name: "Normal",
  18328. height: math.unit(6, "feet")
  18329. },
  18330. {
  18331. name: "Big Steppy",
  18332. height: math.unit(1, "km"),
  18333. default: true
  18334. },
  18335. {
  18336. name: "Galactic Steppy",
  18337. height: math.unit(2, "gigameters")
  18338. },
  18339. ]
  18340. ))
  18341. characterMakers.push(() => makeCharacter(
  18342. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18343. {
  18344. side: {
  18345. height: math.unit(10, "feet"),
  18346. weight: math.unit(800, "kg"),
  18347. name: "Side",
  18348. image: {
  18349. source: "./media/characters/venio-darcony/side.svg",
  18350. extra: 1373 / 1003,
  18351. bottom: 0.037
  18352. }
  18353. },
  18354. front: {
  18355. height: math.unit(19, "feet"),
  18356. weight: math.unit(800, "kg"),
  18357. name: "Front",
  18358. image: {
  18359. source: "./media/characters/venio-darcony/front.svg"
  18360. }
  18361. },
  18362. back: {
  18363. height: math.unit(19, "feet"),
  18364. weight: math.unit(800, "kg"),
  18365. name: "Back",
  18366. image: {
  18367. source: "./media/characters/venio-darcony/back.svg"
  18368. }
  18369. },
  18370. sideNsfw: {
  18371. height: math.unit(10, "feet"),
  18372. weight: math.unit(800, "kg"),
  18373. name: "Side (NSFW)",
  18374. image: {
  18375. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18376. extra: 1373 / 1003,
  18377. bottom: 0.037
  18378. }
  18379. },
  18380. frontNsfw: {
  18381. height: math.unit(19, "feet"),
  18382. weight: math.unit(800, "kg"),
  18383. name: "Front (NSFW)",
  18384. image: {
  18385. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18386. }
  18387. },
  18388. backNsfw: {
  18389. height: math.unit(19, "feet"),
  18390. weight: math.unit(800, "kg"),
  18391. name: "Back (NSFW)",
  18392. image: {
  18393. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18394. }
  18395. },
  18396. sideArmored: {
  18397. height: math.unit(10, "feet"),
  18398. weight: math.unit(800, "kg"),
  18399. name: "Side (Armored)",
  18400. image: {
  18401. source: "./media/characters/venio-darcony/side-armored.svg",
  18402. extra: 1373 / 1003,
  18403. bottom: 0.037
  18404. }
  18405. },
  18406. frontArmored: {
  18407. height: math.unit(19, "feet"),
  18408. weight: math.unit(900, "kg"),
  18409. name: "Front (Armored)",
  18410. image: {
  18411. source: "./media/characters/venio-darcony/front-armored.svg"
  18412. }
  18413. },
  18414. backArmored: {
  18415. height: math.unit(19, "feet"),
  18416. weight: math.unit(900, "kg"),
  18417. name: "Back (Armored)",
  18418. image: {
  18419. source: "./media/characters/venio-darcony/back-armored.svg"
  18420. }
  18421. },
  18422. sword: {
  18423. height: math.unit(10, "feet"),
  18424. weight: math.unit(50, "lb"),
  18425. name: "Sword",
  18426. image: {
  18427. source: "./media/characters/venio-darcony/sword.svg"
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(10, "feet")
  18435. },
  18436. {
  18437. name: "Macro",
  18438. height: math.unit(130, "feet"),
  18439. default: true
  18440. },
  18441. {
  18442. name: "Macro+",
  18443. height: math.unit(240, "feet")
  18444. },
  18445. ]
  18446. ))
  18447. characterMakers.push(() => makeCharacter(
  18448. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18449. {
  18450. front: {
  18451. height: math.unit(6, "feet"),
  18452. weight: math.unit(150, "lb"),
  18453. name: "Front",
  18454. image: {
  18455. source: "./media/characters/veski/front.svg",
  18456. extra: 1299 / 1225,
  18457. bottom: 0.04
  18458. }
  18459. },
  18460. back: {
  18461. height: math.unit(6, "feet"),
  18462. weight: math.unit(150, "lb"),
  18463. name: "Back",
  18464. image: {
  18465. source: "./media/characters/veski/back.svg",
  18466. extra: 1299 / 1225,
  18467. bottom: 0.008
  18468. }
  18469. },
  18470. maw: {
  18471. height: math.unit(1.5 * 1.21, "feet"),
  18472. name: "Maw",
  18473. image: {
  18474. source: "./media/characters/veski/maw.svg"
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(2, "km"),
  18482. default: true
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18488. {
  18489. front: {
  18490. height: math.unit(5 + 7 / 12, "feet"),
  18491. name: "Front",
  18492. image: {
  18493. source: "./media/characters/isabelle/front.svg",
  18494. extra: 2130 / 1976,
  18495. bottom: 0.05
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Supermicro",
  18502. height: math.unit(10, "micrometers")
  18503. },
  18504. {
  18505. name: "Micro",
  18506. height: math.unit(1, "inch")
  18507. },
  18508. {
  18509. name: "Tiny",
  18510. height: math.unit(5, "inches")
  18511. },
  18512. {
  18513. name: "Standard",
  18514. height: math.unit(5 + 7 / 12, "inches")
  18515. },
  18516. {
  18517. name: "Macro",
  18518. height: math.unit(80, "meters"),
  18519. default: true
  18520. },
  18521. {
  18522. name: "Megamacro",
  18523. height: math.unit(250, "meters")
  18524. },
  18525. {
  18526. name: "Gigamacro",
  18527. height: math.unit(5, "km")
  18528. },
  18529. {
  18530. name: "Cosmic",
  18531. height: math.unit(2.5e6, "miles")
  18532. },
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18537. {
  18538. front: {
  18539. height: math.unit(6, "feet"),
  18540. weight: math.unit(150, "lb"),
  18541. name: "Front",
  18542. image: {
  18543. source: "./media/characters/hanzo/front.svg",
  18544. extra: 374 / 344,
  18545. bottom: 0.02
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(8, "feet"),
  18553. default: true
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(7, "feet"),
  18562. weight: math.unit(130, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/anna/front.svg",
  18566. extra: 169 / 145,
  18567. bottom: 0.06
  18568. }
  18569. },
  18570. full: {
  18571. height: math.unit(4.96, "feet"),
  18572. weight: math.unit(220, "lb"),
  18573. name: "Full",
  18574. image: {
  18575. source: "./media/characters/anna/full.svg",
  18576. extra: 138 / 114,
  18577. bottom: 0.15
  18578. }
  18579. },
  18580. tongue: {
  18581. height: math.unit(2.53, "feet"),
  18582. name: "Tongue",
  18583. image: {
  18584. source: "./media/characters/anna/tongue.svg"
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(7, "feet"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18598. {
  18599. front: {
  18600. height: math.unit(7 + 1/12, "feet"),
  18601. weight: math.unit(150, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/ian-corvid/front.svg",
  18605. extra: 621/591,
  18606. bottom: 14/635
  18607. }
  18608. },
  18609. back: {
  18610. height: math.unit(7 + 1/12, "feet"),
  18611. weight: math.unit(150, "lb"),
  18612. name: "Back",
  18613. image: {
  18614. source: "./media/characters/ian-corvid/back.svg",
  18615. extra: 621/600,
  18616. bottom: 10/631
  18617. }
  18618. },
  18619. stomping: {
  18620. height: math.unit(7 + 1/12, "feet"),
  18621. weight: math.unit(150, "lb"),
  18622. name: "Stomping",
  18623. image: {
  18624. source: "./media/characters/ian-corvid/stomping.svg",
  18625. extra: 309/291,
  18626. bottom: 7/316
  18627. }
  18628. },
  18629. tongue: {
  18630. height: math.unit(3.9, "feet"),
  18631. name: "Tongue",
  18632. image: {
  18633. source: "./media/characters/ian-corvid/tongue.svg"
  18634. }
  18635. },
  18636. beak: {
  18637. height: math.unit(0.9, "feet"),
  18638. name: "Beak",
  18639. image: {
  18640. source: "./media/characters/ian-corvid/beak.svg"
  18641. }
  18642. },
  18643. sitting: {
  18644. height: math.unit(7 / 1.8, "feet"),
  18645. weight: math.unit(150, "lb"),
  18646. name: "Sitting",
  18647. image: {
  18648. source: "./media/characters/ian-corvid/sitting.svg",
  18649. extra: 1400 / 1269,
  18650. bottom: 0.15
  18651. }
  18652. },
  18653. },
  18654. [
  18655. {
  18656. name: "Tiny Microw",
  18657. height: math.unit(1, "inch")
  18658. },
  18659. {
  18660. name: "Microw",
  18661. height: math.unit(6, "inches")
  18662. },
  18663. {
  18664. name: "Crow",
  18665. height: math.unit(7 + 1 / 12, "feet"),
  18666. default: true
  18667. },
  18668. {
  18669. name: "Macrow",
  18670. height: math.unit(176, "feet")
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18676. {
  18677. front: {
  18678. height: math.unit(5 + 7 / 12, "feet"),
  18679. weight: math.unit(147, "lb"),
  18680. name: "Front",
  18681. image: {
  18682. source: "./media/characters/natalie-kellon/front.svg",
  18683. extra: 1214 / 1141,
  18684. bottom: 0.02
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Micro",
  18691. height: math.unit(1 / 16, "inch")
  18692. },
  18693. {
  18694. name: "Tiny",
  18695. height: math.unit(4, "inches")
  18696. },
  18697. {
  18698. name: "Normal",
  18699. height: math.unit(5 + 7 / 12, "feet"),
  18700. default: true
  18701. },
  18702. {
  18703. name: "Amazon",
  18704. height: math.unit(12, "feet")
  18705. },
  18706. {
  18707. name: "Giantess",
  18708. height: math.unit(160, "meters")
  18709. },
  18710. {
  18711. name: "Titaness",
  18712. height: math.unit(800, "meters")
  18713. },
  18714. ]
  18715. ))
  18716. characterMakers.push(() => makeCharacter(
  18717. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18718. {
  18719. front: {
  18720. height: math.unit(6, "feet"),
  18721. weight: math.unit(150, "lb"),
  18722. name: "Front",
  18723. image: {
  18724. source: "./media/characters/alluria/front.svg",
  18725. extra: 806 / 738,
  18726. bottom: 0.01
  18727. }
  18728. },
  18729. side: {
  18730. height: math.unit(6, "feet"),
  18731. weight: math.unit(150, "lb"),
  18732. name: "Side",
  18733. image: {
  18734. source: "./media/characters/alluria/side.svg",
  18735. extra: 800 / 750,
  18736. }
  18737. },
  18738. back: {
  18739. height: math.unit(6, "feet"),
  18740. weight: math.unit(150, "lb"),
  18741. name: "Back",
  18742. image: {
  18743. source: "./media/characters/alluria/back.svg",
  18744. extra: 806 / 738,
  18745. }
  18746. },
  18747. frontMaid: {
  18748. height: math.unit(6, "feet"),
  18749. weight: math.unit(150, "lb"),
  18750. name: "Front (Maid)",
  18751. image: {
  18752. source: "./media/characters/alluria/front-maid.svg",
  18753. extra: 806 / 738,
  18754. bottom: 0.01
  18755. }
  18756. },
  18757. sideMaid: {
  18758. height: math.unit(6, "feet"),
  18759. weight: math.unit(150, "lb"),
  18760. name: "Side (Maid)",
  18761. image: {
  18762. source: "./media/characters/alluria/side-maid.svg",
  18763. extra: 800 / 750,
  18764. bottom: 0.005
  18765. }
  18766. },
  18767. backMaid: {
  18768. height: math.unit(6, "feet"),
  18769. weight: math.unit(150, "lb"),
  18770. name: "Back (Maid)",
  18771. image: {
  18772. source: "./media/characters/alluria/back-maid.svg",
  18773. extra: 806 / 738,
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Micro",
  18780. height: math.unit(6, "inches"),
  18781. default: true
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(6, "feet"),
  18790. weight: math.unit(150, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/kyle/front.svg",
  18794. extra: 1069 / 962,
  18795. bottom: 77.228 / 1727.45
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Macro",
  18802. height: math.unit(150, "feet"),
  18803. default: true
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(6, "feet"),
  18812. weight: math.unit(300, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/duncan/front.svg",
  18816. extra: 1650 / 1482,
  18817. bottom: 0.05
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Macro",
  18824. height: math.unit(100, "feet"),
  18825. default: true
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18831. {
  18832. front: {
  18833. height: math.unit(5 + 4 / 12, "feet"),
  18834. weight: math.unit(220, "lb"),
  18835. name: "Front",
  18836. image: {
  18837. source: "./media/characters/memory/front.svg",
  18838. extra: 3641 / 3545,
  18839. bottom: 0.03
  18840. }
  18841. },
  18842. back: {
  18843. height: math.unit(5 + 4 / 12, "feet"),
  18844. weight: math.unit(220, "lb"),
  18845. name: "Back",
  18846. image: {
  18847. source: "./media/characters/memory/back.svg",
  18848. extra: 3641 / 3545,
  18849. bottom: 0.025
  18850. }
  18851. },
  18852. frontSkirt: {
  18853. height: math.unit(5 + 4 / 12, "feet"),
  18854. weight: math.unit(220, "lb"),
  18855. name: "Front (Skirt)",
  18856. image: {
  18857. source: "./media/characters/memory/front-skirt.svg",
  18858. extra: 3641 / 3545,
  18859. bottom: 0.03
  18860. }
  18861. },
  18862. frontDress: {
  18863. height: math.unit(5 + 4 / 12, "feet"),
  18864. weight: math.unit(220, "lb"),
  18865. name: "Front (Dress)",
  18866. image: {
  18867. source: "./media/characters/memory/front-dress.svg",
  18868. extra: 3641 / 3545,
  18869. bottom: 0.03
  18870. }
  18871. },
  18872. },
  18873. [
  18874. {
  18875. name: "Micro",
  18876. height: math.unit(6, "inches"),
  18877. default: true
  18878. },
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(5 + 4 / 12, "feet")
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18887. {
  18888. front: {
  18889. height: math.unit(4 + 11 / 12, "feet"),
  18890. weight: math.unit(100, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/luno/front.svg",
  18894. extra: 1535 / 1487,
  18895. bottom: 0.03
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Micro",
  18902. height: math.unit(3, "inches")
  18903. },
  18904. {
  18905. name: "Normal",
  18906. height: math.unit(4 + 11 / 12, "feet"),
  18907. default: true
  18908. },
  18909. {
  18910. name: "Macro",
  18911. height: math.unit(300, "feet")
  18912. },
  18913. {
  18914. name: "Megamacro",
  18915. height: math.unit(700, "miles")
  18916. },
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18921. {
  18922. front: {
  18923. height: math.unit(6 + 2 / 12, "feet"),
  18924. weight: math.unit(170, "lb"),
  18925. name: "Front",
  18926. image: {
  18927. source: "./media/characters/jamesy/front.svg",
  18928. extra: 440 / 382,
  18929. bottom: 0.005
  18930. }
  18931. },
  18932. },
  18933. [
  18934. {
  18935. name: "Micro",
  18936. height: math.unit(3, "inches")
  18937. },
  18938. {
  18939. name: "Normal",
  18940. height: math.unit(6 + 2 / 12, "feet"),
  18941. default: true
  18942. },
  18943. {
  18944. name: "Macro",
  18945. height: math.unit(300, "feet")
  18946. },
  18947. {
  18948. name: "Megamacro",
  18949. height: math.unit(700, "miles")
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18955. {
  18956. front: {
  18957. height: math.unit(6, "feet"),
  18958. weight: math.unit(160, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/mark/front.svg",
  18962. extra: 3300 / 3100,
  18963. bottom: 136.42 / 3440.47
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Macro",
  18970. height: math.unit(120, "meters")
  18971. },
  18972. {
  18973. name: "Bigger Macro",
  18974. height: math.unit(350, "meters")
  18975. },
  18976. {
  18977. name: "Megamacro",
  18978. height: math.unit(8, "km"),
  18979. default: true
  18980. },
  18981. {
  18982. name: "Continental",
  18983. height: math.unit(4550, "km")
  18984. },
  18985. {
  18986. name: "Planetary",
  18987. height: math.unit(65000, "km")
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18993. {
  18994. front: {
  18995. height: math.unit(6, "feet"),
  18996. weight: math.unit(400, "lb"),
  18997. name: "Front",
  18998. image: {
  18999. source: "./media/characters/mac/front.svg",
  19000. extra: 1048 / 987.7,
  19001. bottom: 60 / 1107.6,
  19002. }
  19003. },
  19004. },
  19005. [
  19006. {
  19007. name: "Macro",
  19008. height: math.unit(500, "feet"),
  19009. default: true
  19010. },
  19011. ]
  19012. ))
  19013. characterMakers.push(() => makeCharacter(
  19014. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19015. {
  19016. front: {
  19017. height: math.unit(5 + 2 / 12, "feet"),
  19018. weight: math.unit(190, "lb"),
  19019. name: "Front",
  19020. image: {
  19021. source: "./media/characters/bari/front.svg",
  19022. extra: 3156 / 2880,
  19023. bottom: 0.03
  19024. }
  19025. },
  19026. back: {
  19027. height: math.unit(5 + 2 / 12, "feet"),
  19028. weight: math.unit(190, "lb"),
  19029. name: "Back",
  19030. image: {
  19031. source: "./media/characters/bari/back.svg",
  19032. extra: 3260 / 2834,
  19033. bottom: 0.025
  19034. }
  19035. },
  19036. frontPlush: {
  19037. height: math.unit(5 + 2 / 12, "feet"),
  19038. weight: math.unit(190, "lb"),
  19039. name: "Front (Plush)",
  19040. image: {
  19041. source: "./media/characters/bari/front-plush.svg",
  19042. extra: 1112 / 1061,
  19043. bottom: 0.002
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Micro",
  19050. height: math.unit(3, "inches")
  19051. },
  19052. {
  19053. name: "Normal",
  19054. height: math.unit(5 + 2 / 12, "feet"),
  19055. default: true
  19056. },
  19057. {
  19058. name: "Macro",
  19059. height: math.unit(20, "feet")
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19065. {
  19066. front: {
  19067. height: math.unit(6 + 1 / 12, "feet"),
  19068. weight: math.unit(275, "lb"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/hunter-misha-raven/front.svg"
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Mortal",
  19078. height: math.unit(6 + 1 / 12, "feet")
  19079. },
  19080. {
  19081. name: "Divine",
  19082. height: math.unit(1.12134e34, "parsecs"),
  19083. default: true
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19089. {
  19090. front: {
  19091. height: math.unit(6 + 3 / 12, "feet"),
  19092. weight: math.unit(220, "lb"),
  19093. name: "Front",
  19094. image: {
  19095. source: "./media/characters/max-calore/front.svg",
  19096. extra: 1700 / 1648,
  19097. bottom: 0.01
  19098. }
  19099. },
  19100. back: {
  19101. height: math.unit(6 + 3 / 12, "feet"),
  19102. weight: math.unit(220, "lb"),
  19103. name: "Back",
  19104. image: {
  19105. source: "./media/characters/max-calore/back.svg",
  19106. extra: 1700 / 1648,
  19107. bottom: 0.01
  19108. }
  19109. },
  19110. },
  19111. [
  19112. {
  19113. name: "Normal",
  19114. height: math.unit(6 + 3 / 12, "feet"),
  19115. default: true
  19116. },
  19117. ]
  19118. ))
  19119. characterMakers.push(() => makeCharacter(
  19120. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19121. {
  19122. side: {
  19123. height: math.unit(2 + 8 / 12, "feet"),
  19124. weight: math.unit(99, "lb"),
  19125. name: "Side",
  19126. image: {
  19127. source: "./media/characters/aspen/side.svg",
  19128. extra: 152 / 138,
  19129. bottom: 0.032
  19130. }
  19131. },
  19132. },
  19133. [
  19134. {
  19135. name: "Normal",
  19136. height: math.unit(2 + 8 / 12, "feet"),
  19137. default: true
  19138. },
  19139. ]
  19140. ))
  19141. characterMakers.push(() => makeCharacter(
  19142. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19143. {
  19144. side: {
  19145. height: math.unit(3 + 2 / 12, "feet"),
  19146. weight: math.unit(224, "lb"),
  19147. name: "Side",
  19148. image: {
  19149. source: "./media/characters/sheila-feral-wolf/side.svg",
  19150. extra: 179 / 166,
  19151. bottom: 0.03
  19152. }
  19153. },
  19154. },
  19155. [
  19156. {
  19157. name: "Normal",
  19158. height: math.unit(3 + 2 / 12, "feet"),
  19159. default: true
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19165. {
  19166. side: {
  19167. height: math.unit(1 + 9 / 12, "feet"),
  19168. weight: math.unit(38, "lb"),
  19169. name: "Side",
  19170. image: {
  19171. source: "./media/characters/michelle/side.svg",
  19172. extra: 147 / 136.7,
  19173. bottom: 0.03
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(1 + 9 / 12, "feet"),
  19181. default: true
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19187. {
  19188. front: {
  19189. height: math.unit(1.54, "feet"),
  19190. weight: math.unit(50, "lb"),
  19191. name: "Front",
  19192. image: {
  19193. source: "./media/characters/nino/front.svg"
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(1.54, "feet"),
  19201. default: true
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19207. {
  19208. front: {
  19209. height: math.unit(1.49, "feet"),
  19210. weight: math.unit(45, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/viola/front.svg"
  19214. }
  19215. },
  19216. },
  19217. [
  19218. {
  19219. name: "Normal",
  19220. height: math.unit(1.49, "feet"),
  19221. default: true
  19222. },
  19223. ]
  19224. ))
  19225. characterMakers.push(() => makeCharacter(
  19226. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19227. {
  19228. front: {
  19229. height: math.unit(6 + 5 / 12, "feet"),
  19230. weight: math.unit(580, "lb"),
  19231. name: "Front",
  19232. image: {
  19233. source: "./media/characters/atlas/front.svg",
  19234. extra: 298.5 / 290,
  19235. bottom: 0.015
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(6 + 5 / 12, "feet"),
  19243. default: true
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19249. {
  19250. side: {
  19251. height: math.unit(15.6, "inches"),
  19252. weight: math.unit(10, "lb"),
  19253. name: "Side",
  19254. image: {
  19255. source: "./media/characters/davy/side.svg",
  19256. extra: 200 / 170,
  19257. bottom: 0.01
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(15.6, "inches"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19271. {
  19272. side: {
  19273. height: math.unit(4 + 8 / 12, "feet"),
  19274. weight: math.unit(166, "lb"),
  19275. name: "Side",
  19276. image: {
  19277. source: "./media/characters/fiona/side.svg",
  19278. extra: 232 / 220,
  19279. bottom: 0.03
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(4 + 8 / 12, "feet"),
  19287. default: true
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19293. {
  19294. front: {
  19295. height: math.unit(26, "inches"),
  19296. weight: math.unit(35, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/lyla/front.svg",
  19300. bottom: 0.1
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(3, "feet"),
  19308. default: true
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19314. {
  19315. side: {
  19316. height: math.unit(1.8, "feet"),
  19317. weight: math.unit(44, "lb"),
  19318. name: "Side",
  19319. image: {
  19320. source: "./media/characters/perseus/side.svg",
  19321. bottom: 0.21
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(1.8, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19335. {
  19336. side: {
  19337. height: math.unit(4 + 2 / 12, "feet"),
  19338. weight: math.unit(20, "lb"),
  19339. name: "Side",
  19340. image: {
  19341. source: "./media/characters/remus/side.svg"
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Normal",
  19348. height: math.unit(4 + 2 / 12, "feet"),
  19349. default: true
  19350. },
  19351. ]
  19352. ))
  19353. characterMakers.push(() => makeCharacter(
  19354. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19355. {
  19356. front: {
  19357. height: math.unit(4 + 11 / 12, "feet"),
  19358. weight: math.unit(114, "lb"),
  19359. name: "Front",
  19360. image: {
  19361. source: "./media/characters/raf/front.svg",
  19362. extra: 1504/1339,
  19363. bottom: 26/1530
  19364. }
  19365. },
  19366. side: {
  19367. height: math.unit(4 + 11 / 12, "feet"),
  19368. weight: math.unit(114, "lb"),
  19369. name: "Side",
  19370. image: {
  19371. source: "./media/characters/raf/side.svg",
  19372. extra: 1466/1316,
  19373. bottom: 29/1495
  19374. }
  19375. },
  19376. paw: {
  19377. height: math.unit(1.45, "feet"),
  19378. name: "Paw",
  19379. image: {
  19380. source: "./media/characters/raf/paw.svg"
  19381. },
  19382. extraAttributes: {
  19383. "toeSize": {
  19384. name: "Toe Size",
  19385. power: 2,
  19386. type: "area",
  19387. base: math.unit(0.004, "m^2")
  19388. },
  19389. "padSize": {
  19390. name: "Pad Size",
  19391. power: 2,
  19392. type: "area",
  19393. base: math.unit(0.04, "m^2")
  19394. },
  19395. "footSize": {
  19396. name: "Foot Size",
  19397. power: 2,
  19398. type: "area",
  19399. base: math.unit(0.08, "m^2")
  19400. },
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Micro",
  19407. height: math.unit(2, "inches")
  19408. },
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(4 + 11 / 12, "feet"),
  19412. default: true
  19413. },
  19414. {
  19415. name: "Macro",
  19416. height: math.unit(70, "feet")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(1.5, "meters"),
  19425. weight: math.unit(68, "kg"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/liam-einarr/front.svg",
  19429. extra: 2822 / 2666
  19430. }
  19431. },
  19432. back: {
  19433. height: math.unit(1.5, "meters"),
  19434. weight: math.unit(68, "kg"),
  19435. name: "Back",
  19436. image: {
  19437. source: "./media/characters/liam-einarr/back.svg",
  19438. extra: 2822 / 2666,
  19439. bottom: 0.015
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(1.5, "meters"),
  19447. default: true
  19448. },
  19449. {
  19450. name: "Macro",
  19451. height: math.unit(150, "meters")
  19452. },
  19453. {
  19454. name: "Megamacro",
  19455. height: math.unit(35, "km")
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19461. {
  19462. front: {
  19463. height: math.unit(6, "feet"),
  19464. weight: math.unit(75, "kg"),
  19465. name: "Front",
  19466. image: {
  19467. source: "./media/characters/linda/front.svg",
  19468. extra: 930 / 874,
  19469. bottom: 0.004
  19470. }
  19471. },
  19472. },
  19473. [
  19474. {
  19475. name: "Normal",
  19476. height: math.unit(6, "feet"),
  19477. default: true
  19478. },
  19479. ]
  19480. ))
  19481. characterMakers.push(() => makeCharacter(
  19482. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19483. {
  19484. front: {
  19485. height: math.unit(6 + 8 / 12, "feet"),
  19486. weight: math.unit(220, "lb"),
  19487. name: "Front",
  19488. image: {
  19489. source: "./media/characters/caylex/front.svg",
  19490. extra: 821 / 772,
  19491. bottom: 0.07
  19492. }
  19493. },
  19494. back: {
  19495. height: math.unit(6 + 8 / 12, "feet"),
  19496. weight: math.unit(220, "lb"),
  19497. name: "Back",
  19498. image: {
  19499. source: "./media/characters/caylex/back.svg",
  19500. extra: 821 / 772,
  19501. bottom: 0.022
  19502. }
  19503. },
  19504. hand: {
  19505. height: math.unit(1.25, "feet"),
  19506. name: "Hand",
  19507. image: {
  19508. source: "./media/characters/caylex/hand.svg"
  19509. }
  19510. },
  19511. foot: {
  19512. height: math.unit(1.6, "feet"),
  19513. name: "Foot",
  19514. image: {
  19515. source: "./media/characters/caylex/foot.svg"
  19516. }
  19517. },
  19518. armored: {
  19519. height: math.unit(6 + 8 / 12, "feet"),
  19520. weight: math.unit(250, "lb"),
  19521. name: "Armored",
  19522. image: {
  19523. source: "./media/characters/caylex/armored.svg",
  19524. extra: 1420 / 1310,
  19525. bottom: 0.045
  19526. }
  19527. },
  19528. },
  19529. [
  19530. {
  19531. name: "Normal",
  19532. height: math.unit(6 + 8 / 12, "feet"),
  19533. default: true
  19534. },
  19535. {
  19536. name: "Normal+",
  19537. height: math.unit(12, "feet")
  19538. },
  19539. ]
  19540. ))
  19541. characterMakers.push(() => makeCharacter(
  19542. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19543. {
  19544. front: {
  19545. height: math.unit(7 + 6 / 12, "feet"),
  19546. weight: math.unit(288, "lb"),
  19547. name: "Front",
  19548. image: {
  19549. source: "./media/characters/alana/front.svg",
  19550. extra: 679 / 653,
  19551. bottom: 22.5 / 701
  19552. }
  19553. },
  19554. },
  19555. [
  19556. {
  19557. name: "Normal",
  19558. height: math.unit(7 + 6 / 12, "feet")
  19559. },
  19560. {
  19561. name: "Large",
  19562. height: math.unit(50, "feet")
  19563. },
  19564. {
  19565. name: "Macro",
  19566. height: math.unit(100, "feet"),
  19567. default: true
  19568. },
  19569. {
  19570. name: "Macro+",
  19571. height: math.unit(200, "feet")
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19577. {
  19578. front: {
  19579. height: math.unit(6 + 1 / 12, "feet"),
  19580. weight: math.unit(210, "lb"),
  19581. name: "Front",
  19582. image: {
  19583. source: "./media/characters/hasani/front.svg",
  19584. extra: 244 / 232,
  19585. bottom: 0.01
  19586. }
  19587. },
  19588. back: {
  19589. height: math.unit(6 + 1 / 12, "feet"),
  19590. weight: math.unit(210, "lb"),
  19591. name: "Back",
  19592. image: {
  19593. source: "./media/characters/hasani/back.svg",
  19594. extra: 244 / 232,
  19595. bottom: 0.01
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(6 + 1 / 12, "feet")
  19603. },
  19604. {
  19605. name: "Macro",
  19606. height: math.unit(175, "feet"),
  19607. default: true
  19608. },
  19609. ]
  19610. ))
  19611. characterMakers.push(() => makeCharacter(
  19612. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19613. {
  19614. front: {
  19615. height: math.unit(1.82, "meters"),
  19616. weight: math.unit(140, "lb"),
  19617. name: "Front",
  19618. image: {
  19619. source: "./media/characters/nita/front.svg",
  19620. extra: 2473 / 2363,
  19621. bottom: 0.01
  19622. }
  19623. },
  19624. },
  19625. [
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(1.82, "m")
  19629. },
  19630. {
  19631. name: "Macro",
  19632. height: math.unit(300, "m")
  19633. },
  19634. {
  19635. name: "Mistake Canon",
  19636. height: math.unit(0.5, "miles"),
  19637. default: true
  19638. },
  19639. {
  19640. name: "Big Mistake",
  19641. height: math.unit(13, "miles")
  19642. },
  19643. {
  19644. name: "Playing God",
  19645. height: math.unit(2450, "miles")
  19646. },
  19647. ]
  19648. ))
  19649. characterMakers.push(() => makeCharacter(
  19650. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19651. {
  19652. front: {
  19653. height: math.unit(4, "feet"),
  19654. weight: math.unit(120, "lb"),
  19655. name: "Front",
  19656. image: {
  19657. source: "./media/characters/shiriko/front.svg",
  19658. extra: 970/934,
  19659. bottom: 5/975
  19660. }
  19661. },
  19662. },
  19663. [
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(4, "feet"),
  19667. default: true
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19673. {
  19674. front: {
  19675. height: math.unit(6, "feet"),
  19676. name: "front",
  19677. image: {
  19678. source: "./media/characters/deja/front.svg",
  19679. extra: 926 / 840,
  19680. bottom: 0.07
  19681. }
  19682. },
  19683. },
  19684. [
  19685. {
  19686. name: "Planck Length",
  19687. height: math.unit(1.6e-35, "meters")
  19688. },
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(30.48, "meters"),
  19692. default: true
  19693. },
  19694. {
  19695. name: "Universal",
  19696. height: math.unit(8.8e26, "meters")
  19697. },
  19698. ]
  19699. ))
  19700. characterMakers.push(() => makeCharacter(
  19701. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19702. {
  19703. side: {
  19704. height: math.unit(8, "feet"),
  19705. weight: math.unit(6300, "lb"),
  19706. name: "Side",
  19707. image: {
  19708. source: "./media/characters/anima/side.svg",
  19709. bottom: 0.035
  19710. }
  19711. },
  19712. },
  19713. [
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(8, "feet"),
  19717. default: true
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19723. {
  19724. front: {
  19725. height: math.unit(8, "feet"),
  19726. weight: math.unit(350, "lb"),
  19727. name: "Front",
  19728. image: {
  19729. source: "./media/characters/bianca/front.svg",
  19730. extra: 234 / 225,
  19731. bottom: 0.03
  19732. }
  19733. },
  19734. },
  19735. [
  19736. {
  19737. name: "Normal",
  19738. height: math.unit(8, "feet"),
  19739. default: true
  19740. },
  19741. ]
  19742. ))
  19743. characterMakers.push(() => makeCharacter(
  19744. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19745. {
  19746. front: {
  19747. height: math.unit(11 + 5/12, "feet"),
  19748. weight: math.unit(1200, "lb"),
  19749. name: "Front",
  19750. image: {
  19751. source: "./media/characters/adinia/front.svg",
  19752. extra: 1767/1641,
  19753. bottom: 44/1811
  19754. },
  19755. extraAttributes: {
  19756. "energyIntake": {
  19757. name: "Energy Intake",
  19758. power: 3,
  19759. type: "energy",
  19760. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19761. },
  19762. }
  19763. },
  19764. back: {
  19765. height: math.unit(11 + 5/12, "feet"),
  19766. weight: math.unit(1200, "lb"),
  19767. name: "Back",
  19768. image: {
  19769. source: "./media/characters/adinia/back.svg",
  19770. extra: 1834/1684,
  19771. bottom: 14/1848
  19772. },
  19773. extraAttributes: {
  19774. "energyIntake": {
  19775. name: "Energy Intake",
  19776. power: 3,
  19777. type: "energy",
  19778. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19779. },
  19780. }
  19781. },
  19782. maw: {
  19783. height: math.unit(3.79, "feet"),
  19784. name: "Maw",
  19785. image: {
  19786. source: "./media/characters/adinia/maw.svg"
  19787. }
  19788. },
  19789. rump: {
  19790. height: math.unit(4.6, "feet"),
  19791. name: "Rump",
  19792. image: {
  19793. source: "./media/characters/adinia/rump.svg"
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(11 + 5 / 12, "feet"),
  19801. default: true
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19807. {
  19808. front: {
  19809. height: math.unit(3, "meters"),
  19810. weight: math.unit(200, "kg"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/lykasa/front.svg",
  19814. extra: 1076 / 976,
  19815. bottom: 0.06
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(3, "meters")
  19823. },
  19824. {
  19825. name: "Kaiju",
  19826. height: math.unit(120, "meters"),
  19827. default: true
  19828. },
  19829. {
  19830. name: "Mega Kaiju",
  19831. height: math.unit(240, "km")
  19832. },
  19833. {
  19834. name: "Giga Kaiju",
  19835. height: math.unit(400, "megameters")
  19836. },
  19837. {
  19838. name: "Tera Kaiju",
  19839. height: math.unit(800, "gigameters")
  19840. },
  19841. {
  19842. name: "Kaiju Dragon Goddess",
  19843. height: math.unit(26, "zettaparsecs")
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19849. {
  19850. side: {
  19851. height: math.unit(283 / 124 * 6, "feet"),
  19852. weight: math.unit(35000, "lb"),
  19853. name: "Side",
  19854. image: {
  19855. source: "./media/characters/malfaren/side.svg",
  19856. extra: 1310/529,
  19857. bottom: 24/1334
  19858. }
  19859. },
  19860. front: {
  19861. height: math.unit(22.36, "feet"),
  19862. weight: math.unit(35000, "lb"),
  19863. name: "Front",
  19864. image: {
  19865. source: "./media/characters/malfaren/front.svg",
  19866. extra: 1237/1115,
  19867. bottom: 32/1269
  19868. }
  19869. },
  19870. maw: {
  19871. height: math.unit(6.9, "feet"),
  19872. name: "Maw",
  19873. image: {
  19874. source: "./media/characters/malfaren/maw.svg"
  19875. }
  19876. },
  19877. dick: {
  19878. height: math.unit(6.19, "feet"),
  19879. name: "Dick",
  19880. image: {
  19881. source: "./media/characters/malfaren/dick.svg"
  19882. }
  19883. },
  19884. eye: {
  19885. height: math.unit(0.69, "feet"),
  19886. name: "Eye",
  19887. image: {
  19888. source: "./media/characters/malfaren/eye.svg"
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Big",
  19895. height: math.unit(283 / 162 * 6, "feet"),
  19896. },
  19897. {
  19898. name: "Bigger",
  19899. height: math.unit(283 / 124 * 6, "feet")
  19900. },
  19901. {
  19902. name: "Massive",
  19903. height: math.unit(283 / 92 * 6, "feet"),
  19904. default: true
  19905. },
  19906. {
  19907. name: "👀💦",
  19908. height: math.unit(283 / 73 * 6, "feet"),
  19909. },
  19910. ]
  19911. ))
  19912. characterMakers.push(() => makeCharacter(
  19913. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19914. {
  19915. front: {
  19916. height: math.unit(1.7, "m"),
  19917. weight: math.unit(70, "kg"),
  19918. name: "Front",
  19919. image: {
  19920. source: "./media/characters/kernel/front.svg",
  19921. extra: 1960/1821,
  19922. bottom: 17/1977
  19923. }
  19924. },
  19925. },
  19926. [
  19927. {
  19928. name: "Nano",
  19929. height: math.unit(17, "micrometers")
  19930. },
  19931. {
  19932. name: "Micro",
  19933. height: math.unit(1.7, "mm")
  19934. },
  19935. {
  19936. name: "Small",
  19937. height: math.unit(1.7, "cm")
  19938. },
  19939. {
  19940. name: "Normal",
  19941. height: math.unit(1.7, "m"),
  19942. default: true
  19943. },
  19944. ]
  19945. ))
  19946. characterMakers.push(() => makeCharacter(
  19947. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19948. {
  19949. front: {
  19950. height: math.unit(1.75, "meters"),
  19951. weight: math.unit(65, "kg"),
  19952. name: "Front",
  19953. image: {
  19954. source: "./media/characters/jayne-folest/front.svg",
  19955. extra: 2115 / 2007,
  19956. bottom: 0.02
  19957. }
  19958. },
  19959. back: {
  19960. height: math.unit(1.75, "meters"),
  19961. weight: math.unit(65, "kg"),
  19962. name: "Back",
  19963. image: {
  19964. source: "./media/characters/jayne-folest/back.svg",
  19965. extra: 2115 / 2007,
  19966. bottom: 0.005
  19967. }
  19968. },
  19969. frontClothed: {
  19970. height: math.unit(1.75, "meters"),
  19971. weight: math.unit(65, "kg"),
  19972. name: "Front (Clothed)",
  19973. image: {
  19974. source: "./media/characters/jayne-folest/front-clothed.svg",
  19975. extra: 2115 / 2007,
  19976. bottom: 0.035
  19977. }
  19978. },
  19979. hand: {
  19980. height: math.unit(1 / 1.260, "feet"),
  19981. name: "Hand",
  19982. image: {
  19983. source: "./media/characters/jayne-folest/hand.svg"
  19984. }
  19985. },
  19986. foot: {
  19987. height: math.unit(1 / 0.918, "feet"),
  19988. name: "Foot",
  19989. image: {
  19990. source: "./media/characters/jayne-folest/foot.svg"
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Micro",
  19997. height: math.unit(4, "cm")
  19998. },
  19999. {
  20000. name: "Normal",
  20001. height: math.unit(1.75, "meters")
  20002. },
  20003. {
  20004. name: "Macro",
  20005. height: math.unit(47.5, "meters"),
  20006. default: true
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(180, "cm"),
  20015. weight: math.unit(70, "kg"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/algier/front.svg",
  20019. extra: 596 / 572,
  20020. bottom: 0.04
  20021. }
  20022. },
  20023. back: {
  20024. height: math.unit(180, "cm"),
  20025. weight: math.unit(70, "kg"),
  20026. name: "Back",
  20027. image: {
  20028. source: "./media/characters/algier/back.svg",
  20029. extra: 596 / 572,
  20030. bottom: 0.025
  20031. }
  20032. },
  20033. frontdressed: {
  20034. height: math.unit(180, "cm"),
  20035. weight: math.unit(150, "kg"),
  20036. name: "Front-dressed",
  20037. image: {
  20038. source: "./media/characters/algier/front-dressed.svg",
  20039. extra: 596 / 572,
  20040. bottom: 0.038
  20041. }
  20042. },
  20043. },
  20044. [
  20045. {
  20046. name: "Micro",
  20047. height: math.unit(5, "cm")
  20048. },
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(180, "cm"),
  20052. default: true
  20053. },
  20054. {
  20055. name: "Macro",
  20056. height: math.unit(64, "m")
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20062. {
  20063. upright: {
  20064. height: math.unit(7, "feet"),
  20065. weight: math.unit(300, "lb"),
  20066. name: "Upright",
  20067. image: {
  20068. source: "./media/characters/pretzel/upright.svg",
  20069. extra: 534 / 522,
  20070. bottom: 0.065
  20071. }
  20072. },
  20073. sprawling: {
  20074. height: math.unit(3.75, "feet"),
  20075. weight: math.unit(300, "lb"),
  20076. name: "Sprawling",
  20077. image: {
  20078. source: "./media/characters/pretzel/sprawling.svg",
  20079. extra: 314 / 281,
  20080. bottom: 0.1
  20081. }
  20082. },
  20083. tongue: {
  20084. height: math.unit(2, "feet"),
  20085. name: "Tongue",
  20086. image: {
  20087. source: "./media/characters/pretzel/tongue.svg"
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(7, "feet"),
  20095. default: true
  20096. },
  20097. {
  20098. name: "Oversized",
  20099. height: math.unit(15, "feet")
  20100. },
  20101. {
  20102. name: "Huge",
  20103. height: math.unit(30, "feet")
  20104. },
  20105. {
  20106. name: "Macro",
  20107. height: math.unit(250, "feet")
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20113. {
  20114. sideFront: {
  20115. height: math.unit(5 + 2 / 12, "feet"),
  20116. weight: math.unit(120, "lb"),
  20117. name: "Front Side",
  20118. image: {
  20119. source: "./media/characters/roxi/side-front.svg",
  20120. extra: 2924 / 2717,
  20121. bottom: 0.08
  20122. }
  20123. },
  20124. sideBack: {
  20125. height: math.unit(5 + 2 / 12, "feet"),
  20126. weight: math.unit(120, "lb"),
  20127. name: "Back Side",
  20128. image: {
  20129. source: "./media/characters/roxi/side-back.svg",
  20130. extra: 2904 / 2693,
  20131. bottom: 0.06
  20132. }
  20133. },
  20134. front: {
  20135. height: math.unit(5 + 2 / 12, "feet"),
  20136. weight: math.unit(120, "lb"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/roxi/front.svg",
  20140. extra: 2028 / 1907,
  20141. bottom: 0.01
  20142. }
  20143. },
  20144. frontAlt: {
  20145. height: math.unit(5 + 2 / 12, "feet"),
  20146. weight: math.unit(120, "lb"),
  20147. name: "Front (Alt)",
  20148. image: {
  20149. source: "./media/characters/roxi/front-alt.svg",
  20150. extra: 1828 / 1798,
  20151. bottom: 0.01
  20152. }
  20153. },
  20154. sitting: {
  20155. height: math.unit(2.8, "feet"),
  20156. weight: math.unit(120, "lb"),
  20157. name: "Sitting",
  20158. image: {
  20159. source: "./media/characters/roxi/sitting.svg",
  20160. extra: 2660 / 2462,
  20161. bottom: 0.1
  20162. }
  20163. },
  20164. },
  20165. [
  20166. {
  20167. name: "Normal",
  20168. height: math.unit(5 + 2 / 12, "feet"),
  20169. default: true
  20170. },
  20171. ]
  20172. ))
  20173. characterMakers.push(() => makeCharacter(
  20174. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20175. {
  20176. side: {
  20177. height: math.unit(55, "feet"),
  20178. weight: math.unit(153, "tons"),
  20179. name: "Side",
  20180. image: {
  20181. source: "./media/characters/shadow/side.svg",
  20182. extra: 701 / 628,
  20183. bottom: 0.02
  20184. }
  20185. },
  20186. flying: {
  20187. height: math.unit(145, "feet"),
  20188. weight: math.unit(153, "tons"),
  20189. name: "Flying",
  20190. image: {
  20191. source: "./media/characters/shadow/flying.svg"
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(55, "feet"),
  20199. default: true
  20200. },
  20201. ]
  20202. ))
  20203. characterMakers.push(() => makeCharacter(
  20204. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20205. {
  20206. front: {
  20207. height: math.unit(6, "feet"),
  20208. weight: math.unit(200, "lb"),
  20209. name: "Front",
  20210. image: {
  20211. source: "./media/characters/marcie/front.svg",
  20212. extra: 960 / 876,
  20213. bottom: 58 / 1017.87
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Macro",
  20220. height: math.unit(1, "mile"),
  20221. default: true
  20222. },
  20223. ]
  20224. ))
  20225. characterMakers.push(() => makeCharacter(
  20226. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20227. {
  20228. front: {
  20229. height: math.unit(7, "feet"),
  20230. weight: math.unit(200, "lb"),
  20231. name: "Front",
  20232. image: {
  20233. source: "./media/characters/kachina/front.svg",
  20234. extra: 3206/2764,
  20235. bottom: 140/3346
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(7, "feet"),
  20243. default: true
  20244. },
  20245. ]
  20246. ))
  20247. characterMakers.push(() => makeCharacter(
  20248. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20249. {
  20250. looking: {
  20251. height: math.unit(2, "meters"),
  20252. weight: math.unit(300, "kg"),
  20253. name: "Looking",
  20254. image: {
  20255. source: "./media/characters/kash/looking.svg",
  20256. extra: 474 / 344,
  20257. bottom: 0.03
  20258. }
  20259. },
  20260. side: {
  20261. height: math.unit(2, "meters"),
  20262. weight: math.unit(300, "kg"),
  20263. name: "Side",
  20264. image: {
  20265. source: "./media/characters/kash/side.svg",
  20266. extra: 302 / 251,
  20267. bottom: 0.03
  20268. }
  20269. },
  20270. front: {
  20271. height: math.unit(2, "meters"),
  20272. weight: math.unit(300, "kg"),
  20273. name: "Front",
  20274. image: {
  20275. source: "./media/characters/kash/front.svg",
  20276. extra: 495 / 360,
  20277. bottom: 0.015
  20278. }
  20279. },
  20280. },
  20281. [
  20282. {
  20283. name: "Normal",
  20284. height: math.unit(2, "meters"),
  20285. default: true
  20286. },
  20287. {
  20288. name: "Big",
  20289. height: math.unit(3, "meters")
  20290. },
  20291. {
  20292. name: "Large",
  20293. height: math.unit(5, "meters")
  20294. },
  20295. ]
  20296. ))
  20297. characterMakers.push(() => makeCharacter(
  20298. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20299. {
  20300. feeding: {
  20301. height: math.unit(6.7, "feet"),
  20302. weight: math.unit(350, "lb"),
  20303. name: "Feeding",
  20304. image: {
  20305. source: "./media/characters/lalim/feeding.svg",
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(6.7, "feet"),
  20313. default: true
  20314. },
  20315. ]
  20316. ))
  20317. characterMakers.push(() => makeCharacter(
  20318. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20319. {
  20320. front: {
  20321. height: math.unit(9.5, "feet"),
  20322. weight: math.unit(600, "lb"),
  20323. name: "Front",
  20324. image: {
  20325. source: "./media/characters/de'vout/front.svg",
  20326. extra: 1443 / 1328,
  20327. bottom: 0.025
  20328. }
  20329. },
  20330. back: {
  20331. height: math.unit(9.5, "feet"),
  20332. weight: math.unit(600, "lb"),
  20333. name: "Back",
  20334. image: {
  20335. source: "./media/characters/de'vout/back.svg",
  20336. extra: 1443 / 1328
  20337. }
  20338. },
  20339. frontDressed: {
  20340. height: math.unit(9.5, "feet"),
  20341. weight: math.unit(600, "lb"),
  20342. name: "Front (Dressed",
  20343. image: {
  20344. source: "./media/characters/de'vout/front-dressed.svg",
  20345. extra: 1443 / 1328,
  20346. bottom: 0.025
  20347. }
  20348. },
  20349. backDressed: {
  20350. height: math.unit(9.5, "feet"),
  20351. weight: math.unit(600, "lb"),
  20352. name: "Back (Dressed",
  20353. image: {
  20354. source: "./media/characters/de'vout/back-dressed.svg",
  20355. extra: 1443 / 1328
  20356. }
  20357. },
  20358. },
  20359. [
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(9.5, "feet"),
  20363. default: true
  20364. },
  20365. ]
  20366. ))
  20367. characterMakers.push(() => makeCharacter(
  20368. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20369. {
  20370. front: {
  20371. height: math.unit(8, "feet"),
  20372. weight: math.unit(225, "lb"),
  20373. name: "Front",
  20374. image: {
  20375. source: "./media/characters/talana/front.svg",
  20376. extra: 1410 / 1300,
  20377. bottom: 0.015
  20378. }
  20379. },
  20380. frontDressed: {
  20381. height: math.unit(8, "feet"),
  20382. weight: math.unit(225, "lb"),
  20383. name: "Front (Dressed",
  20384. image: {
  20385. source: "./media/characters/talana/front-dressed.svg",
  20386. extra: 1410 / 1300,
  20387. bottom: 0.015
  20388. }
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(8, "feet"),
  20395. default: true
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20401. {
  20402. side: {
  20403. height: math.unit(7.2, "feet"),
  20404. weight: math.unit(150, "lb"),
  20405. name: "Side",
  20406. image: {
  20407. source: "./media/characters/xeauvok/side.svg",
  20408. extra: 1975 / 1523,
  20409. bottom: 0.07
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Normal",
  20416. height: math.unit(7.2, "feet"),
  20417. default: true
  20418. },
  20419. ]
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20423. {
  20424. side: {
  20425. height: math.unit(4, "meters"),
  20426. weight: math.unit(2200, "kg"),
  20427. name: "Side",
  20428. image: {
  20429. source: "./media/characters/zara/side.svg",
  20430. extra: 765/744,
  20431. bottom: 156/921
  20432. }
  20433. },
  20434. },
  20435. [
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(4, "meters"),
  20439. default: true
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20445. {
  20446. side: {
  20447. height: math.unit(6, "feet"),
  20448. weight: math.unit(150, "lb"),
  20449. name: "Side",
  20450. image: {
  20451. source: "./media/characters/richard-dragon/side.svg",
  20452. extra: 845 / 340,
  20453. bottom: 0.017
  20454. }
  20455. },
  20456. maw: {
  20457. height: math.unit(2.97, "feet"),
  20458. name: "Maw",
  20459. image: {
  20460. source: "./media/characters/richard-dragon/maw.svg"
  20461. }
  20462. },
  20463. },
  20464. [
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20469. {
  20470. front: {
  20471. height: math.unit(4, "feet"),
  20472. weight: math.unit(100, "lb"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/richard-smeargle/front.svg",
  20476. extra: 2952 / 2820,
  20477. bottom: 0.028
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(4, "feet"),
  20485. default: true
  20486. },
  20487. {
  20488. name: "Dynamax",
  20489. height: math.unit(20, "meters")
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20495. {
  20496. front: {
  20497. height: math.unit(6, "feet"),
  20498. weight: math.unit(110, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/klay/front.svg",
  20502. extra: 962 / 883,
  20503. bottom: 0.04
  20504. }
  20505. },
  20506. back: {
  20507. height: math.unit(6, "feet"),
  20508. weight: math.unit(110, "lb"),
  20509. name: "Back",
  20510. image: {
  20511. source: "./media/characters/klay/back.svg",
  20512. extra: 962 / 883
  20513. }
  20514. },
  20515. beans: {
  20516. height: math.unit(1.15, "feet"),
  20517. name: "Beans",
  20518. image: {
  20519. source: "./media/characters/klay/beans.svg"
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Micro",
  20526. height: math.unit(6, "inches")
  20527. },
  20528. {
  20529. name: "Mini",
  20530. height: math.unit(3, "feet")
  20531. },
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(6, "feet"),
  20535. default: true
  20536. },
  20537. {
  20538. name: "Big",
  20539. height: math.unit(25, "feet")
  20540. },
  20541. {
  20542. name: "Macro",
  20543. height: math.unit(100, "feet")
  20544. },
  20545. {
  20546. name: "Megamacro",
  20547. height: math.unit(400, "feet")
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20553. {
  20554. front: {
  20555. height: math.unit(6, "feet"),
  20556. weight: math.unit(160, "lb"),
  20557. name: "Front",
  20558. image: {
  20559. source: "./media/characters/marcus/front.svg",
  20560. extra: 734 / 676,
  20561. bottom: 0.03
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Little",
  20568. height: math.unit(6, "feet")
  20569. },
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(110, "feet"),
  20573. default: true
  20574. },
  20575. {
  20576. name: "Macro",
  20577. height: math.unit(250, "feet")
  20578. },
  20579. {
  20580. name: "Megamacro",
  20581. height: math.unit(1000, "feet")
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20587. {
  20588. front: {
  20589. height: math.unit(7, "feet"),
  20590. weight: math.unit(275, "lb"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/claude-delroute/front.svg",
  20594. extra: 902/827,
  20595. bottom: 26/928
  20596. }
  20597. },
  20598. side: {
  20599. height: math.unit(7, "feet"),
  20600. weight: math.unit(275, "lb"),
  20601. name: "Side",
  20602. image: {
  20603. source: "./media/characters/claude-delroute/side.svg",
  20604. extra: 908/853,
  20605. bottom: 16/924
  20606. }
  20607. },
  20608. back: {
  20609. height: math.unit(7, "feet"),
  20610. weight: math.unit(275, "lb"),
  20611. name: "Back",
  20612. image: {
  20613. source: "./media/characters/claude-delroute/back.svg",
  20614. extra: 911/829,
  20615. bottom: 18/929
  20616. }
  20617. },
  20618. maw: {
  20619. height: math.unit(0.6407, "meters"),
  20620. name: "Maw",
  20621. image: {
  20622. source: "./media/characters/claude-delroute/maw.svg"
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Normal",
  20629. height: math.unit(7, "feet"),
  20630. default: true
  20631. },
  20632. {
  20633. name: "Lorge",
  20634. height: math.unit(20, "feet")
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20640. {
  20641. front: {
  20642. height: math.unit(8 + 4 / 12, "feet"),
  20643. weight: math.unit(600, "lb"),
  20644. name: "Front",
  20645. image: {
  20646. source: "./media/characters/dragonien/front.svg",
  20647. extra: 100 / 94,
  20648. bottom: 3.3 / 103.3445
  20649. }
  20650. },
  20651. back: {
  20652. height: math.unit(8 + 4 / 12, "feet"),
  20653. weight: math.unit(600, "lb"),
  20654. name: "Back",
  20655. image: {
  20656. source: "./media/characters/dragonien/back.svg",
  20657. extra: 776 / 746,
  20658. bottom: 6.4 / 782.0616
  20659. }
  20660. },
  20661. foot: {
  20662. height: math.unit(1.54, "feet"),
  20663. name: "Foot",
  20664. image: {
  20665. source: "./media/characters/dragonien/foot.svg",
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(8 + 4 / 12, "feet"),
  20673. default: true
  20674. },
  20675. {
  20676. name: "Macro",
  20677. height: math.unit(200, "feet")
  20678. },
  20679. {
  20680. name: "Megamacro",
  20681. height: math.unit(1, "mile")
  20682. },
  20683. {
  20684. name: "Gigamacro",
  20685. height: math.unit(1000, "miles")
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(5 + 2 / 12, "feet"),
  20694. weight: math.unit(110, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/desta/front.svg",
  20698. extra: 767 / 726,
  20699. bottom: 11.7 / 779
  20700. }
  20701. },
  20702. back: {
  20703. height: math.unit(5 + 2 / 12, "feet"),
  20704. weight: math.unit(110, "lb"),
  20705. name: "Back",
  20706. image: {
  20707. source: "./media/characters/desta/back.svg",
  20708. extra: 777 / 728,
  20709. bottom: 6 / 784
  20710. }
  20711. },
  20712. frontAlt: {
  20713. height: math.unit(5 + 2 / 12, "feet"),
  20714. weight: math.unit(110, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/desta/front-alt.svg",
  20718. extra: 1482 / 1417
  20719. }
  20720. },
  20721. side: {
  20722. height: math.unit(5 + 2 / 12, "feet"),
  20723. weight: math.unit(110, "lb"),
  20724. name: "Side",
  20725. image: {
  20726. source: "./media/characters/desta/side.svg",
  20727. extra: 2579 / 2491,
  20728. bottom: 0.053
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Micro",
  20735. height: math.unit(6, "inches")
  20736. },
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(5 + 2 / 12, "feet"),
  20740. default: true
  20741. },
  20742. {
  20743. name: "Macro",
  20744. height: math.unit(62, "feet")
  20745. },
  20746. {
  20747. name: "Megamacro",
  20748. height: math.unit(1800, "feet")
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20754. {
  20755. front: {
  20756. height: math.unit(10, "feet"),
  20757. weight: math.unit(700, "lb"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/storm-alystar/front.svg",
  20761. extra: 2112 / 1898,
  20762. bottom: 0.034
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Micro",
  20769. height: math.unit(3.5, "inches")
  20770. },
  20771. {
  20772. name: "Normal",
  20773. height: math.unit(10, "feet"),
  20774. default: true
  20775. },
  20776. {
  20777. name: "Macro",
  20778. height: math.unit(400, "feet")
  20779. },
  20780. {
  20781. name: "Deific",
  20782. height: math.unit(60, "miles")
  20783. },
  20784. ]
  20785. ))
  20786. characterMakers.push(() => makeCharacter(
  20787. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20788. {
  20789. front: {
  20790. height: math.unit(2.35, "meters"),
  20791. weight: math.unit(119, "kg"),
  20792. name: "Front",
  20793. image: {
  20794. source: "./media/characters/ilia/front.svg",
  20795. extra: 1285 / 1255,
  20796. bottom: 0.06
  20797. }
  20798. },
  20799. },
  20800. [
  20801. {
  20802. name: "Normal",
  20803. height: math.unit(2.35, "meters")
  20804. },
  20805. {
  20806. name: "Macro",
  20807. height: math.unit(140, "meters"),
  20808. default: true
  20809. },
  20810. {
  20811. name: "Megamacro",
  20812. height: math.unit(100, "miles")
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20818. {
  20819. front: {
  20820. height: math.unit(6 + 5 / 12, "feet"),
  20821. weight: math.unit(190, "lb"),
  20822. name: "Front",
  20823. image: {
  20824. source: "./media/characters/kingdead/front.svg",
  20825. extra: 1228 / 1177
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Micro",
  20832. height: math.unit(7, "inches")
  20833. },
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(6 + 5 / 12, "feet")
  20837. },
  20838. {
  20839. name: "Macro",
  20840. height: math.unit(150, "feet"),
  20841. default: true
  20842. },
  20843. {
  20844. name: "Megamacro",
  20845. height: math.unit(200, "miles")
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(8, "feet"),
  20854. weight: math.unit(600, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/kyrehx/front.svg",
  20858. extra: 1195 / 1095,
  20859. bottom: 0.034
  20860. }
  20861. },
  20862. },
  20863. [
  20864. {
  20865. name: "Micro",
  20866. height: math.unit(2, "inches")
  20867. },
  20868. {
  20869. name: "Normal",
  20870. height: math.unit(8, "feet"),
  20871. default: true
  20872. },
  20873. {
  20874. name: "Macro",
  20875. height: math.unit(255, "feet")
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20881. {
  20882. front: {
  20883. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20884. weight: math.unit(184, "lb"),
  20885. name: "Front",
  20886. image: {
  20887. source: "./media/characters/xang/front.svg",
  20888. extra: 845 / 755
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20896. default: true
  20897. },
  20898. {
  20899. name: "Macro",
  20900. height: math.unit(0.935 * 146, "feet")
  20901. },
  20902. {
  20903. name: "Megamacro",
  20904. height: math.unit(0.935 * 3, "miles")
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20910. {
  20911. frontDressed: {
  20912. height: math.unit(5 + 7 / 12, "feet"),
  20913. weight: math.unit(140, "lb"),
  20914. name: "Front (Dressed)",
  20915. image: {
  20916. source: "./media/characters/doc-weardno/front-dressed.svg",
  20917. extra: 263 / 234
  20918. }
  20919. },
  20920. backDressed: {
  20921. height: math.unit(5 + 7 / 12, "feet"),
  20922. weight: math.unit(140, "lb"),
  20923. name: "Back (Dressed)",
  20924. image: {
  20925. source: "./media/characters/doc-weardno/back-dressed.svg",
  20926. extra: 266 / 238
  20927. }
  20928. },
  20929. front: {
  20930. height: math.unit(5 + 7 / 12, "feet"),
  20931. weight: math.unit(140, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/doc-weardno/front.svg",
  20935. extra: 254 / 233
  20936. }
  20937. },
  20938. },
  20939. [
  20940. {
  20941. name: "Micro",
  20942. height: math.unit(3, "inches")
  20943. },
  20944. {
  20945. name: "Normal",
  20946. height: math.unit(5 + 7 / 12, "feet"),
  20947. default: true
  20948. },
  20949. {
  20950. name: "Macro",
  20951. height: math.unit(25, "feet")
  20952. },
  20953. {
  20954. name: "Megamacro",
  20955. height: math.unit(2, "miles")
  20956. },
  20957. ]
  20958. ))
  20959. characterMakers.push(() => makeCharacter(
  20960. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20961. {
  20962. front: {
  20963. height: math.unit(6 + 2 / 12, "feet"),
  20964. weight: math.unit(153, "lb"),
  20965. name: "Front",
  20966. image: {
  20967. source: "./media/characters/seth-whilst/front.svg",
  20968. bottom: 0.07
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Micro",
  20975. height: math.unit(5, "inches")
  20976. },
  20977. {
  20978. name: "Normal",
  20979. height: math.unit(6 + 2 / 12, "feet"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20986. {
  20987. front: {
  20988. height: math.unit(3, "inches"),
  20989. weight: math.unit(8, "grams"),
  20990. name: "Front",
  20991. image: {
  20992. source: "./media/characters/pocket-jabari/front.svg",
  20993. extra: 1024 / 974,
  20994. bottom: 0.039
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Minimicro",
  21001. height: math.unit(8, "mm")
  21002. },
  21003. {
  21004. name: "Micro",
  21005. height: math.unit(3, "inches"),
  21006. default: true
  21007. },
  21008. {
  21009. name: "Normal",
  21010. height: math.unit(3, "feet")
  21011. },
  21012. ]
  21013. ))
  21014. characterMakers.push(() => makeCharacter(
  21015. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21016. {
  21017. frontDressed: {
  21018. height: math.unit(15, "feet"),
  21019. weight: math.unit(3280, "lb"),
  21020. name: "Front (Dressed)",
  21021. image: {
  21022. source: "./media/characters/sapphy/front-dressed.svg",
  21023. extra: 1951/1654,
  21024. bottom: 194/2145
  21025. },
  21026. form: "anthro",
  21027. default: true
  21028. },
  21029. backDressed: {
  21030. height: math.unit(15, "feet"),
  21031. weight: math.unit(3280, "lb"),
  21032. name: "Back (Dressed)",
  21033. image: {
  21034. source: "./media/characters/sapphy/back-dressed.svg",
  21035. extra: 2058/1918,
  21036. bottom: 125/2183
  21037. },
  21038. form: "anthro"
  21039. },
  21040. frontNude: {
  21041. height: math.unit(15, "feet"),
  21042. weight: math.unit(3280, "lb"),
  21043. name: "Front (Nude)",
  21044. image: {
  21045. source: "./media/characters/sapphy/front-nude.svg",
  21046. extra: 1951/1654,
  21047. bottom: 194/2145
  21048. },
  21049. form: "anthro"
  21050. },
  21051. backNude: {
  21052. height: math.unit(15, "feet"),
  21053. weight: math.unit(3280, "lb"),
  21054. name: "Back (Nude)",
  21055. image: {
  21056. source: "./media/characters/sapphy/back-nude.svg",
  21057. extra: 2058/1918,
  21058. bottom: 125/2183
  21059. },
  21060. form: "anthro"
  21061. },
  21062. full: {
  21063. height: math.unit(15, "feet"),
  21064. weight: math.unit(3280, "lb"),
  21065. name: "Full",
  21066. image: {
  21067. source: "./media/characters/sapphy/full.svg",
  21068. extra: 1396/1317,
  21069. bottom: 44/1440
  21070. },
  21071. form: "anthro"
  21072. },
  21073. dick: {
  21074. height: math.unit(3.8, "feet"),
  21075. name: "Dick",
  21076. image: {
  21077. source: "./media/characters/sapphy/dick.svg"
  21078. },
  21079. form: "anthro"
  21080. },
  21081. feral: {
  21082. height: math.unit(35, "feet"),
  21083. weight: math.unit(160, "tons"),
  21084. name: "Feral",
  21085. image: {
  21086. source: "./media/characters/sapphy/feral.svg",
  21087. extra: 1050/573,
  21088. bottom: 60/1110
  21089. },
  21090. form: "feral",
  21091. default: true
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(15, "feet"),
  21098. form: "anthro"
  21099. },
  21100. {
  21101. name: "Casual Macro",
  21102. height: math.unit(120, "feet"),
  21103. form: "anthro"
  21104. },
  21105. {
  21106. name: "Macro",
  21107. height: math.unit(2150, "feet"),
  21108. default: true,
  21109. form: "anthro"
  21110. },
  21111. {
  21112. name: "Megamacro",
  21113. height: math.unit(8, "miles"),
  21114. form: "anthro"
  21115. },
  21116. {
  21117. name: "Galaxy Mom",
  21118. height: math.unit(6, "megalightyears"),
  21119. form: "anthro"
  21120. },
  21121. {
  21122. name: "Normal",
  21123. height: math.unit(35, "feet"),
  21124. form: "feral",
  21125. default: true
  21126. },
  21127. {
  21128. name: "Macro",
  21129. height: math.unit(300, "feet"),
  21130. form: "feral"
  21131. },
  21132. {
  21133. name: "Galaxy Mom",
  21134. height: math.unit(10, "megalightyears"),
  21135. form: "feral"
  21136. },
  21137. ],
  21138. {
  21139. "anthro": {
  21140. name: "Anthro",
  21141. default: true
  21142. },
  21143. "feral": {
  21144. name: "Feral"
  21145. }
  21146. }
  21147. ))
  21148. characterMakers.push(() => makeCharacter(
  21149. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21150. {
  21151. hyenaFront: {
  21152. height: math.unit(6, "feet"),
  21153. weight: math.unit(190, "lb"),
  21154. name: "Front",
  21155. image: {
  21156. source: "./media/characters/kiro/hyena-front.svg",
  21157. extra: 927/839,
  21158. bottom: 91/1018
  21159. },
  21160. form: "hyena",
  21161. default: true
  21162. },
  21163. front: {
  21164. height: math.unit(6, "feet"),
  21165. weight: math.unit(170, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/kiro/front.svg",
  21169. extra: 1064 / 1012,
  21170. bottom: 0.052
  21171. },
  21172. form: "folf",
  21173. default: true
  21174. },
  21175. },
  21176. [
  21177. {
  21178. name: "Micro",
  21179. height: math.unit(6, "inches"),
  21180. form: "folf"
  21181. },
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(6, "feet"),
  21185. form: "folf",
  21186. default: true
  21187. },
  21188. {
  21189. name: "Macro",
  21190. height: math.unit(72, "feet"),
  21191. form: "folf"
  21192. },
  21193. {
  21194. name: "Micro",
  21195. height: math.unit(6, "inches"),
  21196. form: "hyena"
  21197. },
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(6, "feet"),
  21201. form: "hyena",
  21202. default: true
  21203. },
  21204. {
  21205. name: "Macro",
  21206. height: math.unit(72, "feet"),
  21207. form: "hyena"
  21208. },
  21209. ],
  21210. {
  21211. "hyena": {
  21212. name: "Hyena",
  21213. default: true
  21214. },
  21215. "folf": {
  21216. name: "Folf",
  21217. },
  21218. }
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(5 + 9 / 12, "feet"),
  21225. weight: math.unit(175, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/irishfox/front.svg",
  21229. extra: 1912 / 1680,
  21230. bottom: 0.02
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Nano",
  21237. height: math.unit(1, "mm")
  21238. },
  21239. {
  21240. name: "Micro",
  21241. height: math.unit(2, "inches")
  21242. },
  21243. {
  21244. name: "Normal",
  21245. height: math.unit(5 + 9 / 12, "feet"),
  21246. default: true
  21247. },
  21248. {
  21249. name: "Macro",
  21250. height: math.unit(45, "feet")
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(6 + 1 / 12, "feet"),
  21259. weight: math.unit(75, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/aronai-sieyes/front.svg",
  21263. extra: 1532/1450,
  21264. bottom: 42/1574
  21265. }
  21266. },
  21267. side: {
  21268. height: math.unit(6 + 1 / 12, "feet"),
  21269. weight: math.unit(75, "lb"),
  21270. name: "Side",
  21271. image: {
  21272. source: "./media/characters/aronai-sieyes/side.svg",
  21273. extra: 1422/1365,
  21274. bottom: 148/1570
  21275. }
  21276. },
  21277. back: {
  21278. height: math.unit(6 + 1 / 12, "feet"),
  21279. weight: math.unit(75, "lb"),
  21280. name: "Back",
  21281. image: {
  21282. source: "./media/characters/aronai-sieyes/back.svg",
  21283. extra: 1526/1464,
  21284. bottom: 51/1577
  21285. }
  21286. },
  21287. dressed: {
  21288. height: math.unit(6 + 1 / 12, "feet"),
  21289. weight: math.unit(75, "lb"),
  21290. name: "Dressed",
  21291. image: {
  21292. source: "./media/characters/aronai-sieyes/dressed.svg",
  21293. extra: 1559/1483,
  21294. bottom: 39/1598
  21295. }
  21296. },
  21297. slit: {
  21298. height: math.unit(1.3, "feet"),
  21299. name: "Slit",
  21300. image: {
  21301. source: "./media/characters/aronai-sieyes/slit.svg"
  21302. }
  21303. },
  21304. slitSpread: {
  21305. height: math.unit(0.9, "feet"),
  21306. name: "Slit (Spread)",
  21307. image: {
  21308. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21309. }
  21310. },
  21311. rump: {
  21312. height: math.unit(1.3, "feet"),
  21313. name: "Rump",
  21314. image: {
  21315. source: "./media/characters/aronai-sieyes/rump.svg"
  21316. }
  21317. },
  21318. maw: {
  21319. height: math.unit(1.25, "feet"),
  21320. name: "Maw",
  21321. image: {
  21322. source: "./media/characters/aronai-sieyes/maw.svg"
  21323. }
  21324. },
  21325. feral: {
  21326. height: math.unit(18, "feet"),
  21327. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21328. name: "Feral",
  21329. image: {
  21330. source: "./media/characters/aronai-sieyes/feral.svg",
  21331. extra: 1530 / 1240,
  21332. bottom: 0.035
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Micro",
  21339. height: math.unit(2, "inches")
  21340. },
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(6 + 1 / 12, "feet"),
  21344. default: true
  21345. }
  21346. ]
  21347. ))
  21348. characterMakers.push(() => makeCharacter(
  21349. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21350. {
  21351. front: {
  21352. height: math.unit(12, "feet"),
  21353. weight: math.unit(410, "kg"),
  21354. name: "Front",
  21355. image: {
  21356. source: "./media/characters/xuna/front.svg",
  21357. extra: 2184 / 1980
  21358. }
  21359. },
  21360. side: {
  21361. height: math.unit(12, "feet"),
  21362. weight: math.unit(410, "kg"),
  21363. name: "Side",
  21364. image: {
  21365. source: "./media/characters/xuna/side.svg",
  21366. extra: 2184 / 1980
  21367. }
  21368. },
  21369. back: {
  21370. height: math.unit(12, "feet"),
  21371. weight: math.unit(410, "kg"),
  21372. name: "Back",
  21373. image: {
  21374. source: "./media/characters/xuna/back.svg",
  21375. extra: 2184 / 1980
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Nano glow",
  21382. height: math.unit(10, "nm")
  21383. },
  21384. {
  21385. name: "Micro floof",
  21386. height: math.unit(0.3, "m")
  21387. },
  21388. {
  21389. name: "Huggable softy boi",
  21390. height: math.unit(3.6576, "m"),
  21391. default: true
  21392. },
  21393. {
  21394. name: "Admirable floof",
  21395. height: math.unit(80, "meters")
  21396. },
  21397. {
  21398. name: "Gentle macro",
  21399. height: math.unit(300, "meters")
  21400. },
  21401. {
  21402. name: "Very careful floof",
  21403. height: math.unit(3200, "meters")
  21404. },
  21405. {
  21406. name: "The mega floof",
  21407. height: math.unit(36000, "meters")
  21408. },
  21409. {
  21410. name: "Giga-fur-Wicker",
  21411. height: math.unit(4800000, "meters")
  21412. },
  21413. {
  21414. name: "Licky world",
  21415. height: math.unit(20000000, "meters")
  21416. },
  21417. {
  21418. name: "Floofy cyan sun",
  21419. height: math.unit(1500000000, "meters")
  21420. },
  21421. {
  21422. name: "Milky Wicker",
  21423. height: math.unit(1000000000000000000000, "meters")
  21424. },
  21425. {
  21426. name: "The observing Wicker",
  21427. height: math.unit(999999999999999999999999999, "meters")
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(5 + 9 / 12, "feet"),
  21436. weight: math.unit(150, "lb"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/arokha-sieyes/front.svg",
  21440. extra: 1425 / 1284,
  21441. bottom: 0.05
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "Normal",
  21448. height: math.unit(5 + 9 / 12, "feet")
  21449. },
  21450. {
  21451. name: "Macro",
  21452. height: math.unit(30, "meters"),
  21453. default: true
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21459. {
  21460. front: {
  21461. height: math.unit(6, "feet"),
  21462. weight: math.unit(180, "lb"),
  21463. name: "Front",
  21464. image: {
  21465. source: "./media/characters/arokh-sieyes/front.svg",
  21466. extra: 1830 / 1769,
  21467. bottom: 0.01
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Normal",
  21474. height: math.unit(6, "feet")
  21475. },
  21476. {
  21477. name: "Macro",
  21478. height: math.unit(30, "meters"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21485. {
  21486. side: {
  21487. height: math.unit(13 + 1 / 12, "feet"),
  21488. weight: math.unit(8.5, "tonnes"),
  21489. preyCapacity: math.unit(36, "people"),
  21490. name: "Side",
  21491. image: {
  21492. source: "./media/characters/goldeneye/side.svg",
  21493. extra: 1139/741,
  21494. bottom: 98/1237
  21495. }
  21496. },
  21497. front: {
  21498. height: math.unit(5.1, "feet"),
  21499. weight: math.unit(8.5, "tonnes"),
  21500. preyCapacity: math.unit(36, "people"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/goldeneye/front.svg",
  21504. extra: 635/365,
  21505. bottom: 598/1233
  21506. }
  21507. },
  21508. maw: {
  21509. height: math.unit(6.6, "feet"),
  21510. name: "Maw",
  21511. image: {
  21512. source: "./media/characters/goldeneye/maw.svg"
  21513. }
  21514. },
  21515. headFront: {
  21516. height: math.unit(8, "feet"),
  21517. name: "Head (Front)",
  21518. image: {
  21519. source: "./media/characters/goldeneye/head-front.svg"
  21520. }
  21521. },
  21522. headSide: {
  21523. height: math.unit(6, "feet"),
  21524. name: "Head (Side)",
  21525. image: {
  21526. source: "./media/characters/goldeneye/head-side.svg"
  21527. }
  21528. },
  21529. headBack: {
  21530. height: math.unit(8, "feet"),
  21531. name: "Head (Back)",
  21532. image: {
  21533. source: "./media/characters/goldeneye/head-back.svg"
  21534. }
  21535. },
  21536. paw: {
  21537. height: math.unit(3.4, "feet"),
  21538. name: "Paw",
  21539. image: {
  21540. source: "./media/characters/goldeneye/paw.svg"
  21541. }
  21542. },
  21543. toering: {
  21544. height: math.unit(0.45, "feet"),
  21545. name: "Toering",
  21546. image: {
  21547. source: "./media/characters/goldeneye/toering.svg"
  21548. }
  21549. },
  21550. eyes: {
  21551. height: math.unit(0.5, "feet"),
  21552. name: "Eyes",
  21553. image: {
  21554. source: "./media/characters/goldeneye/eyes.svg"
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(13 + 1 / 12, "feet"),
  21562. default: true
  21563. },
  21564. ]
  21565. ))
  21566. characterMakers.push(() => makeCharacter(
  21567. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21568. {
  21569. front: {
  21570. height: math.unit(6 + 1 / 12, "feet"),
  21571. weight: math.unit(210, "lb"),
  21572. name: "Front",
  21573. image: {
  21574. source: "./media/characters/leonardo-lycheborne/front.svg",
  21575. extra: 776/723,
  21576. bottom: 34/810
  21577. }
  21578. },
  21579. side: {
  21580. height: math.unit(6 + 1 / 12, "feet"),
  21581. weight: math.unit(210, "lb"),
  21582. name: "Side",
  21583. image: {
  21584. source: "./media/characters/leonardo-lycheborne/side.svg",
  21585. extra: 780/728,
  21586. bottom: 12/792
  21587. }
  21588. },
  21589. back: {
  21590. height: math.unit(6 + 1 / 12, "feet"),
  21591. weight: math.unit(210, "lb"),
  21592. name: "Back",
  21593. image: {
  21594. source: "./media/characters/leonardo-lycheborne/back.svg",
  21595. extra: 775/721,
  21596. bottom: 17/792
  21597. }
  21598. },
  21599. hand: {
  21600. height: math.unit(1.08, "feet"),
  21601. name: "Hand",
  21602. image: {
  21603. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21604. }
  21605. },
  21606. foot: {
  21607. height: math.unit(1.32, "feet"),
  21608. name: "Foot",
  21609. image: {
  21610. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21611. }
  21612. },
  21613. maw: {
  21614. height: math.unit(1, "feet"),
  21615. name: "Maw",
  21616. image: {
  21617. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21618. }
  21619. },
  21620. were: {
  21621. height: math.unit(20, "feet"),
  21622. weight: math.unit(7800, "lb"),
  21623. name: "Were",
  21624. image: {
  21625. source: "./media/characters/leonardo-lycheborne/were.svg",
  21626. extra: 1224/1165,
  21627. bottom: 72/1296
  21628. }
  21629. },
  21630. feral: {
  21631. height: math.unit(7.5, "feet"),
  21632. weight: math.unit(600, "lb"),
  21633. name: "Feral",
  21634. image: {
  21635. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21636. extra: 797/702,
  21637. bottom: 139/936
  21638. }
  21639. },
  21640. taur: {
  21641. height: math.unit(11, "feet"),
  21642. weight: math.unit(3300, "lb"),
  21643. name: "Taur",
  21644. image: {
  21645. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21646. extra: 1271/1197,
  21647. bottom: 47/1318
  21648. }
  21649. },
  21650. barghest: {
  21651. height: math.unit(11, "feet"),
  21652. weight: math.unit(1300, "lb"),
  21653. name: "Barghest",
  21654. image: {
  21655. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21656. extra: 1291/1204,
  21657. bottom: 37/1328
  21658. }
  21659. },
  21660. dick: {
  21661. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21662. name: "Dick",
  21663. image: {
  21664. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21665. }
  21666. },
  21667. dickWere: {
  21668. height: math.unit((20) / 3.8, "feet"),
  21669. name: "Dick (Were)",
  21670. image: {
  21671. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21672. }
  21673. },
  21674. },
  21675. [
  21676. {
  21677. name: "Normal",
  21678. height: math.unit(6 + 1 / 12, "feet"),
  21679. default: true
  21680. },
  21681. ]
  21682. ))
  21683. characterMakers.push(() => makeCharacter(
  21684. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21685. {
  21686. front: {
  21687. height: math.unit(10, "feet"),
  21688. weight: math.unit(350, "lb"),
  21689. name: "Front",
  21690. image: {
  21691. source: "./media/characters/jet/front.svg",
  21692. extra: 2050 / 1980,
  21693. bottom: 0.013
  21694. }
  21695. },
  21696. back: {
  21697. height: math.unit(10, "feet"),
  21698. weight: math.unit(350, "lb"),
  21699. name: "Back",
  21700. image: {
  21701. source: "./media/characters/jet/back.svg",
  21702. extra: 2050 / 1980,
  21703. bottom: 0.013
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Micro",
  21710. height: math.unit(6, "inches")
  21711. },
  21712. {
  21713. name: "Normal",
  21714. height: math.unit(10, "feet"),
  21715. default: true
  21716. },
  21717. {
  21718. name: "Macro",
  21719. height: math.unit(100, "feet")
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(15, "feet"),
  21728. weight: math.unit(2800, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/tanarath/front.svg",
  21732. extra: 2392 / 2220,
  21733. bottom: 0.03
  21734. }
  21735. },
  21736. back: {
  21737. height: math.unit(15, "feet"),
  21738. weight: math.unit(2800, "lb"),
  21739. name: "Back",
  21740. image: {
  21741. source: "./media/characters/tanarath/back.svg",
  21742. extra: 2392 / 2220,
  21743. bottom: 0.03
  21744. }
  21745. },
  21746. },
  21747. [
  21748. {
  21749. name: "Normal",
  21750. height: math.unit(15, "feet"),
  21751. default: true
  21752. },
  21753. ]
  21754. ))
  21755. characterMakers.push(() => makeCharacter(
  21756. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21757. {
  21758. front: {
  21759. height: math.unit(7 + 1 / 12, "feet"),
  21760. weight: math.unit(175, "lb"),
  21761. name: "Front",
  21762. image: {
  21763. source: "./media/characters/patty-cattybatty/front.svg",
  21764. extra: 908 / 874,
  21765. bottom: 0.025
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Micro",
  21772. height: math.unit(1, "inch")
  21773. },
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(7 + 1 / 12, "feet")
  21777. },
  21778. {
  21779. name: "Mini Macro",
  21780. height: math.unit(155, "feet")
  21781. },
  21782. {
  21783. name: "Macro",
  21784. height: math.unit(1077, "feet")
  21785. },
  21786. {
  21787. name: "Mega Macro",
  21788. height: math.unit(47650, "feet"),
  21789. default: true
  21790. },
  21791. {
  21792. name: "Giga Macro",
  21793. height: math.unit(440, "miles")
  21794. },
  21795. {
  21796. name: "Tera Macro",
  21797. height: math.unit(8700, "miles")
  21798. },
  21799. {
  21800. name: "Planetary Macro",
  21801. height: math.unit(32700, "miles")
  21802. },
  21803. {
  21804. name: "Solar Macro",
  21805. height: math.unit(550000, "miles")
  21806. },
  21807. {
  21808. name: "Celestial Macro",
  21809. height: math.unit(2.5, "AU")
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21815. {
  21816. front: {
  21817. height: math.unit(4 + 5 / 12, "feet"),
  21818. weight: math.unit(90, "lb"),
  21819. name: "Front",
  21820. image: {
  21821. source: "./media/characters/cappu/front.svg",
  21822. extra: 1247 / 1152,
  21823. bottom: 0.012
  21824. }
  21825. },
  21826. },
  21827. [
  21828. {
  21829. name: "Normal",
  21830. height: math.unit(4 + 5 / 12, "feet"),
  21831. default: true
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21837. {
  21838. frontDressed: {
  21839. height: math.unit(70, "cm"),
  21840. weight: math.unit(6, "kg"),
  21841. name: "Front (Dressed)",
  21842. image: {
  21843. source: "./media/characters/sebi/front-dressed.svg",
  21844. extra: 713.5 / 686.5,
  21845. bottom: 0.003
  21846. }
  21847. },
  21848. front: {
  21849. height: math.unit(70, "cm"),
  21850. weight: math.unit(5, "kg"),
  21851. name: "Front",
  21852. image: {
  21853. source: "./media/characters/sebi/front.svg",
  21854. extra: 713.5 / 686.5,
  21855. bottom: 0.003
  21856. }
  21857. }
  21858. },
  21859. [
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(70, "cm"),
  21863. default: true
  21864. },
  21865. {
  21866. name: "Macro",
  21867. height: math.unit(8, "meters")
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21873. {
  21874. front: {
  21875. height: math.unit(6, "feet"),
  21876. weight: math.unit(150, "lb"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/typhek/front.svg",
  21880. extra: 1948 / 1929,
  21881. bottom: 0.025
  21882. }
  21883. },
  21884. side: {
  21885. height: math.unit(6, "feet"),
  21886. weight: math.unit(150, "lb"),
  21887. name: "Side",
  21888. image: {
  21889. source: "./media/characters/typhek/side.svg",
  21890. extra: 2034 / 2010,
  21891. bottom: 0.003
  21892. }
  21893. },
  21894. back: {
  21895. height: math.unit(6, "feet"),
  21896. weight: math.unit(150, "lb"),
  21897. name: "Back",
  21898. image: {
  21899. source: "./media/characters/typhek/back.svg",
  21900. extra: 2005 / 1978,
  21901. bottom: 0.004
  21902. }
  21903. },
  21904. palm: {
  21905. height: math.unit(1.2, "feet"),
  21906. name: "Palm",
  21907. image: {
  21908. source: "./media/characters/typhek/palm.svg"
  21909. }
  21910. },
  21911. fist: {
  21912. height: math.unit(1.1, "feet"),
  21913. name: "Fist",
  21914. image: {
  21915. source: "./media/characters/typhek/fist.svg"
  21916. }
  21917. },
  21918. foot: {
  21919. height: math.unit(1.57, "feet"),
  21920. name: "Foot",
  21921. image: {
  21922. source: "./media/characters/typhek/foot.svg"
  21923. }
  21924. },
  21925. sole: {
  21926. height: math.unit(2.05, "feet"),
  21927. name: "Sole",
  21928. image: {
  21929. source: "./media/characters/typhek/sole.svg"
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Macro",
  21936. height: math.unit(40, "stories"),
  21937. default: true
  21938. },
  21939. {
  21940. name: "Megamacro",
  21941. height: math.unit(1, "mile")
  21942. },
  21943. {
  21944. name: "Gigamacro",
  21945. height: math.unit(4000, "solarradii")
  21946. },
  21947. {
  21948. name: "Universal",
  21949. height: math.unit(1.1, "universes")
  21950. }
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21955. {
  21956. side: {
  21957. height: math.unit(5 + 7 / 12, "feet"),
  21958. weight: math.unit(150, "lb"),
  21959. name: "Side",
  21960. image: {
  21961. source: "./media/characters/kassy/side.svg",
  21962. extra: 1280 / 1225,
  21963. bottom: 0.002
  21964. }
  21965. },
  21966. front: {
  21967. height: math.unit(5 + 7 / 12, "feet"),
  21968. weight: math.unit(150, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/kassy/front.svg",
  21972. extra: 1280 / 1225,
  21973. bottom: 0.025
  21974. }
  21975. },
  21976. back: {
  21977. height: math.unit(5 + 7 / 12, "feet"),
  21978. weight: math.unit(150, "lb"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/kassy/back.svg",
  21982. extra: 1280 / 1225,
  21983. bottom: 0.002
  21984. }
  21985. },
  21986. foot: {
  21987. height: math.unit(1.266, "feet"),
  21988. name: "Foot",
  21989. image: {
  21990. source: "./media/characters/kassy/foot.svg"
  21991. }
  21992. },
  21993. },
  21994. [
  21995. {
  21996. name: "Normal",
  21997. height: math.unit(5 + 7 / 12, "feet")
  21998. },
  21999. {
  22000. name: "Macro",
  22001. height: math.unit(137, "feet"),
  22002. default: true
  22003. },
  22004. {
  22005. name: "Megamacro",
  22006. height: math.unit(1, "mile")
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22012. {
  22013. front: {
  22014. height: math.unit(6 + 1 / 12, "feet"),
  22015. weight: math.unit(200, "lb"),
  22016. name: "Front",
  22017. image: {
  22018. source: "./media/characters/neil/front.svg",
  22019. extra: 1326 / 1250,
  22020. bottom: 0.023
  22021. }
  22022. },
  22023. },
  22024. [
  22025. {
  22026. name: "Normal",
  22027. height: math.unit(6 + 1 / 12, "feet"),
  22028. default: true
  22029. },
  22030. {
  22031. name: "Macro",
  22032. height: math.unit(200, "feet")
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(5 + 9 / 12, "feet"),
  22041. weight: math.unit(190, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/atticus/front.svg",
  22045. extra: 2934 / 2785,
  22046. bottom: 0.025
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(5 + 9 / 12, "feet"),
  22054. default: true
  22055. },
  22056. {
  22057. name: "Macro",
  22058. height: math.unit(180, "feet")
  22059. },
  22060. ]
  22061. ))
  22062. characterMakers.push(() => makeCharacter(
  22063. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22064. {
  22065. side: {
  22066. height: math.unit(9, "feet"),
  22067. weight: math.unit(650, "lb"),
  22068. name: "Side",
  22069. image: {
  22070. source: "./media/characters/milo/side.svg",
  22071. extra: 2644 / 2310,
  22072. bottom: 0.032
  22073. }
  22074. },
  22075. },
  22076. [
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(9, "feet"),
  22080. default: true
  22081. },
  22082. {
  22083. name: "Macro",
  22084. height: math.unit(300, "feet")
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22090. {
  22091. side: {
  22092. height: math.unit(8, "meters"),
  22093. weight: math.unit(90000, "kg"),
  22094. name: "Side",
  22095. image: {
  22096. source: "./media/characters/ijzer/side.svg",
  22097. extra: 2756 / 1600,
  22098. bottom: 0.01
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Small",
  22105. height: math.unit(3, "meters")
  22106. },
  22107. {
  22108. name: "Normal",
  22109. height: math.unit(8, "meters"),
  22110. default: true
  22111. },
  22112. {
  22113. name: "Normal+",
  22114. height: math.unit(10, "meters")
  22115. },
  22116. {
  22117. name: "Bigger",
  22118. height: math.unit(24, "meters")
  22119. },
  22120. {
  22121. name: "Huge",
  22122. height: math.unit(80, "meters")
  22123. },
  22124. ]
  22125. ))
  22126. characterMakers.push(() => makeCharacter(
  22127. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22128. {
  22129. front: {
  22130. height: math.unit(6 + 2 / 12, "feet"),
  22131. weight: math.unit(153, "lb"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/luca-cervicum/front.svg",
  22135. extra: 370 / 327,
  22136. bottom: 0.015
  22137. }
  22138. },
  22139. back: {
  22140. height: math.unit(6 + 2 / 12, "feet"),
  22141. weight: math.unit(153, "lb"),
  22142. name: "Back",
  22143. image: {
  22144. source: "./media/characters/luca-cervicum/back.svg",
  22145. extra: 367 / 333,
  22146. bottom: 0.005
  22147. }
  22148. },
  22149. frontGear: {
  22150. height: math.unit(6 + 2 / 12, "feet"),
  22151. weight: math.unit(173, "lb"),
  22152. name: "Front (Gear)",
  22153. image: {
  22154. source: "./media/characters/luca-cervicum/front-gear.svg",
  22155. extra: 377 / 333,
  22156. bottom: 0.006
  22157. }
  22158. },
  22159. },
  22160. [
  22161. {
  22162. name: "Normal",
  22163. height: math.unit(6 + 2 / 12, "feet"),
  22164. default: true
  22165. },
  22166. ]
  22167. ))
  22168. characterMakers.push(() => makeCharacter(
  22169. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22170. {
  22171. front: {
  22172. height: math.unit(6 + 1 / 12, "feet"),
  22173. weight: math.unit(304, "lb"),
  22174. name: "Front",
  22175. image: {
  22176. source: "./media/characters/oliver/front.svg",
  22177. extra: 157 / 143,
  22178. bottom: 0.08
  22179. }
  22180. },
  22181. },
  22182. [
  22183. {
  22184. name: "Normal",
  22185. height: math.unit(6 + 1 / 12, "feet"),
  22186. default: true
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(5 + 7 / 12, "feet"),
  22195. weight: math.unit(140, "lb"),
  22196. name: "Front",
  22197. image: {
  22198. source: "./media/characters/shane/front.svg",
  22199. extra: 304 / 289,
  22200. bottom: 0.005
  22201. }
  22202. },
  22203. },
  22204. [
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(5 + 7 / 12, "feet"),
  22208. default: true
  22209. },
  22210. ]
  22211. ))
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22214. {
  22215. front: {
  22216. height: math.unit(5 + 9 / 12, "feet"),
  22217. weight: math.unit(178, "lb"),
  22218. name: "Front",
  22219. image: {
  22220. source: "./media/characters/shin/front.svg",
  22221. extra: 159 / 151,
  22222. bottom: 0.015
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Normal",
  22229. height: math.unit(5 + 9 / 12, "feet"),
  22230. default: true
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22236. {
  22237. front: {
  22238. height: math.unit(5 + 10 / 12, "feet"),
  22239. weight: math.unit(168, "lb"),
  22240. name: "Front",
  22241. image: {
  22242. source: "./media/characters/xerxes/front.svg",
  22243. extra: 282 / 260,
  22244. bottom: 0.045
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Normal",
  22251. height: math.unit(5 + 10 / 12, "feet"),
  22252. default: true
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(6 + 7 / 12, "feet"),
  22261. weight: math.unit(208, "lb"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/chaska/front.svg",
  22265. extra: 332 / 319,
  22266. bottom: 0.015
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Normal",
  22273. height: math.unit(6 + 7 / 12, "feet"),
  22274. default: true
  22275. },
  22276. ]
  22277. ))
  22278. characterMakers.push(() => makeCharacter(
  22279. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22280. {
  22281. front: {
  22282. height: math.unit(5 + 8 / 12, "feet"),
  22283. weight: math.unit(208, "lb"),
  22284. name: "Front",
  22285. image: {
  22286. source: "./media/characters/enuk/front.svg",
  22287. extra: 437 / 406,
  22288. bottom: 0.02
  22289. }
  22290. },
  22291. },
  22292. [
  22293. {
  22294. name: "Normal",
  22295. height: math.unit(5 + 8 / 12, "feet"),
  22296. default: true
  22297. },
  22298. ]
  22299. ))
  22300. characterMakers.push(() => makeCharacter(
  22301. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22302. {
  22303. front: {
  22304. height: math.unit(5 + 10 / 12, "feet"),
  22305. weight: math.unit(252, "lb"),
  22306. name: "Front",
  22307. image: {
  22308. source: "./media/characters/bruun/front.svg",
  22309. extra: 197 / 187,
  22310. bottom: 0.012
  22311. }
  22312. },
  22313. },
  22314. [
  22315. {
  22316. name: "Normal",
  22317. height: math.unit(5 + 10 / 12, "feet"),
  22318. default: true
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22324. {
  22325. front: {
  22326. height: math.unit(6 + 10 / 12, "feet"),
  22327. weight: math.unit(255, "lb"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/alexeev/front.svg",
  22331. extra: 213 / 200,
  22332. bottom: 0.05
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(6 + 10 / 12, "feet"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(2 + 8 / 12, "feet"),
  22349. weight: math.unit(22, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/evelyn/front.svg",
  22353. extra: 208 / 180
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Normal",
  22360. height: math.unit(2 + 8 / 12, "feet"),
  22361. default: true
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(5 + 9 / 12, "feet"),
  22370. weight: math.unit(139, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/inca/front.svg",
  22374. extra: 294 / 291,
  22375. bottom: 0.03
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Normal",
  22382. height: math.unit(5 + 9 / 12, "feet"),
  22383. default: true
  22384. },
  22385. ]
  22386. ))
  22387. characterMakers.push(() => makeCharacter(
  22388. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22389. {
  22390. front: {
  22391. height: math.unit(6 + 3 / 12, "feet"),
  22392. weight: math.unit(185, "lb"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/mera/front.svg",
  22396. extra: 291 / 277,
  22397. bottom: 0.03
  22398. }
  22399. },
  22400. },
  22401. [
  22402. {
  22403. name: "Normal",
  22404. height: math.unit(6 + 3 / 12, "feet"),
  22405. default: true
  22406. },
  22407. ]
  22408. ))
  22409. characterMakers.push(() => makeCharacter(
  22410. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22411. {
  22412. front: {
  22413. height: math.unit(6 + 7 / 12, "feet"),
  22414. weight: math.unit(160, "lb"),
  22415. name: "Front",
  22416. image: {
  22417. source: "./media/characters/ceres/front.svg",
  22418. extra: 1023 / 950,
  22419. bottom: 0.027
  22420. }
  22421. },
  22422. back: {
  22423. height: math.unit(6 + 7 / 12, "feet"),
  22424. weight: math.unit(160, "lb"),
  22425. name: "Back",
  22426. image: {
  22427. source: "./media/characters/ceres/back.svg",
  22428. extra: 1023 / 950
  22429. }
  22430. },
  22431. },
  22432. [
  22433. {
  22434. name: "Normal",
  22435. height: math.unit(6 + 7 / 12, "feet"),
  22436. default: true
  22437. },
  22438. ]
  22439. ))
  22440. characterMakers.push(() => makeCharacter(
  22441. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22442. {
  22443. front: {
  22444. height: math.unit(5 + 10 / 12, "feet"),
  22445. weight: math.unit(150, "lb"),
  22446. name: "Front",
  22447. image: {
  22448. source: "./media/characters/kris/front.svg",
  22449. extra: 885 / 803,
  22450. bottom: 0.03
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Normal",
  22457. height: math.unit(5 + 10 / 12, "feet"),
  22458. default: true
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22464. {
  22465. dragon_front: {
  22466. height: math.unit(5, "feet"),
  22467. name: "Front",
  22468. image: {
  22469. source: "./media/characters/taluthus/dragon-front.svg",
  22470. extra: 1203/1098,
  22471. bottom: 46/1249
  22472. },
  22473. form: "dragon",
  22474. default: true
  22475. },
  22476. dragon_maw: {
  22477. height: math.unit(2.35, "feet"),
  22478. name: "Maw",
  22479. image: {
  22480. source: "./media/characters/taluthus/dragon-maw.svg"
  22481. },
  22482. form: "dragon",
  22483. },
  22484. kitsune_front: {
  22485. height: math.unit(7, "feet"),
  22486. name: "Front",
  22487. image: {
  22488. source: "./media/characters/taluthus/kitsune-front.svg",
  22489. extra: 900/841,
  22490. bottom: 65/965
  22491. },
  22492. form: "kitsune",
  22493. default: true
  22494. },
  22495. },
  22496. [
  22497. {
  22498. name: "Normal",
  22499. height: math.unit(5, "feet"),
  22500. form: "dragon",
  22501. default: true,
  22502. },
  22503. {
  22504. name: "Normal",
  22505. height: math.unit(7, "feet"),
  22506. form: "kitsune",
  22507. default: true
  22508. },
  22509. {
  22510. name: "Macro",
  22511. height: math.unit(300, "feet"),
  22512. allForms: true
  22513. },
  22514. ],
  22515. {
  22516. "dragon": {
  22517. name: "Dragon",
  22518. default: true
  22519. },
  22520. "kitsune": {
  22521. name: "Kitsune",
  22522. },
  22523. }
  22524. ))
  22525. characterMakers.push(() => makeCharacter(
  22526. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22527. {
  22528. front: {
  22529. height: math.unit(5 + 9 / 12, "feet"),
  22530. weight: math.unit(145, "lb"),
  22531. name: "Front",
  22532. image: {
  22533. source: "./media/characters/dawn/front.svg",
  22534. extra: 2094 / 2016,
  22535. bottom: 0.025
  22536. }
  22537. },
  22538. back: {
  22539. height: math.unit(5 + 9 / 12, "feet"),
  22540. weight: math.unit(160, "lb"),
  22541. name: "Back",
  22542. image: {
  22543. source: "./media/characters/dawn/back.svg",
  22544. extra: 2112 / 2080,
  22545. bottom: 0.005
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Normal",
  22552. height: math.unit(6 + 7 / 12, "feet"),
  22553. default: true
  22554. },
  22555. ]
  22556. ))
  22557. characterMakers.push(() => makeCharacter(
  22558. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22559. {
  22560. anthro: {
  22561. height: math.unit(8 + 3 / 12, "feet"),
  22562. weight: math.unit(450, "lb"),
  22563. name: "Anthro",
  22564. image: {
  22565. source: "./media/characters/arador/anthro.svg",
  22566. extra: 1835 / 1718,
  22567. bottom: 0.025
  22568. }
  22569. },
  22570. feral: {
  22571. height: math.unit(4, "feet"),
  22572. weight: math.unit(200, "lb"),
  22573. name: "Feral",
  22574. image: {
  22575. source: "./media/characters/arador/feral.svg",
  22576. extra: 1683 / 1514,
  22577. bottom: 0.07
  22578. }
  22579. },
  22580. },
  22581. [
  22582. {
  22583. name: "Normal",
  22584. height: math.unit(8 + 3 / 12, "feet")
  22585. },
  22586. {
  22587. name: "Macro",
  22588. height: math.unit(82.5, "feet"),
  22589. default: true
  22590. },
  22591. ]
  22592. ))
  22593. characterMakers.push(() => makeCharacter(
  22594. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22595. {
  22596. front: {
  22597. height: math.unit(5 + 10 / 12, "feet"),
  22598. weight: math.unit(125, "lb"),
  22599. name: "Front",
  22600. image: {
  22601. source: "./media/characters/dharsi/front.svg",
  22602. extra: 716 / 630,
  22603. bottom: 0.035
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Nano",
  22610. height: math.unit(100, "nm")
  22611. },
  22612. {
  22613. name: "Micro",
  22614. height: math.unit(2, "inches")
  22615. },
  22616. {
  22617. name: "Normal",
  22618. height: math.unit(5 + 10 / 12, "feet"),
  22619. default: true
  22620. },
  22621. {
  22622. name: "Macro",
  22623. height: math.unit(1000, "feet")
  22624. },
  22625. {
  22626. name: "Megamacro",
  22627. height: math.unit(10, "miles")
  22628. },
  22629. {
  22630. name: "Gigamacro",
  22631. height: math.unit(3000, "miles")
  22632. },
  22633. {
  22634. name: "Teramacro",
  22635. height: math.unit(500000, "miles")
  22636. },
  22637. {
  22638. name: "Teramacro+",
  22639. height: math.unit(30, "galaxies")
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(6, "feet"),
  22648. weight: math.unit(150, "lb"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/deathy/front.svg",
  22652. extra: 1552 / 1463,
  22653. bottom: 0.025
  22654. }
  22655. },
  22656. side: {
  22657. height: math.unit(6, "feet"),
  22658. weight: math.unit(150, "lb"),
  22659. name: "Side",
  22660. image: {
  22661. source: "./media/characters/deathy/side.svg",
  22662. extra: 1604 / 1455,
  22663. bottom: 0.025
  22664. }
  22665. },
  22666. back: {
  22667. height: math.unit(6, "feet"),
  22668. weight: math.unit(150, "lb"),
  22669. name: "Back",
  22670. image: {
  22671. source: "./media/characters/deathy/back.svg",
  22672. extra: 1580 / 1463,
  22673. bottom: 0.005
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Micro",
  22680. height: math.unit(5, "millimeters")
  22681. },
  22682. {
  22683. name: "Normal",
  22684. height: math.unit(6 + 5 / 12, "feet"),
  22685. default: true
  22686. },
  22687. ]
  22688. ))
  22689. characterMakers.push(() => makeCharacter(
  22690. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22691. {
  22692. front: {
  22693. height: math.unit(16, "feet"),
  22694. weight: math.unit(4000, "lb"),
  22695. name: "Front",
  22696. image: {
  22697. source: "./media/characters/juniper/front.svg",
  22698. bottom: 0.04
  22699. }
  22700. },
  22701. },
  22702. [
  22703. {
  22704. name: "Normal",
  22705. height: math.unit(16, "feet"),
  22706. default: true
  22707. },
  22708. ]
  22709. ))
  22710. characterMakers.push(() => makeCharacter(
  22711. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22712. {
  22713. front: {
  22714. height: math.unit(6, "feet"),
  22715. weight: math.unit(150, "lb"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/hipster/front.svg",
  22719. extra: 1312 / 1209,
  22720. bottom: 0.025
  22721. }
  22722. },
  22723. back: {
  22724. height: math.unit(6, "feet"),
  22725. weight: math.unit(150, "lb"),
  22726. name: "Back",
  22727. image: {
  22728. source: "./media/characters/hipster/back.svg",
  22729. extra: 1281 / 1196,
  22730. bottom: 0.01
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Micro",
  22737. height: math.unit(1, "mm")
  22738. },
  22739. {
  22740. name: "Normal",
  22741. height: math.unit(4, "inches"),
  22742. default: true
  22743. },
  22744. {
  22745. name: "Macro",
  22746. height: math.unit(500, "feet")
  22747. },
  22748. {
  22749. name: "Megamacro",
  22750. height: math.unit(1000, "miles")
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(6, "feet"),
  22759. weight: math.unit(150, "lb"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/tendirmuldr/front.svg",
  22763. extra: 1878 / 1772,
  22764. bottom: 0.015
  22765. }
  22766. },
  22767. },
  22768. [
  22769. {
  22770. name: "Megamacro",
  22771. height: math.unit(1500, "miles"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22778. {
  22779. front: {
  22780. height: math.unit(14, "feet"),
  22781. weight: math.unit(12000, "lb"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/mort/front.svg",
  22785. extra: 365 / 318,
  22786. bottom: 0.01
  22787. }
  22788. },
  22789. side: {
  22790. height: math.unit(14, "feet"),
  22791. weight: math.unit(12000, "lb"),
  22792. name: "Side",
  22793. image: {
  22794. source: "./media/characters/mort/side.svg",
  22795. extra: 365 / 318,
  22796. bottom: 0.052
  22797. },
  22798. default: true
  22799. },
  22800. back: {
  22801. height: math.unit(14, "feet"),
  22802. weight: math.unit(12000, "lb"),
  22803. name: "Back",
  22804. image: {
  22805. source: "./media/characters/mort/back.svg",
  22806. extra: 371 / 332,
  22807. bottom: 0.18
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(14, "feet"),
  22815. default: true
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22821. {
  22822. front: {
  22823. height: math.unit(8, "feet"),
  22824. weight: math.unit(1, "ton"),
  22825. name: "Front",
  22826. image: {
  22827. source: "./media/characters/lycoa/front.svg",
  22828. extra: 1836/1728,
  22829. bottom: 81/1917
  22830. }
  22831. },
  22832. back: {
  22833. height: math.unit(8, "feet"),
  22834. weight: math.unit(1, "ton"),
  22835. name: "Back",
  22836. image: {
  22837. source: "./media/characters/lycoa/back.svg",
  22838. extra: 1785/1720,
  22839. bottom: 91/1876
  22840. }
  22841. },
  22842. head: {
  22843. height: math.unit(1.6243, "feet"),
  22844. name: "Head",
  22845. image: {
  22846. source: "./media/characters/lycoa/head.svg",
  22847. extra: 1011/782,
  22848. bottom: 0/1011
  22849. }
  22850. },
  22851. tailmaw: {
  22852. height: math.unit(1.9, "feet"),
  22853. name: "Tailmaw",
  22854. image: {
  22855. source: "./media/characters/lycoa/tailmaw.svg"
  22856. }
  22857. },
  22858. tentacles: {
  22859. height: math.unit(2.1, "feet"),
  22860. name: "Tentacles",
  22861. image: {
  22862. source: "./media/characters/lycoa/tentacles.svg"
  22863. }
  22864. },
  22865. dick: {
  22866. height: math.unit(1.73, "feet"),
  22867. name: "Dick",
  22868. image: {
  22869. source: "./media/characters/lycoa/dick.svg"
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Normal",
  22876. height: math.unit(8, "feet"),
  22877. default: true
  22878. },
  22879. {
  22880. name: "Macro",
  22881. height: math.unit(30, "feet")
  22882. },
  22883. ]
  22884. ))
  22885. characterMakers.push(() => makeCharacter(
  22886. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22887. {
  22888. front: {
  22889. height: math.unit(4 + 2 / 12, "feet"),
  22890. weight: math.unit(70, "lb"),
  22891. name: "Front",
  22892. image: {
  22893. source: "./media/characters/naldara/front.svg",
  22894. extra: 1664/1387,
  22895. bottom: 81/1745
  22896. },
  22897. form: "anthro",
  22898. default: true
  22899. },
  22900. naga: {
  22901. height: math.unit(20, "feet"),
  22902. weight: math.unit(15000, "kg"),
  22903. name: "Front",
  22904. image: {
  22905. source: "./media/characters/naldara/naga.svg",
  22906. extra: 1590/1396,
  22907. bottom: 285/1875
  22908. },
  22909. form: "naga",
  22910. default: true
  22911. },
  22912. },
  22913. [
  22914. {
  22915. name: "Normal",
  22916. height: math.unit(4 + 2 / 12, "feet"),
  22917. form: "anthro",
  22918. default: true
  22919. },
  22920. {
  22921. name: "Normal",
  22922. height: math.unit(20, "feet"),
  22923. form: "naga",
  22924. default: true
  22925. },
  22926. ],
  22927. {
  22928. "anthro": {
  22929. name: "Anthro",
  22930. default: true
  22931. },
  22932. "naga": {
  22933. name: "Naga"
  22934. }
  22935. }
  22936. ))
  22937. characterMakers.push(() => makeCharacter(
  22938. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22939. {
  22940. front: {
  22941. height: math.unit(13 + 7 / 12, "feet"),
  22942. weight: math.unit(1500, "lb"),
  22943. name: "Front",
  22944. image: {
  22945. source: "./media/characters/briar/front.svg",
  22946. extra: 1223/1157,
  22947. bottom: 123/1346
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Normal",
  22954. height: math.unit(13 + 7 / 12, "feet"),
  22955. default: true
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22961. {
  22962. side: {
  22963. height: math.unit(16, "feet"),
  22964. weight: math.unit(500, "lb"),
  22965. name: "Side",
  22966. image: {
  22967. source: "./media/characters/vanguard/side.svg",
  22968. extra: 1022/914,
  22969. bottom: 30/1052
  22970. }
  22971. },
  22972. sideAlt: {
  22973. height: math.unit(10, "feet"),
  22974. weight: math.unit(500, "lb"),
  22975. name: "Side (Alt)",
  22976. image: {
  22977. source: "./media/characters/vanguard/side-alt.svg",
  22978. extra: 502 / 425,
  22979. bottom: 0.087
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Normal",
  22986. height: math.unit(17.71, "feet"),
  22987. default: true
  22988. },
  22989. ]
  22990. ))
  22991. characterMakers.push(() => makeCharacter(
  22992. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22993. {
  22994. front: {
  22995. height: math.unit(7.5, "feet"),
  22996. weight: math.unit(2, "lb"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/artemis/work-safe-front.svg",
  23000. extra: 1192 / 1075,
  23001. bottom: 0.07
  23002. },
  23003. form: "work-safe",
  23004. default: true
  23005. },
  23006. frontNsfw: {
  23007. height: math.unit(7.5, "feet"),
  23008. weight: math.unit(2, "lb"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/artemis/calibrating-front.svg",
  23012. extra: 1192 / 1075,
  23013. bottom: 0.07
  23014. },
  23015. form: "calibrating",
  23016. default: true
  23017. },
  23018. frontNsfwer: {
  23019. height: math.unit(7.5, "feet"),
  23020. weight: math.unit(2, "lb"),
  23021. name: "Front",
  23022. image: {
  23023. source: "./media/characters/artemis/oversize-load-front.svg",
  23024. extra: 1192 / 1075,
  23025. bottom: 0.07
  23026. },
  23027. form: "oversize-load",
  23028. default: true
  23029. },
  23030. side: {
  23031. height: math.unit(7.5, "feet"),
  23032. weight: math.unit(2, "lb"),
  23033. name: "Side",
  23034. image: {
  23035. source: "./media/characters/artemis/work-safe-side.svg",
  23036. extra: 1192 / 1075,
  23037. bottom: 0.07
  23038. },
  23039. form: "work-safe"
  23040. },
  23041. sideNsfw: {
  23042. height: math.unit(7.5, "feet"),
  23043. weight: math.unit(2, "lb"),
  23044. name: "Side",
  23045. image: {
  23046. source: "./media/characters/artemis/calibrating-side.svg",
  23047. extra: 1192 / 1075,
  23048. bottom: 0.07
  23049. },
  23050. form: "calibrating"
  23051. },
  23052. sideNsfwer: {
  23053. height: math.unit(7.5, "feet"),
  23054. weight: math.unit(2, "lb"),
  23055. name: "Side",
  23056. image: {
  23057. source: "./media/characters/artemis/oversize-load-side.svg",
  23058. extra: 1192 / 1075,
  23059. bottom: 0.07
  23060. },
  23061. form: "oversize-load"
  23062. },
  23063. maw: {
  23064. height: math.unit(1.1, "feet"),
  23065. name: "Maw",
  23066. image: {
  23067. source: "./media/characters/artemis/maw.svg"
  23068. },
  23069. form: "work-safe"
  23070. },
  23071. stomach: {
  23072. height: math.unit(0.95, "feet"),
  23073. name: "Stomach",
  23074. image: {
  23075. source: "./media/characters/artemis/stomach.svg"
  23076. },
  23077. form: "work-safe"
  23078. },
  23079. dickCanine: {
  23080. height: math.unit(1, "feet"),
  23081. name: "Dick (Canine)",
  23082. image: {
  23083. source: "./media/characters/artemis/dick-canine.svg"
  23084. },
  23085. form: "calibrating"
  23086. },
  23087. dickEquine: {
  23088. height: math.unit(0.85, "feet"),
  23089. name: "Dick (Equine)",
  23090. image: {
  23091. source: "./media/characters/artemis/dick-equine.svg"
  23092. },
  23093. form: "calibrating"
  23094. },
  23095. dickExotic: {
  23096. height: math.unit(0.85, "feet"),
  23097. name: "Dick (Exotic)",
  23098. image: {
  23099. source: "./media/characters/artemis/dick-exotic.svg"
  23100. },
  23101. form: "calibrating"
  23102. },
  23103. dickCanineBigger: {
  23104. height: math.unit(1 * 1.33, "feet"),
  23105. name: "Dick (Canine)",
  23106. image: {
  23107. source: "./media/characters/artemis/dick-canine.svg"
  23108. },
  23109. form: "oversize-load"
  23110. },
  23111. dickEquineBigger: {
  23112. height: math.unit(0.85 * 1.33, "feet"),
  23113. name: "Dick (Equine)",
  23114. image: {
  23115. source: "./media/characters/artemis/dick-equine.svg"
  23116. },
  23117. form: "oversize-load"
  23118. },
  23119. dickExoticBigger: {
  23120. height: math.unit(0.85 * 1.33, "feet"),
  23121. name: "Dick (Exotic)",
  23122. image: {
  23123. source: "./media/characters/artemis/dick-exotic.svg"
  23124. },
  23125. form: "oversize-load"
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(7.5, "feet"),
  23132. form: "work-safe",
  23133. default: true
  23134. },
  23135. {
  23136. name: "Normal",
  23137. height: math.unit(7.5, "feet"),
  23138. form: "calibrating",
  23139. default: true
  23140. },
  23141. {
  23142. name: "Normal",
  23143. height: math.unit(7.5, "feet"),
  23144. form: "oversize-load",
  23145. default: true
  23146. },
  23147. {
  23148. name: "Enlarged",
  23149. height: math.unit(12, "feet"),
  23150. form: "work-safe",
  23151. },
  23152. {
  23153. name: "Enlarged",
  23154. height: math.unit(12, "feet"),
  23155. form: "calibrating",
  23156. },
  23157. {
  23158. name: "Enlarged",
  23159. height: math.unit(12, "feet"),
  23160. form: "oversize-load",
  23161. },
  23162. ],
  23163. {
  23164. "work-safe": {
  23165. name: "Work-Safe",
  23166. default: true
  23167. },
  23168. "calibrating": {
  23169. name: "Calibrating"
  23170. },
  23171. "oversize-load": {
  23172. name: "Oversize Load"
  23173. }
  23174. }
  23175. ))
  23176. characterMakers.push(() => makeCharacter(
  23177. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23178. {
  23179. front: {
  23180. height: math.unit(5 + 3 / 12, "feet"),
  23181. weight: math.unit(160, "lb"),
  23182. name: "Front",
  23183. image: {
  23184. source: "./media/characters/kira/front.svg",
  23185. extra: 906 / 786,
  23186. bottom: 0.01
  23187. }
  23188. },
  23189. back: {
  23190. height: math.unit(5 + 3 / 12, "feet"),
  23191. weight: math.unit(160, "lb"),
  23192. name: "Back",
  23193. image: {
  23194. source: "./media/characters/kira/back.svg",
  23195. extra: 882 / 757,
  23196. bottom: 0.005
  23197. }
  23198. },
  23199. frontDressed: {
  23200. height: math.unit(5 + 3 / 12, "feet"),
  23201. weight: math.unit(160, "lb"),
  23202. name: "Front (Dressed)",
  23203. image: {
  23204. source: "./media/characters/kira/front-dressed.svg",
  23205. extra: 906 / 786,
  23206. bottom: 0.01
  23207. }
  23208. },
  23209. beans: {
  23210. height: math.unit(0.92, "feet"),
  23211. name: "Beans",
  23212. image: {
  23213. source: "./media/characters/kira/beans.svg"
  23214. }
  23215. },
  23216. },
  23217. [
  23218. {
  23219. name: "Normal",
  23220. height: math.unit(5 + 3 / 12, "feet"),
  23221. default: true
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(5 + 4 / 12, "feet"),
  23230. weight: math.unit(145, "lb"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/scramble/front.svg",
  23234. extra: 763 / 727,
  23235. bottom: 0.05
  23236. }
  23237. },
  23238. back: {
  23239. height: math.unit(5 + 4 / 12, "feet"),
  23240. weight: math.unit(145, "lb"),
  23241. name: "Back",
  23242. image: {
  23243. source: "./media/characters/scramble/back.svg",
  23244. extra: 826 / 737,
  23245. bottom: 0.002
  23246. }
  23247. },
  23248. },
  23249. [
  23250. {
  23251. name: "Normal",
  23252. height: math.unit(5 + 4 / 12, "feet"),
  23253. default: true
  23254. },
  23255. ]
  23256. ))
  23257. characterMakers.push(() => makeCharacter(
  23258. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23259. {
  23260. side: {
  23261. height: math.unit(6 + 2 / 12, "feet"),
  23262. weight: math.unit(190, "lb"),
  23263. name: "Side",
  23264. image: {
  23265. source: "./media/characters/biscuit/side.svg",
  23266. extra: 858 / 791,
  23267. bottom: 0.044
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Normal",
  23274. height: math.unit(6 + 2 / 12, "feet"),
  23275. default: true
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23281. {
  23282. front: {
  23283. height: math.unit(5 + 2 / 12, "feet"),
  23284. weight: math.unit(120, "lb"),
  23285. name: "Front",
  23286. image: {
  23287. source: "./media/characters/poffin/front.svg",
  23288. extra: 786 / 680,
  23289. bottom: 0.005
  23290. }
  23291. },
  23292. },
  23293. [
  23294. {
  23295. name: "Normal",
  23296. height: math.unit(5 + 2 / 12, "feet"),
  23297. default: true
  23298. },
  23299. ]
  23300. ))
  23301. characterMakers.push(() => makeCharacter(
  23302. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23303. {
  23304. front: {
  23305. height: math.unit(6 + 3 / 12, "feet"),
  23306. weight: math.unit(519, "lb"),
  23307. name: "Front",
  23308. image: {
  23309. source: "./media/characters/dhari/front.svg",
  23310. extra: 1048 / 946,
  23311. bottom: 0.015
  23312. }
  23313. },
  23314. back: {
  23315. height: math.unit(6 + 3 / 12, "feet"),
  23316. weight: math.unit(519, "lb"),
  23317. name: "Back",
  23318. image: {
  23319. source: "./media/characters/dhari/back.svg",
  23320. extra: 1048 / 931,
  23321. bottom: 0.005
  23322. }
  23323. },
  23324. frontDressed: {
  23325. height: math.unit(6 + 3 / 12, "feet"),
  23326. weight: math.unit(519, "lb"),
  23327. name: "Front (Dressed)",
  23328. image: {
  23329. source: "./media/characters/dhari/front-dressed.svg",
  23330. extra: 1713 / 1546,
  23331. bottom: 0.02
  23332. }
  23333. },
  23334. backDressed: {
  23335. height: math.unit(6 + 3 / 12, "feet"),
  23336. weight: math.unit(519, "lb"),
  23337. name: "Back (Dressed)",
  23338. image: {
  23339. source: "./media/characters/dhari/back-dressed.svg",
  23340. extra: 1699 / 1537,
  23341. bottom: 0.01
  23342. }
  23343. },
  23344. maw: {
  23345. height: math.unit(0.95, "feet"),
  23346. name: "Maw",
  23347. image: {
  23348. source: "./media/characters/dhari/maw.svg"
  23349. }
  23350. },
  23351. wereFront: {
  23352. height: math.unit(12 + 8 / 12, "feet"),
  23353. weight: math.unit(4000, "lb"),
  23354. name: "Front (Were)",
  23355. image: {
  23356. source: "./media/characters/dhari/were-front.svg",
  23357. extra: 1065 / 969,
  23358. bottom: 0.015
  23359. }
  23360. },
  23361. wereBack: {
  23362. height: math.unit(12 + 8 / 12, "feet"),
  23363. weight: math.unit(4000, "lb"),
  23364. name: "Back (Were)",
  23365. image: {
  23366. source: "./media/characters/dhari/were-back.svg",
  23367. extra: 1065 / 969,
  23368. bottom: 0.012
  23369. }
  23370. },
  23371. wereMaw: {
  23372. height: math.unit(0.625, "meters"),
  23373. name: "Maw (Were)",
  23374. image: {
  23375. source: "./media/characters/dhari/were-maw.svg"
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(6 + 3 / 12, "feet"),
  23383. default: true
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23389. {
  23390. anthro: {
  23391. height: math.unit(5 + 7 / 12, "feet"),
  23392. weight: math.unit(175, "lb"),
  23393. name: "Anthro",
  23394. image: {
  23395. source: "./media/characters/rena-dyne/anthro.svg",
  23396. extra: 1849 / 1785,
  23397. bottom: 0.005
  23398. }
  23399. },
  23400. taur: {
  23401. height: math.unit(15 + 6 / 12, "feet"),
  23402. weight: math.unit(8000, "lb"),
  23403. name: "Taur",
  23404. image: {
  23405. source: "./media/characters/rena-dyne/taur.svg",
  23406. extra: 2315 / 2234,
  23407. bottom: 0.033
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Normal",
  23414. height: math.unit(5 + 7 / 12, "feet"),
  23415. default: true
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23421. {
  23422. front: {
  23423. height: math.unit(8, "feet"),
  23424. weight: math.unit(600, "lb"),
  23425. name: "Front",
  23426. image: {
  23427. source: "./media/characters/weremeep/front.svg",
  23428. extra: 970/849,
  23429. bottom: 7/977
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Normal",
  23436. height: math.unit(8, "feet"),
  23437. default: true
  23438. },
  23439. {
  23440. name: "Lorg",
  23441. height: math.unit(12, "feet")
  23442. },
  23443. {
  23444. name: "Oh Lawd She Comin'",
  23445. height: math.unit(20, "feet")
  23446. },
  23447. ]
  23448. ))
  23449. characterMakers.push(() => makeCharacter(
  23450. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23451. {
  23452. front: {
  23453. height: math.unit(4, "feet"),
  23454. weight: math.unit(90, "lb"),
  23455. name: "Front",
  23456. image: {
  23457. source: "./media/characters/reza/front.svg",
  23458. extra: 1183 / 1111,
  23459. bottom: 0.017
  23460. }
  23461. },
  23462. back: {
  23463. height: math.unit(4, "feet"),
  23464. weight: math.unit(90, "lb"),
  23465. name: "Back",
  23466. image: {
  23467. source: "./media/characters/reza/back.svg",
  23468. extra: 1183 / 1111,
  23469. bottom: 0.01
  23470. }
  23471. },
  23472. drake: {
  23473. height: math.unit(30, "feet"),
  23474. weight: math.unit(246960, "lb"),
  23475. name: "Drake",
  23476. image: {
  23477. source: "./media/characters/reza/drake.svg",
  23478. extra: 2350 / 2024,
  23479. bottom: 60.7 / 2403
  23480. }
  23481. },
  23482. },
  23483. [
  23484. {
  23485. name: "Normal",
  23486. height: math.unit(4, "feet"),
  23487. default: true
  23488. },
  23489. ]
  23490. ))
  23491. characterMakers.push(() => makeCharacter(
  23492. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23493. {
  23494. side: {
  23495. height: math.unit(15, "feet"),
  23496. weight: math.unit(14, "tons"),
  23497. name: "Side",
  23498. image: {
  23499. source: "./media/characters/athea/side.svg",
  23500. extra: 960 / 540,
  23501. bottom: 0.003
  23502. }
  23503. },
  23504. sitting: {
  23505. height: math.unit(6 * 2.85, "feet"),
  23506. weight: math.unit(14, "tons"),
  23507. name: "Sitting",
  23508. image: {
  23509. source: "./media/characters/athea/sitting.svg",
  23510. extra: 621 / 581,
  23511. bottom: 0.075
  23512. }
  23513. },
  23514. maw: {
  23515. height: math.unit(7.59498031496063, "feet"),
  23516. name: "Maw",
  23517. image: {
  23518. source: "./media/characters/athea/maw.svg"
  23519. }
  23520. },
  23521. },
  23522. [
  23523. {
  23524. name: "Lap Cat",
  23525. height: math.unit(2.5, "feet")
  23526. },
  23527. {
  23528. name: "Minimacro",
  23529. height: math.unit(15, "feet"),
  23530. default: true
  23531. },
  23532. {
  23533. name: "Macro",
  23534. height: math.unit(120, "feet")
  23535. },
  23536. {
  23537. name: "Macro+",
  23538. height: math.unit(640, "feet")
  23539. },
  23540. {
  23541. name: "Colossus",
  23542. height: math.unit(2.2, "miles")
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(8 + 8 / 12, "feet"),
  23551. weight: math.unit(130, "kg"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/seroko/front.svg",
  23555. extra: 1385 / 1280,
  23556. bottom: 0.025
  23557. }
  23558. },
  23559. back: {
  23560. height: math.unit(8 + 8 / 12, "feet"),
  23561. weight: math.unit(130, "kg"),
  23562. name: "Back",
  23563. image: {
  23564. source: "./media/characters/seroko/back.svg",
  23565. extra: 1369 / 1238,
  23566. bottom: 0.018
  23567. }
  23568. },
  23569. frontDressed: {
  23570. height: math.unit(8 + 8 / 12, "feet"),
  23571. weight: math.unit(130, "kg"),
  23572. name: "Front (Dressed)",
  23573. image: {
  23574. source: "./media/characters/seroko/front-dressed.svg",
  23575. extra: 1366 / 1275,
  23576. bottom: 0.03
  23577. }
  23578. },
  23579. },
  23580. [
  23581. {
  23582. name: "Normal",
  23583. height: math.unit(8 + 8 / 12, "feet"),
  23584. default: true
  23585. },
  23586. ]
  23587. ))
  23588. characterMakers.push(() => makeCharacter(
  23589. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23590. {
  23591. front: {
  23592. height: math.unit(5.5, "feet"),
  23593. weight: math.unit(160, "lb"),
  23594. name: "Front",
  23595. image: {
  23596. source: "./media/characters/quatzi/front.svg",
  23597. extra: 2346 / 2242,
  23598. bottom: 0.015
  23599. }
  23600. },
  23601. },
  23602. [
  23603. {
  23604. name: "Normal",
  23605. height: math.unit(5.5, "feet"),
  23606. default: true
  23607. },
  23608. {
  23609. name: "Big",
  23610. height: math.unit(7.7, "feet")
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23616. {
  23617. front: {
  23618. height: math.unit(5 + 11 / 12, "feet"),
  23619. weight: math.unit(180, "lb"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/sen/front.svg",
  23623. extra: 1321 / 1254,
  23624. bottom: 0.015
  23625. }
  23626. },
  23627. side: {
  23628. height: math.unit(5 + 11 / 12, "feet"),
  23629. weight: math.unit(180, "lb"),
  23630. name: "Side",
  23631. image: {
  23632. source: "./media/characters/sen/side.svg",
  23633. extra: 1321 / 1254,
  23634. bottom: 0.007
  23635. }
  23636. },
  23637. back: {
  23638. height: math.unit(5 + 11 / 12, "feet"),
  23639. weight: math.unit(180, "lb"),
  23640. name: "Back",
  23641. image: {
  23642. source: "./media/characters/sen/back.svg",
  23643. extra: 1321 / 1254
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(5 + 11 / 12, "feet"),
  23651. default: true
  23652. },
  23653. ]
  23654. ))
  23655. characterMakers.push(() => makeCharacter(
  23656. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23657. {
  23658. front: {
  23659. height: math.unit(166.6, "cm"),
  23660. weight: math.unit(66.6, "kg"),
  23661. name: "Front",
  23662. image: {
  23663. source: "./media/characters/fruity/front.svg",
  23664. extra: 1510 / 1386,
  23665. bottom: 0.04
  23666. }
  23667. },
  23668. back: {
  23669. height: math.unit(166.6, "cm"),
  23670. weight: math.unit(66.6, "lb"),
  23671. name: "Back",
  23672. image: {
  23673. source: "./media/characters/fruity/back.svg",
  23674. extra: 1563 / 1435,
  23675. bottom: 0.005
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Normal",
  23682. height: math.unit(166.6, "cm"),
  23683. default: true
  23684. },
  23685. {
  23686. name: "Demonic",
  23687. height: math.unit(166.6, "feet")
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23693. {
  23694. side: {
  23695. height: math.unit(10, "feet"),
  23696. weight: math.unit(500, "lb"),
  23697. name: "Side",
  23698. image: {
  23699. source: "./media/characters/zost/side.svg",
  23700. extra: 2870/2533,
  23701. bottom: 252/3122
  23702. }
  23703. },
  23704. mawFront: {
  23705. height: math.unit(1.08, "meters"),
  23706. name: "Maw (Front)",
  23707. image: {
  23708. source: "./media/characters/zost/maw-front.svg"
  23709. }
  23710. },
  23711. mawSide: {
  23712. height: math.unit(2.66, "feet"),
  23713. name: "Maw (Side)",
  23714. image: {
  23715. source: "./media/characters/zost/maw-side.svg"
  23716. }
  23717. },
  23718. wingspan: {
  23719. height: math.unit(7.4, "feet"),
  23720. name: "Wingspan",
  23721. image: {
  23722. source: "./media/characters/zost/wingspan.svg"
  23723. }
  23724. },
  23725. },
  23726. [
  23727. {
  23728. name: "Normal",
  23729. height: math.unit(10, "feet"),
  23730. default: true
  23731. },
  23732. ]
  23733. ))
  23734. characterMakers.push(() => makeCharacter(
  23735. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23736. {
  23737. front: {
  23738. height: math.unit(5 + 4 / 12, "feet"),
  23739. weight: math.unit(120, "lb"),
  23740. name: "Front",
  23741. image: {
  23742. source: "./media/characters/luci/front.svg",
  23743. extra: 1985 / 1884,
  23744. bottom: 0.04
  23745. }
  23746. },
  23747. back: {
  23748. height: math.unit(5 + 4 / 12, "feet"),
  23749. weight: math.unit(120, "lb"),
  23750. name: "Back",
  23751. image: {
  23752. source: "./media/characters/luci/back.svg",
  23753. extra: 1892 / 1791,
  23754. bottom: 0.002
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Normal",
  23761. height: math.unit(5 + 4 / 12, "feet"),
  23762. default: true
  23763. },
  23764. ]
  23765. ))
  23766. characterMakers.push(() => makeCharacter(
  23767. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23768. {
  23769. front: {
  23770. height: math.unit(1500, "feet"),
  23771. weight: math.unit(3.8e6, "tons"),
  23772. name: "Front",
  23773. image: {
  23774. source: "./media/characters/2th/front.svg",
  23775. extra: 3489 / 3350,
  23776. bottom: 0.1
  23777. }
  23778. },
  23779. foot: {
  23780. height: math.unit(461, "feet"),
  23781. name: "Foot",
  23782. image: {
  23783. source: "./media/characters/2th/foot.svg"
  23784. }
  23785. },
  23786. },
  23787. [
  23788. {
  23789. name: "\"Micro\"",
  23790. height: math.unit(15 + 7 / 12, "feet")
  23791. },
  23792. {
  23793. name: "Normal",
  23794. height: math.unit(1500, "feet"),
  23795. default: true
  23796. },
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(5000, "feet")
  23800. },
  23801. {
  23802. name: "Megamacro",
  23803. height: math.unit(15, "miles")
  23804. },
  23805. {
  23806. name: "Gigamacro",
  23807. height: math.unit(4000, "miles")
  23808. },
  23809. {
  23810. name: "Galactic",
  23811. height: math.unit(50, "AU")
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23817. {
  23818. front: {
  23819. height: math.unit(5 + 6 / 12, "feet"),
  23820. weight: math.unit(220, "lb"),
  23821. name: "Front",
  23822. image: {
  23823. source: "./media/characters/amethyst/front.svg",
  23824. extra: 2078 / 2040,
  23825. bottom: 0.045
  23826. }
  23827. },
  23828. back: {
  23829. height: math.unit(5 + 6 / 12, "feet"),
  23830. weight: math.unit(220, "lb"),
  23831. name: "Back",
  23832. image: {
  23833. source: "./media/characters/amethyst/back.svg",
  23834. extra: 2021 / 1989,
  23835. bottom: 0.02
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(5 + 6 / 12, "feet"),
  23843. default: true
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23849. {
  23850. front: {
  23851. height: math.unit(4 + 11 / 12, "feet"),
  23852. weight: math.unit(120, "lb"),
  23853. name: "Front",
  23854. image: {
  23855. source: "./media/characters/yumi-akiyama/front.svg",
  23856. extra: 2638/2432,
  23857. bottom: 70/2708
  23858. }
  23859. },
  23860. back: {
  23861. height: math.unit(4 + 11 / 12, "feet"),
  23862. weight: math.unit(120, "lb"),
  23863. name: "Back",
  23864. image: {
  23865. source: "./media/characters/yumi-akiyama/back.svg",
  23866. extra: 2502/2397,
  23867. bottom: 80/2582
  23868. }
  23869. },
  23870. casual: {
  23871. height: math.unit(4 + 11 / 12, "feet"),
  23872. weight: math.unit(120, "lb"),
  23873. name: "Casual",
  23874. image: {
  23875. source: "./media/characters/yumi-akiyama/casual.svg",
  23876. extra: 958/887,
  23877. bottom: 41/999
  23878. }
  23879. },
  23880. jammies: {
  23881. height: math.unit(4 + 11 / 12, "feet"),
  23882. weight: math.unit(120, "lb"),
  23883. name: "Jammies",
  23884. image: {
  23885. source: "./media/characters/yumi-akiyama/jammies.svg",
  23886. extra: 958/894,
  23887. bottom: 37/995
  23888. }
  23889. },
  23890. warmWeather: {
  23891. height: math.unit(4 + 11 / 12, "feet"),
  23892. weight: math.unit(120, "lb"),
  23893. name: "Warm Weather",
  23894. image: {
  23895. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23896. extra: 929/865,
  23897. bottom: 76/1005
  23898. }
  23899. },
  23900. mouth: {
  23901. height: math.unit(0.35, "feet"),
  23902. name: "Mouth",
  23903. image: {
  23904. source: "./media/characters/yumi-akiyama/mouth.svg"
  23905. }
  23906. },
  23907. paws: {
  23908. height: math.unit(1.05, "feet"),
  23909. name: "Paws",
  23910. image: {
  23911. source: "./media/characters/yumi-akiyama/paws.svg"
  23912. }
  23913. },
  23914. cockRing: {
  23915. height: math.unit(0.225, "feet"),
  23916. name: "Cock Ring",
  23917. image: {
  23918. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Galactic",
  23925. height: math.unit(50, "galaxies"),
  23926. default: true
  23927. },
  23928. {
  23929. name: "Universal",
  23930. height: math.unit(100, "universes")
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(8, "feet"),
  23939. weight: math.unit(500, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/rifter-yrmori/front.svg",
  23943. extra: 1180 / 1125,
  23944. bottom: 0.02
  23945. }
  23946. },
  23947. back: {
  23948. height: math.unit(8, "feet"),
  23949. weight: math.unit(500, "lb"),
  23950. name: "Back",
  23951. image: {
  23952. source: "./media/characters/rifter-yrmori/back.svg",
  23953. extra: 1190 / 1145,
  23954. bottom: 0.001
  23955. }
  23956. },
  23957. wings: {
  23958. height: math.unit(7.75, "feet"),
  23959. weight: math.unit(500, "lb"),
  23960. name: "Wings",
  23961. image: {
  23962. source: "./media/characters/rifter-yrmori/wings.svg",
  23963. extra: 1357 / 1285
  23964. }
  23965. },
  23966. maw: {
  23967. height: math.unit(0.8, "feet"),
  23968. name: "Maw",
  23969. image: {
  23970. source: "./media/characters/rifter-yrmori/maw.svg"
  23971. }
  23972. },
  23973. mawfront: {
  23974. height: math.unit(1.45, "feet"),
  23975. name: "Maw (Front)",
  23976. image: {
  23977. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23978. }
  23979. },
  23980. },
  23981. [
  23982. {
  23983. name: "Normal",
  23984. height: math.unit(8, "feet"),
  23985. default: true
  23986. },
  23987. {
  23988. name: "Macro",
  23989. height: math.unit(42, "meters")
  23990. },
  23991. ]
  23992. ))
  23993. characterMakers.push(() => makeCharacter(
  23994. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23995. {
  23996. were: {
  23997. height: math.unit(25 + 6 / 12, "feet"),
  23998. weight: math.unit(10000, "lb"),
  23999. name: "Were",
  24000. image: {
  24001. source: "./media/characters/tahajin/were.svg",
  24002. extra: 801 / 770,
  24003. bottom: 0.042
  24004. }
  24005. },
  24006. aquatic: {
  24007. height: math.unit(6 + 4 / 12, "feet"),
  24008. weight: math.unit(160, "lb"),
  24009. name: "Aquatic",
  24010. image: {
  24011. source: "./media/characters/tahajin/aquatic.svg",
  24012. extra: 572 / 542,
  24013. bottom: 0.04
  24014. }
  24015. },
  24016. chow: {
  24017. height: math.unit(8 + 11 / 12, "feet"),
  24018. weight: math.unit(450, "lb"),
  24019. name: "Chow",
  24020. image: {
  24021. source: "./media/characters/tahajin/chow.svg",
  24022. extra: 660 / 640,
  24023. bottom: 0.015
  24024. }
  24025. },
  24026. demiNaga: {
  24027. height: math.unit(6 + 8 / 12, "feet"),
  24028. weight: math.unit(300, "lb"),
  24029. name: "Demi Naga",
  24030. image: {
  24031. source: "./media/characters/tahajin/demi-naga.svg",
  24032. extra: 643 / 615,
  24033. bottom: 0.1
  24034. }
  24035. },
  24036. data: {
  24037. height: math.unit(5, "inches"),
  24038. weight: math.unit(0.1, "lb"),
  24039. name: "Data",
  24040. image: {
  24041. source: "./media/characters/tahajin/data.svg"
  24042. }
  24043. },
  24044. fluu: {
  24045. height: math.unit(5 + 7 / 12, "feet"),
  24046. weight: math.unit(140, "lb"),
  24047. name: "Fluu",
  24048. image: {
  24049. source: "./media/characters/tahajin/fluu.svg",
  24050. extra: 628 / 592,
  24051. bottom: 0.02
  24052. }
  24053. },
  24054. starWarrior: {
  24055. height: math.unit(4 + 5 / 12, "feet"),
  24056. weight: math.unit(50, "lb"),
  24057. name: "Star Warrior",
  24058. image: {
  24059. source: "./media/characters/tahajin/star-warrior.svg"
  24060. }
  24061. },
  24062. },
  24063. [
  24064. {
  24065. name: "Normal",
  24066. height: math.unit(25 + 6 / 12, "feet"),
  24067. default: true
  24068. },
  24069. ]
  24070. ))
  24071. characterMakers.push(() => makeCharacter(
  24072. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24073. {
  24074. front: {
  24075. height: math.unit(8, "feet"),
  24076. weight: math.unit(350, "lb"),
  24077. name: "Front",
  24078. image: {
  24079. source: "./media/characters/gabira/front.svg",
  24080. extra: 1261/1154,
  24081. bottom: 51/1312
  24082. }
  24083. },
  24084. back: {
  24085. height: math.unit(8, "feet"),
  24086. weight: math.unit(350, "lb"),
  24087. name: "Back",
  24088. image: {
  24089. source: "./media/characters/gabira/back.svg",
  24090. extra: 1265/1163,
  24091. bottom: 46/1311
  24092. }
  24093. },
  24094. head: {
  24095. height: math.unit(2.85, "feet"),
  24096. name: "Head",
  24097. image: {
  24098. source: "./media/characters/gabira/head.svg"
  24099. }
  24100. },
  24101. },
  24102. [
  24103. {
  24104. name: "Normal",
  24105. height: math.unit(8, "feet"),
  24106. default: true
  24107. },
  24108. ]
  24109. ))
  24110. characterMakers.push(() => makeCharacter(
  24111. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24112. {
  24113. front: {
  24114. height: math.unit(5 + 3 / 12, "feet"),
  24115. weight: math.unit(137, "lb"),
  24116. name: "Front",
  24117. image: {
  24118. source: "./media/characters/sasha-katraine/front.svg",
  24119. extra: 1745/1694,
  24120. bottom: 37/1782
  24121. }
  24122. },
  24123. back: {
  24124. height: math.unit(5 + 3 / 12, "feet"),
  24125. weight: math.unit(137, "lb"),
  24126. name: "Back",
  24127. image: {
  24128. source: "./media/characters/sasha-katraine/back.svg",
  24129. extra: 1776/1699,
  24130. bottom: 26/1802
  24131. }
  24132. },
  24133. },
  24134. [
  24135. {
  24136. name: "Micro",
  24137. height: math.unit(5, "inches")
  24138. },
  24139. {
  24140. name: "Normal",
  24141. height: math.unit(5 + 3 / 12, "feet"),
  24142. default: true
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24148. {
  24149. side: {
  24150. height: math.unit(4, "inches"),
  24151. weight: math.unit(200, "grams"),
  24152. name: "Side",
  24153. image: {
  24154. source: "./media/characters/der/side.svg",
  24155. extra: 719 / 400,
  24156. bottom: 30.6 / 749.9187
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Micro",
  24163. height: math.unit(4, "inches"),
  24164. default: true
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24170. {
  24171. side: {
  24172. height: math.unit(30, "meters"),
  24173. weight: math.unit(700, "tonnes"),
  24174. name: "Side",
  24175. image: {
  24176. source: "./media/characters/fixerdragon/side.svg",
  24177. extra: (1293.0514 - 116.03) / 1106.86,
  24178. bottom: 116.03 / 1293.0514
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Planck",
  24185. height: math.unit(1.6e-35, "meters")
  24186. },
  24187. {
  24188. name: "Micro",
  24189. height: math.unit(0.4, "meters")
  24190. },
  24191. {
  24192. name: "Normal",
  24193. height: math.unit(30, "meters"),
  24194. default: true
  24195. },
  24196. {
  24197. name: "Megamacro",
  24198. height: math.unit(1.2, "megameters")
  24199. },
  24200. {
  24201. name: "Teramacro",
  24202. height: math.unit(130, "terameters")
  24203. },
  24204. {
  24205. name: "Yottamacro",
  24206. height: math.unit(6200, "yottameters")
  24207. },
  24208. ]
  24209. ));
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24212. {
  24213. front: {
  24214. height: math.unit(8, "feet"),
  24215. weight: math.unit(250, "lb"),
  24216. name: "Front",
  24217. image: {
  24218. source: "./media/characters/kite/front.svg",
  24219. extra: 2796 / 2659,
  24220. bottom: 0.002
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(8, "feet"),
  24228. default: true
  24229. },
  24230. {
  24231. name: "Macro",
  24232. height: math.unit(360, "feet")
  24233. },
  24234. {
  24235. name: "Megamacro",
  24236. height: math.unit(1500, "feet")
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24242. {
  24243. anthro_front: {
  24244. height: math.unit(5 + 11/12, "feet"),
  24245. weight: math.unit(170, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24249. extra: 1735/1585,
  24250. bottom: 96/1831
  24251. },
  24252. form: "anthro",
  24253. default: true
  24254. },
  24255. anthro_back: {
  24256. height: math.unit(5 + 11/12, "feet"),
  24257. weight: math.unit(170, "lb"),
  24258. name: "Back",
  24259. image: {
  24260. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24261. extra: 1749/1607,
  24262. bottom: 28/1777
  24263. },
  24264. form: "anthro"
  24265. },
  24266. anthro_male: {
  24267. height: math.unit(5 + 11/12, "feet"),
  24268. weight: math.unit(170, "lb"),
  24269. name: "Male",
  24270. image: {
  24271. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24272. extra: 1855/1713,
  24273. bottom: 63/1918
  24274. },
  24275. form: "anthro"
  24276. },
  24277. taur_front: {
  24278. height: math.unit(5 + 7/12, "feet"),
  24279. weight: math.unit(170, "lb"),
  24280. name: "Front",
  24281. image: {
  24282. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24283. extra: 1151/1059,
  24284. bottom: 356/1507
  24285. },
  24286. form: "taur",
  24287. default: true
  24288. },
  24289. anthro_frontDressed: {
  24290. height: math.unit(5 + 11/12, "feet"),
  24291. weight: math.unit(170, "lb"),
  24292. name: "Front (Dressed)",
  24293. image: {
  24294. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24295. extra: 1735/1585,
  24296. bottom: 96/1831
  24297. },
  24298. form: "anthro"
  24299. },
  24300. anthro_backDressed: {
  24301. height: math.unit(5 + 11/12, "feet"),
  24302. weight: math.unit(170, "lb"),
  24303. name: "Back (Dressed)",
  24304. image: {
  24305. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24306. extra: 1749/1607,
  24307. bottom: 28/1777
  24308. },
  24309. form: "anthro"
  24310. },
  24311. anthro_maleDressed: {
  24312. height: math.unit(5 + 11/12, "feet"),
  24313. weight: math.unit(170, "lb"),
  24314. name: "Male (Dressed)",
  24315. image: {
  24316. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24317. extra: 1855/1713,
  24318. bottom: 63/1918
  24319. },
  24320. form: "anthro"
  24321. },
  24322. taur_frontDressed: {
  24323. height: math.unit(5 + 7/12, "feet"),
  24324. weight: math.unit(170, "lb"),
  24325. name: "Front (Dressed)",
  24326. image: {
  24327. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24328. extra: 1151/1059,
  24329. bottom: 356/1507
  24330. },
  24331. form: "taur"
  24332. },
  24333. maw: {
  24334. height: math.unit(1.46, "feet"),
  24335. name: "Maw",
  24336. image: {
  24337. source: "./media/characters/poojawa-vynar/maw.svg"
  24338. },
  24339. allForms: true
  24340. },
  24341. head: {
  24342. height: math.unit(2.34, "feet"),
  24343. name: "Head",
  24344. image: {
  24345. source: "./media/characters/poojawa-vynar/head.svg"
  24346. },
  24347. allForms: true
  24348. },
  24349. leftPaw: {
  24350. height: math.unit(1.72, "feet"),
  24351. name: "Left Paw",
  24352. image: {
  24353. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24354. },
  24355. allForms: true
  24356. },
  24357. rightPaw: {
  24358. height: math.unit(1.61, "feet"),
  24359. name: "Right Paw",
  24360. image: {
  24361. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24362. },
  24363. allForms: true
  24364. },
  24365. toering: {
  24366. height: math.unit(2.9, "inches"),
  24367. name: "Toering",
  24368. image: {
  24369. source: "./media/characters/poojawa-vynar/toering.svg"
  24370. },
  24371. allForms: true
  24372. },
  24373. shaft: {
  24374. height: math.unit(0.625, "feet"),
  24375. name: "Shaft",
  24376. image: {
  24377. source: "./media/characters/poojawa-vynar/shaft.svg"
  24378. },
  24379. allForms: true
  24380. },
  24381. spade: {
  24382. height: math.unit(0.42, "feet"),
  24383. name: "Spade",
  24384. image: {
  24385. source: "./media/characters/poojawa-vynar/spade.svg"
  24386. },
  24387. allForms: true
  24388. },
  24389. },
  24390. [
  24391. {
  24392. name: "Shortstack",
  24393. height: math.unit(4, "feet"),
  24394. form: "anthro"
  24395. },
  24396. {
  24397. name: "Normal",
  24398. height: math.unit(5 + 11 / 12, "feet"),
  24399. form: "anthro",
  24400. default: true
  24401. },
  24402. {
  24403. name: "Tauric",
  24404. height: math.unit(4, "meters"),
  24405. form: "taur",
  24406. default: true
  24407. },
  24408. ],
  24409. {
  24410. "anthro": {
  24411. name: "Anthro",
  24412. default: true
  24413. },
  24414. "taur": {
  24415. name: "Taur",
  24416. },
  24417. }
  24418. ))
  24419. characterMakers.push(() => makeCharacter(
  24420. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24421. {
  24422. front: {
  24423. height: math.unit(293, "meters"),
  24424. weight: math.unit(70400, "tons"),
  24425. name: "Front",
  24426. image: {
  24427. source: "./media/characters/violette/front.svg",
  24428. extra: 1227 / 1180,
  24429. bottom: 0.005
  24430. }
  24431. },
  24432. back: {
  24433. height: math.unit(293, "meters"),
  24434. weight: math.unit(70400, "tons"),
  24435. name: "Back",
  24436. image: {
  24437. source: "./media/characters/violette/back.svg",
  24438. extra: 1227 / 1180,
  24439. bottom: 0.005
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Macro",
  24446. height: math.unit(293, "meters"),
  24447. default: true
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24453. {
  24454. front: {
  24455. height: math.unit(1050, "feet"),
  24456. weight: math.unit(200000, "tons"),
  24457. name: "Front",
  24458. image: {
  24459. source: "./media/characters/alessandra/front.svg",
  24460. extra: 960 / 912,
  24461. bottom: 0.06
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Macro",
  24468. height: math.unit(1050, "feet")
  24469. },
  24470. {
  24471. name: "Macro+",
  24472. height: math.unit(900, "meters"),
  24473. default: true
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(5, "feet"),
  24482. weight: math.unit(187, "lb"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/person/front.svg",
  24486. extra: 3087 / 2945,
  24487. bottom: 91 / 3181
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Micro",
  24494. height: math.unit(3, "inches")
  24495. },
  24496. {
  24497. name: "Normal",
  24498. height: math.unit(5, "feet"),
  24499. default: true
  24500. },
  24501. {
  24502. name: "Macro",
  24503. height: math.unit(90, "feet")
  24504. },
  24505. {
  24506. name: "Max Size",
  24507. height: math.unit(280, "feet")
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24513. {
  24514. front: {
  24515. height: math.unit(4.5, "meters"),
  24516. weight: math.unit(3200, "lb"),
  24517. name: "Front",
  24518. image: {
  24519. source: "./media/characters/ty/front.svg",
  24520. extra: 1038 / 960,
  24521. bottom: 31.156 / 1068
  24522. }
  24523. },
  24524. back: {
  24525. height: math.unit(4.5, "meters"),
  24526. weight: math.unit(3200, "lb"),
  24527. name: "Back",
  24528. image: {
  24529. source: "./media/characters/ty/back.svg",
  24530. extra: 1044 / 966,
  24531. bottom: 7.48 / 1049
  24532. }
  24533. },
  24534. },
  24535. [
  24536. {
  24537. name: "Normal",
  24538. height: math.unit(4.5, "meters"),
  24539. default: true
  24540. },
  24541. ]
  24542. ))
  24543. characterMakers.push(() => makeCharacter(
  24544. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24545. {
  24546. front: {
  24547. height: math.unit(5 + 4 / 12, "feet"),
  24548. weight: math.unit(115, "lb"),
  24549. name: "Front",
  24550. image: {
  24551. source: "./media/characters/rocky/front.svg",
  24552. extra: 1012 / 975,
  24553. bottom: 54 / 1066
  24554. }
  24555. },
  24556. },
  24557. [
  24558. {
  24559. name: "Normal",
  24560. height: math.unit(5 + 4 / 12, "feet"),
  24561. default: true
  24562. },
  24563. ]
  24564. ))
  24565. characterMakers.push(() => makeCharacter(
  24566. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24567. {
  24568. upright: {
  24569. height: math.unit(6, "meters"),
  24570. weight: math.unit(4000, "kg"),
  24571. name: "Upright",
  24572. image: {
  24573. source: "./media/characters/ruin/upright.svg",
  24574. extra: 668 / 661,
  24575. bottom: 42 / 799.8396
  24576. }
  24577. },
  24578. },
  24579. [
  24580. {
  24581. name: "Normal",
  24582. height: math.unit(6, "meters"),
  24583. default: true
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24589. {
  24590. front: {
  24591. height: math.unit(5, "feet"),
  24592. weight: math.unit(106, "lb"),
  24593. name: "Front",
  24594. image: {
  24595. source: "./media/characters/robin/front.svg",
  24596. extra: 862 / 799,
  24597. bottom: 42.4 / 914.8856
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(5, "feet"),
  24605. default: true
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24611. {
  24612. side: {
  24613. height: math.unit(3, "feet"),
  24614. weight: math.unit(225, "lb"),
  24615. name: "Side",
  24616. image: {
  24617. source: "./media/characters/saian/side.svg",
  24618. extra: 566 / 356,
  24619. bottom: 79.7 / 643
  24620. }
  24621. },
  24622. maw: {
  24623. height: math.unit(2.85, "feet"),
  24624. name: "Maw",
  24625. image: {
  24626. source: "./media/characters/saian/maw.svg"
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Normal",
  24633. height: math.unit(3, "feet"),
  24634. default: true
  24635. },
  24636. ]
  24637. ))
  24638. characterMakers.push(() => makeCharacter(
  24639. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24640. {
  24641. side: {
  24642. height: math.unit(8, "feet"),
  24643. weight: math.unit(300, "lb"),
  24644. name: "Side",
  24645. image: {
  24646. source: "./media/characters/equus-silvermane/side.svg",
  24647. extra: 2176 / 2050,
  24648. bottom: 65.7 / 2245
  24649. }
  24650. },
  24651. front: {
  24652. height: math.unit(8, "feet"),
  24653. weight: math.unit(300, "lb"),
  24654. name: "Front",
  24655. image: {
  24656. source: "./media/characters/equus-silvermane/front.svg",
  24657. extra: 4633 / 4400,
  24658. bottom: 71.3 / 4706.915
  24659. }
  24660. },
  24661. sideStepping: {
  24662. height: math.unit(8, "feet"),
  24663. weight: math.unit(300, "lb"),
  24664. name: "Side (Stepping)",
  24665. image: {
  24666. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24667. extra: 1968 / 1860,
  24668. bottom: 16.4 / 1989
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(8, "feet")
  24676. },
  24677. {
  24678. name: "Minimacro",
  24679. height: math.unit(75, "feet"),
  24680. default: true
  24681. },
  24682. {
  24683. name: "Macro",
  24684. height: math.unit(150, "feet")
  24685. },
  24686. {
  24687. name: "Macro+",
  24688. height: math.unit(1000, "feet")
  24689. },
  24690. {
  24691. name: "Megamacro",
  24692. height: math.unit(1, "mile")
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24698. {
  24699. side: {
  24700. height: math.unit(20, "feet"),
  24701. weight: math.unit(30000, "kg"),
  24702. name: "Side",
  24703. image: {
  24704. source: "./media/characters/windar/side.svg",
  24705. extra: 1491 / 1248,
  24706. bottom: 82.56 / 1568
  24707. }
  24708. },
  24709. },
  24710. [
  24711. {
  24712. name: "Normal",
  24713. height: math.unit(20, "feet"),
  24714. default: true
  24715. },
  24716. ]
  24717. ))
  24718. characterMakers.push(() => makeCharacter(
  24719. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24720. {
  24721. side: {
  24722. height: math.unit(15.66, "feet"),
  24723. weight: math.unit(150, "lb"),
  24724. name: "Side",
  24725. image: {
  24726. source: "./media/characters/melody/side.svg",
  24727. extra: 1097 / 944,
  24728. bottom: 11.8 / 1109
  24729. }
  24730. },
  24731. sideOutfit: {
  24732. height: math.unit(15.66, "feet"),
  24733. weight: math.unit(150, "lb"),
  24734. name: "Side (Outfit)",
  24735. image: {
  24736. source: "./media/characters/melody/side-outfit.svg",
  24737. extra: 1097 / 944,
  24738. bottom: 11.8 / 1109
  24739. }
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Normal",
  24745. height: math.unit(15.66, "feet"),
  24746. default: true
  24747. },
  24748. ]
  24749. ))
  24750. characterMakers.push(() => makeCharacter(
  24751. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24752. {
  24753. armoredFront: {
  24754. height: math.unit(8, "feet"),
  24755. weight: math.unit(325, "lb"),
  24756. name: "Front",
  24757. image: {
  24758. source: "./media/characters/windera/armored-front.svg",
  24759. extra: 1830/1598,
  24760. bottom: 151/1981
  24761. },
  24762. form: "armored",
  24763. default: true
  24764. },
  24765. macroFront: {
  24766. height: math.unit(70, "feet"),
  24767. weight: math.unit(315453, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/windera/macro-front.svg",
  24771. extra: 963/883,
  24772. bottom: 23/986
  24773. },
  24774. form: "macro",
  24775. default: true
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(8, "feet"),
  24782. default: true,
  24783. form: "armored"
  24784. },
  24785. {
  24786. name: "Normal",
  24787. height: math.unit(70, "feet"),
  24788. default: true,
  24789. form: "macro"
  24790. },
  24791. ],
  24792. {
  24793. "armored": {
  24794. name: "Armored",
  24795. default: true
  24796. },
  24797. "macro": {
  24798. name: "Macro",
  24799. },
  24800. }
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24804. {
  24805. front: {
  24806. height: math.unit(28.75, "feet"),
  24807. weight: math.unit(2000, "kg"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/sonear/front.svg",
  24811. extra: 1041.1 / 964.9,
  24812. bottom: 53.7 / 1096.6
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Normal",
  24819. height: math.unit(28.75, "feet"),
  24820. default: true
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24826. {
  24827. side: {
  24828. height: math.unit(25.5, "feet"),
  24829. weight: math.unit(23000, "kg"),
  24830. name: "Side",
  24831. image: {
  24832. source: "./media/characters/kanara/side.svg"
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Normal",
  24839. height: math.unit(25.5, "feet"),
  24840. default: true
  24841. },
  24842. ]
  24843. ))
  24844. characterMakers.push(() => makeCharacter(
  24845. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24846. {
  24847. side: {
  24848. height: math.unit(10, "feet"),
  24849. weight: math.unit(1000, "kg"),
  24850. name: "Side",
  24851. image: {
  24852. source: "./media/characters/ereus/side.svg",
  24853. extra: 1157 / 959,
  24854. bottom: 153 / 1312.5
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(10, "feet"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24868. {
  24869. side: {
  24870. height: math.unit(4.5, "feet"),
  24871. weight: math.unit(500, "lb"),
  24872. name: "Side",
  24873. image: {
  24874. source: "./media/characters/e-ter/side.svg",
  24875. extra: 1550 / 1248,
  24876. bottom: 146 / 1694
  24877. }
  24878. },
  24879. },
  24880. [
  24881. {
  24882. name: "Normal",
  24883. height: math.unit(4.5, "feet"),
  24884. default: true
  24885. },
  24886. ]
  24887. ))
  24888. characterMakers.push(() => makeCharacter(
  24889. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24890. {
  24891. side: {
  24892. height: math.unit(9.7, "feet"),
  24893. weight: math.unit(4000, "kg"),
  24894. name: "Side",
  24895. image: {
  24896. source: "./media/characters/yamie/side.svg"
  24897. }
  24898. },
  24899. },
  24900. [
  24901. {
  24902. name: "Normal",
  24903. height: math.unit(9.7, "feet"),
  24904. default: true
  24905. },
  24906. ]
  24907. ))
  24908. characterMakers.push(() => makeCharacter(
  24909. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24910. {
  24911. front: {
  24912. height: math.unit(50, "feet"),
  24913. weight: math.unit(50000, "kg"),
  24914. name: "Front",
  24915. image: {
  24916. source: "./media/characters/anders/front.svg",
  24917. extra: 570 / 539,
  24918. bottom: 14.7 / 586.7
  24919. }
  24920. },
  24921. },
  24922. [
  24923. {
  24924. name: "Large",
  24925. height: math.unit(50, "feet")
  24926. },
  24927. {
  24928. name: "Macro",
  24929. height: math.unit(2000, "feet"),
  24930. default: true
  24931. },
  24932. {
  24933. name: "Megamacro",
  24934. height: math.unit(12, "miles")
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(7 + 2 / 12, "feet"),
  24943. weight: math.unit(300, "lb"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/reban/front.svg",
  24947. extra: 1287/1212,
  24948. bottom: 148/1435
  24949. }
  24950. },
  24951. head: {
  24952. height: math.unit(1.95, "feet"),
  24953. name: "Head",
  24954. image: {
  24955. source: "./media/characters/reban/head.svg"
  24956. }
  24957. },
  24958. maw: {
  24959. height: math.unit(0.95, "feet"),
  24960. name: "Maw",
  24961. image: {
  24962. source: "./media/characters/reban/maw.svg"
  24963. }
  24964. },
  24965. foot: {
  24966. height: math.unit(1.65, "feet"),
  24967. name: "Foot",
  24968. image: {
  24969. source: "./media/characters/reban/foot.svg"
  24970. }
  24971. },
  24972. dick: {
  24973. height: math.unit(7 / 5, "feet"),
  24974. name: "Dick",
  24975. image: {
  24976. source: "./media/characters/reban/dick.svg"
  24977. }
  24978. },
  24979. },
  24980. [
  24981. {
  24982. name: "Natural Height",
  24983. height: math.unit(7 + 2 / 12, "feet")
  24984. },
  24985. {
  24986. name: "Macro",
  24987. height: math.unit(500, "feet"),
  24988. default: true
  24989. },
  24990. {
  24991. name: "Canon Height",
  24992. height: math.unit(50, "AU")
  24993. },
  24994. ]
  24995. ))
  24996. characterMakers.push(() => makeCharacter(
  24997. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24998. {
  24999. front: {
  25000. height: math.unit(6, "feet"),
  25001. weight: math.unit(150, "lb"),
  25002. name: "Front",
  25003. image: {
  25004. source: "./media/characters/terrance-keayes/front.svg",
  25005. extra: 1.005,
  25006. bottom: 151 / 1615
  25007. }
  25008. },
  25009. side: {
  25010. height: math.unit(6, "feet"),
  25011. weight: math.unit(150, "lb"),
  25012. name: "Side",
  25013. image: {
  25014. source: "./media/characters/terrance-keayes/side.svg",
  25015. extra: 1.005,
  25016. bottom: 129.4 / 1544
  25017. }
  25018. },
  25019. back: {
  25020. height: math.unit(6, "feet"),
  25021. weight: math.unit(150, "lb"),
  25022. name: "Back",
  25023. image: {
  25024. source: "./media/characters/terrance-keayes/back.svg",
  25025. extra: 1.005,
  25026. bottom: 58.4 / 1557.3
  25027. }
  25028. },
  25029. dick: {
  25030. height: math.unit(6 * 0.208, "feet"),
  25031. name: "Dick",
  25032. image: {
  25033. source: "./media/characters/terrance-keayes/dick.svg"
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Canon Height",
  25040. height: math.unit(35, "miles"),
  25041. default: true
  25042. },
  25043. ]
  25044. ))
  25045. characterMakers.push(() => makeCharacter(
  25046. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25047. {
  25048. front: {
  25049. height: math.unit(6, "feet"),
  25050. weight: math.unit(150, "lb"),
  25051. name: "Front",
  25052. image: {
  25053. source: "./media/characters/ofelia/front.svg",
  25054. extra: 1130/1117,
  25055. bottom: 91/1221
  25056. }
  25057. },
  25058. back: {
  25059. height: math.unit(6, "feet"),
  25060. weight: math.unit(150, "lb"),
  25061. name: "Back",
  25062. image: {
  25063. source: "./media/characters/ofelia/back.svg",
  25064. extra: 1172/1159,
  25065. bottom: 28/1200
  25066. }
  25067. },
  25068. maw: {
  25069. height: math.unit(1, "feet"),
  25070. name: "Maw",
  25071. image: {
  25072. source: "./media/characters/ofelia/maw.svg"
  25073. }
  25074. },
  25075. foot: {
  25076. height: math.unit(1.949, "feet"),
  25077. name: "Foot",
  25078. image: {
  25079. source: "./media/characters/ofelia/foot.svg"
  25080. }
  25081. },
  25082. },
  25083. [
  25084. {
  25085. name: "Canon Height",
  25086. height: math.unit(2000, "miles"),
  25087. default: true
  25088. },
  25089. ]
  25090. ))
  25091. characterMakers.push(() => makeCharacter(
  25092. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25093. {
  25094. front: {
  25095. height: math.unit(6, "feet"),
  25096. weight: math.unit(150, "lb"),
  25097. name: "Front",
  25098. image: {
  25099. source: "./media/characters/samuel/front.svg",
  25100. extra: 265 / 258,
  25101. bottom: 2 / 266.1566
  25102. }
  25103. },
  25104. },
  25105. [
  25106. {
  25107. name: "Macro",
  25108. height: math.unit(100, "feet"),
  25109. default: true
  25110. },
  25111. {
  25112. name: "Full Size",
  25113. height: math.unit(1000, "miles")
  25114. },
  25115. ]
  25116. ))
  25117. characterMakers.push(() => makeCharacter(
  25118. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25119. {
  25120. front: {
  25121. height: math.unit(6, "feet"),
  25122. weight: math.unit(300, "lb"),
  25123. name: "Front",
  25124. image: {
  25125. source: "./media/characters/beishir-kiel/front.svg",
  25126. extra: 569 / 547,
  25127. bottom: 41.9 / 609
  25128. }
  25129. },
  25130. maw: {
  25131. height: math.unit(6 * 0.202, "feet"),
  25132. name: "Maw",
  25133. image: {
  25134. source: "./media/characters/beishir-kiel/maw.svg"
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Macro",
  25141. height: math.unit(300, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25148. {
  25149. front: {
  25150. height: math.unit(5 + 7/12, "feet"),
  25151. weight: math.unit(120, "lb"),
  25152. name: "Front",
  25153. image: {
  25154. source: "./media/characters/logan-grey/front.svg",
  25155. extra: 1836/1738,
  25156. bottom: 108/1944
  25157. }
  25158. },
  25159. back: {
  25160. height: math.unit(5 + 7/12, "feet"),
  25161. weight: math.unit(120, "lb"),
  25162. name: "Back",
  25163. image: {
  25164. source: "./media/characters/logan-grey/back.svg",
  25165. extra: 1880/1794,
  25166. bottom: 24/1904
  25167. }
  25168. },
  25169. frontSfw: {
  25170. height: math.unit(5 + 7/12, "feet"),
  25171. weight: math.unit(120, "lb"),
  25172. name: "Front (SFW)",
  25173. image: {
  25174. source: "./media/characters/logan-grey/front-sfw.svg",
  25175. extra: 1836/1738,
  25176. bottom: 108/1944
  25177. }
  25178. },
  25179. backSfw: {
  25180. height: math.unit(5 + 7/12, "feet"),
  25181. weight: math.unit(120, "lb"),
  25182. name: "Back (SFW)",
  25183. image: {
  25184. source: "./media/characters/logan-grey/back-sfw.svg",
  25185. extra: 1880/1794,
  25186. bottom: 24/1904
  25187. }
  25188. },
  25189. hands: {
  25190. height: math.unit(0.84, "feet"),
  25191. name: "Hands",
  25192. image: {
  25193. source: "./media/characters/logan-grey/hands.svg"
  25194. }
  25195. },
  25196. paws: {
  25197. height: math.unit(0.72, "feet"),
  25198. name: "Paws",
  25199. image: {
  25200. source: "./media/characters/logan-grey/paws.svg"
  25201. }
  25202. },
  25203. cock: {
  25204. height: math.unit(1.45, "feet"),
  25205. name: "Cock",
  25206. image: {
  25207. source: "./media/characters/logan-grey/cock.svg"
  25208. }
  25209. },
  25210. cockAlt: {
  25211. height: math.unit(1.437, "feet"),
  25212. name: "Cock (alt)",
  25213. image: {
  25214. source: "./media/characters/logan-grey/cock-alt.svg"
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(5 + 8 / 12, "feet")
  25222. },
  25223. {
  25224. name: "The 500 Foot Femboy",
  25225. height: math.unit(500, "feet"),
  25226. default: true
  25227. },
  25228. {
  25229. name: "Megmacro",
  25230. height: math.unit(20, "miles")
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(8 + 2 / 12, "feet"),
  25239. weight: math.unit(275, "lb"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/draganta/front.svg",
  25243. extra: 1177 / 1135,
  25244. bottom: 33.46 / 1212.1
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(8 + 6 / 12, "feet"),
  25252. default: true
  25253. },
  25254. {
  25255. name: "Macro",
  25256. height: math.unit(150, "feet")
  25257. },
  25258. {
  25259. name: "Megamacro",
  25260. height: math.unit(1000, "miles")
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(1.72, "m"),
  25269. weight: math.unit(80, "lb"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/voski/front.svg",
  25273. extra: 2076.22 / 2022.4,
  25274. bottom: 102.7 / 2177.3866
  25275. }
  25276. },
  25277. frontFlaccid: {
  25278. height: math.unit(1.72, "m"),
  25279. weight: math.unit(80, "lb"),
  25280. name: "Front (Flaccid)",
  25281. image: {
  25282. source: "./media/characters/voski/front-flaccid.svg",
  25283. extra: 2076.22 / 2022.4,
  25284. bottom: 102.7 / 2177.3866
  25285. }
  25286. },
  25287. frontErect: {
  25288. height: math.unit(1.72, "m"),
  25289. weight: math.unit(80, "lb"),
  25290. name: "Front (Erect)",
  25291. image: {
  25292. source: "./media/characters/voski/front-erect.svg",
  25293. extra: 2076.22 / 2022.4,
  25294. bottom: 102.7 / 2177.3866
  25295. }
  25296. },
  25297. back: {
  25298. height: math.unit(1.72, "m"),
  25299. weight: math.unit(80, "lb"),
  25300. name: "Back",
  25301. image: {
  25302. source: "./media/characters/voski/back.svg",
  25303. extra: 2104 / 2051,
  25304. bottom: 10.45 / 2113.63
  25305. }
  25306. },
  25307. },
  25308. [
  25309. {
  25310. name: "Normal",
  25311. height: math.unit(1.72, "m")
  25312. },
  25313. {
  25314. name: "Macro",
  25315. height: math.unit(55, "m"),
  25316. default: true
  25317. },
  25318. {
  25319. name: "Macro+",
  25320. height: math.unit(300, "m")
  25321. },
  25322. {
  25323. name: "Macro++",
  25324. height: math.unit(700, "m")
  25325. },
  25326. {
  25327. name: "Macro+++",
  25328. height: math.unit(4500, "m")
  25329. },
  25330. {
  25331. name: "Macro++++",
  25332. height: math.unit(45, "km")
  25333. },
  25334. {
  25335. name: "Macro+++++",
  25336. height: math.unit(1220, "km")
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(2.3, "m"),
  25345. weight: math.unit(304, "kg"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/icowom-lee/front.svg",
  25349. extra: 985 / 955,
  25350. bottom: 25.4 / 1012
  25351. }
  25352. },
  25353. fronttentacles: {
  25354. height: math.unit(2.3, "m"),
  25355. weight: math.unit(304, "kg"),
  25356. name: "Front-tentacles",
  25357. image: {
  25358. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25359. extra: 985 / 955,
  25360. bottom: 25.4 / 1012
  25361. }
  25362. },
  25363. back: {
  25364. height: math.unit(2.3, "m"),
  25365. weight: math.unit(304, "kg"),
  25366. name: "Back",
  25367. image: {
  25368. source: "./media/characters/icowom-lee/back.svg",
  25369. extra: 975 / 954,
  25370. bottom: 9.5 / 985
  25371. }
  25372. },
  25373. backtentacles: {
  25374. height: math.unit(2.3, "m"),
  25375. weight: math.unit(304, "kg"),
  25376. name: "Back-tentacles",
  25377. image: {
  25378. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25379. extra: 975 / 954,
  25380. bottom: 9.5 / 985
  25381. }
  25382. },
  25383. frontDressed: {
  25384. height: math.unit(2.3, "m"),
  25385. weight: math.unit(304, "kg"),
  25386. name: "Front (Dressed)",
  25387. image: {
  25388. source: "./media/characters/icowom-lee/front-dressed.svg",
  25389. extra: 3076 / 2933,
  25390. bottom: 51.4 / 3125.1889
  25391. }
  25392. },
  25393. rump: {
  25394. height: math.unit(0.776, "meters"),
  25395. name: "Rump",
  25396. image: {
  25397. source: "./media/characters/icowom-lee/rump.svg"
  25398. }
  25399. },
  25400. genitals: {
  25401. height: math.unit(0.78, "meters"),
  25402. name: "Genitals",
  25403. image: {
  25404. source: "./media/characters/icowom-lee/genitals.svg"
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(2.3, "meters"),
  25412. default: true
  25413. },
  25414. {
  25415. name: "Macro",
  25416. height: math.unit(94, "meters"),
  25417. default: true
  25418. },
  25419. ]
  25420. ))
  25421. characterMakers.push(() => makeCharacter(
  25422. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25423. {
  25424. front: {
  25425. height: math.unit(22, "meters"),
  25426. weight: math.unit(21000, "kg"),
  25427. name: "Front",
  25428. image: {
  25429. source: "./media/characters/shock-diamond/front.svg",
  25430. extra: 2204 / 2053,
  25431. bottom: 65 / 2239.47
  25432. }
  25433. },
  25434. frontNude: {
  25435. height: math.unit(22, "meters"),
  25436. weight: math.unit(21000, "kg"),
  25437. name: "Front (Nude)",
  25438. image: {
  25439. source: "./media/characters/shock-diamond/front-nude.svg",
  25440. extra: 2514 / 2285,
  25441. bottom: 13 / 2527.56
  25442. }
  25443. },
  25444. },
  25445. [
  25446. {
  25447. name: "Normal",
  25448. height: math.unit(3, "meters")
  25449. },
  25450. {
  25451. name: "Macro",
  25452. height: math.unit(22, "meters"),
  25453. default: true
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25459. {
  25460. front: {
  25461. height: math.unit(5 + 4/12, "feet"),
  25462. weight: math.unit(125, "lb"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/rory/front.svg",
  25466. extra: 1790/1681,
  25467. bottom: 66/1856
  25468. },
  25469. form: "normal",
  25470. default: true
  25471. },
  25472. back: {
  25473. height: math.unit(5 + 4/12, "feet"),
  25474. weight: math.unit(125, "lb"),
  25475. name: "Back",
  25476. image: {
  25477. source: "./media/characters/rory/back.svg",
  25478. extra: 1805/1690,
  25479. bottom: 56/1861
  25480. },
  25481. form: "normal"
  25482. },
  25483. frontDressed: {
  25484. height: math.unit(5 + 4/12, "feet"),
  25485. weight: math.unit(125, "lb"),
  25486. name: "Front (Dressed)",
  25487. image: {
  25488. source: "./media/characters/rory/front-dressed.svg",
  25489. extra: 1790/1681,
  25490. bottom: 66/1856
  25491. },
  25492. form: "normal"
  25493. },
  25494. backDressed: {
  25495. height: math.unit(5 + 4/12, "feet"),
  25496. weight: math.unit(125, "lb"),
  25497. name: "Back (Dressed)",
  25498. image: {
  25499. source: "./media/characters/rory/back-dressed.svg",
  25500. extra: 1805/1690,
  25501. bottom: 56/1861
  25502. },
  25503. form: "normal"
  25504. },
  25505. frontNsfw: {
  25506. height: math.unit(5 + 4/12, "feet"),
  25507. weight: math.unit(125, "lb"),
  25508. name: "Front (NSFW)",
  25509. image: {
  25510. source: "./media/characters/rory/front-nsfw.svg",
  25511. extra: 1790/1681,
  25512. bottom: 66/1856
  25513. },
  25514. form: "normal"
  25515. },
  25516. backNsfw: {
  25517. height: math.unit(5 + 4/12, "feet"),
  25518. weight: math.unit(125, "lb"),
  25519. name: "Back (NSFW)",
  25520. image: {
  25521. source: "./media/characters/rory/back-nsfw.svg",
  25522. extra: 1805/1690,
  25523. bottom: 56/1861
  25524. },
  25525. form: "normal"
  25526. },
  25527. dick: {
  25528. height: math.unit(0.8, "feet"),
  25529. name: "Dick",
  25530. image: {
  25531. source: "./media/characters/rory/dick.svg"
  25532. },
  25533. form: "normal"
  25534. },
  25535. thicc_front: {
  25536. height: math.unit(5 + 4/12, "feet"),
  25537. weight: math.unit(195, "lb"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/rory/thicc-front.svg",
  25541. extra: 1220/1100,
  25542. bottom: 103/1323
  25543. },
  25544. form: "thicc",
  25545. default: true
  25546. },
  25547. thicc_back: {
  25548. height: math.unit(5 + 4/12, "feet"),
  25549. weight: math.unit(195, "lb"),
  25550. name: "Back",
  25551. image: {
  25552. source: "./media/characters/rory/thicc-back.svg",
  25553. extra: 1166/1086,
  25554. bottom: 35/1201
  25555. },
  25556. form: "thicc"
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Micro",
  25562. height: math.unit(3, "inches"),
  25563. allForms: true
  25564. },
  25565. {
  25566. name: "Normal",
  25567. height: math.unit(5 + 4/12, "feet"),
  25568. allForms: true,
  25569. default: true
  25570. },
  25571. {
  25572. name: "Macro",
  25573. height: math.unit(90, "feet"),
  25574. allForms: true
  25575. },
  25576. {
  25577. name: "Supercharged",
  25578. height: math.unit(270, "feet"),
  25579. allForms: true
  25580. },
  25581. ],
  25582. {
  25583. "normal": {
  25584. name: "Normal",
  25585. default: true
  25586. },
  25587. "thicc": {
  25588. name: "Thicc",
  25589. },
  25590. }
  25591. ))
  25592. characterMakers.push(() => makeCharacter(
  25593. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25594. {
  25595. front: {
  25596. height: math.unit(5 + 9 / 12, "feet"),
  25597. weight: math.unit(190, "lb"),
  25598. name: "Front",
  25599. image: {
  25600. source: "./media/characters/sprisk/front.svg",
  25601. extra: 1225 / 1180,
  25602. bottom: 42.7 / 1266.4
  25603. }
  25604. },
  25605. frontNsfw: {
  25606. height: math.unit(5 + 9 / 12, "feet"),
  25607. weight: math.unit(190, "lb"),
  25608. name: "Front (NSFW)",
  25609. image: {
  25610. source: "./media/characters/sprisk/front-nsfw.svg",
  25611. extra: 1225 / 1180,
  25612. bottom: 42.7 / 1266.4
  25613. }
  25614. },
  25615. back: {
  25616. height: math.unit(5 + 9 / 12, "feet"),
  25617. weight: math.unit(190, "lb"),
  25618. name: "Back",
  25619. image: {
  25620. source: "./media/characters/sprisk/back.svg",
  25621. extra: 1247 / 1200,
  25622. bottom: 5.6 / 1253.04
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Tiny",
  25629. height: math.unit(2, "inches")
  25630. },
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(5 + 9 / 12, "feet"),
  25634. default: true
  25635. },
  25636. {
  25637. name: "Mini Macro",
  25638. height: math.unit(18, "feet")
  25639. },
  25640. {
  25641. name: "Macro",
  25642. height: math.unit(100, "feet")
  25643. },
  25644. {
  25645. name: "MACRO",
  25646. height: math.unit(50, "miles")
  25647. },
  25648. {
  25649. name: "M A C R O",
  25650. height: math.unit(300, "miles")
  25651. },
  25652. ]
  25653. ))
  25654. characterMakers.push(() => makeCharacter(
  25655. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25656. {
  25657. side: {
  25658. height: math.unit(15.6, "meters"),
  25659. weight: math.unit(700000, "kg"),
  25660. name: "Side",
  25661. image: {
  25662. source: "./media/characters/bunsen/side.svg",
  25663. extra: 1644 / 358
  25664. }
  25665. },
  25666. foot: {
  25667. height: math.unit(1.611 * 1644 / 358, "meter"),
  25668. name: "Foot",
  25669. image: {
  25670. source: "./media/characters/bunsen/foot.svg"
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Small",
  25677. height: math.unit(10, "feet")
  25678. },
  25679. {
  25680. name: "Normal",
  25681. height: math.unit(15.6, "meters"),
  25682. default: true
  25683. },
  25684. ]
  25685. ))
  25686. characterMakers.push(() => makeCharacter(
  25687. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25688. {
  25689. front: {
  25690. height: math.unit(4 + 11 / 12, "feet"),
  25691. weight: math.unit(140, "lb"),
  25692. name: "Front",
  25693. image: {
  25694. source: "./media/characters/sesh/front.svg",
  25695. extra: 3420 / 3231,
  25696. bottom: 72 / 3949.5
  25697. }
  25698. },
  25699. },
  25700. [
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(4 + 11 / 12, "feet")
  25704. },
  25705. {
  25706. name: "Grown",
  25707. height: math.unit(15, "feet"),
  25708. default: true
  25709. },
  25710. {
  25711. name: "Macro",
  25712. height: math.unit(1500, "feet")
  25713. },
  25714. {
  25715. name: "Megamacro",
  25716. height: math.unit(30, "miles")
  25717. },
  25718. {
  25719. name: "Continental",
  25720. height: math.unit(3000, "miles")
  25721. },
  25722. {
  25723. name: "Gravity Mass",
  25724. height: math.unit(300000, "miles")
  25725. },
  25726. {
  25727. name: "Planet Buster",
  25728. height: math.unit(30000000, "miles")
  25729. },
  25730. {
  25731. name: "Big",
  25732. height: math.unit(3000000000, "miles")
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25738. {
  25739. front: {
  25740. height: math.unit(9, "feet"),
  25741. weight: math.unit(350, "lb"),
  25742. name: "Front",
  25743. image: {
  25744. source: "./media/characters/pepper/front.svg",
  25745. extra: 1448 / 1312,
  25746. bottom: 9.4 / 1457.88
  25747. }
  25748. },
  25749. back: {
  25750. height: math.unit(9, "feet"),
  25751. weight: math.unit(350, "lb"),
  25752. name: "Back",
  25753. image: {
  25754. source: "./media/characters/pepper/back.svg",
  25755. extra: 1423 / 1300,
  25756. bottom: 4.6 / 1429
  25757. }
  25758. },
  25759. maw: {
  25760. height: math.unit(0.932, "feet"),
  25761. name: "Maw",
  25762. image: {
  25763. source: "./media/characters/pepper/maw.svg"
  25764. }
  25765. },
  25766. },
  25767. [
  25768. {
  25769. name: "Normal",
  25770. height: math.unit(9, "feet"),
  25771. default: true
  25772. },
  25773. ]
  25774. ))
  25775. characterMakers.push(() => makeCharacter(
  25776. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25777. {
  25778. front: {
  25779. height: math.unit(6, "feet"),
  25780. weight: math.unit(150, "lb"),
  25781. name: "Front",
  25782. image: {
  25783. source: "./media/characters/maelstrom/front.svg",
  25784. extra: 2100 / 1883,
  25785. bottom: 94 / 2196.7
  25786. }
  25787. },
  25788. },
  25789. [
  25790. {
  25791. name: "Less Kaiju",
  25792. height: math.unit(200, "feet")
  25793. },
  25794. {
  25795. name: "Kaiju",
  25796. height: math.unit(400, "feet"),
  25797. default: true
  25798. },
  25799. {
  25800. name: "Kaiju-er",
  25801. height: math.unit(600, "feet")
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25807. {
  25808. front: {
  25809. height: math.unit(6 + 5 / 12, "feet"),
  25810. weight: math.unit(180, "lb"),
  25811. name: "Front",
  25812. image: {
  25813. source: "./media/characters/lexir/front.svg",
  25814. extra: 180 / 172,
  25815. bottom: 12 / 192
  25816. }
  25817. },
  25818. back: {
  25819. height: math.unit(6 + 5 / 12, "feet"),
  25820. weight: math.unit(180, "lb"),
  25821. name: "Back",
  25822. image: {
  25823. source: "./media/characters/lexir/back.svg",
  25824. extra: 1273/1201,
  25825. bottom: 39/1312
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Very Smal",
  25832. height: math.unit(1, "nm")
  25833. },
  25834. {
  25835. name: "Normal",
  25836. height: math.unit(6 + 5 / 12, "feet"),
  25837. default: true
  25838. },
  25839. {
  25840. name: "Macro",
  25841. height: math.unit(1, "mile")
  25842. },
  25843. {
  25844. name: "Megamacro",
  25845. height: math.unit(50, "miles")
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(1.5, "meters"),
  25854. weight: math.unit(100, "lb"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/maksio/front.svg",
  25858. extra: 1549 / 1531,
  25859. bottom: 123.7 / 1674.5429
  25860. }
  25861. },
  25862. back: {
  25863. height: math.unit(1.5, "meters"),
  25864. weight: math.unit(100, "lb"),
  25865. name: "Back",
  25866. image: {
  25867. source: "./media/characters/maksio/back.svg",
  25868. extra: 1541 / 1509,
  25869. bottom: 97 / 1639
  25870. }
  25871. },
  25872. hand: {
  25873. height: math.unit(0.621, "feet"),
  25874. name: "Hand",
  25875. image: {
  25876. source: "./media/characters/maksio/hand.svg"
  25877. }
  25878. },
  25879. foot: {
  25880. height: math.unit(1.611, "feet"),
  25881. name: "Foot",
  25882. image: {
  25883. source: "./media/characters/maksio/foot.svg"
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Shrunken",
  25890. height: math.unit(10, "cm")
  25891. },
  25892. {
  25893. name: "Normal",
  25894. height: math.unit(150, "cm"),
  25895. default: true
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(100, "feet"),
  25904. name: "Front",
  25905. image: {
  25906. source: "./media/characters/erza-bear/front.svg",
  25907. extra: 2449 / 2390,
  25908. bottom: 46 / 2494
  25909. }
  25910. },
  25911. back: {
  25912. height: math.unit(100, "feet"),
  25913. name: "Back",
  25914. image: {
  25915. source: "./media/characters/erza-bear/back.svg",
  25916. extra: 2489 / 2430,
  25917. bottom: 85.4 / 2480
  25918. }
  25919. },
  25920. tail: {
  25921. height: math.unit(42, "feet"),
  25922. name: "Tail",
  25923. image: {
  25924. source: "./media/characters/erza-bear/tail.svg"
  25925. }
  25926. },
  25927. tongue: {
  25928. height: math.unit(8, "feet"),
  25929. name: "Tongue",
  25930. image: {
  25931. source: "./media/characters/erza-bear/tongue.svg"
  25932. }
  25933. },
  25934. dick: {
  25935. height: math.unit(10.5, "feet"),
  25936. name: "Dick",
  25937. image: {
  25938. source: "./media/characters/erza-bear/dick.svg"
  25939. }
  25940. },
  25941. dickVertical: {
  25942. height: math.unit(16.9, "feet"),
  25943. name: "Dick (Vertical)",
  25944. image: {
  25945. source: "./media/characters/erza-bear/dick-vertical.svg"
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Macro",
  25952. height: math.unit(100, "feet"),
  25953. default: true
  25954. },
  25955. ]
  25956. ))
  25957. characterMakers.push(() => makeCharacter(
  25958. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25959. {
  25960. front: {
  25961. height: math.unit(172, "cm"),
  25962. weight: math.unit(73, "kg"),
  25963. name: "Front",
  25964. image: {
  25965. source: "./media/characters/violet-flor/front.svg",
  25966. extra: 1474/1379,
  25967. bottom: 113/1587
  25968. }
  25969. },
  25970. back: {
  25971. height: math.unit(180, "cm"),
  25972. weight: math.unit(73, "kg"),
  25973. name: "Back",
  25974. image: {
  25975. source: "./media/characters/violet-flor/back.svg",
  25976. extra: 1660/1567,
  25977. bottom: 49/1709
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Normal",
  25984. height: math.unit(172, "cm"),
  25985. default: true
  25986. },
  25987. ]
  25988. ))
  25989. characterMakers.push(() => makeCharacter(
  25990. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25991. {
  25992. front: {
  25993. height: math.unit(6, "feet"),
  25994. weight: math.unit(220, "lb"),
  25995. name: "Front",
  25996. image: {
  25997. source: "./media/characters/lynn-rhea/front.svg",
  25998. extra: 310 / 273
  25999. }
  26000. },
  26001. back: {
  26002. height: math.unit(6, "feet"),
  26003. weight: math.unit(220, "lb"),
  26004. name: "Back",
  26005. image: {
  26006. source: "./media/characters/lynn-rhea/back.svg",
  26007. extra: 310 / 273
  26008. }
  26009. },
  26010. dicks: {
  26011. height: math.unit(0.9, "feet"),
  26012. name: "Dicks",
  26013. image: {
  26014. source: "./media/characters/lynn-rhea/dicks.svg"
  26015. }
  26016. },
  26017. slit: {
  26018. height: math.unit(0.4, "feet"),
  26019. name: "Slit",
  26020. image: {
  26021. source: "./media/characters/lynn-rhea/slit.svg"
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Micro",
  26028. height: math.unit(1, "inch")
  26029. },
  26030. {
  26031. name: "Macro",
  26032. height: math.unit(60, "feet"),
  26033. default: true
  26034. },
  26035. {
  26036. name: "Megamacro",
  26037. height: math.unit(2, "miles")
  26038. },
  26039. {
  26040. name: "Gigamacro",
  26041. height: math.unit(3, "earths")
  26042. },
  26043. {
  26044. name: "Galactic",
  26045. height: math.unit(0.8, "galaxies")
  26046. },
  26047. ]
  26048. ))
  26049. characterMakers.push(() => makeCharacter(
  26050. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26051. {
  26052. front: {
  26053. height: math.unit(1600, "feet"),
  26054. weight: math.unit(85758785169, "kg"),
  26055. name: "Front",
  26056. image: {
  26057. source: "./media/characters/valathos/front.svg",
  26058. extra: 1451 / 1339
  26059. }
  26060. },
  26061. },
  26062. [
  26063. {
  26064. name: "Macro",
  26065. height: math.unit(1600, "feet"),
  26066. default: true
  26067. },
  26068. ]
  26069. ))
  26070. characterMakers.push(() => makeCharacter(
  26071. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26072. {
  26073. front: {
  26074. height: math.unit(7 + 5 / 12, "feet"),
  26075. weight: math.unit(300, "lb"),
  26076. name: "Front",
  26077. image: {
  26078. source: "./media/characters/azula/front.svg",
  26079. extra: 3208 / 2880,
  26080. bottom: 80.2 / 3277
  26081. }
  26082. },
  26083. back: {
  26084. height: math.unit(7 + 5 / 12, "feet"),
  26085. weight: math.unit(300, "lb"),
  26086. name: "Back",
  26087. image: {
  26088. source: "./media/characters/azula/back.svg",
  26089. extra: 3169 / 2822,
  26090. bottom: 150.6 / 3321
  26091. }
  26092. },
  26093. },
  26094. [
  26095. {
  26096. name: "Normal",
  26097. height: math.unit(7 + 5 / 12, "feet"),
  26098. default: true
  26099. },
  26100. {
  26101. name: "Big",
  26102. height: math.unit(20, "feet")
  26103. },
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26108. {
  26109. front: {
  26110. height: math.unit(5 + 1 / 12, "feet"),
  26111. weight: math.unit(110, "lb"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/rupert/front.svg",
  26115. extra: 1549 / 1495,
  26116. bottom: 54.2 / 1604.4
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(5 + 1 / 12, "feet"),
  26124. default: true
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26130. {
  26131. front: {
  26132. height: math.unit(8 + 4 / 12, "feet"),
  26133. weight: math.unit(350, "lb"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/sheera-castellar/front.svg",
  26137. extra: 1957 / 1894,
  26138. bottom: 26.97 / 1975.017
  26139. }
  26140. },
  26141. side: {
  26142. height: math.unit(8 + 4 / 12, "feet"),
  26143. weight: math.unit(350, "lb"),
  26144. name: "Side",
  26145. image: {
  26146. source: "./media/characters/sheera-castellar/side.svg",
  26147. extra: 1957 / 1894
  26148. }
  26149. },
  26150. back: {
  26151. height: math.unit(8 + 4 / 12, "feet"),
  26152. weight: math.unit(350, "lb"),
  26153. name: "Back",
  26154. image: {
  26155. source: "./media/characters/sheera-castellar/back.svg",
  26156. extra: 1957 / 1894
  26157. }
  26158. },
  26159. angled: {
  26160. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26161. weight: math.unit(350, "lb"),
  26162. name: "Angled",
  26163. image: {
  26164. source: "./media/characters/sheera-castellar/angled.svg",
  26165. extra: 1807 / 1707,
  26166. bottom: 68 / 1875
  26167. }
  26168. },
  26169. genitals: {
  26170. height: math.unit(2.2, "feet"),
  26171. name: "Genitals",
  26172. image: {
  26173. source: "./media/characters/sheera-castellar/genitals.svg"
  26174. }
  26175. },
  26176. taur: {
  26177. height: math.unit(10 + 6/12, "feet"),
  26178. name: "Taur",
  26179. image: {
  26180. source: "./media/characters/sheera-castellar/taur.svg",
  26181. extra: 2017/1909,
  26182. bottom: 185/2202
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Normal",
  26189. height: math.unit(8 + 4 / 12, "feet")
  26190. },
  26191. {
  26192. name: "Macro",
  26193. height: math.unit(150, "feet"),
  26194. default: true
  26195. },
  26196. {
  26197. name: "Macro+",
  26198. height: math.unit(800, "feet")
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(6, "feet"),
  26207. weight: math.unit(150, "lb"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/jaipur/front.svg",
  26211. extra: 3860 / 3731,
  26212. bottom: 287 / 4140
  26213. }
  26214. },
  26215. back: {
  26216. height: math.unit(6, "feet"),
  26217. weight: math.unit(150, "lb"),
  26218. name: "Back",
  26219. image: {
  26220. source: "./media/characters/jaipur/back.svg",
  26221. extra: 1637/1561,
  26222. bottom: 154/1791
  26223. }
  26224. },
  26225. },
  26226. [
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(1.85, "meters"),
  26230. default: true
  26231. },
  26232. {
  26233. name: "Macro",
  26234. height: math.unit(150, "meters")
  26235. },
  26236. {
  26237. name: "Macro+",
  26238. height: math.unit(0.5, "miles")
  26239. },
  26240. {
  26241. name: "Macro++",
  26242. height: math.unit(2.5, "miles")
  26243. },
  26244. {
  26245. name: "Macro+++",
  26246. height: math.unit(12, "miles")
  26247. },
  26248. {
  26249. name: "Macro++++",
  26250. height: math.unit(120, "miles")
  26251. },
  26252. {
  26253. name: "Macro+++++",
  26254. height: math.unit(1200, "miles")
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(6, "feet"),
  26263. weight: math.unit(150, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/sheila-wolf/front.svg",
  26267. extra: 1931 / 1808,
  26268. bottom: 29.5 / 1960
  26269. }
  26270. },
  26271. dick: {
  26272. height: math.unit(1.464, "feet"),
  26273. name: "Dick",
  26274. image: {
  26275. source: "./media/characters/sheila-wolf/dick.svg"
  26276. }
  26277. },
  26278. muzzle: {
  26279. height: math.unit(0.513, "feet"),
  26280. name: "Muzzle",
  26281. image: {
  26282. source: "./media/characters/sheila-wolf/muzzle.svg"
  26283. }
  26284. },
  26285. },
  26286. [
  26287. {
  26288. name: "Macro",
  26289. height: math.unit(70, "feet"),
  26290. default: true
  26291. },
  26292. ]
  26293. ))
  26294. characterMakers.push(() => makeCharacter(
  26295. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26296. {
  26297. front: {
  26298. height: math.unit(32, "meters"),
  26299. weight: math.unit(300000, "kg"),
  26300. name: "Front",
  26301. image: {
  26302. source: "./media/characters/almor/front.svg",
  26303. extra: 1408 / 1322,
  26304. bottom: 94.6 / 1506.5
  26305. }
  26306. },
  26307. },
  26308. [
  26309. {
  26310. name: "Macro",
  26311. height: math.unit(32, "meters"),
  26312. default: true
  26313. },
  26314. ]
  26315. ))
  26316. characterMakers.push(() => makeCharacter(
  26317. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26318. {
  26319. front: {
  26320. height: math.unit(7, "feet"),
  26321. weight: math.unit(200, "lb"),
  26322. name: "Front",
  26323. image: {
  26324. source: "./media/characters/silver/front.svg",
  26325. extra: 472.1 / 450.5,
  26326. bottom: 26.5 / 499.424
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(7, "feet"),
  26334. default: true
  26335. },
  26336. {
  26337. name: "Macro",
  26338. height: math.unit(800, "feet")
  26339. },
  26340. {
  26341. name: "Megamacro",
  26342. height: math.unit(250, "miles")
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(6, "feet"),
  26351. weight: math.unit(150, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/pliskin/front.svg",
  26355. extra: 1469 / 1359,
  26356. bottom: 70 / 1540
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Micro",
  26363. height: math.unit(3, "inches")
  26364. },
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(5 + 11 / 12, "feet"),
  26368. default: true
  26369. },
  26370. {
  26371. name: "Macro",
  26372. height: math.unit(120, "feet")
  26373. },
  26374. ]
  26375. ))
  26376. characterMakers.push(() => makeCharacter(
  26377. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26378. {
  26379. front: {
  26380. height: math.unit(6, "feet"),
  26381. weight: math.unit(150, "lb"),
  26382. name: "Front",
  26383. image: {
  26384. source: "./media/characters/sammy/front.svg",
  26385. extra: 1193 / 1089,
  26386. bottom: 30.5 / 1226
  26387. }
  26388. },
  26389. },
  26390. [
  26391. {
  26392. name: "Macro",
  26393. height: math.unit(1700, "feet"),
  26394. default: true
  26395. },
  26396. {
  26397. name: "Examacro",
  26398. height: math.unit(2.5e9, "lightyears")
  26399. },
  26400. ]
  26401. ))
  26402. characterMakers.push(() => makeCharacter(
  26403. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26404. {
  26405. front: {
  26406. height: math.unit(21, "meters"),
  26407. weight: math.unit(12, "tonnes"),
  26408. name: "Front",
  26409. image: {
  26410. source: "./media/characters/kuru/front.svg",
  26411. extra: 4301 / 3785,
  26412. bottom: 371.3 / 4691
  26413. }
  26414. },
  26415. },
  26416. [
  26417. {
  26418. name: "Macro",
  26419. height: math.unit(21, "meters"),
  26420. default: true
  26421. },
  26422. ]
  26423. ))
  26424. characterMakers.push(() => makeCharacter(
  26425. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26426. {
  26427. front: {
  26428. height: math.unit(23, "meters"),
  26429. weight: math.unit(12.2, "tonnes"),
  26430. name: "Front",
  26431. image: {
  26432. source: "./media/characters/rakka/front.svg",
  26433. extra: 4670 / 4169,
  26434. bottom: 301 / 4968.7
  26435. }
  26436. },
  26437. },
  26438. [
  26439. {
  26440. name: "Macro",
  26441. height: math.unit(23, "meters"),
  26442. default: true
  26443. },
  26444. ]
  26445. ))
  26446. characterMakers.push(() => makeCharacter(
  26447. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26448. {
  26449. front: {
  26450. height: math.unit(6, "feet"),
  26451. weight: math.unit(150, "lb"),
  26452. name: "Front",
  26453. image: {
  26454. source: "./media/characters/rhys-feline/front.svg",
  26455. extra: 2488 / 2308,
  26456. bottom: 35.67 / 2519.19
  26457. }
  26458. },
  26459. },
  26460. [
  26461. {
  26462. name: "Really Small",
  26463. height: math.unit(1, "nm")
  26464. },
  26465. {
  26466. name: "Micro",
  26467. height: math.unit(4, "inches")
  26468. },
  26469. {
  26470. name: "Normal",
  26471. height: math.unit(4 + 10 / 12, "feet"),
  26472. default: true
  26473. },
  26474. {
  26475. name: "Macro",
  26476. height: math.unit(100, "feet")
  26477. },
  26478. {
  26479. name: "Megamacto",
  26480. height: math.unit(50, "miles")
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26486. {
  26487. side: {
  26488. height: math.unit(30, "feet"),
  26489. weight: math.unit(35000, "kg"),
  26490. name: "Side",
  26491. image: {
  26492. source: "./media/characters/alydar/side.svg",
  26493. extra: 234 / 222,
  26494. bottom: 6.5 / 241
  26495. }
  26496. },
  26497. front: {
  26498. height: math.unit(30, "feet"),
  26499. weight: math.unit(35000, "kg"),
  26500. name: "Front",
  26501. image: {
  26502. source: "./media/characters/alydar/front.svg",
  26503. extra: 223.37 / 210.2,
  26504. bottom: 22.3 / 246.76
  26505. }
  26506. },
  26507. top: {
  26508. height: math.unit(64.54, "feet"),
  26509. weight: math.unit(35000, "kg"),
  26510. name: "Top",
  26511. image: {
  26512. source: "./media/characters/alydar/top.svg"
  26513. }
  26514. },
  26515. anthro: {
  26516. height: math.unit(30, "feet"),
  26517. weight: math.unit(9000, "kg"),
  26518. name: "Anthro",
  26519. image: {
  26520. source: "./media/characters/alydar/anthro.svg",
  26521. extra: 432 / 421,
  26522. bottom: 7.18 / 440
  26523. }
  26524. },
  26525. maw: {
  26526. height: math.unit(11.693, "feet"),
  26527. name: "Maw",
  26528. image: {
  26529. source: "./media/characters/alydar/maw.svg"
  26530. }
  26531. },
  26532. head: {
  26533. height: math.unit(11.693, "feet"),
  26534. name: "Head",
  26535. image: {
  26536. source: "./media/characters/alydar/head.svg"
  26537. }
  26538. },
  26539. headAlt: {
  26540. height: math.unit(12.861, "feet"),
  26541. name: "Head (Alt)",
  26542. image: {
  26543. source: "./media/characters/alydar/head-alt.svg"
  26544. }
  26545. },
  26546. wing: {
  26547. height: math.unit(20.712, "feet"),
  26548. name: "Wing",
  26549. image: {
  26550. source: "./media/characters/alydar/wing.svg"
  26551. }
  26552. },
  26553. wingFeather: {
  26554. height: math.unit(9.662, "feet"),
  26555. name: "Wing Feather",
  26556. image: {
  26557. source: "./media/characters/alydar/wing-feather.svg"
  26558. }
  26559. },
  26560. countourFeather: {
  26561. height: math.unit(4.154, "feet"),
  26562. name: "Contour Feather",
  26563. image: {
  26564. source: "./media/characters/alydar/contour-feather.svg"
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Diplomatic",
  26571. height: math.unit(13, "feet"),
  26572. default: true
  26573. },
  26574. {
  26575. name: "Small",
  26576. height: math.unit(30, "feet")
  26577. },
  26578. {
  26579. name: "Normal",
  26580. height: math.unit(95, "feet"),
  26581. default: true
  26582. },
  26583. {
  26584. name: "Large",
  26585. height: math.unit(285, "feet")
  26586. },
  26587. {
  26588. name: "Incomprehensible",
  26589. height: math.unit(450, "megameters")
  26590. },
  26591. ]
  26592. ))
  26593. characterMakers.push(() => makeCharacter(
  26594. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26595. {
  26596. side: {
  26597. height: math.unit(11, "feet"),
  26598. weight: math.unit(1750, "kg"),
  26599. name: "Side",
  26600. image: {
  26601. source: "./media/characters/selicia/side.svg",
  26602. extra: 440 / 396,
  26603. bottom: 24.8 / 465.979
  26604. }
  26605. },
  26606. maw: {
  26607. height: math.unit(4.665, "feet"),
  26608. name: "Maw",
  26609. image: {
  26610. source: "./media/characters/selicia/maw.svg"
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Normal",
  26617. height: math.unit(11, "feet"),
  26618. default: true
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26624. {
  26625. side: {
  26626. height: math.unit(2 + 6 / 12, "feet"),
  26627. weight: math.unit(30, "lb"),
  26628. name: "Side",
  26629. image: {
  26630. source: "./media/characters/layla/side.svg",
  26631. extra: 244 / 188,
  26632. bottom: 18.2 / 262.1
  26633. }
  26634. },
  26635. back: {
  26636. height: math.unit(2 + 6 / 12, "feet"),
  26637. weight: math.unit(30, "lb"),
  26638. name: "Back",
  26639. image: {
  26640. source: "./media/characters/layla/back.svg",
  26641. extra: 308 / 241.5,
  26642. bottom: 8.9 / 316.8
  26643. }
  26644. },
  26645. cumming: {
  26646. height: math.unit(2 + 6 / 12, "feet"),
  26647. weight: math.unit(30, "lb"),
  26648. name: "Cumming",
  26649. image: {
  26650. source: "./media/characters/layla/cumming.svg",
  26651. extra: 342 / 279,
  26652. bottom: 595 / 938
  26653. }
  26654. },
  26655. dickFlaccid: {
  26656. height: math.unit(2.595, "feet"),
  26657. name: "Flaccid Genitals",
  26658. image: {
  26659. source: "./media/characters/layla/dick-flaccid.svg"
  26660. }
  26661. },
  26662. dickErect: {
  26663. height: math.unit(2.359, "feet"),
  26664. name: "Erect Genitals",
  26665. image: {
  26666. source: "./media/characters/layla/dick-erect.svg"
  26667. }
  26668. },
  26669. dragon: {
  26670. height: math.unit(40, "feet"),
  26671. name: "Dragon",
  26672. image: {
  26673. source: "./media/characters/layla/dragon.svg",
  26674. extra: 610/535,
  26675. bottom: 367/977
  26676. }
  26677. },
  26678. taur: {
  26679. height: math.unit(30, "feet"),
  26680. name: "Taur",
  26681. image: {
  26682. source: "./media/characters/layla/taur.svg",
  26683. extra: 1268/1199,
  26684. bottom: 112/1380
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Micro",
  26691. height: math.unit(1, "inch")
  26692. },
  26693. {
  26694. name: "Small",
  26695. height: math.unit(1, "foot")
  26696. },
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(2 + 6 / 12, "feet"),
  26700. default: true
  26701. },
  26702. {
  26703. name: "Macro",
  26704. height: math.unit(200, "feet")
  26705. },
  26706. {
  26707. name: "Megamacro",
  26708. height: math.unit(1000, "miles")
  26709. },
  26710. {
  26711. name: "Planetary",
  26712. height: math.unit(8000, "miles")
  26713. },
  26714. {
  26715. name: "True Layla",
  26716. height: math.unit(200000 * 7, "multiverses")
  26717. },
  26718. ]
  26719. ))
  26720. characterMakers.push(() => makeCharacter(
  26721. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26722. {
  26723. back: {
  26724. height: math.unit(10.5, "feet"),
  26725. weight: math.unit(800, "lb"),
  26726. name: "Back",
  26727. image: {
  26728. source: "./media/characters/knox/back.svg",
  26729. extra: 1486 / 1089,
  26730. bottom: 107 / 1601.4
  26731. }
  26732. },
  26733. side: {
  26734. height: math.unit(10.5, "feet"),
  26735. weight: math.unit(800, "lb"),
  26736. name: "Side",
  26737. image: {
  26738. source: "./media/characters/knox/side.svg",
  26739. extra: 244 / 218,
  26740. bottom: 14 / 260
  26741. }
  26742. },
  26743. },
  26744. [
  26745. {
  26746. name: "Compact",
  26747. height: math.unit(10.5, "feet"),
  26748. default: true
  26749. },
  26750. {
  26751. name: "Dynamax",
  26752. height: math.unit(210, "feet")
  26753. },
  26754. {
  26755. name: "Full Macro",
  26756. height: math.unit(850, "feet")
  26757. },
  26758. ]
  26759. ))
  26760. characterMakers.push(() => makeCharacter(
  26761. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26762. {
  26763. front: {
  26764. height: math.unit(28, "feet"),
  26765. weight: math.unit(10500, "lb"),
  26766. name: "Front",
  26767. image: {
  26768. source: "./media/characters/kayda/front.svg",
  26769. extra: 1536 / 1428,
  26770. bottom: 68.7 / 1603
  26771. }
  26772. },
  26773. back: {
  26774. height: math.unit(28, "feet"),
  26775. weight: math.unit(10500, "lb"),
  26776. name: "Back",
  26777. image: {
  26778. source: "./media/characters/kayda/back.svg",
  26779. extra: 1557 / 1464,
  26780. bottom: 39.5 / 1597.49
  26781. }
  26782. },
  26783. dick: {
  26784. height: math.unit(3.858, "feet"),
  26785. name: "Dick",
  26786. image: {
  26787. source: "./media/characters/kayda/dick.svg"
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Macro",
  26794. height: math.unit(28, "feet"),
  26795. default: true
  26796. },
  26797. ]
  26798. ))
  26799. characterMakers.push(() => makeCharacter(
  26800. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26801. {
  26802. front: {
  26803. height: math.unit(10 + 11 / 12, "feet"),
  26804. weight: math.unit(1400, "lb"),
  26805. name: "Front",
  26806. image: {
  26807. source: "./media/characters/brian/front.svg",
  26808. extra: 737 / 692,
  26809. bottom: 55.4 / 785
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(10 + 11 / 12, "feet"),
  26817. default: true
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(5 + 8 / 12, "feet"),
  26826. weight: math.unit(140, "lb"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/khemri/front.svg",
  26830. extra: 4780 / 4059,
  26831. bottom: 80.1 / 4859.25
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Micro",
  26838. height: math.unit(6, "inches")
  26839. },
  26840. {
  26841. name: "Normal",
  26842. height: math.unit(5 + 8 / 12, "feet"),
  26843. default: true
  26844. },
  26845. ]
  26846. ))
  26847. characterMakers.push(() => makeCharacter(
  26848. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26849. {
  26850. front: {
  26851. height: math.unit(13, "feet"),
  26852. weight: math.unit(1700, "lb"),
  26853. name: "Front",
  26854. image: {
  26855. source: "./media/characters/felix-braveheart/front.svg",
  26856. extra: 1222 / 1157,
  26857. bottom: 53.2 / 1280
  26858. }
  26859. },
  26860. back: {
  26861. height: math.unit(13, "feet"),
  26862. weight: math.unit(1700, "lb"),
  26863. name: "Back",
  26864. image: {
  26865. source: "./media/characters/felix-braveheart/back.svg",
  26866. extra: 1277 / 1203,
  26867. bottom: 50.2 / 1327
  26868. }
  26869. },
  26870. feral: {
  26871. height: math.unit(6, "feet"),
  26872. weight: math.unit(400, "lb"),
  26873. name: "Feral",
  26874. image: {
  26875. source: "./media/characters/felix-braveheart/feral.svg",
  26876. extra: 682 / 625,
  26877. bottom: 6.9 / 688
  26878. }
  26879. },
  26880. },
  26881. [
  26882. {
  26883. name: "Normal",
  26884. height: math.unit(13, "feet"),
  26885. default: true
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26891. {
  26892. side: {
  26893. height: math.unit(5 + 11 / 12, "feet"),
  26894. weight: math.unit(1400, "lb"),
  26895. name: "Side",
  26896. image: {
  26897. source: "./media/characters/shadow-blade/side.svg",
  26898. extra: 1726 / 1267,
  26899. bottom: 58.4 / 1785
  26900. }
  26901. },
  26902. },
  26903. [
  26904. {
  26905. name: "Normal",
  26906. height: math.unit(5 + 11 / 12, "feet"),
  26907. default: true
  26908. },
  26909. ]
  26910. ))
  26911. characterMakers.push(() => makeCharacter(
  26912. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26913. {
  26914. front: {
  26915. height: math.unit(1 + 6 / 12, "feet"),
  26916. weight: math.unit(25, "lb"),
  26917. name: "Front",
  26918. image: {
  26919. source: "./media/characters/karla-halldor/front.svg",
  26920. extra: 1459 / 1383,
  26921. bottom: 12 / 1472
  26922. }
  26923. },
  26924. },
  26925. [
  26926. {
  26927. name: "Normal",
  26928. height: math.unit(1 + 6 / 12, "feet"),
  26929. default: true
  26930. },
  26931. ]
  26932. ))
  26933. characterMakers.push(() => makeCharacter(
  26934. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26935. {
  26936. front: {
  26937. height: math.unit(6 + 2 / 12, "feet"),
  26938. weight: math.unit(160, "lb"),
  26939. name: "Front",
  26940. image: {
  26941. source: "./media/characters/ariam/front.svg",
  26942. extra: 1073/976,
  26943. bottom: 52/1125
  26944. }
  26945. },
  26946. back: {
  26947. height: math.unit(6 + 2/12, "feet"),
  26948. weight: math.unit(160, "lb"),
  26949. name: "Back",
  26950. image: {
  26951. source: "./media/characters/ariam/back.svg",
  26952. extra: 1103/1023,
  26953. bottom: 9/1112
  26954. }
  26955. },
  26956. dressed: {
  26957. height: math.unit(6 + 2/12, "feet"),
  26958. weight: math.unit(160, "lb"),
  26959. name: "Dressed",
  26960. image: {
  26961. source: "./media/characters/ariam/dressed.svg",
  26962. extra: 1099/1009,
  26963. bottom: 25/1124
  26964. }
  26965. },
  26966. squatting: {
  26967. height: math.unit(4.1, "feet"),
  26968. weight: math.unit(160, "lb"),
  26969. name: "Squatting",
  26970. image: {
  26971. source: "./media/characters/ariam/squatting.svg",
  26972. extra: 2617 / 2112,
  26973. bottom: 61.2 / 2681,
  26974. }
  26975. },
  26976. },
  26977. [
  26978. {
  26979. name: "Normal",
  26980. height: math.unit(6 + 2 / 12, "feet"),
  26981. default: true
  26982. },
  26983. {
  26984. name: "Normal+",
  26985. height: math.unit(4, "meters")
  26986. },
  26987. {
  26988. name: "Macro",
  26989. height: math.unit(50, "meters")
  26990. },
  26991. {
  26992. name: "Macro+",
  26993. height: math.unit(100, "meters")
  26994. },
  26995. {
  26996. name: "Megamacro",
  26997. height: math.unit(20, "km")
  26998. },
  26999. {
  27000. name: "Caretaker",
  27001. height: math.unit(444, "megameters")
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(1.67, "meters"),
  27010. weight: math.unit(140, "lb"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27014. extra: 438 / 410,
  27015. bottom: 0.75 / 439
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Shrunken",
  27022. height: math.unit(7.6, "cm")
  27023. },
  27024. {
  27025. name: "Human Scale",
  27026. height: math.unit(1.67, "meters")
  27027. },
  27028. {
  27029. name: "Wolxi Scale",
  27030. height: math.unit(36.7, "meters"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(1.73, "meters"),
  27040. weight: math.unit(240, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/izue-two-mothers/front.svg",
  27044. extra: 469 / 437,
  27045. bottom: 1.24 / 470.6
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Shrunken",
  27052. height: math.unit(7.86, "cm")
  27053. },
  27054. {
  27055. name: "Human Scale",
  27056. height: math.unit(1.73, "meters")
  27057. },
  27058. {
  27059. name: "Wolxi Scale",
  27060. height: math.unit(38, "meters"),
  27061. default: true
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27067. {
  27068. front: {
  27069. height: math.unit(1.55, "meters"),
  27070. weight: math.unit(120, "lb"),
  27071. name: "Front",
  27072. image: {
  27073. source: "./media/characters/teeku-love-shack/front.svg",
  27074. extra: 387 / 362,
  27075. bottom: 1.51 / 388
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Shrunken",
  27082. height: math.unit(7, "cm")
  27083. },
  27084. {
  27085. name: "Human Scale",
  27086. height: math.unit(1.55, "meters")
  27087. },
  27088. {
  27089. name: "Wolxi Scale",
  27090. height: math.unit(34.1, "meters"),
  27091. default: true
  27092. },
  27093. ]
  27094. ))
  27095. characterMakers.push(() => makeCharacter(
  27096. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27097. {
  27098. front: {
  27099. height: math.unit(1.83, "meters"),
  27100. weight: math.unit(135, "lb"),
  27101. name: "Front",
  27102. image: {
  27103. source: "./media/characters/dejma-the-red/front.svg",
  27104. extra: 480 / 458,
  27105. bottom: 1.8 / 482
  27106. }
  27107. },
  27108. },
  27109. [
  27110. {
  27111. name: "Shrunken",
  27112. height: math.unit(8.3, "cm")
  27113. },
  27114. {
  27115. name: "Human Scale",
  27116. height: math.unit(1.83, "meters")
  27117. },
  27118. {
  27119. name: "Wolxi Scale",
  27120. height: math.unit(40, "meters"),
  27121. default: true
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(1.78, "meters"),
  27130. weight: math.unit(65, "kg"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/aki/front.svg",
  27134. extra: 452 / 415
  27135. }
  27136. },
  27137. frontNsfw: {
  27138. height: math.unit(1.78, "meters"),
  27139. weight: math.unit(65, "kg"),
  27140. name: "Front (NSFW)",
  27141. image: {
  27142. source: "./media/characters/aki/front-nsfw.svg",
  27143. extra: 452 / 415
  27144. }
  27145. },
  27146. back: {
  27147. height: math.unit(1.78, "meters"),
  27148. weight: math.unit(65, "kg"),
  27149. name: "Back",
  27150. image: {
  27151. source: "./media/characters/aki/back.svg",
  27152. extra: 452 / 415
  27153. }
  27154. },
  27155. rump: {
  27156. height: math.unit(2.05, "feet"),
  27157. name: "Rump",
  27158. image: {
  27159. source: "./media/characters/aki/rump.svg"
  27160. }
  27161. },
  27162. dick: {
  27163. height: math.unit(0.95, "feet"),
  27164. name: "Dick",
  27165. image: {
  27166. source: "./media/characters/aki/dick.svg"
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Micro",
  27173. height: math.unit(15, "cm")
  27174. },
  27175. {
  27176. name: "Normal",
  27177. height: math.unit(178, "cm"),
  27178. default: true
  27179. },
  27180. {
  27181. name: "Macro",
  27182. height: math.unit(214, "m")
  27183. },
  27184. {
  27185. name: "Macro+",
  27186. height: math.unit(534, "m")
  27187. },
  27188. ]
  27189. ))
  27190. characterMakers.push(() => makeCharacter(
  27191. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27192. {
  27193. front: {
  27194. height: math.unit(5 + 5 / 12, "feet"),
  27195. weight: math.unit(120, "lb"),
  27196. name: "Front",
  27197. image: {
  27198. source: "./media/characters/ari/front.svg",
  27199. extra: 1550/1471,
  27200. bottom: 39/1589
  27201. }
  27202. },
  27203. },
  27204. [
  27205. {
  27206. name: "Normal",
  27207. height: math.unit(5 + 5 / 12, "feet")
  27208. },
  27209. {
  27210. name: "Macro",
  27211. height: math.unit(100, "feet"),
  27212. default: true
  27213. },
  27214. {
  27215. name: "Megamacro",
  27216. height: math.unit(100, "miles")
  27217. },
  27218. {
  27219. name: "Gigamacro",
  27220. height: math.unit(80000, "miles")
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27226. {
  27227. side: {
  27228. height: math.unit(9, "feet"),
  27229. weight: math.unit(400, "kg"),
  27230. name: "Side",
  27231. image: {
  27232. source: "./media/characters/bolt/side.svg",
  27233. extra: 1126 / 896,
  27234. bottom: 60 / 1187.3,
  27235. }
  27236. },
  27237. },
  27238. [
  27239. {
  27240. name: "Micro",
  27241. height: math.unit(5, "inches")
  27242. },
  27243. {
  27244. name: "Normal",
  27245. height: math.unit(9, "feet"),
  27246. default: true
  27247. },
  27248. {
  27249. name: "Macro",
  27250. height: math.unit(700, "feet")
  27251. },
  27252. {
  27253. name: "Max Size",
  27254. height: math.unit(1.52e22, "yottameters")
  27255. },
  27256. ]
  27257. ))
  27258. characterMakers.push(() => makeCharacter(
  27259. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27260. {
  27261. front: {
  27262. height: math.unit(4.3, "meters"),
  27263. weight: math.unit(3, "tons"),
  27264. name: "Front",
  27265. image: {
  27266. source: "./media/characters/draekon-sylviar/front.svg",
  27267. extra: 2072/1512,
  27268. bottom: 74/2146
  27269. }
  27270. },
  27271. back: {
  27272. height: math.unit(4.3, "meters"),
  27273. weight: math.unit(3, "tons"),
  27274. name: "Back",
  27275. image: {
  27276. source: "./media/characters/draekon-sylviar/back.svg",
  27277. extra: 1639/1483,
  27278. bottom: 41/1680
  27279. }
  27280. },
  27281. feral: {
  27282. height: math.unit(1.15, "meters"),
  27283. weight: math.unit(3, "tons"),
  27284. name: "Feral",
  27285. image: {
  27286. source: "./media/characters/draekon-sylviar/feral.svg",
  27287. extra: 1033/395,
  27288. bottom: 130/1163
  27289. }
  27290. },
  27291. maw: {
  27292. height: math.unit(1.3, "meters"),
  27293. name: "Maw",
  27294. image: {
  27295. source: "./media/characters/draekon-sylviar/maw.svg"
  27296. }
  27297. },
  27298. mawSeparated: {
  27299. height: math.unit(1.53, "meters"),
  27300. name: "Separated Maw",
  27301. image: {
  27302. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27303. }
  27304. },
  27305. tail: {
  27306. height: math.unit(1.15, "meters"),
  27307. name: "Tail",
  27308. image: {
  27309. source: "./media/characters/draekon-sylviar/tail.svg"
  27310. }
  27311. },
  27312. tailDick: {
  27313. height: math.unit(1.15, "meters"),
  27314. name: "Tail (Dick)",
  27315. image: {
  27316. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27317. }
  27318. },
  27319. tailDickSeparated: {
  27320. height: math.unit(1.19, "meters"),
  27321. name: "Tail (Separated Dick)",
  27322. image: {
  27323. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27324. }
  27325. },
  27326. slit: {
  27327. height: math.unit(1, "meters"),
  27328. name: "Slit",
  27329. image: {
  27330. source: "./media/characters/draekon-sylviar/slit.svg"
  27331. }
  27332. },
  27333. dick: {
  27334. height: math.unit(1.15, "meters"),
  27335. name: "Dick",
  27336. image: {
  27337. source: "./media/characters/draekon-sylviar/dick.svg"
  27338. }
  27339. },
  27340. dickSeparated: {
  27341. height: math.unit(1.1, "meters"),
  27342. name: "Separated Dick",
  27343. image: {
  27344. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27345. }
  27346. },
  27347. sheath: {
  27348. height: math.unit(1.15, "meters"),
  27349. name: "Sheath",
  27350. image: {
  27351. source: "./media/characters/draekon-sylviar/sheath.svg"
  27352. }
  27353. },
  27354. },
  27355. [
  27356. {
  27357. name: "Small",
  27358. height: math.unit(4.53 / 2, "meters"),
  27359. default: true
  27360. },
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(4.53, "meters"),
  27364. default: true
  27365. },
  27366. {
  27367. name: "Large",
  27368. height: math.unit(4.53 * 2, "meters"),
  27369. },
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27374. {
  27375. front: {
  27376. height: math.unit(6 + 2 / 12, "feet"),
  27377. weight: math.unit(180, "lb"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/brawler/front.svg",
  27381. extra: 3301 / 3027,
  27382. bottom: 138 / 3439
  27383. }
  27384. },
  27385. },
  27386. [
  27387. {
  27388. name: "Normal",
  27389. height: math.unit(6 + 2 / 12, "feet"),
  27390. default: true
  27391. },
  27392. ]
  27393. ))
  27394. characterMakers.push(() => makeCharacter(
  27395. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27396. {
  27397. front: {
  27398. height: math.unit(11, "feet"),
  27399. weight: math.unit(1000, "lb"),
  27400. name: "Front",
  27401. image: {
  27402. source: "./media/characters/alex/front.svg",
  27403. bottom: 44.5 / 620
  27404. }
  27405. },
  27406. },
  27407. [
  27408. {
  27409. name: "Micro",
  27410. height: math.unit(5, "inches")
  27411. },
  27412. {
  27413. name: "Normal",
  27414. height: math.unit(11, "feet"),
  27415. default: true
  27416. },
  27417. {
  27418. name: "Macro",
  27419. height: math.unit(9.5e9, "feet")
  27420. },
  27421. {
  27422. name: "Max Size",
  27423. height: math.unit(1.4e283, "yottameters")
  27424. },
  27425. ]
  27426. ))
  27427. characterMakers.push(() => makeCharacter(
  27428. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27429. {
  27430. female: {
  27431. height: math.unit(29.9, "m"),
  27432. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27433. name: "Female",
  27434. image: {
  27435. source: "./media/characters/zenari/female.svg",
  27436. extra: 3281.6 / 3217,
  27437. bottom: 72.2 / 3353
  27438. }
  27439. },
  27440. male: {
  27441. height: math.unit(27.7, "m"),
  27442. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27443. name: "Male",
  27444. image: {
  27445. source: "./media/characters/zenari/male.svg",
  27446. extra: 3008 / 2991,
  27447. bottom: 54.6 / 3069
  27448. }
  27449. },
  27450. },
  27451. [
  27452. {
  27453. name: "Macro",
  27454. height: math.unit(29.7, "meters"),
  27455. default: true
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27461. {
  27462. female: {
  27463. height: math.unit(23.8, "m"),
  27464. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27465. name: "Female",
  27466. image: {
  27467. source: "./media/characters/mactarian/female.svg",
  27468. extra: 2662 / 2569,
  27469. bottom: 73 / 2736
  27470. }
  27471. },
  27472. male: {
  27473. height: math.unit(23.8, "m"),
  27474. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27475. name: "Male",
  27476. image: {
  27477. source: "./media/characters/mactarian/male.svg",
  27478. extra: 2673 / 2600,
  27479. bottom: 76 / 2750
  27480. }
  27481. },
  27482. },
  27483. [
  27484. {
  27485. name: "Macro",
  27486. height: math.unit(23.8, "meters"),
  27487. default: true
  27488. },
  27489. ]
  27490. ))
  27491. characterMakers.push(() => makeCharacter(
  27492. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27493. {
  27494. female: {
  27495. height: math.unit(19.3, "m"),
  27496. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27497. name: "Female",
  27498. image: {
  27499. source: "./media/characters/umok/female.svg",
  27500. extra: 2186 / 2078,
  27501. bottom: 87 / 2277
  27502. }
  27503. },
  27504. male: {
  27505. height: math.unit(19.5, "m"),
  27506. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27507. name: "Male",
  27508. image: {
  27509. source: "./media/characters/umok/male.svg",
  27510. extra: 2233 / 2140,
  27511. bottom: 24.4 / 2258
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Macro",
  27518. height: math.unit(19.3, "meters"),
  27519. default: true
  27520. },
  27521. ]
  27522. ))
  27523. characterMakers.push(() => makeCharacter(
  27524. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27525. {
  27526. female: {
  27527. height: math.unit(26.15, "m"),
  27528. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27529. name: "Female",
  27530. image: {
  27531. source: "./media/characters/joraxian/female.svg",
  27532. extra: 2912 / 2824,
  27533. bottom: 36 / 2956
  27534. }
  27535. },
  27536. male: {
  27537. height: math.unit(25.4, "m"),
  27538. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27539. name: "Male",
  27540. image: {
  27541. source: "./media/characters/joraxian/male.svg",
  27542. extra: 2877 / 2721,
  27543. bottom: 82 / 2967
  27544. }
  27545. },
  27546. },
  27547. [
  27548. {
  27549. name: "Macro",
  27550. height: math.unit(26.15, "meters"),
  27551. default: true
  27552. },
  27553. ]
  27554. ))
  27555. characterMakers.push(() => makeCharacter(
  27556. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27557. {
  27558. female: {
  27559. height: math.unit(21.6, "m"),
  27560. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27561. name: "Female",
  27562. image: {
  27563. source: "./media/characters/sthara/female.svg",
  27564. extra: 2516 / 2347,
  27565. bottom: 21.5 / 2537
  27566. }
  27567. },
  27568. male: {
  27569. height: math.unit(24, "m"),
  27570. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27571. name: "Male",
  27572. image: {
  27573. source: "./media/characters/sthara/male.svg",
  27574. extra: 2732 / 2607,
  27575. bottom: 23 / 2732
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Macro",
  27582. height: math.unit(21.6, "meters"),
  27583. default: true
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(6 + 4 / 12, "feet"),
  27592. weight: math.unit(175, "lb"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/luka-bryzant/front.svg",
  27596. extra: 311 / 289,
  27597. bottom: 4 / 315
  27598. }
  27599. },
  27600. back: {
  27601. height: math.unit(6 + 4 / 12, "feet"),
  27602. weight: math.unit(175, "lb"),
  27603. name: "Back",
  27604. image: {
  27605. source: "./media/characters/luka-bryzant/back.svg",
  27606. extra: 311 / 289,
  27607. bottom: 3.8 / 313.7
  27608. }
  27609. },
  27610. },
  27611. [
  27612. {
  27613. name: "Micro",
  27614. height: math.unit(10, "inches")
  27615. },
  27616. {
  27617. name: "Normal",
  27618. height: math.unit(6 + 4 / 12, "feet"),
  27619. default: true
  27620. },
  27621. {
  27622. name: "Large",
  27623. height: math.unit(12, "feet")
  27624. },
  27625. ]
  27626. ))
  27627. characterMakers.push(() => makeCharacter(
  27628. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27629. {
  27630. front: {
  27631. height: math.unit(5 + 7 / 12, "feet"),
  27632. weight: math.unit(185, "lb"),
  27633. name: "Front",
  27634. image: {
  27635. source: "./media/characters/aman-aquila/front.svg",
  27636. extra: 1013 / 976,
  27637. bottom: 45.6 / 1057
  27638. }
  27639. },
  27640. side: {
  27641. height: math.unit(5 + 7 / 12, "feet"),
  27642. weight: math.unit(185, "lb"),
  27643. name: "Side",
  27644. image: {
  27645. source: "./media/characters/aman-aquila/side.svg",
  27646. extra: 1054 / 1011,
  27647. bottom: 15 / 1070
  27648. }
  27649. },
  27650. back: {
  27651. height: math.unit(5 + 7 / 12, "feet"),
  27652. weight: math.unit(185, "lb"),
  27653. name: "Back",
  27654. image: {
  27655. source: "./media/characters/aman-aquila/back.svg",
  27656. extra: 1026 / 970,
  27657. bottom: 12 / 1039
  27658. }
  27659. },
  27660. head: {
  27661. height: math.unit(1.211, "feet"),
  27662. name: "Head",
  27663. image: {
  27664. source: "./media/characters/aman-aquila/head.svg",
  27665. }
  27666. },
  27667. },
  27668. [
  27669. {
  27670. name: "Minimicro",
  27671. height: math.unit(0.057, "inches")
  27672. },
  27673. {
  27674. name: "Micro",
  27675. height: math.unit(7, "inches")
  27676. },
  27677. {
  27678. name: "Mini",
  27679. height: math.unit(3 + 7 / 12, "feet")
  27680. },
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(5 + 7 / 12, "feet"),
  27684. default: true
  27685. },
  27686. {
  27687. name: "Macro",
  27688. height: math.unit(157 + 7 / 12, "feet")
  27689. },
  27690. {
  27691. name: "Megamacro",
  27692. height: math.unit(1557 + 7 / 12, "feet")
  27693. },
  27694. {
  27695. name: "Gigamacro",
  27696. height: math.unit(15557 + 7 / 12, "feet")
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27702. {
  27703. front: {
  27704. height: math.unit(3 + 2 / 12, "inches"),
  27705. weight: math.unit(0.3, "ounces"),
  27706. name: "Front",
  27707. image: {
  27708. source: "./media/characters/hiphae/front.svg",
  27709. extra: 1931 / 1683,
  27710. bottom: 24 / 1955
  27711. }
  27712. },
  27713. },
  27714. [
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(3 + 1 / 2, "inches"),
  27718. default: true
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(5 + 10 / 12, "feet"),
  27727. weight: math.unit(165, "lb"),
  27728. name: "Front",
  27729. image: {
  27730. source: "./media/characters/nicky/front.svg",
  27731. extra: 3144 / 2886,
  27732. bottom: 45.6 / 3192
  27733. }
  27734. },
  27735. back: {
  27736. height: math.unit(5 + 10 / 12, "feet"),
  27737. weight: math.unit(165, "lb"),
  27738. name: "Back",
  27739. image: {
  27740. source: "./media/characters/nicky/back.svg",
  27741. extra: 3055 / 2804,
  27742. bottom: 28.4 / 3087
  27743. }
  27744. },
  27745. frontclothed: {
  27746. height: math.unit(5 + 10 / 12, "feet"),
  27747. weight: math.unit(165, "lb"),
  27748. name: "Front-clothed",
  27749. image: {
  27750. source: "./media/characters/nicky/front-clothed.svg",
  27751. extra: 3184.9 / 2926.9,
  27752. bottom: 86.5 / 3239.9
  27753. }
  27754. },
  27755. foot: {
  27756. height: math.unit(1.16, "feet"),
  27757. name: "Foot",
  27758. image: {
  27759. source: "./media/characters/nicky/foot.svg"
  27760. }
  27761. },
  27762. feet: {
  27763. height: math.unit(1.34, "feet"),
  27764. name: "Feet",
  27765. image: {
  27766. source: "./media/characters/nicky/feet.svg"
  27767. }
  27768. },
  27769. maw: {
  27770. height: math.unit(0.9, "feet"),
  27771. name: "Maw",
  27772. image: {
  27773. source: "./media/characters/nicky/maw.svg"
  27774. }
  27775. },
  27776. },
  27777. [
  27778. {
  27779. name: "Normal",
  27780. height: math.unit(5 + 10 / 12, "feet"),
  27781. default: true
  27782. },
  27783. {
  27784. name: "Macro",
  27785. height: math.unit(60, "feet")
  27786. },
  27787. {
  27788. name: "Megamacro",
  27789. height: math.unit(1, "mile")
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27795. {
  27796. side: {
  27797. height: math.unit(10, "feet"),
  27798. weight: math.unit(600, "lb"),
  27799. name: "Side",
  27800. image: {
  27801. source: "./media/characters/blair/side.svg",
  27802. bottom: 16.6 / 475,
  27803. extra: 458 / 431
  27804. }
  27805. },
  27806. },
  27807. [
  27808. {
  27809. name: "Micro",
  27810. height: math.unit(8, "inches")
  27811. },
  27812. {
  27813. name: "Normal",
  27814. height: math.unit(10, "feet"),
  27815. default: true
  27816. },
  27817. {
  27818. name: "Macro",
  27819. height: math.unit(180, "feet")
  27820. },
  27821. ]
  27822. ))
  27823. characterMakers.push(() => makeCharacter(
  27824. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27825. {
  27826. front: {
  27827. height: math.unit(5 + 4 / 12, "feet"),
  27828. weight: math.unit(125, "lb"),
  27829. name: "Front",
  27830. image: {
  27831. source: "./media/characters/fisher/front.svg",
  27832. extra: 444 / 390,
  27833. bottom: 2 / 444.8
  27834. }
  27835. },
  27836. },
  27837. [
  27838. {
  27839. name: "Micro",
  27840. height: math.unit(4, "inches")
  27841. },
  27842. {
  27843. name: "Normal",
  27844. height: math.unit(5 + 4 / 12, "feet"),
  27845. default: true
  27846. },
  27847. {
  27848. name: "Macro",
  27849. height: math.unit(100, "feet")
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(6.71, "feet"),
  27858. weight: math.unit(200, "lb"),
  27859. preyCapacity: math.unit(1000000, "people"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/gliss/front.svg",
  27863. extra: 2347 / 2231,
  27864. bottom: 113 / 2462
  27865. }
  27866. },
  27867. hammerspaceSize: {
  27868. height: math.unit(6.71 * 717, "feet"),
  27869. weight: math.unit(200, "lb"),
  27870. preyCapacity: math.unit(1000000, "people"),
  27871. name: "Hammerspace Size",
  27872. image: {
  27873. source: "./media/characters/gliss/front.svg",
  27874. extra: 2347 / 2231,
  27875. bottom: 113 / 2462
  27876. }
  27877. },
  27878. },
  27879. [
  27880. {
  27881. name: "Normal",
  27882. height: math.unit(6.71, "feet"),
  27883. default: true
  27884. },
  27885. ]
  27886. ))
  27887. characterMakers.push(() => makeCharacter(
  27888. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27889. {
  27890. side: {
  27891. height: math.unit(1.44, "m"),
  27892. weight: math.unit(80, "kg"),
  27893. name: "Side",
  27894. image: {
  27895. source: "./media/characters/dune-anderson/side.svg",
  27896. bottom: 49 / 1426
  27897. }
  27898. },
  27899. },
  27900. [
  27901. {
  27902. name: "Wolf-sized",
  27903. height: math.unit(1.44, "meters")
  27904. },
  27905. {
  27906. name: "Normal",
  27907. height: math.unit(5.05, "meters"),
  27908. default: true
  27909. },
  27910. {
  27911. name: "Big",
  27912. height: math.unit(14.4, "meters")
  27913. },
  27914. {
  27915. name: "Huge",
  27916. height: math.unit(144, "meters")
  27917. },
  27918. ]
  27919. ))
  27920. characterMakers.push(() => makeCharacter(
  27921. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27922. {
  27923. front: {
  27924. height: math.unit(6, "feet"),
  27925. weight: math.unit(220, "lb"),
  27926. name: "Front",
  27927. image: {
  27928. source: "./media/characters/hind/front.svg",
  27929. extra: 1912/1787,
  27930. bottom: 52/1964
  27931. }
  27932. },
  27933. back: {
  27934. height: math.unit(6, "feet"),
  27935. weight: math.unit(220, "lb"),
  27936. name: "Back",
  27937. image: {
  27938. source: "./media/characters/hind/back.svg",
  27939. extra: 1901/1794,
  27940. bottom: 26/1927
  27941. }
  27942. },
  27943. },
  27944. [
  27945. {
  27946. name: "Normal",
  27947. height: math.unit(6, "feet"),
  27948. default: true
  27949. },
  27950. ]
  27951. ))
  27952. characterMakers.push(() => makeCharacter(
  27953. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27954. {
  27955. front: {
  27956. height: math.unit(2.1, "meters"),
  27957. weight: math.unit(150, "lb"),
  27958. name: "Front",
  27959. image: {
  27960. source: "./media/characters/tharquench-sizestealer/front.svg",
  27961. extra: 1605/1470,
  27962. bottom: 36/1641
  27963. }
  27964. },
  27965. frontAlt: {
  27966. height: math.unit(2.1, "meters"),
  27967. weight: math.unit(150, "lb"),
  27968. name: "Front (Alt)",
  27969. image: {
  27970. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27971. extra: 2318 / 2063,
  27972. bottom: 93.4 / 2410
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Nano",
  27979. height: math.unit(1, "mm")
  27980. },
  27981. {
  27982. name: "Micro",
  27983. height: math.unit(1, "cm")
  27984. },
  27985. {
  27986. name: "Normal",
  27987. height: math.unit(2.1, "meters"),
  27988. default: true
  27989. },
  27990. ]
  27991. ))
  27992. characterMakers.push(() => makeCharacter(
  27993. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27994. {
  27995. front: {
  27996. height: math.unit(7 + 5 / 12, "feet"),
  27997. weight: math.unit(357, "lb"),
  27998. name: "Front",
  27999. image: {
  28000. source: "./media/characters/solex-draconov/front.svg",
  28001. extra: 1993 / 1865,
  28002. bottom: 117 / 2111
  28003. }
  28004. },
  28005. },
  28006. [
  28007. {
  28008. name: "Natural Height",
  28009. height: math.unit(7 + 5 / 12, "feet"),
  28010. default: true
  28011. },
  28012. {
  28013. name: "Macro",
  28014. height: math.unit(350, "feet")
  28015. },
  28016. {
  28017. name: "Macro+",
  28018. height: math.unit(1000, "feet")
  28019. },
  28020. {
  28021. name: "Megamacro",
  28022. height: math.unit(20, "km")
  28023. },
  28024. {
  28025. name: "Megamacro+",
  28026. height: math.unit(1000, "km")
  28027. },
  28028. {
  28029. name: "Gigamacro",
  28030. height: math.unit(2.5, "Gm")
  28031. },
  28032. {
  28033. name: "Teramacro",
  28034. height: math.unit(15, "Tm")
  28035. },
  28036. {
  28037. name: "Galactic",
  28038. height: math.unit(30, "Zm")
  28039. },
  28040. {
  28041. name: "Universal",
  28042. height: math.unit(21000, "Ym")
  28043. },
  28044. {
  28045. name: "Omniversal",
  28046. height: math.unit(9.861e50, "Ym")
  28047. },
  28048. {
  28049. name: "Existential",
  28050. height: math.unit(1e300, "meters")
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28056. {
  28057. side: {
  28058. height: math.unit(25, "feet"),
  28059. weight: math.unit(90000, "lb"),
  28060. name: "Side",
  28061. image: {
  28062. source: "./media/characters/mandarax/side.svg",
  28063. extra: 614 / 332,
  28064. bottom: 55 / 630
  28065. }
  28066. },
  28067. lounging: {
  28068. height: math.unit(15.4, "feet"),
  28069. weight: math.unit(90000, "lb"),
  28070. name: "Lounging",
  28071. image: {
  28072. source: "./media/characters/mandarax/lounging.svg",
  28073. extra: 817/609,
  28074. bottom: 685/1502
  28075. }
  28076. },
  28077. head: {
  28078. height: math.unit(11.4, "feet"),
  28079. name: "Head",
  28080. image: {
  28081. source: "./media/characters/mandarax/head.svg"
  28082. }
  28083. },
  28084. belly: {
  28085. height: math.unit(33, "feet"),
  28086. name: "Belly",
  28087. preyCapacity: math.unit(500, "people"),
  28088. image: {
  28089. source: "./media/characters/mandarax/belly.svg"
  28090. }
  28091. },
  28092. dick: {
  28093. height: math.unit(8.46, "feet"),
  28094. name: "Dick",
  28095. image: {
  28096. source: "./media/characters/mandarax/dick.svg"
  28097. }
  28098. },
  28099. top: {
  28100. height: math.unit(28, "meters"),
  28101. name: "Top",
  28102. image: {
  28103. source: "./media/characters/mandarax/top.svg"
  28104. }
  28105. },
  28106. },
  28107. [
  28108. {
  28109. name: "Normal",
  28110. height: math.unit(25, "feet"),
  28111. default: true
  28112. },
  28113. ]
  28114. ))
  28115. characterMakers.push(() => makeCharacter(
  28116. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28117. {
  28118. front: {
  28119. height: math.unit(5, "feet"),
  28120. weight: math.unit(90, "lb"),
  28121. name: "Front",
  28122. image: {
  28123. source: "./media/characters/pixil/front.svg",
  28124. extra: 2000 / 1618,
  28125. bottom: 12.3 / 2011
  28126. }
  28127. },
  28128. },
  28129. [
  28130. {
  28131. name: "Normal",
  28132. height: math.unit(5, "feet"),
  28133. default: true
  28134. },
  28135. {
  28136. name: "Megamacro",
  28137. height: math.unit(10, "miles"),
  28138. },
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28143. {
  28144. front: {
  28145. height: math.unit(7 + 2 / 12, "feet"),
  28146. weight: math.unit(200, "lb"),
  28147. name: "Front",
  28148. image: {
  28149. source: "./media/characters/angel/front.svg",
  28150. extra: 1946/1840,
  28151. bottom: 30/1976
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Normal",
  28158. height: math.unit(7 + 2 / 12, "feet"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Macro",
  28163. height: math.unit(1000, "feet")
  28164. },
  28165. {
  28166. name: "Megamacro",
  28167. height: math.unit(2, "miles")
  28168. },
  28169. {
  28170. name: "Gigamacro",
  28171. height: math.unit(20, "earths")
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28177. {
  28178. front: {
  28179. height: math.unit(5, "feet"),
  28180. weight: math.unit(180, "lb"),
  28181. name: "Front",
  28182. image: {
  28183. source: "./media/characters/mekana/front.svg",
  28184. extra: 1671 / 1605,
  28185. bottom: 3.5 / 1691
  28186. }
  28187. },
  28188. side: {
  28189. height: math.unit(5, "feet"),
  28190. weight: math.unit(180, "lb"),
  28191. name: "Side",
  28192. image: {
  28193. source: "./media/characters/mekana/side.svg",
  28194. extra: 1671 / 1605,
  28195. bottom: 3.5 / 1691
  28196. }
  28197. },
  28198. back: {
  28199. height: math.unit(5, "feet"),
  28200. weight: math.unit(180, "lb"),
  28201. name: "Back",
  28202. image: {
  28203. source: "./media/characters/mekana/back.svg",
  28204. extra: 1671 / 1605,
  28205. bottom: 3.5 / 1691
  28206. }
  28207. },
  28208. },
  28209. [
  28210. {
  28211. name: "Normal",
  28212. height: math.unit(5, "feet"),
  28213. default: true
  28214. },
  28215. ]
  28216. ))
  28217. characterMakers.push(() => makeCharacter(
  28218. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28219. {
  28220. front: {
  28221. height: math.unit(4 + 6 / 12, "feet"),
  28222. weight: math.unit(80, "lb"),
  28223. name: "Front",
  28224. image: {
  28225. source: "./media/characters/pixie/front.svg",
  28226. extra: 1924 / 1825,
  28227. bottom: 22.4 / 1946
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(4 + 6 / 12, "feet"),
  28235. default: true
  28236. },
  28237. {
  28238. name: "Macro",
  28239. height: math.unit(40, "feet")
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(2.1, "meters"),
  28248. weight: math.unit(200, "lb"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/the-lascivious/front.svg",
  28252. extra: 1 / 0.893,
  28253. bottom: 3.5 / 573.7
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Human Scale",
  28260. height: math.unit(2.1, "meters")
  28261. },
  28262. {
  28263. name: "Wolxi Scale",
  28264. height: math.unit(46.2, "m"),
  28265. default: true
  28266. },
  28267. {
  28268. name: "Boinker of Buildings",
  28269. height: math.unit(10, "km")
  28270. },
  28271. {
  28272. name: "Shagger of Skyscrapers",
  28273. height: math.unit(40, "km")
  28274. },
  28275. {
  28276. name: "Banger of Boroughs",
  28277. height: math.unit(4000, "km")
  28278. },
  28279. {
  28280. name: "Screwer of States",
  28281. height: math.unit(100000, "km")
  28282. },
  28283. {
  28284. name: "Pounder of Planets",
  28285. height: math.unit(2000000, "km")
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28291. {
  28292. front: {
  28293. height: math.unit(6, "feet"),
  28294. weight: math.unit(150, "lb"),
  28295. name: "Front",
  28296. image: {
  28297. source: "./media/characters/aj/front.svg",
  28298. extra: 2039 / 1562,
  28299. bottom: 40 / 2079
  28300. }
  28301. },
  28302. },
  28303. [
  28304. {
  28305. name: "Normal",
  28306. height: math.unit(11 + 6 / 12, "feet"),
  28307. default: true
  28308. },
  28309. {
  28310. name: "Megamacro",
  28311. height: math.unit(60, "megameters")
  28312. },
  28313. ]
  28314. ))
  28315. characterMakers.push(() => makeCharacter(
  28316. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28317. {
  28318. side: {
  28319. height: math.unit(31 + 8 / 12, "feet"),
  28320. weight: math.unit(75000, "kg"),
  28321. name: "Side",
  28322. image: {
  28323. source: "./media/characters/koros/side.svg",
  28324. extra: 1442 / 1297,
  28325. bottom: 122.7 / 1562
  28326. }
  28327. },
  28328. dicksKingsCrown: {
  28329. height: math.unit(6, "feet"),
  28330. name: "Dicks (King's Crown)",
  28331. image: {
  28332. source: "./media/characters/koros/dicks-kings-crown.svg"
  28333. }
  28334. },
  28335. dicksTailSet: {
  28336. height: math.unit(3, "feet"),
  28337. name: "Dicks (Tail Set)",
  28338. image: {
  28339. source: "./media/characters/koros/dicks-tail-set.svg"
  28340. }
  28341. },
  28342. dickCumming: {
  28343. height: math.unit(7.98, "feet"),
  28344. name: "Dick (Cumming)",
  28345. image: {
  28346. source: "./media/characters/koros/dick-cumming.svg"
  28347. }
  28348. },
  28349. dicksBack: {
  28350. height: math.unit(5.9, "feet"),
  28351. name: "Dicks (Back)",
  28352. image: {
  28353. source: "./media/characters/koros/dicks-back.svg"
  28354. }
  28355. },
  28356. dicksFront: {
  28357. height: math.unit(3.72, "feet"),
  28358. name: "Dicks (Front)",
  28359. image: {
  28360. source: "./media/characters/koros/dicks-front.svg"
  28361. }
  28362. },
  28363. dicksPeeking: {
  28364. height: math.unit(3.0, "feet"),
  28365. name: "Dicks (Peeking)",
  28366. image: {
  28367. source: "./media/characters/koros/dicks-peeking.svg"
  28368. }
  28369. },
  28370. eye: {
  28371. height: math.unit(1.7, "feet"),
  28372. name: "Eye",
  28373. image: {
  28374. source: "./media/characters/koros/eye.svg"
  28375. }
  28376. },
  28377. headFront: {
  28378. height: math.unit(11.69, "feet"),
  28379. name: "Head (Front)",
  28380. image: {
  28381. source: "./media/characters/koros/head-front.svg"
  28382. }
  28383. },
  28384. headSide: {
  28385. height: math.unit(14, "feet"),
  28386. name: "Head (Side)",
  28387. image: {
  28388. source: "./media/characters/koros/head-side.svg"
  28389. }
  28390. },
  28391. leg: {
  28392. height: math.unit(17, "feet"),
  28393. name: "Leg",
  28394. image: {
  28395. source: "./media/characters/koros/leg.svg"
  28396. }
  28397. },
  28398. mawSide: {
  28399. height: math.unit(12.8, "feet"),
  28400. name: "Maw (Side)",
  28401. image: {
  28402. source: "./media/characters/koros/maw-side.svg"
  28403. }
  28404. },
  28405. mawSpitting: {
  28406. height: math.unit(17, "feet"),
  28407. name: "Maw (Spitting)",
  28408. image: {
  28409. source: "./media/characters/koros/maw-spitting.svg"
  28410. }
  28411. },
  28412. slit: {
  28413. height: math.unit(2.8, "feet"),
  28414. name: "Slit",
  28415. image: {
  28416. source: "./media/characters/koros/slit.svg"
  28417. }
  28418. },
  28419. stomach: {
  28420. height: math.unit(6.8, "feet"),
  28421. preyCapacity: math.unit(20, "people"),
  28422. name: "Stomach",
  28423. image: {
  28424. source: "./media/characters/koros/stomach.svg"
  28425. }
  28426. },
  28427. wingspanBottom: {
  28428. height: math.unit(114, "feet"),
  28429. name: "Wingspan (Bottom)",
  28430. image: {
  28431. source: "./media/characters/koros/wingspan-bottom.svg"
  28432. }
  28433. },
  28434. wingspanTop: {
  28435. height: math.unit(104, "feet"),
  28436. name: "Wingspan (Top)",
  28437. image: {
  28438. source: "./media/characters/koros/wingspan-top.svg"
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(31 + 8 / 12, "feet"),
  28446. default: true
  28447. },
  28448. ]
  28449. ))
  28450. characterMakers.push(() => makeCharacter(
  28451. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28452. {
  28453. front: {
  28454. height: math.unit(18 + 5 / 12, "feet"),
  28455. weight: math.unit(3750, "kg"),
  28456. name: "Front",
  28457. image: {
  28458. source: "./media/characters/vexx/front.svg",
  28459. extra: 426 / 396,
  28460. bottom: 31.5 / 458
  28461. }
  28462. },
  28463. maw: {
  28464. height: math.unit(6, "feet"),
  28465. name: "Maw",
  28466. image: {
  28467. source: "./media/characters/vexx/maw.svg"
  28468. }
  28469. },
  28470. },
  28471. [
  28472. {
  28473. name: "Normal",
  28474. height: math.unit(18 + 5 / 12, "feet"),
  28475. default: true
  28476. },
  28477. ]
  28478. ))
  28479. characterMakers.push(() => makeCharacter(
  28480. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28481. {
  28482. front: {
  28483. height: math.unit(17 + 6 / 12, "feet"),
  28484. weight: math.unit(150, "lb"),
  28485. name: "Front",
  28486. image: {
  28487. source: "./media/characters/baadra/front.svg",
  28488. extra: 1694/1553,
  28489. bottom: 179/1873
  28490. }
  28491. },
  28492. frontAlt: {
  28493. height: math.unit(17 + 6 / 12, "feet"),
  28494. weight: math.unit(150, "lb"),
  28495. name: "Front (Alt)",
  28496. image: {
  28497. source: "./media/characters/baadra/front-alt.svg",
  28498. extra: 3137 / 2890,
  28499. bottom: 168.4 / 3305
  28500. }
  28501. },
  28502. back: {
  28503. height: math.unit(17 + 6 / 12, "feet"),
  28504. weight: math.unit(150, "lb"),
  28505. name: "Back",
  28506. image: {
  28507. source: "./media/characters/baadra/back.svg",
  28508. extra: 3142 / 2890,
  28509. bottom: 220 / 3371
  28510. }
  28511. },
  28512. head: {
  28513. height: math.unit(5.45, "feet"),
  28514. name: "Head",
  28515. image: {
  28516. source: "./media/characters/baadra/head.svg"
  28517. }
  28518. },
  28519. headAngry: {
  28520. height: math.unit(4.95, "feet"),
  28521. name: "Head (Angry)",
  28522. image: {
  28523. source: "./media/characters/baadra/head-angry.svg"
  28524. }
  28525. },
  28526. headOpen: {
  28527. height: math.unit(6, "feet"),
  28528. name: "Head (Open)",
  28529. image: {
  28530. source: "./media/characters/baadra/head-open.svg"
  28531. }
  28532. },
  28533. },
  28534. [
  28535. {
  28536. name: "Normal",
  28537. height: math.unit(17 + 6 / 12, "feet"),
  28538. default: true
  28539. },
  28540. ]
  28541. ))
  28542. characterMakers.push(() => makeCharacter(
  28543. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28544. {
  28545. front: {
  28546. height: math.unit(7 + 3 / 12, "feet"),
  28547. weight: math.unit(180, "lb"),
  28548. name: "Front",
  28549. image: {
  28550. source: "./media/characters/juri/front.svg",
  28551. extra: 1401 / 1237,
  28552. bottom: 18.5 / 1418
  28553. }
  28554. },
  28555. side: {
  28556. height: math.unit(7 + 3 / 12, "feet"),
  28557. weight: math.unit(180, "lb"),
  28558. name: "Side",
  28559. image: {
  28560. source: "./media/characters/juri/side.svg",
  28561. extra: 1424 / 1242,
  28562. bottom: 18.5 / 1447
  28563. }
  28564. },
  28565. sitting: {
  28566. height: math.unit(6, "feet"),
  28567. weight: math.unit(180, "lb"),
  28568. name: "Sitting",
  28569. image: {
  28570. source: "./media/characters/juri/sitting.svg",
  28571. extra: 1270 / 1143,
  28572. bottom: 100 / 1343
  28573. }
  28574. },
  28575. back: {
  28576. height: math.unit(7 + 3 / 12, "feet"),
  28577. weight: math.unit(180, "lb"),
  28578. name: "Back",
  28579. image: {
  28580. source: "./media/characters/juri/back.svg",
  28581. extra: 1377 / 1240,
  28582. bottom: 23.7 / 1405
  28583. }
  28584. },
  28585. maw: {
  28586. height: math.unit(2.8, "feet"),
  28587. name: "Maw",
  28588. image: {
  28589. source: "./media/characters/juri/maw.svg"
  28590. }
  28591. },
  28592. stomach: {
  28593. height: math.unit(0.89, "feet"),
  28594. preyCapacity: math.unit(4, "liters"),
  28595. name: "Stomach",
  28596. image: {
  28597. source: "./media/characters/juri/stomach.svg"
  28598. }
  28599. },
  28600. },
  28601. [
  28602. {
  28603. name: "Normal",
  28604. height: math.unit(7 + 3 / 12, "feet"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28611. {
  28612. fox: {
  28613. height: math.unit(5 + 6 / 12, "feet"),
  28614. weight: math.unit(140, "lb"),
  28615. name: "Fox",
  28616. image: {
  28617. source: "./media/characters/maxene-sita/fox.svg",
  28618. extra: 146 / 138,
  28619. bottom: 2.1 / 148.19
  28620. }
  28621. },
  28622. foxLaying: {
  28623. height: math.unit(1.70, "feet"),
  28624. weight: math.unit(140, "lb"),
  28625. name: "Fox (Laying)",
  28626. image: {
  28627. source: "./media/characters/maxene-sita/fox-laying.svg",
  28628. extra: 910 / 572,
  28629. bottom: 71 / 981
  28630. }
  28631. },
  28632. kitsune: {
  28633. height: math.unit(10, "feet"),
  28634. weight: math.unit(800, "lb"),
  28635. name: "Kitsune",
  28636. image: {
  28637. source: "./media/characters/maxene-sita/kitsune.svg",
  28638. extra: 185 / 176,
  28639. bottom: 4.7 / 189.9
  28640. }
  28641. },
  28642. hellhound: {
  28643. height: math.unit(10, "feet"),
  28644. weight: math.unit(700, "lb"),
  28645. name: "Hellhound",
  28646. image: {
  28647. source: "./media/characters/maxene-sita/hellhound.svg",
  28648. extra: 1600 / 1545,
  28649. bottom: 81 / 1681
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Normal",
  28656. height: math.unit(5 + 6 / 12, "feet"),
  28657. default: true
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28663. {
  28664. front: {
  28665. height: math.unit(3 + 4 / 12, "feet"),
  28666. weight: math.unit(70, "lb"),
  28667. name: "Front",
  28668. image: {
  28669. source: "./media/characters/maia/front.svg",
  28670. extra: 227 / 219.5,
  28671. bottom: 40 / 267
  28672. }
  28673. },
  28674. back: {
  28675. height: math.unit(3 + 4 / 12, "feet"),
  28676. weight: math.unit(70, "lb"),
  28677. name: "Back",
  28678. image: {
  28679. source: "./media/characters/maia/back.svg",
  28680. extra: 237 / 225
  28681. }
  28682. },
  28683. },
  28684. [
  28685. {
  28686. name: "Normal",
  28687. height: math.unit(3 + 4 / 12, "feet"),
  28688. default: true
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(5 + 10 / 12, "feet"),
  28697. weight: math.unit(197, "lb"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/jabaro/front.svg",
  28701. extra: 225 / 216,
  28702. bottom: 5.06 / 230
  28703. }
  28704. },
  28705. back: {
  28706. height: math.unit(5 + 10 / 12, "feet"),
  28707. weight: math.unit(197, "lb"),
  28708. name: "Back",
  28709. image: {
  28710. source: "./media/characters/jabaro/back.svg",
  28711. extra: 225 / 219,
  28712. bottom: 1.9 / 227
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Normal",
  28719. height: math.unit(5 + 10 / 12, "feet"),
  28720. default: true
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(5 + 8 / 12, "feet"),
  28729. weight: math.unit(139, "lb"),
  28730. name: "Front",
  28731. image: {
  28732. source: "./media/characters/risa/front.svg",
  28733. extra: 270 / 260,
  28734. bottom: 11.2 / 282
  28735. }
  28736. },
  28737. back: {
  28738. height: math.unit(5 + 8 / 12, "feet"),
  28739. weight: math.unit(139, "lb"),
  28740. name: "Back",
  28741. image: {
  28742. source: "./media/characters/risa/back.svg",
  28743. extra: 264 / 255,
  28744. bottom: 4 / 268
  28745. }
  28746. },
  28747. },
  28748. [
  28749. {
  28750. name: "Normal",
  28751. height: math.unit(5 + 8 / 12, "feet"),
  28752. default: true
  28753. },
  28754. ]
  28755. ))
  28756. characterMakers.push(() => makeCharacter(
  28757. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28758. {
  28759. front: {
  28760. height: math.unit(2 + 11 / 12, "feet"),
  28761. weight: math.unit(30, "lb"),
  28762. name: "Front",
  28763. image: {
  28764. source: "./media/characters/weatley/front.svg",
  28765. bottom: 10.7 / 414,
  28766. extra: 403.5 / 362
  28767. }
  28768. },
  28769. back: {
  28770. height: math.unit(2 + 11 / 12, "feet"),
  28771. weight: math.unit(30, "lb"),
  28772. name: "Back",
  28773. image: {
  28774. source: "./media/characters/weatley/back.svg",
  28775. bottom: 10.7 / 414,
  28776. extra: 403.5 / 362
  28777. }
  28778. },
  28779. },
  28780. [
  28781. {
  28782. name: "Normal",
  28783. height: math.unit(2 + 11 / 12, "feet"),
  28784. default: true
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(5 + 2 / 12, "feet"),
  28793. weight: math.unit(50, "kg"),
  28794. name: "Front",
  28795. image: {
  28796. source: "./media/characters/mercury-crescent/front.svg",
  28797. extra: 1088 / 1033,
  28798. bottom: 18.9 / 1109
  28799. }
  28800. },
  28801. },
  28802. [
  28803. {
  28804. name: "Normal",
  28805. height: math.unit(5 + 2 / 12, "feet"),
  28806. default: true
  28807. },
  28808. ]
  28809. ))
  28810. characterMakers.push(() => makeCharacter(
  28811. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28812. {
  28813. front: {
  28814. height: math.unit(2, "feet"),
  28815. weight: math.unit(15, "kg"),
  28816. name: "Front",
  28817. image: {
  28818. source: "./media/characters/diamond-jones/front.svg",
  28819. extra: 727/723,
  28820. bottom: 46/773
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Normal",
  28827. height: math.unit(2, "feet"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28834. {
  28835. front: {
  28836. height: math.unit(3, "feet"),
  28837. weight: math.unit(30, "kg"),
  28838. name: "Front",
  28839. image: {
  28840. source: "./media/characters/sweet-bit/front.svg",
  28841. extra: 675 / 567,
  28842. bottom: 27.7 / 703
  28843. }
  28844. },
  28845. },
  28846. [
  28847. {
  28848. name: "Normal",
  28849. height: math.unit(3, "feet"),
  28850. default: true
  28851. },
  28852. ]
  28853. ))
  28854. characterMakers.push(() => makeCharacter(
  28855. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28856. {
  28857. side: {
  28858. height: math.unit(9.178, "feet"),
  28859. weight: math.unit(500, "lb"),
  28860. name: "Side",
  28861. image: {
  28862. source: "./media/characters/umbrazen/side.svg",
  28863. extra: 1730 / 1473,
  28864. bottom: 34.6 / 1765
  28865. }
  28866. },
  28867. },
  28868. [
  28869. {
  28870. name: "Normal",
  28871. height: math.unit(9.178, "feet"),
  28872. default: true
  28873. },
  28874. ]
  28875. ))
  28876. characterMakers.push(() => makeCharacter(
  28877. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28878. {
  28879. front: {
  28880. height: math.unit(10, "feet"),
  28881. weight: math.unit(750, "lb"),
  28882. name: "Front",
  28883. image: {
  28884. source: "./media/characters/arlist/front.svg",
  28885. extra: 961 / 778,
  28886. bottom: 6.2 / 986
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Normal",
  28893. height: math.unit(10, "feet"),
  28894. default: true
  28895. },
  28896. ]
  28897. ))
  28898. characterMakers.push(() => makeCharacter(
  28899. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28900. {
  28901. front: {
  28902. height: math.unit(5 + 1 / 12, "feet"),
  28903. weight: math.unit(110, "lb"),
  28904. name: "Front",
  28905. image: {
  28906. source: "./media/characters/aradel/front.svg",
  28907. extra: 324 / 303,
  28908. bottom: 3.6 / 329.4
  28909. }
  28910. },
  28911. },
  28912. [
  28913. {
  28914. name: "Normal",
  28915. height: math.unit(5 + 1 / 12, "feet"),
  28916. default: true
  28917. },
  28918. ]
  28919. ))
  28920. characterMakers.push(() => makeCharacter(
  28921. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28922. {
  28923. dressed: {
  28924. height: math.unit(3 + 8 / 12, "feet"),
  28925. weight: math.unit(50, "lb"),
  28926. name: "Dressed",
  28927. image: {
  28928. source: "./media/characters/serryn/dressed.svg",
  28929. extra: 1792 / 1656,
  28930. bottom: 43.5 / 1840
  28931. }
  28932. },
  28933. nude: {
  28934. height: math.unit(3 + 8 / 12, "feet"),
  28935. weight: math.unit(50, "lb"),
  28936. name: "Nude",
  28937. image: {
  28938. source: "./media/characters/serryn/nude.svg",
  28939. extra: 1792 / 1656,
  28940. bottom: 43.5 / 1840
  28941. }
  28942. },
  28943. },
  28944. [
  28945. {
  28946. name: "Normal",
  28947. height: math.unit(3 + 8 / 12, "feet"),
  28948. default: true
  28949. },
  28950. ]
  28951. ))
  28952. characterMakers.push(() => makeCharacter(
  28953. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28954. {
  28955. front: {
  28956. height: math.unit(7 + 10 / 12, "feet"),
  28957. weight: math.unit(255, "lb"),
  28958. name: "Front",
  28959. image: {
  28960. source: "./media/characters/xavier-thyme/front.svg",
  28961. extra: 3733 / 3642,
  28962. bottom: 131 / 3869
  28963. }
  28964. },
  28965. frontRaven: {
  28966. height: math.unit(7 + 10 / 12, "feet"),
  28967. weight: math.unit(255, "lb"),
  28968. name: "Front (Raven)",
  28969. image: {
  28970. source: "./media/characters/xavier-thyme/front-raven.svg",
  28971. extra: 4385 / 3642,
  28972. bottom: 131 / 4517
  28973. }
  28974. },
  28975. },
  28976. [
  28977. {
  28978. name: "Normal",
  28979. height: math.unit(7 + 10 / 12, "feet"),
  28980. default: true
  28981. },
  28982. ]
  28983. ))
  28984. characterMakers.push(() => makeCharacter(
  28985. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28986. {
  28987. front: {
  28988. height: math.unit(1.6, "m"),
  28989. weight: math.unit(50, "kg"),
  28990. name: "Front",
  28991. image: {
  28992. source: "./media/characters/kiki/front.svg",
  28993. extra: 4682 / 3610,
  28994. bottom: 115 / 4777
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(1.6, "meters"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(50, "m"),
  29011. weight: math.unit(500, "tonnes"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/ryoko/front.svg",
  29015. extra: 4632 / 3926,
  29016. bottom: 193 / 4823
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Normal",
  29023. height: math.unit(50, "meters"),
  29024. default: true
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29030. {
  29031. front: {
  29032. height: math.unit(30, "m"),
  29033. weight: math.unit(22, "tonnes"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/elio/front.svg",
  29037. extra: 4582 / 3720,
  29038. bottom: 236 / 4828
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(30, "meters"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(6 + 3 / 12, "feet"),
  29055. weight: math.unit(120, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/azura/front.svg",
  29059. extra: 1149 / 1135,
  29060. bottom: 45 / 1194
  29061. }
  29062. },
  29063. frontClothed: {
  29064. height: math.unit(6 + 3 / 12, "feet"),
  29065. weight: math.unit(120, "lb"),
  29066. name: "Front (Clothed)",
  29067. image: {
  29068. source: "./media/characters/azura/front-clothed.svg",
  29069. extra: 1149 / 1135,
  29070. bottom: 45 / 1194
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(6 + 3 / 12, "feet"),
  29078. default: true
  29079. },
  29080. {
  29081. name: "Macro",
  29082. height: math.unit(20 + 6 / 12, "feet")
  29083. },
  29084. {
  29085. name: "Megamacro",
  29086. height: math.unit(12, "miles")
  29087. },
  29088. {
  29089. name: "Gigamacro",
  29090. height: math.unit(10000, "miles")
  29091. },
  29092. {
  29093. name: "Teramacro",
  29094. height: math.unit(900000, "miles")
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(12, "feet"),
  29103. weight: math.unit(1, "ton"),
  29104. capacity: math.unit(660000, "gallons"),
  29105. name: "Front",
  29106. image: {
  29107. source: "./media/characters/zeus/front.svg",
  29108. extra: 5005 / 4717,
  29109. bottom: 363 / 5388
  29110. }
  29111. },
  29112. },
  29113. [
  29114. {
  29115. name: "Normal",
  29116. height: math.unit(12, "feet")
  29117. },
  29118. {
  29119. name: "Preferred Size",
  29120. height: math.unit(0.5, "miles"),
  29121. default: true
  29122. },
  29123. {
  29124. name: "Giga Horse",
  29125. height: math.unit(300, "miles")
  29126. },
  29127. {
  29128. name: "Riding Planets",
  29129. height: math.unit(30, "megameters")
  29130. },
  29131. {
  29132. name: "Cosmic Giant",
  29133. height: math.unit(3, "zettameters")
  29134. },
  29135. {
  29136. name: "Breeding God",
  29137. height: math.unit(9.92e22, "yottameters")
  29138. },
  29139. ]
  29140. ))
  29141. characterMakers.push(() => makeCharacter(
  29142. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29143. {
  29144. side: {
  29145. height: math.unit(9, "feet"),
  29146. weight: math.unit(1500, "kg"),
  29147. name: "Side",
  29148. image: {
  29149. source: "./media/characters/fang/side.svg",
  29150. extra: 924 / 866,
  29151. bottom: 47.5 / 972.3
  29152. }
  29153. },
  29154. },
  29155. [
  29156. {
  29157. name: "Normal",
  29158. height: math.unit(9, "feet"),
  29159. default: true
  29160. },
  29161. {
  29162. name: "Macro",
  29163. height: math.unit(75 + 6 / 12, "feet")
  29164. },
  29165. {
  29166. name: "Teramacro",
  29167. height: math.unit(50000, "miles")
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29173. {
  29174. front: {
  29175. height: math.unit(10, "feet"),
  29176. weight: math.unit(2, "tons"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/rekhit/front.svg",
  29180. extra: 2796 / 2590,
  29181. bottom: 225 / 3022
  29182. }
  29183. },
  29184. },
  29185. [
  29186. {
  29187. name: "Normal",
  29188. height: math.unit(10, "feet"),
  29189. default: true
  29190. },
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(500, "feet")
  29194. },
  29195. ]
  29196. ))
  29197. characterMakers.push(() => makeCharacter(
  29198. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29199. {
  29200. front: {
  29201. height: math.unit(7 + 6.451 / 12, "feet"),
  29202. weight: math.unit(310, "lb"),
  29203. name: "Front",
  29204. image: {
  29205. source: "./media/characters/dahlia-verrick/front.svg",
  29206. extra: 1488 / 1365,
  29207. bottom: 6.2 / 1495
  29208. }
  29209. },
  29210. back: {
  29211. height: math.unit(7 + 6.451 / 12, "feet"),
  29212. weight: math.unit(310, "lb"),
  29213. name: "Back",
  29214. image: {
  29215. source: "./media/characters/dahlia-verrick/back.svg",
  29216. extra: 1472 / 1351,
  29217. bottom: 5.28 / 1477
  29218. }
  29219. },
  29220. frontBusiness: {
  29221. height: math.unit(7 + 6.451 / 12, "feet"),
  29222. weight: math.unit(200, "lb"),
  29223. name: "Front (Business)",
  29224. image: {
  29225. source: "./media/characters/dahlia-verrick/front-business.svg",
  29226. extra: 1478 / 1381,
  29227. bottom: 5.5 / 1484
  29228. }
  29229. },
  29230. frontCasual: {
  29231. height: math.unit(7 + 6.451 / 12, "feet"),
  29232. weight: math.unit(200, "lb"),
  29233. name: "Front (Casual)",
  29234. image: {
  29235. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29236. extra: 1478 / 1381,
  29237. bottom: 5.5 / 1484
  29238. }
  29239. },
  29240. },
  29241. [
  29242. {
  29243. name: "Travel-Sized",
  29244. height: math.unit(7.45, "inches")
  29245. },
  29246. {
  29247. name: "Normal",
  29248. height: math.unit(7 + 6.451 / 12, "feet"),
  29249. default: true
  29250. },
  29251. {
  29252. name: "Hitting the Town",
  29253. height: math.unit(37 + 8 / 12, "feet")
  29254. },
  29255. {
  29256. name: "Stomp in the Suburbs",
  29257. height: math.unit(964 + 9.728 / 12, "feet")
  29258. },
  29259. {
  29260. name: "Sit on the City",
  29261. height: math.unit(61747 + 10.592 / 12, "feet")
  29262. },
  29263. {
  29264. name: "Glomp the Globe",
  29265. height: math.unit(252919327 + 4.832 / 12, "feet")
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(6 + 4 / 12, "feet"),
  29274. weight: math.unit(320, "lb"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/balina-mahigan/front.svg",
  29278. extra: 447 / 428,
  29279. bottom: 18 / 466
  29280. }
  29281. },
  29282. back: {
  29283. height: math.unit(6 + 4 / 12, "feet"),
  29284. weight: math.unit(320, "lb"),
  29285. name: "Back",
  29286. image: {
  29287. source: "./media/characters/balina-mahigan/back.svg",
  29288. extra: 445 / 428,
  29289. bottom: 4.07 / 448
  29290. }
  29291. },
  29292. arm: {
  29293. height: math.unit(1.88, "feet"),
  29294. name: "Arm",
  29295. image: {
  29296. source: "./media/characters/balina-mahigan/arm.svg"
  29297. }
  29298. },
  29299. backPort: {
  29300. height: math.unit(0.685, "feet"),
  29301. name: "Back Port",
  29302. image: {
  29303. source: "./media/characters/balina-mahigan/back-port.svg"
  29304. }
  29305. },
  29306. hoofpaw: {
  29307. height: math.unit(1.41, "feet"),
  29308. name: "Hoofpaw",
  29309. image: {
  29310. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29311. }
  29312. },
  29313. leftHandBack: {
  29314. height: math.unit(0.938, "feet"),
  29315. name: "Left Hand (Back)",
  29316. image: {
  29317. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29318. }
  29319. },
  29320. leftHandFront: {
  29321. height: math.unit(0.938, "feet"),
  29322. name: "Left Hand (Front)",
  29323. image: {
  29324. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29325. }
  29326. },
  29327. rightHandBack: {
  29328. height: math.unit(0.95, "feet"),
  29329. name: "Right Hand (Back)",
  29330. image: {
  29331. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29332. }
  29333. },
  29334. rightHandFront: {
  29335. height: math.unit(0.95, "feet"),
  29336. name: "Right Hand (Front)",
  29337. image: {
  29338. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29339. }
  29340. },
  29341. },
  29342. [
  29343. {
  29344. name: "Normal",
  29345. height: math.unit(6 + 4 / 12, "feet"),
  29346. default: true
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29352. {
  29353. front: {
  29354. height: math.unit(6, "feet"),
  29355. weight: math.unit(320, "lb"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/balina-mejeri/front.svg",
  29359. extra: 517 / 488,
  29360. bottom: 44.2 / 561
  29361. }
  29362. },
  29363. },
  29364. [
  29365. {
  29366. name: "Normal",
  29367. height: math.unit(6 + 4 / 12, "feet")
  29368. },
  29369. {
  29370. name: "Business",
  29371. height: math.unit(155, "feet"),
  29372. default: true
  29373. },
  29374. ]
  29375. ))
  29376. characterMakers.push(() => makeCharacter(
  29377. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29378. {
  29379. kneeling: {
  29380. height: math.unit(6 + 4 / 12, "feet"),
  29381. weight: math.unit(300 * 20, "lb"),
  29382. name: "Kneeling",
  29383. image: {
  29384. source: "./media/characters/balbarian/kneeling.svg",
  29385. extra: 922 / 862,
  29386. bottom: 42.4 / 965
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(6 + 4 / 12, "feet")
  29394. },
  29395. {
  29396. name: "Treasured",
  29397. height: math.unit(18 + 9 / 12, "feet"),
  29398. default: true
  29399. },
  29400. {
  29401. name: "Macro",
  29402. height: math.unit(900, "feet")
  29403. },
  29404. ]
  29405. ))
  29406. characterMakers.push(() => makeCharacter(
  29407. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29408. {
  29409. front: {
  29410. height: math.unit(6 + 4 / 12, "feet"),
  29411. weight: math.unit(325, "lb"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/balina-amarini/front.svg",
  29415. extra: 415 / 403,
  29416. bottom: 19 / 433.4
  29417. }
  29418. },
  29419. back: {
  29420. height: math.unit(6 + 4 / 12, "feet"),
  29421. weight: math.unit(325, "lb"),
  29422. name: "Back",
  29423. image: {
  29424. source: "./media/characters/balina-amarini/back.svg",
  29425. extra: 415 / 403,
  29426. bottom: 13.5 / 432
  29427. }
  29428. },
  29429. overdrive: {
  29430. height: math.unit(6 + 4 / 12, "feet"),
  29431. weight: math.unit(400, "lb"),
  29432. name: "Overdrive",
  29433. image: {
  29434. source: "./media/characters/balina-amarini/overdrive.svg",
  29435. extra: 269 / 259,
  29436. bottom: 12 / 282
  29437. }
  29438. },
  29439. },
  29440. [
  29441. {
  29442. name: "Boom",
  29443. height: math.unit(9 + 10 / 12, "feet"),
  29444. default: true
  29445. },
  29446. {
  29447. name: "Macro",
  29448. height: math.unit(280, "feet")
  29449. },
  29450. ]
  29451. ))
  29452. characterMakers.push(() => makeCharacter(
  29453. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29454. {
  29455. goddess: {
  29456. height: math.unit(600, "feet"),
  29457. weight: math.unit(2000000, "tons"),
  29458. name: "Goddess",
  29459. image: {
  29460. source: "./media/characters/lady-kubwa/goddess.svg",
  29461. extra: 1240.5 / 1223,
  29462. bottom: 22 / 1263
  29463. }
  29464. },
  29465. goddesser: {
  29466. height: math.unit(900, "feet"),
  29467. weight: math.unit(20000000, "lb"),
  29468. name: "Goddess-er",
  29469. image: {
  29470. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29471. extra: 899 / 888,
  29472. bottom: 12.6 / 912
  29473. }
  29474. },
  29475. },
  29476. [
  29477. {
  29478. name: "Macro",
  29479. height: math.unit(600, "feet"),
  29480. default: true
  29481. },
  29482. {
  29483. name: "Megamacro",
  29484. height: math.unit(250, "miles")
  29485. },
  29486. ]
  29487. ))
  29488. characterMakers.push(() => makeCharacter(
  29489. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29490. {
  29491. front: {
  29492. height: math.unit(7 + 7 / 12, "feet"),
  29493. weight: math.unit(250, "lb"),
  29494. name: "Front",
  29495. image: {
  29496. source: "./media/characters/tala-grovehorn/front.svg",
  29497. extra: 2636 / 2525,
  29498. bottom: 147 / 2781
  29499. }
  29500. },
  29501. back: {
  29502. height: math.unit(7 + 7 / 12, "feet"),
  29503. weight: math.unit(250, "lb"),
  29504. name: "Back",
  29505. image: {
  29506. source: "./media/characters/tala-grovehorn/back.svg",
  29507. extra: 2635 / 2539,
  29508. bottom: 100 / 2732.8
  29509. }
  29510. },
  29511. mouth: {
  29512. height: math.unit(1.15, "feet"),
  29513. name: "Mouth",
  29514. image: {
  29515. source: "./media/characters/tala-grovehorn/mouth.svg"
  29516. }
  29517. },
  29518. dick: {
  29519. height: math.unit(2.36, "feet"),
  29520. name: "Dick",
  29521. image: {
  29522. source: "./media/characters/tala-grovehorn/dick.svg"
  29523. }
  29524. },
  29525. slit: {
  29526. height: math.unit(0.61, "feet"),
  29527. name: "Slit",
  29528. image: {
  29529. source: "./media/characters/tala-grovehorn/slit.svg"
  29530. }
  29531. },
  29532. },
  29533. [
  29534. ]
  29535. ))
  29536. characterMakers.push(() => makeCharacter(
  29537. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29538. {
  29539. front: {
  29540. height: math.unit(7 + 7 / 12, "feet"),
  29541. weight: math.unit(225, "lb"),
  29542. name: "Front",
  29543. image: {
  29544. source: "./media/characters/epona/front.svg",
  29545. extra: 2445 / 2290,
  29546. bottom: 251 / 2696
  29547. }
  29548. },
  29549. back: {
  29550. height: math.unit(7 + 7 / 12, "feet"),
  29551. weight: math.unit(225, "lb"),
  29552. name: "Back",
  29553. image: {
  29554. source: "./media/characters/epona/back.svg",
  29555. extra: 2546 / 2408,
  29556. bottom: 44 / 2589
  29557. }
  29558. },
  29559. genitals: {
  29560. height: math.unit(1.5, "feet"),
  29561. name: "Genitals",
  29562. image: {
  29563. source: "./media/characters/epona/genitals.svg"
  29564. }
  29565. },
  29566. },
  29567. [
  29568. {
  29569. name: "Normal",
  29570. height: math.unit(7 + 7 / 12, "feet"),
  29571. default: true
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29577. {
  29578. front: {
  29579. height: math.unit(7, "feet"),
  29580. weight: math.unit(518, "lb"),
  29581. name: "Front",
  29582. image: {
  29583. source: "./media/characters/avia-bloodbourn/front.svg",
  29584. extra: 1466 / 1350,
  29585. bottom: 65 / 1527
  29586. }
  29587. },
  29588. },
  29589. [
  29590. ]
  29591. ))
  29592. characterMakers.push(() => makeCharacter(
  29593. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29594. {
  29595. front: {
  29596. height: math.unit(9.35, "feet"),
  29597. weight: math.unit(600, "lb"),
  29598. name: "Front",
  29599. image: {
  29600. source: "./media/characters/amera/front.svg",
  29601. extra: 891 / 818,
  29602. bottom: 30 / 922.7
  29603. }
  29604. },
  29605. back: {
  29606. height: math.unit(9.35, "feet"),
  29607. weight: math.unit(600, "lb"),
  29608. name: "Back",
  29609. image: {
  29610. source: "./media/characters/amera/back.svg",
  29611. extra: 876 / 824,
  29612. bottom: 6.8 / 884
  29613. }
  29614. },
  29615. dick: {
  29616. height: math.unit(2.14, "feet"),
  29617. name: "Dick",
  29618. image: {
  29619. source: "./media/characters/amera/dick.svg"
  29620. }
  29621. },
  29622. },
  29623. [
  29624. {
  29625. name: "Normal",
  29626. height: math.unit(9.35, "feet"),
  29627. default: true
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29633. {
  29634. kneeling: {
  29635. height: math.unit(3 + 4 / 12, "feet"),
  29636. weight: math.unit(90, "lb"),
  29637. name: "Kneeling",
  29638. image: {
  29639. source: "./media/characters/rosewen/kneeling.svg",
  29640. extra: 1835 / 1571,
  29641. bottom: 27.7 / 1862
  29642. }
  29643. },
  29644. },
  29645. [
  29646. {
  29647. name: "Normal",
  29648. height: math.unit(3 + 4 / 12, "feet"),
  29649. default: true
  29650. },
  29651. ]
  29652. ))
  29653. characterMakers.push(() => makeCharacter(
  29654. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29655. {
  29656. front: {
  29657. height: math.unit(5 + 10 / 12, "feet"),
  29658. weight: math.unit(200, "lb"),
  29659. name: "Front",
  29660. image: {
  29661. source: "./media/characters/sabah/front.svg",
  29662. extra: 849 / 763,
  29663. bottom: 33.9 / 881
  29664. }
  29665. },
  29666. },
  29667. [
  29668. {
  29669. name: "Normal",
  29670. height: math.unit(5 + 10 / 12, "feet"),
  29671. default: true
  29672. },
  29673. ]
  29674. ))
  29675. characterMakers.push(() => makeCharacter(
  29676. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29677. {
  29678. front: {
  29679. height: math.unit(3 + 5 / 12, "feet"),
  29680. weight: math.unit(40, "kg"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/purple-flame/front.svg",
  29684. extra: 1577 / 1412,
  29685. bottom: 97 / 1694
  29686. }
  29687. },
  29688. frontDressed: {
  29689. height: math.unit(3 + 5 / 12, "feet"),
  29690. weight: math.unit(40, "kg"),
  29691. name: "Front (Dressed)",
  29692. image: {
  29693. source: "./media/characters/purple-flame/front-dressed.svg",
  29694. extra: 1577 / 1412,
  29695. bottom: 97 / 1694
  29696. }
  29697. },
  29698. headphones: {
  29699. height: math.unit(0.85, "feet"),
  29700. name: "Headphones",
  29701. image: {
  29702. source: "./media/characters/purple-flame/headphones.svg"
  29703. }
  29704. },
  29705. },
  29706. [
  29707. {
  29708. name: "Really Small",
  29709. height: math.unit(5, "cm")
  29710. },
  29711. {
  29712. name: "Micro",
  29713. height: math.unit(1 + 5 / 12, "feet")
  29714. },
  29715. {
  29716. name: "Normal",
  29717. height: math.unit(3 + 5 / 12, "feet"),
  29718. default: true
  29719. },
  29720. {
  29721. name: "Minimacro",
  29722. height: math.unit(125, "feet")
  29723. },
  29724. {
  29725. name: "Macro",
  29726. height: math.unit(0.5, "miles")
  29727. },
  29728. {
  29729. name: "Megamacro",
  29730. height: math.unit(50, "miles")
  29731. },
  29732. {
  29733. name: "Gigantic",
  29734. height: math.unit(750, "miles")
  29735. },
  29736. {
  29737. name: "Planetary",
  29738. height: math.unit(15000, "miles")
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(14, "feet"),
  29747. weight: math.unit(959, "lb"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/arsenal/front.svg",
  29751. extra: 2357 / 2157,
  29752. bottom: 93 / 2458
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(14, "feet"),
  29760. default: true
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29766. {
  29767. front: {
  29768. height: math.unit(6, "feet"),
  29769. weight: math.unit(150, "lb"),
  29770. name: "Front",
  29771. image: {
  29772. source: "./media/characters/adira/front.svg",
  29773. extra: 2121/2013,
  29774. bottom: 206/2327
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Micro",
  29781. height: math.unit(4, "inches"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Macro",
  29786. height: math.unit(50, "feet")
  29787. },
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29792. {
  29793. front: {
  29794. height: math.unit(16, "feet"),
  29795. weight: math.unit(1000, "lb"),
  29796. name: "Front",
  29797. image: {
  29798. source: "./media/characters/grim/front.svg",
  29799. extra: 622 / 614,
  29800. bottom: 18.1 / 642
  29801. }
  29802. },
  29803. back: {
  29804. height: math.unit(16, "feet"),
  29805. weight: math.unit(1000, "lb"),
  29806. name: "Back",
  29807. image: {
  29808. source: "./media/characters/grim/back.svg",
  29809. extra: 610.6 / 602,
  29810. bottom: 40.8 / 652
  29811. }
  29812. },
  29813. hunched: {
  29814. height: math.unit(9.75, "feet"),
  29815. weight: math.unit(1000, "lb"),
  29816. name: "Hunched",
  29817. image: {
  29818. source: "./media/characters/grim/hunched.svg",
  29819. extra: 304 / 297,
  29820. bottom: 35.4 / 394
  29821. }
  29822. },
  29823. },
  29824. [
  29825. {
  29826. name: "Normal",
  29827. height: math.unit(16, "feet"),
  29828. default: true
  29829. },
  29830. ]
  29831. ))
  29832. characterMakers.push(() => makeCharacter(
  29833. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29834. {
  29835. front: {
  29836. height: math.unit(2.3, "meters"),
  29837. weight: math.unit(300, "lb"),
  29838. name: "Front",
  29839. image: {
  29840. source: "./media/characters/sinja/front-sfw.svg",
  29841. extra: 1393 / 1294,
  29842. bottom: 70 / 1463
  29843. }
  29844. },
  29845. frontNsfw: {
  29846. height: math.unit(2.3, "meters"),
  29847. weight: math.unit(300, "lb"),
  29848. name: "Front (NSFW)",
  29849. image: {
  29850. source: "./media/characters/sinja/front-nsfw.svg",
  29851. extra: 1393 / 1294,
  29852. bottom: 70 / 1463
  29853. }
  29854. },
  29855. back: {
  29856. height: math.unit(2.3, "meters"),
  29857. weight: math.unit(300, "lb"),
  29858. name: "Back",
  29859. image: {
  29860. source: "./media/characters/sinja/back.svg",
  29861. extra: 1393 / 1294,
  29862. bottom: 70 / 1463
  29863. }
  29864. },
  29865. head: {
  29866. height: math.unit(1.771, "feet"),
  29867. name: "Head",
  29868. image: {
  29869. source: "./media/characters/sinja/head.svg"
  29870. }
  29871. },
  29872. slit: {
  29873. height: math.unit(0.8, "feet"),
  29874. name: "Slit",
  29875. image: {
  29876. source: "./media/characters/sinja/slit.svg"
  29877. }
  29878. },
  29879. },
  29880. [
  29881. {
  29882. name: "Normal",
  29883. height: math.unit(2.3, "meters")
  29884. },
  29885. {
  29886. name: "Macro",
  29887. height: math.unit(91, "meters"),
  29888. default: true
  29889. },
  29890. {
  29891. name: "Megamacro",
  29892. height: math.unit(91440, "meters")
  29893. },
  29894. {
  29895. name: "Gigamacro",
  29896. height: math.unit(60960000, "meters")
  29897. },
  29898. {
  29899. name: "Teramacro",
  29900. height: math.unit(9144000000, "meters")
  29901. },
  29902. ]
  29903. ))
  29904. characterMakers.push(() => makeCharacter(
  29905. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29906. {
  29907. front: {
  29908. height: math.unit(1.7, "meters"),
  29909. weight: math.unit(130, "lb"),
  29910. name: "Front",
  29911. image: {
  29912. source: "./media/characters/kyu/front.svg",
  29913. extra: 415 / 395,
  29914. bottom: 5 / 420
  29915. }
  29916. },
  29917. head: {
  29918. height: math.unit(1.75, "feet"),
  29919. name: "Head",
  29920. image: {
  29921. source: "./media/characters/kyu/head.svg"
  29922. }
  29923. },
  29924. foot: {
  29925. height: math.unit(0.81, "feet"),
  29926. name: "Foot",
  29927. image: {
  29928. source: "./media/characters/kyu/foot.svg"
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Normal",
  29935. height: math.unit(1.7, "meters")
  29936. },
  29937. {
  29938. name: "Macro",
  29939. height: math.unit(131, "feet"),
  29940. default: true
  29941. },
  29942. {
  29943. name: "Megamacro",
  29944. height: math.unit(91440, "meters")
  29945. },
  29946. {
  29947. name: "Gigamacro",
  29948. height: math.unit(60960000, "meters")
  29949. },
  29950. {
  29951. name: "Teramacro",
  29952. height: math.unit(9144000000, "meters")
  29953. },
  29954. ]
  29955. ))
  29956. characterMakers.push(() => makeCharacter(
  29957. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29958. {
  29959. front: {
  29960. height: math.unit(7 + 1 / 12, "feet"),
  29961. weight: math.unit(250, "lb"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/joey/front.svg",
  29965. extra: 1791 / 1537,
  29966. bottom: 28 / 1816
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Micro",
  29973. height: math.unit(3, "inches")
  29974. },
  29975. {
  29976. name: "Normal",
  29977. height: math.unit(7 + 1 / 12, "feet"),
  29978. default: true
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29984. {
  29985. front: {
  29986. height: math.unit(165, "cm"),
  29987. weight: math.unit(140, "lb"),
  29988. name: "Front",
  29989. image: {
  29990. source: "./media/characters/sam-evans/front.svg",
  29991. extra: 3417 / 3230,
  29992. bottom: 41.3 / 3417
  29993. }
  29994. },
  29995. frontSixTails: {
  29996. height: math.unit(165, "cm"),
  29997. weight: math.unit(140, "lb"),
  29998. name: "Front-six-tails",
  29999. image: {
  30000. source: "./media/characters/sam-evans/front-six-tails.svg",
  30001. extra: 3417 / 3230,
  30002. bottom: 41.3 / 3417
  30003. }
  30004. },
  30005. back: {
  30006. height: math.unit(165, "cm"),
  30007. weight: math.unit(140, "lb"),
  30008. name: "Back",
  30009. image: {
  30010. source: "./media/characters/sam-evans/back.svg",
  30011. extra: 3227 / 3032,
  30012. bottom: 6.8 / 3234
  30013. }
  30014. },
  30015. face: {
  30016. height: math.unit(0.68, "feet"),
  30017. name: "Face",
  30018. image: {
  30019. source: "./media/characters/sam-evans/face.svg"
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Normal",
  30026. height: math.unit(165, "cm"),
  30027. default: true
  30028. },
  30029. {
  30030. name: "Macro",
  30031. height: math.unit(100, "meters")
  30032. },
  30033. {
  30034. name: "Macro+",
  30035. height: math.unit(800, "meters")
  30036. },
  30037. {
  30038. name: "Macro++",
  30039. height: math.unit(3, "km")
  30040. },
  30041. {
  30042. name: "Macro+++",
  30043. height: math.unit(30, "km")
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30049. {
  30050. front: {
  30051. height: math.unit(10, "feet"),
  30052. weight: math.unit(750, "lb"),
  30053. name: "Front",
  30054. image: {
  30055. source: "./media/characters/juliet-a/front.svg",
  30056. extra: 1766 / 1720,
  30057. bottom: 43 / 1809
  30058. }
  30059. },
  30060. back: {
  30061. height: math.unit(10, "feet"),
  30062. weight: math.unit(750, "lb"),
  30063. name: "Back",
  30064. image: {
  30065. source: "./media/characters/juliet-a/back.svg",
  30066. extra: 1781 / 1734,
  30067. bottom: 35 / 1810,
  30068. }
  30069. },
  30070. },
  30071. [
  30072. {
  30073. name: "Normal",
  30074. height: math.unit(10, "feet"),
  30075. default: true
  30076. },
  30077. {
  30078. name: "Dragon Form",
  30079. height: math.unit(250, "feet")
  30080. },
  30081. {
  30082. name: "Macro",
  30083. height: math.unit(1000, "feet")
  30084. },
  30085. {
  30086. name: "Megamacro",
  30087. height: math.unit(10000, "feet")
  30088. }
  30089. ]
  30090. ))
  30091. characterMakers.push(() => makeCharacter(
  30092. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30093. {
  30094. regular: {
  30095. height: math.unit(7 + 3 / 12, "feet"),
  30096. weight: math.unit(260, "lb"),
  30097. name: "Regular",
  30098. image: {
  30099. source: "./media/characters/wild/regular.svg",
  30100. extra: 97.45 / 92,
  30101. bottom: 6.8 / 104.3
  30102. }
  30103. },
  30104. biggums: {
  30105. height: math.unit(8 + 6 / 12, "feet"),
  30106. weight: math.unit(425, "lb"),
  30107. name: "Biggums",
  30108. image: {
  30109. source: "./media/characters/wild/biggums.svg",
  30110. extra: 97.45 / 92,
  30111. bottom: 7.5 / 132.34
  30112. }
  30113. },
  30114. mawRegular: {
  30115. height: math.unit(1.24, "feet"),
  30116. name: "Maw (Regular)",
  30117. image: {
  30118. source: "./media/characters/wild/maw.svg"
  30119. }
  30120. },
  30121. mawBiggums: {
  30122. height: math.unit(1.47, "feet"),
  30123. name: "Maw (Biggums)",
  30124. image: {
  30125. source: "./media/characters/wild/maw.svg"
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Normal",
  30132. height: math.unit(7 + 3 / 12, "feet"),
  30133. default: true
  30134. },
  30135. ]
  30136. ))
  30137. characterMakers.push(() => makeCharacter(
  30138. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30139. {
  30140. front: {
  30141. height: math.unit(2.5, "meters"),
  30142. weight: math.unit(200, "kg"),
  30143. name: "Front",
  30144. image: {
  30145. source: "./media/characters/vidar/front.svg",
  30146. extra: 2994 / 2795,
  30147. bottom: 56 / 3061
  30148. }
  30149. },
  30150. back: {
  30151. height: math.unit(2.5, "meters"),
  30152. weight: math.unit(200, "kg"),
  30153. name: "Back",
  30154. image: {
  30155. source: "./media/characters/vidar/back.svg",
  30156. extra: 3131 / 2928,
  30157. bottom: 13.5 / 3141.5
  30158. }
  30159. },
  30160. feral: {
  30161. height: math.unit(2.5, "meters"),
  30162. weight: math.unit(2000, "kg"),
  30163. name: "Feral",
  30164. image: {
  30165. source: "./media/characters/vidar/feral.svg",
  30166. extra: 2790 / 1765,
  30167. bottom: 6 / 2796
  30168. }
  30169. },
  30170. },
  30171. [
  30172. {
  30173. name: "Normal",
  30174. height: math.unit(2.5, "meters"),
  30175. default: true
  30176. },
  30177. {
  30178. name: "Macro",
  30179. height: math.unit(100, "meters")
  30180. },
  30181. ]
  30182. ))
  30183. characterMakers.push(() => makeCharacter(
  30184. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30185. {
  30186. front: {
  30187. height: math.unit(5 + 9 / 12, "feet"),
  30188. weight: math.unit(120, "lb"),
  30189. name: "Front",
  30190. image: {
  30191. source: "./media/characters/ash/front.svg",
  30192. extra: 2189 / 1961,
  30193. bottom: 5.2 / 2194
  30194. }
  30195. },
  30196. },
  30197. [
  30198. {
  30199. name: "Normal",
  30200. height: math.unit(5 + 9 / 12, "feet"),
  30201. default: true
  30202. },
  30203. ]
  30204. ))
  30205. characterMakers.push(() => makeCharacter(
  30206. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30207. {
  30208. front: {
  30209. height: math.unit(9, "feet"),
  30210. weight: math.unit(10000, "lb"),
  30211. name: "Front",
  30212. image: {
  30213. source: "./media/characters/gygabite/front.svg",
  30214. bottom: 31.7 / 537.8,
  30215. extra: 505 / 370
  30216. }
  30217. },
  30218. },
  30219. [
  30220. {
  30221. name: "Normal",
  30222. height: math.unit(9, "feet"),
  30223. default: true
  30224. },
  30225. ]
  30226. ))
  30227. characterMakers.push(() => makeCharacter(
  30228. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30229. {
  30230. front: {
  30231. height: math.unit(12, "feet"),
  30232. weight: math.unit(4000, "lb"),
  30233. name: "Front",
  30234. image: {
  30235. source: "./media/characters/p0tat0/front.svg",
  30236. extra: 1065 / 921,
  30237. bottom: 55.7 / 1121.25
  30238. }
  30239. },
  30240. },
  30241. [
  30242. {
  30243. name: "Normal",
  30244. height: math.unit(12, "feet"),
  30245. default: true
  30246. },
  30247. ]
  30248. ))
  30249. characterMakers.push(() => makeCharacter(
  30250. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30251. {
  30252. side: {
  30253. height: math.unit(6.5, "feet"),
  30254. weight: math.unit(800, "lb"),
  30255. name: "Side",
  30256. image: {
  30257. source: "./media/characters/dusk/side.svg",
  30258. extra: 615 / 373,
  30259. bottom: 53 / 664
  30260. }
  30261. },
  30262. sitting: {
  30263. height: math.unit(7, "feet"),
  30264. weight: math.unit(800, "lb"),
  30265. name: "Sitting",
  30266. image: {
  30267. source: "./media/characters/dusk/sitting.svg",
  30268. extra: 753 / 425,
  30269. bottom: 33 / 774
  30270. }
  30271. },
  30272. head: {
  30273. height: math.unit(6.1, "feet"),
  30274. name: "Head",
  30275. image: {
  30276. source: "./media/characters/dusk/head.svg"
  30277. }
  30278. },
  30279. },
  30280. [
  30281. {
  30282. name: "Normal",
  30283. height: math.unit(7, "feet"),
  30284. default: true
  30285. },
  30286. ]
  30287. ))
  30288. characterMakers.push(() => makeCharacter(
  30289. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30290. {
  30291. front: {
  30292. height: math.unit(15, "feet"),
  30293. weight: math.unit(7000, "lb"),
  30294. name: "Front",
  30295. image: {
  30296. source: "./media/characters/jay-direwolf/front.svg",
  30297. extra: 1810 / 1732,
  30298. bottom: 66 / 1892
  30299. }
  30300. },
  30301. },
  30302. [
  30303. {
  30304. name: "Normal",
  30305. height: math.unit(15, "feet"),
  30306. default: true
  30307. },
  30308. ]
  30309. ))
  30310. characterMakers.push(() => makeCharacter(
  30311. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30312. {
  30313. front: {
  30314. height: math.unit(4 + 9 / 12, "feet"),
  30315. weight: math.unit(130, "lb"),
  30316. name: "Front",
  30317. image: {
  30318. source: "./media/characters/anchovie/front.svg",
  30319. extra: 382 / 350,
  30320. bottom: 25 / 409
  30321. }
  30322. },
  30323. back: {
  30324. height: math.unit(4 + 9 / 12, "feet"),
  30325. weight: math.unit(130, "lb"),
  30326. name: "Back",
  30327. image: {
  30328. source: "./media/characters/anchovie/back.svg",
  30329. extra: 385 / 352,
  30330. bottom: 16.6 / 402
  30331. }
  30332. },
  30333. frontDressed: {
  30334. height: math.unit(4 + 9 / 12, "feet"),
  30335. weight: math.unit(130, "lb"),
  30336. name: "Front (Dressed)",
  30337. image: {
  30338. source: "./media/characters/anchovie/front-dressed.svg",
  30339. extra: 382 / 350,
  30340. bottom: 25 / 409
  30341. }
  30342. },
  30343. backDressed: {
  30344. height: math.unit(4 + 9 / 12, "feet"),
  30345. weight: math.unit(130, "lb"),
  30346. name: "Back (Dressed)",
  30347. image: {
  30348. source: "./media/characters/anchovie/back-dressed.svg",
  30349. extra: 385 / 352,
  30350. bottom: 16.6 / 402
  30351. }
  30352. },
  30353. },
  30354. [
  30355. {
  30356. name: "Micro",
  30357. height: math.unit(6.4, "inches")
  30358. },
  30359. {
  30360. name: "Normal",
  30361. height: math.unit(4 + 9 / 12, "feet"),
  30362. default: true
  30363. },
  30364. ]
  30365. ))
  30366. characterMakers.push(() => makeCharacter(
  30367. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30368. {
  30369. front: {
  30370. height: math.unit(2, "meters"),
  30371. weight: math.unit(180, "lb"),
  30372. name: "Front",
  30373. image: {
  30374. source: "./media/characters/acidrenamon/front.svg",
  30375. extra: 987 / 890,
  30376. bottom: 22.8 / 1009
  30377. }
  30378. },
  30379. back: {
  30380. height: math.unit(2, "meters"),
  30381. weight: math.unit(180, "lb"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/acidrenamon/back.svg",
  30385. extra: 983 / 891,
  30386. bottom: 8.4 / 992
  30387. }
  30388. },
  30389. head: {
  30390. height: math.unit(1.92, "feet"),
  30391. name: "Head",
  30392. image: {
  30393. source: "./media/characters/acidrenamon/head.svg"
  30394. }
  30395. },
  30396. rump: {
  30397. height: math.unit(1.72, "feet"),
  30398. name: "Rump",
  30399. image: {
  30400. source: "./media/characters/acidrenamon/rump.svg"
  30401. }
  30402. },
  30403. tail: {
  30404. height: math.unit(4.2, "feet"),
  30405. name: "Tail",
  30406. image: {
  30407. source: "./media/characters/acidrenamon/tail.svg"
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Normal",
  30414. height: math.unit(2, "meters"),
  30415. default: true
  30416. },
  30417. {
  30418. name: "Minimacro",
  30419. height: math.unit(7, "meters")
  30420. },
  30421. {
  30422. name: "Macro",
  30423. height: math.unit(200, "meters")
  30424. },
  30425. {
  30426. name: "Gigamacro",
  30427. height: math.unit(0.2, "earths")
  30428. },
  30429. ]
  30430. ))
  30431. characterMakers.push(() => makeCharacter(
  30432. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30433. {
  30434. front: {
  30435. height: math.unit(152, "feet"),
  30436. name: "Front",
  30437. image: {
  30438. source: "./media/characters/kenzie-lee/front.svg",
  30439. extra: 1869/1774,
  30440. bottom: 128/1997
  30441. }
  30442. },
  30443. side: {
  30444. height: math.unit(86, "feet"),
  30445. name: "Side",
  30446. image: {
  30447. source: "./media/characters/kenzie-lee/side.svg",
  30448. extra: 930/815,
  30449. bottom: 177/1107
  30450. }
  30451. },
  30452. paw: {
  30453. height: math.unit(15, "feet"),
  30454. name: "Paw",
  30455. image: {
  30456. source: "./media/characters/kenzie-lee/paw.svg"
  30457. }
  30458. },
  30459. },
  30460. [
  30461. {
  30462. name: "Kenzie Flea",
  30463. height: math.unit(2, "mm"),
  30464. default: true
  30465. },
  30466. {
  30467. name: "Micro",
  30468. height: math.unit(2, "inches")
  30469. },
  30470. {
  30471. name: "Normal",
  30472. height: math.unit(152, "feet")
  30473. },
  30474. {
  30475. name: "Megamacro",
  30476. height: math.unit(7, "miles")
  30477. },
  30478. {
  30479. name: "Gigamacro",
  30480. height: math.unit(8000, "miles")
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(6, "feet"),
  30489. name: "Front",
  30490. image: {
  30491. source: "./media/characters/withers/front.svg",
  30492. extra: 1935/1760,
  30493. bottom: 72/2007
  30494. }
  30495. },
  30496. back: {
  30497. height: math.unit(6, "feet"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/withers/back.svg",
  30501. extra: 1944/1792,
  30502. bottom: 12/1956
  30503. }
  30504. },
  30505. dressed: {
  30506. height: math.unit(6, "feet"),
  30507. name: "Dressed",
  30508. image: {
  30509. source: "./media/characters/withers/dressed.svg",
  30510. extra: 1937/1765,
  30511. bottom: 73/2010
  30512. }
  30513. },
  30514. phase1: {
  30515. height: math.unit(1.1, "feet"),
  30516. name: "Phase 1",
  30517. image: {
  30518. source: "./media/characters/withers/phase-1.svg",
  30519. extra: 1885/1232,
  30520. bottom: 0/1885
  30521. }
  30522. },
  30523. phase2: {
  30524. height: math.unit(1.05, "feet"),
  30525. name: "Phase 2",
  30526. image: {
  30527. source: "./media/characters/withers/phase-2.svg",
  30528. extra: 1792/1090,
  30529. bottom: 0/1792
  30530. }
  30531. },
  30532. partyWipe: {
  30533. height: math.unit(1.1, "feet"),
  30534. name: "Party Wipe",
  30535. image: {
  30536. source: "./media/characters/withers/party-wipe.svg",
  30537. extra: 1864/1207,
  30538. bottom: 0/1864
  30539. }
  30540. },
  30541. },
  30542. [
  30543. {
  30544. name: "Macro",
  30545. height: math.unit(167, "feet"),
  30546. default: true
  30547. },
  30548. {
  30549. name: "Megamacro",
  30550. height: math.unit(15, "miles")
  30551. }
  30552. ]
  30553. ))
  30554. characterMakers.push(() => makeCharacter(
  30555. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30556. {
  30557. front: {
  30558. height: math.unit(6 + 7 / 12, "feet"),
  30559. weight: math.unit(250, "lb"),
  30560. name: "Front",
  30561. image: {
  30562. source: "./media/characters/nemoskii/front.svg",
  30563. extra: 2270 / 1734,
  30564. bottom: 86 / 2354
  30565. }
  30566. },
  30567. back: {
  30568. height: math.unit(6 + 7 / 12, "feet"),
  30569. weight: math.unit(250, "lb"),
  30570. name: "Back",
  30571. image: {
  30572. source: "./media/characters/nemoskii/back.svg",
  30573. extra: 1845 / 1788,
  30574. bottom: 10.5 / 1852
  30575. }
  30576. },
  30577. head: {
  30578. height: math.unit(1.31, "feet"),
  30579. name: "Head",
  30580. image: {
  30581. source: "./media/characters/nemoskii/head.svg"
  30582. }
  30583. },
  30584. },
  30585. [
  30586. {
  30587. name: "Micro",
  30588. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30589. },
  30590. {
  30591. name: "Normal",
  30592. height: math.unit(6 + 7 / 12, "feet"),
  30593. default: true
  30594. },
  30595. {
  30596. name: "Macro",
  30597. height: math.unit((6 + 7 / 12) * 150, "feet")
  30598. },
  30599. {
  30600. name: "Macro+",
  30601. height: math.unit((6 + 7 / 12) * 500, "feet")
  30602. },
  30603. {
  30604. name: "Megamacro",
  30605. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30611. {
  30612. front: {
  30613. height: math.unit(1, "mile"),
  30614. weight: math.unit(265261.9, "lb"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/shui/front.svg",
  30618. extra: 1633 / 1564,
  30619. bottom: 91.5 / 1726
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Macro",
  30626. height: math.unit(1, "mile"),
  30627. default: true
  30628. },
  30629. ]
  30630. ))
  30631. characterMakers.push(() => makeCharacter(
  30632. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30633. {
  30634. front: {
  30635. height: math.unit(12 + 6 / 12, "feet"),
  30636. weight: math.unit(1342, "lb"),
  30637. name: "Front",
  30638. image: {
  30639. source: "./media/characters/arokh-takakura/front.svg",
  30640. extra: 1089 / 1043,
  30641. bottom: 77.4 / 1176.7
  30642. }
  30643. },
  30644. back: {
  30645. height: math.unit(12 + 6 / 12, "feet"),
  30646. weight: math.unit(1342, "lb"),
  30647. name: "Back",
  30648. image: {
  30649. source: "./media/characters/arokh-takakura/back.svg",
  30650. extra: 1046 / 1019,
  30651. bottom: 102 / 1150
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Big",
  30658. height: math.unit(12 + 6 / 12, "feet"),
  30659. default: true
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30665. {
  30666. front: {
  30667. height: math.unit(5 + 6 / 12, "feet"),
  30668. weight: math.unit(150, "lb"),
  30669. name: "Front",
  30670. image: {
  30671. source: "./media/characters/theo/front.svg",
  30672. extra: 1184 / 1131,
  30673. bottom: 7.4 / 1191
  30674. }
  30675. },
  30676. },
  30677. [
  30678. {
  30679. name: "Micro",
  30680. height: math.unit(5, "inches")
  30681. },
  30682. {
  30683. name: "Normal",
  30684. height: math.unit(5 + 6 / 12, "feet"),
  30685. default: true
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30691. {
  30692. front: {
  30693. height: math.unit(5 + 9 / 12, "feet"),
  30694. weight: math.unit(130, "lb"),
  30695. name: "Front",
  30696. image: {
  30697. source: "./media/characters/cecelia-swift/front.svg",
  30698. extra: 502 / 484,
  30699. bottom: 23 / 523
  30700. }
  30701. },
  30702. back: {
  30703. height: math.unit(5 + 9 / 12, "feet"),
  30704. weight: math.unit(130, "lb"),
  30705. name: "Back",
  30706. image: {
  30707. source: "./media/characters/cecelia-swift/back.svg",
  30708. extra: 499 / 485,
  30709. bottom: 12 / 511
  30710. }
  30711. },
  30712. head: {
  30713. height: math.unit(0.90, "feet"),
  30714. name: "Head",
  30715. image: {
  30716. source: "./media/characters/cecelia-swift/head.svg"
  30717. }
  30718. },
  30719. rump: {
  30720. height: math.unit(1.75, "feet"),
  30721. name: "Rump",
  30722. image: {
  30723. source: "./media/characters/cecelia-swift/rump.svg"
  30724. }
  30725. },
  30726. },
  30727. [
  30728. {
  30729. name: "Normal",
  30730. height: math.unit(5 + 9 / 12, "feet"),
  30731. default: true
  30732. },
  30733. {
  30734. name: "Big",
  30735. height: math.unit(50, "feet")
  30736. },
  30737. {
  30738. name: "Macro",
  30739. height: math.unit(100, "feet")
  30740. },
  30741. {
  30742. name: "Macro+",
  30743. height: math.unit(500, "feet")
  30744. },
  30745. {
  30746. name: "Macro++",
  30747. height: math.unit(1000, "feet")
  30748. },
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30753. {
  30754. front: {
  30755. height: math.unit(6, "feet"),
  30756. weight: math.unit(150, "lb"),
  30757. name: "Front",
  30758. image: {
  30759. source: "./media/characters/kaunan/front.svg",
  30760. extra: 2890 / 2523,
  30761. bottom: 49 / 2939
  30762. }
  30763. },
  30764. },
  30765. [
  30766. {
  30767. name: "Macro",
  30768. height: math.unit(150, "feet"),
  30769. default: true
  30770. },
  30771. ]
  30772. ))
  30773. characterMakers.push(() => makeCharacter(
  30774. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30775. {
  30776. dressed: {
  30777. height: math.unit(175, "cm"),
  30778. weight: math.unit(60, "kg"),
  30779. name: "Dressed",
  30780. image: {
  30781. source: "./media/characters/fei/dressed.svg",
  30782. extra: 1402/1278,
  30783. bottom: 27/1429
  30784. }
  30785. },
  30786. nude: {
  30787. height: math.unit(175, "cm"),
  30788. weight: math.unit(60, "kg"),
  30789. name: "Nude",
  30790. image: {
  30791. source: "./media/characters/fei/nude.svg",
  30792. extra: 1402/1278,
  30793. bottom: 27/1429
  30794. }
  30795. },
  30796. heels: {
  30797. height: math.unit(0.466, "feet"),
  30798. name: "Heels",
  30799. image: {
  30800. source: "./media/characters/fei/heels.svg",
  30801. extra: 156/152,
  30802. bottom: 28/184
  30803. }
  30804. },
  30805. },
  30806. [
  30807. {
  30808. name: "Mortal",
  30809. height: math.unit(175, "cm")
  30810. },
  30811. {
  30812. name: "Normal",
  30813. height: math.unit(3500, "m")
  30814. },
  30815. {
  30816. name: "Stroll",
  30817. height: math.unit(18.4, "km"),
  30818. default: true
  30819. },
  30820. {
  30821. name: "Showoff",
  30822. height: math.unit(175, "km")
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30828. {
  30829. front: {
  30830. height: math.unit(7, "feet"),
  30831. weight: math.unit(1000, "kg"),
  30832. name: "Front",
  30833. image: {
  30834. source: "./media/characters/edrax/front.svg",
  30835. extra: 2838 / 2550,
  30836. bottom: 130 / 2968
  30837. }
  30838. },
  30839. },
  30840. [
  30841. {
  30842. name: "Small",
  30843. height: math.unit(7, "feet")
  30844. },
  30845. {
  30846. name: "Normal",
  30847. height: math.unit(1500, "meters")
  30848. },
  30849. {
  30850. name: "Mega",
  30851. height: math.unit(12000000, "km"),
  30852. default: true
  30853. },
  30854. {
  30855. name: "Megamacro",
  30856. height: math.unit(10600000, "lightyears")
  30857. },
  30858. {
  30859. name: "Hypermacro",
  30860. height: math.unit(256, "yottameters")
  30861. },
  30862. ]
  30863. ))
  30864. characterMakers.push(() => makeCharacter(
  30865. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30866. {
  30867. front: {
  30868. height: math.unit(10, "feet"),
  30869. weight: math.unit(750, "lb"),
  30870. name: "Front",
  30871. image: {
  30872. source: "./media/characters/clove/front.svg",
  30873. extra: 1918/1751,
  30874. bottom: 52/1970
  30875. }
  30876. },
  30877. back: {
  30878. height: math.unit(10, "feet"),
  30879. weight: math.unit(750, "lb"),
  30880. name: "Back",
  30881. image: {
  30882. source: "./media/characters/clove/back.svg",
  30883. extra: 1912/1747,
  30884. bottom: 50/1962
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(10, "feet"),
  30892. default: true
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30898. {
  30899. front: {
  30900. height: math.unit(4, "feet"),
  30901. weight: math.unit(50, "lb"),
  30902. name: "Front",
  30903. image: {
  30904. source: "./media/characters/alex-rabbit/front.svg",
  30905. extra: 507 / 458,
  30906. bottom: 18.5 / 527
  30907. }
  30908. },
  30909. back: {
  30910. height: math.unit(4, "feet"),
  30911. weight: math.unit(50, "lb"),
  30912. name: "Back",
  30913. image: {
  30914. source: "./media/characters/alex-rabbit/back.svg",
  30915. extra: 502 / 460,
  30916. bottom: 18.9 / 521
  30917. }
  30918. },
  30919. },
  30920. [
  30921. {
  30922. name: "Normal",
  30923. height: math.unit(4, "feet"),
  30924. default: true
  30925. },
  30926. ]
  30927. ))
  30928. characterMakers.push(() => makeCharacter(
  30929. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30930. {
  30931. front: {
  30932. height: math.unit(1 + 3 / 12, "feet"),
  30933. weight: math.unit(80, "lb"),
  30934. name: "Front",
  30935. image: {
  30936. source: "./media/characters/zander-rose/front.svg",
  30937. extra: 916 / 797,
  30938. bottom: 17 / 933
  30939. }
  30940. },
  30941. back: {
  30942. height: math.unit(1 + 3 / 12, "feet"),
  30943. weight: math.unit(80, "lb"),
  30944. name: "Back",
  30945. image: {
  30946. source: "./media/characters/zander-rose/back.svg",
  30947. extra: 903 / 779,
  30948. bottom: 31 / 934
  30949. }
  30950. },
  30951. },
  30952. [
  30953. {
  30954. name: "Normal",
  30955. height: math.unit(1 + 3 / 12, "feet"),
  30956. default: true
  30957. },
  30958. ]
  30959. ))
  30960. characterMakers.push(() => makeCharacter(
  30961. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30962. {
  30963. anthro: {
  30964. height: math.unit(6, "feet"),
  30965. weight: math.unit(150, "lb"),
  30966. name: "Anthro",
  30967. image: {
  30968. source: "./media/characters/razz/anthro.svg",
  30969. extra: 1437 / 1343,
  30970. bottom: 48 / 1485
  30971. }
  30972. },
  30973. feral: {
  30974. height: math.unit(6, "feet"),
  30975. weight: math.unit(150, "lb"),
  30976. name: "Feral",
  30977. image: {
  30978. source: "./media/characters/razz/feral.svg",
  30979. extra: 2569 / 1385,
  30980. bottom: 95 / 2664
  30981. }
  30982. },
  30983. },
  30984. [
  30985. {
  30986. name: "Normal",
  30987. height: math.unit(6, "feet"),
  30988. default: true
  30989. },
  30990. ]
  30991. ))
  30992. characterMakers.push(() => makeCharacter(
  30993. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30994. {
  30995. front: {
  30996. height: math.unit(9 + 4 / 12, "feet"),
  30997. weight: math.unit(500, "lb"),
  30998. name: "Front",
  30999. image: {
  31000. source: "./media/characters/morrigan/front.svg",
  31001. extra: 2707 / 2579,
  31002. bottom: 156 / 2863
  31003. }
  31004. },
  31005. },
  31006. [
  31007. {
  31008. name: "Normal",
  31009. height: math.unit(9 + 4 / 12, "feet"),
  31010. default: true
  31011. },
  31012. ]
  31013. ))
  31014. characterMakers.push(() => makeCharacter(
  31015. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31016. {
  31017. front: {
  31018. height: math.unit(5, "stories"),
  31019. weight: math.unit(4000, "lb"),
  31020. name: "Front",
  31021. image: {
  31022. source: "./media/characters/jenene/front.svg",
  31023. extra: 1780 / 1710,
  31024. bottom: 57 / 1837
  31025. }
  31026. },
  31027. },
  31028. [
  31029. {
  31030. name: "Normal",
  31031. height: math.unit(5, "stories"),
  31032. default: true
  31033. },
  31034. ]
  31035. ))
  31036. characterMakers.push(() => makeCharacter(
  31037. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31038. {
  31039. taurSfw: {
  31040. height: math.unit(10, "meters"),
  31041. weight: math.unit(17500, "kg"),
  31042. name: "Taur",
  31043. image: {
  31044. source: "./media/characters/faey/taur-sfw.svg",
  31045. extra: 1200 / 968,
  31046. bottom: 41 / 1241
  31047. }
  31048. },
  31049. chestmaw: {
  31050. height: math.unit(2.01, "meters"),
  31051. name: "Chestmaw",
  31052. image: {
  31053. source: "./media/characters/faey/chestmaw.svg"
  31054. }
  31055. },
  31056. foot: {
  31057. height: math.unit(2.43, "meters"),
  31058. name: "Foot",
  31059. image: {
  31060. source: "./media/characters/faey/foot.svg"
  31061. }
  31062. },
  31063. jaws: {
  31064. height: math.unit(1.66, "meters"),
  31065. name: "Jaws",
  31066. image: {
  31067. source: "./media/characters/faey/jaws.svg"
  31068. }
  31069. },
  31070. tongues: {
  31071. height: math.unit(2.01, "meters"),
  31072. name: "Tongues",
  31073. image: {
  31074. source: "./media/characters/faey/tongues.svg"
  31075. }
  31076. },
  31077. },
  31078. [
  31079. {
  31080. name: "Small",
  31081. height: math.unit(10, "meters"),
  31082. default: true
  31083. },
  31084. {
  31085. name: "Big",
  31086. height: math.unit(500000, "km")
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(7, "feet"),
  31095. weight: math.unit(275, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/roku/front.svg",
  31099. extra: 903 / 878,
  31100. bottom: 37 / 940
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Normal",
  31107. height: math.unit(7, "feet"),
  31108. default: true
  31109. },
  31110. {
  31111. name: "Macro",
  31112. height: math.unit(500, "feet")
  31113. },
  31114. {
  31115. name: "Megamacro",
  31116. height: math.unit(200, "miles")
  31117. },
  31118. ]
  31119. ))
  31120. characterMakers.push(() => makeCharacter(
  31121. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31122. {
  31123. front: {
  31124. height: math.unit(6 + 2 / 12, "feet"),
  31125. weight: math.unit(150, "lb"),
  31126. name: "Front",
  31127. image: {
  31128. source: "./media/characters/lira/front.svg",
  31129. extra: 1727 / 1605,
  31130. bottom: 26 / 1753
  31131. }
  31132. },
  31133. back: {
  31134. height: math.unit(6 + 2 / 12, "feet"),
  31135. weight: math.unit(150, "lb"),
  31136. name: "Back",
  31137. image: {
  31138. source: "./media/characters/lira/back.svg",
  31139. extra: 1713/1621,
  31140. bottom: 20/1733
  31141. }
  31142. },
  31143. hand: {
  31144. height: math.unit(0.75, "feet"),
  31145. name: "Hand",
  31146. image: {
  31147. source: "./media/characters/lira/hand.svg"
  31148. }
  31149. },
  31150. maw: {
  31151. height: math.unit(0.65, "feet"),
  31152. name: "Maw",
  31153. image: {
  31154. source: "./media/characters/lira/maw.svg"
  31155. }
  31156. },
  31157. pawDigi: {
  31158. height: math.unit(1.6, "feet"),
  31159. name: "Paw Digi",
  31160. image: {
  31161. source: "./media/characters/lira/paw-digi.svg"
  31162. }
  31163. },
  31164. pawPlanti: {
  31165. height: math.unit(1.4, "feet"),
  31166. name: "Paw Planti",
  31167. image: {
  31168. source: "./media/characters/lira/paw-planti.svg"
  31169. }
  31170. },
  31171. },
  31172. [
  31173. {
  31174. name: "Normal",
  31175. height: math.unit(6 + 2 / 12, "feet"),
  31176. default: true
  31177. },
  31178. {
  31179. name: "Macro",
  31180. height: math.unit(100, "feet")
  31181. },
  31182. {
  31183. name: "Macro²",
  31184. height: math.unit(1600, "feet")
  31185. },
  31186. {
  31187. name: "Planetary",
  31188. height: math.unit(20, "earths")
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(6, "feet"),
  31197. weight: math.unit(150, "lb"),
  31198. name: "Front",
  31199. image: {
  31200. source: "./media/characters/hadjet/front.svg",
  31201. extra: 1480 / 1346,
  31202. bottom: 26 / 1506
  31203. }
  31204. },
  31205. frontNsfw: {
  31206. height: math.unit(6, "feet"),
  31207. weight: math.unit(150, "lb"),
  31208. name: "Front (NSFW)",
  31209. image: {
  31210. source: "./media/characters/hadjet/front-nsfw.svg",
  31211. extra: 1440 / 1358,
  31212. bottom: 52 / 1492
  31213. }
  31214. },
  31215. },
  31216. [
  31217. {
  31218. name: "Macro",
  31219. height: math.unit(10, "stories"),
  31220. default: true
  31221. },
  31222. {
  31223. name: "Megamacro",
  31224. height: math.unit(1.5, "miles")
  31225. },
  31226. {
  31227. name: "Megamacro+",
  31228. height: math.unit(5, "miles")
  31229. },
  31230. ]
  31231. ))
  31232. characterMakers.push(() => makeCharacter(
  31233. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31234. {
  31235. side: {
  31236. height: math.unit(106, "feet"),
  31237. weight: math.unit(500, "tonnes"),
  31238. name: "Side",
  31239. image: {
  31240. source: "./media/characters/kodran/side.svg",
  31241. extra: 553 / 480,
  31242. bottom: 33 / 586
  31243. }
  31244. },
  31245. front: {
  31246. height: math.unit(132, "feet"),
  31247. weight: math.unit(500, "tonnes"),
  31248. name: "Front",
  31249. image: {
  31250. source: "./media/characters/kodran/front.svg",
  31251. extra: 667 / 643,
  31252. bottom: 42 / 709
  31253. }
  31254. },
  31255. flying: {
  31256. height: math.unit(350, "feet"),
  31257. weight: math.unit(500, "tonnes"),
  31258. name: "Flying",
  31259. image: {
  31260. source: "./media/characters/kodran/flying.svg"
  31261. }
  31262. },
  31263. foot: {
  31264. height: math.unit(33, "feet"),
  31265. name: "Foot",
  31266. image: {
  31267. source: "./media/characters/kodran/foot.svg"
  31268. }
  31269. },
  31270. footFront: {
  31271. height: math.unit(19, "feet"),
  31272. name: "Foot (Front)",
  31273. image: {
  31274. source: "./media/characters/kodran/foot-front.svg",
  31275. extra: 261 / 261,
  31276. bottom: 91 / 352
  31277. }
  31278. },
  31279. headFront: {
  31280. height: math.unit(53, "feet"),
  31281. name: "Head (Front)",
  31282. image: {
  31283. source: "./media/characters/kodran/head-front.svg"
  31284. }
  31285. },
  31286. headSide: {
  31287. height: math.unit(65, "feet"),
  31288. name: "Head (Side)",
  31289. image: {
  31290. source: "./media/characters/kodran/head-side.svg"
  31291. }
  31292. },
  31293. throat: {
  31294. height: math.unit(79, "feet"),
  31295. name: "Throat",
  31296. image: {
  31297. source: "./media/characters/kodran/throat.svg"
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Large",
  31304. height: math.unit(106, "feet"),
  31305. default: true
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31311. {
  31312. side: {
  31313. height: math.unit(11, "feet"),
  31314. weight: math.unit(150, "lb"),
  31315. name: "Side",
  31316. image: {
  31317. source: "./media/characters/pyxaron/side.svg",
  31318. extra: 305 / 195,
  31319. bottom: 17 / 322
  31320. }
  31321. },
  31322. },
  31323. [
  31324. {
  31325. name: "Normal",
  31326. height: math.unit(11, "feet"),
  31327. default: true
  31328. },
  31329. ]
  31330. ))
  31331. characterMakers.push(() => makeCharacter(
  31332. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31333. {
  31334. front: {
  31335. height: math.unit(6, "feet"),
  31336. weight: math.unit(150, "lb"),
  31337. name: "Front",
  31338. image: {
  31339. source: "./media/characters/meep/front.svg",
  31340. extra: 88 / 80,
  31341. bottom: 6 / 94
  31342. }
  31343. },
  31344. },
  31345. [
  31346. {
  31347. name: "Fun Sized",
  31348. height: math.unit(2, "inches"),
  31349. default: true
  31350. },
  31351. {
  31352. name: "Friend Sized",
  31353. height: math.unit(8, "inches")
  31354. },
  31355. ]
  31356. ))
  31357. characterMakers.push(() => makeCharacter(
  31358. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31359. {
  31360. front: {
  31361. height: math.unit(15, "feet"),
  31362. weight: math.unit(2500, "lb"),
  31363. name: "Front",
  31364. image: {
  31365. source: "./media/characters/holly-rabbit/front.svg",
  31366. extra: 1433 / 1233,
  31367. bottom: 125 / 1558
  31368. }
  31369. },
  31370. dick: {
  31371. height: math.unit(4.6, "feet"),
  31372. name: "Dick",
  31373. image: {
  31374. source: "./media/characters/holly-rabbit/dick.svg"
  31375. }
  31376. },
  31377. },
  31378. [
  31379. {
  31380. name: "Normal",
  31381. height: math.unit(15, "feet"),
  31382. default: true
  31383. },
  31384. {
  31385. name: "Macro",
  31386. height: math.unit(250, "feet")
  31387. },
  31388. {
  31389. name: "Macro+",
  31390. height: math.unit(2500, "feet")
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31396. {
  31397. front: {
  31398. height: math.unit(3.02, "meters"),
  31399. weight: math.unit(500, "kg"),
  31400. name: "Front",
  31401. image: {
  31402. source: "./media/characters/drena/front.svg",
  31403. extra: 282 / 243,
  31404. bottom: 8 / 290
  31405. }
  31406. },
  31407. side: {
  31408. height: math.unit(3.02, "meters"),
  31409. weight: math.unit(500, "kg"),
  31410. name: "Side",
  31411. image: {
  31412. source: "./media/characters/drena/side.svg",
  31413. extra: 280 / 245,
  31414. bottom: 10 / 290
  31415. }
  31416. },
  31417. back: {
  31418. height: math.unit(3.02, "meters"),
  31419. weight: math.unit(500, "kg"),
  31420. name: "Back",
  31421. image: {
  31422. source: "./media/characters/drena/back.svg",
  31423. extra: 278 / 243,
  31424. bottom: 2 / 280
  31425. }
  31426. },
  31427. foot: {
  31428. height: math.unit(0.75, "meters"),
  31429. name: "Foot",
  31430. image: {
  31431. source: "./media/characters/drena/foot.svg"
  31432. }
  31433. },
  31434. maw: {
  31435. height: math.unit(0.82, "meters"),
  31436. name: "Maw",
  31437. image: {
  31438. source: "./media/characters/drena/maw.svg"
  31439. }
  31440. },
  31441. eating: {
  31442. height: math.unit(0.75, "meters"),
  31443. name: "Eating",
  31444. image: {
  31445. source: "./media/characters/drena/eating.svg"
  31446. }
  31447. },
  31448. rump: {
  31449. height: math.unit(0.93, "meters"),
  31450. name: "Rump",
  31451. image: {
  31452. source: "./media/characters/drena/rump.svg"
  31453. }
  31454. },
  31455. },
  31456. [
  31457. {
  31458. name: "Normal",
  31459. height: math.unit(3.02, "meters"),
  31460. default: true
  31461. },
  31462. ]
  31463. ))
  31464. characterMakers.push(() => makeCharacter(
  31465. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31466. {
  31467. front: {
  31468. height: math.unit(6 + 4 / 12, "feet"),
  31469. weight: math.unit(250, "lb"),
  31470. name: "Front",
  31471. image: {
  31472. source: "./media/characters/remmyzilla/front.svg",
  31473. extra: 4033 / 3588,
  31474. bottom: 123 / 4156
  31475. }
  31476. },
  31477. back: {
  31478. height: math.unit(6 + 4 / 12, "feet"),
  31479. weight: math.unit(250, "lb"),
  31480. name: "Back",
  31481. image: {
  31482. source: "./media/characters/remmyzilla/back.svg",
  31483. extra: 1696/1602,
  31484. bottom: 63/1759
  31485. }
  31486. },
  31487. paw: {
  31488. height: math.unit(1.73, "feet"),
  31489. name: "Paw",
  31490. image: {
  31491. source: "./media/characters/remmyzilla/paw.svg"
  31492. },
  31493. extraAttributes: {
  31494. "toeSize": {
  31495. name: "Toe Size",
  31496. power: 2,
  31497. type: "area",
  31498. base: math.unit(0.0035, "m^2")
  31499. },
  31500. "padSize": {
  31501. name: "Pad Size",
  31502. power: 2,
  31503. type: "area",
  31504. base: math.unit(0.015, "m^2")
  31505. },
  31506. "pawsize": {
  31507. name: "Paw Size",
  31508. power: 2,
  31509. type: "area",
  31510. base: math.unit(0.072, "m^2")
  31511. },
  31512. }
  31513. },
  31514. maw: {
  31515. height: math.unit(1.73, "feet"),
  31516. name: "Maw",
  31517. image: {
  31518. source: "./media/characters/remmyzilla/maw.svg"
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Normal",
  31525. height: math.unit(6 + 4 / 12, "feet")
  31526. },
  31527. {
  31528. name: "Minimacro",
  31529. height: math.unit(12 + 8 / 12, "feet")
  31530. },
  31531. {
  31532. name: "Normal",
  31533. height: math.unit(640, "feet"),
  31534. default: true
  31535. },
  31536. {
  31537. name: "Megamacro",
  31538. height: math.unit(6400, "feet")
  31539. },
  31540. {
  31541. name: "Gigamacro",
  31542. height: math.unit(64000, "miles")
  31543. },
  31544. ]
  31545. ))
  31546. characterMakers.push(() => makeCharacter(
  31547. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31548. {
  31549. front: {
  31550. height: math.unit(2.5, "meters"),
  31551. weight: math.unit(300, "lb"),
  31552. name: "Front",
  31553. image: {
  31554. source: "./media/characters/lawrence/front.svg",
  31555. extra: 357 / 335,
  31556. bottom: 30 / 387
  31557. }
  31558. },
  31559. back: {
  31560. height: math.unit(2.5, "meters"),
  31561. weight: math.unit(300, "lb"),
  31562. name: "Back",
  31563. image: {
  31564. source: "./media/characters/lawrence/back.svg",
  31565. extra: 357 / 338,
  31566. bottom: 16 / 373
  31567. }
  31568. },
  31569. head: {
  31570. height: math.unit(0.9, "meter"),
  31571. name: "Head",
  31572. image: {
  31573. source: "./media/characters/lawrence/head.svg"
  31574. }
  31575. },
  31576. maw: {
  31577. height: math.unit(0.7, "meter"),
  31578. name: "Maw",
  31579. image: {
  31580. source: "./media/characters/lawrence/maw.svg"
  31581. }
  31582. },
  31583. footBottom: {
  31584. height: math.unit(0.5, "meter"),
  31585. name: "Foot (Bottom)",
  31586. image: {
  31587. source: "./media/characters/lawrence/foot-bottom.svg"
  31588. }
  31589. },
  31590. footTop: {
  31591. height: math.unit(0.5, "meter"),
  31592. name: "Foot (Top)",
  31593. image: {
  31594. source: "./media/characters/lawrence/foot-top.svg"
  31595. }
  31596. },
  31597. },
  31598. [
  31599. {
  31600. name: "Normal",
  31601. height: math.unit(2.5, "meters"),
  31602. default: true
  31603. },
  31604. {
  31605. name: "Macro",
  31606. height: math.unit(95, "meters")
  31607. },
  31608. {
  31609. name: "Megamacro",
  31610. height: math.unit(150, "km")
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31616. {
  31617. front: {
  31618. height: math.unit(4.2, "meters"),
  31619. preyCapacity: math.unit(50, "m^3"),
  31620. weight: math.unit(30, "tonnes"),
  31621. name: "Front",
  31622. image: {
  31623. source: "./media/characters/sydney/front.svg",
  31624. extra: 1177/1129,
  31625. bottom: 197/1374
  31626. },
  31627. extraAttributes: {
  31628. "length": {
  31629. name: "Length",
  31630. power: 1,
  31631. type: "length",
  31632. base: math.unit(21, "meters")
  31633. },
  31634. }
  31635. },
  31636. },
  31637. [
  31638. {
  31639. name: "Normal",
  31640. height: math.unit(4.2, "meters"),
  31641. default: true
  31642. },
  31643. ]
  31644. ))
  31645. characterMakers.push(() => makeCharacter(
  31646. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31647. {
  31648. back: {
  31649. height: math.unit(201, "feet"),
  31650. name: "Back",
  31651. image: {
  31652. source: "./media/characters/jessica/back.svg",
  31653. extra: 273 / 259,
  31654. bottom: 7 / 280
  31655. }
  31656. },
  31657. },
  31658. [
  31659. {
  31660. name: "Normal",
  31661. height: math.unit(201, "feet"),
  31662. default: true
  31663. },
  31664. {
  31665. name: "Megamacro",
  31666. height: math.unit(8, "miles")
  31667. },
  31668. ]
  31669. ))
  31670. characterMakers.push(() => makeCharacter(
  31671. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31672. {
  31673. side: {
  31674. height: math.unit(5.6, "m"),
  31675. weight: math.unit(8000, "kg"),
  31676. name: "Side",
  31677. image: {
  31678. source: "./media/characters/victoria/side.svg",
  31679. extra: 1542/1229,
  31680. bottom: 124/1666
  31681. }
  31682. },
  31683. maw: {
  31684. height: math.unit(7.14, "feet"),
  31685. name: "Maw",
  31686. image: {
  31687. source: "./media/characters/victoria/maw.svg"
  31688. }
  31689. },
  31690. },
  31691. [
  31692. {
  31693. name: "Normal",
  31694. height: math.unit(5.6, "m"),
  31695. default: true
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31701. {
  31702. front: {
  31703. height: math.unit(5 + 6 / 12, "feet"),
  31704. name: "Front",
  31705. image: {
  31706. source: "./media/characters/cat/cat-front.svg",
  31707. extra: 1422/1262,
  31708. bottom: 61/1483
  31709. },
  31710. form: "cat",
  31711. default: true
  31712. },
  31713. back: {
  31714. height: math.unit(5 + 6 / 12, "feet"),
  31715. name: "Back",
  31716. image: {
  31717. source: "./media/characters/cat/cat-back.svg",
  31718. extra: 1466/1301,
  31719. bottom: 19/1485
  31720. },
  31721. form: "cat"
  31722. },
  31723. taur: {
  31724. height: math.unit(7, "feet"),
  31725. name: "Side",
  31726. image: {
  31727. source: "./media/characters/cat/taur-side.svg",
  31728. extra: 1389/1233,
  31729. bottom: 83/1472
  31730. },
  31731. form: "taur",
  31732. default: true
  31733. },
  31734. lucarioFront: {
  31735. height: math.unit(4, "feet"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/cat/lucario-front.svg",
  31739. extra: 1149/1019,
  31740. bottom: 84/1233
  31741. },
  31742. form: "lucario",
  31743. default: true
  31744. },
  31745. lucarioBack: {
  31746. height: math.unit(4, "feet"),
  31747. name: "Back",
  31748. image: {
  31749. source: "./media/characters/cat/lucario-back.svg",
  31750. extra: 1190/1059,
  31751. bottom: 33/1223
  31752. },
  31753. form: "lucario"
  31754. },
  31755. riolu_front: {
  31756. height: math.unit(2 + 4/12, "feet"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/cat/riolu-front.svg",
  31760. extra: 1104/956,
  31761. bottom: 70/1174
  31762. },
  31763. form: "riolu",
  31764. default: true
  31765. },
  31766. nickit: {
  31767. height: math.unit(2, "feet"),
  31768. name: "Side",
  31769. image: {
  31770. source: "./media/characters/cat/nickit-side.svg",
  31771. extra: 1087/852,
  31772. bottom: 67/1154
  31773. },
  31774. form: "nickit",
  31775. default: true
  31776. },
  31777. lopunnyFront: {
  31778. height: math.unit(5, "feet"),
  31779. name: "Front",
  31780. image: {
  31781. source: "./media/characters/cat/lopunny-front.svg",
  31782. extra: 1217/1078,
  31783. bottom: 23/1240
  31784. },
  31785. form: "lopunny",
  31786. default: true
  31787. },
  31788. lopunnyBack: {
  31789. height: math.unit(5, "feet"),
  31790. name: "Back",
  31791. image: {
  31792. source: "./media/characters/cat/lopunny-back.svg",
  31793. extra: 1205/1057,
  31794. bottom: 33/1238
  31795. },
  31796. form: "lopunny"
  31797. },
  31798. dog_front: {
  31799. height: math.unit(5 + 9/12, "feet"),
  31800. name: "Front",
  31801. image: {
  31802. source: "./media/characters/cat/dog-front.svg",
  31803. extra: 1403/1309,
  31804. bottom: 31/1434
  31805. },
  31806. form: "dog",
  31807. default: true
  31808. },
  31809. dog_back: {
  31810. height: math.unit(5 + 9/12, "feet"),
  31811. name: "Back",
  31812. image: {
  31813. source: "./media/characters/cat/dog-back.svg",
  31814. extra: 1393/1297,
  31815. bottom: 38/1431
  31816. },
  31817. form: "dog",
  31818. },
  31819. pikachu_front: {
  31820. height: math.unit(2.64, "feet"),
  31821. name: "Front",
  31822. image: {
  31823. source: "./media/characters/cat/pikachu-front.svg",
  31824. extra: 1224/958,
  31825. bottom: 34/1258
  31826. },
  31827. form: "pikachu",
  31828. default: true
  31829. },
  31830. pikachu_back: {
  31831. height: math.unit(2.64, "feet"),
  31832. name: "Back",
  31833. image: {
  31834. source: "./media/characters/cat/pikachu-back.svg",
  31835. extra: 1228/958,
  31836. bottom: 16/1244
  31837. },
  31838. form: "pikachu",
  31839. },
  31840. gigachuFront: {
  31841. height: math.unit(75, "feet"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/cat/gigachu-front.svg",
  31845. extra: 1239/1027,
  31846. bottom: 32/1271
  31847. },
  31848. form: "gigachu",
  31849. default: true
  31850. },
  31851. gigachuBack: {
  31852. height: math.unit(75, "feet"),
  31853. name: "Back",
  31854. image: {
  31855. source: "./media/characters/cat/gigachu-back.svg",
  31856. extra: 1229/1030,
  31857. bottom: 9/1238
  31858. },
  31859. form: "gigachu"
  31860. },
  31861. },
  31862. [
  31863. {
  31864. name: "Really small",
  31865. height: math.unit(1, "nm"),
  31866. allForms: true
  31867. },
  31868. {
  31869. name: "Micro",
  31870. height: math.unit(5, "inches"),
  31871. allForms: true
  31872. },
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(5 + 6 / 12, "feet"),
  31876. default: true,
  31877. form: "cat"
  31878. },
  31879. {
  31880. name: "Normal",
  31881. height: math.unit(7, "feet"),
  31882. default: true,
  31883. form: "taur"
  31884. },
  31885. {
  31886. name: "Normal",
  31887. height: math.unit(4, "feet"),
  31888. default: true,
  31889. form: "lucario"
  31890. },
  31891. {
  31892. name: "Normal",
  31893. height: math.unit(2, "feet"),
  31894. default: true,
  31895. form: "nickit"
  31896. },
  31897. {
  31898. name: "Normal",
  31899. height: math.unit(5, "feet"),
  31900. default: true,
  31901. form: "lopunny"
  31902. },
  31903. {
  31904. name: "Normal",
  31905. height: math.unit(2 + 4/12, "feet"),
  31906. default: true,
  31907. form: "riolu"
  31908. },
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(5 + 6 / 12, "feet"),
  31912. default: true,
  31913. form: "dog"
  31914. },
  31915. {
  31916. name: "Macro",
  31917. height: math.unit(50, "feet"),
  31918. allForms: true
  31919. },
  31920. {
  31921. name: "Normal",
  31922. height: math.unit(2.64, "feet"),
  31923. default: true,
  31924. form: "pikachu"
  31925. },
  31926. {
  31927. name: "Dynamax",
  31928. height: math.unit(75, "feet"),
  31929. form: "gigachu",
  31930. default: true
  31931. },
  31932. {
  31933. name: "Macro+",
  31934. height: math.unit(150, "feet"),
  31935. allForms: true
  31936. },
  31937. {
  31938. name: "Megamacro",
  31939. height: math.unit(100, "miles"),
  31940. allForms: true
  31941. },
  31942. ],
  31943. {
  31944. "cat": {
  31945. name: "Cat",
  31946. default: true
  31947. },
  31948. "taur": {
  31949. name: "Taur",
  31950. },
  31951. "lucario": {
  31952. name: "Lucario",
  31953. },
  31954. "riolu": {
  31955. name: "Riolu",
  31956. },
  31957. "nickit": {
  31958. name: "Nickit",
  31959. },
  31960. "lopunny": {
  31961. name: "Lopunny",
  31962. },
  31963. "dog": {
  31964. name: "Dog",
  31965. },
  31966. "pikachu": {
  31967. name: "Pikachu",
  31968. },
  31969. "gigachu": {
  31970. name: "Gigachu",
  31971. ignoreAllFormSizes: true
  31972. }
  31973. }
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31977. {
  31978. front: {
  31979. height: math.unit(63.4, "meters"),
  31980. weight: math.unit(3.28349e+6, "kilograms"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/kirina-violet/front.svg",
  31984. extra: 2812 / 2725,
  31985. bottom: 0 / 2812
  31986. }
  31987. },
  31988. back: {
  31989. height: math.unit(63.4, "meters"),
  31990. weight: math.unit(3.28349e+6, "kilograms"),
  31991. name: "Back",
  31992. image: {
  31993. source: "./media/characters/kirina-violet/back.svg",
  31994. extra: 2812 / 2725,
  31995. bottom: 0 / 2812
  31996. }
  31997. },
  31998. mouth: {
  31999. height: math.unit(4.35, "meters"),
  32000. name: "Mouth",
  32001. image: {
  32002. source: "./media/characters/kirina-violet/mouth.svg"
  32003. }
  32004. },
  32005. paw: {
  32006. height: math.unit(5.6, "meters"),
  32007. name: "Paw",
  32008. image: {
  32009. source: "./media/characters/kirina-violet/paw.svg"
  32010. }
  32011. },
  32012. tail: {
  32013. height: math.unit(18, "meters"),
  32014. name: "Tail",
  32015. image: {
  32016. source: "./media/characters/kirina-violet/tail.svg"
  32017. }
  32018. },
  32019. },
  32020. [
  32021. {
  32022. name: "Macro",
  32023. height: math.unit(63.4, "meters"),
  32024. default: true
  32025. },
  32026. ]
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32030. {
  32031. front: {
  32032. height: math.unit(6, "feet"),
  32033. weight: math.unit(150, "lb"),
  32034. name: "Front",
  32035. image: {
  32036. source: "./media/characters/sfaiyan/front.svg",
  32037. extra: 999 / 978,
  32038. bottom: 5 / 1004
  32039. }
  32040. },
  32041. },
  32042. [
  32043. {
  32044. name: "Normal",
  32045. height: math.unit(1.82, "meters")
  32046. },
  32047. {
  32048. name: "Giant",
  32049. height: math.unit(2.27, "km"),
  32050. default: true
  32051. },
  32052. ]
  32053. ))
  32054. characterMakers.push(() => makeCharacter(
  32055. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32056. {
  32057. front: {
  32058. height: math.unit(179, "cm"),
  32059. weight: math.unit(100, "kg"),
  32060. name: "Front",
  32061. image: {
  32062. source: "./media/characters/raunehkeli/front.svg",
  32063. extra: 1934 / 1926,
  32064. bottom: 0 / 1934
  32065. }
  32066. },
  32067. },
  32068. [
  32069. {
  32070. name: "Normal",
  32071. height: math.unit(179, "cm")
  32072. },
  32073. {
  32074. name: "Maximum",
  32075. height: math.unit(575, "meters"),
  32076. default: true
  32077. },
  32078. ]
  32079. ))
  32080. characterMakers.push(() => makeCharacter(
  32081. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32082. {
  32083. front: {
  32084. height: math.unit(6, "feet"),
  32085. weight: math.unit(150, "lb"),
  32086. name: "Front",
  32087. image: {
  32088. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  32089. extra: 2625 / 2518,
  32090. bottom: 60 / 2685
  32091. }
  32092. },
  32093. },
  32094. [
  32095. {
  32096. name: "Normal",
  32097. height: math.unit(6 + 2 / 12, "feet")
  32098. },
  32099. {
  32100. name: "Macro",
  32101. height: math.unit(1180, "feet"),
  32102. default: true
  32103. },
  32104. ]
  32105. ))
  32106. characterMakers.push(() => makeCharacter(
  32107. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32108. {
  32109. front: {
  32110. height: math.unit(5 + 6 / 12, "feet"),
  32111. weight: math.unit(108, "lb"),
  32112. name: "Front",
  32113. image: {
  32114. source: "./media/characters/lilith-zott/front.svg",
  32115. extra: 2510 / 2238,
  32116. bottom: 100 / 2610
  32117. }
  32118. },
  32119. frontDressed: {
  32120. height: math.unit(5 + 6 / 12, "feet"),
  32121. weight: math.unit(108, "lb"),
  32122. name: "Front (Dressed)",
  32123. image: {
  32124. source: "./media/characters/lilith-zott/front-dressed.svg",
  32125. extra: 2510 / 2238,
  32126. bottom: 100 / 2610
  32127. }
  32128. },
  32129. },
  32130. [
  32131. {
  32132. name: "Normal",
  32133. height: math.unit(5 + 6 / 12, "feet")
  32134. },
  32135. {
  32136. name: "Macro",
  32137. height: math.unit(1030, "feet"),
  32138. default: true
  32139. },
  32140. ]
  32141. ))
  32142. characterMakers.push(() => makeCharacter(
  32143. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32144. {
  32145. front: {
  32146. height: math.unit(6, "feet"),
  32147. weight: math.unit(150, "lb"),
  32148. name: "Front",
  32149. image: {
  32150. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32151. extra: 2567 / 2435,
  32152. bottom: 39 / 2606
  32153. }
  32154. },
  32155. frontSuper: {
  32156. height: math.unit(6, "feet"),
  32157. name: "Front (Super)",
  32158. image: {
  32159. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32160. extra: 2567 / 2435,
  32161. bottom: 39 / 2606
  32162. }
  32163. },
  32164. },
  32165. [
  32166. {
  32167. name: "Normal",
  32168. height: math.unit(5 + 10 / 12, "feet")
  32169. },
  32170. {
  32171. name: "Macro",
  32172. height: math.unit(1100, "feet"),
  32173. default: true
  32174. },
  32175. ]
  32176. ))
  32177. characterMakers.push(() => makeCharacter(
  32178. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32179. {
  32180. front: {
  32181. height: math.unit(100, "miles"),
  32182. name: "Front",
  32183. image: {
  32184. source: "./media/characters/sona/front.svg",
  32185. extra: 2433 / 2201,
  32186. bottom: 53 / 2486
  32187. }
  32188. },
  32189. foot: {
  32190. height: math.unit(16.1, "miles"),
  32191. name: "Foot",
  32192. image: {
  32193. source: "./media/characters/sona/foot.svg"
  32194. }
  32195. },
  32196. },
  32197. [
  32198. {
  32199. name: "Macro",
  32200. height: math.unit(100, "miles"),
  32201. default: true
  32202. },
  32203. ]
  32204. ))
  32205. characterMakers.push(() => makeCharacter(
  32206. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32207. {
  32208. front: {
  32209. height: math.unit(6, "feet"),
  32210. weight: math.unit(150, "lb"),
  32211. name: "Front",
  32212. image: {
  32213. source: "./media/characters/bailey/front.svg",
  32214. extra: 1778 / 1724,
  32215. bottom: 30 / 1808
  32216. }
  32217. },
  32218. },
  32219. [
  32220. {
  32221. name: "Micro",
  32222. height: math.unit(4, "inches")
  32223. },
  32224. {
  32225. name: "Normal",
  32226. height: math.unit(5 + 5 / 12, "feet"),
  32227. default: true
  32228. },
  32229. {
  32230. name: "Macro",
  32231. height: math.unit(250, "feet")
  32232. },
  32233. {
  32234. name: "Megamacro",
  32235. height: math.unit(100, "miles")
  32236. },
  32237. ]
  32238. ))
  32239. characterMakers.push(() => makeCharacter(
  32240. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32241. {
  32242. front: {
  32243. height: math.unit(5 + 2 / 12, "feet"),
  32244. weight: math.unit(120, "lb"),
  32245. name: "Front",
  32246. image: {
  32247. source: "./media/characters/snaps/front.svg",
  32248. extra: 2370 / 2177,
  32249. bottom: 48 / 2418
  32250. }
  32251. },
  32252. back: {
  32253. height: math.unit(5 + 2 / 12, "feet"),
  32254. weight: math.unit(120, "lb"),
  32255. name: "Back",
  32256. image: {
  32257. source: "./media/characters/snaps/back.svg",
  32258. extra: 2408 / 2258,
  32259. bottom: 15 / 2423
  32260. }
  32261. },
  32262. },
  32263. [
  32264. {
  32265. name: "Micro",
  32266. height: math.unit(9, "inches")
  32267. },
  32268. {
  32269. name: "Normal",
  32270. height: math.unit(5 + 2 / 12, "feet"),
  32271. default: true
  32272. },
  32273. {
  32274. name: "Mini Macro",
  32275. height: math.unit(10, "feet")
  32276. },
  32277. ]
  32278. ))
  32279. characterMakers.push(() => makeCharacter(
  32280. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32281. {
  32282. front: {
  32283. height: math.unit(1.8, "meters"),
  32284. weight: math.unit(85, "kg"),
  32285. name: "Front",
  32286. image: {
  32287. source: "./media/characters/azteck/front.svg",
  32288. extra: 2815 / 2625,
  32289. bottom: 89 / 2904
  32290. }
  32291. },
  32292. back: {
  32293. height: math.unit(1.8, "meters"),
  32294. weight: math.unit(85, "kg"),
  32295. name: "Back",
  32296. image: {
  32297. source: "./media/characters/azteck/back.svg",
  32298. extra: 2856 / 2648,
  32299. bottom: 85 / 2941
  32300. }
  32301. },
  32302. frontDressed: {
  32303. height: math.unit(1.8, "meters"),
  32304. weight: math.unit(85, "kg"),
  32305. name: "Front (Dressed)",
  32306. image: {
  32307. source: "./media/characters/azteck/front-dressed.svg",
  32308. extra: 2147 / 2003,
  32309. bottom: 68 / 2215
  32310. }
  32311. },
  32312. head: {
  32313. height: math.unit(0.47, "meters"),
  32314. weight: math.unit(85, "kg"),
  32315. name: "Head",
  32316. image: {
  32317. source: "./media/characters/azteck/head.svg"
  32318. }
  32319. },
  32320. },
  32321. [
  32322. {
  32323. name: "Bite sized",
  32324. height: math.unit(16, "cm")
  32325. },
  32326. {
  32327. name: "Normal",
  32328. height: math.unit(1.8, "meters"),
  32329. default: true
  32330. },
  32331. ]
  32332. ))
  32333. characterMakers.push(() => makeCharacter(
  32334. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32335. {
  32336. front: {
  32337. height: math.unit(6, "feet"),
  32338. weight: math.unit(150, "lb"),
  32339. name: "Front",
  32340. image: {
  32341. source: "./media/characters/pidge/front.svg",
  32342. extra: 1936/1820,
  32343. bottom: 0/1936
  32344. }
  32345. },
  32346. back: {
  32347. height: math.unit(6, "feet"),
  32348. weight: math.unit(150, "lb"),
  32349. name: "Back",
  32350. image: {
  32351. source: "./media/characters/pidge/back.svg",
  32352. extra: 1938/1843,
  32353. bottom: 0/1938
  32354. }
  32355. },
  32356. casual: {
  32357. height: math.unit(6, "feet"),
  32358. weight: math.unit(150, "lb"),
  32359. name: "Casual",
  32360. image: {
  32361. source: "./media/characters/pidge/casual.svg",
  32362. extra: 1936/1820,
  32363. bottom: 0/1936
  32364. }
  32365. },
  32366. tech: {
  32367. height: math.unit(6, "feet"),
  32368. weight: math.unit(150, "lb"),
  32369. name: "Tech",
  32370. image: {
  32371. source: "./media/characters/pidge/tech.svg",
  32372. extra: 1802/1682,
  32373. bottom: 0/1802
  32374. }
  32375. },
  32376. head: {
  32377. height: math.unit(1.61, "feet"),
  32378. name: "Head",
  32379. image: {
  32380. source: "./media/characters/pidge/head.svg"
  32381. }
  32382. },
  32383. collar: {
  32384. height: math.unit(0.82, "feet"),
  32385. name: "Collar",
  32386. image: {
  32387. source: "./media/characters/pidge/collar.svg"
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Macro",
  32394. height: math.unit(2, "mile"),
  32395. default: true
  32396. },
  32397. {
  32398. name: "PUPPY",
  32399. height: math.unit(20, "miles")
  32400. },
  32401. ]
  32402. ))
  32403. characterMakers.push(() => makeCharacter(
  32404. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32405. {
  32406. front: {
  32407. height: math.unit(6, "feet"),
  32408. weight: math.unit(150, "lb"),
  32409. name: "Front",
  32410. image: {
  32411. source: "./media/characters/en/front.svg",
  32412. extra: 1697 / 1563,
  32413. bottom: 103 / 1800
  32414. }
  32415. },
  32416. back: {
  32417. height: math.unit(6, "feet"),
  32418. weight: math.unit(150, "lb"),
  32419. name: "Back",
  32420. image: {
  32421. source: "./media/characters/en/back.svg",
  32422. extra: 1700 / 1570,
  32423. bottom: 51 / 1751
  32424. }
  32425. },
  32426. frontDressed: {
  32427. height: math.unit(6, "feet"),
  32428. weight: math.unit(150, "lb"),
  32429. name: "Front (Dressed)",
  32430. image: {
  32431. source: "./media/characters/en/front-dressed.svg",
  32432. extra: 1697 / 1563,
  32433. bottom: 103 / 1800
  32434. }
  32435. },
  32436. backDressed: {
  32437. height: math.unit(6, "feet"),
  32438. weight: math.unit(150, "lb"),
  32439. name: "Back (Dressed)",
  32440. image: {
  32441. source: "./media/characters/en/back-dressed.svg",
  32442. extra: 1700 / 1570,
  32443. bottom: 51 / 1751
  32444. }
  32445. },
  32446. },
  32447. [
  32448. {
  32449. name: "Macro",
  32450. height: math.unit(210, "feet"),
  32451. default: true
  32452. },
  32453. ]
  32454. ))
  32455. characterMakers.push(() => makeCharacter(
  32456. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32457. {
  32458. front: {
  32459. height: math.unit(6, "feet"),
  32460. weight: math.unit(150, "lb"),
  32461. name: "Front",
  32462. image: {
  32463. source: "./media/characters/haze-orris/front.svg",
  32464. extra: 3975 / 3525,
  32465. bottom: 137 / 4112
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Micro",
  32472. height: math.unit(150, "mm"),
  32473. default: true
  32474. },
  32475. ]
  32476. ))
  32477. characterMakers.push(() => makeCharacter(
  32478. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32479. {
  32480. front: {
  32481. height: math.unit(6, "feet"),
  32482. weight: math.unit(150, "lb"),
  32483. name: "Front",
  32484. image: {
  32485. source: "./media/characters/casselene-yaro/front.svg",
  32486. extra: 4721 / 4541,
  32487. bottom: 82 / 4803
  32488. }
  32489. },
  32490. back: {
  32491. height: math.unit(6, "feet"),
  32492. weight: math.unit(150, "lb"),
  32493. name: "Back",
  32494. image: {
  32495. source: "./media/characters/casselene-yaro/back.svg",
  32496. extra: 4569 / 4377,
  32497. bottom: 69 / 4638
  32498. }
  32499. },
  32500. dressed: {
  32501. height: math.unit(6, "feet"),
  32502. weight: math.unit(150, "lb"),
  32503. name: "Dressed",
  32504. image: {
  32505. source: "./media/characters/casselene-yaro/dressed.svg",
  32506. extra: 4721 / 4541,
  32507. bottom: 82 / 4803
  32508. }
  32509. },
  32510. maw: {
  32511. height: math.unit(1, "feet"),
  32512. name: "Maw",
  32513. image: {
  32514. source: "./media/characters/casselene-yaro/maw.svg"
  32515. }
  32516. },
  32517. },
  32518. [
  32519. {
  32520. name: "Macro",
  32521. height: math.unit(190, "feet"),
  32522. default: true
  32523. },
  32524. ]
  32525. ))
  32526. characterMakers.push(() => makeCharacter(
  32527. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32528. {
  32529. front: {
  32530. height: math.unit(10, "feet"),
  32531. weight: math.unit(15015, "lb"),
  32532. name: "Front",
  32533. image: {
  32534. source: "./media/characters/platine/front.svg",
  32535. extra: 1741/1650,
  32536. bottom: 84/1825
  32537. }
  32538. },
  32539. side: {
  32540. height: math.unit(10, "feet"),
  32541. weight: math.unit(15015, "lb"),
  32542. name: "Side",
  32543. image: {
  32544. source: "./media/characters/platine/side.svg",
  32545. extra: 1790/1705,
  32546. bottom: 29/1819
  32547. }
  32548. },
  32549. },
  32550. [
  32551. {
  32552. name: "Normal",
  32553. height: math.unit(10, "feet"),
  32554. default: true
  32555. },
  32556. {
  32557. name: "Macro",
  32558. height: math.unit(100, "feet")
  32559. },
  32560. {
  32561. name: "Megamacro",
  32562. height: math.unit(1000, "feet")
  32563. },
  32564. ]
  32565. ))
  32566. characterMakers.push(() => makeCharacter(
  32567. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32568. {
  32569. front: {
  32570. height: math.unit(15 + 5 / 12, "feet"),
  32571. weight: math.unit(4600, "lb"),
  32572. name: "Front",
  32573. image: {
  32574. source: "./media/characters/neapolitan-ananassa/front.svg",
  32575. extra: 2903 / 2736,
  32576. bottom: 0 / 2903
  32577. }
  32578. },
  32579. side: {
  32580. height: math.unit(15 + 5 / 12, "feet"),
  32581. weight: math.unit(4600, "lb"),
  32582. name: "Side",
  32583. image: {
  32584. source: "./media/characters/neapolitan-ananassa/side.svg",
  32585. extra: 2925 / 2719,
  32586. bottom: 0 / 2925
  32587. }
  32588. },
  32589. back: {
  32590. height: math.unit(15 + 5 / 12, "feet"),
  32591. weight: math.unit(4600, "lb"),
  32592. name: "Back",
  32593. image: {
  32594. source: "./media/characters/neapolitan-ananassa/back.svg",
  32595. extra: 2903 / 2736,
  32596. bottom: 0 / 2903
  32597. }
  32598. },
  32599. },
  32600. [
  32601. {
  32602. name: "Normal",
  32603. height: math.unit(15 + 5 / 12, "feet"),
  32604. default: true
  32605. },
  32606. {
  32607. name: "Post-Millenium",
  32608. height: math.unit(35 + 5 / 12, "feet")
  32609. },
  32610. {
  32611. name: "Post-Era",
  32612. height: math.unit(450 + 5 / 12, "feet")
  32613. },
  32614. ]
  32615. ))
  32616. characterMakers.push(() => makeCharacter(
  32617. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32618. {
  32619. front: {
  32620. height: math.unit(300, "meters"),
  32621. weight: math.unit(125000, "tonnes"),
  32622. name: "Front",
  32623. image: {
  32624. source: "./media/characters/pazuzu/front.svg",
  32625. extra: 877 / 794,
  32626. bottom: 47 / 924
  32627. }
  32628. },
  32629. },
  32630. [
  32631. {
  32632. name: "Macro",
  32633. height: math.unit(300, "meters"),
  32634. default: true
  32635. },
  32636. ]
  32637. ))
  32638. characterMakers.push(() => makeCharacter(
  32639. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32640. {
  32641. side: {
  32642. height: math.unit(10 + 7 / 12, "feet"),
  32643. weight: math.unit(2.5, "tons"),
  32644. name: "Side",
  32645. image: {
  32646. source: "./media/characters/aasha/side.svg",
  32647. extra: 1345 / 1245,
  32648. bottom: 111 / 1456
  32649. }
  32650. },
  32651. back: {
  32652. height: math.unit(10 + 7 / 12, "feet"),
  32653. weight: math.unit(2.5, "tons"),
  32654. name: "Back",
  32655. image: {
  32656. source: "./media/characters/aasha/back.svg",
  32657. extra: 1133 / 1057,
  32658. bottom: 257 / 1390
  32659. }
  32660. },
  32661. },
  32662. [
  32663. {
  32664. name: "Normal",
  32665. height: math.unit(10 + 7 / 12, "feet"),
  32666. default: true
  32667. },
  32668. ]
  32669. ))
  32670. characterMakers.push(() => makeCharacter(
  32671. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32672. {
  32673. front: {
  32674. height: math.unit(6 + 3 / 12, "feet"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/nevan/front.svg",
  32678. extra: 704 / 704,
  32679. bottom: 28 / 732
  32680. }
  32681. },
  32682. back: {
  32683. height: math.unit(6 + 3 / 12, "feet"),
  32684. name: "Back",
  32685. image: {
  32686. source: "./media/characters/nevan/back.svg",
  32687. extra: 714 / 714,
  32688. bottom: 21 / 735
  32689. }
  32690. },
  32691. frontFlaccid: {
  32692. height: math.unit(6 + 3 / 12, "feet"),
  32693. name: "Front (Flaccid)",
  32694. image: {
  32695. source: "./media/characters/nevan/front-flaccid.svg",
  32696. extra: 704 / 704,
  32697. bottom: 28 / 732
  32698. }
  32699. },
  32700. frontErect: {
  32701. height: math.unit(6 + 3 / 12, "feet"),
  32702. name: "Front (Erect)",
  32703. image: {
  32704. source: "./media/characters/nevan/front-erect.svg",
  32705. extra: 704 / 704,
  32706. bottom: 28 / 732
  32707. }
  32708. },
  32709. backFlaccid: {
  32710. height: math.unit(6 + 3 / 12, "feet"),
  32711. name: "Back (Flaccid)",
  32712. image: {
  32713. source: "./media/characters/nevan/back-flaccid.svg",
  32714. extra: 714 / 714,
  32715. bottom: 21 / 735
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(6 + 3 / 12, "feet"),
  32723. default: true
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32729. {
  32730. front: {
  32731. height: math.unit(4, "feet"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/arhan/front.svg",
  32735. extra: 3368 / 3133,
  32736. bottom: 0 / 3368
  32737. }
  32738. },
  32739. side: {
  32740. height: math.unit(4, "feet"),
  32741. name: "Side",
  32742. image: {
  32743. source: "./media/characters/arhan/side.svg",
  32744. extra: 3347 / 3105,
  32745. bottom: 0 / 3347
  32746. }
  32747. },
  32748. tongue: {
  32749. height: math.unit(1.42, "feet"),
  32750. name: "Tongue",
  32751. image: {
  32752. source: "./media/characters/arhan/tongue.svg"
  32753. }
  32754. },
  32755. head: {
  32756. height: math.unit(0.85, "feet"),
  32757. name: "Head",
  32758. image: {
  32759. source: "./media/characters/arhan/head.svg"
  32760. }
  32761. },
  32762. },
  32763. [
  32764. {
  32765. name: "Normal",
  32766. height: math.unit(4, "feet"),
  32767. default: true
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32773. {
  32774. front: {
  32775. height: math.unit(5 + 7.5 / 12, "feet"),
  32776. weight: math.unit(120, "lb"),
  32777. name: "Front",
  32778. image: {
  32779. source: "./media/characters/digi-duncan/front.svg",
  32780. extra: 330 / 326,
  32781. bottom: 16 / 346
  32782. }
  32783. },
  32784. side: {
  32785. height: math.unit(5 + 7.5 / 12, "feet"),
  32786. weight: math.unit(120, "lb"),
  32787. name: "Side",
  32788. image: {
  32789. source: "./media/characters/digi-duncan/side.svg",
  32790. extra: 341 / 337,
  32791. bottom: 1 / 342
  32792. }
  32793. },
  32794. back: {
  32795. height: math.unit(5 + 7.5 / 12, "feet"),
  32796. weight: math.unit(120, "lb"),
  32797. name: "Back",
  32798. image: {
  32799. source: "./media/characters/digi-duncan/back.svg",
  32800. extra: 330 / 326,
  32801. bottom: 12 / 342
  32802. }
  32803. },
  32804. },
  32805. [
  32806. {
  32807. name: "Speck",
  32808. height: math.unit(0.25, "mm")
  32809. },
  32810. {
  32811. name: "Micro",
  32812. height: math.unit(5, "mm")
  32813. },
  32814. {
  32815. name: "Tiny",
  32816. height: math.unit(0.5, "inches"),
  32817. default: true
  32818. },
  32819. {
  32820. name: "Human",
  32821. height: math.unit(5 + 7.5 / 12, "feet")
  32822. },
  32823. {
  32824. name: "Minigiant",
  32825. height: math.unit(8 + 5.25, "feet")
  32826. },
  32827. {
  32828. name: "Giant",
  32829. height: math.unit(2000, "feet")
  32830. },
  32831. {
  32832. name: "Mega",
  32833. height: math.unit(371.1, "miles")
  32834. },
  32835. ]
  32836. ))
  32837. characterMakers.push(() => makeCharacter(
  32838. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32839. {
  32840. front: {
  32841. height: math.unit(2, "meters"),
  32842. weight: math.unit(350, "kg"),
  32843. name: "Front",
  32844. image: {
  32845. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32846. extra: 898 / 838,
  32847. bottom: 9 / 907
  32848. }
  32849. },
  32850. },
  32851. [
  32852. {
  32853. name: "Micro",
  32854. height: math.unit(8, "meters")
  32855. },
  32856. {
  32857. name: "Normal",
  32858. height: math.unit(50, "meters"),
  32859. default: true
  32860. },
  32861. {
  32862. name: "Macro",
  32863. height: math.unit(500, "meters")
  32864. },
  32865. ]
  32866. ))
  32867. characterMakers.push(() => makeCharacter(
  32868. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32869. {
  32870. front: {
  32871. height: math.unit(6 + 6 / 12, "feet"),
  32872. name: "Front",
  32873. image: {
  32874. source: "./media/characters/khardesh/front.svg",
  32875. extra: 1788/1596,
  32876. bottom: 66/1854
  32877. }
  32878. },
  32879. back: {
  32880. height: math.unit(6 + 6 / 12, "feet"),
  32881. name: "Back",
  32882. image: {
  32883. source: "./media/characters/khardesh/back.svg",
  32884. extra: 1781/1584,
  32885. bottom: 68/1849
  32886. }
  32887. },
  32888. },
  32889. [
  32890. {
  32891. name: "Normal",
  32892. height: math.unit(6 + 6 / 12, "feet"),
  32893. default: true
  32894. },
  32895. {
  32896. name: "Normal+",
  32897. height: math.unit(4, "meters")
  32898. },
  32899. {
  32900. name: "Macro",
  32901. height: math.unit(50, "meters")
  32902. },
  32903. {
  32904. name: "Macro+",
  32905. height: math.unit(100, "meters")
  32906. },
  32907. {
  32908. name: "Megamacro",
  32909. height: math.unit(20, "km")
  32910. },
  32911. ]
  32912. ))
  32913. characterMakers.push(() => makeCharacter(
  32914. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32915. {
  32916. front: {
  32917. height: math.unit(6, "feet"),
  32918. weight: math.unit(150, "lb"),
  32919. name: "Front",
  32920. image: {
  32921. source: "./media/characters/kosho/front.svg",
  32922. extra: 1847 / 1847,
  32923. bottom: 86 / 1933
  32924. }
  32925. },
  32926. },
  32927. [
  32928. {
  32929. name: "Second-stage micro",
  32930. height: math.unit(0.5, "inches")
  32931. },
  32932. {
  32933. name: "First-stage micro",
  32934. height: math.unit(6, "inches")
  32935. },
  32936. {
  32937. name: "Normal",
  32938. height: math.unit(6, "feet"),
  32939. default: true
  32940. },
  32941. {
  32942. name: "First-stage macro",
  32943. height: math.unit(72, "feet")
  32944. },
  32945. {
  32946. name: "Second-stage macro",
  32947. height: math.unit(864, "feet")
  32948. },
  32949. ]
  32950. ))
  32951. characterMakers.push(() => makeCharacter(
  32952. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32953. {
  32954. normal: {
  32955. height: math.unit(4 + 6 / 12, "feet"),
  32956. name: "Normal",
  32957. image: {
  32958. source: "./media/characters/hydra/normal.svg",
  32959. extra: 2833 / 2634,
  32960. bottom: 68 / 2901
  32961. }
  32962. },
  32963. smol: {
  32964. height: math.unit(0.705, "inches"),
  32965. name: "Smol",
  32966. image: {
  32967. source: "./media/characters/hydra/smol.svg",
  32968. extra: 2715 / 2540,
  32969. bottom: 0 / 2715
  32970. }
  32971. },
  32972. },
  32973. [
  32974. {
  32975. name: "Normal",
  32976. height: math.unit(4 + 6 / 12, "feet"),
  32977. default: true
  32978. }
  32979. ]
  32980. ))
  32981. characterMakers.push(() => makeCharacter(
  32982. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32983. {
  32984. front: {
  32985. height: math.unit(0.6, "cm"),
  32986. name: "Front",
  32987. image: {
  32988. source: "./media/characters/daz/front.svg",
  32989. extra: 1682 / 1164,
  32990. bottom: 42 / 1724
  32991. }
  32992. },
  32993. },
  32994. [
  32995. {
  32996. name: "Normal",
  32997. height: math.unit(0.6, "cm"),
  32998. default: true
  32999. },
  33000. ]
  33001. ))
  33002. characterMakers.push(() => makeCharacter(
  33003. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33004. {
  33005. front: {
  33006. height: math.unit(6, "feet"),
  33007. weight: math.unit(235, "lb"),
  33008. name: "Front",
  33009. image: {
  33010. source: "./media/characters/theo-pangolin/front.svg",
  33011. extra: 1996 / 1969,
  33012. bottom: 115 / 2111
  33013. }
  33014. },
  33015. back: {
  33016. height: math.unit(6, "feet"),
  33017. weight: math.unit(235, "lb"),
  33018. name: "Back",
  33019. image: {
  33020. source: "./media/characters/theo-pangolin/back.svg",
  33021. extra: 1979 / 1979,
  33022. bottom: 40 / 2019
  33023. }
  33024. },
  33025. feral: {
  33026. height: math.unit(2, "feet"),
  33027. weight: math.unit(30, "lb"),
  33028. name: "Feral",
  33029. image: {
  33030. source: "./media/characters/theo-pangolin/feral.svg",
  33031. extra: 803 / 791,
  33032. bottom: 181 / 984
  33033. }
  33034. },
  33035. footFive: {
  33036. height: math.unit(1.43, "feet"),
  33037. name: "Foot (Five Toes)",
  33038. image: {
  33039. source: "./media/characters/theo-pangolin/foot-five.svg"
  33040. }
  33041. },
  33042. footFour: {
  33043. height: math.unit(1.43, "feet"),
  33044. name: "Foot (Four Toes)",
  33045. image: {
  33046. source: "./media/characters/theo-pangolin/foot-four.svg"
  33047. }
  33048. },
  33049. handFour: {
  33050. height: math.unit(0.81, "feet"),
  33051. name: "Hand (Four Fingers)",
  33052. image: {
  33053. source: "./media/characters/theo-pangolin/hand-four.svg"
  33054. }
  33055. },
  33056. handThree: {
  33057. height: math.unit(0.81, "feet"),
  33058. name: "Hand (Three Fingers)",
  33059. image: {
  33060. source: "./media/characters/theo-pangolin/hand-three.svg"
  33061. }
  33062. },
  33063. headFront: {
  33064. height: math.unit(1.37, "feet"),
  33065. name: "Head (Front)",
  33066. image: {
  33067. source: "./media/characters/theo-pangolin/head-front.svg"
  33068. }
  33069. },
  33070. headSide: {
  33071. height: math.unit(1.43, "feet"),
  33072. name: "Head (Side)",
  33073. image: {
  33074. source: "./media/characters/theo-pangolin/head-side.svg"
  33075. }
  33076. },
  33077. tongue: {
  33078. height: math.unit(2.29, "feet"),
  33079. name: "Tongue",
  33080. image: {
  33081. source: "./media/characters/theo-pangolin/tongue.svg"
  33082. }
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Normal",
  33088. height: math.unit(6, "feet")
  33089. },
  33090. {
  33091. name: "Macro",
  33092. height: math.unit(400, "feet"),
  33093. default: true
  33094. },
  33095. ]
  33096. ))
  33097. characterMakers.push(() => makeCharacter(
  33098. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33099. {
  33100. front: {
  33101. height: math.unit(6, "inches"),
  33102. weight: math.unit(0.036, "kg"),
  33103. name: "Front",
  33104. image: {
  33105. source: "./media/characters/renée/front.svg",
  33106. extra: 900 / 886,
  33107. bottom: 8 / 908
  33108. }
  33109. },
  33110. },
  33111. [
  33112. {
  33113. name: "Nano",
  33114. height: math.unit(1, "nm")
  33115. },
  33116. {
  33117. name: "Micro",
  33118. height: math.unit(1, "mm")
  33119. },
  33120. {
  33121. name: "Normal",
  33122. height: math.unit(6, "inches")
  33123. },
  33124. {
  33125. name: "Macro",
  33126. height: math.unit(2000, "feet"),
  33127. default: true
  33128. },
  33129. {
  33130. name: "Megamacro",
  33131. height: math.unit(2, "km")
  33132. },
  33133. {
  33134. name: "Gigamacro",
  33135. height: math.unit(2000, "km")
  33136. },
  33137. {
  33138. name: "Teramacro",
  33139. height: math.unit(250000, "km")
  33140. },
  33141. ]
  33142. ))
  33143. characterMakers.push(() => makeCharacter(
  33144. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33145. {
  33146. front: {
  33147. height: math.unit(4, "meters"),
  33148. weight: math.unit(150, "kg"),
  33149. name: "Front",
  33150. image: {
  33151. source: "./media/characters/caledvwlch/front.svg",
  33152. extra: 1757/1537,
  33153. bottom: 31/1788
  33154. }
  33155. },
  33156. side: {
  33157. height: math.unit(4, "meters"),
  33158. weight: math.unit(150, "kg"),
  33159. name: "Side",
  33160. image: {
  33161. source: "./media/characters/caledvwlch/side.svg",
  33162. extra: 1605 / 1536,
  33163. bottom: 31 / 1636
  33164. }
  33165. },
  33166. back: {
  33167. height: math.unit(4, "meters"),
  33168. weight: math.unit(150, "kg"),
  33169. name: "Back",
  33170. image: {
  33171. source: "./media/characters/caledvwlch/back.svg",
  33172. extra: 1635 / 1565,
  33173. bottom: 27 / 1662
  33174. }
  33175. },
  33176. },
  33177. [
  33178. {
  33179. name: "\"Incognito\"",
  33180. height: math.unit(4, "meters")
  33181. },
  33182. {
  33183. name: "Small rampage",
  33184. height: math.unit(600, "meters")
  33185. },
  33186. {
  33187. name: "Mega",
  33188. height: math.unit(30, "km")
  33189. },
  33190. {
  33191. name: "Home-size",
  33192. height: math.unit(50, "km"),
  33193. default: true
  33194. },
  33195. {
  33196. name: "Giga",
  33197. height: math.unit(300, "km")
  33198. },
  33199. {
  33200. name: "Lounging",
  33201. height: math.unit(11000, "km")
  33202. },
  33203. {
  33204. name: "Planet snacking",
  33205. height: math.unit(2000000, "km")
  33206. },
  33207. ]
  33208. ))
  33209. characterMakers.push(() => makeCharacter(
  33210. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33211. {
  33212. front: {
  33213. height: math.unit(6, "feet"),
  33214. weight: math.unit(215, "lb"),
  33215. name: "Front",
  33216. image: {
  33217. source: "./media/characters/sapphire-svell/front.svg",
  33218. extra: 495 / 455,
  33219. bottom: 20 / 515
  33220. }
  33221. },
  33222. back: {
  33223. height: math.unit(6, "feet"),
  33224. weight: math.unit(216, "lb"),
  33225. name: "Back",
  33226. image: {
  33227. source: "./media/characters/sapphire-svell/back.svg",
  33228. extra: 497 / 477,
  33229. bottom: 7 / 504
  33230. }
  33231. },
  33232. maw: {
  33233. height: math.unit(1.57, "feet"),
  33234. name: "Maw",
  33235. image: {
  33236. source: "./media/characters/sapphire-svell/maw.svg"
  33237. }
  33238. },
  33239. foot: {
  33240. height: math.unit(1.07, "feet"),
  33241. name: "Foot",
  33242. image: {
  33243. source: "./media/characters/sapphire-svell/foot.svg"
  33244. }
  33245. },
  33246. toering: {
  33247. height: math.unit(1.7, "inch"),
  33248. name: "Toering",
  33249. image: {
  33250. source: "./media/characters/sapphire-svell/toering.svg"
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Normal",
  33257. height: math.unit(300, "feet"),
  33258. default: true
  33259. },
  33260. {
  33261. name: "Augmented",
  33262. height: math.unit(1250, "feet")
  33263. },
  33264. {
  33265. name: "Unleashed",
  33266. height: math.unit(3000, "feet")
  33267. },
  33268. ]
  33269. ))
  33270. characterMakers.push(() => makeCharacter(
  33271. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33272. {
  33273. side: {
  33274. height: math.unit(2 + 3 / 12, "feet"),
  33275. weight: math.unit(110, "lb"),
  33276. name: "Side",
  33277. image: {
  33278. source: "./media/characters/glitch-flux/side.svg",
  33279. extra: 997 / 805,
  33280. bottom: 20 / 1017
  33281. }
  33282. },
  33283. },
  33284. [
  33285. {
  33286. name: "Normal",
  33287. height: math.unit(2 + 3 / 12, "feet"),
  33288. default: true
  33289. },
  33290. ]
  33291. ))
  33292. characterMakers.push(() => makeCharacter(
  33293. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33294. {
  33295. front: {
  33296. height: math.unit(4, "meters"),
  33297. name: "Front",
  33298. image: {
  33299. source: "./media/characters/mid/front.svg",
  33300. extra: 507 / 476,
  33301. bottom: 17 / 524
  33302. }
  33303. },
  33304. back: {
  33305. height: math.unit(4, "meters"),
  33306. name: "Back",
  33307. image: {
  33308. source: "./media/characters/mid/back.svg",
  33309. extra: 519 / 487,
  33310. bottom: 7 / 526
  33311. }
  33312. },
  33313. stuck: {
  33314. height: math.unit(2.2, "meters"),
  33315. name: "Stuck",
  33316. image: {
  33317. source: "./media/characters/mid/stuck.svg",
  33318. extra: 1951 / 1869,
  33319. bottom: 88 / 2039
  33320. }
  33321. }
  33322. },
  33323. [
  33324. {
  33325. name: "Normal",
  33326. height: math.unit(4, "meters"),
  33327. default: true
  33328. },
  33329. {
  33330. name: "Big",
  33331. height: math.unit(10, "meters")
  33332. },
  33333. {
  33334. name: "Macro",
  33335. height: math.unit(800, "meters")
  33336. },
  33337. {
  33338. name: "Megamacro",
  33339. height: math.unit(100, "km")
  33340. },
  33341. {
  33342. name: "Overgrown",
  33343. height: math.unit(1, "parsec")
  33344. },
  33345. ]
  33346. ))
  33347. characterMakers.push(() => makeCharacter(
  33348. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33349. {
  33350. front: {
  33351. height: math.unit(2.5, "meters"),
  33352. weight: math.unit(225, "kg"),
  33353. name: "Front",
  33354. image: {
  33355. source: "./media/characters/iris/front.svg",
  33356. extra: 3348 / 3251,
  33357. bottom: 205 / 3553
  33358. }
  33359. },
  33360. maw: {
  33361. height: math.unit(0.56, "meter"),
  33362. name: "Maw",
  33363. image: {
  33364. source: "./media/characters/iris/maw.svg"
  33365. }
  33366. },
  33367. },
  33368. [
  33369. {
  33370. name: "Mewter cat",
  33371. height: math.unit(1.2, "meters")
  33372. },
  33373. {
  33374. name: "Normal",
  33375. height: math.unit(2.5, "meters"),
  33376. default: true
  33377. },
  33378. {
  33379. name: "Minimacro",
  33380. height: math.unit(18, "feet")
  33381. },
  33382. {
  33383. name: "Macro",
  33384. height: math.unit(140, "feet")
  33385. },
  33386. {
  33387. name: "Macro+",
  33388. height: math.unit(180, "meters")
  33389. },
  33390. {
  33391. name: "Megamacro",
  33392. height: math.unit(2746, "meters")
  33393. },
  33394. ]
  33395. ))
  33396. characterMakers.push(() => makeCharacter(
  33397. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33398. {
  33399. front: {
  33400. height: math.unit(6, "feet"),
  33401. weight: math.unit(135, "lb"),
  33402. name: "Front",
  33403. image: {
  33404. source: "./media/characters/axel/front.svg",
  33405. extra: 908 / 908,
  33406. bottom: 58 / 966
  33407. }
  33408. },
  33409. side: {
  33410. height: math.unit(6, "feet"),
  33411. weight: math.unit(135, "lb"),
  33412. name: "Side",
  33413. image: {
  33414. source: "./media/characters/axel/side.svg",
  33415. extra: 958 / 958,
  33416. bottom: 11 / 969
  33417. }
  33418. },
  33419. back: {
  33420. height: math.unit(6, "feet"),
  33421. weight: math.unit(135, "lb"),
  33422. name: "Back",
  33423. image: {
  33424. source: "./media/characters/axel/back.svg",
  33425. extra: 887 / 887,
  33426. bottom: 34 / 921
  33427. }
  33428. },
  33429. head: {
  33430. height: math.unit(1.07, "feet"),
  33431. name: "Head",
  33432. image: {
  33433. source: "./media/characters/axel/head.svg"
  33434. }
  33435. },
  33436. beak: {
  33437. height: math.unit(1.4, "feet"),
  33438. name: "Beak",
  33439. image: {
  33440. source: "./media/characters/axel/beak.svg"
  33441. }
  33442. },
  33443. beakSide: {
  33444. height: math.unit(1.4, "feet"),
  33445. name: "Beak Side",
  33446. image: {
  33447. source: "./media/characters/axel/beak-side.svg"
  33448. }
  33449. },
  33450. sheath: {
  33451. height: math.unit(0.5, "feet"),
  33452. name: "Sheath",
  33453. image: {
  33454. source: "./media/characters/axel/sheath.svg"
  33455. }
  33456. },
  33457. dick: {
  33458. height: math.unit(0.98, "feet"),
  33459. name: "Dick",
  33460. image: {
  33461. source: "./media/characters/axel/dick.svg"
  33462. }
  33463. },
  33464. },
  33465. [
  33466. {
  33467. name: "Macro",
  33468. height: math.unit(68, "meters"),
  33469. default: true
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33475. {
  33476. front: {
  33477. height: math.unit(3.5, "meters"),
  33478. weight: math.unit(1200, "kg"),
  33479. name: "Front",
  33480. image: {
  33481. source: "./media/characters/joanna/front.svg",
  33482. extra: 1596 / 1488,
  33483. bottom: 29 / 1625
  33484. }
  33485. },
  33486. back: {
  33487. height: math.unit(3.5, "meters"),
  33488. weight: math.unit(1200, "kg"),
  33489. name: "Back",
  33490. image: {
  33491. source: "./media/characters/joanna/back.svg",
  33492. extra: 1594 / 1495,
  33493. bottom: 26 / 1620
  33494. }
  33495. },
  33496. frontShorts: {
  33497. height: math.unit(3.5, "meters"),
  33498. weight: math.unit(1200, "kg"),
  33499. name: "Front (Shorts)",
  33500. image: {
  33501. source: "./media/characters/joanna/front-shorts.svg",
  33502. extra: 1596 / 1488,
  33503. bottom: 29 / 1625
  33504. }
  33505. },
  33506. frontBiker: {
  33507. height: math.unit(3.5, "meters"),
  33508. weight: math.unit(1200, "kg"),
  33509. name: "Front (Biker)",
  33510. image: {
  33511. source: "./media/characters/joanna/front-biker.svg",
  33512. extra: 1596 / 1488,
  33513. bottom: 29 / 1625
  33514. }
  33515. },
  33516. backBiker: {
  33517. height: math.unit(3.5, "meters"),
  33518. weight: math.unit(1200, "kg"),
  33519. name: "Back (Biker)",
  33520. image: {
  33521. source: "./media/characters/joanna/back-biker.svg",
  33522. extra: 1594 / 1495,
  33523. bottom: 88 / 1682
  33524. }
  33525. },
  33526. bikeLeft: {
  33527. height: math.unit(2.4, "meters"),
  33528. weight: math.unit(1600, "kg"),
  33529. name: "Bike (Left)",
  33530. image: {
  33531. source: "./media/characters/joanna/bike-left.svg",
  33532. extra: 720 / 720,
  33533. bottom: 8 / 728
  33534. }
  33535. },
  33536. bikeRight: {
  33537. height: math.unit(2.4, "meters"),
  33538. weight: math.unit(1600, "kg"),
  33539. name: "Bike (Right)",
  33540. image: {
  33541. source: "./media/characters/joanna/bike-right.svg",
  33542. extra: 720 / 720,
  33543. bottom: 8 / 728
  33544. }
  33545. },
  33546. },
  33547. [
  33548. {
  33549. name: "Incognito",
  33550. height: math.unit(3.5, "meters")
  33551. },
  33552. {
  33553. name: "Casual Big",
  33554. height: math.unit(200, "meters")
  33555. },
  33556. {
  33557. name: "Macro",
  33558. height: math.unit(600, "meters")
  33559. },
  33560. {
  33561. name: "Original",
  33562. height: math.unit(20, "km"),
  33563. default: true
  33564. },
  33565. {
  33566. name: "Giga",
  33567. height: math.unit(400, "km")
  33568. },
  33569. {
  33570. name: "Lounging",
  33571. height: math.unit(1500, "km")
  33572. },
  33573. {
  33574. name: "Planetary",
  33575. height: math.unit(200000, "km")
  33576. },
  33577. ]
  33578. ))
  33579. characterMakers.push(() => makeCharacter(
  33580. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33581. {
  33582. front: {
  33583. height: math.unit(6, "feet"),
  33584. weight: math.unit(150, "lb"),
  33585. name: "Front",
  33586. image: {
  33587. source: "./media/characters/hugo-sigil/front.svg",
  33588. extra: 522 / 500,
  33589. bottom: 2 / 524
  33590. }
  33591. },
  33592. back: {
  33593. height: math.unit(6, "feet"),
  33594. weight: math.unit(150, "lb"),
  33595. name: "Back",
  33596. image: {
  33597. source: "./media/characters/hugo-sigil/back.svg",
  33598. extra: 519 / 495,
  33599. bottom: 5 / 524
  33600. }
  33601. },
  33602. maw: {
  33603. height: math.unit(1.4, "feet"),
  33604. weight: math.unit(150, "lb"),
  33605. name: "Maw",
  33606. image: {
  33607. source: "./media/characters/hugo-sigil/maw.svg"
  33608. }
  33609. },
  33610. feet: {
  33611. height: math.unit(1.56, "feet"),
  33612. weight: math.unit(150, "lb"),
  33613. name: "Feet",
  33614. image: {
  33615. source: "./media/characters/hugo-sigil/feet.svg",
  33616. extra: 177 / 177,
  33617. bottom: 12 / 189
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Normal",
  33624. height: math.unit(6, "feet")
  33625. },
  33626. {
  33627. name: "Macro",
  33628. height: math.unit(200, "feet"),
  33629. default: true
  33630. },
  33631. ]
  33632. ))
  33633. characterMakers.push(() => makeCharacter(
  33634. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33635. {
  33636. front: {
  33637. height: math.unit(6, "feet"),
  33638. weight: math.unit(150, "lb"),
  33639. name: "Front",
  33640. image: {
  33641. source: "./media/characters/peri/front.svg",
  33642. extra: 2354 / 2233,
  33643. bottom: 49 / 2403
  33644. }
  33645. },
  33646. },
  33647. [
  33648. {
  33649. name: "Really Small",
  33650. height: math.unit(1, "nm")
  33651. },
  33652. {
  33653. name: "Micro",
  33654. height: math.unit(4, "inches")
  33655. },
  33656. {
  33657. name: "Normal",
  33658. height: math.unit(7, "inches"),
  33659. default: true
  33660. },
  33661. {
  33662. name: "Macro",
  33663. height: math.unit(400, "feet")
  33664. },
  33665. {
  33666. name: "Megamacro",
  33667. height: math.unit(100, "miles")
  33668. },
  33669. ]
  33670. ))
  33671. characterMakers.push(() => makeCharacter(
  33672. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33673. {
  33674. frontSlim: {
  33675. height: math.unit(7, "feet"),
  33676. name: "Front (Slim)",
  33677. image: {
  33678. source: "./media/characters/issilora/front-slim.svg",
  33679. extra: 529 / 449,
  33680. bottom: 53 / 582
  33681. }
  33682. },
  33683. sideSlim: {
  33684. height: math.unit(7, "feet"),
  33685. name: "Side (Slim)",
  33686. image: {
  33687. source: "./media/characters/issilora/side-slim.svg",
  33688. extra: 570 / 480,
  33689. bottom: 30 / 600
  33690. }
  33691. },
  33692. backSlim: {
  33693. height: math.unit(7, "feet"),
  33694. name: "Back (Slim)",
  33695. image: {
  33696. source: "./media/characters/issilora/back-slim.svg",
  33697. extra: 537 / 455,
  33698. bottom: 46 / 583
  33699. }
  33700. },
  33701. frontBuff: {
  33702. height: math.unit(7, "feet"),
  33703. name: "Front (Buff)",
  33704. image: {
  33705. source: "./media/characters/issilora/front-buff.svg",
  33706. extra: 2310 / 2035,
  33707. bottom: 335 / 2645
  33708. }
  33709. },
  33710. head: {
  33711. height: math.unit(1.94, "feet"),
  33712. name: "Head",
  33713. image: {
  33714. source: "./media/characters/issilora/head.svg"
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Minimum",
  33721. height: math.unit(7, "feet")
  33722. },
  33723. {
  33724. name: "Comfortable",
  33725. height: math.unit(17, "feet")
  33726. },
  33727. {
  33728. name: "Fun Size",
  33729. height: math.unit(47, "feet")
  33730. },
  33731. {
  33732. name: "Natural Macro",
  33733. height: math.unit(137, "feet"),
  33734. default: true
  33735. },
  33736. {
  33737. name: "Maximum Kaiju",
  33738. height: math.unit(397, "feet")
  33739. },
  33740. ]
  33741. ))
  33742. characterMakers.push(() => makeCharacter(
  33743. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33744. {
  33745. front: {
  33746. height: math.unit(50 + 9/12, "feet"),
  33747. weight: math.unit(32.8, "tons"),
  33748. name: "Front",
  33749. image: {
  33750. source: "./media/characters/irb'iiritaahn/front.svg",
  33751. extra: 1878/1826,
  33752. bottom: 326/2204
  33753. }
  33754. },
  33755. back: {
  33756. height: math.unit(50 + 9/12, "feet"),
  33757. weight: math.unit(32.8, "tons"),
  33758. name: "Back",
  33759. image: {
  33760. source: "./media/characters/irb'iiritaahn/back.svg",
  33761. extra: 2052/2018,
  33762. bottom: 152/2204
  33763. }
  33764. },
  33765. head: {
  33766. height: math.unit(12.86, "feet"),
  33767. name: "Head",
  33768. image: {
  33769. source: "./media/characters/irb'iiritaahn/head.svg"
  33770. }
  33771. },
  33772. maw: {
  33773. height: math.unit(9.66, "feet"),
  33774. name: "Maw",
  33775. image: {
  33776. source: "./media/characters/irb'iiritaahn/maw.svg"
  33777. }
  33778. },
  33779. frontDick: {
  33780. height: math.unit(8.78461, "feet"),
  33781. name: "Front Dick",
  33782. image: {
  33783. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33784. }
  33785. },
  33786. rearDick: {
  33787. height: math.unit(8.78461, "feet"),
  33788. name: "Rear Dick",
  33789. image: {
  33790. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33791. }
  33792. },
  33793. rearDickUnfolded: {
  33794. height: math.unit(8.78, "feet"),
  33795. name: "Rear Dick (Unfolded)",
  33796. image: {
  33797. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33798. }
  33799. },
  33800. wings: {
  33801. height: math.unit(43, "feet"),
  33802. name: "Wings",
  33803. image: {
  33804. source: "./media/characters/irb'iiritaahn/wings.svg"
  33805. }
  33806. },
  33807. },
  33808. [
  33809. {
  33810. name: "Macro",
  33811. height: math.unit(50 + 9/12, "feet"),
  33812. default: true
  33813. },
  33814. ]
  33815. ))
  33816. characterMakers.push(() => makeCharacter(
  33817. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33818. {
  33819. front: {
  33820. height: math.unit(205, "cm"),
  33821. weight: math.unit(102, "kg"),
  33822. name: "Front",
  33823. image: {
  33824. source: "./media/characters/irbisgreif/front.svg",
  33825. extra: 785/706,
  33826. bottom: 13/798
  33827. }
  33828. },
  33829. back: {
  33830. height: math.unit(205, "cm"),
  33831. weight: math.unit(102, "kg"),
  33832. name: "Back",
  33833. image: {
  33834. source: "./media/characters/irbisgreif/back.svg",
  33835. extra: 713/701,
  33836. bottom: 26/739
  33837. }
  33838. },
  33839. frontDressed: {
  33840. height: math.unit(216, "cm"),
  33841. weight: math.unit(102, "kg"),
  33842. name: "Front-dressed",
  33843. image: {
  33844. source: "./media/characters/irbisgreif/front-dressed.svg",
  33845. extra: 902/776,
  33846. bottom: 14/916
  33847. }
  33848. },
  33849. sideDressed: {
  33850. height: math.unit(195, "cm"),
  33851. weight: math.unit(102, "kg"),
  33852. name: "Side-dressed",
  33853. image: {
  33854. source: "./media/characters/irbisgreif/side-dressed.svg",
  33855. extra: 788/688,
  33856. bottom: 21/809
  33857. }
  33858. },
  33859. backDressed: {
  33860. height: math.unit(216, "cm"),
  33861. weight: math.unit(102, "kg"),
  33862. name: "Back-dressed",
  33863. image: {
  33864. source: "./media/characters/irbisgreif/back-dressed.svg",
  33865. extra: 901/783,
  33866. bottom: 10/911
  33867. }
  33868. },
  33869. dick: {
  33870. height: math.unit(0.49, "feet"),
  33871. name: "Dick",
  33872. image: {
  33873. source: "./media/characters/irbisgreif/dick.svg"
  33874. }
  33875. },
  33876. wingTop: {
  33877. height: math.unit(1.93 , "feet"),
  33878. name: "Wing-top",
  33879. image: {
  33880. source: "./media/characters/irbisgreif/wing-top.svg"
  33881. }
  33882. },
  33883. wingBottom: {
  33884. height: math.unit(1.93 , "feet"),
  33885. name: "Wing-bottom",
  33886. image: {
  33887. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Normal",
  33894. height: math.unit(216, "cm"),
  33895. default: true
  33896. },
  33897. ]
  33898. ))
  33899. characterMakers.push(() => makeCharacter(
  33900. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33901. {
  33902. front: {
  33903. height: math.unit(6, "feet"),
  33904. weight: math.unit(150, "lb"),
  33905. name: "Front",
  33906. image: {
  33907. source: "./media/characters/pride/front.svg",
  33908. extra: 1299/1230,
  33909. bottom: 18/1317
  33910. }
  33911. },
  33912. },
  33913. [
  33914. {
  33915. name: "Normal",
  33916. height: math.unit(7, "feet")
  33917. },
  33918. {
  33919. name: "Mini-macro",
  33920. height: math.unit(11, "feet")
  33921. },
  33922. {
  33923. name: "Macro",
  33924. height: math.unit(15, "meters"),
  33925. default: true
  33926. },
  33927. {
  33928. name: "Macro+",
  33929. height: math.unit(40, "meters")
  33930. },
  33931. ]
  33932. ))
  33933. characterMakers.push(() => makeCharacter(
  33934. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33935. {
  33936. front: {
  33937. height: math.unit(4 + 2 / 12, "feet"),
  33938. weight: math.unit(95, "lb"),
  33939. name: "Front",
  33940. image: {
  33941. source: "./media/characters/vaelophis-nyx/front.svg",
  33942. extra: 2532/2330,
  33943. bottom: 0/2532
  33944. }
  33945. },
  33946. back: {
  33947. height: math.unit(4 + 2 / 12, "feet"),
  33948. weight: math.unit(95, "lb"),
  33949. name: "Back",
  33950. image: {
  33951. source: "./media/characters/vaelophis-nyx/back.svg",
  33952. extra: 2484/2361,
  33953. bottom: 0/2484
  33954. }
  33955. },
  33956. feralSide: {
  33957. height: math.unit(2 + 1/12, "feet"),
  33958. weight: math.unit(20, "lb"),
  33959. name: "Feral (Side)",
  33960. image: {
  33961. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33962. extra: 1721/1581,
  33963. bottom: 70/1791
  33964. }
  33965. },
  33966. feralLazing: {
  33967. height: math.unit(1.08, "feet"),
  33968. weight: math.unit(20, "lb"),
  33969. name: "Feral (Lazing)",
  33970. image: {
  33971. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33972. extra: 822/822,
  33973. bottom: 248/1070
  33974. }
  33975. },
  33976. ear: {
  33977. height: math.unit(0.416, "feet"),
  33978. name: "Ear",
  33979. image: {
  33980. source: "./media/characters/vaelophis-nyx/ear.svg"
  33981. }
  33982. },
  33983. eye: {
  33984. height: math.unit(0.0748, "feet"),
  33985. name: "Eye",
  33986. image: {
  33987. source: "./media/characters/vaelophis-nyx/eye.svg"
  33988. }
  33989. },
  33990. mouth: {
  33991. height: math.unit(0.378, "feet"),
  33992. name: "Mouth",
  33993. image: {
  33994. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33995. }
  33996. },
  33997. spade: {
  33998. height: math.unit(0.55, "feet"),
  33999. name: "Spade",
  34000. image: {
  34001. source: "./media/characters/vaelophis-nyx/spade.svg"
  34002. }
  34003. },
  34004. },
  34005. [
  34006. {
  34007. name: "Normal",
  34008. height: math.unit(4 + 2/12, "feet"),
  34009. default: true
  34010. },
  34011. ]
  34012. ))
  34013. characterMakers.push(() => makeCharacter(
  34014. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34015. {
  34016. front: {
  34017. height: math.unit(7, "feet"),
  34018. weight: math.unit(231, "lb"),
  34019. name: "Front",
  34020. image: {
  34021. source: "./media/characters/flux/front.svg",
  34022. extra: 919/871,
  34023. bottom: 0/919
  34024. }
  34025. },
  34026. back: {
  34027. height: math.unit(7, "feet"),
  34028. weight: math.unit(231, "lb"),
  34029. name: "Back",
  34030. image: {
  34031. source: "./media/characters/flux/back.svg",
  34032. extra: 1040/992,
  34033. bottom: 0/1040
  34034. }
  34035. },
  34036. frontDressed: {
  34037. height: math.unit(7, "feet"),
  34038. weight: math.unit(231, "lb"),
  34039. name: "Front (Dressed)",
  34040. image: {
  34041. source: "./media/characters/flux/front-dressed.svg",
  34042. extra: 919/871,
  34043. bottom: 0/919
  34044. }
  34045. },
  34046. feralSide: {
  34047. height: math.unit(5, "feet"),
  34048. weight: math.unit(150, "lb"),
  34049. name: "Feral (Side)",
  34050. image: {
  34051. source: "./media/characters/flux/feral-side.svg",
  34052. extra: 598/528,
  34053. bottom: 28/626
  34054. }
  34055. },
  34056. head: {
  34057. height: math.unit(1.585, "feet"),
  34058. name: "Head",
  34059. image: {
  34060. source: "./media/characters/flux/head.svg"
  34061. }
  34062. },
  34063. headSide: {
  34064. height: math.unit(1.74, "feet"),
  34065. name: "Head (Side)",
  34066. image: {
  34067. source: "./media/characters/flux/head-side.svg"
  34068. }
  34069. },
  34070. headSideFire: {
  34071. height: math.unit(1.76, "feet"),
  34072. name: "Head (Side, Fire)",
  34073. image: {
  34074. source: "./media/characters/flux/head-side-fire.svg"
  34075. }
  34076. },
  34077. },
  34078. [
  34079. {
  34080. name: "Normal",
  34081. height: math.unit(7, "feet"),
  34082. default: true
  34083. },
  34084. ]
  34085. ))
  34086. characterMakers.push(() => makeCharacter(
  34087. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34088. {
  34089. front: {
  34090. height: math.unit(9, "feet"),
  34091. weight: math.unit(1012, "lb"),
  34092. name: "Front",
  34093. image: {
  34094. source: "./media/characters/ulfra-lupae/front.svg",
  34095. extra: 1083/1011,
  34096. bottom: 67/1150
  34097. }
  34098. },
  34099. },
  34100. [
  34101. {
  34102. name: "Micro",
  34103. height: math.unit(6, "inches")
  34104. },
  34105. {
  34106. name: "Socializing",
  34107. height: math.unit(6 + 5/12, "feet")
  34108. },
  34109. {
  34110. name: "Normal",
  34111. height: math.unit(9, "feet"),
  34112. default: true
  34113. },
  34114. {
  34115. name: "Macro",
  34116. height: math.unit(150, "feet")
  34117. },
  34118. ]
  34119. ))
  34120. characterMakers.push(() => makeCharacter(
  34121. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34122. {
  34123. front: {
  34124. height: math.unit(5 + 2/12, "feet"),
  34125. weight: math.unit(120, "lb"),
  34126. name: "Front",
  34127. image: {
  34128. source: "./media/characters/timber/front.svg",
  34129. extra: 2814/2705,
  34130. bottom: 181/2995
  34131. }
  34132. },
  34133. },
  34134. [
  34135. {
  34136. name: "Normal",
  34137. height: math.unit(5 + 2/12, "feet"),
  34138. default: true
  34139. },
  34140. ]
  34141. ))
  34142. characterMakers.push(() => makeCharacter(
  34143. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34144. {
  34145. front: {
  34146. height: math.unit(9, "feet"),
  34147. name: "Front",
  34148. image: {
  34149. source: "./media/characters/nicki/front.svg",
  34150. extra: 1240/990,
  34151. bottom: 45/1285
  34152. },
  34153. form: "anthro",
  34154. default: true
  34155. },
  34156. side: {
  34157. height: math.unit(9, "feet"),
  34158. name: "Side",
  34159. image: {
  34160. source: "./media/characters/nicki/side.svg",
  34161. extra: 1047/973,
  34162. bottom: 61/1108
  34163. },
  34164. form: "anthro"
  34165. },
  34166. back: {
  34167. height: math.unit(9, "feet"),
  34168. name: "Back",
  34169. image: {
  34170. source: "./media/characters/nicki/back.svg",
  34171. extra: 1006/965,
  34172. bottom: 39/1045
  34173. },
  34174. form: "anthro"
  34175. },
  34176. taur: {
  34177. height: math.unit(15, "feet"),
  34178. name: "Taur",
  34179. image: {
  34180. source: "./media/characters/nicki/taur.svg",
  34181. extra: 1592/1347,
  34182. bottom: 0/1592
  34183. },
  34184. form: "taur",
  34185. default: true
  34186. },
  34187. },
  34188. [
  34189. {
  34190. name: "Normal",
  34191. height: math.unit(9, "feet"),
  34192. form: "anthro",
  34193. default: true
  34194. },
  34195. {
  34196. name: "Normal",
  34197. height: math.unit(15, "feet"),
  34198. form: "taur",
  34199. default: true
  34200. }
  34201. ],
  34202. {
  34203. "anthro": {
  34204. name: "Anthro",
  34205. default: true
  34206. },
  34207. "taur": {
  34208. name: "Taur"
  34209. }
  34210. }
  34211. ))
  34212. characterMakers.push(() => makeCharacter(
  34213. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34214. {
  34215. front: {
  34216. height: math.unit(7 + 10/12, "feet"),
  34217. weight: math.unit(3.5, "tons"),
  34218. name: "Front",
  34219. image: {
  34220. source: "./media/characters/lee/front.svg",
  34221. extra: 1773/1615,
  34222. bottom: 86/1859
  34223. }
  34224. },
  34225. hand: {
  34226. height: math.unit(1.78, "feet"),
  34227. name: "Hand",
  34228. image: {
  34229. source: "./media/characters/lee/hand.svg"
  34230. }
  34231. },
  34232. maw: {
  34233. height: math.unit(1.18, "feet"),
  34234. name: "Maw",
  34235. image: {
  34236. source: "./media/characters/lee/maw.svg"
  34237. }
  34238. },
  34239. },
  34240. [
  34241. {
  34242. name: "Normal",
  34243. height: math.unit(7 + 10/12, "feet"),
  34244. default: true
  34245. },
  34246. ]
  34247. ))
  34248. characterMakers.push(() => makeCharacter(
  34249. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34250. {
  34251. front: {
  34252. height: math.unit(9, "feet"),
  34253. name: "Front",
  34254. image: {
  34255. source: "./media/characters/guti/front.svg",
  34256. extra: 4551/4355,
  34257. bottom: 123/4674
  34258. }
  34259. },
  34260. tongue: {
  34261. height: math.unit(1, "feet"),
  34262. name: "Tongue",
  34263. image: {
  34264. source: "./media/characters/guti/tongue.svg"
  34265. }
  34266. },
  34267. paw: {
  34268. height: math.unit(1.18, "feet"),
  34269. name: "Paw",
  34270. image: {
  34271. source: "./media/characters/guti/paw.svg"
  34272. }
  34273. },
  34274. },
  34275. [
  34276. {
  34277. name: "Normal",
  34278. height: math.unit(9, "feet"),
  34279. default: true
  34280. },
  34281. ]
  34282. ))
  34283. characterMakers.push(() => makeCharacter(
  34284. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34285. {
  34286. side: {
  34287. height: math.unit(5, "meters"),
  34288. name: "Side",
  34289. image: {
  34290. source: "./media/characters/vesper/side.svg",
  34291. extra: 1605/1518,
  34292. bottom: 0/1605
  34293. }
  34294. },
  34295. },
  34296. [
  34297. {
  34298. name: "Small",
  34299. height: math.unit(5, "meters")
  34300. },
  34301. {
  34302. name: "Sage",
  34303. height: math.unit(100, "meters"),
  34304. default: true
  34305. },
  34306. {
  34307. name: "Fun Size",
  34308. height: math.unit(600, "meters")
  34309. },
  34310. {
  34311. name: "Goddess",
  34312. height: math.unit(20000, "km")
  34313. },
  34314. {
  34315. name: "Maximum",
  34316. height: math.unit(5, "galaxies")
  34317. },
  34318. ]
  34319. ))
  34320. characterMakers.push(() => makeCharacter(
  34321. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34322. {
  34323. front: {
  34324. height: math.unit(6 + 3/12, "feet"),
  34325. weight: math.unit(190, "lb"),
  34326. name: "Front",
  34327. image: {
  34328. source: "./media/characters/gawain/front.svg",
  34329. extra: 2222/2139,
  34330. bottom: 90/2312
  34331. }
  34332. },
  34333. back: {
  34334. height: math.unit(6 + 3/12, "feet"),
  34335. weight: math.unit(190, "lb"),
  34336. name: "Back",
  34337. image: {
  34338. source: "./media/characters/gawain/back.svg",
  34339. extra: 2199/2111,
  34340. bottom: 73/2272
  34341. }
  34342. },
  34343. },
  34344. [
  34345. {
  34346. name: "Normal",
  34347. height: math.unit(6 + 3/12, "feet"),
  34348. default: true
  34349. },
  34350. ]
  34351. ))
  34352. characterMakers.push(() => makeCharacter(
  34353. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34354. {
  34355. side: {
  34356. height: math.unit(3.5, "meters"),
  34357. weight: math.unit(16000, "lb"),
  34358. name: "Side",
  34359. image: {
  34360. source: "./media/characters/dascalti/side.svg",
  34361. extra: 392/273,
  34362. bottom: 47/439
  34363. }
  34364. },
  34365. breath: {
  34366. height: math.unit(7.4, "feet"),
  34367. name: "Breath",
  34368. image: {
  34369. source: "./media/characters/dascalti/breath.svg"
  34370. }
  34371. },
  34372. fed: {
  34373. height: math.unit(3.6, "meters"),
  34374. weight: math.unit(16000, "lb"),
  34375. name: "Fed",
  34376. image: {
  34377. source: "./media/characters/dascalti/fed.svg",
  34378. extra: 1419/820,
  34379. bottom: 95/1514
  34380. }
  34381. },
  34382. },
  34383. [
  34384. {
  34385. name: "Normal",
  34386. height: math.unit(3.5, "meters"),
  34387. default: true
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34393. {
  34394. front: {
  34395. height: math.unit(3 + 5/12, "feet"),
  34396. name: "Front",
  34397. image: {
  34398. source: "./media/characters/mauve/front.svg",
  34399. extra: 1126/1033,
  34400. bottom: 65/1191
  34401. }
  34402. },
  34403. side: {
  34404. height: math.unit(3 + 5/12, "feet"),
  34405. name: "Side",
  34406. image: {
  34407. source: "./media/characters/mauve/side.svg",
  34408. extra: 1089/1001,
  34409. bottom: 29/1118
  34410. }
  34411. },
  34412. back: {
  34413. height: math.unit(3 + 5/12, "feet"),
  34414. name: "Back",
  34415. image: {
  34416. source: "./media/characters/mauve/back.svg",
  34417. extra: 1173/1053,
  34418. bottom: 109/1282
  34419. }
  34420. },
  34421. },
  34422. [
  34423. {
  34424. name: "Normal",
  34425. height: math.unit(3 + 5/12, "feet"),
  34426. default: true
  34427. },
  34428. ]
  34429. ))
  34430. characterMakers.push(() => makeCharacter(
  34431. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34432. {
  34433. front: {
  34434. height: math.unit(6 + 3/12, "feet"),
  34435. weight: math.unit(430, "lb"),
  34436. name: "Front",
  34437. image: {
  34438. source: "./media/characters/carlos/front.svg",
  34439. extra: 1964/1913,
  34440. bottom: 70/2034
  34441. }
  34442. },
  34443. },
  34444. [
  34445. {
  34446. name: "Normal",
  34447. height: math.unit(6 + 3/12, "feet"),
  34448. default: true
  34449. },
  34450. ]
  34451. ))
  34452. characterMakers.push(() => makeCharacter(
  34453. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34454. {
  34455. back: {
  34456. height: math.unit(5 + 10/12, "feet"),
  34457. weight: math.unit(200, "lb"),
  34458. name: "Back",
  34459. image: {
  34460. source: "./media/characters/jax/back.svg",
  34461. extra: 764/739,
  34462. bottom: 25/789
  34463. }
  34464. },
  34465. },
  34466. [
  34467. {
  34468. name: "Normal",
  34469. height: math.unit(5 + 10/12, "feet"),
  34470. default: true
  34471. },
  34472. ]
  34473. ))
  34474. characterMakers.push(() => makeCharacter(
  34475. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34476. {
  34477. front: {
  34478. height: math.unit(8, "feet"),
  34479. weight: math.unit(250, "lb"),
  34480. name: "Front",
  34481. image: {
  34482. source: "./media/characters/eikthynir/front.svg",
  34483. extra: 1332/1166,
  34484. bottom: 82/1414
  34485. }
  34486. },
  34487. back: {
  34488. height: math.unit(8, "feet"),
  34489. weight: math.unit(250, "lb"),
  34490. name: "Back",
  34491. image: {
  34492. source: "./media/characters/eikthynir/back.svg",
  34493. extra: 1342/1190,
  34494. bottom: 19/1361
  34495. }
  34496. },
  34497. dick: {
  34498. height: math.unit(2.35, "feet"),
  34499. name: "Dick",
  34500. image: {
  34501. source: "./media/characters/eikthynir/dick.svg"
  34502. }
  34503. },
  34504. },
  34505. [
  34506. {
  34507. name: "Normal",
  34508. height: math.unit(8, "feet"),
  34509. default: true
  34510. },
  34511. ]
  34512. ))
  34513. characterMakers.push(() => makeCharacter(
  34514. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34515. {
  34516. front: {
  34517. height: math.unit(99, "meters"),
  34518. weight: math.unit(13000, "tons"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/zlmos/front.svg",
  34522. extra: 2202/1992,
  34523. bottom: 315/2517
  34524. }
  34525. },
  34526. },
  34527. [
  34528. {
  34529. name: "Macro",
  34530. height: math.unit(99, "meters"),
  34531. default: true
  34532. },
  34533. ]
  34534. ))
  34535. characterMakers.push(() => makeCharacter(
  34536. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34537. {
  34538. front: {
  34539. height: math.unit(6 + 5/12, "feet"),
  34540. name: "Front",
  34541. image: {
  34542. source: "./media/characters/purri/front.svg",
  34543. extra: 1698/1610,
  34544. bottom: 32/1730
  34545. }
  34546. },
  34547. frontAlt: {
  34548. height: math.unit(6 + 5/12, "feet"),
  34549. name: "Front (Alt)",
  34550. image: {
  34551. source: "./media/characters/purri/front-alt.svg",
  34552. extra: 450/420,
  34553. bottom: 26/476
  34554. }
  34555. },
  34556. boots: {
  34557. height: math.unit(5.5, "feet"),
  34558. name: "Boots",
  34559. image: {
  34560. source: "./media/characters/purri/boots.svg",
  34561. extra: 905/853,
  34562. bottom: 18/923
  34563. },
  34564. extraAttributes: {
  34565. "shoeSize": {
  34566. name: "Shoe Size",
  34567. power: 1,
  34568. type: "length",
  34569. base: math.unit(12, "ShoeSizeMensUS")
  34570. },
  34571. "platformHeight": {
  34572. name: "Platform Height",
  34573. power: 1,
  34574. type: "length",
  34575. base: math.unit(2, "inches")
  34576. },
  34577. }
  34578. },
  34579. lying: {
  34580. height: math.unit(2, "feet"),
  34581. name: "Lying",
  34582. image: {
  34583. source: "./media/characters/purri/lying.svg",
  34584. extra: 940/843,
  34585. bottom: 146/1086
  34586. }
  34587. },
  34588. devious: {
  34589. height: math.unit(1.77, "feet"),
  34590. name: "Devious",
  34591. image: {
  34592. source: "./media/characters/purri/devious.svg",
  34593. extra: 1440/1155,
  34594. bottom: 147/1587
  34595. }
  34596. },
  34597. bean: {
  34598. height: math.unit(1.94, "feet"),
  34599. name: "Bean",
  34600. image: {
  34601. source: "./media/characters/purri/bean.svg"
  34602. }
  34603. },
  34604. },
  34605. [
  34606. {
  34607. name: "Micro",
  34608. height: math.unit(1, "mm")
  34609. },
  34610. {
  34611. name: "Normal",
  34612. height: math.unit(6 + 5/12, "feet"),
  34613. default: true
  34614. },
  34615. {
  34616. name: "Macro :3c",
  34617. height: math.unit(2, "miles")
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34623. {
  34624. front: {
  34625. height: math.unit(6 + 2/12, "feet"),
  34626. weight: math.unit(250, "lb"),
  34627. name: "Front",
  34628. image: {
  34629. source: "./media/characters/moonlight/front.svg",
  34630. extra: 1044/908,
  34631. bottom: 56/1100
  34632. }
  34633. },
  34634. feral: {
  34635. height: math.unit(3 + 1/12, "feet"),
  34636. weight: math.unit(50, "kg"),
  34637. name: "Feral",
  34638. image: {
  34639. source: "./media/characters/moonlight/feral.svg",
  34640. extra: 3705/2791,
  34641. bottom: 145/3850
  34642. }
  34643. },
  34644. paw: {
  34645. height: math.unit(1, "feet"),
  34646. name: "Paw",
  34647. image: {
  34648. source: "./media/characters/moonlight/paw.svg"
  34649. }
  34650. },
  34651. paws: {
  34652. height: math.unit(0.98, "feet"),
  34653. name: "Paws",
  34654. image: {
  34655. source: "./media/characters/moonlight/paws.svg",
  34656. extra: 939/939,
  34657. bottom: 50/989
  34658. }
  34659. },
  34660. mouth: {
  34661. height: math.unit(0.48, "feet"),
  34662. name: "Mouth",
  34663. image: {
  34664. source: "./media/characters/moonlight/mouth.svg"
  34665. }
  34666. },
  34667. dick: {
  34668. height: math.unit(1.46, "feet"),
  34669. name: "Dick",
  34670. image: {
  34671. source: "./media/characters/moonlight/dick.svg"
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Normal",
  34678. height: math.unit(6 + 2/12, "feet"),
  34679. default: true
  34680. },
  34681. {
  34682. name: "Macro",
  34683. height: math.unit(300, "feet")
  34684. },
  34685. {
  34686. name: "Macro+",
  34687. height: math.unit(1, "mile")
  34688. },
  34689. {
  34690. name: "Mt. Moon",
  34691. height: math.unit(5, "miles")
  34692. },
  34693. {
  34694. name: "Megamacro",
  34695. height: math.unit(15, "miles")
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34701. {
  34702. back: {
  34703. height: math.unit(6, "feet"),
  34704. weight: math.unit(150, "lb"),
  34705. name: "Back",
  34706. image: {
  34707. source: "./media/characters/sylen/back.svg",
  34708. extra: 1335/1273,
  34709. bottom: 107/1442
  34710. }
  34711. },
  34712. },
  34713. [
  34714. {
  34715. name: "Normal",
  34716. height: math.unit(5 + 5/12, "feet")
  34717. },
  34718. {
  34719. name: "Megamacro",
  34720. height: math.unit(3, "miles"),
  34721. default: true
  34722. },
  34723. ]
  34724. ))
  34725. characterMakers.push(() => makeCharacter(
  34726. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34727. {
  34728. front: {
  34729. height: math.unit(6, "feet"),
  34730. weight: math.unit(190, "lb"),
  34731. name: "Front",
  34732. image: {
  34733. source: "./media/characters/huttser/front.svg",
  34734. extra: 1152/1058,
  34735. bottom: 23/1175
  34736. }
  34737. },
  34738. side: {
  34739. height: math.unit(6, "feet"),
  34740. weight: math.unit(190, "lb"),
  34741. name: "Side",
  34742. image: {
  34743. source: "./media/characters/huttser/side.svg",
  34744. extra: 1174/1065,
  34745. bottom: 18/1192
  34746. }
  34747. },
  34748. back: {
  34749. height: math.unit(6, "feet"),
  34750. weight: math.unit(190, "lb"),
  34751. name: "Back",
  34752. image: {
  34753. source: "./media/characters/huttser/back.svg",
  34754. extra: 1158/1056,
  34755. bottom: 12/1170
  34756. }
  34757. },
  34758. },
  34759. [
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34764. {
  34765. side: {
  34766. height: math.unit(12 + 9/12, "feet"),
  34767. weight: math.unit(15000, "lb"),
  34768. name: "Side",
  34769. image: {
  34770. source: "./media/characters/faan/side.svg",
  34771. extra: 2747/2697,
  34772. bottom: 0/2747
  34773. }
  34774. },
  34775. front: {
  34776. height: math.unit(12 + 9/12, "feet"),
  34777. weight: math.unit(15000, "lb"),
  34778. name: "Front",
  34779. image: {
  34780. source: "./media/characters/faan/front.svg",
  34781. extra: 607/571,
  34782. bottom: 24/631
  34783. }
  34784. },
  34785. head: {
  34786. height: math.unit(2.85, "feet"),
  34787. name: "Head",
  34788. image: {
  34789. source: "./media/characters/faan/head.svg"
  34790. }
  34791. },
  34792. headAlt: {
  34793. height: math.unit(3.13, "feet"),
  34794. name: "Head-alt",
  34795. image: {
  34796. source: "./media/characters/faan/head-alt.svg"
  34797. }
  34798. },
  34799. },
  34800. [
  34801. {
  34802. name: "Normal",
  34803. height: math.unit(12 + 9/12, "feet"),
  34804. default: true
  34805. },
  34806. ]
  34807. ))
  34808. characterMakers.push(() => makeCharacter(
  34809. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34810. {
  34811. front: {
  34812. height: math.unit(6, "feet"),
  34813. weight: math.unit(300, "lb"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/tanio/front.svg",
  34817. extra: 711/673,
  34818. bottom: 25/736
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(6, "feet"),
  34826. default: true
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34832. {
  34833. front: {
  34834. height: math.unit(3, "inches"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/noboru/front.svg",
  34838. extra: 1039/932,
  34839. bottom: 18/1057
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Micro",
  34846. height: math.unit(3, "inches"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(1.85, "meters"),
  34856. weight: math.unit(80, "kg"),
  34857. name: "Front",
  34858. image: {
  34859. source: "./media/characters/daniel-barrett/front.svg",
  34860. extra: 355/337,
  34861. bottom: 9/364
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Pico",
  34868. height: math.unit(0.0433, "mm")
  34869. },
  34870. {
  34871. name: "Nano",
  34872. height: math.unit(1.5, "mm")
  34873. },
  34874. {
  34875. name: "Micro",
  34876. height: math.unit(5.3, "cm"),
  34877. default: true
  34878. },
  34879. {
  34880. name: "Normal",
  34881. height: math.unit(1.85, "meters")
  34882. },
  34883. {
  34884. name: "Macro",
  34885. height: math.unit(64.7, "meters")
  34886. },
  34887. {
  34888. name: "Megamacro",
  34889. height: math.unit(2.26, "km")
  34890. },
  34891. {
  34892. name: "Gigamacro",
  34893. height: math.unit(79, "km")
  34894. },
  34895. {
  34896. name: "Teramacro",
  34897. height: math.unit(2765, "km")
  34898. },
  34899. {
  34900. name: "Petamacro",
  34901. height: math.unit(96678, "km")
  34902. },
  34903. ]
  34904. ))
  34905. characterMakers.push(() => makeCharacter(
  34906. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34907. {
  34908. front: {
  34909. height: math.unit(30, "meters"),
  34910. weight: math.unit(400, "tons"),
  34911. name: "Front",
  34912. image: {
  34913. source: "./media/characters/zeel/front.svg",
  34914. extra: 2599/2599,
  34915. bottom: 226/2825
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Macro",
  34922. height: math.unit(30, "meters"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34929. {
  34930. front: {
  34931. height: math.unit(6 + 7/12, "feet"),
  34932. weight: math.unit(210, "lb"),
  34933. name: "Front",
  34934. image: {
  34935. source: "./media/characters/tarn/front.svg",
  34936. extra: 3517/3220,
  34937. bottom: 91/3608
  34938. }
  34939. },
  34940. back: {
  34941. height: math.unit(6 + 7/12, "feet"),
  34942. weight: math.unit(210, "lb"),
  34943. name: "Back",
  34944. image: {
  34945. source: "./media/characters/tarn/back.svg",
  34946. extra: 3566/3241,
  34947. bottom: 34/3600
  34948. }
  34949. },
  34950. dick: {
  34951. height: math.unit(1.65, "feet"),
  34952. name: "Dick",
  34953. image: {
  34954. source: "./media/characters/tarn/dick.svg"
  34955. }
  34956. },
  34957. paw: {
  34958. height: math.unit(1.80, "feet"),
  34959. name: "Paw",
  34960. image: {
  34961. source: "./media/characters/tarn/paw.svg"
  34962. }
  34963. },
  34964. tongue: {
  34965. height: math.unit(0.97, "feet"),
  34966. name: "Tongue",
  34967. image: {
  34968. source: "./media/characters/tarn/tongue.svg"
  34969. }
  34970. },
  34971. },
  34972. [
  34973. {
  34974. name: "Micro",
  34975. height: math.unit(4, "inches")
  34976. },
  34977. {
  34978. name: "Normal",
  34979. height: math.unit(6 + 7/12, "feet"),
  34980. default: true
  34981. },
  34982. {
  34983. name: "Macro",
  34984. height: math.unit(300, "feet")
  34985. },
  34986. ]
  34987. ))
  34988. characterMakers.push(() => makeCharacter(
  34989. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34990. {
  34991. front: {
  34992. height: math.unit(5 + 7/12, "feet"),
  34993. weight: math.unit(80, "kg"),
  34994. name: "Front",
  34995. image: {
  34996. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34997. extra: 3023/2865,
  34998. bottom: 33/3056
  34999. }
  35000. },
  35001. back: {
  35002. height: math.unit(5 + 7/12, "feet"),
  35003. weight: math.unit(80, "kg"),
  35004. name: "Back",
  35005. image: {
  35006. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35007. extra: 3020/2886,
  35008. bottom: 30/3050
  35009. }
  35010. },
  35011. dick: {
  35012. height: math.unit(0.98, "feet"),
  35013. name: "Dick",
  35014. image: {
  35015. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35016. }
  35017. },
  35018. anatomy: {
  35019. height: math.unit(2.86, "feet"),
  35020. name: "Anatomy",
  35021. image: {
  35022. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35023. }
  35024. },
  35025. },
  35026. [
  35027. {
  35028. name: "Really Small",
  35029. height: math.unit(2, "inches")
  35030. },
  35031. {
  35032. name: "Micro",
  35033. height: math.unit(5.583, "inches")
  35034. },
  35035. {
  35036. name: "Normal",
  35037. height: math.unit(5 + 7/12, "feet"),
  35038. default: true
  35039. },
  35040. {
  35041. name: "Macro",
  35042. height: math.unit(67, "feet")
  35043. },
  35044. {
  35045. name: "Megamacro",
  35046. height: math.unit(134, "feet")
  35047. },
  35048. ]
  35049. ))
  35050. characterMakers.push(() => makeCharacter(
  35051. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35052. {
  35053. front: {
  35054. height: math.unit(9, "feet"),
  35055. weight: math.unit(120, "lb"),
  35056. name: "Front",
  35057. image: {
  35058. source: "./media/characters/sally/front.svg",
  35059. extra: 1506/1349,
  35060. bottom: 66/1572
  35061. }
  35062. },
  35063. },
  35064. [
  35065. {
  35066. name: "Normal",
  35067. height: math.unit(9, "feet"),
  35068. default: true
  35069. },
  35070. ]
  35071. ))
  35072. characterMakers.push(() => makeCharacter(
  35073. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35074. {
  35075. front: {
  35076. height: math.unit(8, "feet"),
  35077. weight: math.unit(900, "lb"),
  35078. name: "Front",
  35079. image: {
  35080. source: "./media/characters/owen/front.svg",
  35081. extra: 1761/1657,
  35082. bottom: 74/1835
  35083. }
  35084. },
  35085. side: {
  35086. height: math.unit(8, "feet"),
  35087. weight: math.unit(900, "lb"),
  35088. name: "Side",
  35089. image: {
  35090. source: "./media/characters/owen/side.svg",
  35091. extra: 1797/1734,
  35092. bottom: 30/1827
  35093. }
  35094. },
  35095. back: {
  35096. height: math.unit(8, "feet"),
  35097. weight: math.unit(900, "lb"),
  35098. name: "Back",
  35099. image: {
  35100. source: "./media/characters/owen/back.svg",
  35101. extra: 1796/1706,
  35102. bottom: 59/1855
  35103. }
  35104. },
  35105. maw: {
  35106. height: math.unit(1.76, "feet"),
  35107. name: "Maw",
  35108. image: {
  35109. source: "./media/characters/owen/maw.svg"
  35110. }
  35111. },
  35112. },
  35113. [
  35114. {
  35115. name: "Normal",
  35116. height: math.unit(8, "feet"),
  35117. default: true
  35118. },
  35119. ]
  35120. ))
  35121. characterMakers.push(() => makeCharacter(
  35122. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35123. {
  35124. front: {
  35125. height: math.unit(4, "feet"),
  35126. weight: math.unit(400, "lb"),
  35127. name: "Front",
  35128. image: {
  35129. source: "./media/characters/ryth/front.svg",
  35130. extra: 1920/1748,
  35131. bottom: 42/1962
  35132. }
  35133. },
  35134. back: {
  35135. height: math.unit(4, "feet"),
  35136. weight: math.unit(400, "lb"),
  35137. name: "Back",
  35138. image: {
  35139. source: "./media/characters/ryth/back.svg",
  35140. extra: 1897/1690,
  35141. bottom: 89/1986
  35142. }
  35143. },
  35144. mouth: {
  35145. height: math.unit(1.39, "feet"),
  35146. name: "Mouth",
  35147. image: {
  35148. source: "./media/characters/ryth/mouth.svg"
  35149. }
  35150. },
  35151. tailmaw: {
  35152. height: math.unit(1.23, "feet"),
  35153. name: "Tailmaw",
  35154. image: {
  35155. source: "./media/characters/ryth/tailmaw.svg"
  35156. }
  35157. },
  35158. goia: {
  35159. height: math.unit(4, "meters"),
  35160. weight: math.unit(10800, "lb"),
  35161. name: "Goia",
  35162. image: {
  35163. source: "./media/characters/ryth/goia.svg",
  35164. extra: 745/640,
  35165. bottom: 107/852
  35166. }
  35167. },
  35168. goiaFront: {
  35169. height: math.unit(4, "meters"),
  35170. weight: math.unit(10800, "lb"),
  35171. name: "Goia (Front)",
  35172. image: {
  35173. source: "./media/characters/ryth/goia-front.svg",
  35174. extra: 750/586,
  35175. bottom: 114/864
  35176. }
  35177. },
  35178. goiaMaw: {
  35179. height: math.unit(5.55, "feet"),
  35180. name: "Goia Maw",
  35181. image: {
  35182. source: "./media/characters/ryth/goia-maw.svg"
  35183. }
  35184. },
  35185. goiaForepaw: {
  35186. height: math.unit(3.5, "feet"),
  35187. name: "Goia Forepaw",
  35188. image: {
  35189. source: "./media/characters/ryth/goia-forepaw.svg"
  35190. }
  35191. },
  35192. goiaHindpaw: {
  35193. height: math.unit(5.55, "feet"),
  35194. name: "Goia Hindpaw",
  35195. image: {
  35196. source: "./media/characters/ryth/goia-hindpaw.svg"
  35197. }
  35198. },
  35199. },
  35200. [
  35201. {
  35202. name: "Normal",
  35203. height: math.unit(4, "feet"),
  35204. default: true
  35205. },
  35206. ]
  35207. ))
  35208. characterMakers.push(() => makeCharacter(
  35209. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35210. {
  35211. front: {
  35212. height: math.unit(7, "feet"),
  35213. weight: math.unit(180, "lb"),
  35214. name: "Front",
  35215. image: {
  35216. source: "./media/characters/necrolance/front.svg",
  35217. extra: 1062/947,
  35218. bottom: 41/1103
  35219. }
  35220. },
  35221. back: {
  35222. height: math.unit(7, "feet"),
  35223. weight: math.unit(180, "lb"),
  35224. name: "Back",
  35225. image: {
  35226. source: "./media/characters/necrolance/back.svg",
  35227. extra: 1045/984,
  35228. bottom: 14/1059
  35229. }
  35230. },
  35231. wing: {
  35232. height: math.unit(2.67, "feet"),
  35233. name: "Wing",
  35234. image: {
  35235. source: "./media/characters/necrolance/wing.svg"
  35236. }
  35237. },
  35238. },
  35239. [
  35240. {
  35241. name: "Normal",
  35242. height: math.unit(7, "feet"),
  35243. default: true
  35244. },
  35245. ]
  35246. ))
  35247. characterMakers.push(() => makeCharacter(
  35248. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35249. {
  35250. front: {
  35251. height: math.unit(76, "meters"),
  35252. weight: math.unit(30000, "tons"),
  35253. name: "Front",
  35254. image: {
  35255. source: "./media/characters/tyler/front.svg",
  35256. extra: 1640/1640,
  35257. bottom: 114/1754
  35258. }
  35259. },
  35260. },
  35261. [
  35262. {
  35263. name: "Macro",
  35264. height: math.unit(76, "meters"),
  35265. default: true
  35266. },
  35267. ]
  35268. ))
  35269. characterMakers.push(() => makeCharacter(
  35270. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35271. {
  35272. front: {
  35273. height: math.unit(4 + 11/12, "feet"),
  35274. weight: math.unit(132, "lb"),
  35275. name: "Front",
  35276. image: {
  35277. source: "./media/characters/icey/front.svg",
  35278. extra: 2750/2550,
  35279. bottom: 33/2783
  35280. }
  35281. },
  35282. back: {
  35283. height: math.unit(4 + 11/12, "feet"),
  35284. weight: math.unit(132, "lb"),
  35285. name: "Back",
  35286. image: {
  35287. source: "./media/characters/icey/back.svg",
  35288. extra: 2624/2481,
  35289. bottom: 35/2659
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(4 + 11/12, "feet"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35303. {
  35304. front: {
  35305. height: math.unit(100, "feet"),
  35306. weight: math.unit(0, "lb"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/smile/front.svg",
  35310. extra: 2983/2912,
  35311. bottom: 162/3145
  35312. }
  35313. },
  35314. back: {
  35315. height: math.unit(100, "feet"),
  35316. weight: math.unit(0, "lb"),
  35317. name: "Back",
  35318. image: {
  35319. source: "./media/characters/smile/back.svg",
  35320. extra: 3143/3031,
  35321. bottom: 91/3234
  35322. }
  35323. },
  35324. head: {
  35325. height: math.unit(26.3, "feet"),
  35326. weight: math.unit(0, "lb"),
  35327. name: "Head",
  35328. image: {
  35329. source: "./media/characters/smile/head.svg"
  35330. }
  35331. },
  35332. collar: {
  35333. height: math.unit(5.3, "feet"),
  35334. weight: math.unit(0, "lb"),
  35335. name: "Collar",
  35336. image: {
  35337. source: "./media/characters/smile/collar.svg"
  35338. }
  35339. },
  35340. },
  35341. [
  35342. {
  35343. name: "Macro",
  35344. height: math.unit(100, "feet"),
  35345. default: true
  35346. },
  35347. ]
  35348. ))
  35349. characterMakers.push(() => makeCharacter(
  35350. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35351. {
  35352. dragon: {
  35353. height: math.unit(26, "feet"),
  35354. weight: math.unit(36, "tons"),
  35355. name: "Dragon",
  35356. image: {
  35357. source: "./media/characters/arimphae/dragon.svg",
  35358. extra: 1574/983,
  35359. bottom: 357/1931
  35360. }
  35361. },
  35362. drake: {
  35363. height: math.unit(9, "feet"),
  35364. weight: math.unit(1.5, "tons"),
  35365. name: "Drake",
  35366. image: {
  35367. source: "./media/characters/arimphae/drake.svg",
  35368. extra: 1120/925,
  35369. bottom: 435/1555
  35370. }
  35371. },
  35372. },
  35373. [
  35374. {
  35375. name: "Small",
  35376. height: math.unit(26*5/9, "feet")
  35377. },
  35378. {
  35379. name: "Normal",
  35380. height: math.unit(26, "feet"),
  35381. default: true
  35382. },
  35383. ]
  35384. ))
  35385. characterMakers.push(() => makeCharacter(
  35386. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35387. {
  35388. front: {
  35389. height: math.unit(8 + 9/12, "feet"),
  35390. name: "Front",
  35391. image: {
  35392. source: "./media/characters/xander/front.svg",
  35393. extra: 1237/974,
  35394. bottom: 94/1331
  35395. }
  35396. },
  35397. },
  35398. [
  35399. {
  35400. name: "Normal",
  35401. height: math.unit(8 + 9/12, "feet"),
  35402. default: true
  35403. },
  35404. {
  35405. name: "Gaze Grabber",
  35406. height: math.unit(13 + 8/12, "feet")
  35407. },
  35408. {
  35409. name: "Jaw Dropper",
  35410. height: math.unit(27, "feet")
  35411. },
  35412. {
  35413. name: "Show Stopper",
  35414. height: math.unit(136, "feet")
  35415. },
  35416. {
  35417. name: "Superstar",
  35418. height: math.unit(1.9e6, "miles")
  35419. },
  35420. ]
  35421. ))
  35422. characterMakers.push(() => makeCharacter(
  35423. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35424. {
  35425. side: {
  35426. height: math.unit(2100, "feet"),
  35427. name: "Side",
  35428. image: {
  35429. source: "./media/characters/osiris/side.svg",
  35430. extra: 1105/939,
  35431. bottom: 167/1272
  35432. }
  35433. },
  35434. },
  35435. [
  35436. {
  35437. name: "Macro",
  35438. height: math.unit(2100, "feet"),
  35439. default: true
  35440. },
  35441. ]
  35442. ))
  35443. characterMakers.push(() => makeCharacter(
  35444. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35445. {
  35446. front: {
  35447. height: math.unit(6 + 8/12, "feet"),
  35448. weight: math.unit(225, "lb"),
  35449. name: "Front",
  35450. image: {
  35451. source: "./media/characters/rhys-londe/front.svg",
  35452. extra: 2258/2141,
  35453. bottom: 188/2446
  35454. }
  35455. },
  35456. back: {
  35457. height: math.unit(6 + 8/12, "feet"),
  35458. weight: math.unit(225, "lb"),
  35459. name: "Back",
  35460. image: {
  35461. source: "./media/characters/rhys-londe/back.svg",
  35462. extra: 2237/2137,
  35463. bottom: 63/2300
  35464. }
  35465. },
  35466. frontNsfw: {
  35467. height: math.unit(6 + 8/12, "feet"),
  35468. weight: math.unit(225, "lb"),
  35469. name: "Front (NSFW)",
  35470. image: {
  35471. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35472. extra: 2258/2141,
  35473. bottom: 188/2446
  35474. }
  35475. },
  35476. backNsfw: {
  35477. height: math.unit(6 + 8/12, "feet"),
  35478. weight: math.unit(225, "lb"),
  35479. name: "Back (NSFW)",
  35480. image: {
  35481. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35482. extra: 2237/2137,
  35483. bottom: 63/2300
  35484. }
  35485. },
  35486. dick: {
  35487. height: math.unit(30, "inches"),
  35488. name: "Dick",
  35489. image: {
  35490. source: "./media/characters/rhys-londe/dick.svg"
  35491. }
  35492. },
  35493. maw: {
  35494. height: math.unit(1.6, "feet"),
  35495. name: "Maw",
  35496. image: {
  35497. source: "./media/characters/rhys-londe/maw.svg"
  35498. }
  35499. },
  35500. },
  35501. [
  35502. {
  35503. name: "Normal",
  35504. height: math.unit(6 + 8/12, "feet"),
  35505. default: true
  35506. },
  35507. ]
  35508. ))
  35509. characterMakers.push(() => makeCharacter(
  35510. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35511. {
  35512. front: {
  35513. height: math.unit(3 + 10/12, "feet"),
  35514. weight: math.unit(90, "lb"),
  35515. name: "Front",
  35516. image: {
  35517. source: "./media/characters/taivas-ensim/front.svg",
  35518. extra: 1327/1216,
  35519. bottom: 96/1423
  35520. }
  35521. },
  35522. back: {
  35523. height: math.unit(3 + 10/12, "feet"),
  35524. weight: math.unit(90, "lb"),
  35525. name: "Back",
  35526. image: {
  35527. source: "./media/characters/taivas-ensim/back.svg",
  35528. extra: 1355/1247,
  35529. bottom: 11/1366
  35530. }
  35531. },
  35532. frontNsfw: {
  35533. height: math.unit(3 + 10/12, "feet"),
  35534. weight: math.unit(90, "lb"),
  35535. name: "Front (NSFW)",
  35536. image: {
  35537. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35538. extra: 1327/1216,
  35539. bottom: 96/1423
  35540. }
  35541. },
  35542. backNsfw: {
  35543. height: math.unit(3 + 10/12, "feet"),
  35544. weight: math.unit(90, "lb"),
  35545. name: "Back (NSFW)",
  35546. image: {
  35547. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35548. extra: 1355/1247,
  35549. bottom: 11/1366
  35550. }
  35551. },
  35552. },
  35553. [
  35554. {
  35555. name: "Normal",
  35556. height: math.unit(3 + 10/12, "feet"),
  35557. default: true
  35558. },
  35559. ]
  35560. ))
  35561. characterMakers.push(() => makeCharacter(
  35562. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35563. {
  35564. front: {
  35565. height: math.unit(9 + 6/12, "feet"),
  35566. weight: math.unit(940, "lb"),
  35567. name: "Front",
  35568. image: {
  35569. source: "./media/characters/byliss/front.svg",
  35570. extra: 1327/1290,
  35571. bottom: 82/1409
  35572. }
  35573. },
  35574. back: {
  35575. height: math.unit(9 + 6/12, "feet"),
  35576. weight: math.unit(940, "lb"),
  35577. name: "Back",
  35578. image: {
  35579. source: "./media/characters/byliss/back.svg",
  35580. extra: 1376/1349,
  35581. bottom: 9/1385
  35582. }
  35583. },
  35584. frontNsfw: {
  35585. height: math.unit(9 + 6/12, "feet"),
  35586. weight: math.unit(940, "lb"),
  35587. name: "Front (NSFW)",
  35588. image: {
  35589. source: "./media/characters/byliss/front-nsfw.svg",
  35590. extra: 1327/1290,
  35591. bottom: 82/1409
  35592. }
  35593. },
  35594. backNsfw: {
  35595. height: math.unit(9 + 6/12, "feet"),
  35596. weight: math.unit(940, "lb"),
  35597. name: "Back (NSFW)",
  35598. image: {
  35599. source: "./media/characters/byliss/back-nsfw.svg",
  35600. extra: 1376/1349,
  35601. bottom: 9/1385
  35602. }
  35603. },
  35604. },
  35605. [
  35606. {
  35607. name: "Normal",
  35608. height: math.unit(9 + 6/12, "feet"),
  35609. default: true
  35610. },
  35611. ]
  35612. ))
  35613. characterMakers.push(() => makeCharacter(
  35614. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35615. {
  35616. front: {
  35617. height: math.unit(5 + 2/12, "feet"),
  35618. weight: math.unit(200, "lb"),
  35619. name: "Front",
  35620. image: {
  35621. source: "./media/characters/noraly/front.svg",
  35622. extra: 4985/4773,
  35623. bottom: 150/5135
  35624. }
  35625. },
  35626. full: {
  35627. height: math.unit(5 + 2/12, "feet"),
  35628. weight: math.unit(164, "lb"),
  35629. name: "Full",
  35630. image: {
  35631. source: "./media/characters/noraly/full.svg",
  35632. extra: 1114/1059,
  35633. bottom: 35/1149
  35634. }
  35635. },
  35636. fuller: {
  35637. height: math.unit(5 + 2/12, "feet"),
  35638. weight: math.unit(230, "lb"),
  35639. name: "Fuller",
  35640. image: {
  35641. source: "./media/characters/noraly/fuller.svg",
  35642. extra: 1114/1059,
  35643. bottom: 35/1149
  35644. }
  35645. },
  35646. fullest: {
  35647. height: math.unit(5 + 2/12, "feet"),
  35648. weight: math.unit(300, "lb"),
  35649. name: "Fullest",
  35650. image: {
  35651. source: "./media/characters/noraly/fullest.svg",
  35652. extra: 1114/1059,
  35653. bottom: 35/1149
  35654. }
  35655. },
  35656. },
  35657. [
  35658. {
  35659. name: "Normal",
  35660. height: math.unit(5 + 2/12, "feet"),
  35661. default: true
  35662. },
  35663. ]
  35664. ))
  35665. characterMakers.push(() => makeCharacter(
  35666. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35667. {
  35668. front: {
  35669. height: math.unit(5 + 2/12, "feet"),
  35670. weight: math.unit(210, "lb"),
  35671. name: "Front",
  35672. image: {
  35673. source: "./media/characters/pera/front.svg",
  35674. extra: 1560/1531,
  35675. bottom: 165/1725
  35676. }
  35677. },
  35678. back: {
  35679. height: math.unit(5 + 2/12, "feet"),
  35680. weight: math.unit(210, "lb"),
  35681. name: "Back",
  35682. image: {
  35683. source: "./media/characters/pera/back.svg",
  35684. extra: 1523/1493,
  35685. bottom: 152/1675
  35686. }
  35687. },
  35688. dick: {
  35689. height: math.unit(2.4, "feet"),
  35690. name: "Dick",
  35691. image: {
  35692. source: "./media/characters/pera/dick.svg"
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Normal",
  35699. height: math.unit(5 + 2/12, "feet"),
  35700. default: true
  35701. },
  35702. ]
  35703. ))
  35704. characterMakers.push(() => makeCharacter(
  35705. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35706. {
  35707. front: {
  35708. height: math.unit(12, "feet"),
  35709. weight: math.unit(3200, "lb"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/julian/front.svg",
  35713. extra: 2962/2701,
  35714. bottom: 184/3146
  35715. }
  35716. },
  35717. maw: {
  35718. height: math.unit(5.35, "feet"),
  35719. name: "Maw",
  35720. image: {
  35721. source: "./media/characters/julian/maw.svg"
  35722. }
  35723. },
  35724. paw: {
  35725. height: math.unit(3.07, "feet"),
  35726. name: "Paw",
  35727. image: {
  35728. source: "./media/characters/julian/paw.svg"
  35729. }
  35730. },
  35731. },
  35732. [
  35733. {
  35734. name: "Default",
  35735. height: math.unit(12, "feet"),
  35736. default: true
  35737. },
  35738. {
  35739. name: "Big",
  35740. height: math.unit(50, "feet")
  35741. },
  35742. {
  35743. name: "Really Big",
  35744. height: math.unit(1, "mile")
  35745. },
  35746. {
  35747. name: "Extremely Big",
  35748. height: math.unit(100, "miles")
  35749. },
  35750. {
  35751. name: "Planet Hugger",
  35752. height: math.unit(200, "megameters")
  35753. },
  35754. {
  35755. name: "Unreasonably Big",
  35756. height: math.unit(1e300, "meters")
  35757. },
  35758. ]
  35759. ))
  35760. characterMakers.push(() => makeCharacter(
  35761. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35762. {
  35763. solgooleo: {
  35764. height: math.unit(4, "meters"),
  35765. weight: math.unit(6000*1.5, "kg"),
  35766. volume: math.unit(6000, "liters"),
  35767. name: "Solgooleo",
  35768. image: {
  35769. source: "./media/characters/pi/solgooleo.svg",
  35770. extra: 388/331,
  35771. bottom: 29/417
  35772. }
  35773. },
  35774. },
  35775. [
  35776. {
  35777. name: "Normal",
  35778. height: math.unit(4, "meters"),
  35779. default: true
  35780. },
  35781. ]
  35782. ))
  35783. characterMakers.push(() => makeCharacter(
  35784. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(8, "feet"),
  35788. weight: math.unit(4, "tons"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/shaun/front.svg",
  35792. extra: 503/495,
  35793. bottom: 20/523
  35794. }
  35795. },
  35796. back: {
  35797. height: math.unit(8, "feet"),
  35798. weight: math.unit(4, "tons"),
  35799. name: "Back",
  35800. image: {
  35801. source: "./media/characters/shaun/back.svg",
  35802. extra: 487/480,
  35803. bottom: 20/507
  35804. }
  35805. },
  35806. },
  35807. [
  35808. {
  35809. name: "Lorg",
  35810. height: math.unit(8, "feet"),
  35811. default: true
  35812. },
  35813. ]
  35814. ))
  35815. characterMakers.push(() => makeCharacter(
  35816. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35817. {
  35818. frontAnthro: {
  35819. height: math.unit(7, "feet"),
  35820. name: "Front",
  35821. image: {
  35822. source: "./media/characters/sini/front-anthro.svg",
  35823. extra: 726/678,
  35824. bottom: 35/761
  35825. },
  35826. form: "anthro",
  35827. default: true
  35828. },
  35829. backAnthro: {
  35830. height: math.unit(7, "feet"),
  35831. name: "Back",
  35832. image: {
  35833. source: "./media/characters/sini/back-anthro.svg",
  35834. extra: 743/701,
  35835. bottom: 12/755
  35836. },
  35837. form: "anthro",
  35838. },
  35839. frontAnthroNsfw: {
  35840. height: math.unit(7, "feet"),
  35841. name: "Front (NSFW)",
  35842. image: {
  35843. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35844. extra: 726/678,
  35845. bottom: 35/761
  35846. },
  35847. form: "anthro"
  35848. },
  35849. backAnthroNsfw: {
  35850. height: math.unit(7, "feet"),
  35851. name: "Back (NSFW)",
  35852. image: {
  35853. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35854. extra: 743/701,
  35855. bottom: 12/755
  35856. },
  35857. form: "anthro",
  35858. },
  35859. mawAnthro: {
  35860. height: math.unit(2.14, "feet"),
  35861. name: "Maw",
  35862. image: {
  35863. source: "./media/characters/sini/maw-anthro.svg"
  35864. },
  35865. form: "anthro"
  35866. },
  35867. dick: {
  35868. height: math.unit(1.45, "feet"),
  35869. name: "Dick",
  35870. image: {
  35871. source: "./media/characters/sini/dick-anthro.svg"
  35872. },
  35873. form: "anthro"
  35874. },
  35875. feral: {
  35876. height: math.unit(16, "feet"),
  35877. name: "Feral",
  35878. image: {
  35879. source: "./media/characters/sini/feral.svg",
  35880. extra: 814/605,
  35881. bottom: 11/825
  35882. },
  35883. form: "feral",
  35884. default: true
  35885. },
  35886. feralNsfw: {
  35887. height: math.unit(16, "feet"),
  35888. name: "Feral (NSFW)",
  35889. image: {
  35890. source: "./media/characters/sini/feral-nsfw.svg",
  35891. extra: 814/605,
  35892. bottom: 11/825
  35893. },
  35894. form: "feral"
  35895. },
  35896. mawFeral: {
  35897. height: math.unit(5.66, "feet"),
  35898. name: "Maw",
  35899. image: {
  35900. source: "./media/characters/sini/maw-feral.svg"
  35901. },
  35902. form: "feral",
  35903. },
  35904. pawFeral: {
  35905. height: math.unit(5.17, "feet"),
  35906. name: "Paw",
  35907. image: {
  35908. source: "./media/characters/sini/paw-feral.svg"
  35909. },
  35910. form: "feral",
  35911. },
  35912. rumpFeral: {
  35913. height: math.unit(13.11, "feet"),
  35914. name: "Rump",
  35915. image: {
  35916. source: "./media/characters/sini/rump-feral.svg"
  35917. },
  35918. form: "feral",
  35919. },
  35920. dickFeral: {
  35921. height: math.unit(1, "feet"),
  35922. name: "Dick",
  35923. image: {
  35924. source: "./media/characters/sini/dick-feral.svg"
  35925. },
  35926. form: "feral",
  35927. },
  35928. eyeFeral: {
  35929. height: math.unit(1.23, "feet"),
  35930. name: "Eye",
  35931. image: {
  35932. source: "./media/characters/sini/eye-feral.svg"
  35933. },
  35934. form: "feral",
  35935. },
  35936. },
  35937. [
  35938. {
  35939. name: "Normal",
  35940. height: math.unit(7, "feet"),
  35941. default: true,
  35942. form: "anthro"
  35943. },
  35944. {
  35945. name: "Normal",
  35946. height: math.unit(16, "feet"),
  35947. default: true,
  35948. form: "feral"
  35949. },
  35950. ],
  35951. {
  35952. "anthro": {
  35953. name: "Anthro",
  35954. default: true
  35955. },
  35956. "feral": {
  35957. name: "Feral",
  35958. }
  35959. }
  35960. ))
  35961. characterMakers.push(() => makeCharacter(
  35962. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35963. {
  35964. side: {
  35965. height: math.unit(47.2, "meters"),
  35966. weight: math.unit(10000, "tons"),
  35967. name: "Side",
  35968. image: {
  35969. source: "./media/characters/raylldo/side.svg",
  35970. extra: 2363/642,
  35971. bottom: 221/2584
  35972. }
  35973. },
  35974. top: {
  35975. height: math.unit(240, "meters"),
  35976. weight: math.unit(10000, "tons"),
  35977. name: "Top",
  35978. image: {
  35979. source: "./media/characters/raylldo/top.svg"
  35980. }
  35981. },
  35982. bottom: {
  35983. height: math.unit(240, "meters"),
  35984. weight: math.unit(10000, "tons"),
  35985. name: "Bottom",
  35986. image: {
  35987. source: "./media/characters/raylldo/bottom.svg"
  35988. }
  35989. },
  35990. head: {
  35991. height: math.unit(38.6, "meters"),
  35992. name: "Head",
  35993. image: {
  35994. source: "./media/characters/raylldo/head.svg",
  35995. extra: 1335/1112,
  35996. bottom: 0/1335
  35997. }
  35998. },
  35999. maw: {
  36000. height: math.unit(16.37, "meters"),
  36001. name: "Maw",
  36002. image: {
  36003. source: "./media/characters/raylldo/maw.svg",
  36004. extra: 883/660,
  36005. bottom: 0/883
  36006. },
  36007. extraAttributes: {
  36008. preyCapacity: {
  36009. name: "Capacity",
  36010. power: 3,
  36011. type: "volume",
  36012. base: math.unit(1000, "people")
  36013. },
  36014. tongueSize: {
  36015. name: "Tongue Size",
  36016. power: 2,
  36017. type: "area",
  36018. base: math.unit(21, "m^2")
  36019. }
  36020. }
  36021. },
  36022. forepaw: {
  36023. height: math.unit(18, "meters"),
  36024. name: "Forepaw",
  36025. image: {
  36026. source: "./media/characters/raylldo/forepaw.svg"
  36027. }
  36028. },
  36029. hindpaw: {
  36030. height: math.unit(23, "meters"),
  36031. name: "Hindpaw",
  36032. image: {
  36033. source: "./media/characters/raylldo/hindpaw.svg"
  36034. }
  36035. },
  36036. genitals: {
  36037. height: math.unit(42, "meters"),
  36038. name: "Genitals",
  36039. image: {
  36040. source: "./media/characters/raylldo/genitals.svg"
  36041. }
  36042. },
  36043. },
  36044. [
  36045. {
  36046. name: "Normal",
  36047. height: math.unit(47.2, "meters"),
  36048. default: true
  36049. },
  36050. ]
  36051. ))
  36052. characterMakers.push(() => makeCharacter(
  36053. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36054. {
  36055. anthroFront: {
  36056. height: math.unit(9, "feet"),
  36057. weight: math.unit(600, "lb"),
  36058. name: "Anthro (Front)",
  36059. image: {
  36060. source: "./media/characters/glint/anthro-front.svg",
  36061. extra: 1097/1018,
  36062. bottom: 28/1125
  36063. }
  36064. },
  36065. anthroBack: {
  36066. height: math.unit(9, "feet"),
  36067. weight: math.unit(600, "lb"),
  36068. name: "Anthro (Back)",
  36069. image: {
  36070. source: "./media/characters/glint/anthro-back.svg",
  36071. extra: 1154/997,
  36072. bottom: 36/1190
  36073. }
  36074. },
  36075. feral: {
  36076. height: math.unit(11, "feet"),
  36077. weight: math.unit(50000, "lb"),
  36078. name: "Feral",
  36079. image: {
  36080. source: "./media/characters/glint/feral.svg",
  36081. extra: 3035/1585,
  36082. bottom: 1169/4204
  36083. }
  36084. },
  36085. dickAnthro: {
  36086. height: math.unit(0.7, "meters"),
  36087. name: "Dick (Anthro)",
  36088. image: {
  36089. source: "./media/characters/glint/dick-anthro.svg"
  36090. }
  36091. },
  36092. dickFeral: {
  36093. height: math.unit(2.65, "meters"),
  36094. name: "Dick (Feral)",
  36095. image: {
  36096. source: "./media/characters/glint/dick-feral.svg"
  36097. }
  36098. },
  36099. slitHidden: {
  36100. height: math.unit(5.85, "meters"),
  36101. name: "Slit (Hidden)",
  36102. image: {
  36103. source: "./media/characters/glint/slit-hidden.svg"
  36104. }
  36105. },
  36106. slitErect: {
  36107. height: math.unit(5.85, "meters"),
  36108. name: "Slit (Erect)",
  36109. image: {
  36110. source: "./media/characters/glint/slit-erect.svg"
  36111. }
  36112. },
  36113. mawAnthro: {
  36114. height: math.unit(0.63, "meters"),
  36115. name: "Maw (Anthro)",
  36116. image: {
  36117. source: "./media/characters/glint/maw.svg"
  36118. }
  36119. },
  36120. mawFeral: {
  36121. height: math.unit(2.89, "meters"),
  36122. name: "Maw (Feral)",
  36123. image: {
  36124. source: "./media/characters/glint/maw.svg"
  36125. }
  36126. },
  36127. },
  36128. [
  36129. {
  36130. name: "Normal",
  36131. height: math.unit(9, "feet"),
  36132. default: true
  36133. },
  36134. ]
  36135. ))
  36136. characterMakers.push(() => makeCharacter(
  36137. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36138. {
  36139. side: {
  36140. height: math.unit(15, "feet"),
  36141. weight: math.unit(5000, "kg"),
  36142. name: "Side",
  36143. image: {
  36144. source: "./media/characters/kairne/side.svg",
  36145. extra: 979/811,
  36146. bottom: 13/992
  36147. }
  36148. },
  36149. front: {
  36150. height: math.unit(15, "feet"),
  36151. weight: math.unit(5000, "kg"),
  36152. name: "Front",
  36153. image: {
  36154. source: "./media/characters/kairne/front.svg",
  36155. extra: 908/814,
  36156. bottom: 26/934
  36157. }
  36158. },
  36159. sideNsfw: {
  36160. height: math.unit(15, "feet"),
  36161. weight: math.unit(5000, "kg"),
  36162. name: "Side (NSFW)",
  36163. image: {
  36164. source: "./media/characters/kairne/side-nsfw.svg",
  36165. extra: 979/811,
  36166. bottom: 13/992
  36167. }
  36168. },
  36169. frontNsfw: {
  36170. height: math.unit(15, "feet"),
  36171. weight: math.unit(5000, "kg"),
  36172. name: "Front (NSFW)",
  36173. image: {
  36174. source: "./media/characters/kairne/front-nsfw.svg",
  36175. extra: 908/814,
  36176. bottom: 26/934
  36177. }
  36178. },
  36179. dickCaged: {
  36180. height: math.unit(0.65, "meters"),
  36181. name: "Dick-caged",
  36182. image: {
  36183. source: "./media/characters/kairne/dick-caged.svg"
  36184. }
  36185. },
  36186. dick: {
  36187. height: math.unit(0.79, "meters"),
  36188. name: "Dick",
  36189. image: {
  36190. source: "./media/characters/kairne/dick.svg"
  36191. }
  36192. },
  36193. genitals: {
  36194. height: math.unit(1.29, "meters"),
  36195. name: "Genitals",
  36196. image: {
  36197. source: "./media/characters/kairne/genitals.svg"
  36198. }
  36199. },
  36200. maw: {
  36201. height: math.unit(1.73, "meters"),
  36202. name: "Maw",
  36203. image: {
  36204. source: "./media/characters/kairne/maw.svg"
  36205. }
  36206. },
  36207. },
  36208. [
  36209. {
  36210. name: "Normal",
  36211. height: math.unit(15, "feet"),
  36212. default: true
  36213. },
  36214. ]
  36215. ))
  36216. characterMakers.push(() => makeCharacter(
  36217. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36218. {
  36219. front: {
  36220. height: math.unit(5 + 8/12, "feet"),
  36221. weight: math.unit(139, "lb"),
  36222. name: "Front",
  36223. image: {
  36224. source: "./media/characters/biscuit-jackal/front.svg",
  36225. extra: 2106/1961,
  36226. bottom: 58/2164
  36227. }
  36228. },
  36229. back: {
  36230. height: math.unit(5 + 8/12, "feet"),
  36231. weight: math.unit(139, "lb"),
  36232. name: "Back",
  36233. image: {
  36234. source: "./media/characters/biscuit-jackal/back.svg",
  36235. extra: 2132/1976,
  36236. bottom: 57/2189
  36237. }
  36238. },
  36239. werejackal: {
  36240. height: math.unit(6 + 3/12, "feet"),
  36241. weight: math.unit(188, "lb"),
  36242. name: "Werejackal",
  36243. image: {
  36244. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36245. extra: 2373/2178,
  36246. bottom: 53/2426
  36247. }
  36248. },
  36249. },
  36250. [
  36251. {
  36252. name: "Normal",
  36253. height: math.unit(5 + 8/12, "feet"),
  36254. default: true
  36255. },
  36256. ]
  36257. ))
  36258. characterMakers.push(() => makeCharacter(
  36259. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36260. {
  36261. front: {
  36262. height: math.unit(140, "cm"),
  36263. weight: math.unit(45, "kg"),
  36264. name: "Front",
  36265. image: {
  36266. source: "./media/characters/tayra-white/front.svg",
  36267. extra: 2229/2192,
  36268. bottom: 75/2304
  36269. }
  36270. },
  36271. },
  36272. [
  36273. {
  36274. name: "Normal",
  36275. height: math.unit(140, "cm"),
  36276. default: true
  36277. },
  36278. ]
  36279. ))
  36280. characterMakers.push(() => makeCharacter(
  36281. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36282. {
  36283. front: {
  36284. height: math.unit(4 + 5/12, "feet"),
  36285. name: "Front",
  36286. image: {
  36287. source: "./media/characters/scoop/front.svg",
  36288. extra: 1257/1136,
  36289. bottom: 69/1326
  36290. }
  36291. },
  36292. back: {
  36293. height: math.unit(4 + 5/12, "feet"),
  36294. name: "Back",
  36295. image: {
  36296. source: "./media/characters/scoop/back.svg",
  36297. extra: 1321/1152,
  36298. bottom: 32/1353
  36299. }
  36300. },
  36301. maw: {
  36302. height: math.unit(0.68, "feet"),
  36303. name: "Maw",
  36304. image: {
  36305. source: "./media/characters/scoop/maw.svg"
  36306. }
  36307. },
  36308. },
  36309. [
  36310. {
  36311. name: "Really Small",
  36312. height: math.unit(1, "mm")
  36313. },
  36314. {
  36315. name: "Micro",
  36316. height: math.unit(1, "inch")
  36317. },
  36318. {
  36319. name: "Normal",
  36320. height: math.unit(4 + 5/12, "feet"),
  36321. default: true
  36322. },
  36323. {
  36324. name: "Macro",
  36325. height: math.unit(200, "feet")
  36326. },
  36327. {
  36328. name: "Megamacro",
  36329. height: math.unit(3240, "feet")
  36330. },
  36331. {
  36332. name: "Teramacro",
  36333. height: math.unit(2500, "miles")
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36339. {
  36340. front: {
  36341. height: math.unit(15 + 7/12, "feet"),
  36342. weight: math.unit(1150, "tons"),
  36343. name: "Front",
  36344. image: {
  36345. source: "./media/characters/saphinara/front.svg",
  36346. extra: 1837/1643,
  36347. bottom: 84/1921
  36348. },
  36349. form: "normal",
  36350. default: true
  36351. },
  36352. side: {
  36353. height: math.unit(15 + 7/12, "feet"),
  36354. weight: math.unit(1150, "tons"),
  36355. name: "Side",
  36356. image: {
  36357. source: "./media/characters/saphinara/side.svg",
  36358. extra: 605/547,
  36359. bottom: 6/611
  36360. },
  36361. form: "normal"
  36362. },
  36363. back: {
  36364. height: math.unit(15 + 7/12, "feet"),
  36365. weight: math.unit(1150, "tons"),
  36366. name: "Back",
  36367. image: {
  36368. source: "./media/characters/saphinara/back.svg",
  36369. extra: 591/531,
  36370. bottom: 13/604
  36371. },
  36372. form: "normal"
  36373. },
  36374. frontTail: {
  36375. height: math.unit(15 + 7/12, "feet"),
  36376. weight: math.unit(1150, "tons"),
  36377. name: "Front (Full Tail)",
  36378. image: {
  36379. source: "./media/characters/saphinara/front-tail.svg",
  36380. extra: 2256/1630,
  36381. bottom: 261/2517
  36382. },
  36383. form: "normal"
  36384. },
  36385. insides: {
  36386. height: math.unit(11.92, "feet"),
  36387. name: "Insides",
  36388. image: {
  36389. source: "./media/characters/saphinara/insides.svg"
  36390. },
  36391. form: "normal"
  36392. },
  36393. head: {
  36394. height: math.unit(4.17, "feet"),
  36395. name: "Head",
  36396. image: {
  36397. source: "./media/characters/saphinara/head.svg"
  36398. },
  36399. form: "normal"
  36400. },
  36401. tongue: {
  36402. height: math.unit(4.60, "feet"),
  36403. name: "Tongue",
  36404. image: {
  36405. source: "./media/characters/saphinara/tongue.svg"
  36406. },
  36407. form: "normal"
  36408. },
  36409. headEnraged: {
  36410. height: math.unit(5.55, "feet"),
  36411. name: "Head (Enraged)",
  36412. image: {
  36413. source: "./media/characters/saphinara/head-enraged.svg"
  36414. },
  36415. form: "normal"
  36416. },
  36417. wings: {
  36418. height: math.unit(11.95, "feet"),
  36419. name: "Wings",
  36420. image: {
  36421. source: "./media/characters/saphinara/wings.svg"
  36422. },
  36423. form: "normal"
  36424. },
  36425. feathers: {
  36426. height: math.unit(8.92, "feet"),
  36427. name: "Feathers",
  36428. image: {
  36429. source: "./media/characters/saphinara/feathers.svg"
  36430. },
  36431. form: "normal"
  36432. },
  36433. shackles: {
  36434. height: math.unit(2, "feet"),
  36435. name: "Shackles",
  36436. image: {
  36437. source: "./media/characters/saphinara/shackles.svg"
  36438. },
  36439. form: "normal"
  36440. },
  36441. eyes: {
  36442. height: math.unit(1.331, "feet"),
  36443. name: "Eyes",
  36444. image: {
  36445. source: "./media/characters/saphinara/eyes.svg"
  36446. },
  36447. form: "normal"
  36448. },
  36449. eyesEnraged: {
  36450. height: math.unit(1.331, "feet"),
  36451. name: "Eyes (Enraged)",
  36452. image: {
  36453. source: "./media/characters/saphinara/eyes-enraged.svg"
  36454. },
  36455. form: "normal"
  36456. },
  36457. trueFormSide: {
  36458. height: math.unit(200, "feet"),
  36459. weight: math.unit(1e7, "tons"),
  36460. name: "Side",
  36461. image: {
  36462. source: "./media/characters/saphinara/true-form-side.svg",
  36463. extra: 1399/770,
  36464. bottom: 97/1496
  36465. },
  36466. form: "true-form",
  36467. default: true
  36468. },
  36469. trueFormMaw: {
  36470. height: math.unit(71.5, "feet"),
  36471. name: "Maw",
  36472. image: {
  36473. source: "./media/characters/saphinara/true-form-maw.svg",
  36474. extra: 2302/1453,
  36475. bottom: 0/2302
  36476. },
  36477. form: "true-form"
  36478. },
  36479. meowberusSide: {
  36480. height: math.unit(75, "feet"),
  36481. weight: math.unit(180000, "kg"),
  36482. preyCapacity: math.unit(50000, "people"),
  36483. name: "Side",
  36484. image: {
  36485. source: "./media/characters/saphinara/meowberus-side.svg",
  36486. extra: 1400/711,
  36487. bottom: 126/1526
  36488. },
  36489. form: "meowberus",
  36490. extraAttributes: {
  36491. "pawArea": {
  36492. name: "Paw Size",
  36493. power: 2,
  36494. type: "area",
  36495. base: math.unit(35, "m^2")
  36496. }
  36497. }
  36498. },
  36499. },
  36500. [
  36501. {
  36502. name: "Normal",
  36503. height: math.unit(15 + 7/12, "feet"),
  36504. default: true,
  36505. form: "normal"
  36506. },
  36507. {
  36508. name: "Angry",
  36509. height: math.unit(30 + 6/12, "feet"),
  36510. form: "normal"
  36511. },
  36512. {
  36513. name: "Enraged",
  36514. height: math.unit(102 + 1/12, "feet"),
  36515. form: "normal"
  36516. },
  36517. {
  36518. name: "True",
  36519. height: math.unit(200, "feet"),
  36520. default: true,
  36521. form: "true-form"
  36522. },
  36523. {
  36524. name: "Normal",
  36525. height: math.unit(75, "feet"),
  36526. default: true,
  36527. form: "meowberus"
  36528. },
  36529. ],
  36530. {
  36531. "normal": {
  36532. name: "Normal",
  36533. default: true
  36534. },
  36535. "true-form": {
  36536. name: "True Form"
  36537. },
  36538. "meowberus": {
  36539. name: "Meowberus",
  36540. },
  36541. }
  36542. ))
  36543. characterMakers.push(() => makeCharacter(
  36544. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36545. {
  36546. front: {
  36547. height: math.unit(6 + 8/12, "feet"),
  36548. weight: math.unit(300, "lb"),
  36549. name: "Front",
  36550. image: {
  36551. source: "./media/characters/jrain/front.svg",
  36552. extra: 3039/2865,
  36553. bottom: 399/3438
  36554. }
  36555. },
  36556. back: {
  36557. height: math.unit(6 + 8/12, "feet"),
  36558. weight: math.unit(300, "lb"),
  36559. name: "Back",
  36560. image: {
  36561. source: "./media/characters/jrain/back.svg",
  36562. extra: 3089/2938,
  36563. bottom: 172/3261
  36564. }
  36565. },
  36566. head: {
  36567. height: math.unit(2.14, "feet"),
  36568. name: "Head",
  36569. image: {
  36570. source: "./media/characters/jrain/head.svg"
  36571. }
  36572. },
  36573. maw: {
  36574. height: math.unit(1.77, "feet"),
  36575. name: "Maw",
  36576. image: {
  36577. source: "./media/characters/jrain/maw.svg"
  36578. }
  36579. },
  36580. leftHand: {
  36581. height: math.unit(1.1, "feet"),
  36582. name: "Left Hand",
  36583. image: {
  36584. source: "./media/characters/jrain/left-hand.svg"
  36585. }
  36586. },
  36587. rightHand: {
  36588. height: math.unit(1.1, "feet"),
  36589. name: "Right Hand",
  36590. image: {
  36591. source: "./media/characters/jrain/right-hand.svg"
  36592. }
  36593. },
  36594. eye: {
  36595. height: math.unit(0.35, "feet"),
  36596. name: "Eye",
  36597. image: {
  36598. source: "./media/characters/jrain/eye.svg"
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(6 + 8/12, "feet"),
  36606. default: true
  36607. },
  36608. {
  36609. name: "Casually Large",
  36610. height: math.unit(25, "feet")
  36611. },
  36612. {
  36613. name: "Giant",
  36614. height: math.unit(100, "feet")
  36615. },
  36616. {
  36617. name: "Kaiju",
  36618. height: math.unit(300, "feet")
  36619. },
  36620. ]
  36621. ))
  36622. characterMakers.push(() => makeCharacter(
  36623. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36624. {
  36625. dragon: {
  36626. height: math.unit(5, "meters"),
  36627. name: "Dragon",
  36628. image: {
  36629. source: "./media/characters/sabrina/dragon.svg",
  36630. extra: 3670 / 2365,
  36631. bottom: 333 / 4003
  36632. }
  36633. },
  36634. gryphon: {
  36635. height: math.unit(3, "meters"),
  36636. name: "Gryphon",
  36637. image: {
  36638. source: "./media/characters/sabrina/gryphon.svg",
  36639. extra: 1576 / 945,
  36640. bottom: 71 / 1647
  36641. }
  36642. },
  36643. snake: {
  36644. height: math.unit(12, "meters"),
  36645. name: "Snake",
  36646. image: {
  36647. source: "./media/characters/sabrina/snake.svg",
  36648. extra: 1758 / 1320,
  36649. bottom: 186 / 1944
  36650. }
  36651. },
  36652. collar: {
  36653. height: math.unit(1.86, "meters"),
  36654. name: "Collar",
  36655. image: {
  36656. source: "./media/characters/sabrina/collar.svg"
  36657. }
  36658. },
  36659. eye: {
  36660. height: math.unit(0.53, "meters"),
  36661. name: "Eye",
  36662. image: {
  36663. source: "./media/characters/sabrina/eye.svg"
  36664. }
  36665. },
  36666. foot: {
  36667. height: math.unit(1.86, "meters"),
  36668. name: "Foot",
  36669. image: {
  36670. source: "./media/characters/sabrina/foot.svg"
  36671. }
  36672. },
  36673. hand: {
  36674. height: math.unit(1.32, "meters"),
  36675. name: "Hand",
  36676. image: {
  36677. source: "./media/characters/sabrina/hand.svg"
  36678. }
  36679. },
  36680. head: {
  36681. height: math.unit(2.44, "meters"),
  36682. name: "Head",
  36683. image: {
  36684. source: "./media/characters/sabrina/head.svg"
  36685. }
  36686. },
  36687. headAngry: {
  36688. height: math.unit(2.44, "meters"),
  36689. name: "Head (Angry))",
  36690. image: {
  36691. source: "./media/characters/sabrina/head-angry.svg"
  36692. }
  36693. },
  36694. maw: {
  36695. height: math.unit(1.65, "meters"),
  36696. name: "Maw",
  36697. image: {
  36698. source: "./media/characters/sabrina/maw.svg"
  36699. }
  36700. },
  36701. spikes: {
  36702. height: math.unit(1.69, "meters"),
  36703. name: "Spikes",
  36704. image: {
  36705. source: "./media/characters/sabrina/spikes.svg"
  36706. }
  36707. },
  36708. stomach: {
  36709. height: math.unit(1.15, "meters"),
  36710. name: "Stomach",
  36711. image: {
  36712. source: "./media/characters/sabrina/stomach.svg"
  36713. }
  36714. },
  36715. tongue: {
  36716. height: math.unit(1.27, "meters"),
  36717. name: "Tongue",
  36718. image: {
  36719. source: "./media/characters/sabrina/tongue.svg"
  36720. }
  36721. },
  36722. wingDorsal: {
  36723. height: math.unit(4.85, "meters"),
  36724. name: "Wing (Dorsal)",
  36725. image: {
  36726. source: "./media/characters/sabrina/wing-dorsal.svg"
  36727. }
  36728. },
  36729. wingVentral: {
  36730. height: math.unit(4.85, "meters"),
  36731. name: "Wing (Ventral)",
  36732. image: {
  36733. source: "./media/characters/sabrina/wing-ventral.svg"
  36734. }
  36735. },
  36736. },
  36737. [
  36738. {
  36739. name: "Normal",
  36740. height: math.unit(5, "meters"),
  36741. default: true
  36742. },
  36743. ]
  36744. ))
  36745. characterMakers.push(() => makeCharacter(
  36746. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36747. {
  36748. frontMaid: {
  36749. height: math.unit(5 + 5/12, "feet"),
  36750. weight: math.unit(130, "lb"),
  36751. name: "Front (Maid)",
  36752. image: {
  36753. source: "./media/characters/midnight-tales/front-maid.svg",
  36754. extra: 489/454,
  36755. bottom: 61/550
  36756. }
  36757. },
  36758. frontFormal: {
  36759. height: math.unit(5 + 5/12, "feet"),
  36760. weight: math.unit(130, "lb"),
  36761. name: "Front (Formal)",
  36762. image: {
  36763. source: "./media/characters/midnight-tales/front-formal.svg",
  36764. extra: 489/454,
  36765. bottom: 61/550
  36766. }
  36767. },
  36768. back: {
  36769. height: math.unit(5 + 5/12, "feet"),
  36770. weight: math.unit(130, "lb"),
  36771. name: "Back",
  36772. image: {
  36773. source: "./media/characters/midnight-tales/back.svg",
  36774. extra: 498/456,
  36775. bottom: 33/531
  36776. }
  36777. },
  36778. frontBeast: {
  36779. height: math.unit(40, "feet"),
  36780. weight: math.unit(64000, "lb"),
  36781. name: "Front (Beast)",
  36782. image: {
  36783. source: "./media/characters/midnight-tales/front-beast.svg",
  36784. extra: 927/860,
  36785. bottom: 53/980
  36786. }
  36787. },
  36788. backBeast: {
  36789. height: math.unit(40, "feet"),
  36790. weight: math.unit(64000, "lb"),
  36791. name: "Back (Beast)",
  36792. image: {
  36793. source: "./media/characters/midnight-tales/back-beast.svg",
  36794. extra: 929/855,
  36795. bottom: 16/945
  36796. }
  36797. },
  36798. footBeast: {
  36799. height: math.unit(6.7, "feet"),
  36800. name: "Foot (Beast)",
  36801. image: {
  36802. source: "./media/characters/midnight-tales/foot-beast.svg"
  36803. }
  36804. },
  36805. headBeast: {
  36806. height: math.unit(8, "feet"),
  36807. name: "Head (Beast)",
  36808. image: {
  36809. source: "./media/characters/midnight-tales/head-beast.svg"
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Normal",
  36816. height: math.unit(5 + 5 / 12, "feet"),
  36817. default: true
  36818. },
  36819. {
  36820. name: "Macro",
  36821. height: math.unit(25, "feet")
  36822. },
  36823. ]
  36824. ))
  36825. characterMakers.push(() => makeCharacter(
  36826. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36827. {
  36828. front: {
  36829. height: math.unit(5 + 10/12, "feet"),
  36830. name: "Front",
  36831. image: {
  36832. source: "./media/characters/argon/front.svg",
  36833. extra: 2009/1935,
  36834. bottom: 118/2127
  36835. }
  36836. },
  36837. back: {
  36838. height: math.unit(5 + 10/12, "feet"),
  36839. name: "Back",
  36840. image: {
  36841. source: "./media/characters/argon/back.svg",
  36842. extra: 2047/1992,
  36843. bottom: 20/2067
  36844. }
  36845. },
  36846. frontDressed: {
  36847. height: math.unit(5 + 10/12, "feet"),
  36848. name: "Front (Dressed)",
  36849. image: {
  36850. source: "./media/characters/argon/front-dressed.svg",
  36851. extra: 2009/1935,
  36852. bottom: 118/2127
  36853. }
  36854. },
  36855. },
  36856. [
  36857. {
  36858. name: "Normal",
  36859. height: math.unit(5 + 10/12, "feet"),
  36860. default: true
  36861. },
  36862. ]
  36863. ))
  36864. characterMakers.push(() => makeCharacter(
  36865. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36866. {
  36867. front: {
  36868. height: math.unit(8 + 6/12, "feet"),
  36869. weight: math.unit(1150, "lb"),
  36870. name: "Front",
  36871. image: {
  36872. source: "./media/characters/kichi/front.svg",
  36873. extra: 1267/1164,
  36874. bottom: 61/1328
  36875. }
  36876. },
  36877. back: {
  36878. height: math.unit(8 + 6/12, "feet"),
  36879. weight: math.unit(1150, "lb"),
  36880. name: "Back",
  36881. image: {
  36882. source: "./media/characters/kichi/back.svg",
  36883. extra: 1273/1166,
  36884. bottom: 33/1306
  36885. }
  36886. },
  36887. },
  36888. [
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(8 + 6/12, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(6, "feet"),
  36901. weight: math.unit(210, "lb"),
  36902. name: "Front",
  36903. image: {
  36904. source: "./media/characters/manetel-greyscale/front.svg",
  36905. extra: 350/312,
  36906. bottom: 8/358
  36907. }
  36908. },
  36909. },
  36910. [
  36911. {
  36912. name: "Micro",
  36913. height: math.unit(2, "inches")
  36914. },
  36915. {
  36916. name: "Normal",
  36917. height: math.unit(6, "feet"),
  36918. default: true
  36919. },
  36920. {
  36921. name: "Minimacro",
  36922. height: math.unit(17, "feet")
  36923. },
  36924. {
  36925. name: "Macro",
  36926. height: math.unit(117, "feet")
  36927. },
  36928. ]
  36929. ))
  36930. characterMakers.push(() => makeCharacter(
  36931. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36932. {
  36933. side: {
  36934. height: math.unit(5 + 1/12, "feet"),
  36935. weight: math.unit(418, "lb"),
  36936. name: "Side",
  36937. image: {
  36938. source: "./media/characters/softpurr/side.svg",
  36939. extra: 1993/1945,
  36940. bottom: 134/2127
  36941. }
  36942. },
  36943. front: {
  36944. height: math.unit(5 + 1/12, "feet"),
  36945. weight: math.unit(418, "lb"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/softpurr/front.svg",
  36949. extra: 1950/1856,
  36950. bottom: 174/2124
  36951. }
  36952. },
  36953. paw: {
  36954. height: math.unit(1, "feet"),
  36955. name: "Paw",
  36956. image: {
  36957. source: "./media/characters/softpurr/paw.svg"
  36958. }
  36959. },
  36960. },
  36961. [
  36962. {
  36963. name: "Normal",
  36964. height: math.unit(5 + 1/12, "feet"),
  36965. default: true
  36966. },
  36967. ]
  36968. ))
  36969. characterMakers.push(() => makeCharacter(
  36970. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36971. {
  36972. front: {
  36973. height: math.unit(260, "meters"),
  36974. name: "Front",
  36975. image: {
  36976. source: "./media/characters/anahita/front.svg",
  36977. extra: 665/635,
  36978. bottom: 89/754
  36979. }
  36980. },
  36981. },
  36982. [
  36983. {
  36984. name: "Macro",
  36985. height: math.unit(260, "meters"),
  36986. default: true
  36987. },
  36988. ]
  36989. ))
  36990. characterMakers.push(() => makeCharacter(
  36991. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36992. {
  36993. front: {
  36994. height: math.unit(4 + 10/12, "feet"),
  36995. weight: math.unit(160, "lb"),
  36996. name: "Front",
  36997. image: {
  36998. source: "./media/characters/chip-mouse/front.svg",
  36999. extra: 3528/3408,
  37000. bottom: 0/3528
  37001. }
  37002. },
  37003. frontNsfw: {
  37004. height: math.unit(4 + 10/12, "feet"),
  37005. weight: math.unit(160, "lb"),
  37006. name: "Front (NSFW)",
  37007. image: {
  37008. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37009. extra: 3528/3408,
  37010. bottom: 0/3528
  37011. }
  37012. },
  37013. },
  37014. [
  37015. {
  37016. name: "Normal",
  37017. height: math.unit(4 + 10/12, "feet"),
  37018. default: true
  37019. },
  37020. ]
  37021. ))
  37022. characterMakers.push(() => makeCharacter(
  37023. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37024. {
  37025. side: {
  37026. height: math.unit(10, "feet"),
  37027. weight: math.unit(14000, "lb"),
  37028. name: "Side",
  37029. image: {
  37030. source: "./media/characters/kremm/side.svg",
  37031. extra: 1390/1053,
  37032. bottom: 90/1480
  37033. }
  37034. },
  37035. gut: {
  37036. height: math.unit(5.8, "feet"),
  37037. name: "Gut",
  37038. image: {
  37039. source: "./media/characters/kremm/gut.svg"
  37040. }
  37041. },
  37042. ass: {
  37043. height: math.unit(6.1, "feet"),
  37044. name: "Ass",
  37045. image: {
  37046. source: "./media/characters/kremm/ass.svg"
  37047. }
  37048. },
  37049. jaws: {
  37050. height: math.unit(2.2, "feet"),
  37051. name: "Jaws",
  37052. image: {
  37053. source: "./media/characters/kremm/jaws.svg"
  37054. }
  37055. },
  37056. dick: {
  37057. height: math.unit(4.26, "feet"),
  37058. name: "Dick",
  37059. image: {
  37060. source: "./media/characters/kremm/dick.svg"
  37061. }
  37062. },
  37063. },
  37064. [
  37065. {
  37066. name: "Normal",
  37067. height: math.unit(10, "feet"),
  37068. default: true
  37069. },
  37070. ]
  37071. ))
  37072. characterMakers.push(() => makeCharacter(
  37073. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37074. {
  37075. front: {
  37076. height: math.unit(30, "stories"),
  37077. name: "Front",
  37078. image: {
  37079. source: "./media/characters/kai/front.svg",
  37080. extra: 1892/1718,
  37081. bottom: 162/2054
  37082. }
  37083. },
  37084. },
  37085. [
  37086. {
  37087. name: "Macro",
  37088. height: math.unit(30, "stories"),
  37089. default: true
  37090. },
  37091. ]
  37092. ))
  37093. characterMakers.push(() => makeCharacter(
  37094. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37095. {
  37096. front: {
  37097. height: math.unit(6 + 4/12, "feet"),
  37098. weight: math.unit(145, "lb"),
  37099. name: "Front",
  37100. image: {
  37101. source: "./media/characters/sykes/front.svg",
  37102. extra: 1321 / 1187,
  37103. bottom: 66 / 1387
  37104. }
  37105. },
  37106. back: {
  37107. height: math.unit(6 + 4/12, "feet"),
  37108. weight: math.unit(145, "lb"),
  37109. name: "Back",
  37110. image: {
  37111. source: "./media/characters/sykes/back.svg",
  37112. extra: 1326/1181,
  37113. bottom: 31/1357
  37114. }
  37115. },
  37116. traditionalOutfit: {
  37117. height: math.unit(6 + 4/12, "feet"),
  37118. weight: math.unit(145, "lb"),
  37119. name: "Traditional Outfit",
  37120. image: {
  37121. source: "./media/characters/sykes/traditional-outfit.svg",
  37122. extra: 1321 / 1187,
  37123. bottom: 66 / 1387
  37124. }
  37125. },
  37126. adventureOutfit: {
  37127. height: math.unit(6 + 4/12, "feet"),
  37128. weight: math.unit(145, "lb"),
  37129. name: "Adventure Outfit",
  37130. image: {
  37131. source: "./media/characters/sykes/adventure-outfit.svg",
  37132. extra: 1321 / 1187,
  37133. bottom: 66 / 1387
  37134. }
  37135. },
  37136. handLeft: {
  37137. height: math.unit(0.9, "feet"),
  37138. name: "Hand (Left)",
  37139. image: {
  37140. source: "./media/characters/sykes/hand-left.svg"
  37141. }
  37142. },
  37143. handRight: {
  37144. height: math.unit(0.839, "feet"),
  37145. name: "Hand (Right)",
  37146. image: {
  37147. source: "./media/characters/sykes/hand-right.svg"
  37148. }
  37149. },
  37150. leftFoot: {
  37151. height: math.unit(1.2, "feet"),
  37152. name: "Foot (Left)",
  37153. image: {
  37154. source: "./media/characters/sykes/foot-left.svg"
  37155. }
  37156. },
  37157. rightFoot: {
  37158. height: math.unit(1.2, "feet"),
  37159. name: "Foot (Right)",
  37160. image: {
  37161. source: "./media/characters/sykes/foot-right.svg"
  37162. }
  37163. },
  37164. maw: {
  37165. height: math.unit(1.93, "feet"),
  37166. name: "Maw",
  37167. image: {
  37168. source: "./media/characters/sykes/maw.svg"
  37169. }
  37170. },
  37171. teeth: {
  37172. height: math.unit(0.51, "feet"),
  37173. name: "Teeth",
  37174. image: {
  37175. source: "./media/characters/sykes/teeth.svg"
  37176. }
  37177. },
  37178. tongue: {
  37179. height: math.unit(2.13, "feet"),
  37180. name: "Tongue",
  37181. image: {
  37182. source: "./media/characters/sykes/tongue.svg"
  37183. }
  37184. },
  37185. uvula: {
  37186. height: math.unit(0.16, "feet"),
  37187. name: "Uvula",
  37188. image: {
  37189. source: "./media/characters/sykes/uvula.svg"
  37190. }
  37191. },
  37192. collar: {
  37193. height: math.unit(0.287, "feet"),
  37194. name: "Collar",
  37195. image: {
  37196. source: "./media/characters/sykes/collar.svg"
  37197. }
  37198. },
  37199. tail: {
  37200. height: math.unit(3.8, "feet"),
  37201. name: "Tail",
  37202. image: {
  37203. source: "./media/characters/sykes/tail.svg"
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Shrunken",
  37210. height: math.unit(5, "inches")
  37211. },
  37212. {
  37213. name: "Normal",
  37214. height: math.unit(6 + 4 / 12, "feet"),
  37215. default: true
  37216. },
  37217. {
  37218. name: "Big",
  37219. height: math.unit(15, "feet")
  37220. },
  37221. ]
  37222. ))
  37223. characterMakers.push(() => makeCharacter(
  37224. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37225. {
  37226. front: {
  37227. height: math.unit(5 + 8/12, "feet"),
  37228. weight: math.unit(190, "lb"),
  37229. name: "Front",
  37230. image: {
  37231. source: "./media/characters/oven-otter/front.svg",
  37232. extra: 1809/1740,
  37233. bottom: 181/1990
  37234. }
  37235. },
  37236. back: {
  37237. height: math.unit(5 + 8/12, "feet"),
  37238. weight: math.unit(190, "lb"),
  37239. name: "Back",
  37240. image: {
  37241. source: "./media/characters/oven-otter/back.svg",
  37242. extra: 1709/1635,
  37243. bottom: 118/1827
  37244. }
  37245. },
  37246. hand: {
  37247. height: math.unit(1.07, "feet"),
  37248. name: "Hand",
  37249. image: {
  37250. source: "./media/characters/oven-otter/hand.svg"
  37251. }
  37252. },
  37253. beans: {
  37254. height: math.unit(1.74, "feet"),
  37255. name: "Beans",
  37256. image: {
  37257. source: "./media/characters/oven-otter/beans.svg"
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Micro",
  37264. height: math.unit(0.5, "inches")
  37265. },
  37266. {
  37267. name: "Normal",
  37268. height: math.unit(5 + 8/12, "feet"),
  37269. default: true
  37270. },
  37271. {
  37272. name: "Macro",
  37273. height: math.unit(250, "feet")
  37274. },
  37275. {
  37276. name: "Really High",
  37277. height: math.unit(420, "feet")
  37278. },
  37279. ]
  37280. ))
  37281. characterMakers.push(() => makeCharacter(
  37282. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37283. {
  37284. front: {
  37285. height: math.unit(5, "meters"),
  37286. weight: math.unit(292000000000000, "kg"),
  37287. name: "Front",
  37288. image: {
  37289. source: "./media/characters/devourer/front.svg",
  37290. extra: 1800/1733,
  37291. bottom: 211/2011
  37292. }
  37293. },
  37294. maw: {
  37295. height: math.unit(1.1, "meter"),
  37296. name: "Maw",
  37297. image: {
  37298. source: "./media/characters/devourer/maw.svg"
  37299. }
  37300. },
  37301. },
  37302. [
  37303. {
  37304. name: "Small",
  37305. height: math.unit(3, "meters")
  37306. },
  37307. {
  37308. name: "Large",
  37309. height: math.unit(5, "meters"),
  37310. default: true
  37311. },
  37312. ]
  37313. ))
  37314. characterMakers.push(() => makeCharacter(
  37315. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37316. {
  37317. front: {
  37318. height: math.unit(6, "feet"),
  37319. weight: math.unit(400, "lb"),
  37320. name: "Front",
  37321. image: {
  37322. source: "./media/characters/ellarby/front.svg",
  37323. extra: 1909/1763,
  37324. bottom: 80/1989
  37325. }
  37326. },
  37327. back: {
  37328. height: math.unit(6, "feet"),
  37329. weight: math.unit(400, "lb"),
  37330. name: "Back",
  37331. image: {
  37332. source: "./media/characters/ellarby/back.svg",
  37333. extra: 1914/1784,
  37334. bottom: 172/2086
  37335. }
  37336. },
  37337. },
  37338. [
  37339. {
  37340. name: "Mischief",
  37341. height: math.unit(18, "inches")
  37342. },
  37343. {
  37344. name: "Trouble",
  37345. height: math.unit(12, "feet")
  37346. },
  37347. {
  37348. name: "Havoc",
  37349. height: math.unit(200, "feet"),
  37350. default: true
  37351. },
  37352. {
  37353. name: "Pandemonium",
  37354. height: math.unit(1, "mile")
  37355. },
  37356. {
  37357. name: "Catastrophe",
  37358. height: math.unit(100, "miles")
  37359. },
  37360. ]
  37361. ))
  37362. characterMakers.push(() => makeCharacter(
  37363. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37364. {
  37365. front: {
  37366. height: math.unit(4.7, "meters"),
  37367. weight: math.unit(6500, "kg"),
  37368. name: "Front",
  37369. image: {
  37370. source: "./media/characters/vex/front.svg",
  37371. extra: 1288/1140,
  37372. bottom: 100/1388
  37373. }
  37374. },
  37375. },
  37376. [
  37377. {
  37378. name: "Normal",
  37379. height: math.unit(4.7, "meters"),
  37380. default: true
  37381. },
  37382. ]
  37383. ))
  37384. characterMakers.push(() => makeCharacter(
  37385. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37386. {
  37387. normal: {
  37388. height: math.unit(6, "feet"),
  37389. weight: math.unit(350, "lb"),
  37390. name: "Normal",
  37391. image: {
  37392. source: "./media/characters/teshy/normal.svg",
  37393. extra: 1795/1735,
  37394. bottom: 16/1811
  37395. }
  37396. },
  37397. monsterFront: {
  37398. height: math.unit(12, "feet"),
  37399. weight: math.unit(4700, "lb"),
  37400. name: "Monster (Front)",
  37401. image: {
  37402. source: "./media/characters/teshy/monster-front.svg",
  37403. extra: 2042/2034,
  37404. bottom: 128/2170
  37405. }
  37406. },
  37407. monsterSide: {
  37408. height: math.unit(12, "feet"),
  37409. weight: math.unit(4700, "lb"),
  37410. name: "Monster (Side)",
  37411. image: {
  37412. source: "./media/characters/teshy/monster-side.svg",
  37413. extra: 2067/2056,
  37414. bottom: 70/2137
  37415. }
  37416. },
  37417. monsterBack: {
  37418. height: math.unit(12, "feet"),
  37419. weight: math.unit(4700, "lb"),
  37420. name: "Monster (Back)",
  37421. image: {
  37422. source: "./media/characters/teshy/monster-back.svg",
  37423. extra: 1921/1914,
  37424. bottom: 171/2092
  37425. }
  37426. },
  37427. },
  37428. [
  37429. {
  37430. name: "Normal",
  37431. height: math.unit(6, "feet"),
  37432. default: true
  37433. },
  37434. ]
  37435. ))
  37436. characterMakers.push(() => makeCharacter(
  37437. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37438. {
  37439. front: {
  37440. height: math.unit(6, "feet"),
  37441. name: "Front",
  37442. image: {
  37443. source: "./media/characters/ramey/front.svg",
  37444. extra: 790/787,
  37445. bottom: 27/817
  37446. }
  37447. },
  37448. },
  37449. [
  37450. {
  37451. name: "Normal",
  37452. height: math.unit(6, "feet"),
  37453. default: true
  37454. },
  37455. ]
  37456. ))
  37457. characterMakers.push(() => makeCharacter(
  37458. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37459. {
  37460. front: {
  37461. height: math.unit(5 + 5/12, "feet"),
  37462. weight: math.unit(120, "lb"),
  37463. name: "Front",
  37464. image: {
  37465. source: "./media/characters/phirae/front.svg",
  37466. extra: 2491/2436,
  37467. bottom: 38/2529
  37468. }
  37469. },
  37470. },
  37471. [
  37472. {
  37473. name: "Normal",
  37474. height: math.unit(5 + 5/12, "feet"),
  37475. default: true
  37476. },
  37477. ]
  37478. ))
  37479. characterMakers.push(() => makeCharacter(
  37480. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37481. {
  37482. front: {
  37483. height: math.unit(5 + 3/12, "feet"),
  37484. name: "Front",
  37485. image: {
  37486. source: "./media/characters/stagglas/front.svg",
  37487. extra: 962/882,
  37488. bottom: 53/1015
  37489. }
  37490. },
  37491. feral: {
  37492. height: math.unit(335, "cm"),
  37493. name: "Feral",
  37494. image: {
  37495. source: "./media/characters/stagglas/feral.svg",
  37496. extra: 1732/1090,
  37497. bottom: 48/1780
  37498. }
  37499. },
  37500. },
  37501. [
  37502. {
  37503. name: "Normal",
  37504. height: math.unit(5 + 3/12, "feet"),
  37505. default: true
  37506. },
  37507. ]
  37508. ))
  37509. characterMakers.push(() => makeCharacter(
  37510. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37511. {
  37512. front: {
  37513. height: math.unit(5 + 4/12, "feet"),
  37514. weight: math.unit(145, "lb"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/starra/front.svg",
  37518. extra: 1790/1691,
  37519. bottom: 91/1881
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(5 + 4/12, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(3.5, "meters"),
  37536. name: "Front",
  37537. image: {
  37538. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37539. extra: 1248/972,
  37540. bottom: 38/1286
  37541. }
  37542. },
  37543. },
  37544. [
  37545. {
  37546. name: "Normal",
  37547. height: math.unit(3.5, "meters"),
  37548. default: true
  37549. },
  37550. ]
  37551. ))
  37552. characterMakers.push(() => makeCharacter(
  37553. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37554. {
  37555. side: {
  37556. height: math.unit(8 + 2/12, "feet"),
  37557. weight: math.unit(1240, "lb"),
  37558. name: "Side",
  37559. image: {
  37560. source: "./media/characters/mika-valentine/side.svg",
  37561. extra: 2670/2501,
  37562. bottom: 250/2920
  37563. }
  37564. },
  37565. },
  37566. [
  37567. {
  37568. name: "Normal",
  37569. height: math.unit(8 + 2/12, "feet"),
  37570. default: true
  37571. },
  37572. ]
  37573. ))
  37574. characterMakers.push(() => makeCharacter(
  37575. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37576. {
  37577. front: {
  37578. height: math.unit(7 + 2/12, "feet"),
  37579. name: "Front",
  37580. image: {
  37581. source: "./media/characters/xoltol/front.svg",
  37582. extra: 2212/2124,
  37583. bottom: 84/2296
  37584. }
  37585. },
  37586. side: {
  37587. height: math.unit(7 + 2/12, "feet"),
  37588. name: "Side",
  37589. image: {
  37590. source: "./media/characters/xoltol/side.svg",
  37591. extra: 2273/2197,
  37592. bottom: 26/2299
  37593. }
  37594. },
  37595. hand: {
  37596. height: math.unit(2.5, "feet"),
  37597. name: "Hand",
  37598. image: {
  37599. source: "./media/characters/xoltol/hand.svg"
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Small-ish",
  37606. height: math.unit(5 + 11/12, "feet")
  37607. },
  37608. {
  37609. name: "Normal",
  37610. height: math.unit(7 + 2/12, "feet")
  37611. },
  37612. {
  37613. name: "\"Macro\"",
  37614. height: math.unit(14 + 9/12, "feet"),
  37615. default: true
  37616. },
  37617. {
  37618. name: "Alternate Height",
  37619. height: math.unit(20, "feet")
  37620. },
  37621. {
  37622. name: "Actually Macro",
  37623. height: math.unit(100, "feet")
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37629. {
  37630. front: {
  37631. height: math.unit(5 + 2/12, "feet"),
  37632. weight: math.unit(75, "kg"),
  37633. name: "Front",
  37634. image: {
  37635. source: "./media/characters/kotetsu-redwood/front.svg",
  37636. extra: 1053/942,
  37637. bottom: 60/1113
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(5 + 2/12, "feet"),
  37645. default: true
  37646. },
  37647. ]
  37648. ))
  37649. characterMakers.push(() => makeCharacter(
  37650. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37651. {
  37652. front: {
  37653. height: math.unit(2.4, "meters"),
  37654. weight: math.unit(125, "kg"),
  37655. name: "Front",
  37656. image: {
  37657. source: "./media/characters/lilith/front.svg",
  37658. extra: 1590/1513,
  37659. bottom: 203/1793
  37660. }
  37661. },
  37662. },
  37663. [
  37664. {
  37665. name: "Humanoid",
  37666. height: math.unit(2.4, "meters")
  37667. },
  37668. {
  37669. name: "Normal",
  37670. height: math.unit(6, "meters"),
  37671. default: true
  37672. },
  37673. {
  37674. name: "Largest",
  37675. height: math.unit(55, "meters")
  37676. },
  37677. ]
  37678. ))
  37679. characterMakers.push(() => makeCharacter(
  37680. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37681. {
  37682. front: {
  37683. height: math.unit(8 + 4/12, "feet"),
  37684. weight: math.unit(535, "lb"),
  37685. name: "Front",
  37686. image: {
  37687. source: "./media/characters/beh'kah-bolger/front.svg",
  37688. extra: 1660/1603,
  37689. bottom: 37/1697
  37690. }
  37691. },
  37692. },
  37693. [
  37694. {
  37695. name: "Normal",
  37696. height: math.unit(8 + 4/12, "feet"),
  37697. default: true
  37698. },
  37699. {
  37700. name: "Kaiju",
  37701. height: math.unit(250, "feet")
  37702. },
  37703. {
  37704. name: "Still Growing",
  37705. height: math.unit(10, "miles")
  37706. },
  37707. {
  37708. name: "Continental",
  37709. height: math.unit(5000, "miles")
  37710. },
  37711. {
  37712. name: "Final Form",
  37713. height: math.unit(2500000, "miles")
  37714. },
  37715. ]
  37716. ))
  37717. characterMakers.push(() => makeCharacter(
  37718. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37719. {
  37720. front: {
  37721. height: math.unit(7 + 2/12, "feet"),
  37722. weight: math.unit(230, "kg"),
  37723. name: "Front",
  37724. image: {
  37725. source: "./media/characters/tatyana-milewska/front.svg",
  37726. extra: 1199/1150,
  37727. bottom: 86/1285
  37728. }
  37729. },
  37730. },
  37731. [
  37732. {
  37733. name: "Normal",
  37734. height: math.unit(7 + 2/12, "feet"),
  37735. default: true
  37736. },
  37737. {
  37738. name: "Big",
  37739. height: math.unit(12, "feet")
  37740. },
  37741. {
  37742. name: "Minimacro",
  37743. height: math.unit(20, "feet")
  37744. },
  37745. {
  37746. name: "Macro",
  37747. height: math.unit(120, "feet")
  37748. },
  37749. ]
  37750. ))
  37751. characterMakers.push(() => makeCharacter(
  37752. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37753. {
  37754. front: {
  37755. height: math.unit(7 + 8/12, "feet"),
  37756. weight: math.unit(152, "kg"),
  37757. name: "Front",
  37758. image: {
  37759. source: "./media/characters/helen-arri/front.svg",
  37760. extra: 440/423,
  37761. bottom: 14/454
  37762. }
  37763. },
  37764. back: {
  37765. height: math.unit(7 + 8/12, "feet"),
  37766. weight: math.unit(152, "kg"),
  37767. name: "Back",
  37768. image: {
  37769. source: "./media/characters/helen-arri/back.svg",
  37770. extra: 443/426,
  37771. bottom: 8/451
  37772. }
  37773. },
  37774. },
  37775. [
  37776. {
  37777. name: "Normal",
  37778. height: math.unit(7 + 8/12, "feet"),
  37779. default: true
  37780. },
  37781. {
  37782. name: "Big",
  37783. height: math.unit(14, "feet")
  37784. },
  37785. {
  37786. name: "Minimacro",
  37787. height: math.unit(24, "feet")
  37788. },
  37789. {
  37790. name: "Macro",
  37791. height: math.unit(140, "feet")
  37792. },
  37793. ]
  37794. ))
  37795. characterMakers.push(() => makeCharacter(
  37796. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37797. {
  37798. front: {
  37799. height: math.unit(6, "meters"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/ehanu-rehu/front.svg",
  37803. extra: 1800/1800,
  37804. bottom: 59/1859
  37805. }
  37806. },
  37807. },
  37808. [
  37809. {
  37810. name: "Normal",
  37811. height: math.unit(6, "meters"),
  37812. default: true
  37813. },
  37814. ]
  37815. ))
  37816. characterMakers.push(() => makeCharacter(
  37817. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37818. {
  37819. front: {
  37820. height: math.unit(7 + 3/12, "feet"),
  37821. name: "Front",
  37822. image: {
  37823. source: "./media/characters/renholder/front.svg",
  37824. extra: 3096/2960,
  37825. bottom: 250/3346
  37826. }
  37827. },
  37828. },
  37829. [
  37830. {
  37831. name: "Normal Bat",
  37832. height: math.unit(7 + 3/12, "feet"),
  37833. default: true
  37834. },
  37835. {
  37836. name: "Slightly Tall Bat",
  37837. height: math.unit(100, "feet")
  37838. },
  37839. {
  37840. name: "Big Bat",
  37841. height: math.unit(1000, "feet")
  37842. },
  37843. {
  37844. name: "City-Sized Bat",
  37845. height: math.unit(200000, "feet")
  37846. },
  37847. {
  37848. name: "Bigger Bat",
  37849. height: math.unit(10000, "miles")
  37850. },
  37851. {
  37852. name: "Solar Sized Bat",
  37853. height: math.unit(100, "AU")
  37854. },
  37855. {
  37856. name: "Galactic Bat",
  37857. height: math.unit(200000, "lightyears")
  37858. },
  37859. {
  37860. name: "Universally Known Bat",
  37861. height: math.unit(1, "universe")
  37862. },
  37863. ]
  37864. ))
  37865. characterMakers.push(() => makeCharacter(
  37866. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37867. {
  37868. front: {
  37869. height: math.unit(6 + 11/12, "feet"),
  37870. weight: math.unit(250, "lb"),
  37871. name: "Front",
  37872. image: {
  37873. source: "./media/characters/cookiecat/front.svg",
  37874. extra: 893/827,
  37875. bottom: 14/907
  37876. }
  37877. },
  37878. },
  37879. [
  37880. {
  37881. name: "Micro",
  37882. height: math.unit(3, "inches")
  37883. },
  37884. {
  37885. name: "Normal",
  37886. height: math.unit(6 + 11/12, "feet"),
  37887. default: true
  37888. },
  37889. {
  37890. name: "Macro",
  37891. height: math.unit(100, "feet")
  37892. },
  37893. {
  37894. name: "Macro+",
  37895. height: math.unit(404, "feet")
  37896. },
  37897. {
  37898. name: "Megamacro",
  37899. height: math.unit(165, "miles")
  37900. },
  37901. {
  37902. name: "Planetary",
  37903. height: math.unit(4600, "miles")
  37904. },
  37905. ]
  37906. ))
  37907. characterMakers.push(() => makeCharacter(
  37908. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37909. {
  37910. front: {
  37911. height: math.unit(10 + 3/12, "feet"),
  37912. weight: math.unit(1500, "lb"),
  37913. name: "Front",
  37914. image: {
  37915. source: "./media/characters/tux-kusanagi/front.svg",
  37916. extra: 944/840,
  37917. bottom: 39/983
  37918. }
  37919. },
  37920. back: {
  37921. height: math.unit(10 + 3/12, "feet"),
  37922. weight: math.unit(1500, "lb"),
  37923. name: "Back",
  37924. image: {
  37925. source: "./media/characters/tux-kusanagi/back.svg",
  37926. extra: 941/842,
  37927. bottom: 28/969
  37928. }
  37929. },
  37930. rump: {
  37931. height: math.unit(5.25, "feet"),
  37932. name: "Rump",
  37933. image: {
  37934. source: "./media/characters/tux-kusanagi/rump.svg"
  37935. }
  37936. },
  37937. beak: {
  37938. height: math.unit(1.54, "feet"),
  37939. name: "Beak",
  37940. image: {
  37941. source: "./media/characters/tux-kusanagi/beak.svg"
  37942. }
  37943. },
  37944. },
  37945. [
  37946. {
  37947. name: "Normal",
  37948. height: math.unit(10 + 3/12, "feet"),
  37949. default: true
  37950. },
  37951. ]
  37952. ))
  37953. characterMakers.push(() => makeCharacter(
  37954. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37955. {
  37956. front: {
  37957. height: math.unit(58, "feet"),
  37958. weight: math.unit(200, "tons"),
  37959. name: "Front",
  37960. image: {
  37961. source: "./media/characters/uzarmazari/front.svg",
  37962. extra: 1575/1455,
  37963. bottom: 152/1727
  37964. }
  37965. },
  37966. back: {
  37967. height: math.unit(58, "feet"),
  37968. weight: math.unit(200, "tons"),
  37969. name: "Back",
  37970. image: {
  37971. source: "./media/characters/uzarmazari/back.svg",
  37972. extra: 1585/1510,
  37973. bottom: 157/1742
  37974. }
  37975. },
  37976. head: {
  37977. height: math.unit(26, "feet"),
  37978. name: "Head",
  37979. image: {
  37980. source: "./media/characters/uzarmazari/head.svg"
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(58, "feet"),
  37988. default: true
  37989. },
  37990. ]
  37991. ))
  37992. characterMakers.push(() => makeCharacter(
  37993. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37994. {
  37995. side: {
  37996. height: math.unit(15, "feet"),
  37997. name: "Side",
  37998. image: {
  37999. source: "./media/characters/akitu/side.svg",
  38000. extra: 1421/1321,
  38001. bottom: 157/1578
  38002. }
  38003. },
  38004. front: {
  38005. height: math.unit(15, "feet"),
  38006. name: "Front",
  38007. image: {
  38008. source: "./media/characters/akitu/front.svg",
  38009. extra: 1435/1326,
  38010. bottom: 232/1667
  38011. }
  38012. },
  38013. },
  38014. [
  38015. {
  38016. name: "Normal",
  38017. height: math.unit(15, "feet"),
  38018. default: true
  38019. },
  38020. ]
  38021. ))
  38022. characterMakers.push(() => makeCharacter(
  38023. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38024. {
  38025. front: {
  38026. height: math.unit(10 + 8/12, "feet"),
  38027. name: "Front",
  38028. image: {
  38029. source: "./media/characters/azalie-croixland/front.svg",
  38030. extra: 1972/1856,
  38031. bottom: 31/2003
  38032. }
  38033. },
  38034. },
  38035. [
  38036. {
  38037. name: "Original Height",
  38038. height: math.unit(5 + 4/12, "feet")
  38039. },
  38040. {
  38041. name: "Normal Height",
  38042. height: math.unit(10 + 8/12, "feet"),
  38043. default: true
  38044. },
  38045. ]
  38046. ))
  38047. characterMakers.push(() => makeCharacter(
  38048. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38049. {
  38050. side: {
  38051. height: math.unit(7 + 1/12, "feet"),
  38052. weight: math.unit(245, "lb"),
  38053. name: "Side",
  38054. image: {
  38055. source: "./media/characters/kavus-kazian/side.svg",
  38056. extra: 349/342,
  38057. bottom: 15/364
  38058. }
  38059. },
  38060. },
  38061. [
  38062. {
  38063. name: "Normal",
  38064. height: math.unit(7 + 1/12, "feet"),
  38065. default: true
  38066. },
  38067. ]
  38068. ))
  38069. characterMakers.push(() => makeCharacter(
  38070. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38071. {
  38072. normalFront: {
  38073. height: math.unit(5 + 11/12, "feet"),
  38074. name: "Front",
  38075. image: {
  38076. source: "./media/characters/moonlight-rose/normal-front.svg",
  38077. extra: 1980/1825,
  38078. bottom: 18/1998
  38079. },
  38080. form: "normal",
  38081. default: true
  38082. },
  38083. normalBack: {
  38084. height: math.unit(5 + 11/12, "feet"),
  38085. name: "Back",
  38086. image: {
  38087. source: "./media/characters/moonlight-rose/normal-back.svg",
  38088. extra: 2010/1839,
  38089. bottom: 10/2020
  38090. },
  38091. form: "normal"
  38092. },
  38093. demonFront: {
  38094. height: math.unit(1.5, "earths"),
  38095. name: "Front",
  38096. image: {
  38097. source: "./media/characters/moonlight-rose/demon.svg",
  38098. extra: 1400/1294,
  38099. bottom: 45/1445
  38100. },
  38101. form: "demon",
  38102. default: true
  38103. },
  38104. terraFront: {
  38105. height: math.unit(1.5, "earths"),
  38106. name: "Front",
  38107. image: {
  38108. source: "./media/characters/moonlight-rose/terra.svg"
  38109. },
  38110. form: "terra",
  38111. default: true
  38112. },
  38113. jupiterFront: {
  38114. height: math.unit(69911*2, "km"),
  38115. name: "Front",
  38116. image: {
  38117. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38118. extra: 1367/1286,
  38119. bottom: 55/1422
  38120. },
  38121. form: "jupiter",
  38122. default: true
  38123. },
  38124. neptuneFront: {
  38125. height: math.unit(24622*2, "feet"),
  38126. name: "Front",
  38127. image: {
  38128. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38129. extra: 1851/1712,
  38130. bottom: 0/1851
  38131. },
  38132. form: "neptune",
  38133. default: true
  38134. },
  38135. },
  38136. [
  38137. {
  38138. name: "\"Natural\" Height",
  38139. height: math.unit(5 + 11/12, "feet"),
  38140. form: "normal"
  38141. },
  38142. {
  38143. name: "Smallest comfortable size",
  38144. height: math.unit(40, "meters"),
  38145. form: "normal"
  38146. },
  38147. {
  38148. name: "Common size",
  38149. height: math.unit(50, "km"),
  38150. form: "normal",
  38151. default: true
  38152. },
  38153. {
  38154. name: "Normal",
  38155. height: math.unit(1.5, "earths"),
  38156. form: "demon",
  38157. default: true
  38158. },
  38159. {
  38160. name: "Universal",
  38161. height: math.unit(15, "universes"),
  38162. form: "demon"
  38163. },
  38164. {
  38165. name: "Earth",
  38166. height: math.unit(1.5, "earths"),
  38167. form: "terra",
  38168. default: true
  38169. },
  38170. {
  38171. name: "Super Earth",
  38172. height: math.unit(67.5, "earths"),
  38173. form: "terra"
  38174. },
  38175. {
  38176. name: "Doesn't fit in a solar system...",
  38177. height: math.unit(1, "galaxy"),
  38178. form: "terra"
  38179. },
  38180. {
  38181. name: "Saturn",
  38182. height: math.unit(58232*2, "km"),
  38183. form: "jupiter"
  38184. },
  38185. {
  38186. name: "Jupiter",
  38187. height: math.unit(69911*2, "km"),
  38188. form: "jupiter",
  38189. default: true
  38190. },
  38191. {
  38192. name: "HD 100546 b",
  38193. height: math.unit(482938, "km"),
  38194. form: "jupiter"
  38195. },
  38196. {
  38197. name: "Enceladus",
  38198. height: math.unit(513*2, "km"),
  38199. form: "neptune"
  38200. },
  38201. {
  38202. name: "Europe",
  38203. height: math.unit(1560*2, "km"),
  38204. form: "neptune"
  38205. },
  38206. {
  38207. name: "Neptune",
  38208. height: math.unit(24622*2, "km"),
  38209. form: "neptune",
  38210. default: true
  38211. },
  38212. {
  38213. name: "CoRoT-9b",
  38214. height: math.unit(75067*2, "km"),
  38215. form: "neptune"
  38216. },
  38217. ],
  38218. {
  38219. "normal": {
  38220. name: "Normal",
  38221. default: true
  38222. },
  38223. "demon": {
  38224. name: "Demon"
  38225. },
  38226. "terra": {
  38227. name: "Terra"
  38228. },
  38229. "jupiter": {
  38230. name: "Jupiter"
  38231. },
  38232. "neptune": {
  38233. name: "Neptune"
  38234. }
  38235. }
  38236. ))
  38237. characterMakers.push(() => makeCharacter(
  38238. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38239. {
  38240. front: {
  38241. height: math.unit(16, "feet"),
  38242. weight: math.unit(610, "kg"),
  38243. name: "Front",
  38244. image: {
  38245. source: "./media/characters/huckle/front.svg",
  38246. extra: 1731/1625,
  38247. bottom: 33/1764
  38248. }
  38249. },
  38250. back: {
  38251. height: math.unit(16, "feet"),
  38252. weight: math.unit(610, "kg"),
  38253. name: "Back",
  38254. image: {
  38255. source: "./media/characters/huckle/back.svg",
  38256. extra: 1738/1651,
  38257. bottom: 37/1775
  38258. }
  38259. },
  38260. laughing: {
  38261. height: math.unit(3.75, "feet"),
  38262. name: "Laughing",
  38263. image: {
  38264. source: "./media/characters/huckle/laughing.svg"
  38265. }
  38266. },
  38267. angry: {
  38268. height: math.unit(4.15, "feet"),
  38269. name: "Angry",
  38270. image: {
  38271. source: "./media/characters/huckle/angry.svg"
  38272. }
  38273. },
  38274. },
  38275. [
  38276. {
  38277. name: "Normal",
  38278. height: math.unit(16, "feet"),
  38279. default: true
  38280. },
  38281. {
  38282. name: "Mini Macro",
  38283. height: math.unit(463, "feet")
  38284. },
  38285. {
  38286. name: "Macro",
  38287. height: math.unit(1680, "meters")
  38288. },
  38289. {
  38290. name: "Mega Macro",
  38291. height: math.unit(175, "km")
  38292. },
  38293. {
  38294. name: "Terra Macro",
  38295. height: math.unit(32, "gigameters")
  38296. },
  38297. {
  38298. name: "Multiverse+",
  38299. height: math.unit(2.56e23, "yottameters")
  38300. },
  38301. ]
  38302. ))
  38303. characterMakers.push(() => makeCharacter(
  38304. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38305. {
  38306. front: {
  38307. height: math.unit(6 + 9/12, "feet"),
  38308. weight: math.unit(280, "lb"),
  38309. name: "Front",
  38310. image: {
  38311. source: "./media/characters/candy/front.svg",
  38312. extra: 234/217,
  38313. bottom: 11/245
  38314. }
  38315. },
  38316. },
  38317. [
  38318. {
  38319. name: "Really Small",
  38320. height: math.unit(0.1, "nm")
  38321. },
  38322. {
  38323. name: "Micro",
  38324. height: math.unit(2, "inches")
  38325. },
  38326. {
  38327. name: "Normal",
  38328. height: math.unit(6 + 9/12, "feet"),
  38329. default: true
  38330. },
  38331. {
  38332. name: "Small Macro",
  38333. height: math.unit(69, "feet")
  38334. },
  38335. {
  38336. name: "Macro",
  38337. height: math.unit(160, "feet")
  38338. },
  38339. {
  38340. name: "Megamacro",
  38341. height: math.unit(22000, "miles")
  38342. },
  38343. {
  38344. name: "Gigamacro",
  38345. height: math.unit(50000, "miles")
  38346. },
  38347. ]
  38348. ))
  38349. characterMakers.push(() => makeCharacter(
  38350. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38351. {
  38352. front: {
  38353. height: math.unit(4, "feet"),
  38354. weight: math.unit(90, "lb"),
  38355. name: "Front",
  38356. image: {
  38357. source: "./media/characters/joey-mcdonald/front.svg",
  38358. extra: 1059/852,
  38359. bottom: 33/1092
  38360. }
  38361. },
  38362. back: {
  38363. height: math.unit(4, "feet"),
  38364. weight: math.unit(90, "lb"),
  38365. name: "Back",
  38366. image: {
  38367. source: "./media/characters/joey-mcdonald/back.svg",
  38368. extra: 1077/879,
  38369. bottom: 5/1082
  38370. }
  38371. },
  38372. frontKobold: {
  38373. height: math.unit(4, "feet"),
  38374. weight: math.unit(100, "lb"),
  38375. name: "Front-kobold",
  38376. image: {
  38377. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38378. extra: 1480/1367,
  38379. bottom: 0/1480
  38380. }
  38381. },
  38382. backKobold: {
  38383. height: math.unit(4, "feet"),
  38384. weight: math.unit(100, "lb"),
  38385. name: "Back-kobold",
  38386. image: {
  38387. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38388. extra: 1449/1361,
  38389. bottom: 0/1449
  38390. }
  38391. },
  38392. },
  38393. [
  38394. {
  38395. name: "Normal",
  38396. height: math.unit(4, "feet"),
  38397. default: true
  38398. },
  38399. ]
  38400. ))
  38401. characterMakers.push(() => makeCharacter(
  38402. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38403. {
  38404. front: {
  38405. height: math.unit(12 + 6/12, "feet"),
  38406. name: "Front",
  38407. image: {
  38408. source: "./media/characters/kass-lockheed/front.svg",
  38409. extra: 354/343,
  38410. bottom: 9/363
  38411. }
  38412. },
  38413. back: {
  38414. height: math.unit(12 + 6/12, "feet"),
  38415. name: "Back",
  38416. image: {
  38417. source: "./media/characters/kass-lockheed/back.svg",
  38418. extra: 364/352,
  38419. bottom: 3/367
  38420. }
  38421. },
  38422. dick: {
  38423. height: math.unit(3.12, "feet"),
  38424. name: "Dick",
  38425. image: {
  38426. source: "./media/characters/kass-lockheed/dick.svg"
  38427. }
  38428. },
  38429. head: {
  38430. height: math.unit(2.6, "feet"),
  38431. name: "Head",
  38432. image: {
  38433. source: "./media/characters/kass-lockheed/head.svg"
  38434. }
  38435. },
  38436. bleh: {
  38437. height: math.unit(2.85, "feet"),
  38438. name: "Bleh",
  38439. image: {
  38440. source: "./media/characters/kass-lockheed/bleh.svg"
  38441. }
  38442. },
  38443. smug: {
  38444. height: math.unit(2.85, "feet"),
  38445. name: "Smug",
  38446. image: {
  38447. source: "./media/characters/kass-lockheed/smug.svg"
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Normal",
  38454. height: math.unit(12 + 6/12, "feet"),
  38455. default: true
  38456. },
  38457. ]
  38458. ))
  38459. characterMakers.push(() => makeCharacter(
  38460. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38461. {
  38462. front: {
  38463. height: math.unit(6 + 2/12, "feet"),
  38464. name: "Front",
  38465. image: {
  38466. source: "./media/characters/taylor/front.svg",
  38467. extra: 639/495,
  38468. bottom: 12/651
  38469. }
  38470. },
  38471. },
  38472. [
  38473. {
  38474. name: "Normal",
  38475. height: math.unit(6 + 2/12, "feet"),
  38476. default: true
  38477. },
  38478. {
  38479. name: "Big",
  38480. height: math.unit(15, "feet")
  38481. },
  38482. {
  38483. name: "Lorg",
  38484. height: math.unit(80, "feet")
  38485. },
  38486. {
  38487. name: "Too Lorg",
  38488. height: math.unit(120, "feet")
  38489. },
  38490. ]
  38491. ))
  38492. characterMakers.push(() => makeCharacter(
  38493. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38494. {
  38495. front: {
  38496. height: math.unit(15, "feet"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/kaizer/front.svg",
  38500. extra: 1612/1436,
  38501. bottom: 43/1655
  38502. }
  38503. },
  38504. },
  38505. [
  38506. {
  38507. name: "Normal",
  38508. height: math.unit(15, "feet"),
  38509. default: true
  38510. },
  38511. ]
  38512. ))
  38513. characterMakers.push(() => makeCharacter(
  38514. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38515. {
  38516. front: {
  38517. height: math.unit(2, "feet"),
  38518. weight: math.unit(30, "lb"),
  38519. name: "Front",
  38520. image: {
  38521. source: "./media/characters/sandy/front.svg",
  38522. extra: 1439/1307,
  38523. bottom: 194/1633
  38524. }
  38525. },
  38526. },
  38527. [
  38528. {
  38529. name: "Normal",
  38530. height: math.unit(2, "feet"),
  38531. default: true
  38532. },
  38533. ]
  38534. ))
  38535. characterMakers.push(() => makeCharacter(
  38536. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38537. {
  38538. front: {
  38539. height: math.unit(3, "feet"),
  38540. name: "Front",
  38541. image: {
  38542. source: "./media/characters/mellvi/front.svg",
  38543. extra: 1831/1630,
  38544. bottom: 58/1889
  38545. }
  38546. },
  38547. },
  38548. [
  38549. {
  38550. name: "Normal",
  38551. height: math.unit(3, "feet"),
  38552. default: true
  38553. },
  38554. ]
  38555. ))
  38556. characterMakers.push(() => makeCharacter(
  38557. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38558. {
  38559. front: {
  38560. height: math.unit(5 + 11/12, "feet"),
  38561. weight: math.unit(200, "lb"),
  38562. name: "Front",
  38563. image: {
  38564. source: "./media/characters/shirou/front.svg",
  38565. extra: 2491/2383,
  38566. bottom: 189/2680
  38567. }
  38568. },
  38569. back: {
  38570. height: math.unit(5 + 11/12, "feet"),
  38571. weight: math.unit(200, "lb"),
  38572. name: "Back",
  38573. image: {
  38574. source: "./media/characters/shirou/back.svg",
  38575. extra: 2554/2450,
  38576. bottom: 76/2630
  38577. }
  38578. },
  38579. },
  38580. [
  38581. {
  38582. name: "Normal",
  38583. height: math.unit(5 + 11/12, "feet"),
  38584. default: true
  38585. },
  38586. ]
  38587. ))
  38588. characterMakers.push(() => makeCharacter(
  38589. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38590. {
  38591. front: {
  38592. height: math.unit(6 + 3/12, "feet"),
  38593. weight: math.unit(177, "lb"),
  38594. name: "Front",
  38595. image: {
  38596. source: "./media/characters/noryu/front.svg",
  38597. extra: 973/885,
  38598. bottom: 10/983
  38599. }
  38600. },
  38601. },
  38602. [
  38603. {
  38604. name: "Normal",
  38605. height: math.unit(6 + 3/12, "feet"),
  38606. default: true
  38607. },
  38608. ]
  38609. ))
  38610. characterMakers.push(() => makeCharacter(
  38611. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38612. {
  38613. front: {
  38614. height: math.unit(5 + 6/12, "feet"),
  38615. weight: math.unit(170, "lb"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/mevolas-rubenido/front.svg",
  38619. extra: 2109/1901,
  38620. bottom: 96/2205
  38621. }
  38622. },
  38623. },
  38624. [
  38625. {
  38626. name: "Normal",
  38627. height: math.unit(5 + 6/12, "feet"),
  38628. default: true
  38629. },
  38630. ]
  38631. ))
  38632. characterMakers.push(() => makeCharacter(
  38633. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38634. {
  38635. front: {
  38636. height: math.unit(100, "feet"),
  38637. name: "Front",
  38638. image: {
  38639. source: "./media/characters/dee/front.svg",
  38640. extra: 2153/2036,
  38641. bottom: 59/2212
  38642. }
  38643. },
  38644. back: {
  38645. height: math.unit(100, "feet"),
  38646. name: "Back",
  38647. image: {
  38648. source: "./media/characters/dee/back.svg",
  38649. extra: 2183/2058,
  38650. bottom: 75/2258
  38651. }
  38652. },
  38653. foot: {
  38654. height: math.unit(19.43, "feet"),
  38655. name: "Foot",
  38656. image: {
  38657. source: "./media/characters/dee/foot.svg"
  38658. }
  38659. },
  38660. hoof: {
  38661. height: math.unit(20.6, "feet"),
  38662. name: "Hoof",
  38663. image: {
  38664. source: "./media/characters/dee/hoof.svg"
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Macro",
  38671. height: math.unit(100, "feet"),
  38672. default: true
  38673. },
  38674. ]
  38675. ))
  38676. characterMakers.push(() => makeCharacter(
  38677. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38678. {
  38679. front: {
  38680. height: math.unit(5 + 6/12, "feet"),
  38681. name: "Front",
  38682. image: {
  38683. source: "./media/characters/teh/front.svg",
  38684. extra: 1002/847,
  38685. bottom: 62/1064
  38686. }
  38687. },
  38688. },
  38689. [
  38690. {
  38691. name: "Normal",
  38692. height: math.unit(5 + 6/12, "feet"),
  38693. default: true
  38694. },
  38695. ]
  38696. ))
  38697. characterMakers.push(() => makeCharacter(
  38698. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38699. {
  38700. side: {
  38701. height: math.unit(6 + 1/12, "feet"),
  38702. weight: math.unit(204, "lb"),
  38703. name: "Side",
  38704. image: {
  38705. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38706. extra: 974/775,
  38707. bottom: 169/1143
  38708. }
  38709. },
  38710. sitting: {
  38711. height: math.unit(6 + 2/12, "feet"),
  38712. weight: math.unit(204, "lb"),
  38713. name: "Sitting",
  38714. image: {
  38715. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38716. extra: 1175/964,
  38717. bottom: 378/1553
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Normal",
  38724. height: math.unit(6 + 1/12, "feet"),
  38725. default: true
  38726. },
  38727. ]
  38728. ))
  38729. characterMakers.push(() => makeCharacter(
  38730. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38731. {
  38732. front: {
  38733. height: math.unit(6, "inches"),
  38734. name: "Front",
  38735. image: {
  38736. source: "./media/characters/tululi/front.svg",
  38737. extra: 1997/1876,
  38738. bottom: 20/2017
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Normal",
  38745. height: math.unit(6, "inches"),
  38746. default: true
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38752. {
  38753. front: {
  38754. height: math.unit(4 + 1/12, "feet"),
  38755. name: "Front",
  38756. image: {
  38757. source: "./media/characters/star/front.svg",
  38758. extra: 1493/1189,
  38759. bottom: 48/1541
  38760. }
  38761. },
  38762. },
  38763. [
  38764. {
  38765. name: "Normal",
  38766. height: math.unit(4 + 1/12, "feet"),
  38767. default: true
  38768. },
  38769. ]
  38770. ))
  38771. characterMakers.push(() => makeCharacter(
  38772. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38773. {
  38774. front: {
  38775. height: math.unit(6 + 3/12, "feet"),
  38776. name: "Front",
  38777. image: {
  38778. source: "./media/characters/comet/front.svg",
  38779. extra: 1681/1462,
  38780. bottom: 26/1707
  38781. }
  38782. },
  38783. },
  38784. [
  38785. {
  38786. name: "Normal",
  38787. height: math.unit(6 + 3/12, "feet"),
  38788. default: true
  38789. },
  38790. ]
  38791. ))
  38792. characterMakers.push(() => makeCharacter(
  38793. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38794. {
  38795. front: {
  38796. height: math.unit(950, "feet"),
  38797. name: "Front",
  38798. image: {
  38799. source: "./media/characters/vortex/front.svg",
  38800. extra: 1497/1434,
  38801. bottom: 56/1553
  38802. }
  38803. },
  38804. maw: {
  38805. height: math.unit(285, "feet"),
  38806. name: "Maw",
  38807. image: {
  38808. source: "./media/characters/vortex/maw.svg"
  38809. }
  38810. },
  38811. },
  38812. [
  38813. {
  38814. name: "Macro",
  38815. height: math.unit(950, "feet"),
  38816. default: true
  38817. },
  38818. ]
  38819. ))
  38820. characterMakers.push(() => makeCharacter(
  38821. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38822. {
  38823. front: {
  38824. height: math.unit(600, "feet"),
  38825. weight: math.unit(0.02, "grams"),
  38826. name: "Front",
  38827. image: {
  38828. source: "./media/characters/doodle/front.svg",
  38829. extra: 1578/1413,
  38830. bottom: 37/1615
  38831. }
  38832. },
  38833. },
  38834. [
  38835. {
  38836. name: "Macro",
  38837. height: math.unit(600, "feet"),
  38838. default: true
  38839. },
  38840. ]
  38841. ))
  38842. characterMakers.push(() => makeCharacter(
  38843. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38844. {
  38845. front: {
  38846. height: math.unit(6 + 6/12, "feet"),
  38847. name: "Front",
  38848. image: {
  38849. source: "./media/characters/jai/front.svg",
  38850. extra: 1645/1534,
  38851. bottom: 115/1760
  38852. }
  38853. },
  38854. },
  38855. [
  38856. {
  38857. name: "Normal",
  38858. height: math.unit(6 + 6/12, "feet"),
  38859. default: true
  38860. },
  38861. ]
  38862. ))
  38863. characterMakers.push(() => makeCharacter(
  38864. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38865. {
  38866. front: {
  38867. height: math.unit(6 + 8/12, "feet"),
  38868. name: "Front",
  38869. image: {
  38870. source: "./media/characters/pixel/front.svg",
  38871. extra: 1900/1735,
  38872. bottom: 63/1963
  38873. }
  38874. },
  38875. },
  38876. [
  38877. {
  38878. name: "Normal",
  38879. height: math.unit(6 + 8/12, "feet"),
  38880. default: true
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38886. {
  38887. back: {
  38888. height: math.unit(4 + 1/12, "feet"),
  38889. weight: math.unit(75, "lb"),
  38890. name: "Back",
  38891. image: {
  38892. source: "./media/characters/rhett/back.svg",
  38893. extra: 930/878,
  38894. bottom: 25/955
  38895. }
  38896. },
  38897. front: {
  38898. height: math.unit(4 + 1/12, "feet"),
  38899. weight: math.unit(75, "lb"),
  38900. name: "Front",
  38901. image: {
  38902. source: "./media/characters/rhett/front.svg",
  38903. extra: 1682/1586,
  38904. bottom: 92/1774
  38905. }
  38906. },
  38907. },
  38908. [
  38909. {
  38910. name: "Micro",
  38911. height: math.unit(8, "inches")
  38912. },
  38913. {
  38914. name: "Tiny",
  38915. height: math.unit(2, "feet")
  38916. },
  38917. {
  38918. name: "Normal",
  38919. height: math.unit(4 + 1/12, "feet"),
  38920. default: true
  38921. },
  38922. ]
  38923. ))
  38924. characterMakers.push(() => makeCharacter(
  38925. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38926. {
  38927. front: {
  38928. height: math.unit(3 + 3/12, "feet"),
  38929. name: "Front",
  38930. image: {
  38931. source: "./media/characters/penny/front.svg",
  38932. extra: 1406/1311,
  38933. bottom: 26/1432
  38934. }
  38935. },
  38936. },
  38937. [
  38938. {
  38939. name: "Normal",
  38940. height: math.unit(3 + 3/12, "feet"),
  38941. default: true
  38942. },
  38943. ]
  38944. ))
  38945. characterMakers.push(() => makeCharacter(
  38946. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38947. {
  38948. front: {
  38949. height: math.unit(4 + 11/12, "feet"),
  38950. name: "Front",
  38951. image: {
  38952. source: "./media/characters/monty/front.svg",
  38953. extra: 1479/1209,
  38954. bottom: 0/1479
  38955. }
  38956. },
  38957. },
  38958. [
  38959. {
  38960. name: "Normal",
  38961. height: math.unit(4 + 11/12, "feet"),
  38962. default: true
  38963. },
  38964. ]
  38965. ))
  38966. characterMakers.push(() => makeCharacter(
  38967. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38968. {
  38969. front: {
  38970. height: math.unit(8 + 4/12, "feet"),
  38971. name: "Front",
  38972. image: {
  38973. source: "./media/characters/sterling/front.svg",
  38974. extra: 1420/1236,
  38975. bottom: 27/1447
  38976. }
  38977. },
  38978. },
  38979. [
  38980. {
  38981. name: "Normal",
  38982. height: math.unit(8 + 4/12, "feet"),
  38983. default: true
  38984. },
  38985. ]
  38986. ))
  38987. characterMakers.push(() => makeCharacter(
  38988. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38989. {
  38990. front: {
  38991. height: math.unit(15, "feet"),
  38992. name: "Front",
  38993. image: {
  38994. source: "./media/characters/marble/front.svg",
  38995. extra: 973/937,
  38996. bottom: 32/1005
  38997. }
  38998. },
  38999. },
  39000. [
  39001. {
  39002. name: "Normal",
  39003. height: math.unit(15, "feet"),
  39004. default: true
  39005. },
  39006. ]
  39007. ))
  39008. characterMakers.push(() => makeCharacter(
  39009. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39010. {
  39011. front: {
  39012. height: math.unit(3, "inches"),
  39013. name: "Front",
  39014. image: {
  39015. source: "./media/characters/powder/front.svg",
  39016. extra: 1504/1334,
  39017. bottom: 518/2022
  39018. }
  39019. },
  39020. },
  39021. [
  39022. {
  39023. name: "Normal",
  39024. height: math.unit(3, "inches"),
  39025. default: true
  39026. },
  39027. ]
  39028. ))
  39029. characterMakers.push(() => makeCharacter(
  39030. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39031. {
  39032. front: {
  39033. height: math.unit(4 + 5/12, "feet"),
  39034. name: "Front",
  39035. image: {
  39036. source: "./media/characters/joey-raccoon/front.svg",
  39037. extra: 1273/1197,
  39038. bottom: 0/1273
  39039. }
  39040. },
  39041. },
  39042. [
  39043. {
  39044. name: "Normal",
  39045. height: math.unit(4 + 5/12, "feet"),
  39046. default: true
  39047. },
  39048. ]
  39049. ))
  39050. characterMakers.push(() => makeCharacter(
  39051. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39052. {
  39053. front: {
  39054. height: math.unit(8 + 4/12, "feet"),
  39055. name: "Front",
  39056. image: {
  39057. source: "./media/characters/vick/front.svg",
  39058. extra: 2187/2118,
  39059. bottom: 47/2234
  39060. }
  39061. },
  39062. },
  39063. [
  39064. {
  39065. name: "Normal",
  39066. height: math.unit(8 + 4/12, "feet"),
  39067. default: true
  39068. },
  39069. ]
  39070. ))
  39071. characterMakers.push(() => makeCharacter(
  39072. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39073. {
  39074. front: {
  39075. height: math.unit(5 + 5/12, "feet"),
  39076. name: "Front",
  39077. image: {
  39078. source: "./media/characters/mitsy/front.svg",
  39079. extra: 1842/1695,
  39080. bottom: 0/1842
  39081. }
  39082. },
  39083. },
  39084. [
  39085. {
  39086. name: "Normal",
  39087. height: math.unit(5 + 5/12, "feet"),
  39088. default: true
  39089. },
  39090. ]
  39091. ))
  39092. characterMakers.push(() => makeCharacter(
  39093. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39094. {
  39095. front: {
  39096. height: math.unit(6 + 3/12, "feet"),
  39097. name: "Front",
  39098. image: {
  39099. source: "./media/characters/silvy/front.svg",
  39100. extra: 1995/1836,
  39101. bottom: 225/2220
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(6 + 3/12, "feet"),
  39109. default: true
  39110. },
  39111. ]
  39112. ))
  39113. characterMakers.push(() => makeCharacter(
  39114. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39115. {
  39116. front: {
  39117. height: math.unit(3 + 8/12, "feet"),
  39118. name: "Front",
  39119. image: {
  39120. source: "./media/characters/rodney/front.svg",
  39121. extra: 1956/1747,
  39122. bottom: 31/1987
  39123. }
  39124. },
  39125. frontDressed: {
  39126. height: math.unit(2.9, "feet"),
  39127. name: "Front (Dressed)",
  39128. image: {
  39129. source: "./media/characters/rodney/front-dressed.svg",
  39130. extra: 1382/1241,
  39131. bottom: 385/1767
  39132. }
  39133. },
  39134. },
  39135. [
  39136. {
  39137. name: "Normal",
  39138. height: math.unit(3 + 8/12, "feet"),
  39139. default: true
  39140. },
  39141. ]
  39142. ))
  39143. characterMakers.push(() => makeCharacter(
  39144. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39145. {
  39146. front: {
  39147. height: math.unit(5 + 9/12, "feet"),
  39148. weight: math.unit(194, "lbs"),
  39149. name: "Front",
  39150. image: {
  39151. source: "./media/characters/zakail-sudekai/front.svg",
  39152. extra: 2696/2533,
  39153. bottom: 248/2944
  39154. }
  39155. },
  39156. maw: {
  39157. height: math.unit(1.35, "feet"),
  39158. name: "Maw",
  39159. image: {
  39160. source: "./media/characters/zakail-sudekai/maw.svg"
  39161. }
  39162. },
  39163. },
  39164. [
  39165. {
  39166. name: "Normal",
  39167. height: math.unit(5 + 9/12, "feet"),
  39168. default: true
  39169. },
  39170. ]
  39171. ))
  39172. characterMakers.push(() => makeCharacter(
  39173. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39174. {
  39175. front: {
  39176. height: math.unit(8 + 4/12, "feet"),
  39177. weight: math.unit(1200, "lb"),
  39178. name: "Front",
  39179. image: {
  39180. source: "./media/characters/eleanor/front.svg",
  39181. extra: 1226/1192,
  39182. bottom: 52/1278
  39183. }
  39184. },
  39185. back: {
  39186. height: math.unit(8 + 4/12, "feet"),
  39187. weight: math.unit(1200, "lb"),
  39188. name: "Back",
  39189. image: {
  39190. source: "./media/characters/eleanor/back.svg",
  39191. extra: 1242/1184,
  39192. bottom: 60/1302
  39193. }
  39194. },
  39195. head: {
  39196. height: math.unit(2.62, "feet"),
  39197. name: "Head",
  39198. image: {
  39199. source: "./media/characters/eleanor/head.svg"
  39200. }
  39201. },
  39202. },
  39203. [
  39204. {
  39205. name: "Normal",
  39206. height: math.unit(8 + 4/12, "feet"),
  39207. default: true
  39208. },
  39209. ]
  39210. ))
  39211. characterMakers.push(() => makeCharacter(
  39212. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39213. {
  39214. front: {
  39215. height: math.unit(8 + 4/12, "feet"),
  39216. weight: math.unit(750, "lb"),
  39217. name: "Front",
  39218. image: {
  39219. source: "./media/characters/tanya/front.svg",
  39220. extra: 1749/1615,
  39221. bottom: 33/1782
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Normal",
  39228. height: math.unit(8 + 4/12, "feet"),
  39229. default: true
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39235. {
  39236. front: {
  39237. height: math.unit(5, "feet"),
  39238. weight: math.unit(225, "lb"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/cindy/front.svg",
  39242. extra: 1320/1250,
  39243. bottom: 42/1362
  39244. }
  39245. },
  39246. frontDressed: {
  39247. height: math.unit(5, "feet"),
  39248. weight: math.unit(225, "lb"),
  39249. name: "Front (Dressed)",
  39250. image: {
  39251. source: "./media/characters/cindy/front-dressed.svg",
  39252. extra: 1320/1250,
  39253. bottom: 42/1362
  39254. }
  39255. },
  39256. back: {
  39257. height: math.unit(5, "feet"),
  39258. weight: math.unit(225, "lb"),
  39259. name: "Back",
  39260. image: {
  39261. source: "./media/characters/cindy/back.svg",
  39262. extra: 1384/1346,
  39263. bottom: 14/1398
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(5, "feet"),
  39271. default: true
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(6 + 9/12, "feet"),
  39280. weight: math.unit(440, "lb"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/wilbur-owen/front.svg",
  39284. extra: 1575/1448,
  39285. bottom: 72/1647
  39286. }
  39287. },
  39288. back: {
  39289. height: math.unit(6 + 9/12, "feet"),
  39290. weight: math.unit(440, "lb"),
  39291. name: "Back",
  39292. image: {
  39293. source: "./media/characters/wilbur-owen/back.svg",
  39294. extra: 1578/1445,
  39295. bottom: 36/1614
  39296. }
  39297. },
  39298. },
  39299. [
  39300. {
  39301. name: "Normal",
  39302. height: math.unit(6 + 9/12, "feet"),
  39303. default: true
  39304. },
  39305. ]
  39306. ))
  39307. characterMakers.push(() => makeCharacter(
  39308. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39309. {
  39310. front: {
  39311. height: math.unit(6 + 5/12, "feet"),
  39312. weight: math.unit(650, "lb"),
  39313. name: "Front",
  39314. image: {
  39315. source: "./media/characters/keegan/front.svg",
  39316. extra: 2387/2198,
  39317. bottom: 33/2420
  39318. }
  39319. },
  39320. side: {
  39321. height: math.unit(6 + 5/12, "feet"),
  39322. weight: math.unit(650, "lb"),
  39323. name: "Side",
  39324. image: {
  39325. source: "./media/characters/keegan/side.svg",
  39326. extra: 2390/2202,
  39327. bottom: 47/2437
  39328. }
  39329. },
  39330. back: {
  39331. height: math.unit(6 + 5/12, "feet"),
  39332. weight: math.unit(650, "lb"),
  39333. name: "Back",
  39334. image: {
  39335. source: "./media/characters/keegan/back.svg",
  39336. extra: 2418/2268,
  39337. bottom: 15/2433
  39338. }
  39339. },
  39340. frontSfw: {
  39341. height: math.unit(6 + 5/12, "feet"),
  39342. weight: math.unit(650, "lb"),
  39343. name: "Front (SFW)",
  39344. image: {
  39345. source: "./media/characters/keegan/front-sfw.svg",
  39346. extra: 2387/2198,
  39347. bottom: 33/2420
  39348. }
  39349. },
  39350. beans: {
  39351. height: math.unit(1.85, "feet"),
  39352. name: "Beans",
  39353. image: {
  39354. source: "./media/characters/keegan/beans.svg"
  39355. }
  39356. },
  39357. },
  39358. [
  39359. {
  39360. name: "Normal",
  39361. height: math.unit(6 + 5/12, "feet"),
  39362. default: true
  39363. },
  39364. ]
  39365. ))
  39366. characterMakers.push(() => makeCharacter(
  39367. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39368. {
  39369. front: {
  39370. height: math.unit(9, "feet"),
  39371. name: "Front",
  39372. image: {
  39373. source: "./media/characters/colton/front.svg",
  39374. extra: 1589/1326,
  39375. bottom: 139/1728
  39376. }
  39377. },
  39378. },
  39379. [
  39380. {
  39381. name: "Normal",
  39382. height: math.unit(9, "feet"),
  39383. default: true
  39384. },
  39385. ]
  39386. ))
  39387. characterMakers.push(() => makeCharacter(
  39388. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39389. {
  39390. front: {
  39391. height: math.unit(2 + 9/12, "feet"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/bora/front.svg",
  39395. extra: 1265/1250,
  39396. bottom: 24/1289
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Normal",
  39403. height: math.unit(2 + 9/12, "feet"),
  39404. default: true
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39410. {
  39411. front: {
  39412. height: math.unit(8, "feet"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/myu-myu/front.svg",
  39416. extra: 1949/1857,
  39417. bottom: 90/2039
  39418. }
  39419. },
  39420. },
  39421. [
  39422. {
  39423. name: "Normal",
  39424. height: math.unit(8, "feet"),
  39425. default: true
  39426. },
  39427. {
  39428. name: "Big",
  39429. height: math.unit(15, "feet")
  39430. },
  39431. {
  39432. name: "BIG",
  39433. height: math.unit(25, "feet")
  39434. },
  39435. ]
  39436. ))
  39437. characterMakers.push(() => makeCharacter(
  39438. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39439. {
  39440. side: {
  39441. height: math.unit(7 + 5/12, "feet"),
  39442. weight: math.unit(2800, "lb"),
  39443. name: "Side",
  39444. image: {
  39445. source: "./media/characters/haloren/side.svg",
  39446. extra: 1793/409,
  39447. bottom: 59/1852
  39448. }
  39449. },
  39450. frontPaw: {
  39451. height: math.unit(2.36, "feet"),
  39452. name: "Front paw",
  39453. image: {
  39454. source: "./media/characters/haloren/front-paw.svg"
  39455. }
  39456. },
  39457. hindPaw: {
  39458. height: math.unit(3.18, "feet"),
  39459. name: "Hind paw",
  39460. image: {
  39461. source: "./media/characters/haloren/hind-paw.svg"
  39462. }
  39463. },
  39464. maw: {
  39465. height: math.unit(5.05, "feet"),
  39466. name: "Maw",
  39467. image: {
  39468. source: "./media/characters/haloren/maw.svg"
  39469. }
  39470. },
  39471. dick: {
  39472. height: math.unit(2.90, "feet"),
  39473. name: "Dick",
  39474. image: {
  39475. source: "./media/characters/haloren/dick.svg"
  39476. }
  39477. },
  39478. },
  39479. [
  39480. {
  39481. name: "Normal",
  39482. height: math.unit(7 + 5/12, "feet"),
  39483. default: true
  39484. },
  39485. {
  39486. name: "Enhanced",
  39487. height: math.unit(14 + 3/12, "feet")
  39488. },
  39489. ]
  39490. ))
  39491. characterMakers.push(() => makeCharacter(
  39492. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39493. {
  39494. front: {
  39495. height: math.unit(171, "cm"),
  39496. name: "Front",
  39497. image: {
  39498. source: "./media/characters/kimmy/front.svg",
  39499. extra: 1491/1435,
  39500. bottom: 53/1544
  39501. }
  39502. },
  39503. },
  39504. [
  39505. {
  39506. name: "Small",
  39507. height: math.unit(9, "cm")
  39508. },
  39509. {
  39510. name: "Normal",
  39511. height: math.unit(171, "cm"),
  39512. default: true
  39513. },
  39514. ]
  39515. ))
  39516. characterMakers.push(() => makeCharacter(
  39517. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39518. {
  39519. front: {
  39520. height: math.unit(8, "feet"),
  39521. weight: math.unit(300, "lb"),
  39522. name: "Front",
  39523. image: {
  39524. source: "./media/characters/galeboomer/front.svg",
  39525. extra: 4651/4415,
  39526. bottom: 162/4813
  39527. }
  39528. },
  39529. back: {
  39530. height: math.unit(8, "feet"),
  39531. weight: math.unit(300, "lb"),
  39532. name: "Back",
  39533. image: {
  39534. source: "./media/characters/galeboomer/back.svg",
  39535. extra: 4544/4314,
  39536. bottom: 16/4560
  39537. }
  39538. },
  39539. frontAlt: {
  39540. height: math.unit(8, "feet"),
  39541. weight: math.unit(300, "lb"),
  39542. name: "Front (Alt)",
  39543. image: {
  39544. source: "./media/characters/galeboomer/front-alt.svg",
  39545. extra: 4458/4228,
  39546. bottom: 68/4526
  39547. }
  39548. },
  39549. maw: {
  39550. height: math.unit(1.2, "feet"),
  39551. name: "Maw",
  39552. image: {
  39553. source: "./media/characters/galeboomer/maw.svg"
  39554. }
  39555. },
  39556. },
  39557. [
  39558. {
  39559. name: "Normal",
  39560. height: math.unit(8, "feet"),
  39561. default: true
  39562. },
  39563. ]
  39564. ))
  39565. characterMakers.push(() => makeCharacter(
  39566. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39567. {
  39568. front: {
  39569. height: math.unit(5 + 9/12, "feet"),
  39570. weight: math.unit(120, "lb"),
  39571. name: "Front",
  39572. image: {
  39573. source: "./media/characters/chyr/front.svg",
  39574. extra: 1323/1254,
  39575. bottom: 63/1386
  39576. }
  39577. },
  39578. back: {
  39579. height: math.unit(5 + 9/12, "feet"),
  39580. weight: math.unit(120, "lb"),
  39581. name: "Back",
  39582. image: {
  39583. source: "./media/characters/chyr/back.svg",
  39584. extra: 1323/1252,
  39585. bottom: 48/1371
  39586. }
  39587. },
  39588. },
  39589. [
  39590. {
  39591. name: "Normal",
  39592. height: math.unit(5 + 9/12, "feet"),
  39593. default: true
  39594. },
  39595. ]
  39596. ))
  39597. characterMakers.push(() => makeCharacter(
  39598. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39599. {
  39600. front: {
  39601. height: math.unit(7, "feet"),
  39602. weight: math.unit(310, "lb"),
  39603. name: "Front",
  39604. image: {
  39605. source: "./media/characters/solarus/front.svg",
  39606. extra: 2415/2021,
  39607. bottom: 103/2518
  39608. }
  39609. },
  39610. back: {
  39611. height: math.unit(7, "feet"),
  39612. weight: math.unit(310, "lb"),
  39613. name: "Back",
  39614. image: {
  39615. source: "./media/characters/solarus/back.svg",
  39616. extra: 2463/2089,
  39617. bottom: 79/2542
  39618. }
  39619. },
  39620. },
  39621. [
  39622. {
  39623. name: "Normal",
  39624. height: math.unit(7, "feet"),
  39625. default: true
  39626. },
  39627. ]
  39628. ))
  39629. characterMakers.push(() => makeCharacter(
  39630. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39631. {
  39632. front: {
  39633. height: math.unit(16, "feet"),
  39634. name: "Front",
  39635. image: {
  39636. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39637. extra: 1844/1780,
  39638. bottom: 58/1902
  39639. }
  39640. },
  39641. winterCoat: {
  39642. height: math.unit(16, "feet"),
  39643. name: "Winter Coat",
  39644. image: {
  39645. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39646. extra: 1807/1775,
  39647. bottom: 69/1876
  39648. }
  39649. },
  39650. },
  39651. [
  39652. {
  39653. name: "Normal",
  39654. height: math.unit(16, "feet"),
  39655. default: true
  39656. },
  39657. {
  39658. name: "Chicago Size",
  39659. height: math.unit(560, "feet")
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39665. {
  39666. front: {
  39667. height: math.unit(11 + 6/12, "feet"),
  39668. weight: math.unit(1366, "lb"),
  39669. name: "Front",
  39670. image: {
  39671. source: "./media/characters/lexor/front.svg",
  39672. extra: 1560/1481,
  39673. bottom: 211/1771
  39674. }
  39675. },
  39676. back: {
  39677. height: math.unit(11 + 6/12, "feet"),
  39678. weight: math.unit(1366, "lb"),
  39679. name: "Back",
  39680. image: {
  39681. source: "./media/characters/lexor/back.svg",
  39682. extra: 1614/1533,
  39683. bottom: 76/1690
  39684. }
  39685. },
  39686. maw: {
  39687. height: math.unit(3, "feet"),
  39688. name: "Maw",
  39689. image: {
  39690. source: "./media/characters/lexor/maw.svg"
  39691. }
  39692. },
  39693. dick: {
  39694. height: math.unit(2.59, "feet"),
  39695. name: "Dick",
  39696. image: {
  39697. source: "./media/characters/lexor/dick.svg"
  39698. }
  39699. },
  39700. },
  39701. [
  39702. {
  39703. name: "Normal",
  39704. height: math.unit(11 + 6/12, "feet"),
  39705. default: true
  39706. },
  39707. ]
  39708. ))
  39709. characterMakers.push(() => makeCharacter(
  39710. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39711. {
  39712. front: {
  39713. height: math.unit(5 + 8/12, "feet"),
  39714. name: "Front",
  39715. image: {
  39716. source: "./media/characters/magnum/front.svg",
  39717. extra: 942/855,
  39718. bottom: 26/968
  39719. }
  39720. },
  39721. },
  39722. [
  39723. {
  39724. name: "Normal",
  39725. height: math.unit(5 + 8/12, "feet"),
  39726. default: true
  39727. },
  39728. ]
  39729. ))
  39730. characterMakers.push(() => makeCharacter(
  39731. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39732. {
  39733. front: {
  39734. height: math.unit(18 + 4/12, "feet"),
  39735. weight: math.unit(1500, "kg"),
  39736. name: "Front",
  39737. image: {
  39738. source: "./media/characters/solas-sharpsman/front.svg",
  39739. extra: 1698/1589,
  39740. bottom: 0/1698
  39741. }
  39742. },
  39743. },
  39744. [
  39745. {
  39746. name: "Normal",
  39747. height: math.unit(18 + 4/12, "feet"),
  39748. default: true
  39749. },
  39750. ]
  39751. ))
  39752. characterMakers.push(() => makeCharacter(
  39753. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39754. {
  39755. front: {
  39756. height: math.unit(5 + 5/12, "feet"),
  39757. weight: math.unit(180, "lb"),
  39758. name: "Front",
  39759. image: {
  39760. source: "./media/characters/october/front.svg",
  39761. extra: 1800/1650,
  39762. bottom: 0/1800
  39763. }
  39764. },
  39765. frontNsfw: {
  39766. height: math.unit(5 + 5/12, "feet"),
  39767. weight: math.unit(180, "lb"),
  39768. name: "Front (NSFW)",
  39769. image: {
  39770. source: "./media/characters/october/front-nsfw.svg",
  39771. extra: 1392/1307,
  39772. bottom: 42/1434
  39773. }
  39774. },
  39775. },
  39776. [
  39777. {
  39778. name: "Normal",
  39779. height: math.unit(5 + 5/12, "feet"),
  39780. default: true
  39781. },
  39782. ]
  39783. ))
  39784. characterMakers.push(() => makeCharacter(
  39785. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39786. {
  39787. front: {
  39788. height: math.unit(8 + 6/12, "feet"),
  39789. name: "Front",
  39790. image: {
  39791. source: "./media/characters/essynkardi/front.svg",
  39792. extra: 1541/1457,
  39793. bottom: 47/1588
  39794. }
  39795. },
  39796. },
  39797. [
  39798. {
  39799. name: "Normal",
  39800. height: math.unit(8 + 6/12, "feet"),
  39801. default: true
  39802. },
  39803. ]
  39804. ))
  39805. characterMakers.push(() => makeCharacter(
  39806. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39807. {
  39808. front: {
  39809. height: math.unit(6 + 6/12, "feet"),
  39810. weight: math.unit(7, "lb"),
  39811. name: "Front",
  39812. image: {
  39813. source: "./media/characters/icky/front.svg",
  39814. extra: 813/782,
  39815. bottom: 66/879
  39816. }
  39817. },
  39818. back: {
  39819. height: math.unit(6 + 6/12, "feet"),
  39820. weight: math.unit(7, "lb"),
  39821. name: "Back",
  39822. image: {
  39823. source: "./media/characters/icky/back.svg",
  39824. extra: 754/735,
  39825. bottom: 56/810
  39826. }
  39827. },
  39828. },
  39829. [
  39830. {
  39831. name: "Normal",
  39832. height: math.unit(6 + 6/12, "feet"),
  39833. default: true
  39834. },
  39835. ]
  39836. ))
  39837. characterMakers.push(() => makeCharacter(
  39838. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39839. {
  39840. front: {
  39841. height: math.unit(15, "feet"),
  39842. name: "Front",
  39843. image: {
  39844. source: "./media/characters/rojas/front.svg",
  39845. extra: 1462/1408,
  39846. bottom: 95/1557
  39847. }
  39848. },
  39849. back: {
  39850. height: math.unit(15, "feet"),
  39851. name: "Back",
  39852. image: {
  39853. source: "./media/characters/rojas/back.svg",
  39854. extra: 1023/954,
  39855. bottom: 28/1051
  39856. }
  39857. },
  39858. },
  39859. [
  39860. {
  39861. name: "Normal",
  39862. height: math.unit(15, "feet"),
  39863. default: true
  39864. },
  39865. ]
  39866. ))
  39867. characterMakers.push(() => makeCharacter(
  39868. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39869. {
  39870. frontHuman: {
  39871. height: math.unit(5 + 7/12, "feet"),
  39872. name: "Front (Human)",
  39873. image: {
  39874. source: "./media/characters/alek-dryagan/front-human.svg",
  39875. extra: 1687/1667,
  39876. bottom: 69/1756
  39877. }
  39878. },
  39879. backHuman: {
  39880. height: math.unit(5 + 7/12, "feet"),
  39881. name: "Back (Human)",
  39882. image: {
  39883. source: "./media/characters/alek-dryagan/back-human.svg",
  39884. extra: 1670/1649,
  39885. bottom: 65/1735
  39886. }
  39887. },
  39888. frontDemi: {
  39889. height: math.unit(65, "feet"),
  39890. name: "Front (Demi)",
  39891. image: {
  39892. source: "./media/characters/alek-dryagan/front-demi.svg",
  39893. extra: 1669/1642,
  39894. bottom: 49/1718
  39895. }
  39896. },
  39897. backDemi: {
  39898. height: math.unit(65, "feet"),
  39899. name: "Back (Demi)",
  39900. image: {
  39901. source: "./media/characters/alek-dryagan/back-demi.svg",
  39902. extra: 1658/1637,
  39903. bottom: 40/1698
  39904. }
  39905. },
  39906. mawHuman: {
  39907. height: math.unit(0.3, "feet"),
  39908. name: "Maw (Human)",
  39909. image: {
  39910. source: "./media/characters/alek-dryagan/maw-human.svg"
  39911. }
  39912. },
  39913. mawDemi: {
  39914. height: math.unit(3.8, "feet"),
  39915. name: "Maw (Demi)",
  39916. image: {
  39917. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39918. }
  39919. },
  39920. },
  39921. [
  39922. {
  39923. name: "Normal",
  39924. height: math.unit(5 + 7/12, "feet"),
  39925. default: true
  39926. },
  39927. ]
  39928. ))
  39929. characterMakers.push(() => makeCharacter(
  39930. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39931. {
  39932. frontHuman: {
  39933. height: math.unit(5 + 2/12, "feet"),
  39934. name: "Front (Human)",
  39935. image: {
  39936. source: "./media/characters/gen/front-human.svg",
  39937. extra: 1627/1538,
  39938. bottom: 71/1698
  39939. }
  39940. },
  39941. backHuman: {
  39942. height: math.unit(5 + 2/12, "feet"),
  39943. name: "Back (Human)",
  39944. image: {
  39945. source: "./media/characters/gen/back-human.svg",
  39946. extra: 1638/1548,
  39947. bottom: 69/1707
  39948. }
  39949. },
  39950. frontDemi: {
  39951. height: math.unit(5 + 2/12, "feet"),
  39952. name: "Front (Demi)",
  39953. image: {
  39954. source: "./media/characters/gen/front-demi.svg",
  39955. extra: 1627/1538,
  39956. bottom: 71/1698
  39957. }
  39958. },
  39959. backDemi: {
  39960. height: math.unit(5 + 2/12, "feet"),
  39961. name: "Back (Demi)",
  39962. image: {
  39963. source: "./media/characters/gen/back-demi.svg",
  39964. extra: 1638/1548,
  39965. bottom: 69/1707
  39966. }
  39967. },
  39968. },
  39969. [
  39970. {
  39971. name: "Normal",
  39972. height: math.unit(5 + 2/12, "feet"),
  39973. default: true
  39974. },
  39975. ]
  39976. ))
  39977. characterMakers.push(() => makeCharacter(
  39978. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39979. {
  39980. frontImp: {
  39981. height: math.unit(1 + 11/12, "feet"),
  39982. name: "Front (Imp)",
  39983. image: {
  39984. source: "./media/characters/max-kobold/front-imp.svg",
  39985. extra: 1238/1134,
  39986. bottom: 81/1319
  39987. }
  39988. },
  39989. backImp: {
  39990. height: math.unit(1 + 11/12, "feet"),
  39991. name: "Back (Imp)",
  39992. image: {
  39993. source: "./media/characters/max-kobold/back-imp.svg",
  39994. extra: 1334/1175,
  39995. bottom: 34/1368
  39996. }
  39997. },
  39998. frontDemi: {
  39999. height: math.unit(5 + 9/12, "feet"),
  40000. name: "Front (Demi)",
  40001. image: {
  40002. source: "./media/characters/max-kobold/front-demi.svg",
  40003. extra: 1715/1685,
  40004. bottom: 54/1769
  40005. }
  40006. },
  40007. backDemi: {
  40008. height: math.unit(5 + 9/12, "feet"),
  40009. name: "Back (Demi)",
  40010. image: {
  40011. source: "./media/characters/max-kobold/back-demi.svg",
  40012. extra: 1752/1729,
  40013. bottom: 41/1793
  40014. }
  40015. },
  40016. handImp: {
  40017. height: math.unit(0.45, "feet"),
  40018. name: "Hand (Imp)",
  40019. image: {
  40020. source: "./media/characters/max-kobold/hand.svg"
  40021. }
  40022. },
  40023. pawImp: {
  40024. height: math.unit(0.46, "feet"),
  40025. name: "Paw (Imp)",
  40026. image: {
  40027. source: "./media/characters/max-kobold/paw.svg"
  40028. }
  40029. },
  40030. handDemi: {
  40031. height: math.unit(0.80, "feet"),
  40032. name: "Hand (Demi)",
  40033. image: {
  40034. source: "./media/characters/max-kobold/hand.svg"
  40035. }
  40036. },
  40037. pawDemi: {
  40038. height: math.unit(1.1, "feet"),
  40039. name: "Paw (Demi)",
  40040. image: {
  40041. source: "./media/characters/max-kobold/paw.svg"
  40042. }
  40043. },
  40044. headImp: {
  40045. height: math.unit(1.33, "feet"),
  40046. name: "Head (Imp)",
  40047. image: {
  40048. source: "./media/characters/max-kobold/head-imp.svg"
  40049. }
  40050. },
  40051. mawImp: {
  40052. height: math.unit(0.75, "feet"),
  40053. name: "Maw (Imp)",
  40054. image: {
  40055. source: "./media/characters/max-kobold/maw-imp.svg"
  40056. }
  40057. },
  40058. mawDemi: {
  40059. height: math.unit(0.42, "feet"),
  40060. name: "Maw (Demi)",
  40061. image: {
  40062. source: "./media/characters/max-kobold/maw-demi.svg"
  40063. }
  40064. },
  40065. },
  40066. [
  40067. {
  40068. name: "Normal",
  40069. height: math.unit(1 + 11/12, "feet"),
  40070. default: true
  40071. },
  40072. ]
  40073. ))
  40074. characterMakers.push(() => makeCharacter(
  40075. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40076. {
  40077. front: {
  40078. height: math.unit(7 + 5/12, "feet"),
  40079. name: "Front",
  40080. image: {
  40081. source: "./media/characters/carbon/front.svg",
  40082. extra: 1754/1689,
  40083. bottom: 65/1819
  40084. }
  40085. },
  40086. back: {
  40087. height: math.unit(7 + 5/12, "feet"),
  40088. name: "Back",
  40089. image: {
  40090. source: "./media/characters/carbon/back.svg",
  40091. extra: 1762/1695,
  40092. bottom: 24/1786
  40093. }
  40094. },
  40095. frontGigantamax: {
  40096. height: math.unit(150, "feet"),
  40097. name: "Front (Gigantamax)",
  40098. image: {
  40099. source: "./media/characters/carbon/front-gigantamax.svg",
  40100. extra: 1826/1669,
  40101. bottom: 59/1885
  40102. }
  40103. },
  40104. backGigantamax: {
  40105. height: math.unit(150, "feet"),
  40106. name: "Back (Gigantamax)",
  40107. image: {
  40108. source: "./media/characters/carbon/back-gigantamax.svg",
  40109. extra: 1796/1653,
  40110. bottom: 53/1849
  40111. }
  40112. },
  40113. maw: {
  40114. height: math.unit(0.48, "feet"),
  40115. name: "Maw",
  40116. image: {
  40117. source: "./media/characters/carbon/maw.svg"
  40118. }
  40119. },
  40120. mawGigantamax: {
  40121. height: math.unit(7.5, "feet"),
  40122. name: "Maw (Gigantamax)",
  40123. image: {
  40124. source: "./media/characters/carbon/maw-gigantamax.svg"
  40125. }
  40126. },
  40127. },
  40128. [
  40129. {
  40130. name: "Normal",
  40131. height: math.unit(7 + 5/12, "feet"),
  40132. default: true
  40133. },
  40134. ]
  40135. ))
  40136. characterMakers.push(() => makeCharacter(
  40137. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40138. {
  40139. front: {
  40140. height: math.unit(6, "feet"),
  40141. name: "Front",
  40142. image: {
  40143. source: "./media/characters/maverick/front.svg",
  40144. extra: 1672/1661,
  40145. bottom: 85/1757
  40146. }
  40147. },
  40148. back: {
  40149. height: math.unit(6, "feet"),
  40150. name: "Back",
  40151. image: {
  40152. source: "./media/characters/maverick/back.svg",
  40153. extra: 1642/1631,
  40154. bottom: 38/1680
  40155. }
  40156. },
  40157. },
  40158. [
  40159. {
  40160. name: "Normal",
  40161. height: math.unit(6, "feet"),
  40162. default: true
  40163. },
  40164. ]
  40165. ))
  40166. characterMakers.push(() => makeCharacter(
  40167. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40168. {
  40169. front: {
  40170. height: math.unit(15, "feet"),
  40171. weight: math.unit(615, "lb"),
  40172. name: "Front",
  40173. image: {
  40174. source: "./media/characters/grockle/front.svg",
  40175. extra: 1535/1427,
  40176. bottom: 56/1591
  40177. }
  40178. },
  40179. },
  40180. [
  40181. {
  40182. name: "Normal",
  40183. height: math.unit(15, "feet"),
  40184. default: true
  40185. },
  40186. {
  40187. name: "Large",
  40188. height: math.unit(150, "feet")
  40189. },
  40190. {
  40191. name: "Macro",
  40192. height: math.unit(1876, "feet")
  40193. },
  40194. {
  40195. name: "Mega Macro",
  40196. height: math.unit(121940, "feet")
  40197. },
  40198. {
  40199. name: "Giga Macro",
  40200. height: math.unit(750, "km")
  40201. },
  40202. {
  40203. name: "Tera Macro",
  40204. height: math.unit(750000, "km")
  40205. },
  40206. {
  40207. name: "Galactic",
  40208. height: math.unit(1.4e5, "km")
  40209. },
  40210. {
  40211. name: "Godlike",
  40212. height: math.unit(9.8e280, "galaxies")
  40213. },
  40214. ]
  40215. ))
  40216. characterMakers.push(() => makeCharacter(
  40217. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40218. {
  40219. front: {
  40220. height: math.unit(11, "meters"),
  40221. weight: math.unit(20, "tonnes"),
  40222. name: "Front",
  40223. image: {
  40224. source: "./media/characters/alistair/front.svg",
  40225. extra: 1265/1009,
  40226. bottom: 93/1358
  40227. }
  40228. },
  40229. },
  40230. [
  40231. {
  40232. name: "Normal",
  40233. height: math.unit(11, "meters"),
  40234. default: true
  40235. },
  40236. ]
  40237. ))
  40238. characterMakers.push(() => makeCharacter(
  40239. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40240. {
  40241. front: {
  40242. height: math.unit(5 + 8/12, "feet"),
  40243. name: "Front",
  40244. image: {
  40245. source: "./media/characters/haruka/front.svg",
  40246. extra: 2012/1952,
  40247. bottom: 0/2012
  40248. }
  40249. },
  40250. },
  40251. [
  40252. {
  40253. name: "Normal",
  40254. height: math.unit(5 + 8/12, "feet"),
  40255. default: true
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40261. {
  40262. back: {
  40263. height: math.unit(9, "feet"),
  40264. name: "Back",
  40265. image: {
  40266. source: "./media/characters/vivian-sylveon/back.svg",
  40267. extra: 1853/1714,
  40268. bottom: 0/1853
  40269. }
  40270. },
  40271. hyper: {
  40272. height: math.unit(5.58, "feet"),
  40273. name: "Hyper",
  40274. preyCapacity: math.unit(2.80616218797, "m^3"),
  40275. image: {
  40276. source: "./media/characters/vivian-sylveon/hyper.svg",
  40277. extra: 999/676,
  40278. bottom: 697/1696
  40279. },
  40280. },
  40281. paw: {
  40282. height: math.unit(1.8, "feet"),
  40283. name: "Paw",
  40284. image: {
  40285. source: "./media/characters/vivian-sylveon/paw.svg"
  40286. }
  40287. },
  40288. danger: {
  40289. height: math.unit(7.5, "feet"),
  40290. name: "DANGER",
  40291. image: {
  40292. source: "./media/characters/vivian-sylveon/danger.svg"
  40293. }
  40294. },
  40295. },
  40296. [
  40297. {
  40298. name: "Normal",
  40299. height: math.unit(9, "feet"),
  40300. default: true
  40301. },
  40302. {
  40303. name: "Macro",
  40304. height: math.unit(500, "feet")
  40305. },
  40306. {
  40307. name: "Megamacro",
  40308. height: math.unit(600, "miles")
  40309. },
  40310. {
  40311. name: "Gigamacro",
  40312. height: math.unit(30000, "miles")
  40313. },
  40314. ]
  40315. ))
  40316. characterMakers.push(() => makeCharacter(
  40317. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40318. {
  40319. anthro: {
  40320. height: math.unit(5 + 10/12, "feet"),
  40321. weight: math.unit(100, "lb"),
  40322. name: "Anthro",
  40323. image: {
  40324. source: "./media/characters/daiki/anthro.svg",
  40325. extra: 1115/1027,
  40326. bottom: 69/1184
  40327. }
  40328. },
  40329. feral: {
  40330. height: math.unit(200, "feet"),
  40331. name: "Feral",
  40332. image: {
  40333. source: "./media/characters/daiki/feral.svg",
  40334. extra: 1256/313,
  40335. bottom: 39/1295
  40336. }
  40337. },
  40338. feralHead: {
  40339. height: math.unit(171, "feet"),
  40340. name: "Feral Head",
  40341. image: {
  40342. source: "./media/characters/daiki/feral-head.svg"
  40343. }
  40344. },
  40345. manaDragon: {
  40346. height: math.unit(170, "meters"),
  40347. name: "Mana-dragon",
  40348. image: {
  40349. source: "./media/characters/daiki/mana-dragon.svg",
  40350. extra: 763/420,
  40351. bottom: 97/860
  40352. }
  40353. },
  40354. },
  40355. [
  40356. {
  40357. name: "Normal",
  40358. height: math.unit(5 + 10/12, "feet"),
  40359. default: true
  40360. },
  40361. ]
  40362. ))
  40363. characterMakers.push(() => makeCharacter(
  40364. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40365. {
  40366. fullyEquippedFront: {
  40367. height: math.unit(3 + 1/12, "feet"),
  40368. weight: math.unit(24, "lb"),
  40369. name: "Fully Equipped (Front)",
  40370. image: {
  40371. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40372. extra: 687/605,
  40373. bottom: 18/705
  40374. }
  40375. },
  40376. fullyEquippedBack: {
  40377. height: math.unit(3 + 1/12, "feet"),
  40378. weight: math.unit(24, "lb"),
  40379. name: "Fully Equipped (Back)",
  40380. image: {
  40381. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40382. extra: 689/590,
  40383. bottom: 18/707
  40384. }
  40385. },
  40386. dailyWear: {
  40387. height: math.unit(3 + 1/12, "feet"),
  40388. weight: math.unit(24, "lb"),
  40389. name: "Daily Wear",
  40390. image: {
  40391. source: "./media/characters/tea-spot/daily-wear.svg",
  40392. extra: 701/620,
  40393. bottom: 21/722
  40394. }
  40395. },
  40396. maidWork: {
  40397. height: math.unit(3 + 1/12, "feet"),
  40398. weight: math.unit(24, "lb"),
  40399. name: "Maid Work",
  40400. image: {
  40401. source: "./media/characters/tea-spot/maid-work.svg",
  40402. extra: 693/609,
  40403. bottom: 15/708
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Normal",
  40410. height: math.unit(3 + 1/12, "feet"),
  40411. default: true
  40412. },
  40413. ]
  40414. ))
  40415. characterMakers.push(() => makeCharacter(
  40416. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40417. {
  40418. front: {
  40419. height: math.unit(175, "cm"),
  40420. weight: math.unit(75, "kg"),
  40421. name: "Front",
  40422. image: {
  40423. source: "./media/characters/chee/front.svg",
  40424. extra: 1796/1740,
  40425. bottom: 40/1836
  40426. }
  40427. },
  40428. },
  40429. [
  40430. {
  40431. name: "Micro-Micro",
  40432. height: math.unit(1, "nm")
  40433. },
  40434. {
  40435. name: "Micro-erst",
  40436. height: math.unit(1, "micrometer")
  40437. },
  40438. {
  40439. name: "Micro-er",
  40440. height: math.unit(1, "cm")
  40441. },
  40442. {
  40443. name: "Normal",
  40444. height: math.unit(175, "cm"),
  40445. default: true
  40446. },
  40447. {
  40448. name: "Macro",
  40449. height: math.unit(100, "m")
  40450. },
  40451. {
  40452. name: "Macro-er",
  40453. height: math.unit(1, "km")
  40454. },
  40455. {
  40456. name: "Macro-erst",
  40457. height: math.unit(10, "km")
  40458. },
  40459. {
  40460. name: "Macro-Macro",
  40461. height: math.unit(100, "km")
  40462. },
  40463. ]
  40464. ))
  40465. characterMakers.push(() => makeCharacter(
  40466. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40467. {
  40468. front: {
  40469. height: math.unit(11 + 9/12, "feet"),
  40470. weight: math.unit(935, "lb"),
  40471. name: "Front",
  40472. image: {
  40473. source: "./media/characters/kingsley/front.svg",
  40474. extra: 1803/1674,
  40475. bottom: 127/1930
  40476. }
  40477. },
  40478. frontNude: {
  40479. height: math.unit(11 + 9/12, "feet"),
  40480. weight: math.unit(935, "lb"),
  40481. name: "Front (Nude)",
  40482. image: {
  40483. source: "./media/characters/kingsley/front-nude.svg",
  40484. extra: 1803/1674,
  40485. bottom: 127/1930
  40486. }
  40487. },
  40488. },
  40489. [
  40490. {
  40491. name: "Normal",
  40492. height: math.unit(11 + 9/12, "feet"),
  40493. default: true
  40494. },
  40495. ]
  40496. ))
  40497. characterMakers.push(() => makeCharacter(
  40498. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40499. {
  40500. side: {
  40501. height: math.unit(9, "feet"),
  40502. name: "Side",
  40503. image: {
  40504. source: "./media/characters/rymel/side.svg",
  40505. extra: 792/469,
  40506. bottom: 121/913
  40507. }
  40508. },
  40509. maw: {
  40510. height: math.unit(2.4, "meters"),
  40511. name: "Maw",
  40512. image: {
  40513. source: "./media/characters/rymel/maw.svg"
  40514. }
  40515. },
  40516. },
  40517. [
  40518. {
  40519. name: "House Drake",
  40520. height: math.unit(2, "feet")
  40521. },
  40522. {
  40523. name: "Reduced",
  40524. height: math.unit(4.5, "feet")
  40525. },
  40526. {
  40527. name: "Normal",
  40528. height: math.unit(9, "feet"),
  40529. default: true
  40530. },
  40531. ]
  40532. ))
  40533. characterMakers.push(() => makeCharacter(
  40534. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40535. {
  40536. front: {
  40537. height: math.unit(1.74, "meters"),
  40538. weight: math.unit(55, "kg"),
  40539. name: "Front",
  40540. image: {
  40541. source: "./media/characters/rubus/front.svg",
  40542. extra: 1894/1742,
  40543. bottom: 44/1938
  40544. }
  40545. },
  40546. },
  40547. [
  40548. {
  40549. name: "Normal",
  40550. height: math.unit(1.74, "meters"),
  40551. default: true
  40552. },
  40553. ]
  40554. ))
  40555. characterMakers.push(() => makeCharacter(
  40556. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40557. {
  40558. front: {
  40559. height: math.unit(5 + 2/12, "feet"),
  40560. weight: math.unit(112, "lb"),
  40561. name: "Front",
  40562. image: {
  40563. source: "./media/characters/cassie-kingston/front.svg",
  40564. extra: 1438/1390,
  40565. bottom: 47/1485
  40566. }
  40567. },
  40568. },
  40569. [
  40570. {
  40571. name: "Normal",
  40572. height: math.unit(5 + 2/12, "feet"),
  40573. default: true
  40574. },
  40575. {
  40576. name: "Macro",
  40577. height: math.unit(128, "feet")
  40578. },
  40579. {
  40580. name: "Megamacro",
  40581. height: math.unit(2.56, "miles")
  40582. },
  40583. ]
  40584. ))
  40585. characterMakers.push(() => makeCharacter(
  40586. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40587. {
  40588. front: {
  40589. height: math.unit(7, "feet"),
  40590. name: "Front",
  40591. image: {
  40592. source: "./media/characters/fox/front.svg",
  40593. extra: 1798/1703,
  40594. bottom: 55/1853
  40595. }
  40596. },
  40597. back: {
  40598. height: math.unit(7, "feet"),
  40599. name: "Back",
  40600. image: {
  40601. source: "./media/characters/fox/back.svg",
  40602. extra: 1748/1649,
  40603. bottom: 32/1780
  40604. }
  40605. },
  40606. head: {
  40607. height: math.unit(1.95, "feet"),
  40608. name: "Head",
  40609. image: {
  40610. source: "./media/characters/fox/head.svg"
  40611. }
  40612. },
  40613. dick: {
  40614. height: math.unit(1.33, "feet"),
  40615. name: "Dick",
  40616. image: {
  40617. source: "./media/characters/fox/dick.svg"
  40618. }
  40619. },
  40620. foot: {
  40621. height: math.unit(1, "feet"),
  40622. name: "Foot",
  40623. image: {
  40624. source: "./media/characters/fox/foot.svg"
  40625. }
  40626. },
  40627. paw: {
  40628. height: math.unit(0.92, "feet"),
  40629. name: "Paw",
  40630. image: {
  40631. source: "./media/characters/fox/paw.svg"
  40632. }
  40633. },
  40634. },
  40635. [
  40636. {
  40637. name: "Small",
  40638. height: math.unit(3, "inches")
  40639. },
  40640. {
  40641. name: "\"Realistic\"",
  40642. height: math.unit(7, "feet")
  40643. },
  40644. {
  40645. name: "Normal",
  40646. height: math.unit(150, "feet"),
  40647. default: true
  40648. },
  40649. {
  40650. name: "BIG",
  40651. height: math.unit(1200, "feet")
  40652. },
  40653. {
  40654. name: "👀",
  40655. height: math.unit(5, "miles")
  40656. },
  40657. {
  40658. name: "👀👀👀",
  40659. height: math.unit(64, "miles")
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40665. {
  40666. front: {
  40667. height: math.unit(625, "feet"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/asonja-rossa/front.svg",
  40671. extra: 1833/1686,
  40672. bottom: 24/1857
  40673. }
  40674. },
  40675. back: {
  40676. height: math.unit(625, "feet"),
  40677. name: "Back",
  40678. image: {
  40679. source: "./media/characters/asonja-rossa/back.svg",
  40680. extra: 1852/1753,
  40681. bottom: 26/1878
  40682. }
  40683. },
  40684. },
  40685. [
  40686. {
  40687. name: "Macro",
  40688. height: math.unit(625, "feet"),
  40689. default: true
  40690. },
  40691. ]
  40692. ))
  40693. characterMakers.push(() => makeCharacter(
  40694. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40695. {
  40696. side: {
  40697. height: math.unit(8, "feet"),
  40698. name: "Side",
  40699. image: {
  40700. source: "./media/characters/rezukii/side.svg",
  40701. extra: 979/542,
  40702. bottom: 87/1066
  40703. }
  40704. },
  40705. sitting: {
  40706. height: math.unit(14.6, "feet"),
  40707. name: "Sitting",
  40708. image: {
  40709. source: "./media/characters/rezukii/sitting.svg",
  40710. extra: 1023/813,
  40711. bottom: 45/1068
  40712. }
  40713. },
  40714. },
  40715. [
  40716. {
  40717. name: "Tiny",
  40718. height: math.unit(2, "feet")
  40719. },
  40720. {
  40721. name: "Smol",
  40722. height: math.unit(4, "feet")
  40723. },
  40724. {
  40725. name: "Normal",
  40726. height: math.unit(8, "feet"),
  40727. default: true
  40728. },
  40729. {
  40730. name: "Big",
  40731. height: math.unit(12, "feet")
  40732. },
  40733. {
  40734. name: "Macro",
  40735. height: math.unit(30, "feet")
  40736. },
  40737. ]
  40738. ))
  40739. characterMakers.push(() => makeCharacter(
  40740. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40741. {
  40742. front: {
  40743. height: math.unit(14, "feet"),
  40744. weight: math.unit(9.5, "tonnes"),
  40745. name: "Front",
  40746. image: {
  40747. source: "./media/characters/dawnheart/front.svg",
  40748. extra: 2792/2675,
  40749. bottom: 64/2856
  40750. }
  40751. },
  40752. },
  40753. [
  40754. {
  40755. name: "Normal",
  40756. height: math.unit(14, "feet"),
  40757. default: true
  40758. },
  40759. ]
  40760. ))
  40761. characterMakers.push(() => makeCharacter(
  40762. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40763. {
  40764. front: {
  40765. height: math.unit(1.7, "m"),
  40766. name: "Front",
  40767. image: {
  40768. source: "./media/characters/gladi/front.svg",
  40769. extra: 1460/1362,
  40770. bottom: 19/1479
  40771. }
  40772. },
  40773. back: {
  40774. height: math.unit(1.7, "m"),
  40775. name: "Back",
  40776. image: {
  40777. source: "./media/characters/gladi/back.svg",
  40778. extra: 1459/1357,
  40779. bottom: 12/1471
  40780. }
  40781. },
  40782. feral: {
  40783. height: math.unit(2.05, "m"),
  40784. name: "Feral",
  40785. image: {
  40786. source: "./media/characters/gladi/feral.svg",
  40787. extra: 821/557,
  40788. bottom: 91/912
  40789. }
  40790. },
  40791. },
  40792. [
  40793. {
  40794. name: "Shortest",
  40795. height: math.unit(70, "cm")
  40796. },
  40797. {
  40798. name: "Normal",
  40799. height: math.unit(1.7, "m")
  40800. },
  40801. {
  40802. name: "Macro",
  40803. height: math.unit(10, "m"),
  40804. default: true
  40805. },
  40806. {
  40807. name: "Tallest",
  40808. height: math.unit(200, "m")
  40809. },
  40810. ]
  40811. ))
  40812. characterMakers.push(() => makeCharacter(
  40813. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40814. {
  40815. front: {
  40816. height: math.unit(5 + 7/12, "feet"),
  40817. weight: math.unit(2, "tons"),
  40818. name: "Front",
  40819. image: {
  40820. source: "./media/characters/erdno/front.svg",
  40821. extra: 1234/1129,
  40822. bottom: 35/1269
  40823. }
  40824. },
  40825. angled: {
  40826. height: math.unit(5 + 7/12, "feet"),
  40827. weight: math.unit(2, "tons"),
  40828. name: "Angled",
  40829. image: {
  40830. source: "./media/characters/erdno/angled.svg",
  40831. extra: 1185/1139,
  40832. bottom: 36/1221
  40833. }
  40834. },
  40835. side: {
  40836. height: math.unit(5 + 7/12, "feet"),
  40837. weight: math.unit(2, "tons"),
  40838. name: "Side",
  40839. image: {
  40840. source: "./media/characters/erdno/side.svg",
  40841. extra: 1191/1144,
  40842. bottom: 40/1231
  40843. }
  40844. },
  40845. back: {
  40846. height: math.unit(5 + 7/12, "feet"),
  40847. weight: math.unit(2, "tons"),
  40848. name: "Back",
  40849. image: {
  40850. source: "./media/characters/erdno/back.svg",
  40851. extra: 1202/1146,
  40852. bottom: 17/1219
  40853. }
  40854. },
  40855. frontNsfw: {
  40856. height: math.unit(5 + 7/12, "feet"),
  40857. weight: math.unit(2, "tons"),
  40858. name: "Front (NSFW)",
  40859. image: {
  40860. source: "./media/characters/erdno/front-nsfw.svg",
  40861. extra: 1234/1129,
  40862. bottom: 35/1269
  40863. }
  40864. },
  40865. angledNsfw: {
  40866. height: math.unit(5 + 7/12, "feet"),
  40867. weight: math.unit(2, "tons"),
  40868. name: "Angled (NSFW)",
  40869. image: {
  40870. source: "./media/characters/erdno/angled-nsfw.svg",
  40871. extra: 1185/1139,
  40872. bottom: 36/1221
  40873. }
  40874. },
  40875. sideNsfw: {
  40876. height: math.unit(5 + 7/12, "feet"),
  40877. weight: math.unit(2, "tons"),
  40878. name: "Side (NSFW)",
  40879. image: {
  40880. source: "./media/characters/erdno/side-nsfw.svg",
  40881. extra: 1191/1144,
  40882. bottom: 40/1231
  40883. }
  40884. },
  40885. backNsfw: {
  40886. height: math.unit(5 + 7/12, "feet"),
  40887. weight: math.unit(2, "tons"),
  40888. name: "Back (NSFW)",
  40889. image: {
  40890. source: "./media/characters/erdno/back-nsfw.svg",
  40891. extra: 1202/1146,
  40892. bottom: 17/1219
  40893. }
  40894. },
  40895. frontHyper: {
  40896. height: math.unit(5 + 7/12, "feet"),
  40897. weight: math.unit(2, "tons"),
  40898. name: "Front (Hyper)",
  40899. image: {
  40900. source: "./media/characters/erdno/front-hyper.svg",
  40901. extra: 1298/1136,
  40902. bottom: 35/1333
  40903. }
  40904. },
  40905. },
  40906. [
  40907. {
  40908. name: "Normal",
  40909. height: math.unit(5 + 7/12, "feet"),
  40910. default: true
  40911. },
  40912. {
  40913. name: "Big",
  40914. height: math.unit(5.7, "meters")
  40915. },
  40916. {
  40917. name: "Macro",
  40918. height: math.unit(5.7, "kilometers")
  40919. },
  40920. {
  40921. name: "Megamacro",
  40922. height: math.unit(5.7, "earths")
  40923. },
  40924. ]
  40925. ))
  40926. characterMakers.push(() => makeCharacter(
  40927. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40928. {
  40929. front: {
  40930. height: math.unit(5 + 10/12, "feet"),
  40931. weight: math.unit(150, "lb"),
  40932. name: "Front",
  40933. image: {
  40934. source: "./media/characters/jamie/front.svg",
  40935. extra: 1908/1768,
  40936. bottom: 19/1927
  40937. }
  40938. },
  40939. },
  40940. [
  40941. {
  40942. name: "Minimum",
  40943. height: math.unit(2, "cm")
  40944. },
  40945. {
  40946. name: "Micro",
  40947. height: math.unit(3, "inches")
  40948. },
  40949. {
  40950. name: "Normal",
  40951. height: math.unit(5 + 10/12, "feet"),
  40952. default: true
  40953. },
  40954. {
  40955. name: "Macro",
  40956. height: math.unit(150, "feet")
  40957. },
  40958. {
  40959. name: "Megamacro",
  40960. height: math.unit(10000, "m")
  40961. },
  40962. ]
  40963. ))
  40964. characterMakers.push(() => makeCharacter(
  40965. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40966. {
  40967. front: {
  40968. height: math.unit(2, "meters"),
  40969. weight: math.unit(100, "kg"),
  40970. name: "Front",
  40971. image: {
  40972. source: "./media/characters/shiron/front.svg",
  40973. extra: 2103/1985,
  40974. bottom: 98/2201
  40975. }
  40976. },
  40977. back: {
  40978. height: math.unit(2, "meters"),
  40979. weight: math.unit(100, "kg"),
  40980. name: "Back",
  40981. image: {
  40982. source: "./media/characters/shiron/back.svg",
  40983. extra: 2110/2015,
  40984. bottom: 89/2199
  40985. }
  40986. },
  40987. hand: {
  40988. height: math.unit(0.96, "feet"),
  40989. name: "Hand",
  40990. image: {
  40991. source: "./media/characters/shiron/hand.svg"
  40992. }
  40993. },
  40994. foot: {
  40995. height: math.unit(1.464, "feet"),
  40996. name: "Foot",
  40997. image: {
  40998. source: "./media/characters/shiron/foot.svg"
  40999. }
  41000. },
  41001. },
  41002. [
  41003. {
  41004. name: "Normal",
  41005. height: math.unit(2, "meters")
  41006. },
  41007. {
  41008. name: "Macro",
  41009. height: math.unit(500, "meters"),
  41010. default: true
  41011. },
  41012. {
  41013. name: "Megamacro",
  41014. height: math.unit(20, "km")
  41015. },
  41016. ]
  41017. ))
  41018. characterMakers.push(() => makeCharacter(
  41019. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41020. {
  41021. front: {
  41022. height: math.unit(6, "feet"),
  41023. name: "Front",
  41024. image: {
  41025. source: "./media/characters/sam/front.svg",
  41026. extra: 849/826,
  41027. bottom: 19/868
  41028. }
  41029. },
  41030. },
  41031. [
  41032. {
  41033. name: "Normal",
  41034. height: math.unit(6, "feet"),
  41035. default: true
  41036. },
  41037. ]
  41038. ))
  41039. characterMakers.push(() => makeCharacter(
  41040. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41041. {
  41042. front: {
  41043. height: math.unit(8 + 4/12, "feet"),
  41044. weight: math.unit(122, "kg"),
  41045. name: "Front",
  41046. image: {
  41047. source: "./media/characters/namori-kurogawa/front.svg",
  41048. extra: 1894/1576,
  41049. bottom: 34/1928
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Normal",
  41056. height: math.unit(8 + 4/12, "feet"),
  41057. default: true
  41058. },
  41059. ]
  41060. ))
  41061. characterMakers.push(() => makeCharacter(
  41062. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41063. {
  41064. front: {
  41065. height: math.unit(9, "feet"),
  41066. weight: math.unit(621, "lb"),
  41067. name: "Front",
  41068. image: {
  41069. source: "./media/characters/unmru/front.svg",
  41070. extra: 1853/1747,
  41071. bottom: 73/1926
  41072. }
  41073. },
  41074. side: {
  41075. height: math.unit(9, "feet"),
  41076. weight: math.unit(621, "lb"),
  41077. name: "Side",
  41078. image: {
  41079. source: "./media/characters/unmru/side.svg",
  41080. extra: 1781/1671,
  41081. bottom: 127/1908
  41082. }
  41083. },
  41084. back: {
  41085. height: math.unit(9, "feet"),
  41086. weight: math.unit(621, "lb"),
  41087. name: "Back",
  41088. image: {
  41089. source: "./media/characters/unmru/back.svg",
  41090. extra: 1894/1765,
  41091. bottom: 75/1969
  41092. }
  41093. },
  41094. dick: {
  41095. height: math.unit(3, "feet"),
  41096. weight: math.unit(35, "lb"),
  41097. name: "Dick",
  41098. image: {
  41099. source: "./media/characters/unmru/dick.svg"
  41100. }
  41101. },
  41102. },
  41103. [
  41104. {
  41105. name: "Normal",
  41106. height: math.unit(9, "feet")
  41107. },
  41108. {
  41109. name: "Natural",
  41110. height: math.unit(27, "feet"),
  41111. default: true
  41112. },
  41113. {
  41114. name: "Giant",
  41115. height: math.unit(90, "feet")
  41116. },
  41117. {
  41118. name: "Kaiju",
  41119. height: math.unit(270, "feet")
  41120. },
  41121. {
  41122. name: "Macro",
  41123. height: math.unit(900, "feet")
  41124. },
  41125. {
  41126. name: "Macro+",
  41127. height: math.unit(2700, "feet")
  41128. },
  41129. {
  41130. name: "Megamacro",
  41131. height: math.unit(9000, "feet")
  41132. },
  41133. {
  41134. name: "City-Crushing",
  41135. height: math.unit(27000, "feet")
  41136. },
  41137. {
  41138. name: "Mountain-Mashing",
  41139. height: math.unit(90000, "feet")
  41140. },
  41141. {
  41142. name: "Earth-Eclipsing",
  41143. height: math.unit(2.7e8, "feet")
  41144. },
  41145. {
  41146. name: "Sol-Swallowing",
  41147. height: math.unit(9e10, "feet")
  41148. },
  41149. {
  41150. name: "Majoris-Munching",
  41151. height: math.unit(2.7e13, "feet")
  41152. },
  41153. ]
  41154. ))
  41155. characterMakers.push(() => makeCharacter(
  41156. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41157. {
  41158. front: {
  41159. height: math.unit(1, "inch"),
  41160. name: "Front",
  41161. image: {
  41162. source: "./media/characters/squeaks-mouse/front.svg",
  41163. extra: 352/308,
  41164. bottom: 25/377
  41165. }
  41166. },
  41167. },
  41168. [
  41169. {
  41170. name: "Micro",
  41171. height: math.unit(1, "inch"),
  41172. default: true
  41173. },
  41174. ]
  41175. ))
  41176. characterMakers.push(() => makeCharacter(
  41177. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41178. {
  41179. side: {
  41180. height: math.unit(35, "feet"),
  41181. name: "Side",
  41182. image: {
  41183. source: "./media/characters/sayko/side.svg",
  41184. extra: 1697/1021,
  41185. bottom: 82/1779
  41186. }
  41187. },
  41188. head: {
  41189. height: math.unit(16, "feet"),
  41190. name: "Head",
  41191. image: {
  41192. source: "./media/characters/sayko/head.svg"
  41193. }
  41194. },
  41195. forepaw: {
  41196. height: math.unit(7.85, "feet"),
  41197. name: "Forepaw",
  41198. image: {
  41199. source: "./media/characters/sayko/forepaw.svg"
  41200. }
  41201. },
  41202. hindpaw: {
  41203. height: math.unit(8.8, "feet"),
  41204. name: "Hindpaw",
  41205. image: {
  41206. source: "./media/characters/sayko/hindpaw.svg"
  41207. }
  41208. },
  41209. },
  41210. [
  41211. {
  41212. name: "Normal",
  41213. height: math.unit(35, "feet"),
  41214. default: true
  41215. },
  41216. {
  41217. name: "Colossus",
  41218. height: math.unit(100, "meters")
  41219. },
  41220. {
  41221. name: "\"Small\" Deity",
  41222. height: math.unit(1, "km")
  41223. },
  41224. {
  41225. name: "\"Large\" Deity",
  41226. height: math.unit(15, "km")
  41227. },
  41228. ]
  41229. ))
  41230. characterMakers.push(() => makeCharacter(
  41231. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41232. {
  41233. front: {
  41234. height: math.unit(6, "feet"),
  41235. weight: math.unit(250, "lb"),
  41236. name: "Front",
  41237. image: {
  41238. source: "./media/characters/mukiro/front.svg",
  41239. extra: 1368/1310,
  41240. bottom: 34/1402
  41241. }
  41242. },
  41243. },
  41244. [
  41245. {
  41246. name: "Normal",
  41247. height: math.unit(6, "feet"),
  41248. default: true
  41249. },
  41250. ]
  41251. ))
  41252. characterMakers.push(() => makeCharacter(
  41253. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41254. {
  41255. front: {
  41256. height: math.unit(12 + 4/12, "feet"),
  41257. name: "Front",
  41258. image: {
  41259. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41260. extra: 1346/1311,
  41261. bottom: 65/1411
  41262. }
  41263. },
  41264. },
  41265. [
  41266. {
  41267. name: "Base",
  41268. height: math.unit(12 + 4/12, "feet"),
  41269. default: true
  41270. },
  41271. {
  41272. name: "Macro",
  41273. height: math.unit(150, "feet")
  41274. },
  41275. {
  41276. name: "Mega",
  41277. height: math.unit(2, "miles")
  41278. },
  41279. {
  41280. name: "Demi God",
  41281. height: math.unit(4, "AU")
  41282. },
  41283. {
  41284. name: "God Size",
  41285. height: math.unit(1, "universe")
  41286. },
  41287. ]
  41288. ))
  41289. characterMakers.push(() => makeCharacter(
  41290. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41291. {
  41292. front: {
  41293. height: math.unit(3 + 3/12, "feet"),
  41294. weight: math.unit(88, "lb"),
  41295. name: "Front",
  41296. image: {
  41297. source: "./media/characters/trey/front.svg",
  41298. extra: 1815/1509,
  41299. bottom: 60/1875
  41300. }
  41301. },
  41302. },
  41303. [
  41304. {
  41305. name: "Normal",
  41306. height: math.unit(3 + 3/12, "feet"),
  41307. default: true
  41308. },
  41309. ]
  41310. ))
  41311. characterMakers.push(() => makeCharacter(
  41312. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41313. {
  41314. front: {
  41315. height: math.unit(4, "meters"),
  41316. name: "Front",
  41317. image: {
  41318. source: "./media/characters/adelonda/front.svg",
  41319. extra: 1077/982,
  41320. bottom: 39/1116
  41321. }
  41322. },
  41323. back: {
  41324. height: math.unit(4, "meters"),
  41325. name: "Back",
  41326. image: {
  41327. source: "./media/characters/adelonda/back.svg",
  41328. extra: 1105/1003,
  41329. bottom: 25/1130
  41330. }
  41331. },
  41332. feral: {
  41333. height: math.unit(40/1.5, "meters"),
  41334. name: "Feral",
  41335. image: {
  41336. source: "./media/characters/adelonda/feral.svg",
  41337. extra: 597/271,
  41338. bottom: 387/984
  41339. }
  41340. },
  41341. },
  41342. [
  41343. {
  41344. name: "Normal",
  41345. height: math.unit(4, "meters"),
  41346. default: true
  41347. },
  41348. ]
  41349. ))
  41350. characterMakers.push(() => makeCharacter(
  41351. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41352. {
  41353. front: {
  41354. height: math.unit(8 + 4/12, "feet"),
  41355. weight: math.unit(670, "lb"),
  41356. name: "Front",
  41357. image: {
  41358. source: "./media/characters/acadiel/front.svg",
  41359. extra: 1901/1595,
  41360. bottom: 142/2043
  41361. }
  41362. },
  41363. },
  41364. [
  41365. {
  41366. name: "Normal",
  41367. height: math.unit(8 + 4/12, "feet"),
  41368. default: true
  41369. },
  41370. {
  41371. name: "Macro",
  41372. height: math.unit(200, "feet")
  41373. },
  41374. ]
  41375. ))
  41376. characterMakers.push(() => makeCharacter(
  41377. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41378. {
  41379. front: {
  41380. height: math.unit(6 + 2/12, "feet"),
  41381. weight: math.unit(185, "lb"),
  41382. name: "Front",
  41383. image: {
  41384. source: "./media/characters/kayne-ein/front.svg",
  41385. extra: 1780/1560,
  41386. bottom: 81/1861
  41387. }
  41388. },
  41389. },
  41390. [
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(6 + 2/12, "feet"),
  41394. default: true
  41395. },
  41396. {
  41397. name: "Transformation Stage",
  41398. height: math.unit(15, "feet")
  41399. },
  41400. {
  41401. name: "Macro",
  41402. height: math.unit(150, "feet")
  41403. },
  41404. {
  41405. name: "Earth's Shadow",
  41406. height: math.unit(6200, "miles")
  41407. },
  41408. {
  41409. name: "Universal Demon",
  41410. height: math.unit(28e9, "parsecs")
  41411. },
  41412. {
  41413. name: "Multiverse God",
  41414. height: math.unit(3, "multiverses")
  41415. },
  41416. ]
  41417. ))
  41418. characterMakers.push(() => makeCharacter(
  41419. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41420. {
  41421. front: {
  41422. height: math.unit(5 + 5/12, "feet"),
  41423. name: "Front",
  41424. image: {
  41425. source: "./media/characters/fawn/front.svg",
  41426. extra: 1873/1731,
  41427. bottom: 95/1968
  41428. }
  41429. },
  41430. back: {
  41431. height: math.unit(5 + 5/12, "feet"),
  41432. name: "Back",
  41433. image: {
  41434. source: "./media/characters/fawn/back.svg",
  41435. extra: 1813/1700,
  41436. bottom: 14/1827
  41437. }
  41438. },
  41439. hoof: {
  41440. height: math.unit(1.45, "feet"),
  41441. name: "Hoof",
  41442. image: {
  41443. source: "./media/characters/fawn/hoof.svg"
  41444. }
  41445. },
  41446. },
  41447. [
  41448. {
  41449. name: "Normal",
  41450. height: math.unit(5 + 5/12, "feet"),
  41451. default: true
  41452. },
  41453. ]
  41454. ))
  41455. characterMakers.push(() => makeCharacter(
  41456. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41457. {
  41458. front: {
  41459. height: math.unit(2 + 5/12, "feet"),
  41460. name: "Front",
  41461. image: {
  41462. source: "./media/characters/orion/front.svg",
  41463. extra: 1366/1304,
  41464. bottom: 43/1409
  41465. }
  41466. },
  41467. paw: {
  41468. height: math.unit(0.52, "feet"),
  41469. name: "Paw",
  41470. image: {
  41471. source: "./media/characters/orion/paw.svg"
  41472. }
  41473. },
  41474. },
  41475. [
  41476. {
  41477. name: "Normal",
  41478. height: math.unit(2 + 5/12, "feet"),
  41479. default: true
  41480. },
  41481. ]
  41482. ))
  41483. characterMakers.push(() => makeCharacter(
  41484. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41485. {
  41486. front: {
  41487. height: math.unit(5 + 10/12, "feet"),
  41488. name: "Front",
  41489. image: {
  41490. source: "./media/characters/vera/front.svg",
  41491. extra: 1680/1575,
  41492. bottom: 49/1729
  41493. }
  41494. },
  41495. back: {
  41496. height: math.unit(5 + 10/12, "feet"),
  41497. name: "Back",
  41498. image: {
  41499. source: "./media/characters/vera/back.svg",
  41500. extra: 1700/1588,
  41501. bottom: 18/1718
  41502. }
  41503. },
  41504. arcanine: {
  41505. height: math.unit(6 + 8/12, "feet"),
  41506. name: "Arcanine",
  41507. image: {
  41508. source: "./media/characters/vera/arcanine.svg",
  41509. extra: 1590/1511,
  41510. bottom: 71/1661
  41511. }
  41512. },
  41513. maw: {
  41514. height: math.unit(0.82, "feet"),
  41515. name: "Maw",
  41516. image: {
  41517. source: "./media/characters/vera/maw.svg"
  41518. }
  41519. },
  41520. mawArcanine: {
  41521. height: math.unit(0.97, "feet"),
  41522. name: "Maw (Arcanine)",
  41523. image: {
  41524. source: "./media/characters/vera/maw-arcanine.svg"
  41525. }
  41526. },
  41527. paw: {
  41528. height: math.unit(0.75, "feet"),
  41529. name: "Paw",
  41530. image: {
  41531. source: "./media/characters/vera/paw.svg"
  41532. }
  41533. },
  41534. pawprint: {
  41535. height: math.unit(0.52, "feet"),
  41536. name: "Pawprint",
  41537. image: {
  41538. source: "./media/characters/vera/pawprint.svg"
  41539. }
  41540. },
  41541. },
  41542. [
  41543. {
  41544. name: "Normal",
  41545. height: math.unit(5 + 10/12, "feet"),
  41546. default: true
  41547. },
  41548. {
  41549. name: "Macro",
  41550. height: math.unit(75, "feet")
  41551. },
  41552. ]
  41553. ))
  41554. characterMakers.push(() => makeCharacter(
  41555. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41556. {
  41557. front: {
  41558. height: math.unit(4, "feet"),
  41559. weight: math.unit(40, "lb"),
  41560. name: "Front",
  41561. image: {
  41562. source: "./media/characters/orvan-rabbit/front.svg",
  41563. extra: 1896/1642,
  41564. bottom: 29/1925
  41565. }
  41566. },
  41567. },
  41568. [
  41569. {
  41570. name: "Normal",
  41571. height: math.unit(4, "feet"),
  41572. default: true
  41573. },
  41574. ]
  41575. ))
  41576. characterMakers.push(() => makeCharacter(
  41577. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41578. {
  41579. front: {
  41580. height: math.unit(6, "feet"),
  41581. weight: math.unit(168, "lb"),
  41582. name: "Front",
  41583. image: {
  41584. source: "./media/characters/lisa/front.svg",
  41585. extra: 2065/1867,
  41586. bottom: 46/2111
  41587. }
  41588. },
  41589. back: {
  41590. height: math.unit(6, "feet"),
  41591. weight: math.unit(168, "lb"),
  41592. name: "Back",
  41593. image: {
  41594. source: "./media/characters/lisa/back.svg",
  41595. extra: 1982/1838,
  41596. bottom: 29/2011
  41597. }
  41598. },
  41599. maw: {
  41600. height: math.unit(0.81, "feet"),
  41601. name: "Maw",
  41602. image: {
  41603. source: "./media/characters/lisa/maw.svg"
  41604. }
  41605. },
  41606. paw: {
  41607. height: math.unit(0.9, "feet"),
  41608. name: "Paw",
  41609. image: {
  41610. source: "./media/characters/lisa/paw.svg"
  41611. }
  41612. },
  41613. caribousune: {
  41614. height: math.unit(7 + 2/12, "feet"),
  41615. weight: math.unit(268, "lb"),
  41616. name: "Caribousune",
  41617. image: {
  41618. source: "./media/characters/lisa/caribousune.svg",
  41619. extra: 1843/1633,
  41620. bottom: 29/1872
  41621. }
  41622. },
  41623. frontCaribousune: {
  41624. height: math.unit(7 + 2/12, "feet"),
  41625. weight: math.unit(268, "lb"),
  41626. name: "Front (Caribousune)",
  41627. image: {
  41628. source: "./media/characters/lisa/front-caribousune.svg",
  41629. extra: 1818/1638,
  41630. bottom: 52/1870
  41631. }
  41632. },
  41633. sideCaribousune: {
  41634. height: math.unit(7 + 2/12, "feet"),
  41635. weight: math.unit(268, "lb"),
  41636. name: "Side (Caribousune)",
  41637. image: {
  41638. source: "./media/characters/lisa/side-caribousune.svg",
  41639. extra: 1851/1635,
  41640. bottom: 16/1867
  41641. }
  41642. },
  41643. backCaribousune: {
  41644. height: math.unit(7 + 2/12, "feet"),
  41645. weight: math.unit(268, "lb"),
  41646. name: "Back (Caribousune)",
  41647. image: {
  41648. source: "./media/characters/lisa/back-caribousune.svg",
  41649. extra: 1801/1604,
  41650. bottom: 44/1845
  41651. }
  41652. },
  41653. caribou: {
  41654. height: math.unit(7 + 2/12, "feet"),
  41655. weight: math.unit(268, "lb"),
  41656. name: "Caribou",
  41657. image: {
  41658. source: "./media/characters/lisa/caribou.svg",
  41659. extra: 1843/1633,
  41660. bottom: 29/1872
  41661. }
  41662. },
  41663. frontCaribou: {
  41664. height: math.unit(7 + 2/12, "feet"),
  41665. weight: math.unit(268, "lb"),
  41666. name: "Front (Caribou)",
  41667. image: {
  41668. source: "./media/characters/lisa/front-caribou.svg",
  41669. extra: 1818/1638,
  41670. bottom: 52/1870
  41671. }
  41672. },
  41673. sideCaribou: {
  41674. height: math.unit(7 + 2/12, "feet"),
  41675. weight: math.unit(268, "lb"),
  41676. name: "Side (Caribou)",
  41677. image: {
  41678. source: "./media/characters/lisa/side-caribou.svg",
  41679. extra: 1851/1635,
  41680. bottom: 16/1867
  41681. }
  41682. },
  41683. backCaribou: {
  41684. height: math.unit(7 + 2/12, "feet"),
  41685. weight: math.unit(268, "lb"),
  41686. name: "Back (Caribou)",
  41687. image: {
  41688. source: "./media/characters/lisa/back-caribou.svg",
  41689. extra: 1801/1604,
  41690. bottom: 44/1845
  41691. }
  41692. },
  41693. mawCaribou: {
  41694. height: math.unit(1.45, "feet"),
  41695. name: "Maw (Caribou)",
  41696. image: {
  41697. source: "./media/characters/lisa/maw-caribou.svg"
  41698. }
  41699. },
  41700. mawCaribousune: {
  41701. height: math.unit(1.45, "feet"),
  41702. name: "Maw (Caribousune)",
  41703. image: {
  41704. source: "./media/characters/lisa/maw-caribousune.svg"
  41705. }
  41706. },
  41707. pawCaribousune: {
  41708. height: math.unit(1.61, "feet"),
  41709. name: "Paw (Caribou)",
  41710. image: {
  41711. source: "./media/characters/lisa/paw-caribousune.svg"
  41712. }
  41713. },
  41714. },
  41715. [
  41716. {
  41717. name: "Normal",
  41718. height: math.unit(6, "feet")
  41719. },
  41720. {
  41721. name: "God Size",
  41722. height: math.unit(72, "feet"),
  41723. default: true
  41724. },
  41725. {
  41726. name: "Towering",
  41727. height: math.unit(288, "feet")
  41728. },
  41729. {
  41730. name: "City Size",
  41731. height: math.unit(48384, "feet")
  41732. },
  41733. {
  41734. name: "Continental",
  41735. height: math.unit(4200, "miles")
  41736. },
  41737. {
  41738. name: "Planet Eater",
  41739. height: math.unit(42, "earths")
  41740. },
  41741. {
  41742. name: "Star Swallower",
  41743. height: math.unit(42, "solarradii")
  41744. },
  41745. {
  41746. name: "System Swallower",
  41747. height: math.unit(84000, "AU")
  41748. },
  41749. {
  41750. name: "Galaxy Gobbler",
  41751. height: math.unit(42, "galaxies")
  41752. },
  41753. {
  41754. name: "Universe Devourer",
  41755. height: math.unit(42, "universes")
  41756. },
  41757. {
  41758. name: "Multiverse Muncher",
  41759. height: math.unit(42, "multiverses")
  41760. },
  41761. ]
  41762. ))
  41763. characterMakers.push(() => makeCharacter(
  41764. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41765. {
  41766. front: {
  41767. height: math.unit(36, "feet"),
  41768. name: "Front",
  41769. image: {
  41770. source: "./media/characters/shadow-rat/front.svg",
  41771. extra: 1845/1758,
  41772. bottom: 83/1928
  41773. }
  41774. },
  41775. },
  41776. [
  41777. {
  41778. name: "Macro",
  41779. height: math.unit(36, "feet"),
  41780. default: true
  41781. },
  41782. ]
  41783. ))
  41784. characterMakers.push(() => makeCharacter(
  41785. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41786. {
  41787. side: {
  41788. height: math.unit(8, "feet"),
  41789. weight: math.unit(2630, "lb"),
  41790. name: "Side",
  41791. image: {
  41792. source: "./media/characters/torallia/side.svg",
  41793. extra: 2164/2021,
  41794. bottom: 371/2535
  41795. }
  41796. },
  41797. },
  41798. [
  41799. {
  41800. name: "Mortal Interaction",
  41801. height: math.unit(8, "feet")
  41802. },
  41803. {
  41804. name: "Natural",
  41805. height: math.unit(24, "feet"),
  41806. default: true
  41807. },
  41808. {
  41809. name: "Giant",
  41810. height: math.unit(80, "feet")
  41811. },
  41812. {
  41813. name: "Kaiju",
  41814. height: math.unit(240, "feet")
  41815. },
  41816. {
  41817. name: "Macro",
  41818. height: math.unit(800, "feet")
  41819. },
  41820. {
  41821. name: "Macro+",
  41822. height: math.unit(2400, "feet")
  41823. },
  41824. {
  41825. name: "Macro++",
  41826. height: math.unit(8000, "feet")
  41827. },
  41828. {
  41829. name: "City-Crushing",
  41830. height: math.unit(24000, "feet")
  41831. },
  41832. {
  41833. name: "Mountain-Mashing",
  41834. height: math.unit(80000, "feet")
  41835. },
  41836. {
  41837. name: "District Demolisher",
  41838. height: math.unit(240000, "feet")
  41839. },
  41840. {
  41841. name: "Tri-County Terror",
  41842. height: math.unit(800000, "feet")
  41843. },
  41844. {
  41845. name: "State Smasher",
  41846. height: math.unit(2.4e6, "feet")
  41847. },
  41848. {
  41849. name: "Nation Nemesis",
  41850. height: math.unit(8e6, "feet")
  41851. },
  41852. {
  41853. name: "Continent Cracker",
  41854. height: math.unit(2.4e7, "feet")
  41855. },
  41856. {
  41857. name: "Planet-Pillaging",
  41858. height: math.unit(8e7, "feet")
  41859. },
  41860. {
  41861. name: "Earth-Eclipsing",
  41862. height: math.unit(2.4e8, "feet")
  41863. },
  41864. {
  41865. name: "Jovian-Jostling",
  41866. height: math.unit(8e8, "feet")
  41867. },
  41868. {
  41869. name: "Gas Giant Gulper",
  41870. height: math.unit(2.4e9, "feet")
  41871. },
  41872. {
  41873. name: "Astral Annihilator",
  41874. height: math.unit(8e9, "feet")
  41875. },
  41876. {
  41877. name: "Celestial Conqueror",
  41878. height: math.unit(2.4e10, "feet")
  41879. },
  41880. {
  41881. name: "Sol-Swallowing",
  41882. height: math.unit(8e10, "feet")
  41883. },
  41884. {
  41885. name: "Hunter of the Heavens",
  41886. height: math.unit(2.4e13, "feet")
  41887. },
  41888. ]
  41889. ))
  41890. characterMakers.push(() => makeCharacter(
  41891. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41892. {
  41893. front: {
  41894. height: math.unit(10, "feet"),
  41895. weight: math.unit(844, "kilograms"),
  41896. name: "Front",
  41897. image: {
  41898. source: "./media/characters/rebecca-pawlson/front.svg",
  41899. extra: 1196/1099,
  41900. bottom: 81/1277
  41901. },
  41902. extraAttributes: {
  41903. "pawSize": {
  41904. name: "Paw Size",
  41905. power: 2,
  41906. type: "area",
  41907. base: math.unit(0.2 * 0.375, "meters^2")
  41908. },
  41909. "handSize": {
  41910. name: "Hand Size",
  41911. power: 2,
  41912. type: "area",
  41913. base: math.unit(0.2 * 0.35, "meters^2")
  41914. },
  41915. "breastDiameter": {
  41916. name: "Breast Diameter",
  41917. power: 1,
  41918. type: "length",
  41919. base: math.unit(0.5, "meters")
  41920. },
  41921. "breastVolume": {
  41922. name: "Breast Volume",
  41923. power: 3,
  41924. type: "volume",
  41925. base: math.unit(0.065, "m^3")
  41926. },
  41927. "breastMass": {
  41928. name: "Breast Mass",
  41929. power: 3,
  41930. type: "mass",
  41931. base: math.unit(65, "kg")
  41932. },
  41933. "nippleDiameter": {
  41934. name: "Nipple Diameter",
  41935. power: 1,
  41936. type: "length",
  41937. base: math.unit(0.1, "meters")
  41938. },
  41939. }
  41940. },
  41941. back: {
  41942. height: math.unit(10, "feet"),
  41943. weight: math.unit(844, "kilograms"),
  41944. name: "Back",
  41945. image: {
  41946. source: "./media/characters/rebecca-pawlson/back.svg",
  41947. extra: 879/776,
  41948. bottom: 43/922
  41949. },
  41950. extraAttributes: {
  41951. "pawSize": {
  41952. name: "Paw Size",
  41953. power: 2,
  41954. type: "area",
  41955. base: math.unit(0.2 * 0.375, "meters^2")
  41956. },
  41957. "handSize": {
  41958. name: "Hand Size",
  41959. power: 2,
  41960. type: "area",
  41961. base: math.unit(0.2 * 0.35, "meters^2")
  41962. },
  41963. "breastDiameter": {
  41964. name: "Breast Diameter",
  41965. power: 1,
  41966. type: "length",
  41967. base: math.unit(0.5, "meters")
  41968. },
  41969. "breastVolume": {
  41970. name: "Breast Volume",
  41971. power: 3,
  41972. type: "volume",
  41973. base: math.unit(0.065, "m^3")
  41974. },
  41975. "breastMass": {
  41976. name: "Breast Mass",
  41977. power: 3,
  41978. type: "mass",
  41979. base: math.unit(65, "kg")
  41980. },
  41981. "nippleDiameter": {
  41982. name: "Nipple Diameter",
  41983. power: 1,
  41984. type: "length",
  41985. base: math.unit(0.1, "meters")
  41986. },
  41987. }
  41988. },
  41989. },
  41990. [
  41991. {
  41992. name: "Normal",
  41993. height: math.unit(6 + 8/12, "feet")
  41994. },
  41995. {
  41996. name: "Mini Macro",
  41997. height: math.unit(10, "feet"),
  41998. default: true
  41999. },
  42000. {
  42001. name: "Macro",
  42002. height: math.unit(100, "feet")
  42003. },
  42004. {
  42005. name: "Mega Macro",
  42006. height: math.unit(2500, "feet")
  42007. },
  42008. {
  42009. name: "Giga Macro",
  42010. height: math.unit(50, "miles")
  42011. },
  42012. ]
  42013. ))
  42014. characterMakers.push(() => makeCharacter(
  42015. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42016. {
  42017. front: {
  42018. height: math.unit(7 + 6/12, "feet"),
  42019. weight: math.unit(600, "lb"),
  42020. name: "Front",
  42021. image: {
  42022. source: "./media/characters/moxie-nova/front.svg",
  42023. extra: 1734/1652,
  42024. bottom: 41/1775
  42025. }
  42026. },
  42027. },
  42028. [
  42029. {
  42030. name: "Normal",
  42031. height: math.unit(7 + 6/12, "feet"),
  42032. default: true
  42033. },
  42034. ]
  42035. ))
  42036. characterMakers.push(() => makeCharacter(
  42037. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42038. {
  42039. goat: {
  42040. height: math.unit(4, "feet"),
  42041. weight: math.unit(180, "lb"),
  42042. name: "Goat",
  42043. image: {
  42044. source: "./media/characters/tiffany/goat.svg",
  42045. extra: 1845/1595,
  42046. bottom: 106/1951
  42047. }
  42048. },
  42049. front: {
  42050. height: math.unit(5, "feet"),
  42051. weight: math.unit(150, "lb"),
  42052. name: "Foxcoon",
  42053. image: {
  42054. source: "./media/characters/tiffany/foxcoon.svg",
  42055. extra: 1941/1845,
  42056. bottom: 58/1999
  42057. }
  42058. },
  42059. },
  42060. [
  42061. {
  42062. name: "Normal",
  42063. height: math.unit(5, "feet"),
  42064. default: true
  42065. },
  42066. ]
  42067. ))
  42068. characterMakers.push(() => makeCharacter(
  42069. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42070. {
  42071. front: {
  42072. height: math.unit(8, "feet"),
  42073. weight: math.unit(300, "lb"),
  42074. name: "Front",
  42075. image: {
  42076. source: "./media/characters/raxinath/front.svg",
  42077. extra: 1407/1309,
  42078. bottom: 39/1446
  42079. }
  42080. },
  42081. back: {
  42082. height: math.unit(8, "feet"),
  42083. weight: math.unit(300, "lb"),
  42084. name: "Back",
  42085. image: {
  42086. source: "./media/characters/raxinath/back.svg",
  42087. extra: 1405/1315,
  42088. bottom: 9/1414
  42089. }
  42090. },
  42091. },
  42092. [
  42093. {
  42094. name: "Speck",
  42095. height: math.unit(0.5, "nm")
  42096. },
  42097. {
  42098. name: "Micro",
  42099. height: math.unit(3, "inches")
  42100. },
  42101. {
  42102. name: "Kobold",
  42103. height: math.unit(3, "feet")
  42104. },
  42105. {
  42106. name: "Normal",
  42107. height: math.unit(8, "feet"),
  42108. default: true
  42109. },
  42110. {
  42111. name: "Giant",
  42112. height: math.unit(50, "feet")
  42113. },
  42114. {
  42115. name: "Macro",
  42116. height: math.unit(1000, "feet")
  42117. },
  42118. {
  42119. name: "Megamacro",
  42120. height: math.unit(1, "mile")
  42121. },
  42122. ]
  42123. ))
  42124. characterMakers.push(() => makeCharacter(
  42125. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42126. {
  42127. front: {
  42128. height: math.unit(10, "feet"),
  42129. weight: math.unit(1442, "lb"),
  42130. name: "Front",
  42131. image: {
  42132. source: "./media/characters/mal-dragon/front.svg",
  42133. extra: 1515/1444,
  42134. bottom: 113/1628
  42135. }
  42136. },
  42137. back: {
  42138. height: math.unit(10, "feet"),
  42139. weight: math.unit(1442, "lb"),
  42140. name: "Back",
  42141. image: {
  42142. source: "./media/characters/mal-dragon/back.svg",
  42143. extra: 1527/1434,
  42144. bottom: 25/1552
  42145. }
  42146. },
  42147. },
  42148. [
  42149. {
  42150. name: "Mortal Interaction",
  42151. height: math.unit(10, "feet"),
  42152. default: true
  42153. },
  42154. {
  42155. name: "Large",
  42156. height: math.unit(30, "feet")
  42157. },
  42158. {
  42159. name: "Kaiju",
  42160. height: math.unit(300, "feet")
  42161. },
  42162. {
  42163. name: "Megamacro",
  42164. height: math.unit(10000, "feet")
  42165. },
  42166. {
  42167. name: "Continent Cracker",
  42168. height: math.unit(30000000, "feet")
  42169. },
  42170. {
  42171. name: "Sol-Swallowing",
  42172. height: math.unit(1e11, "feet")
  42173. },
  42174. {
  42175. name: "Light Universal",
  42176. height: math.unit(5, "universes")
  42177. },
  42178. {
  42179. name: "Universe Atoms",
  42180. height: math.unit(1.829e9, "universes")
  42181. },
  42182. {
  42183. name: "Light Multiversal",
  42184. height: math.unit(5, "multiverses")
  42185. },
  42186. {
  42187. name: "Multiverse Atoms",
  42188. height: math.unit(1.829e9, "multiverses")
  42189. },
  42190. {
  42191. name: "Fabric of Time",
  42192. height: math.unit(1e262, "multiverses")
  42193. },
  42194. ]
  42195. ))
  42196. characterMakers.push(() => makeCharacter(
  42197. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42198. {
  42199. front: {
  42200. height: math.unit(9, "feet"),
  42201. weight: math.unit(1050, "lb"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/tabitha/front.svg",
  42205. extra: 2083/1994,
  42206. bottom: 68/2151
  42207. }
  42208. },
  42209. },
  42210. [
  42211. {
  42212. name: "Baseline",
  42213. height: math.unit(9, "feet"),
  42214. default: true
  42215. },
  42216. {
  42217. name: "Giant",
  42218. height: math.unit(90, "feet")
  42219. },
  42220. {
  42221. name: "Macro",
  42222. height: math.unit(900, "feet")
  42223. },
  42224. {
  42225. name: "Megamacro",
  42226. height: math.unit(9000, "feet")
  42227. },
  42228. {
  42229. name: "City-Crushing",
  42230. height: math.unit(27000, "feet")
  42231. },
  42232. {
  42233. name: "Mountain-Mashing",
  42234. height: math.unit(90000, "feet")
  42235. },
  42236. {
  42237. name: "Nation Nemesis",
  42238. height: math.unit(9e6, "feet")
  42239. },
  42240. {
  42241. name: "Continent Cracker",
  42242. height: math.unit(27e6, "feet")
  42243. },
  42244. {
  42245. name: "Earth-Eclipsing",
  42246. height: math.unit(2.7e8, "feet")
  42247. },
  42248. {
  42249. name: "Gas Giant Gulper",
  42250. height: math.unit(2.7e9, "feet")
  42251. },
  42252. {
  42253. name: "Sol-Swallowing",
  42254. height: math.unit(9e10, "feet")
  42255. },
  42256. {
  42257. name: "Galaxy Gulper",
  42258. height: math.unit(9, "galaxies")
  42259. },
  42260. {
  42261. name: "Cosmos Churner",
  42262. height: math.unit(9, "universes")
  42263. },
  42264. ]
  42265. ))
  42266. characterMakers.push(() => makeCharacter(
  42267. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42268. {
  42269. front: {
  42270. height: math.unit(160, "cm"),
  42271. weight: math.unit(55, "kg"),
  42272. name: "Front",
  42273. image: {
  42274. source: "./media/characters/tow/front.svg",
  42275. extra: 1751/1722,
  42276. bottom: 74/1825
  42277. }
  42278. },
  42279. },
  42280. [
  42281. {
  42282. name: "Norm",
  42283. height: math.unit(160, "cm")
  42284. },
  42285. {
  42286. name: "Casual",
  42287. height: math.unit(3200, "m"),
  42288. default: true
  42289. },
  42290. {
  42291. name: "Show-Off",
  42292. height: math.unit(160, "km")
  42293. },
  42294. ]
  42295. ))
  42296. characterMakers.push(() => makeCharacter(
  42297. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42298. {
  42299. front: {
  42300. height: math.unit(7 + 11/12, "feet"),
  42301. weight: math.unit(342.8, "lb"),
  42302. name: "Front",
  42303. image: {
  42304. source: "./media/characters/vivian-orca-dragon/front.svg",
  42305. extra: 1890/1865,
  42306. bottom: 28/1918
  42307. }
  42308. },
  42309. },
  42310. [
  42311. {
  42312. name: "Micro",
  42313. height: math.unit(5, "inches")
  42314. },
  42315. {
  42316. name: "Normal",
  42317. height: math.unit(7 + 11/12, "feet"),
  42318. default: true
  42319. },
  42320. {
  42321. name: "Macro",
  42322. height: math.unit(395 + 7/12, "feet")
  42323. },
  42324. ]
  42325. ))
  42326. characterMakers.push(() => makeCharacter(
  42327. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42328. {
  42329. side: {
  42330. height: math.unit(10, "feet"),
  42331. weight: math.unit(1442, "lb"),
  42332. name: "Side",
  42333. image: {
  42334. source: "./media/characters/lotherakon/side.svg",
  42335. extra: 1604/1497,
  42336. bottom: 89/1693
  42337. }
  42338. },
  42339. },
  42340. [
  42341. {
  42342. name: "Mortal Interaction",
  42343. height: math.unit(10, "feet")
  42344. },
  42345. {
  42346. name: "Large",
  42347. height: math.unit(30, "feet"),
  42348. default: true
  42349. },
  42350. {
  42351. name: "Giant",
  42352. height: math.unit(100, "feet")
  42353. },
  42354. {
  42355. name: "Kaiju",
  42356. height: math.unit(300, "feet")
  42357. },
  42358. {
  42359. name: "Macro",
  42360. height: math.unit(1000, "feet")
  42361. },
  42362. {
  42363. name: "Macro+",
  42364. height: math.unit(3000, "feet")
  42365. },
  42366. {
  42367. name: "Megamacro",
  42368. height: math.unit(10000, "feet")
  42369. },
  42370. {
  42371. name: "City-Crushing",
  42372. height: math.unit(30000, "feet")
  42373. },
  42374. {
  42375. name: "Continent Cracker",
  42376. height: math.unit(30e6, "feet")
  42377. },
  42378. {
  42379. name: "Earth Eclipsing",
  42380. height: math.unit(3e8, "feet")
  42381. },
  42382. {
  42383. name: "Gas Giant Gulper",
  42384. height: math.unit(3e9, "feet")
  42385. },
  42386. {
  42387. name: "Sol-Swallowing",
  42388. height: math.unit(1e11, "feet")
  42389. },
  42390. {
  42391. name: "System Swallower",
  42392. height: math.unit(3e14, "feet")
  42393. },
  42394. {
  42395. name: "Galaxy Gulper",
  42396. height: math.unit(10, "galaxies")
  42397. },
  42398. {
  42399. name: "Light Universal",
  42400. height: math.unit(5, "universes")
  42401. },
  42402. {
  42403. name: "Universe Palm",
  42404. height: math.unit(20, "universes")
  42405. },
  42406. {
  42407. name: "Light Multiversal",
  42408. height: math.unit(5, "multiverses")
  42409. },
  42410. {
  42411. name: "Multiverse Palm",
  42412. height: math.unit(20, "multiverses")
  42413. },
  42414. {
  42415. name: "Inferno Incarnate",
  42416. height: math.unit(1e7, "multiverses")
  42417. },
  42418. ]
  42419. ))
  42420. characterMakers.push(() => makeCharacter(
  42421. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42422. {
  42423. front: {
  42424. height: math.unit(8, "feet"),
  42425. weight: math.unit(1200, "lb"),
  42426. name: "Front",
  42427. image: {
  42428. source: "./media/characters/malithee/front.svg",
  42429. extra: 1675/1640,
  42430. bottom: 162/1837
  42431. }
  42432. },
  42433. },
  42434. [
  42435. {
  42436. name: "Mortal Interaction",
  42437. height: math.unit(8, "feet"),
  42438. default: true
  42439. },
  42440. {
  42441. name: "Large",
  42442. height: math.unit(24, "feet")
  42443. },
  42444. {
  42445. name: "Kaiju",
  42446. height: math.unit(240, "feet")
  42447. },
  42448. {
  42449. name: "Megamacro",
  42450. height: math.unit(8000, "feet")
  42451. },
  42452. {
  42453. name: "Continent Cracker",
  42454. height: math.unit(24e6, "feet")
  42455. },
  42456. {
  42457. name: "Earth-Eclipsing",
  42458. height: math.unit(2.4e8, "feet")
  42459. },
  42460. {
  42461. name: "Sol-Swallowing",
  42462. height: math.unit(8e10, "feet")
  42463. },
  42464. {
  42465. name: "Galaxy Gulper",
  42466. height: math.unit(8, "galaxies")
  42467. },
  42468. {
  42469. name: "Light Universal",
  42470. height: math.unit(4, "universes")
  42471. },
  42472. {
  42473. name: "Universe Atoms",
  42474. height: math.unit(1.829e9, "universes")
  42475. },
  42476. {
  42477. name: "Light Multiversal",
  42478. height: math.unit(4, "multiverses")
  42479. },
  42480. {
  42481. name: "Multiverse Atoms",
  42482. height: math.unit(1.829e9, "multiverses")
  42483. },
  42484. {
  42485. name: "Nigh-Omnipresence",
  42486. height: math.unit(8e261, "multiverses")
  42487. },
  42488. ]
  42489. ))
  42490. characterMakers.push(() => makeCharacter(
  42491. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42492. {
  42493. front: {
  42494. height: math.unit(10, "feet"),
  42495. weight: math.unit(1500, "lb"),
  42496. name: "Front",
  42497. image: {
  42498. source: "./media/characters/miles-thestia/front.svg",
  42499. extra: 1812/1727,
  42500. bottom: 86/1898
  42501. }
  42502. },
  42503. back: {
  42504. height: math.unit(10, "feet"),
  42505. weight: math.unit(1500, "lb"),
  42506. name: "Back",
  42507. image: {
  42508. source: "./media/characters/miles-thestia/back.svg",
  42509. extra: 1799/1690,
  42510. bottom: 47/1846
  42511. }
  42512. },
  42513. frontNsfw: {
  42514. height: math.unit(10, "feet"),
  42515. weight: math.unit(1500, "lb"),
  42516. name: "Front (NSFW)",
  42517. image: {
  42518. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42519. extra: 1812/1727,
  42520. bottom: 86/1898
  42521. }
  42522. },
  42523. },
  42524. [
  42525. {
  42526. name: "Mini-Macro",
  42527. height: math.unit(10, "feet"),
  42528. default: true
  42529. },
  42530. ]
  42531. ))
  42532. characterMakers.push(() => makeCharacter(
  42533. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42534. {
  42535. front: {
  42536. height: math.unit(25, "feet"),
  42537. name: "Front",
  42538. image: {
  42539. source: "./media/characters/titan-s-wulf/front.svg",
  42540. extra: 1560/1484,
  42541. bottom: 76/1636
  42542. }
  42543. },
  42544. },
  42545. [
  42546. {
  42547. name: "Smallest",
  42548. height: math.unit(25, "feet"),
  42549. default: true
  42550. },
  42551. {
  42552. name: "Normal",
  42553. height: math.unit(200, "feet")
  42554. },
  42555. {
  42556. name: "Macro",
  42557. height: math.unit(200000, "feet")
  42558. },
  42559. {
  42560. name: "Multiversal Original",
  42561. height: math.unit(10000, "multiverses")
  42562. },
  42563. ]
  42564. ))
  42565. characterMakers.push(() => makeCharacter(
  42566. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42567. {
  42568. front: {
  42569. height: math.unit(8, "feet"),
  42570. weight: math.unit(553, "lb"),
  42571. name: "Front",
  42572. image: {
  42573. source: "./media/characters/tawendeh/front.svg",
  42574. extra: 2365/2268,
  42575. bottom: 83/2448
  42576. }
  42577. },
  42578. frontClothed: {
  42579. height: math.unit(8, "feet"),
  42580. weight: math.unit(553, "lb"),
  42581. name: "Front (Clothed)",
  42582. image: {
  42583. source: "./media/characters/tawendeh/front-clothed.svg",
  42584. extra: 2365/2268,
  42585. bottom: 83/2448
  42586. }
  42587. },
  42588. back: {
  42589. height: math.unit(8, "feet"),
  42590. weight: math.unit(553, "lb"),
  42591. name: "Back",
  42592. image: {
  42593. source: "./media/characters/tawendeh/back.svg",
  42594. extra: 2397/2294,
  42595. bottom: 42/2439
  42596. }
  42597. },
  42598. },
  42599. [
  42600. {
  42601. name: "Mortal Interaction",
  42602. height: math.unit(8, "feet"),
  42603. default: true
  42604. },
  42605. {
  42606. name: "Giant",
  42607. height: math.unit(80, "feet")
  42608. },
  42609. {
  42610. name: "Macro",
  42611. height: math.unit(800, "feet")
  42612. },
  42613. {
  42614. name: "Megamacro",
  42615. height: math.unit(8000, "feet")
  42616. },
  42617. {
  42618. name: "City-Crushing",
  42619. height: math.unit(24000, "feet")
  42620. },
  42621. {
  42622. name: "Mountain-Mashing",
  42623. height: math.unit(80000, "feet")
  42624. },
  42625. {
  42626. name: "Nation Nemesis",
  42627. height: math.unit(8e6, "feet")
  42628. },
  42629. {
  42630. name: "Continent Cracker",
  42631. height: math.unit(24e6, "feet")
  42632. },
  42633. {
  42634. name: "Earth-Eclipsing",
  42635. height: math.unit(2.4e8, "feet")
  42636. },
  42637. {
  42638. name: "Gas Giant Gulper",
  42639. height: math.unit(2.4e9, "feet")
  42640. },
  42641. {
  42642. name: "Sol-Swallowing",
  42643. height: math.unit(8e10, "feet")
  42644. },
  42645. {
  42646. name: "Galaxy Gulper",
  42647. height: math.unit(8, "galaxies")
  42648. },
  42649. {
  42650. name: "Cosmos Churner",
  42651. height: math.unit(8, "universes")
  42652. },
  42653. {
  42654. name: "Omnipotent Otter",
  42655. height: math.unit(80, "universes")
  42656. },
  42657. ]
  42658. ))
  42659. characterMakers.push(() => makeCharacter(
  42660. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42661. {
  42662. front: {
  42663. height: math.unit(2.6, "meters"),
  42664. weight: math.unit(900, "kg"),
  42665. name: "Front",
  42666. image: {
  42667. source: "./media/characters/neesha/front.svg",
  42668. extra: 1803/1653,
  42669. bottom: 128/1931
  42670. }
  42671. },
  42672. },
  42673. [
  42674. {
  42675. name: "Normal",
  42676. height: math.unit(2.6, "meters"),
  42677. default: true
  42678. },
  42679. {
  42680. name: "Macro",
  42681. height: math.unit(50, "meters")
  42682. },
  42683. ]
  42684. ))
  42685. characterMakers.push(() => makeCharacter(
  42686. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42687. {
  42688. front: {
  42689. height: math.unit(5, "feet"),
  42690. weight: math.unit(185, "lb"),
  42691. name: "Front",
  42692. image: {
  42693. source: "./media/characters/kyera/front.svg",
  42694. extra: 1875/1790,
  42695. bottom: 96/1971
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Normal",
  42702. height: math.unit(5, "feet"),
  42703. default: true
  42704. },
  42705. ]
  42706. ))
  42707. characterMakers.push(() => makeCharacter(
  42708. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42709. {
  42710. front: {
  42711. height: math.unit(7 + 6/12, "feet"),
  42712. weight: math.unit(540, "lb"),
  42713. name: "Front",
  42714. image: {
  42715. source: "./media/characters/yuko/front.svg",
  42716. extra: 1282/1222,
  42717. bottom: 101/1383
  42718. }
  42719. },
  42720. frontClothed: {
  42721. height: math.unit(7 + 6/12, "feet"),
  42722. weight: math.unit(540, "lb"),
  42723. name: "Front (Clothed)",
  42724. image: {
  42725. source: "./media/characters/yuko/front-clothed.svg",
  42726. extra: 1282/1222,
  42727. bottom: 101/1383
  42728. }
  42729. },
  42730. },
  42731. [
  42732. {
  42733. name: "Normal",
  42734. height: math.unit(7 + 6/12, "feet"),
  42735. default: true
  42736. },
  42737. {
  42738. name: "Macro",
  42739. height: math.unit(26 + 9/12, "feet")
  42740. },
  42741. {
  42742. name: "Megamacro",
  42743. height: math.unit(300, "feet")
  42744. },
  42745. {
  42746. name: "Gigamacro",
  42747. height: math.unit(5000, "feet")
  42748. },
  42749. {
  42750. name: "Planetary",
  42751. height: math.unit(10000, "miles")
  42752. },
  42753. ]
  42754. ))
  42755. characterMakers.push(() => makeCharacter(
  42756. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42757. {
  42758. front: {
  42759. height: math.unit(8 + 2/12, "feet"),
  42760. weight: math.unit(600, "lb"),
  42761. name: "Front",
  42762. image: {
  42763. source: "./media/characters/deam-nitrel/front.svg",
  42764. extra: 1308/1234,
  42765. bottom: 125/1433
  42766. }
  42767. },
  42768. },
  42769. [
  42770. {
  42771. name: "Normal",
  42772. height: math.unit(8 + 2/12, "feet"),
  42773. default: true
  42774. },
  42775. ]
  42776. ))
  42777. characterMakers.push(() => makeCharacter(
  42778. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42779. {
  42780. front: {
  42781. height: math.unit(6.1, "feet"),
  42782. weight: math.unit(180, "lb"),
  42783. name: "Front",
  42784. image: {
  42785. source: "./media/characters/skyress/front.svg",
  42786. extra: 1045/915,
  42787. bottom: 28/1073
  42788. }
  42789. },
  42790. maw: {
  42791. height: math.unit(1, "feet"),
  42792. name: "Maw",
  42793. image: {
  42794. source: "./media/characters/skyress/maw.svg"
  42795. }
  42796. },
  42797. },
  42798. [
  42799. {
  42800. name: "Normal",
  42801. height: math.unit(6.1, "feet"),
  42802. default: true
  42803. },
  42804. {
  42805. name: "Macro",
  42806. height: math.unit(200, "feet")
  42807. },
  42808. ]
  42809. ))
  42810. characterMakers.push(() => makeCharacter(
  42811. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42812. {
  42813. front: {
  42814. height: math.unit(4 + 2/12, "feet"),
  42815. weight: math.unit(40, "kg"),
  42816. name: "Front",
  42817. image: {
  42818. source: "./media/characters/amethyst-jones/front.svg",
  42819. extra: 1220/1150,
  42820. bottom: 101/1321
  42821. }
  42822. },
  42823. },
  42824. [
  42825. {
  42826. name: "Normal",
  42827. height: math.unit(4 + 2/12, "feet"),
  42828. default: true
  42829. },
  42830. ]
  42831. ))
  42832. characterMakers.push(() => makeCharacter(
  42833. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42834. {
  42835. front: {
  42836. height: math.unit(1.7, "m"),
  42837. weight: math.unit(135, "lb"),
  42838. name: "Front",
  42839. image: {
  42840. source: "./media/characters/jade/front.svg",
  42841. extra: 1818/1767,
  42842. bottom: 32/1850
  42843. }
  42844. },
  42845. back: {
  42846. height: math.unit(1.7, "m"),
  42847. weight: math.unit(135, "lb"),
  42848. name: "Back",
  42849. image: {
  42850. source: "./media/characters/jade/back.svg",
  42851. extra: 1869/1809,
  42852. bottom: 35/1904
  42853. }
  42854. },
  42855. hand: {
  42856. height: math.unit(0.24, "m"),
  42857. name: "Hand",
  42858. image: {
  42859. source: "./media/characters/jade/hand.svg"
  42860. }
  42861. },
  42862. foot: {
  42863. height: math.unit(0.263, "m"),
  42864. name: "Foot",
  42865. image: {
  42866. source: "./media/characters/jade/foot.svg"
  42867. }
  42868. },
  42869. dick: {
  42870. height: math.unit(0.47, "m"),
  42871. name: "Dick",
  42872. image: {
  42873. source: "./media/characters/jade/dick.svg"
  42874. }
  42875. },
  42876. },
  42877. [
  42878. {
  42879. name: "Micro",
  42880. height: math.unit(22, "cm")
  42881. },
  42882. {
  42883. name: "Normal",
  42884. height: math.unit(1.7, "m"),
  42885. default: true
  42886. },
  42887. {
  42888. name: "Macro",
  42889. height: math.unit(152, "m")
  42890. },
  42891. ]
  42892. ))
  42893. characterMakers.push(() => makeCharacter(
  42894. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42895. {
  42896. front: {
  42897. height: math.unit(100, "miles"),
  42898. weight: math.unit(20000, "tons"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/cookie/front.svg",
  42902. extra: 1125/1070,
  42903. bottom: 30/1155
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Big",
  42910. height: math.unit(50, "feet")
  42911. },
  42912. {
  42913. name: "Macro",
  42914. height: math.unit(100, "miles"),
  42915. default: true
  42916. },
  42917. {
  42918. name: "Megamacro",
  42919. height: math.unit(90000, "miles")
  42920. },
  42921. ]
  42922. ))
  42923. characterMakers.push(() => makeCharacter(
  42924. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42925. {
  42926. front: {
  42927. height: math.unit(6, "feet"),
  42928. weight: math.unit(145, "lb"),
  42929. name: "Front",
  42930. image: {
  42931. source: "./media/characters/farzian/front.svg",
  42932. extra: 1902/1693,
  42933. bottom: 108/2010
  42934. }
  42935. },
  42936. },
  42937. [
  42938. {
  42939. name: "Macro",
  42940. height: math.unit(500, "feet"),
  42941. default: true
  42942. },
  42943. ]
  42944. ))
  42945. characterMakers.push(() => makeCharacter(
  42946. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42947. {
  42948. front: {
  42949. height: math.unit(3 + 6/12, "feet"),
  42950. weight: math.unit(50, "lb"),
  42951. name: "Front",
  42952. image: {
  42953. source: "./media/characters/kimberly-tilson/front.svg",
  42954. extra: 1400/1322,
  42955. bottom: 36/1436
  42956. }
  42957. },
  42958. back: {
  42959. height: math.unit(3 + 6/12, "feet"),
  42960. weight: math.unit(50, "lb"),
  42961. name: "Back",
  42962. image: {
  42963. source: "./media/characters/kimberly-tilson/back.svg",
  42964. extra: 1370/1307,
  42965. bottom: 20/1390
  42966. }
  42967. },
  42968. },
  42969. [
  42970. {
  42971. name: "Normal",
  42972. height: math.unit(3 + 6/12, "feet"),
  42973. default: true
  42974. },
  42975. ]
  42976. ))
  42977. characterMakers.push(() => makeCharacter(
  42978. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42979. {
  42980. front: {
  42981. height: math.unit(350, "meters"),
  42982. weight: math.unit(7.57059e+8, "lb"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/harthos/front.svg",
  42986. extra: 455/446,
  42987. bottom: 15/470
  42988. },
  42989. form: "peacekeeper",
  42990. default: true
  42991. },
  42992. allusus_front: {
  42993. height: math.unit(270, "meters"),
  42994. weight: math.unit(3.47550e+8, "lb"),
  42995. name: "Front",
  42996. image: {
  42997. source: "./media/characters/harthos/allusus-front.svg",
  42998. extra: 455/446,
  42999. bottom: 15/470
  43000. },
  43001. form: "allusus",
  43002. },
  43003. },
  43004. [
  43005. {
  43006. name: "Macro",
  43007. height: math.unit(350, "meters"),
  43008. default: true,
  43009. form: "peacekeeper"
  43010. },
  43011. {
  43012. name: "Macro",
  43013. height: math.unit(270, "meters"),
  43014. default: true,
  43015. form: "allusus"
  43016. },
  43017. ],
  43018. {
  43019. "peacekeeper": {
  43020. name: "Peacekeeper",
  43021. default: true
  43022. },
  43023. "allusus": {
  43024. name: "Allusus",
  43025. },
  43026. }
  43027. ))
  43028. characterMakers.push(() => makeCharacter(
  43029. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43030. {
  43031. front: {
  43032. height: math.unit(15, "feet"),
  43033. name: "Front",
  43034. image: {
  43035. source: "./media/characters/hypatia/front.svg",
  43036. extra: 1653/1591,
  43037. bottom: 79/1732
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Normal",
  43044. height: math.unit(15, "feet")
  43045. },
  43046. {
  43047. name: "Small",
  43048. height: math.unit(300, "feet")
  43049. },
  43050. {
  43051. name: "Macro",
  43052. height: math.unit(2500, "feet"),
  43053. default: true
  43054. },
  43055. {
  43056. name: "Mega Macro",
  43057. height: math.unit(1500, "miles")
  43058. },
  43059. {
  43060. name: "Giga Macro",
  43061. height: math.unit(1.5e6, "miles")
  43062. },
  43063. ]
  43064. ))
  43065. characterMakers.push(() => makeCharacter(
  43066. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43067. {
  43068. front: {
  43069. height: math.unit(6, "feet"),
  43070. weight: math.unit(200, "lb"),
  43071. name: "Front",
  43072. image: {
  43073. source: "./media/characters/wulver/front.svg",
  43074. extra: 1724/1632,
  43075. bottom: 130/1854
  43076. }
  43077. },
  43078. frontNsfw: {
  43079. height: math.unit(6, "feet"),
  43080. weight: math.unit(200, "lb"),
  43081. name: "Front (NSFW)",
  43082. image: {
  43083. source: "./media/characters/wulver/front-nsfw.svg",
  43084. extra: 1724/1632,
  43085. bottom: 130/1854
  43086. }
  43087. },
  43088. },
  43089. [
  43090. {
  43091. name: "Human-Sized",
  43092. height: math.unit(6, "feet")
  43093. },
  43094. {
  43095. name: "Normal",
  43096. height: math.unit(4, "meters"),
  43097. default: true
  43098. },
  43099. {
  43100. name: "Large",
  43101. height: math.unit(6, "m")
  43102. },
  43103. ]
  43104. ))
  43105. characterMakers.push(() => makeCharacter(
  43106. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43107. {
  43108. front: {
  43109. height: math.unit(7, "feet"),
  43110. name: "Front",
  43111. image: {
  43112. source: "./media/characters/maru/front.svg",
  43113. extra: 1595/1570,
  43114. bottom: 0/1595
  43115. }
  43116. },
  43117. },
  43118. [
  43119. {
  43120. name: "Normal",
  43121. height: math.unit(7, "feet"),
  43122. default: true
  43123. },
  43124. {
  43125. name: "Macro",
  43126. height: math.unit(700, "feet")
  43127. },
  43128. {
  43129. name: "Mega Macro",
  43130. height: math.unit(25, "miles")
  43131. },
  43132. ]
  43133. ))
  43134. characterMakers.push(() => makeCharacter(
  43135. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43136. {
  43137. front: {
  43138. height: math.unit(6, "feet"),
  43139. weight: math.unit(170, "lb"),
  43140. name: "Front",
  43141. image: {
  43142. source: "./media/characters/xenon/front.svg",
  43143. extra: 1376/1305,
  43144. bottom: 56/1432
  43145. }
  43146. },
  43147. back: {
  43148. height: math.unit(6, "feet"),
  43149. weight: math.unit(170, "lb"),
  43150. name: "Back",
  43151. image: {
  43152. source: "./media/characters/xenon/back.svg",
  43153. extra: 1328/1259,
  43154. bottom: 95/1423
  43155. }
  43156. },
  43157. maw: {
  43158. height: math.unit(0.52, "feet"),
  43159. name: "Maw",
  43160. image: {
  43161. source: "./media/characters/xenon/maw.svg"
  43162. }
  43163. },
  43164. handLeft: {
  43165. height: math.unit(0.82 * 169 / 153, "feet"),
  43166. name: "Hand (Left)",
  43167. image: {
  43168. source: "./media/characters/xenon/hand-left.svg"
  43169. }
  43170. },
  43171. handRight: {
  43172. height: math.unit(0.82, "feet"),
  43173. name: "Hand (Right)",
  43174. image: {
  43175. source: "./media/characters/xenon/hand-right.svg"
  43176. }
  43177. },
  43178. footLeft: {
  43179. height: math.unit(1.13, "feet"),
  43180. name: "Foot (Left)",
  43181. image: {
  43182. source: "./media/characters/xenon/foot-left.svg"
  43183. }
  43184. },
  43185. footRight: {
  43186. height: math.unit(1.13 * 194 / 196, "feet"),
  43187. name: "Foot (Right)",
  43188. image: {
  43189. source: "./media/characters/xenon/foot-right.svg"
  43190. }
  43191. },
  43192. },
  43193. [
  43194. {
  43195. name: "Micro",
  43196. height: math.unit(0.8, "inches")
  43197. },
  43198. {
  43199. name: "Normal",
  43200. height: math.unit(6, "feet")
  43201. },
  43202. {
  43203. name: "Macro",
  43204. height: math.unit(50, "feet"),
  43205. default: true
  43206. },
  43207. {
  43208. name: "Macro+",
  43209. height: math.unit(250, "feet")
  43210. },
  43211. {
  43212. name: "Megamacro",
  43213. height: math.unit(1500, "feet")
  43214. },
  43215. ]
  43216. ))
  43217. characterMakers.push(() => makeCharacter(
  43218. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43219. {
  43220. front: {
  43221. height: math.unit(7 + 5/12, "feet"),
  43222. name: "Front",
  43223. image: {
  43224. source: "./media/characters/zane/front.svg",
  43225. extra: 1260/1203,
  43226. bottom: 94/1354
  43227. }
  43228. },
  43229. back: {
  43230. height: math.unit(5.05, "feet"),
  43231. name: "Back",
  43232. image: {
  43233. source: "./media/characters/zane/back.svg",
  43234. extra: 893/829,
  43235. bottom: 30/923
  43236. }
  43237. },
  43238. werewolf: {
  43239. height: math.unit(11, "feet"),
  43240. name: "Werewolf",
  43241. image: {
  43242. source: "./media/characters/zane/werewolf.svg",
  43243. extra: 1383/1323,
  43244. bottom: 89/1472
  43245. }
  43246. },
  43247. foot: {
  43248. height: math.unit(1.46, "feet"),
  43249. name: "Foot",
  43250. image: {
  43251. source: "./media/characters/zane/foot.svg"
  43252. }
  43253. },
  43254. footFront: {
  43255. height: math.unit(0.784, "feet"),
  43256. name: "Foot (Front)",
  43257. image: {
  43258. source: "./media/characters/zane/foot-front.svg"
  43259. }
  43260. },
  43261. dick: {
  43262. height: math.unit(1.95, "feet"),
  43263. name: "Dick",
  43264. image: {
  43265. source: "./media/characters/zane/dick.svg"
  43266. }
  43267. },
  43268. dickWerewolf: {
  43269. height: math.unit(3.77, "feet"),
  43270. name: "Dick (Werewolf)",
  43271. image: {
  43272. source: "./media/characters/zane/dick.svg"
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Normal",
  43279. height: math.unit(7 + 5/12, "feet"),
  43280. default: true
  43281. },
  43282. ]
  43283. ))
  43284. characterMakers.push(() => makeCharacter(
  43285. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43286. {
  43287. front: {
  43288. height: math.unit(6 + 2/12, "feet"),
  43289. weight: math.unit(284, "lb"),
  43290. name: "Front",
  43291. image: {
  43292. source: "./media/characters/benni-desparque/front.svg",
  43293. extra: 878/729,
  43294. bottom: 58/936
  43295. }
  43296. },
  43297. back: {
  43298. height: math.unit(6 + 2/12, "feet"),
  43299. weight: math.unit(284, "lb"),
  43300. name: "Back",
  43301. image: {
  43302. source: "./media/characters/benni-desparque/back.svg",
  43303. extra: 901/756,
  43304. bottom: 51/952
  43305. }
  43306. },
  43307. dressed: {
  43308. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43309. weight: math.unit(284, "lb"),
  43310. name: "Dressed",
  43311. image: {
  43312. source: "./media/characters/benni-desparque/dressed.svg",
  43313. extra: 1514/1276,
  43314. bottom: 65/1579
  43315. }
  43316. },
  43317. hand: {
  43318. height: math.unit(1.28, "feet"),
  43319. name: "Hand",
  43320. image: {
  43321. source: "./media/characters/benni-desparque/hand.svg"
  43322. }
  43323. },
  43324. foot: {
  43325. height: math.unit(1.53, "feet"),
  43326. name: "Foot",
  43327. image: {
  43328. source: "./media/characters/benni-desparque/foot.svg"
  43329. }
  43330. },
  43331. aiControlUnit: {
  43332. height: math.unit(0.175, "feet"),
  43333. name: "AI Control Unit",
  43334. image: {
  43335. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43336. }
  43337. },
  43338. },
  43339. [
  43340. {
  43341. name: "Civilian",
  43342. height: math.unit(6 + 2/12, "feet")
  43343. },
  43344. {
  43345. name: "Normal",
  43346. height: math.unit(98, "feet"),
  43347. default: true
  43348. },
  43349. {
  43350. name: "Kaiju Fighter",
  43351. height: math.unit(268, "feet")
  43352. },
  43353. ]
  43354. ))
  43355. characterMakers.push(() => makeCharacter(
  43356. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43357. {
  43358. front: {
  43359. height: math.unit(5, "feet"),
  43360. weight: math.unit(105, "lb"),
  43361. name: "Front",
  43362. image: {
  43363. source: "./media/characters/maxine/front.svg",
  43364. extra: 1386/1250,
  43365. bottom: 71/1457
  43366. }
  43367. },
  43368. },
  43369. [
  43370. {
  43371. name: "Normal",
  43372. height: math.unit(5, "feet"),
  43373. default: true
  43374. },
  43375. ]
  43376. ))
  43377. characterMakers.push(() => makeCharacter(
  43378. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43379. {
  43380. front: {
  43381. height: math.unit(11 + 7/12, "feet"),
  43382. weight: math.unit(9576, "lb"),
  43383. name: "Front",
  43384. image: {
  43385. source: "./media/characters/scaly/front.svg",
  43386. extra: 888/867,
  43387. bottom: 36/924
  43388. }
  43389. },
  43390. },
  43391. [
  43392. {
  43393. name: "Normal",
  43394. height: math.unit(11 + 7/12, "feet"),
  43395. default: true
  43396. },
  43397. ]
  43398. ))
  43399. characterMakers.push(() => makeCharacter(
  43400. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43401. {
  43402. front: {
  43403. height: math.unit(6 + 3/12, "feet"),
  43404. name: "Front",
  43405. image: {
  43406. source: "./media/characters/saelria/front.svg",
  43407. extra: 1243/1138,
  43408. bottom: 46/1289
  43409. }
  43410. },
  43411. },
  43412. [
  43413. {
  43414. name: "Micro",
  43415. height: math.unit(6, "inches"),
  43416. },
  43417. {
  43418. name: "Normal",
  43419. height: math.unit(6 + 3/12, "feet"),
  43420. default: true
  43421. },
  43422. {
  43423. name: "Macro",
  43424. height: math.unit(25, "feet")
  43425. },
  43426. ]
  43427. ))
  43428. characterMakers.push(() => makeCharacter(
  43429. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43430. {
  43431. front: {
  43432. height: math.unit(80, "meters"),
  43433. weight: math.unit(7000, "tonnes"),
  43434. name: "Front",
  43435. image: {
  43436. source: "./media/characters/tef/front.svg",
  43437. extra: 2036/1991,
  43438. bottom: 54/2090
  43439. }
  43440. },
  43441. back: {
  43442. height: math.unit(80, "meters"),
  43443. weight: math.unit(7000, "tonnes"),
  43444. name: "Back",
  43445. image: {
  43446. source: "./media/characters/tef/back.svg",
  43447. extra: 2036/1991,
  43448. bottom: 54/2090
  43449. }
  43450. },
  43451. },
  43452. [
  43453. {
  43454. name: "Macro",
  43455. height: math.unit(80, "meters"),
  43456. default: true
  43457. },
  43458. ]
  43459. ))
  43460. characterMakers.push(() => makeCharacter(
  43461. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43462. {
  43463. front: {
  43464. height: math.unit(13, "feet"),
  43465. weight: math.unit(6, "tons"),
  43466. name: "Front",
  43467. image: {
  43468. source: "./media/characters/rover/front.svg",
  43469. extra: 1233/1156,
  43470. bottom: 50/1283
  43471. }
  43472. },
  43473. back: {
  43474. height: math.unit(13, "feet"),
  43475. weight: math.unit(6, "tons"),
  43476. name: "Back",
  43477. image: {
  43478. source: "./media/characters/rover/back.svg",
  43479. extra: 1327/1258,
  43480. bottom: 39/1366
  43481. }
  43482. },
  43483. },
  43484. [
  43485. {
  43486. name: "Normal",
  43487. height: math.unit(13, "feet"),
  43488. default: true
  43489. },
  43490. {
  43491. name: "Macro",
  43492. height: math.unit(1300, "feet")
  43493. },
  43494. {
  43495. name: "Megamacro",
  43496. height: math.unit(1300, "miles")
  43497. },
  43498. {
  43499. name: "Gigamacro",
  43500. height: math.unit(1300000, "miles")
  43501. },
  43502. ]
  43503. ))
  43504. characterMakers.push(() => makeCharacter(
  43505. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43506. {
  43507. front: {
  43508. height: math.unit(10, "feet"),
  43509. weight: math.unit(500, "lb"),
  43510. name: "Front",
  43511. image: {
  43512. source: "./media/characters/ariz/front.svg",
  43513. extra: 461/450,
  43514. bottom: 16/477
  43515. }
  43516. },
  43517. },
  43518. [
  43519. {
  43520. name: "MiniMacro",
  43521. height: math.unit(10, "feet"),
  43522. default: true
  43523. },
  43524. ]
  43525. ))
  43526. characterMakers.push(() => makeCharacter(
  43527. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43528. {
  43529. front: {
  43530. height: math.unit(6, "feet"),
  43531. weight: math.unit(140, "lb"),
  43532. name: "Front",
  43533. image: {
  43534. source: "./media/characters/sigrun/front.svg",
  43535. extra: 1418/1359,
  43536. bottom: 27/1445
  43537. }
  43538. },
  43539. },
  43540. [
  43541. {
  43542. name: "Macro",
  43543. height: math.unit(35, "feet"),
  43544. default: true
  43545. },
  43546. ]
  43547. ))
  43548. characterMakers.push(() => makeCharacter(
  43549. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43550. {
  43551. front: {
  43552. height: math.unit(6, "feet"),
  43553. weight: math.unit(150, "lb"),
  43554. name: "Front",
  43555. image: {
  43556. source: "./media/characters/numin/front.svg",
  43557. extra: 1433/1388,
  43558. bottom: 12/1445
  43559. }
  43560. },
  43561. },
  43562. [
  43563. {
  43564. name: "Macro",
  43565. height: math.unit(21.5, "km"),
  43566. default: true
  43567. },
  43568. ]
  43569. ))
  43570. characterMakers.push(() => makeCharacter(
  43571. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43572. {
  43573. front: {
  43574. height: math.unit(6, "feet"),
  43575. weight: math.unit(463, "lb"),
  43576. name: "Front",
  43577. image: {
  43578. source: "./media/characters/melwa/front.svg",
  43579. extra: 1307/1248,
  43580. bottom: 93/1400
  43581. }
  43582. },
  43583. },
  43584. [
  43585. {
  43586. name: "Macro",
  43587. height: math.unit(50, "meters"),
  43588. default: true
  43589. },
  43590. ]
  43591. ))
  43592. characterMakers.push(() => makeCharacter(
  43593. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43594. {
  43595. front: {
  43596. height: math.unit(325, "feet"),
  43597. name: "Front",
  43598. image: {
  43599. source: "./media/characters/zorkaiju/front.svg",
  43600. extra: 1955/1814,
  43601. bottom: 40/1995
  43602. }
  43603. },
  43604. frontExtended: {
  43605. height: math.unit(325, "feet"),
  43606. name: "Front (Extended)",
  43607. image: {
  43608. source: "./media/characters/zorkaiju/front-extended.svg",
  43609. extra: 1955/1814,
  43610. bottom: 40/1995
  43611. }
  43612. },
  43613. side: {
  43614. height: math.unit(325, "feet"),
  43615. name: "Side",
  43616. image: {
  43617. source: "./media/characters/zorkaiju/side.svg",
  43618. extra: 1495/1396,
  43619. bottom: 17/1512
  43620. }
  43621. },
  43622. sideExtended: {
  43623. height: math.unit(325, "feet"),
  43624. name: "Side (Extended)",
  43625. image: {
  43626. source: "./media/characters/zorkaiju/side-extended.svg",
  43627. extra: 1495/1396,
  43628. bottom: 17/1512
  43629. }
  43630. },
  43631. back: {
  43632. height: math.unit(325, "feet"),
  43633. name: "Back",
  43634. image: {
  43635. source: "./media/characters/zorkaiju/back.svg",
  43636. extra: 1959/1821,
  43637. bottom: 31/1990
  43638. }
  43639. },
  43640. backExtended: {
  43641. height: math.unit(325, "feet"),
  43642. name: "Back (Extended)",
  43643. image: {
  43644. source: "./media/characters/zorkaiju/back-extended.svg",
  43645. extra: 1959/1821,
  43646. bottom: 31/1990
  43647. }
  43648. },
  43649. hand: {
  43650. height: math.unit(58.4, "feet"),
  43651. name: "Hand",
  43652. image: {
  43653. source: "./media/characters/zorkaiju/hand.svg"
  43654. }
  43655. },
  43656. handExtended: {
  43657. height: math.unit(61.4, "feet"),
  43658. name: "Hand (Extended)",
  43659. image: {
  43660. source: "./media/characters/zorkaiju/hand-extended.svg"
  43661. }
  43662. },
  43663. foot: {
  43664. height: math.unit(95, "feet"),
  43665. name: "Foot",
  43666. image: {
  43667. source: "./media/characters/zorkaiju/foot.svg"
  43668. }
  43669. },
  43670. leftArm: {
  43671. height: math.unit(59, "feet"),
  43672. name: "Left Arm",
  43673. image: {
  43674. source: "./media/characters/zorkaiju/left-arm.svg"
  43675. }
  43676. },
  43677. rightArm: {
  43678. height: math.unit(59, "feet"),
  43679. name: "Right Arm",
  43680. image: {
  43681. source: "./media/characters/zorkaiju/right-arm.svg"
  43682. }
  43683. },
  43684. leftArmExtended: {
  43685. height: math.unit(59 * 1.033546, "feet"),
  43686. name: "Left Arm (Extended)",
  43687. image: {
  43688. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43689. }
  43690. },
  43691. rightArmExtended: {
  43692. height: math.unit(59 * 1.0496, "feet"),
  43693. name: "Right Arm (Extended)",
  43694. image: {
  43695. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43696. }
  43697. },
  43698. tail: {
  43699. height: math.unit(104, "feet"),
  43700. name: "Tail",
  43701. image: {
  43702. source: "./media/characters/zorkaiju/tail.svg"
  43703. }
  43704. },
  43705. tailExtended: {
  43706. height: math.unit(104, "feet"),
  43707. name: "Tail (Extended)",
  43708. image: {
  43709. source: "./media/characters/zorkaiju/tail-extended.svg"
  43710. }
  43711. },
  43712. tailBottom: {
  43713. height: math.unit(104, "feet"),
  43714. name: "Tail Bottom",
  43715. image: {
  43716. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43717. }
  43718. },
  43719. crystal: {
  43720. height: math.unit(27.54, "feet"),
  43721. name: "Crystal",
  43722. image: {
  43723. source: "./media/characters/zorkaiju/crystal.svg"
  43724. }
  43725. },
  43726. },
  43727. [
  43728. {
  43729. name: "Kaiju",
  43730. height: math.unit(325, "feet"),
  43731. default: true
  43732. },
  43733. ]
  43734. ))
  43735. characterMakers.push(() => makeCharacter(
  43736. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43737. {
  43738. front: {
  43739. height: math.unit(6 + 1/12, "feet"),
  43740. weight: math.unit(115, "lb"),
  43741. name: "Front",
  43742. image: {
  43743. source: "./media/characters/bailey-belfry/front.svg",
  43744. extra: 1240/1121,
  43745. bottom: 101/1341
  43746. }
  43747. },
  43748. },
  43749. [
  43750. {
  43751. name: "Normal",
  43752. height: math.unit(6 + 1/12, "feet"),
  43753. default: true
  43754. },
  43755. ]
  43756. ))
  43757. characterMakers.push(() => makeCharacter(
  43758. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43759. {
  43760. side: {
  43761. height: math.unit(4, "meters"),
  43762. weight: math.unit(250, "kg"),
  43763. name: "Side",
  43764. image: {
  43765. source: "./media/characters/blacky/side.svg",
  43766. extra: 1027/919,
  43767. bottom: 43/1070
  43768. }
  43769. },
  43770. maw: {
  43771. height: math.unit(1, "meters"),
  43772. name: "Maw",
  43773. image: {
  43774. source: "./media/characters/blacky/maw.svg"
  43775. }
  43776. },
  43777. paw: {
  43778. height: math.unit(1, "meters"),
  43779. name: "Paw",
  43780. image: {
  43781. source: "./media/characters/blacky/paw.svg"
  43782. }
  43783. },
  43784. },
  43785. [
  43786. {
  43787. name: "Normal",
  43788. height: math.unit(4, "meters"),
  43789. default: true
  43790. },
  43791. ]
  43792. ))
  43793. characterMakers.push(() => makeCharacter(
  43794. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43795. {
  43796. front: {
  43797. height: math.unit(170, "cm"),
  43798. weight: math.unit(66, "kg"),
  43799. name: "Front",
  43800. image: {
  43801. source: "./media/characters/thux-ei/front.svg",
  43802. extra: 1109/1011,
  43803. bottom: 8/1117
  43804. }
  43805. },
  43806. },
  43807. [
  43808. {
  43809. name: "Normal",
  43810. height: math.unit(170, "cm"),
  43811. default: true
  43812. },
  43813. ]
  43814. ))
  43815. characterMakers.push(() => makeCharacter(
  43816. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43817. {
  43818. front: {
  43819. height: math.unit(5, "feet"),
  43820. weight: math.unit(120, "lb"),
  43821. name: "Front",
  43822. image: {
  43823. source: "./media/characters/roxanne-voltaire/front.svg",
  43824. extra: 1901/1779,
  43825. bottom: 53/1954
  43826. }
  43827. },
  43828. },
  43829. [
  43830. {
  43831. name: "Normal",
  43832. height: math.unit(5, "feet"),
  43833. default: true
  43834. },
  43835. {
  43836. name: "Giant",
  43837. height: math.unit(50, "feet")
  43838. },
  43839. {
  43840. name: "Titan",
  43841. height: math.unit(500, "feet")
  43842. },
  43843. {
  43844. name: "Macro",
  43845. height: math.unit(5000, "feet")
  43846. },
  43847. {
  43848. name: "Megamacro",
  43849. height: math.unit(50000, "feet")
  43850. },
  43851. {
  43852. name: "Gigamacro",
  43853. height: math.unit(500000, "feet")
  43854. },
  43855. {
  43856. name: "Teramacro",
  43857. height: math.unit(5e6, "feet")
  43858. },
  43859. ]
  43860. ))
  43861. characterMakers.push(() => makeCharacter(
  43862. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43863. {
  43864. front: {
  43865. height: math.unit(6 + 2/12, "feet"),
  43866. name: "Front",
  43867. image: {
  43868. source: "./media/characters/squeaks/front.svg",
  43869. extra: 1823/1768,
  43870. bottom: 138/1961
  43871. }
  43872. },
  43873. },
  43874. [
  43875. {
  43876. name: "Micro",
  43877. height: math.unit(0.5, "inches")
  43878. },
  43879. {
  43880. name: "Normal",
  43881. height: math.unit(6 + 2/12, "feet"),
  43882. default: true
  43883. },
  43884. {
  43885. name: "Macro",
  43886. height: math.unit(600, "feet")
  43887. },
  43888. ]
  43889. ))
  43890. characterMakers.push(() => makeCharacter(
  43891. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43892. {
  43893. front: {
  43894. height: math.unit(1.72, "meters"),
  43895. name: "Front",
  43896. image: {
  43897. source: "./media/characters/archinger/front.svg",
  43898. extra: 1861/1675,
  43899. bottom: 125/1986
  43900. }
  43901. },
  43902. back: {
  43903. height: math.unit(1.72, "meters"),
  43904. name: "Back",
  43905. image: {
  43906. source: "./media/characters/archinger/back.svg",
  43907. extra: 1844/1701,
  43908. bottom: 104/1948
  43909. }
  43910. },
  43911. cock: {
  43912. height: math.unit(0.59, "feet"),
  43913. name: "Cock",
  43914. image: {
  43915. source: "./media/characters/archinger/cock.svg"
  43916. }
  43917. },
  43918. },
  43919. [
  43920. {
  43921. name: "Normal",
  43922. height: math.unit(1.72, "meters"),
  43923. default: true
  43924. },
  43925. {
  43926. name: "Macro",
  43927. height: math.unit(84, "meters")
  43928. },
  43929. {
  43930. name: "Macro+",
  43931. height: math.unit(112, "meters")
  43932. },
  43933. {
  43934. name: "Macro++",
  43935. height: math.unit(960, "meters")
  43936. },
  43937. {
  43938. name: "Macro+++",
  43939. height: math.unit(4, "km")
  43940. },
  43941. {
  43942. name: "Macro++++",
  43943. height: math.unit(48, "km")
  43944. },
  43945. {
  43946. name: "Macro+++++",
  43947. height: math.unit(4500, "km")
  43948. },
  43949. ]
  43950. ))
  43951. characterMakers.push(() => makeCharacter(
  43952. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43953. {
  43954. front: {
  43955. height: math.unit(5 + 5/12, "feet"),
  43956. name: "Front",
  43957. image: {
  43958. source: "./media/characters/alsnapz/front.svg",
  43959. extra: 1157/1065,
  43960. bottom: 42/1199
  43961. }
  43962. },
  43963. },
  43964. [
  43965. {
  43966. name: "Normal",
  43967. height: math.unit(5 + 5/12, "feet"),
  43968. default: true
  43969. },
  43970. ]
  43971. ))
  43972. characterMakers.push(() => makeCharacter(
  43973. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43974. {
  43975. side: {
  43976. height: math.unit(3.2, "earths"),
  43977. name: "Side",
  43978. image: {
  43979. source: "./media/characters/mag/side.svg",
  43980. extra: 1331/1008,
  43981. bottom: 52/1383
  43982. }
  43983. },
  43984. wing: {
  43985. height: math.unit(1.94, "earths"),
  43986. name: "Wing",
  43987. image: {
  43988. source: "./media/characters/mag/wing.svg"
  43989. }
  43990. },
  43991. dick: {
  43992. height: math.unit(1.8, "earths"),
  43993. name: "Dick",
  43994. image: {
  43995. source: "./media/characters/mag/dick.svg"
  43996. }
  43997. },
  43998. ass: {
  43999. height: math.unit(1.33, "earths"),
  44000. name: "Ass",
  44001. image: {
  44002. source: "./media/characters/mag/ass.svg"
  44003. }
  44004. },
  44005. head: {
  44006. height: math.unit(1.1, "earths"),
  44007. name: "Head",
  44008. image: {
  44009. source: "./media/characters/mag/head.svg"
  44010. }
  44011. },
  44012. maw: {
  44013. height: math.unit(1.62, "earths"),
  44014. name: "Maw",
  44015. image: {
  44016. source: "./media/characters/mag/maw.svg"
  44017. }
  44018. },
  44019. },
  44020. [
  44021. {
  44022. name: "Small",
  44023. height: math.unit(162, "feet")
  44024. },
  44025. {
  44026. name: "Normal",
  44027. height: math.unit(3.2, "earths"),
  44028. default: true
  44029. },
  44030. ]
  44031. ))
  44032. characterMakers.push(() => makeCharacter(
  44033. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44034. {
  44035. front: {
  44036. height: math.unit(512, "feet"),
  44037. weight: math.unit(63509, "tonnes"),
  44038. name: "Front",
  44039. image: {
  44040. source: "./media/characters/vorrel-harroc/front.svg",
  44041. extra: 1075/1063,
  44042. bottom: 62/1137
  44043. }
  44044. },
  44045. },
  44046. [
  44047. {
  44048. name: "Normal",
  44049. height: math.unit(10, "feet")
  44050. },
  44051. {
  44052. name: "Macro",
  44053. height: math.unit(512, "feet"),
  44054. default: true
  44055. },
  44056. {
  44057. name: "Megamacro",
  44058. height: math.unit(256, "miles")
  44059. },
  44060. {
  44061. name: "Gigamacro",
  44062. height: math.unit(4096, "miles")
  44063. },
  44064. ]
  44065. ))
  44066. characterMakers.push(() => makeCharacter(
  44067. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44068. {
  44069. side: {
  44070. height: math.unit(50, "feet"),
  44071. name: "Side",
  44072. image: {
  44073. source: "./media/characters/froimar/side.svg",
  44074. extra: 855/638,
  44075. bottom: 99/954
  44076. }
  44077. },
  44078. },
  44079. [
  44080. {
  44081. name: "Macro",
  44082. height: math.unit(50, "feet"),
  44083. default: true
  44084. },
  44085. ]
  44086. ))
  44087. characterMakers.push(() => makeCharacter(
  44088. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44089. {
  44090. front: {
  44091. height: math.unit(210, "miles"),
  44092. name: "Front",
  44093. image: {
  44094. source: "./media/characters/timothy/front.svg",
  44095. extra: 1007/943,
  44096. bottom: 62/1069
  44097. }
  44098. },
  44099. frontSkirt: {
  44100. height: math.unit(210, "miles"),
  44101. name: "Front (Skirt)",
  44102. image: {
  44103. source: "./media/characters/timothy/front-skirt.svg",
  44104. extra: 1007/943,
  44105. bottom: 62/1069
  44106. }
  44107. },
  44108. frontCoat: {
  44109. height: math.unit(210, "miles"),
  44110. name: "Front (Coat)",
  44111. image: {
  44112. source: "./media/characters/timothy/front-coat.svg",
  44113. extra: 1007/943,
  44114. bottom: 62/1069
  44115. }
  44116. },
  44117. },
  44118. [
  44119. {
  44120. name: "Macro",
  44121. height: math.unit(210, "miles"),
  44122. default: true
  44123. },
  44124. {
  44125. name: "Megamacro",
  44126. height: math.unit(210000, "miles")
  44127. },
  44128. ]
  44129. ))
  44130. characterMakers.push(() => makeCharacter(
  44131. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44132. {
  44133. front: {
  44134. height: math.unit(188, "feet"),
  44135. name: "Front",
  44136. image: {
  44137. source: "./media/characters/pyotr/front.svg",
  44138. extra: 1912/1826,
  44139. bottom: 18/1930
  44140. }
  44141. },
  44142. },
  44143. [
  44144. {
  44145. name: "Macro",
  44146. height: math.unit(188, "feet"),
  44147. default: true
  44148. },
  44149. {
  44150. name: "Megamacro",
  44151. height: math.unit(8, "miles")
  44152. },
  44153. ]
  44154. ))
  44155. characterMakers.push(() => makeCharacter(
  44156. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44157. {
  44158. side: {
  44159. height: math.unit(10, "feet"),
  44160. weight: math.unit(4500, "lb"),
  44161. name: "Side",
  44162. image: {
  44163. source: "./media/characters/ackart/side.svg",
  44164. extra: 1776/1668,
  44165. bottom: 116/1892
  44166. }
  44167. },
  44168. },
  44169. [
  44170. {
  44171. name: "Normal",
  44172. height: math.unit(10, "feet"),
  44173. default: true
  44174. },
  44175. ]
  44176. ))
  44177. characterMakers.push(() => makeCharacter(
  44178. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44179. {
  44180. side: {
  44181. height: math.unit(21, "feet"),
  44182. name: "Side",
  44183. image: {
  44184. source: "./media/characters/nolow/side.svg",
  44185. extra: 1484/1434,
  44186. bottom: 85/1569
  44187. }
  44188. },
  44189. sideErect: {
  44190. height: math.unit(21, "feet"),
  44191. name: "Side-erect",
  44192. image: {
  44193. source: "./media/characters/nolow/side-erect.svg",
  44194. extra: 1484/1434,
  44195. bottom: 85/1569
  44196. }
  44197. },
  44198. },
  44199. [
  44200. {
  44201. name: "Regular",
  44202. height: math.unit(12, "feet")
  44203. },
  44204. {
  44205. name: "Big Chee",
  44206. height: math.unit(21, "feet"),
  44207. default: true
  44208. },
  44209. ]
  44210. ))
  44211. characterMakers.push(() => makeCharacter(
  44212. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44213. {
  44214. front: {
  44215. height: math.unit(7, "feet"),
  44216. weight: math.unit(250, "lb"),
  44217. name: "Front",
  44218. image: {
  44219. source: "./media/characters/nines/front.svg",
  44220. extra: 1741/1607,
  44221. bottom: 41/1782
  44222. }
  44223. },
  44224. side: {
  44225. height: math.unit(7, "feet"),
  44226. weight: math.unit(250, "lb"),
  44227. name: "Side",
  44228. image: {
  44229. source: "./media/characters/nines/side.svg",
  44230. extra: 1854/1735,
  44231. bottom: 93/1947
  44232. }
  44233. },
  44234. back: {
  44235. height: math.unit(7, "feet"),
  44236. weight: math.unit(250, "lb"),
  44237. name: "Back",
  44238. image: {
  44239. source: "./media/characters/nines/back.svg",
  44240. extra: 1748/1615,
  44241. bottom: 20/1768
  44242. }
  44243. },
  44244. },
  44245. [
  44246. {
  44247. name: "Megamacro",
  44248. height: math.unit(99, "km"),
  44249. default: true
  44250. },
  44251. ]
  44252. ))
  44253. characterMakers.push(() => makeCharacter(
  44254. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44255. {
  44256. front: {
  44257. height: math.unit(5 + 10/12, "feet"),
  44258. weight: math.unit(210, "lb"),
  44259. name: "Front",
  44260. image: {
  44261. source: "./media/characters/zenith/front.svg",
  44262. extra: 1531/1452,
  44263. bottom: 198/1729
  44264. }
  44265. },
  44266. back: {
  44267. height: math.unit(5 + 10/12, "feet"),
  44268. weight: math.unit(210, "lb"),
  44269. name: "Back",
  44270. image: {
  44271. source: "./media/characters/zenith/back.svg",
  44272. extra: 1571/1487,
  44273. bottom: 75/1646
  44274. }
  44275. },
  44276. },
  44277. [
  44278. {
  44279. name: "Normal",
  44280. height: math.unit(5 + 10/12, "feet"),
  44281. default: true
  44282. }
  44283. ]
  44284. ))
  44285. characterMakers.push(() => makeCharacter(
  44286. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44287. {
  44288. front: {
  44289. height: math.unit(4, "feet"),
  44290. weight: math.unit(60, "lb"),
  44291. name: "Front",
  44292. image: {
  44293. source: "./media/characters/jasper/front.svg",
  44294. extra: 1450/1379,
  44295. bottom: 19/1469
  44296. }
  44297. },
  44298. },
  44299. [
  44300. {
  44301. name: "Normal",
  44302. height: math.unit(4, "feet"),
  44303. default: true
  44304. },
  44305. ]
  44306. ))
  44307. characterMakers.push(() => makeCharacter(
  44308. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44309. {
  44310. front: {
  44311. height: math.unit(6 + 5/12, "feet"),
  44312. weight: math.unit(290, "lb"),
  44313. name: "Front",
  44314. image: {
  44315. source: "./media/characters/tiberius-thyben/front.svg",
  44316. extra: 757/739,
  44317. bottom: 39/796
  44318. }
  44319. },
  44320. },
  44321. [
  44322. {
  44323. name: "Micro",
  44324. height: math.unit(1.5, "inches")
  44325. },
  44326. {
  44327. name: "Normal",
  44328. height: math.unit(6 + 5/12, "feet"),
  44329. default: true
  44330. },
  44331. {
  44332. name: "Macro",
  44333. height: math.unit(300, "feet")
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44339. {
  44340. front: {
  44341. height: math.unit(5 + 6/12, "feet"),
  44342. weight: math.unit(60, "kg"),
  44343. name: "Front",
  44344. image: {
  44345. source: "./media/characters/sabre/front.svg",
  44346. extra: 738/671,
  44347. bottom: 27/765
  44348. }
  44349. },
  44350. },
  44351. [
  44352. {
  44353. name: "Teeny",
  44354. height: math.unit(2, "inches")
  44355. },
  44356. {
  44357. name: "Smol",
  44358. height: math.unit(8, "inches")
  44359. },
  44360. {
  44361. name: "Normal",
  44362. height: math.unit(5 + 6/12, "feet"),
  44363. default: true
  44364. },
  44365. {
  44366. name: "Mini-Macro",
  44367. height: math.unit(15, "feet")
  44368. },
  44369. {
  44370. name: "Macro",
  44371. height: math.unit(50, "feet")
  44372. },
  44373. ]
  44374. ))
  44375. characterMakers.push(() => makeCharacter(
  44376. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44377. {
  44378. front: {
  44379. height: math.unit(6 + 4/12, "feet"),
  44380. weight: math.unit(170, "lb"),
  44381. name: "Front",
  44382. image: {
  44383. source: "./media/characters/charlie/front.svg",
  44384. extra: 1348/1228,
  44385. bottom: 15/1363
  44386. }
  44387. },
  44388. },
  44389. [
  44390. {
  44391. name: "Macro",
  44392. height: math.unit(1700, "meters"),
  44393. default: true
  44394. },
  44395. {
  44396. name: "MegaMacro",
  44397. height: math.unit(20400, "meters")
  44398. },
  44399. ]
  44400. ))
  44401. characterMakers.push(() => makeCharacter(
  44402. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44403. {
  44404. front: {
  44405. height: math.unit(1.96, "meters"),
  44406. weight: math.unit(220, "lb"),
  44407. name: "Front",
  44408. image: {
  44409. source: "./media/characters/susan-grant/front.svg",
  44410. extra: 482/478,
  44411. bottom: 7/489
  44412. }
  44413. },
  44414. },
  44415. [
  44416. {
  44417. name: "Normal",
  44418. height: math.unit(1.96, "meters"),
  44419. default: true
  44420. },
  44421. {
  44422. name: "Macro",
  44423. height: math.unit(76.2, "meters")
  44424. },
  44425. {
  44426. name: "MegaMacro",
  44427. height: math.unit(305, "meters")
  44428. },
  44429. {
  44430. name: "GigaMacro",
  44431. height: math.unit(1220, "meters")
  44432. },
  44433. {
  44434. name: "SuperMacro",
  44435. height: math.unit(4878, "meters")
  44436. },
  44437. ]
  44438. ))
  44439. characterMakers.push(() => makeCharacter(
  44440. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44441. {
  44442. front: {
  44443. height: math.unit(5 + 4/12, "feet"),
  44444. weight: math.unit(110, "lb"),
  44445. name: "Front",
  44446. image: {
  44447. source: "./media/characters/axel-isanov/front.svg",
  44448. extra: 1096/1065,
  44449. bottom: 13/1109
  44450. }
  44451. },
  44452. },
  44453. [
  44454. {
  44455. name: "Normal",
  44456. height: math.unit(5 + 4/12, "feet"),
  44457. default: true
  44458. },
  44459. ]
  44460. ))
  44461. characterMakers.push(() => makeCharacter(
  44462. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44463. {
  44464. front: {
  44465. height: math.unit(9, "feet"),
  44466. weight: math.unit(467, "lb"),
  44467. name: "Front",
  44468. image: {
  44469. source: "./media/characters/necahual/front.svg",
  44470. extra: 920/873,
  44471. bottom: 26/946
  44472. }
  44473. },
  44474. back: {
  44475. height: math.unit(9, "feet"),
  44476. weight: math.unit(467, "lb"),
  44477. name: "Back",
  44478. image: {
  44479. source: "./media/characters/necahual/back.svg",
  44480. extra: 930/884,
  44481. bottom: 16/946
  44482. }
  44483. },
  44484. frontUnderwear: {
  44485. height: math.unit(9, "feet"),
  44486. weight: math.unit(467, "lb"),
  44487. name: "Front (Underwear)",
  44488. image: {
  44489. source: "./media/characters/necahual/front-underwear.svg",
  44490. extra: 920/873,
  44491. bottom: 26/946
  44492. }
  44493. },
  44494. frontDressed: {
  44495. height: math.unit(9, "feet"),
  44496. weight: math.unit(467, "lb"),
  44497. name: "Front (Dressed)",
  44498. image: {
  44499. source: "./media/characters/necahual/front-dressed.svg",
  44500. extra: 920/873,
  44501. bottom: 26/946
  44502. }
  44503. },
  44504. },
  44505. [
  44506. {
  44507. name: "Comprsesed",
  44508. height: math.unit(9, "feet")
  44509. },
  44510. {
  44511. name: "Natural",
  44512. height: math.unit(15, "feet"),
  44513. default: true
  44514. },
  44515. {
  44516. name: "Boosted",
  44517. height: math.unit(50, "feet")
  44518. },
  44519. {
  44520. name: "Boosted+",
  44521. height: math.unit(150, "feet")
  44522. },
  44523. {
  44524. name: "Max",
  44525. height: math.unit(500, "feet")
  44526. },
  44527. ]
  44528. ))
  44529. characterMakers.push(() => makeCharacter(
  44530. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44531. {
  44532. front: {
  44533. height: math.unit(22 + 1/12, "feet"),
  44534. weight: math.unit(3200, "lb"),
  44535. name: "Front",
  44536. image: {
  44537. source: "./media/characters/theo-acacia/front.svg",
  44538. extra: 1796/1741,
  44539. bottom: 83/1879
  44540. }
  44541. },
  44542. frontUnderwear: {
  44543. height: math.unit(22 + 1/12, "feet"),
  44544. weight: math.unit(3200, "lb"),
  44545. name: "Front (Underwear)",
  44546. image: {
  44547. source: "./media/characters/theo-acacia/front-underwear.svg",
  44548. extra: 1796/1741,
  44549. bottom: 83/1879
  44550. }
  44551. },
  44552. frontNude: {
  44553. height: math.unit(22 + 1/12, "feet"),
  44554. weight: math.unit(3200, "lb"),
  44555. name: "Front (Nude)",
  44556. image: {
  44557. source: "./media/characters/theo-acacia/front-nude.svg",
  44558. extra: 1796/1741,
  44559. bottom: 83/1879
  44560. }
  44561. },
  44562. },
  44563. [
  44564. {
  44565. name: "Normal",
  44566. height: math.unit(22 + 1/12, "feet"),
  44567. default: true
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44573. {
  44574. front: {
  44575. height: math.unit(20, "feet"),
  44576. name: "Front",
  44577. image: {
  44578. source: "./media/characters/astra/front.svg",
  44579. extra: 1850/1714,
  44580. bottom: 106/1956
  44581. }
  44582. },
  44583. frontUndressed: {
  44584. height: math.unit(20, "feet"),
  44585. name: "Front (Undressed)",
  44586. image: {
  44587. source: "./media/characters/astra/front-undressed.svg",
  44588. extra: 1926/1749,
  44589. bottom: 0/1926
  44590. }
  44591. },
  44592. hand: {
  44593. height: math.unit(1.53, "feet"),
  44594. name: "Hand",
  44595. image: {
  44596. source: "./media/characters/astra/hand.svg"
  44597. }
  44598. },
  44599. paw: {
  44600. height: math.unit(1.53, "feet"),
  44601. name: "Paw",
  44602. image: {
  44603. source: "./media/characters/astra/paw.svg"
  44604. }
  44605. },
  44606. },
  44607. [
  44608. {
  44609. name: "Smallest",
  44610. height: math.unit(20, "feet")
  44611. },
  44612. {
  44613. name: "Normal",
  44614. height: math.unit(1e9, "miles"),
  44615. default: true
  44616. },
  44617. {
  44618. name: "Larger",
  44619. height: math.unit(5, "multiverses")
  44620. },
  44621. {
  44622. name: "Largest",
  44623. height: math.unit(1e9, "multiverses")
  44624. },
  44625. ]
  44626. ))
  44627. characterMakers.push(() => makeCharacter(
  44628. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44629. {
  44630. front: {
  44631. height: math.unit(8, "feet"),
  44632. name: "Front",
  44633. image: {
  44634. source: "./media/characters/breanna/front.svg",
  44635. extra: 1912/1632,
  44636. bottom: 33/1945
  44637. }
  44638. },
  44639. },
  44640. [
  44641. {
  44642. name: "Smallest",
  44643. height: math.unit(8, "feet")
  44644. },
  44645. {
  44646. name: "Normal",
  44647. height: math.unit(1, "mile"),
  44648. default: true
  44649. },
  44650. {
  44651. name: "Maximum",
  44652. height: math.unit(1500000000000, "lightyears")
  44653. },
  44654. ]
  44655. ))
  44656. characterMakers.push(() => makeCharacter(
  44657. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44658. {
  44659. front: {
  44660. height: math.unit(5 + 11/12, "feet"),
  44661. weight: math.unit(155, "lb"),
  44662. name: "Front",
  44663. image: {
  44664. source: "./media/characters/cai/front.svg",
  44665. extra: 1823/1702,
  44666. bottom: 32/1855
  44667. }
  44668. },
  44669. back: {
  44670. height: math.unit(5 + 11/12, "feet"),
  44671. weight: math.unit(155, "lb"),
  44672. name: "Back",
  44673. image: {
  44674. source: "./media/characters/cai/back.svg",
  44675. extra: 1809/1708,
  44676. bottom: 31/1840
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Normal",
  44683. height: math.unit(5 + 11/12, "feet"),
  44684. default: true
  44685. },
  44686. {
  44687. name: "Big",
  44688. height: math.unit(15, "feet")
  44689. },
  44690. {
  44691. name: "Macro",
  44692. height: math.unit(200, "feet")
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44698. {
  44699. front: {
  44700. height: math.unit(5 + 6/12, "feet"),
  44701. weight: math.unit(160, "lb"),
  44702. name: "Front",
  44703. image: {
  44704. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44705. extra: 1227/1174,
  44706. bottom: 37/1264
  44707. }
  44708. },
  44709. },
  44710. [
  44711. {
  44712. name: "Macro",
  44713. height: math.unit(444, "meters"),
  44714. default: true
  44715. },
  44716. ]
  44717. ))
  44718. characterMakers.push(() => makeCharacter(
  44719. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44720. {
  44721. front: {
  44722. height: math.unit(18 + 7/12, "feet"),
  44723. name: "Front",
  44724. image: {
  44725. source: "./media/characters/rex/front.svg",
  44726. extra: 1941/1807,
  44727. bottom: 66/2007
  44728. }
  44729. },
  44730. back: {
  44731. height: math.unit(18 + 7/12, "feet"),
  44732. name: "Back",
  44733. image: {
  44734. source: "./media/characters/rex/back.svg",
  44735. extra: 1937/1822,
  44736. bottom: 42/1979
  44737. }
  44738. },
  44739. boot: {
  44740. height: math.unit(3.45, "feet"),
  44741. name: "Boot",
  44742. image: {
  44743. source: "./media/characters/rex/boot.svg"
  44744. }
  44745. },
  44746. paw: {
  44747. height: math.unit(4.17, "feet"),
  44748. name: "Paw",
  44749. image: {
  44750. source: "./media/characters/rex/paw.svg"
  44751. }
  44752. },
  44753. head: {
  44754. height: math.unit(6.728, "feet"),
  44755. name: "Head",
  44756. image: {
  44757. source: "./media/characters/rex/head.svg"
  44758. }
  44759. },
  44760. },
  44761. [
  44762. {
  44763. name: "Nano",
  44764. height: math.unit(18 + 7/12, "feet")
  44765. },
  44766. {
  44767. name: "Micro",
  44768. height: math.unit(1.5, "megameters")
  44769. },
  44770. {
  44771. name: "Normal",
  44772. height: math.unit(440, "megameters"),
  44773. default: true
  44774. },
  44775. {
  44776. name: "Macro",
  44777. height: math.unit(2.5, "gigameters")
  44778. },
  44779. {
  44780. name: "Gigamacro",
  44781. height: math.unit(2, "galaxies")
  44782. },
  44783. ]
  44784. ))
  44785. characterMakers.push(() => makeCharacter(
  44786. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44787. {
  44788. side: {
  44789. height: math.unit(32, "feet"),
  44790. weight: math.unit(250000, "lb"),
  44791. name: "Side",
  44792. image: {
  44793. source: "./media/characters/silverwing/side.svg",
  44794. extra: 1100/1019,
  44795. bottom: 204/1304
  44796. }
  44797. },
  44798. },
  44799. [
  44800. {
  44801. name: "Normal",
  44802. height: math.unit(32, "feet"),
  44803. default: true
  44804. },
  44805. ]
  44806. ))
  44807. characterMakers.push(() => makeCharacter(
  44808. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44809. {
  44810. front: {
  44811. height: math.unit(6 + 6/12, "feet"),
  44812. weight: math.unit(350, "lb"),
  44813. name: "Front",
  44814. image: {
  44815. source: "./media/characters/tristan-hawthorne/front.svg",
  44816. extra: 1159/1124,
  44817. bottom: 37/1196
  44818. },
  44819. form: "labrador",
  44820. default: true
  44821. },
  44822. skunkFront: {
  44823. height: math.unit(4 + 6/12, "feet"),
  44824. weight: math.unit(120, "lb"),
  44825. name: "Front",
  44826. image: {
  44827. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44828. extra: 1609/1551,
  44829. bottom: 169/1778
  44830. },
  44831. form: "skunk",
  44832. default: true
  44833. },
  44834. },
  44835. [
  44836. {
  44837. name: "Normal",
  44838. height: math.unit(6 + 6/12, "feet"),
  44839. form: "labrador",
  44840. default: true
  44841. },
  44842. {
  44843. name: "Normal",
  44844. height: math.unit(4 + 6/12, "feet"),
  44845. form: "skunk",
  44846. default: true
  44847. },
  44848. ],
  44849. {
  44850. "labrador": {
  44851. name: "Labrador",
  44852. default: true
  44853. },
  44854. "skunk": {
  44855. name: "Skunk"
  44856. }
  44857. }
  44858. ))
  44859. characterMakers.push(() => makeCharacter(
  44860. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44861. {
  44862. front: {
  44863. height: math.unit(5 + 11/12, "feet"),
  44864. weight: math.unit(190, "lb"),
  44865. name: "Front",
  44866. image: {
  44867. source: "./media/characters/mizu/front.svg",
  44868. extra: 1988/1788,
  44869. bottom: 14/2002
  44870. }
  44871. },
  44872. },
  44873. [
  44874. {
  44875. name: "Normal",
  44876. height: math.unit(5 + 11/12, "feet"),
  44877. default: true
  44878. },
  44879. ]
  44880. ))
  44881. characterMakers.push(() => makeCharacter(
  44882. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44883. {
  44884. front: {
  44885. height: math.unit(1.7, "feet"),
  44886. weight: math.unit(50, "lb"),
  44887. name: "Front",
  44888. image: {
  44889. source: "./media/characters/dechroma/front.svg",
  44890. extra: 1095/859,
  44891. bottom: 64/1159
  44892. }
  44893. },
  44894. },
  44895. [
  44896. {
  44897. name: "Normal",
  44898. height: math.unit(1.7, "feet"),
  44899. default: true
  44900. },
  44901. ]
  44902. ))
  44903. characterMakers.push(() => makeCharacter(
  44904. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44905. {
  44906. side: {
  44907. height: math.unit(30, "feet"),
  44908. name: "Side",
  44909. image: {
  44910. source: "./media/characters/veluren-thanazel/side.svg",
  44911. extra: 1611/633,
  44912. bottom: 118/1729
  44913. }
  44914. },
  44915. front: {
  44916. height: math.unit(30, "feet"),
  44917. name: "Front",
  44918. image: {
  44919. source: "./media/characters/veluren-thanazel/front.svg",
  44920. extra: 1486/636,
  44921. bottom: 238/1724
  44922. }
  44923. },
  44924. head: {
  44925. height: math.unit(21.4, "feet"),
  44926. name: "Head",
  44927. image: {
  44928. source: "./media/characters/veluren-thanazel/head.svg"
  44929. }
  44930. },
  44931. genitals: {
  44932. height: math.unit(19.4, "feet"),
  44933. name: "Genitals",
  44934. image: {
  44935. source: "./media/characters/veluren-thanazel/genitals.svg"
  44936. }
  44937. },
  44938. },
  44939. [
  44940. {
  44941. name: "Social",
  44942. height: math.unit(6, "feet")
  44943. },
  44944. {
  44945. name: "Play",
  44946. height: math.unit(12, "feet")
  44947. },
  44948. {
  44949. name: "True",
  44950. height: math.unit(30, "feet"),
  44951. default: true
  44952. },
  44953. ]
  44954. ))
  44955. characterMakers.push(() => makeCharacter(
  44956. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44957. {
  44958. front: {
  44959. height: math.unit(7 + 6/12, "feet"),
  44960. weight: math.unit(500, "kg"),
  44961. name: "Front",
  44962. image: {
  44963. source: "./media/characters/arcturas/front.svg",
  44964. extra: 1700/1500,
  44965. bottom: 145/1845
  44966. }
  44967. },
  44968. },
  44969. [
  44970. {
  44971. name: "Normal",
  44972. height: math.unit(7 + 6/12, "feet"),
  44973. default: true
  44974. },
  44975. ]
  44976. ))
  44977. characterMakers.push(() => makeCharacter(
  44978. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44979. {
  44980. side: {
  44981. height: math.unit(6, "feet"),
  44982. weight: math.unit(2, "tons"),
  44983. name: "Side",
  44984. image: {
  44985. source: "./media/characters/vitaen/side.svg",
  44986. extra: 1157/617,
  44987. bottom: 122/1279
  44988. }
  44989. },
  44990. },
  44991. [
  44992. {
  44993. name: "Normal",
  44994. height: math.unit(6, "feet"),
  44995. default: true
  44996. },
  44997. ]
  44998. ))
  44999. characterMakers.push(() => makeCharacter(
  45000. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45001. {
  45002. front: {
  45003. height: math.unit(19, "feet"),
  45004. name: "Front",
  45005. image: {
  45006. source: "./media/characters/fia-dreamweaver/front.svg",
  45007. extra: 1630/1504,
  45008. bottom: 25/1655
  45009. }
  45010. },
  45011. },
  45012. [
  45013. {
  45014. name: "Normal",
  45015. height: math.unit(19, "feet"),
  45016. default: true
  45017. },
  45018. ]
  45019. ))
  45020. characterMakers.push(() => makeCharacter(
  45021. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45022. {
  45023. front: {
  45024. height: math.unit(5 + 4/12, "feet"),
  45025. name: "Front",
  45026. image: {
  45027. source: "./media/characters/artan/front.svg",
  45028. extra: 1618/1535,
  45029. bottom: 46/1664
  45030. }
  45031. },
  45032. back: {
  45033. height: math.unit(5 + 4/12, "feet"),
  45034. name: "Back",
  45035. image: {
  45036. source: "./media/characters/artan/back.svg",
  45037. extra: 1618/1543,
  45038. bottom: 31/1649
  45039. }
  45040. },
  45041. },
  45042. [
  45043. {
  45044. name: "Normal",
  45045. height: math.unit(5 + 4/12, "feet"),
  45046. default: true
  45047. },
  45048. ]
  45049. ))
  45050. characterMakers.push(() => makeCharacter(
  45051. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45052. {
  45053. side: {
  45054. height: math.unit(182, "cm"),
  45055. weight: math.unit(1000, "lb"),
  45056. name: "Side",
  45057. image: {
  45058. source: "./media/characters/silver-dragon/side.svg",
  45059. extra: 710/287,
  45060. bottom: 88/798
  45061. }
  45062. },
  45063. },
  45064. [
  45065. {
  45066. name: "Normal",
  45067. height: math.unit(182, "cm"),
  45068. default: true
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45074. {
  45075. side: {
  45076. height: math.unit(6 + 6/12, "feet"),
  45077. weight: math.unit(1.5, "tons"),
  45078. name: "Side",
  45079. image: {
  45080. source: "./media/characters/zephyr/side.svg",
  45081. extra: 1433/586,
  45082. bottom: 109/1542
  45083. }
  45084. },
  45085. },
  45086. [
  45087. {
  45088. name: "Normal",
  45089. height: math.unit(6 + 6/12, "feet"),
  45090. default: true
  45091. },
  45092. ]
  45093. ))
  45094. characterMakers.push(() => makeCharacter(
  45095. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45096. {
  45097. side: {
  45098. height: math.unit(1, "feet"),
  45099. name: "Side",
  45100. image: {
  45101. source: "./media/characters/vixye/side.svg",
  45102. extra: 632/541,
  45103. bottom: 0/632
  45104. }
  45105. },
  45106. },
  45107. [
  45108. {
  45109. name: "Normal",
  45110. height: math.unit(1, "feet"),
  45111. default: true
  45112. },
  45113. {
  45114. name: "True",
  45115. height: math.unit(1e15, "multiverses")
  45116. },
  45117. ]
  45118. ))
  45119. characterMakers.push(() => makeCharacter(
  45120. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45121. {
  45122. front: {
  45123. height: math.unit(8 + 2/12, "feet"),
  45124. weight: math.unit(650, "lb"),
  45125. name: "Front",
  45126. image: {
  45127. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45128. extra: 1174/1137,
  45129. bottom: 82/1256
  45130. }
  45131. },
  45132. back: {
  45133. height: math.unit(8 + 2/12, "feet"),
  45134. weight: math.unit(650, "lb"),
  45135. name: "Back",
  45136. image: {
  45137. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45138. extra: 1204/1157,
  45139. bottom: 46/1250
  45140. }
  45141. },
  45142. },
  45143. [
  45144. {
  45145. name: "Wildform",
  45146. height: math.unit(8 + 2/12, "feet"),
  45147. default: true
  45148. },
  45149. ]
  45150. ))
  45151. characterMakers.push(() => makeCharacter(
  45152. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45153. {
  45154. front: {
  45155. height: math.unit(18, "feet"),
  45156. name: "Front",
  45157. image: {
  45158. source: "./media/characters/cyphin/front.svg",
  45159. extra: 970/886,
  45160. bottom: 42/1012
  45161. }
  45162. },
  45163. back: {
  45164. height: math.unit(18, "feet"),
  45165. name: "Back",
  45166. image: {
  45167. source: "./media/characters/cyphin/back.svg",
  45168. extra: 1009/894,
  45169. bottom: 24/1033
  45170. }
  45171. },
  45172. head: {
  45173. height: math.unit(5.05, "feet"),
  45174. name: "Head",
  45175. image: {
  45176. source: "./media/characters/cyphin/head.svg"
  45177. }
  45178. },
  45179. tailbud: {
  45180. height: math.unit(5, "feet"),
  45181. name: "Tailbud",
  45182. image: {
  45183. source: "./media/characters/cyphin/tailbud.svg"
  45184. }
  45185. },
  45186. },
  45187. [
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45192. {
  45193. side: {
  45194. height: math.unit(10, "feet"),
  45195. weight: math.unit(6, "tons"),
  45196. name: "Side",
  45197. image: {
  45198. source: "./media/characters/raijin/side.svg",
  45199. extra: 1529/613,
  45200. bottom: 337/1866
  45201. }
  45202. },
  45203. },
  45204. [
  45205. {
  45206. name: "Normal",
  45207. height: math.unit(10, "feet"),
  45208. default: true
  45209. },
  45210. ]
  45211. ))
  45212. characterMakers.push(() => makeCharacter(
  45213. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45214. {
  45215. side: {
  45216. height: math.unit(9, "feet"),
  45217. name: "Side",
  45218. image: {
  45219. source: "./media/characters/nilghais/side.svg",
  45220. extra: 1047/744,
  45221. bottom: 91/1138
  45222. }
  45223. },
  45224. head: {
  45225. height: math.unit(3.14, "feet"),
  45226. name: "Head",
  45227. image: {
  45228. source: "./media/characters/nilghais/head.svg"
  45229. }
  45230. },
  45231. mouth: {
  45232. height: math.unit(4.6, "feet"),
  45233. name: "Mouth",
  45234. image: {
  45235. source: "./media/characters/nilghais/mouth.svg"
  45236. }
  45237. },
  45238. wings: {
  45239. height: math.unit(24, "feet"),
  45240. name: "Wings",
  45241. image: {
  45242. source: "./media/characters/nilghais/wings.svg"
  45243. }
  45244. },
  45245. ass: {
  45246. height: math.unit(6.12, "feet"),
  45247. name: "Ass",
  45248. image: {
  45249. source: "./media/characters/nilghais/ass.svg"
  45250. }
  45251. },
  45252. },
  45253. [
  45254. {
  45255. name: "Normal",
  45256. height: math.unit(9, "feet"),
  45257. default: true
  45258. },
  45259. ]
  45260. ))
  45261. characterMakers.push(() => makeCharacter(
  45262. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45263. {
  45264. regular: {
  45265. height: math.unit(16 + 2/12, "feet"),
  45266. weight: math.unit(2300, "lb"),
  45267. name: "Regular",
  45268. image: {
  45269. source: "./media/characters/zolgar/regular.svg",
  45270. extra: 1246/1004,
  45271. bottom: 124/1370
  45272. }
  45273. },
  45274. boxers: {
  45275. height: math.unit(16 + 2/12, "feet"),
  45276. weight: math.unit(2300, "lb"),
  45277. name: "Boxers",
  45278. image: {
  45279. source: "./media/characters/zolgar/boxers.svg",
  45280. extra: 1246/1004,
  45281. bottom: 124/1370
  45282. }
  45283. },
  45284. armored: {
  45285. height: math.unit(16 + 2/12, "feet"),
  45286. weight: math.unit(2300, "lb"),
  45287. name: "Armored",
  45288. image: {
  45289. source: "./media/characters/zolgar/armored.svg",
  45290. extra: 1246/1004,
  45291. bottom: 124/1370
  45292. }
  45293. },
  45294. goth: {
  45295. height: math.unit(16 + 2/12, "feet"),
  45296. weight: math.unit(2300, "lb"),
  45297. name: "Goth",
  45298. image: {
  45299. source: "./media/characters/zolgar/goth.svg",
  45300. extra: 1246/1004,
  45301. bottom: 124/1370
  45302. }
  45303. },
  45304. },
  45305. [
  45306. {
  45307. name: "Shrunken Down",
  45308. height: math.unit(9 + 2/12, "feet")
  45309. },
  45310. {
  45311. name: "Normal",
  45312. height: math.unit(16 + 2/12, "feet"),
  45313. default: true
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45319. {
  45320. front: {
  45321. height: math.unit(6, "feet"),
  45322. weight: math.unit(168, "lb"),
  45323. name: "Front",
  45324. image: {
  45325. source: "./media/characters/luca/front.svg",
  45326. extra: 841/667,
  45327. bottom: 102/943
  45328. }
  45329. },
  45330. },
  45331. [
  45332. {
  45333. name: "Normal",
  45334. height: math.unit(6, "feet"),
  45335. default: true
  45336. },
  45337. ]
  45338. ))
  45339. characterMakers.push(() => makeCharacter(
  45340. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45341. {
  45342. side: {
  45343. height: math.unit(7 + 3/12, "feet"),
  45344. weight: math.unit(312, "lb"),
  45345. name: "Side",
  45346. image: {
  45347. source: "./media/characters/zezo/side.svg",
  45348. extra: 1192/1067,
  45349. bottom: 63/1255
  45350. }
  45351. },
  45352. },
  45353. [
  45354. {
  45355. name: "Normal",
  45356. height: math.unit(7 + 3/12, "feet"),
  45357. default: true
  45358. },
  45359. ]
  45360. ))
  45361. characterMakers.push(() => makeCharacter(
  45362. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45363. {
  45364. front: {
  45365. height: math.unit(5 + 5/12, "feet"),
  45366. weight: math.unit(170, "lb"),
  45367. name: "Front",
  45368. image: {
  45369. source: "./media/characters/mayso/front.svg",
  45370. extra: 1215/1108,
  45371. bottom: 16/1231
  45372. }
  45373. },
  45374. },
  45375. [
  45376. {
  45377. name: "Normal",
  45378. height: math.unit(5 + 5/12, "feet"),
  45379. default: true
  45380. },
  45381. ]
  45382. ))
  45383. characterMakers.push(() => makeCharacter(
  45384. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45385. {
  45386. front: {
  45387. height: math.unit(4 + 3/12, "feet"),
  45388. weight: math.unit(80, "lb"),
  45389. name: "Front",
  45390. image: {
  45391. source: "./media/characters/hess/front.svg",
  45392. extra: 1200/1123,
  45393. bottom: 16/1216
  45394. }
  45395. },
  45396. },
  45397. [
  45398. {
  45399. name: "Normal",
  45400. height: math.unit(4 + 3/12, "feet"),
  45401. default: true
  45402. },
  45403. ]
  45404. ))
  45405. characterMakers.push(() => makeCharacter(
  45406. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45407. {
  45408. front: {
  45409. height: math.unit(1.9, "meters"),
  45410. name: "Front",
  45411. image: {
  45412. source: "./media/characters/ashgar/front.svg",
  45413. extra: 1177/1146,
  45414. bottom: 99/1276
  45415. }
  45416. },
  45417. back: {
  45418. height: math.unit(1.9, "meters"),
  45419. name: "Back",
  45420. image: {
  45421. source: "./media/characters/ashgar/back.svg",
  45422. extra: 1201/1183,
  45423. bottom: 53/1254
  45424. }
  45425. },
  45426. feral: {
  45427. height: math.unit(1.4, "meters"),
  45428. name: "Feral",
  45429. image: {
  45430. source: "./media/characters/ashgar/feral.svg",
  45431. extra: 370/345,
  45432. bottom: 45/415
  45433. }
  45434. },
  45435. },
  45436. [
  45437. {
  45438. name: "Normal",
  45439. height: math.unit(1.9, "meters"),
  45440. default: true
  45441. },
  45442. ]
  45443. ))
  45444. characterMakers.push(() => makeCharacter(
  45445. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45446. {
  45447. regular: {
  45448. height: math.unit(6, "feet"),
  45449. weight: math.unit(220, "lb"),
  45450. name: "Regular",
  45451. image: {
  45452. source: "./media/characters/phillip/regular.svg",
  45453. extra: 1373/1277,
  45454. bottom: 75/1448
  45455. }
  45456. },
  45457. dressed: {
  45458. height: math.unit(6, "feet"),
  45459. weight: math.unit(220, "lb"),
  45460. name: "Dressed",
  45461. image: {
  45462. source: "./media/characters/phillip/dressed.svg",
  45463. extra: 1373/1277,
  45464. bottom: 75/1448
  45465. }
  45466. },
  45467. paw: {
  45468. height: math.unit(1.44, "feet"),
  45469. name: "Paw",
  45470. image: {
  45471. source: "./media/characters/phillip/paw.svg"
  45472. }
  45473. },
  45474. },
  45475. [
  45476. {
  45477. name: "Normal",
  45478. height: math.unit(6, "feet"),
  45479. default: true
  45480. },
  45481. ]
  45482. ))
  45483. characterMakers.push(() => makeCharacter(
  45484. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45485. {
  45486. side: {
  45487. height: math.unit(42, "feet"),
  45488. name: "Side",
  45489. image: {
  45490. source: "./media/characters/uvula/side.svg",
  45491. extra: 683/586,
  45492. bottom: 60/743
  45493. }
  45494. },
  45495. front: {
  45496. height: math.unit(42, "feet"),
  45497. name: "Front",
  45498. image: {
  45499. source: "./media/characters/uvula/front.svg",
  45500. extra: 705/613,
  45501. bottom: 54/759
  45502. }
  45503. },
  45504. maw: {
  45505. height: math.unit(23.5, "feet"),
  45506. name: "Maw",
  45507. image: {
  45508. source: "./media/characters/uvula/maw.svg"
  45509. }
  45510. },
  45511. },
  45512. [
  45513. {
  45514. name: "Original Size",
  45515. height: math.unit(14, "inches")
  45516. },
  45517. {
  45518. name: "Human Size",
  45519. height: math.unit(6, "feet")
  45520. },
  45521. {
  45522. name: "Big",
  45523. height: math.unit(42, "feet"),
  45524. default: true
  45525. },
  45526. {
  45527. name: "Bigger",
  45528. height: math.unit(100, "feet")
  45529. },
  45530. ]
  45531. ))
  45532. characterMakers.push(() => makeCharacter(
  45533. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45534. {
  45535. front: {
  45536. height: math.unit(5 + 11/12, "feet"),
  45537. name: "Front",
  45538. image: {
  45539. source: "./media/characters/lannah/front.svg",
  45540. extra: 1208/1113,
  45541. bottom: 97/1305
  45542. }
  45543. },
  45544. },
  45545. [
  45546. {
  45547. name: "Normal",
  45548. height: math.unit(5 + 11/12, "feet"),
  45549. default: true
  45550. },
  45551. ]
  45552. ))
  45553. characterMakers.push(() => makeCharacter(
  45554. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45555. {
  45556. front: {
  45557. height: math.unit(6 + 3/12, "feet"),
  45558. weight: math.unit(3.5, "tons"),
  45559. name: "Front",
  45560. image: {
  45561. source: "./media/characters/emberflame/front.svg",
  45562. extra: 1198/672,
  45563. bottom: 82/1280
  45564. }
  45565. },
  45566. side: {
  45567. height: math.unit(6 + 3/12, "feet"),
  45568. weight: math.unit(3.5, "tons"),
  45569. name: "Side",
  45570. image: {
  45571. source: "./media/characters/emberflame/side.svg",
  45572. extra: 938/527,
  45573. bottom: 56/994
  45574. }
  45575. },
  45576. },
  45577. [
  45578. {
  45579. name: "Normal",
  45580. height: math.unit(6 + 3/12, "feet"),
  45581. default: true
  45582. },
  45583. ]
  45584. ))
  45585. characterMakers.push(() => makeCharacter(
  45586. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45587. {
  45588. side: {
  45589. height: math.unit(17.5, "feet"),
  45590. weight: math.unit(35, "tons"),
  45591. name: "Side",
  45592. image: {
  45593. source: "./media/characters/sophie-ambrose/side.svg",
  45594. extra: 1573/1242,
  45595. bottom: 71/1644
  45596. }
  45597. },
  45598. maw: {
  45599. height: math.unit(7.4, "feet"),
  45600. name: "Maw",
  45601. image: {
  45602. source: "./media/characters/sophie-ambrose/maw.svg"
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Normal",
  45609. height: math.unit(17.5, "feet"),
  45610. default: true
  45611. },
  45612. ]
  45613. ))
  45614. characterMakers.push(() => makeCharacter(
  45615. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45616. {
  45617. front: {
  45618. height: math.unit(280, "feet"),
  45619. weight: math.unit(550, "tons"),
  45620. name: "Front",
  45621. image: {
  45622. source: "./media/characters/king-mugi/front.svg",
  45623. extra: 1102/947,
  45624. bottom: 104/1206
  45625. }
  45626. },
  45627. },
  45628. [
  45629. {
  45630. name: "King Mugi",
  45631. height: math.unit(280, "feet"),
  45632. default: true
  45633. },
  45634. ]
  45635. ))
  45636. characterMakers.push(() => makeCharacter(
  45637. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45638. {
  45639. female: {
  45640. height: math.unit(300, "meters"),
  45641. name: "Front",
  45642. image: {
  45643. source: "./media/characters/nova-fox/female.svg",
  45644. extra: 664/632,
  45645. bottom: 51/715
  45646. },
  45647. form: "female",
  45648. default: true
  45649. },
  45650. male: {
  45651. height: math.unit(300, "meters"),
  45652. name: "Front",
  45653. image: {
  45654. source: "./media/characters/nova-fox/male.svg",
  45655. extra: 663/631,
  45656. bottom: 30/693
  45657. },
  45658. form: "male",
  45659. default: true
  45660. },
  45661. },
  45662. [
  45663. {
  45664. name: "Macro",
  45665. height: math.unit(300, "meters"),
  45666. default: true,
  45667. allForms: true
  45668. },
  45669. ],
  45670. {
  45671. "female": {
  45672. name: "Female",
  45673. default: true
  45674. },
  45675. "male": {
  45676. name: "Male",
  45677. },
  45678. }
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45682. {
  45683. front: {
  45684. height: math.unit(6 + 3/12, "feet"),
  45685. weight: math.unit(170, "lb"),
  45686. name: "Front",
  45687. image: {
  45688. source: "./media/characters/sam-bat/front.svg",
  45689. extra: 1601/1411,
  45690. bottom: 125/1726
  45691. }
  45692. },
  45693. back: {
  45694. height: math.unit(6 + 3/12, "feet"),
  45695. weight: math.unit(170, "lb"),
  45696. name: "Back",
  45697. image: {
  45698. source: "./media/characters/sam-bat/back.svg",
  45699. extra: 1577/1405,
  45700. bottom: 58/1635
  45701. }
  45702. },
  45703. },
  45704. [
  45705. {
  45706. name: "Normal",
  45707. height: math.unit(6 + 3/12, "feet"),
  45708. default: true
  45709. },
  45710. ]
  45711. ))
  45712. characterMakers.push(() => makeCharacter(
  45713. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45714. {
  45715. front: {
  45716. height: math.unit(59, "feet"),
  45717. weight: math.unit(40000, "lb"),
  45718. name: "Front",
  45719. image: {
  45720. source: "./media/characters/inari/front.svg",
  45721. extra: 1884/1350,
  45722. bottom: 95/1979
  45723. }
  45724. },
  45725. },
  45726. [
  45727. {
  45728. name: "Gigantamax",
  45729. height: math.unit(59, "feet"),
  45730. default: true
  45731. },
  45732. ]
  45733. ))
  45734. characterMakers.push(() => makeCharacter(
  45735. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45736. {
  45737. front: {
  45738. height: math.unit(5 + 8/12, "feet"),
  45739. name: "Front",
  45740. image: {
  45741. source: "./media/characters/elizabeth/front.svg",
  45742. extra: 1395/1298,
  45743. bottom: 54/1449
  45744. }
  45745. },
  45746. mouth: {
  45747. height: math.unit(1.97, "feet"),
  45748. name: "Mouth",
  45749. image: {
  45750. source: "./media/characters/elizabeth/mouth.svg"
  45751. }
  45752. },
  45753. foot: {
  45754. height: math.unit(1.17, "feet"),
  45755. name: "Foot",
  45756. image: {
  45757. source: "./media/characters/elizabeth/foot.svg"
  45758. }
  45759. },
  45760. },
  45761. [
  45762. {
  45763. name: "Normal",
  45764. height: math.unit(5 + 8/12, "feet"),
  45765. default: true
  45766. },
  45767. {
  45768. name: "Minimacro",
  45769. height: math.unit(18, "feet")
  45770. },
  45771. {
  45772. name: "Macro",
  45773. height: math.unit(180, "feet")
  45774. },
  45775. ]
  45776. ))
  45777. characterMakers.push(() => makeCharacter(
  45778. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45779. {
  45780. front: {
  45781. height: math.unit(5 + 2/12, "feet"),
  45782. name: "Front",
  45783. image: {
  45784. source: "./media/characters/october-gossamer/front.svg",
  45785. extra: 505/454,
  45786. bottom: 7/512
  45787. }
  45788. },
  45789. back: {
  45790. height: math.unit(5 + 2/12, "feet"),
  45791. name: "Back",
  45792. image: {
  45793. source: "./media/characters/october-gossamer/back.svg",
  45794. extra: 501/454,
  45795. bottom: 11/512
  45796. }
  45797. },
  45798. },
  45799. [
  45800. {
  45801. name: "Normal",
  45802. height: math.unit(5 + 2/12, "feet"),
  45803. default: true
  45804. },
  45805. ]
  45806. ))
  45807. characterMakers.push(() => makeCharacter(
  45808. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45809. {
  45810. front: {
  45811. height: math.unit(5, "feet"),
  45812. name: "Front",
  45813. image: {
  45814. source: "./media/characters/epiglottis/front.svg",
  45815. extra: 923/849,
  45816. bottom: 17/940
  45817. }
  45818. },
  45819. },
  45820. [
  45821. {
  45822. name: "Original Size",
  45823. height: math.unit(10, "inches")
  45824. },
  45825. {
  45826. name: "Human Size",
  45827. height: math.unit(5, "feet"),
  45828. default: true
  45829. },
  45830. {
  45831. name: "Big",
  45832. height: math.unit(25, "feet")
  45833. },
  45834. {
  45835. name: "Bigger",
  45836. height: math.unit(50, "feet")
  45837. },
  45838. {
  45839. name: "oh lawd",
  45840. height: math.unit(75, "feet")
  45841. },
  45842. ]
  45843. ))
  45844. characterMakers.push(() => makeCharacter(
  45845. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45846. {
  45847. front: {
  45848. height: math.unit(2 + 4/12, "feet"),
  45849. weight: math.unit(60, "lb"),
  45850. name: "Front",
  45851. image: {
  45852. source: "./media/characters/lerm/front.svg",
  45853. extra: 796/790,
  45854. bottom: 79/875
  45855. }
  45856. },
  45857. },
  45858. [
  45859. {
  45860. name: "Normal",
  45861. height: math.unit(2 + 4/12, "feet"),
  45862. default: true
  45863. },
  45864. ]
  45865. ))
  45866. characterMakers.push(() => makeCharacter(
  45867. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45868. {
  45869. front: {
  45870. height: math.unit(5.5, "feet"),
  45871. weight: math.unit(130, "lb"),
  45872. name: "Front",
  45873. image: {
  45874. source: "./media/characters/xena-nebadon/front.svg",
  45875. extra: 1828/1730,
  45876. bottom: 79/1907
  45877. }
  45878. },
  45879. },
  45880. [
  45881. {
  45882. name: "Tiny Puppy",
  45883. height: math.unit(3, "inches")
  45884. },
  45885. {
  45886. name: "Normal",
  45887. height: math.unit(5.5, "feet"),
  45888. default: true
  45889. },
  45890. {
  45891. name: "Lotta Lady",
  45892. height: math.unit(12, "feet")
  45893. },
  45894. {
  45895. name: "Pretty Big",
  45896. height: math.unit(100, "feet")
  45897. },
  45898. {
  45899. name: "Big",
  45900. height: math.unit(500, "feet")
  45901. },
  45902. {
  45903. name: "Skyscraper Toys",
  45904. height: math.unit(2500, "feet")
  45905. },
  45906. {
  45907. name: "Plane Catcher",
  45908. height: math.unit(8, "miles")
  45909. },
  45910. {
  45911. name: "Planet Toys",
  45912. height: math.unit(15, "earths")
  45913. },
  45914. {
  45915. name: "Stardust",
  45916. height: math.unit(0.25, "galaxies")
  45917. },
  45918. {
  45919. name: "Snacks",
  45920. height: math.unit(70, "universes")
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45926. {
  45927. front: {
  45928. height: math.unit(1.6, "meters"),
  45929. weight: math.unit(60, "kg"),
  45930. name: "Front",
  45931. image: {
  45932. source: "./media/characters/bounty/front.svg",
  45933. extra: 1426/1308,
  45934. bottom: 15/1441
  45935. }
  45936. },
  45937. back: {
  45938. height: math.unit(1.6, "meters"),
  45939. weight: math.unit(60, "kg"),
  45940. name: "Back",
  45941. image: {
  45942. source: "./media/characters/bounty/back.svg",
  45943. extra: 1417/1307,
  45944. bottom: 8/1425
  45945. }
  45946. },
  45947. },
  45948. [
  45949. {
  45950. name: "Normal",
  45951. height: math.unit(1.6, "meters"),
  45952. default: true
  45953. },
  45954. {
  45955. name: "Macro",
  45956. height: math.unit(300, "meters")
  45957. },
  45958. ]
  45959. ))
  45960. characterMakers.push(() => makeCharacter(
  45961. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45962. {
  45963. front: {
  45964. height: math.unit(2 + 8/12, "feet"),
  45965. weight: math.unit(15, "lb"),
  45966. name: "Front",
  45967. image: {
  45968. source: "./media/characters/mochi/front.svg",
  45969. extra: 1022/852,
  45970. bottom: 435/1457
  45971. }
  45972. },
  45973. back: {
  45974. height: math.unit(2 + 8/12, "feet"),
  45975. weight: math.unit(15, "lb"),
  45976. name: "Back",
  45977. image: {
  45978. source: "./media/characters/mochi/back.svg",
  45979. extra: 1335/1119,
  45980. bottom: 39/1374
  45981. }
  45982. },
  45983. bird: {
  45984. height: math.unit(2 + 8/12, "feet"),
  45985. weight: math.unit(15, "lb"),
  45986. name: "Bird",
  45987. image: {
  45988. source: "./media/characters/mochi/bird.svg",
  45989. extra: 1251/1113,
  45990. bottom: 178/1429
  45991. }
  45992. },
  45993. kaiju: {
  45994. height: math.unit(154, "feet"),
  45995. weight: math.unit(1e7, "lb"),
  45996. name: "Kaiju",
  45997. image: {
  45998. source: "./media/characters/mochi/kaiju.svg",
  45999. extra: 460/324,
  46000. bottom: 40/500
  46001. }
  46002. },
  46003. head: {
  46004. height: math.unit(1.21, "feet"),
  46005. name: "Head",
  46006. image: {
  46007. source: "./media/characters/mochi/head.svg"
  46008. }
  46009. },
  46010. alternateTail: {
  46011. height: math.unit(2 + 8/12, "feet"),
  46012. weight: math.unit(45, "lb"),
  46013. name: "Alternate Tail",
  46014. image: {
  46015. source: "./media/characters/mochi/alternate-tail.svg",
  46016. extra: 139/76,
  46017. bottom: 45/184
  46018. }
  46019. },
  46020. },
  46021. [
  46022. {
  46023. name: "Micro",
  46024. height: math.unit(2, "inches")
  46025. },
  46026. {
  46027. name: "Normal",
  46028. height: math.unit(2 + 8/12, "feet"),
  46029. default: true
  46030. },
  46031. {
  46032. name: "Macro",
  46033. height: math.unit(106, "feet")
  46034. },
  46035. ]
  46036. ))
  46037. characterMakers.push(() => makeCharacter(
  46038. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46039. {
  46040. front: {
  46041. height: math.unit(5.67, "feet"),
  46042. weight: math.unit(135, "lb"),
  46043. name: "Front",
  46044. image: {
  46045. source: "./media/characters/sarel/front.svg",
  46046. extra: 865/788,
  46047. bottom: 97/962
  46048. }
  46049. },
  46050. back: {
  46051. height: math.unit(5.67, "feet"),
  46052. weight: math.unit(135, "lb"),
  46053. name: "Back",
  46054. image: {
  46055. source: "./media/characters/sarel/back.svg",
  46056. extra: 857/777,
  46057. bottom: 32/889
  46058. }
  46059. },
  46060. chozoan: {
  46061. height: math.unit(5.67, "feet"),
  46062. weight: math.unit(135, "lb"),
  46063. name: "Chozoan",
  46064. image: {
  46065. source: "./media/characters/sarel/chozoan.svg",
  46066. extra: 865/788,
  46067. bottom: 97/962
  46068. }
  46069. },
  46070. current: {
  46071. height: math.unit(5.67, "feet"),
  46072. weight: math.unit(135, "lb"),
  46073. name: "Current",
  46074. image: {
  46075. source: "./media/characters/sarel/current.svg",
  46076. extra: 865/788,
  46077. bottom: 97/962
  46078. }
  46079. },
  46080. head: {
  46081. height: math.unit(1.77, "feet"),
  46082. name: "Head",
  46083. image: {
  46084. source: "./media/characters/sarel/head.svg"
  46085. }
  46086. },
  46087. claws: {
  46088. height: math.unit(1.8, "feet"),
  46089. name: "Claws",
  46090. image: {
  46091. source: "./media/characters/sarel/claws.svg"
  46092. }
  46093. },
  46094. clawsAlt: {
  46095. height: math.unit(1.8, "feet"),
  46096. name: "Claws-alt",
  46097. image: {
  46098. source: "./media/characters/sarel/claws-alt.svg"
  46099. }
  46100. },
  46101. },
  46102. [
  46103. {
  46104. name: "Normal",
  46105. height: math.unit(5.67, "feet"),
  46106. default: true
  46107. },
  46108. ]
  46109. ))
  46110. characterMakers.push(() => makeCharacter(
  46111. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46112. {
  46113. front: {
  46114. height: math.unit(5500, "feet"),
  46115. name: "Front",
  46116. image: {
  46117. source: "./media/characters/alyonia/front.svg",
  46118. extra: 1200/1135,
  46119. bottom: 29/1229
  46120. }
  46121. },
  46122. back: {
  46123. height: math.unit(5500, "feet"),
  46124. name: "Back",
  46125. image: {
  46126. source: "./media/characters/alyonia/back.svg",
  46127. extra: 1205/1138,
  46128. bottom: 10/1215
  46129. }
  46130. },
  46131. },
  46132. [
  46133. {
  46134. name: "Small",
  46135. height: math.unit(10, "feet")
  46136. },
  46137. {
  46138. name: "Macro",
  46139. height: math.unit(500, "feet")
  46140. },
  46141. {
  46142. name: "Mega Macro",
  46143. height: math.unit(5500, "feet"),
  46144. default: true
  46145. },
  46146. {
  46147. name: "Mega Macro+",
  46148. height: math.unit(500000, "feet")
  46149. },
  46150. {
  46151. name: "Giga Macro",
  46152. height: math.unit(3000, "miles")
  46153. },
  46154. {
  46155. name: "Tera Macro",
  46156. height: math.unit(2.8e6, "miles")
  46157. },
  46158. {
  46159. name: "Galactic",
  46160. height: math.unit(120000, "lightyears")
  46161. },
  46162. ]
  46163. ))
  46164. characterMakers.push(() => makeCharacter(
  46165. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46166. {
  46167. werewolf: {
  46168. height: math.unit(8, "feet"),
  46169. weight: math.unit(425, "lb"),
  46170. name: "Werewolf",
  46171. image: {
  46172. source: "./media/characters/autumn/werewolf.svg",
  46173. extra: 2154/2031,
  46174. bottom: 160/2314
  46175. }
  46176. },
  46177. human: {
  46178. height: math.unit(5 + 8/12, "feet"),
  46179. weight: math.unit(150, "lb"),
  46180. name: "Human",
  46181. image: {
  46182. source: "./media/characters/autumn/human.svg",
  46183. extra: 1200/1149,
  46184. bottom: 30/1230
  46185. }
  46186. },
  46187. },
  46188. [
  46189. {
  46190. name: "Normal",
  46191. height: math.unit(8, "feet"),
  46192. default: true
  46193. },
  46194. ]
  46195. ))
  46196. characterMakers.push(() => makeCharacter(
  46197. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46198. {
  46199. front: {
  46200. height: math.unit(8 + 5/12, "feet"),
  46201. weight: math.unit(825, "lb"),
  46202. name: "Front",
  46203. image: {
  46204. source: "./media/characters/cobalt-charizard/front.svg",
  46205. extra: 1268/1155,
  46206. bottom: 122/1390
  46207. }
  46208. },
  46209. side: {
  46210. height: math.unit(8 + 5/12, "feet"),
  46211. weight: math.unit(825, "lb"),
  46212. name: "Side",
  46213. image: {
  46214. source: "./media/characters/cobalt-charizard/side.svg",
  46215. extra: 1348/1257,
  46216. bottom: 58/1406
  46217. }
  46218. },
  46219. gMax: {
  46220. height: math.unit(134 + 11/12, "feet"),
  46221. name: "G-Max",
  46222. image: {
  46223. source: "./media/characters/cobalt-charizard/g-max.svg",
  46224. extra: 1835/1541,
  46225. bottom: 151/1986
  46226. }
  46227. },
  46228. },
  46229. [
  46230. {
  46231. name: "Normal",
  46232. height: math.unit(8 + 5/12, "feet"),
  46233. default: true
  46234. },
  46235. ]
  46236. ))
  46237. characterMakers.push(() => makeCharacter(
  46238. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46239. {
  46240. front: {
  46241. height: math.unit(6 + 3/12, "feet"),
  46242. weight: math.unit(210, "lb"),
  46243. name: "Front",
  46244. image: {
  46245. source: "./media/characters/stella/front.svg",
  46246. extra: 3549/3335,
  46247. bottom: 51/3600
  46248. }
  46249. },
  46250. },
  46251. [
  46252. {
  46253. name: "Normal",
  46254. height: math.unit(6 + 3/12, "feet"),
  46255. default: true
  46256. },
  46257. ]
  46258. ))
  46259. characterMakers.push(() => makeCharacter(
  46260. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46261. {
  46262. front: {
  46263. height: math.unit(5, "feet"),
  46264. weight: math.unit(90, "lb"),
  46265. name: "Front",
  46266. image: {
  46267. source: "./media/characters/riley-bishop/front.svg",
  46268. extra: 1450/1428,
  46269. bottom: 152/1602
  46270. }
  46271. },
  46272. },
  46273. [
  46274. {
  46275. name: "Normal",
  46276. height: math.unit(5, "feet"),
  46277. default: true
  46278. },
  46279. ]
  46280. ))
  46281. characterMakers.push(() => makeCharacter(
  46282. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46283. {
  46284. side: {
  46285. height: math.unit(8 + 2/12, "feet"),
  46286. weight: math.unit(500, "kg"),
  46287. name: "Side",
  46288. image: {
  46289. source: "./media/characters/theo-arcanine/side.svg",
  46290. extra: 1342/1074,
  46291. bottom: 111/1453
  46292. }
  46293. },
  46294. },
  46295. [
  46296. {
  46297. name: "Normal",
  46298. height: math.unit(8 + 2/12, "feet"),
  46299. default: true
  46300. },
  46301. ]
  46302. ))
  46303. characterMakers.push(() => makeCharacter(
  46304. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46305. {
  46306. front: {
  46307. height: math.unit(4, "feet"),
  46308. name: "Front",
  46309. image: {
  46310. source: "./media/characters/kali/front.svg",
  46311. extra: 1074/867,
  46312. bottom: 34/1108
  46313. }
  46314. },
  46315. back: {
  46316. height: math.unit(4, "feet"),
  46317. name: "Back",
  46318. image: {
  46319. source: "./media/characters/kali/back.svg",
  46320. extra: 1068/863,
  46321. bottom: 26/1094
  46322. }
  46323. },
  46324. frontAlt: {
  46325. height: math.unit(4, "feet"),
  46326. name: "Front (Alt)",
  46327. image: {
  46328. source: "./media/characters/kali/front-alt.svg",
  46329. extra: 1921/1357,
  46330. bottom: 70/1991
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "Normal",
  46337. height: math.unit(4, "feet"),
  46338. default: true
  46339. },
  46340. {
  46341. name: "Big'vali",
  46342. height: math.unit(11, "feet")
  46343. },
  46344. {
  46345. name: "Macro",
  46346. height: math.unit(32, "meters")
  46347. },
  46348. {
  46349. name: "Macro+",
  46350. height: math.unit(150, "meters")
  46351. },
  46352. {
  46353. name: "Megamacro",
  46354. height: math.unit(7500, "meters")
  46355. },
  46356. {
  46357. name: "Megamacro+",
  46358. height: math.unit(80, "kilometers")
  46359. },
  46360. ]
  46361. ))
  46362. characterMakers.push(() => makeCharacter(
  46363. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46364. {
  46365. side: {
  46366. height: math.unit(5 + 11/12, "feet"),
  46367. weight: math.unit(236, "lb"),
  46368. name: "Side",
  46369. image: {
  46370. source: "./media/characters/gapp/side.svg",
  46371. extra: 775/340,
  46372. bottom: 58/833
  46373. }
  46374. },
  46375. mouth: {
  46376. height: math.unit(2.98, "feet"),
  46377. name: "Mouth",
  46378. image: {
  46379. source: "./media/characters/gapp/mouth.svg"
  46380. }
  46381. },
  46382. },
  46383. [
  46384. {
  46385. name: "Normal",
  46386. height: math.unit(5 + 1/12, "feet"),
  46387. default: true
  46388. },
  46389. ]
  46390. ))
  46391. characterMakers.push(() => makeCharacter(
  46392. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46393. {
  46394. front: {
  46395. height: math.unit(6, "feet"),
  46396. name: "Front",
  46397. image: {
  46398. source: "./media/characters/persephone/front.svg",
  46399. extra: 1895/1717,
  46400. bottom: 96/1991
  46401. }
  46402. },
  46403. back: {
  46404. height: math.unit(6, "feet"),
  46405. name: "Back",
  46406. image: {
  46407. source: "./media/characters/persephone/back.svg",
  46408. extra: 1868/1679,
  46409. bottom: 26/1894
  46410. }
  46411. },
  46412. casual: {
  46413. height: math.unit(6, "feet"),
  46414. name: "Casual",
  46415. image: {
  46416. source: "./media/characters/persephone/casual.svg",
  46417. extra: 1713/1541,
  46418. bottom: 76/1789
  46419. }
  46420. },
  46421. gaming: {
  46422. height: math.unit(3.55, "feet"),
  46423. name: "Gaming",
  46424. image: {
  46425. source: "./media/characters/persephone/gaming.svg",
  46426. extra: 1242/1038,
  46427. bottom: 66/1308
  46428. }
  46429. },
  46430. head: {
  46431. height: math.unit(2.15, "feet"),
  46432. name: "😐",
  46433. image: {
  46434. source: "./media/characters/persephone/head.svg"
  46435. }
  46436. },
  46437. talking: {
  46438. height: math.unit(2.5, "feet"),
  46439. name: "💬",
  46440. image: {
  46441. source: "./media/characters/persephone/talking.svg"
  46442. }
  46443. },
  46444. hmm: {
  46445. height: math.unit(2.28, "feet"),
  46446. name: "🤨",
  46447. image: {
  46448. source: "./media/characters/persephone/hmm.svg"
  46449. }
  46450. },
  46451. },
  46452. [
  46453. {
  46454. name: "Human Size",
  46455. height: math.unit(6, "feet")
  46456. },
  46457. {
  46458. name: "Big Steppy",
  46459. height: math.unit(600, "meters"),
  46460. default: true
  46461. },
  46462. {
  46463. name: "Galaxy Brain",
  46464. height: math.unit(1, "zettameter")
  46465. },
  46466. ]
  46467. ))
  46468. characterMakers.push(() => makeCharacter(
  46469. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46470. {
  46471. front: {
  46472. height: math.unit(1.85, "meters"),
  46473. name: "Front",
  46474. image: {
  46475. source: "./media/characters/riley-foxthing/front.svg",
  46476. extra: 1495/1354,
  46477. bottom: 122/1617
  46478. }
  46479. },
  46480. frontAlt: {
  46481. height: math.unit(1.85, "meters"),
  46482. name: "Front (Alt)",
  46483. image: {
  46484. source: "./media/characters/riley-foxthing/front-alt.svg",
  46485. extra: 1572/1389,
  46486. bottom: 116/1688
  46487. }
  46488. },
  46489. },
  46490. [
  46491. {
  46492. name: "Normal Sized",
  46493. height: math.unit(1.85, "meters"),
  46494. default: true
  46495. },
  46496. {
  46497. name: "Quite Sizable",
  46498. height: math.unit(5, "meters")
  46499. },
  46500. {
  46501. name: "Rather Large",
  46502. height: math.unit(20, "meters")
  46503. },
  46504. {
  46505. name: "Macro",
  46506. height: math.unit(450, "meters")
  46507. },
  46508. {
  46509. name: "Giga",
  46510. height: math.unit(5, "km")
  46511. },
  46512. ]
  46513. ))
  46514. characterMakers.push(() => makeCharacter(
  46515. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46516. {
  46517. front: {
  46518. height: math.unit(6, "feet"),
  46519. weight: math.unit(200, "lb"),
  46520. name: "Front",
  46521. image: {
  46522. source: "./media/characters/blizzard/front.svg",
  46523. extra: 1136/990,
  46524. bottom: 136/1272
  46525. }
  46526. },
  46527. back: {
  46528. height: math.unit(6, "feet"),
  46529. weight: math.unit(200, "lb"),
  46530. name: "Back",
  46531. image: {
  46532. source: "./media/characters/blizzard/back.svg",
  46533. extra: 1175/1034,
  46534. bottom: 97/1272
  46535. }
  46536. },
  46537. sitting: {
  46538. height: math.unit(3.725, "feet"),
  46539. weight: math.unit(200, "lb"),
  46540. name: "Sitting",
  46541. image: {
  46542. source: "./media/characters/blizzard/sitting.svg",
  46543. extra: 581/485,
  46544. bottom: 90/671
  46545. }
  46546. },
  46547. frontWizard: {
  46548. height: math.unit(7.9, "feet"),
  46549. weight: math.unit(200, "lb"),
  46550. name: "Front (Wizard)",
  46551. image: {
  46552. source: "./media/characters/blizzard/front-wizard.svg"
  46553. }
  46554. },
  46555. backWizard: {
  46556. height: math.unit(7.9, "feet"),
  46557. weight: math.unit(200, "lb"),
  46558. name: "Back (Wizard)",
  46559. image: {
  46560. source: "./media/characters/blizzard/back-wizard.svg"
  46561. }
  46562. },
  46563. frontNsfw: {
  46564. height: math.unit(6, "feet"),
  46565. weight: math.unit(200, "lb"),
  46566. name: "Front (NSFW)",
  46567. image: {
  46568. source: "./media/characters/blizzard/front-nsfw.svg",
  46569. extra: 1136/990,
  46570. bottom: 136/1272
  46571. }
  46572. },
  46573. backNsfw: {
  46574. height: math.unit(6, "feet"),
  46575. weight: math.unit(200, "lb"),
  46576. name: "Back (NSFW)",
  46577. image: {
  46578. source: "./media/characters/blizzard/back-nsfw.svg",
  46579. extra: 1175/1034,
  46580. bottom: 97/1272
  46581. }
  46582. },
  46583. sittingNsfw: {
  46584. height: math.unit(3.725, "feet"),
  46585. weight: math.unit(200, "lb"),
  46586. name: "Sitting (NSFW)",
  46587. image: {
  46588. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46589. extra: 581/485,
  46590. bottom: 90/671
  46591. }
  46592. },
  46593. wizardFrontNsfw: {
  46594. height: math.unit(7.9, "feet"),
  46595. weight: math.unit(200, "lb"),
  46596. name: "Wizard (Front, NSFW)",
  46597. image: {
  46598. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46599. }
  46600. },
  46601. },
  46602. [
  46603. {
  46604. name: "Normal",
  46605. height: math.unit(6, "feet"),
  46606. default: true
  46607. },
  46608. ]
  46609. ))
  46610. characterMakers.push(() => makeCharacter(
  46611. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46612. {
  46613. front: {
  46614. height: math.unit(5 + 2/12, "feet"),
  46615. name: "Front",
  46616. image: {
  46617. source: "./media/characters/lumi/front.svg",
  46618. extra: 1328/1268,
  46619. bottom: 103/1431
  46620. }
  46621. },
  46622. back: {
  46623. height: math.unit(5 + 2/12, "feet"),
  46624. name: "Back",
  46625. image: {
  46626. source: "./media/characters/lumi/back.svg",
  46627. extra: 1381/1327,
  46628. bottom: 43/1424
  46629. }
  46630. },
  46631. },
  46632. [
  46633. {
  46634. name: "Normal",
  46635. height: math.unit(5 + 2/12, "feet"),
  46636. default: true
  46637. },
  46638. ]
  46639. ))
  46640. characterMakers.push(() => makeCharacter(
  46641. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46642. {
  46643. front: {
  46644. height: math.unit(5 + 9/12, "feet"),
  46645. name: "Front",
  46646. image: {
  46647. source: "./media/characters/aliya-cotton/front.svg",
  46648. extra: 577/564,
  46649. bottom: 29/606
  46650. }
  46651. },
  46652. },
  46653. [
  46654. {
  46655. name: "Normal",
  46656. height: math.unit(5 + 9/12, "feet"),
  46657. default: true
  46658. },
  46659. ]
  46660. ))
  46661. characterMakers.push(() => makeCharacter(
  46662. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46663. {
  46664. front: {
  46665. height: math.unit(2.7, "meters"),
  46666. weight: math.unit(25000, "lb"),
  46667. name: "Front",
  46668. image: {
  46669. source: "./media/characters/noah-luxray/front.svg",
  46670. extra: 1644/825,
  46671. bottom: 339/1983
  46672. }
  46673. },
  46674. side: {
  46675. height: math.unit(2.97, "meters"),
  46676. weight: math.unit(25000, "lb"),
  46677. name: "Side",
  46678. image: {
  46679. source: "./media/characters/noah-luxray/side.svg",
  46680. extra: 1319/650,
  46681. bottom: 163/1482
  46682. }
  46683. },
  46684. dick: {
  46685. height: math.unit(7.4, "feet"),
  46686. weight: math.unit(2500, "lb"),
  46687. name: "Dick",
  46688. image: {
  46689. source: "./media/characters/noah-luxray/dick.svg"
  46690. }
  46691. },
  46692. dickAlt: {
  46693. height: math.unit(10.83, "feet"),
  46694. weight: math.unit(2500, "lb"),
  46695. name: "Dick-alt",
  46696. image: {
  46697. source: "./media/characters/noah-luxray/dick-alt.svg"
  46698. }
  46699. },
  46700. },
  46701. [
  46702. {
  46703. name: "BIG",
  46704. height: math.unit(2.7, "meters"),
  46705. default: true
  46706. },
  46707. ]
  46708. ))
  46709. characterMakers.push(() => makeCharacter(
  46710. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46711. {
  46712. standing: {
  46713. height: math.unit(183, "cm"),
  46714. weight: math.unit(68, "kg"),
  46715. name: "Standing",
  46716. image: {
  46717. source: "./media/characters/arion/standing.svg",
  46718. extra: 1869/1807,
  46719. bottom: 93/1962
  46720. }
  46721. },
  46722. reclining: {
  46723. height: math.unit(70.5, "cm"),
  46724. weight: math.unit(68, "lb"),
  46725. name: "Reclining",
  46726. image: {
  46727. source: "./media/characters/arion/reclining.svg",
  46728. extra: 937/870,
  46729. bottom: 63/1000
  46730. }
  46731. },
  46732. },
  46733. [
  46734. {
  46735. name: "Colossus Size, Low",
  46736. height: math.unit(33, "meters"),
  46737. default: true
  46738. },
  46739. {
  46740. name: "Colossus Size, Mid",
  46741. height: math.unit(52, "meters")
  46742. },
  46743. {
  46744. name: "Colossus Size, High",
  46745. height: math.unit(60, "meters")
  46746. },
  46747. {
  46748. name: "Titan Size, Low",
  46749. height: math.unit(91, "meters"),
  46750. },
  46751. {
  46752. name: "Titan Size, Mid",
  46753. height: math.unit(122, "meters")
  46754. },
  46755. {
  46756. name: "Titan Size, High",
  46757. height: math.unit(162, "meters")
  46758. },
  46759. ]
  46760. ))
  46761. characterMakers.push(() => makeCharacter(
  46762. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46763. {
  46764. front: {
  46765. height: math.unit(53, "meters"),
  46766. name: "Front",
  46767. image: {
  46768. source: "./media/characters/stellar-marbey/front.svg",
  46769. extra: 1913/1805,
  46770. bottom: 92/2005
  46771. }
  46772. },
  46773. back: {
  46774. height: math.unit(53, "meters"),
  46775. name: "Back",
  46776. image: {
  46777. source: "./media/characters/stellar-marbey/back.svg",
  46778. extra: 1960/1851,
  46779. bottom: 28/1988
  46780. }
  46781. },
  46782. mouth: {
  46783. height: math.unit(3.5, "meters"),
  46784. name: "Mouth",
  46785. image: {
  46786. source: "./media/characters/stellar-marbey/mouth.svg"
  46787. }
  46788. },
  46789. },
  46790. [
  46791. {
  46792. name: "Macro",
  46793. height: math.unit(53, "meters"),
  46794. default: true
  46795. },
  46796. ]
  46797. ))
  46798. characterMakers.push(() => makeCharacter(
  46799. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46800. {
  46801. front: {
  46802. height: math.unit(8 + 1/12, "feet"),
  46803. weight: math.unit(233, "lb"),
  46804. name: "Front",
  46805. image: {
  46806. source: "./media/characters/matsu/front.svg",
  46807. extra: 832/772,
  46808. bottom: 40/872
  46809. }
  46810. },
  46811. back: {
  46812. height: math.unit(8 + 1/12, "feet"),
  46813. weight: math.unit(233, "lb"),
  46814. name: "Back",
  46815. image: {
  46816. source: "./media/characters/matsu/back.svg",
  46817. extra: 839/780,
  46818. bottom: 47/886
  46819. }
  46820. },
  46821. },
  46822. [
  46823. {
  46824. name: "Normal",
  46825. height: math.unit(8 + 1/12, "feet"),
  46826. default: true
  46827. },
  46828. ]
  46829. ))
  46830. characterMakers.push(() => makeCharacter(
  46831. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46832. {
  46833. front: {
  46834. height: math.unit(4, "feet"),
  46835. weight: math.unit(148, "lb"),
  46836. name: "Front",
  46837. image: {
  46838. source: "./media/characters/thiz/front.svg",
  46839. extra: 1913/1748,
  46840. bottom: 62/1975
  46841. }
  46842. },
  46843. },
  46844. [
  46845. {
  46846. name: "Normal",
  46847. height: math.unit(4, "feet"),
  46848. default: true
  46849. },
  46850. ]
  46851. ))
  46852. characterMakers.push(() => makeCharacter(
  46853. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46854. {
  46855. front: {
  46856. height: math.unit(7 + 6/12, "feet"),
  46857. weight: math.unit(267, "lb"),
  46858. name: "Front",
  46859. image: {
  46860. source: "./media/characters/marcel/front.svg",
  46861. extra: 1221/1096,
  46862. bottom: 76/1297
  46863. }
  46864. },
  46865. },
  46866. [
  46867. {
  46868. name: "Normal",
  46869. height: math.unit(7 + 6/12, "feet"),
  46870. default: true
  46871. },
  46872. ]
  46873. ))
  46874. characterMakers.push(() => makeCharacter(
  46875. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46876. {
  46877. side: {
  46878. height: math.unit(42, "meters"),
  46879. name: "Side",
  46880. image: {
  46881. source: "./media/characters/flake/side.svg",
  46882. extra: 1525/1306,
  46883. bottom: 209/1734
  46884. }
  46885. },
  46886. },
  46887. [
  46888. {
  46889. name: "Normal",
  46890. height: math.unit(42, "meters"),
  46891. default: true
  46892. },
  46893. ]
  46894. ))
  46895. characterMakers.push(() => makeCharacter(
  46896. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46897. {
  46898. dressed: {
  46899. height: math.unit(6 + 4/12, "feet"),
  46900. weight: math.unit(520, "lb"),
  46901. name: "Dressed",
  46902. image: {
  46903. source: "./media/characters/someonne/dressed.svg",
  46904. extra: 1020/1010,
  46905. bottom: 178/1198
  46906. }
  46907. },
  46908. undressed: {
  46909. height: math.unit(6 + 4/12, "feet"),
  46910. weight: math.unit(520, "lb"),
  46911. name: "Undressed",
  46912. image: {
  46913. source: "./media/characters/someonne/undressed.svg",
  46914. extra: 1019/1014,
  46915. bottom: 169/1188
  46916. }
  46917. },
  46918. },
  46919. [
  46920. {
  46921. name: "Normal",
  46922. height: math.unit(6 + 4/12, "feet"),
  46923. default: true
  46924. },
  46925. ]
  46926. ))
  46927. characterMakers.push(() => makeCharacter(
  46928. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46929. {
  46930. front: {
  46931. height: math.unit(3, "feet"),
  46932. weight: math.unit(30, "lb"),
  46933. name: "Front",
  46934. image: {
  46935. source: "./media/characters/till/front.svg",
  46936. extra: 892/823,
  46937. bottom: 55/947
  46938. }
  46939. },
  46940. },
  46941. [
  46942. {
  46943. name: "Normal",
  46944. height: math.unit(3, "feet"),
  46945. default: true
  46946. },
  46947. ]
  46948. ))
  46949. characterMakers.push(() => makeCharacter(
  46950. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46951. {
  46952. front: {
  46953. height: math.unit(9 + 8/12, "feet"),
  46954. weight: math.unit(800, "lb"),
  46955. name: "Front",
  46956. image: {
  46957. source: "./media/characters/sydney-heki/front.svg",
  46958. extra: 1360/1300,
  46959. bottom: 22/1382
  46960. }
  46961. },
  46962. back: {
  46963. height: math.unit(9 + 8/12, "feet"),
  46964. weight: math.unit(800, "lb"),
  46965. name: "Back",
  46966. image: {
  46967. source: "./media/characters/sydney-heki/back.svg",
  46968. extra: 1356/1293,
  46969. bottom: 12/1368
  46970. }
  46971. },
  46972. frontDressed: {
  46973. height: math.unit(9 + 8/12, "feet"),
  46974. weight: math.unit(800, "lb"),
  46975. name: "Front-dressed",
  46976. image: {
  46977. source: "./media/characters/sydney-heki/front-dressed.svg",
  46978. extra: 1360/1300,
  46979. bottom: 22/1382
  46980. }
  46981. },
  46982. },
  46983. [
  46984. {
  46985. name: "Normal",
  46986. height: math.unit(9 + 8/12, "feet"),
  46987. default: true
  46988. },
  46989. {
  46990. name: "Macro",
  46991. height: math.unit(500, "feet")
  46992. },
  46993. {
  46994. name: "Megamacro",
  46995. height: math.unit(3.6, "miles")
  46996. },
  46997. ]
  46998. ))
  46999. characterMakers.push(() => makeCharacter(
  47000. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47001. {
  47002. front: {
  47003. height: math.unit(200, "cm"),
  47004. weight: math.unit(250, "lb"),
  47005. name: "Front",
  47006. image: {
  47007. source: "./media/characters/fowler-karlsson/front.svg",
  47008. extra: 897/845,
  47009. bottom: 123/1020
  47010. }
  47011. },
  47012. back: {
  47013. height: math.unit(200, "cm"),
  47014. weight: math.unit(250, "lb"),
  47015. name: "Back",
  47016. image: {
  47017. source: "./media/characters/fowler-karlsson/back.svg",
  47018. extra: 999/944,
  47019. bottom: 26/1025
  47020. }
  47021. },
  47022. dick: {
  47023. height: math.unit(1.92, "feet"),
  47024. weight: math.unit(150, "lb"),
  47025. name: "Dick",
  47026. image: {
  47027. source: "./media/characters/fowler-karlsson/dick.svg"
  47028. }
  47029. },
  47030. },
  47031. [
  47032. {
  47033. name: "Normal",
  47034. height: math.unit(200, "cm"),
  47035. default: true
  47036. },
  47037. {
  47038. name: "Smaller Macro",
  47039. height: math.unit(90, "m")
  47040. },
  47041. {
  47042. name: "Macro",
  47043. height: math.unit(150, "m")
  47044. },
  47045. {
  47046. name: "Bigger Macro",
  47047. height: math.unit(300, "m")
  47048. },
  47049. ]
  47050. ))
  47051. characterMakers.push(() => makeCharacter(
  47052. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47053. {
  47054. side: {
  47055. height: math.unit(8 + 2/12, "feet"),
  47056. weight: math.unit(1, "tonne"),
  47057. name: "Side",
  47058. image: {
  47059. source: "./media/characters/rylide/side.svg",
  47060. extra: 1318/1034,
  47061. bottom: 106/1424
  47062. }
  47063. },
  47064. sitting: {
  47065. height: math.unit(303, "cm"),
  47066. weight: math.unit(1, "tonne"),
  47067. name: "Sitting",
  47068. image: {
  47069. source: "./media/characters/rylide/sitting.svg",
  47070. extra: 1303/1103,
  47071. bottom: 36/1339
  47072. }
  47073. },
  47074. },
  47075. [
  47076. {
  47077. name: "Normal",
  47078. height: math.unit(8 + 2/12, "feet"),
  47079. default: true
  47080. },
  47081. ]
  47082. ))
  47083. characterMakers.push(() => makeCharacter(
  47084. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47085. {
  47086. front: {
  47087. height: math.unit(5 + 10/12, "feet"),
  47088. weight: math.unit(160, "lb"),
  47089. name: "Front",
  47090. image: {
  47091. source: "./media/characters/pudask/front.svg",
  47092. extra: 1616/1590,
  47093. bottom: 161/1777
  47094. }
  47095. },
  47096. },
  47097. [
  47098. {
  47099. name: "Ferret Height",
  47100. height: math.unit(2 + 5/12, "feet")
  47101. },
  47102. {
  47103. name: "Canon Height",
  47104. height: math.unit(5 + 10/12, "feet"),
  47105. default: true
  47106. },
  47107. ]
  47108. ))
  47109. characterMakers.push(() => makeCharacter(
  47110. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47111. {
  47112. front: {
  47113. height: math.unit(3 + 6/12, "feet"),
  47114. weight: math.unit(60, "lb"),
  47115. name: "Front",
  47116. image: {
  47117. source: "./media/characters/ramita/front.svg",
  47118. extra: 1402/1232,
  47119. bottom: 62/1464
  47120. }
  47121. },
  47122. dressed: {
  47123. height: math.unit(3 + 6/12, "feet"),
  47124. weight: math.unit(60, "lb"),
  47125. name: "Dressed",
  47126. image: {
  47127. source: "./media/characters/ramita/dressed.svg",
  47128. extra: 1534/1249,
  47129. bottom: 50/1584
  47130. }
  47131. },
  47132. },
  47133. [
  47134. {
  47135. name: "Normal",
  47136. height: math.unit(3 + 6/12, "feet"),
  47137. default: true
  47138. },
  47139. ]
  47140. ))
  47141. characterMakers.push(() => makeCharacter(
  47142. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47143. {
  47144. front: {
  47145. height: math.unit(8, "feet"),
  47146. name: "Front",
  47147. image: {
  47148. source: "./media/characters/ark/front.svg",
  47149. extra: 772/693,
  47150. bottom: 45/817
  47151. }
  47152. },
  47153. },
  47154. [
  47155. {
  47156. name: "Normal",
  47157. height: math.unit(8, "feet"),
  47158. default: true
  47159. },
  47160. ]
  47161. ))
  47162. characterMakers.push(() => makeCharacter(
  47163. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47164. {
  47165. front: {
  47166. height: math.unit(6, "feet"),
  47167. weight: math.unit(250, "lb"),
  47168. volume: math.unit(5/8, "gallons"),
  47169. name: "Front",
  47170. image: {
  47171. source: "./media/characters/ludwig-horn/front.svg",
  47172. extra: 1782/1635,
  47173. bottom: 96/1878
  47174. }
  47175. },
  47176. back: {
  47177. height: math.unit(6, "feet"),
  47178. weight: math.unit(250, "lb"),
  47179. volume: math.unit(5/8, "gallons"),
  47180. name: "Back",
  47181. image: {
  47182. source: "./media/characters/ludwig-horn/back.svg",
  47183. extra: 1874/1729,
  47184. bottom: 27/1901
  47185. }
  47186. },
  47187. dick: {
  47188. height: math.unit(1.05, "feet"),
  47189. weight: math.unit(15, "lb"),
  47190. volume: math.unit(5/8, "gallons"),
  47191. name: "Dick",
  47192. image: {
  47193. source: "./media/characters/ludwig-horn/dick.svg"
  47194. }
  47195. },
  47196. },
  47197. [
  47198. {
  47199. name: "Small",
  47200. height: math.unit(6, "feet")
  47201. },
  47202. {
  47203. name: "Typical",
  47204. height: math.unit(12, "feet"),
  47205. default: true
  47206. },
  47207. {
  47208. name: "Building",
  47209. height: math.unit(80, "feet")
  47210. },
  47211. {
  47212. name: "Town",
  47213. height: math.unit(800, "feet")
  47214. },
  47215. {
  47216. name: "Kingdom",
  47217. height: math.unit(80000, "feet")
  47218. },
  47219. {
  47220. name: "Planet",
  47221. height: math.unit(8000000, "feet")
  47222. },
  47223. {
  47224. name: "Universe",
  47225. height: math.unit(8000000000, "feet")
  47226. },
  47227. {
  47228. name: "Transcended",
  47229. height: math.unit(8e27, "feet")
  47230. },
  47231. ]
  47232. ))
  47233. characterMakers.push(() => makeCharacter(
  47234. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47235. {
  47236. front: {
  47237. height: math.unit(5, "feet"),
  47238. weight: math.unit(50, "kg"),
  47239. name: "Front",
  47240. image: {
  47241. source: "./media/characters/biot-avery/front.svg",
  47242. extra: 1295/1232,
  47243. bottom: 86/1381
  47244. }
  47245. },
  47246. },
  47247. [
  47248. {
  47249. name: "Normal",
  47250. height: math.unit(5, "feet"),
  47251. default: true
  47252. },
  47253. ]
  47254. ))
  47255. characterMakers.push(() => makeCharacter(
  47256. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47257. {
  47258. front: {
  47259. height: math.unit(6, "feet"),
  47260. name: "Front",
  47261. image: {
  47262. source: "./media/characters/kitsune-kiro/front.svg",
  47263. extra: 1270/1158,
  47264. bottom: 42/1312
  47265. }
  47266. },
  47267. frontAlt: {
  47268. height: math.unit(6, "feet"),
  47269. name: "Front-alt",
  47270. image: {
  47271. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47272. extra: 1130/1081,
  47273. bottom: 36/1166
  47274. }
  47275. },
  47276. },
  47277. [
  47278. {
  47279. name: "Smol",
  47280. height: math.unit(3, "feet")
  47281. },
  47282. {
  47283. name: "Normal",
  47284. height: math.unit(6, "feet"),
  47285. default: true
  47286. },
  47287. ]
  47288. ))
  47289. characterMakers.push(() => makeCharacter(
  47290. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47291. {
  47292. front: {
  47293. height: math.unit(6, "feet"),
  47294. weight: math.unit(125, "lb"),
  47295. name: "Front",
  47296. image: {
  47297. source: "./media/characters/jack-thatcher/front.svg",
  47298. extra: 1474/1370,
  47299. bottom: 26/1500
  47300. }
  47301. },
  47302. back: {
  47303. height: math.unit(6, "feet"),
  47304. weight: math.unit(125, "lb"),
  47305. name: "Back",
  47306. image: {
  47307. source: "./media/characters/jack-thatcher/back.svg",
  47308. extra: 1489/1384,
  47309. bottom: 18/1507
  47310. }
  47311. },
  47312. },
  47313. [
  47314. {
  47315. name: "Normal",
  47316. height: math.unit(6, "feet"),
  47317. default: true
  47318. },
  47319. {
  47320. name: "Macro",
  47321. height: math.unit(75, "feet")
  47322. },
  47323. {
  47324. name: "Macro-er",
  47325. height: math.unit(250, "feet")
  47326. },
  47327. ]
  47328. ))
  47329. characterMakers.push(() => makeCharacter(
  47330. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47331. {
  47332. front: {
  47333. height: math.unit(7, "feet"),
  47334. weight: math.unit(110, "kg"),
  47335. name: "Front",
  47336. image: {
  47337. source: "./media/characters/max-hyper/front.svg",
  47338. extra: 1969/1881,
  47339. bottom: 49/2018
  47340. }
  47341. },
  47342. },
  47343. [
  47344. {
  47345. name: "Normal",
  47346. height: math.unit(7, "feet"),
  47347. default: true
  47348. },
  47349. ]
  47350. ))
  47351. characterMakers.push(() => makeCharacter(
  47352. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47353. {
  47354. front: {
  47355. height: math.unit(5 + 5/12, "feet"),
  47356. weight: math.unit(160, "lb"),
  47357. name: "Front",
  47358. image: {
  47359. source: "./media/characters/spook/front.svg",
  47360. extra: 794/791,
  47361. bottom: 54/848
  47362. }
  47363. },
  47364. back: {
  47365. height: math.unit(5 + 5/12, "feet"),
  47366. weight: math.unit(160, "lb"),
  47367. name: "Back",
  47368. image: {
  47369. source: "./media/characters/spook/back.svg",
  47370. extra: 812/798,
  47371. bottom: 32/844
  47372. }
  47373. },
  47374. },
  47375. [
  47376. {
  47377. name: "Normal",
  47378. height: math.unit(5 + 5/12, "feet"),
  47379. default: true
  47380. },
  47381. ]
  47382. ))
  47383. characterMakers.push(() => makeCharacter(
  47384. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47385. {
  47386. front: {
  47387. height: math.unit(18, "feet"),
  47388. name: "Front",
  47389. image: {
  47390. source: "./media/characters/xeaduulix/front.svg",
  47391. extra: 1380/1166,
  47392. bottom: 110/1490
  47393. }
  47394. },
  47395. back: {
  47396. height: math.unit(18, "feet"),
  47397. name: "Back",
  47398. image: {
  47399. source: "./media/characters/xeaduulix/back.svg",
  47400. extra: 1592/1170,
  47401. bottom: 128/1720
  47402. }
  47403. },
  47404. frontNsfw: {
  47405. height: math.unit(18, "feet"),
  47406. name: "Front (NSFW)",
  47407. image: {
  47408. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47409. extra: 1380/1166,
  47410. bottom: 110/1490
  47411. }
  47412. },
  47413. backNsfw: {
  47414. height: math.unit(18, "feet"),
  47415. name: "Back (NSFW)",
  47416. image: {
  47417. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47418. extra: 1592/1170,
  47419. bottom: 128/1720
  47420. }
  47421. },
  47422. },
  47423. [
  47424. {
  47425. name: "Normal",
  47426. height: math.unit(18, "feet"),
  47427. default: true
  47428. },
  47429. ]
  47430. ))
  47431. characterMakers.push(() => makeCharacter(
  47432. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47433. {
  47434. spreadWings: {
  47435. height: math.unit(20, "feet"),
  47436. name: "Spread Wings",
  47437. image: {
  47438. source: "./media/characters/fledge/spread-wings.svg",
  47439. extra: 693/635,
  47440. bottom: 26/719
  47441. }
  47442. },
  47443. front: {
  47444. height: math.unit(20, "feet"),
  47445. name: "Front",
  47446. image: {
  47447. source: "./media/characters/fledge/front.svg",
  47448. extra: 684/637,
  47449. bottom: 18/702
  47450. }
  47451. },
  47452. frontAlt: {
  47453. height: math.unit(20, "feet"),
  47454. name: "Front (Alt)",
  47455. image: {
  47456. source: "./media/characters/fledge/front-alt.svg",
  47457. extra: 708/664,
  47458. bottom: 13/721
  47459. }
  47460. },
  47461. back: {
  47462. height: math.unit(20, "feet"),
  47463. name: "Back",
  47464. image: {
  47465. source: "./media/characters/fledge/back.svg",
  47466. extra: 718/634,
  47467. bottom: 22/740
  47468. }
  47469. },
  47470. head: {
  47471. height: math.unit(5.55, "feet"),
  47472. name: "Head",
  47473. image: {
  47474. source: "./media/characters/fledge/head.svg"
  47475. }
  47476. },
  47477. headAlt: {
  47478. height: math.unit(5.1, "feet"),
  47479. name: "Head (Alt)",
  47480. image: {
  47481. source: "./media/characters/fledge/head-alt.svg"
  47482. }
  47483. },
  47484. },
  47485. [
  47486. {
  47487. name: "Small",
  47488. height: math.unit(6 + 2/12, "feet")
  47489. },
  47490. {
  47491. name: "Big",
  47492. height: math.unit(20, "feet"),
  47493. default: true
  47494. },
  47495. {
  47496. name: "Giant",
  47497. height: math.unit(100, "feet")
  47498. },
  47499. {
  47500. name: "Macro",
  47501. height: math.unit(200, "feet")
  47502. },
  47503. ]
  47504. ))
  47505. characterMakers.push(() => makeCharacter(
  47506. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47507. {
  47508. front: {
  47509. height: math.unit(1, "meter"),
  47510. name: "Front",
  47511. image: {
  47512. source: "./media/characters/atlas-morenai/front.svg",
  47513. extra: 1275/1043,
  47514. bottom: 19/1294
  47515. }
  47516. },
  47517. back: {
  47518. height: math.unit(1, "meter"),
  47519. name: "Back",
  47520. image: {
  47521. source: "./media/characters/atlas-morenai/back.svg",
  47522. extra: 1141/1001,
  47523. bottom: 25/1166
  47524. }
  47525. },
  47526. },
  47527. [
  47528. {
  47529. name: "Normal",
  47530. height: math.unit(1, "meter"),
  47531. default: true
  47532. },
  47533. {
  47534. name: "Magic-Infused",
  47535. height: math.unit(5, "meters")
  47536. },
  47537. ]
  47538. ))
  47539. characterMakers.push(() => makeCharacter(
  47540. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47541. {
  47542. front: {
  47543. height: math.unit(5, "meters"),
  47544. name: "Front",
  47545. image: {
  47546. source: "./media/characters/cintia/front.svg",
  47547. extra: 1312/1228,
  47548. bottom: 38/1350
  47549. }
  47550. },
  47551. back: {
  47552. height: math.unit(5, "meters"),
  47553. name: "Back",
  47554. image: {
  47555. source: "./media/characters/cintia/back.svg",
  47556. extra: 1260/1166,
  47557. bottom: 98/1358
  47558. }
  47559. },
  47560. frontDick: {
  47561. height: math.unit(5, "meters"),
  47562. name: "Front (Dick)",
  47563. image: {
  47564. source: "./media/characters/cintia/front-dick.svg",
  47565. extra: 1312/1228,
  47566. bottom: 38/1350
  47567. }
  47568. },
  47569. backDick: {
  47570. height: math.unit(5, "meters"),
  47571. name: "Back (Dick)",
  47572. image: {
  47573. source: "./media/characters/cintia/back-dick.svg",
  47574. extra: 1260/1166,
  47575. bottom: 98/1358
  47576. }
  47577. },
  47578. bust: {
  47579. height: math.unit(1.97, "meters"),
  47580. name: "Bust",
  47581. image: {
  47582. source: "./media/characters/cintia/bust.svg",
  47583. extra: 617/565,
  47584. bottom: 0/617
  47585. }
  47586. },
  47587. },
  47588. [
  47589. {
  47590. name: "Normal",
  47591. height: math.unit(5, "meters"),
  47592. default: true
  47593. },
  47594. ]
  47595. ))
  47596. characterMakers.push(() => makeCharacter(
  47597. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47598. {
  47599. side: {
  47600. height: math.unit(100, "feet"),
  47601. name: "Side",
  47602. image: {
  47603. source: "./media/characters/denora/side.svg",
  47604. extra: 875/803,
  47605. bottom: 9/884
  47606. }
  47607. },
  47608. },
  47609. [
  47610. {
  47611. name: "Standard",
  47612. height: math.unit(100, "feet"),
  47613. default: true
  47614. },
  47615. {
  47616. name: "Grand",
  47617. height: math.unit(1000, "feet")
  47618. },
  47619. {
  47620. name: "Conquering",
  47621. height: math.unit(10000, "feet")
  47622. },
  47623. ]
  47624. ))
  47625. characterMakers.push(() => makeCharacter(
  47626. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47627. {
  47628. dressed: {
  47629. height: math.unit(8 + 5/12, "feet"),
  47630. weight: math.unit(700, "lb"),
  47631. name: "Dressed",
  47632. image: {
  47633. source: "./media/characters/kiva/dressed.svg",
  47634. extra: 1102/1055,
  47635. bottom: 60/1162
  47636. }
  47637. },
  47638. nude: {
  47639. height: math.unit(8 + 5/12, "feet"),
  47640. weight: math.unit(700, "lb"),
  47641. name: "Nude",
  47642. image: {
  47643. source: "./media/characters/kiva/nude.svg",
  47644. extra: 1102/1055,
  47645. bottom: 60/1162
  47646. }
  47647. },
  47648. },
  47649. [
  47650. {
  47651. name: "Base Height",
  47652. height: math.unit(8 + 5/12, "feet"),
  47653. default: true
  47654. },
  47655. {
  47656. name: "Macro",
  47657. height: math.unit(100, "feet")
  47658. },
  47659. {
  47660. name: "Max",
  47661. height: math.unit(3280, "feet")
  47662. },
  47663. ]
  47664. ))
  47665. characterMakers.push(() => makeCharacter(
  47666. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47667. {
  47668. front: {
  47669. height: math.unit(6 + 8/12, "feet"),
  47670. weight: math.unit(250, "lb"),
  47671. name: "Front",
  47672. image: {
  47673. source: "./media/characters/ztragon/front.svg",
  47674. extra: 1825/1684,
  47675. bottom: 98/1923
  47676. }
  47677. },
  47678. },
  47679. [
  47680. {
  47681. name: "Normal",
  47682. height: math.unit(6 + 8/12, "feet"),
  47683. default: true
  47684. },
  47685. {
  47686. name: "Macro",
  47687. height: math.unit(80, "feet")
  47688. },
  47689. ]
  47690. ))
  47691. characterMakers.push(() => makeCharacter(
  47692. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47693. {
  47694. front: {
  47695. height: math.unit(10.4, "feet"),
  47696. weight: math.unit(2, "tons"),
  47697. name: "Front",
  47698. image: {
  47699. source: "./media/characters/yesenia/front.svg",
  47700. extra: 1479/1474,
  47701. bottom: 233/1712
  47702. }
  47703. },
  47704. },
  47705. [
  47706. {
  47707. name: "Normal",
  47708. height: math.unit(10.4, "feet"),
  47709. default: true
  47710. },
  47711. ]
  47712. ))
  47713. characterMakers.push(() => makeCharacter(
  47714. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47715. {
  47716. normal: {
  47717. height: math.unit(6 + 1/12, "feet"),
  47718. weight: math.unit(180, "lb"),
  47719. name: "Normal",
  47720. image: {
  47721. source: "./media/characters/leanne-lycheborne/normal.svg",
  47722. extra: 1748/1660,
  47723. bottom: 98/1846
  47724. }
  47725. },
  47726. were: {
  47727. height: math.unit(12, "feet"),
  47728. weight: math.unit(1600, "lb"),
  47729. name: "Were",
  47730. image: {
  47731. source: "./media/characters/leanne-lycheborne/were.svg",
  47732. extra: 1485/1432,
  47733. bottom: 66/1551
  47734. }
  47735. },
  47736. },
  47737. [
  47738. {
  47739. name: "Normal",
  47740. height: math.unit(6 + 1/12, "feet"),
  47741. default: true
  47742. },
  47743. ]
  47744. ))
  47745. characterMakers.push(() => makeCharacter(
  47746. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47747. {
  47748. side: {
  47749. height: math.unit(13, "feet"),
  47750. name: "Side",
  47751. image: {
  47752. source: "./media/characters/kira-tyler/side.svg",
  47753. extra: 693/393,
  47754. bottom: 58/751
  47755. }
  47756. },
  47757. },
  47758. [
  47759. {
  47760. name: "Normal",
  47761. height: math.unit(13, "feet"),
  47762. default: true
  47763. },
  47764. ]
  47765. ))
  47766. characterMakers.push(() => makeCharacter(
  47767. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47768. {
  47769. front: {
  47770. height: math.unit(10.3, "feet"),
  47771. weight: math.unit(150, "lb"),
  47772. name: "Front",
  47773. image: {
  47774. source: "./media/characters/blaze/front.svg",
  47775. extra: 1378/1286,
  47776. bottom: 172/1550
  47777. }
  47778. },
  47779. },
  47780. [
  47781. {
  47782. name: "Normal",
  47783. height: math.unit(10.3, "feet"),
  47784. default: true
  47785. },
  47786. ]
  47787. ))
  47788. characterMakers.push(() => makeCharacter(
  47789. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47790. {
  47791. side: {
  47792. height: math.unit(2, "meters"),
  47793. weight: math.unit(400, "kg"),
  47794. name: "Side",
  47795. image: {
  47796. source: "./media/characters/anu/side.svg",
  47797. extra: 506/394,
  47798. bottom: 18/524
  47799. }
  47800. },
  47801. },
  47802. [
  47803. {
  47804. name: "Humanoid",
  47805. height: math.unit(2, "meters")
  47806. },
  47807. {
  47808. name: "Normal",
  47809. height: math.unit(5, "meters"),
  47810. default: true
  47811. },
  47812. ]
  47813. ))
  47814. characterMakers.push(() => makeCharacter(
  47815. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47816. {
  47817. front: {
  47818. height: math.unit(5 + 5/12, "feet"),
  47819. weight: math.unit(170, "lb"),
  47820. name: "Front",
  47821. image: {
  47822. source: "./media/characters/synx-the-lynx/front.svg",
  47823. extra: 1893/1745,
  47824. bottom: 17/1910
  47825. }
  47826. },
  47827. side: {
  47828. height: math.unit(5 + 5/12, "feet"),
  47829. weight: math.unit(170, "lb"),
  47830. name: "Side",
  47831. image: {
  47832. source: "./media/characters/synx-the-lynx/side.svg",
  47833. extra: 1884/1740,
  47834. bottom: 39/1923
  47835. }
  47836. },
  47837. back: {
  47838. height: math.unit(5 + 5/12, "feet"),
  47839. weight: math.unit(170, "lb"),
  47840. name: "Back",
  47841. image: {
  47842. source: "./media/characters/synx-the-lynx/back.svg",
  47843. extra: 1903/1755,
  47844. bottom: 14/1917
  47845. }
  47846. },
  47847. },
  47848. [
  47849. {
  47850. name: "Normal",
  47851. height: math.unit(5 + 5/12, "feet"),
  47852. default: true
  47853. },
  47854. ]
  47855. ))
  47856. characterMakers.push(() => makeCharacter(
  47857. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47858. {
  47859. back: {
  47860. height: math.unit(15, "feet"),
  47861. name: "Back",
  47862. image: {
  47863. source: "./media/characters/nadezda-fex/back.svg",
  47864. extra: 1695/1481,
  47865. bottom: 25/1720
  47866. }
  47867. },
  47868. },
  47869. [
  47870. {
  47871. name: "Normal",
  47872. height: math.unit(15, "feet"),
  47873. default: true
  47874. },
  47875. {
  47876. name: "Macro",
  47877. height: math.unit(2.5, "miles")
  47878. },
  47879. {
  47880. name: "Goddess",
  47881. height: math.unit(2, "multiverses")
  47882. },
  47883. ]
  47884. ))
  47885. characterMakers.push(() => makeCharacter(
  47886. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47887. {
  47888. front: {
  47889. height: math.unit(216, "cm"),
  47890. name: "Front",
  47891. image: {
  47892. source: "./media/characters/lev/front.svg",
  47893. extra: 1728/1670,
  47894. bottom: 82/1810
  47895. }
  47896. },
  47897. back: {
  47898. height: math.unit(216, "cm"),
  47899. name: "Back",
  47900. image: {
  47901. source: "./media/characters/lev/back.svg",
  47902. extra: 1738/1675,
  47903. bottom: 24/1762
  47904. }
  47905. },
  47906. dressed: {
  47907. height: math.unit(216, "cm"),
  47908. name: "Dressed",
  47909. image: {
  47910. source: "./media/characters/lev/dressed.svg",
  47911. extra: 1397/1351,
  47912. bottom: 73/1470
  47913. }
  47914. },
  47915. head: {
  47916. height: math.unit(0.51, "meter"),
  47917. name: "Head",
  47918. image: {
  47919. source: "./media/characters/lev/head.svg"
  47920. }
  47921. },
  47922. },
  47923. [
  47924. {
  47925. name: "Normal",
  47926. height: math.unit(216, "cm"),
  47927. default: true
  47928. },
  47929. {
  47930. name: "Relatively Macro",
  47931. height: math.unit(80, "meters")
  47932. },
  47933. {
  47934. name: "Megamacro",
  47935. height: math.unit(21600, "meters")
  47936. },
  47937. {
  47938. name: "Megamacro+",
  47939. height: math.unit(64800, "meters")
  47940. },
  47941. ]
  47942. ))
  47943. characterMakers.push(() => makeCharacter(
  47944. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47945. {
  47946. front: {
  47947. height: math.unit(2, "meters"),
  47948. weight: math.unit(80, "kg"),
  47949. name: "Front",
  47950. image: {
  47951. source: "./media/characters/moka/front.svg",
  47952. extra: 1337/1255,
  47953. bottom: 58/1395
  47954. }
  47955. },
  47956. },
  47957. [
  47958. {
  47959. name: "Micro",
  47960. height: math.unit(15, "cm")
  47961. },
  47962. {
  47963. name: "Normal",
  47964. height: math.unit(2, "meters"),
  47965. default: true
  47966. },
  47967. {
  47968. name: "Macro",
  47969. height: math.unit(20, "meters"),
  47970. },
  47971. ]
  47972. ))
  47973. characterMakers.push(() => makeCharacter(
  47974. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47975. {
  47976. front: {
  47977. height: math.unit(9, "feet"),
  47978. weight: math.unit(240, "lb"),
  47979. name: "Front",
  47980. image: {
  47981. source: "./media/characters/kuzco/front.svg",
  47982. extra: 1593/1487,
  47983. bottom: 32/1625
  47984. }
  47985. },
  47986. side: {
  47987. height: math.unit(9, "feet"),
  47988. weight: math.unit(240, "lb"),
  47989. name: "Side",
  47990. image: {
  47991. source: "./media/characters/kuzco/side.svg",
  47992. extra: 1575/1485,
  47993. bottom: 30/1605
  47994. }
  47995. },
  47996. back: {
  47997. height: math.unit(9, "feet"),
  47998. weight: math.unit(240, "lb"),
  47999. name: "Back",
  48000. image: {
  48001. source: "./media/characters/kuzco/back.svg",
  48002. extra: 1603/1514,
  48003. bottom: 14/1617
  48004. }
  48005. },
  48006. },
  48007. [
  48008. {
  48009. name: "Normal",
  48010. height: math.unit(9, "feet"),
  48011. default: true
  48012. },
  48013. ]
  48014. ))
  48015. characterMakers.push(() => makeCharacter(
  48016. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48017. {
  48018. side: {
  48019. height: math.unit(2, "meters"),
  48020. weight: math.unit(300, "kg"),
  48021. name: "Side",
  48022. image: {
  48023. source: "./media/characters/ceruleus/side.svg",
  48024. extra: 1068/974,
  48025. bottom: 126/1194
  48026. }
  48027. },
  48028. maw: {
  48029. height: math.unit(0.8125, "meter"),
  48030. name: "Maw",
  48031. image: {
  48032. source: "./media/characters/ceruleus/maw.svg"
  48033. }
  48034. },
  48035. },
  48036. [
  48037. {
  48038. name: "Normal",
  48039. height: math.unit(16, "meters"),
  48040. default: true
  48041. },
  48042. ]
  48043. ))
  48044. characterMakers.push(() => makeCharacter(
  48045. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48046. {
  48047. front: {
  48048. height: math.unit(9, "feet"),
  48049. weight: math.unit(500, "kg"),
  48050. name: "Front",
  48051. image: {
  48052. source: "./media/characters/acouya/front.svg",
  48053. extra: 1660/1473,
  48054. bottom: 28/1688
  48055. }
  48056. },
  48057. },
  48058. [
  48059. {
  48060. name: "Normal",
  48061. height: math.unit(9, "feet"),
  48062. default: true
  48063. },
  48064. ]
  48065. ))
  48066. characterMakers.push(() => makeCharacter(
  48067. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48068. {
  48069. front: {
  48070. height: math.unit(5 + 6/12, "feet"),
  48071. weight: math.unit(195, "lb"),
  48072. name: "Front",
  48073. image: {
  48074. source: "./media/characters/vant/front.svg",
  48075. extra: 1396/1320,
  48076. bottom: 20/1416
  48077. }
  48078. },
  48079. back: {
  48080. height: math.unit(5 + 6/12, "feet"),
  48081. weight: math.unit(195, "lb"),
  48082. name: "Back",
  48083. image: {
  48084. source: "./media/characters/vant/back.svg",
  48085. extra: 1396/1320,
  48086. bottom: 20/1416
  48087. }
  48088. },
  48089. maw: {
  48090. height: math.unit(0.75, "feet"),
  48091. name: "Maw",
  48092. image: {
  48093. source: "./media/characters/vant/maw.svg"
  48094. }
  48095. },
  48096. paw: {
  48097. height: math.unit(1.07, "feet"),
  48098. name: "Paw",
  48099. image: {
  48100. source: "./media/characters/vant/paw.svg"
  48101. }
  48102. },
  48103. },
  48104. [
  48105. {
  48106. name: "Micro",
  48107. height: math.unit(0.25, "inches")
  48108. },
  48109. {
  48110. name: "Normal",
  48111. height: math.unit(5 + 6/12, "feet"),
  48112. default: true
  48113. },
  48114. {
  48115. name: "Macro",
  48116. height: math.unit(75, "feet")
  48117. },
  48118. ]
  48119. ))
  48120. characterMakers.push(() => makeCharacter(
  48121. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48122. {
  48123. front: {
  48124. height: math.unit(30, "meters"),
  48125. weight: math.unit(363, "tons"),
  48126. name: "Front",
  48127. image: {
  48128. source: "./media/characters/ahra/front.svg",
  48129. extra: 1914/1814,
  48130. bottom: 46/1960
  48131. }
  48132. },
  48133. },
  48134. [
  48135. {
  48136. name: "Macro",
  48137. height: math.unit(30, "meters"),
  48138. default: true
  48139. },
  48140. ]
  48141. ))
  48142. characterMakers.push(() => makeCharacter(
  48143. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48144. {
  48145. undressed: {
  48146. height: math.unit(2, "m"),
  48147. weight: math.unit(250, "kg"),
  48148. name: "Undressed",
  48149. image: {
  48150. source: "./media/characters/coriander/undressed.svg",
  48151. extra: 1757/1606,
  48152. bottom: 107/1864
  48153. }
  48154. },
  48155. dressed: {
  48156. height: math.unit(2, "m"),
  48157. weight: math.unit(250, "kg"),
  48158. name: "Dressed",
  48159. image: {
  48160. source: "./media/characters/coriander/dressed.svg",
  48161. extra: 1757/1606,
  48162. bottom: 107/1864
  48163. }
  48164. },
  48165. },
  48166. [
  48167. {
  48168. name: "Normal",
  48169. height: math.unit(4, "meters"),
  48170. default: true
  48171. },
  48172. {
  48173. name: "XL",
  48174. height: math.unit(6, "meters")
  48175. },
  48176. {
  48177. name: "XXL",
  48178. height: math.unit(8, "meters")
  48179. },
  48180. ]
  48181. ))
  48182. characterMakers.push(() => makeCharacter(
  48183. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48184. {
  48185. front: {
  48186. height: math.unit(6, "feet"),
  48187. name: "Front",
  48188. image: {
  48189. source: "./media/characters/syrinx/front.svg",
  48190. extra: 1557/1259,
  48191. bottom: 171/1728
  48192. }
  48193. },
  48194. },
  48195. [
  48196. {
  48197. name: "Normal",
  48198. height: math.unit(6 + 3/12, "feet"),
  48199. default: true
  48200. },
  48201. ]
  48202. ))
  48203. characterMakers.push(() => makeCharacter(
  48204. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48205. {
  48206. front: {
  48207. height: math.unit(11 + 6/12, "feet"),
  48208. weight: math.unit(1.5, "tons"),
  48209. name: "Front",
  48210. image: {
  48211. source: "./media/characters/bor/front.svg",
  48212. extra: 1189/1109,
  48213. bottom: 170/1359
  48214. }
  48215. },
  48216. },
  48217. [
  48218. {
  48219. name: "Normal",
  48220. height: math.unit(11 + 6/12, "feet"),
  48221. default: true
  48222. },
  48223. {
  48224. name: "Macro",
  48225. height: math.unit(32 + 9/12, "feet")
  48226. },
  48227. ]
  48228. ))
  48229. characterMakers.push(() => makeCharacter(
  48230. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48231. {
  48232. anthro: {
  48233. height: math.unit(9, "feet"),
  48234. weight: math.unit(2076, "lb"),
  48235. name: "Anthro",
  48236. image: {
  48237. source: "./media/characters/abacus/anthro.svg",
  48238. extra: 1540/1494,
  48239. bottom: 233/1773
  48240. }
  48241. },
  48242. pigeon: {
  48243. height: math.unit(1, "feet"),
  48244. name: "Pigeon",
  48245. image: {
  48246. source: "./media/characters/abacus/pigeon.svg",
  48247. extra: 528/525,
  48248. bottom: 46/574
  48249. }
  48250. },
  48251. },
  48252. [
  48253. {
  48254. name: "Normal",
  48255. height: math.unit(9, "feet"),
  48256. default: true
  48257. },
  48258. ]
  48259. ))
  48260. characterMakers.push(() => makeCharacter(
  48261. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48262. {
  48263. side: {
  48264. height: math.unit(6, "feet"),
  48265. name: "Side",
  48266. image: {
  48267. source: "./media/characters/delkhan/side.svg",
  48268. extra: 1884/1786,
  48269. bottom: 308/2192
  48270. }
  48271. },
  48272. head: {
  48273. height: math.unit(3.38, "feet"),
  48274. name: "Head",
  48275. image: {
  48276. source: "./media/characters/delkhan/head.svg"
  48277. }
  48278. },
  48279. },
  48280. [
  48281. {
  48282. name: "Normal",
  48283. height: math.unit(72, "feet"),
  48284. default: true
  48285. },
  48286. {
  48287. name: "Giant",
  48288. height: math.unit(172, "feet")
  48289. },
  48290. ]
  48291. ))
  48292. characterMakers.push(() => makeCharacter(
  48293. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48294. {
  48295. standing: {
  48296. height: math.unit(6, "feet"),
  48297. name: "Standing",
  48298. image: {
  48299. source: "./media/characters/euchidat/standing.svg",
  48300. extra: 1612/1553,
  48301. bottom: 116/1728
  48302. }
  48303. },
  48304. leaning: {
  48305. height: math.unit(6, "feet"),
  48306. name: "Leaning",
  48307. image: {
  48308. source: "./media/characters/euchidat/leaning.svg",
  48309. extra: 1719/1674,
  48310. bottom: 27/1746
  48311. }
  48312. },
  48313. },
  48314. [
  48315. {
  48316. name: "Normal",
  48317. height: math.unit(175, "feet"),
  48318. default: true
  48319. },
  48320. {
  48321. name: "Megamacro",
  48322. height: math.unit(190, "miles")
  48323. },
  48324. {
  48325. name: "Gigamacro",
  48326. height: math.unit(190000, "miles")
  48327. },
  48328. ]
  48329. ))
  48330. characterMakers.push(() => makeCharacter(
  48331. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48332. {
  48333. front: {
  48334. height: math.unit(6, "feet"),
  48335. weight: math.unit(150, "lb"),
  48336. name: "Front",
  48337. image: {
  48338. source: "./media/characters/rebecca-stack/front.svg",
  48339. extra: 1256/1201,
  48340. bottom: 18/1274
  48341. }
  48342. },
  48343. },
  48344. [
  48345. {
  48346. name: "Normal",
  48347. height: math.unit(5 + 8/12, "feet"),
  48348. default: true
  48349. },
  48350. {
  48351. name: "Demolitionist",
  48352. height: math.unit(200, "feet")
  48353. },
  48354. {
  48355. name: "Out of Control",
  48356. height: math.unit(2, "miles")
  48357. },
  48358. {
  48359. name: "Giga",
  48360. height: math.unit(7200, "miles")
  48361. },
  48362. ]
  48363. ))
  48364. characterMakers.push(() => makeCharacter(
  48365. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48366. {
  48367. front: {
  48368. height: math.unit(6, "feet"),
  48369. weight: math.unit(150, "lb"),
  48370. name: "Front",
  48371. image: {
  48372. source: "./media/characters/jenny-cartwright/front.svg",
  48373. extra: 1384/1376,
  48374. bottom: 58/1442
  48375. }
  48376. },
  48377. },
  48378. [
  48379. {
  48380. name: "Normal",
  48381. height: math.unit(6 + 7/12, "feet"),
  48382. default: true
  48383. },
  48384. {
  48385. name: "Librarian",
  48386. height: math.unit(55, "feet")
  48387. },
  48388. {
  48389. name: "Sightseer",
  48390. height: math.unit(50, "miles")
  48391. },
  48392. {
  48393. name: "Giga",
  48394. height: math.unit(30000, "miles")
  48395. },
  48396. ]
  48397. ))
  48398. characterMakers.push(() => makeCharacter(
  48399. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48400. {
  48401. nude: {
  48402. height: math.unit(8, "feet"),
  48403. weight: math.unit(225, "lb"),
  48404. name: "Nude",
  48405. image: {
  48406. source: "./media/characters/marvy/nude.svg",
  48407. extra: 1900/1683,
  48408. bottom: 89/1989
  48409. }
  48410. },
  48411. dressed: {
  48412. height: math.unit(8, "feet"),
  48413. weight: math.unit(225, "lb"),
  48414. name: "Dressed",
  48415. image: {
  48416. source: "./media/characters/marvy/dressed.svg",
  48417. extra: 1900/1683,
  48418. bottom: 89/1989
  48419. }
  48420. },
  48421. head: {
  48422. height: math.unit(2.85, "feet"),
  48423. name: "Head",
  48424. image: {
  48425. source: "./media/characters/marvy/head.svg"
  48426. }
  48427. },
  48428. },
  48429. [
  48430. {
  48431. name: "Normal",
  48432. height: math.unit(8, "feet"),
  48433. default: true
  48434. },
  48435. ]
  48436. ))
  48437. characterMakers.push(() => makeCharacter(
  48438. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48439. {
  48440. front: {
  48441. height: math.unit(8, "feet"),
  48442. weight: math.unit(250, "lb"),
  48443. name: "Front",
  48444. image: {
  48445. source: "./media/characters/leah/front.svg",
  48446. extra: 1257/1149,
  48447. bottom: 109/1366
  48448. }
  48449. },
  48450. },
  48451. [
  48452. {
  48453. name: "Normal",
  48454. height: math.unit(8, "feet"),
  48455. default: true
  48456. },
  48457. {
  48458. name: "Minimacro",
  48459. height: math.unit(40, "feet")
  48460. },
  48461. {
  48462. name: "Macro",
  48463. height: math.unit(124, "feet")
  48464. },
  48465. {
  48466. name: "Megamacro",
  48467. height: math.unit(850, "feet")
  48468. },
  48469. ]
  48470. ))
  48471. characterMakers.push(() => makeCharacter(
  48472. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48473. {
  48474. side: {
  48475. height: math.unit(13 + 6/12, "feet"),
  48476. weight: math.unit(3200, "lb"),
  48477. name: "Side",
  48478. image: {
  48479. source: "./media/characters/alvir/side.svg",
  48480. extra: 896/589,
  48481. bottom: 26/922
  48482. }
  48483. },
  48484. },
  48485. [
  48486. {
  48487. name: "Normal",
  48488. height: math.unit(13 + 6/12, "feet"),
  48489. default: true
  48490. },
  48491. ]
  48492. ))
  48493. characterMakers.push(() => makeCharacter(
  48494. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48495. {
  48496. front: {
  48497. height: math.unit(5 + 4/12, "feet"),
  48498. weight: math.unit(236, "lb"),
  48499. name: "Front",
  48500. image: {
  48501. source: "./media/characters/zaina-khalil/front.svg",
  48502. extra: 1533/1485,
  48503. bottom: 94/1627
  48504. }
  48505. },
  48506. side: {
  48507. height: math.unit(5 + 4/12, "feet"),
  48508. weight: math.unit(236, "lb"),
  48509. name: "Side",
  48510. image: {
  48511. source: "./media/characters/zaina-khalil/side.svg",
  48512. extra: 1537/1498,
  48513. bottom: 66/1603
  48514. }
  48515. },
  48516. back: {
  48517. height: math.unit(5 + 4/12, "feet"),
  48518. weight: math.unit(236, "lb"),
  48519. name: "Back",
  48520. image: {
  48521. source: "./media/characters/zaina-khalil/back.svg",
  48522. extra: 1546/1494,
  48523. bottom: 89/1635
  48524. }
  48525. },
  48526. },
  48527. [
  48528. {
  48529. name: "Normal",
  48530. height: math.unit(5 + 4/12, "feet"),
  48531. default: true
  48532. },
  48533. ]
  48534. ))
  48535. characterMakers.push(() => makeCharacter(
  48536. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48537. {
  48538. side: {
  48539. height: math.unit(12, "feet"),
  48540. weight: math.unit(4000, "lb"),
  48541. name: "Side",
  48542. image: {
  48543. source: "./media/characters/terry/side.svg",
  48544. extra: 1518/1439,
  48545. bottom: 149/1667
  48546. }
  48547. },
  48548. },
  48549. [
  48550. {
  48551. name: "Normal",
  48552. height: math.unit(12, "feet"),
  48553. default: true
  48554. },
  48555. ]
  48556. ))
  48557. characterMakers.push(() => makeCharacter(
  48558. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48559. {
  48560. front: {
  48561. height: math.unit(12, "feet"),
  48562. weight: math.unit(1500, "lb"),
  48563. name: "Front",
  48564. image: {
  48565. source: "./media/characters/kahea/front.svg",
  48566. extra: 1722/1617,
  48567. bottom: 179/1901
  48568. }
  48569. },
  48570. },
  48571. [
  48572. {
  48573. name: "Normal",
  48574. height: math.unit(12, "feet"),
  48575. default: true
  48576. },
  48577. ]
  48578. ))
  48579. characterMakers.push(() => makeCharacter(
  48580. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48581. {
  48582. demonFront: {
  48583. height: math.unit(36, "feet"),
  48584. name: "Front",
  48585. image: {
  48586. source: "./media/characters/alex-xuria/demon-front.svg",
  48587. extra: 1705/1673,
  48588. bottom: 198/1903
  48589. },
  48590. form: "demon",
  48591. default: true
  48592. },
  48593. demonBack: {
  48594. height: math.unit(36, "feet"),
  48595. name: "Back",
  48596. image: {
  48597. source: "./media/characters/alex-xuria/demon-back.svg",
  48598. extra: 1725/1693,
  48599. bottom: 70/1795
  48600. },
  48601. form: "demon"
  48602. },
  48603. demonHead: {
  48604. height: math.unit(2.14, "meters"),
  48605. name: "Head",
  48606. image: {
  48607. source: "./media/characters/alex-xuria/demon-head.svg"
  48608. },
  48609. form: "demon"
  48610. },
  48611. demonHand: {
  48612. height: math.unit(1.61, "meters"),
  48613. name: "Hand",
  48614. image: {
  48615. source: "./media/characters/alex-xuria/demon-hand.svg"
  48616. },
  48617. form: "demon"
  48618. },
  48619. demonPaw: {
  48620. height: math.unit(1.35, "meters"),
  48621. name: "Paw",
  48622. image: {
  48623. source: "./media/characters/alex-xuria/demon-paw.svg"
  48624. },
  48625. form: "demon"
  48626. },
  48627. demonFoot: {
  48628. height: math.unit(2.2, "meters"),
  48629. name: "Foot",
  48630. image: {
  48631. source: "./media/characters/alex-xuria/demon-foot.svg"
  48632. },
  48633. form: "demon"
  48634. },
  48635. demonCock: {
  48636. height: math.unit(1.74, "meters"),
  48637. name: "Cock",
  48638. image: {
  48639. source: "./media/characters/alex-xuria/demon-cock.svg"
  48640. },
  48641. form: "demon"
  48642. },
  48643. demonTailClosed: {
  48644. height: math.unit(1.47, "meters"),
  48645. name: "Tail (Closed)",
  48646. image: {
  48647. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48648. },
  48649. form: "demon"
  48650. },
  48651. demonTailOpen: {
  48652. height: math.unit(2.85, "meters"),
  48653. name: "Tail (Open)",
  48654. image: {
  48655. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48656. },
  48657. form: "demon"
  48658. },
  48659. incubusFront: {
  48660. height: math.unit(12, "feet"),
  48661. name: "Front",
  48662. image: {
  48663. source: "./media/characters/alex-xuria/incubus-front.svg",
  48664. extra: 1754/1677,
  48665. bottom: 125/1879
  48666. },
  48667. form: "incubus",
  48668. default: true
  48669. },
  48670. incubusBack: {
  48671. height: math.unit(12, "feet"),
  48672. name: "Back",
  48673. image: {
  48674. source: "./media/characters/alex-xuria/incubus-back.svg",
  48675. extra: 1702/1647,
  48676. bottom: 30/1732
  48677. },
  48678. form: "incubus"
  48679. },
  48680. incubusHead: {
  48681. height: math.unit(3.45, "feet"),
  48682. name: "Head",
  48683. image: {
  48684. source: "./media/characters/alex-xuria/incubus-head.svg"
  48685. },
  48686. form: "incubus"
  48687. },
  48688. rabbitFront: {
  48689. height: math.unit(6, "feet"),
  48690. name: "Front",
  48691. image: {
  48692. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48693. extra: 1369/1349,
  48694. bottom: 45/1414
  48695. },
  48696. form: "rabbit",
  48697. default: true
  48698. },
  48699. rabbitSide: {
  48700. height: math.unit(6, "feet"),
  48701. name: "Side",
  48702. image: {
  48703. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48704. extra: 1370/1356,
  48705. bottom: 37/1407
  48706. },
  48707. form: "rabbit"
  48708. },
  48709. rabbitBack: {
  48710. height: math.unit(6, "feet"),
  48711. name: "Back",
  48712. image: {
  48713. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48714. extra: 1375/1358,
  48715. bottom: 43/1418
  48716. },
  48717. form: "rabbit"
  48718. },
  48719. },
  48720. [
  48721. {
  48722. name: "Normal",
  48723. height: math.unit(6, "feet"),
  48724. default: true,
  48725. form: "rabbit"
  48726. },
  48727. {
  48728. name: "Incubus",
  48729. height: math.unit(12, "feet"),
  48730. default: true,
  48731. form: "incubus"
  48732. },
  48733. {
  48734. name: "Demon",
  48735. height: math.unit(36, "feet"),
  48736. default: true,
  48737. form: "demon"
  48738. }
  48739. ],
  48740. {
  48741. "demon": {
  48742. name: "Demon",
  48743. default: true
  48744. },
  48745. "incubus": {
  48746. name: "Incubus",
  48747. },
  48748. "rabbit": {
  48749. name: "Rabbit"
  48750. }
  48751. }
  48752. ))
  48753. characterMakers.push(() => makeCharacter(
  48754. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48755. {
  48756. front: {
  48757. height: math.unit(7 + 5/12, "feet"),
  48758. weight: math.unit(510, "lb"),
  48759. name: "Front",
  48760. image: {
  48761. source: "./media/characters/syrup/front.svg",
  48762. extra: 932/916,
  48763. bottom: 26/958
  48764. }
  48765. },
  48766. },
  48767. [
  48768. {
  48769. name: "Normal",
  48770. height: math.unit(7 + 5/12, "feet"),
  48771. default: true
  48772. },
  48773. {
  48774. name: "Big",
  48775. height: math.unit(50, "feet")
  48776. },
  48777. {
  48778. name: "Macro",
  48779. height: math.unit(300, "feet")
  48780. },
  48781. {
  48782. name: "Megamacro",
  48783. height: math.unit(1, "mile")
  48784. },
  48785. ]
  48786. ))
  48787. characterMakers.push(() => makeCharacter(
  48788. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48789. {
  48790. front: {
  48791. height: math.unit(6 + 9/12, "feet"),
  48792. name: "Front",
  48793. image: {
  48794. source: "./media/characters/zeimne/front.svg",
  48795. extra: 1969/1806,
  48796. bottom: 53/2022
  48797. }
  48798. },
  48799. },
  48800. [
  48801. {
  48802. name: "Normal",
  48803. height: math.unit(6 + 9/12, "feet"),
  48804. default: true
  48805. },
  48806. {
  48807. name: "Giant",
  48808. height: math.unit(550, "feet")
  48809. },
  48810. {
  48811. name: "Mega",
  48812. height: math.unit(3, "miles")
  48813. },
  48814. {
  48815. name: "Giga",
  48816. height: math.unit(250, "miles")
  48817. },
  48818. {
  48819. name: "Tera",
  48820. height: math.unit(1, "AU")
  48821. },
  48822. ]
  48823. ))
  48824. characterMakers.push(() => makeCharacter(
  48825. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48826. {
  48827. front: {
  48828. height: math.unit(5 + 2/12, "feet"),
  48829. name: "Front",
  48830. image: {
  48831. source: "./media/characters/grar/front.svg",
  48832. extra: 1331/1119,
  48833. bottom: 60/1391
  48834. }
  48835. },
  48836. back: {
  48837. height: math.unit(5 + 2/12, "feet"),
  48838. name: "Back",
  48839. image: {
  48840. source: "./media/characters/grar/back.svg",
  48841. extra: 1385/1169,
  48842. bottom: 23/1408
  48843. }
  48844. },
  48845. },
  48846. [
  48847. {
  48848. name: "Normal",
  48849. height: math.unit(5 + 2/12, "feet"),
  48850. default: true
  48851. },
  48852. ]
  48853. ))
  48854. characterMakers.push(() => makeCharacter(
  48855. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48856. {
  48857. front: {
  48858. height: math.unit(13 + 7/12, "feet"),
  48859. weight: math.unit(2200, "lb"),
  48860. name: "Front",
  48861. image: {
  48862. source: "./media/characters/endraya/front.svg",
  48863. extra: 1289/1215,
  48864. bottom: 50/1339
  48865. }
  48866. },
  48867. nude: {
  48868. height: math.unit(13 + 7/12, "feet"),
  48869. weight: math.unit(2200, "lb"),
  48870. name: "Nude",
  48871. image: {
  48872. source: "./media/characters/endraya/nude.svg",
  48873. extra: 1247/1171,
  48874. bottom: 40/1287
  48875. }
  48876. },
  48877. head: {
  48878. height: math.unit(2.6, "feet"),
  48879. name: "Head",
  48880. image: {
  48881. source: "./media/characters/endraya/head.svg"
  48882. }
  48883. },
  48884. slit: {
  48885. height: math.unit(3.4, "feet"),
  48886. name: "Slit",
  48887. image: {
  48888. source: "./media/characters/endraya/slit.svg"
  48889. }
  48890. },
  48891. },
  48892. [
  48893. {
  48894. name: "Normal",
  48895. height: math.unit(13 + 7/12, "feet"),
  48896. default: true
  48897. },
  48898. {
  48899. name: "Macro",
  48900. height: math.unit(200, "feet")
  48901. },
  48902. ]
  48903. ))
  48904. characterMakers.push(() => makeCharacter(
  48905. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48906. {
  48907. front: {
  48908. height: math.unit(1.81, "meters"),
  48909. weight: math.unit(69, "kg"),
  48910. name: "Front",
  48911. image: {
  48912. source: "./media/characters/rodryana/front.svg",
  48913. extra: 2002/1921,
  48914. bottom: 53/2055
  48915. }
  48916. },
  48917. back: {
  48918. height: math.unit(1.81, "meters"),
  48919. weight: math.unit(69, "kg"),
  48920. name: "Back",
  48921. image: {
  48922. source: "./media/characters/rodryana/back.svg",
  48923. extra: 1993/1926,
  48924. bottom: 48/2041
  48925. }
  48926. },
  48927. maw: {
  48928. height: math.unit(0.19769417475, "meters"),
  48929. name: "Maw",
  48930. image: {
  48931. source: "./media/characters/rodryana/maw.svg"
  48932. }
  48933. },
  48934. slit: {
  48935. height: math.unit(0.31631067961, "meters"),
  48936. name: "Slit",
  48937. image: {
  48938. source: "./media/characters/rodryana/slit.svg"
  48939. }
  48940. },
  48941. },
  48942. [
  48943. {
  48944. name: "Normal",
  48945. height: math.unit(1.81, "meters")
  48946. },
  48947. {
  48948. name: "Mini Macro",
  48949. height: math.unit(181, "meters")
  48950. },
  48951. {
  48952. name: "Macro",
  48953. height: math.unit(452, "meters"),
  48954. default: true
  48955. },
  48956. {
  48957. name: "Mega Macro",
  48958. height: math.unit(1.375, "km")
  48959. },
  48960. {
  48961. name: "Giga Macro",
  48962. height: math.unit(13.575, "km")
  48963. },
  48964. ]
  48965. ))
  48966. characterMakers.push(() => makeCharacter(
  48967. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48968. {
  48969. front: {
  48970. height: math.unit(6, "feet"),
  48971. weight: math.unit(1000, "lb"),
  48972. name: "Front",
  48973. image: {
  48974. source: "./media/characters/asaya/front.svg",
  48975. extra: 1460/1200,
  48976. bottom: 71/1531
  48977. }
  48978. },
  48979. },
  48980. [
  48981. {
  48982. name: "Normal",
  48983. height: math.unit(8, "km"),
  48984. default: true
  48985. },
  48986. ]
  48987. ))
  48988. characterMakers.push(() => makeCharacter(
  48989. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48990. {
  48991. front: {
  48992. height: math.unit(3.5, "meters"),
  48993. name: "Front",
  48994. image: {
  48995. source: "./media/characters/sarzu-and-israz/front.svg",
  48996. extra: 1570/1558,
  48997. bottom: 150/1720
  48998. },
  48999. },
  49000. back: {
  49001. height: math.unit(3.5, "meters"),
  49002. name: "Back",
  49003. image: {
  49004. source: "./media/characters/sarzu-and-israz/back.svg",
  49005. extra: 1523/1509,
  49006. bottom: 132/1655
  49007. },
  49008. },
  49009. frontFemale: {
  49010. height: math.unit(3.5, "meters"),
  49011. name: "Front (Female)",
  49012. image: {
  49013. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49014. extra: 1570/1558,
  49015. bottom: 150/1720
  49016. },
  49017. },
  49018. frontHerm: {
  49019. height: math.unit(3.5, "meters"),
  49020. name: "Front (Herm)",
  49021. image: {
  49022. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49023. extra: 1570/1558,
  49024. bottom: 150/1720
  49025. },
  49026. },
  49027. },
  49028. [
  49029. {
  49030. name: "Normal",
  49031. height: math.unit(3.5, "meters"),
  49032. default: true,
  49033. },
  49034. {
  49035. name: "Macro",
  49036. height: math.unit(65.5, "meters"),
  49037. },
  49038. ],
  49039. ))
  49040. characterMakers.push(() => makeCharacter(
  49041. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49042. {
  49043. front: {
  49044. height: math.unit(6, "feet"),
  49045. weight: math.unit(250, "lb"),
  49046. name: "Front",
  49047. image: {
  49048. source: "./media/characters/zenimma/front.svg",
  49049. extra: 1346/1320,
  49050. bottom: 58/1404
  49051. }
  49052. },
  49053. back: {
  49054. height: math.unit(6, "feet"),
  49055. weight: math.unit(250, "lb"),
  49056. name: "Back",
  49057. image: {
  49058. source: "./media/characters/zenimma/back.svg",
  49059. extra: 1324/1308,
  49060. bottom: 44/1368
  49061. }
  49062. },
  49063. dick: {
  49064. height: math.unit(1.44, "feet"),
  49065. name: "Dick",
  49066. image: {
  49067. source: "./media/characters/zenimma/dick.svg"
  49068. }
  49069. },
  49070. },
  49071. [
  49072. {
  49073. name: "Canon Height",
  49074. height: math.unit(66, "miles"),
  49075. default: true
  49076. },
  49077. ]
  49078. ))
  49079. characterMakers.push(() => makeCharacter(
  49080. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49081. {
  49082. nude: {
  49083. height: math.unit(6, "feet"),
  49084. weight: math.unit(150, "lb"),
  49085. name: "Nude",
  49086. image: {
  49087. source: "./media/characters/shavon/nude.svg",
  49088. extra: 1242/1096,
  49089. bottom: 98/1340
  49090. }
  49091. },
  49092. dressed: {
  49093. height: math.unit(6, "feet"),
  49094. weight: math.unit(150, "lb"),
  49095. name: "Dressed",
  49096. image: {
  49097. source: "./media/characters/shavon/dressed.svg",
  49098. extra: 1242/1096,
  49099. bottom: 98/1340
  49100. }
  49101. },
  49102. },
  49103. [
  49104. {
  49105. name: "Macro",
  49106. height: math.unit(255, "feet"),
  49107. default: true
  49108. },
  49109. ]
  49110. ))
  49111. characterMakers.push(() => makeCharacter(
  49112. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49113. {
  49114. front: {
  49115. height: math.unit(6, "feet"),
  49116. name: "Front",
  49117. image: {
  49118. source: "./media/characters/steph/front.svg",
  49119. extra: 1430/1330,
  49120. bottom: 54/1484
  49121. }
  49122. },
  49123. },
  49124. [
  49125. {
  49126. name: "Normal",
  49127. height: math.unit(6, "feet"),
  49128. default: true
  49129. },
  49130. ]
  49131. ))
  49132. characterMakers.push(() => makeCharacter(
  49133. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49134. {
  49135. front: {
  49136. height: math.unit(9, "feet"),
  49137. weight: math.unit(400, "lb"),
  49138. name: "Front",
  49139. image: {
  49140. source: "./media/characters/kil'aman/front.svg",
  49141. extra: 1210/1159,
  49142. bottom: 109/1319
  49143. }
  49144. },
  49145. head: {
  49146. height: math.unit(2.14, "feet"),
  49147. name: "Head",
  49148. image: {
  49149. source: "./media/characters/kil'aman/head.svg"
  49150. }
  49151. },
  49152. maw: {
  49153. height: math.unit(1.21, "feet"),
  49154. name: "Maw",
  49155. image: {
  49156. source: "./media/characters/kil'aman/maw.svg"
  49157. }
  49158. },
  49159. foot: {
  49160. height: math.unit(1.7, "feet"),
  49161. name: "Foot",
  49162. image: {
  49163. source: "./media/characters/kil'aman/foot.svg"
  49164. }
  49165. },
  49166. dick: {
  49167. height: math.unit(2.1, "feet"),
  49168. name: "Dick",
  49169. image: {
  49170. source: "./media/characters/kil'aman/dick.svg"
  49171. }
  49172. },
  49173. },
  49174. [
  49175. {
  49176. name: "Normal",
  49177. height: math.unit(9, "feet")
  49178. },
  49179. {
  49180. name: "Canon Height",
  49181. height: math.unit(10, "miles"),
  49182. default: true
  49183. },
  49184. {
  49185. name: "Maximum",
  49186. height: math.unit(6e9, "miles")
  49187. },
  49188. ]
  49189. ))
  49190. characterMakers.push(() => makeCharacter(
  49191. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49192. {
  49193. front: {
  49194. height: math.unit(90, "feet"),
  49195. weight: math.unit(675000, "lb"),
  49196. name: "Front",
  49197. image: {
  49198. source: "./media/characters/qadan/front.svg",
  49199. extra: 1012/1004,
  49200. bottom: 78/1090
  49201. }
  49202. },
  49203. back: {
  49204. height: math.unit(90, "feet"),
  49205. weight: math.unit(675000, "lb"),
  49206. name: "Back",
  49207. image: {
  49208. source: "./media/characters/qadan/back.svg",
  49209. extra: 1042/1031,
  49210. bottom: 55/1097
  49211. }
  49212. },
  49213. armored: {
  49214. height: math.unit(90, "feet"),
  49215. weight: math.unit(675000, "lb"),
  49216. name: "Armored",
  49217. image: {
  49218. source: "./media/characters/qadan/armored.svg",
  49219. extra: 1047/1037,
  49220. bottom: 48/1095
  49221. }
  49222. },
  49223. },
  49224. [
  49225. {
  49226. name: "Normal",
  49227. height: math.unit(90, "feet"),
  49228. default: true
  49229. },
  49230. ]
  49231. ))
  49232. characterMakers.push(() => makeCharacter(
  49233. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49234. {
  49235. front: {
  49236. height: math.unit(6, "feet"),
  49237. weight: math.unit(225, "lb"),
  49238. name: "Front",
  49239. image: {
  49240. source: "./media/characters/brooke/front.svg",
  49241. extra: 1050/1010,
  49242. bottom: 66/1116
  49243. }
  49244. },
  49245. back: {
  49246. height: math.unit(6, "feet"),
  49247. weight: math.unit(225, "lb"),
  49248. name: "Back",
  49249. image: {
  49250. source: "./media/characters/brooke/back.svg",
  49251. extra: 1053/1013,
  49252. bottom: 41/1094
  49253. }
  49254. },
  49255. dressed: {
  49256. height: math.unit(6, "feet"),
  49257. weight: math.unit(225, "lb"),
  49258. name: "Dressed",
  49259. image: {
  49260. source: "./media/characters/brooke/dressed.svg",
  49261. extra: 1050/1010,
  49262. bottom: 66/1116
  49263. }
  49264. },
  49265. },
  49266. [
  49267. {
  49268. name: "Canon Height",
  49269. height: math.unit(500, "miles"),
  49270. default: true
  49271. },
  49272. ]
  49273. ))
  49274. characterMakers.push(() => makeCharacter(
  49275. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49276. {
  49277. front: {
  49278. height: math.unit(6 + 2/12, "feet"),
  49279. weight: math.unit(210, "lb"),
  49280. name: "Front",
  49281. image: {
  49282. source: "./media/characters/wubs/front.svg",
  49283. extra: 1345/1325,
  49284. bottom: 70/1415
  49285. }
  49286. },
  49287. back: {
  49288. height: math.unit(6 + 2/12, "feet"),
  49289. weight: math.unit(210, "lb"),
  49290. name: "Back",
  49291. image: {
  49292. source: "./media/characters/wubs/back.svg",
  49293. extra: 1296/1275,
  49294. bottom: 58/1354
  49295. }
  49296. },
  49297. },
  49298. [
  49299. {
  49300. name: "Normal",
  49301. height: math.unit(6 + 2/12, "feet"),
  49302. default: true
  49303. },
  49304. {
  49305. name: "Macro",
  49306. height: math.unit(1000, "feet")
  49307. },
  49308. {
  49309. name: "Megamacro",
  49310. height: math.unit(1, "mile")
  49311. },
  49312. ]
  49313. ))
  49314. characterMakers.push(() => makeCharacter(
  49315. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49316. {
  49317. front: {
  49318. height: math.unit(4, "feet"),
  49319. weight: math.unit(120, "lb"),
  49320. name: "Front",
  49321. image: {
  49322. source: "./media/characters/blue/front.svg",
  49323. extra: 1636/1525,
  49324. bottom: 43/1679
  49325. }
  49326. },
  49327. back: {
  49328. height: math.unit(4, "feet"),
  49329. weight: math.unit(120, "lb"),
  49330. name: "Back",
  49331. image: {
  49332. source: "./media/characters/blue/back.svg",
  49333. extra: 1660/1560,
  49334. bottom: 57/1717
  49335. }
  49336. },
  49337. paws: {
  49338. height: math.unit(0.826, "feet"),
  49339. name: "Paws",
  49340. image: {
  49341. source: "./media/characters/blue/paws.svg"
  49342. }
  49343. },
  49344. },
  49345. [
  49346. {
  49347. name: "Micro",
  49348. height: math.unit(3, "inches")
  49349. },
  49350. {
  49351. name: "Normal",
  49352. height: math.unit(4, "feet"),
  49353. default: true
  49354. },
  49355. {
  49356. name: "Femenine Form",
  49357. height: math.unit(14, "feet")
  49358. },
  49359. {
  49360. name: "Werebat Form",
  49361. height: math.unit(18, "feet")
  49362. },
  49363. ]
  49364. ))
  49365. characterMakers.push(() => makeCharacter(
  49366. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49367. {
  49368. female: {
  49369. height: math.unit(7 + 4/12, "feet"),
  49370. weight: math.unit(243, "lb"),
  49371. name: "Female",
  49372. image: {
  49373. source: "./media/characters/kaya/female.svg",
  49374. extra: 975/898,
  49375. bottom: 34/1009
  49376. }
  49377. },
  49378. herm: {
  49379. height: math.unit(7 + 4/12, "feet"),
  49380. weight: math.unit(243, "lb"),
  49381. name: "Herm",
  49382. image: {
  49383. source: "./media/characters/kaya/herm.svg",
  49384. extra: 975/898,
  49385. bottom: 34/1009
  49386. }
  49387. },
  49388. },
  49389. [
  49390. {
  49391. name: "Normal",
  49392. height: math.unit(7 + 4/12, "feet"),
  49393. default: true
  49394. },
  49395. ]
  49396. ))
  49397. characterMakers.push(() => makeCharacter(
  49398. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49399. {
  49400. female: {
  49401. height: math.unit(9 + 4/12, "feet"),
  49402. weight: math.unit(398, "lb"),
  49403. name: "Female",
  49404. image: {
  49405. source: "./media/characters/kassandra/female.svg",
  49406. extra: 908/839,
  49407. bottom: 61/969
  49408. }
  49409. },
  49410. intersex: {
  49411. height: math.unit(9 + 4/12, "feet"),
  49412. weight: math.unit(398, "lb"),
  49413. name: "Intersex",
  49414. image: {
  49415. source: "./media/characters/kassandra/intersex.svg",
  49416. extra: 908/839,
  49417. bottom: 61/969
  49418. }
  49419. },
  49420. },
  49421. [
  49422. {
  49423. name: "Normal",
  49424. height: math.unit(9 + 4/12, "feet"),
  49425. default: true
  49426. },
  49427. ]
  49428. ))
  49429. characterMakers.push(() => makeCharacter(
  49430. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49431. {
  49432. front: {
  49433. height: math.unit(3, "meters"),
  49434. name: "Front",
  49435. image: {
  49436. source: "./media/characters/amy/front.svg",
  49437. extra: 1380/1343,
  49438. bottom: 70/1450
  49439. }
  49440. },
  49441. back: {
  49442. height: math.unit(3, "meters"),
  49443. name: "Back",
  49444. image: {
  49445. source: "./media/characters/amy/back.svg",
  49446. extra: 1380/1347,
  49447. bottom: 66/1446
  49448. }
  49449. },
  49450. },
  49451. [
  49452. {
  49453. name: "Normal",
  49454. height: math.unit(3, "meters"),
  49455. default: true
  49456. },
  49457. ]
  49458. ))
  49459. characterMakers.push(() => makeCharacter(
  49460. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49461. {
  49462. side: {
  49463. height: math.unit(47, "cm"),
  49464. weight: math.unit(10.8, "kg"),
  49465. name: "Side",
  49466. image: {
  49467. source: "./media/characters/alphaschakal/side.svg",
  49468. extra: 1058/568,
  49469. bottom: 62/1120
  49470. }
  49471. },
  49472. back: {
  49473. height: math.unit(78, "cm"),
  49474. weight: math.unit(10.8, "kg"),
  49475. name: "Back",
  49476. image: {
  49477. source: "./media/characters/alphaschakal/back.svg",
  49478. extra: 1102/942,
  49479. bottom: 185/1287
  49480. }
  49481. },
  49482. head: {
  49483. height: math.unit(28, "cm"),
  49484. name: "Head",
  49485. image: {
  49486. source: "./media/characters/alphaschakal/head.svg",
  49487. extra: 696/508,
  49488. bottom: 0/696
  49489. }
  49490. },
  49491. paw: {
  49492. height: math.unit(16, "cm"),
  49493. name: "Paw",
  49494. image: {
  49495. source: "./media/characters/alphaschakal/paw.svg"
  49496. }
  49497. },
  49498. },
  49499. [
  49500. {
  49501. name: "Normal",
  49502. height: math.unit(47, "cm"),
  49503. default: true
  49504. },
  49505. {
  49506. name: "Macro",
  49507. height: math.unit(340, "cm")
  49508. },
  49509. ]
  49510. ))
  49511. characterMakers.push(() => makeCharacter(
  49512. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49513. {
  49514. front: {
  49515. height: math.unit(36, "earths"),
  49516. name: "Front",
  49517. image: {
  49518. source: "./media/characters/ecobyss/front.svg",
  49519. extra: 1282/1215,
  49520. bottom: 11/1293
  49521. }
  49522. },
  49523. back: {
  49524. height: math.unit(36, "earths"),
  49525. name: "Back",
  49526. image: {
  49527. source: "./media/characters/ecobyss/back.svg",
  49528. extra: 1291/1222,
  49529. bottom: 8/1299
  49530. }
  49531. },
  49532. },
  49533. [
  49534. {
  49535. name: "Normal",
  49536. height: math.unit(36, "earths"),
  49537. default: true
  49538. },
  49539. ]
  49540. ))
  49541. characterMakers.push(() => makeCharacter(
  49542. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49543. {
  49544. front: {
  49545. height: math.unit(12, "feet"),
  49546. name: "Front",
  49547. image: {
  49548. source: "./media/characters/vasuk/front.svg",
  49549. extra: 1326/1207,
  49550. bottom: 64/1390
  49551. }
  49552. },
  49553. },
  49554. [
  49555. {
  49556. name: "Normal",
  49557. height: math.unit(12, "feet"),
  49558. default: true
  49559. },
  49560. ]
  49561. ))
  49562. characterMakers.push(() => makeCharacter(
  49563. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49564. {
  49565. side: {
  49566. height: math.unit(100, "feet"),
  49567. name: "Side",
  49568. image: {
  49569. source: "./media/characters/linneaus/side.svg",
  49570. extra: 987/807,
  49571. bottom: 47/1034
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Macro",
  49578. height: math.unit(100, "feet"),
  49579. default: true
  49580. },
  49581. ]
  49582. ))
  49583. characterMakers.push(() => makeCharacter(
  49584. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49585. {
  49586. front: {
  49587. height: math.unit(8, "feet"),
  49588. weight: math.unit(1200, "lb"),
  49589. name: "Front",
  49590. image: {
  49591. source: "./media/characters/nyterious-daligdig/front.svg",
  49592. extra: 1284/1094,
  49593. bottom: 84/1368
  49594. }
  49595. },
  49596. back: {
  49597. height: math.unit(8, "feet"),
  49598. weight: math.unit(1200, "lb"),
  49599. name: "Back",
  49600. image: {
  49601. source: "./media/characters/nyterious-daligdig/back.svg",
  49602. extra: 1301/1121,
  49603. bottom: 129/1430
  49604. }
  49605. },
  49606. mouth: {
  49607. height: math.unit(1.464, "feet"),
  49608. name: "Mouth",
  49609. image: {
  49610. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49611. }
  49612. },
  49613. },
  49614. [
  49615. {
  49616. name: "Small",
  49617. height: math.unit(8, "feet"),
  49618. default: true
  49619. },
  49620. {
  49621. name: "Normal",
  49622. height: math.unit(15, "feet")
  49623. },
  49624. {
  49625. name: "Macro",
  49626. height: math.unit(90, "feet")
  49627. },
  49628. ]
  49629. ))
  49630. characterMakers.push(() => makeCharacter(
  49631. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49632. {
  49633. front: {
  49634. height: math.unit(7 + 4/12, "feet"),
  49635. weight: math.unit(252, "lb"),
  49636. name: "Front",
  49637. image: {
  49638. source: "./media/characters/bandel/front.svg",
  49639. extra: 1946/1775,
  49640. bottom: 26/1972
  49641. }
  49642. },
  49643. back: {
  49644. height: math.unit(7 + 4/12, "feet"),
  49645. weight: math.unit(252, "lb"),
  49646. name: "Back",
  49647. image: {
  49648. source: "./media/characters/bandel/back.svg",
  49649. extra: 1940/1770,
  49650. bottom: 25/1965
  49651. }
  49652. },
  49653. maw: {
  49654. height: math.unit(2.15, "feet"),
  49655. name: "Maw",
  49656. image: {
  49657. source: "./media/characters/bandel/maw.svg"
  49658. }
  49659. },
  49660. stomach: {
  49661. height: math.unit(1.95, "feet"),
  49662. name: "Stomach",
  49663. image: {
  49664. source: "./media/characters/bandel/stomach.svg"
  49665. }
  49666. },
  49667. },
  49668. [
  49669. {
  49670. name: "Normal",
  49671. height: math.unit(7 + 4/12, "feet"),
  49672. default: true
  49673. },
  49674. ]
  49675. ))
  49676. characterMakers.push(() => makeCharacter(
  49677. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49678. {
  49679. front: {
  49680. height: math.unit(10 + 5/12, "feet"),
  49681. weight: math.unit(773.5, "kg"),
  49682. name: "Front",
  49683. image: {
  49684. source: "./media/characters/zed/front.svg",
  49685. extra: 987/941,
  49686. bottom: 52/1039
  49687. }
  49688. },
  49689. },
  49690. [
  49691. {
  49692. name: "Short",
  49693. height: math.unit(5 + 4/12, "feet")
  49694. },
  49695. {
  49696. name: "Average",
  49697. height: math.unit(10 + 5/12, "feet"),
  49698. default: true
  49699. },
  49700. {
  49701. name: "Mini-Macro",
  49702. height: math.unit(24 + 9/12, "feet")
  49703. },
  49704. {
  49705. name: "Macro",
  49706. height: math.unit(249, "feet")
  49707. },
  49708. {
  49709. name: "Mega-Macro",
  49710. height: math.unit(12490, "feet")
  49711. },
  49712. {
  49713. name: "Giga-Macro",
  49714. height: math.unit(24.9, "miles")
  49715. },
  49716. {
  49717. name: "Tera-Macro",
  49718. height: math.unit(24900, "miles")
  49719. },
  49720. {
  49721. name: "Cosmic Scale",
  49722. height: math.unit(38.9, "lightyears")
  49723. },
  49724. {
  49725. name: "Universal Scale",
  49726. height: math.unit(138e12, "lightyears")
  49727. },
  49728. ]
  49729. ))
  49730. characterMakers.push(() => makeCharacter(
  49731. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49732. {
  49733. front: {
  49734. height: math.unit(1561, "inches"),
  49735. name: "Front",
  49736. image: {
  49737. source: "./media/characters/ivan/front.svg",
  49738. extra: 1126/1071,
  49739. bottom: 26/1152
  49740. }
  49741. },
  49742. back: {
  49743. height: math.unit(1561, "inches"),
  49744. name: "Back",
  49745. image: {
  49746. source: "./media/characters/ivan/back.svg",
  49747. extra: 1134/1079,
  49748. bottom: 30/1164
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Normal",
  49755. height: math.unit(1561, "inches"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(5 + 7/12, "feet"),
  49765. weight: math.unit(150, "lb"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/robin-arctic-hare/front.svg",
  49769. extra: 1148/974,
  49770. bottom: 20/1168
  49771. }
  49772. },
  49773. },
  49774. [
  49775. {
  49776. name: "Normal",
  49777. height: math.unit(5 + 7/12, "feet"),
  49778. default: true
  49779. },
  49780. ]
  49781. ))
  49782. characterMakers.push(() => makeCharacter(
  49783. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49784. {
  49785. side: {
  49786. height: math.unit(5, "feet"),
  49787. name: "Side",
  49788. image: {
  49789. source: "./media/characters/birch/side.svg",
  49790. extra: 985/796,
  49791. bottom: 111/1096
  49792. }
  49793. },
  49794. },
  49795. [
  49796. {
  49797. name: "Normal",
  49798. height: math.unit(5, "feet"),
  49799. default: true
  49800. },
  49801. ]
  49802. ))
  49803. characterMakers.push(() => makeCharacter(
  49804. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49805. {
  49806. front: {
  49807. height: math.unit(4, "feet"),
  49808. name: "Front",
  49809. image: {
  49810. source: "./media/characters/rasp/front.svg",
  49811. extra: 561/478,
  49812. bottom: 74/635
  49813. }
  49814. },
  49815. },
  49816. [
  49817. {
  49818. name: "Normal",
  49819. height: math.unit(4, "feet"),
  49820. default: true
  49821. },
  49822. ]
  49823. ))
  49824. characterMakers.push(() => makeCharacter(
  49825. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49826. {
  49827. front: {
  49828. height: math.unit(4 + 6/12, "feet"),
  49829. name: "Front",
  49830. image: {
  49831. source: "./media/characters/agatha/front.svg",
  49832. extra: 947/933,
  49833. bottom: 42/989
  49834. }
  49835. },
  49836. back: {
  49837. height: math.unit(4 + 6/12, "feet"),
  49838. name: "Back",
  49839. image: {
  49840. source: "./media/characters/agatha/back.svg",
  49841. extra: 935/922,
  49842. bottom: 48/983
  49843. }
  49844. },
  49845. },
  49846. [
  49847. {
  49848. name: "Normal",
  49849. height: math.unit(4 + 6 /12, "feet"),
  49850. default: true
  49851. },
  49852. {
  49853. name: "Max Size",
  49854. height: math.unit(500, "feet")
  49855. },
  49856. ]
  49857. ))
  49858. characterMakers.push(() => makeCharacter(
  49859. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49860. {
  49861. side: {
  49862. height: math.unit(30, "feet"),
  49863. name: "Side",
  49864. image: {
  49865. source: "./media/characters/roggy/side.svg",
  49866. extra: 909/643,
  49867. bottom: 63/972
  49868. }
  49869. },
  49870. lounging: {
  49871. height: math.unit(20, "feet"),
  49872. name: "Lounging",
  49873. image: {
  49874. source: "./media/characters/roggy/lounging.svg",
  49875. extra: 643/479,
  49876. bottom: 145/788
  49877. }
  49878. },
  49879. handpaw: {
  49880. height: math.unit(13.1, "feet"),
  49881. name: "Handpaw",
  49882. image: {
  49883. source: "./media/characters/roggy/handpaw.svg"
  49884. }
  49885. },
  49886. footpaw: {
  49887. height: math.unit(15.8, "feet"),
  49888. name: "Footpaw",
  49889. image: {
  49890. source: "./media/characters/roggy/footpaw.svg"
  49891. }
  49892. },
  49893. },
  49894. [
  49895. {
  49896. name: "Menacing",
  49897. height: math.unit(30, "feet"),
  49898. default: true
  49899. },
  49900. ]
  49901. ))
  49902. characterMakers.push(() => makeCharacter(
  49903. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49904. {
  49905. front: {
  49906. height: math.unit(5 + 7/12, "feet"),
  49907. weight: math.unit(135, "lb"),
  49908. name: "Front",
  49909. image: {
  49910. source: "./media/characters/naomi/front.svg",
  49911. extra: 1209/1154,
  49912. bottom: 129/1338
  49913. }
  49914. },
  49915. back: {
  49916. height: math.unit(5 + 7/12, "feet"),
  49917. weight: math.unit(135, "lb"),
  49918. name: "Back",
  49919. image: {
  49920. source: "./media/characters/naomi/back.svg",
  49921. extra: 1252/1190,
  49922. bottom: 23/1275
  49923. }
  49924. },
  49925. },
  49926. [
  49927. {
  49928. name: "Normal",
  49929. height: math.unit(5 + 7 /12, "feet"),
  49930. default: true
  49931. },
  49932. ]
  49933. ))
  49934. characterMakers.push(() => makeCharacter(
  49935. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49936. {
  49937. side: {
  49938. height: math.unit(35, "meters"),
  49939. name: "Side",
  49940. image: {
  49941. source: "./media/characters/kimpi/side.svg",
  49942. extra: 419/382,
  49943. bottom: 63/482
  49944. }
  49945. },
  49946. hand: {
  49947. height: math.unit(8.96, "meters"),
  49948. name: "Hand",
  49949. image: {
  49950. source: "./media/characters/kimpi/hand.svg"
  49951. }
  49952. },
  49953. },
  49954. [
  49955. {
  49956. name: "Normal",
  49957. height: math.unit(35, "meters"),
  49958. default: true
  49959. },
  49960. ]
  49961. ))
  49962. characterMakers.push(() => makeCharacter(
  49963. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49964. {
  49965. front: {
  49966. height: math.unit(4 + 4/12, "feet"),
  49967. name: "Front",
  49968. image: {
  49969. source: "./media/characters/pepper-purrloin/front.svg",
  49970. extra: 1141/1024,
  49971. bottom: 21/1162
  49972. }
  49973. },
  49974. },
  49975. [
  49976. {
  49977. name: "Normal",
  49978. height: math.unit(4 + 4/12, "feet"),
  49979. default: true
  49980. },
  49981. ]
  49982. ))
  49983. characterMakers.push(() => makeCharacter(
  49984. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49985. {
  49986. front: {
  49987. height: math.unit(6 + 2/12, "feet"),
  49988. name: "Front",
  49989. image: {
  49990. source: "./media/characters/raphael/front.svg",
  49991. extra: 1101/962,
  49992. bottom: 59/1160
  49993. }
  49994. },
  49995. },
  49996. [
  49997. {
  49998. name: "Normal",
  49999. height: math.unit(6 + 2/12, "feet"),
  50000. default: true
  50001. },
  50002. ]
  50003. ))
  50004. characterMakers.push(() => makeCharacter(
  50005. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50006. {
  50007. front: {
  50008. height: math.unit(6, "feet"),
  50009. weight: math.unit(150, "lb"),
  50010. name: "Front",
  50011. image: {
  50012. source: "./media/characters/victor-williams/front.svg",
  50013. extra: 1894/1825,
  50014. bottom: 67/1961
  50015. }
  50016. },
  50017. },
  50018. [
  50019. {
  50020. name: "Normal",
  50021. height: math.unit(6, "feet"),
  50022. default: true
  50023. },
  50024. ]
  50025. ))
  50026. characterMakers.push(() => makeCharacter(
  50027. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50028. {
  50029. front: {
  50030. height: math.unit(5 + 8/12, "feet"),
  50031. weight: math.unit(150, "lb"),
  50032. name: "Front",
  50033. image: {
  50034. source: "./media/characters/rachel/front.svg",
  50035. extra: 1902/1787,
  50036. bottom: 46/1948
  50037. }
  50038. },
  50039. },
  50040. [
  50041. {
  50042. name: "Base Height",
  50043. height: math.unit(5 + 8/12, "feet"),
  50044. default: true
  50045. },
  50046. {
  50047. name: "Macro",
  50048. height: math.unit(200, "feet")
  50049. },
  50050. {
  50051. name: "Mega Macro",
  50052. height: math.unit(1, "mile")
  50053. },
  50054. {
  50055. name: "Giga Macro",
  50056. height: math.unit(1500, "miles")
  50057. },
  50058. {
  50059. name: "Tera Macro",
  50060. height: math.unit(8000, "miles")
  50061. },
  50062. {
  50063. name: "Tera Macro+",
  50064. height: math.unit(2e5, "miles")
  50065. },
  50066. ]
  50067. ))
  50068. characterMakers.push(() => makeCharacter(
  50069. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50070. {
  50071. front: {
  50072. height: math.unit(6.5, "feet"),
  50073. name: "Front",
  50074. image: {
  50075. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50076. extra: 860/819,
  50077. bottom: 307/1167
  50078. }
  50079. },
  50080. back: {
  50081. height: math.unit(6.5, "feet"),
  50082. name: "Back",
  50083. image: {
  50084. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50085. extra: 880/837,
  50086. bottom: 395/1275
  50087. }
  50088. },
  50089. sleeping: {
  50090. height: math.unit(2.79, "feet"),
  50091. name: "Sleeping",
  50092. image: {
  50093. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50094. extra: 465/383,
  50095. bottom: 263/728
  50096. }
  50097. },
  50098. maw: {
  50099. height: math.unit(2.52, "feet"),
  50100. name: "Maw",
  50101. image: {
  50102. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50103. }
  50104. },
  50105. },
  50106. [
  50107. {
  50108. name: "Normal",
  50109. height: math.unit(6.5, "feet"),
  50110. default: true
  50111. },
  50112. ]
  50113. ))
  50114. characterMakers.push(() => makeCharacter(
  50115. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50116. {
  50117. front: {
  50118. height: math.unit(5, "feet"),
  50119. name: "Front",
  50120. image: {
  50121. source: "./media/characters/nova-nerium/front.svg",
  50122. extra: 1548/1392,
  50123. bottom: 374/1922
  50124. }
  50125. },
  50126. back: {
  50127. height: math.unit(5, "feet"),
  50128. name: "Back",
  50129. image: {
  50130. source: "./media/characters/nova-nerium/back.svg",
  50131. extra: 1658/1468,
  50132. bottom: 257/1915
  50133. }
  50134. },
  50135. },
  50136. [
  50137. {
  50138. name: "Normal",
  50139. height: math.unit(5, "feet"),
  50140. default: true
  50141. },
  50142. ]
  50143. ))
  50144. characterMakers.push(() => makeCharacter(
  50145. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50146. {
  50147. front: {
  50148. height: math.unit(5 + 4/12, "feet"),
  50149. name: "Front",
  50150. image: {
  50151. source: "./media/characters/ashe-pyriph/front.svg",
  50152. extra: 1935/1747,
  50153. bottom: 60/1995
  50154. }
  50155. },
  50156. },
  50157. [
  50158. {
  50159. name: "Normal",
  50160. height: math.unit(5 + 4/12, "feet"),
  50161. default: true
  50162. },
  50163. ]
  50164. ))
  50165. characterMakers.push(() => makeCharacter(
  50166. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50167. {
  50168. front: {
  50169. height: math.unit(8.7, "feet"),
  50170. name: "Front",
  50171. image: {
  50172. source: "./media/characters/flicker-wisp/front.svg",
  50173. extra: 1835/1613,
  50174. bottom: 449/2284
  50175. }
  50176. },
  50177. side: {
  50178. height: math.unit(8.7, "feet"),
  50179. name: "Side",
  50180. image: {
  50181. source: "./media/characters/flicker-wisp/side.svg",
  50182. extra: 1841/1642,
  50183. bottom: 336/2177
  50184. },
  50185. default: true
  50186. },
  50187. maw: {
  50188. height: math.unit(3.35, "feet"),
  50189. name: "Maw",
  50190. image: {
  50191. source: "./media/characters/flicker-wisp/maw.svg",
  50192. extra: 2338/1506,
  50193. bottom: 0/2338
  50194. }
  50195. },
  50196. ovipositor: {
  50197. height: math.unit(4.95, "feet"),
  50198. name: "Ovipositor",
  50199. image: {
  50200. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50201. }
  50202. },
  50203. egg: {
  50204. height: math.unit(0.385, "feet"),
  50205. weight: math.unit(2, "lb"),
  50206. name: "Egg",
  50207. image: {
  50208. source: "./media/characters/flicker-wisp/egg.svg"
  50209. }
  50210. },
  50211. },
  50212. [
  50213. {
  50214. name: "Normal",
  50215. height: math.unit(8.7, "feet"),
  50216. default: true
  50217. },
  50218. ]
  50219. ))
  50220. characterMakers.push(() => makeCharacter(
  50221. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50222. {
  50223. side: {
  50224. height: math.unit(11, "feet"),
  50225. name: "Side",
  50226. image: {
  50227. source: "./media/characters/faefnul/side.svg",
  50228. extra: 1100/1007,
  50229. bottom: 0/1100
  50230. }
  50231. },
  50232. },
  50233. [
  50234. {
  50235. name: "Normal",
  50236. height: math.unit(11, "feet"),
  50237. default: true
  50238. },
  50239. ]
  50240. ))
  50241. characterMakers.push(() => makeCharacter(
  50242. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50243. {
  50244. front: {
  50245. height: math.unit(6 + 2/12, "feet"),
  50246. name: "Front",
  50247. image: {
  50248. source: "./media/characters/shady/front.svg",
  50249. extra: 502/461,
  50250. bottom: 9/511
  50251. }
  50252. },
  50253. kneeling: {
  50254. height: math.unit(4.6, "feet"),
  50255. name: "Kneeling",
  50256. image: {
  50257. source: "./media/characters/shady/kneeling.svg",
  50258. extra: 1328/1219,
  50259. bottom: 117/1445
  50260. }
  50261. },
  50262. maw: {
  50263. height: math.unit(2, "feet"),
  50264. name: "Maw",
  50265. image: {
  50266. source: "./media/characters/shady/maw.svg"
  50267. }
  50268. },
  50269. },
  50270. [
  50271. {
  50272. name: "Nano",
  50273. height: math.unit(1, "mm")
  50274. },
  50275. {
  50276. name: "Micro",
  50277. height: math.unit(12, "mm")
  50278. },
  50279. {
  50280. name: "Tiny",
  50281. height: math.unit(3, "inches")
  50282. },
  50283. {
  50284. name: "Normal",
  50285. height: math.unit(6 + 2/12, "feet"),
  50286. default: true
  50287. },
  50288. {
  50289. name: "Big",
  50290. height: math.unit(15, "feet")
  50291. },
  50292. {
  50293. name: "Macro",
  50294. height: math.unit(150, "feet")
  50295. },
  50296. {
  50297. name: "Titanic",
  50298. height: math.unit(500, "feet")
  50299. },
  50300. ]
  50301. ))
  50302. characterMakers.push(() => makeCharacter(
  50303. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50304. {
  50305. front: {
  50306. height: math.unit(12, "feet"),
  50307. name: "Front",
  50308. image: {
  50309. source: "./media/characters/fenrir/front.svg",
  50310. extra: 968/875,
  50311. bottom: 22/990
  50312. }
  50313. },
  50314. },
  50315. [
  50316. {
  50317. name: "Big",
  50318. height: math.unit(12, "feet"),
  50319. default: true
  50320. },
  50321. ]
  50322. ))
  50323. characterMakers.push(() => makeCharacter(
  50324. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50325. {
  50326. front: {
  50327. height: math.unit(5 + 4/12, "feet"),
  50328. name: "Front",
  50329. image: {
  50330. source: "./media/characters/makar/front.svg",
  50331. extra: 1181/1112,
  50332. bottom: 78/1259
  50333. }
  50334. },
  50335. },
  50336. [
  50337. {
  50338. name: "Normal",
  50339. height: math.unit(5 + 4/12, "feet"),
  50340. default: true
  50341. },
  50342. ]
  50343. ))
  50344. characterMakers.push(() => makeCharacter(
  50345. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50346. {
  50347. front: {
  50348. height: math.unit(5 + 7/12, "feet"),
  50349. name: "Front",
  50350. image: {
  50351. source: "./media/characters/callow/front.svg",
  50352. extra: 1482/1304,
  50353. bottom: 23/1505
  50354. }
  50355. },
  50356. back: {
  50357. height: math.unit(5 + 7/12, "feet"),
  50358. name: "Back",
  50359. image: {
  50360. source: "./media/characters/callow/back.svg",
  50361. extra: 1484/1296,
  50362. bottom: 25/1509
  50363. }
  50364. },
  50365. },
  50366. [
  50367. {
  50368. name: "Micro",
  50369. height: math.unit(3, "inches"),
  50370. default: true
  50371. },
  50372. {
  50373. name: "Normal",
  50374. height: math.unit(5 + 7/12, "feet")
  50375. },
  50376. ]
  50377. ))
  50378. characterMakers.push(() => makeCharacter(
  50379. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50380. {
  50381. front: {
  50382. height: math.unit(6 + 2/12, "feet"),
  50383. name: "Front",
  50384. image: {
  50385. source: "./media/characters/natel/front.svg",
  50386. extra: 1833/1692,
  50387. bottom: 166/1999
  50388. }
  50389. },
  50390. },
  50391. [
  50392. {
  50393. name: "Normal",
  50394. height: math.unit(6 + 2/12, "feet"),
  50395. default: true
  50396. },
  50397. ]
  50398. ))
  50399. characterMakers.push(() => makeCharacter(
  50400. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50401. {
  50402. front: {
  50403. height: math.unit(1.75, "meters"),
  50404. name: "Front",
  50405. image: {
  50406. source: "./media/characters/misu/front.svg",
  50407. extra: 1690/1558,
  50408. bottom: 234/1924
  50409. }
  50410. },
  50411. back: {
  50412. height: math.unit(1.75, "meters"),
  50413. name: "Back",
  50414. image: {
  50415. source: "./media/characters/misu/back.svg",
  50416. extra: 1762/1618,
  50417. bottom: 146/1908
  50418. }
  50419. },
  50420. frontNude: {
  50421. height: math.unit(1.75, "meters"),
  50422. name: "Front (Nude)",
  50423. image: {
  50424. source: "./media/characters/misu/front-nude.svg",
  50425. extra: 1690/1558,
  50426. bottom: 234/1924
  50427. }
  50428. },
  50429. backNude: {
  50430. height: math.unit(1.75, "meters"),
  50431. name: "Back (Nude)",
  50432. image: {
  50433. source: "./media/characters/misu/back-nude.svg",
  50434. extra: 1762/1618,
  50435. bottom: 146/1908
  50436. }
  50437. },
  50438. frontErect: {
  50439. height: math.unit(1.75, "meters"),
  50440. name: "Front (Erect)",
  50441. image: {
  50442. source: "./media/characters/misu/front-erect.svg",
  50443. extra: 1690/1558,
  50444. bottom: 234/1924
  50445. }
  50446. },
  50447. maw: {
  50448. height: math.unit(0.47, "meters"),
  50449. name: "Maw",
  50450. image: {
  50451. source: "./media/characters/misu/maw.svg"
  50452. }
  50453. },
  50454. head: {
  50455. height: math.unit(0.35, "meters"),
  50456. name: "Head",
  50457. image: {
  50458. source: "./media/characters/misu/head.svg"
  50459. }
  50460. },
  50461. rear: {
  50462. height: math.unit(0.47, "meters"),
  50463. name: "Rear",
  50464. image: {
  50465. source: "./media/characters/misu/rear.svg"
  50466. }
  50467. },
  50468. },
  50469. [
  50470. {
  50471. name: "Normal",
  50472. height: math.unit(1.75, "meters")
  50473. },
  50474. {
  50475. name: "Not good for the people",
  50476. height: math.unit(42, "meters")
  50477. },
  50478. {
  50479. name: "Not good for the neighborhood",
  50480. height: math.unit(135, "meters")
  50481. },
  50482. {
  50483. name: "Bit bigger problem",
  50484. height: math.unit(380, "meters"),
  50485. default: true
  50486. },
  50487. {
  50488. name: "Not good for the city",
  50489. height: math.unit(1.5, "km")
  50490. },
  50491. {
  50492. name: "Not good for the county",
  50493. height: math.unit(5.5, "km")
  50494. },
  50495. {
  50496. name: "Not good for the state",
  50497. height: math.unit(25, "km")
  50498. },
  50499. {
  50500. name: "Not good for the country",
  50501. height: math.unit(125, "km")
  50502. },
  50503. {
  50504. name: "Not good for the continent",
  50505. height: math.unit(2100, "km")
  50506. },
  50507. {
  50508. name: "Not good for the planet",
  50509. height: math.unit(35000, "km")
  50510. },
  50511. {
  50512. name: "Just no",
  50513. height: math.unit(8.5e18, "km")
  50514. },
  50515. ]
  50516. ))
  50517. characterMakers.push(() => makeCharacter(
  50518. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50519. {
  50520. front: {
  50521. height: math.unit(6.5, "feet"),
  50522. name: "Front",
  50523. image: {
  50524. source: "./media/characters/poppy/front.svg",
  50525. extra: 1878/1812,
  50526. bottom: 43/1921
  50527. }
  50528. },
  50529. feet: {
  50530. height: math.unit(1.06, "feet"),
  50531. name: "Feet",
  50532. image: {
  50533. source: "./media/characters/poppy/feet.svg",
  50534. extra: 1083/1083,
  50535. bottom: 87/1170
  50536. }
  50537. },
  50538. },
  50539. [
  50540. {
  50541. name: "Human",
  50542. height: math.unit(6.5, "feet")
  50543. },
  50544. {
  50545. name: "Default",
  50546. height: math.unit(300, "feet"),
  50547. default: true
  50548. },
  50549. {
  50550. name: "Huge",
  50551. height: math.unit(850, "feet")
  50552. },
  50553. {
  50554. name: "Mega",
  50555. height: math.unit(8000, "feet")
  50556. },
  50557. {
  50558. name: "Giga",
  50559. height: math.unit(300, "miles")
  50560. },
  50561. ]
  50562. ))
  50563. characterMakers.push(() => makeCharacter(
  50564. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50565. {
  50566. bipedal: {
  50567. height: math.unit(7, "feet"),
  50568. name: "Bipedal",
  50569. image: {
  50570. source: "./media/characters/zener/bipedal.svg",
  50571. extra: 874/805,
  50572. bottom: 109/983
  50573. }
  50574. },
  50575. quadrupedal: {
  50576. height: math.unit(4.64, "feet"),
  50577. name: "Quadrupedal",
  50578. image: {
  50579. source: "./media/characters/zener/quadrupedal.svg",
  50580. extra: 638/507,
  50581. bottom: 190/828
  50582. }
  50583. },
  50584. cock: {
  50585. height: math.unit(18, "inches"),
  50586. name: "Cock",
  50587. image: {
  50588. source: "./media/characters/zener/cock.svg"
  50589. }
  50590. },
  50591. },
  50592. [
  50593. {
  50594. name: "Normal",
  50595. height: math.unit(7, "feet"),
  50596. default: true
  50597. },
  50598. ]
  50599. ))
  50600. characterMakers.push(() => makeCharacter(
  50601. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50602. {
  50603. nude: {
  50604. height: math.unit(5 + 6/12, "feet"),
  50605. name: "Nude",
  50606. image: {
  50607. source: "./media/characters/charlie-dog/nude.svg",
  50608. extra: 768/734,
  50609. bottom: 26/794
  50610. }
  50611. },
  50612. dressed: {
  50613. height: math.unit(5 + 6/12, "feet"),
  50614. name: "Dressed",
  50615. image: {
  50616. source: "./media/characters/charlie-dog/dressed.svg",
  50617. extra: 768/734,
  50618. bottom: 26/794
  50619. }
  50620. },
  50621. },
  50622. [
  50623. {
  50624. name: "Normal",
  50625. height: math.unit(5 + 6/12, "feet"),
  50626. default: true
  50627. },
  50628. ]
  50629. ))
  50630. characterMakers.push(() => makeCharacter(
  50631. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50632. {
  50633. front: {
  50634. height: math.unit(6 + 4/12, "feet"),
  50635. name: "Front",
  50636. image: {
  50637. source: "./media/characters/ir'istrasz/front.svg",
  50638. extra: 1014/977,
  50639. bottom: 65/1079
  50640. }
  50641. },
  50642. back: {
  50643. height: math.unit(6 + 4/12, "feet"),
  50644. name: "Back",
  50645. image: {
  50646. source: "./media/characters/ir'istrasz/back.svg",
  50647. extra: 1024/992,
  50648. bottom: 34/1058
  50649. }
  50650. },
  50651. },
  50652. [
  50653. {
  50654. name: "Normal",
  50655. height: math.unit(6 + 4/12, "feet"),
  50656. default: true
  50657. },
  50658. ]
  50659. ))
  50660. characterMakers.push(() => makeCharacter(
  50661. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50662. {
  50663. front: {
  50664. height: math.unit(5 + 8/12, "feet"),
  50665. name: "Front",
  50666. image: {
  50667. source: "./media/characters/dee-ditto/front.svg",
  50668. extra: 1874/1785,
  50669. bottom: 68/1942
  50670. }
  50671. },
  50672. back: {
  50673. height: math.unit(5 + 8/12, "feet"),
  50674. name: "Back",
  50675. image: {
  50676. source: "./media/characters/dee-ditto/back.svg",
  50677. extra: 1870/1783,
  50678. bottom: 77/1947
  50679. }
  50680. },
  50681. },
  50682. [
  50683. {
  50684. name: "Normal",
  50685. height: math.unit(5 + 8/12, "feet"),
  50686. default: true
  50687. },
  50688. ]
  50689. ))
  50690. characterMakers.push(() => makeCharacter(
  50691. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50692. {
  50693. front: {
  50694. height: math.unit(7 + 6/12, "feet"),
  50695. name: "Front",
  50696. image: {
  50697. source: "./media/characters/fey/front.svg",
  50698. extra: 995/979,
  50699. bottom: 30/1025
  50700. }
  50701. },
  50702. back: {
  50703. height: math.unit(7 + 6/12, "feet"),
  50704. name: "Back",
  50705. image: {
  50706. source: "./media/characters/fey/back.svg",
  50707. extra: 1079/1008,
  50708. bottom: 5/1084
  50709. }
  50710. },
  50711. dressed: {
  50712. height: math.unit(7 + 6/12, "feet"),
  50713. name: "Dressed",
  50714. image: {
  50715. source: "./media/characters/fey/dressed.svg",
  50716. extra: 995/979,
  50717. bottom: 30/1025
  50718. }
  50719. },
  50720. },
  50721. [
  50722. {
  50723. name: "Normal",
  50724. height: math.unit(7 + 6/12, "feet"),
  50725. default: true
  50726. },
  50727. ]
  50728. ))
  50729. characterMakers.push(() => makeCharacter(
  50730. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50731. {
  50732. standing: {
  50733. height: math.unit(17, "feet"),
  50734. name: "Standing",
  50735. image: {
  50736. source: "./media/characters/aster/standing.svg",
  50737. extra: 1798/1598,
  50738. bottom: 117/1915
  50739. }
  50740. },
  50741. },
  50742. [
  50743. {
  50744. name: "Normal",
  50745. height: math.unit(17, "feet"),
  50746. default: true
  50747. },
  50748. {
  50749. name: "Homewrecker",
  50750. height: math.unit(95, "feet")
  50751. },
  50752. {
  50753. name: "Planet Devourer",
  50754. height: math.unit(1008000, "miles")
  50755. },
  50756. ]
  50757. ))
  50758. characterMakers.push(() => makeCharacter(
  50759. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50760. {
  50761. front: {
  50762. height: math.unit(6 + 5/12, "feet"),
  50763. weight: math.unit(265, "lb"),
  50764. name: "Front",
  50765. image: {
  50766. source: "./media/characters/devon-childs/front.svg",
  50767. extra: 1795/1721,
  50768. bottom: 41/1836
  50769. }
  50770. },
  50771. side: {
  50772. height: math.unit(6 + 5/12, "feet"),
  50773. weight: math.unit(265, "lb"),
  50774. name: "Side",
  50775. image: {
  50776. source: "./media/characters/devon-childs/side.svg",
  50777. extra: 1812/1738,
  50778. bottom: 30/1842
  50779. }
  50780. },
  50781. back: {
  50782. height: math.unit(6 + 5/12, "feet"),
  50783. weight: math.unit(265, "lb"),
  50784. name: "Back",
  50785. image: {
  50786. source: "./media/characters/devon-childs/back.svg",
  50787. extra: 1808/1735,
  50788. bottom: 23/1831
  50789. }
  50790. },
  50791. hand: {
  50792. height: math.unit(1.464, "feet"),
  50793. name: "Hand",
  50794. image: {
  50795. source: "./media/characters/devon-childs/hand.svg"
  50796. }
  50797. },
  50798. foot: {
  50799. height: math.unit(1.6, "feet"),
  50800. name: "Foot",
  50801. image: {
  50802. source: "./media/characters/devon-childs/foot.svg"
  50803. }
  50804. },
  50805. },
  50806. [
  50807. {
  50808. name: "Micro",
  50809. height: math.unit(7, "cm")
  50810. },
  50811. {
  50812. name: "Normal",
  50813. height: math.unit(6 + 5/12, "feet"),
  50814. default: true
  50815. },
  50816. {
  50817. name: "Macro",
  50818. height: math.unit(154, "feet")
  50819. },
  50820. ]
  50821. ))
  50822. characterMakers.push(() => makeCharacter(
  50823. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50824. {
  50825. front: {
  50826. height: math.unit(6, "feet"),
  50827. weight: math.unit(180, "lb"),
  50828. name: "Front",
  50829. image: {
  50830. source: "./media/characters/lydemox-vir/front.svg",
  50831. extra: 1632/1435,
  50832. bottom: 58/1690
  50833. }
  50834. },
  50835. frontSFW: {
  50836. height: math.unit(6, "feet"),
  50837. weight: math.unit(180, "lb"),
  50838. name: "Front (SFW)",
  50839. image: {
  50840. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50841. extra: 1632/1435,
  50842. bottom: 58/1690
  50843. }
  50844. },
  50845. back: {
  50846. height: math.unit(6, "feet"),
  50847. weight: math.unit(180, "lb"),
  50848. name: "Back",
  50849. image: {
  50850. source: "./media/characters/lydemox-vir/back.svg",
  50851. extra: 1593/1408,
  50852. bottom: 31/1624
  50853. }
  50854. },
  50855. paw: {
  50856. height: math.unit(1.85, "feet"),
  50857. name: "Paw",
  50858. image: {
  50859. source: "./media/characters/lydemox-vir/paw.svg"
  50860. }
  50861. },
  50862. dick: {
  50863. height: math.unit(1.8, "feet"),
  50864. name: "Dick",
  50865. image: {
  50866. source: "./media/characters/lydemox-vir/dick.svg"
  50867. }
  50868. },
  50869. },
  50870. [
  50871. {
  50872. name: "Macro",
  50873. height: math.unit(100, "feet"),
  50874. default: true
  50875. },
  50876. {
  50877. name: "Teramacro",
  50878. height: math.unit(1, "earth")
  50879. },
  50880. {
  50881. name: "Planetary",
  50882. height: math.unit(20, "earths")
  50883. },
  50884. ]
  50885. ))
  50886. characterMakers.push(() => makeCharacter(
  50887. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50888. {
  50889. front: {
  50890. height: math.unit(15 + 8/12, "feet"),
  50891. weight: math.unit(1237, "kg"),
  50892. name: "Front",
  50893. image: {
  50894. source: "./media/characters/mia/front.svg",
  50895. extra: 1573/1446,
  50896. bottom: 58/1631
  50897. }
  50898. },
  50899. },
  50900. [
  50901. {
  50902. name: "Small",
  50903. height: math.unit(9 + 5/12, "feet")
  50904. },
  50905. {
  50906. name: "Normal",
  50907. height: math.unit(15 + 8/12, "feet"),
  50908. default: true
  50909. },
  50910. ]
  50911. ))
  50912. characterMakers.push(() => makeCharacter(
  50913. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50914. {
  50915. front: {
  50916. height: math.unit(10 + 6/12, "feet"),
  50917. weight: math.unit(1.3, "tons"),
  50918. name: "Front",
  50919. image: {
  50920. source: "./media/characters/mr-graves/front.svg",
  50921. extra: 1779/1695,
  50922. bottom: 198/1977
  50923. }
  50924. },
  50925. },
  50926. [
  50927. {
  50928. name: "Normal",
  50929. height: math.unit(10 + 6 /12, "feet"),
  50930. default: true
  50931. },
  50932. ]
  50933. ))
  50934. characterMakers.push(() => makeCharacter(
  50935. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50936. {
  50937. dressedFront: {
  50938. height: math.unit(5 + 8/12, "feet"),
  50939. weight: math.unit(125, "lb"),
  50940. name: "Dressed (Front)",
  50941. image: {
  50942. source: "./media/characters/jess/dressed-front.svg",
  50943. extra: 1176/1152,
  50944. bottom: 42/1218
  50945. }
  50946. },
  50947. dressedSide: {
  50948. height: math.unit(5 + 8/12, "feet"),
  50949. weight: math.unit(125, "lb"),
  50950. name: "Dressed (Side)",
  50951. image: {
  50952. source: "./media/characters/jess/dressed-side.svg",
  50953. extra: 1204/1190,
  50954. bottom: 6/1210
  50955. }
  50956. },
  50957. nudeFront: {
  50958. height: math.unit(5 + 8/12, "feet"),
  50959. weight: math.unit(125, "lb"),
  50960. name: "Nude (Front)",
  50961. image: {
  50962. source: "./media/characters/jess/nude-front.svg",
  50963. extra: 1176/1152,
  50964. bottom: 42/1218
  50965. }
  50966. },
  50967. nudeSide: {
  50968. height: math.unit(5 + 8/12, "feet"),
  50969. weight: math.unit(125, "lb"),
  50970. name: "Nude (Side)",
  50971. image: {
  50972. source: "./media/characters/jess/nude-side.svg",
  50973. extra: 1204/1190,
  50974. bottom: 6/1210
  50975. }
  50976. },
  50977. organsFront: {
  50978. height: math.unit(2.83799342105, "feet"),
  50979. name: "Organs (Front)",
  50980. image: {
  50981. source: "./media/characters/jess/organs-front.svg"
  50982. }
  50983. },
  50984. organsSide: {
  50985. height: math.unit(2.64225290474, "feet"),
  50986. name: "Organs (Side)",
  50987. image: {
  50988. source: "./media/characters/jess/organs-side.svg"
  50989. }
  50990. },
  50991. digestiveTractFront: {
  50992. height: math.unit(2.8106580871, "feet"),
  50993. name: "Digestive Tract (Front)",
  50994. image: {
  50995. source: "./media/characters/jess/digestive-tract-front.svg"
  50996. }
  50997. },
  50998. digestiveTractSide: {
  50999. height: math.unit(2.54365045014, "feet"),
  51000. name: "Digestive Tract (Side)",
  51001. image: {
  51002. source: "./media/characters/jess/digestive-tract-side.svg"
  51003. }
  51004. },
  51005. respiratorySystemFront: {
  51006. height: math.unit(1.11196233456, "feet"),
  51007. name: "Respiratory System (Front)",
  51008. image: {
  51009. source: "./media/characters/jess/respiratory-system-front.svg"
  51010. }
  51011. },
  51012. respiratorySystemSide: {
  51013. height: math.unit(0.89327966297, "feet"),
  51014. name: "Respiratory System (Side)",
  51015. image: {
  51016. source: "./media/characters/jess/respiratory-system-side.svg"
  51017. }
  51018. },
  51019. urinaryTractFront: {
  51020. height: math.unit(1.16126356186, "feet"),
  51021. name: "Urinary Tract (Front)",
  51022. image: {
  51023. source: "./media/characters/jess/urinary-tract-front.svg"
  51024. }
  51025. },
  51026. urinaryTractSide: {
  51027. height: math.unit(1.20910039627, "feet"),
  51028. name: "Urinary Tract (Side)",
  51029. image: {
  51030. source: "./media/characters/jess/urinary-tract-side.svg"
  51031. }
  51032. },
  51033. reproductiveOrgansFront: {
  51034. height: math.unit(0.48422591566, "feet"),
  51035. name: "Reproductive Organs (Front)",
  51036. image: {
  51037. source: "./media/characters/jess/reproductive-organs-front.svg"
  51038. }
  51039. },
  51040. reproductiveOrgansSide: {
  51041. height: math.unit(0.61553314481, "feet"),
  51042. name: "Reproductive Organs (Side)",
  51043. image: {
  51044. source: "./media/characters/jess/reproductive-organs-side.svg"
  51045. }
  51046. },
  51047. breastsFront: {
  51048. height: math.unit(0.47690395121, "feet"),
  51049. name: "Breasts (Front)",
  51050. image: {
  51051. source: "./media/characters/jess/breasts-front.svg"
  51052. }
  51053. },
  51054. breastsSide: {
  51055. height: math.unit(0.30556998307, "feet"),
  51056. name: "Breasts (Side)",
  51057. image: {
  51058. source: "./media/characters/jess/breasts-side.svg"
  51059. }
  51060. },
  51061. heartFront: {
  51062. height: math.unit(0.53011022622, "feet"),
  51063. name: "Heart (Front)",
  51064. image: {
  51065. source: "./media/characters/jess/heart-front.svg"
  51066. }
  51067. },
  51068. heartSide: {
  51069. height: math.unit(0.51790695213, "feet"),
  51070. name: "Heart (Side)",
  51071. image: {
  51072. source: "./media/characters/jess/heart-side.svg"
  51073. }
  51074. },
  51075. earsAndNoseFront: {
  51076. height: math.unit(0.29385483995, "feet"),
  51077. name: "Ears and Nose (Front)",
  51078. image: {
  51079. source: "./media/characters/jess/ears-and-nose-front.svg"
  51080. }
  51081. },
  51082. earsAndNoseSide: {
  51083. height: math.unit(0.18109658741, "feet"),
  51084. name: "Ears and Nose (Side)",
  51085. image: {
  51086. source: "./media/characters/jess/ears-and-nose-side.svg"
  51087. }
  51088. },
  51089. },
  51090. [
  51091. {
  51092. name: "Normal",
  51093. height: math.unit(5 + 8/12, "feet"),
  51094. default: true
  51095. },
  51096. ]
  51097. ))
  51098. characterMakers.push(() => makeCharacter(
  51099. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51100. {
  51101. front: {
  51102. height: math.unit(6, "feet"),
  51103. weight: math.unit(6.64467e-7, "grams"),
  51104. name: "Front",
  51105. image: {
  51106. source: "./media/characters/wimpering/front.svg",
  51107. extra: 597/587,
  51108. bottom: 34/631
  51109. }
  51110. },
  51111. },
  51112. [
  51113. {
  51114. name: "Micro",
  51115. height: math.unit(0.4, "mm"),
  51116. default: true
  51117. },
  51118. ]
  51119. ))
  51120. characterMakers.push(() => makeCharacter(
  51121. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51122. {
  51123. front: {
  51124. height: math.unit(5 + 2/12, "feet"),
  51125. weight: math.unit(110, "lb"),
  51126. name: "Front",
  51127. image: {
  51128. source: "./media/characters/keltre/front.svg",
  51129. extra: 1099/1057,
  51130. bottom: 22/1121
  51131. }
  51132. },
  51133. back: {
  51134. height: math.unit(5 + 2/12, "feet"),
  51135. weight: math.unit(110, "lb"),
  51136. name: "Back",
  51137. image: {
  51138. source: "./media/characters/keltre/back.svg",
  51139. extra: 1095/1053,
  51140. bottom: 17/1112
  51141. }
  51142. },
  51143. dressed: {
  51144. height: math.unit(5 + 2/12, "feet"),
  51145. weight: math.unit(110, "lb"),
  51146. name: "Dressed",
  51147. image: {
  51148. source: "./media/characters/keltre/dressed.svg",
  51149. extra: 1099/1057,
  51150. bottom: 22/1121
  51151. }
  51152. },
  51153. winter: {
  51154. height: math.unit(5 + 2/12, "feet"),
  51155. weight: math.unit(110, "lb"),
  51156. name: "Winter",
  51157. image: {
  51158. source: "./media/characters/keltre/winter.svg",
  51159. extra: 1099/1057,
  51160. bottom: 22/1121
  51161. }
  51162. },
  51163. head: {
  51164. height: math.unit(1.61 * 0.86, "feet"),
  51165. name: "Head",
  51166. image: {
  51167. source: "./media/characters/keltre/head.svg",
  51168. extra: 534/421,
  51169. bottom: 0/534
  51170. }
  51171. },
  51172. hand: {
  51173. height: math.unit(1.3 * 0.86, "feet"),
  51174. name: "Hand",
  51175. image: {
  51176. source: "./media/characters/keltre/hand.svg"
  51177. }
  51178. },
  51179. foot: {
  51180. height: math.unit(1.8 * 0.86, "feet"),
  51181. name: "Foot",
  51182. image: {
  51183. source: "./media/characters/keltre/foot.svg"
  51184. }
  51185. },
  51186. },
  51187. [
  51188. {
  51189. name: "Fine",
  51190. height: math.unit(1, "inch")
  51191. },
  51192. {
  51193. name: "Dimnutive",
  51194. height: math.unit(4, "inches")
  51195. },
  51196. {
  51197. name: "Tiny",
  51198. height: math.unit(1, "foot")
  51199. },
  51200. {
  51201. name: "Small",
  51202. height: math.unit(3, "feet")
  51203. },
  51204. {
  51205. name: "Normal",
  51206. height: math.unit(5 + 2/12, "feet"),
  51207. default: true
  51208. },
  51209. ]
  51210. ))
  51211. characterMakers.push(() => makeCharacter(
  51212. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51213. {
  51214. front: {
  51215. height: math.unit(6 + 2/12, "feet"),
  51216. name: "Front",
  51217. image: {
  51218. source: "./media/characters/nox/front.svg",
  51219. extra: 1917/1830,
  51220. bottom: 74/1991
  51221. }
  51222. },
  51223. back: {
  51224. height: math.unit(6 + 2/12, "feet"),
  51225. name: "Back",
  51226. image: {
  51227. source: "./media/characters/nox/back.svg",
  51228. extra: 1896/1815,
  51229. bottom: 21/1917
  51230. }
  51231. },
  51232. head: {
  51233. height: math.unit(1.1, "feet"),
  51234. name: "Head",
  51235. image: {
  51236. source: "./media/characters/nox/head.svg",
  51237. extra: 874/704,
  51238. bottom: 0/874
  51239. }
  51240. },
  51241. tattoo: {
  51242. height: math.unit(0.729, "feet"),
  51243. name: "Tattoo",
  51244. image: {
  51245. source: "./media/characters/nox/tattoo.svg"
  51246. }
  51247. },
  51248. },
  51249. [
  51250. {
  51251. name: "Normal",
  51252. height: math.unit(6 + 2/12, "feet")
  51253. },
  51254. {
  51255. name: "Gigamacro",
  51256. height: math.unit(2, "earths"),
  51257. default: true
  51258. },
  51259. {
  51260. name: "Cosmic",
  51261. height: math.unit(867, "yottameters")
  51262. },
  51263. ]
  51264. ))
  51265. characterMakers.push(() => makeCharacter(
  51266. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51267. {
  51268. front: {
  51269. height: math.unit(6, "feet"),
  51270. weight: math.unit(150, "lb"),
  51271. name: "Front",
  51272. image: {
  51273. source: "./media/characters/caspian/front.svg",
  51274. extra: 1443/1359,
  51275. bottom: 0/1443
  51276. }
  51277. },
  51278. back: {
  51279. height: math.unit(6, "feet"),
  51280. weight: math.unit(150, "lb"),
  51281. name: "Back",
  51282. image: {
  51283. source: "./media/characters/caspian/back.svg",
  51284. extra: 1379/1309,
  51285. bottom: 0/1379
  51286. }
  51287. },
  51288. head: {
  51289. height: math.unit(0.9, "feet"),
  51290. name: "Head",
  51291. image: {
  51292. source: "./media/characters/caspian/head.svg",
  51293. extra: 692/492,
  51294. bottom: 0/692
  51295. }
  51296. },
  51297. headAlt: {
  51298. height: math.unit(0.95, "feet"),
  51299. name: "Head (Alt)",
  51300. image: {
  51301. source: "./media/characters/caspian/head-alt.svg",
  51302. extra: 668/508,
  51303. bottom: 0/668
  51304. }
  51305. },
  51306. hand: {
  51307. height: math.unit(0.8, "feet"),
  51308. name: "Hand",
  51309. image: {
  51310. source: "./media/characters/caspian/hand.svg"
  51311. }
  51312. },
  51313. paw: {
  51314. height: math.unit(0.95, "feet"),
  51315. name: "Paw",
  51316. image: {
  51317. source: "./media/characters/caspian/paw.svg"
  51318. }
  51319. },
  51320. },
  51321. [
  51322. {
  51323. name: "Normal",
  51324. height: math.unit(162, "feet"),
  51325. default: true
  51326. },
  51327. ]
  51328. ))
  51329. characterMakers.push(() => makeCharacter(
  51330. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51331. {
  51332. front: {
  51333. height: math.unit(6, "feet"),
  51334. name: "Front",
  51335. image: {
  51336. source: "./media/characters/myra-aisling/front.svg",
  51337. extra: 1268/1166,
  51338. bottom: 73/1341
  51339. }
  51340. },
  51341. back: {
  51342. height: math.unit(6, "feet"),
  51343. name: "Back",
  51344. image: {
  51345. source: "./media/characters/myra-aisling/back.svg",
  51346. extra: 1249/1149,
  51347. bottom: 79/1328
  51348. }
  51349. },
  51350. dressed: {
  51351. height: math.unit(6, "feet"),
  51352. name: "Dressed",
  51353. image: {
  51354. source: "./media/characters/myra-aisling/dressed.svg",
  51355. extra: 1290/1189,
  51356. bottom: 47/1337
  51357. }
  51358. },
  51359. hand: {
  51360. height: math.unit(1.1, "feet"),
  51361. name: "Hand",
  51362. image: {
  51363. source: "./media/characters/myra-aisling/hand.svg"
  51364. }
  51365. },
  51366. paw: {
  51367. height: math.unit(1.23, "feet"),
  51368. name: "Paw",
  51369. image: {
  51370. source: "./media/characters/myra-aisling/paw.svg"
  51371. }
  51372. },
  51373. },
  51374. [
  51375. {
  51376. name: "Normal",
  51377. height: math.unit(160, "feet"),
  51378. default: true
  51379. },
  51380. ]
  51381. ))
  51382. characterMakers.push(() => makeCharacter(
  51383. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51384. {
  51385. front: {
  51386. height: math.unit(6, "feet"),
  51387. name: "Front",
  51388. image: {
  51389. source: "./media/characters/tenley-sidero/front.svg",
  51390. extra: 1365/1276,
  51391. bottom: 47/1412
  51392. }
  51393. },
  51394. back: {
  51395. height: math.unit(6, "feet"),
  51396. name: "Back",
  51397. image: {
  51398. source: "./media/characters/tenley-sidero/back.svg",
  51399. extra: 1383/1283,
  51400. bottom: 35/1418
  51401. }
  51402. },
  51403. dressed: {
  51404. height: math.unit(6, "feet"),
  51405. name: "Dressed",
  51406. image: {
  51407. source: "./media/characters/tenley-sidero/dressed.svg",
  51408. extra: 1364/1275,
  51409. bottom: 42/1406
  51410. }
  51411. },
  51412. head: {
  51413. height: math.unit(1.47, "feet"),
  51414. name: "Head",
  51415. image: {
  51416. source: "./media/characters/tenley-sidero/head.svg",
  51417. extra: 610/490,
  51418. bottom: 0/610
  51419. }
  51420. },
  51421. },
  51422. [
  51423. {
  51424. name: "Normal",
  51425. height: math.unit(154, "feet"),
  51426. default: true
  51427. },
  51428. ]
  51429. ))
  51430. characterMakers.push(() => makeCharacter(
  51431. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51432. {
  51433. front: {
  51434. height: math.unit(5, "inches"),
  51435. name: "Front",
  51436. image: {
  51437. source: "./media/characters/mallory/front.svg",
  51438. extra: 1919/1678,
  51439. bottom: 29/1948
  51440. }
  51441. },
  51442. hand: {
  51443. height: math.unit(0.73, "inches"),
  51444. name: "Hand",
  51445. image: {
  51446. source: "./media/characters/mallory/hand.svg"
  51447. }
  51448. },
  51449. paw: {
  51450. height: math.unit(0.68, "inches"),
  51451. name: "Paw",
  51452. image: {
  51453. source: "./media/characters/mallory/paw.svg"
  51454. }
  51455. },
  51456. },
  51457. [
  51458. {
  51459. name: "Small",
  51460. height: math.unit(5, "inches"),
  51461. default: true
  51462. },
  51463. ]
  51464. ))
  51465. characterMakers.push(() => makeCharacter(
  51466. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51467. {
  51468. naked: {
  51469. height: math.unit(6, "feet"),
  51470. name: "Naked",
  51471. image: {
  51472. source: "./media/characters/mab/naked.svg",
  51473. extra: 1855/1757,
  51474. bottom: 208/2063
  51475. }
  51476. },
  51477. outside: {
  51478. height: math.unit(6, "feet"),
  51479. name: "Outside",
  51480. image: {
  51481. source: "./media/characters/mab/outside.svg",
  51482. extra: 1855/1757,
  51483. bottom: 208/2063
  51484. }
  51485. },
  51486. party: {
  51487. height: math.unit(6, "feet"),
  51488. name: "Party",
  51489. image: {
  51490. source: "./media/characters/mab/party.svg",
  51491. extra: 1855/1757,
  51492. bottom: 208/2063
  51493. }
  51494. },
  51495. },
  51496. [
  51497. {
  51498. name: "Normal",
  51499. height: math.unit(165, "feet"),
  51500. default: true
  51501. },
  51502. ]
  51503. ))
  51504. characterMakers.push(() => makeCharacter(
  51505. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51506. {
  51507. feral: {
  51508. height: math.unit(12, "feet"),
  51509. weight: math.unit(20000, "lb"),
  51510. name: "Side",
  51511. image: {
  51512. source: "./media/characters/winter/feral.svg",
  51513. extra: 1286/943,
  51514. bottom: 112/1398
  51515. },
  51516. form: "feral",
  51517. default: true
  51518. },
  51519. feralNsfw: {
  51520. height: math.unit(12, "feet"),
  51521. weight: math.unit(20000, "lb"),
  51522. name: "Side (NSFW)",
  51523. image: {
  51524. source: "./media/characters/winter/feral-nsfw.svg",
  51525. extra: 1286/943,
  51526. bottom: 112/1398
  51527. },
  51528. form: "feral"
  51529. },
  51530. dick: {
  51531. height: math.unit(3.79, "feet"),
  51532. name: "Dick",
  51533. image: {
  51534. source: "./media/characters/winter/dick.svg"
  51535. },
  51536. form: "feral"
  51537. },
  51538. anthro: {
  51539. height: math.unit(12, "feet"),
  51540. weight: math.unit(10, "tons"),
  51541. name: "Anthro",
  51542. image: {
  51543. source: "./media/characters/winter/anthro.svg",
  51544. extra: 1701/1553,
  51545. bottom: 64/1765
  51546. },
  51547. form: "anthro",
  51548. default: true
  51549. },
  51550. },
  51551. [
  51552. {
  51553. name: "Big",
  51554. height: math.unit(12, "feet"),
  51555. default: true,
  51556. form: "feral"
  51557. },
  51558. {
  51559. name: "Big",
  51560. height: math.unit(12, "feet"),
  51561. default: true,
  51562. form: "anthro"
  51563. },
  51564. ],
  51565. {
  51566. "feral": {
  51567. name: "Feral",
  51568. default: true
  51569. },
  51570. "anthro": {
  51571. name: "Anthro"
  51572. }
  51573. }
  51574. ))
  51575. characterMakers.push(() => makeCharacter(
  51576. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51577. {
  51578. front: {
  51579. height: math.unit(4.1, "inches"),
  51580. name: "Front",
  51581. image: {
  51582. source: "./media/characters/alto/front.svg",
  51583. extra: 736/627,
  51584. bottom: 90/826
  51585. }
  51586. },
  51587. },
  51588. [
  51589. {
  51590. name: "Normal",
  51591. height: math.unit(4.1, "inches"),
  51592. default: true
  51593. },
  51594. ]
  51595. ))
  51596. characterMakers.push(() => makeCharacter(
  51597. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51598. {
  51599. sitting: {
  51600. height: math.unit(3, "feet"),
  51601. name: "Sitting",
  51602. image: {
  51603. source: "./media/characters/ratstrid-v/sitting.svg",
  51604. extra: 355/310,
  51605. bottom: 136/491
  51606. }
  51607. },
  51608. },
  51609. [
  51610. {
  51611. name: "Normal",
  51612. height: math.unit(3, "feet"),
  51613. default: true
  51614. },
  51615. ]
  51616. ))
  51617. characterMakers.push(() => makeCharacter(
  51618. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51619. {
  51620. back: {
  51621. height: math.unit(6, "feet"),
  51622. weight: math.unit(450, "lb"),
  51623. name: "Back",
  51624. image: {
  51625. source: "./media/characters/siz/back.svg",
  51626. extra: 1449/1274,
  51627. bottom: 13/1462
  51628. }
  51629. },
  51630. },
  51631. [
  51632. {
  51633. name: "Smallest",
  51634. height: math.unit(18 + 3/12, "feet")
  51635. },
  51636. {
  51637. name: "Modest",
  51638. height: math.unit(56 + 8/12, "feet"),
  51639. default: true
  51640. },
  51641. {
  51642. name: "Largest",
  51643. height: math.unit(3590, "feet")
  51644. },
  51645. ]
  51646. ))
  51647. characterMakers.push(() => makeCharacter(
  51648. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51649. {
  51650. front: {
  51651. height: math.unit(5 + 9/12, "feet"),
  51652. weight: math.unit(150, "lb"),
  51653. name: "Front",
  51654. image: {
  51655. source: "./media/characters/ven/front.svg",
  51656. extra: 1372/1320,
  51657. bottom: 73/1445
  51658. }
  51659. },
  51660. side: {
  51661. height: math.unit(5 + 9/12, "feet"),
  51662. weight: math.unit(1150, "lb"),
  51663. name: "Side",
  51664. image: {
  51665. source: "./media/characters/ven/side.svg",
  51666. extra: 1119/1070,
  51667. bottom: 42/1161
  51668. },
  51669. default: true
  51670. },
  51671. },
  51672. [
  51673. {
  51674. name: "Normal",
  51675. height: math.unit(5 + 9/12, "feet"),
  51676. default: true
  51677. },
  51678. ]
  51679. ))
  51680. characterMakers.push(() => makeCharacter(
  51681. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51682. {
  51683. front: {
  51684. height: math.unit(12, "feet"),
  51685. weight: math.unit(1000, "kg"),
  51686. name: "Front",
  51687. image: {
  51688. source: "./media/characters/maple/front.svg",
  51689. extra: 1193/1081,
  51690. bottom: 22/1215
  51691. }
  51692. },
  51693. },
  51694. [
  51695. {
  51696. name: "Compressed",
  51697. height: math.unit(7, "feet")
  51698. },
  51699. {
  51700. name: "Normal",
  51701. height: math.unit(12, "feet"),
  51702. default: true
  51703. },
  51704. ]
  51705. ))
  51706. characterMakers.push(() => makeCharacter(
  51707. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51708. {
  51709. front: {
  51710. height: math.unit(9, "feet"),
  51711. weight: math.unit(1500, "lb"),
  51712. name: "Front",
  51713. image: {
  51714. source: "./media/characters/nora/front.svg",
  51715. extra: 1348/1286,
  51716. bottom: 218/1566
  51717. }
  51718. },
  51719. erect: {
  51720. height: math.unit(9, "feet"),
  51721. weight: math.unit(11500, "lb"),
  51722. name: "Erect",
  51723. image: {
  51724. source: "./media/characters/nora/erect.svg",
  51725. extra: 1488/1433,
  51726. bottom: 133/1621
  51727. }
  51728. },
  51729. },
  51730. [
  51731. {
  51732. name: "Normal",
  51733. height: math.unit(9, "feet"),
  51734. default: true
  51735. },
  51736. ]
  51737. ))
  51738. characterMakers.push(() => makeCharacter(
  51739. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51740. {
  51741. front: {
  51742. height: math.unit(25, "feet"),
  51743. weight: math.unit(27500, "lb"),
  51744. name: "Front",
  51745. image: {
  51746. source: "./media/characters/north-caudin/front.svg",
  51747. extra: 1184/1082,
  51748. bottom: 23/1207
  51749. }
  51750. },
  51751. },
  51752. [
  51753. {
  51754. name: "Compressed",
  51755. height: math.unit(10, "feet")
  51756. },
  51757. {
  51758. name: "Normal",
  51759. height: math.unit(25, "feet"),
  51760. default: true
  51761. },
  51762. ]
  51763. ))
  51764. characterMakers.push(() => makeCharacter(
  51765. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51766. {
  51767. front: {
  51768. height: math.unit(9, "feet"),
  51769. weight: math.unit(1250, "lb"),
  51770. name: "Front",
  51771. image: {
  51772. source: "./media/characters/merrian/front.svg",
  51773. extra: 2393/2304,
  51774. bottom: 40/2433
  51775. }
  51776. },
  51777. },
  51778. [
  51779. {
  51780. name: "Normal",
  51781. height: math.unit(9, "feet"),
  51782. default: true
  51783. },
  51784. ]
  51785. ))
  51786. characterMakers.push(() => makeCharacter(
  51787. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51788. {
  51789. front: {
  51790. height: math.unit(9, "feet"),
  51791. weight: math.unit(1000, "lb"),
  51792. name: "Front",
  51793. image: {
  51794. source: "./media/characters/hazel/front.svg",
  51795. extra: 2351/2298,
  51796. bottom: 38/2389
  51797. }
  51798. },
  51799. },
  51800. [
  51801. {
  51802. name: "Normal",
  51803. height: math.unit(9, "feet"),
  51804. default: true
  51805. },
  51806. ]
  51807. ))
  51808. characterMakers.push(() => makeCharacter(
  51809. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51810. {
  51811. front: {
  51812. height: math.unit(13, "feet"),
  51813. weight: math.unit(3200, "lb"),
  51814. name: "Front",
  51815. image: {
  51816. source: "./media/characters/emma/front.svg",
  51817. extra: 2263/2029,
  51818. bottom: 68/2331
  51819. }
  51820. },
  51821. },
  51822. [
  51823. {
  51824. name: "Normal",
  51825. height: math.unit(13, "feet"),
  51826. default: true
  51827. },
  51828. ]
  51829. ))
  51830. characterMakers.push(() => makeCharacter(
  51831. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51832. {
  51833. front: {
  51834. height: math.unit(11 + 9/12, "feet"),
  51835. weight: math.unit(2500, "lb"),
  51836. name: "Front",
  51837. image: {
  51838. source: "./media/characters/ilumina/front.svg",
  51839. extra: 2248/2209,
  51840. bottom: 164/2412
  51841. }
  51842. },
  51843. },
  51844. [
  51845. {
  51846. name: "Normal",
  51847. height: math.unit(11 + 9/12, "feet"),
  51848. default: true
  51849. },
  51850. ]
  51851. ))
  51852. characterMakers.push(() => makeCharacter(
  51853. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51854. {
  51855. front: {
  51856. height: math.unit(8 + 10/12, "feet"),
  51857. weight: math.unit(1350, "lb"),
  51858. name: "Front",
  51859. image: {
  51860. source: "./media/characters/moonshine/front.svg",
  51861. extra: 2395/2288,
  51862. bottom: 40/2435
  51863. }
  51864. },
  51865. },
  51866. [
  51867. {
  51868. name: "Normal",
  51869. height: math.unit(8 + 10/12, "feet"),
  51870. default: true
  51871. },
  51872. ]
  51873. ))
  51874. characterMakers.push(() => makeCharacter(
  51875. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51876. {
  51877. front: {
  51878. height: math.unit(14, "feet"),
  51879. weight: math.unit(3400, "lb"),
  51880. name: "Front",
  51881. image: {
  51882. source: "./media/characters/aletia/front.svg",
  51883. extra: 1185/1052,
  51884. bottom: 21/1206
  51885. }
  51886. },
  51887. },
  51888. [
  51889. {
  51890. name: "Compressed",
  51891. height: math.unit(8, "feet")
  51892. },
  51893. {
  51894. name: "Normal",
  51895. height: math.unit(14, "feet"),
  51896. default: true
  51897. },
  51898. ]
  51899. ))
  51900. characterMakers.push(() => makeCharacter(
  51901. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51902. {
  51903. front: {
  51904. height: math.unit(17, "feet"),
  51905. weight: math.unit(6500, "lb"),
  51906. name: "Front",
  51907. image: {
  51908. source: "./media/characters/deidra/front.svg",
  51909. extra: 1201/1081,
  51910. bottom: 16/1217
  51911. }
  51912. },
  51913. },
  51914. [
  51915. {
  51916. name: "Compressed",
  51917. height: math.unit(9 + 6/12, "feet")
  51918. },
  51919. {
  51920. name: "Normal",
  51921. height: math.unit(17, "feet"),
  51922. default: true
  51923. },
  51924. ]
  51925. ))
  51926. characterMakers.push(() => makeCharacter(
  51927. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51928. {
  51929. front: {
  51930. height: math.unit(7 + 4/12, "feet"),
  51931. weight: math.unit(280, "lb"),
  51932. name: "Front",
  51933. image: {
  51934. source: "./media/characters/freki-yrmori/front.svg",
  51935. extra: 1286/1182,
  51936. bottom: 29/1315
  51937. }
  51938. },
  51939. maw: {
  51940. height: math.unit(0.9, "feet"),
  51941. name: "Maw",
  51942. image: {
  51943. source: "./media/characters/freki-yrmori/maw.svg"
  51944. }
  51945. },
  51946. },
  51947. [
  51948. {
  51949. name: "Normal",
  51950. height: math.unit(7 + 4/12, "feet"),
  51951. default: true
  51952. },
  51953. {
  51954. name: "Macro",
  51955. height: math.unit(38.5, "meters")
  51956. },
  51957. ]
  51958. ))
  51959. characterMakers.push(() => makeCharacter(
  51960. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51961. {
  51962. side: {
  51963. height: math.unit(47.2, "meters"),
  51964. weight: math.unit(10000, "tons"),
  51965. name: "Side",
  51966. image: {
  51967. source: "./media/characters/aetherios/side.svg",
  51968. extra: 2363/642,
  51969. bottom: 221/2584
  51970. }
  51971. },
  51972. top: {
  51973. height: math.unit(240, "meters"),
  51974. weight: math.unit(10000, "tons"),
  51975. name: "Top",
  51976. image: {
  51977. source: "./media/characters/aetherios/top.svg"
  51978. }
  51979. },
  51980. bottom: {
  51981. height: math.unit(240, "meters"),
  51982. weight: math.unit(10000, "tons"),
  51983. name: "Bottom",
  51984. image: {
  51985. source: "./media/characters/aetherios/bottom.svg"
  51986. }
  51987. },
  51988. head: {
  51989. height: math.unit(38.6, "meters"),
  51990. name: "Head",
  51991. image: {
  51992. source: "./media/characters/aetherios/head.svg",
  51993. extra: 1335/1112,
  51994. bottom: 0/1335
  51995. }
  51996. },
  51997. front: {
  51998. height: math.unit(29, "meters"),
  51999. name: "Front",
  52000. image: {
  52001. source: "./media/characters/aetherios/front.svg",
  52002. extra: 1266/953,
  52003. bottom: 158/1424
  52004. }
  52005. },
  52006. maw: {
  52007. height: math.unit(16.37, "meters"),
  52008. name: "Maw",
  52009. image: {
  52010. source: "./media/characters/aetherios/maw.svg",
  52011. extra: 748/637,
  52012. bottom: 0/748
  52013. },
  52014. extraAttributes: {
  52015. preyCapacity: {
  52016. name: "Capacity",
  52017. power: 3,
  52018. type: "volume",
  52019. base: math.unit(1000, "people")
  52020. },
  52021. tongueSize: {
  52022. name: "Tongue Size",
  52023. power: 2,
  52024. type: "area",
  52025. base: math.unit(21, "m^2")
  52026. }
  52027. }
  52028. },
  52029. forepaw: {
  52030. height: math.unit(18, "meters"),
  52031. name: "Forepaw",
  52032. image: {
  52033. source: "./media/characters/aetherios/forepaw.svg"
  52034. }
  52035. },
  52036. hindpaw: {
  52037. height: math.unit(23, "meters"),
  52038. name: "Hindpaw",
  52039. image: {
  52040. source: "./media/characters/aetherios/hindpaw.svg"
  52041. }
  52042. },
  52043. genitals: {
  52044. height: math.unit(42, "meters"),
  52045. name: "Genitals",
  52046. image: {
  52047. source: "./media/characters/aetherios/genitals.svg"
  52048. }
  52049. },
  52050. },
  52051. [
  52052. {
  52053. name: "Normal",
  52054. height: math.unit(47.2, "meters"),
  52055. default: true
  52056. },
  52057. {
  52058. name: "Macro",
  52059. height: math.unit(160, "meters")
  52060. },
  52061. {
  52062. name: "Mega",
  52063. height: math.unit(1.87, "km")
  52064. },
  52065. {
  52066. name: "Giga",
  52067. height: math.unit(40000, "km")
  52068. },
  52069. {
  52070. name: "Stellar",
  52071. height: math.unit(158000000, "km")
  52072. },
  52073. {
  52074. name: "Cosmic",
  52075. height: math.unit(9.46e12, "km")
  52076. },
  52077. ]
  52078. ))
  52079. characterMakers.push(() => makeCharacter(
  52080. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52081. {
  52082. front: {
  52083. height: math.unit(5 + 4/12, "feet"),
  52084. weight: math.unit(80, "lb"),
  52085. name: "Front",
  52086. image: {
  52087. source: "./media/characters/mizu-gieeg/front.svg",
  52088. extra: 850/709,
  52089. bottom: 52/902
  52090. }
  52091. },
  52092. back: {
  52093. height: math.unit(5 + 4/12, "feet"),
  52094. weight: math.unit(80, "lb"),
  52095. name: "Back",
  52096. image: {
  52097. source: "./media/characters/mizu-gieeg/back.svg",
  52098. extra: 882/745,
  52099. bottom: 25/907
  52100. }
  52101. },
  52102. },
  52103. [
  52104. {
  52105. name: "Normal",
  52106. height: math.unit(5 + 4/12, "feet"),
  52107. default: true
  52108. },
  52109. ]
  52110. ))
  52111. characterMakers.push(() => makeCharacter(
  52112. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52113. {
  52114. front: {
  52115. height: math.unit(6, "feet"),
  52116. name: "Front",
  52117. image: {
  52118. source: "./media/characters/roselle-st-papier/front.svg",
  52119. extra: 1430/1280,
  52120. bottom: 37/1467
  52121. }
  52122. },
  52123. back: {
  52124. height: math.unit(6, "feet"),
  52125. name: "Back",
  52126. image: {
  52127. source: "./media/characters/roselle-st-papier/back.svg",
  52128. extra: 1491/1296,
  52129. bottom: 23/1514
  52130. }
  52131. },
  52132. ear: {
  52133. height: math.unit(1.26, "feet"),
  52134. name: "Ear",
  52135. image: {
  52136. source: "./media/characters/roselle-st-papier/ear.svg"
  52137. }
  52138. },
  52139. },
  52140. [
  52141. {
  52142. name: "Normal",
  52143. height: math.unit(150, "feet"),
  52144. default: true
  52145. },
  52146. ]
  52147. ))
  52148. characterMakers.push(() => makeCharacter(
  52149. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52150. {
  52151. front: {
  52152. height: math.unit(1, "inches"),
  52153. name: "Front",
  52154. image: {
  52155. source: "./media/characters/valargent/front.svg",
  52156. extra: 1825/1694,
  52157. bottom: 62/1887
  52158. }
  52159. },
  52160. back: {
  52161. height: math.unit(1, "inches"),
  52162. name: "Back",
  52163. image: {
  52164. source: "./media/characters/valargent/back.svg",
  52165. extra: 1775/1682,
  52166. bottom: 88/1863
  52167. }
  52168. },
  52169. },
  52170. [
  52171. {
  52172. name: "Micro",
  52173. height: math.unit(1, "inch"),
  52174. default: true
  52175. },
  52176. ]
  52177. ))
  52178. characterMakers.push(() => makeCharacter(
  52179. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52180. {
  52181. front: {
  52182. height: math.unit(3.4, "meters"),
  52183. name: "Front",
  52184. image: {
  52185. source: "./media/characters/zarina/front.svg",
  52186. extra: 1733/1425,
  52187. bottom: 93/1826
  52188. }
  52189. },
  52190. squatting: {
  52191. height: math.unit(2.14, "meters"),
  52192. name: "Squatting",
  52193. image: {
  52194. source: "./media/characters/zarina/squatting.svg",
  52195. extra: 1073/788,
  52196. bottom: 63/1136
  52197. }
  52198. },
  52199. back: {
  52200. height: math.unit(2.14, "meters"),
  52201. name: "Back",
  52202. image: {
  52203. source: "./media/characters/zarina/back.svg",
  52204. extra: 1128/885,
  52205. bottom: 0/1128
  52206. }
  52207. },
  52208. },
  52209. [
  52210. {
  52211. name: "Normal",
  52212. height: math.unit(3.4, "meters"),
  52213. default: true
  52214. },
  52215. {
  52216. name: "Big",
  52217. height: math.unit(5, "meters")
  52218. },
  52219. {
  52220. name: "Macro",
  52221. height: math.unit(110, "meters")
  52222. },
  52223. ]
  52224. ))
  52225. characterMakers.push(() => makeCharacter(
  52226. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52227. {
  52228. front: {
  52229. height: math.unit(7, "feet"),
  52230. name: "Front",
  52231. image: {
  52232. source: "./media/characters/ventus-astro-fox/front.svg",
  52233. extra: 1792/1623,
  52234. bottom: 28/1820
  52235. }
  52236. },
  52237. back: {
  52238. height: math.unit(7, "feet"),
  52239. name: "Back",
  52240. image: {
  52241. source: "./media/characters/ventus-astro-fox/back.svg",
  52242. extra: 1789/1620,
  52243. bottom: 31/1820
  52244. }
  52245. },
  52246. outfit: {
  52247. height: math.unit(7, "feet"),
  52248. name: "Outfit",
  52249. image: {
  52250. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52251. extra: 1054/925,
  52252. bottom: 15/1069
  52253. }
  52254. },
  52255. head: {
  52256. height: math.unit(1.12, "feet"),
  52257. name: "Head",
  52258. image: {
  52259. source: "./media/characters/ventus-astro-fox/head.svg",
  52260. extra: 866/504,
  52261. bottom: 0/866
  52262. }
  52263. },
  52264. hand: {
  52265. height: math.unit(1, "feet"),
  52266. name: "Hand",
  52267. image: {
  52268. source: "./media/characters/ventus-astro-fox/hand.svg"
  52269. }
  52270. },
  52271. paw: {
  52272. height: math.unit(1.5, "feet"),
  52273. name: "Paw",
  52274. image: {
  52275. source: "./media/characters/ventus-astro-fox/paw.svg"
  52276. }
  52277. },
  52278. },
  52279. [
  52280. {
  52281. name: "Normal",
  52282. height: math.unit(7, "feet"),
  52283. default: true
  52284. },
  52285. {
  52286. name: "Macro",
  52287. height: math.unit(200, "feet")
  52288. },
  52289. {
  52290. name: "Cosmic",
  52291. height: math.unit(3, "universes")
  52292. },
  52293. ]
  52294. ))
  52295. characterMakers.push(() => makeCharacter(
  52296. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52297. {
  52298. front: {
  52299. height: math.unit(3, "meters"),
  52300. weight: math.unit(7000, "lb"),
  52301. name: "Front",
  52302. image: {
  52303. source: "./media/characters/core-t/front.svg",
  52304. extra: 5729/4941,
  52305. bottom: 1129/6858
  52306. }
  52307. },
  52308. },
  52309. [
  52310. {
  52311. name: "Big",
  52312. height: math.unit(3, "meters"),
  52313. default: true
  52314. },
  52315. ]
  52316. ))
  52317. characterMakers.push(() => makeCharacter(
  52318. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52319. {
  52320. normal: {
  52321. height: math.unit(6 + 6/12, "feet"),
  52322. weight: math.unit(275, "lb"),
  52323. name: "Front",
  52324. image: {
  52325. source: "./media/characters/cadbunny/normal.svg",
  52326. extra: 1129/947,
  52327. bottom: 93/1222
  52328. },
  52329. default: true,
  52330. form: "normal"
  52331. },
  52332. gigantamax: {
  52333. height: math.unit(26, "feet"),
  52334. weight: math.unit(16000, "lb"),
  52335. name: "Front",
  52336. image: {
  52337. source: "./media/characters/cadbunny/gigantamax.svg",
  52338. extra: 1133/944,
  52339. bottom: 90/1223
  52340. },
  52341. default: true,
  52342. form: "gigantamax"
  52343. },
  52344. },
  52345. [
  52346. {
  52347. name: "Normal",
  52348. height: math.unit(6 + 6/12, "feet"),
  52349. default: true,
  52350. form: "normal"
  52351. },
  52352. {
  52353. name: "Small",
  52354. height: math.unit(26, "feet"),
  52355. default: true,
  52356. form: "gigantamax"
  52357. },
  52358. {
  52359. name: "Large",
  52360. height: math.unit(78, "feet"),
  52361. form: "gigantamax"
  52362. },
  52363. ],
  52364. {
  52365. "normal": {
  52366. name: "Normal",
  52367. default: true
  52368. },
  52369. "gigantamax": {
  52370. name: "Gigantamax"
  52371. }
  52372. }
  52373. ))
  52374. characterMakers.push(() => makeCharacter(
  52375. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52376. {
  52377. anthroFront: {
  52378. height: math.unit(8, "feet"),
  52379. weight: math.unit(300, "lb"),
  52380. name: "Front",
  52381. image: {
  52382. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52383. extra: 1272/1176,
  52384. bottom: 53/1325
  52385. },
  52386. form: "anthro",
  52387. default: true
  52388. },
  52389. feralSide: {
  52390. height: math.unit(4, "feet"),
  52391. weight: math.unit(250, "lb"),
  52392. name: "Side",
  52393. image: {
  52394. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52395. extra: 731/621,
  52396. bottom: 0/731
  52397. },
  52398. form: "feral",
  52399. default: true
  52400. },
  52401. },
  52402. [
  52403. {
  52404. name: "Regular",
  52405. height: math.unit(8, "feet"),
  52406. form: "anthro"
  52407. },
  52408. {
  52409. name: "Macro",
  52410. height: math.unit(250, "feet"),
  52411. form: "anthro",
  52412. default: true
  52413. },
  52414. {
  52415. name: "Regular",
  52416. height: math.unit(4, "feet"),
  52417. form: "feral"
  52418. },
  52419. {
  52420. name: "Macro",
  52421. height: math.unit(125, "feet"),
  52422. form: "feral",
  52423. default: true
  52424. },
  52425. ],
  52426. {
  52427. "anthro": {
  52428. name: "Anthro",
  52429. default: true
  52430. },
  52431. "feral": {
  52432. name: "Feral",
  52433. },
  52434. }
  52435. ))
  52436. characterMakers.push(() => makeCharacter(
  52437. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52438. {
  52439. front: {
  52440. height: math.unit(11 + 10/12, "feet"),
  52441. weight: math.unit(1587, "kg"),
  52442. name: "Front",
  52443. image: {
  52444. source: "./media/characters/maple-javira-dragon/front.svg",
  52445. extra: 1136/744,
  52446. bottom: 73/1209
  52447. }
  52448. },
  52449. side: {
  52450. height: math.unit(11 + 10/12, "feet"),
  52451. weight: math.unit(1587, "kg"),
  52452. name: "Side",
  52453. image: {
  52454. source: "./media/characters/maple-javira-dragon/side.svg",
  52455. extra: 712/505,
  52456. bottom: 17/729
  52457. }
  52458. },
  52459. head: {
  52460. height: math.unit(8.05, "feet"),
  52461. name: "Head",
  52462. image: {
  52463. source: "./media/characters/maple-javira-dragon/head.svg",
  52464. extra: 1420/1344,
  52465. bottom: 0/1420
  52466. }
  52467. },
  52468. },
  52469. [
  52470. {
  52471. name: "Normal",
  52472. height: math.unit(11 + 10/12, "feet"),
  52473. default: true
  52474. },
  52475. ]
  52476. ))
  52477. characterMakers.push(() => makeCharacter(
  52478. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52479. {
  52480. front: {
  52481. height: math.unit(117, "cm"),
  52482. weight: math.unit(50, "kg"),
  52483. name: "Front",
  52484. image: {
  52485. source: "./media/characters/sonia-wyverntail/front.svg",
  52486. extra: 708/592,
  52487. bottom: 25/733
  52488. }
  52489. },
  52490. },
  52491. [
  52492. {
  52493. name: "Normal",
  52494. height: math.unit(117, "cm"),
  52495. default: true
  52496. },
  52497. ]
  52498. ))
  52499. characterMakers.push(() => makeCharacter(
  52500. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52501. {
  52502. front: {
  52503. height: math.unit(6 + 5/12, "feet"),
  52504. name: "Front",
  52505. image: {
  52506. source: "./media/characters/micah/front.svg",
  52507. extra: 1758/1546,
  52508. bottom: 214/1972
  52509. }
  52510. },
  52511. },
  52512. [
  52513. {
  52514. name: "Normal",
  52515. height: math.unit(6 + 5/12, "feet"),
  52516. default: true
  52517. },
  52518. ]
  52519. ))
  52520. characterMakers.push(() => makeCharacter(
  52521. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52522. {
  52523. front: {
  52524. height: math.unit(1.75, "meters"),
  52525. weight: math.unit(100, "kg"),
  52526. name: "Front",
  52527. image: {
  52528. source: "./media/characters/zarya/front.svg",
  52529. extra: 741/735,
  52530. bottom: 44/785
  52531. },
  52532. extraAttributes: {
  52533. "tailLength": {
  52534. name: "Tail Length",
  52535. power: 1,
  52536. type: "length",
  52537. base: math.unit(180, "cm")
  52538. },
  52539. "pawLength": {
  52540. name: "Paw Length",
  52541. power: 1,
  52542. type: "length",
  52543. base: math.unit(31, "cm")
  52544. },
  52545. }
  52546. },
  52547. side: {
  52548. height: math.unit(1.75, "meters"),
  52549. weight: math.unit(100, "kg"),
  52550. name: "Side",
  52551. image: {
  52552. source: "./media/characters/zarya/side.svg",
  52553. extra: 776/770,
  52554. bottom: 17/793
  52555. },
  52556. extraAttributes: {
  52557. "tailLength": {
  52558. name: "Tail Length",
  52559. power: 1,
  52560. type: "length",
  52561. base: math.unit(180, "cm")
  52562. },
  52563. "pawLength": {
  52564. name: "Paw Length",
  52565. power: 1,
  52566. type: "length",
  52567. base: math.unit(31, "cm")
  52568. },
  52569. }
  52570. },
  52571. back: {
  52572. height: math.unit(1.75, "meters"),
  52573. weight: math.unit(100, "kg"),
  52574. name: "Back",
  52575. image: {
  52576. source: "./media/characters/zarya/back.svg",
  52577. extra: 741/735,
  52578. bottom: 44/785
  52579. },
  52580. extraAttributes: {
  52581. "tailLength": {
  52582. name: "Tail Length",
  52583. power: 1,
  52584. type: "length",
  52585. base: math.unit(180, "cm")
  52586. },
  52587. "pawLength": {
  52588. name: "Paw Length",
  52589. power: 1,
  52590. type: "length",
  52591. base: math.unit(31, "cm")
  52592. },
  52593. }
  52594. },
  52595. frontNoTail: {
  52596. height: math.unit(1.75, "meters"),
  52597. weight: math.unit(100, "kg"),
  52598. name: "Front (No Tail)",
  52599. image: {
  52600. source: "./media/characters/zarya/front-no-tail.svg",
  52601. extra: 741/735,
  52602. bottom: 44/785
  52603. },
  52604. extraAttributes: {
  52605. "tailLength": {
  52606. name: "Tail Length",
  52607. power: 1,
  52608. type: "length",
  52609. base: math.unit(180, "cm")
  52610. },
  52611. "pawLength": {
  52612. name: "Paw Length",
  52613. power: 1,
  52614. type: "length",
  52615. base: math.unit(31, "cm")
  52616. },
  52617. }
  52618. },
  52619. dressed: {
  52620. height: math.unit(1.75, "meters"),
  52621. weight: math.unit(100, "kg"),
  52622. name: "Dressed",
  52623. image: {
  52624. source: "./media/characters/zarya/dressed.svg",
  52625. extra: 683/672,
  52626. bottom: 79/762
  52627. },
  52628. extraAttributes: {
  52629. "tailLength": {
  52630. name: "Tail Length",
  52631. power: 1,
  52632. type: "length",
  52633. base: math.unit(180, "cm")
  52634. },
  52635. "pawLength": {
  52636. name: "Paw Length",
  52637. power: 1,
  52638. type: "length",
  52639. base: math.unit(31, "cm")
  52640. },
  52641. }
  52642. },
  52643. },
  52644. [
  52645. {
  52646. name: "Micro",
  52647. height: math.unit(5, "cm")
  52648. },
  52649. {
  52650. name: "Normal",
  52651. height: math.unit(1.75, "meters"),
  52652. default: true
  52653. },
  52654. {
  52655. name: "Macro",
  52656. height: math.unit(122, "meters")
  52657. },
  52658. ]
  52659. ))
  52660. characterMakers.push(() => makeCharacter(
  52661. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52662. {
  52663. front: {
  52664. height: math.unit(7.5, "feet"),
  52665. name: "Front",
  52666. image: {
  52667. source: "./media/characters/sven-hatisson/front.svg",
  52668. extra: 917/857,
  52669. bottom: 42/959
  52670. }
  52671. },
  52672. back: {
  52673. height: math.unit(7.5, "feet"),
  52674. name: "Back",
  52675. image: {
  52676. source: "./media/characters/sven-hatisson/back.svg",
  52677. extra: 903/856,
  52678. bottom: 15/918
  52679. }
  52680. },
  52681. },
  52682. [
  52683. {
  52684. name: "Base Height",
  52685. height: math.unit(7.5, "feet")
  52686. },
  52687. {
  52688. name: "Usual Height",
  52689. height: math.unit(13.5, "feet"),
  52690. default: true
  52691. },
  52692. {
  52693. name: "Smaller Macro",
  52694. height: math.unit(85, "feet")
  52695. },
  52696. {
  52697. name: "Moderate Macro",
  52698. height: math.unit(320, "feet")
  52699. },
  52700. {
  52701. name: "Large Macro",
  52702. height: math.unit(1000, "feet")
  52703. },
  52704. {
  52705. name: "Largest Size",
  52706. height: math.unit(2, "miles")
  52707. },
  52708. ]
  52709. ))
  52710. characterMakers.push(() => makeCharacter(
  52711. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52712. {
  52713. side: {
  52714. height: math.unit(1.8, "meters"),
  52715. weight: math.unit(275, "kg"),
  52716. name: "Side",
  52717. image: {
  52718. source: "./media/characters/terra/side.svg",
  52719. extra: 1273/1147,
  52720. bottom: 0/1273
  52721. }
  52722. },
  52723. },
  52724. [
  52725. {
  52726. name: "Normal",
  52727. height: math.unit(16.2, "meters"),
  52728. default: true
  52729. },
  52730. ]
  52731. ))
  52732. characterMakers.push(() => makeCharacter(
  52733. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52734. {
  52735. borzoiFront: {
  52736. height: math.unit(6 + 9/12, "feet"),
  52737. name: "Front",
  52738. image: {
  52739. source: "./media/characters/rae/borzoi-front.svg",
  52740. extra: 1161/1098,
  52741. bottom: 31/1192
  52742. },
  52743. form: "borzoi",
  52744. default: true
  52745. },
  52746. werewolfFront: {
  52747. height: math.unit(8 + 7/12, "feet"),
  52748. name: "Front",
  52749. image: {
  52750. source: "./media/characters/rae/werewolf-front.svg",
  52751. extra: 1411/1334,
  52752. bottom: 127/1538
  52753. },
  52754. form: "werewolf",
  52755. default: true
  52756. },
  52757. },
  52758. [
  52759. {
  52760. name: "Normal",
  52761. height: math.unit(6 + 9/12, "feet"),
  52762. default: true,
  52763. form: "borzoi"
  52764. },
  52765. {
  52766. name: "Normal",
  52767. height: math.unit(8 + 7/12, "feet"),
  52768. default: true,
  52769. form: "werewolf"
  52770. },
  52771. ],
  52772. {
  52773. "borzoi": {
  52774. name: "Borzoi",
  52775. default: true
  52776. },
  52777. "werewolf": {
  52778. name: "Werewolf",
  52779. },
  52780. }
  52781. ))
  52782. characterMakers.push(() => makeCharacter(
  52783. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52784. {
  52785. front: {
  52786. height: math.unit(8 + 7/12, "feet"),
  52787. weight: math.unit(482, "lb"),
  52788. name: "Front",
  52789. image: {
  52790. source: "./media/characters/kit/front.svg",
  52791. extra: 1247/1103,
  52792. bottom: 41/1288
  52793. }
  52794. },
  52795. back: {
  52796. height: math.unit(8 + 7/12, "feet"),
  52797. weight: math.unit(482, "lb"),
  52798. name: "Back",
  52799. image: {
  52800. source: "./media/characters/kit/back.svg",
  52801. extra: 1252/1123,
  52802. bottom: 21/1273
  52803. }
  52804. },
  52805. paw: {
  52806. height: math.unit(1.46, "feet"),
  52807. name: "Paw",
  52808. image: {
  52809. source: "./media/characters/kit/paw.svg"
  52810. }
  52811. },
  52812. },
  52813. [
  52814. {
  52815. name: "Normal",
  52816. height: math.unit(2.61, "meters"),
  52817. default: true
  52818. },
  52819. {
  52820. name: "\"Tall\"",
  52821. height: math.unit(8.21, "meters")
  52822. },
  52823. {
  52824. name: "Tall",
  52825. height: math.unit(19.6, "meters")
  52826. },
  52827. {
  52828. name: "Very Tall",
  52829. height: math.unit(57.91, "meters")
  52830. },
  52831. {
  52832. name: "Semi-Macro",
  52833. height: math.unit(138.64, "meters")
  52834. },
  52835. {
  52836. name: "Macro",
  52837. height: math.unit(831.99, "meters")
  52838. },
  52839. {
  52840. name: "EX-Macro",
  52841. height: math.unit(96451121, "meters")
  52842. },
  52843. {
  52844. name: "S1-Omnipotent",
  52845. height: math.unit(4.42074e+9, "meters")
  52846. },
  52847. {
  52848. name: "S2-Omnipotent",
  52849. height: math.unit(9.42074e+17, "meters")
  52850. },
  52851. {
  52852. name: "Omnipotent",
  52853. height: math.unit(4.23112e+24, "meters")
  52854. },
  52855. {
  52856. name: "Hypergod",
  52857. height: math.unit(5.05176e+27, "meters")
  52858. },
  52859. {
  52860. name: "Hypergod-EX",
  52861. height: math.unit(9.45532e+49, "meters")
  52862. },
  52863. {
  52864. name: "Hypergod-SP",
  52865. height: math.unit(9.45532e+195, "meters")
  52866. },
  52867. ]
  52868. ))
  52869. characterMakers.push(() => makeCharacter(
  52870. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52871. {
  52872. side: {
  52873. height: math.unit(0.6, "meters"),
  52874. weight: math.unit(24, "kg"),
  52875. name: "Side",
  52876. image: {
  52877. source: "./media/characters/celeste/side.svg",
  52878. extra: 810/517,
  52879. bottom: 53/863
  52880. }
  52881. },
  52882. },
  52883. [
  52884. {
  52885. name: "Velociraptor",
  52886. height: math.unit(0.6, "meters"),
  52887. default: true
  52888. },
  52889. {
  52890. name: "Utahraptor",
  52891. height: math.unit(1.8, "meters")
  52892. },
  52893. {
  52894. name: "Gallimimus",
  52895. height: math.unit(4.0, "meters")
  52896. },
  52897. {
  52898. name: "Large",
  52899. height: math.unit(20, "meters")
  52900. },
  52901. {
  52902. name: "Planetary",
  52903. height: math.unit(50, "megameters")
  52904. },
  52905. {
  52906. name: "Stellar",
  52907. height: math.unit(1.5, "gigameters")
  52908. },
  52909. {
  52910. name: "Galactic",
  52911. height: math.unit(100, "exameters")
  52912. },
  52913. ]
  52914. ))
  52915. characterMakers.push(() => makeCharacter(
  52916. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52917. {
  52918. front: {
  52919. height: math.unit(6, "feet"),
  52920. weight: math.unit(210, "lb"),
  52921. name: "Front",
  52922. image: {
  52923. source: "./media/characters/glacia/front.svg",
  52924. extra: 958/901,
  52925. bottom: 45/1003
  52926. }
  52927. },
  52928. },
  52929. [
  52930. {
  52931. name: "Macro",
  52932. height: math.unit(1000, "meters"),
  52933. default: true
  52934. },
  52935. ]
  52936. ))
  52937. characterMakers.push(() => makeCharacter(
  52938. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52939. {
  52940. front: {
  52941. height: math.unit(4, "meters"),
  52942. name: "Front",
  52943. image: {
  52944. source: "./media/characters/giri/front.svg",
  52945. extra: 966/894,
  52946. bottom: 21/987
  52947. }
  52948. },
  52949. },
  52950. [
  52951. {
  52952. name: "Normal",
  52953. height: math.unit(4, "meters"),
  52954. default: true
  52955. },
  52956. ]
  52957. ))
  52958. characterMakers.push(() => makeCharacter(
  52959. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52960. {
  52961. back: {
  52962. height: math.unit(4, "feet"),
  52963. weight: math.unit(37, "lb"),
  52964. name: "Back",
  52965. image: {
  52966. source: "./media/characters/tin/back.svg",
  52967. extra: 845/780,
  52968. bottom: 28/873
  52969. }
  52970. },
  52971. },
  52972. [
  52973. {
  52974. name: "Normal",
  52975. height: math.unit(4, "feet"),
  52976. default: true
  52977. },
  52978. ]
  52979. ))
  52980. characterMakers.push(() => makeCharacter(
  52981. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52982. {
  52983. front: {
  52984. height: math.unit(25, "feet"),
  52985. name: "Front",
  52986. image: {
  52987. source: "./media/characters/cadenza-vivace/front.svg",
  52988. extra: 1842/1578,
  52989. bottom: 30/1872
  52990. }
  52991. },
  52992. },
  52993. [
  52994. {
  52995. name: "Macro",
  52996. height: math.unit(25, "feet"),
  52997. default: true
  52998. },
  52999. ]
  53000. ))
  53001. characterMakers.push(() => makeCharacter(
  53002. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53003. {
  53004. front: {
  53005. height: math.unit(10, "feet"),
  53006. weight: math.unit(625, "kg"),
  53007. name: "Front",
  53008. image: {
  53009. source: "./media/characters/zain/front.svg",
  53010. extra: 1682/1498,
  53011. bottom: 223/1905
  53012. }
  53013. },
  53014. back: {
  53015. height: math.unit(10, "feet"),
  53016. weight: math.unit(625, "kg"),
  53017. name: "Back",
  53018. image: {
  53019. source: "./media/characters/zain/back.svg",
  53020. extra: 1814/1657,
  53021. bottom: 152/1966
  53022. }
  53023. },
  53024. head: {
  53025. height: math.unit(10, "feet"),
  53026. weight: math.unit(625, "kg"),
  53027. name: "Head",
  53028. image: {
  53029. source: "./media/characters/zain/head.svg",
  53030. extra: 1059/762,
  53031. bottom: 0/1059
  53032. }
  53033. },
  53034. },
  53035. [
  53036. {
  53037. name: "Normal",
  53038. height: math.unit(10, "feet"),
  53039. default: true
  53040. },
  53041. ]
  53042. ))
  53043. characterMakers.push(() => makeCharacter(
  53044. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53045. {
  53046. front: {
  53047. height: math.unit(6 + 5/12, "feet"),
  53048. weight: math.unit(750, "lb"),
  53049. name: "Front",
  53050. image: {
  53051. source: "./media/characters/ruchex/front.svg",
  53052. extra: 877/820,
  53053. bottom: 17/894
  53054. },
  53055. extraAttributes: {
  53056. "width": {
  53057. name: "Width",
  53058. power: 1,
  53059. type: "length",
  53060. base: math.unit(4.757, "feet")
  53061. },
  53062. }
  53063. },
  53064. },
  53065. [
  53066. {
  53067. name: "Normal",
  53068. height: math.unit(6 + 5/12, "feet"),
  53069. default: true
  53070. },
  53071. ]
  53072. ))
  53073. characterMakers.push(() => makeCharacter(
  53074. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53075. {
  53076. dressedFront: {
  53077. height: math.unit(191, "cm"),
  53078. weight: math.unit(80, "kg"),
  53079. name: "Front",
  53080. image: {
  53081. source: "./media/characters/buster/dressed-front.svg",
  53082. extra: 1022/973,
  53083. bottom: 69/1091
  53084. }
  53085. },
  53086. dressedBack: {
  53087. height: math.unit(191, "cm"),
  53088. weight: math.unit(80, "kg"),
  53089. name: "Back",
  53090. image: {
  53091. source: "./media/characters/buster/dressed-back.svg",
  53092. extra: 1018/970,
  53093. bottom: 55/1073
  53094. }
  53095. },
  53096. nudeFront: {
  53097. height: math.unit(191, "cm"),
  53098. weight: math.unit(80, "kg"),
  53099. name: "Front (Nude)",
  53100. image: {
  53101. source: "./media/characters/buster/nude-front.svg",
  53102. extra: 1022/973,
  53103. bottom: 69/1091
  53104. }
  53105. },
  53106. nudeBack: {
  53107. height: math.unit(191, "cm"),
  53108. weight: math.unit(80, "kg"),
  53109. name: "Back (Nude)",
  53110. image: {
  53111. source: "./media/characters/buster/nude-back.svg",
  53112. extra: 1018/970,
  53113. bottom: 55/1073
  53114. }
  53115. },
  53116. dick: {
  53117. height: math.unit(2.59, "feet"),
  53118. name: "Dick",
  53119. image: {
  53120. source: "./media/characters/buster/dick.svg"
  53121. }
  53122. },
  53123. ass: {
  53124. height: math.unit(1.2, "feet"),
  53125. name: "Ass",
  53126. image: {
  53127. source: "./media/characters/buster/ass.svg"
  53128. }
  53129. },
  53130. },
  53131. [
  53132. {
  53133. name: "Normal",
  53134. height: math.unit(191, "cm"),
  53135. default: true
  53136. },
  53137. ]
  53138. ))
  53139. characterMakers.push(() => makeCharacter(
  53140. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53141. {
  53142. side: {
  53143. height: math.unit(8.1, "feet"),
  53144. weight: math.unit(3500, "lb"),
  53145. name: "Side",
  53146. image: {
  53147. source: "./media/characters/sonya/side.svg",
  53148. extra: 1730/1317,
  53149. bottom: 86/1816
  53150. }
  53151. },
  53152. },
  53153. [
  53154. {
  53155. name: "Normal",
  53156. height: math.unit(8.1, "feet"),
  53157. default: true
  53158. },
  53159. ]
  53160. ))
  53161. characterMakers.push(() => makeCharacter(
  53162. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53163. {
  53164. front: {
  53165. height: math.unit(6, "feet"),
  53166. weight: math.unit(150, "lb"),
  53167. name: "Front",
  53168. image: {
  53169. source: "./media/characters/cadence-andrysiak/front.svg",
  53170. extra: 1164/1121,
  53171. bottom: 60/1224
  53172. }
  53173. },
  53174. back: {
  53175. height: math.unit(6, "feet"),
  53176. weight: math.unit(150, "lb"),
  53177. name: "Back",
  53178. image: {
  53179. source: "./media/characters/cadence-andrysiak/back.svg",
  53180. extra: 1200/1165,
  53181. bottom: 9/1209
  53182. }
  53183. },
  53184. dressed: {
  53185. height: math.unit(6, "feet"),
  53186. weight: math.unit(150, "lb"),
  53187. name: "Dressed",
  53188. image: {
  53189. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53190. extra: 1164/1121,
  53191. bottom: 60/1224
  53192. }
  53193. },
  53194. },
  53195. [
  53196. {
  53197. name: "Micro",
  53198. height: math.unit(1, "mm")
  53199. },
  53200. {
  53201. name: "Normal",
  53202. height: math.unit(6, "feet"),
  53203. default: true
  53204. },
  53205. ]
  53206. ))
  53207. characterMakers.push(() => makeCharacter(
  53208. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53209. {
  53210. front: {
  53211. height: math.unit(60, "inches"),
  53212. weight: math.unit(16, "lb"),
  53213. preyCapacity: math.unit(80, "liters"),
  53214. name: "Front",
  53215. image: {
  53216. source: "./media/characters/penny-lynx/front.svg",
  53217. extra: 1959/1769,
  53218. bottom: 49/2008
  53219. }
  53220. },
  53221. },
  53222. [
  53223. {
  53224. name: "Nokia",
  53225. height: math.unit(2, "inches")
  53226. },
  53227. {
  53228. name: "Desktop",
  53229. height: math.unit(24, "inches")
  53230. },
  53231. {
  53232. name: "TV",
  53233. height: math.unit(60, "inches")
  53234. },
  53235. {
  53236. name: "Jumbotron",
  53237. height: math.unit(12, "feet")
  53238. },
  53239. {
  53240. name: "Billboard",
  53241. height: math.unit(48, "feet"),
  53242. default: true
  53243. },
  53244. {
  53245. name: "IMAX",
  53246. height: math.unit(96, "feet")
  53247. },
  53248. {
  53249. name: "SINGULARITY",
  53250. height: math.unit(864938, "miles")
  53251. },
  53252. ]
  53253. ))
  53254. characterMakers.push(() => makeCharacter(
  53255. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53256. {
  53257. front: {
  53258. height: math.unit(5 + 4/12, "feet"),
  53259. weight: math.unit(230, "lb"),
  53260. name: "Front",
  53261. image: {
  53262. source: "./media/characters/sukebe/front.svg",
  53263. extra: 2130/2038,
  53264. bottom: 90/2220
  53265. }
  53266. },
  53267. back: {
  53268. height: math.unit(3.48, "feet"),
  53269. weight: math.unit(230, "lb"),
  53270. name: "Back",
  53271. image: {
  53272. source: "./media/characters/sukebe/back.svg",
  53273. extra: 1670/1604,
  53274. bottom: 0/1670
  53275. }
  53276. },
  53277. },
  53278. [
  53279. {
  53280. name: "Normal",
  53281. height: math.unit(5 + 4/12, "feet"),
  53282. default: true
  53283. },
  53284. ]
  53285. ))
  53286. characterMakers.push(() => makeCharacter(
  53287. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53288. {
  53289. front: {
  53290. height: math.unit(6, "feet"),
  53291. name: "Front",
  53292. image: {
  53293. source: "./media/characters/nylla/front.svg",
  53294. extra: 1868/1699,
  53295. bottom: 97/1965
  53296. }
  53297. },
  53298. back: {
  53299. height: math.unit(6, "feet"),
  53300. name: "Back",
  53301. image: {
  53302. source: "./media/characters/nylla/back.svg",
  53303. extra: 1889/1712,
  53304. bottom: 93/1982
  53305. }
  53306. },
  53307. frontNsfw: {
  53308. height: math.unit(6, "feet"),
  53309. name: "Front (NSFW)",
  53310. image: {
  53311. source: "./media/characters/nylla/front-nsfw.svg",
  53312. extra: 1868/1699,
  53313. bottom: 97/1965
  53314. },
  53315. extraAttributes: {
  53316. "dickLength": {
  53317. name: "Dick Length",
  53318. power: 1,
  53319. type: "length",
  53320. base: math.unit(1.4, "feet")
  53321. },
  53322. "cumVolume": {
  53323. name: "Cum Volume",
  53324. power: 3,
  53325. type: "volume",
  53326. base: math.unit(100, "mL")
  53327. },
  53328. }
  53329. },
  53330. backNsfw: {
  53331. height: math.unit(6, "feet"),
  53332. name: "Back (NSFW)",
  53333. image: {
  53334. source: "./media/characters/nylla/back-nsfw.svg",
  53335. extra: 1889/1712,
  53336. bottom: 93/1982
  53337. }
  53338. },
  53339. maw: {
  53340. height: math.unit(2.10, "feet"),
  53341. name: "Maw",
  53342. image: {
  53343. source: "./media/characters/nylla/maw.svg"
  53344. }
  53345. },
  53346. paws: {
  53347. height: math.unit(2.06, "feet"),
  53348. name: "Paws",
  53349. image: {
  53350. source: "./media/characters/nylla/paws.svg"
  53351. }
  53352. },
  53353. muzzle: {
  53354. height: math.unit(0.61, "feet"),
  53355. name: "Muzzle",
  53356. image: {
  53357. source: "./media/characters/nylla/muzzle.svg"
  53358. }
  53359. },
  53360. sheath: {
  53361. height: math.unit(1.305, "feet"),
  53362. name: "Sheath",
  53363. image: {
  53364. source: "./media/characters/nylla/sheath.svg"
  53365. }
  53366. },
  53367. },
  53368. [
  53369. {
  53370. name: "Micro",
  53371. height: math.unit(7.5, "inches")
  53372. },
  53373. {
  53374. name: "Normal",
  53375. height: math.unit(7, "feet"),
  53376. default: true
  53377. },
  53378. {
  53379. name: "Macro",
  53380. height: math.unit(60, "feet")
  53381. },
  53382. {
  53383. name: "Mega",
  53384. height: math.unit(200, "feet")
  53385. },
  53386. ]
  53387. ))
  53388. characterMakers.push(() => makeCharacter(
  53389. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53390. {
  53391. front: {
  53392. height: math.unit(10, "feet"),
  53393. weight: math.unit(2300, "lb"),
  53394. name: "Front",
  53395. image: {
  53396. source: "./media/characters/hunt3r/front.svg",
  53397. extra: 1909/1742,
  53398. bottom: 46/1955
  53399. }
  53400. },
  53401. },
  53402. [
  53403. {
  53404. name: "Normal",
  53405. height: math.unit(10, "feet"),
  53406. default: true
  53407. },
  53408. ]
  53409. ))
  53410. characterMakers.push(() => makeCharacter(
  53411. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53412. {
  53413. dressed: {
  53414. height: math.unit(11, "feet"),
  53415. weight: math.unit(18500, "lb"),
  53416. preyCapacity: math.unit(9, "people"),
  53417. name: "Dressed",
  53418. image: {
  53419. source: "./media/characters/cylphis/dressed.svg",
  53420. extra: 1028/1003,
  53421. bottom: 75/1103
  53422. },
  53423. },
  53424. undressed: {
  53425. height: math.unit(11, "feet"),
  53426. weight: math.unit(18500, "lb"),
  53427. preyCapacity: math.unit(9, "people"),
  53428. name: "Undressed",
  53429. image: {
  53430. source: "./media/characters/cylphis/undressed.svg",
  53431. extra: 1028/1003,
  53432. bottom: 75/1103
  53433. }
  53434. },
  53435. full: {
  53436. height: math.unit(11, "feet"),
  53437. weight: math.unit(18500 + 150*9, "lb"),
  53438. preyCapacity: math.unit(9, "people"),
  53439. name: "Full",
  53440. image: {
  53441. source: "./media/characters/cylphis/full.svg",
  53442. extra: 1028/1003,
  53443. bottom: 75/1103
  53444. }
  53445. },
  53446. },
  53447. [
  53448. {
  53449. name: "Small",
  53450. height: math.unit(8, "feet")
  53451. },
  53452. {
  53453. name: "Normal",
  53454. height: math.unit(11, "feet"),
  53455. default: true
  53456. },
  53457. ]
  53458. ))
  53459. characterMakers.push(() => makeCharacter(
  53460. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53461. {
  53462. front: {
  53463. height: math.unit(2 + 7/12, "feet"),
  53464. name: "Front",
  53465. image: {
  53466. source: "./media/characters/orishan/front.svg",
  53467. extra: 1058/1023,
  53468. bottom: 23/1081
  53469. }
  53470. },
  53471. back: {
  53472. height: math.unit(2 + 7/12, "feet"),
  53473. name: "Back",
  53474. image: {
  53475. source: "./media/characters/orishan/back.svg",
  53476. extra: 1058/1023,
  53477. bottom: 23/1081
  53478. }
  53479. },
  53480. },
  53481. [
  53482. {
  53483. name: "Micro",
  53484. height: math.unit(2, "cm")
  53485. },
  53486. {
  53487. name: "Normal",
  53488. height: math.unit(2 + 7/12, "feet"),
  53489. default: true
  53490. },
  53491. ]
  53492. ))
  53493. characterMakers.push(() => makeCharacter(
  53494. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53495. {
  53496. front: {
  53497. height: math.unit(3, "meters"),
  53498. weight: math.unit(508, "kg"),
  53499. name: "Front",
  53500. image: {
  53501. source: "./media/characters/seranis/front.svg",
  53502. extra: 1478/1454,
  53503. bottom: 41/1519
  53504. }
  53505. },
  53506. },
  53507. [
  53508. {
  53509. name: "Normal",
  53510. height: math.unit(3, "meters"),
  53511. default: true
  53512. },
  53513. {
  53514. name: "Macro",
  53515. height: math.unit(108, "meters")
  53516. },
  53517. {
  53518. name: "Megamacro",
  53519. height: math.unit(1250, "meters")
  53520. },
  53521. ]
  53522. ))
  53523. characterMakers.push(() => makeCharacter(
  53524. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53525. {
  53526. undressed: {
  53527. height: math.unit(5 + 3/12, "feet"),
  53528. name: "Undressed",
  53529. image: {
  53530. source: "./media/characters/ankou/undressed.svg",
  53531. extra: 1301/1213,
  53532. bottom: 87/1388
  53533. }
  53534. },
  53535. dressed: {
  53536. height: math.unit(5 + 3/12, "feet"),
  53537. name: "Dressed",
  53538. image: {
  53539. source: "./media/characters/ankou/dressed.svg",
  53540. extra: 1301/1213,
  53541. bottom: 87/1388
  53542. }
  53543. },
  53544. head: {
  53545. height: math.unit(1.61, "feet"),
  53546. name: "Head",
  53547. image: {
  53548. source: "./media/characters/ankou/head.svg"
  53549. }
  53550. },
  53551. },
  53552. [
  53553. {
  53554. name: "Normal",
  53555. height: math.unit(5 + 3/12, "feet"),
  53556. default: true
  53557. },
  53558. ]
  53559. ))
  53560. characterMakers.push(() => makeCharacter(
  53561. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53562. {
  53563. side: {
  53564. height: math.unit(6 + 3/12, "feet"),
  53565. weight: math.unit(200, "kg"),
  53566. name: "Side",
  53567. image: {
  53568. source: "./media/characters/juniper-skunktaur/side.svg",
  53569. extra: 1574/1229,
  53570. bottom: 38/1612
  53571. }
  53572. },
  53573. front: {
  53574. height: math.unit(6 + 3/12, "feet"),
  53575. weight: math.unit(200, "kg"),
  53576. name: "Front",
  53577. image: {
  53578. source: "./media/characters/juniper-skunktaur/front.svg",
  53579. extra: 1337/1278,
  53580. bottom: 22/1359
  53581. }
  53582. },
  53583. back: {
  53584. height: math.unit(6 + 3/12, "feet"),
  53585. weight: math.unit(200, "kg"),
  53586. name: "Back",
  53587. image: {
  53588. source: "./media/characters/juniper-skunktaur/back.svg",
  53589. extra: 1618/1273,
  53590. bottom: 13/1631
  53591. }
  53592. },
  53593. top: {
  53594. height: math.unit(2.62, "feet"),
  53595. weight: math.unit(200, "kg"),
  53596. name: "Top",
  53597. image: {
  53598. source: "./media/characters/juniper-skunktaur/top.svg"
  53599. }
  53600. },
  53601. },
  53602. [
  53603. {
  53604. name: "Normal",
  53605. height: math.unit(6 + 3/12, "feet"),
  53606. default: true
  53607. },
  53608. ]
  53609. ))
  53610. characterMakers.push(() => makeCharacter(
  53611. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53612. {
  53613. front: {
  53614. height: math.unit(20.5, "feet"),
  53615. name: "Front",
  53616. image: {
  53617. source: "./media/characters/rei/front.svg",
  53618. extra: 1349/1195,
  53619. bottom: 31/1380
  53620. }
  53621. },
  53622. back: {
  53623. height: math.unit(20.5, "feet"),
  53624. name: "Back",
  53625. image: {
  53626. source: "./media/characters/rei/back.svg",
  53627. extra: 1358/1204,
  53628. bottom: 22/1380
  53629. }
  53630. },
  53631. pawsDigi: {
  53632. height: math.unit(3.45, "feet"),
  53633. name: "Paws (Digi)",
  53634. image: {
  53635. source: "./media/characters/rei/paws-digi.svg"
  53636. }
  53637. },
  53638. pawsPlanti: {
  53639. height: math.unit(3.45, "feet"),
  53640. name: "Paws (Planti)",
  53641. image: {
  53642. source: "./media/characters/rei/paws-planti.svg"
  53643. }
  53644. },
  53645. },
  53646. [
  53647. {
  53648. name: "Normal",
  53649. height: math.unit(20.5, "feet"),
  53650. default: true
  53651. },
  53652. ]
  53653. ))
  53654. characterMakers.push(() => makeCharacter(
  53655. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53656. {
  53657. front: {
  53658. height: math.unit(5 + 11/12, "feet"),
  53659. name: "Front",
  53660. image: {
  53661. source: "./media/characters/carina/front.svg",
  53662. extra: 1720/1449,
  53663. bottom: 14/1734
  53664. }
  53665. },
  53666. back: {
  53667. height: math.unit(5 + 11/12, "feet"),
  53668. name: "Back",
  53669. image: {
  53670. source: "./media/characters/carina/back.svg",
  53671. extra: 1493/1445,
  53672. bottom: 17/1510
  53673. }
  53674. },
  53675. paw: {
  53676. height: math.unit(0.92, "feet"),
  53677. name: "Paw",
  53678. image: {
  53679. source: "./media/characters/carina/paw.svg"
  53680. }
  53681. },
  53682. },
  53683. [
  53684. {
  53685. name: "Normal",
  53686. height: math.unit(5 + 11/12, "feet"),
  53687. default: true
  53688. },
  53689. ]
  53690. ))
  53691. characterMakers.push(() => makeCharacter(
  53692. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53693. {
  53694. normal_front: {
  53695. height: math.unit(4.88, "meters"),
  53696. name: "Front",
  53697. image: {
  53698. source: "./media/characters/maya/normal-front.svg",
  53699. extra: 1222/1145,
  53700. bottom: 57/1279
  53701. },
  53702. form: "normal",
  53703. default: true
  53704. },
  53705. monstrous_front: {
  53706. height: math.unit(10, "meters"),
  53707. name: "Front",
  53708. image: {
  53709. source: "./media/characters/maya/monstrous-front.svg",
  53710. extra: 1523/1109,
  53711. bottom: 113/1636
  53712. },
  53713. form: "monstrous",
  53714. extraAttributes: {
  53715. "swallowSize": {
  53716. name: "Tailmaw Bite Size",
  53717. power: 3,
  53718. type: "volume",
  53719. base: math.unit(43000, "liters")
  53720. },
  53721. }
  53722. },
  53723. taur_front: {
  53724. height: math.unit(10, "meters"),
  53725. name: "Front",
  53726. image: {
  53727. source: "./media/characters/maya/taur-front.svg",
  53728. extra: 743/506,
  53729. bottom: 101/844
  53730. },
  53731. form: "taur",
  53732. },
  53733. },
  53734. [
  53735. {
  53736. name: "Normal",
  53737. height: math.unit(4.88, "meters"),
  53738. default: true,
  53739. form: "normal"
  53740. },
  53741. {
  53742. name: "Macro",
  53743. height: math.unit(38.1, "meters"),
  53744. form: "normal"
  53745. },
  53746. {
  53747. name: "Macro+",
  53748. height: math.unit(152.4, "meters"),
  53749. form: "normal"
  53750. },
  53751. {
  53752. name: "Macro++",
  53753. height: math.unit(16.09, "km"),
  53754. form: "normal"
  53755. },
  53756. {
  53757. name: "Mega-macro",
  53758. height: math.unit(700, "megameters"),
  53759. form: "normal"
  53760. },
  53761. {
  53762. name: "Satiated",
  53763. height: math.unit(10, "meters"),
  53764. default: true,
  53765. form: "monstrous"
  53766. },
  53767. {
  53768. name: "Hungry",
  53769. height: math.unit(75, "meters"),
  53770. form: "monstrous"
  53771. },
  53772. {
  53773. name: "Ravenous",
  53774. height: math.unit(500, "meters"),
  53775. form: "monstrous"
  53776. },
  53777. {
  53778. name: "\"Normal\"",
  53779. height: math.unit(10, "meters"),
  53780. form: "taur"
  53781. },
  53782. {
  53783. name: "Macro",
  53784. height: math.unit(50, "meters"),
  53785. form: "taur"
  53786. },
  53787. ],
  53788. {
  53789. "normal": {
  53790. name: "Normal",
  53791. default: true
  53792. },
  53793. "monstrous": {
  53794. name: "Monstrous",
  53795. },
  53796. "taur": {
  53797. name: "Taur",
  53798. },
  53799. }
  53800. ))
  53801. characterMakers.push(() => makeCharacter(
  53802. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53803. {
  53804. front: {
  53805. height: math.unit(6 + 2/12, "feet"),
  53806. weight: math.unit(500, "lb"),
  53807. preyCapacity: math.unit(4, "people"),
  53808. name: "Front",
  53809. image: {
  53810. source: "./media/characters/yepir/front.svg"
  53811. }
  53812. },
  53813. side: {
  53814. height: math.unit(6 + 2/12, "feet"),
  53815. weight: math.unit(500, "lb"),
  53816. preyCapacity: math.unit(4, "people"),
  53817. name: "Side",
  53818. image: {
  53819. source: "./media/characters/yepir/side.svg"
  53820. }
  53821. },
  53822. paw: {
  53823. height: math.unit(1.05, "feet"),
  53824. name: "Paw",
  53825. image: {
  53826. source: "./media/characters/yepir/paw.svg"
  53827. }
  53828. },
  53829. },
  53830. [
  53831. {
  53832. name: "Normal",
  53833. height: math.unit(6 + 2/12, "feet"),
  53834. default: true
  53835. },
  53836. ]
  53837. ))
  53838. characterMakers.push(() => makeCharacter(
  53839. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53840. {
  53841. front: {
  53842. height: math.unit(5 + 4/12, "feet"),
  53843. name: "Front",
  53844. image: {
  53845. source: "./media/characters/russec/front.svg",
  53846. extra: 1926/1626,
  53847. bottom: 72/1998
  53848. }
  53849. },
  53850. back: {
  53851. height: math.unit(5 + 4/12, "feet"),
  53852. name: "Back",
  53853. image: {
  53854. source: "./media/characters/russec/back.svg",
  53855. extra: 1910/1591,
  53856. bottom: 48/1958
  53857. }
  53858. },
  53859. },
  53860. [
  53861. {
  53862. name: "Small",
  53863. height: math.unit(5 + 4/12, "feet")
  53864. },
  53865. {
  53866. name: "Normal",
  53867. height: math.unit(72, "feet"),
  53868. default: true
  53869. },
  53870. ]
  53871. ))
  53872. characterMakers.push(() => makeCharacter(
  53873. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53874. {
  53875. side: {
  53876. height: math.unit(12, "feet"),
  53877. name: "Side",
  53878. image: {
  53879. source: "./media/characters/cianus/side.svg",
  53880. extra: 808/526,
  53881. bottom: 61/869
  53882. }
  53883. },
  53884. },
  53885. [
  53886. {
  53887. name: "Normal",
  53888. height: math.unit(12, "feet"),
  53889. default: true
  53890. },
  53891. ]
  53892. ))
  53893. characterMakers.push(() => makeCharacter(
  53894. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53895. {
  53896. front: {
  53897. height: math.unit(9 + 6/12, "feet"),
  53898. weight: math.unit(300, "lb"),
  53899. name: "Front",
  53900. image: {
  53901. source: "./media/characters/ahab/front.svg",
  53902. extra: 1897/1868,
  53903. bottom: 121/2018
  53904. }
  53905. },
  53906. frontNsfw: {
  53907. height: math.unit(9 + 6/12, "feet"),
  53908. weight: math.unit(300, "lb"),
  53909. name: "Front-nsfw",
  53910. image: {
  53911. source: "./media/characters/ahab/front-nsfw.svg",
  53912. extra: 1897/1868,
  53913. bottom: 121/2018
  53914. }
  53915. },
  53916. },
  53917. [
  53918. {
  53919. name: "Normal",
  53920. height: math.unit(9 + 6/12, "feet")
  53921. },
  53922. {
  53923. name: "Macro",
  53924. height: math.unit(657, "feet"),
  53925. default: true
  53926. },
  53927. ]
  53928. ))
  53929. characterMakers.push(() => makeCharacter(
  53930. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53931. {
  53932. front: {
  53933. height: math.unit(2.69, "meters"),
  53934. weight: math.unit(132, "kg"),
  53935. name: "Front",
  53936. image: {
  53937. source: "./media/characters/aarkus/front.svg",
  53938. extra: 1400/1231,
  53939. bottom: 34/1434
  53940. }
  53941. },
  53942. back: {
  53943. height: math.unit(2.69, "meters"),
  53944. weight: math.unit(132, "kg"),
  53945. name: "Back",
  53946. image: {
  53947. source: "./media/characters/aarkus/back.svg",
  53948. extra: 1381/1218,
  53949. bottom: 30/1411
  53950. }
  53951. },
  53952. frontNsfw: {
  53953. height: math.unit(2.69, "meters"),
  53954. weight: math.unit(132, "kg"),
  53955. name: "Front (NSFW)",
  53956. image: {
  53957. source: "./media/characters/aarkus/front-nsfw.svg",
  53958. extra: 1400/1231,
  53959. bottom: 34/1434
  53960. }
  53961. },
  53962. foot: {
  53963. height: math.unit(1.45, "feet"),
  53964. name: "Foot",
  53965. image: {
  53966. source: "./media/characters/aarkus/foot.svg"
  53967. }
  53968. },
  53969. head: {
  53970. height: math.unit(2.85, "feet"),
  53971. name: "Head",
  53972. image: {
  53973. source: "./media/characters/aarkus/head.svg"
  53974. }
  53975. },
  53976. headAlt: {
  53977. height: math.unit(3.07, "feet"),
  53978. name: "Head (Alt)",
  53979. image: {
  53980. source: "./media/characters/aarkus/head-alt.svg"
  53981. }
  53982. },
  53983. mouth: {
  53984. height: math.unit(1.25, "feet"),
  53985. name: "Mouth",
  53986. image: {
  53987. source: "./media/characters/aarkus/mouth.svg"
  53988. }
  53989. },
  53990. dick: {
  53991. height: math.unit(1.77, "feet"),
  53992. name: "Dick",
  53993. image: {
  53994. source: "./media/characters/aarkus/dick.svg"
  53995. }
  53996. },
  53997. },
  53998. [
  53999. {
  54000. name: "Normal",
  54001. height: math.unit(2.69, "meters"),
  54002. default: true
  54003. },
  54004. {
  54005. name: "Macro",
  54006. height: math.unit(269, "meters")
  54007. },
  54008. {
  54009. name: "Macro+",
  54010. height: math.unit(672.5, "meters")
  54011. },
  54012. {
  54013. name: "Megamacro",
  54014. height: math.unit(2.017, "km")
  54015. },
  54016. ]
  54017. ))
  54018. characterMakers.push(() => makeCharacter(
  54019. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54020. {
  54021. front: {
  54022. height: math.unit(23.47, "cm"),
  54023. weight: math.unit(600, "grams"),
  54024. name: "Front",
  54025. image: {
  54026. source: "./media/characters/diode/front.svg",
  54027. extra: 1778/1396,
  54028. bottom: 95/1873
  54029. }
  54030. },
  54031. side: {
  54032. height: math.unit(23.47, "cm"),
  54033. weight: math.unit(600, "grams"),
  54034. name: "Side",
  54035. image: {
  54036. source: "./media/characters/diode/side.svg",
  54037. extra: 1831/1404,
  54038. bottom: 86/1917
  54039. }
  54040. },
  54041. wings: {
  54042. height: math.unit(0.683, "feet"),
  54043. name: "Wings",
  54044. image: {
  54045. source: "./media/characters/diode/wings.svg"
  54046. }
  54047. },
  54048. },
  54049. [
  54050. {
  54051. name: "Normal",
  54052. height: math.unit(23.47, "cm"),
  54053. default: true
  54054. },
  54055. ]
  54056. ))
  54057. characterMakers.push(() => makeCharacter(
  54058. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54059. {
  54060. front: {
  54061. height: math.unit(6 + 3/12, "feet"),
  54062. weight: math.unit(250, "lb"),
  54063. name: "Front",
  54064. image: {
  54065. source: "./media/characters/reika/front.svg",
  54066. extra: 1120/1078,
  54067. bottom: 86/1206
  54068. }
  54069. },
  54070. },
  54071. [
  54072. {
  54073. name: "Normal",
  54074. height: math.unit(6 + 3/12, "feet"),
  54075. default: true
  54076. },
  54077. ]
  54078. ))
  54079. characterMakers.push(() => makeCharacter(
  54080. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54081. {
  54082. front: {
  54083. height: math.unit(16 + 8/12, "feet"),
  54084. weight: math.unit(9000, "lb"),
  54085. name: "Front",
  54086. image: {
  54087. source: "./media/characters/lokuto-takama/front.svg",
  54088. extra: 1774/1632,
  54089. bottom: 147/1921
  54090. },
  54091. extraAttributes: {
  54092. "bustWidth": {
  54093. name: "Bust Width",
  54094. power: 1,
  54095. type: "length",
  54096. base: math.unit(2.4, "meters")
  54097. },
  54098. "breastWeight": {
  54099. name: "Breast Weight",
  54100. power: 3,
  54101. type: "mass",
  54102. base: math.unit(1000, "kg")
  54103. },
  54104. }
  54105. },
  54106. },
  54107. [
  54108. {
  54109. name: "Normal",
  54110. height: math.unit(16 + 8/12, "feet"),
  54111. default: true
  54112. },
  54113. ]
  54114. ))
  54115. characterMakers.push(() => makeCharacter(
  54116. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54117. {
  54118. front: {
  54119. height: math.unit(10, "cm"),
  54120. weight: math.unit(850, "grams"),
  54121. name: "Front",
  54122. image: {
  54123. source: "./media/characters/owak-bone/front.svg",
  54124. extra: 1965/1801,
  54125. bottom: 31/1996
  54126. }
  54127. },
  54128. },
  54129. [
  54130. {
  54131. name: "Normal",
  54132. height: math.unit(10, "cm"),
  54133. default: true
  54134. },
  54135. ]
  54136. ))
  54137. characterMakers.push(() => makeCharacter(
  54138. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54139. {
  54140. front: {
  54141. height: math.unit(2 + 6/12, "feet"),
  54142. weight: math.unit(9, "lb"),
  54143. name: "Front",
  54144. image: {
  54145. source: "./media/characters/muffin/front.svg",
  54146. extra: 1220/1195,
  54147. bottom: 84/1304
  54148. }
  54149. },
  54150. },
  54151. [
  54152. {
  54153. name: "Normal",
  54154. height: math.unit(2 + 6/12, "feet"),
  54155. default: true
  54156. },
  54157. ]
  54158. ))
  54159. characterMakers.push(() => makeCharacter(
  54160. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54161. {
  54162. front: {
  54163. height: math.unit(7, "feet"),
  54164. name: "Front",
  54165. image: {
  54166. source: "./media/characters/chimera/front.svg",
  54167. extra: 1752/1614,
  54168. bottom: 68/1820
  54169. }
  54170. },
  54171. },
  54172. [
  54173. {
  54174. name: "Normal",
  54175. height: math.unit(7, "feet")
  54176. },
  54177. {
  54178. name: "Gigamacro",
  54179. height: math.unit(2.9, "gigameters"),
  54180. default: true
  54181. },
  54182. {
  54183. name: "Universal",
  54184. height: math.unit(1.56e26, "yottameters")
  54185. },
  54186. ]
  54187. ))
  54188. characterMakers.push(() => makeCharacter(
  54189. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54190. {
  54191. front: {
  54192. height: math.unit(3, "feet"),
  54193. weight: math.unit(20, "lb"),
  54194. name: "Front",
  54195. image: {
  54196. source: "./media/characters/kit-fennec-fox/front.svg",
  54197. extra: 1027/932,
  54198. bottom: 16/1043
  54199. }
  54200. },
  54201. back: {
  54202. height: math.unit(3, "feet"),
  54203. weight: math.unit(20, "lb"),
  54204. name: "Back",
  54205. image: {
  54206. source: "./media/characters/kit-fennec-fox/back.svg",
  54207. extra: 1027/932,
  54208. bottom: 16/1043
  54209. }
  54210. },
  54211. },
  54212. [
  54213. {
  54214. name: "Normal",
  54215. height: math.unit(3, "feet"),
  54216. default: true
  54217. },
  54218. ]
  54219. ))
  54220. characterMakers.push(() => makeCharacter(
  54221. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54222. {
  54223. front: {
  54224. height: math.unit(167, "cm"),
  54225. name: "Front",
  54226. image: {
  54227. source: "./media/characters/blue-otter/front.svg",
  54228. extra: 1951/1920,
  54229. bottom: 31/1982
  54230. }
  54231. },
  54232. },
  54233. [
  54234. {
  54235. name: "Otter-Sized",
  54236. height: math.unit(100, "cm")
  54237. },
  54238. {
  54239. name: "Normal",
  54240. height: math.unit(167, "cm"),
  54241. default: true
  54242. },
  54243. ]
  54244. ))
  54245. characterMakers.push(() => makeCharacter(
  54246. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54247. {
  54248. front: {
  54249. height: math.unit(4 + 4/12, "feet"),
  54250. name: "Front",
  54251. image: {
  54252. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54253. extra: 1072/1067,
  54254. bottom: 117/1189
  54255. }
  54256. },
  54257. back: {
  54258. height: math.unit(4 + 4/12, "feet"),
  54259. name: "Back",
  54260. image: {
  54261. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54262. extra: 1135/1129,
  54263. bottom: 57/1192
  54264. }
  54265. },
  54266. head: {
  54267. height: math.unit(1.77, "feet"),
  54268. name: "Head",
  54269. image: {
  54270. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54271. }
  54272. },
  54273. },
  54274. [
  54275. {
  54276. name: "Normal",
  54277. height: math.unit(4 + 4/12, "feet"),
  54278. default: true
  54279. },
  54280. ]
  54281. ))
  54282. characterMakers.push(() => makeCharacter(
  54283. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54284. {
  54285. front: {
  54286. height: math.unit(2, "inches"),
  54287. name: "Front",
  54288. image: {
  54289. source: "./media/characters/carley-hartford/front.svg",
  54290. extra: 1035/988,
  54291. bottom: 23/1058
  54292. }
  54293. },
  54294. back: {
  54295. height: math.unit(2, "inches"),
  54296. name: "Back",
  54297. image: {
  54298. source: "./media/characters/carley-hartford/back.svg",
  54299. extra: 1035/988,
  54300. bottom: 23/1058
  54301. }
  54302. },
  54303. dressed: {
  54304. height: math.unit(2, "inches"),
  54305. name: "Dressed",
  54306. image: {
  54307. source: "./media/characters/carley-hartford/dressed.svg",
  54308. extra: 651/620,
  54309. bottom: 0/651
  54310. }
  54311. },
  54312. },
  54313. [
  54314. {
  54315. name: "Micro",
  54316. height: math.unit(2, "inches"),
  54317. default: true
  54318. },
  54319. {
  54320. name: "Macro",
  54321. height: math.unit(6 + 3/12, "feet")
  54322. },
  54323. ]
  54324. ))
  54325. characterMakers.push(() => makeCharacter(
  54326. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54327. {
  54328. front: {
  54329. height: math.unit(2 + 3/12, "feet"),
  54330. weight: math.unit(15 + 7/16, "lb"),
  54331. name: "Front",
  54332. image: {
  54333. source: "./media/characters/duke/front.svg",
  54334. extra: 910/815,
  54335. bottom: 30/940
  54336. }
  54337. },
  54338. },
  54339. [
  54340. {
  54341. name: "Normal",
  54342. height: math.unit(2 + 3/12, "feet"),
  54343. default: true
  54344. },
  54345. ]
  54346. ))
  54347. characterMakers.push(() => makeCharacter(
  54348. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54349. {
  54350. front: {
  54351. height: math.unit(5 + 4/12, "feet"),
  54352. weight: math.unit(156, "lb"),
  54353. name: "Front",
  54354. image: {
  54355. source: "./media/characters/dein/front.svg",
  54356. extra: 855/815,
  54357. bottom: 48/903
  54358. }
  54359. },
  54360. side: {
  54361. height: math.unit(5 + 4/12, "feet"),
  54362. weight: math.unit(156, "lb"),
  54363. name: "side",
  54364. image: {
  54365. source: "./media/characters/dein/side.svg",
  54366. extra: 846/803,
  54367. bottom: 25/871
  54368. }
  54369. },
  54370. maw: {
  54371. height: math.unit(1.45, "feet"),
  54372. name: "Maw",
  54373. image: {
  54374. source: "./media/characters/dein/maw.svg"
  54375. }
  54376. },
  54377. },
  54378. [
  54379. {
  54380. name: "Ferret Sized",
  54381. height: math.unit(2 + 5/12, "feet")
  54382. },
  54383. {
  54384. name: "Normal",
  54385. height: math.unit(5 + 4/12, "feet"),
  54386. default: true
  54387. },
  54388. ]
  54389. ))
  54390. characterMakers.push(() => makeCharacter(
  54391. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54392. {
  54393. front: {
  54394. height: math.unit(84 + 8/12, "feet"),
  54395. weight: math.unit(942180, "lb"),
  54396. name: "Front",
  54397. image: {
  54398. source: "./media/characters/daurine-arima/front.svg",
  54399. extra: 1989/1782,
  54400. bottom: 37/2026
  54401. }
  54402. },
  54403. side: {
  54404. height: math.unit(84 + 8/12, "feet"),
  54405. weight: math.unit(942180, "lb"),
  54406. name: "Side",
  54407. image: {
  54408. source: "./media/characters/daurine-arima/side.svg",
  54409. extra: 1997/1790,
  54410. bottom: 21/2018
  54411. }
  54412. },
  54413. back: {
  54414. height: math.unit(84 + 8/12, "feet"),
  54415. weight: math.unit(942180, "lb"),
  54416. name: "Back",
  54417. image: {
  54418. source: "./media/characters/daurine-arima/back.svg",
  54419. extra: 1992/1800,
  54420. bottom: 12/2004
  54421. }
  54422. },
  54423. head: {
  54424. height: math.unit(15.5, "feet"),
  54425. name: "Head",
  54426. image: {
  54427. source: "./media/characters/daurine-arima/head.svg"
  54428. }
  54429. },
  54430. headAlt: {
  54431. height: math.unit(19.19, "feet"),
  54432. name: "Head (Alt)",
  54433. image: {
  54434. source: "./media/characters/daurine-arima/head-alt.svg"
  54435. }
  54436. },
  54437. },
  54438. [
  54439. {
  54440. name: "Minimum height",
  54441. height: math.unit(8 + 10/12, "feet")
  54442. },
  54443. {
  54444. name: "Comfort height",
  54445. height: math.unit(19 + 6 /12, "feet")
  54446. },
  54447. {
  54448. name: "\"Normal\" height",
  54449. height: math.unit(28 + 10/12, "feet")
  54450. },
  54451. {
  54452. name: "Base height",
  54453. height: math.unit(84 + 8/12, "feet"),
  54454. default: true
  54455. },
  54456. {
  54457. name: "Mini-macro",
  54458. height: math.unit(2360, "feet")
  54459. },
  54460. {
  54461. name: "Macro",
  54462. height: math.unit(10, "miles")
  54463. },
  54464. {
  54465. name: "Goddess",
  54466. height: math.unit(9.99e40, "yottameters")
  54467. },
  54468. ]
  54469. ))
  54470. characterMakers.push(() => makeCharacter(
  54471. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54472. {
  54473. front: {
  54474. height: math.unit(2.3, "meters"),
  54475. name: "Front",
  54476. image: {
  54477. source: "./media/characters/cilenomon/front.svg",
  54478. extra: 1963/1778,
  54479. bottom: 54/2017
  54480. }
  54481. },
  54482. },
  54483. [
  54484. {
  54485. name: "Normal",
  54486. height: math.unit(2.3, "meters"),
  54487. default: true
  54488. },
  54489. {
  54490. name: "Big",
  54491. height: math.unit(5, "meters")
  54492. },
  54493. {
  54494. name: "Macro",
  54495. height: math.unit(30, "meters")
  54496. },
  54497. {
  54498. name: "True",
  54499. height: math.unit(1, "universe")
  54500. },
  54501. ]
  54502. ))
  54503. characterMakers.push(() => makeCharacter(
  54504. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54505. {
  54506. front: {
  54507. height: math.unit(5, "feet"),
  54508. name: "Front",
  54509. image: {
  54510. source: "./media/characters/sen-mink/front.svg",
  54511. extra: 1727/1675,
  54512. bottom: 35/1762
  54513. }
  54514. },
  54515. },
  54516. [
  54517. {
  54518. name: "Normal",
  54519. height: math.unit(5, "feet"),
  54520. default: true
  54521. },
  54522. ]
  54523. ))
  54524. characterMakers.push(() => makeCharacter(
  54525. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54526. {
  54527. front: {
  54528. height: math.unit(5.42999, "feet"),
  54529. weight: math.unit(100, "lb"),
  54530. name: "Front",
  54531. image: {
  54532. source: "./media/characters/ophois/front.svg",
  54533. extra: 1429/1286,
  54534. bottom: 60/1489
  54535. }
  54536. },
  54537. },
  54538. [
  54539. {
  54540. name: "Normal",
  54541. height: math.unit(5.42999, "feet"),
  54542. default: true
  54543. },
  54544. ]
  54545. ))
  54546. characterMakers.push(() => makeCharacter(
  54547. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54548. {
  54549. front: {
  54550. height: math.unit(2, "meters"),
  54551. name: "Front",
  54552. image: {
  54553. source: "./media/characters/riley/front.svg",
  54554. extra: 1779/1754,
  54555. bottom: 139/1918
  54556. }
  54557. },
  54558. },
  54559. [
  54560. {
  54561. name: "Normal",
  54562. height: math.unit(2, "meters"),
  54563. default: true
  54564. },
  54565. ]
  54566. ))
  54567. characterMakers.push(() => makeCharacter(
  54568. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54569. {
  54570. front: {
  54571. height: math.unit(6 + 2/12, "feet"),
  54572. weight: math.unit(195, "lb"),
  54573. preyCapacity: math.unit(6, "people"),
  54574. name: "Front",
  54575. image: {
  54576. source: "./media/characters/shuken-flash/front.svg",
  54577. extra: 1905/1739,
  54578. bottom: 65/1970
  54579. }
  54580. },
  54581. back: {
  54582. height: math.unit(6 + 2/12, "feet"),
  54583. weight: math.unit(195, "lb"),
  54584. preyCapacity: math.unit(6, "people"),
  54585. name: "Back",
  54586. image: {
  54587. source: "./media/characters/shuken-flash/back.svg",
  54588. extra: 1912/1751,
  54589. bottom: 13/1925
  54590. }
  54591. },
  54592. },
  54593. [
  54594. {
  54595. name: "Normal",
  54596. height: math.unit(6 + 2/12, "feet"),
  54597. default: true
  54598. },
  54599. ]
  54600. ))
  54601. characterMakers.push(() => makeCharacter(
  54602. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54603. {
  54604. front: {
  54605. height: math.unit(5 + 9/12, "feet"),
  54606. weight: math.unit(150, "lb"),
  54607. name: "Front",
  54608. image: {
  54609. source: "./media/characters/plat/front.svg",
  54610. extra: 1816/1703,
  54611. bottom: 43/1859
  54612. }
  54613. },
  54614. side: {
  54615. height: math.unit(5 + 9/12, "feet"),
  54616. weight: math.unit(300, "lb"),
  54617. name: "Side",
  54618. image: {
  54619. source: "./media/characters/plat/side.svg",
  54620. extra: 1824/1699,
  54621. bottom: 18/1842
  54622. }
  54623. },
  54624. },
  54625. [
  54626. {
  54627. name: "Normal",
  54628. height: math.unit(5 + 9/12, "feet"),
  54629. default: true
  54630. },
  54631. ]
  54632. ))
  54633. characterMakers.push(() => makeCharacter(
  54634. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54635. {
  54636. front: {
  54637. height: math.unit(9, "feet"),
  54638. weight: math.unit(1800, "lb"),
  54639. name: "Front",
  54640. image: {
  54641. source: "./media/characters/elaine/front.svg",
  54642. extra: 1833/1354,
  54643. bottom: 25/1858
  54644. }
  54645. },
  54646. back: {
  54647. height: math.unit(8.8, "feet"),
  54648. weight: math.unit(1800, "lb"),
  54649. name: "Back",
  54650. image: {
  54651. source: "./media/characters/elaine/back.svg",
  54652. extra: 1641/1233,
  54653. bottom: 53/1694
  54654. }
  54655. },
  54656. },
  54657. [
  54658. {
  54659. name: "Normal",
  54660. height: math.unit(9, "feet"),
  54661. default: true
  54662. },
  54663. ]
  54664. ))
  54665. characterMakers.push(() => makeCharacter(
  54666. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54667. {
  54668. front: {
  54669. height: math.unit(17 + 9/12, "feet"),
  54670. weight: math.unit(8000, "lb"),
  54671. name: "Front",
  54672. image: {
  54673. source: "./media/characters/vera-raven/front.svg",
  54674. extra: 1457/1412,
  54675. bottom: 121/1578
  54676. }
  54677. },
  54678. side: {
  54679. height: math.unit(17 + 9/12, "feet"),
  54680. weight: math.unit(8000, "lb"),
  54681. name: "Side",
  54682. image: {
  54683. source: "./media/characters/vera-raven/side.svg",
  54684. extra: 1510/1464,
  54685. bottom: 54/1564
  54686. }
  54687. },
  54688. },
  54689. [
  54690. {
  54691. name: "Normal",
  54692. height: math.unit(17 + 9/12, "feet"),
  54693. default: true
  54694. },
  54695. ]
  54696. ))
  54697. characterMakers.push(() => makeCharacter(
  54698. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54699. {
  54700. dressed: {
  54701. height: math.unit(6 + 9/12, "feet"),
  54702. name: "Dressed",
  54703. image: {
  54704. source: "./media/characters/nakisha/dressed.svg",
  54705. extra: 1909/1757,
  54706. bottom: 48/1957
  54707. }
  54708. },
  54709. nude: {
  54710. height: math.unit(6 + 9/12, "feet"),
  54711. name: "Nude",
  54712. image: {
  54713. source: "./media/characters/nakisha/nude.svg",
  54714. extra: 1917/1765,
  54715. bottom: 34/1951
  54716. }
  54717. },
  54718. },
  54719. [
  54720. {
  54721. name: "Normal",
  54722. height: math.unit(6 + 9/12, "feet"),
  54723. default: true
  54724. },
  54725. ]
  54726. ))
  54727. characterMakers.push(() => makeCharacter(
  54728. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54729. {
  54730. front: {
  54731. height: math.unit(87, "meters"),
  54732. name: "Front",
  54733. image: {
  54734. source: "./media/characters/serafin/front.svg",
  54735. extra: 1919/1776,
  54736. bottom: 65/1984
  54737. }
  54738. },
  54739. },
  54740. [
  54741. {
  54742. name: "Normal",
  54743. height: math.unit(87, "meters"),
  54744. default: true
  54745. },
  54746. ]
  54747. ))
  54748. characterMakers.push(() => makeCharacter(
  54749. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54750. {
  54751. front: {
  54752. height: math.unit(6, "feet"),
  54753. weight: math.unit(200, "lb"),
  54754. name: "Front",
  54755. image: {
  54756. source: "./media/characters/poptart/front.svg",
  54757. extra: 615/583,
  54758. bottom: 23/638
  54759. }
  54760. },
  54761. back: {
  54762. height: math.unit(6, "feet"),
  54763. weight: math.unit(200, "lb"),
  54764. name: "Back",
  54765. image: {
  54766. source: "./media/characters/poptart/back.svg",
  54767. extra: 617/584,
  54768. bottom: 22/639
  54769. }
  54770. },
  54771. frontNsfw: {
  54772. height: math.unit(6, "feet"),
  54773. weight: math.unit(200, "lb"),
  54774. name: "Front (NSFW)",
  54775. image: {
  54776. source: "./media/characters/poptart/front-nsfw.svg",
  54777. extra: 615/583,
  54778. bottom: 23/638
  54779. }
  54780. },
  54781. backNsfw: {
  54782. height: math.unit(6, "feet"),
  54783. weight: math.unit(200, "lb"),
  54784. name: "Back (NSFW)",
  54785. image: {
  54786. source: "./media/characters/poptart/back-nsfw.svg",
  54787. extra: 617/584,
  54788. bottom: 22/639
  54789. }
  54790. },
  54791. hand: {
  54792. height: math.unit(1.14, "feet"),
  54793. name: "Hand",
  54794. image: {
  54795. source: "./media/characters/poptart/hand.svg"
  54796. }
  54797. },
  54798. foot: {
  54799. height: math.unit(1.5, "feet"),
  54800. name: "Foot",
  54801. image: {
  54802. source: "./media/characters/poptart/foot.svg"
  54803. }
  54804. },
  54805. },
  54806. [
  54807. {
  54808. name: "Normal",
  54809. height: math.unit(6, "feet"),
  54810. default: true
  54811. },
  54812. {
  54813. name: "Grande",
  54814. height: math.unit(350, "feet")
  54815. },
  54816. {
  54817. name: "Massif",
  54818. height: math.unit(967, "feet")
  54819. },
  54820. ]
  54821. ))
  54822. characterMakers.push(() => makeCharacter(
  54823. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54824. {
  54825. hyenaSide: {
  54826. height: math.unit(120, "cm"),
  54827. weight: math.unit(120, "lb"),
  54828. name: "Side",
  54829. image: {
  54830. source: "./media/characters/trance/hyena-side.svg",
  54831. extra: 998/904,
  54832. bottom: 76/1074
  54833. }
  54834. },
  54835. },
  54836. [
  54837. {
  54838. name: "Normal",
  54839. height: math.unit(120, "cm"),
  54840. default: true
  54841. },
  54842. {
  54843. name: "Dire",
  54844. height: math.unit(230, "cm")
  54845. },
  54846. {
  54847. name: "Macro",
  54848. height: math.unit(37, "feet")
  54849. },
  54850. ]
  54851. ))
  54852. characterMakers.push(() => makeCharacter(
  54853. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54854. {
  54855. front: {
  54856. height: math.unit(6 + 3/12, "feet"),
  54857. name: "Front",
  54858. image: {
  54859. source: "./media/characters/michael-berretta/front.svg",
  54860. extra: 515/494,
  54861. bottom: 20/535
  54862. }
  54863. },
  54864. back: {
  54865. height: math.unit(6 + 3/12, "feet"),
  54866. name: "Back",
  54867. image: {
  54868. source: "./media/characters/michael-berretta/back.svg",
  54869. extra: 520/497,
  54870. bottom: 21/541
  54871. }
  54872. },
  54873. frontNsfw: {
  54874. height: math.unit(6 + 3/12, "feet"),
  54875. name: "Front (NSFW)",
  54876. image: {
  54877. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54878. extra: 515/494,
  54879. bottom: 20/535
  54880. }
  54881. },
  54882. dick: {
  54883. height: math.unit(1, "feet"),
  54884. name: "Dick",
  54885. image: {
  54886. source: "./media/characters/michael-berretta/dick.svg"
  54887. }
  54888. },
  54889. },
  54890. [
  54891. {
  54892. name: "Normal",
  54893. height: math.unit(6 + 3/12, "feet"),
  54894. default: true
  54895. },
  54896. {
  54897. name: "Big",
  54898. height: math.unit(12, "feet")
  54899. },
  54900. {
  54901. name: "Macro",
  54902. height: math.unit(187.5, "feet")
  54903. },
  54904. ]
  54905. ))
  54906. characterMakers.push(() => makeCharacter(
  54907. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54908. {
  54909. front: {
  54910. height: math.unit(9 + 9/12, "feet"),
  54911. weight: math.unit(1244, "lb"),
  54912. name: "Front",
  54913. image: {
  54914. source: "./media/characters/stella-edgecomb/front.svg",
  54915. extra: 1835/1706,
  54916. bottom: 49/1884
  54917. }
  54918. },
  54919. pen: {
  54920. height: math.unit(0.95, "feet"),
  54921. name: "Pen",
  54922. image: {
  54923. source: "./media/characters/stella-edgecomb/pen.svg"
  54924. }
  54925. },
  54926. },
  54927. [
  54928. {
  54929. name: "Cozy Bear",
  54930. height: math.unit(0.5, "inches")
  54931. },
  54932. {
  54933. name: "Normal",
  54934. height: math.unit(9 + 9/12, "feet"),
  54935. default: true
  54936. },
  54937. {
  54938. name: "Giga Bear",
  54939. height: math.unit(1, "mile")
  54940. },
  54941. {
  54942. name: "Great Bear",
  54943. height: math.unit(53, "miles")
  54944. },
  54945. {
  54946. name: "Goddess Bear",
  54947. height: math.unit(40000, "miles")
  54948. },
  54949. {
  54950. name: "Sun Bear",
  54951. height: math.unit(900000, "miles")
  54952. },
  54953. ]
  54954. ))
  54955. characterMakers.push(() => makeCharacter(
  54956. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54957. {
  54958. anthroFront: {
  54959. height: math.unit(556, "cm"),
  54960. weight: math.unit(2650, "kg"),
  54961. preyCapacity: math.unit(3, "people"),
  54962. name: "Front",
  54963. image: {
  54964. source: "./media/characters/ash´iika/front.svg",
  54965. extra: 710/673,
  54966. bottom: 15/725
  54967. },
  54968. form: "anthro",
  54969. default: true
  54970. },
  54971. anthroSide: {
  54972. height: math.unit(556, "cm"),
  54973. weight: math.unit(2650, "kg"),
  54974. preyCapacity: math.unit(3, "people"),
  54975. name: "Side",
  54976. image: {
  54977. source: "./media/characters/ash´iika/side.svg",
  54978. extra: 696/676,
  54979. bottom: 13/709
  54980. },
  54981. form: "anthro"
  54982. },
  54983. anthroDressed: {
  54984. height: math.unit(556, "cm"),
  54985. weight: math.unit(2650, "kg"),
  54986. preyCapacity: math.unit(3, "people"),
  54987. name: "Dressed",
  54988. image: {
  54989. source: "./media/characters/ash´iika/dressed.svg",
  54990. extra: 710/673,
  54991. bottom: 15/725
  54992. },
  54993. form: "anthro"
  54994. },
  54995. anthroHead: {
  54996. height: math.unit(3.5, "feet"),
  54997. name: "Head",
  54998. image: {
  54999. source: "./media/characters/ash´iika/head.svg",
  55000. extra: 348/291,
  55001. bottom: 45/393
  55002. },
  55003. form: "anthro"
  55004. },
  55005. feralSide: {
  55006. height: math.unit(870, "cm"),
  55007. weight: math.unit(17500, "kg"),
  55008. preyCapacity: math.unit(15, "people"),
  55009. name: "Side",
  55010. image: {
  55011. source: "./media/characters/ash´iika/feral.svg",
  55012. extra: 595/199,
  55013. bottom: 7/602
  55014. },
  55015. form: "feral",
  55016. default: true,
  55017. },
  55018. },
  55019. [
  55020. {
  55021. name: "Normal",
  55022. height: math.unit(556, "cm"),
  55023. default: true,
  55024. form: "anthro"
  55025. },
  55026. {
  55027. name: "Macro",
  55028. height: math.unit(88, "meters"),
  55029. form: "anthro"
  55030. },
  55031. {
  55032. name: "Normal",
  55033. height: math.unit(870, "cm"),
  55034. default: true,
  55035. form: "feral"
  55036. },
  55037. {
  55038. name: "Large",
  55039. height: math.unit(25, "meters"),
  55040. form: "feral"
  55041. },
  55042. ],
  55043. {
  55044. "anthro": {
  55045. name: "Anthro",
  55046. default: true
  55047. },
  55048. "feral": {
  55049. name: "Feral",
  55050. },
  55051. }
  55052. ))
  55053. characterMakers.push(() => makeCharacter(
  55054. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55055. {
  55056. front: {
  55057. height: math.unit(10, "feet"),
  55058. weight: math.unit(800, "lb"),
  55059. name: "Front",
  55060. image: {
  55061. source: "./media/characters/yen/front.svg",
  55062. extra: 443/411,
  55063. bottom: 6/449
  55064. }
  55065. },
  55066. sleeping: {
  55067. height: math.unit(10, "feet"),
  55068. weight: math.unit(800, "lb"),
  55069. name: "Sleeping",
  55070. image: {
  55071. source: "./media/characters/yen/sleeping.svg",
  55072. extra: 470/422,
  55073. bottom: 0/470
  55074. }
  55075. },
  55076. head: {
  55077. height: math.unit(2.2, "feet"),
  55078. name: "Head",
  55079. image: {
  55080. source: "./media/characters/yen/head.svg"
  55081. }
  55082. },
  55083. headAlt: {
  55084. height: math.unit(2.1, "feet"),
  55085. name: "Head (Alt)",
  55086. image: {
  55087. source: "./media/characters/yen/head-alt.svg"
  55088. }
  55089. },
  55090. },
  55091. [
  55092. {
  55093. name: "Normal",
  55094. height: math.unit(10, "feet"),
  55095. default: true
  55096. },
  55097. ]
  55098. ))
  55099. characterMakers.push(() => makeCharacter(
  55100. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55101. {
  55102. front: {
  55103. height: math.unit(12, "feet"),
  55104. name: "Front",
  55105. image: {
  55106. source: "./media/characters/citra/front.svg",
  55107. extra: 1950/1710,
  55108. bottom: 47/1997
  55109. }
  55110. },
  55111. },
  55112. [
  55113. {
  55114. name: "Normal",
  55115. height: math.unit(12, "feet"),
  55116. default: true
  55117. },
  55118. ]
  55119. ))
  55120. characterMakers.push(() => makeCharacter(
  55121. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55122. {
  55123. side: {
  55124. height: math.unit(7 + 10/12, "feet"),
  55125. name: "Side",
  55126. image: {
  55127. source: "./media/characters/sholstim/side.svg",
  55128. extra: 786/682,
  55129. bottom: 40/826
  55130. }
  55131. },
  55132. },
  55133. [
  55134. {
  55135. name: "Normal",
  55136. height: math.unit(7 + 10/12, "feet"),
  55137. default: true
  55138. },
  55139. ]
  55140. ))
  55141. characterMakers.push(() => makeCharacter(
  55142. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55143. {
  55144. front: {
  55145. height: math.unit(3.10, "meters"),
  55146. name: "Front",
  55147. image: {
  55148. source: "./media/characters/aggyn/front.svg",
  55149. extra: 1188/963,
  55150. bottom: 24/1212
  55151. }
  55152. },
  55153. },
  55154. [
  55155. {
  55156. name: "Normal",
  55157. height: math.unit(3.10, "meters"),
  55158. default: true
  55159. },
  55160. ]
  55161. ))
  55162. characterMakers.push(() => makeCharacter(
  55163. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55164. {
  55165. front: {
  55166. height: math.unit(7 + 5/12, "feet"),
  55167. weight: math.unit(687, "lb"),
  55168. name: "Front",
  55169. image: {
  55170. source: "./media/characters/alsandair-hergenroether/front.svg",
  55171. extra: 1251/1186,
  55172. bottom: 75/1326
  55173. }
  55174. },
  55175. back: {
  55176. height: math.unit(7 + 5/12, "feet"),
  55177. weight: math.unit(687, "lb"),
  55178. name: "Back",
  55179. image: {
  55180. source: "./media/characters/alsandair-hergenroether/back.svg",
  55181. extra: 1290/1229,
  55182. bottom: 17/1307
  55183. }
  55184. },
  55185. },
  55186. [
  55187. {
  55188. name: "Max Compression",
  55189. height: math.unit(7 + 5/12, "feet"),
  55190. default: true
  55191. },
  55192. {
  55193. name: "\"Normal\"",
  55194. height: math.unit(2, "universes")
  55195. },
  55196. ]
  55197. ))
  55198. characterMakers.push(() => makeCharacter(
  55199. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55200. {
  55201. front: {
  55202. height: math.unit(4 + 1/12, "feet"),
  55203. weight: math.unit(92, "lb"),
  55204. name: "Front",
  55205. image: {
  55206. source: "./media/characters/ie/front.svg",
  55207. extra: 1585/1352,
  55208. bottom: 91/1676
  55209. }
  55210. },
  55211. },
  55212. [
  55213. {
  55214. name: "Normal",
  55215. height: math.unit(4 + 1/12, "feet"),
  55216. default: true
  55217. },
  55218. ]
  55219. ))
  55220. characterMakers.push(() => makeCharacter(
  55221. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55222. {
  55223. anthro: {
  55224. height: math.unit(6, "feet"),
  55225. weight: math.unit(150, "lb"),
  55226. name: "Front",
  55227. image: {
  55228. source: "./media/characters/willow/anthro.svg",
  55229. extra: 1073/986,
  55230. bottom: 34/1107
  55231. },
  55232. form: "anthro",
  55233. default: true
  55234. },
  55235. taur: {
  55236. height: math.unit(6, "feet"),
  55237. weight: math.unit(150, "lb"),
  55238. name: "Side",
  55239. image: {
  55240. source: "./media/characters/willow/taur.svg",
  55241. extra: 647/512,
  55242. bottom: 136/783
  55243. },
  55244. form: "taur",
  55245. default: true
  55246. },
  55247. },
  55248. [
  55249. {
  55250. name: "Humanoid",
  55251. height: math.unit(2.7, "meters"),
  55252. form: "anthro"
  55253. },
  55254. {
  55255. name: "Normal",
  55256. height: math.unit(9, "meters"),
  55257. form: "anthro",
  55258. default: true
  55259. },
  55260. {
  55261. name: "Humanoid",
  55262. height: math.unit(2.1, "meters"),
  55263. form: "taur"
  55264. },
  55265. {
  55266. name: "Normal",
  55267. height: math.unit(7, "meters"),
  55268. form: "taur",
  55269. default: true
  55270. },
  55271. ],
  55272. {
  55273. "anthro": {
  55274. name: "Anthro",
  55275. default: true
  55276. },
  55277. "taur": {
  55278. name: "Taur",
  55279. },
  55280. }
  55281. ))
  55282. characterMakers.push(() => makeCharacter(
  55283. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55284. {
  55285. front: {
  55286. height: math.unit(2 + 5/12, "feet"),
  55287. name: "Front",
  55288. image: {
  55289. source: "./media/characters/kyan/front.svg",
  55290. extra: 460/334,
  55291. bottom: 23/483
  55292. },
  55293. extraAttributes: {
  55294. "toeLength": {
  55295. name: "Toe Length",
  55296. power: 1,
  55297. type: "length",
  55298. base: math.unit(7, "cm")
  55299. },
  55300. "toeclawLength": {
  55301. name: "Toeclaw Length",
  55302. power: 1,
  55303. type: "length",
  55304. base: math.unit(4.7, "cm")
  55305. },
  55306. "earHeight": {
  55307. name: "Ear Height",
  55308. power: 1,
  55309. type: "length",
  55310. base: math.unit(14.1, "cm")
  55311. },
  55312. }
  55313. },
  55314. paws: {
  55315. height: math.unit(0.45, "feet"),
  55316. name: "Paws",
  55317. image: {
  55318. source: "./media/characters/kyan/paws.svg",
  55319. extra: 581/581,
  55320. bottom: 114/695
  55321. }
  55322. },
  55323. },
  55324. [
  55325. {
  55326. name: "Normal",
  55327. height: math.unit(2 + 5/12, "feet"),
  55328. default: true
  55329. },
  55330. ]
  55331. ))
  55332. characterMakers.push(() => makeCharacter(
  55333. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55334. {
  55335. front: {
  55336. height: math.unit(2 + 2/3, "feet"),
  55337. name: "Front",
  55338. image: {
  55339. source: "./media/characters/xazzon/front.svg",
  55340. extra: 1109/984,
  55341. bottom: 42/1151
  55342. }
  55343. },
  55344. back: {
  55345. height: math.unit(2 + 2/3, "feet"),
  55346. name: "Back",
  55347. image: {
  55348. source: "./media/characters/xazzon/back.svg",
  55349. extra: 1095/971,
  55350. bottom: 23/1118
  55351. }
  55352. },
  55353. },
  55354. [
  55355. {
  55356. name: "Normal",
  55357. height: math.unit(2 + 2/3, "feet"),
  55358. default: true
  55359. },
  55360. ]
  55361. ))
  55362. characterMakers.push(() => makeCharacter(
  55363. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55364. {
  55365. front: {
  55366. height: math.unit(8, "feet"),
  55367. weight: math.unit(300, "lb"),
  55368. name: "Front",
  55369. image: {
  55370. source: "./media/characters/khyla-shadowsong/front.svg",
  55371. extra: 861/798,
  55372. bottom: 32/893
  55373. }
  55374. },
  55375. side: {
  55376. height: math.unit(8, "feet"),
  55377. weight: math.unit(300, "lb"),
  55378. name: "Side",
  55379. image: {
  55380. source: "./media/characters/khyla-shadowsong/side.svg",
  55381. extra: 790/750,
  55382. bottom: 87/877
  55383. }
  55384. },
  55385. back: {
  55386. height: math.unit(8, "feet"),
  55387. weight: math.unit(300, "lb"),
  55388. name: "Back",
  55389. image: {
  55390. source: "./media/characters/khyla-shadowsong/back.svg",
  55391. extra: 855/808,
  55392. bottom: 14/869
  55393. }
  55394. },
  55395. head: {
  55396. height: math.unit(2.7, "feet"),
  55397. name: "Head",
  55398. image: {
  55399. source: "./media/characters/khyla-shadowsong/head.svg"
  55400. }
  55401. },
  55402. },
  55403. [
  55404. {
  55405. name: "Micro",
  55406. height: math.unit(6, "inches")
  55407. },
  55408. {
  55409. name: "Normal",
  55410. height: math.unit(8, "feet"),
  55411. default: true
  55412. },
  55413. ]
  55414. ))
  55415. characterMakers.push(() => makeCharacter(
  55416. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55417. {
  55418. hyperFront: {
  55419. height: math.unit(9 + 4/12, "feet"),
  55420. weight: math.unit(2000, "lb"),
  55421. name: "Front",
  55422. image: {
  55423. source: "./media/characters/tiden/hyper-front.svg",
  55424. extra: 400/382,
  55425. bottom: 6/406
  55426. },
  55427. form: "hyper",
  55428. },
  55429. regularFront: {
  55430. height: math.unit(7 + 10/12, "feet"),
  55431. weight: math.unit(470, "lb"),
  55432. name: "Front",
  55433. image: {
  55434. source: "./media/characters/tiden/regular-front.svg",
  55435. extra: 468/442,
  55436. bottom: 6/474
  55437. },
  55438. form: "regular",
  55439. },
  55440. },
  55441. [
  55442. {
  55443. name: "Normal",
  55444. height: math.unit(9 + 4/12, "feet"),
  55445. default: true,
  55446. form: "hyper"
  55447. },
  55448. {
  55449. name: "Normal",
  55450. height: math.unit(7 + 10/12, "feet"),
  55451. default: true,
  55452. form: "regular"
  55453. },
  55454. ],
  55455. {
  55456. "hyper": {
  55457. name: "Hyper",
  55458. default: true
  55459. },
  55460. "regular": {
  55461. name: "Regular",
  55462. },
  55463. }
  55464. ))
  55465. characterMakers.push(() => makeCharacter(
  55466. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55467. {
  55468. side: {
  55469. height: math.unit(6, "feet"),
  55470. weight: math.unit(150, "lb"),
  55471. name: "Side",
  55472. image: {
  55473. source: "./media/characters/jason-crowe/side.svg",
  55474. extra: 1771/766,
  55475. bottom: 219/1990
  55476. }
  55477. },
  55478. },
  55479. [
  55480. {
  55481. name: "Pocket Gryphon",
  55482. height: math.unit(6, "cm")
  55483. },
  55484. {
  55485. name: "Raven",
  55486. height: math.unit(60, "cm")
  55487. },
  55488. {
  55489. name: "Normal",
  55490. height: math.unit(1, "meter"),
  55491. default: true
  55492. },
  55493. ]
  55494. ))
  55495. characterMakers.push(() => makeCharacter(
  55496. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55497. {
  55498. front: {
  55499. height: math.unit(9 + 6/12, "feet"),
  55500. weight: math.unit(1100, "lb"),
  55501. name: "Front",
  55502. image: {
  55503. source: "./media/characters/django/front.svg",
  55504. extra: 1231/1136,
  55505. bottom: 34/1265
  55506. }
  55507. },
  55508. side: {
  55509. height: math.unit(9 + 6/12, "feet"),
  55510. weight: math.unit(1100, "lb"),
  55511. name: "Side",
  55512. image: {
  55513. source: "./media/characters/django/side.svg",
  55514. extra: 1267/1174,
  55515. bottom: 9/1276
  55516. }
  55517. },
  55518. },
  55519. [
  55520. {
  55521. name: "Normal",
  55522. height: math.unit(9 + 6/12, "feet"),
  55523. default: true
  55524. },
  55525. {
  55526. name: "Macro 1",
  55527. height: math.unit(50, "feet")
  55528. },
  55529. {
  55530. name: "Macro 2",
  55531. height: math.unit(500, "feet")
  55532. },
  55533. {
  55534. name: "Mega Macro",
  55535. height: math.unit(5300, "feet")
  55536. },
  55537. ]
  55538. ))
  55539. characterMakers.push(() => makeCharacter(
  55540. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55541. {
  55542. frontSfw: {
  55543. height: math.unit(120, "cm"),
  55544. weight: math.unit(15, "kg"),
  55545. name: "Front (SFW)",
  55546. image: {
  55547. source: "./media/characters/eri/front-sfw.svg",
  55548. extra: 1014/939,
  55549. bottom: 37/1051
  55550. },
  55551. form: "moth",
  55552. },
  55553. frontNsfw: {
  55554. height: math.unit(120, "cm"),
  55555. weight: math.unit(15, "kg"),
  55556. name: "Front (NSFW)",
  55557. image: {
  55558. source: "./media/characters/eri/front-nsfw.svg",
  55559. extra: 1014/939,
  55560. bottom: 37/1051
  55561. },
  55562. form: "moth",
  55563. default: true
  55564. },
  55565. egg: {
  55566. height: math.unit(10, "cm"),
  55567. name: "Egg",
  55568. image: {
  55569. source: "./media/characters/eri/egg.svg"
  55570. },
  55571. form: "egg",
  55572. default: true
  55573. },
  55574. },
  55575. [
  55576. {
  55577. name: "Normal",
  55578. height: math.unit(120, "cm"),
  55579. default: true,
  55580. form: "moth"
  55581. },
  55582. {
  55583. name: "Normal",
  55584. height: math.unit(10, "cm"),
  55585. default: true,
  55586. form: "egg"
  55587. },
  55588. ],
  55589. {
  55590. "moth": {
  55591. name: "Moth",
  55592. default: true
  55593. },
  55594. "egg": {
  55595. name: "Egg",
  55596. },
  55597. }
  55598. ))
  55599. characterMakers.push(() => makeCharacter(
  55600. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55601. {
  55602. front: {
  55603. height: math.unit(200, "feet"),
  55604. name: "Front",
  55605. image: {
  55606. source: "./media/characters/bishop-dowser/front.svg",
  55607. extra: 933/868,
  55608. bottom: 106/1039
  55609. }
  55610. },
  55611. },
  55612. [
  55613. {
  55614. name: "Giant",
  55615. height: math.unit(200, "feet"),
  55616. default: true
  55617. },
  55618. ]
  55619. ))
  55620. characterMakers.push(() => makeCharacter(
  55621. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55622. {
  55623. front: {
  55624. height: math.unit(2, "meters"),
  55625. preyCapacity: math.unit(3, "people"),
  55626. name: "Front",
  55627. image: {
  55628. source: "./media/characters/fryra/front.svg",
  55629. extra: 1025/948,
  55630. bottom: 30/1055
  55631. },
  55632. extraAttributes: {
  55633. "breastVolume": {
  55634. name: "Breast Volume",
  55635. power: 3,
  55636. type: "volume",
  55637. base: math.unit(8, "liters")
  55638. },
  55639. }
  55640. },
  55641. back: {
  55642. height: math.unit(2, "meters"),
  55643. preyCapacity: math.unit(3, "people"),
  55644. name: "Back",
  55645. image: {
  55646. source: "./media/characters/fryra/back.svg",
  55647. extra: 993/938,
  55648. bottom: 38/1031
  55649. },
  55650. extraAttributes: {
  55651. "breastVolume": {
  55652. name: "Breast Volume",
  55653. power: 3,
  55654. type: "volume",
  55655. base: math.unit(8, "liters")
  55656. },
  55657. }
  55658. },
  55659. head: {
  55660. height: math.unit(1.33, "feet"),
  55661. name: "Head",
  55662. image: {
  55663. source: "./media/characters/fryra/head.svg"
  55664. }
  55665. },
  55666. maw: {
  55667. height: math.unit(0.56, "feet"),
  55668. name: "Maw",
  55669. image: {
  55670. source: "./media/characters/fryra/maw.svg"
  55671. }
  55672. },
  55673. },
  55674. [
  55675. {
  55676. name: "Micro",
  55677. height: math.unit(5, "cm")
  55678. },
  55679. {
  55680. name: "Normal",
  55681. height: math.unit(2, "meters"),
  55682. default: true
  55683. },
  55684. {
  55685. name: "Small Macro",
  55686. height: math.unit(8, "meters")
  55687. },
  55688. {
  55689. name: "Macro",
  55690. height: math.unit(50, "meters")
  55691. },
  55692. {
  55693. name: "Megamacro",
  55694. height: math.unit(1, "km")
  55695. },
  55696. {
  55697. name: "Planetary",
  55698. height: math.unit(300000, "km")
  55699. },
  55700. {
  55701. name: "Universal",
  55702. height: math.unit(250, "lightyears")
  55703. },
  55704. {
  55705. name: "Fabric of Reality",
  55706. height: math.unit(1000, "multiverses")
  55707. },
  55708. ]
  55709. ))
  55710. characterMakers.push(() => makeCharacter(
  55711. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55712. {
  55713. frontDressed: {
  55714. height: math.unit(6 + 2/12, "feet"),
  55715. name: "Front (Dressed)",
  55716. image: {
  55717. source: "./media/characters/fiera/front-dressed.svg",
  55718. extra: 1883/1793,
  55719. bottom: 70/1953
  55720. }
  55721. },
  55722. backDressed: {
  55723. height: math.unit(6 + 2/12, "feet"),
  55724. name: "Back (Dressed)",
  55725. image: {
  55726. source: "./media/characters/fiera/back-dressed.svg",
  55727. extra: 1847/1780,
  55728. bottom: 70/1917
  55729. }
  55730. },
  55731. frontNude: {
  55732. height: math.unit(6 + 2/12, "feet"),
  55733. name: "Front (Nude)",
  55734. image: {
  55735. source: "./media/characters/fiera/front-nude.svg",
  55736. extra: 1875/1785,
  55737. bottom: 66/1941
  55738. }
  55739. },
  55740. backNude: {
  55741. height: math.unit(6 + 2/12, "feet"),
  55742. name: "Back (Nude)",
  55743. image: {
  55744. source: "./media/characters/fiera/back-nude.svg",
  55745. extra: 1855/1788,
  55746. bottom: 44/1899
  55747. }
  55748. },
  55749. maw: {
  55750. height: math.unit(1.3, "feet"),
  55751. name: "Maw",
  55752. image: {
  55753. source: "./media/characters/fiera/maw.svg"
  55754. }
  55755. },
  55756. paw: {
  55757. height: math.unit(1, "feet"),
  55758. name: "Paw",
  55759. image: {
  55760. source: "./media/characters/fiera/paw.svg"
  55761. }
  55762. },
  55763. shoe: {
  55764. height: math.unit(1.05, "feet"),
  55765. name: "Shoe",
  55766. image: {
  55767. source: "./media/characters/fiera/shoe.svg"
  55768. }
  55769. },
  55770. },
  55771. [
  55772. {
  55773. name: "Normal",
  55774. height: math.unit(6 + 2/12, "feet"),
  55775. default: true
  55776. },
  55777. {
  55778. name: "Size Difference",
  55779. height: math.unit(13, "feet")
  55780. },
  55781. {
  55782. name: "Macro",
  55783. height: math.unit(60, "feet")
  55784. },
  55785. {
  55786. name: "Mega Macro",
  55787. height: math.unit(200, "feet")
  55788. },
  55789. ]
  55790. ))
  55791. characterMakers.push(() => makeCharacter(
  55792. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55793. {
  55794. back: {
  55795. height: math.unit(6, "feet"),
  55796. name: "Back",
  55797. image: {
  55798. source: "./media/characters/flare/back.svg",
  55799. extra: 1883/1765,
  55800. bottom: 32/1915
  55801. }
  55802. },
  55803. },
  55804. [
  55805. {
  55806. name: "Normal",
  55807. height: math.unit(6 + 2/12, "feet"),
  55808. default: true
  55809. },
  55810. {
  55811. name: "Size Difference",
  55812. height: math.unit(13, "feet")
  55813. },
  55814. {
  55815. name: "Macro",
  55816. height: math.unit(60, "feet")
  55817. },
  55818. {
  55819. name: "Macro 2",
  55820. height: math.unit(100, "feet")
  55821. },
  55822. {
  55823. name: "Mega Macro",
  55824. height: math.unit(200, "feet")
  55825. },
  55826. ]
  55827. ))
  55828. characterMakers.push(() => makeCharacter(
  55829. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55830. {
  55831. front: {
  55832. height: math.unit(2.2, "m"),
  55833. weight: math.unit(300, "kg"),
  55834. name: "Front",
  55835. image: {
  55836. source: "./media/characters/hanna/front.svg",
  55837. extra: 1696/1502,
  55838. bottom: 206/1902
  55839. }
  55840. },
  55841. },
  55842. [
  55843. {
  55844. name: "Humanoid",
  55845. height: math.unit(2.2, "meters")
  55846. },
  55847. {
  55848. name: "Normal",
  55849. height: math.unit(4.8, "meters"),
  55850. default: true
  55851. },
  55852. ]
  55853. ))
  55854. characterMakers.push(() => makeCharacter(
  55855. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55856. {
  55857. front: {
  55858. height: math.unit(2.8, "meters"),
  55859. name: "Front",
  55860. image: {
  55861. source: "./media/characters/argo/front.svg",
  55862. extra: 731/518,
  55863. bottom: 84/815
  55864. }
  55865. },
  55866. },
  55867. [
  55868. {
  55869. name: "Normal",
  55870. height: math.unit(3, "meters"),
  55871. default: true
  55872. },
  55873. ]
  55874. ))
  55875. characterMakers.push(() => makeCharacter(
  55876. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55877. {
  55878. side: {
  55879. height: math.unit(3.8, "meters"),
  55880. name: "Side",
  55881. image: {
  55882. source: "./media/characters/sybil/side.svg",
  55883. extra: 382/361,
  55884. bottom: 25/407
  55885. }
  55886. },
  55887. },
  55888. [
  55889. {
  55890. name: "Normal",
  55891. height: math.unit(3.8, "meters"),
  55892. default: true
  55893. },
  55894. ]
  55895. ))
  55896. characterMakers.push(() => makeCharacter(
  55897. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55898. {
  55899. side: {
  55900. height: math.unit(6, "meters"),
  55901. name: "Side",
  55902. image: {
  55903. source: "./media/characters/plum/side.svg",
  55904. extra: 858/755,
  55905. bottom: 45/903
  55906. },
  55907. form: "taur",
  55908. default: true
  55909. },
  55910. back: {
  55911. height: math.unit(6.3, "meters"),
  55912. name: "Back",
  55913. image: {
  55914. source: "./media/characters/plum/back.svg",
  55915. extra: 887/813,
  55916. bottom: 32/919
  55917. },
  55918. form: "taur",
  55919. },
  55920. feral: {
  55921. height: math.unit(5.5, "meter"),
  55922. name: "Front",
  55923. image: {
  55924. source: "./media/characters/plum/feral.svg",
  55925. extra: 568/403,
  55926. bottom: 51/619
  55927. },
  55928. form: "feral",
  55929. default: true
  55930. },
  55931. head: {
  55932. height: math.unit(1.46, "meter"),
  55933. name: "Head",
  55934. image: {
  55935. source: "./media/characters/plum/head.svg"
  55936. },
  55937. form: "taur"
  55938. },
  55939. tailTop: {
  55940. height: math.unit(5.6, "meter"),
  55941. name: "Tail (Top)",
  55942. image: {
  55943. source: "./media/characters/plum/tail-top.svg"
  55944. },
  55945. form: "taur",
  55946. },
  55947. tailBottom: {
  55948. height: math.unit(5.6, "meter"),
  55949. name: "Tail (Bottom)",
  55950. image: {
  55951. source: "./media/characters/plum/tail-bottom.svg"
  55952. },
  55953. form: "taur",
  55954. },
  55955. feralHead: {
  55956. height: math.unit(2.56549521, "meter"),
  55957. name: "Head",
  55958. image: {
  55959. source: "./media/characters/plum/head.svg"
  55960. },
  55961. form: "feral"
  55962. },
  55963. feralTailTop: {
  55964. height: math.unit(5.44728435, "meter"),
  55965. name: "Tail (Top)",
  55966. image: {
  55967. source: "./media/characters/plum/tail-top.svg"
  55968. },
  55969. form: "feral",
  55970. },
  55971. feralTailBottom: {
  55972. height: math.unit(5.44728435, "meter"),
  55973. name: "Tail (Bottom)",
  55974. image: {
  55975. source: "./media/characters/plum/tail-bottom.svg"
  55976. },
  55977. form: "feral",
  55978. },
  55979. },
  55980. [
  55981. {
  55982. name: "Normal",
  55983. height: math.unit(6, "meters"),
  55984. default: true,
  55985. form: "taur"
  55986. },
  55987. {
  55988. name: "Normal",
  55989. height: math.unit(5.5, "meters"),
  55990. default: true,
  55991. form: "feral"
  55992. },
  55993. ],
  55994. {
  55995. "taur": {
  55996. name: "Taur",
  55997. default: true
  55998. },
  55999. "feral": {
  56000. name: "Feral",
  56001. },
  56002. }
  56003. ))
  56004. characterMakers.push(() => makeCharacter(
  56005. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56006. {
  56007. front: {
  56008. height: math.unit(6, "feet"),
  56009. weight: math.unit(115, "lb"),
  56010. name: "Front",
  56011. image: {
  56012. source: "./media/characters/celeste-kitsune/front.svg",
  56013. extra: 393/366,
  56014. bottom: 7/400
  56015. }
  56016. },
  56017. side: {
  56018. height: math.unit(6, "feet"),
  56019. weight: math.unit(115, "lb"),
  56020. name: "Side",
  56021. image: {
  56022. source: "./media/characters/celeste-kitsune/side.svg",
  56023. extra: 818/765,
  56024. bottom: 40/858
  56025. }
  56026. },
  56027. },
  56028. [
  56029. {
  56030. name: "Megamacro",
  56031. height: math.unit(1500, "miles"),
  56032. default: true
  56033. },
  56034. ]
  56035. ))
  56036. characterMakers.push(() => makeCharacter(
  56037. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56038. {
  56039. front: {
  56040. height: math.unit(8, "meters"),
  56041. name: "Front",
  56042. image: {
  56043. source: "./media/characters/io/front.svg",
  56044. extra: 865/722,
  56045. bottom: 58/923
  56046. }
  56047. },
  56048. back: {
  56049. height: math.unit(8, "meters"),
  56050. name: "Back",
  56051. image: {
  56052. source: "./media/characters/io/back.svg",
  56053. extra: 920/776,
  56054. bottom: 42/962
  56055. }
  56056. },
  56057. head: {
  56058. height: math.unit(5.09, "meters"),
  56059. name: "Head",
  56060. image: {
  56061. source: "./media/characters/io/head.svg"
  56062. }
  56063. },
  56064. hand: {
  56065. height: math.unit(1.6, "meters"),
  56066. name: "Hand",
  56067. image: {
  56068. source: "./media/characters/io/hand.svg"
  56069. }
  56070. },
  56071. foot: {
  56072. height: math.unit(2.4, "meters"),
  56073. name: "Foot",
  56074. image: {
  56075. source: "./media/characters/io/foot.svg"
  56076. }
  56077. },
  56078. },
  56079. [
  56080. {
  56081. name: "Normal",
  56082. height: math.unit(8, "meters"),
  56083. default: true
  56084. },
  56085. ]
  56086. ))
  56087. characterMakers.push(() => makeCharacter(
  56088. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56089. {
  56090. side: {
  56091. height: math.unit(6 + 3/12, "feet"),
  56092. weight: math.unit(225, "lb"),
  56093. name: "Side",
  56094. image: {
  56095. source: "./media/characters/silas/side.svg",
  56096. extra: 703/653,
  56097. bottom: 23/726
  56098. },
  56099. extraAttributes: {
  56100. "pawLength": {
  56101. name: "Paw Length",
  56102. power: 1,
  56103. type: "length",
  56104. base: math.unit(12, "inches")
  56105. },
  56106. "pawWidth": {
  56107. name: "Paw Width",
  56108. power: 1,
  56109. type: "length",
  56110. base: math.unit(4.5, "inches")
  56111. },
  56112. "pawArea": {
  56113. name: "Paw Area",
  56114. power: 2,
  56115. type: "area",
  56116. base: math.unit(12 * 4.5, "inches^2")
  56117. },
  56118. }
  56119. },
  56120. },
  56121. [
  56122. {
  56123. name: "Normal",
  56124. height: math.unit(6 + 3/12, "feet"),
  56125. default: true
  56126. },
  56127. ]
  56128. ))
  56129. characterMakers.push(() => makeCharacter(
  56130. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56131. {
  56132. back: {
  56133. height: math.unit(1.6, "meters"),
  56134. weight: math.unit(150, "lb"),
  56135. name: "Back",
  56136. image: {
  56137. source: "./media/characters/zari/back.svg",
  56138. extra: 424/411,
  56139. bottom: 32/456
  56140. },
  56141. extraAttributes: {
  56142. "bladderCapacity": {
  56143. name: "Bladder Size",
  56144. power: 3,
  56145. type: "volume",
  56146. base: math.unit(500, "mL")
  56147. },
  56148. "bladderFlow": {
  56149. name: "Flow Rate",
  56150. power: 3,
  56151. type: "volume",
  56152. base: math.unit(25, "mL")
  56153. },
  56154. }
  56155. },
  56156. },
  56157. [
  56158. {
  56159. name: "Normal",
  56160. height: math.unit(1.6, "meters"),
  56161. default: true
  56162. },
  56163. ]
  56164. ))
  56165. characterMakers.push(() => makeCharacter(
  56166. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56167. {
  56168. front: {
  56169. height: math.unit(25, "feet"),
  56170. weight: math.unit(5, "tons"),
  56171. name: "Front",
  56172. image: {
  56173. source: "./media/characters/charlie-human/front.svg",
  56174. extra: 1870/1740,
  56175. bottom: 102/1972
  56176. },
  56177. extraAttributes: {
  56178. "dickLength": {
  56179. name: "Dick Length",
  56180. power: 1,
  56181. type: "length",
  56182. base: math.unit(9, "feet")
  56183. },
  56184. }
  56185. },
  56186. back: {
  56187. height: math.unit(25, "feet"),
  56188. weight: math.unit(5, "tons"),
  56189. name: "Back",
  56190. image: {
  56191. source: "./media/characters/charlie-human/back.svg",
  56192. extra: 1858/1733,
  56193. bottom: 105/1963
  56194. },
  56195. extraAttributes: {
  56196. "dickLength": {
  56197. name: "Dick Length",
  56198. power: 1,
  56199. type: "length",
  56200. base: math.unit(9, "feet")
  56201. },
  56202. }
  56203. },
  56204. },
  56205. [
  56206. {
  56207. name: "\"Normal\"",
  56208. height: math.unit(6 + 4/12, "feet")
  56209. },
  56210. {
  56211. name: "Big",
  56212. height: math.unit(25, "feet"),
  56213. default: true
  56214. },
  56215. ]
  56216. ))
  56217. characterMakers.push(() => makeCharacter(
  56218. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56219. {
  56220. front: {
  56221. height: math.unit(6 + 4/12, "feet"),
  56222. weight: math.unit(320, "lb"),
  56223. name: "Front",
  56224. image: {
  56225. source: "./media/characters/ookitsu/front.svg",
  56226. extra: 1160/976,
  56227. bottom: 38/1198
  56228. }
  56229. },
  56230. frontNsfw: {
  56231. height: math.unit(6 + 4/12, "feet"),
  56232. weight: math.unit(320, "lb"),
  56233. name: "Front (NSFW)",
  56234. image: {
  56235. source: "./media/characters/ookitsu/front-nsfw.svg",
  56236. extra: 1160/976,
  56237. bottom: 38/1198
  56238. }
  56239. },
  56240. back: {
  56241. height: math.unit(6 + 4/12, "feet"),
  56242. weight: math.unit(320, "lb"),
  56243. name: "Back",
  56244. image: {
  56245. source: "./media/characters/ookitsu/back.svg",
  56246. extra: 1030/975,
  56247. bottom: 70/1100
  56248. }
  56249. },
  56250. head: {
  56251. height: math.unit(1.79, "feet"),
  56252. name: "Head",
  56253. image: {
  56254. source: "./media/characters/ookitsu/head.svg"
  56255. }
  56256. },
  56257. hand: {
  56258. height: math.unit(0.92, "feet"),
  56259. name: "Hand",
  56260. image: {
  56261. source: "./media/characters/ookitsu/hand.svg"
  56262. }
  56263. },
  56264. tails: {
  56265. height: math.unit(3.3, "feet"),
  56266. name: "Tails",
  56267. image: {
  56268. source: "./media/characters/ookitsu/tails.svg"
  56269. }
  56270. },
  56271. dick: {
  56272. height: math.unit(1.10833, "feet"),
  56273. name: "Dick",
  56274. image: {
  56275. source: "./media/characters/ookitsu/dick.svg"
  56276. }
  56277. },
  56278. },
  56279. [
  56280. {
  56281. name: "Normal",
  56282. height: math.unit(6 + 4/12, "feet"),
  56283. default: true
  56284. },
  56285. {
  56286. name: "Macro",
  56287. height: math.unit(30, "feet")
  56288. },
  56289. ]
  56290. ))
  56291. characterMakers.push(() => makeCharacter(
  56292. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56293. {
  56294. anthroFront: {
  56295. height: math.unit(6, "feet"),
  56296. weight: math.unit(250, "lb"),
  56297. name: "Front",
  56298. image: {
  56299. source: "./media/characters/jhusky/anthro-front.svg",
  56300. extra: 474/439,
  56301. bottom: 7/481
  56302. },
  56303. form: "anthro",
  56304. default: true
  56305. },
  56306. taurSideSfw: {
  56307. height: math.unit(6 + 4/12, "feet"),
  56308. weight: math.unit(500, "lb"),
  56309. name: "Side (SFW)",
  56310. image: {
  56311. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56312. extra: 1741/1629,
  56313. bottom: 196/1937
  56314. },
  56315. form: "taur",
  56316. default: true
  56317. },
  56318. taurSideNsfw: {
  56319. height: math.unit(6 + 4/12, "feet"),
  56320. weight: math.unit(500, "lb"),
  56321. name: "Taur (NSFW)",
  56322. image: {
  56323. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56324. extra: 1741/1629,
  56325. bottom: 196/1937
  56326. },
  56327. form: "taur",
  56328. },
  56329. },
  56330. [
  56331. {
  56332. name: "Huge",
  56333. height: math.unit(500, "feet"),
  56334. form: "anthro"
  56335. },
  56336. {
  56337. name: "Macro",
  56338. height: math.unit(1000, "feet"),
  56339. default: true,
  56340. form: "anthro"
  56341. },
  56342. {
  56343. name: "Megamacro",
  56344. height: math.unit(10000, "feet"),
  56345. form: "anthro"
  56346. },
  56347. {
  56348. name: "Huge",
  56349. height: math.unit(528, "feet"),
  56350. form: "taur"
  56351. },
  56352. {
  56353. name: "Macro",
  56354. height: math.unit(1056, "feet"),
  56355. default: true,
  56356. form: "taur"
  56357. },
  56358. {
  56359. name: "Megamacro",
  56360. height: math.unit(10556, "feet"),
  56361. form: "taur"
  56362. },
  56363. ],
  56364. {
  56365. "anthro": {
  56366. name: "Anthro",
  56367. default: true
  56368. },
  56369. "taur": {
  56370. name: "Taur",
  56371. },
  56372. }
  56373. ))
  56374. characterMakers.push(() => makeCharacter(
  56375. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56376. {
  56377. front: {
  56378. height: math.unit(8, "feet"),
  56379. weight: math.unit(500, "lb"),
  56380. name: "Front",
  56381. image: {
  56382. source: "./media/characters/armail/front.svg",
  56383. extra: 1753/1669,
  56384. bottom: 155/1908
  56385. }
  56386. },
  56387. back: {
  56388. height: math.unit(8, "feet"),
  56389. weight: math.unit(500, "lb"),
  56390. name: "Back",
  56391. image: {
  56392. source: "./media/characters/armail/back.svg",
  56393. extra: 1872/1803,
  56394. bottom: 63/1935
  56395. }
  56396. },
  56397. },
  56398. [
  56399. {
  56400. name: "Micro",
  56401. height: math.unit(0.25, "feet")
  56402. },
  56403. {
  56404. name: "Normal",
  56405. height: math.unit(8, "feet"),
  56406. default: true
  56407. },
  56408. {
  56409. name: "Mini-macro",
  56410. height: math.unit(30, "feet")
  56411. },
  56412. {
  56413. name: "Macro",
  56414. height: math.unit(400, "feet")
  56415. },
  56416. {
  56417. name: "Mega-macro",
  56418. height: math.unit(6000, "feet")
  56419. },
  56420. ]
  56421. ))
  56422. characterMakers.push(() => makeCharacter(
  56423. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56424. {
  56425. front: {
  56426. height: math.unit(6 + 7/12, "feet"),
  56427. weight: math.unit(210, "lb"),
  56428. name: "Front",
  56429. image: {
  56430. source: "./media/characters/wilfred-t-buxton/front.svg",
  56431. extra: 1068/882,
  56432. bottom: 28/1096
  56433. }
  56434. },
  56435. },
  56436. [
  56437. {
  56438. name: "Normal",
  56439. height: math.unit(6 + 7/12, "feet"),
  56440. default: true
  56441. },
  56442. ]
  56443. ))
  56444. characterMakers.push(() => makeCharacter(
  56445. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56446. {
  56447. front: {
  56448. height: math.unit(5 + 2/12, "feet"),
  56449. weight: math.unit(120, "lb"),
  56450. name: "Front",
  56451. image: {
  56452. source: "./media/characters/leighton-marrow/front.svg",
  56453. extra: 441/409,
  56454. bottom: 37/478
  56455. }
  56456. },
  56457. },
  56458. [
  56459. {
  56460. name: "Normal",
  56461. height: math.unit(5 + 2/12, "feet"),
  56462. default: true
  56463. },
  56464. ]
  56465. ))
  56466. characterMakers.push(() => makeCharacter(
  56467. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56468. {
  56469. front: {
  56470. height: math.unit(4, "meters"),
  56471. weight: math.unit(1200, "kg"),
  56472. name: "Front",
  56473. image: {
  56474. source: "./media/characters/licos/front.svg",
  56475. extra: 1727/1604,
  56476. bottom: 101/1828
  56477. },
  56478. form: "anthro",
  56479. default: true
  56480. },
  56481. taur_side: {
  56482. height: math.unit(20, "meters"),
  56483. weight: math.unit(1100000, "kg"),
  56484. name: "Side",
  56485. image: {
  56486. source: "./media/characters/licos/taur.svg",
  56487. extra: 1158/1091,
  56488. bottom: 80/1238
  56489. },
  56490. form: "taur",
  56491. default: true
  56492. },
  56493. },
  56494. [
  56495. {
  56496. name: "Normal",
  56497. height: math.unit(4, "meters"),
  56498. default: true,
  56499. form: "anthro"
  56500. },
  56501. {
  56502. name: "Normal",
  56503. height: math.unit(20, "meters"),
  56504. default: true,
  56505. form: "taur"
  56506. },
  56507. ],
  56508. {
  56509. "anthro": {
  56510. name: "Anthro",
  56511. default: true
  56512. },
  56513. "taur": {
  56514. name: "Taur",
  56515. },
  56516. }
  56517. ))
  56518. characterMakers.push(() => makeCharacter(
  56519. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56520. {
  56521. front: {
  56522. height: math.unit(10 + 3/12, "feet"),
  56523. name: "Front",
  56524. image: {
  56525. source: "./media/characters/theo-monkey/front.svg",
  56526. extra: 1735/1658,
  56527. bottom: 73/1808
  56528. }
  56529. },
  56530. back: {
  56531. height: math.unit(10 + 3/12, "feet"),
  56532. name: "Back",
  56533. image: {
  56534. source: "./media/characters/theo-monkey/back.svg",
  56535. extra: 1742/1664,
  56536. bottom: 33/1775
  56537. }
  56538. },
  56539. head: {
  56540. height: math.unit(2.29, "feet"),
  56541. name: "Head",
  56542. image: {
  56543. source: "./media/characters/theo-monkey/head.svg"
  56544. }
  56545. },
  56546. handPalm: {
  56547. height: math.unit(1.73, "feet"),
  56548. name: "Hand (Palm)",
  56549. image: {
  56550. source: "./media/characters/theo-monkey/hand-palm.svg"
  56551. }
  56552. },
  56553. handBack: {
  56554. height: math.unit(1.63, "feet"),
  56555. name: "Hand (Back)",
  56556. image: {
  56557. source: "./media/characters/theo-monkey/hand-back.svg"
  56558. }
  56559. },
  56560. footSole: {
  56561. height: math.unit(2.15, "feet"),
  56562. name: "Foot (Sole)",
  56563. image: {
  56564. source: "./media/characters/theo-monkey/foot-sole.svg"
  56565. }
  56566. },
  56567. footSide: {
  56568. height: math.unit(1.6, "feet"),
  56569. name: "Foot (Side)",
  56570. image: {
  56571. source: "./media/characters/theo-monkey/foot-side.svg"
  56572. }
  56573. },
  56574. },
  56575. [
  56576. {
  56577. name: "Normal",
  56578. height: math.unit(10 + 3/12, "feet"),
  56579. default: true
  56580. },
  56581. ]
  56582. ))
  56583. characterMakers.push(() => makeCharacter(
  56584. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56585. {
  56586. front: {
  56587. height: math.unit(11, "feet"),
  56588. weight: math.unit(3000, "lb"),
  56589. preyCapacity: math.unit(10, "people"),
  56590. name: "Front",
  56591. image: {
  56592. source: "./media/characters/brook/front.svg",
  56593. extra: 909/835,
  56594. bottom: 108/1017
  56595. }
  56596. },
  56597. back: {
  56598. height: math.unit(11, "feet"),
  56599. weight: math.unit(3000, "lb"),
  56600. preyCapacity: math.unit(10, "people"),
  56601. name: "Back",
  56602. image: {
  56603. source: "./media/characters/brook/back.svg",
  56604. extra: 976/916,
  56605. bottom: 34/1010
  56606. }
  56607. },
  56608. backAlt: {
  56609. height: math.unit(11, "feet"),
  56610. weight: math.unit(3000, "lb"),
  56611. preyCapacity: math.unit(10, "people"),
  56612. name: "Back (Alt)",
  56613. image: {
  56614. source: "./media/characters/brook/back-alt.svg",
  56615. extra: 1283/1213,
  56616. bottom: 35/1318
  56617. }
  56618. },
  56619. bust: {
  56620. height: math.unit(9.0859030837, "feet"),
  56621. weight: math.unit(3000, "lb"),
  56622. preyCapacity: math.unit(10, "people"),
  56623. name: "Bust",
  56624. image: {
  56625. source: "./media/characters/brook/bust.svg",
  56626. extra: 2043/1923,
  56627. bottom: 0/2043
  56628. }
  56629. },
  56630. },
  56631. [
  56632. {
  56633. name: "Small",
  56634. height: math.unit(11, "feet"),
  56635. default: true
  56636. },
  56637. {
  56638. name: "Towering",
  56639. height: math.unit(5, "km")
  56640. },
  56641. {
  56642. name: "Enormous",
  56643. height: math.unit(25, "earths")
  56644. },
  56645. ]
  56646. ))
  56647. characterMakers.push(() => makeCharacter(
  56648. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56649. {
  56650. front: {
  56651. height: math.unit(4, "feet"),
  56652. weight: math.unit(150, "lb"),
  56653. name: "Front",
  56654. image: {
  56655. source: "./media/characters/squishi/front.svg",
  56656. extra: 1428/1271,
  56657. bottom: 30/1458
  56658. },
  56659. extraAttributes: {
  56660. "pawSize": {
  56661. name: "Paw Size",
  56662. power: 1,
  56663. type: "length",
  56664. base: math.unit(14, "ShoeSizeMensUS"),
  56665. defaultUnit: "ShoeSizeMensUS"
  56666. },
  56667. }
  56668. },
  56669. side: {
  56670. height: math.unit(4, "feet"),
  56671. weight: math.unit(150, "lb"),
  56672. name: "Side",
  56673. image: {
  56674. source: "./media/characters/squishi/side.svg",
  56675. extra: 1428/1271,
  56676. bottom: 30/1458
  56677. },
  56678. extraAttributes: {
  56679. "pawSize": {
  56680. name: "Paw Size",
  56681. power: 1,
  56682. type: "length",
  56683. base: math.unit(14, "ShoeSizeMensUS"),
  56684. defaultUnit: "ShoeSizeMensUS"
  56685. },
  56686. }
  56687. },
  56688. back: {
  56689. height: math.unit(4, "feet"),
  56690. weight: math.unit(150, "lb"),
  56691. name: "Back",
  56692. image: {
  56693. source: "./media/characters/squishi/back.svg",
  56694. extra: 1428/1271,
  56695. bottom: 30/1458
  56696. },
  56697. extraAttributes: {
  56698. "pawSize": {
  56699. name: "Paw Size",
  56700. power: 1,
  56701. type: "length",
  56702. base: math.unit(14, "ShoeSizeMensUS"),
  56703. defaultUnit: "ShoeSizeMensUS"
  56704. },
  56705. }
  56706. },
  56707. },
  56708. [
  56709. {
  56710. name: "Normal",
  56711. height: math.unit(4, "feet"),
  56712. default: true
  56713. },
  56714. ]
  56715. ))
  56716. characterMakers.push(() => makeCharacter(
  56717. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56718. {
  56719. front: {
  56720. height: math.unit(7 + 8/12, "feet"),
  56721. weight: math.unit(333, "lb"),
  56722. name: "Front",
  56723. image: {
  56724. source: "./media/characters/vincent-vasroc/front.svg",
  56725. extra: 1962/1860,
  56726. bottom: 41/2003
  56727. }
  56728. },
  56729. back: {
  56730. height: math.unit(7 + 8/12, "feet"),
  56731. weight: math.unit(333, "lb"),
  56732. name: "Back",
  56733. image: {
  56734. source: "./media/characters/vincent-vasroc/back.svg",
  56735. extra: 1952/1815,
  56736. bottom: 33/1985
  56737. }
  56738. },
  56739. paw: {
  56740. height: math.unit(1.24, "feet"),
  56741. name: "Paw",
  56742. image: {
  56743. source: "./media/characters/vincent-vasroc/paw.svg"
  56744. }
  56745. },
  56746. ear: {
  56747. height: math.unit(0.75, "feet"),
  56748. name: "Ear",
  56749. image: {
  56750. source: "./media/characters/vincent-vasroc/ear.svg"
  56751. }
  56752. },
  56753. },
  56754. [
  56755. {
  56756. name: "Nano",
  56757. height: math.unit(92, "micrometers")
  56758. },
  56759. {
  56760. name: "Normal",
  56761. height: math.unit(7 + 8/12, "feet"),
  56762. default: true
  56763. },
  56764. ]
  56765. ))
  56766. characterMakers.push(() => makeCharacter(
  56767. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56768. {
  56769. frontNsfw: {
  56770. height: math.unit(40, "feet"),
  56771. weight: math.unit(58, "tons"),
  56772. name: "Front (NSFW)",
  56773. image: {
  56774. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56775. extra: 1265/965,
  56776. bottom: 155/1420
  56777. }
  56778. },
  56779. frontSfw: {
  56780. height: math.unit(40, "feet"),
  56781. weight: math.unit(58, "tons"),
  56782. name: "Front (SFW)",
  56783. image: {
  56784. source: "./media/characters/ru-kahn/front-sfw.svg",
  56785. extra: 1265/965,
  56786. bottom: 80/1345
  56787. }
  56788. },
  56789. },
  56790. [
  56791. {
  56792. name: "Small",
  56793. height: math.unit(4, "feet")
  56794. },
  56795. {
  56796. name: "Normal",
  56797. height: math.unit(40, "feet"),
  56798. default: true
  56799. },
  56800. {
  56801. name: "Macro",
  56802. height: math.unit(400, "feet")
  56803. },
  56804. ]
  56805. ))
  56806. characterMakers.push(() => makeCharacter(
  56807. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56808. {
  56809. frontNude: {
  56810. height: math.unit(6 + 5/12, "feet"),
  56811. name: "Front (Nude)",
  56812. image: {
  56813. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56814. extra: 1369/1366,
  56815. bottom: 68/1437
  56816. }
  56817. },
  56818. frontDressed: {
  56819. height: math.unit(6 + 5/12, "feet"),
  56820. name: "Front (Dressed)",
  56821. image: {
  56822. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56823. extra: 1369/1366,
  56824. bottom: 68/1437
  56825. }
  56826. },
  56827. },
  56828. [
  56829. {
  56830. name: "Normal",
  56831. height: math.unit(6 + 5/12, "feet"),
  56832. default: true
  56833. },
  56834. {
  56835. name: "Maximum",
  56836. height: math.unit(1930, "feet")
  56837. },
  56838. ]
  56839. ))
  56840. characterMakers.push(() => makeCharacter(
  56841. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56842. {
  56843. front: {
  56844. height: math.unit(5 + 6/12, "feet"),
  56845. name: "Front",
  56846. image: {
  56847. source: "./media/characters/kaja/front.svg",
  56848. extra: 1874/1514,
  56849. bottom: 117/1991
  56850. }
  56851. },
  56852. },
  56853. [
  56854. {
  56855. name: "Normal",
  56856. height: math.unit(5 + 6/12, "feet"),
  56857. default: true
  56858. },
  56859. ]
  56860. ))
  56861. characterMakers.push(() => makeCharacter(
  56862. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56863. {
  56864. front: {
  56865. height: math.unit(5 + 9/12, "feet"),
  56866. weight: math.unit(200, "lb"),
  56867. name: "Front",
  56868. image: {
  56869. source: "./media/characters/mark-smith/front.svg",
  56870. extra: 1004/943,
  56871. bottom: 58/1062
  56872. }
  56873. },
  56874. back: {
  56875. height: math.unit(5 + 9/12, "feet"),
  56876. weight: math.unit(200, "lb"),
  56877. name: "Back",
  56878. image: {
  56879. source: "./media/characters/mark-smith/back.svg",
  56880. extra: 1023/953,
  56881. bottom: 24/1047
  56882. }
  56883. },
  56884. head: {
  56885. height: math.unit(1.82, "feet"),
  56886. name: "Head",
  56887. image: {
  56888. source: "./media/characters/mark-smith/head.svg"
  56889. }
  56890. },
  56891. hand: {
  56892. height: math.unit(1.4, "feet"),
  56893. name: "Hand",
  56894. image: {
  56895. source: "./media/characters/mark-smith/hand.svg"
  56896. }
  56897. },
  56898. paw: {
  56899. height: math.unit(1.69, "feet"),
  56900. name: "Paw",
  56901. image: {
  56902. source: "./media/characters/mark-smith/paw.svg"
  56903. }
  56904. },
  56905. },
  56906. [
  56907. {
  56908. name: "Micro",
  56909. height: math.unit(0.25, "inches")
  56910. },
  56911. {
  56912. name: "Normal",
  56913. height: math.unit(5 + 9/12, "feet"),
  56914. default: true
  56915. },
  56916. {
  56917. name: "Macro",
  56918. height: math.unit(500, "feet")
  56919. },
  56920. ]
  56921. ))
  56922. characterMakers.push(() => makeCharacter(
  56923. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56924. {
  56925. frontNude: {
  56926. height: math.unit(6, "feet"),
  56927. name: "Front (Nude)",
  56928. image: {
  56929. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56930. extra: 1384/1321,
  56931. bottom: 57/1441
  56932. }
  56933. },
  56934. frontDressed: {
  56935. height: math.unit(6, "feet"),
  56936. name: "Front (Dressed)",
  56937. image: {
  56938. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56939. extra: 1384/1321,
  56940. bottom: 57/1441
  56941. }
  56942. },
  56943. },
  56944. [
  56945. {
  56946. name: "Normal",
  56947. height: math.unit(6, "feet"),
  56948. default: true
  56949. },
  56950. {
  56951. name: "Maximum",
  56952. height: math.unit(1776, "feet")
  56953. },
  56954. ]
  56955. ))
  56956. characterMakers.push(() => makeCharacter(
  56957. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56958. {
  56959. front: {
  56960. height: math.unit(2 + 4/12, "feet"),
  56961. weight: math.unit(350, "lb"),
  56962. name: "Front",
  56963. image: {
  56964. source: "./media/characters/devos/front.svg",
  56965. extra: 958/852,
  56966. bottom: 143/1101
  56967. }
  56968. },
  56969. },
  56970. [
  56971. {
  56972. name: "Base",
  56973. height: math.unit(2 + 4/12, "feet"),
  56974. default: true
  56975. },
  56976. ]
  56977. ))
  56978. characterMakers.push(() => makeCharacter(
  56979. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56980. {
  56981. front: {
  56982. height: math.unit(9 + 2/12, "feet"),
  56983. name: "Front",
  56984. image: {
  56985. source: "./media/characters/hiveheart/front.svg",
  56986. extra: 394/364,
  56987. bottom: 65/459
  56988. }
  56989. },
  56990. back: {
  56991. height: math.unit(9 + 2/12, "feet"),
  56992. name: "Back",
  56993. image: {
  56994. source: "./media/characters/hiveheart/back.svg",
  56995. extra: 374/357,
  56996. bottom: 63/437
  56997. }
  56998. },
  56999. },
  57000. [
  57001. {
  57002. name: "Base",
  57003. height: math.unit(9 + 2/12, "feet"),
  57004. default: true
  57005. },
  57006. ]
  57007. ))
  57008. characterMakers.push(() => makeCharacter(
  57009. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57010. {
  57011. front: {
  57012. height: math.unit(2.5, "inches"),
  57013. weight: math.unit(0.6, "oz"),
  57014. name: "Front",
  57015. image: {
  57016. source: "./media/characters/bryn/front.svg",
  57017. extra: 1484/1119,
  57018. bottom: 66/1550
  57019. }
  57020. },
  57021. back: {
  57022. height: math.unit(2.5, "inches"),
  57023. weight: math.unit(0.6, "oz"),
  57024. name: "Back",
  57025. image: {
  57026. source: "./media/characters/bryn/back.svg",
  57027. extra: 1472/1170,
  57028. bottom: 32/1504
  57029. }
  57030. },
  57031. wings: {
  57032. height: math.unit(2.5, "inches"),
  57033. weight: math.unit(0.6, "oz"),
  57034. name: "Wings",
  57035. image: {
  57036. source: "./media/characters/bryn/wings.svg",
  57037. extra: 567/448,
  57038. bottom: 10/577
  57039. }
  57040. },
  57041. dressed: {
  57042. height: math.unit(2.5, "inches"),
  57043. weight: math.unit(0.6, "oz"),
  57044. name: "Dressed",
  57045. image: {
  57046. source: "./media/characters/bryn/dressed.svg",
  57047. extra: 719/589,
  57048. bottom: 54/773
  57049. }
  57050. },
  57051. head: {
  57052. height: math.unit(1.75, "inches"),
  57053. name: "Head",
  57054. image: {
  57055. source: "./media/characters/bryn/head.svg"
  57056. }
  57057. },
  57058. foot: {
  57059. height: math.unit(0.4, "inches"),
  57060. name: "Foot",
  57061. image: {
  57062. source: "./media/characters/bryn/foot.svg"
  57063. }
  57064. },
  57065. },
  57066. [
  57067. {
  57068. name: "Normal",
  57069. height: math.unit(2.5, "inches"),
  57070. default: true
  57071. },
  57072. ]
  57073. ))
  57074. characterMakers.push(() => makeCharacter(
  57075. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57076. {
  57077. side: {
  57078. height: math.unit(7, "feet"),
  57079. weight: math.unit(657, "kg"),
  57080. name: "Side",
  57081. image: {
  57082. source: "./media/characters/delta/side.svg",
  57083. extra: 781/212,
  57084. bottom: 7/788
  57085. },
  57086. extraAttributes: {
  57087. "wingspan": {
  57088. name: "Wingspan",
  57089. power: 1,
  57090. type: "length",
  57091. base: math.unit(48, "feet")
  57092. },
  57093. "length": {
  57094. name: "Length",
  57095. power: 1,
  57096. type: "length",
  57097. base: math.unit(21, "feet")
  57098. },
  57099. "pawSize": {
  57100. name: "Paw Size",
  57101. power: 2,
  57102. type: "area",
  57103. base: math.unit(1.5*1.4, "feet^2")
  57104. },
  57105. }
  57106. },
  57107. },
  57108. [
  57109. {
  57110. name: "Normal",
  57111. height: math.unit(6, "feet"),
  57112. default: true
  57113. },
  57114. ]
  57115. ))
  57116. characterMakers.push(() => makeCharacter(
  57117. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57118. {
  57119. front: {
  57120. height: math.unit(6, "feet"),
  57121. name: "Front",
  57122. image: {
  57123. source: "./media/characters/pyrow/front.svg",
  57124. extra: 513/486,
  57125. bottom: 14/527
  57126. }
  57127. },
  57128. frontWing: {
  57129. height: math.unit(6, "feet"),
  57130. name: "Front (Wing)",
  57131. image: {
  57132. source: "./media/characters/pyrow/front-wing.svg",
  57133. extra: 539/383,
  57134. bottom: 20/559
  57135. }
  57136. },
  57137. back: {
  57138. height: math.unit(6, "feet"),
  57139. name: "Back",
  57140. image: {
  57141. source: "./media/characters/pyrow/back.svg",
  57142. extra: 500/473,
  57143. bottom: 9/509
  57144. }
  57145. },
  57146. },
  57147. [
  57148. {
  57149. name: "Normal",
  57150. height: math.unit(6, "feet"),
  57151. default: true
  57152. },
  57153. ]
  57154. ))
  57155. characterMakers.push(() => makeCharacter(
  57156. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57157. {
  57158. front: {
  57159. height: math.unit(5, "meters"),
  57160. weight: math.unit(3, "tonnes"),
  57161. name: "Front",
  57162. image: {
  57163. source: "./media/characters/velikan/front.svg",
  57164. extra: 867/744,
  57165. bottom: 71/938
  57166. },
  57167. extraAttributes: {
  57168. "shoeSize": {
  57169. name: "Shoe Size",
  57170. power: 1,
  57171. type: "length",
  57172. base: math.unit(135, "ShoeSizeUK"),
  57173. defaultUnit: "ShoeSizeUK"
  57174. },
  57175. }
  57176. },
  57177. },
  57178. [
  57179. {
  57180. name: "Normal",
  57181. height: math.unit(5, "meters"),
  57182. default: true
  57183. },
  57184. {
  57185. name: "Macro",
  57186. height: math.unit(1, "km")
  57187. },
  57188. {
  57189. name: "Mega Macro",
  57190. height: math.unit(100, "km")
  57191. },
  57192. {
  57193. name: "Giga Macro",
  57194. height: math.unit(2, "megameters")
  57195. },
  57196. {
  57197. name: "Planetary",
  57198. height: math.unit(22, "megameters")
  57199. },
  57200. {
  57201. name: "Solar",
  57202. height: math.unit(8, "gigameters")
  57203. },
  57204. {
  57205. name: "Cosmic",
  57206. height: math.unit(10, "zettameters")
  57207. },
  57208. {
  57209. name: "Omni",
  57210. height: math.unit(9e260, "multiverses")
  57211. },
  57212. ]
  57213. ))
  57214. characterMakers.push(() => makeCharacter(
  57215. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57216. {
  57217. front: {
  57218. height: math.unit(4 + 3/12, "feet"),
  57219. weight: math.unit(90, "lb"),
  57220. name: "Front",
  57221. image: {
  57222. source: "./media/characters/sabiki/front.svg",
  57223. extra: 1662/1423,
  57224. bottom: 65/1727
  57225. }
  57226. },
  57227. },
  57228. [
  57229. {
  57230. name: "Normal",
  57231. height: math.unit(4 + 3/12, "feet"),
  57232. default: true
  57233. },
  57234. ]
  57235. ))
  57236. characterMakers.push(() => makeCharacter(
  57237. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57238. {
  57239. frontSfw: {
  57240. height: math.unit(2, "mm"),
  57241. name: "Front (SFW)",
  57242. image: {
  57243. source: "./media/characters/carmel/front-sfw.svg",
  57244. extra: 1131/1006,
  57245. bottom: 66/1197
  57246. }
  57247. },
  57248. frontNsfw: {
  57249. height: math.unit(2, "mm"),
  57250. name: "Front (NSFW)",
  57251. image: {
  57252. source: "./media/characters/carmel/front-nsfw.svg",
  57253. extra: 1131/1006,
  57254. bottom: 66/1197
  57255. }
  57256. },
  57257. foot: {
  57258. height: math.unit(0.3, "mm"),
  57259. name: "Foot",
  57260. image: {
  57261. source: "./media/characters/carmel/foot.svg"
  57262. }
  57263. },
  57264. tongue: {
  57265. height: math.unit(0.71, "mm"),
  57266. name: "Tongue",
  57267. image: {
  57268. source: "./media/characters/carmel/tongue.svg"
  57269. }
  57270. },
  57271. dick: {
  57272. height: math.unit(0.085, "mm"),
  57273. name: "Dick",
  57274. image: {
  57275. source: "./media/characters/carmel/dick.svg"
  57276. }
  57277. },
  57278. },
  57279. [
  57280. {
  57281. name: "Micro",
  57282. height: math.unit(2, "mm"),
  57283. default: true
  57284. },
  57285. {
  57286. name: "Normal",
  57287. height: math.unit(4 + 8/12, "feet")
  57288. },
  57289. {
  57290. name: "Mega Macro",
  57291. height: math.unit(250, "feet")
  57292. },
  57293. {
  57294. name: "BIGGER",
  57295. height: math.unit(1000, "feet")
  57296. },
  57297. {
  57298. name: "BIGGEST",
  57299. height: math.unit(2, "miles")
  57300. },
  57301. ]
  57302. ))
  57303. characterMakers.push(() => makeCharacter(
  57304. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57305. {
  57306. front: {
  57307. height: math.unit(6.5, "feet"),
  57308. weight: math.unit(198, "lb"),
  57309. name: "Front",
  57310. image: {
  57311. source: "./media/characters/tamani/anthro.svg",
  57312. extra: 930/890,
  57313. bottom: 34/964
  57314. },
  57315. form: "anthro",
  57316. default: true
  57317. },
  57318. side: {
  57319. height: math.unit(6, "feet"),
  57320. weight: math.unit(198*2, "lb"),
  57321. name: "Side",
  57322. image: {
  57323. source: "./media/characters/tamani/feral.svg",
  57324. extra: 559/519,
  57325. bottom: 43/602
  57326. },
  57327. form: "feral"
  57328. },
  57329. },
  57330. [
  57331. {
  57332. name: "Normal",
  57333. height: math.unit(6.5, "feet"),
  57334. default: true,
  57335. form: "anthro"
  57336. },
  57337. {
  57338. name: "Normal",
  57339. height: math.unit(6, "feet"),
  57340. default: true,
  57341. form: "feral"
  57342. },
  57343. ],
  57344. {
  57345. "anthro": {
  57346. name: "Anthro",
  57347. default: true
  57348. },
  57349. "feral": {
  57350. name: "Feral",
  57351. },
  57352. }
  57353. ))
  57354. characterMakers.push(() => makeCharacter(
  57355. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57356. {
  57357. front: {
  57358. height: math.unit(4 + 1/12, "feet"),
  57359. weight: math.unit(114, "lb"),
  57360. name: "Front",
  57361. image: {
  57362. source: "./media/characters/dex/front.svg",
  57363. extra: 787/680,
  57364. bottom: 18/805
  57365. }
  57366. },
  57367. side: {
  57368. height: math.unit(4 + 1/12, "feet"),
  57369. weight: math.unit(114, "lb"),
  57370. name: "Side",
  57371. image: {
  57372. source: "./media/characters/dex/side.svg",
  57373. extra: 785/680,
  57374. bottom: 12/797
  57375. }
  57376. },
  57377. back: {
  57378. height: math.unit(4 + 1/12, "feet"),
  57379. weight: math.unit(114, "lb"),
  57380. name: "Back",
  57381. image: {
  57382. source: "./media/characters/dex/back.svg",
  57383. extra: 785/681,
  57384. bottom: 17/802
  57385. }
  57386. },
  57387. loungewear: {
  57388. height: math.unit(4 + 1/12, "feet"),
  57389. weight: math.unit(114, "lb"),
  57390. name: "Loungewear",
  57391. image: {
  57392. source: "./media/characters/dex/loungewear.svg",
  57393. extra: 787/680,
  57394. bottom: 18/805
  57395. }
  57396. },
  57397. workout: {
  57398. height: math.unit(4 + 1/12, "feet"),
  57399. weight: math.unit(114, "lb"),
  57400. name: "Workout",
  57401. image: {
  57402. source: "./media/characters/dex/workout.svg",
  57403. extra: 787/680,
  57404. bottom: 18/805
  57405. }
  57406. },
  57407. schoolUniform: {
  57408. height: math.unit(4 + 1/12, "feet"),
  57409. weight: math.unit(114, "lb"),
  57410. name: "School-uniform",
  57411. image: {
  57412. source: "./media/characters/dex/school-uniform.svg",
  57413. extra: 787/680,
  57414. bottom: 18/805
  57415. }
  57416. },
  57417. maw: {
  57418. height: math.unit(0.55, "feet"),
  57419. name: "Maw",
  57420. image: {
  57421. source: "./media/characters/dex/maw.svg"
  57422. }
  57423. },
  57424. paw: {
  57425. height: math.unit(0.87, "feet"),
  57426. name: "Paw",
  57427. image: {
  57428. source: "./media/characters/dex/paw.svg"
  57429. }
  57430. },
  57431. bust: {
  57432. height: math.unit(1.67, "feet"),
  57433. name: "Bust",
  57434. image: {
  57435. source: "./media/characters/dex/bust.svg"
  57436. }
  57437. },
  57438. },
  57439. [
  57440. {
  57441. name: "Normal",
  57442. height: math.unit(4 + 1/12, "feet"),
  57443. default: true
  57444. },
  57445. ]
  57446. ))
  57447. characterMakers.push(() => makeCharacter(
  57448. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57449. {
  57450. front: {
  57451. height: math.unit(4 + 3/12, "feet"),
  57452. weight: math.unit(60, "lb"),
  57453. name: "Front",
  57454. image: {
  57455. source: "./media/characters/silke/front.svg",
  57456. extra: 1334/1122,
  57457. bottom: 21/1355
  57458. }
  57459. },
  57460. back: {
  57461. height: math.unit(4 + 3/12, "feet"),
  57462. weight: math.unit(60, "lb"),
  57463. name: "Back",
  57464. image: {
  57465. source: "./media/characters/silke/back.svg",
  57466. extra: 1328/1092,
  57467. bottom: 16/1344
  57468. }
  57469. },
  57470. dressed: {
  57471. height: math.unit(4 + 3/12, "feet"),
  57472. weight: math.unit(60, "lb"),
  57473. name: "Dressed",
  57474. image: {
  57475. source: "./media/characters/silke/dressed.svg",
  57476. extra: 1334/1122,
  57477. bottom: 43/1377
  57478. }
  57479. },
  57480. },
  57481. [
  57482. {
  57483. name: "Normal",
  57484. height: math.unit(4 + 3/12, "feet"),
  57485. default: true
  57486. },
  57487. ]
  57488. ))
  57489. characterMakers.push(() => makeCharacter(
  57490. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57491. {
  57492. front: {
  57493. height: math.unit(1.58, "meters"),
  57494. weight: math.unit(47, "kg"),
  57495. name: "Front",
  57496. image: {
  57497. source: "./media/characters/wireshark/front.svg",
  57498. extra: 883/838,
  57499. bottom: 66/949
  57500. }
  57501. },
  57502. },
  57503. [
  57504. {
  57505. name: "Normal",
  57506. height: math.unit(1.58, "meters"),
  57507. default: true
  57508. },
  57509. ]
  57510. ))
  57511. characterMakers.push(() => makeCharacter(
  57512. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57513. {
  57514. front: {
  57515. height: math.unit(6, "meters"),
  57516. weight: math.unit(15000, "kg"),
  57517. name: "Front",
  57518. image: {
  57519. source: "./media/characters/gallagher/front.svg",
  57520. extra: 532/493,
  57521. bottom: 0/532
  57522. }
  57523. },
  57524. },
  57525. [
  57526. {
  57527. name: "Normal",
  57528. height: math.unit(6, "meters"),
  57529. default: true
  57530. },
  57531. ]
  57532. ))
  57533. characterMakers.push(() => makeCharacter(
  57534. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57535. {
  57536. front: {
  57537. height: math.unit(2.4, "meters"),
  57538. weight: math.unit(270, "kg"),
  57539. name: "Front",
  57540. image: {
  57541. source: "./media/characters/alice/front.svg",
  57542. extra: 950/900,
  57543. bottom: 36/986
  57544. }
  57545. },
  57546. side: {
  57547. height: math.unit(2.4, "meters"),
  57548. weight: math.unit(270, "kg"),
  57549. name: "Side",
  57550. image: {
  57551. source: "./media/characters/alice/side.svg",
  57552. extra: 921/876,
  57553. bottom: 19/940
  57554. }
  57555. },
  57556. dressed: {
  57557. height: math.unit(2.4, "meters"),
  57558. weight: math.unit(270, "kg"),
  57559. name: "Dressed",
  57560. image: {
  57561. source: "./media/characters/alice/dressed.svg",
  57562. extra: 905/850,
  57563. bottom: 81/986
  57564. }
  57565. },
  57566. fishnet: {
  57567. height: math.unit(2.4, "meters"),
  57568. weight: math.unit(270, "kg"),
  57569. name: "Fishnet",
  57570. image: {
  57571. source: "./media/characters/alice/fishnet.svg",
  57572. extra: 905/850,
  57573. bottom: 81/986
  57574. }
  57575. },
  57576. },
  57577. [
  57578. {
  57579. name: "Normal",
  57580. height: math.unit(2.4, "meters"),
  57581. default: true
  57582. },
  57583. ]
  57584. ))
  57585. characterMakers.push(() => makeCharacter(
  57586. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57587. {
  57588. front: {
  57589. height: math.unit(175.25, "feet"),
  57590. name: "Front",
  57591. image: {
  57592. source: "./media/characters/fio/front.svg",
  57593. extra: 1883/1591,
  57594. bottom: 34/1917
  57595. }
  57596. },
  57597. },
  57598. [
  57599. {
  57600. name: "Normal",
  57601. height: math.unit(175.25, "cm"),
  57602. default: true
  57603. },
  57604. ]
  57605. ))
  57606. characterMakers.push(() => makeCharacter(
  57607. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57608. {
  57609. side: {
  57610. height: math.unit(6, "meters"),
  57611. weight: math.unit(3400, "kg"),
  57612. preyCapacity: math.unit(1700, "liters"),
  57613. name: "Side",
  57614. image: {
  57615. source: "./media/characters/hass/side.svg",
  57616. extra: 1058/997,
  57617. bottom: 177/1235
  57618. }
  57619. },
  57620. feeding: {
  57621. height: math.unit(6*0.63, "meters"),
  57622. weight: math.unit(3400, "kg"),
  57623. preyCapacity: math.unit(1700, "liters"),
  57624. name: "Feeding",
  57625. image: {
  57626. source: "./media/characters/hass/feeding.svg",
  57627. extra: 689/579,
  57628. bottom: 146/835
  57629. }
  57630. },
  57631. guts: {
  57632. height: math.unit(6, "meters"),
  57633. weight: math.unit(3400, "kg"),
  57634. name: "Guts",
  57635. image: {
  57636. source: "./media/characters/hass/guts.svg",
  57637. extra: 1223/1198,
  57638. bottom: 182/1405
  57639. }
  57640. },
  57641. dickFront: {
  57642. height: math.unit(1.4, "meters"),
  57643. name: "Dick (Front)",
  57644. image: {
  57645. source: "./media/characters/hass/dick-front.svg"
  57646. }
  57647. },
  57648. dickSide: {
  57649. height: math.unit(1.3, "meters"),
  57650. name: "Dick (Side)",
  57651. image: {
  57652. source: "./media/characters/hass/dick-side.svg"
  57653. }
  57654. },
  57655. dickBack: {
  57656. height: math.unit(1.4, "meters"),
  57657. name: "Dick (Back)",
  57658. image: {
  57659. source: "./media/characters/hass/dick-back.svg"
  57660. }
  57661. },
  57662. },
  57663. [
  57664. {
  57665. name: "Normal",
  57666. height: math.unit(6, "meters"),
  57667. default: true
  57668. },
  57669. ]
  57670. ))
  57671. characterMakers.push(() => makeCharacter(
  57672. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57673. {
  57674. front: {
  57675. height: math.unit(4, "feet"),
  57676. weight: math.unit(60, "lb"),
  57677. name: "Front",
  57678. image: {
  57679. source: "./media/characters/hickory-finnegan/front.svg",
  57680. extra: 444/411,
  57681. bottom: 10/454
  57682. }
  57683. },
  57684. side: {
  57685. height: math.unit(4, "feet"),
  57686. weight: math.unit(60, "lb"),
  57687. name: "Side",
  57688. image: {
  57689. source: "./media/characters/hickory-finnegan/side.svg",
  57690. extra: 444/411,
  57691. bottom: 10/454
  57692. }
  57693. },
  57694. back: {
  57695. height: math.unit(4, "feet"),
  57696. weight: math.unit(60, "lb"),
  57697. name: "Back",
  57698. image: {
  57699. source: "./media/characters/hickory-finnegan/back.svg",
  57700. extra: 444/411,
  57701. bottom: 10/454
  57702. }
  57703. },
  57704. },
  57705. [
  57706. {
  57707. name: "Normal",
  57708. height: math.unit(4, "feet"),
  57709. default: true
  57710. },
  57711. ]
  57712. ))
  57713. characterMakers.push(() => makeCharacter(
  57714. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57715. {
  57716. snivy_front: {
  57717. height: math.unit(2, "feet"),
  57718. weight: math.unit(17.9, "lb"),
  57719. name: "Front",
  57720. image: {
  57721. source: "./media/characters/robin-phox/snivy-front.svg",
  57722. extra: 569/504,
  57723. bottom: 33/602
  57724. },
  57725. form: "snivy",
  57726. default: true
  57727. },
  57728. snivy_frontNsfw: {
  57729. height: math.unit(2, "feet"),
  57730. weight: math.unit(17.9, "lb"),
  57731. name: "Front (NSFW)",
  57732. image: {
  57733. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57734. extra: 569/504,
  57735. bottom: 33/602
  57736. },
  57737. form: "snivy",
  57738. },
  57739. snivy_back: {
  57740. height: math.unit(2, "feet"),
  57741. weight: math.unit(17.9, "lb"),
  57742. name: "Back",
  57743. image: {
  57744. source: "./media/characters/robin-phox/snivy-back.svg",
  57745. extra: 577/508,
  57746. bottom: 21/598
  57747. },
  57748. form: "snivy",
  57749. },
  57750. snivy_foot: {
  57751. height: math.unit(0.68, "feet"),
  57752. name: "Foot",
  57753. image: {
  57754. source: "./media/characters/robin-phox/snivy-foot.svg"
  57755. },
  57756. form: "snivy",
  57757. },
  57758. snivy_sole: {
  57759. height: math.unit(0.68, "feet"),
  57760. name: "Sole",
  57761. image: {
  57762. source: "./media/characters/robin-phox/snivy-sole.svg"
  57763. },
  57764. form: "snivy",
  57765. },
  57766. yoshi_front: {
  57767. height: math.unit(6, "feet"),
  57768. weight: math.unit(150, "lb"),
  57769. name: "Front",
  57770. image: {
  57771. source: "./media/characters/robin-phox/yoshi-front.svg",
  57772. extra: 890/792,
  57773. bottom: 29/919
  57774. },
  57775. form: "yoshi",
  57776. default: true
  57777. },
  57778. yoshi_frontNsfw: {
  57779. height: math.unit(6, "feet"),
  57780. weight: math.unit(150, "lb"),
  57781. name: "Front (NSFW)",
  57782. image: {
  57783. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57784. extra: 890/792,
  57785. bottom: 29/919
  57786. },
  57787. form: "yoshi",
  57788. },
  57789. yoshi_back: {
  57790. height: math.unit(6, "feet"),
  57791. weight: math.unit(150, "lb"),
  57792. name: "Back",
  57793. image: {
  57794. source: "./media/characters/robin-phox/yoshi-back.svg",
  57795. extra: 890/792,
  57796. bottom: 29/919
  57797. },
  57798. form: "yoshi",
  57799. },
  57800. yoshi_foot: {
  57801. height: math.unit(1.5, "feet"),
  57802. name: "Foot",
  57803. image: {
  57804. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57805. },
  57806. form: "yoshi",
  57807. },
  57808. delphox_front: {
  57809. height: math.unit(4 + 11/12, "feet"),
  57810. weight: math.unit(86, "lb"),
  57811. name: "Front",
  57812. image: {
  57813. source: "./media/characters/robin-phox/delphox-front.svg",
  57814. extra: 1266/1069,
  57815. bottom: 32/1298
  57816. },
  57817. form: "delphox",
  57818. default: true
  57819. },
  57820. delphox_frontNsfw: {
  57821. height: math.unit(4 + 11/12, "feet"),
  57822. weight: math.unit(86, "lb"),
  57823. name: "Front (NSFW)",
  57824. image: {
  57825. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57826. extra: 1266/1069,
  57827. bottom: 32/1298
  57828. },
  57829. form: "delphox",
  57830. },
  57831. delphox_back: {
  57832. height: math.unit(4 + 11/12, "feet"),
  57833. weight: math.unit(86, "lb"),
  57834. name: "Back",
  57835. image: {
  57836. source: "./media/characters/robin-phox/delphox-back.svg",
  57837. extra: 1269/1083,
  57838. bottom: 15/1284
  57839. },
  57840. form: "delphox",
  57841. },
  57842. mienshao_front: {
  57843. height: math.unit(4 + 7/12, "feet"),
  57844. weight: math.unit(78.3, "lb"),
  57845. name: "Front",
  57846. image: {
  57847. source: "./media/characters/robin-phox/mienshao-front.svg",
  57848. extra: 1052/970,
  57849. bottom: 108/1160
  57850. },
  57851. form: "mienshao",
  57852. default: true
  57853. },
  57854. mienshao_frontNsfw: {
  57855. height: math.unit(4 + 7/12, "feet"),
  57856. weight: math.unit(78.3, "lb"),
  57857. name: "Front (NSFW)",
  57858. image: {
  57859. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57860. extra: 1052/970,
  57861. bottom: 108/1160
  57862. },
  57863. form: "mienshao",
  57864. },
  57865. mienshao_back: {
  57866. height: math.unit(4 + 7/12, "feet"),
  57867. weight: math.unit(78.3, "lb"),
  57868. name: "Back",
  57869. image: {
  57870. source: "./media/characters/robin-phox/mienshao-back.svg",
  57871. extra: 1102/982,
  57872. bottom: 32/1134
  57873. },
  57874. form: "mienshao",
  57875. },
  57876. inteleon_front: {
  57877. height: math.unit(6 + 3/12, "feet"),
  57878. weight: math.unit(99.6, "lb"),
  57879. name: "Front",
  57880. image: {
  57881. source: "./media/characters/robin-phox/inteleon-front.svg",
  57882. extra: 910/799,
  57883. bottom: 76/986
  57884. },
  57885. form: "inteleon",
  57886. default: true
  57887. },
  57888. inteleon_frontNsfw: {
  57889. height: math.unit(6 + 3/12, "feet"),
  57890. weight: math.unit(99.6, "lb"),
  57891. name: "Front (NSFW)",
  57892. image: {
  57893. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57894. extra: 910/799,
  57895. bottom: 76/986
  57896. },
  57897. form: "inteleon",
  57898. },
  57899. inteleon_back: {
  57900. height: math.unit(6 + 3/12, "feet"),
  57901. weight: math.unit(99.6, "lb"),
  57902. name: "Back",
  57903. image: {
  57904. source: "./media/characters/robin-phox/inteleon-back.svg",
  57905. extra: 907/796,
  57906. bottom: 25/932
  57907. },
  57908. form: "inteleon",
  57909. },
  57910. reshiram_front: {
  57911. height: math.unit(10 + 6/12, "feet"),
  57912. weight: math.unit(727.5, "lb"),
  57913. name: "Front",
  57914. image: {
  57915. source: "./media/characters/robin-phox/reshiram-front.svg",
  57916. extra: 1198/940,
  57917. bottom: 123/1321
  57918. },
  57919. form: "reshiram",
  57920. },
  57921. reshiram_frontNsfw: {
  57922. height: math.unit(10 + 6/12, "feet"),
  57923. weight: math.unit(727.5, "lb"),
  57924. name: "Front-nsfw",
  57925. image: {
  57926. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57927. extra: 1198/940,
  57928. bottom: 123/1321
  57929. },
  57930. form: "reshiram",
  57931. },
  57932. reshiram_back: {
  57933. height: math.unit(10 + 6/12, "feet"),
  57934. weight: math.unit(727.5, "lb"),
  57935. name: "Back",
  57936. image: {
  57937. source: "./media/characters/robin-phox/reshiram-back.svg",
  57938. extra: 1024/904,
  57939. bottom: 85/1109
  57940. },
  57941. form: "reshiram",
  57942. },
  57943. samurott_front: {
  57944. height: math.unit(8, "feet"),
  57945. weight: math.unit(208.6, "lb"),
  57946. name: "Front",
  57947. image: {
  57948. source: "./media/characters/robin-phox/samurott-front.svg",
  57949. extra: 1048/984,
  57950. bottom: 100/1148
  57951. },
  57952. form: "samurott",
  57953. },
  57954. samurott_frontNsfw: {
  57955. height: math.unit(8, "feet"),
  57956. weight: math.unit(208.6, "lb"),
  57957. name: "Front-nsfw",
  57958. image: {
  57959. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57960. extra: 1048/984,
  57961. bottom: 100/1148
  57962. },
  57963. form: "samurott",
  57964. },
  57965. samurott_back: {
  57966. height: math.unit(8, "feet"),
  57967. weight: math.unit(208.6, "lb"),
  57968. name: "Back",
  57969. image: {
  57970. source: "./media/characters/robin-phox/samurott-back.svg",
  57971. extra: 1110/1042,
  57972. bottom: 12/1122
  57973. },
  57974. form: "samurott",
  57975. },
  57976. samurott_feral: {
  57977. height: math.unit(4 + 11/12, "feet"),
  57978. weight: math.unit(208.6, "lb"),
  57979. name: "Feral",
  57980. image: {
  57981. source: "./media/characters/robin-phox/samurott-feral.svg",
  57982. extra: 766/681,
  57983. bottom: 108/874
  57984. },
  57985. form: "samurott",
  57986. },
  57987. },
  57988. [
  57989. {
  57990. name: "Normal",
  57991. height: math.unit(2, "feet"),
  57992. default: true,
  57993. form: "snivy"
  57994. },
  57995. {
  57996. name: "Normal",
  57997. height: math.unit(6, "feet"),
  57998. default: true,
  57999. form: "yoshi"
  58000. },
  58001. {
  58002. name: "Normal",
  58003. height: math.unit(4 + 11/12, "feet"),
  58004. default: true,
  58005. form: "delphox"
  58006. },
  58007. {
  58008. name: "Normal",
  58009. height: math.unit(4 + 7/12, "feet"),
  58010. default: true,
  58011. form: "mienshao"
  58012. },
  58013. {
  58014. name: "Normal",
  58015. height: math.unit(6 + 3/12, "feet"),
  58016. default: true,
  58017. form: "inteleon"
  58018. },
  58019. {
  58020. name: "Normal",
  58021. height: math.unit(10 + 6/12, "feet"),
  58022. default: true,
  58023. form: "reshiram"
  58024. },
  58025. {
  58026. name: "Normal",
  58027. height: math.unit(8, "feet"),
  58028. default: true,
  58029. form: "samurott"
  58030. },
  58031. {
  58032. name: "Macro",
  58033. height: math.unit(500, "feet"),
  58034. allForms: true
  58035. },
  58036. {
  58037. name: "Mega Macro",
  58038. height: math.unit(10, "earths"),
  58039. allForms: true
  58040. },
  58041. {
  58042. name: "Giga Macro",
  58043. height: math.unit(1, "galaxy"),
  58044. allForms: true
  58045. },
  58046. {
  58047. name: "Godly Macro",
  58048. height: math.unit(1e10, "multiverses"),
  58049. allForms: true
  58050. },
  58051. ],
  58052. {
  58053. "snivy": {
  58054. name: "Snivy",
  58055. default: true
  58056. },
  58057. "yoshi": {
  58058. name: "Yoshi",
  58059. },
  58060. "delphox": {
  58061. name: "Delphox",
  58062. },
  58063. "mienshao": {
  58064. name: "Mienshao",
  58065. },
  58066. "inteleon": {
  58067. name: "Inteleon",
  58068. },
  58069. "reshiram": {
  58070. name: "Reshiram",
  58071. },
  58072. "samurott": {
  58073. name: "Samurott",
  58074. },
  58075. }
  58076. ))
  58077. characterMakers.push(() => makeCharacter(
  58078. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58079. {
  58080. front: {
  58081. height: math.unit(4, "feet"),
  58082. name: "Front",
  58083. image: {
  58084. source: "./media/characters/ash-leung/front.svg",
  58085. extra: 1916/1792,
  58086. bottom: 50/1966
  58087. }
  58088. },
  58089. },
  58090. [
  58091. {
  58092. name: "Atomic",
  58093. height: math.unit(1, "angstrom")
  58094. },
  58095. {
  58096. name: "Microscopic",
  58097. height: math.unit(4000, "angstroms")
  58098. },
  58099. {
  58100. name: "Speck",
  58101. height: math.unit(1, "mm")
  58102. },
  58103. {
  58104. name: "Small",
  58105. height: math.unit(1, "inch")
  58106. },
  58107. {
  58108. name: "Normal",
  58109. height: math.unit(4, "feet"),
  58110. default: true
  58111. },
  58112. ]
  58113. ))
  58114. characterMakers.push(() => makeCharacter(
  58115. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58116. {
  58117. frontDressed: {
  58118. height: math.unit(2.08, "meters"),
  58119. weight: math.unit(175, "lb"),
  58120. name: "Front (Dressed)",
  58121. image: {
  58122. source: "./media/characters/carie/front-dressed.svg",
  58123. extra: 456/417,
  58124. bottom: 7/463
  58125. }
  58126. },
  58127. backDressed: {
  58128. height: math.unit(2.08, "meters"),
  58129. weight: math.unit(175, "lb"),
  58130. name: "Back (Dressed)",
  58131. image: {
  58132. source: "./media/characters/carie/back-dressed.svg",
  58133. extra: 455/414,
  58134. bottom: 11/466
  58135. }
  58136. },
  58137. front: {
  58138. height: math.unit(2, "meters"),
  58139. weight: math.unit(175, "lb"),
  58140. name: "Front",
  58141. image: {
  58142. source: "./media/characters/carie/front.svg",
  58143. extra: 438/399,
  58144. bottom: 12/450
  58145. }
  58146. },
  58147. back: {
  58148. height: math.unit(2, "meters"),
  58149. weight: math.unit(175, "lb"),
  58150. name: "Back",
  58151. image: {
  58152. source: "./media/characters/carie/back.svg",
  58153. extra: 438/397,
  58154. bottom: 7/445
  58155. }
  58156. },
  58157. },
  58158. [
  58159. {
  58160. name: "Normal",
  58161. height: math.unit(2.08, "meters"),
  58162. default: true
  58163. },
  58164. {
  58165. name: "Macro",
  58166. height: math.unit(2.08e3, "meters")
  58167. },
  58168. {
  58169. name: "Mega Macro",
  58170. height: math.unit(2.08e6, "meters")
  58171. },
  58172. {
  58173. name: "Giga Macro",
  58174. height: math.unit(2.08e9, "meters")
  58175. },
  58176. {
  58177. name: "Tera Macro",
  58178. height: math.unit(2.08e12, "meters")
  58179. },
  58180. {
  58181. name: "Peta Macro",
  58182. height: math.unit(2.08e15, "meters")
  58183. },
  58184. {
  58185. name: "Exa Macro",
  58186. height: math.unit(2.08e18, "meters")
  58187. },
  58188. {
  58189. name: "Zetta Macro",
  58190. height: math.unit(2.08e21, "meters")
  58191. },
  58192. {
  58193. name: "Yotta Macro",
  58194. height: math.unit(2.08e24, "meters")
  58195. },
  58196. ]
  58197. ))
  58198. characterMakers.push(() => makeCharacter(
  58199. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58200. {
  58201. front: {
  58202. height: math.unit(5 + 2/12, "feet"),
  58203. weight: math.unit(120, "lb"),
  58204. name: "Front",
  58205. image: {
  58206. source: "./media/characters/sai-bree/front.svg",
  58207. extra: 1843/1702,
  58208. bottom: 91/1934
  58209. }
  58210. },
  58211. back: {
  58212. height: math.unit(5 + 2/12, "feet"),
  58213. weight: math.unit(120, "lb"),
  58214. name: "Back",
  58215. image: {
  58216. source: "./media/characters/sai-bree/back.svg",
  58217. extra: 1809/1637,
  58218. bottom: 56/1865
  58219. }
  58220. },
  58221. },
  58222. [
  58223. {
  58224. name: "Normal",
  58225. height: math.unit(5 + 2/12, "feet"),
  58226. default: true
  58227. },
  58228. {
  58229. name: "Macro",
  58230. height: math.unit(500, "feet")
  58231. },
  58232. ]
  58233. ))
  58234. characterMakers.push(() => makeCharacter(
  58235. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58236. {
  58237. side: {
  58238. height: math.unit(0.77, "meters"),
  58239. weight: math.unit(120, "lb"),
  58240. name: "Side",
  58241. image: {
  58242. source: "./media/characters/davwyn/side.svg",
  58243. extra: 1557/1225,
  58244. bottom: 131/1688
  58245. }
  58246. },
  58247. front: {
  58248. height: math.unit(0.835410, "meters"),
  58249. weight: math.unit(120, "lb"),
  58250. name: "Front",
  58251. image: {
  58252. source: "./media/characters/davwyn/front.svg",
  58253. extra: 870/843,
  58254. bottom: 175/1045
  58255. }
  58256. },
  58257. },
  58258. [
  58259. {
  58260. name: "Minidrake",
  58261. height: math.unit(0.77/4, "meters")
  58262. },
  58263. {
  58264. name: "Normal",
  58265. height: math.unit(0.77, "meters"),
  58266. default: true
  58267. },
  58268. ]
  58269. ))
  58270. characterMakers.push(() => makeCharacter(
  58271. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58272. {
  58273. front: {
  58274. height: math.unit(10 + 3/12, "feet"),
  58275. weight: math.unit(2857, "lb"),
  58276. name: "Front",
  58277. image: {
  58278. source: "./media/characters/balans/front.svg",
  58279. extra: 427/402,
  58280. bottom: 26/453
  58281. }
  58282. },
  58283. side: {
  58284. height: math.unit(10 + 3/12, "feet"),
  58285. weight: math.unit(2857, "lb"),
  58286. name: "Side",
  58287. image: {
  58288. source: "./media/characters/balans/side.svg",
  58289. extra: 397/371,
  58290. bottom: 17/414
  58291. }
  58292. },
  58293. back: {
  58294. height: math.unit(10 + 3/12, "feet"),
  58295. weight: math.unit(2857, "lb"),
  58296. name: "Back",
  58297. image: {
  58298. source: "./media/characters/balans/back.svg",
  58299. extra: 408/381,
  58300. bottom: 14/422
  58301. }
  58302. },
  58303. hand: {
  58304. height: math.unit(1.15, "feet"),
  58305. name: "Hand",
  58306. image: {
  58307. source: "./media/characters/balans/hand.svg"
  58308. }
  58309. },
  58310. footRest: {
  58311. height: math.unit(3.1, "feet"),
  58312. name: "Foot (Rest)",
  58313. image: {
  58314. source: "./media/characters/balans/foot-rest.svg"
  58315. }
  58316. },
  58317. footActive: {
  58318. height: math.unit(3.5, "feet"),
  58319. name: "Foot (Active)",
  58320. image: {
  58321. source: "./media/characters/balans/foot-active.svg"
  58322. }
  58323. },
  58324. },
  58325. [
  58326. {
  58327. name: "Normal",
  58328. height: math.unit(10 + 3/12, "feet"),
  58329. default: true
  58330. },
  58331. ]
  58332. ))
  58333. characterMakers.push(() => makeCharacter(
  58334. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58335. {
  58336. side: {
  58337. height: math.unit(9, "meters"),
  58338. weight: math.unit(114, "tonnes"),
  58339. name: "Side",
  58340. image: {
  58341. source: "./media/characters/eldkveikir/side.svg",
  58342. extra: 1927/338,
  58343. bottom: 42/1969
  58344. }
  58345. },
  58346. sitting: {
  58347. height: math.unit(13.4, "meters"),
  58348. weight: math.unit(114, "tonnes"),
  58349. name: "Sitting",
  58350. image: {
  58351. source: "./media/characters/eldkveikir/sitting.svg",
  58352. extra: 1108/963,
  58353. bottom: 610/1718
  58354. }
  58355. },
  58356. maw: {
  58357. height: math.unit(8.36, "meters"),
  58358. name: "Maw",
  58359. image: {
  58360. source: "./media/characters/eldkveikir/maw.svg"
  58361. }
  58362. },
  58363. hand: {
  58364. height: math.unit(4.84, "meters"),
  58365. name: "Hand",
  58366. image: {
  58367. source: "./media/characters/eldkveikir/hand.svg"
  58368. }
  58369. },
  58370. foot: {
  58371. height: math.unit(6.9, "meters"),
  58372. name: "Foot",
  58373. image: {
  58374. source: "./media/characters/eldkveikir/foot.svg"
  58375. }
  58376. },
  58377. genitals: {
  58378. height: math.unit(9.6, "meters"),
  58379. name: "Genitals",
  58380. image: {
  58381. source: "./media/characters/eldkveikir/genitals.svg"
  58382. }
  58383. },
  58384. },
  58385. [
  58386. {
  58387. name: "Normal",
  58388. height: math.unit(9, "meters"),
  58389. default: true
  58390. },
  58391. ]
  58392. ))
  58393. characterMakers.push(() => makeCharacter(
  58394. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58395. {
  58396. front: {
  58397. height: math.unit(14, "feet"),
  58398. weight: math.unit(4100, "lb"),
  58399. name: "Front",
  58400. image: {
  58401. source: "./media/characters/arrow/front.svg",
  58402. extra: 330/318,
  58403. bottom: 56/386
  58404. }
  58405. },
  58406. },
  58407. [
  58408. {
  58409. name: "Normal",
  58410. height: math.unit(14, "feet"),
  58411. default: true
  58412. },
  58413. {
  58414. name: "Minimacro",
  58415. height: math.unit(63, "feet")
  58416. },
  58417. {
  58418. name: "Macro",
  58419. height: math.unit(630, "feet")
  58420. },
  58421. {
  58422. name: "Megamacro",
  58423. height: math.unit(12600, "feet")
  58424. },
  58425. {
  58426. name: "Gigamacro",
  58427. height: math.unit(18000, "miles")
  58428. },
  58429. ]
  58430. ))
  58431. characterMakers.push(() => makeCharacter(
  58432. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58433. {
  58434. front: {
  58435. height: math.unit(10, "feet"),
  58436. weight: math.unit(2.4, "tons"),
  58437. name: "Front",
  58438. image: {
  58439. source: "./media/characters/3yk-k0-unit/front.svg",
  58440. extra: 573/561,
  58441. bottom: 33/606
  58442. }
  58443. },
  58444. back: {
  58445. height: math.unit(10, "feet"),
  58446. weight: math.unit(2.4, "tons"),
  58447. name: "Back",
  58448. image: {
  58449. source: "./media/characters/3yk-k0-unit/back.svg",
  58450. extra: 614/573,
  58451. bottom: 32/646
  58452. }
  58453. },
  58454. maw: {
  58455. height: math.unit(2.15, "feet"),
  58456. name: "Maw",
  58457. image: {
  58458. source: "./media/characters/3yk-k0-unit/maw.svg"
  58459. }
  58460. },
  58461. },
  58462. [
  58463. {
  58464. name: "Normal",
  58465. height: math.unit(10, "feet"),
  58466. default: true
  58467. },
  58468. ]
  58469. ))
  58470. characterMakers.push(() => makeCharacter(
  58471. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58472. {
  58473. front: {
  58474. height: math.unit(8 + 8/12, "feet"),
  58475. name: "Front",
  58476. image: {
  58477. source: "./media/characters/nemo/front.svg",
  58478. extra: 1308/1217,
  58479. bottom: 57/1365
  58480. }
  58481. },
  58482. },
  58483. [
  58484. {
  58485. name: "Normal",
  58486. height: math.unit(8 + 8/12, "feet"),
  58487. default: true
  58488. },
  58489. ]
  58490. ))
  58491. characterMakers.push(() => makeCharacter(
  58492. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58493. {
  58494. front: {
  58495. height: math.unit(8, "feet"),
  58496. weight: math.unit(760, "lb"),
  58497. name: "Front",
  58498. image: {
  58499. source: "./media/characters/rexx/front.svg",
  58500. extra: 786/750,
  58501. bottom: 17/803
  58502. },
  58503. extraAttributes: {
  58504. "pawLength": {
  58505. name: "Paw Length",
  58506. power: 1,
  58507. type: "length",
  58508. base: math.unit(27, "inches")
  58509. },
  58510. }
  58511. },
  58512. },
  58513. [
  58514. {
  58515. name: "Micro",
  58516. height: math.unit(2, "inches")
  58517. },
  58518. {
  58519. name: "Normal",
  58520. height: math.unit(8, "feet"),
  58521. default: true
  58522. },
  58523. {
  58524. name: "Macro",
  58525. height: math.unit(150, "feet")
  58526. },
  58527. ]
  58528. ))
  58529. characterMakers.push(() => makeCharacter(
  58530. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58531. {
  58532. front: {
  58533. height: math.unit(18, "feet"),
  58534. weight: math.unit(1975, "lb"),
  58535. name: "Front",
  58536. image: {
  58537. source: "./media/characters/draco/front.svg",
  58538. extra: 1325/1241,
  58539. bottom: 83/1408
  58540. }
  58541. },
  58542. back: {
  58543. height: math.unit(18, "feet"),
  58544. weight: math.unit(1975, "lb"),
  58545. name: "Back",
  58546. image: {
  58547. source: "./media/characters/draco/back.svg",
  58548. extra: 1332/1250,
  58549. bottom: 43/1375
  58550. }
  58551. },
  58552. dick: {
  58553. height: math.unit(7.5, "feet"),
  58554. name: "Dick",
  58555. image: {
  58556. source: "./media/characters/draco/dick.svg"
  58557. }
  58558. },
  58559. },
  58560. [
  58561. {
  58562. name: "Normal",
  58563. height: math.unit(18, "feet"),
  58564. default: true
  58565. },
  58566. ]
  58567. ))
  58568. characterMakers.push(() => makeCharacter(
  58569. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58570. {
  58571. front: {
  58572. height: math.unit(3.2, "meters"),
  58573. name: "Front",
  58574. image: {
  58575. source: "./media/characters/harriett/front.svg",
  58576. extra: 1966/1915,
  58577. bottom: 9/1975
  58578. }
  58579. },
  58580. },
  58581. [
  58582. {
  58583. name: "Normal",
  58584. height: math.unit(3.2, "meters"),
  58585. default: true
  58586. },
  58587. ]
  58588. ))
  58589. characterMakers.push(() => makeCharacter(
  58590. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58591. {
  58592. standing: {
  58593. height: math.unit(180, "cm"),
  58594. weight: math.unit(185, "lb"),
  58595. name: "Standing",
  58596. image: {
  58597. source: "./media/characters/serpentus/standing.svg",
  58598. extra: 882/878,
  58599. bottom: 16/898
  58600. }
  58601. },
  58602. sitting: {
  58603. height: math.unit(0.8, "meter"),
  58604. weight: math.unit(155, "lb"),
  58605. name: "Sitting",
  58606. image: {
  58607. source: "./media/characters/serpentus/sitting.svg",
  58608. extra: 293/290,
  58609. bottom: 140/433
  58610. }
  58611. },
  58612. },
  58613. [
  58614. {
  58615. name: "Normal",
  58616. height: math.unit(1.8, "meter"),
  58617. default: true
  58618. },
  58619. ]
  58620. ))
  58621. characterMakers.push(() => makeCharacter(
  58622. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58623. {
  58624. front: {
  58625. height: math.unit(5.7174385736, "feet"),
  58626. name: "Front",
  58627. image: {
  58628. source: "./media/characters/nova-polecat/front.svg",
  58629. extra: 1317/1216,
  58630. bottom: 92/1409
  58631. }
  58632. },
  58633. },
  58634. [
  58635. {
  58636. name: "Normal",
  58637. height: math.unit(5.7174385736, "feet"),
  58638. default: true
  58639. },
  58640. ]
  58641. ))
  58642. characterMakers.push(() => makeCharacter(
  58643. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58644. {
  58645. front: {
  58646. height: math.unit(5 + 4/12, "feet"),
  58647. weight: math.unit(250, "lb"),
  58648. name: "Front",
  58649. image: {
  58650. source: "./media/characters/mook/front.svg",
  58651. extra: 1088/1037,
  58652. bottom: 132/1220
  58653. }
  58654. },
  58655. back: {
  58656. height: math.unit(5 + 1/12, "feet"),
  58657. weight: math.unit(250, "lb"),
  58658. name: "Back",
  58659. image: {
  58660. source: "./media/characters/mook/back.svg",
  58661. extra: 1184/905,
  58662. bottom: 96/1280
  58663. }
  58664. },
  58665. head: {
  58666. height: math.unit(1.85, "feet"),
  58667. name: "Head",
  58668. image: {
  58669. source: "./media/characters/mook/head.svg"
  58670. }
  58671. },
  58672. hand: {
  58673. height: math.unit(1.9, "feet"),
  58674. name: "Hand",
  58675. image: {
  58676. source: "./media/characters/mook/hand.svg"
  58677. }
  58678. },
  58679. palm: {
  58680. height: math.unit(1.84, "feet"),
  58681. name: "Palm",
  58682. image: {
  58683. source: "./media/characters/mook/palm.svg"
  58684. }
  58685. },
  58686. foot: {
  58687. height: math.unit(1.44, "feet"),
  58688. name: "Foot",
  58689. image: {
  58690. source: "./media/characters/mook/foot.svg"
  58691. }
  58692. },
  58693. sole: {
  58694. height: math.unit(1.44, "feet"),
  58695. name: "Sole",
  58696. image: {
  58697. source: "./media/characters/mook/sole.svg"
  58698. }
  58699. },
  58700. },
  58701. [
  58702. {
  58703. name: "Normal",
  58704. height: math.unit(5 + 4/12, "feet"),
  58705. default: true
  58706. },
  58707. {
  58708. name: "Big",
  58709. height: math.unit(12, "feet")
  58710. },
  58711. ]
  58712. ))
  58713. characterMakers.push(() => makeCharacter(
  58714. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58715. {
  58716. front: {
  58717. height: math.unit(6 + 10/12, "feet"),
  58718. weight: math.unit(233, "lb"),
  58719. name: "Front",
  58720. image: {
  58721. source: "./media/characters/kayla/front.svg",
  58722. extra: 1850/1775,
  58723. bottom: 65/1915
  58724. }
  58725. },
  58726. },
  58727. [
  58728. {
  58729. name: "Normal",
  58730. height: math.unit(6 + 10/12, "feet"),
  58731. default: true
  58732. },
  58733. {
  58734. name: "Amazonian",
  58735. height: math.unit(12 + 5/12, "feet")
  58736. },
  58737. {
  58738. name: "Mini Giantess",
  58739. height: math.unit(26, "feet")
  58740. },
  58741. {
  58742. name: "Giantess",
  58743. height: math.unit(200, "feet")
  58744. },
  58745. {
  58746. name: "Mega Giantess",
  58747. height: math.unit(2500, "feet")
  58748. },
  58749. {
  58750. name: "City Sized",
  58751. height: math.unit(50, "miles")
  58752. },
  58753. {
  58754. name: "Country Sized",
  58755. height: math.unit(500, "miles")
  58756. },
  58757. {
  58758. name: "Continent Sized",
  58759. height: math.unit(2500, "miles")
  58760. },
  58761. {
  58762. name: "Planet Sized",
  58763. height: math.unit(10000, "miles")
  58764. },
  58765. {
  58766. name: "Star Sized",
  58767. height: math.unit(5e6, "miles")
  58768. },
  58769. {
  58770. name: "Solar System Sized",
  58771. height: math.unit(125, "AU")
  58772. },
  58773. {
  58774. name: "Galaxy Sized",
  58775. height: math.unit(300e3, "lightyears")
  58776. },
  58777. {
  58778. name: "Universe Sized",
  58779. height: math.unit(200e9, "lightyears")
  58780. },
  58781. {
  58782. name: "Multiverse Sized",
  58783. height: math.unit(20, "exauniverses")
  58784. },
  58785. {
  58786. name: "Mother of Existence",
  58787. height: math.unit(1e6, "yottauniverses")
  58788. },
  58789. ]
  58790. ))
  58791. characterMakers.push(() => makeCharacter(
  58792. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58793. {
  58794. side: {
  58795. height: math.unit(9.5, "meters"),
  58796. name: "Side",
  58797. image: {
  58798. source: "./media/characters/kulve-ragnarok/side.svg",
  58799. extra: 364/326,
  58800. bottom: 50/414
  58801. }
  58802. },
  58803. },
  58804. [
  58805. {
  58806. name: "Normal",
  58807. height: math.unit(9.5, "meters"),
  58808. default: true
  58809. },
  58810. ]
  58811. ))
  58812. characterMakers.push(() => makeCharacter(
  58813. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58814. {
  58815. front: {
  58816. height: math.unit(8 + 9/12, "feet"),
  58817. name: "Front",
  58818. image: {
  58819. source: "./media/characters/atlas-goat/front.svg",
  58820. extra: 1462/1323,
  58821. bottom: 12/1474
  58822. }
  58823. },
  58824. },
  58825. [
  58826. {
  58827. name: "Normal",
  58828. height: math.unit(8 + 9/12, "feet"),
  58829. default: true
  58830. },
  58831. {
  58832. name: "Skyline",
  58833. height: math.unit(845, "feet")
  58834. },
  58835. {
  58836. name: "Orbital",
  58837. height: math.unit(93000, "miles")
  58838. },
  58839. {
  58840. name: "Constellation",
  58841. height: math.unit(27000, "lightyears")
  58842. },
  58843. ]
  58844. ))
  58845. characterMakers.push(() => makeCharacter(
  58846. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58847. {
  58848. side: {
  58849. height: math.unit(1.8, "meters"),
  58850. weight: math.unit(120, "kg"),
  58851. name: "Side",
  58852. image: {
  58853. source: "./media/characters/xie-ling/side.svg",
  58854. extra: 646/574,
  58855. bottom: 44/690
  58856. }
  58857. },
  58858. },
  58859. [
  58860. {
  58861. name: "Tiny",
  58862. height: math.unit(1.80, "meters")
  58863. },
  58864. {
  58865. name: "Small",
  58866. height: math.unit(6, "meters")
  58867. },
  58868. {
  58869. name: "Medium",
  58870. height: math.unit(15, "meters")
  58871. },
  58872. {
  58873. name: "Normal",
  58874. height: math.unit(30, "meters"),
  58875. default: true
  58876. },
  58877. {
  58878. name: "Above Normal",
  58879. height: math.unit(60, "meters")
  58880. },
  58881. {
  58882. name: "Big",
  58883. height: math.unit(220, "meters")
  58884. },
  58885. {
  58886. name: "Giant",
  58887. height: math.unit(2.2, "km")
  58888. },
  58889. {
  58890. name: "Macro",
  58891. height: math.unit(25, "km")
  58892. },
  58893. {
  58894. name: "Mega Macro",
  58895. height: math.unit(350, "km")
  58896. },
  58897. {
  58898. name: "Mega Macro+",
  58899. height: math.unit(5000, "km")
  58900. },
  58901. {
  58902. name: "Goddess",
  58903. height: math.unit(3, "multiverses")
  58904. },
  58905. ]
  58906. ))
  58907. characterMakers.push(() => makeCharacter(
  58908. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58909. {
  58910. frontSfw: {
  58911. height: math.unit(5 + 11/12, "feet"),
  58912. weight: math.unit(210, "lb"),
  58913. name: "Front",
  58914. image: {
  58915. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58916. extra: 1928/1821,
  58917. bottom: 45/1973
  58918. }
  58919. },
  58920. backSfw: {
  58921. height: math.unit(5 + 11/12, "feet"),
  58922. weight: math.unit(210, "lb"),
  58923. name: "Back",
  58924. image: {
  58925. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58926. extra: 1920/1813,
  58927. bottom: 34/1954
  58928. }
  58929. },
  58930. frontNsfw: {
  58931. height: math.unit(5 + 11/12, "feet"),
  58932. weight: math.unit(210, "lb"),
  58933. name: "Front (NSFW)",
  58934. image: {
  58935. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58936. extra: 1928/1821,
  58937. bottom: 45/1973
  58938. }
  58939. },
  58940. backNsfw: {
  58941. height: math.unit(5 + 11/12, "feet"),
  58942. weight: math.unit(210, "lb"),
  58943. name: "Back (NSFW)",
  58944. image: {
  58945. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58946. extra: 1920/1813,
  58947. bottom: 34/1954
  58948. }
  58949. },
  58950. },
  58951. [
  58952. {
  58953. name: "Normal",
  58954. height: math.unit(5 + 11/12, "feet"),
  58955. default: true
  58956. },
  58957. {
  58958. name: "Goddess",
  58959. height: math.unit(20 + 3/12, "feet")
  58960. },
  58961. {
  58962. name: "Breaker of Man",
  58963. height: math.unit(329 + 9/12, "feet")
  58964. },
  58965. {
  58966. name: "Solar Justice",
  58967. height: math.unit(0.6, "solarradii")
  58968. },
  58969. {
  58970. name: "She Who Judges",
  58971. height: math.unit(1, "universe")
  58972. },
  58973. ]
  58974. ))
  58975. characterMakers.push(() => makeCharacter(
  58976. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58977. {
  58978. casual_front: {
  58979. height: math.unit(6 + 1/12, "feet"),
  58980. weight: math.unit(190, "lb"),
  58981. preyCapacity: math.unit(1, "people"),
  58982. name: "Front",
  58983. image: {
  58984. source: "./media/characters/managarmr/casual-front.svg",
  58985. extra: 411/381,
  58986. bottom: 15/426
  58987. },
  58988. extraAttributes: {
  58989. "pawSize": {
  58990. name: "Paw Size",
  58991. power: 1,
  58992. type: "length",
  58993. base: math.unit(0.2, "meters")
  58994. },
  58995. },
  58996. form: "casual",
  58997. },
  58998. casual_back: {
  58999. height: math.unit(6 + 1/12, "feet"),
  59000. weight: math.unit(190, "lb"),
  59001. preyCapacity: math.unit(1, "people"),
  59002. name: "Back",
  59003. image: {
  59004. source: "./media/characters/managarmr/casual-back.svg",
  59005. extra: 413/383,
  59006. bottom: 13/426
  59007. },
  59008. extraAttributes: {
  59009. "pawSize": {
  59010. name: "Paw Size",
  59011. power: 1,
  59012. type: "length",
  59013. base: math.unit(0.2, "meters")
  59014. },
  59015. },
  59016. form: "casual",
  59017. },
  59018. base_front: {
  59019. height: math.unit(7, "feet"),
  59020. weight: math.unit(210, "lb"),
  59021. preyCapacity: math.unit(2, "people"),
  59022. name: "Front",
  59023. image: {
  59024. source: "./media/characters/managarmr/base-front.svg",
  59025. extra: 580/485,
  59026. bottom: 32/612
  59027. },
  59028. extraAttributes: {
  59029. "wingspan": {
  59030. name: "Wingspan",
  59031. power: 1,
  59032. type: "length",
  59033. base: math.unit(4, "meters")
  59034. },
  59035. "pawSize": {
  59036. name: "Paw Size",
  59037. power: 1,
  59038. type: "length",
  59039. base: math.unit(0.2, "meters")
  59040. },
  59041. },
  59042. form: "base",
  59043. },
  59044. "true-divine_front": {
  59045. height: math.unit(40, "feet"),
  59046. weight: math.unit(39000, "lb"),
  59047. preyCapacity: math.unit(375, "people"),
  59048. name: "Front",
  59049. image: {
  59050. source: "./media/characters/managarmr/true-divine-front.svg",
  59051. extra: 725/573,
  59052. bottom: 120/845
  59053. },
  59054. extraAttributes: {
  59055. "wingspan": {
  59056. name: "Wingspan",
  59057. power: 1,
  59058. type: "length",
  59059. base: math.unit(20, "meters")
  59060. },
  59061. "pawSize": {
  59062. name: "Paw Size",
  59063. power: 1,
  59064. type: "length",
  59065. base: math.unit(1.5, "meters")
  59066. },
  59067. },
  59068. form: "true-divine",
  59069. },
  59070. },
  59071. [
  59072. {
  59073. name: "Normal",
  59074. height: math.unit(6 + 1/12, "feet"),
  59075. form: "casual",
  59076. default: true
  59077. },
  59078. {
  59079. name: "Normal",
  59080. height: math.unit(7, "feet"),
  59081. form: "base",
  59082. default: true
  59083. },
  59084. ],
  59085. {
  59086. "casual": {
  59087. name: "Casual",
  59088. default: true
  59089. },
  59090. "base": {
  59091. name: "Base",
  59092. },
  59093. "true-divine": {
  59094. name: "True Divine",
  59095. },
  59096. }
  59097. ))
  59098. characterMakers.push(() => makeCharacter(
  59099. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59100. {
  59101. front: {
  59102. height: math.unit(1.8, "meters"),
  59103. weight: math.unit(110, "kg"),
  59104. name: "Front",
  59105. image: {
  59106. source: "./media/characters/mystra/front.svg",
  59107. extra: 529/442,
  59108. bottom: 31/560
  59109. }
  59110. },
  59111. frontLewd: {
  59112. height: math.unit(1.8, "meters"),
  59113. weight: math.unit(110, "kg"),
  59114. name: "Front (Lewd)",
  59115. image: {
  59116. source: "./media/characters/mystra/front-lewd.svg",
  59117. extra: 529/442,
  59118. bottom: 31/560
  59119. }
  59120. },
  59121. head: {
  59122. height: math.unit(1.63, "feet"),
  59123. name: "Head",
  59124. image: {
  59125. source: "./media/characters/mystra/head.svg"
  59126. }
  59127. },
  59128. paw: {
  59129. height: math.unit(1.9, "feet"),
  59130. name: "Paw",
  59131. image: {
  59132. source: "./media/characters/mystra/paw.svg"
  59133. }
  59134. },
  59135. },
  59136. [
  59137. {
  59138. name: "Incognito",
  59139. height: math.unit(2.3, "meters")
  59140. },
  59141. {
  59142. name: "Small Macro",
  59143. height: math.unit(300, "meters")
  59144. },
  59145. {
  59146. name: "Small Mega",
  59147. height: math.unit(2, "km")
  59148. },
  59149. {
  59150. name: "Mega",
  59151. height: math.unit(30, "km")
  59152. },
  59153. {
  59154. name: "Small Giga",
  59155. height: math.unit(100, "km")
  59156. },
  59157. {
  59158. name: "Giga",
  59159. height: math.unit(1000, "km"),
  59160. default: true
  59161. },
  59162. {
  59163. name: "Continental",
  59164. height: math.unit(5000, "km")
  59165. },
  59166. {
  59167. name: "Terra",
  59168. height: math.unit(20000, "km")
  59169. },
  59170. {
  59171. name: "Solar",
  59172. height: math.unit(2e6, "km")
  59173. },
  59174. {
  59175. name: "Galactic",
  59176. height: math.unit(528502, "lightyears")
  59177. },
  59178. {
  59179. name: "Universal",
  59180. height: math.unit(20, "universes")
  59181. },
  59182. ]
  59183. ))
  59184. characterMakers.push(() => makeCharacter(
  59185. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59186. {
  59187. front: {
  59188. height: math.unit(2, "meters"),
  59189. weight: math.unit(140, "kg"),
  59190. name: "Front",
  59191. image: {
  59192. source: "./media/characters/caleb/front.svg",
  59193. extra: 873/817,
  59194. bottom: 47/920
  59195. }
  59196. },
  59197. back: {
  59198. height: math.unit(2, "meters"),
  59199. weight: math.unit(140, "kg"),
  59200. name: "Back",
  59201. image: {
  59202. source: "./media/characters/caleb/back.svg",
  59203. extra: 877/828,
  59204. bottom: 24/901
  59205. }
  59206. },
  59207. snakeTail: {
  59208. height: math.unit(1.44, "feet"),
  59209. name: "Snake Tail",
  59210. image: {
  59211. source: "./media/characters/caleb/snake-tail.svg"
  59212. }
  59213. },
  59214. dick: {
  59215. height: math.unit(2.6, "feet"),
  59216. name: "Dick",
  59217. image: {
  59218. source: "./media/characters/caleb/dick.svg"
  59219. }
  59220. },
  59221. },
  59222. [
  59223. {
  59224. name: "Incognito",
  59225. height: math.unit(3, "meters")
  59226. },
  59227. {
  59228. name: "Home Size",
  59229. height: math.unit(200, "meters"),
  59230. default: true
  59231. },
  59232. {
  59233. name: "Macro",
  59234. height: math.unit(500, "meters")
  59235. },
  59236. {
  59237. name: "Big Macro",
  59238. height: math.unit(5, "km")
  59239. },
  59240. {
  59241. name: "Giga",
  59242. height: math.unit(250, "km")
  59243. },
  59244. {
  59245. name: "Giga+",
  59246. height: math.unit(5000, "km")
  59247. },
  59248. {
  59249. name: "Small Terra",
  59250. height: math.unit(35e3, "km")
  59251. },
  59252. {
  59253. name: "Terra",
  59254. height: math.unit(2e6, "km")
  59255. },
  59256. {
  59257. name: "Terra+",
  59258. height: math.unit(1.5e6, "km")
  59259. },
  59260. ]
  59261. ))
  59262. characterMakers.push(() => makeCharacter(
  59263. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59264. {
  59265. front: {
  59266. height: math.unit(2, "meters"),
  59267. weight: math.unit(120, "kg"),
  59268. name: "Front",
  59269. image: {
  59270. source: "./media/characters/gilirian/front.svg",
  59271. extra: 805/737,
  59272. bottom: 13/818
  59273. }
  59274. },
  59275. side: {
  59276. height: math.unit(2, "meters"),
  59277. weight: math.unit(120, "kg"),
  59278. name: "Side",
  59279. image: {
  59280. source: "./media/characters/gilirian/side.svg",
  59281. extra: 810/746,
  59282. bottom: 6/816
  59283. }
  59284. },
  59285. back: {
  59286. height: math.unit(2, "meters"),
  59287. weight: math.unit(120, "kg"),
  59288. name: "Back",
  59289. image: {
  59290. source: "./media/characters/gilirian/back.svg",
  59291. extra: 815/745,
  59292. bottom: 15/830
  59293. }
  59294. },
  59295. frontNsfw: {
  59296. height: math.unit(2, "meters"),
  59297. weight: math.unit(120, "kg"),
  59298. name: "Front (NSFW)",
  59299. image: {
  59300. source: "./media/characters/gilirian/front-nsfw.svg",
  59301. extra: 805/737,
  59302. bottom: 13/818
  59303. }
  59304. },
  59305. sideNsfw: {
  59306. height: math.unit(2, "meters"),
  59307. weight: math.unit(120, "kg"),
  59308. name: "Side (NSFW)",
  59309. image: {
  59310. source: "./media/characters/gilirian/side-nsfw.svg",
  59311. extra: 810/746,
  59312. bottom: 6/816
  59313. }
  59314. },
  59315. },
  59316. [
  59317. {
  59318. name: "Incognito",
  59319. height: math.unit(2, "meters"),
  59320. default: true
  59321. },
  59322. {
  59323. name: "Macro",
  59324. height: math.unit(250, "meters")
  59325. },
  59326. {
  59327. name: "Big Macro",
  59328. height: math.unit(1500, "meters")
  59329. },
  59330. {
  59331. name: "Mega",
  59332. height: math.unit(40, "km")
  59333. },
  59334. {
  59335. name: "Giga",
  59336. height: math.unit(300, "km")
  59337. },
  59338. {
  59339. name: "Extra Giga",
  59340. height: math.unit(5000, "km")
  59341. },
  59342. {
  59343. name: "Small Terra",
  59344. height: math.unit(10e3, "km")
  59345. },
  59346. {
  59347. name: "Terra",
  59348. height: math.unit(3e5, "km")
  59349. },
  59350. {
  59351. name: "Galactic",
  59352. height: math.unit(369950, "lightyears")
  59353. },
  59354. ]
  59355. ))
  59356. characterMakers.push(() => makeCharacter(
  59357. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59358. {
  59359. front: {
  59360. height: math.unit(2.5, "meters"),
  59361. weight: math.unit(230, "lb"),
  59362. name: "Front",
  59363. image: {
  59364. source: "./media/characters/tarken/front.svg",
  59365. extra: 764/720,
  59366. bottom: 49/813
  59367. }
  59368. },
  59369. back: {
  59370. height: math.unit(2.5, "meters"),
  59371. weight: math.unit(230, "lb"),
  59372. name: "Back",
  59373. image: {
  59374. source: "./media/characters/tarken/back.svg",
  59375. extra: 756/720,
  59376. bottom: 35/791
  59377. }
  59378. },
  59379. frontNsfw: {
  59380. height: math.unit(2.5, "meters"),
  59381. weight: math.unit(230, "lb"),
  59382. name: "Front (NSFW)",
  59383. image: {
  59384. source: "./media/characters/tarken/front-nsfw.svg",
  59385. extra: 764/720,
  59386. bottom: 49/813
  59387. }
  59388. },
  59389. backNsfw: {
  59390. height: math.unit(2.5, "meters"),
  59391. weight: math.unit(230, "lb"),
  59392. name: "Back (NSFW)",
  59393. image: {
  59394. source: "./media/characters/tarken/back-nsfw.svg",
  59395. extra: 756/720,
  59396. bottom: 35/791
  59397. }
  59398. },
  59399. head: {
  59400. height: math.unit(2.22, "feet"),
  59401. name: "Head",
  59402. image: {
  59403. source: "./media/characters/tarken/head.svg"
  59404. }
  59405. },
  59406. tail: {
  59407. height: math.unit(5.25, "feet"),
  59408. name: "Tail",
  59409. image: {
  59410. source: "./media/characters/tarken/tail.svg"
  59411. }
  59412. },
  59413. dick: {
  59414. height: math.unit(1.95, "feet"),
  59415. name: "Dick",
  59416. image: {
  59417. source: "./media/characters/tarken/dick.svg"
  59418. }
  59419. },
  59420. hand: {
  59421. height: math.unit(1.78, "feet"),
  59422. name: "Hand",
  59423. image: {
  59424. source: "./media/characters/tarken/hand.svg"
  59425. }
  59426. },
  59427. beam: {
  59428. height: math.unit(1.5, "feet"),
  59429. name: "Beam",
  59430. image: {
  59431. source: "./media/characters/tarken/beam.svg"
  59432. }
  59433. },
  59434. },
  59435. [
  59436. {
  59437. name: "Original Size",
  59438. height: math.unit(2.5, "meters")
  59439. },
  59440. {
  59441. name: "Macro",
  59442. height: math.unit(150, "meters"),
  59443. default: true
  59444. },
  59445. {
  59446. name: "Macro+",
  59447. height: math.unit(300, "meters")
  59448. },
  59449. {
  59450. name: "Mega",
  59451. height: math.unit(2, "km")
  59452. },
  59453. {
  59454. name: "Mega+",
  59455. height: math.unit(35, "km")
  59456. },
  59457.  {
  59458. name: "Mega++",
  59459. height: math.unit(60, "km")
  59460. },
  59461. {
  59462. name: "Giga",
  59463. height: math.unit(200, "km")
  59464. },
  59465. {
  59466. name: "Giga+",
  59467. height: math.unit(2500, "km")
  59468. },
  59469. {
  59470. name: "Giga++",
  59471. height: math.unit(6600, "km")
  59472. },
  59473. {
  59474. name: "Terra",
  59475. height: math.unit(20000, "km")
  59476. },
  59477. {
  59478. name: "Terra+",
  59479. height: math.unit(300000, "km")
  59480. },
  59481. ]
  59482. ))
  59483. characterMakers.push(() => makeCharacter(
  59484. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59485. {
  59486. magpie_dressed: {
  59487. height: math.unit(1.7, "meters"),
  59488. weight: math.unit(70, "kg"),
  59489. name: "Dressed",
  59490. image: {
  59491. source: "./media/characters/otreus/magpie-dressed.svg",
  59492. extra: 691/672,
  59493. bottom: 116/807
  59494. },
  59495. form: "magpie",
  59496. default: true
  59497. },
  59498. magpie_nude: {
  59499. height: math.unit(1.7, "meters"),
  59500. weight: math.unit(70, "kg"),
  59501. name: "Nude",
  59502. image: {
  59503. source: "./media/characters/otreus/magpie-nude.svg",
  59504. extra: 691/672,
  59505. bottom: 116/807
  59506. },
  59507. form: "magpie",
  59508. },
  59509. magpie_dressedLewd: {
  59510. height: math.unit(1.7, "meters"),
  59511. weight: math.unit(70, "kg"),
  59512. name: "Dressed (Lewd)",
  59513. image: {
  59514. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59515. extra: 691/672,
  59516. bottom: 116/807
  59517. },
  59518. form: "magpie",
  59519. },
  59520. magpie_nudeLewd: {
  59521. height: math.unit(1.7, "meters"),
  59522. weight: math.unit(70, "kg"),
  59523. name: "Nude (Lewd)",
  59524. image: {
  59525. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59526. extra: 691/672,
  59527. bottom: 116/807
  59528. },
  59529. form: "magpie",
  59530. },
  59531. magpie_leftFoot: {
  59532. height: math.unit(1.58, "feet"),
  59533. name: "Left Foot",
  59534. image: {
  59535. source: "./media/characters/otreus/magpie-left-foot.svg"
  59536. },
  59537. form: "magpie",
  59538. },
  59539. magpie_rightFoot: {
  59540. height: math.unit(1.58, "feet"),
  59541. name: "Right Foot",
  59542. image: {
  59543. source: "./media/characters/otreus/magpie-right-foot.svg"
  59544. },
  59545. form: "magpie",
  59546. },
  59547. magpie_wingspan: {
  59548. height: math.unit(2, "meters"),
  59549. weight: math.unit(70, "kg"),
  59550. name: "Wingspan",
  59551. image: {
  59552. source: "./media/characters/otreus/magpie-wingspan.svg"
  59553. },
  59554. extraAttributes: {
  59555. "wingspan": {
  59556. name: "Wingspan",
  59557. power: 1,
  59558. type: "length",
  59559. base: math.unit(3.35, "meters")
  59560. },
  59561. },
  59562. form: "magpie",
  59563. },
  59564. hippogriff_dressed: {
  59565. height: math.unit(1.7, "meters"),
  59566. weight: math.unit(70, "kg"),
  59567. name: "Dressed",
  59568. image: {
  59569. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59570. extra: 710/689,
  59571. bottom: 67/777
  59572. },
  59573. form: "hippogriff",
  59574. default: true
  59575. },
  59576. hippogriff_nude: {
  59577. height: math.unit(1.7, "meters"),
  59578. weight: math.unit(70, "kg"),
  59579. name: "Nude",
  59580. image: {
  59581. source: "./media/characters/otreus/hippogriff-nude.svg",
  59582. extra: 710/689,
  59583. bottom: 67/777
  59584. },
  59585. form: "hippogriff",
  59586. },
  59587. hippogriff_dressedLewd: {
  59588. height: math.unit(1.7, "meters"),
  59589. weight: math.unit(70, "kg"),
  59590. name: "Dressed (Lewd)",
  59591. image: {
  59592. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59593. extra: 710/689,
  59594. bottom: 67/777
  59595. },
  59596. form: "hippogriff",
  59597. },
  59598. hippogriff_nudeLewd: {
  59599. height: math.unit(1.7, "meters"),
  59600. weight: math.unit(70, "kg"),
  59601. name: "Nude (Lewd)",
  59602. image: {
  59603. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59604. extra: 710/689,
  59605. bottom: 67/777
  59606. },
  59607. form: "hippogriff",
  59608. },
  59609. },
  59610. [
  59611. {
  59612. name: "Original Size",
  59613. height: math.unit(1.7, "meters"),
  59614. allForms: true
  59615. },
  59616. {
  59617. name: "Incognito Size",
  59618. height: math.unit(2, "meters"),
  59619. allForms: true
  59620. },
  59621. {
  59622. name: "Mega",
  59623. height: math.unit(2, "km"),
  59624. allForms: true
  59625. },
  59626. {
  59627. name: "Mega+",
  59628. height: math.unit(40, "km"),
  59629. allForms: true
  59630. },
  59631. {
  59632. name: "Giga",
  59633. height: math.unit(250, "km"),
  59634. allForms: true
  59635. },
  59636. {
  59637. name: "Giga+",
  59638. height: math.unit(3000, "km"),
  59639. allForms: true
  59640. },
  59641. {
  59642. name: "Terra",
  59643. height: math.unit(20000, "km"),
  59644. allForms: true
  59645. },
  59646. {
  59647. name: "Solar (Home Size)",
  59648. height: math.unit(3e6, "km"),
  59649. allForms: true,
  59650. default: true
  59651. },
  59652. ],
  59653. {
  59654. "magpie": {
  59655. name: "Magpie",
  59656. default: true
  59657. },
  59658. "hippogriff": {
  59659. name: "Hippogriff",
  59660. },
  59661. }
  59662. ))
  59663. characterMakers.push(() => makeCharacter(
  59664. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59665. {
  59666. frontDressed: {
  59667. height: math.unit(1.8, "meters"),
  59668. weight: math.unit(90, "kg"),
  59669. name: "Front (Dressed)",
  59670. image: {
  59671. source: "./media/characters/thalia/front-dressed.svg",
  59672. extra: 478/402,
  59673. bottom: 55/533
  59674. }
  59675. },
  59676. backDressed: {
  59677. height: math.unit(1.8, "meters"),
  59678. weight: math.unit(90, "kg"),
  59679. name: "Back (Dressed)",
  59680. image: {
  59681. source: "./media/characters/thalia/back-dressed.svg",
  59682. extra: 500/424,
  59683. bottom: 15/515
  59684. }
  59685. },
  59686. frontNude: {
  59687. height: math.unit(1.8, "meters"),
  59688. weight: math.unit(90, "kg"),
  59689. name: "Front (Nude)",
  59690. image: {
  59691. source: "./media/characters/thalia/front-nude.svg",
  59692. extra: 478/402,
  59693. bottom: 55/533
  59694. }
  59695. },
  59696. backNude: {
  59697. height: math.unit(1.8, "meters"),
  59698. weight: math.unit(90, "kg"),
  59699. name: "Back (Nude)",
  59700. image: {
  59701. source: "./media/characters/thalia/back-nude.svg",
  59702. extra: 500/424,
  59703. bottom: 15/515
  59704. }
  59705. },
  59706. },
  59707. [
  59708. {
  59709. name: "Incognito",
  59710. height: math.unit(3, "meters")
  59711. },
  59712. {
  59713. name: "Macro",
  59714. height: math.unit(500, "meters")
  59715. },
  59716. {
  59717. name: "Mega",
  59718. height: math.unit(5, "km")
  59719. },
  59720. {
  59721. name: "Mega+",
  59722. height: math.unit(30, "km")
  59723. },
  59724. {
  59725. name: "Giga",
  59726. height: math.unit(350, "km")
  59727. },
  59728. {
  59729. name: "Giga+",
  59730. height: math.unit(4000, "km")
  59731. },
  59732. {
  59733. name: "Terra",
  59734. height: math.unit(35000, "km")
  59735. },
  59736. {
  59737. name: "Original Size",
  59738. height: math.unit(130000, "km")
  59739. },
  59740. {
  59741. name: "Solar (Home Size)",
  59742. height: math.unit(4e6, "km"),
  59743. default: true
  59744. },
  59745. ]
  59746. ))
  59747. characterMakers.push(() => makeCharacter(
  59748. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59749. {
  59750. front: {
  59751. height: math.unit(1.8, "meters"),
  59752. weight: math.unit(95, "kg"),
  59753. name: "Front",
  59754. image: {
  59755. source: "./media/characters/shango/front.svg",
  59756. extra: 1925/1774,
  59757. bottom: 67/1992
  59758. }
  59759. },
  59760. back: {
  59761. height: math.unit(1.8, "meters"),
  59762. weight: math.unit(95, "kg"),
  59763. name: "Back",
  59764. image: {
  59765. source: "./media/characters/shango/back.svg",
  59766. extra: 1915/1766,
  59767. bottom: 52/1967
  59768. }
  59769. },
  59770. frontLewd: {
  59771. height: math.unit(1.8, "meters"),
  59772. weight: math.unit(95, "kg"),
  59773. name: "Front (Lewd)",
  59774. image: {
  59775. source: "./media/characters/shango/front-lewd.svg",
  59776. extra: 1925/1774,
  59777. bottom: 67/1992
  59778. }
  59779. },
  59780. backLewd: {
  59781. height: math.unit(1.8, "meters"),
  59782. weight: math.unit(95, "kg"),
  59783. name: "Back (Lewd)",
  59784. image: {
  59785. source: "./media/characters/shango/back-lewd.svg",
  59786. extra: 1915/1766,
  59787. bottom: 52/1967
  59788. }
  59789. },
  59790. maw: {
  59791. height: math.unit(1.64, "feet"),
  59792. name: "Maw",
  59793. image: {
  59794. source: "./media/characters/shango/maw.svg"
  59795. }
  59796. },
  59797. dick: {
  59798. height: math.unit(2.14, "feet"),
  59799. name: "Dick",
  59800. image: {
  59801. source: "./media/characters/shango/dick.svg"
  59802. }
  59803. },
  59804. },
  59805. [
  59806. {
  59807. name: "Incognito",
  59808. height: math.unit(1.8, "meters")
  59809. },
  59810. {
  59811. name: "Home Size",
  59812. height: math.unit(60, "meters"),
  59813. default: true
  59814. },
  59815. {
  59816. name: "Macro",
  59817. height: math.unit(450, "meters")
  59818. },
  59819. {
  59820. name: "Mega",
  59821. height: math.unit(6, "km")
  59822. },
  59823. {
  59824. name: "Mega+",
  59825. height: math.unit(35, "km")
  59826. },
  59827. {
  59828. name: "Giga",
  59829. height: math.unit(500, "km")
  59830. },
  59831. {
  59832. name: "Giga+",
  59833. height: math.unit(5000, "km")
  59834. },
  59835. {
  59836. name: "Terra",
  59837. height: math.unit(60000, "km")
  59838. },
  59839. {
  59840. name: "Terra+",
  59841. height: math.unit(400000, "km")
  59842. },
  59843. ]
  59844. ))
  59845. characterMakers.push(() => makeCharacter(
  59846. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59847. {
  59848. front: {
  59849. height: math.unit(2, "meters"),
  59850. weight: math.unit(95, "kg"),
  59851. name: "Front",
  59852. image: {
  59853. source: "./media/characters/osiris-gryphon/front.svg",
  59854. extra: 1508/1313,
  59855. bottom: 87/1595
  59856. }
  59857. },
  59858. back: {
  59859. height: math.unit(2, "meters"),
  59860. weight: math.unit(95, "kg"),
  59861. name: "Back",
  59862. image: {
  59863. source: "./media/characters/osiris-gryphon/back.svg",
  59864. extra: 1436/1309,
  59865. bottom: 64/1500
  59866. }
  59867. },
  59868. frontLewd: {
  59869. height: math.unit(2, "meters"),
  59870. weight: math.unit(95, "kg"),
  59871. name: "Front-lewd",
  59872. image: {
  59873. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59874. extra: 1508/1313,
  59875. bottom: 87/1595
  59876. }
  59877. },
  59878. wing: {
  59879. height: math.unit(6.3333, "feet"),
  59880. name: "Wing",
  59881. image: {
  59882. source: "./media/characters/osiris-gryphon/wing.svg"
  59883. }
  59884. },
  59885. },
  59886. [
  59887. {
  59888. name: "Incognito",
  59889. height: math.unit(2, "meters")
  59890. },
  59891. {
  59892. name: "Home Size",
  59893. height: math.unit(30, "meters"),
  59894. default: true
  59895. },
  59896. {
  59897. name: "Macro",
  59898. height: math.unit(100, "meters")
  59899. },
  59900. {
  59901. name: "Macro+",
  59902. height: math.unit(350, "meters")
  59903. },
  59904. {
  59905. name: "Mega",
  59906. height: math.unit(40, "km")
  59907. },
  59908. {
  59909. name: "Giga",
  59910. height: math.unit(300, "km")
  59911. },
  59912. {
  59913. name: "Giga+",
  59914. height: math.unit(2000, "km")
  59915. },
  59916. {
  59917. name: "Terra",
  59918. height: math.unit(30000, "km")
  59919. },
  59920. ]
  59921. ))
  59922. characterMakers.push(() => makeCharacter(
  59923. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59924. {
  59925. front: {
  59926. height: math.unit(2.5, "meters"),
  59927. weight: math.unit(200, "kg"),
  59928. name: "Front",
  59929. image: {
  59930. source: "./media/characters/atlas-dragon/front.svg",
  59931. extra: 745/462,
  59932. bottom: 36/781
  59933. }
  59934. },
  59935. back: {
  59936. height: math.unit(2.5, "meters"),
  59937. weight: math.unit(200, "kg"),
  59938. name: "Back",
  59939. image: {
  59940. source: "./media/characters/atlas-dragon/back.svg",
  59941. extra: 848/822,
  59942. bottom: 57/905
  59943. }
  59944. },
  59945. frontLewd: {
  59946. height: math.unit(2.5, "meters"),
  59947. weight: math.unit(200, "kg"),
  59948. name: "Front (Lewd)",
  59949. image: {
  59950. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59951. extra: 745/462,
  59952. bottom: 36/781
  59953. }
  59954. },
  59955. backLewd: {
  59956. height: math.unit(2.5, "meters"),
  59957. weight: math.unit(200, "kg"),
  59958. name: "Back (Lewd)",
  59959. image: {
  59960. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59961. extra: 848/822,
  59962. bottom: 57/905
  59963. }
  59964. },
  59965. },
  59966. [
  59967. {
  59968. name: "Incognito",
  59969. height: math.unit(2.5, "meters")
  59970. },
  59971. {
  59972. name: "Small Macro",
  59973. height: math.unit(50, "meters")
  59974. },
  59975. {
  59976. name: "Macro",
  59977. height: math.unit(350, "meters")
  59978. },
  59979. {
  59980. name: "Mega",
  59981. height: math.unit(5.5, "kilometers")
  59982. },
  59983. {
  59984. name: "Mega+",
  59985. height: math.unit(50, "km")
  59986. },
  59987. {
  59988. name: "Giga",
  59989. height: math.unit(350, "km")
  59990. },
  59991. {
  59992. name: "Giga+",
  59993. height: math.unit(2000, "km")
  59994. },
  59995. {
  59996. name: "Giga++",
  59997. height: math.unit(6500, "km")
  59998. },
  59999. {
  60000. name: "Terra",
  60001. height: math.unit(30000, "km")
  60002. },
  60003. {
  60004. name: "Terra+",
  60005. height: math.unit(250000, "km")
  60006. },
  60007. {
  60008. name: "True Size",
  60009. height: math.unit(100, "multiverses"),
  60010. default: true
  60011. },
  60012. ]
  60013. ))
  60014. characterMakers.push(() => makeCharacter(
  60015. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60016. {
  60017. front: {
  60018. height: math.unit(1.8, "m"),
  60019. weight: math.unit(120, "kg"),
  60020. name: "Front",
  60021. image: {
  60022. source: "./media/characters/chey/front.svg",
  60023. extra: 1359/1270,
  60024. bottom: 18/1377
  60025. }
  60026. },
  60027. arm: {
  60028. height: math.unit(2.05, "feet"),
  60029. name: "Arm",
  60030. image: {
  60031. source: "./media/characters/chey/arm.svg"
  60032. }
  60033. },
  60034. head: {
  60035. height: math.unit(1.89, "feet"),
  60036. name: "Head",
  60037. image: {
  60038. source: "./media/characters/chey/head.svg"
  60039. }
  60040. },
  60041. },
  60042. [
  60043. {
  60044. name: "Original Size",
  60045. height: math.unit(5, "cm")
  60046. },
  60047. {
  60048. name: "Incognito Size",
  60049. height: math.unit(2.4, "m")
  60050. },
  60051. {
  60052. name: "Home Size",
  60053. height: math.unit(200, "meters"),
  60054. default: true
  60055. },
  60056. {
  60057. name: "Mega",
  60058. height: math.unit(2, "km")
  60059. },
  60060. {
  60061. name: "Giga (Preferred Size)",
  60062. height: math.unit(2000, "km")
  60063. },
  60064. {
  60065. name: "Giga+",
  60066. height: math.unit(6000, "km")
  60067. },
  60068. {
  60069. name: "Terra",
  60070. height: math.unit(17000, "km")
  60071. },
  60072. {
  60073. name: "Terra+",
  60074. height: math.unit(75000, "km")
  60075. },
  60076. {
  60077. name: "Terra++",
  60078. height: math.unit(225000, "km")
  60079. },
  60080. ]
  60081. ))
  60082. characterMakers.push(() => makeCharacter(
  60083. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60084. {
  60085. side: {
  60086. height: math.unit(7.8, "meters"),
  60087. name: "Side",
  60088. image: {
  60089. source: "./media/characters/ragnarok/side.svg",
  60090. extra: 725/621,
  60091. bottom: 72/797
  60092. }
  60093. },
  60094. },
  60095. [
  60096. {
  60097. name: "Normal",
  60098. height: math.unit(7.8, "meters"),
  60099. default: true
  60100. },
  60101. ]
  60102. ))
  60103. characterMakers.push(() => makeCharacter(
  60104. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60105. {
  60106. hyena_front: {
  60107. height: math.unit(2.1, "meters"),
  60108. weight: math.unit(110, "kg"),
  60109. name: "Front",
  60110. image: {
  60111. source: "./media/characters/nima/hyena-front.svg",
  60112. extra: 1904/1796,
  60113. bottom: 67/1971
  60114. },
  60115. form: "hyena",
  60116. },
  60117. hyena_back: {
  60118. height: math.unit(2.1, "meters"),
  60119. weight: math.unit(110, "kg"),
  60120. name: "Back",
  60121. image: {
  60122. source: "./media/characters/nima/hyena-back.svg",
  60123. extra: 1964/1884,
  60124. bottom: 35/1999
  60125. },
  60126. form: "hyena",
  60127. },
  60128. shark_front: {
  60129. height: math.unit(1.95, "meters"),
  60130. weight: math.unit(110, "kg"),
  60131. name: "Front",
  60132. image: {
  60133. source: "./media/characters/nima/shark-front.svg",
  60134. extra: 2238/2013,
  60135. bottom: 0/223
  60136. },
  60137. form: "shark",
  60138. },
  60139. paw: {
  60140. height: math.unit(1, "feet"),
  60141. name: "Paw",
  60142. image: {
  60143. source: "./media/characters/nima/paw.svg"
  60144. }
  60145. },
  60146. circlet: {
  60147. height: math.unit(0.3, "feet"),
  60148. name: "Circlet",
  60149. image: {
  60150. source: "./media/characters/nima/circlet.svg"
  60151. }
  60152. },
  60153. necklace: {
  60154. height: math.unit(1.2, "feet"),
  60155. name: "Necklace",
  60156. image: {
  60157. source: "./media/characters/nima/necklace.svg"
  60158. }
  60159. },
  60160. bracelet: {
  60161. height: math.unit(0.51, "feet"),
  60162. name: "Bracelet",
  60163. image: {
  60164. source: "./media/characters/nima/bracelet.svg"
  60165. }
  60166. },
  60167. armband: {
  60168. height: math.unit(1.3, "feet"),
  60169. name: "Armband",
  60170. image: {
  60171. source: "./media/characters/nima/armband.svg"
  60172. }
  60173. },
  60174. },
  60175. [
  60176. {
  60177. name: "Incognito",
  60178. height: math.unit(2.1, "meters"),
  60179. allForms: true
  60180. },
  60181. {
  60182. name: "Small Macro",
  60183. height: math.unit(50, "meters"),
  60184. allForms: true
  60185. },
  60186. {
  60187. name: "Macro",
  60188. height: math.unit(200, "meters"),
  60189. allForms: true
  60190. },
  60191. {
  60192. name: "Mega",
  60193. height: math.unit(2.5, "km"),
  60194. allForms: true
  60195. },
  60196. {
  60197. name: "Mega+",
  60198. height: math.unit(30, "km"),
  60199. allForms: true
  60200. },
  60201. {
  60202. name: "Giga (Home Size)",
  60203. height: math.unit(400, "km"),
  60204. allForms: true,
  60205. default: true
  60206. },
  60207. {
  60208. name: "Giga+",
  60209. height: math.unit(2500, "km"),
  60210. allForms: true
  60211. },
  60212. {
  60213. name: "Giga++",
  60214. height: math.unit(8000, "km"),
  60215. allForms: true
  60216. },
  60217. {
  60218. name: "Terra",
  60219. height: math.unit(20000, "km"),
  60220. allForms: true
  60221. },
  60222. {
  60223. name: "Terra+",
  60224. height: math.unit(70000, "km"),
  60225. allForms: true
  60226. },
  60227. {
  60228. name: "Terra++",
  60229. height: math.unit(600000, "km"),
  60230. allForms: true
  60231. },
  60232. {
  60233. name: "Galactic",
  60234. height: math.unit(40, "galaxies"),
  60235. allForms: true
  60236. },
  60237. {
  60238. name: "Universal",
  60239. height: math.unit(40, "universes"),
  60240. allForms: true
  60241. },
  60242. ],
  60243. {
  60244. "hyena": {
  60245. name: "Hyena",
  60246. default: true
  60247. },
  60248. "shark": {
  60249. name: "Shark",
  60250. },
  60251. }
  60252. ))
  60253. characterMakers.push(() => makeCharacter(
  60254. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60255. {
  60256. anthro_front: {
  60257. height: math.unit(1.5, "meters"),
  60258. name: "Front",
  60259. image: {
  60260. source: "./media/characters/adelaide/anthro-front.svg",
  60261. extra: 860/783,
  60262. bottom: 60/920
  60263. },
  60264. form: "anthro",
  60265. default: true
  60266. },
  60267. hand: {
  60268. height: math.unit(0.65, "feet"),
  60269. name: "Hand",
  60270. image: {
  60271. source: "./media/characters/adelaide/hand.svg"
  60272. },
  60273. form: "anthro"
  60274. },
  60275. foot: {
  60276. height: math.unit(1.38 * 259 / 314, "feet"),
  60277. name: "Foot",
  60278. image: {
  60279. source: "./media/characters/adelaide/foot.svg",
  60280. extra: 259/259,
  60281. bottom: 55/314
  60282. },
  60283. form: "anthro"
  60284. },
  60285. feather: {
  60286. height: math.unit(0.85, "feet"),
  60287. name: "Feather",
  60288. image: {
  60289. source: "./media/characters/adelaide/feather.svg"
  60290. },
  60291. form: "anthro"
  60292. },
  60293. feral_side: {
  60294. height: math.unit(1, "meters"),
  60295. name: "Side",
  60296. image: {
  60297. source: "./media/characters/adelaide/feral-side.svg",
  60298. extra: 550/467,
  60299. bottom: 37/587
  60300. },
  60301. form: "feral",
  60302. default: true
  60303. },
  60304. feral_hand: {
  60305. height: math.unit(0.58, "feet"),
  60306. name: "Hand",
  60307. image: {
  60308. source: "./media/characters/adelaide/hand.svg"
  60309. },
  60310. form: "feral"
  60311. },
  60312. feral_foot: {
  60313. height: math.unit(1.2 * 259 / 314, "feet"),
  60314. name: "Foot",
  60315. image: {
  60316. source: "./media/characters/adelaide/foot.svg",
  60317. extra: 259/259,
  60318. bottom: 55/314
  60319. },
  60320. form: "feral"
  60321. },
  60322. feral_feather: {
  60323. height: math.unit(0.63, "feet"),
  60324. name: "Feather",
  60325. image: {
  60326. source: "./media/characters/adelaide/feather.svg"
  60327. },
  60328. form: "feral"
  60329. },
  60330. },
  60331. [
  60332. {
  60333. name: "Normal",
  60334. height: math.unit(1.5, "meters"),
  60335. form: "anthro",
  60336. default: true
  60337. },
  60338. {
  60339. name: "Normal",
  60340. height: math.unit(1, "meters"),
  60341. form: "feral",
  60342. default: true
  60343. },
  60344. ],
  60345. {
  60346. "anthro": {
  60347. name: "Anthro",
  60348. default: true
  60349. },
  60350. "feral": {
  60351. name: "Feral",
  60352. },
  60353. }
  60354. ))
  60355. characterMakers.push(() => makeCharacter(
  60356. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60357. {
  60358. front: {
  60359. height: math.unit(2.5, "meters"),
  60360. name: "Front",
  60361. image: {
  60362. source: "./media/characters/goa/front.svg",
  60363. extra: 1109/1013,
  60364. bottom: 150/1259
  60365. }
  60366. },
  60367. },
  60368. [
  60369. {
  60370. name: "Normal",
  60371. height: math.unit(2.5, "meters"),
  60372. default: true
  60373. },
  60374. ]
  60375. ))
  60376. characterMakers.push(() => makeCharacter(
  60377. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60378. {
  60379. front: {
  60380. height: math.unit(2, "meters"),
  60381. weight: math.unit(100, "kg"),
  60382. name: "Front",
  60383. image: {
  60384. source: "./media/characters/kiki-weavile/front.svg",
  60385. extra: 357/332,
  60386. bottom: 60/417
  60387. }
  60388. },
  60389. },
  60390. [
  60391. {
  60392. name: "Normal",
  60393. height: math.unit(2, "meters"),
  60394. default: true
  60395. },
  60396. ]
  60397. ))
  60398. characterMakers.push(() => makeCharacter(
  60399. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60400. {
  60401. side: {
  60402. height: math.unit(1.6, "meters"),
  60403. name: "Side",
  60404. image: {
  60405. source: "./media/characters/liza/side.svg",
  60406. extra: 943/915,
  60407. bottom: 72/1015
  60408. }
  60409. },
  60410. },
  60411. [
  60412. {
  60413. name: "Normal",
  60414. height: math.unit(1.6, "meters"),
  60415. default: true
  60416. },
  60417. ]
  60418. ))
  60419. characterMakers.push(() => makeCharacter(
  60420. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60421. {
  60422. side: {
  60423. height: math.unit(2.5, "meters"),
  60424. preyCapacity: math.unit(1, "people"),
  60425. name: "Side",
  60426. image: {
  60427. source: "./media/characters/persephone-sweetbreath/side.svg",
  60428. extra: 796/700,
  60429. bottom: 44/840
  60430. }
  60431. },
  60432. sideVore: {
  60433. height: math.unit(2.5, "meters"),
  60434. preyCapacity: math.unit(1, "people"),
  60435. name: "Side (Full)",
  60436. image: {
  60437. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60438. extra: 796/700,
  60439. bottom: 44/840
  60440. }
  60441. },
  60442. },
  60443. [
  60444. {
  60445. name: "Normal",
  60446. height: math.unit(2.5, "meters"),
  60447. default: true
  60448. },
  60449. ]
  60450. ))
  60451. characterMakers.push(() => makeCharacter(
  60452. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60453. {
  60454. front: {
  60455. height: math.unit(32, "meters"),
  60456. name: "Front",
  60457. image: {
  60458. source: "./media/characters/pierce/front.svg",
  60459. extra: 1695/1475,
  60460. bottom: 185/1880
  60461. }
  60462. },
  60463. side: {
  60464. height: math.unit(32, "meters"),
  60465. name: "Side",
  60466. image: {
  60467. source: "./media/characters/pierce/side.svg",
  60468. extra: 974/859,
  60469. bottom: 43/1017
  60470. }
  60471. },
  60472. frontWingless: {
  60473. height: math.unit(32, "meters"),
  60474. name: "Front (Wingless)",
  60475. image: {
  60476. source: "./media/characters/pierce/front-wingless.svg",
  60477. extra: 1695/1475,
  60478. bottom: 185/1880
  60479. }
  60480. },
  60481. sideWingless: {
  60482. height: math.unit(32, "meters"),
  60483. name: "Side (Wingless)",
  60484. image: {
  60485. source: "./media/characters/pierce/side-wingless.svg",
  60486. extra: 974/859,
  60487. bottom: 43/1017
  60488. }
  60489. },
  60490. maw: {
  60491. height: math.unit(19.3, "meters"),
  60492. name: "Maw",
  60493. image: {
  60494. source: "./media/characters/pierce/maw.svg"
  60495. }
  60496. },
  60497. },
  60498. [
  60499. {
  60500. name: "Small",
  60501. height: math.unit(8.5, "meters")
  60502. },
  60503. {
  60504. name: "Normal",
  60505. height: math.unit(32, "meters"),
  60506. default: true
  60507. },
  60508. ]
  60509. ))
  60510. characterMakers.push(() => makeCharacter(
  60511. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60512. {
  60513. front: {
  60514. height: math.unit(2.3, "meters"),
  60515. weight: math.unit(165, "kg"),
  60516. name: "Front",
  60517. image: {
  60518. source: "./media/characters/shira/front.svg",
  60519. extra: 924/919,
  60520. bottom: 17/941
  60521. },
  60522. form: "cobra",
  60523. default: true
  60524. },
  60525. back: {
  60526. height: math.unit(2.3, "meters"),
  60527. weight: math.unit(165, "kg"),
  60528. name: "Back",
  60529. image: {
  60530. source: "./media/characters/shira/back.svg",
  60531. extra: 928/922,
  60532. bottom: 18/946
  60533. },
  60534. form: "cobra"
  60535. },
  60536. frontLewd: {
  60537. height: math.unit(2.3, "meters"),
  60538. weight: math.unit(165, "kg"),
  60539. name: "Front (Lewd)",
  60540. image: {
  60541. source: "./media/characters/shira/front-lewd.svg",
  60542. extra: 924/919,
  60543. bottom: 17/941
  60544. },
  60545. form: "cobra"
  60546. },
  60547. backLewd: {
  60548. height: math.unit(2.3, "meters"),
  60549. weight: math.unit(165, "kg"),
  60550. name: "Back (Lewd)",
  60551. image: {
  60552. source: "./media/characters/shira/back-lewd.svg",
  60553. extra: 928/922,
  60554. bottom: 18/946
  60555. },
  60556. form: "cobra"
  60557. },
  60558. maw: {
  60559. height: math.unit(1.14, "feet"),
  60560. name: "Maw",
  60561. image: {
  60562. source: "./media/characters/shira/maw.svg"
  60563. },
  60564. form: "cobra"
  60565. },
  60566. magma_front: {
  60567. height: math.unit(2.3, "meters"),
  60568. weight: math.unit(165, "kg"),
  60569. name: "Front",
  60570. image: {
  60571. source: "./media/characters/shira/magma-front.svg",
  60572. extra: 1870/1693,
  60573. bottom: 24/1894
  60574. },
  60575. form: "magma",
  60576. },
  60577. magma_back: {
  60578. height: math.unit(2.3, "meters"),
  60579. weight: math.unit(165, "kg"),
  60580. name: "Back",
  60581. image: {
  60582. source: "./media/characters/shira/magma-back.svg",
  60583. extra: 1918/1756,
  60584. bottom: 46/1964
  60585. },
  60586. form: "magma",
  60587. },
  60588. },
  60589. [
  60590. {
  60591. name: "Incognito",
  60592. height: math.unit(2.3, "meters"),
  60593. allForms: true
  60594. },
  60595. {
  60596. name: "Home Size",
  60597. height: math.unit(150, "meters"),
  60598. default: true,
  60599. allForms: true
  60600. },
  60601. {
  60602. name: "Macro",
  60603. height: math.unit(2, "km"),
  60604. allForms: true
  60605. },
  60606. {
  60607. name: "Mega",
  60608. height: math.unit(30, "km"),
  60609. allForms: true
  60610. },
  60611. {
  60612. name: "Giga",
  60613. height: math.unit(450, "km"),
  60614. allForms: true
  60615. },
  60616. {
  60617. name: "Giga+",
  60618. height: math.unit(3000, "km"),
  60619. allForms: true
  60620. },
  60621. {
  60622. name: "Giga++",
  60623. height: math.unit(6000, "km"),
  60624. allForms: true
  60625. },
  60626. {
  60627. name: "Terra",
  60628. height: math.unit(80000, "km"),
  60629. allForms: true
  60630. },
  60631. {
  60632. name: "Terra+",
  60633. height: math.unit(350000, "km"),
  60634. allForms: true
  60635. },
  60636. {
  60637. name: "Solar",
  60638. height: math.unit(1e6, "km"),
  60639. allForms: true
  60640. },
  60641. ],
  60642. {
  60643. "cobra": {
  60644. name: "Cobra",
  60645. default: true
  60646. },
  60647. "magma": {
  60648. name: "Magma Dragon",
  60649. },
  60650. }
  60651. ))
  60652. characterMakers.push(() => makeCharacter(
  60653. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60654. {
  60655. front: {
  60656. height: math.unit(2, "meters"),
  60657. weight: math.unit(160, "kg"),
  60658. name: "Front",
  60659. image: {
  60660. source: "./media/characters/daxerios/front.svg",
  60661. extra: 1334/1277,
  60662. bottom: 45/1379
  60663. }
  60664. },
  60665. frontLewd: {
  60666. height: math.unit(2, "meters"),
  60667. weight: math.unit(160, "kg"),
  60668. name: "Front (Lewd)",
  60669. image: {
  60670. source: "./media/characters/daxerios/front-lewd.svg",
  60671. extra: 1334/1277,
  60672. bottom: 45/1379
  60673. }
  60674. },
  60675. dick: {
  60676. height: math.unit(2.35, "feet"),
  60677. name: "Dick",
  60678. image: {
  60679. source: "./media/characters/daxerios/dick.svg"
  60680. }
  60681. },
  60682. },
  60683. [
  60684. {
  60685. name: "\"Small\"",
  60686. height: math.unit(5, "meters")
  60687. },
  60688. {
  60689. name: "Original Size",
  60690. height: math.unit(500, "meters"),
  60691. default: true
  60692. },
  60693. {
  60694. name: "Mega",
  60695. height: math.unit(2, "km")
  60696. },
  60697. {
  60698. name: "Mega+",
  60699. height: math.unit(35, "km")
  60700. },
  60701. {
  60702. name: "Giga",
  60703. height: math.unit(250, "km")
  60704. },
  60705. {
  60706. name: "Giga+",
  60707. height: math.unit(3000, "km")
  60708. },
  60709. {
  60710. name: "Terra",
  60711. height: math.unit(25000, "km")
  60712. },
  60713. {
  60714. name: "Terra+",
  60715. height: math.unit(300000, "km")
  60716. },
  60717. {
  60718. name: "Solar",
  60719. height: math.unit(1e6, "km")
  60720. },
  60721. ]
  60722. ))
  60723. characterMakers.push(() => makeCharacter(
  60724. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60725. {
  60726. front: {
  60727. height: math.unit(8 + 4/12, "feet"),
  60728. weight: math.unit(464, "lb"),
  60729. name: "Front",
  60730. image: {
  60731. source: "./media/characters/caveat/front.svg",
  60732. extra: 1861/1678,
  60733. bottom: 40/1901
  60734. }
  60735. },
  60736. },
  60737. [
  60738. {
  60739. name: "Normal",
  60740. height: math.unit(8 + 4/12, "feet"),
  60741. default: true
  60742. },
  60743. ]
  60744. ))
  60745. characterMakers.push(() => makeCharacter(
  60746. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60747. {
  60748. front: {
  60749. height: math.unit(12, "feet"),
  60750. weight: math.unit(1800, "lb"),
  60751. name: "Front",
  60752. image: {
  60753. source: "./media/characters/centbair/front.svg",
  60754. extra: 781/663,
  60755. bottom: 25/806
  60756. }
  60757. },
  60758. frontNsfw: {
  60759. height: math.unit(12, "feet"),
  60760. weight: math.unit(1800, "lb"),
  60761. name: "Front (NSFW)",
  60762. image: {
  60763. source: "./media/characters/centbair/front-nsfw.svg",
  60764. extra: 781/663,
  60765. bottom: 25/806
  60766. }
  60767. },
  60768. back: {
  60769. height: math.unit(12, "feet"),
  60770. weight: math.unit(1800, "lb"),
  60771. name: "Back",
  60772. image: {
  60773. source: "./media/characters/centbair/back.svg",
  60774. extra: 808/761,
  60775. bottom: 19/827
  60776. }
  60777. },
  60778. dick: {
  60779. height: math.unit(6.5, "feet"),
  60780. name: "Dick",
  60781. image: {
  60782. source: "./media/characters/centbair/dick.svg"
  60783. }
  60784. },
  60785. slit: {
  60786. height: math.unit(3.25, "feet"),
  60787. name: "Slit",
  60788. image: {
  60789. source: "./media/characters/centbair/slit.svg"
  60790. }
  60791. },
  60792. },
  60793. [
  60794. {
  60795. name: "Normal",
  60796. height: math.unit(12, "feet"),
  60797. default: true
  60798. },
  60799. ]
  60800. ))
  60801. characterMakers.push(() => makeCharacter(
  60802. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60803. {
  60804. front: {
  60805. height: math.unit(5 + 7/12, "feet"),
  60806. name: "Front",
  60807. image: {
  60808. source: "./media/characters/andy/front.svg",
  60809. extra: 634/588,
  60810. bottom: 36/670
  60811. },
  60812. extraAttributes: {
  60813. "pawLength": {
  60814. name: "Paw Length",
  60815. power: 1,
  60816. type: "length",
  60817. base: math.unit(1, "feet")
  60818. },
  60819. }
  60820. },
  60821. side: {
  60822. height: math.unit(5 + 7/12, "feet"),
  60823. name: "Side",
  60824. image: {
  60825. source: "./media/characters/andy/side.svg",
  60826. extra: 641/596,
  60827. bottom: 34/675
  60828. },
  60829. extraAttributes: {
  60830. "pawLength": {
  60831. name: "Paw Length",
  60832. power: 1,
  60833. type: "length",
  60834. base: math.unit(1, "feet")
  60835. },
  60836. }
  60837. },
  60838. back: {
  60839. height: math.unit(5 + 7/12, "feet"),
  60840. name: "Back",
  60841. image: {
  60842. source: "./media/characters/andy/back.svg",
  60843. extra: 618/583,
  60844. bottom: 39/657
  60845. },
  60846. extraAttributes: {
  60847. "pawLength": {
  60848. name: "Paw Length",
  60849. power: 1,
  60850. type: "length",
  60851. base: math.unit(1, "feet")
  60852. },
  60853. }
  60854. },
  60855. paw: {
  60856. height: math.unit(1.13, "feet"),
  60857. name: "Paw",
  60858. image: {
  60859. source: "./media/characters/andy/paw.svg"
  60860. }
  60861. },
  60862. },
  60863. [
  60864. {
  60865. name: "Micro",
  60866. height: math.unit(4, "inches")
  60867. },
  60868. {
  60869. name: "Normal",
  60870. height: math.unit(5 + 7/12, "feet"),
  60871. default: true
  60872. },
  60873. {
  60874. name: "Macro",
  60875. height: math.unit(390.42, "feet")
  60876. },
  60877. ]
  60878. ))
  60879. characterMakers.push(() => makeCharacter(
  60880. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60881. {
  60882. front: {
  60883. height: math.unit(7, "feet"),
  60884. weight: math.unit(250, "lb"),
  60885. name: "Front",
  60886. image: {
  60887. source: "./media/characters/vix-titan/front.svg",
  60888. extra: 460/428,
  60889. bottom: 15/475
  60890. },
  60891. extraAttributes: {
  60892. "pawWidth": {
  60893. name: "Paw Width",
  60894. power: 1,
  60895. type: "length",
  60896. base: math.unit(0.75, "feet")
  60897. },
  60898. }
  60899. },
  60900. },
  60901. [
  60902. {
  60903. name: "Normal",
  60904. height: math.unit(7, "feet"),
  60905. default: true
  60906. },
  60907. {
  60908. name: "Giant",
  60909. height: math.unit(1500, "feet")
  60910. },
  60911. {
  60912. name: "Mega",
  60913. height: math.unit(10, "miles")
  60914. },
  60915. {
  60916. name: "Giga",
  60917. height: math.unit(150, "miles")
  60918. },
  60919. {
  60920. name: "Tera",
  60921. height: math.unit(144000, "miles")
  60922. },
  60923. ]
  60924. ))
  60925. characterMakers.push(() => makeCharacter(
  60926. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60927. {
  60928. front: {
  60929. height: math.unit(6 + 2/12, "feet"),
  60930. name: "Front",
  60931. image: {
  60932. source: "./media/characters/reiku/front.svg",
  60933. extra: 1910/1757,
  60934. bottom: 103/2013
  60935. },
  60936. extraAttributes: {
  60937. "thighThickness": {
  60938. name: "Thigh Thickness",
  60939. power: 1,
  60940. type: "length",
  60941. base: math.unit(1.12, "feet")
  60942. },
  60943. "assThickness": {
  60944. name: "Ass Thickness",
  60945. power: 1,
  60946. type: "length",
  60947. base: math.unit(1.12*2, "feet")
  60948. },
  60949. }
  60950. },
  60951. side: {
  60952. height: math.unit(6 + 2/12, "feet"),
  60953. name: "Side",
  60954. image: {
  60955. source: "./media/characters/reiku/side.svg",
  60956. extra: 1846/1748,
  60957. bottom: 99/1945
  60958. },
  60959. extraAttributes: {
  60960. "thighThickness": {
  60961. name: "Thigh Thickness",
  60962. power: 1,
  60963. type: "length",
  60964. base: math.unit(1.12, "feet")
  60965. },
  60966. "assThickness": {
  60967. name: "Ass Thickness",
  60968. power: 1,
  60969. type: "length",
  60970. base: math.unit(1.12*2, "feet")
  60971. },
  60972. }
  60973. },
  60974. back: {
  60975. height: math.unit(6 + 2/12, "feet"),
  60976. name: "Back",
  60977. image: {
  60978. source: "./media/characters/reiku/back.svg",
  60979. extra: 1941/1786,
  60980. bottom: 34/1975
  60981. },
  60982. extraAttributes: {
  60983. "thighThickness": {
  60984. name: "Thigh Thickness",
  60985. power: 1,
  60986. type: "length",
  60987. base: math.unit(1.12, "feet")
  60988. },
  60989. "assThickness": {
  60990. name: "Ass Thickness",
  60991. power: 1,
  60992. type: "length",
  60993. base: math.unit(1.12*2, "feet")
  60994. },
  60995. }
  60996. },
  60997. head: {
  60998. height: math.unit(1.8, "feet"),
  60999. name: "Head",
  61000. image: {
  61001. source: "./media/characters/reiku/head.svg"
  61002. }
  61003. },
  61004. tailTop: {
  61005. height: math.unit(8.4, "feet"),
  61006. name: "Tail (Top)",
  61007. image: {
  61008. source: "./media/characters/reiku/tail-top.svg"
  61009. }
  61010. },
  61011. tailBottom: {
  61012. height: math.unit(8.4, "feet"),
  61013. name: "Tail (Bottom)",
  61014. image: {
  61015. source: "./media/characters/reiku/tail-bottom.svg"
  61016. }
  61017. },
  61018. foot: {
  61019. height: math.unit(2.6, "feet"),
  61020. name: "Foot",
  61021. image: {
  61022. source: "./media/characters/reiku/foot.svg"
  61023. }
  61024. },
  61025. footCurled: {
  61026. height: math.unit(2.3, "feet"),
  61027. name: "Foot (Curled)",
  61028. image: {
  61029. source: "./media/characters/reiku/foot-curled.svg"
  61030. }
  61031. },
  61032. footSide: {
  61033. height: math.unit(1.26, "feet"),
  61034. name: "Foot (Side)",
  61035. image: {
  61036. source: "./media/characters/reiku/foot-side.svg"
  61037. }
  61038. },
  61039. },
  61040. [
  61041. {
  61042. name: "Normal",
  61043. height: math.unit(6 + 2/12, "feet"),
  61044. default: true
  61045. },
  61046. ]
  61047. ))
  61048. characterMakers.push(() => makeCharacter(
  61049. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61050. {
  61051. front: {
  61052. height: math.unit(7, "feet"),
  61053. weight: math.unit(500, "kg"),
  61054. name: "Front",
  61055. image: {
  61056. source: "./media/characters/cialda/front.svg",
  61057. extra: 912/745,
  61058. bottom: 55/967
  61059. }
  61060. },
  61061. },
  61062. [
  61063. {
  61064. name: "Normal",
  61065. height: math.unit(7, "feet"),
  61066. default: true
  61067. },
  61068. ]
  61069. ))
  61070. characterMakers.push(() => makeCharacter(
  61071. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61072. {
  61073. side: {
  61074. height: math.unit(6, "feet"),
  61075. weight: math.unit(600, "lb"),
  61076. preyCapacity: math.unit(25, "liters"),
  61077. name: "Side",
  61078. image: {
  61079. source: "./media/characters/darkkin/side.svg",
  61080. extra: 1597/1447,
  61081. bottom: 101/1698
  61082. }
  61083. },
  61084. },
  61085. [
  61086. {
  61087. name: "Canon Height",
  61088. height: math.unit(568, "feet"),
  61089. default: true
  61090. },
  61091. ]
  61092. ))
  61093. characterMakers.push(() => makeCharacter(
  61094. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61095. {
  61096. front: {
  61097. height: math.unit(6, "feet"),
  61098. weight: math.unit(1500, "lb"),
  61099. preyCapacity: math.unit(3, "people"),
  61100. name: "Front",
  61101. image: {
  61102. source: "./media/characters/livnia/front.svg",
  61103. extra: 934/932,
  61104. bottom: 83/1017
  61105. }
  61106. },
  61107. back: {
  61108. height: math.unit(6, "feet"),
  61109. weight: math.unit(1500, "lb"),
  61110. preyCapacity: math.unit(3, "people"),
  61111. name: "Back",
  61112. image: {
  61113. source: "./media/characters/livnia/back.svg",
  61114. extra: 916/915,
  61115. bottom: 58/974
  61116. }
  61117. },
  61118. head: {
  61119. height: math.unit(1.53, "feet"),
  61120. name: "Head",
  61121. image: {
  61122. source: "./media/characters/livnia/head.svg"
  61123. }
  61124. },
  61125. maw: {
  61126. height: math.unit(0.78, "feet"),
  61127. name: "Maw",
  61128. image: {
  61129. source: "./media/characters/livnia/maw.svg"
  61130. }
  61131. },
  61132. genitals: {
  61133. height: math.unit(0.35, "feet"),
  61134. name: "Genitals",
  61135. image: {
  61136. source: "./media/characters/livnia/genitals.svg"
  61137. }
  61138. },
  61139. },
  61140. [
  61141. {
  61142. name: "Normal",
  61143. height: math.unit(1000, "feet"),
  61144. default: true
  61145. },
  61146. ]
  61147. ))
  61148. characterMakers.push(() => makeCharacter(
  61149. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61150. {
  61151. front: {
  61152. height: math.unit(4, "feet"),
  61153. weight: math.unit(73, "lb"),
  61154. name: "Front",
  61155. image: {
  61156. source: "./media/characters/hayaku/front.svg",
  61157. extra: 1011/888,
  61158. bottom: 33/1044
  61159. }
  61160. },
  61161. back: {
  61162. height: math.unit(4, "feet"),
  61163. weight: math.unit(73, "lb"),
  61164. name: "Back",
  61165. image: {
  61166. source: "./media/characters/hayaku/back.svg",
  61167. extra: 1040/930,
  61168. bottom: 20/1060
  61169. }
  61170. },
  61171. },
  61172. [
  61173. {
  61174. name: "Normal",
  61175. height: math.unit(4, "feet"),
  61176. default: true
  61177. },
  61178. ]
  61179. ))
  61180. characterMakers.push(() => makeCharacter(
  61181. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61182. {
  61183. front: {
  61184. height: math.unit(6 + 7/12, "feet"),
  61185. weight: math.unit(300, "lb"),
  61186. name: "Front",
  61187. image: {
  61188. source: "./media/characters/athena-bryzant/front.svg",
  61189. extra: 870/835,
  61190. bottom: 33/903
  61191. }
  61192. },
  61193. back: {
  61194. height: math.unit(6 + 7/12, "feet"),
  61195. weight: math.unit(300, "lb"),
  61196. name: "Back",
  61197. image: {
  61198. source: "./media/characters/athena-bryzant/back.svg",
  61199. extra: 858/823,
  61200. bottom: 30/888
  61201. }
  61202. },
  61203. head: {
  61204. height: math.unit(2.38, "feet"),
  61205. name: "Head",
  61206. image: {
  61207. source: "./media/characters/athena-bryzant/head.svg"
  61208. }
  61209. },
  61210. wings: {
  61211. height: math.unit(2.85, "feet"),
  61212. name: "Wings",
  61213. image: {
  61214. source: "./media/characters/athena-bryzant/wings.svg"
  61215. }
  61216. },
  61217. },
  61218. [
  61219. {
  61220. name: "Normal",
  61221. height: math.unit(6 + 7/12, "feet"),
  61222. default: true
  61223. },
  61224. {
  61225. name: "Big",
  61226. height: math.unit(8, "feet")
  61227. },
  61228. {
  61229. name: "Very Big",
  61230. height: math.unit(11, "feet")
  61231. },
  61232. ]
  61233. ))
  61234. characterMakers.push(() => makeCharacter(
  61235. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61236. {
  61237. side: {
  61238. height: math.unit(3, "meters"),
  61239. weight: math.unit(7500, "kg"),
  61240. preyCapacity: math.unit(1e12, "people"),
  61241. name: "Side",
  61242. image: {
  61243. source: "./media/characters/zel-kesh/side.svg",
  61244. extra: 910/407,
  61245. bottom: 147/1057
  61246. }
  61247. },
  61248. },
  61249. [
  61250. {
  61251. name: "Normal",
  61252. height: math.unit(3, "meters"),
  61253. default: true
  61254. },
  61255. ]
  61256. ))
  61257. characterMakers.push(() => makeCharacter(
  61258. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61259. {
  61260. front: {
  61261. height: math.unit(2, "meters"),
  61262. weight: math.unit(95, "kg"),
  61263. name: "Front",
  61264. image: {
  61265. source: "./media/characters/kane-fox/front.svg",
  61266. extra: 945/888,
  61267. bottom: 27/972
  61268. }
  61269. },
  61270. back: {
  61271. height: math.unit(2, "meters"),
  61272. weight: math.unit(95, "kg"),
  61273. name: "Back",
  61274. image: {
  61275. source: "./media/characters/kane-fox/back.svg",
  61276. extra: 959/914,
  61277. bottom: 15/974
  61278. }
  61279. },
  61280. frontLewd: {
  61281. height: math.unit(2, "meters"),
  61282. weight: math.unit(95, "kg"),
  61283. name: "Front (Lewd)",
  61284. image: {
  61285. source: "./media/characters/kane-fox/front-lewd.svg",
  61286. extra: 945/888,
  61287. bottom: 27/972
  61288. }
  61289. },
  61290. },
  61291. [
  61292. {
  61293. name: "Home Size",
  61294. height: math.unit(2, "meters"),
  61295. default: true
  61296. },
  61297. {
  61298. name: "Macro",
  61299. height: math.unit(200, "meters")
  61300. },
  61301. {
  61302. name: "Small Mega",
  61303. height: math.unit(3, "km")
  61304. },
  61305. {
  61306. name: "Mega",
  61307. height: math.unit(50, "km")
  61308. },
  61309. {
  61310. name: "Giga",
  61311. height: math.unit(200, "km")
  61312. },
  61313. {
  61314. name: "Giga+",
  61315. height: math.unit(2500, "km")
  61316. },
  61317. {
  61318. name: "Terra",
  61319. height: math.unit(70000, "km")
  61320. },
  61321. {
  61322. name: "Terra+",
  61323. height: math.unit(150000, "km")
  61324. },
  61325. {
  61326. name: "Terra++",
  61327. height: math.unit(400000, "km")
  61328. },
  61329. ]
  61330. ))
  61331. characterMakers.push(() => makeCharacter(
  61332. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61333. {
  61334. otter_front: {
  61335. height: math.unit(1.8, "meters"),
  61336. weight: math.unit(90, "kg"),
  61337. name: "Front",
  61338. image: {
  61339. source: "./media/characters/ayranus/otter-front.svg",
  61340. extra: 468/452,
  61341. bottom: 43/511
  61342. },
  61343. form: "otter",
  61344. },
  61345. otter_frontLewd: {
  61346. height: math.unit(1.8, "meters"),
  61347. weight: math.unit(90, "kg"),
  61348. name: "Front (Lewd)",
  61349. image: {
  61350. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61351. extra: 468/452,
  61352. bottom: 43/511
  61353. },
  61354. form: "otter",
  61355. },
  61356. lionbat_front: {
  61357. height: math.unit(1.8, "meters"),
  61358. weight: math.unit(90, "kg"),
  61359. name: "Front (Lewd)",
  61360. image: {
  61361. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61362. extra: 797/740,
  61363. bottom: 78/875
  61364. },
  61365. form: "lionbat",
  61366. },
  61367. paw: {
  61368. height: math.unit(1.5, "feet"),
  61369. name: "Paw",
  61370. image: {
  61371. source: "./media/characters/ayranus/paw.svg"
  61372. },
  61373. },
  61374. },
  61375. [
  61376. {
  61377. name: "Incognito",
  61378. height: math.unit(1.8, "meters"),
  61379. allForms: true
  61380. },
  61381. {
  61382. name: "Macro",
  61383. height: math.unit(60, "meters"),
  61384. allForms: true
  61385. },
  61386. {
  61387. name: "Macro+",
  61388. height: math.unit(200, "meters"),
  61389. allForms: true
  61390. },
  61391. {
  61392. name: "Mega",
  61393. height: math.unit(35, "km"),
  61394. allForms: true
  61395. },
  61396. {
  61397. name: "Giga",
  61398. height: math.unit(220, "km"),
  61399. allForms: true
  61400. },
  61401. {
  61402. name: "Giga+",
  61403. height: math.unit(1500, "km"),
  61404. allForms: true
  61405. },
  61406. {
  61407. name: "Terra",
  61408. height: math.unit(13000, "km"),
  61409. allForms: true
  61410. },
  61411. {
  61412. name: "Terra+",
  61413. height: math.unit(500000, "km"),
  61414. allForms: true
  61415. },
  61416. {
  61417. name: "Galactic",
  61418. height: math.unit(486080, "parsecs"),
  61419. default: true,
  61420. allForms: true
  61421. },
  61422. ],
  61423. {
  61424. "otter": {
  61425. name: "Otter",
  61426. default: true
  61427. },
  61428. "lionbat": {
  61429. name: "Lionbat",
  61430. },
  61431. }
  61432. ))
  61433. characterMakers.push(() => makeCharacter(
  61434. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61435. {
  61436. front: {
  61437. height: math.unit(7 + 4/12, "feet"),
  61438. weight: math.unit(400, "lb"),
  61439. name: "Front",
  61440. image: {
  61441. source: "./media/characters/proxy/front.svg",
  61442. extra: 1605/1542,
  61443. bottom: 55/1660
  61444. }
  61445. },
  61446. side: {
  61447. height: math.unit(7 + 4/12, "feet"),
  61448. weight: math.unit(400, "lb"),
  61449. name: "Side",
  61450. image: {
  61451. source: "./media/characters/proxy/side.svg",
  61452. extra: 794/759,
  61453. bottom: 6/800
  61454. }
  61455. },
  61456. hand: {
  61457. height: math.unit(1.54, "feet"),
  61458. name: "Hand",
  61459. image: {
  61460. source: "./media/characters/proxy/hand.svg"
  61461. }
  61462. },
  61463. paw: {
  61464. height: math.unit(1.53, "feet"),
  61465. name: "Paw",
  61466. image: {
  61467. source: "./media/characters/proxy/paw.svg"
  61468. }
  61469. },
  61470. maw: {
  61471. height: math.unit(1.9, "feet"),
  61472. name: "Maw",
  61473. image: {
  61474. source: "./media/characters/proxy/maw.svg"
  61475. }
  61476. },
  61477. },
  61478. [
  61479. {
  61480. name: "Normal",
  61481. height: math.unit(7 + 4/12, "feet"),
  61482. default: true
  61483. },
  61484. ]
  61485. ))
  61486. characterMakers.push(() => makeCharacter(
  61487. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61488. {
  61489. front: {
  61490. height: math.unit(4, "meters"),
  61491. name: "Front",
  61492. image: {
  61493. source: "./media/characters/crocozilla/front.svg",
  61494. extra: 1790/1742,
  61495. bottom: 78/1868
  61496. }
  61497. },
  61498. },
  61499. [
  61500. {
  61501. name: "Normal",
  61502. height: math.unit(4, "meters"),
  61503. default: true
  61504. },
  61505. ]
  61506. ))
  61507. characterMakers.push(() => makeCharacter(
  61508. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61509. {
  61510. front: {
  61511. height: math.unit(1.8, "meters"),
  61512. weight: math.unit(120, "kg"),
  61513. name: "Front",
  61514. image: {
  61515. source: "./media/characters/kurz/front.svg",
  61516. extra: 1960/1824,
  61517. bottom: 41/2001
  61518. }
  61519. },
  61520. back: {
  61521. height: math.unit(1.8, "meters"),
  61522. weight: math.unit(120, "kg"),
  61523. name: "Back",
  61524. image: {
  61525. source: "./media/characters/kurz/back.svg",
  61526. extra: 1906/1787,
  61527. bottom: 60/1966
  61528. }
  61529. },
  61530. frontLewd: {
  61531. height: math.unit(1.8, "meters"),
  61532. weight: math.unit(120, "kg"),
  61533. name: "Front (Lewd)",
  61534. image: {
  61535. source: "./media/characters/kurz/front-lewd.svg",
  61536. extra: 1960/1824,
  61537. bottom: 41/2001
  61538. }
  61539. },
  61540. maw: {
  61541. height: math.unit(0.69, "meters"),
  61542. name: "Maw",
  61543. image: {
  61544. source: "./media/characters/kurz/maw.svg"
  61545. }
  61546. },
  61547. },
  61548. [
  61549. {
  61550. name: "Original Size",
  61551. height: math.unit(1.8, "meters")
  61552. },
  61553. {
  61554. name: "Incognito Size",
  61555. height: math.unit(2.4, "meters"),
  61556. default: true
  61557. },
  61558. {
  61559. name: "Macro",
  61560. height: math.unit(30, "meters")
  61561. },
  61562. {
  61563. name: "Macro+",
  61564. height: math.unit(250, "meters")
  61565. },
  61566. {
  61567. name: "Mega",
  61568. height: math.unit(2, "km")
  61569. },
  61570. {
  61571. name: "Mega+",
  61572. height: math.unit(35, "km")
  61573. },
  61574. {
  61575. name: "Mega++",
  61576. height: math.unit(75, "km")
  61577. },
  61578. {
  61579. name: "Giga",
  61580. height: math.unit(250, "km")
  61581. },
  61582. {
  61583. name: "Terra",
  61584. height: math.unit(15000, "km")
  61585. },
  61586. {
  61587. name: "Terra+",
  61588. height: math.unit(2250000, "km")
  61589. },
  61590. ]
  61591. ))
  61592. characterMakers.push(() => makeCharacter(
  61593. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61594. {
  61595. front: {
  61596. height: math.unit(16 + 3/12, "feet"),
  61597. weight: math.unit(3575, "lb"),
  61598. name: "Front",
  61599. image: {
  61600. source: "./media/characters/nikita/front.svg",
  61601. extra: 1064/955,
  61602. bottom: 47/1111
  61603. }
  61604. },
  61605. },
  61606. [
  61607. {
  61608. name: "Normal",
  61609. height: math.unit(16 + 3/12, "feet"),
  61610. default: true
  61611. },
  61612. {
  61613. name: "Big",
  61614. height: math.unit(21, "feet")
  61615. },
  61616. {
  61617. name: "Biggest",
  61618. height: math.unit(50, "feet")
  61619. },
  61620. ]
  61621. ))
  61622. characterMakers.push(() => makeCharacter(
  61623. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61624. {
  61625. front: {
  61626. height: math.unit(1.92, "m"),
  61627. weight: math.unit(76, "kg"),
  61628. name: "Front",
  61629. image: {
  61630. source: "./media/characters/kyara/front.svg",
  61631. extra: 1550/1438,
  61632. bottom: 139/1689
  61633. }
  61634. },
  61635. back: {
  61636. height: math.unit(1.92, "m"),
  61637. weight: math.unit(76, "kg"),
  61638. name: "Back",
  61639. image: {
  61640. source: "./media/characters/kyara/back.svg",
  61641. extra: 1523/1427,
  61642. bottom: 83/1606
  61643. }
  61644. },
  61645. head: {
  61646. height: math.unit(1.22, "feet"),
  61647. name: "Head",
  61648. image: {
  61649. source: "./media/characters/kyara/head.svg"
  61650. }
  61651. },
  61652. maw: {
  61653. height: math.unit(0.73, "feet"),
  61654. name: "Maw",
  61655. image: {
  61656. source: "./media/characters/kyara/maw.svg"
  61657. }
  61658. },
  61659. paws: {
  61660. height: math.unit(0.95, "feet"),
  61661. name: "Paws",
  61662. image: {
  61663. source: "./media/characters/kyara/paws.svg"
  61664. }
  61665. },
  61666. },
  61667. [
  61668. {
  61669. name: "Normal",
  61670. height: math.unit(1.92, "meters"),
  61671. default: true
  61672. },
  61673. {
  61674. name: "Mini Macro",
  61675. height: math.unit(192, "meters")
  61676. },
  61677. {
  61678. name: "Macro",
  61679. height: math.unit(480, "meters")
  61680. },
  61681. {
  61682. name: "Mega Macro",
  61683. height: math.unit(1440, "meters")
  61684. },
  61685. ]
  61686. ))
  61687. characterMakers.push(() => makeCharacter(
  61688. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61689. {
  61690. front: {
  61691. height: math.unit(6, "feet"),
  61692. weight: math.unit(160, "lbs"),
  61693. preyCapacity: math.unit(0.05, "people"),
  61694. name: "Front",
  61695. image: {
  61696. source: "./media/characters/layla-amari/front.svg",
  61697. extra: 1922/1723,
  61698. bottom: 90/2012
  61699. }
  61700. },
  61701. back: {
  61702. height: math.unit(6, "feet"),
  61703. weight: math.unit(160, "lbs"),
  61704. preyCapacity: math.unit(0.05, "people"),
  61705. name: "Back",
  61706. image: {
  61707. source: "./media/characters/layla-amari/back.svg",
  61708. extra: 1917/1718,
  61709. bottom: 50/1967
  61710. }
  61711. },
  61712. frontDressed: {
  61713. height: math.unit(6, "feet"),
  61714. weight: math.unit(160, "lbs"),
  61715. preyCapacity: math.unit(0.05, "people"),
  61716. name: "Front (Dressed)",
  61717. image: {
  61718. source: "./media/characters/layla-amari/front-dressed.svg",
  61719. extra: 1922/1723,
  61720. bottom: 90/2012
  61721. }
  61722. },
  61723. face: {
  61724. height: math.unit(0.93, "feet"),
  61725. name: "Face",
  61726. image: {
  61727. source: "./media/characters/layla-amari/face.svg"
  61728. }
  61729. },
  61730. hand: {
  61731. height: math.unit(0.66 , "feet"),
  61732. name: "Hand",
  61733. image: {
  61734. source: "./media/characters/layla-amari/hand.svg"
  61735. }
  61736. },
  61737. foot: {
  61738. height: math.unit(1, "feet"),
  61739. name: "Foot",
  61740. image: {
  61741. source: "./media/characters/layla-amari/foot.svg"
  61742. }
  61743. },
  61744. necklace: {
  61745. height: math.unit(0.32, "feet"),
  61746. name: "Necklace",
  61747. image: {
  61748. source: "./media/characters/layla-amari/necklace.svg"
  61749. }
  61750. },
  61751. nipple: {
  61752. height: math.unit(0.2, "feet"),
  61753. name: "Nipple",
  61754. image: {
  61755. source: "./media/characters/layla-amari/nipple.svg"
  61756. }
  61757. },
  61758. slit: {
  61759. height: math.unit(0.26, "feet"),
  61760. name: "Slit",
  61761. image: {
  61762. source: "./media/characters/layla-amari/slit.svg"
  61763. }
  61764. },
  61765. },
  61766. [
  61767. {
  61768. name: "Natural",
  61769. height: math.unit(825, "feet"),
  61770. default: true
  61771. },
  61772. {
  61773. name: "Enhanced",
  61774. height: math.unit(8250, "feet")
  61775. },
  61776. {
  61777. name: "Apparent Size",
  61778. height: math.unit(9.04363e+8, "meters")
  61779. },
  61780. ]
  61781. ))
  61782. characterMakers.push(() => makeCharacter(
  61783. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61784. {
  61785. front: {
  61786. height: math.unit(1.3, "meters"),
  61787. name: "Front",
  61788. image: {
  61789. source: "./media/characters/percy/front.svg",
  61790. extra: 1444/1289,
  61791. bottom: 54/1498
  61792. }
  61793. },
  61794. },
  61795. [
  61796. {
  61797. name: "Normal",
  61798. height: math.unit(1.3, "meters"),
  61799. default: true
  61800. },
  61801. ]
  61802. ))
  61803. characterMakers.push(() => makeCharacter(
  61804. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61805. {
  61806. side: {
  61807. height: math.unit(10, "meters"),
  61808. name: "Side",
  61809. image: {
  61810. source: "./media/characters/grev/side.svg",
  61811. extra: 653/266,
  61812. bottom: 77/730
  61813. }
  61814. },
  61815. head: {
  61816. height: math.unit(16.2, "m"),
  61817. name: "Head",
  61818. image: {
  61819. source: "./media/characters/grev/head.svg"
  61820. }
  61821. },
  61822. dick: {
  61823. height: math.unit(2.8135932034, "m"),
  61824. name: "Dick",
  61825. image: {
  61826. source: "./media/characters/grev/dick.svg"
  61827. }
  61828. },
  61829. },
  61830. [
  61831. {
  61832. name: "Friend-Sized",
  61833. height: math.unit(80, "cm")
  61834. },
  61835. {
  61836. name: "Normal",
  61837. height: math.unit(10, "meters"),
  61838. default: true
  61839. },
  61840. {
  61841. name: "Macro",
  61842. height: math.unit(200, "meters")
  61843. },
  61844. ]
  61845. ))
  61846. characterMakers.push(() => makeCharacter(
  61847. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61848. {
  61849. front: {
  61850. height: math.unit(19.75, "feet"),
  61851. weight: math.unit(20000, "lb"),
  61852. name: "Front",
  61853. image: {
  61854. source: "./media/characters/azuuca/front.svg",
  61855. extra: 1593/1511,
  61856. bottom: 55/1648
  61857. }
  61858. },
  61859. },
  61860. [
  61861. {
  61862. name: "Normal",
  61863. height: math.unit(19.75, "feet"),
  61864. default: true
  61865. },
  61866. ]
  61867. ))
  61868. characterMakers.push(() => makeCharacter(
  61869. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61870. {
  61871. front: {
  61872. height: math.unit(15, "feet"),
  61873. weight: math.unit(1500, "lb"),
  61874. name: "Front",
  61875. image: {
  61876. source: "./media/characters/valuria/front.svg",
  61877. extra: 1588/1486,
  61878. bottom: 31/1619
  61879. }
  61880. },
  61881. },
  61882. [
  61883. {
  61884. name: "Normal",
  61885. height: math.unit(15, "feet"),
  61886. default: true
  61887. },
  61888. {
  61889. name: "Small",
  61890. height: math.unit(500, "feet")
  61891. },
  61892. {
  61893. name: "Macro",
  61894. height: math.unit(4000, "feet")
  61895. },
  61896. {
  61897. name: "Mega Macro",
  61898. height: math.unit(2000, "miles")
  61899. },
  61900. {
  61901. name: "Giga Macro",
  61902. height: math.unit(3e6, "miles")
  61903. },
  61904. ]
  61905. ))
  61906. characterMakers.push(() => makeCharacter(
  61907. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61908. {
  61909. front: {
  61910. height: math.unit(3500, "solarradii"),
  61911. name: "Front",
  61912. image: {
  61913. source: "./media/characters/terigaia/front.svg",
  61914. extra: 1531/1451,
  61915. bottom: 98/1629
  61916. }
  61917. },
  61918. },
  61919. [
  61920. {
  61921. name: "Normal",
  61922. height: math.unit(3500, "solarradii"),
  61923. default: true
  61924. },
  61925. ]
  61926. ))
  61927. characterMakers.push(() => makeCharacter(
  61928. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61929. {
  61930. front: {
  61931. height: math.unit(9.34, "feet"),
  61932. weight: math.unit(600, "lb"),
  61933. name: "Front",
  61934. image: {
  61935. source: "./media/characters/blair-blaziken/front.svg",
  61936. extra: 1557/1462,
  61937. bottom: 55/1612
  61938. }
  61939. },
  61940. },
  61941. [
  61942. {
  61943. name: "Normal",
  61944. height: math.unit(9.34, "feet"),
  61945. default: true
  61946. },
  61947. ]
  61948. ))
  61949. characterMakers.push(() => makeCharacter(
  61950. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61951. {
  61952. pistrogre_front: {
  61953. height: math.unit(10, "feet"),
  61954. weight: math.unit(10, "tons"),
  61955. name: "Front",
  61956. image: {
  61957. source: "./media/characters/braxia/pistrogre-front.svg",
  61958. extra: 1531/1334,
  61959. bottom: 114/1645
  61960. },
  61961. form: "pistrogre",
  61962. default: true
  61963. },
  61964. human_front: {
  61965. height: math.unit(10, "feet"),
  61966. weight: math.unit(10, "tons"),
  61967. name: "Front",
  61968. image: {
  61969. source: "./media/characters/braxia/human-front.svg",
  61970. extra: 1574/1501,
  61971. bottom: 37/1611
  61972. },
  61973. form: "human",
  61974. default: true
  61975. },
  61976. },
  61977. [
  61978. {
  61979. name: "Normal",
  61980. height: math.unit(10, "feet"),
  61981. default: true,
  61982. allForms: true
  61983. },
  61984. {
  61985. name: "Macro",
  61986. height: math.unit(1000, "feet"),
  61987. allForms: true
  61988. },
  61989. {
  61990. name: "Mega Macro",
  61991. height: math.unit(100, "miles"),
  61992. allForms: true
  61993. },
  61994. {
  61995. name: "Cosmic",
  61996. height: math.unit(1000000, "lightyears"),
  61997. allForms: true
  61998. },
  61999. {
  62000. name: "ϐѮԆԬӁꭍϞԢ",
  62001. height: math.unit(1000, "multiverses"),
  62002. allForms: true
  62003. },
  62004. ],
  62005. {
  62006. "pistrogre": {
  62007. name: "Pistrogre",
  62008. default: true
  62009. },
  62010. "human": {
  62011. name: "Human",
  62012. },
  62013. }
  62014. ))
  62015. characterMakers.push(() => makeCharacter(
  62016. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62017. {
  62018. front: {
  62019. height: math.unit(6 + 1/12, "feet"),
  62020. weight: math.unit(280, "lb"),
  62021. name: "Front",
  62022. image: {
  62023. source: "./media/characters/kiriga-yato/front.svg",
  62024. extra: 445/394,
  62025. bottom: 11/456
  62026. }
  62027. },
  62028. },
  62029. [
  62030. {
  62031. name: "Descended",
  62032. height: math.unit(3, "feet")
  62033. },
  62034. {
  62035. name: "Average",
  62036. height: math.unit(6 + 1/12, "feet"),
  62037. default: true
  62038. },
  62039. {
  62040. name: "Ascended",
  62041. height: math.unit(9 + 2/12, "feet")
  62042. },
  62043. ]
  62044. ))
  62045. characterMakers.push(() => makeCharacter(
  62046. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62047. {
  62048. front: {
  62049. height: math.unit(6, "feet"),
  62050. weight: math.unit(150, "lb"),
  62051. name: "Front",
  62052. image: {
  62053. source: "./media/characters/kylie/front.svg",
  62054. extra: 1114/1046,
  62055. bottom: 65/1179
  62056. },
  62057. extraAttributes: {
  62058. "hoofSize": {
  62059. name: "Hoof Size",
  62060. power: 2,
  62061. type: "area",
  62062. base: math.unit(0.034, "m^2")
  62063. },
  62064. "footSize": {
  62065. name: "Foot Size",
  62066. power: 2,
  62067. type: "area",
  62068. base: math.unit(0.75, "m^2")
  62069. },
  62070. }
  62071. },
  62072. side: {
  62073. height: math.unit(6, "feet"),
  62074. weight: math.unit(150, "lb"),
  62075. name: "Side",
  62076. image: {
  62077. source: "./media/characters/kylie/side.svg",
  62078. extra: 1178/1110,
  62079. bottom: 21/1199
  62080. },
  62081. extraAttributes: {
  62082. "hoofSize": {
  62083. name: "Hoof Size",
  62084. power: 2,
  62085. type: "area",
  62086. base: math.unit(0.034, "m^2")
  62087. },
  62088. "footSize": {
  62089. name: "Foot Size",
  62090. power: 2,
  62091. type: "area",
  62092. base: math.unit(0.75, "m^2")
  62093. },
  62094. }
  62095. },
  62096. back: {
  62097. height: math.unit(6, "feet"),
  62098. weight: math.unit(150, "lb"),
  62099. name: "Back",
  62100. image: {
  62101. source: "./media/characters/kylie/back.svg",
  62102. extra: 1115/1047,
  62103. bottom: 66/1181
  62104. },
  62105. extraAttributes: {
  62106. "hoofSize": {
  62107. name: "Hoof Size",
  62108. power: 2,
  62109. type: "area",
  62110. base: math.unit(0.034, "m^2")
  62111. },
  62112. "footSize": {
  62113. name: "Foot Size",
  62114. power: 2,
  62115. type: "area",
  62116. base: math.unit(0.75, "m^2")
  62117. },
  62118. }
  62119. },
  62120. head: {
  62121. height: math.unit(1.85, "feet"),
  62122. name: "Head",
  62123. image: {
  62124. source: "./media/characters/kylie/head.svg"
  62125. }
  62126. },
  62127. },
  62128. [
  62129. {
  62130. name: "Normal",
  62131. height: math.unit(90, "meters"),
  62132. default: true
  62133. },
  62134. ]
  62135. ))
  62136. characterMakers.push(() => makeCharacter(
  62137. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62138. {
  62139. front: {
  62140. height: math.unit(245, "feet"),
  62141. weight: math.unit(400000, "lb"),
  62142. name: "Front",
  62143. image: {
  62144. source: "./media/characters/sabado/front.svg",
  62145. extra: 1309/1164,
  62146. bottom: 29/1338
  62147. }
  62148. },
  62149. },
  62150. [
  62151. {
  62152. name: "Normal",
  62153. height: math.unit(245, "feet"),
  62154. default: true
  62155. },
  62156. ]
  62157. ))
  62158. characterMakers.push(() => makeCharacter(
  62159. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62160. {
  62161. shark_front: {
  62162. height: math.unit(2, "meters"),
  62163. weight: math.unit(200, "kg"),
  62164. name: "Front",
  62165. image: {
  62166. source: "./media/characters/zechal/shark-front.svg",
  62167. extra: 969/925,
  62168. bottom: 74/1043
  62169. },
  62170. form: "shark",
  62171. },
  62172. shark_back: {
  62173. height: math.unit(2, "meters"),
  62174. weight: math.unit(200, "kg"),
  62175. name: "Back",
  62176. image: {
  62177. source: "./media/characters/zechal/shark-back.svg",
  62178. extra: 994/949,
  62179. bottom: 176/1170
  62180. },
  62181. form: "shark",
  62182. },
  62183. shark_frontLewd: {
  62184. height: math.unit(2, "meters"),
  62185. weight: math.unit(200, "kg"),
  62186. name: "Front (Lewd)",
  62187. image: {
  62188. source: "./media/characters/zechal/shark-front-lewd.svg",
  62189. extra: 969/925,
  62190. bottom: 74/1043
  62191. },
  62192. form: "shark",
  62193. },
  62194. shark_side: {
  62195. height: math.unit(1.56, "meters"),
  62196. weight: math.unit(200, "kg"),
  62197. name: "Side",
  62198. image: {
  62199. source: "./media/characters/zechal/shark-side.svg"
  62200. },
  62201. form: "shark",
  62202. },
  62203. dragon_front: {
  62204. height: math.unit(2, "meters"),
  62205. weight: math.unit(200, "kg"),
  62206. name: "Front",
  62207. image: {
  62208. source: "./media/characters/zechal/dragon-front.svg",
  62209. extra: 1041/925,
  62210. bottom: 74/1115
  62211. },
  62212. form: "dragon",
  62213. },
  62214. dragon_back: {
  62215. height: math.unit(2, "meters"),
  62216. weight: math.unit(200, "kg"),
  62217. name: "Back",
  62218. image: {
  62219. source: "./media/characters/zechal/dragon-back.svg",
  62220. extra: 1061/949,
  62221. bottom: 176/1237
  62222. },
  62223. form: "dragon",
  62224. },
  62225. dragon_frontLewd: {
  62226. height: math.unit(2, "meters"),
  62227. weight: math.unit(200, "kg"),
  62228. name: "Front (Lewd)",
  62229. image: {
  62230. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62231. extra: 1041/925,
  62232. bottom: 74/1115
  62233. },
  62234. form: "dragon",
  62235. },
  62236. dragon_side: {
  62237. height: math.unit(1.56, "meters"),
  62238. weight: math.unit(200, "kg"),
  62239. name: "Side",
  62240. image: {
  62241. source: "./media/characters/zechal/dragon-side.svg"
  62242. },
  62243. form: "dragon",
  62244. },
  62245. foot: {
  62246. height: math.unit(0.5, "meters"),
  62247. name: "Foot",
  62248. image: {
  62249. source: "./media/characters/zechal/foot.svg"
  62250. }
  62251. },
  62252. sheathFront: {
  62253. height: math.unit(0.45, "meters"),
  62254. name: "Sheath (Front)",
  62255. image: {
  62256. source: "./media/characters/zechal/sheath-front.svg"
  62257. }
  62258. },
  62259. sheathSide: {
  62260. height: math.unit(0.45, "meters"),
  62261. name: "Sheath (Side)",
  62262. image: {
  62263. source: "./media/characters/zechal/sheath-side.svg"
  62264. }
  62265. },
  62266. },
  62267. [
  62268. {
  62269. name: "Incognito",
  62270. height: math.unit(2, "meters"),
  62271. allForms: true
  62272. },
  62273. {
  62274. name: "Small Rampage",
  62275. height: math.unit(25, "meters"),
  62276. allForms: true
  62277. },
  62278. {
  62279. name: "Home Size",
  62280. height: math.unit(250, "meters"),
  62281. allForms: true,
  62282. default: true
  62283. },
  62284. {
  62285. name: "Macro+",
  62286. height: math.unit(700, "meters"),
  62287. allForms: true
  62288. },
  62289. {
  62290. name: "Small Mega",
  62291. height: math.unit(3, "km"),
  62292. allForms: true
  62293. },
  62294. {
  62295. name: "Mega",
  62296. height: math.unit(15, "km"),
  62297. allForms: true
  62298. },
  62299. {
  62300. name: "Giga",
  62301. height: math.unit(300, "km"),
  62302. allForms: true
  62303. },
  62304. {
  62305. name: "Giga+",
  62306. height: math.unit(1750, "km"),
  62307. allForms: true
  62308. },
  62309. {
  62310. name: "Continental",
  62311. height: math.unit(5000, "km"),
  62312. allForms: true
  62313. },
  62314. {
  62315. name: "Terra",
  62316. height: math.unit(20000, "km"),
  62317. allForms: true
  62318. },
  62319. {
  62320. name: "Terra+",
  62321. height: math.unit(300000, "km"),
  62322. allForms: true
  62323. },
  62324. {
  62325. name: "Solar",
  62326. height: math.unit(40000000, "km"),
  62327. allForms: true
  62328. },
  62329. {
  62330. name: "Galactic",
  62331. height: math.unit(810133, "parsecs"),
  62332. allForms: true
  62333. },
  62334. {
  62335. name: "Universal",
  62336. height: math.unit(25, "universes"),
  62337. allForms: true
  62338. },
  62339. ],
  62340. {
  62341. "shark": {
  62342. name: "Shark",
  62343. default: true
  62344. },
  62345. "dragon": {
  62346. name: "Dragon",
  62347. },
  62348. }
  62349. ))
  62350. characterMakers.push(() => makeCharacter(
  62351. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62352. {
  62353. front: {
  62354. height: math.unit(2.2, "meters"),
  62355. weight: math.unit(150, "kg"),
  62356. name: "Front",
  62357. image: {
  62358. source: "./media/characters/sergis/front.svg",
  62359. extra: 1314/1312,
  62360. bottom: 112/1426
  62361. }
  62362. },
  62363. back: {
  62364. height: math.unit(2.2, "meters"),
  62365. weight: math.unit(150, "kg"),
  62366. name: "Back",
  62367. image: {
  62368. source: "./media/characters/sergis/back.svg",
  62369. extra: 1335/1333,
  62370. bottom: 19/1354
  62371. }
  62372. },
  62373. frontLewd: {
  62374. height: math.unit(2.2, "meters"),
  62375. weight: math.unit(150, "kg"),
  62376. name: "Front (Lewd)",
  62377. image: {
  62378. source: "./media/characters/sergis/front-lewd.svg",
  62379. extra: 1314/1312,
  62380. bottom: 112/1426
  62381. }
  62382. },
  62383. frontDressed: {
  62384. height: math.unit(2.2, "meters"),
  62385. weight: math.unit(150, "kg"),
  62386. name: "Front (Dressed)",
  62387. image: {
  62388. source: "./media/characters/sergis/front-dressed.svg",
  62389. extra: 1330/1328,
  62390. bottom: 95/1425
  62391. }
  62392. },
  62393. frontDressedLewd: {
  62394. height: math.unit(2.2, "meters"),
  62395. weight: math.unit(150, "kg"),
  62396. name: "Front (Dressed, Lewd)",
  62397. image: {
  62398. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62399. extra: 1330/1328,
  62400. bottom: 95/1425
  62401. }
  62402. },
  62403. maw: {
  62404. height: math.unit(0.48, "meters"),
  62405. name: "Maw",
  62406. image: {
  62407. source: "./media/characters/sergis/maw.svg"
  62408. }
  62409. },
  62410. sheath: {
  62411. height: math.unit(0.38, "meters"),
  62412. name: "Sheath",
  62413. image: {
  62414. source: "./media/characters/sergis/sheath.svg"
  62415. }
  62416. },
  62417. },
  62418. [
  62419. {
  62420. name: "Incognito Size",
  62421. height: math.unit(2.2, "meters")
  62422. },
  62423. {
  62424. name: "Small Macro",
  62425. height: math.unit(40, "meters")
  62426. },
  62427. {
  62428. name: "Macro",
  62429. height: math.unit(150, "meters")
  62430. },
  62431. {
  62432. name: "Macro+",
  62433. height: math.unit(300, "meters")
  62434. },
  62435. {
  62436. name: "Mega",
  62437. height: math.unit(2.5, "km")
  62438. },
  62439. {
  62440. name: "Mega+",
  62441. height: math.unit(30, "km")
  62442. },
  62443. {
  62444. name: "Home Size",
  62445. height: math.unit(300, "km"),
  62446. default: true
  62447. },
  62448. {
  62449. name: "Giga+",
  62450. height: math.unit(1000, "km")
  62451. },
  62452. {
  62453. name: "Giga++",
  62454. height: math.unit(6000, "km")
  62455. },
  62456. {
  62457. name: "Terra",
  62458. height: math.unit(70000, "km")
  62459. },
  62460. {
  62461. name: "Terra+",
  62462. height: math.unit(200000, "km")
  62463. },
  62464. {
  62465. name: "Galactic",
  62466. height: math.unit(634200, "lightyears")
  62467. },
  62468. ]
  62469. ))
  62470. characterMakers.push(() => makeCharacter(
  62471. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62472. {
  62473. standard: {
  62474. height: math.unit(1 + 5/12, "feet"),
  62475. name: "Standard",
  62476. image: {
  62477. source: "./media/characters/spade/standard.svg",
  62478. extra: 1794/1703,
  62479. bottom: 115/1909
  62480. }
  62481. },
  62482. disguised: {
  62483. height: math.unit(1 + 5/12, "feet"),
  62484. name: "Disguised",
  62485. image: {
  62486. source: "./media/characters/spade/disguised.svg",
  62487. extra: 1794/1700,
  62488. bottom: 98/1892
  62489. }
  62490. },
  62491. },
  62492. [
  62493. {
  62494. name: "Normal",
  62495. height: math.unit(1 + 5/12, "feet"),
  62496. default: true
  62497. },
  62498. ]
  62499. ))
  62500. characterMakers.push(() => makeCharacter(
  62501. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62502. {
  62503. frontNsfw: {
  62504. height: math.unit(5, "meters"),
  62505. weight: math.unit(2000, "kg"),
  62506. preyCapacity: math.unit(5, "people"),
  62507. name: "Front (NSFW)",
  62508. image: {
  62509. source: "./media/characters/zeanlain/front-nsfw.svg",
  62510. extra: 1087/938,
  62511. bottom: 93/1180
  62512. },
  62513. extraAttributes: {
  62514. "wingspan": {
  62515. name: "Wingspan",
  62516. power: 1,
  62517. type: "length",
  62518. base: math.unit(10, "meters")
  62519. },
  62520. "footSize": {
  62521. name: "Foot Size",
  62522. power: 1,
  62523. type: "length",
  62524. base: math.unit(0.68, "meters")
  62525. },
  62526. "cockLength": {
  62527. name: "Cock Length",
  62528. power: 1,
  62529. type: "length",
  62530. base: math.unit(1.69, "meters")
  62531. },
  62532. "ballVolume": {
  62533. name: "Ball Volume",
  62534. power: 3,
  62535. type: "volume",
  62536. base: math.unit(0.028, "m^3")
  62537. },
  62538. }
  62539. },
  62540. front: {
  62541. height: math.unit(5, "meters"),
  62542. weight: math.unit(2000, "kg"),
  62543. preyCapacity: math.unit(3, "people"),
  62544. name: "Front",
  62545. image: {
  62546. source: "./media/characters/zeanlain/front.svg",
  62547. extra: 1087/938,
  62548. bottom: 93/1180
  62549. },
  62550. extraAttributes: {
  62551. "wingspan": {
  62552. name: "Wingspan",
  62553. power: 1,
  62554. type: "length",
  62555. base: math.unit(10, "meters")
  62556. },
  62557. "footSize": {
  62558. name: "Foot Size",
  62559. power: 1,
  62560. type: "length",
  62561. base: math.unit(0.68, "meters")
  62562. },
  62563. }
  62564. },
  62565. },
  62566. [
  62567. {
  62568. name: "Normal",
  62569. height: math.unit(5, "meters"),
  62570. default: true
  62571. },
  62572. ]
  62573. ))
  62574. characterMakers.push(() => makeCharacter(
  62575. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62576. {
  62577. front: {
  62578. height: math.unit(10, "meters"),
  62579. weight: math.unit(250000, "kg"),
  62580. name: "Front",
  62581. image: {
  62582. source: "./media/characters/airamis/front.svg",
  62583. extra: 865/835,
  62584. bottom: 13/878
  62585. }
  62586. },
  62587. },
  62588. [
  62589. {
  62590. name: "Normal",
  62591. height: math.unit(10, "meters"),
  62592. default: true
  62593. },
  62594. ]
  62595. ))
  62596. characterMakers.push(() => makeCharacter(
  62597. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62598. {
  62599. front: {
  62600. height: math.unit(3 + 3/12, "feet"),
  62601. weight: math.unit(75, "lb"),
  62602. name: "Front",
  62603. image: {
  62604. source: "./media/characters/corra-tourmaline/front.svg",
  62605. extra: 1037/864,
  62606. bottom: 39/1076
  62607. }
  62608. },
  62609. back: {
  62610. height: math.unit(3 + 3/12, "feet"),
  62611. weight: math.unit(75, "lb"),
  62612. name: "Back",
  62613. image: {
  62614. source: "./media/characters/corra-tourmaline/back.svg",
  62615. extra: 1022/849,
  62616. bottom: 26/1048
  62617. }
  62618. },
  62619. dressed: {
  62620. height: math.unit(3 + 3/12, "feet"),
  62621. weight: math.unit(75, "lb"),
  62622. name: "Dressed",
  62623. image: {
  62624. source: "./media/characters/corra-tourmaline/dressed.svg",
  62625. extra: 1037/864,
  62626. bottom: 39/1076
  62627. }
  62628. },
  62629. beans: {
  62630. height: math.unit(0.37, "feet"),
  62631. name: "Beans",
  62632. image: {
  62633. source: "./media/characters/corra-tourmaline/beans.svg"
  62634. }
  62635. },
  62636. },
  62637. [
  62638. {
  62639. name: "Normal",
  62640. height: math.unit(3 + 3/12, "feet"),
  62641. default: true
  62642. },
  62643. {
  62644. name: "Macro",
  62645. height: math.unit(32, "feet")
  62646. },
  62647. ]
  62648. ))
  62649. characterMakers.push(() => makeCharacter(
  62650. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62651. {
  62652. front: {
  62653. height: math.unit(6 + 2/12, "feet"),
  62654. weight: math.unit(203, "lb"),
  62655. name: "Front",
  62656. image: {
  62657. source: "./media/characters/maki-kawa/front.svg",
  62658. extra: 950/890,
  62659. bottom: 62/1012
  62660. }
  62661. },
  62662. back: {
  62663. height: math.unit(6 + 2/12, "feet"),
  62664. weight: math.unit(203, "lb"),
  62665. name: "Back",
  62666. image: {
  62667. source: "./media/characters/maki-kawa/back.svg",
  62668. extra: 953/878,
  62669. bottom: 49/1002
  62670. }
  62671. },
  62672. frontBarista: {
  62673. height: math.unit(6 + 2/12, "feet"),
  62674. weight: math.unit(203, "lb"),
  62675. name: "Front (Barista)",
  62676. image: {
  62677. source: "./media/characters/maki-kawa/front-barista.svg",
  62678. extra: 943/883,
  62679. bottom: 69/1012
  62680. }
  62681. },
  62682. backBarista: {
  62683. height: math.unit(6 + 2/12, "feet"),
  62684. weight: math.unit(203, "lb"),
  62685. name: "Back (Barista)",
  62686. image: {
  62687. source: "./media/characters/maki-kawa/back-barista.svg",
  62688. extra: 953/878,
  62689. bottom: 49/1002
  62690. }
  62691. },
  62692. frontWrestler: {
  62693. height: math.unit(6 + 2/12, "feet"),
  62694. weight: math.unit(203, "lb"),
  62695. name: "Front (Wrestler)",
  62696. image: {
  62697. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62698. extra: 950/890,
  62699. bottom: 62/1012
  62700. }
  62701. },
  62702. backWrestler: {
  62703. height: math.unit(6 + 2/12, "feet"),
  62704. weight: math.unit(203, "lb"),
  62705. name: "Back (Wrestler)",
  62706. image: {
  62707. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62708. extra: 953/878,
  62709. bottom: 49/1002
  62710. }
  62711. },
  62712. headFront: {
  62713. height: math.unit(1.64, "feet"),
  62714. name: "Head (Front)",
  62715. image: {
  62716. source: "./media/characters/maki-kawa/head-front.svg"
  62717. }
  62718. },
  62719. headSide: {
  62720. height: math.unit(1.59, "feet"),
  62721. name: "Head (Side)",
  62722. image: {
  62723. source: "./media/characters/maki-kawa/head-side.svg"
  62724. }
  62725. },
  62726. paw: {
  62727. height: math.unit(0.9, "feet"),
  62728. name: "Paw",
  62729. image: {
  62730. source: "./media/characters/maki-kawa/paw.svg"
  62731. }
  62732. },
  62733. },
  62734. [
  62735. {
  62736. name: "Normal",
  62737. height: math.unit(6 + 2/12, "feet"),
  62738. default: true
  62739. },
  62740. {
  62741. name: "Macro",
  62742. height: math.unit(617, "feet")
  62743. },
  62744. ]
  62745. ))
  62746. characterMakers.push(() => makeCharacter(
  62747. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62748. {
  62749. front: {
  62750. height: math.unit(10, "feet"),
  62751. weight: math.unit(1500, "lb"),
  62752. name: "Front",
  62753. image: {
  62754. source: "./media/characters/lennox/front.svg",
  62755. extra: 1623/1496,
  62756. bottom: 18/1641
  62757. }
  62758. },
  62759. back: {
  62760. height: math.unit(10, "feet"),
  62761. weight: math.unit(1500, "lb"),
  62762. name: "Back",
  62763. image: {
  62764. source: "./media/characters/lennox/back.svg",
  62765. extra: 1641/1481,
  62766. bottom: 13/1654
  62767. }
  62768. },
  62769. maw: {
  62770. height: math.unit(2.94, "feet"),
  62771. name: "Maw",
  62772. image: {
  62773. source: "./media/characters/lennox/maw.svg"
  62774. }
  62775. },
  62776. },
  62777. [
  62778. {
  62779. name: "Micro",
  62780. height: math.unit(1, "inch")
  62781. },
  62782. {
  62783. name: "Normal",
  62784. height: math.unit(10, "feet"),
  62785. default: true
  62786. },
  62787. {
  62788. name: "Macro",
  62789. height: math.unit(200, "feet")
  62790. },
  62791. ]
  62792. ))
  62793. characterMakers.push(() => makeCharacter(
  62794. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62795. {
  62796. frontDressed: {
  62797. height: math.unit(15 + 7/12, "feet"),
  62798. weight: math.unit(5000, "lb"),
  62799. name: "Front (Dressed)",
  62800. image: {
  62801. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62802. extra: 1136/1023,
  62803. bottom: 51/1187
  62804. }
  62805. },
  62806. backDressed: {
  62807. height: math.unit(15 + 7/12, "feet"),
  62808. weight: math.unit(5000, "lb"),
  62809. name: "Back (Dressed)",
  62810. image: {
  62811. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62812. extra: 2359/2143,
  62813. bottom: 103/2462
  62814. }
  62815. },
  62816. front: {
  62817. height: math.unit(15 + 7/12, "feet"),
  62818. weight: math.unit(5000, "lb"),
  62819. name: "Front",
  62820. image: {
  62821. source: "./media/characters/vyse-iron-thunder/front.svg",
  62822. extra: 1136/1023,
  62823. bottom: 51/1187
  62824. }
  62825. },
  62826. hand: {
  62827. height: math.unit(2.36, "feet"),
  62828. name: "Hand",
  62829. image: {
  62830. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62831. }
  62832. },
  62833. foot: {
  62834. height: math.unit(1.72, "feet"),
  62835. name: "Foot",
  62836. image: {
  62837. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62838. }
  62839. },
  62840. mouth: {
  62841. height: math.unit(2, "feet"),
  62842. name: "Mouth",
  62843. image: {
  62844. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62845. }
  62846. },
  62847. eye: {
  62848. height: math.unit(0.58, "feet"),
  62849. name: "Eye",
  62850. image: {
  62851. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62852. }
  62853. },
  62854. },
  62855. [
  62856. {
  62857. name: "Normal",
  62858. height: math.unit(15 + 7/12, "feet"),
  62859. default: true
  62860. },
  62861. {
  62862. name: "Macro",
  62863. height: math.unit(157, "feet")
  62864. },
  62865. {
  62866. name: "Macro+",
  62867. height: math.unit(1570, "feet")
  62868. },
  62869. {
  62870. name: "Macro++",
  62871. height: math.unit(15700, "feet")
  62872. },
  62873. {
  62874. name: "Macro+++",
  62875. height: math.unit(157000, "feet")
  62876. },
  62877. {
  62878. name: "Macro++++",
  62879. height: math.unit(1570000, "feet")
  62880. },
  62881. ]
  62882. ))
  62883. characterMakers.push(() => makeCharacter(
  62884. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62885. {
  62886. side: {
  62887. height: math.unit(6, "feet"),
  62888. weight: math.unit(115, "lb"),
  62889. name: "Side",
  62890. image: {
  62891. source: "./media/characters/moonbeam/side.svg",
  62892. extra: 839/485,
  62893. bottom: 60/899
  62894. }
  62895. },
  62896. },
  62897. [
  62898. {
  62899. name: "Normal",
  62900. height: math.unit(6, "feet"),
  62901. default: true
  62902. },
  62903. ]
  62904. ))
  62905. characterMakers.push(() => makeCharacter(
  62906. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62907. {
  62908. front: {
  62909. height: math.unit(3500, "miles"),
  62910. weight: math.unit(1659, "petatonnes"),
  62911. name: "Front",
  62912. image: {
  62913. source: "./media/characters/baltica/front.svg",
  62914. extra: 429/428,
  62915. bottom: 41/470
  62916. }
  62917. },
  62918. back: {
  62919. height: math.unit(3500, "miles"),
  62920. weight: math.unit(1659, "petatonnes"),
  62921. name: "Back",
  62922. image: {
  62923. source: "./media/characters/baltica/back.svg",
  62924. extra: 452/451,
  62925. bottom: 8/460
  62926. }
  62927. },
  62928. },
  62929. [
  62930. {
  62931. name: "Gigamacro",
  62932. height: math.unit(3500, "miles"),
  62933. default: true
  62934. },
  62935. ]
  62936. ))
  62937. characterMakers.push(() => makeCharacter(
  62938. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62939. {
  62940. front: {
  62941. height: math.unit(6 + 10/12, "feet"),
  62942. weight: math.unit(200, "lb"),
  62943. name: "Front",
  62944. image: {
  62945. source: "./media/characters/shadow-wolf/front.svg",
  62946. extra: 1931/1760,
  62947. bottom: 88/2019
  62948. }
  62949. },
  62950. },
  62951. [
  62952. {
  62953. name: "Normal",
  62954. height: math.unit(6 + 10/12, "feet"),
  62955. default: true
  62956. },
  62957. ]
  62958. ))
  62959. characterMakers.push(() => makeCharacter(
  62960. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62961. {
  62962. front: {
  62963. height: math.unit(5 + 10/12, "feet"),
  62964. name: "Front",
  62965. image: {
  62966. source: "./media/characters/quincy-praying-mantis/front.svg",
  62967. extra: 1055/891,
  62968. bottom: 92/1147
  62969. }
  62970. },
  62971. soles: {
  62972. height: math.unit(0.85, "feet"),
  62973. name: "Soles",
  62974. image: {
  62975. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62976. extra: 429/324,
  62977. bottom: 89/518
  62978. },
  62979. extraAttributes: {
  62980. "shoeSize": {
  62981. name: "Shoe Size",
  62982. power: 1,
  62983. type: "length",
  62984. base: math.unit(23, "ShoeSizeMensUS"),
  62985. defaultUnit: "ShoeSizeMensUS"
  62986. },
  62987. }
  62988. },
  62989. foot: {
  62990. height: math.unit(0.72, "feet"),
  62991. name: "Foot",
  62992. image: {
  62993. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62994. extra: 349/349,
  62995. bottom: 76/425
  62996. }
  62997. },
  62998. },
  62999. [
  63000. {
  63001. name: "Normal",
  63002. height: math.unit(5 + 10/12, "feet"),
  63003. default: true
  63004. },
  63005. ]
  63006. ))
  63007. characterMakers.push(() => makeCharacter(
  63008. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63009. {
  63010. front: {
  63011. height: math.unit(6, "feet"),
  63012. name: "Front",
  63013. image: {
  63014. source: "./media/characters/christopher-redwood/front.svg",
  63015. extra: 1402/1341,
  63016. bottom: 23/1425
  63017. }
  63018. },
  63019. back: {
  63020. height: math.unit(6, "feet"),
  63021. name: "Back",
  63022. image: {
  63023. source: "./media/characters/christopher-redwood/back.svg",
  63024. extra: 1406/1345,
  63025. bottom: 36/1442
  63026. }
  63027. },
  63028. head: {
  63029. height: math.unit(1.685, "feet"),
  63030. name: "Head",
  63031. image: {
  63032. source: "./media/characters/christopher-redwood/head.svg"
  63033. }
  63034. },
  63035. },
  63036. [
  63037. {
  63038. name: "Normal",
  63039. height: math.unit(6, "feet"),
  63040. default: true
  63041. },
  63042. ]
  63043. ))
  63044. characterMakers.push(() => makeCharacter(
  63045. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63046. {
  63047. front: {
  63048. height: math.unit(1.9, "meters"),
  63049. weight: math.unit(140, "lb"),
  63050. name: "Front",
  63051. image: {
  63052. source: "./media/characters/kara-fox/front.svg",
  63053. extra: 766/711,
  63054. bottom: 41/807
  63055. }
  63056. },
  63057. back: {
  63058. height: math.unit(1.9, "meters"),
  63059. weight: math.unit(140, "lb"),
  63060. name: "Back",
  63061. image: {
  63062. source: "./media/characters/kara-fox/back.svg",
  63063. extra: 766/596,
  63064. bottom: 29/795
  63065. }
  63066. },
  63067. maw: {
  63068. height: math.unit(0.78, "feet"),
  63069. name: "Maw",
  63070. image: {
  63071. source: "./media/characters/kara-fox/maw.svg"
  63072. }
  63073. },
  63074. pawpads: {
  63075. height: math.unit(0.96, "feet"),
  63076. name: "Pawpads",
  63077. image: {
  63078. source: "./media/characters/kara-fox/pawpads.svg"
  63079. }
  63080. },
  63081. },
  63082. [
  63083. {
  63084. name: "Normal",
  63085. height: math.unit(1.9, "meters"),
  63086. default: true
  63087. },
  63088. {
  63089. name: "Giantess",
  63090. height: math.unit(80, "meters")
  63091. },
  63092. ]
  63093. ))
  63094. characterMakers.push(() => makeCharacter(
  63095. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63096. {
  63097. front: {
  63098. height: math.unit(12, "feet"),
  63099. name: "Front",
  63100. image: {
  63101. source: "./media/characters/naomi-espeon/front.svg",
  63102. extra: 892/797,
  63103. bottom: 5/897
  63104. }
  63105. },
  63106. back: {
  63107. height: math.unit(12, "feet"),
  63108. name: "Back",
  63109. image: {
  63110. source: "./media/characters/naomi-espeon/back.svg",
  63111. extra: 890/785,
  63112. bottom: 12/902
  63113. }
  63114. },
  63115. },
  63116. [
  63117. {
  63118. name: "Normal",
  63119. height: math.unit(12, "feet"),
  63120. default: true
  63121. },
  63122. ]
  63123. ))
  63124. characterMakers.push(() => makeCharacter(
  63125. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63126. {
  63127. anthro_front: {
  63128. height: math.unit(8, "feet"),
  63129. weight: math.unit(625, "lb"),
  63130. name: "Front",
  63131. image: {
  63132. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63133. extra: 638/574,
  63134. bottom: 73/711
  63135. },
  63136. form: "anthro",
  63137. default: true
  63138. },
  63139. anthro_back: {
  63140. height: math.unit(8, "feet"),
  63141. weight: math.unit(625, "lb"),
  63142. name: "Back",
  63143. image: {
  63144. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63145. extra: 674/614,
  63146. bottom: 7/681
  63147. },
  63148. form: "anthro",
  63149. },
  63150. taur_side: {
  63151. height: math.unit(16, "feet"),
  63152. weight: math.unit(4.5, "tons"),
  63153. name: "Side",
  63154. image: {
  63155. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63156. extra: 704/646,
  63157. bottom: 132/836
  63158. },
  63159. form: "taur",
  63160. default: true
  63161. },
  63162. },
  63163. [
  63164. {
  63165. name: "Normal",
  63166. height: math.unit(8, "feet"),
  63167. default: true,
  63168. form: "anthro"
  63169. },
  63170. {
  63171. name: "Normal",
  63172. height: math.unit(16, "feet"),
  63173. default: true,
  63174. form: "taur"
  63175. },
  63176. ],
  63177. {
  63178. "anthro": {
  63179. name: "Anthro",
  63180. default: true
  63181. },
  63182. "taur": {
  63183. name: "Taur",
  63184. },
  63185. }
  63186. ))
  63187. characterMakers.push(() => makeCharacter(
  63188. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63189. {
  63190. front: {
  63191. height: math.unit(190, "cm"),
  63192. weight: math.unit(110, "kg"),
  63193. name: "Front",
  63194. image: {
  63195. source: "./media/characters/amelie/front.svg",
  63196. extra: 530/442,
  63197. bottom: 35/565
  63198. }
  63199. },
  63200. },
  63201. [
  63202. {
  63203. name: "Normal",
  63204. height: math.unit(190, "cm"),
  63205. default: true
  63206. },
  63207. ]
  63208. ))
  63209. characterMakers.push(() => makeCharacter(
  63210. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63211. {
  63212. front: {
  63213. height: math.unit(21, "feet"),
  63214. weight: math.unit(30000, "lb"),
  63215. name: "Front",
  63216. image: {
  63217. source: "./media/characters/valence/front.svg",
  63218. extra: 1430/1306,
  63219. bottom: 51/1481
  63220. }
  63221. },
  63222. },
  63223. [
  63224. {
  63225. name: "Normal",
  63226. height: math.unit(21, "feet"),
  63227. default: true
  63228. },
  63229. ]
  63230. ))
  63231. characterMakers.push(() => makeCharacter(
  63232. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63233. {
  63234. front: {
  63235. height: math.unit(5 + 9/12, "feet"),
  63236. weight: math.unit(170, "lb"),
  63237. name: "Front",
  63238. image: {
  63239. source: "./media/characters/aurora-adkins/front.svg",
  63240. extra: 1141/1089,
  63241. bottom: 41/1182
  63242. }
  63243. },
  63244. },
  63245. [
  63246. {
  63247. name: "Tiny",
  63248. height: math.unit(7, "mm")
  63249. },
  63250. {
  63251. name: "Small",
  63252. height: math.unit(3.4, "inches")
  63253. },
  63254. {
  63255. name: "Normal",
  63256. height: math.unit(5 + 9/12, "feet"),
  63257. default: true
  63258. },
  63259. {
  63260. name: "Big",
  63261. height: math.unit(31, "feet")
  63262. },
  63263. {
  63264. name: "Giant",
  63265. height: math.unit(300, "feet")
  63266. },
  63267. ]
  63268. ))
  63269. characterMakers.push(() => makeCharacter(
  63270. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63271. {
  63272. front: {
  63273. height: math.unit(5 + 6/12, "feet"),
  63274. weight: math.unit(210, "lb"),
  63275. name: "Front",
  63276. image: {
  63277. source: "./media/characters/cyber/front.svg",
  63278. extra: 1968/1798,
  63279. bottom: 10/1978
  63280. },
  63281. extraAttributes: {
  63282. "shoeSize": {
  63283. name: "Shoe Size",
  63284. power: 1,
  63285. type: "length",
  63286. base: math.unit(30, "ShoeSizeMensUS")
  63287. },
  63288. }
  63289. },
  63290. },
  63291. [
  63292. {
  63293. name: "Normal",
  63294. height: math.unit(5 + 6/12, "feet"),
  63295. default: true
  63296. },
  63297. ]
  63298. ))
  63299. characterMakers.push(() => makeCharacter(
  63300. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63301. {
  63302. front: {
  63303. height: math.unit(6 + 6/12, "feet"),
  63304. weight: math.unit(140, "lb"),
  63305. name: "Front",
  63306. image: {
  63307. source: "./media/characters/sapphire-wairimea/front.svg",
  63308. extra: 475/458,
  63309. bottom: 14/489
  63310. }
  63311. },
  63312. },
  63313. [
  63314. {
  63315. name: "Normal",
  63316. height: math.unit(6 + 6/12, "feet")
  63317. },
  63318. {
  63319. name: "Macro",
  63320. height: math.unit(132, "feet"),
  63321. default: true
  63322. },
  63323. ]
  63324. ))
  63325. characterMakers.push(() => makeCharacter(
  63326. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63327. {
  63328. front: {
  63329. height: math.unit(1.6, "meters"),
  63330. weight: math.unit(100, "lb"),
  63331. name: "Front",
  63332. image: {
  63333. source: "./media/characters/cirkazi/front.svg",
  63334. extra: 489/477,
  63335. bottom: 0/489
  63336. }
  63337. },
  63338. },
  63339. [
  63340. {
  63341. name: "Normal",
  63342. height: math.unit(1.6, "meters")
  63343. },
  63344. {
  63345. name: "Macro",
  63346. height: math.unit(800, "feet"),
  63347. default: true
  63348. },
  63349. ]
  63350. ))
  63351. characterMakers.push(() => makeCharacter(
  63352. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63353. {
  63354. front: {
  63355. height: math.unit(5 + 10/12, "feet"),
  63356. weight: math.unit(145, "lb"),
  63357. name: "Front",
  63358. image: {
  63359. source: "./media/characters/corrin-cavelli/front.svg",
  63360. extra: 483/464,
  63361. bottom: 6/489
  63362. }
  63363. },
  63364. },
  63365. [
  63366. {
  63367. name: "Human",
  63368. height: math.unit(5 + 10/12, "feet")
  63369. },
  63370. {
  63371. name: "Giant",
  63372. height: math.unit(210, "feet"),
  63373. default: true
  63374. },
  63375. ]
  63376. ))
  63377. characterMakers.push(() => makeCharacter(
  63378. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63379. {
  63380. back: {
  63381. height: math.unit(5 + 6/12, "feet"),
  63382. weight: math.unit(115, "lb"),
  63383. name: "Back",
  63384. image: {
  63385. source: "./media/characters/lori-lopez/back.svg",
  63386. extra: 483/474,
  63387. bottom: 6/489
  63388. }
  63389. },
  63390. },
  63391. [
  63392. {
  63393. name: "Human",
  63394. height: math.unit(5 + 6/12, "feet")
  63395. },
  63396. {
  63397. name: "Macro",
  63398. height: math.unit(198, "feet"),
  63399. default: true
  63400. },
  63401. ]
  63402. ))
  63403. characterMakers.push(() => makeCharacter(
  63404. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63405. {
  63406. front: {
  63407. height: math.unit(6, "feet"),
  63408. weight: math.unit(220, "lb"),
  63409. name: "Front",
  63410. image: {
  63411. source: "./media/characters/sylvia-beauregard/front.svg",
  63412. extra: 483/479,
  63413. bottom: 6/489
  63414. }
  63415. },
  63416. },
  63417. [
  63418. {
  63419. name: "Macro",
  63420. height: math.unit(2071, "feet"),
  63421. default: true
  63422. },
  63423. ]
  63424. ))
  63425. characterMakers.push(() => makeCharacter(
  63426. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63427. {
  63428. back: {
  63429. height: math.unit(5 + 6/12, "feet"),
  63430. weight: math.unit(160, "lb"),
  63431. name: "Back",
  63432. image: {
  63433. source: "./media/characters/akiko-takahashi/back.svg",
  63434. extra: 459/454,
  63435. bottom: 27/486
  63436. }
  63437. },
  63438. },
  63439. [
  63440. {
  63441. name: "Human",
  63442. height: math.unit(5 + 6/12, "feet")
  63443. },
  63444. {
  63445. name: "Macro",
  63446. height: math.unit(198, "feet"),
  63447. default: true
  63448. },
  63449. {
  63450. name: "Megamacro",
  63451. height: math.unit(7128, "feet")
  63452. },
  63453. ]
  63454. ))
  63455. characterMakers.push(() => makeCharacter(
  63456. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63457. {
  63458. front: {
  63459. height: math.unit(6, "feet"),
  63460. weight: math.unit(140, "lb"),
  63461. name: "Front",
  63462. image: {
  63463. source: "./media/characters/velvet-garza/front.svg",
  63464. extra: 480/462,
  63465. bottom: 7/487
  63466. }
  63467. },
  63468. },
  63469. [
  63470. {
  63471. name: "Macro",
  63472. height: math.unit(37, "feet"),
  63473. default: true
  63474. },
  63475. ]
  63476. ))
  63477. characterMakers.push(() => makeCharacter(
  63478. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63479. {
  63480. front: {
  63481. height: math.unit(7 + 6/12, "feet"),
  63482. weight: math.unit(400, "lb"),
  63483. name: "Front",
  63484. image: {
  63485. source: "./media/characters/gaia/front.svg",
  63486. extra: 474/463,
  63487. bottom: 13/487
  63488. }
  63489. },
  63490. },
  63491. [
  63492. {
  63493. name: "MiniMacro",
  63494. height: math.unit(7 + 6/12, "feet")
  63495. },
  63496. {
  63497. name: "GigaMacro",
  63498. height: math.unit(14500, "feet"),
  63499. default: true
  63500. },
  63501. ]
  63502. ))
  63503. characterMakers.push(() => makeCharacter(
  63504. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63505. {
  63506. front: {
  63507. height: math.unit(6, "feet"),
  63508. weight: math.unit(150, "lb"),
  63509. name: "Front",
  63510. image: {
  63511. source: "./media/characters/tim/front.svg",
  63512. extra: 1878/1743,
  63513. bottom: 9/1887
  63514. }
  63515. },
  63516. frontDressed: {
  63517. height: math.unit(6, "feet"),
  63518. weight: math.unit(150, "lb"),
  63519. name: "Front (Dressed)",
  63520. image: {
  63521. source: "./media/characters/tim/front-dressed.svg",
  63522. extra: 1765/1485,
  63523. bottom: 48/1813
  63524. }
  63525. },
  63526. backDressed: {
  63527. height: math.unit(6, "feet"),
  63528. weight: math.unit(150, "lb"),
  63529. name: "Back (Dressed)",
  63530. image: {
  63531. source: "./media/characters/tim/back-dressed.svg",
  63532. extra: 1750/1465,
  63533. bottom: 25/1775
  63534. }
  63535. },
  63536. dick: {
  63537. height: math.unit(1.5, "feet"),
  63538. weight: math.unit(6, "lb"),
  63539. name: "Dick",
  63540. image: {
  63541. source: "./media/characters/tim/dick.svg"
  63542. }
  63543. },
  63544. hand: {
  63545. height: math.unit(0.522, "feet"),
  63546. name: "Hand",
  63547. image: {
  63548. source: "./media/characters/tim/hand.svg"
  63549. }
  63550. },
  63551. palm: {
  63552. height: math.unit(0.48, "feet"),
  63553. name: "Palm",
  63554. image: {
  63555. source: "./media/characters/tim/palm.svg"
  63556. }
  63557. },
  63558. paw: {
  63559. height: math.unit(0.9, "feet"),
  63560. name: "Paw",
  63561. image: {
  63562. source: "./media/characters/tim/paw.svg"
  63563. }
  63564. },
  63565. sole: {
  63566. height: math.unit(0.88, "feet"),
  63567. name: "Sole",
  63568. image: {
  63569. source: "./media/characters/tim/sole.svg"
  63570. }
  63571. },
  63572. },
  63573. [
  63574. {
  63575. name: "Macro",
  63576. height: math.unit(1000, "feet")
  63577. },
  63578. {
  63579. name: "Megamacro",
  63580. height: math.unit(10000, "feet"),
  63581. default: true
  63582. },
  63583. {
  63584. name: "Megamacro+",
  63585. height: math.unit(50000, "feet")
  63586. },
  63587. {
  63588. name: "Gigamacro",
  63589. height: math.unit(150000, "km")
  63590. },
  63591. ]
  63592. ))
  63593. characterMakers.push(() => makeCharacter(
  63594. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63595. {
  63596. front: {
  63597. height: math.unit(5 + 8/12, "feet"),
  63598. weight: math.unit(170, "lb"),
  63599. name: "Front",
  63600. image: {
  63601. source: "./media/characters/abel-delreoux/front.svg",
  63602. extra: 1615/1500,
  63603. bottom: 82/1697
  63604. }
  63605. },
  63606. back: {
  63607. height: math.unit(5 + 8/12, "feet"),
  63608. weight: math.unit(170, "lb"),
  63609. name: "Back",
  63610. image: {
  63611. source: "./media/characters/abel-delreoux/back.svg",
  63612. extra: 1644/1534,
  63613. bottom: 24/1668
  63614. }
  63615. },
  63616. casual: {
  63617. height: math.unit(5 + 8/12, "feet"),
  63618. weight: math.unit(170, "lb"),
  63619. name: "Casual",
  63620. image: {
  63621. source: "./media/characters/abel-delreoux/casual.svg",
  63622. extra: 1716/1598,
  63623. bottom: 29/1745
  63624. }
  63625. },
  63626. sleepy: {
  63627. height: math.unit(5 + 8/12, "feet"),
  63628. weight: math.unit(170, "lb"),
  63629. name: "Sleepy",
  63630. image: {
  63631. source: "./media/characters/abel-delreoux/sleepy.svg",
  63632. extra: 1649/1573,
  63633. bottom: 22/1671
  63634. }
  63635. },
  63636. fem: {
  63637. height: math.unit(5 + 8/12, "feet"),
  63638. weight: math.unit(170, "lb"),
  63639. name: "Fem",
  63640. image: {
  63641. source: "./media/characters/abel-delreoux/fem.svg",
  63642. extra: 1680/1564,
  63643. bottom: 17/1697
  63644. }
  63645. },
  63646. hand: {
  63647. height: math.unit(0.78, "feet"),
  63648. name: "Hand",
  63649. image: {
  63650. source: "./media/characters/abel-delreoux/hand.svg"
  63651. }
  63652. },
  63653. paw: {
  63654. height: math.unit(0.78, "feet"),
  63655. name: "Paw",
  63656. image: {
  63657. source: "./media/characters/abel-delreoux/paw.svg"
  63658. }
  63659. },
  63660. },
  63661. [
  63662. {
  63663. name: "Normal",
  63664. height: math.unit(5 + 8/12, "feet"),
  63665. default: true
  63666. },
  63667. ]
  63668. ))
  63669. characterMakers.push(() => makeCharacter(
  63670. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63671. {
  63672. front: {
  63673. height: math.unit(6, "feet"),
  63674. weight: math.unit(159, "lb"),
  63675. name: "Front",
  63676. image: {
  63677. source: "./media/characters/meus/front.svg",
  63678. extra: 938/843,
  63679. bottom: 37/975
  63680. }
  63681. },
  63682. back: {
  63683. height: math.unit(6, "feet"),
  63684. weight: math.unit(159, "lb"),
  63685. name: "Back",
  63686. image: {
  63687. source: "./media/characters/meus/back.svg",
  63688. extra: 967/873,
  63689. bottom: 12/979
  63690. }
  63691. },
  63692. },
  63693. [
  63694. {
  63695. name: "Micro",
  63696. height: math.unit(2, "inches")
  63697. },
  63698. {
  63699. name: "Mini",
  63700. height: math.unit(6, "inches")
  63701. },
  63702. {
  63703. name: "Normal",
  63704. height: math.unit(6, "feet"),
  63705. default: true
  63706. },
  63707. {
  63708. name: "Macro",
  63709. height: math.unit(84, "feet")
  63710. },
  63711. ]
  63712. ))
  63713. characterMakers.push(() => makeCharacter(
  63714. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63715. {
  63716. front: {
  63717. height: math.unit(60, "cm"),
  63718. weight: math.unit(18, "kg"),
  63719. name: "Front",
  63720. image: {
  63721. source: "./media/characters/yamato/front.svg",
  63722. extra: 733/688,
  63723. bottom: 29/762
  63724. }
  63725. },
  63726. },
  63727. [
  63728. {
  63729. name: "Micro",
  63730. height: math.unit(6, "cm")
  63731. },
  63732. {
  63733. name: "Normal",
  63734. height: math.unit(60, "cm"),
  63735. default: true
  63736. },
  63737. ]
  63738. ))
  63739. characterMakers.push(() => makeCharacter(
  63740. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63741. {
  63742. front: {
  63743. height: math.unit(9, "feet"),
  63744. weight: math.unit(518, "lb"),
  63745. name: "Front",
  63746. image: {
  63747. source: "./media/characters/barus/front.svg",
  63748. extra: 1877/1795,
  63749. bottom: 55/1932
  63750. }
  63751. },
  63752. },
  63753. [
  63754. {
  63755. name: "Base Height",
  63756. height: math.unit(9, "feet"),
  63757. default: true
  63758. },
  63759. {
  63760. name: "Large",
  63761. height: math.unit(18, "feet")
  63762. },
  63763. {
  63764. name: "Giant",
  63765. height: math.unit(100, "feet")
  63766. },
  63767. {
  63768. name: "Huge",
  63769. height: math.unit(500, "feet")
  63770. },
  63771. {
  63772. name: "Enormous",
  63773. height: math.unit(300, "meters")
  63774. },
  63775. {
  63776. name: "Deity Among Man",
  63777. height: math.unit(3000, "meters")
  63778. },
  63779. ]
  63780. ))
  63781. characterMakers.push(() => makeCharacter(
  63782. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63783. {
  63784. front: {
  63785. height: math.unit(1.7, "meters"),
  63786. name: "Front",
  63787. image: {
  63788. source: "./media/characters/yari/front.svg",
  63789. extra: 1210/1125,
  63790. bottom: 283/1493
  63791. }
  63792. },
  63793. back: {
  63794. height: math.unit(1.7, "meters"),
  63795. name: "Back",
  63796. image: {
  63797. source: "./media/characters/yari/back.svg",
  63798. extra: 1240/1195,
  63799. bottom: 180/1420
  63800. }
  63801. },
  63802. head: {
  63803. height: math.unit(1.26, "feet"),
  63804. name: "Head",
  63805. image: {
  63806. source: "./media/characters/yari/head.svg"
  63807. }
  63808. },
  63809. },
  63810. [
  63811. {
  63812. name: "Nano",
  63813. height: math.unit(0.5, "mm")
  63814. },
  63815. {
  63816. name: "Micro",
  63817. height: math.unit(3, "inches")
  63818. },
  63819. {
  63820. name: "Short",
  63821. height: math.unit(1.5, "meters")
  63822. },
  63823. {
  63824. name: "Norm",
  63825. height: math.unit(1.7, "meters"),
  63826. default: true
  63827. },
  63828. ]
  63829. ))
  63830. characterMakers.push(() => makeCharacter(
  63831. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63832. {
  63833. front: {
  63834. height: math.unit(5 + 2/12, "feet"),
  63835. weight: math.unit(110, "lb"),
  63836. name: "Front",
  63837. image: {
  63838. source: "./media/characters/salem/front.svg",
  63839. extra: 1895/1800,
  63840. bottom: 23/1918
  63841. }
  63842. },
  63843. back: {
  63844. height: math.unit(5 + 2/12, "feet"),
  63845. weight: math.unit(110, "lb"),
  63846. name: "Back",
  63847. image: {
  63848. source: "./media/characters/salem/back.svg",
  63849. extra: 1875/1802,
  63850. bottom: 20/1895
  63851. }
  63852. },
  63853. head: {
  63854. height: math.unit(1, "feet"),
  63855. name: "Head",
  63856. image: {
  63857. source: "./media/characters/salem/head.svg"
  63858. }
  63859. },
  63860. paw: {
  63861. height: math.unit(0.59, "feet"),
  63862. name: "Paw",
  63863. image: {
  63864. source: "./media/characters/salem/paw.svg"
  63865. }
  63866. },
  63867. beans: {
  63868. height: math.unit(0.66, "feet"),
  63869. name: "Beans",
  63870. image: {
  63871. source: "./media/characters/salem/beans.svg"
  63872. }
  63873. },
  63874. eye: {
  63875. height: math.unit(0.224, "feet"),
  63876. name: "Eye",
  63877. image: {
  63878. source: "./media/characters/salem/eye.svg"
  63879. }
  63880. },
  63881. semiferal: {
  63882. height: math.unit(2.3, "feet"),
  63883. name: "Semiferal",
  63884. image: {
  63885. source: "./media/characters/salem/semiferal.svg",
  63886. extra: 914/839,
  63887. bottom: 32/946
  63888. }
  63889. },
  63890. },
  63891. [
  63892. {
  63893. name: "Micro",
  63894. height: math.unit(4, "inches")
  63895. },
  63896. {
  63897. name: "Normal",
  63898. height: math.unit(5 + 2/12, "feet"),
  63899. default: true
  63900. },
  63901. {
  63902. name: "Macro",
  63903. height: math.unit(108, "feet")
  63904. },
  63905. {
  63906. name: "Macro+",
  63907. height: math.unit(1500, "feet")
  63908. },
  63909. ]
  63910. ))
  63911. characterMakers.push(() => makeCharacter(
  63912. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63913. {
  63914. front: {
  63915. height: math.unit(7 + 6/12, "feet"),
  63916. weight: math.unit(600, "kg"),
  63917. preyCapacity: math.unit(10, "people"),
  63918. name: "Front",
  63919. image: {
  63920. source: "./media/characters/kii/front.svg",
  63921. extra: 3296/3087,
  63922. bottom: 130/3426
  63923. }
  63924. },
  63925. },
  63926. [
  63927. {
  63928. name: "Normal",
  63929. height: math.unit(7 + 6/12, "feet"),
  63930. default: true
  63931. },
  63932. ]
  63933. ))
  63934. characterMakers.push(() => makeCharacter(
  63935. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63936. {
  63937. front: {
  63938. height: math.unit(2, "meters"),
  63939. weight: math.unit(200, "lb"),
  63940. name: "Front",
  63941. image: {
  63942. source: "./media/characters/taffy/front.svg",
  63943. extra: 1666/1618,
  63944. bottom: 157/1823
  63945. }
  63946. },
  63947. back: {
  63948. height: math.unit(2, "meters"),
  63949. weight: math.unit(200, "lb"),
  63950. name: "Back",
  63951. image: {
  63952. source: "./media/characters/taffy/back.svg",
  63953. extra: 1635/1583,
  63954. bottom: 153/1788
  63955. }
  63956. },
  63957. },
  63958. [
  63959. {
  63960. name: "Normal",
  63961. height: math.unit(2, "meters"),
  63962. default: true
  63963. },
  63964. ]
  63965. ))
  63966. characterMakers.push(() => makeCharacter(
  63967. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63968. {
  63969. front: {
  63970. height: math.unit(1.55, "meters"),
  63971. weight: math.unit(60, "kg"),
  63972. name: "Front",
  63973. image: {
  63974. source: "./media/characters/barley/front.svg",
  63975. extra: 1520/1340,
  63976. bottom: 47/1567
  63977. }
  63978. },
  63979. back: {
  63980. height: math.unit(1.55, "meters"),
  63981. weight: math.unit(60, "kg"),
  63982. name: "Back",
  63983. image: {
  63984. source: "./media/characters/barley/back.svg",
  63985. extra: 1543/1341,
  63986. bottom: 12/1555
  63987. }
  63988. },
  63989. feet: {
  63990. height: math.unit(2.18, "feet"),
  63991. name: "Feet",
  63992. image: {
  63993. source: "./media/characters/barley/feet.svg"
  63994. }
  63995. },
  63996. },
  63997. [
  63998. {
  63999. name: "Normal",
  64000. height: math.unit(1.55, "meters"),
  64001. default: true
  64002. },
  64003. ]
  64004. ))
  64005. characterMakers.push(() => makeCharacter(
  64006. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64007. {
  64008. dressed: {
  64009. height: math.unit(6, "feet"),
  64010. name: "Dressed",
  64011. image: {
  64012. source: "./media/characters/lydia-lopez/dressed.svg",
  64013. extra: 1319/1277,
  64014. bottom: 90/1409
  64015. }
  64016. },
  64017. nude: {
  64018. height: math.unit(6, "feet"),
  64019. name: "Nude",
  64020. image: {
  64021. source: "./media/characters/lydia-lopez/nude.svg",
  64022. extra: 1319/1277,
  64023. bottom: 90/1409
  64024. }
  64025. },
  64026. },
  64027. [
  64028. {
  64029. name: "Normal",
  64030. height: math.unit(6, "feet"),
  64031. default: true
  64032. },
  64033. {
  64034. name: "Maximum",
  64035. height: math.unit(2101, "feet")
  64036. },
  64037. ]
  64038. ))
  64039. characterMakers.push(() => makeCharacter(
  64040. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64041. {
  64042. front: {
  64043. height: math.unit(5 + 4/12, "feet"),
  64044. weight: math.unit(250, "lb"),
  64045. volume: math.unit(20, "gallons"),
  64046. name: "Front",
  64047. image: {
  64048. source: "./media/characters/kira-slime/front.svg",
  64049. extra: 442/403,
  64050. bottom: 18/460
  64051. }
  64052. },
  64053. frontNsfw: {
  64054. height: math.unit(5 + 4/12, "feet"),
  64055. weight: math.unit(250, "lb"),
  64056. volume: math.unit(20, "gallons"),
  64057. name: "Front (NSFW)",
  64058. image: {
  64059. source: "./media/characters/kira-slime/front-nsfw.svg",
  64060. extra: 442/403,
  64061. bottom: 18/460
  64062. }
  64063. },
  64064. },
  64065. [
  64066. {
  64067. name: "Droplet",
  64068. height: math.unit(0.0464452, "feet")
  64069. },
  64070. {
  64071. name: "Pint",
  64072. height: math.unit(0.9824, "feet")
  64073. },
  64074. {
  64075. name: "Bucket",
  64076. height: math.unit(2.83, "feet")
  64077. },
  64078. {
  64079. name: "Normal",
  64080. height: math.unit(5 + 4/12, "feet"),
  64081. default: true
  64082. },
  64083. {
  64084. name: "Tub",
  64085. height: math.unit(8.46614, "feet")
  64086. },
  64087. {
  64088. name: "Pool",
  64089. height: math.unit(31.1895, "feet")
  64090. },
  64091. {
  64092. name: "Pond",
  64093. height: math.unit(170.349, "feet")
  64094. },
  64095. {
  64096. name: "Lake",
  64097. height: math.unit(289334, "feet")
  64098. },
  64099. {
  64100. name: "Ocean",
  64101. height: math.unit(1.11940e+7, "feet")
  64102. },
  64103. ]
  64104. ))
  64105. characterMakers.push(() => makeCharacter(
  64106. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64107. {
  64108. front: {
  64109. height: math.unit(5 + 6/12, "feet"),
  64110. weight: math.unit(120, "lb"),
  64111. name: "Front",
  64112. image: {
  64113. source: "./media/characters/holiday/front.svg",
  64114. extra: 456/403,
  64115. bottom: 4/460
  64116. }
  64117. },
  64118. back: {
  64119. height: math.unit(5 + 6/12, "feet"),
  64120. weight: math.unit(120, "lb"),
  64121. name: "Back",
  64122. image: {
  64123. source: "./media/characters/holiday/back.svg",
  64124. extra: 450/404,
  64125. bottom: 12/462
  64126. }
  64127. },
  64128. head: {
  64129. height: math.unit(2.3, "feet"),
  64130. name: "Head",
  64131. image: {
  64132. source: "./media/characters/holiday/head.svg"
  64133. }
  64134. },
  64135. },
  64136. [
  64137. {
  64138. name: "Normal",
  64139. height: math.unit(5 + 6/12, "feet"),
  64140. default: true
  64141. },
  64142. {
  64143. name: "Macro",
  64144. height: math.unit(6574.25, "feet")
  64145. },
  64146. ]
  64147. ))
  64148. characterMakers.push(() => makeCharacter(
  64149. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64150. {
  64151. front: {
  64152. height: math.unit(6 + 2/12, "feet"),
  64153. weight: math.unit(200, "lb"),
  64154. name: "Front",
  64155. image: {
  64156. source: "./media/characters/camina/front.svg",
  64157. extra: 1048/985,
  64158. bottom: 30/1078
  64159. }
  64160. },
  64161. },
  64162. [
  64163. {
  64164. name: "Normal",
  64165. height: math.unit(6 + 2/12, "feet"),
  64166. default: true
  64167. },
  64168. ]
  64169. ))
  64170. characterMakers.push(() => makeCharacter(
  64171. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64172. {
  64173. front: {
  64174. height: math.unit(30, "cm"),
  64175. weight: math.unit(420, "grams"),
  64176. name: "Front",
  64177. image: {
  64178. source: "./media/characters/smuck/front.svg",
  64179. extra: 379/345,
  64180. bottom: 36/415
  64181. }
  64182. },
  64183. },
  64184. [
  64185. {
  64186. name: "Smuck-Sized",
  64187. height: math.unit(30, "cm"),
  64188. default: true
  64189. },
  64190. ]
  64191. ))
  64192. characterMakers.push(() => makeCharacter(
  64193. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64194. {
  64195. frontSfw: {
  64196. height: math.unit(10, "feet"),
  64197. weight: math.unit(1000, "kg"),
  64198. preyCapacity: math.unit(2, "people"),
  64199. name: "Front (SFW)",
  64200. image: {
  64201. source: "./media/characters/bylur/front-sfw.svg",
  64202. extra: 419/343,
  64203. bottom: 3/422
  64204. },
  64205. default: true
  64206. },
  64207. frontSheath: {
  64208. height: math.unit(10, "feet"),
  64209. weight: math.unit(1000, "kg"),
  64210. preyCapacity: math.unit(2, "people"),
  64211. name: "Front (Sheath)",
  64212. image: {
  64213. source: "./media/characters/bylur/front-sheath.svg",
  64214. extra: 419/343,
  64215. bottom: 3/422
  64216. }
  64217. },
  64218. frontErect: {
  64219. height: math.unit(10, "feet"),
  64220. weight: math.unit(1000, "kg"),
  64221. preyCapacity: math.unit(2, "people"),
  64222. name: "Front (Erect)",
  64223. image: {
  64224. source: "./media/characters/bylur/front-erect.svg",
  64225. extra: 419/343,
  64226. bottom: 3/422
  64227. }
  64228. },
  64229. back: {
  64230. height: math.unit(10, "feet"),
  64231. weight: math.unit(1000, "kg"),
  64232. preyCapacity: math.unit(2, "people"),
  64233. name: "Back",
  64234. image: {
  64235. source: "./media/characters/bylur/back.svg",
  64236. extra: 392/315,
  64237. bottom: 3/395
  64238. }
  64239. },
  64240. maw: {
  64241. height: math.unit(3.65, "feet"),
  64242. name: "Maw",
  64243. image: {
  64244. source: "./media/characters/bylur/maw.svg"
  64245. }
  64246. },
  64247. },
  64248. [
  64249. {
  64250. name: "Slightly Human Sized",
  64251. height: math.unit(10, "feet")
  64252. },
  64253. {
  64254. name: "Normal",
  64255. height: math.unit(35, "feet"),
  64256. default: true
  64257. },
  64258. {
  64259. name: "Macro",
  64260. height: math.unit(130, "feet")
  64261. },
  64262. ]
  64263. ))
  64264. characterMakers.push(() => makeCharacter(
  64265. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64266. {
  64267. frontNsfw: {
  64268. height: math.unit(6, "feet"),
  64269. weight: math.unit(250, "lb"),
  64270. preyCapacity: math.unit(0.05, "people"),
  64271. name: "Front (NSFW)",
  64272. image: {
  64273. source: "./media/characters/oarven/front-nsfw.svg",
  64274. extra: 1795/1783,
  64275. bottom: 142/1937
  64276. }
  64277. },
  64278. frontSfw: {
  64279. height: math.unit(6, "feet"),
  64280. weight: math.unit(250, "lb"),
  64281. preyCapacity: math.unit(0.05, "people"),
  64282. name: "Front (SFW)",
  64283. image: {
  64284. source: "./media/characters/oarven/front-sfw.svg",
  64285. extra: 1795/1783,
  64286. bottom: 142/1937
  64287. }
  64288. },
  64289. },
  64290. [
  64291. {
  64292. name: "Megamacro",
  64293. height: math.unit(5, "miles"),
  64294. default: true
  64295. },
  64296. {
  64297. name: "Maximum Height",
  64298. height: math.unit(5, "AUs")
  64299. },
  64300. ]
  64301. ))
  64302. characterMakers.push(() => makeCharacter(
  64303. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64304. {
  64305. side: {
  64306. height: math.unit(1065, "meters"),
  64307. weight: math.unit(1e12, "kg"),
  64308. volume: math.unit(3265000000, "m^3"),
  64309. name: "Side",
  64310. image: {
  64311. source: "./media/characters/solidarity/side.svg"
  64312. }
  64313. },
  64314. front: {
  64315. height: math.unit(1065, "meters"),
  64316. weight: math.unit(3265000000000, "kg"),
  64317. volume: math.unit(3265000000, "m^3"),
  64318. name: "Front",
  64319. image: {
  64320. source: "./media/characters/solidarity/front.svg"
  64321. }
  64322. },
  64323. top: {
  64324. height: math.unit(5823, "meters"),
  64325. weight: math.unit(3265000000000, "kg"),
  64326. volume: math.unit(3265000000, "m^3"),
  64327. name: "Top",
  64328. image: {
  64329. source: "./media/characters/solidarity/top.svg"
  64330. }
  64331. },
  64332. },
  64333. [
  64334. {
  64335. name: "Normal",
  64336. height: math.unit(1065, "meters"),
  64337. default: true
  64338. },
  64339. ]
  64340. ))
  64341. characterMakers.push(() => makeCharacter(
  64342. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64343. {
  64344. side: {
  64345. height: math.unit(18 + 4/12, "feet"),
  64346. weight: math.unit(13000, "kg"),
  64347. name: "Side",
  64348. image: {
  64349. source: "./media/characters/ani'szi/side.svg",
  64350. extra: 468/459,
  64351. bottom: 60/528
  64352. }
  64353. },
  64354. head: {
  64355. height: math.unit(4.8, "feet"),
  64356. name: "Head",
  64357. image: {
  64358. source: "./media/characters/ani'szi/head.svg"
  64359. }
  64360. },
  64361. jaws: {
  64362. height: math.unit(2.25, "feet"),
  64363. name: "Jaws",
  64364. image: {
  64365. source: "./media/characters/ani'szi/jaws.svg"
  64366. }
  64367. },
  64368. bust: {
  64369. height: math.unit(8.9, "feet"),
  64370. name: "Bust",
  64371. image: {
  64372. source: "./media/characters/ani'szi/bust.svg"
  64373. }
  64374. },
  64375. back: {
  64376. height: math.unit(13.53, "feet"),
  64377. name: "Back",
  64378. image: {
  64379. source: "./media/characters/ani'szi/back.svg"
  64380. }
  64381. },
  64382. eye: {
  64383. height: math.unit(0.44, "feet"),
  64384. name: "Eye",
  64385. image: {
  64386. source: "./media/characters/ani'szi/eye.svg"
  64387. }
  64388. },
  64389. },
  64390. [
  64391. {
  64392. name: "Normal",
  64393. height: math.unit(18 + 4/12, "feet"),
  64394. default: true
  64395. },
  64396. ]
  64397. ))
  64398. characterMakers.push(() => makeCharacter(
  64399. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64400. {
  64401. front: {
  64402. height: math.unit(7 + 6/12, "feet"),
  64403. weight: math.unit(300, "lb"),
  64404. name: "Front",
  64405. image: {
  64406. source: "./media/characters/rain/front.svg",
  64407. extra: 2955/2698,
  64408. bottom: 235/3190
  64409. }
  64410. },
  64411. dressed: {
  64412. height: math.unit(7 + 6/12, "feet"),
  64413. weight: math.unit(300, "lb"),
  64414. name: "Dressed",
  64415. image: {
  64416. source: "./media/characters/rain/dressed.svg",
  64417. extra: 2783/2572,
  64418. bottom: 430/3213
  64419. }
  64420. },
  64421. },
  64422. [
  64423. {
  64424. name: "Normal",
  64425. height: math.unit(7 + 6/12, "feet"),
  64426. default: true
  64427. },
  64428. {
  64429. name: "Macro",
  64430. height: math.unit(200, "feet")
  64431. },
  64432. {
  64433. name: "Macro+",
  64434. height: math.unit(500, "feet")
  64435. },
  64436. {
  64437. name: "Megamacro",
  64438. height: math.unit(5, "miles")
  64439. },
  64440. ]
  64441. ))
  64442. characterMakers.push(() => makeCharacter(
  64443. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64444. {
  64445. taur_side: {
  64446. height: math.unit(3, "meters"),
  64447. name: "Side",
  64448. image: {
  64449. source: "./media/characters/anise/taur-side.svg",
  64450. extra: 1833/926,
  64451. bottom: 134/1967
  64452. },
  64453. form: "taur",
  64454. default: true
  64455. },
  64456. feral_side: {
  64457. height: math.unit(3, "meters"),
  64458. name: "Side",
  64459. image: {
  64460. source: "./media/characters/anise/feral-side.svg",
  64461. extra: 681/349,
  64462. bottom: 26/707
  64463. },
  64464. form: "feral"
  64465. },
  64466. },
  64467. [
  64468. {
  64469. name: "Normal",
  64470. height: math.unit(3, "meters"),
  64471. default: true,
  64472. allForms: true
  64473. },
  64474. ],
  64475. {
  64476. "taur": {
  64477. name: "Taur",
  64478. default: true
  64479. },
  64480. "feral": {
  64481. name: "Feral",
  64482. },
  64483. }
  64484. ))
  64485. characterMakers.push(() => makeCharacter(
  64486. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64487. {
  64488. front: {
  64489. height: math.unit(1.9, "meters"),
  64490. weight: math.unit(75, "kg"),
  64491. name: "Front",
  64492. image: {
  64493. source: "./media/characters/sarina/front.svg",
  64494. extra: 1275/1200,
  64495. bottom: 49/1324
  64496. }
  64497. },
  64498. back: {
  64499. height: math.unit(1.9, "meters"),
  64500. weight: math.unit(75, "kg"),
  64501. name: "Back",
  64502. image: {
  64503. source: "./media/characters/sarina/back.svg",
  64504. extra: 1279/1209,
  64505. bottom: 14/1293
  64506. }
  64507. },
  64508. dressed: {
  64509. height: math.unit(1.9, "meters"),
  64510. weight: math.unit(75, "kg"),
  64511. name: "Dressed",
  64512. image: {
  64513. source: "./media/characters/sarina/dressed.svg",
  64514. extra: 1256/1187,
  64515. bottom: 56/1312
  64516. }
  64517. },
  64518. paw: {
  64519. height: math.unit(0.57, "feet"),
  64520. name: "Paw",
  64521. image: {
  64522. source: "./media/characters/sarina/paw.svg"
  64523. }
  64524. },
  64525. toering: {
  64526. height: math.unit(0.27, "feet"),
  64527. name: "Toering",
  64528. image: {
  64529. source: "./media/characters/sarina/toering.svg"
  64530. }
  64531. },
  64532. },
  64533. [
  64534. {
  64535. name: "Incognito",
  64536. height: math.unit(1.9, "meters")
  64537. },
  64538. {
  64539. name: "Home Size",
  64540. height: math.unit(160, "meters"),
  64541. default: true
  64542. },
  64543. {
  64544. name: "Mega",
  64545. height: math.unit(50, "km")
  64546. },
  64547. {
  64548. name: "Small Giga",
  64549. height: math.unit(250, "km")
  64550. },
  64551. {
  64552. name: "Giga (Preferred Size)",
  64553. height: math.unit(3000, "km")
  64554. },
  64555. {
  64556. name: "Terra",
  64557. height: math.unit(40000, "km")
  64558. },
  64559. {
  64560. name: "Terra+",
  64561. height: math.unit(400000, "km")
  64562. },
  64563. {
  64564. name: "Solar",
  64565. height: math.unit(35e6, "km")
  64566. },
  64567. {
  64568. name: "Galactic",
  64569. height: math.unit(648106, "parsecs")
  64570. },
  64571. {
  64572. name: "Universal",
  64573. height: math.unit(7, "universes")
  64574. },
  64575. {
  64576. name: "Universal+",
  64577. height: math.unit(30, "universes")
  64578. },
  64579. ]
  64580. ))
  64581. characterMakers.push(() => makeCharacter(
  64582. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64583. {
  64584. front: {
  64585. height: math.unit(5 + 6/12, "feet"),
  64586. name: "Front",
  64587. image: {
  64588. source: "./media/characters/sifray/front.svg",
  64589. extra: 722/691,
  64590. bottom: 64/786
  64591. }
  64592. },
  64593. },
  64594. [
  64595. {
  64596. name: "Normal",
  64597. height: math.unit(5 + 6/12, "feet"),
  64598. default: true
  64599. },
  64600. ]
  64601. ))
  64602. characterMakers.push(() => makeCharacter(
  64603. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64604. {
  64605. side: {
  64606. height: math.unit(2.64, "feet"),
  64607. weight: math.unit(100, "lb"),
  64608. preyCapacity: math.unit(3, "people"),
  64609. name: "Side",
  64610. image: {
  64611. source: "./media/characters/spots/side.svg",
  64612. extra: 1859/977,
  64613. bottom: 19/1878
  64614. },
  64615. extraAttributes: {
  64616. "preyPerMinute": {
  64617. name: "Prey Per Minute",
  64618. power: 3,
  64619. type: "volume",
  64620. base: math.unit(6, "people"),
  64621. defaultUnit: "people"
  64622. },
  64623. "preyPerDay": {
  64624. name: "Prey Per Day",
  64625. power: 3,
  64626. type: "volume",
  64627. base: math.unit(6 * 60 * 24, "people"),
  64628. defaultUnit: "people"
  64629. },
  64630. }
  64631. },
  64632. },
  64633. [
  64634. {
  64635. name: "Normal",
  64636. height: math.unit(2.64, "feet"),
  64637. default: true
  64638. },
  64639. ]
  64640. ))
  64641. characterMakers.push(() => makeCharacter(
  64642. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64643. {
  64644. front: {
  64645. height: math.unit(29 + 11/12, "feet"),
  64646. weight: math.unit(40, "tons"),
  64647. name: "Front",
  64648. image: {
  64649. source: "./media/characters/mona/front.svg",
  64650. extra: 1257/1116,
  64651. bottom: 34/1291
  64652. }
  64653. },
  64654. },
  64655. [
  64656. {
  64657. name: "Normal",
  64658. height: math.unit(29 + 11/12, "feet"),
  64659. default: true
  64660. },
  64661. ]
  64662. ))
  64663. characterMakers.push(() => makeCharacter(
  64664. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64665. {
  64666. front: {
  64667. height: math.unit(15, "feet"),
  64668. weight: math.unit(3000, "kg"),
  64669. preyCapacity: math.unit(5, "people"),
  64670. name: "Front",
  64671. image: {
  64672. source: "./media/characters/frostfire/front.svg",
  64673. extra: 675/558,
  64674. bottom: 73/748
  64675. }
  64676. },
  64677. side: {
  64678. height: math.unit(15, "feet"),
  64679. weight: math.unit(3000, "kg"),
  64680. preyCapacity: math.unit(5, "people"),
  64681. name: "Side",
  64682. image: {
  64683. source: "./media/characters/frostfire/side.svg",
  64684. extra: 687/585,
  64685. bottom: 50/737
  64686. }
  64687. },
  64688. back: {
  64689. height: math.unit(15, "feet"),
  64690. weight: math.unit(3000, "kg"),
  64691. preyCapacity: math.unit(5, "people"),
  64692. name: "Back",
  64693. image: {
  64694. source: "./media/characters/frostfire/back.svg",
  64695. extra: 707/607,
  64696. bottom: 16/723
  64697. }
  64698. },
  64699. head: {
  64700. height: math.unit(9.35, "feet"),
  64701. name: "Head",
  64702. image: {
  64703. source: "./media/characters/frostfire/head.svg"
  64704. }
  64705. },
  64706. maw: {
  64707. height: math.unit(3.32, "feet"),
  64708. name: "Maw",
  64709. image: {
  64710. source: "./media/characters/frostfire/maw.svg"
  64711. }
  64712. },
  64713. hand: {
  64714. height: math.unit(3.7, "feet"),
  64715. name: "Hand",
  64716. image: {
  64717. source: "./media/characters/frostfire/hand.svg"
  64718. }
  64719. },
  64720. paw: {
  64721. height: math.unit(5.8, "feet"),
  64722. name: "Paw",
  64723. image: {
  64724. source: "./media/characters/frostfire/paw.svg"
  64725. }
  64726. },
  64727. },
  64728. [
  64729. {
  64730. name: "Normal",
  64731. height: math.unit(15, "feet"),
  64732. default: true
  64733. },
  64734. ]
  64735. ))
  64736. characterMakers.push(() => makeCharacter(
  64737. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64738. {
  64739. front: {
  64740. height: math.unit(5 + 2/12, "feet"),
  64741. weight: math.unit(122, "lb"),
  64742. name: "Front",
  64743. image: {
  64744. source: "./media/characters/valeroo/front.svg",
  64745. extra: 1789/1534,
  64746. bottom: 66/1855
  64747. }
  64748. },
  64749. back: {
  64750. height: math.unit(5 + 2/12, "feet"),
  64751. weight: math.unit(122, "lb"),
  64752. name: "Back",
  64753. image: {
  64754. source: "./media/characters/valeroo/back.svg",
  64755. extra: 1848/1588,
  64756. bottom: 68/1916
  64757. }
  64758. },
  64759. head: {
  64760. height: math.unit(1.87, "feet"),
  64761. name: "Head",
  64762. image: {
  64763. source: "./media/characters/valeroo/head.svg"
  64764. }
  64765. },
  64766. hand: {
  64767. height: math.unit(0.82, "feet"),
  64768. name: "Hand",
  64769. image: {
  64770. source: "./media/characters/valeroo/hand.svg"
  64771. }
  64772. },
  64773. foot: {
  64774. height: math.unit(2.42, "feet"),
  64775. name: "Foot",
  64776. image: {
  64777. source: "./media/characters/valeroo/foot.svg"
  64778. }
  64779. },
  64780. },
  64781. [
  64782. {
  64783. name: "Normal",
  64784. height: math.unit(5 + 2/12, "feet"),
  64785. default: true
  64786. },
  64787. ]
  64788. ))
  64789. characterMakers.push(() => makeCharacter(
  64790. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64791. {
  64792. front: {
  64793. height: math.unit(11 + 3/12, "feet"),
  64794. name: "Front",
  64795. image: {
  64796. source: "./media/characters/corrin/front.svg",
  64797. extra: 665/597,
  64798. bottom: 74/739
  64799. }
  64800. },
  64801. },
  64802. [
  64803. {
  64804. name: "Standard",
  64805. height: math.unit(11 + 3/12, "feet"),
  64806. default: true
  64807. },
  64808. {
  64809. name: "The Boss",
  64810. height: math.unit(110, "feet")
  64811. },
  64812. {
  64813. name: "Shipbreaker",
  64814. height: math.unit(38, "km")
  64815. },
  64816. ]
  64817. ))
  64818. characterMakers.push(() => makeCharacter(
  64819. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64820. {
  64821. front: {
  64822. height: math.unit(10, "feet"),
  64823. weight: math.unit(1750, "lb"),
  64824. name: "Front",
  64825. image: {
  64826. source: "./media/characters/kiba-ulrich/front.svg",
  64827. extra: 1037/973,
  64828. bottom: 36/1073
  64829. }
  64830. },
  64831. },
  64832. [
  64833. {
  64834. name: "Normal",
  64835. height: math.unit(10, "feet"),
  64836. default: true
  64837. },
  64838. {
  64839. name: "Minimacro",
  64840. height: math.unit(20, "feet")
  64841. },
  64842. {
  64843. name: "Macro",
  64844. height: math.unit(200, "feet")
  64845. },
  64846. {
  64847. name: "Megamacro",
  64848. height: math.unit(22500, "feet")
  64849. },
  64850. {
  64851. name: "Gigamacro",
  64852. height: math.unit(2700, "miles")
  64853. },
  64854. {
  64855. name: "Teramacro",
  64856. height: math.unit(10000, "miles")
  64857. },
  64858. ]
  64859. ))
  64860. characterMakers.push(() => makeCharacter(
  64861. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64862. {
  64863. gryphon_front: {
  64864. height: math.unit(220, "cm"),
  64865. weight: math.unit(160, "kg"),
  64866. name: "Front",
  64867. image: {
  64868. source: "./media/characters/ceanoth/gryphon-front.svg",
  64869. extra: 616/552,
  64870. bottom: 33/649
  64871. },
  64872. form: "gryphon",
  64873. default: true
  64874. },
  64875. },
  64876. [
  64877. {
  64878. name: "Normal",
  64879. height: math.unit(220, "cm"),
  64880. form: "gryphon",
  64881. default: true
  64882. },
  64883. ],
  64884. {
  64885. "gryphon": {
  64886. name: "Grpyhon",
  64887. default: true
  64888. },
  64889. }
  64890. ))
  64891. characterMakers.push(() => makeCharacter(
  64892. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64893. {
  64894. dressed: {
  64895. height: math.unit(2.2 * 0.79, "meters"),
  64896. weight: math.unit(0.5, "tonnes"),
  64897. name: "Dressed",
  64898. image: {
  64899. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64900. extra: 665/315,
  64901. bottom: 106/771
  64902. },
  64903. extraAttributes: {
  64904. "bodyLength": {
  64905. name: "Body Length",
  64906. power: 1,
  64907. type: "length",
  64908. base: math.unit(2.5, "meters")
  64909. },
  64910. "tailLength": {
  64911. name: "Tail Length",
  64912. power: 1,
  64913. type: "length",
  64914. base: math.unit(4.5, "meters")
  64915. },
  64916. "wingspan": {
  64917. name: "Wingspan",
  64918. power: 1,
  64919. type: "length",
  64920. base: math.unit(6, "meters")
  64921. },
  64922. "taurStomachCapacity": {
  64923. name: "Taur Stomach Capacity",
  64924. power: 3,
  64925. type: "volume",
  64926. base: math.unit(4, "people"),
  64927. defaultUnit: "people"
  64928. },
  64929. "anthroStomachCapacity": {
  64930. name: "Anthro Stomach Capacity",
  64931. power: 3,
  64932. type: "volume",
  64933. base: math.unit(1, "people"),
  64934. defaultUnit: "people"
  64935. },
  64936. }
  64937. },
  64938. nude: {
  64939. height: math.unit(2.2 * 0.79, "meters"),
  64940. weight: math.unit(0.5, "tonnes"),
  64941. name: "Nude",
  64942. image: {
  64943. source: "./media/characters/vanadiya-athelya/nude.svg",
  64944. extra: 665/315,
  64945. bottom: 106/771
  64946. },
  64947. extraAttributes: {
  64948. "bodyLength": {
  64949. name: "Body Length",
  64950. power: 1,
  64951. type: "length",
  64952. base: math.unit(2.5, "meters")
  64953. },
  64954. "tailLength": {
  64955. name: "Tail Length",
  64956. power: 1,
  64957. type: "length",
  64958. base: math.unit(4.5, "meters")
  64959. },
  64960. "wingspan": {
  64961. name: "Wingspan",
  64962. power: 1,
  64963. type: "length",
  64964. base: math.unit(6, "meters")
  64965. },
  64966. "taurStomachCapacity": {
  64967. name: "Taur Stomach Capacity",
  64968. power: 3,
  64969. type: "volume",
  64970. base: math.unit(4, "people"),
  64971. defaultUnit: "people"
  64972. },
  64973. "anthroStomachCapacity": {
  64974. name: "Anthro Stomach Capacity",
  64975. power: 3,
  64976. type: "volume",
  64977. base: math.unit(1, "people"),
  64978. defaultUnit: "people"
  64979. },
  64980. }
  64981. },
  64982. },
  64983. [
  64984. {
  64985. name: "Handheld",
  64986. height: math.unit(0.79 * 0.06, "meters")
  64987. },
  64988. {
  64989. name: "Mini",
  64990. height: math.unit(0.79 * 0.7, "meters")
  64991. },
  64992. {
  64993. name: "Short",
  64994. height: math.unit(0.79 * 1.4, "meters")
  64995. },
  64996. {
  64997. name: "Imposing",
  64998. height: math.unit(0.79 * 2.2, "meters"),
  64999. default: true
  65000. },
  65001. {
  65002. name: "Big",
  65003. height: math.unit(0.79 * 3.8, "meters")
  65004. },
  65005. {
  65006. name: "Giant",
  65007. height: math.unit(0.79 * 6.7, "meters")
  65008. },
  65009. {
  65010. name: "Airliner",
  65011. height: math.unit(0.79 * 64, "meters")
  65012. },
  65013. {
  65014. name: "Skyscraper",
  65015. height: math.unit(0.79 * 220, "meters")
  65016. },
  65017. {
  65018. name: "Mountain",
  65019. height: math.unit(0.79 * 3.6, "km")
  65020. },
  65021. {
  65022. name: "Spacescraper",
  65023. height: math.unit(0.79 * 70, "km")
  65024. },
  65025. {
  65026. name: "Continental",
  65027. height: math.unit(0.79 * 1290, "km")
  65028. },
  65029. {
  65030. name: "Moon",
  65031. height: math.unit(0.79 * 32200, "km")
  65032. },
  65033. {
  65034. name: "Planetary",
  65035. height: math.unit(0.79 * 145000, "km")
  65036. },
  65037. {
  65038. name: "Stellar",
  65039. height: math.unit(0.79 * 19e6, "km")
  65040. },
  65041. {
  65042. name: "Solar",
  65043. height: math.unit(0.79 * 40, "AU")
  65044. },
  65045. {
  65046. name: "Intersteller",
  65047. height: math.unit(0.79 * 3, "lightyears")
  65048. },
  65049. {
  65050. name: "Star Cluster",
  65051. height: math.unit(0.79 * 80, "lightyears")
  65052. },
  65053. {
  65054. name: "Ecumenical",
  65055. height: math.unit(0.79 * 2e3, "lightyears")
  65056. },
  65057. {
  65058. name: "Galactic",
  65059. height: math.unit(0.79 * 175000, "lightyears")
  65060. },
  65061. {
  65062. name: "Galaxy Cluster",
  65063. height: math.unit(0.79 * 25e6, "lightyears")
  65064. },
  65065. ]
  65066. ))
  65067. characterMakers.push(() => makeCharacter(
  65068. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65069. {
  65070. front: {
  65071. height: math.unit(6 + 2/12, "feet"),
  65072. weight: math.unit(160, "lb"),
  65073. name: "Front",
  65074. image: {
  65075. source: "./media/characters/yana-amelin/front.svg",
  65076. extra: 1413/1295,
  65077. bottom: 42/1455
  65078. }
  65079. },
  65080. back: {
  65081. height: math.unit(6 + 2/12, "feet"),
  65082. weight: math.unit(160, "lb"),
  65083. name: "Back",
  65084. image: {
  65085. source: "./media/characters/yana-amelin/back.svg",
  65086. extra: 1424/1310,
  65087. bottom: 24/1448
  65088. }
  65089. },
  65090. paws: {
  65091. height: math.unit(1.48, "feet"),
  65092. name: "Paws",
  65093. image: {
  65094. source: "./media/characters/yana-amelin/paws.svg",
  65095. extra: 304/304,
  65096. bottom: 49/353
  65097. }
  65098. },
  65099. },
  65100. [
  65101. {
  65102. name: "Micro",
  65103. height: math.unit(4, "inches")
  65104. },
  65105. {
  65106. name: "Normal",
  65107. height: math.unit(6 + 2/12, "feet"),
  65108. default: true
  65109. },
  65110. {
  65111. name: "Minimacro",
  65112. height: math.unit(20, "feet")
  65113. },
  65114. {
  65115. name: "Macro",
  65116. height: math.unit(70, "feet")
  65117. },
  65118. ]
  65119. ))
  65120. characterMakers.push(() => makeCharacter(
  65121. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65122. {
  65123. frontNsfw: {
  65124. height: math.unit(2.48, "meters"),
  65125. weight: math.unit(112, "kg"),
  65126. name: "Front (NSFW)",
  65127. image: {
  65128. source: "./media/characters/titania/front-nsfw.svg",
  65129. extra: 1302/1232,
  65130. bottom: 90/1392
  65131. }
  65132. },
  65133. backNsfw: {
  65134. height: math.unit(2.48, "meters"),
  65135. weight: math.unit(112, "kg"),
  65136. name: "Back (NSFW)",
  65137. image: {
  65138. source: "./media/characters/titania/back-nsfw.svg",
  65139. extra: 1355/1288,
  65140. bottom: 18/1373
  65141. }
  65142. },
  65143. frontSfw: {
  65144. height: math.unit(2.48, "meters"),
  65145. weight: math.unit(112, "kg"),
  65146. name: "Front (SFW)",
  65147. image: {
  65148. source: "./media/characters/titania/front-sfw.svg",
  65149. extra: 1302/1232,
  65150. bottom: 90/1392
  65151. }
  65152. },
  65153. backSfw: {
  65154. height: math.unit(2.48, "meters"),
  65155. weight: math.unit(112, "kg"),
  65156. name: "Back (SFW)",
  65157. image: {
  65158. source: "./media/characters/titania/back-sfw.svg",
  65159. extra: 1355/1288,
  65160. bottom: 18/1373
  65161. }
  65162. },
  65163. head: {
  65164. height: math.unit(2.06, "feet"),
  65165. name: "Head",
  65166. image: {
  65167. source: "./media/characters/titania/head.svg"
  65168. }
  65169. },
  65170. maw: {
  65171. height: math.unit(0.8, "feet"),
  65172. name: "Maw",
  65173. image: {
  65174. source: "./media/characters/titania/maw.svg"
  65175. }
  65176. },
  65177. foot: {
  65178. height: math.unit(1.65, "feet"),
  65179. name: "Foot",
  65180. image: {
  65181. source: "./media/characters/titania/foot.svg"
  65182. }
  65183. },
  65184. nethers: {
  65185. height: math.unit(1.7, "feet"),
  65186. name: "Nethers",
  65187. image: {
  65188. source: "./media/characters/titania/nethers.svg"
  65189. }
  65190. },
  65191. },
  65192. [
  65193. {
  65194. name: "Normal",
  65195. height: math.unit(2.48, "meters"),
  65196. default: true
  65197. },
  65198. {
  65199. name: "Mini Macro",
  65200. height: math.unit(248, "meters")
  65201. },
  65202. {
  65203. name: "Macro",
  65204. height: math.unit(620, "meters")
  65205. },
  65206. {
  65207. name: "Mega Macro",
  65208. height: math.unit(1860, "meters")
  65209. },
  65210. ]
  65211. ))
  65212. characterMakers.push(() => makeCharacter(
  65213. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65214. {
  65215. front: {
  65216. height: math.unit(5 + 9/12, "feet"),
  65217. weight: math.unit(1500, "lb"),
  65218. name: "Front",
  65219. image: {
  65220. source: "./media/characters/tony-gray/front.svg",
  65221. extra: 700/575,
  65222. bottom: 71/771
  65223. }
  65224. },
  65225. },
  65226. [
  65227. {
  65228. name: "Normal",
  65229. height: math.unit(5 + 9/12, "feet"),
  65230. default: true
  65231. },
  65232. ]
  65233. ))
  65234. characterMakers.push(() => makeCharacter(
  65235. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65236. {
  65237. side: {
  65238. height: math.unit(8 + 2/12, "feet"),
  65239. name: "Side",
  65240. image: {
  65241. source: "./media/characters/kelby/side.svg",
  65242. extra: 804/578,
  65243. bottom: 70/874
  65244. },
  65245. form: "regular",
  65246. default: true
  65247. },
  65248. lounging: {
  65249. height: math.unit(12.41, "feet"),
  65250. name: "Lounging",
  65251. image: {
  65252. source: "./media/characters/kelby/lounging.svg"
  65253. },
  65254. form: "regular"
  65255. },
  65256. maw: {
  65257. height: math.unit(5, "feet"),
  65258. name: "Maw",
  65259. image: {
  65260. source: "./media/characters/kelby/maw.svg"
  65261. },
  65262. form: "regular"
  65263. },
  65264. dick: {
  65265. height: math.unit(2.4, "feet"),
  65266. name: "Dick",
  65267. image: {
  65268. source: "./media/characters/kelby/dick.svg"
  65269. },
  65270. form: "regular"
  65271. },
  65272. slit: {
  65273. height: math.unit(1.2, "feet"),
  65274. name: "Slit",
  65275. image: {
  65276. source: "./media/characters/kelby/slit.svg"
  65277. },
  65278. form: "regular"
  65279. },
  65280. chibi: {
  65281. height: math.unit(5, "feet"),
  65282. name: "Chibi",
  65283. image: {
  65284. source: "./media/characters/kelby/chibi.svg",
  65285. extra: 245/200,
  65286. bottom: 43/288
  65287. },
  65288. form: "chibi",
  65289. default: true
  65290. },
  65291. },
  65292. [
  65293. {
  65294. name: "Normal",
  65295. height: math.unit(8 + 2/12, "feet"),
  65296. default: true,
  65297. form: "regular"
  65298. },
  65299. {
  65300. name: "Normal",
  65301. height: math.unit(5, "feet"),
  65302. default: true,
  65303. form: "chibi"
  65304. },
  65305. ],
  65306. {
  65307. "regular": {
  65308. name: "Regular",
  65309. default: true
  65310. },
  65311. "chibi": {
  65312. name: "Chibi",
  65313. },
  65314. }
  65315. ))
  65316. characterMakers.push(() => makeCharacter(
  65317. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65318. {
  65319. front: {
  65320. height: math.unit(7 + 10/12, "feet"),
  65321. weight: math.unit(300, "lb"),
  65322. name: "Front",
  65323. image: {
  65324. source: "./media/characters/elisa-mitchell/front.svg",
  65325. extra: 2562/2355,
  65326. bottom: 62/2624
  65327. }
  65328. },
  65329. maw: {
  65330. height: math.unit(2.37, "feet"),
  65331. name: "Maw",
  65332. image: {
  65333. source: "./media/characters/elisa-mitchell/maw.svg"
  65334. }
  65335. },
  65336. },
  65337. [
  65338. {
  65339. name: "Normal",
  65340. height: math.unit(7 + 10/12, "feet"),
  65341. default: true
  65342. },
  65343. {
  65344. name: "Macro",
  65345. height: math.unit(1490, "feet"),
  65346. default: true
  65347. },
  65348. ]
  65349. ))
  65350. //characters
  65351. function makeCharacters() {
  65352. const results = [];
  65353. characterMakers.forEach(character => {
  65354. results.push(character());
  65355. });
  65356. return results;
  65357. }