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.
 
 
 

67715 lines
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. }
  2459. //species
  2460. function getSpeciesInfo(speciesList) {
  2461. let result = new Set();
  2462. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2463. result.add(entry)
  2464. });
  2465. return Array.from(result);
  2466. };
  2467. function getSpeciesInfoHelper(species) {
  2468. if (!speciesData[species]) {
  2469. console.warn(species + " doesn't exist");
  2470. return [];
  2471. }
  2472. if (speciesData[species].parents) {
  2473. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2474. } else {
  2475. return [species];
  2476. }
  2477. }
  2478. characterMakers.push(() => makeCharacter(
  2479. {
  2480. name: "Fen",
  2481. species: ["crux"],
  2482. description: {
  2483. title: "Bio",
  2484. text: "Very furry. Sheds on everything."
  2485. },
  2486. tags: [
  2487. "anthro",
  2488. "goo"
  2489. ]
  2490. },
  2491. {
  2492. front: {
  2493. height: math.unit(12, "feet"),
  2494. weight: math.unit(2400, "lb"),
  2495. preyCapacity: math.unit(1, "people"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/fen/front.svg",
  2499. extra: 1804/1562,
  2500. bottom: 205/2009
  2501. },
  2502. extraAttributes: {
  2503. pawSize: {
  2504. name: "Paw Size",
  2505. power: 2,
  2506. type: "area",
  2507. base: math.unit(0.35, "m^2")
  2508. }
  2509. }
  2510. },
  2511. diving: {
  2512. height: math.unit(4.9, "meters"),
  2513. weight: math.unit(2400, "lb"),
  2514. name: "Diving",
  2515. image: {
  2516. source: "./media/characters/fen/diving.svg"
  2517. }
  2518. },
  2519. sleeby: {
  2520. height: math.unit(3.45, "meters"),
  2521. weight: math.unit(2400, "lb"),
  2522. name: "Sleeby",
  2523. image: {
  2524. source: "./media/characters/fen/sleeby.svg"
  2525. }
  2526. },
  2527. goo: {
  2528. height: math.unit(12, "feet"),
  2529. weight: math.unit(3600, "lb"),
  2530. volume: math.unit(1000, "liters"),
  2531. preyCapacity: math.unit(6, "people"),
  2532. name: "Goo",
  2533. image: {
  2534. source: "./media/characters/fen/goo.svg",
  2535. extra: 1307/1071,
  2536. bottom: 134/1441
  2537. }
  2538. },
  2539. horror: {
  2540. height: math.unit(13.6, "feet"),
  2541. weight: math.unit(2400, "lb"),
  2542. preyCapacity: math.unit(1, "people"),
  2543. name: "Horror",
  2544. image: {
  2545. source: "./media/characters/fen/horror.svg",
  2546. extra: 893/797,
  2547. bottom: 0/893
  2548. }
  2549. },
  2550. gooNsfw: {
  2551. height: math.unit(12, "feet"),
  2552. weight: math.unit(3750, "lb"),
  2553. volume: math.unit(1000, "liters"),
  2554. preyCapacity: math.unit(6, "people"),
  2555. name: "Goo (NSFW)",
  2556. image: {
  2557. source: "./media/characters/fen/goo-nsfw.svg",
  2558. extra: 1875/1734,
  2559. bottom: 122/1997
  2560. }
  2561. },
  2562. maw: {
  2563. height: math.unit(5.03, "feet"),
  2564. name: "Maw",
  2565. image: {
  2566. source: "./media/characters/fen/maw.svg"
  2567. }
  2568. },
  2569. gooCeiling: {
  2570. height: math.unit(6.6, "feet"),
  2571. weight: math.unit(3000, "lb"),
  2572. volume: math.unit(1000, "liters"),
  2573. preyCapacity: math.unit(6, "people"),
  2574. name: "Maw (Goo)",
  2575. image: {
  2576. source: "./media/characters/fen/goo-maw.svg"
  2577. }
  2578. },
  2579. paw: {
  2580. height: math.unit(3.77, "feet"),
  2581. name: "Paw",
  2582. image: {
  2583. source: "./media/characters/fen/paw.svg"
  2584. },
  2585. extraAttributes: {
  2586. "toeSize": {
  2587. name: "Toe Size",
  2588. power: 2,
  2589. type: "area",
  2590. base: math.unit(0.02875, "m^2")
  2591. },
  2592. "pawSize": {
  2593. name: "Paw Size",
  2594. power: 2,
  2595. type: "area",
  2596. base: math.unit(0.378, "m^2")
  2597. },
  2598. }
  2599. },
  2600. tail: {
  2601. height: math.unit(12.1, "feet"),
  2602. name: "Tail",
  2603. image: {
  2604. source: "./media/characters/fen/tail.svg"
  2605. }
  2606. },
  2607. tailFull: {
  2608. height: math.unit(12.1, "feet"),
  2609. name: "Full Tail",
  2610. image: {
  2611. source: "./media/characters/fen/tail-full.svg"
  2612. }
  2613. },
  2614. back: {
  2615. height: math.unit(12, "feet"),
  2616. weight: math.unit(2400, "lb"),
  2617. name: "Back",
  2618. image: {
  2619. source: "./media/characters/fen/back.svg",
  2620. },
  2621. info: {
  2622. description: {
  2623. mode: "append",
  2624. text: "\n\nHe is not currently looking at you."
  2625. }
  2626. }
  2627. },
  2628. full: {
  2629. height: math.unit(1.85, "meter"),
  2630. weight: math.unit(3200, "lb"),
  2631. preyCapacity: math.unit(3, "people"),
  2632. name: "Full",
  2633. image: {
  2634. source: "./media/characters/fen/full.svg",
  2635. extra: 1133/859,
  2636. bottom: 145/1278
  2637. },
  2638. info: {
  2639. description: {
  2640. mode: "append",
  2641. text: "\n\nMunch."
  2642. }
  2643. }
  2644. },
  2645. gooLounging: {
  2646. height: math.unit(4.53, "feet"),
  2647. weight: math.unit(3000, "lb"),
  2648. preyCapacity: math.unit(6, "people"),
  2649. name: "Goo (Lounging)",
  2650. image: {
  2651. source: "./media/characters/fen/goo-lounging.svg",
  2652. bottom: 116 / 613
  2653. }
  2654. },
  2655. lounging: {
  2656. height: math.unit(10.52, "feet"),
  2657. weight: math.unit(2400, "lb"),
  2658. name: "Lounging",
  2659. image: {
  2660. source: "./media/characters/fen/lounging.svg"
  2661. }
  2662. },
  2663. },
  2664. [
  2665. {
  2666. name: "Small",
  2667. height: math.unit(2.2428, "meter")
  2668. },
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(12, "feet"),
  2672. default: true,
  2673. },
  2674. {
  2675. name: "Big",
  2676. height: math.unit(20, "feet")
  2677. },
  2678. {
  2679. name: "Minimacro",
  2680. height: math.unit(40, "feet"),
  2681. info: {
  2682. description: {
  2683. mode: "append",
  2684. text: "\n\nTOO DAMN BIG"
  2685. }
  2686. }
  2687. },
  2688. {
  2689. name: "Macro",
  2690. height: math.unit(100, "feet"),
  2691. info: {
  2692. description: {
  2693. mode: "append",
  2694. text: "\n\nTOO DAMN BIG"
  2695. }
  2696. }
  2697. },
  2698. {
  2699. name: "Megamacro",
  2700. height: math.unit(2, "miles")
  2701. },
  2702. {
  2703. name: "Gigamacro",
  2704. height: math.unit(10, "earths")
  2705. },
  2706. ]
  2707. ))
  2708. characterMakers.push(() => makeCharacter(
  2709. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2710. {
  2711. front: {
  2712. height: math.unit(183, "cm"),
  2713. weight: math.unit(80, "kg"),
  2714. name: "Front",
  2715. image: {
  2716. source: "./media/characters/sofia-fluttertail/front.svg",
  2717. bottom: 0.01,
  2718. extra: 2154 / 2081
  2719. }
  2720. },
  2721. frontAlt: {
  2722. height: math.unit(183, "cm"),
  2723. weight: math.unit(80, "kg"),
  2724. name: "Front (alt)",
  2725. image: {
  2726. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2727. }
  2728. },
  2729. back: {
  2730. height: math.unit(183, "cm"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Back",
  2733. image: {
  2734. source: "./media/characters/sofia-fluttertail/back.svg"
  2735. }
  2736. },
  2737. kneeling: {
  2738. height: math.unit(125, "cm"),
  2739. weight: math.unit(80, "kg"),
  2740. name: "Kneeling",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2743. extra: 1033 / 977,
  2744. bottom: 23.7 / 1057
  2745. }
  2746. },
  2747. maw: {
  2748. height: math.unit(183 / 5, "cm"),
  2749. name: "Maw",
  2750. image: {
  2751. source: "./media/characters/sofia-fluttertail/maw.svg"
  2752. }
  2753. },
  2754. mawcloseup: {
  2755. height: math.unit(183 / 5 * 0.41, "cm"),
  2756. name: "Maw (Closeup)",
  2757. image: {
  2758. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2759. }
  2760. },
  2761. paws: {
  2762. height: math.unit(1.17, "feet"),
  2763. name: "Paws",
  2764. image: {
  2765. source: "./media/characters/sofia-fluttertail/paws.svg",
  2766. extra: 851 / 851,
  2767. bottom: 17 / 868
  2768. }
  2769. },
  2770. },
  2771. [
  2772. {
  2773. name: "Normal",
  2774. height: math.unit(1.83, "meter")
  2775. },
  2776. {
  2777. name: "Size Thief",
  2778. height: math.unit(18, "feet")
  2779. },
  2780. {
  2781. name: "50 Foot Collie",
  2782. height: math.unit(50, "feet")
  2783. },
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(96, "feet"),
  2787. default: true
  2788. },
  2789. {
  2790. name: "Megamerger",
  2791. height: math.unit(650, "feet")
  2792. },
  2793. ]
  2794. ))
  2795. characterMakers.push(() => makeCharacter(
  2796. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2797. {
  2798. front: {
  2799. height: math.unit(7, "feet"),
  2800. weight: math.unit(100, "kg"),
  2801. name: "Front",
  2802. image: {
  2803. source: "./media/characters/march/front.svg",
  2804. extra: 1992/1851,
  2805. bottom: 39/2031
  2806. }
  2807. },
  2808. foot: {
  2809. height: math.unit(0.9, "feet"),
  2810. name: "Foot",
  2811. image: {
  2812. source: "./media/characters/march/foot.svg"
  2813. }
  2814. },
  2815. },
  2816. [
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(7.9, "feet")
  2820. },
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(220, "meters")
  2824. },
  2825. {
  2826. name: "Megamacro",
  2827. height: math.unit(2.98, "km"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Gigamacro",
  2832. height: math.unit(15963, "km")
  2833. },
  2834. {
  2835. name: "Teramacro",
  2836. height: math.unit(2980000000, "km")
  2837. },
  2838. {
  2839. name: "Examacro",
  2840. height: math.unit(250, "parsecs")
  2841. },
  2842. ]
  2843. ))
  2844. characterMakers.push(() => makeCharacter(
  2845. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2846. {
  2847. front: {
  2848. height: math.unit(6, "feet"),
  2849. weight: math.unit(60, "kg"),
  2850. name: "Front",
  2851. image: {
  2852. source: "./media/characters/noir/front.svg",
  2853. extra: 1,
  2854. bottom: 0.032
  2855. }
  2856. },
  2857. },
  2858. [
  2859. {
  2860. name: "Normal",
  2861. height: math.unit(6.6, "feet")
  2862. },
  2863. {
  2864. name: "Macro",
  2865. height: math.unit(500, "feet")
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(2.5, "km"),
  2870. default: true
  2871. },
  2872. {
  2873. name: "Gigamacro",
  2874. height: math.unit(22500, "km")
  2875. },
  2876. {
  2877. name: "Teramacro",
  2878. height: math.unit(2500000000, "km")
  2879. },
  2880. {
  2881. name: "Examacro",
  2882. height: math.unit(200, "parsecs")
  2883. },
  2884. ]
  2885. ))
  2886. characterMakers.push(() => makeCharacter(
  2887. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2888. {
  2889. front: {
  2890. height: math.unit(7, "feet"),
  2891. weight: math.unit(100, "kg"),
  2892. name: "Front",
  2893. image: {
  2894. source: "./media/characters/okuri/front.svg",
  2895. extra: 739/665,
  2896. bottom: 39/778
  2897. }
  2898. },
  2899. back: {
  2900. height: math.unit(7, "feet"),
  2901. weight: math.unit(100, "kg"),
  2902. name: "Back",
  2903. image: {
  2904. source: "./media/characters/okuri/back.svg",
  2905. extra: 734/653,
  2906. bottom: 13/747
  2907. }
  2908. },
  2909. sitting: {
  2910. height: math.unit(2.95, "feet"),
  2911. weight: math.unit(100, "kg"),
  2912. name: "Sitting",
  2913. image: {
  2914. source: "./media/characters/okuri/sitting.svg",
  2915. extra: 370/318,
  2916. bottom: 99/469
  2917. }
  2918. },
  2919. },
  2920. [
  2921. {
  2922. name: "Smallest",
  2923. height: math.unit(5 + 2/12, "feet")
  2924. },
  2925. {
  2926. name: "Smaller",
  2927. height: math.unit(300, "feet")
  2928. },
  2929. {
  2930. name: "Small",
  2931. height: math.unit(1000, "feet")
  2932. },
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(1, "mile")
  2936. },
  2937. {
  2938. name: "Mega Macro (Small)",
  2939. height: math.unit(20, "km")
  2940. },
  2941. {
  2942. name: "Mega Macro (Large)",
  2943. height: math.unit(600, "km")
  2944. },
  2945. {
  2946. name: "Giga Macro",
  2947. height: math.unit(10000, "km")
  2948. },
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(577560, "km"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Large",
  2956. height: math.unit(4, "galaxies")
  2957. },
  2958. {
  2959. name: "Largest",
  2960. height: math.unit(15, "multiverses")
  2961. },
  2962. ]
  2963. ))
  2964. characterMakers.push(() => makeCharacter(
  2965. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2966. {
  2967. front: {
  2968. height: math.unit(7, "feet"),
  2969. weight: math.unit(100, "kg"),
  2970. name: "Front",
  2971. image: {
  2972. source: "./media/characters/manny/front.svg",
  2973. extra: 1,
  2974. bottom: 0.06
  2975. }
  2976. },
  2977. back: {
  2978. height: math.unit(7, "feet"),
  2979. weight: math.unit(100, "kg"),
  2980. name: "Back",
  2981. image: {
  2982. source: "./media/characters/manny/back.svg",
  2983. extra: 1,
  2984. bottom: 0.014
  2985. }
  2986. },
  2987. },
  2988. [
  2989. {
  2990. name: "Normal",
  2991. height: math.unit(7, "feet"),
  2992. },
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(78, "feet"),
  2996. default: true
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(300, "meters")
  3001. },
  3002. {
  3003. name: "Macro++",
  3004. height: math.unit(2400, "meters")
  3005. },
  3006. {
  3007. name: "Megamacro",
  3008. height: math.unit(5167, "meters")
  3009. },
  3010. {
  3011. name: "Gigamacro",
  3012. height: math.unit(41769, "miles")
  3013. },
  3014. ]
  3015. ))
  3016. characterMakers.push(() => makeCharacter(
  3017. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3018. {
  3019. front: {
  3020. height: math.unit(7, "feet"),
  3021. weight: math.unit(100, "kg"),
  3022. name: "Front",
  3023. image: {
  3024. source: "./media/characters/adake/front-1.svg"
  3025. }
  3026. },
  3027. frontAlt: {
  3028. height: math.unit(7, "feet"),
  3029. weight: math.unit(100, "kg"),
  3030. name: "Front (Alt)",
  3031. image: {
  3032. source: "./media/characters/adake/front-2.svg",
  3033. extra: 1,
  3034. bottom: 0.01
  3035. }
  3036. },
  3037. back: {
  3038. height: math.unit(7, "feet"),
  3039. weight: math.unit(100, "kg"),
  3040. name: "Back",
  3041. image: {
  3042. source: "./media/characters/adake/back.svg",
  3043. }
  3044. },
  3045. kneel: {
  3046. height: math.unit(5.385, "feet"),
  3047. weight: math.unit(100, "kg"),
  3048. name: "Kneeling",
  3049. image: {
  3050. source: "./media/characters/adake/kneel.svg",
  3051. bottom: 0.052
  3052. }
  3053. },
  3054. },
  3055. [
  3056. {
  3057. name: "Normal",
  3058. height: math.unit(7, "feet"),
  3059. },
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(78, "feet"),
  3063. default: true
  3064. },
  3065. {
  3066. name: "Macro+",
  3067. height: math.unit(300, "meters")
  3068. },
  3069. {
  3070. name: "Macro++",
  3071. height: math.unit(2400, "meters")
  3072. },
  3073. {
  3074. name: "Megamacro",
  3075. height: math.unit(5167, "meters")
  3076. },
  3077. {
  3078. name: "Gigamacro",
  3079. height: math.unit(41769, "miles")
  3080. },
  3081. ]
  3082. ))
  3083. characterMakers.push(() => makeCharacter(
  3084. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3085. {
  3086. front: {
  3087. height: math.unit(1.65, "meters"),
  3088. weight: math.unit(50, "kg"),
  3089. name: "Front",
  3090. image: {
  3091. source: "./media/characters/elijah/front.svg",
  3092. extra: 858 / 830,
  3093. bottom: 95.5 / 953.8559
  3094. }
  3095. },
  3096. back: {
  3097. height: math.unit(1.65, "meters"),
  3098. weight: math.unit(50, "kg"),
  3099. name: "Back",
  3100. image: {
  3101. source: "./media/characters/elijah/back.svg",
  3102. extra: 895 / 850,
  3103. bottom: 5.3 / 897.956
  3104. }
  3105. },
  3106. frontNsfw: {
  3107. height: math.unit(1.65, "meters"),
  3108. weight: math.unit(50, "kg"),
  3109. name: "Front (NSFW)",
  3110. image: {
  3111. source: "./media/characters/elijah/front-nsfw.svg",
  3112. extra: 858 / 830,
  3113. bottom: 95.5 / 953.8559
  3114. }
  3115. },
  3116. backNsfw: {
  3117. height: math.unit(1.65, "meters"),
  3118. weight: math.unit(50, "kg"),
  3119. name: "Back (NSFW)",
  3120. image: {
  3121. source: "./media/characters/elijah/back-nsfw.svg",
  3122. extra: 895 / 850,
  3123. bottom: 5.3 / 897.956
  3124. }
  3125. },
  3126. dick: {
  3127. height: math.unit(1, "feet"),
  3128. name: "Dick",
  3129. image: {
  3130. source: "./media/characters/elijah/dick.svg"
  3131. }
  3132. },
  3133. beakOpen: {
  3134. height: math.unit(1.25, "feet"),
  3135. name: "Beak (Open)",
  3136. image: {
  3137. source: "./media/characters/elijah/beak-open.svg"
  3138. }
  3139. },
  3140. beakShut: {
  3141. height: math.unit(1.25, "feet"),
  3142. name: "Beak (Shut)",
  3143. image: {
  3144. source: "./media/characters/elijah/beak-shut.svg"
  3145. }
  3146. },
  3147. footFlexing: {
  3148. height: math.unit(1.61, "feet"),
  3149. name: "Foot (Flexing)",
  3150. image: {
  3151. source: "./media/characters/elijah/foot-flexing.svg"
  3152. }
  3153. },
  3154. footStepping: {
  3155. height: math.unit(1.44, "feet"),
  3156. name: "Foot (Stepping)",
  3157. image: {
  3158. source: "./media/characters/elijah/foot-stepping.svg"
  3159. }
  3160. },
  3161. plantigradeLeg: {
  3162. height: math.unit(2.34, "feet"),
  3163. name: "Plantigrade Leg",
  3164. image: {
  3165. source: "./media/characters/elijah/plantigrade-leg.svg"
  3166. }
  3167. },
  3168. plantigradeFootLeft: {
  3169. height: math.unit(0.9, "feet"),
  3170. name: "Plantigrade Foot (Left)",
  3171. image: {
  3172. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3173. }
  3174. },
  3175. plantigradeFootRight: {
  3176. height: math.unit(0.9, "feet"),
  3177. name: "Plantigrade Foot (Right)",
  3178. image: {
  3179. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3180. }
  3181. },
  3182. },
  3183. [
  3184. {
  3185. name: "Normal",
  3186. height: math.unit(1.65, "meters")
  3187. },
  3188. {
  3189. name: "Macro",
  3190. height: math.unit(55, "meters"),
  3191. default: true
  3192. },
  3193. {
  3194. name: "Macro+",
  3195. height: math.unit(105, "meters")
  3196. },
  3197. ]
  3198. ))
  3199. characterMakers.push(() => makeCharacter(
  3200. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3201. {
  3202. front: {
  3203. height: math.unit(7 + 2/12, "feet"),
  3204. weight: math.unit(320, "kg"),
  3205. preyCapacity: math.unit(0.276549935, "people"),
  3206. name: "Front",
  3207. image: {
  3208. source: "./media/characters/rai/front.svg",
  3209. extra: 1802/1696,
  3210. bottom: 68/1870
  3211. },
  3212. form: "anthro",
  3213. default: true
  3214. },
  3215. frontDressed: {
  3216. height: math.unit(7 + 2/12, "feet"),
  3217. weight: math.unit(320, "kg"),
  3218. preyCapacity: math.unit(0.276549935, "people"),
  3219. name: "Front (Dressed)",
  3220. image: {
  3221. source: "./media/characters/rai/front-dressed.svg",
  3222. extra: 1802/1696,
  3223. bottom: 68/1870
  3224. },
  3225. form: "anthro"
  3226. },
  3227. side: {
  3228. height: math.unit(7 + 2/12, "feet"),
  3229. weight: math.unit(320, "kg"),
  3230. preyCapacity: math.unit(0.276549935, "people"),
  3231. name: "Side",
  3232. image: {
  3233. source: "./media/characters/rai/side.svg",
  3234. extra: 1789/1710,
  3235. bottom: 115/1904
  3236. },
  3237. form: "anthro"
  3238. },
  3239. back: {
  3240. height: math.unit(7 + 2/12, "feet"),
  3241. weight: math.unit(320, "kg"),
  3242. preyCapacity: math.unit(0.276549935, "people"),
  3243. name: "Back",
  3244. image: {
  3245. source: "./media/characters/rai/back.svg",
  3246. extra: 1770/1707,
  3247. bottom: 28/1798
  3248. },
  3249. form: "anthro"
  3250. },
  3251. feral: {
  3252. height: math.unit(9.5, "feet"),
  3253. weight: math.unit(640, "kg"),
  3254. preyCapacity: math.unit(4, "people"),
  3255. name: "Feral",
  3256. image: {
  3257. source: "./media/characters/rai/feral.svg",
  3258. extra: 945/553,
  3259. bottom: 176/1121
  3260. },
  3261. form: "feral",
  3262. default: true
  3263. },
  3264. dragon: {
  3265. height: math.unit(23, "feet"),
  3266. weight: math.unit(50000, "lb"),
  3267. name: "Dragon",
  3268. image: {
  3269. source: "./media/characters/rai/dragon.svg",
  3270. extra: 2498 / 2030,
  3271. bottom: 85.2 / 2584
  3272. },
  3273. form: "dragon",
  3274. default: true
  3275. },
  3276. maw: {
  3277. height: math.unit(1.69, "feet"),
  3278. name: "Maw",
  3279. image: {
  3280. source: "./media/characters/rai/maw.svg"
  3281. },
  3282. form: "anthro"
  3283. },
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(7 + 2/12, "feet"),
  3289. form: "anthro"
  3290. },
  3291. {
  3292. name: "Big",
  3293. height: math.unit(11, "feet"),
  3294. form: "anthro"
  3295. },
  3296. {
  3297. name: "Minimacro",
  3298. height: math.unit(77, "feet"),
  3299. form: "anthro"
  3300. },
  3301. {
  3302. name: "Macro",
  3303. height: math.unit(302, "feet"),
  3304. default: true,
  3305. form: "anthro"
  3306. },
  3307. {
  3308. name: "Normal",
  3309. height: math.unit(9.5, "feet"),
  3310. form: "feral",
  3311. default: true
  3312. },
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(23, "feet"),
  3316. form: "dragon",
  3317. default: true
  3318. }
  3319. ],
  3320. {
  3321. "anthro": {
  3322. name: "Anthro",
  3323. default: true
  3324. },
  3325. "feral": {
  3326. name: "Feral",
  3327. },
  3328. "dragon": {
  3329. name: "Dragon",
  3330. },
  3331. }
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3335. {
  3336. frontDressed: {
  3337. height: math.unit(216, "feet"),
  3338. weight: math.unit(7000000, "lb"),
  3339. preyCapacity: math.unit(1321, "people"),
  3340. name: "Front (Dressed)",
  3341. image: {
  3342. source: "./media/characters/jazzy/front-dressed.svg",
  3343. extra: 2738 / 2651,
  3344. bottom: 41.8 / 2786
  3345. }
  3346. },
  3347. backDressed: {
  3348. height: math.unit(216, "feet"),
  3349. weight: math.unit(7000000, "lb"),
  3350. preyCapacity: math.unit(1321, "people"),
  3351. name: "Back (Dressed)",
  3352. image: {
  3353. source: "./media/characters/jazzy/back-dressed.svg",
  3354. extra: 2775 / 2673,
  3355. bottom: 36.8 / 2817
  3356. }
  3357. },
  3358. front: {
  3359. height: math.unit(216, "feet"),
  3360. weight: math.unit(7000000, "lb"),
  3361. preyCapacity: math.unit(1321, "people"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/jazzy/front.svg",
  3365. extra: 2738 / 2651,
  3366. bottom: 41.8 / 2786
  3367. }
  3368. },
  3369. back: {
  3370. height: math.unit(216, "feet"),
  3371. weight: math.unit(7000000, "lb"),
  3372. preyCapacity: math.unit(1321, "people"),
  3373. name: "Back",
  3374. image: {
  3375. source: "./media/characters/jazzy/back.svg",
  3376. extra: 2775 / 2673,
  3377. bottom: 36.8 / 2817
  3378. }
  3379. },
  3380. maw: {
  3381. height: math.unit(20, "feet"),
  3382. name: "Maw",
  3383. image: {
  3384. source: "./media/characters/jazzy/maw.svg"
  3385. }
  3386. },
  3387. paws: {
  3388. height: math.unit(27.5, "feet"),
  3389. name: "Paws",
  3390. image: {
  3391. source: "./media/characters/jazzy/paws.svg"
  3392. }
  3393. },
  3394. eye: {
  3395. height: math.unit(4.4, "feet"),
  3396. name: "Eye",
  3397. image: {
  3398. source: "./media/characters/jazzy/eye.svg"
  3399. }
  3400. },
  3401. droneOffense: {
  3402. height: math.unit(9.5, "inches"),
  3403. name: "Drone (Offense)",
  3404. image: {
  3405. source: "./media/characters/jazzy/drone-offense.svg"
  3406. }
  3407. },
  3408. droneRecon: {
  3409. height: math.unit(9.5, "inches"),
  3410. name: "Drone (Recon)",
  3411. image: {
  3412. source: "./media/characters/jazzy/drone-recon.svg"
  3413. }
  3414. },
  3415. droneDefense: {
  3416. height: math.unit(9.5, "inches"),
  3417. name: "Drone (Defense)",
  3418. image: {
  3419. source: "./media/characters/jazzy/drone-defense.svg"
  3420. }
  3421. },
  3422. },
  3423. [
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(216, "feet"),
  3427. default: true
  3428. },
  3429. ]
  3430. ))
  3431. characterMakers.push(() => makeCharacter(
  3432. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3433. {
  3434. front: {
  3435. height: math.unit(9 + 6/12, "feet"),
  3436. weight: math.unit(700, "lb"),
  3437. name: "Front",
  3438. image: {
  3439. source: "./media/characters/flamm/front.svg",
  3440. extra: 1736/1596,
  3441. bottom: 93/1829
  3442. }
  3443. },
  3444. buff: {
  3445. height: math.unit(9 + 6/12, "feet"),
  3446. weight: math.unit(950, "lb"),
  3447. name: "Buff",
  3448. image: {
  3449. source: "./media/characters/flamm/buff.svg",
  3450. extra: 3018/2874,
  3451. bottom: 221/3239
  3452. }
  3453. },
  3454. },
  3455. [
  3456. {
  3457. name: "Normal",
  3458. height: math.unit(9.5, "feet")
  3459. },
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(200, "feet"),
  3463. default: true
  3464. },
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(5 + 3/12, "feet"),
  3472. weight: math.unit(60, "kg"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/zephiro/front.svg",
  3476. extra: 1873/1761,
  3477. bottom: 147/2020
  3478. }
  3479. },
  3480. side: {
  3481. height: math.unit(5 + 3/12, "feet"),
  3482. weight: math.unit(60, "kg"),
  3483. name: "Side",
  3484. image: {
  3485. source: "./media/characters/zephiro/side.svg",
  3486. extra: 1929/1827,
  3487. bottom: 65/1994
  3488. }
  3489. },
  3490. back: {
  3491. height: math.unit(5 + 3/12, "feet"),
  3492. weight: math.unit(60, "kg"),
  3493. name: "Back",
  3494. image: {
  3495. source: "./media/characters/zephiro/back.svg",
  3496. extra: 1926/1816,
  3497. bottom: 41/1967
  3498. }
  3499. },
  3500. hand: {
  3501. height: math.unit(0.68, "feet"),
  3502. name: "Hand",
  3503. image: {
  3504. source: "./media/characters/zephiro/hand.svg"
  3505. }
  3506. },
  3507. paw: {
  3508. height: math.unit(1, "feet"),
  3509. name: "Paw",
  3510. image: {
  3511. source: "./media/characters/zephiro/paw.svg"
  3512. }
  3513. },
  3514. beans: {
  3515. height: math.unit(0.93, "feet"),
  3516. name: "Beans",
  3517. image: {
  3518. source: "./media/characters/zephiro/beans.svg"
  3519. }
  3520. },
  3521. },
  3522. [
  3523. {
  3524. name: "Micro",
  3525. height: math.unit(3, "inches")
  3526. },
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(5 + 3 / 12, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(118, "feet")
  3535. },
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3540. {
  3541. front: {
  3542. height: math.unit(5, "feet"),
  3543. weight: math.unit(90, "kg"),
  3544. preyCapacity: math.unit(14, "people"),
  3545. name: "Front",
  3546. image: {
  3547. source: "./media/characters/fory/front.svg",
  3548. extra: 2862 / 2674,
  3549. bottom: 180 / 3043.8
  3550. },
  3551. form: "weaselbun",
  3552. default: true,
  3553. extraAttributes: {
  3554. "pawSize": {
  3555. name: "Paw Size",
  3556. power: 2,
  3557. type: "area",
  3558. base: math.unit(0.1596, "m^2")
  3559. },
  3560. "pawLength": {
  3561. name: "Paw Length",
  3562. power: 1,
  3563. type: "length",
  3564. base: math.unit(0.7, "m")
  3565. }
  3566. }
  3567. },
  3568. back: {
  3569. height: math.unit(5, "feet"),
  3570. weight: math.unit(90, "kg"),
  3571. preyCapacity: math.unit(14, "people"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/fory/back.svg",
  3575. extra: 1790/1672,
  3576. bottom: 84/1874
  3577. },
  3578. form: "weaselbun",
  3579. extraAttributes: {
  3580. "pawSize": {
  3581. name: "Paw Size",
  3582. power: 2,
  3583. type: "area",
  3584. base: math.unit(0.1596, "m^2")
  3585. },
  3586. "pawLength": {
  3587. name: "Paw Length",
  3588. power: 1,
  3589. type: "length",
  3590. base: math.unit(0.7, "m")
  3591. }
  3592. }
  3593. },
  3594. paw: {
  3595. height: math.unit(2.14, "feet"),
  3596. name: "Paw",
  3597. image: {
  3598. source: "./media/characters/fory/paw.svg"
  3599. },
  3600. form: "weaselbun",
  3601. extraAttributes: {
  3602. "pawSize": {
  3603. name: "Paw Size",
  3604. power: 2,
  3605. type: "area",
  3606. base: math.unit(0.1596, "m^2")
  3607. },
  3608. "pawLength": {
  3609. name: "Paw Length",
  3610. power: 1,
  3611. type: "length",
  3612. base: math.unit(0.48, "m")
  3613. }
  3614. }
  3615. },
  3616. bunBack: {
  3617. height: math.unit(3, "feet"),
  3618. weight: math.unit(20, "kg"),
  3619. preyCapacity: math.unit(3, "people"),
  3620. name: "Back",
  3621. image: {
  3622. source: "./media/characters/fory/bun-back.svg",
  3623. extra: 1749/1564,
  3624. bottom: 246/1995
  3625. },
  3626. form: "bun",
  3627. default: true,
  3628. extraAttributes: {
  3629. "pawSize": {
  3630. name: "Paw Size",
  3631. power: 2,
  3632. type: "area",
  3633. base: math.unit(0.072, "m^2")
  3634. },
  3635. "pawLength": {
  3636. name: "Paw Length",
  3637. power: 1,
  3638. type: "length",
  3639. base: math.unit(0.45, "m")
  3640. }
  3641. }
  3642. },
  3643. },
  3644. [
  3645. {
  3646. name: "Normal",
  3647. height: math.unit(5, "feet"),
  3648. form: "weaselbun"
  3649. },
  3650. {
  3651. name: "Macro",
  3652. height: math.unit(50, "feet"),
  3653. default: true,
  3654. form: "weaselbun"
  3655. },
  3656. {
  3657. name: "Megamacro",
  3658. height: math.unit(10, "miles"),
  3659. form: "weaselbun"
  3660. },
  3661. {
  3662. name: "Gigamacro",
  3663. height: math.unit(5, "earths"),
  3664. form: "weaselbun"
  3665. },
  3666. {
  3667. name: "Normal",
  3668. height: math.unit(3, "feet"),
  3669. default: true,
  3670. form: "bun"
  3671. },
  3672. {
  3673. name: "Fun-Size",
  3674. height: math.unit(12, "feet"),
  3675. form: "bun"
  3676. },
  3677. {
  3678. name: "Macro",
  3679. height: math.unit(100, "feet"),
  3680. form: "bun"
  3681. },
  3682. {
  3683. name: "Planetary",
  3684. height: math.unit(3, "earths"),
  3685. form: "bun"
  3686. },
  3687. ],
  3688. {
  3689. "weaselbun": {
  3690. name: "Weaselbun",
  3691. default: true
  3692. },
  3693. "bun": {
  3694. name: "Bun",
  3695. },
  3696. }
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(7, "feet"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/kurrikage/front.svg",
  3707. extra: 1845/1733,
  3708. bottom: 119/1964
  3709. }
  3710. },
  3711. back: {
  3712. height: math.unit(7, "feet"),
  3713. weight: math.unit(90, "kg"),
  3714. name: "Back",
  3715. image: {
  3716. source: "./media/characters/kurrikage/back.svg",
  3717. extra: 1790/1677,
  3718. bottom: 61/1851
  3719. }
  3720. },
  3721. dressed: {
  3722. height: math.unit(7, "feet"),
  3723. weight: math.unit(90, "kg"),
  3724. name: "Dressed",
  3725. image: {
  3726. source: "./media/characters/kurrikage/dressed.svg",
  3727. extra: 1845/1733,
  3728. bottom: 119/1964
  3729. }
  3730. },
  3731. foot: {
  3732. height: math.unit(1.5, "feet"),
  3733. name: "Foot",
  3734. image: {
  3735. source: "./media/characters/kurrikage/foot.svg"
  3736. }
  3737. },
  3738. staff: {
  3739. height: math.unit(6.7, "feet"),
  3740. name: "Staff",
  3741. image: {
  3742. source: "./media/characters/kurrikage/staff.svg"
  3743. }
  3744. },
  3745. peek: {
  3746. height: math.unit(1.05, "feet"),
  3747. name: "Peeking",
  3748. image: {
  3749. source: "./media/characters/kurrikage/peek.svg",
  3750. bottom: 0.08
  3751. }
  3752. },
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(12, "feet"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Big",
  3762. height: math.unit(20, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(500, "feet")
  3767. },
  3768. {
  3769. name: "Megamacro",
  3770. height: math.unit(20, "miles")
  3771. },
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3776. {
  3777. front: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Front",
  3781. image: {
  3782. source: "./media/characters/shingo/front.svg",
  3783. extra: 1900/1825,
  3784. bottom: 82/1982
  3785. }
  3786. },
  3787. side: {
  3788. height: math.unit(6, "feet"),
  3789. weight: math.unit(75, "kg"),
  3790. name: "Side",
  3791. image: {
  3792. source: "./media/characters/shingo/side.svg",
  3793. extra: 1930/1865,
  3794. bottom: 16/1946
  3795. }
  3796. },
  3797. back: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Back",
  3801. image: {
  3802. source: "./media/characters/shingo/back.svg",
  3803. extra: 1922/1852,
  3804. bottom: 16/1938
  3805. }
  3806. },
  3807. frontDressed: {
  3808. height: math.unit(6, "feet"),
  3809. weight: math.unit(150, "lb"),
  3810. name: "Front-dressed",
  3811. image: {
  3812. source: "./media/characters/shingo/front-dressed.svg",
  3813. extra: 1900/1825,
  3814. bottom: 82/1982
  3815. }
  3816. },
  3817. paw: {
  3818. height: math.unit(1.29, "feet"),
  3819. name: "Paw",
  3820. image: {
  3821. source: "./media/characters/shingo/paw.svg"
  3822. }
  3823. },
  3824. hand: {
  3825. height: math.unit(1.07, "feet"),
  3826. name: "Hand",
  3827. image: {
  3828. source: "./media/characters/shingo/hand.svg"
  3829. }
  3830. },
  3831. frontAlt: {
  3832. height: math.unit(6, "feet"),
  3833. weight: math.unit(75, "kg"),
  3834. name: "Front (Alt)",
  3835. image: {
  3836. source: "./media/characters/shingo/front-alt.svg",
  3837. extra: 3511 / 3338,
  3838. bottom: 0.005
  3839. }
  3840. },
  3841. frontAlt2: {
  3842. height: math.unit(6, "feet"),
  3843. weight: math.unit(75, "kg"),
  3844. name: "Front (Alt 2)",
  3845. image: {
  3846. source: "./media/characters/shingo/front-alt-2.svg",
  3847. extra: 706/681,
  3848. bottom: 11/717
  3849. }
  3850. },
  3851. pawAlt: {
  3852. height: math.unit(1, "feet"),
  3853. name: "Paw (Alt)",
  3854. image: {
  3855. source: "./media/characters/shingo/paw-alt.svg"
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Micro",
  3862. height: math.unit(4, "inches")
  3863. },
  3864. {
  3865. name: "Normal",
  3866. height: math.unit(6, "feet"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Macro",
  3871. height: math.unit(108, "feet")
  3872. },
  3873. {
  3874. name: "Macro+",
  3875. height: math.unit(1500, "feet")
  3876. },
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3881. {
  3882. side: {
  3883. height: math.unit(6, "feet"),
  3884. weight: math.unit(75, "kg"),
  3885. name: "Side",
  3886. image: {
  3887. source: "./media/characters/aigey/side.svg"
  3888. }
  3889. },
  3890. },
  3891. [
  3892. {
  3893. name: "Macro",
  3894. height: math.unit(200, "feet"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(100, "miles")
  3900. },
  3901. ]
  3902. )
  3903. )
  3904. characterMakers.push(() => makeCharacter(
  3905. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3906. {
  3907. front: {
  3908. height: math.unit(13, "feet"),
  3909. weight: math.unit(1036.80, "kg"),
  3910. name: "Front",
  3911. image: {
  3912. source: "./media/characters/natasha/front.svg",
  3913. extra: 1301/1210,
  3914. bottom: 39/1340
  3915. }
  3916. },
  3917. back: {
  3918. height: math.unit(13, "feet"),
  3919. weight: math.unit(1036.80, "kg"),
  3920. name: "Back",
  3921. image: {
  3922. source: "./media/characters/natasha/back.svg",
  3923. extra: 1342/1252,
  3924. bottom: 20/1362
  3925. }
  3926. },
  3927. head: {
  3928. height: math.unit(3.48, "feet"),
  3929. name: "Head",
  3930. image: {
  3931. source: "./media/characters/natasha/head.svg"
  3932. }
  3933. },
  3934. jaws: {
  3935. height: math.unit(3.52, "feet"),
  3936. name: "Jaws",
  3937. image: {
  3938. source: "./media/characters/natasha/jaws.svg"
  3939. }
  3940. },
  3941. paws: {
  3942. height: math.unit(2.7, "feet"),
  3943. name: "Paws",
  3944. image: {
  3945. source: "./media/characters/natasha/paws.svg"
  3946. }
  3947. },
  3948. collar: {
  3949. height: math.unit(0.89, "feet"),
  3950. name: "Collar",
  3951. image: {
  3952. source: "./media/characters/natasha/collar.svg"
  3953. }
  3954. },
  3955. gauge: {
  3956. height: math.unit(0.36, "feet"),
  3957. name: "Gauge",
  3958. image: {
  3959. source: "./media/characters/natasha/gauge.svg"
  3960. }
  3961. },
  3962. },
  3963. [
  3964. {
  3965. name: "Shortstack",
  3966. height: math.unit(3, "feet")
  3967. },
  3968. {
  3969. name: "Normal",
  3970. height: math.unit(13, "feet"),
  3971. default: true
  3972. },
  3973. {
  3974. name: "Macro",
  3975. height: math.unit(100, "feet")
  3976. },
  3977. {
  3978. name: "Macro+",
  3979. height: math.unit(260, "feet")
  3980. },
  3981. {
  3982. name: "Macro++",
  3983. height: math.unit(1, "mile")
  3984. },
  3985. ]
  3986. ))
  3987. characterMakers.push(() => makeCharacter(
  3988. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3989. {
  3990. front: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(75, "kg"),
  3993. name: "Front",
  3994. image: {
  3995. source: "./media/characters/malik/front.svg",
  3996. extra: 1750/1561,
  3997. bottom: 80/1830
  3998. },
  3999. extraAttributes: {
  4000. "toeSize": {
  4001. name: "Toe Size",
  4002. power: 2,
  4003. type: "area",
  4004. base: math.unit(0.0159, "m^2")
  4005. },
  4006. "pawSize": {
  4007. name: "Paw Size",
  4008. power: 2,
  4009. type: "area",
  4010. base: math.unit(0.09834, "m^2")
  4011. },
  4012. }
  4013. },
  4014. side: {
  4015. height: math.unit(6, "feet"),
  4016. weight: math.unit(75, "kg"),
  4017. name: "Side",
  4018. image: {
  4019. source: "./media/characters/malik/side.svg",
  4020. extra: 1802/1685,
  4021. bottom: 42/1844
  4022. },
  4023. extraAttributes: {
  4024. "toeSize": {
  4025. name: "Toe Size",
  4026. power: 2,
  4027. type: "area",
  4028. base: math.unit(0.0159, "m^2")
  4029. },
  4030. "pawSize": {
  4031. name: "Paw Size",
  4032. power: 2,
  4033. type: "area",
  4034. base: math.unit(0.09834, "m^2")
  4035. },
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(6, "feet"),
  4040. weight: math.unit(75, "kg"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/malik/back.svg",
  4044. extra: 1803/1607,
  4045. bottom: 33/1836
  4046. },
  4047. extraAttributes: {
  4048. "toeSize": {
  4049. name: "Toe Size",
  4050. power: 2,
  4051. type: "area",
  4052. base: math.unit(0.0159, "m^2")
  4053. },
  4054. "pawSize": {
  4055. name: "Paw Size",
  4056. power: 2,
  4057. type: "area",
  4058. base: math.unit(0.09834, "m^2")
  4059. },
  4060. }
  4061. },
  4062. },
  4063. [
  4064. {
  4065. name: "Macro",
  4066. height: math.unit(156, "feet"),
  4067. default: true
  4068. },
  4069. {
  4070. name: "Macro+",
  4071. height: math.unit(1188, "feet")
  4072. },
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4077. {
  4078. front: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(75, "kg"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/sefer/front.svg",
  4084. extra: 848 / 659,
  4085. bottom: 28.3 / 876.442
  4086. }
  4087. },
  4088. back: {
  4089. height: math.unit(6, "feet"),
  4090. weight: math.unit(75, "kg"),
  4091. name: "Back",
  4092. image: {
  4093. source: "./media/characters/sefer/back.svg",
  4094. extra: 864 / 695,
  4095. bottom: 10 / 871
  4096. }
  4097. },
  4098. frontDressed: {
  4099. height: math.unit(6, "feet"),
  4100. weight: math.unit(75, "kg"),
  4101. name: "Dressed",
  4102. image: {
  4103. source: "./media/characters/sefer/dressed.svg",
  4104. extra: 839 / 653,
  4105. bottom: 37.6 / 878
  4106. }
  4107. },
  4108. },
  4109. [
  4110. {
  4111. name: "Normal",
  4112. height: math.unit(6, "feet"),
  4113. default: true
  4114. },
  4115. {
  4116. name: "Big",
  4117. height: math.unit(8, "meters")
  4118. },
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4123. {
  4124. body: {
  4125. height: math.unit(2.2428, "meter"),
  4126. weight: math.unit(124.738, "kg"),
  4127. name: "Body",
  4128. image: {
  4129. extra: 1225 / 1050,
  4130. source: "./media/characters/north/front.svg"
  4131. }
  4132. }
  4133. },
  4134. [
  4135. {
  4136. name: "Micro",
  4137. height: math.unit(4, "inches")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(63, "meters")
  4142. },
  4143. {
  4144. name: "Megamacro",
  4145. height: math.unit(101, "miles"),
  4146. default: true
  4147. }
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4152. {
  4153. angled: {
  4154. height: math.unit(4, "meter"),
  4155. weight: math.unit(150, "kg"),
  4156. name: "Angled",
  4157. image: {
  4158. source: "./media/characters/talan/angled-sfw.svg",
  4159. bottom: 29 / 3734
  4160. }
  4161. },
  4162. angledNsfw: {
  4163. height: math.unit(4, "meter"),
  4164. weight: math.unit(150, "kg"),
  4165. name: "Angled (NSFW)",
  4166. image: {
  4167. source: "./media/characters/talan/angled-nsfw.svg",
  4168. bottom: 29 / 3734
  4169. }
  4170. },
  4171. frontNsfw: {
  4172. height: math.unit(4, "meter"),
  4173. weight: math.unit(150, "kg"),
  4174. name: "Front (NSFW)",
  4175. image: {
  4176. source: "./media/characters/talan/front-nsfw.svg",
  4177. bottom: 29 / 3734
  4178. }
  4179. },
  4180. sideNsfw: {
  4181. height: math.unit(4, "meter"),
  4182. weight: math.unit(150, "kg"),
  4183. name: "Side (NSFW)",
  4184. image: {
  4185. source: "./media/characters/talan/side-nsfw.svg",
  4186. bottom: 29 / 3734
  4187. }
  4188. },
  4189. back: {
  4190. height: math.unit(4, "meter"),
  4191. weight: math.unit(150, "kg"),
  4192. name: "Back",
  4193. image: {
  4194. source: "./media/characters/talan/back.svg"
  4195. }
  4196. },
  4197. dickBottom: {
  4198. height: math.unit(0.621, "meter"),
  4199. name: "Dick (Bottom)",
  4200. image: {
  4201. source: "./media/characters/talan/dick-bottom.svg"
  4202. }
  4203. },
  4204. dickTop: {
  4205. height: math.unit(0.621, "meter"),
  4206. name: "Dick (Top)",
  4207. image: {
  4208. source: "./media/characters/talan/dick-top.svg"
  4209. }
  4210. },
  4211. dickSide: {
  4212. height: math.unit(0.305, "meter"),
  4213. name: "Dick (Side)",
  4214. image: {
  4215. source: "./media/characters/talan/dick-side.svg"
  4216. }
  4217. },
  4218. dickFront: {
  4219. height: math.unit(0.305, "meter"),
  4220. name: "Dick (Front)",
  4221. image: {
  4222. source: "./media/characters/talan/dick-front.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(4, "meters")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(100, "meters")
  4234. },
  4235. {
  4236. name: "Megamacro",
  4237. height: math.unit(2, "miles"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Gigamacro",
  4242. height: math.unit(5000, "miles")
  4243. },
  4244. {
  4245. name: "Teramacro",
  4246. height: math.unit(100, "parsecs")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(2, "meter"),
  4255. weight: math.unit(90, "kg"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/gael'rathus/front.svg"
  4259. }
  4260. },
  4261. frontAlt: {
  4262. height: math.unit(2, "meter"),
  4263. weight: math.unit(90, "kg"),
  4264. name: "Front (alt)",
  4265. image: {
  4266. source: "./media/characters/gael'rathus/front-alt.svg"
  4267. }
  4268. },
  4269. frontAlt2: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(90, "kg"),
  4272. name: "Front (alt 2)",
  4273. image: {
  4274. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(9, "feet"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Large",
  4286. height: math.unit(25, "feet")
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(0.25, "miles")
  4291. },
  4292. {
  4293. name: "Megamacro",
  4294. height: math.unit(10, "miles")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4300. {
  4301. side: {
  4302. height: math.unit(2, "meter"),
  4303. weight: math.unit(140, "kg"),
  4304. name: "Side",
  4305. image: {
  4306. source: "./media/characters/sosha/side.svg",
  4307. extra: 1170/1006,
  4308. bottom: 94/1264
  4309. }
  4310. },
  4311. maw: {
  4312. height: math.unit(2.87, "feet"),
  4313. name: "Maw",
  4314. image: {
  4315. source: "./media/characters/sosha/maw.svg",
  4316. extra: 966/865,
  4317. bottom: 0/966
  4318. }
  4319. },
  4320. cooch: {
  4321. height: math.unit(5.6, "feet"),
  4322. name: "Cooch",
  4323. image: {
  4324. source: "./media/characters/sosha/cooch.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(12, "feet"),
  4332. default: true
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4338. {
  4339. side: {
  4340. height: math.unit(5 + 5 / 12, "feet"),
  4341. weight: math.unit(170, "kg"),
  4342. name: "Side",
  4343. image: {
  4344. source: "./media/characters/runnola/side.svg",
  4345. extra: 741 / 448,
  4346. bottom: 0.05
  4347. }
  4348. },
  4349. },
  4350. [
  4351. {
  4352. name: "Small",
  4353. height: math.unit(3, "feet")
  4354. },
  4355. {
  4356. name: "Normal",
  4357. height: math.unit(5 + 5 / 12, "feet"),
  4358. default: true
  4359. },
  4360. {
  4361. name: "Big",
  4362. height: math.unit(10, "feet")
  4363. },
  4364. ]
  4365. ))
  4366. characterMakers.push(() => makeCharacter(
  4367. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4368. {
  4369. front: {
  4370. height: math.unit(2, "meter"),
  4371. weight: math.unit(50, "kg"),
  4372. name: "Front",
  4373. image: {
  4374. source: "./media/characters/kurribird/front.svg",
  4375. bottom: 0.015
  4376. }
  4377. },
  4378. frontAlt: {
  4379. height: math.unit(1.5, "meter"),
  4380. weight: math.unit(50, "kg"),
  4381. name: "Front (Alt)",
  4382. image: {
  4383. source: "./media/characters/kurribird/front-alt.svg",
  4384. extra: 1.45
  4385. }
  4386. },
  4387. },
  4388. [
  4389. {
  4390. name: "Normal",
  4391. height: math.unit(7, "feet")
  4392. },
  4393. {
  4394. name: "Big",
  4395. height: math.unit(12, "feet"),
  4396. default: true
  4397. },
  4398. {
  4399. name: "Macro",
  4400. height: math.unit(1500, "feet")
  4401. },
  4402. {
  4403. name: "Megamacro",
  4404. height: math.unit(2, "miles")
  4405. }
  4406. ]
  4407. ))
  4408. characterMakers.push(() => makeCharacter(
  4409. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4410. {
  4411. front: {
  4412. height: math.unit(2, "meter"),
  4413. weight: math.unit(80, "kg"),
  4414. name: "Front",
  4415. image: {
  4416. source: "./media/characters/elbial/front.svg",
  4417. extra: 1643 / 1556,
  4418. bottom: 60.2 / 1696
  4419. }
  4420. },
  4421. side: {
  4422. height: math.unit(2, "meter"),
  4423. weight: math.unit(80, "kg"),
  4424. name: "Side",
  4425. image: {
  4426. source: "./media/characters/elbial/side.svg",
  4427. extra: 1601/1528,
  4428. bottom: 97/1698
  4429. }
  4430. },
  4431. back: {
  4432. height: math.unit(2, "meter"),
  4433. weight: math.unit(80, "kg"),
  4434. name: "Back",
  4435. image: {
  4436. source: "./media/characters/elbial/back.svg",
  4437. extra: 1653/1569,
  4438. bottom: 20/1673
  4439. }
  4440. },
  4441. frontDressed: {
  4442. height: math.unit(2, "meter"),
  4443. weight: math.unit(80, "kg"),
  4444. name: "Front (Dressed)",
  4445. image: {
  4446. source: "./media/characters/elbial/front-dressed.svg",
  4447. extra: 1638/1569,
  4448. bottom: 70/1708
  4449. }
  4450. },
  4451. genitals: {
  4452. height: math.unit(2 / 3.367, "meter"),
  4453. name: "Genitals",
  4454. image: {
  4455. source: "./media/characters/elbial/genitals.svg"
  4456. }
  4457. },
  4458. },
  4459. [
  4460. {
  4461. name: "Large",
  4462. height: math.unit(100, "feet")
  4463. },
  4464. {
  4465. name: "Macro",
  4466. height: math.unit(500, "feet"),
  4467. default: true
  4468. },
  4469. {
  4470. name: "Megamacro",
  4471. height: math.unit(10, "miles")
  4472. },
  4473. {
  4474. name: "Gigamacro",
  4475. height: math.unit(25000, "miles")
  4476. },
  4477. {
  4478. name: "Full-Size",
  4479. height: math.unit(8000000, "gigaparsecs")
  4480. }
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4485. {
  4486. front: {
  4487. height: math.unit(2, "meter"),
  4488. weight: math.unit(60, "kg"),
  4489. name: "Front",
  4490. image: {
  4491. source: "./media/characters/noah/front.svg",
  4492. extra: 1383/1313,
  4493. bottom: 104/1487
  4494. }
  4495. },
  4496. hand: {
  4497. height: math.unit(0.6, "feet"),
  4498. name: "Hand",
  4499. image: {
  4500. source: "./media/characters/noah/hand.svg"
  4501. }
  4502. },
  4503. talons: {
  4504. height: math.unit(1.385, "feet"),
  4505. name: "Talons",
  4506. image: {
  4507. source: "./media/characters/noah/talons.svg"
  4508. }
  4509. },
  4510. beak: {
  4511. height: math.unit(0.43, "feet"),
  4512. name: "Beak",
  4513. image: {
  4514. source: "./media/characters/noah/beak.svg"
  4515. }
  4516. },
  4517. collar: {
  4518. height: math.unit(0.88, "feet"),
  4519. name: "Collar",
  4520. image: {
  4521. source: "./media/characters/noah/collar.svg"
  4522. }
  4523. },
  4524. eyeNarrow: {
  4525. height: math.unit(0.18, "feet"),
  4526. name: "Eye (Narrow)",
  4527. image: {
  4528. source: "./media/characters/noah/eye-narrow.svg"
  4529. }
  4530. },
  4531. eyeNormal: {
  4532. height: math.unit(0.18, "feet"),
  4533. name: "Eye (Normal)",
  4534. image: {
  4535. source: "./media/characters/noah/eye-normal.svg"
  4536. }
  4537. },
  4538. eyeWide: {
  4539. height: math.unit(0.18, "feet"),
  4540. name: "Eye (Wide)",
  4541. image: {
  4542. source: "./media/characters/noah/eye-wide.svg"
  4543. }
  4544. },
  4545. ear: {
  4546. height: math.unit(0.64, "feet"),
  4547. name: "Ear",
  4548. image: {
  4549. source: "./media/characters/noah/ear.svg"
  4550. }
  4551. },
  4552. },
  4553. [
  4554. {
  4555. name: "Large",
  4556. height: math.unit(50, "feet")
  4557. },
  4558. {
  4559. name: "Macro",
  4560. height: math.unit(750, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Megamacro",
  4565. height: math.unit(50, "miles")
  4566. },
  4567. {
  4568. name: "Gigamacro",
  4569. height: math.unit(100000, "miles")
  4570. },
  4571. {
  4572. name: "Full-Size",
  4573. height: math.unit(3000000000, "miles")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(2, "meter"),
  4582. weight: math.unit(80, "kg"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/natalya/front.svg"
  4586. }
  4587. },
  4588. back: {
  4589. height: math.unit(2, "meter"),
  4590. weight: math.unit(80, "kg"),
  4591. name: "Back",
  4592. image: {
  4593. source: "./media/characters/natalya/back.svg"
  4594. }
  4595. }
  4596. },
  4597. [
  4598. {
  4599. name: "Normal",
  4600. height: math.unit(150, "feet"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Megamacro",
  4605. height: math.unit(5, "miles")
  4606. },
  4607. {
  4608. name: "Full-Size",
  4609. height: math.unit(600, "kiloparsecs")
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4615. {
  4616. front: {
  4617. height: math.unit(2, "meter"),
  4618. weight: math.unit(50, "kg"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/erestrebah/front.svg",
  4622. extra: 1262/1162,
  4623. bottom: 96/1358
  4624. }
  4625. },
  4626. back: {
  4627. height: math.unit(2, "meter"),
  4628. weight: math.unit(50, "kg"),
  4629. name: "Back",
  4630. image: {
  4631. source: "./media/characters/erestrebah/back.svg",
  4632. extra: 1257/1139,
  4633. bottom: 13/1270
  4634. }
  4635. },
  4636. wing: {
  4637. height: math.unit(2, "meter"),
  4638. weight: math.unit(50, "kg"),
  4639. name: "Wing",
  4640. image: {
  4641. source: "./media/characters/erestrebah/wing.svg",
  4642. extra: 1262/1162,
  4643. bottom: 96/1358
  4644. }
  4645. },
  4646. mouth: {
  4647. height: math.unit(0.39, "feet"),
  4648. name: "Mouth",
  4649. image: {
  4650. source: "./media/characters/erestrebah/mouth.svg"
  4651. }
  4652. }
  4653. },
  4654. [
  4655. {
  4656. name: "Normal",
  4657. height: math.unit(10, "feet")
  4658. },
  4659. {
  4660. name: "Large",
  4661. height: math.unit(50, "feet"),
  4662. default: true
  4663. },
  4664. {
  4665. name: "Macro",
  4666. height: math.unit(300, "feet")
  4667. },
  4668. {
  4669. name: "Macro+",
  4670. height: math.unit(750, "feet")
  4671. },
  4672. {
  4673. name: "Megamacro",
  4674. height: math.unit(3, "miles")
  4675. }
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meter"),
  4683. weight: math.unit(80, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/jennifer/front.svg",
  4687. bottom: 0.11,
  4688. extra: 1.16
  4689. }
  4690. },
  4691. frontAlt: {
  4692. height: math.unit(2, "meter"),
  4693. weight: math.unit(80, "kg"),
  4694. name: "Front (Alt)",
  4695. image: {
  4696. source: "./media/characters/jennifer/front-alt.svg"
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Canon Height",
  4703. height: math.unit(120, "feet"),
  4704. default: true
  4705. },
  4706. {
  4707. name: "Macro+",
  4708. height: math.unit(300, "feet")
  4709. },
  4710. {
  4711. name: "Megamacro",
  4712. height: math.unit(20000, "feet")
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(2, "meter"),
  4721. weight: math.unit(50, "kg"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/kalista/front.svg",
  4725. extra: 1314/1145,
  4726. bottom: 101/1415
  4727. }
  4728. },
  4729. back: {
  4730. height: math.unit(2, "meter"),
  4731. weight: math.unit(50, "kg"),
  4732. name: "Back",
  4733. image: {
  4734. source: "./media/characters/kalista/back.svg",
  4735. extra: 1366 / 1156,
  4736. bottom: 33.9 / 1362.78
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Uncomfortably Small",
  4743. height: math.unit(10, "feet")
  4744. },
  4745. {
  4746. name: "Small",
  4747. height: math.unit(30, "feet")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(100, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro+",
  4756. height: math.unit(2000, "feet")
  4757. },
  4758. {
  4759. name: "True Form",
  4760. height: math.unit(8924, "miles")
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(2, "meter"),
  4769. weight: math.unit(120, "kg"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/ggv/front.svg"
  4773. }
  4774. },
  4775. side: {
  4776. height: math.unit(2, "meter"),
  4777. weight: math.unit(120, "kg"),
  4778. name: "Side",
  4779. image: {
  4780. source: "./media/characters/ggv/side.svg"
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Extremely Puny",
  4787. height: math.unit(9 + 5 / 12, "feet")
  4788. },
  4789. {
  4790. name: "Horribly Small",
  4791. height: math.unit(47.7, "miles"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Reasonably Sized",
  4796. height: math.unit(25000, "parsecs")
  4797. },
  4798. {
  4799. name: "Slightly Uncompressed",
  4800. height: math.unit(7.77e31, "parsecs")
  4801. },
  4802. {
  4803. name: "Omniversal",
  4804. height: math.unit(1e300, "meters")
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(2, "meter"),
  4813. weight: math.unit(75, "lb"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/napalm/front.svg"
  4817. }
  4818. },
  4819. back: {
  4820. height: math.unit(2, "meter"),
  4821. weight: math.unit(75, "lb"),
  4822. name: "Back",
  4823. image: {
  4824. source: "./media/characters/napalm/back.svg"
  4825. }
  4826. }
  4827. },
  4828. [
  4829. {
  4830. name: "Standard",
  4831. height: math.unit(55, "feet"),
  4832. default: true
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(7 + 5 / 6, "feet"),
  4841. weight: math.unit(325, "lb"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/asana/front.svg",
  4845. extra: 1133 / 1060,
  4846. bottom: 15.2 / 1148.6
  4847. }
  4848. },
  4849. back: {
  4850. height: math.unit(7 + 5 / 6, "feet"),
  4851. weight: math.unit(325, "lb"),
  4852. name: "Back",
  4853. image: {
  4854. source: "./media/characters/asana/back.svg",
  4855. extra: 1114 / 1043,
  4856. bottom: 5 / 1120
  4857. }
  4858. },
  4859. dressedDark: {
  4860. height: math.unit(7 + 5 / 6, "feet"),
  4861. weight: math.unit(325, "lb"),
  4862. name: "Dressed (Dark)",
  4863. image: {
  4864. source: "./media/characters/asana/dressed-dark.svg",
  4865. extra: 1133 / 1060,
  4866. bottom: 15.2 / 1148.6
  4867. }
  4868. },
  4869. dressedLight: {
  4870. height: math.unit(7 + 5 / 6, "feet"),
  4871. weight: math.unit(325, "lb"),
  4872. name: "Dressed (Light)",
  4873. image: {
  4874. source: "./media/characters/asana/dressed-light.svg",
  4875. extra: 1133 / 1060,
  4876. bottom: 15.2 / 1148.6
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Standard",
  4883. height: math.unit(7 + 5 / 6, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Large",
  4888. height: math.unit(10, "meters")
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(2500, "meters")
  4893. },
  4894. {
  4895. name: "Megamacro",
  4896. height: math.unit(5e6, "meters")
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(5e12, "lightyears")
  4901. },
  4902. {
  4903. name: "Max Size",
  4904. height: math.unit(1e31, "lightyears")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(2, "meter"),
  4913. weight: math.unit(60, "kg"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/ebony/front.svg",
  4917. bottom: 0.03,
  4918. extra: 1045 / 810 + 0.03
  4919. }
  4920. },
  4921. side: {
  4922. height: math.unit(2, "meter"),
  4923. weight: math.unit(60, "kg"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/ebony/side.svg",
  4927. bottom: 0.03,
  4928. extra: 1045 / 810 + 0.03
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(2, "meter"),
  4933. weight: math.unit(60, "kg"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/ebony/back.svg",
  4937. bottom: 0.01,
  4938. extra: 1045 / 810 + 0.01
  4939. }
  4940. },
  4941. },
  4942. [
  4943. // TODO check why I did this lol
  4944. {
  4945. name: "Standard",
  4946. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Macro",
  4951. height: math.unit(200, "feet")
  4952. },
  4953. {
  4954. name: "Gigamacro",
  4955. height: math.unit(13000, "km")
  4956. }
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(175, "lb"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/mountain/front.svg",
  4968. extra: 972 / 955,
  4969. bottom: 64 / 1036.6
  4970. }
  4971. },
  4972. back: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(175, "lb"),
  4975. name: "Back",
  4976. image: {
  4977. source: "./media/characters/mountain/back.svg",
  4978. extra: 970 / 950,
  4979. bottom: 28.25 / 999
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Large",
  4986. height: math.unit(20, "meters")
  4987. },
  4988. {
  4989. name: "Macro",
  4990. height: math.unit(300, "meters")
  4991. },
  4992. {
  4993. name: "Gigamacro",
  4994. height: math.unit(10000, "km"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Examacro",
  4999. height: math.unit(10e9, "lightyears")
  5000. }
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(8, "feet"),
  5008. weight: math.unit(500, "lb"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/rick/front.svg"
  5012. }
  5013. }
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(8, "feet"),
  5019. default: true
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(5, "km")
  5024. }
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(8, "feet"),
  5032. weight: math.unit(120, "lb"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/ona/front.svg"
  5036. }
  5037. },
  5038. frontAlt: {
  5039. height: math.unit(8, "feet"),
  5040. weight: math.unit(120, "lb"),
  5041. name: "Front (Alt)",
  5042. image: {
  5043. source: "./media/characters/ona/front-alt.svg"
  5044. }
  5045. },
  5046. back: {
  5047. height: math.unit(8, "feet"),
  5048. weight: math.unit(120, "lb"),
  5049. name: "Back",
  5050. image: {
  5051. source: "./media/characters/ona/back.svg"
  5052. }
  5053. },
  5054. foot: {
  5055. height: math.unit(1.1, "feet"),
  5056. name: "Foot",
  5057. image: {
  5058. source: "./media/characters/ona/foot.svg"
  5059. }
  5060. }
  5061. },
  5062. [
  5063. {
  5064. name: "Megamacro",
  5065. height: math.unit(70, "km"),
  5066. default: true
  5067. },
  5068. {
  5069. name: "Gigamacro",
  5070. height: math.unit(681818, "miles")
  5071. },
  5072. {
  5073. name: "Examacro",
  5074. height: math.unit(3800000, "lightyears")
  5075. },
  5076. ]
  5077. ))
  5078. characterMakers.push(() => makeCharacter(
  5079. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5080. {
  5081. front: {
  5082. height: math.unit(12, "feet"),
  5083. weight: math.unit(3000, "lb"),
  5084. name: "Front",
  5085. image: {
  5086. source: "./media/characters/mech/front.svg",
  5087. extra: 2900 / 2770,
  5088. bottom: 110 / 3010
  5089. }
  5090. },
  5091. back: {
  5092. height: math.unit(12, "feet"),
  5093. weight: math.unit(3000, "lb"),
  5094. name: "Back",
  5095. image: {
  5096. source: "./media/characters/mech/back.svg",
  5097. extra: 3011 / 2890,
  5098. bottom: 94 / 3105
  5099. }
  5100. },
  5101. maw: {
  5102. height: math.unit(3.07, "feet"),
  5103. name: "Maw",
  5104. image: {
  5105. source: "./media/characters/mech/maw.svg"
  5106. }
  5107. },
  5108. head: {
  5109. height: math.unit(3.07, "feet"),
  5110. name: "Head",
  5111. image: {
  5112. source: "./media/characters/mech/head.svg"
  5113. }
  5114. },
  5115. dick: {
  5116. height: math.unit(1.43, "feet"),
  5117. name: "Dick",
  5118. image: {
  5119. source: "./media/characters/mech/dick.svg"
  5120. }
  5121. },
  5122. },
  5123. [
  5124. {
  5125. name: "Normal",
  5126. height: math.unit(12, "feet")
  5127. },
  5128. {
  5129. name: "Macro",
  5130. height: math.unit(300, "feet"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Macro+",
  5135. height: math.unit(1500, "feet")
  5136. },
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5141. {
  5142. front: {
  5143. height: math.unit(1.3, "meter"),
  5144. weight: math.unit(30, "kg"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/gregory/front.svg",
  5148. }
  5149. }
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(1.3, "meter"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Macro",
  5159. height: math.unit(20, "meter")
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(2.8, "meter"),
  5168. weight: math.unit(200, "kg"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/elory/front.svg",
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(2.8, "meter"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro",
  5183. height: math.unit(38, "meter")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(470, "feet"),
  5192. weight: math.unit(924, "tons"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/angelpatamon/front.svg",
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(470, "feet"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Deity Size I",
  5207. height: math.unit(28651.2, "km")
  5208. },
  5209. {
  5210. name: "Deity Size II",
  5211. height: math.unit(171907.2, "km")
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5217. {
  5218. side: {
  5219. height: math.unit(7.2, "meter"),
  5220. weight: math.unit(8.2, "tons"),
  5221. name: "Side",
  5222. image: {
  5223. source: "./media/characters/cryae/side.svg",
  5224. extra: 3500 / 1500
  5225. }
  5226. }
  5227. },
  5228. [
  5229. {
  5230. name: "Normal",
  5231. height: math.unit(7.2, "meter"),
  5232. default: true
  5233. }
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5238. {
  5239. front: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(175, "lb"),
  5242. name: "Front",
  5243. image: {
  5244. source: "./media/characters/xera/front.svg",
  5245. extra: 2377 / 1972,
  5246. bottom: 75.5 / 2452
  5247. }
  5248. },
  5249. side: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(175, "lb"),
  5252. name: "Side",
  5253. image: {
  5254. source: "./media/characters/xera/side.svg",
  5255. extra: 2345 / 2019,
  5256. bottom: 39.7 / 2384
  5257. }
  5258. },
  5259. back: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(175, "lb"),
  5262. name: "Back",
  5263. image: {
  5264. source: "./media/characters/xera/back.svg",
  5265. extra: 2095 / 1984,
  5266. bottom: 67 / 2166
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Small",
  5273. height: math.unit(10, "feet")
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(500, "meters"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Macro+",
  5282. height: math.unit(10, "km")
  5283. },
  5284. {
  5285. name: "Gigamacro",
  5286. height: math.unit(25000, "km")
  5287. },
  5288. {
  5289. name: "Teramacro",
  5290. height: math.unit(3e6, "km")
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(175, "lb"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/nebula/front.svg",
  5303. extra: 2566 / 2362,
  5304. bottom: 81 / 2644
  5305. }
  5306. }
  5307. },
  5308. [
  5309. {
  5310. name: "Small",
  5311. height: math.unit(4.5, "meters")
  5312. },
  5313. {
  5314. name: "Macro",
  5315. height: math.unit(1500, "meters"),
  5316. default: true
  5317. },
  5318. {
  5319. name: "Megamacro",
  5320. height: math.unit(150, "km")
  5321. },
  5322. {
  5323. name: "Gigamacro",
  5324. height: math.unit(27000, "km")
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5330. {
  5331. front: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(225, "lb"),
  5334. name: "Front",
  5335. image: {
  5336. source: "./media/characters/abysgar/front.svg",
  5337. extra: 1739/1614,
  5338. bottom: 71/1810
  5339. }
  5340. },
  5341. frontNsfw: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(225, "lb"),
  5344. name: "Front (NSFW)",
  5345. image: {
  5346. source: "./media/characters/abysgar/front-nsfw.svg",
  5347. extra: 1739/1614,
  5348. bottom: 71/1810
  5349. }
  5350. },
  5351. back: {
  5352. height: math.unit(4.6, "feet"),
  5353. weight: math.unit(225, "lb"),
  5354. name: "Back",
  5355. image: {
  5356. source: "./media/characters/abysgar/back.svg",
  5357. extra: 1384/1327,
  5358. bottom: 0/1384
  5359. }
  5360. },
  5361. head: {
  5362. height: math.unit(1.25, "feet"),
  5363. name: "Head",
  5364. image: {
  5365. source: "./media/characters/abysgar/head.svg",
  5366. extra: 669/569,
  5367. bottom: 0/669
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Small",
  5374. height: math.unit(4.5, "meters")
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(1250, "meters"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Megamacro",
  5383. height: math.unit(125, "km")
  5384. },
  5385. {
  5386. name: "Gigamacro",
  5387. height: math.unit(26000, "km")
  5388. }
  5389. ]
  5390. ))
  5391. characterMakers.push(() => makeCharacter(
  5392. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5393. {
  5394. front: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(180, "lb"),
  5397. name: "Front",
  5398. image: {
  5399. source: "./media/characters/yakuz/front.svg"
  5400. }
  5401. }
  5402. },
  5403. [
  5404. {
  5405. name: "Small",
  5406. height: math.unit(5, "meters")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(1500, "meters"),
  5411. default: true
  5412. },
  5413. {
  5414. name: "Megamacro",
  5415. height: math.unit(200, "km")
  5416. },
  5417. {
  5418. name: "Gigamacro",
  5419. height: math.unit(100000, "km")
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(175, "lb"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/mirova/front.svg",
  5432. extra: 3334 / 3071,
  5433. bottom: 42 / 3375.6
  5434. }
  5435. }
  5436. },
  5437. [
  5438. {
  5439. name: "Small",
  5440. height: math.unit(5, "meters")
  5441. },
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(900, "meters"),
  5445. default: true
  5446. },
  5447. {
  5448. name: "Megamacro",
  5449. height: math.unit(135, "km")
  5450. },
  5451. {
  5452. name: "Gigamacro",
  5453. height: math.unit(20000, "km")
  5454. }
  5455. ]
  5456. ))
  5457. characterMakers.push(() => makeCharacter(
  5458. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5459. {
  5460. side: {
  5461. height: math.unit(28.35, "feet"),
  5462. weight: math.unit(99.75, "tons"),
  5463. name: "Side",
  5464. image: {
  5465. source: "./media/characters/asana-mech/side.svg",
  5466. extra: 923 / 699,
  5467. bottom: 50 / 975
  5468. }
  5469. },
  5470. chaingun: {
  5471. height: math.unit(7, "feet"),
  5472. weight: math.unit(2400, "lb"),
  5473. name: "Chaingun",
  5474. image: {
  5475. source: "./media/characters/asana-mech/chaingun.svg"
  5476. }
  5477. },
  5478. laser: {
  5479. height: math.unit(7.12, "feet"),
  5480. weight: math.unit(2000, "lb"),
  5481. name: "Laser",
  5482. image: {
  5483. source: "./media/characters/asana-mech/laser.svg"
  5484. }
  5485. },
  5486. },
  5487. [
  5488. {
  5489. name: "Normal",
  5490. height: math.unit(28.35, "feet"),
  5491. default: true
  5492. },
  5493. {
  5494. name: "Macro",
  5495. height: math.unit(2500, "feet")
  5496. },
  5497. {
  5498. name: "Megamacro",
  5499. height: math.unit(25, "miles")
  5500. },
  5501. {
  5502. name: "Examacro",
  5503. height: math.unit(6e8, "lightyears")
  5504. },
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(5, "meters"),
  5512. weight: math.unit(1000, "kg"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/asche/front.svg",
  5516. extra: 1258 / 1190,
  5517. bottom: 47 / 1305
  5518. }
  5519. },
  5520. frontUnderwear: {
  5521. height: math.unit(5, "meters"),
  5522. weight: math.unit(1000, "kg"),
  5523. name: "Front (Underwear)",
  5524. image: {
  5525. source: "./media/characters/asche/front-underwear.svg",
  5526. extra: 1258 / 1190,
  5527. bottom: 47 / 1305
  5528. }
  5529. },
  5530. frontDressed: {
  5531. height: math.unit(5, "meters"),
  5532. weight: math.unit(1000, "kg"),
  5533. name: "Front (Dressed)",
  5534. image: {
  5535. source: "./media/characters/asche/front-dressed.svg",
  5536. extra: 1258 / 1190,
  5537. bottom: 47 / 1305
  5538. }
  5539. },
  5540. frontArmor: {
  5541. height: math.unit(5, "meters"),
  5542. weight: math.unit(1000, "kg"),
  5543. name: "Front (Armored)",
  5544. image: {
  5545. source: "./media/characters/asche/front-armored.svg",
  5546. extra: 1374 / 1308,
  5547. bottom: 23 / 1397
  5548. }
  5549. },
  5550. mp724: {
  5551. height: math.unit(0.96, "meters"),
  5552. weight: math.unit(38, "kg"),
  5553. name: "H&K MP724",
  5554. image: {
  5555. source: "./media/characters/asche/h&k-mp724.svg"
  5556. }
  5557. },
  5558. side: {
  5559. height: math.unit(5, "meters"),
  5560. weight: math.unit(1000, "kg"),
  5561. name: "Side",
  5562. image: {
  5563. source: "./media/characters/asche/side.svg",
  5564. extra: 1717 / 1609,
  5565. bottom: 0.005
  5566. }
  5567. },
  5568. back: {
  5569. height: math.unit(5, "meters"),
  5570. weight: math.unit(1000, "kg"),
  5571. name: "Back",
  5572. image: {
  5573. source: "./media/characters/asche/back.svg",
  5574. extra: 1570 / 1501
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "DEFCON 5",
  5581. height: math.unit(5, "meters")
  5582. },
  5583. {
  5584. name: "DEFCON 4",
  5585. height: math.unit(500, "meters"),
  5586. default: true
  5587. },
  5588. {
  5589. name: "DEFCON 3",
  5590. height: math.unit(5, "km")
  5591. },
  5592. {
  5593. name: "DEFCON 2",
  5594. height: math.unit(500, "km")
  5595. },
  5596. {
  5597. name: "DEFCON 1",
  5598. height: math.unit(500000, "km")
  5599. },
  5600. {
  5601. name: "DEFCON 0",
  5602. height: math.unit(3, "gigaparsecs")
  5603. },
  5604. ]
  5605. ))
  5606. characterMakers.push(() => makeCharacter(
  5607. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5608. {
  5609. front: {
  5610. height: math.unit(7, "feet"),
  5611. weight: math.unit(92.7, "kg"),
  5612. name: "Front",
  5613. image: {
  5614. source: "./media/characters/gale/front.svg",
  5615. extra: 977/919,
  5616. bottom: 105/1082
  5617. }
  5618. },
  5619. side: {
  5620. height: math.unit(6.7, "feet"),
  5621. weight: math.unit(92.7, "kg"),
  5622. name: "Side",
  5623. image: {
  5624. source: "./media/characters/gale/side.svg",
  5625. extra: 978/922,
  5626. bottom: 140/1118
  5627. }
  5628. },
  5629. back: {
  5630. height: math.unit(7, "feet"),
  5631. weight: math.unit(92.7, "kg"),
  5632. name: "Back",
  5633. image: {
  5634. source: "./media/characters/gale/back.svg",
  5635. extra: 966/920,
  5636. bottom: 61/1027
  5637. }
  5638. },
  5639. maw: {
  5640. height: math.unit(2.23, "feet"),
  5641. name: "Maw",
  5642. image: {
  5643. source: "./media/characters/gale/maw.svg"
  5644. }
  5645. },
  5646. foot: {
  5647. height: math.unit(2.1, "feet"),
  5648. name: "Foot",
  5649. image: {
  5650. source: "./media/characters/gale/foot.svg"
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(7, "feet")
  5658. },
  5659. {
  5660. name: "Macro",
  5661. height: math.unit(150, "feet"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Macro+",
  5666. height: math.unit(300, "feet")
  5667. },
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5672. {
  5673. front: {
  5674. height: math.unit(5 + 10/12, "feet"),
  5675. weight: math.unit(67, "kg"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/draylen/front.svg",
  5679. extra: 832/777,
  5680. bottom: 85/917
  5681. }
  5682. }
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(5 + 10/12, "feet")
  5688. },
  5689. {
  5690. name: "Macro",
  5691. height: math.unit(150, "feet"),
  5692. default: true
  5693. }
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5698. {
  5699. front: {
  5700. height: math.unit(7 + 9 / 12, "feet"),
  5701. weight: math.unit(379, "lbs"),
  5702. name: "Front",
  5703. image: {
  5704. source: "./media/characters/chez/front.svg"
  5705. }
  5706. },
  5707. side: {
  5708. height: math.unit(7 + 9 / 12, "feet"),
  5709. weight: math.unit(379, "lbs"),
  5710. name: "Side",
  5711. image: {
  5712. source: "./media/characters/chez/side.svg"
  5713. }
  5714. }
  5715. },
  5716. [
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(7 + 9 / 12, "feet"),
  5720. default: true
  5721. },
  5722. {
  5723. name: "God King",
  5724. height: math.unit(9750000, "meters")
  5725. }
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5730. {
  5731. front: {
  5732. height: math.unit(6, "feet"),
  5733. weight: math.unit(275, "lbs"),
  5734. name: "Front",
  5735. image: {
  5736. source: "./media/characters/kaylum/front.svg",
  5737. bottom: 0.01,
  5738. extra: 1166 / 1031
  5739. }
  5740. },
  5741. frontWingless: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(275, "lbs"),
  5744. name: "Front (Wingless)",
  5745. image: {
  5746. source: "./media/characters/kaylum/front-wingless.svg",
  5747. bottom: 0.01,
  5748. extra: 1117 / 1031
  5749. }
  5750. }
  5751. },
  5752. [
  5753. {
  5754. name: "Normal",
  5755. height: math.unit(3.05, "meters")
  5756. },
  5757. {
  5758. name: "Master",
  5759. height: math.unit(5.5, "meters")
  5760. },
  5761. {
  5762. name: "Rampage",
  5763. height: math.unit(19, "meters")
  5764. },
  5765. {
  5766. name: "Macro Lite",
  5767. height: math.unit(37, "meters")
  5768. },
  5769. {
  5770. name: "Hyper Predator",
  5771. height: math.unit(61, "meters")
  5772. },
  5773. {
  5774. name: "Macro",
  5775. height: math.unit(138, "meters"),
  5776. default: true
  5777. }
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(5 + 5 / 12, "feet"),
  5785. weight: math.unit(120, "lbs"),
  5786. name: "Front",
  5787. image: {
  5788. source: "./media/characters/geta/front.svg",
  5789. extra: 1003/933,
  5790. bottom: 21/1024
  5791. }
  5792. },
  5793. paw: {
  5794. height: math.unit(0.35, "feet"),
  5795. name: "Paw",
  5796. image: {
  5797. source: "./media/characters/geta/paw.svg"
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Micro",
  5804. height: math.unit(3, "inches"),
  5805. default: true
  5806. },
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(5 + 5 / 12, "feet")
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(300, "lbs"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/tyrnn/front.svg"
  5822. }
  5823. }
  5824. },
  5825. [
  5826. {
  5827. name: "Main Height",
  5828. height: math.unit(355, "feet"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Fave. Height",
  5833. height: math.unit(2400, "feet")
  5834. }
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(300, "lbs"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/appledectomy/front.svg"
  5846. }
  5847. }
  5848. },
  5849. [
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(2500, "feet")
  5853. },
  5854. {
  5855. name: "Megamacro",
  5856. height: math.unit(50, "miles"),
  5857. default: true
  5858. },
  5859. {
  5860. name: "Gigamacro",
  5861. height: math.unit(5000, "miles")
  5862. },
  5863. {
  5864. name: "Teramacro",
  5865. height: math.unit(250000, "miles")
  5866. },
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5871. {
  5872. front: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(200, "lbs"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/vulpes/front.svg",
  5878. extra: 573 / 543,
  5879. bottom: 0.033
  5880. }
  5881. },
  5882. side: {
  5883. height: math.unit(6, "feet"),
  5884. weight: math.unit(200, "lbs"),
  5885. name: "Side",
  5886. image: {
  5887. source: "./media/characters/vulpes/side.svg",
  5888. extra: 577 / 549,
  5889. bottom: 11 / 588
  5890. }
  5891. },
  5892. back: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(200, "lbs"),
  5895. name: "Back",
  5896. image: {
  5897. source: "./media/characters/vulpes/back.svg",
  5898. extra: 573 / 549,
  5899. bottom: 20 / 593
  5900. }
  5901. },
  5902. feet: {
  5903. height: math.unit(1.276, "feet"),
  5904. name: "Feet",
  5905. image: {
  5906. source: "./media/characters/vulpes/feet.svg"
  5907. }
  5908. },
  5909. maw: {
  5910. height: math.unit(1.18, "feet"),
  5911. name: "Maw",
  5912. image: {
  5913. source: "./media/characters/vulpes/maw.svg"
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Micro",
  5920. height: math.unit(2, "inches")
  5921. },
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(6.3, "feet")
  5925. },
  5926. {
  5927. name: "Macro",
  5928. height: math.unit(850, "feet")
  5929. },
  5930. {
  5931. name: "Megamacro",
  5932. height: math.unit(7500, "feet"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Gigamacro",
  5937. height: math.unit(570000, "miles")
  5938. }
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5943. {
  5944. front: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(210, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/rain-fallen/front.svg"
  5950. }
  5951. },
  5952. side: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(210, "lbs"),
  5955. name: "Side",
  5956. image: {
  5957. source: "./media/characters/rain-fallen/side.svg"
  5958. }
  5959. },
  5960. back: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(210, "lbs"),
  5963. name: "Back",
  5964. image: {
  5965. source: "./media/characters/rain-fallen/back.svg"
  5966. }
  5967. },
  5968. feral: {
  5969. height: math.unit(9, "feet"),
  5970. weight: math.unit(700, "lbs"),
  5971. name: "Feral",
  5972. image: {
  5973. source: "./media/characters/rain-fallen/feral.svg"
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Meddling with Mortals",
  5980. height: math.unit(8 + 8/12, "feet")
  5981. },
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(5, "meter")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(150, "meter"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Megamacro",
  5993. height: math.unit(278e6, "meter")
  5994. },
  5995. {
  5996. name: "Gigamacro",
  5997. height: math.unit(2e9, "meter")
  5998. },
  5999. {
  6000. name: "Teramacro",
  6001. height: math.unit(8e12, "meter")
  6002. },
  6003. {
  6004. name: "Devourer",
  6005. height: math.unit(14, "zettameters")
  6006. },
  6007. {
  6008. name: "Scarlet King",
  6009. height: math.unit(18, "yottameters")
  6010. },
  6011. {
  6012. name: "Void",
  6013. height: math.unit(1e88, "yottameters")
  6014. }
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6019. {
  6020. standing: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(180, "lbs"),
  6023. name: "Standing",
  6024. image: {
  6025. source: "./media/characters/zaakira/standing.svg",
  6026. extra: 1599/1504,
  6027. bottom: 39/1638
  6028. }
  6029. },
  6030. laying: {
  6031. height: math.unit(3.3, "feet"),
  6032. weight: math.unit(180, "lbs"),
  6033. name: "Laying",
  6034. image: {
  6035. source: "./media/characters/zaakira/laying.svg"
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(12, "feet")
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(279, "feet"),
  6047. default: true
  6048. }
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6053. {
  6054. femSfw: {
  6055. height: math.unit(8, "feet"),
  6056. weight: math.unit(350, "lb"),
  6057. name: "Fem",
  6058. image: {
  6059. source: "./media/characters/sigvald/fem-sfw.svg",
  6060. extra: 182 / 164,
  6061. bottom: 8.7 / 190.5
  6062. }
  6063. },
  6064. femNsfw: {
  6065. height: math.unit(8, "feet"),
  6066. weight: math.unit(350, "lb"),
  6067. name: "Fem (NSFW)",
  6068. image: {
  6069. source: "./media/characters/sigvald/fem-nsfw.svg",
  6070. extra: 182 / 164,
  6071. bottom: 8.7 / 190.5
  6072. }
  6073. },
  6074. maleNsfw: {
  6075. height: math.unit(8, "feet"),
  6076. weight: math.unit(350, "lb"),
  6077. name: "Male (NSFW)",
  6078. image: {
  6079. source: "./media/characters/sigvald/male-nsfw.svg",
  6080. extra: 182 / 164,
  6081. bottom: 8.7 / 190.5
  6082. }
  6083. },
  6084. hermNsfw: {
  6085. height: math.unit(8, "feet"),
  6086. weight: math.unit(350, "lb"),
  6087. name: "Herm (NSFW)",
  6088. image: {
  6089. source: "./media/characters/sigvald/herm-nsfw.svg",
  6090. extra: 182 / 164,
  6091. bottom: 8.7 / 190.5
  6092. }
  6093. },
  6094. dick: {
  6095. height: math.unit(2.36, "feet"),
  6096. name: "Dick",
  6097. image: {
  6098. source: "./media/characters/sigvald/dick.svg"
  6099. }
  6100. },
  6101. eye: {
  6102. height: math.unit(0.31, "feet"),
  6103. name: "Eye",
  6104. image: {
  6105. source: "./media/characters/sigvald/eye.svg"
  6106. }
  6107. },
  6108. mouth: {
  6109. height: math.unit(0.92, "feet"),
  6110. name: "Mouth",
  6111. image: {
  6112. source: "./media/characters/sigvald/mouth.svg"
  6113. }
  6114. },
  6115. paws: {
  6116. height: math.unit(2.2, "feet"),
  6117. name: "Paws",
  6118. image: {
  6119. source: "./media/characters/sigvald/paws.svg"
  6120. }
  6121. }
  6122. },
  6123. [
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(8, "feet")
  6127. },
  6128. {
  6129. name: "Large",
  6130. height: math.unit(12, "feet")
  6131. },
  6132. {
  6133. name: "Larger",
  6134. height: math.unit(20, "feet")
  6135. },
  6136. {
  6137. name: "Macro",
  6138. height: math.unit(150, "feet")
  6139. },
  6140. {
  6141. name: "Macro+",
  6142. height: math.unit(200, "feet"),
  6143. default: true
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6149. {
  6150. anthro_front: {
  6151. height: math.unit(5 + 11/12, "feet"),
  6152. weight: math.unit(250, "lb"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/scott/anthro-front.svg",
  6156. extra: 851/781,
  6157. bottom: 54/905
  6158. },
  6159. form: "anthro",
  6160. default: true
  6161. },
  6162. anthro_side: {
  6163. height: math.unit(5.1, "feet"),
  6164. weight: math.unit(250, "lb"),
  6165. name: "Side",
  6166. image: {
  6167. source: "./media/characters/scott/anthro-side.svg"
  6168. },
  6169. form: "anthro",
  6170. },
  6171. anthro_dick: {
  6172. height: math.unit(1.33, "feet"),
  6173. name: "Dick",
  6174. image: {
  6175. source: "./media/characters/scott/anthro-dick.svg"
  6176. },
  6177. form: "anthro",
  6178. },
  6179. side: {
  6180. height: math.unit(12, "feet"),
  6181. weight: math.unit(2000, "kg"),
  6182. name: "Side",
  6183. image: {
  6184. source: "./media/characters/scott/side.svg",
  6185. extra: 754 / 724,
  6186. bottom: 0.069
  6187. },
  6188. form: "taur",
  6189. default: true
  6190. },
  6191. upright: {
  6192. height: math.unit(12, "feet"),
  6193. weight: math.unit(2000, "kg"),
  6194. name: "Upright",
  6195. image: {
  6196. source: "./media/characters/scott/upright.svg",
  6197. extra: 3881 / 3722,
  6198. bottom: 0.05
  6199. },
  6200. form: "taur",
  6201. },
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(5 + 11/12, "feet"),
  6207. default: true,
  6208. form: "anthro"
  6209. },
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(12, "feet"),
  6213. default: true,
  6214. form: "taur"
  6215. },
  6216. ],
  6217. {
  6218. "anthro": {
  6219. name: "Anthro",
  6220. default: true
  6221. },
  6222. "taur": {
  6223. name: "Taur",
  6224. },
  6225. }
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6229. {
  6230. side: {
  6231. height: math.unit(8, "meters"),
  6232. weight: math.unit(84755, "lbs"),
  6233. name: "Side",
  6234. image: {
  6235. source: "./media/characters/tobias/side.svg",
  6236. extra: 1474 / 1096,
  6237. bottom: 38.9 / 1513.1235
  6238. }
  6239. },
  6240. maw: {
  6241. height: math.unit(2.3, "meters"),
  6242. name: "Maw",
  6243. image: {
  6244. source: "./media/characters/tobias/maw.svg"
  6245. }
  6246. },
  6247. burp: {
  6248. height: math.unit(2.85, "meters"),
  6249. name: "Burp",
  6250. image: {
  6251. source: "./media/characters/tobias/burp.svg"
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(8, "meters"),
  6259. default: true
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6265. {
  6266. front: {
  6267. height: math.unit(5.5, "feet"),
  6268. weight: math.unit(400, "lbs"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/kieran/front.svg",
  6272. extra: 2694 / 2364,
  6273. bottom: 217 / 2908
  6274. }
  6275. },
  6276. side: {
  6277. height: math.unit(5.5, "feet"),
  6278. weight: math.unit(400, "lbs"),
  6279. name: "Side",
  6280. image: {
  6281. source: "./media/characters/kieran/side.svg",
  6282. extra: 875 / 777,
  6283. bottom: 84.6 / 959
  6284. }
  6285. },
  6286. },
  6287. [
  6288. {
  6289. name: "Normal",
  6290. height: math.unit(5.5, "feet"),
  6291. default: true
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6297. {
  6298. side: {
  6299. height: math.unit(2, "meters"),
  6300. weight: math.unit(70, "kg"),
  6301. name: "Side",
  6302. image: {
  6303. source: "./media/characters/sanya/side.svg",
  6304. bottom: 0.02,
  6305. extra: 1.02
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Small",
  6312. height: math.unit(2, "meters")
  6313. },
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(3, "meters")
  6317. },
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(16, "meters"),
  6321. default: true
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(2, "meters"),
  6330. weight: math.unit(120, "kg"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/miranda/front.svg",
  6334. extra: 195 / 185,
  6335. bottom: 10.9 / 206.5
  6336. }
  6337. },
  6338. back: {
  6339. height: math.unit(2, "meters"),
  6340. weight: math.unit(120, "kg"),
  6341. name: "Back",
  6342. image: {
  6343. source: "./media/characters/miranda/back.svg",
  6344. extra: 201 / 193,
  6345. bottom: 2.3 / 203.7
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(10, "feet"),
  6353. default: true
  6354. }
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "James", species: ["deer"], tags: ["anthro"] },
  6359. {
  6360. side: {
  6361. height: math.unit(2, "meters"),
  6362. weight: math.unit(100, "kg"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/james/front.svg",
  6366. extra: 10 / 8.5
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(8.5, "feet"),
  6374. default: true
  6375. }
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6380. {
  6381. side: {
  6382. height: math.unit(9.5, "feet"),
  6383. weight: math.unit(2500, "lbs"),
  6384. name: "Side",
  6385. image: {
  6386. source: "./media/characters/heather/side.svg"
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(9.5, "feet"),
  6394. default: true
  6395. }
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6400. {
  6401. side: {
  6402. height: math.unit(6.5, "feet"),
  6403. weight: math.unit(400, "lbs"),
  6404. name: "Side",
  6405. image: {
  6406. source: "./media/characters/lukas/side.svg",
  6407. extra: 7.25 / 6.5
  6408. }
  6409. },
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(6.5, "feet"),
  6415. default: true
  6416. }
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6421. {
  6422. side: {
  6423. height: math.unit(5, "feet"),
  6424. weight: math.unit(3000, "lbs"),
  6425. name: "Side",
  6426. image: {
  6427. source: "./media/characters/louise/side.svg"
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(5, "feet"),
  6435. default: true
  6436. }
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6441. {
  6442. side: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(150, "lbs"),
  6445. name: "Side",
  6446. image: {
  6447. source: "./media/characters/ramona/side.svg",
  6448. extra: 871/854,
  6449. bottom: 41/912
  6450. }
  6451. },
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(6 + 4/12, "feet")
  6457. },
  6458. {
  6459. name: "Minimacro",
  6460. height: math.unit(5.3, "meters"),
  6461. default: true
  6462. },
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(20, "stories")
  6466. },
  6467. {
  6468. name: "Macro+",
  6469. height: math.unit(50, "stories")
  6470. },
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6475. {
  6476. standing: {
  6477. height: math.unit(5.75, "feet"),
  6478. weight: math.unit(160, "lbs"),
  6479. name: "Standing",
  6480. image: {
  6481. source: "./media/characters/deerpuff/standing.svg",
  6482. extra: 682 / 624
  6483. }
  6484. },
  6485. sitting: {
  6486. height: math.unit(5.75 / 1.79, "feet"),
  6487. weight: math.unit(160, "lbs"),
  6488. name: "Sitting",
  6489. image: {
  6490. source: "./media/characters/deerpuff/sitting.svg",
  6491. bottom: 44 / 400,
  6492. extra: 1
  6493. }
  6494. },
  6495. taurLaying: {
  6496. height: math.unit(6, "feet"),
  6497. weight: math.unit(400, "lbs"),
  6498. name: "Taur (Laying)",
  6499. image: {
  6500. source: "./media/characters/deerpuff/taur-laying.svg"
  6501. }
  6502. },
  6503. },
  6504. [
  6505. {
  6506. name: "Puffball",
  6507. height: math.unit(6, "inches")
  6508. },
  6509. {
  6510. name: "Normalpuff",
  6511. height: math.unit(5.75, "feet")
  6512. },
  6513. {
  6514. name: "Macropuff",
  6515. height: math.unit(1500, "feet"),
  6516. default: true
  6517. },
  6518. {
  6519. name: "Megapuff",
  6520. height: math.unit(500, "miles")
  6521. },
  6522. {
  6523. name: "Gigapuff",
  6524. height: math.unit(250000, "miles")
  6525. },
  6526. {
  6527. name: "Omegapuff",
  6528. height: math.unit(1000, "lightyears")
  6529. },
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6534. {
  6535. stomping: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(170, "lbs"),
  6538. name: "Stomping",
  6539. image: {
  6540. source: "./media/characters/vivian/stomping.svg"
  6541. }
  6542. },
  6543. sitting: {
  6544. height: math.unit(6 / 1.75, "feet"),
  6545. weight: math.unit(170, "lbs"),
  6546. name: "Sitting",
  6547. image: {
  6548. source: "./media/characters/vivian/sitting.svg",
  6549. bottom: 1 / 6.4,
  6550. extra: 1,
  6551. }
  6552. },
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(7, "feet"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Macro",
  6562. height: math.unit(10, "stories")
  6563. },
  6564. {
  6565. name: "Macro+",
  6566. height: math.unit(30, "stories")
  6567. },
  6568. {
  6569. name: "Megamacro",
  6570. height: math.unit(10, "miles")
  6571. },
  6572. {
  6573. name: "Megamacro+",
  6574. height: math.unit(2750000, "meters")
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(160, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/prince/front.svg",
  6587. extra: 1938/1682,
  6588. bottom: 45/1983
  6589. }
  6590. },
  6591. back: {
  6592. height: math.unit(6, "feet"),
  6593. weight: math.unit(160, "lbs"),
  6594. name: "Back",
  6595. image: {
  6596. source: "./media/characters/prince/back.svg",
  6597. extra: 1955/1726,
  6598. bottom: 6/1961
  6599. }
  6600. },
  6601. },
  6602. [
  6603. {
  6604. name: "Normal",
  6605. height: math.unit(7.75, "feet"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Not cute",
  6610. height: math.unit(17, "feet")
  6611. },
  6612. {
  6613. name: "I said NOT",
  6614. height: math.unit(91, "feet")
  6615. },
  6616. {
  6617. name: "Please stop",
  6618. height: math.unit(560, "feet")
  6619. },
  6620. {
  6621. name: "What have you done",
  6622. height: math.unit(2200, "feet")
  6623. },
  6624. {
  6625. name: "Deer God",
  6626. height: math.unit(3.6, "miles")
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6632. {
  6633. standing: {
  6634. height: math.unit(6, "feet"),
  6635. weight: math.unit(300, "lbs"),
  6636. name: "Standing",
  6637. image: {
  6638. source: "./media/characters/psymon/standing.svg",
  6639. extra: 1888 / 1810,
  6640. bottom: 0.05
  6641. }
  6642. },
  6643. slithering: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(300, "lbs"),
  6646. name: "Slithering",
  6647. image: {
  6648. source: "./media/characters/psymon/slithering.svg",
  6649. extra: 1330 / 1224
  6650. }
  6651. },
  6652. slitheringAlt: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(300, "lbs"),
  6655. name: "Slithering (Alt)",
  6656. image: {
  6657. source: "./media/characters/psymon/slithering-alt.svg",
  6658. extra: 1330 / 1224
  6659. }
  6660. },
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(11.25, "feet"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Large",
  6670. height: math.unit(27, "feet")
  6671. },
  6672. {
  6673. name: "Giant",
  6674. height: math.unit(87, "feet")
  6675. },
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(365, "feet")
  6679. },
  6680. {
  6681. name: "Megamacro",
  6682. height: math.unit(3, "miles")
  6683. },
  6684. {
  6685. name: "World Serpent",
  6686. height: math.unit(8000, "miles")
  6687. },
  6688. ]
  6689. ))
  6690. characterMakers.push(() => makeCharacter(
  6691. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6692. {
  6693. front: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(180, "lbs"),
  6696. name: "Front",
  6697. image: {
  6698. source: "./media/characters/daimos/front.svg",
  6699. extra: 4160 / 3897,
  6700. bottom: 0.021
  6701. }
  6702. }
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(8, "feet"),
  6708. default: true
  6709. },
  6710. {
  6711. name: "Big Dog",
  6712. height: math.unit(22, "feet")
  6713. },
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(127, "feet")
  6717. },
  6718. {
  6719. name: "Megamacro",
  6720. height: math.unit(3600, "feet")
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6726. {
  6727. side: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(180, "lbs"),
  6730. name: "Side",
  6731. image: {
  6732. source: "./media/characters/blake/side.svg",
  6733. extra: 1212 / 1120,
  6734. bottom: 0.05
  6735. }
  6736. },
  6737. crouched: {
  6738. height: math.unit(6 * 0.57, "feet"),
  6739. weight: math.unit(180, "lbs"),
  6740. name: "Crouched",
  6741. image: {
  6742. source: "./media/characters/blake/crouched.svg",
  6743. extra: 840 / 587,
  6744. bottom: 0.04
  6745. }
  6746. },
  6747. bent: {
  6748. height: math.unit(6 * 0.75, "feet"),
  6749. weight: math.unit(180, "lbs"),
  6750. name: "Bent",
  6751. image: {
  6752. source: "./media/characters/blake/bent.svg",
  6753. extra: 592 / 544,
  6754. bottom: 0.035
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(8 + 1 / 6, "feet"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Big Backside",
  6766. height: math.unit(37, "feet")
  6767. },
  6768. {
  6769. name: "Subway Shredder",
  6770. height: math.unit(72, "feet")
  6771. },
  6772. {
  6773. name: "City Carver",
  6774. height: math.unit(1675, "feet")
  6775. },
  6776. {
  6777. name: "Tectonic Tweaker",
  6778. height: math.unit(2300, "miles")
  6779. },
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6784. {
  6785. front: {
  6786. height: math.unit(6, "feet"),
  6787. weight: math.unit(180, "lbs"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/guisetto/front.svg",
  6791. extra: 856 / 817,
  6792. bottom: 0.06
  6793. }
  6794. },
  6795. airborne: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(180, "lbs"),
  6798. name: "Airborne",
  6799. image: {
  6800. source: "./media/characters/guisetto/airborne.svg",
  6801. extra: 584 / 525
  6802. }
  6803. },
  6804. },
  6805. [
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(10 + 11 / 12, "feet"),
  6809. default: true
  6810. },
  6811. {
  6812. name: "Large",
  6813. height: math.unit(35, "feet")
  6814. },
  6815. {
  6816. name: "Macro",
  6817. height: math.unit(475, "feet")
  6818. },
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6823. {
  6824. front: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(180, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/luxor/front.svg",
  6830. extra: 2940 / 2152
  6831. }
  6832. },
  6833. back: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(180, "lbs"),
  6836. name: "Back",
  6837. image: {
  6838. source: "./media/characters/luxor/back.svg",
  6839. extra: 1083 / 960
  6840. }
  6841. },
  6842. },
  6843. [
  6844. {
  6845. name: "Normal",
  6846. height: math.unit(5 + 5 / 6, "feet"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Lamp",
  6851. height: math.unit(50, "feet")
  6852. },
  6853. {
  6854. name: "Lämp",
  6855. height: math.unit(300, "feet")
  6856. },
  6857. {
  6858. name: "The sun is a lamp",
  6859. height: math.unit(250000, "miles")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(50, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/huoyan/front.svg"
  6872. }
  6873. },
  6874. side: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(180, "lbs"),
  6877. name: "Side",
  6878. image: {
  6879. source: "./media/characters/huoyan/side.svg"
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Chef",
  6886. height: math.unit(9, "feet")
  6887. },
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(65, "feet"),
  6891. default: true
  6892. },
  6893. {
  6894. name: "Macro",
  6895. height: math.unit(780, "feet")
  6896. },
  6897. {
  6898. name: "Flaming Mountain",
  6899. height: math.unit(4.8, "miles")
  6900. },
  6901. {
  6902. name: "Celestial",
  6903. height: math.unit(765000, "miles")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(5 + 3 / 4, "feet"),
  6912. weight: math.unit(120, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/tails/front.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(5 + 3 / 4, "feet"),
  6923. default: true
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(4, "feet"),
  6932. weight: math.unit(50, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/rainy/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(800, "feet"),
  6943. default: true
  6944. }
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(150, "lbs"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/rainier/front.svg"
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Micro",
  6962. height: math.unit(2, "mm"),
  6963. default: true
  6964. }
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(8 + 4/12, "feet"),
  6972. weight: math.unit(450, "kilograms"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/andy-renard/front.svg",
  6976. extra: 862/809,
  6977. bottom: 85/947
  6978. },
  6979. extraAttributes: {
  6980. "pawSize": {
  6981. name: "Paw Size",
  6982. power: 2,
  6983. type: "area",
  6984. base: math.unit(0.45*0.3, "meters^2")
  6985. },
  6986. "handSize": {
  6987. name: "Hand Size",
  6988. power: 2,
  6989. type: "area",
  6990. base: math.unit(0.4 * 0.3, "meters^2")
  6991. },
  6992. "cockSize": {
  6993. name: "Cock Length",
  6994. power: 1,
  6995. type: "length",
  6996. base: math.unit(0.75, "meters")
  6997. },
  6998. "ballDiameter": {
  6999. name: "Ball Diameter",
  7000. power: 1,
  7001. type: "length",
  7002. base: math.unit(0.3, "meters")
  7003. },
  7004. "ballVolume": {
  7005. name: "Ball Volume",
  7006. power: 3,
  7007. type: "volume",
  7008. base: math.unit(0.01413716694, "meters^3")
  7009. },
  7010. }
  7011. },
  7012. back: {
  7013. height: math.unit(8 + 4/12, "feet"),
  7014. weight: math.unit(450, "kilograms"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/andy-renard/back.svg",
  7018. extra: 1112/1033,
  7019. bottom: 64/1176
  7020. },
  7021. extraAttributes: {
  7022. "pawSize": {
  7023. name: "Paw Size",
  7024. power: 2,
  7025. type: "area",
  7026. base: math.unit(0.45*0.3, "meters^2")
  7027. },
  7028. "handSize": {
  7029. name: "Hand Size",
  7030. power: 2,
  7031. type: "area",
  7032. base: math.unit(0.4 * 0.3, "meters^2")
  7033. },
  7034. "cockSize": {
  7035. name: "Cock Length",
  7036. power: 1,
  7037. type: "length",
  7038. base: math.unit(0.75, "meters")
  7039. },
  7040. "ballDiameter": {
  7041. name: "Ball Diameter",
  7042. power: 1,
  7043. type: "length",
  7044. base: math.unit(0.3, "meters")
  7045. },
  7046. "ballVolume": {
  7047. name: "Ball Volume",
  7048. power: 3,
  7049. type: "volume",
  7050. base: math.unit(0.01413716694, "meters^3")
  7051. },
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Tall",
  7058. height: math.unit(6 + 8/12, "feet")
  7059. },
  7060. {
  7061. name: "Very Tall",
  7062. height: math.unit(8 + 4/12, "feet")
  7063. },
  7064. {
  7065. name: "Mini Macro",
  7066. height: math.unit(15, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Giant",
  7071. height: math.unit(50, "feet")
  7072. },
  7073. {
  7074. name: "Nice",
  7075. height: math.unit(69, "feet")
  7076. },
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(100, "feet")
  7080. },
  7081. {
  7082. name: "Enormous",
  7083. height: math.unit(500, "feet")
  7084. },
  7085. {
  7086. name: "Gargantuan",
  7087. height: math.unit(1000, "feet")
  7088. },
  7089. {
  7090. name: "Mega",
  7091. height: math.unit(1, "mile")
  7092. },
  7093. {
  7094. name: "Giga",
  7095. height: math.unit(50, "miles")
  7096. },
  7097. {
  7098. name: "Tera",
  7099. height: math.unit(1000, "miles")
  7100. },
  7101. {
  7102. name: "Cosmic",
  7103. height: math.unit(1.5, "galaxies")
  7104. },
  7105. {
  7106. name: "God",
  7107. height: math.unit(1.5, "universes")
  7108. },
  7109. {
  7110. name: "Chief Execute God",
  7111. height: math.unit(1.5, "multiverses")
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(210, "lbs"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/cimmaron/front-sfw.svg",
  7124. extra: 701 / 676,
  7125. bottom: 0.046
  7126. }
  7127. },
  7128. back: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(210, "lbs"),
  7131. name: "Back",
  7132. image: {
  7133. source: "./media/characters/cimmaron/back-sfw.svg",
  7134. extra: 701 / 676,
  7135. bottom: 0.046
  7136. }
  7137. },
  7138. frontNsfw: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(210, "lbs"),
  7141. name: "Front (NSFW)",
  7142. image: {
  7143. source: "./media/characters/cimmaron/front-nsfw.svg",
  7144. extra: 701 / 676,
  7145. bottom: 0.046
  7146. }
  7147. },
  7148. backNsfw: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(210, "lbs"),
  7151. name: "Back (NSFW)",
  7152. image: {
  7153. source: "./media/characters/cimmaron/back-nsfw.svg",
  7154. extra: 701 / 676,
  7155. bottom: 0.046
  7156. }
  7157. },
  7158. dick: {
  7159. height: math.unit(1.714, "feet"),
  7160. name: "Dick",
  7161. image: {
  7162. source: "./media/characters/cimmaron/dick.svg"
  7163. }
  7164. },
  7165. },
  7166. [
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(6, "feet"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Macro Mayor",
  7174. height: math.unit(350, "meters")
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(6, "feet"),
  7183. weight: math.unit(200, "lbs"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/akari/front.svg",
  7187. extra: 962 / 901,
  7188. bottom: 0.04
  7189. }
  7190. }
  7191. },
  7192. [
  7193. {
  7194. name: "Micro",
  7195. height: math.unit(5, "inches"),
  7196. default: true
  7197. },
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(7, "feet")
  7201. },
  7202. ]
  7203. ))
  7204. characterMakers.push(() => makeCharacter(
  7205. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7206. {
  7207. front: {
  7208. height: math.unit(6, "feet"),
  7209. weight: math.unit(140, "lbs"),
  7210. name: "Front",
  7211. image: {
  7212. source: "./media/characters/cynosura/front.svg",
  7213. extra: 437/410,
  7214. bottom: 9/446
  7215. }
  7216. },
  7217. back: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(140, "lbs"),
  7220. name: "Back",
  7221. image: {
  7222. source: "./media/characters/cynosura/back.svg",
  7223. extra: 1304/1160,
  7224. bottom: 71/1375
  7225. }
  7226. },
  7227. },
  7228. [
  7229. {
  7230. name: "Micro",
  7231. height: math.unit(4, "inches")
  7232. },
  7233. {
  7234. name: "Normal",
  7235. height: math.unit(5.75, "feet"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Tall",
  7240. height: math.unit(10, "feet")
  7241. },
  7242. {
  7243. name: "Big",
  7244. height: math.unit(20, "feet")
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(50, "feet")
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(13 + 2/12, "feet"),
  7257. weight: math.unit(800, "kg"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/gin/front.svg",
  7261. extra: 1312/1191,
  7262. bottom: 45/1357
  7263. }
  7264. },
  7265. mouth: {
  7266. height: math.unit(2.39 * 1.8, "feet"),
  7267. name: "Mouth",
  7268. image: {
  7269. source: "./media/characters/gin/mouth.svg"
  7270. }
  7271. },
  7272. hand: {
  7273. height: math.unit(1.57 * 2.19, "feet"),
  7274. name: "Hand",
  7275. image: {
  7276. source: "./media/characters/gin/hand.svg"
  7277. }
  7278. },
  7279. foot: {
  7280. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7281. name: "Foot",
  7282. image: {
  7283. source: "./media/characters/gin/foot.svg"
  7284. }
  7285. },
  7286. sole: {
  7287. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7288. name: "Sole",
  7289. image: {
  7290. source: "./media/characters/gin/sole.svg"
  7291. }
  7292. },
  7293. },
  7294. [
  7295. {
  7296. name: "Very Small",
  7297. height: math.unit(13 + 2 / 12, "feet")
  7298. },
  7299. {
  7300. name: "Micro",
  7301. height: math.unit(600, "miles")
  7302. },
  7303. {
  7304. name: "Regular",
  7305. height: math.unit(20, "earths"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(2.2, "solarradii")
  7311. },
  7312. {
  7313. name: "Teramacro",
  7314. height: math.unit(1.2, "galaxies")
  7315. },
  7316. {
  7317. name: "Omegamacro",
  7318. height: math.unit(200, "universes")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(6 + 1 / 6, "feet"),
  7327. weight: math.unit(178, "lbs"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/guy/front.svg"
  7331. }
  7332. }
  7333. },
  7334. [
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(6 + 1 / 6, "feet"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Large",
  7342. height: math.unit(25 + 7 / 12, "feet")
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(60 + 9 / 12, "feet")
  7347. },
  7348. {
  7349. name: "Macro+",
  7350. height: math.unit(246, "feet")
  7351. },
  7352. {
  7353. name: "Macro++",
  7354. height: math.unit(878, "feet")
  7355. }
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(9, "feet"),
  7363. weight: math.unit(800, "lbs"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/tiberius/front.svg",
  7367. extra: 2295 / 2071
  7368. }
  7369. },
  7370. back: {
  7371. height: math.unit(9, "feet"),
  7372. weight: math.unit(800, "lbs"),
  7373. name: "Back",
  7374. image: {
  7375. source: "./media/characters/tiberius/back.svg",
  7376. extra: 2373 / 2160
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(9, "feet"),
  7384. default: true
  7385. }
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7390. {
  7391. front: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(600, "lbs"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/surgo/front.svg",
  7397. extra: 3591 / 2227
  7398. }
  7399. },
  7400. back: {
  7401. height: math.unit(6, "feet"),
  7402. weight: math.unit(600, "lbs"),
  7403. name: "Back",
  7404. image: {
  7405. source: "./media/characters/surgo/back.svg",
  7406. extra: 3557 / 2228
  7407. }
  7408. },
  7409. laying: {
  7410. height: math.unit(6 * 0.85, "feet"),
  7411. weight: math.unit(600, "lbs"),
  7412. name: "Laying",
  7413. image: {
  7414. source: "./media/characters/surgo/laying.svg"
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(6, "feet"),
  7422. default: true
  7423. }
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7428. {
  7429. side: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(150, "lbs"),
  7432. name: "Side",
  7433. image: {
  7434. source: "./media/characters/cibus/side.svg",
  7435. extra: 800 / 400
  7436. }
  7437. },
  7438. },
  7439. [
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(6, "feet"),
  7443. default: true
  7444. }
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(240, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/nibbles/front.svg"
  7456. }
  7457. },
  7458. side: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(240, "lbs"),
  7461. name: "Side",
  7462. image: {
  7463. source: "./media/characters/nibbles/side.svg"
  7464. }
  7465. },
  7466. },
  7467. [
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(9, "feet"),
  7471. default: true
  7472. }
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7477. {
  7478. side: {
  7479. height: math.unit(5 + 1 / 6, "feet"),
  7480. weight: math.unit(130, "lbs"),
  7481. name: "Side",
  7482. image: {
  7483. source: "./media/characters/rikky/side.svg",
  7484. extra: 851 / 801
  7485. }
  7486. },
  7487. },
  7488. [
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(5 + 1 / 6, "feet")
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(152, "feet"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Megamacro",
  7500. height: math.unit(7, "miles")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7506. {
  7507. side: {
  7508. height: math.unit(370, "cm"),
  7509. weight: math.unit(350, "lbs"),
  7510. name: "Side",
  7511. image: {
  7512. source: "./media/characters/malfressa/side.svg"
  7513. }
  7514. },
  7515. walking: {
  7516. height: math.unit(370, "cm"),
  7517. weight: math.unit(350, "lbs"),
  7518. name: "Walking",
  7519. image: {
  7520. source: "./media/characters/malfressa/walking.svg"
  7521. }
  7522. },
  7523. feral: {
  7524. height: math.unit(2500, "cm"),
  7525. weight: math.unit(100000, "lbs"),
  7526. name: "Feral",
  7527. image: {
  7528. source: "./media/characters/malfressa/feral.svg",
  7529. extra: 2108 / 837,
  7530. bottom: 0.02
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(370, "cm")
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(300, "meters"),
  7542. default: true
  7543. }
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(60, "kg"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/jaro/front.svg",
  7555. extra: 845/817,
  7556. bottom: 45/890
  7557. }
  7558. },
  7559. back: {
  7560. height: math.unit(6, "feet"),
  7561. weight: math.unit(60, "kg"),
  7562. name: "Back",
  7563. image: {
  7564. source: "./media/characters/jaro/back.svg",
  7565. extra: 847/817,
  7566. bottom: 34/881
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Micro",
  7573. height: math.unit(7, "inches")
  7574. },
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(5.5, "feet"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Minimacro",
  7582. height: math.unit(20, "feet")
  7583. },
  7584. {
  7585. name: "Macro",
  7586. height: math.unit(200, "meters")
  7587. }
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(6, "feet"),
  7595. weight: math.unit(195, "lb"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/rogue/front.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(90, "feet"),
  7606. default: true
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7612. {
  7613. standing: {
  7614. height: math.unit(5 + 8 / 12, "feet"),
  7615. weight: math.unit(140, "lb"),
  7616. name: "Standing",
  7617. image: {
  7618. source: "./media/characters/piper/standing.svg",
  7619. extra: 1440/1284,
  7620. bottom: 66/1506
  7621. }
  7622. },
  7623. running: {
  7624. height: math.unit(5 + 8 / 12, "feet"),
  7625. weight: math.unit(140, "lb"),
  7626. name: "Running",
  7627. image: {
  7628. source: "./media/characters/piper/running.svg",
  7629. extra: 3948/3655,
  7630. bottom: 0/3948
  7631. }
  7632. },
  7633. sole: {
  7634. height: math.unit(0.81, "feet"),
  7635. weight: math.unit(2, "kg"),
  7636. name: "Sole",
  7637. image: {
  7638. source: "./media/characters/piper/sole.svg"
  7639. }
  7640. },
  7641. nipple: {
  7642. height: math.unit(0.25, "feet"),
  7643. weight: math.unit(1.5, "lb"),
  7644. name: "Nipple",
  7645. image: {
  7646. source: "./media/characters/piper/nipple.svg"
  7647. }
  7648. },
  7649. head: {
  7650. height: math.unit(1.1, "feet"),
  7651. name: "Head",
  7652. image: {
  7653. source: "./media/characters/piper/head.svg"
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Micro",
  7660. height: math.unit(2, "inches")
  7661. },
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(5 + 8 / 12, "feet")
  7665. },
  7666. {
  7667. name: "Macro",
  7668. height: math.unit(250, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(7, "miles")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(220, "lb"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/gemini/front.svg"
  7686. }
  7687. },
  7688. back: {
  7689. height: math.unit(6, "feet"),
  7690. weight: math.unit(220, "lb"),
  7691. name: "Back",
  7692. image: {
  7693. source: "./media/characters/gemini/back.svg"
  7694. }
  7695. },
  7696. kneeling: {
  7697. height: math.unit(6 / 1.5, "feet"),
  7698. weight: math.unit(220, "lb"),
  7699. name: "Kneeling",
  7700. image: {
  7701. source: "./media/characters/gemini/kneeling.svg",
  7702. bottom: 0.02
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(300, "meters"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Megamacro",
  7714. height: math.unit(6900, "meters")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7720. {
  7721. anthro: {
  7722. height: math.unit(2.35, "meters"),
  7723. weight: math.unit(73, "kg"),
  7724. name: "Anthro",
  7725. image: {
  7726. source: "./media/characters/alicia/anthro.svg",
  7727. extra: 2571 / 2385,
  7728. bottom: 75 / 2648
  7729. }
  7730. },
  7731. paw: {
  7732. height: math.unit(1.32, "feet"),
  7733. name: "Paw",
  7734. image: {
  7735. source: "./media/characters/alicia/paw.svg"
  7736. }
  7737. },
  7738. feral: {
  7739. height: math.unit(1.69, "meters"),
  7740. weight: math.unit(73, "kg"),
  7741. name: "Feral",
  7742. image: {
  7743. source: "./media/characters/alicia/feral.svg",
  7744. extra: 2123 / 1715,
  7745. bottom: 222 / 2349
  7746. }
  7747. },
  7748. },
  7749. [
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(2.35, "meters")
  7753. },
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(60, "meters"),
  7757. default: true
  7758. },
  7759. {
  7760. name: "Megamacro",
  7761. height: math.unit(10000, "kilometers")
  7762. },
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(7, "feet"),
  7770. weight: math.unit(250, "lbs"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/archy/front.svg"
  7774. }
  7775. }
  7776. },
  7777. [
  7778. {
  7779. name: "Micro",
  7780. height: math.unit(1, "inch")
  7781. },
  7782. {
  7783. name: "Shorty",
  7784. height: math.unit(5, "feet")
  7785. },
  7786. {
  7787. name: "Normal",
  7788. height: math.unit(7, "feet")
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(600, "meters"),
  7793. default: true
  7794. },
  7795. {
  7796. name: "Megamacro",
  7797. height: math.unit(1, "mile")
  7798. },
  7799. ]
  7800. ))
  7801. characterMakers.push(() => makeCharacter(
  7802. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7803. {
  7804. front: {
  7805. height: math.unit(1.65, "meters"),
  7806. weight: math.unit(74, "kg"),
  7807. name: "Front",
  7808. image: {
  7809. source: "./media/characters/berri/front.svg",
  7810. extra: 857 / 837,
  7811. bottom: 18 / 877
  7812. }
  7813. },
  7814. bum: {
  7815. height: math.unit(1.46, "feet"),
  7816. name: "Bum",
  7817. image: {
  7818. source: "./media/characters/berri/bum.svg"
  7819. }
  7820. },
  7821. mouth: {
  7822. height: math.unit(0.44, "feet"),
  7823. name: "Mouth",
  7824. image: {
  7825. source: "./media/characters/berri/mouth.svg"
  7826. }
  7827. },
  7828. paw: {
  7829. height: math.unit(0.826, "feet"),
  7830. name: "Paw",
  7831. image: {
  7832. source: "./media/characters/berri/paw.svg"
  7833. }
  7834. },
  7835. },
  7836. [
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(1.65, "meters")
  7840. },
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(60, "m"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Megamacro",
  7848. height: math.unit(9.213, "km")
  7849. },
  7850. {
  7851. name: "Planet Eater",
  7852. height: math.unit(489, "megameters")
  7853. },
  7854. {
  7855. name: "Teramacro",
  7856. height: math.unit(2471635000000, "meters")
  7857. },
  7858. {
  7859. name: "Examacro",
  7860. height: math.unit(8.0624e+26, "meters")
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(1.72, "meters"),
  7869. weight: math.unit(68, "kg"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/lexi/front.svg"
  7873. }
  7874. }
  7875. },
  7876. [
  7877. {
  7878. name: "Very Smol",
  7879. height: math.unit(10, "mm")
  7880. },
  7881. {
  7882. name: "Micro",
  7883. height: math.unit(6.8, "cm"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Normal",
  7888. height: math.unit(1.72, "m")
  7889. }
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(1.69, "meters"),
  7897. weight: math.unit(68, "kg"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/martin/front.svg",
  7901. extra: 596 / 581
  7902. }
  7903. }
  7904. },
  7905. [
  7906. {
  7907. name: "Micro",
  7908. height: math.unit(6.85, "cm"),
  7909. default: true
  7910. },
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(1.69, "m")
  7914. }
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(1.69, "meters"),
  7922. weight: math.unit(68, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/juno/front.svg"
  7926. }
  7927. }
  7928. },
  7929. [
  7930. {
  7931. name: "Micro",
  7932. height: math.unit(7, "cm")
  7933. },
  7934. {
  7935. name: "Normal",
  7936. height: math.unit(1.89, "m")
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(353, "meters"),
  7941. default: true
  7942. }
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7947. {
  7948. front: {
  7949. height: math.unit(1.93, "meters"),
  7950. weight: math.unit(83, "kg"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/samantha/front.svg"
  7954. }
  7955. },
  7956. frontClothed: {
  7957. height: math.unit(1.93, "meters"),
  7958. weight: math.unit(83, "kg"),
  7959. name: "Front (Clothed)",
  7960. image: {
  7961. source: "./media/characters/samantha/front-clothed.svg"
  7962. }
  7963. },
  7964. back: {
  7965. height: math.unit(1.93, "meters"),
  7966. weight: math.unit(83, "kg"),
  7967. name: "Back",
  7968. image: {
  7969. source: "./media/characters/samantha/back.svg"
  7970. }
  7971. },
  7972. },
  7973. [
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(1.93, "m")
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(74, "meters"),
  7981. default: true
  7982. },
  7983. {
  7984. name: "Macro+",
  7985. height: math.unit(223, "meters"),
  7986. },
  7987. {
  7988. name: "Megamacro",
  7989. height: math.unit(8381, "meters"),
  7990. },
  7991. {
  7992. name: "Megamacro+",
  7993. height: math.unit(12000, "kilometers")
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7999. {
  8000. front: {
  8001. height: math.unit(1.92, "meters"),
  8002. weight: math.unit(80, "kg"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/dr-clay/front.svg"
  8006. }
  8007. },
  8008. frontClothed: {
  8009. height: math.unit(1.92, "meters"),
  8010. weight: math.unit(80, "kg"),
  8011. name: "Front (Clothed)",
  8012. image: {
  8013. source: "./media/characters/dr-clay/front-clothed.svg"
  8014. }
  8015. }
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(1.92, "m")
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(214, "meters"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Macro+",
  8029. height: math.unit(12.237, "meters"),
  8030. },
  8031. {
  8032. name: "Megamacro",
  8033. height: math.unit(557, "megameters"),
  8034. },
  8035. {
  8036. name: "Unimaginable",
  8037. height: math.unit(120e9, "lightyears")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(2, "meters"),
  8046. weight: math.unit(80, "kg"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Teramacro",
  8056. height: math.unit(500000, "lightyears"),
  8057. default: true
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8063. {
  8064. crux: {
  8065. height: math.unit(2, "meters"),
  8066. weight: math.unit(150, "kg"),
  8067. name: "Crux",
  8068. image: {
  8069. source: "./media/characters/vemus/crux.svg",
  8070. extra: 1074/936,
  8071. bottom: 23/1097
  8072. }
  8073. },
  8074. skunkTanuki: {
  8075. height: math.unit(2, "meters"),
  8076. weight: math.unit(150, "kg"),
  8077. name: "Skunk-Tanuki",
  8078. image: {
  8079. source: "./media/characters/vemus/skunk-tanuki.svg",
  8080. extra: 926/893,
  8081. bottom: 20/946
  8082. }
  8083. },
  8084. },
  8085. [
  8086. {
  8087. name: "Normal",
  8088. height: math.unit(4, "meters"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Big",
  8093. height: math.unit(8, "meters")
  8094. },
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(100, "meters")
  8098. },
  8099. {
  8100. name: "Macro+",
  8101. height: math.unit(1500, "meters")
  8102. },
  8103. {
  8104. name: "Stellar",
  8105. height: math.unit(14e8, "meters")
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(2, "meters"),
  8114. weight: math.unit(70, "kg"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/beherit/front.svg",
  8118. extra: 1234/1109,
  8119. bottom: 55/1289
  8120. }
  8121. }
  8122. },
  8123. [
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(6, "feet")
  8127. },
  8128. {
  8129. name: "Lorg",
  8130. height: math.unit(25, "feet"),
  8131. default: true
  8132. },
  8133. {
  8134. name: "Lorger",
  8135. height: math.unit(75, "feet")
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(200, "meters")
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(2, "meters"),
  8148. weight: math.unit(150, "kg"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/everett/front.svg",
  8152. extra: 1017/866,
  8153. bottom: 86/1103
  8154. }
  8155. },
  8156. paw: {
  8157. height: math.unit(2 / 3.6, "meters"),
  8158. name: "Paw",
  8159. image: {
  8160. source: "./media/characters/everett/paw.svg"
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Normal",
  8167. height: math.unit(15, "feet"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Lorg",
  8172. height: math.unit(70, "feet"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Lorger",
  8177. height: math.unit(250, "feet")
  8178. },
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(500, "meters")
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(2, "meters"),
  8190. weight: math.unit(86, "kg"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/rose/front.svg",
  8194. extra: 1785/1636,
  8195. bottom: 30/1815
  8196. },
  8197. form: "liom",
  8198. default: true
  8199. },
  8200. frontSporty: {
  8201. height: math.unit(2, "meters"),
  8202. weight: math.unit(86, "kg"),
  8203. name: "Front (Sporty)",
  8204. image: {
  8205. source: "./media/characters/rose/front-sporty.svg",
  8206. extra: 350/335,
  8207. bottom: 10/360
  8208. },
  8209. form: "liom"
  8210. },
  8211. frontAlt: {
  8212. height: math.unit(1.6, "meters"),
  8213. weight: math.unit(86, "kg"),
  8214. name: "Front (Alt)",
  8215. image: {
  8216. source: "./media/characters/rose/front-alt.svg",
  8217. extra: 299/283,
  8218. bottom: 3/302
  8219. },
  8220. form: "liom"
  8221. },
  8222. plush: {
  8223. height: math.unit(2, "meters"),
  8224. weight: math.unit(86/3, "kg"),
  8225. name: "Plush",
  8226. image: {
  8227. source: "./media/characters/rose/plush.svg",
  8228. extra: 361/337,
  8229. bottom: 11/372
  8230. },
  8231. form: "plush",
  8232. default: true
  8233. },
  8234. faeStanding: {
  8235. height: math.unit(10, "cm"),
  8236. weight: math.unit(10, "grams"),
  8237. name: "Standing",
  8238. image: {
  8239. source: "./media/characters/rose/fae-standing.svg",
  8240. extra: 1189/1060,
  8241. bottom: 27/1216
  8242. },
  8243. form: "fae",
  8244. default: true
  8245. },
  8246. faeSitting: {
  8247. height: math.unit(5, "cm"),
  8248. weight: math.unit(10, "grams"),
  8249. name: "Sitting",
  8250. image: {
  8251. source: "./media/characters/rose/fae-sitting.svg",
  8252. extra: 737/577,
  8253. bottom: 356/1093
  8254. },
  8255. form: "fae"
  8256. },
  8257. faePaw: {
  8258. height: math.unit(1.35, "cm"),
  8259. name: "Paw",
  8260. image: {
  8261. source: "./media/characters/rose/fae-paw.svg"
  8262. },
  8263. form: "fae"
  8264. },
  8265. },
  8266. [
  8267. {
  8268. name: "True Micro",
  8269. height: math.unit(9, "cm"),
  8270. form: "liom"
  8271. },
  8272. {
  8273. name: "Micro",
  8274. height: math.unit(16, "cm"),
  8275. form: "liom"
  8276. },
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(1.85, "meters"),
  8280. default: true,
  8281. form: "liom"
  8282. },
  8283. {
  8284. name: "Mini-Macro",
  8285. height: math.unit(5, "meters"),
  8286. form: "liom"
  8287. },
  8288. {
  8289. name: "Macro",
  8290. height: math.unit(15, "meters"),
  8291. form: "liom"
  8292. },
  8293. {
  8294. name: "True Macro",
  8295. height: math.unit(40, "meters"),
  8296. form: "liom"
  8297. },
  8298. {
  8299. name: "City Scale",
  8300. height: math.unit(1, "km"),
  8301. form: "liom"
  8302. },
  8303. {
  8304. name: "Plushie",
  8305. height: math.unit(9, "cm"),
  8306. form: "plush",
  8307. default: true
  8308. },
  8309. {
  8310. name: "Fae",
  8311. height: math.unit(10, "cm"),
  8312. form: "fae",
  8313. default: true
  8314. },
  8315. ],
  8316. {
  8317. "liom": {
  8318. name: "Liom"
  8319. },
  8320. "plush": {
  8321. name: "Plush"
  8322. },
  8323. "fae": {
  8324. name: "Fae Fox",
  8325. default: true
  8326. }
  8327. }
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(2, "meters"),
  8334. weight: math.unit(350, "lbs"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/regal/front.svg"
  8338. }
  8339. },
  8340. back: {
  8341. height: math.unit(2, "meters"),
  8342. weight: math.unit(350, "lbs"),
  8343. name: "Back",
  8344. image: {
  8345. source: "./media/characters/regal/back.svg"
  8346. }
  8347. },
  8348. },
  8349. [
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(350, "feet"),
  8353. default: true
  8354. }
  8355. ]
  8356. ))
  8357. characterMakers.push(() => makeCharacter(
  8358. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8359. {
  8360. standing: {
  8361. height: math.unit(4 + 11/12, "feet"),
  8362. weight: math.unit(100, "lb"),
  8363. name: "Standing",
  8364. image: {
  8365. source: "./media/characters/opal/standing.svg",
  8366. extra: 1588/1513,
  8367. bottom: 23/1611
  8368. }
  8369. },
  8370. sitting: {
  8371. height: math.unit(2.3, "feet"),
  8372. weight: math.unit(100, "lb"),
  8373. name: "Sitting",
  8374. image: {
  8375. source: "./media/characters/opal/sitting.svg",
  8376. extra: 1031/892,
  8377. bottom: 142/1173
  8378. }
  8379. },
  8380. hand: {
  8381. height: math.unit(0.59, "feet"),
  8382. name: "Hand",
  8383. image: {
  8384. source: "./media/characters/opal/hand.svg"
  8385. }
  8386. },
  8387. foot: {
  8388. height: math.unit(0.61, "feet"),
  8389. name: "Foot",
  8390. image: {
  8391. source: "./media/characters/opal/foot.svg"
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Small",
  8398. height: math.unit(4 + 11 / 12, "feet")
  8399. },
  8400. {
  8401. name: "Normal",
  8402. height: math.unit(20, "feet"),
  8403. default: true
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(120, "feet")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(80, "miles")
  8412. },
  8413. {
  8414. name: "True Size",
  8415. height: math.unit(100000, "lightyears")
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(200, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/vector-wuff/front.svg"
  8428. }
  8429. }
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(2.8, "meters")
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(450, "meters"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Megamacro",
  8443. height: math.unit(15, "kilometers")
  8444. }
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(256, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/dannik/front.svg"
  8456. }
  8457. }
  8458. },
  8459. [
  8460. {
  8461. name: "Macro",
  8462. height: math.unit(69.57, "meters"),
  8463. default: true
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(6, "feet"),
  8472. weight: math.unit(120, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/azura-saharah/front.svg"
  8476. }
  8477. },
  8478. back: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(120, "lbs"),
  8481. name: "Back",
  8482. image: {
  8483. source: "./media/characters/azura-saharah/back.svg"
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(100, "feet"),
  8491. default: true
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8497. {
  8498. side: {
  8499. height: math.unit(5 + 4 / 12, "feet"),
  8500. weight: math.unit(163, "lbs"),
  8501. name: "Side",
  8502. image: {
  8503. source: "./media/characters/kennedy/side.svg"
  8504. }
  8505. }
  8506. },
  8507. [
  8508. {
  8509. name: "Standard Doggo",
  8510. height: math.unit(5 + 4 / 12, "feet")
  8511. },
  8512. {
  8513. name: "Big Doggo",
  8514. height: math.unit(25 + 3 / 12, "feet"),
  8515. default: true
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(5 + 5/12, "feet"),
  8524. weight: math.unit(100, "lbs"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/odios-de-lunar/front.svg",
  8528. extra: 1468/1323,
  8529. bottom: 22/1490
  8530. }
  8531. }
  8532. },
  8533. [
  8534. {
  8535. name: "Micro",
  8536. height: math.unit(3, "inches")
  8537. },
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(5.5, "feet"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(100, "feet")
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8551. {
  8552. back: {
  8553. height: math.unit(6, "feet"),
  8554. weight: math.unit(220, "lbs"),
  8555. name: "Back",
  8556. image: {
  8557. source: "./media/characters/mandake/back.svg"
  8558. }
  8559. }
  8560. },
  8561. [
  8562. {
  8563. name: "Normal",
  8564. height: math.unit(7, "feet"),
  8565. default: true
  8566. },
  8567. {
  8568. name: "Macro",
  8569. height: math.unit(78, "feet")
  8570. },
  8571. {
  8572. name: "Macro+",
  8573. height: math.unit(300, "meters")
  8574. },
  8575. {
  8576. name: "Macro++",
  8577. height: math.unit(2400, "feet")
  8578. },
  8579. {
  8580. name: "Megamacro",
  8581. height: math.unit(5167, "meters")
  8582. },
  8583. {
  8584. name: "Gigamacro",
  8585. height: math.unit(41769, "miles")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/yozey/front.svg"
  8598. }
  8599. },
  8600. frontAlt: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(120, "lbs"),
  8603. name: "Front (Alt)",
  8604. image: {
  8605. source: "./media/characters/yozey/front-alt.svg"
  8606. }
  8607. },
  8608. side: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(120, "lbs"),
  8611. name: "Side",
  8612. image: {
  8613. source: "./media/characters/yozey/side.svg"
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Micro",
  8620. height: math.unit(3, "inches"),
  8621. default: true
  8622. },
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(6, "feet")
  8626. }
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(103, "lbs"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/valeska-voss/front.svg"
  8638. }
  8639. }
  8640. },
  8641. [
  8642. {
  8643. name: "Mini-Sized Sub",
  8644. height: math.unit(3.1, "inches")
  8645. },
  8646. {
  8647. name: "Mid-Sized Sub",
  8648. height: math.unit(6.2, "inches")
  8649. },
  8650. {
  8651. name: "Full-Sized Sub",
  8652. height: math.unit(9.3, "inches")
  8653. },
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(5 + 2 / 12, "foot"),
  8657. default: true
  8658. },
  8659. ]
  8660. ))
  8661. characterMakers.push(() => makeCharacter(
  8662. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8663. {
  8664. front: {
  8665. height: math.unit(6, "feet"),
  8666. weight: math.unit(160, "lbs"),
  8667. name: "Front",
  8668. image: {
  8669. source: "./media/characters/gene-zeta/front.svg",
  8670. extra: 3006 / 2826,
  8671. bottom: 182 / 3188
  8672. }
  8673. }
  8674. },
  8675. [
  8676. {
  8677. name: "Micro",
  8678. height: math.unit(6, "inches")
  8679. },
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(5 + 11 / 12, "foot"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(140, "feet")
  8688. },
  8689. {
  8690. name: "Supercharged",
  8691. height: math.unit(2500, "feet")
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(350, "lbs"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/razinox/front.svg",
  8704. extra: 1686 / 1548,
  8705. bottom: 28.2 / 1868
  8706. }
  8707. },
  8708. back: {
  8709. height: math.unit(6, "feet"),
  8710. weight: math.unit(350, "lbs"),
  8711. name: "Back",
  8712. image: {
  8713. source: "./media/characters/razinox/back.svg",
  8714. extra: 1660 / 1590,
  8715. bottom: 15 / 1665
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(10 + 8 / 12, "foot")
  8723. },
  8724. {
  8725. name: "Minimacro",
  8726. height: math.unit(15, "foot")
  8727. },
  8728. {
  8729. name: "Macro",
  8730. height: math.unit(60, "foot"),
  8731. default: true
  8732. },
  8733. {
  8734. name: "Megamacro",
  8735. height: math.unit(5, "miles")
  8736. },
  8737. {
  8738. name: "Gigamacro",
  8739. height: math.unit(6000, "miles")
  8740. },
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(150, "lbs"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/cobalt/front.svg"
  8752. }
  8753. }
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(8 + 1 / 12, "foot")
  8759. },
  8760. {
  8761. name: "Macro",
  8762. height: math.unit(111, "foot"),
  8763. default: true
  8764. },
  8765. {
  8766. name: "Supracosmic",
  8767. height: math.unit(1e42, "feet")
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(5, "inches"),
  8776. name: "Front",
  8777. image: {
  8778. source: "./media/characters/amanda/front.svg",
  8779. extra: 926/791,
  8780. bottom: 38/964
  8781. }
  8782. },
  8783. back: {
  8784. height: math.unit(5, "inches"),
  8785. name: "Back",
  8786. image: {
  8787. source: "./media/characters/amanda/back.svg",
  8788. extra: 909/805,
  8789. bottom: 43/952
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Micro",
  8796. height: math.unit(5, "inches"),
  8797. default: true
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(2.75, "meters"),
  8806. weight: math.unit(1200, "lb"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/teal/front.svg",
  8810. extra: 2463 / 2320,
  8811. bottom: 166 / 2629
  8812. }
  8813. },
  8814. back: {
  8815. height: math.unit(2.75, "meters"),
  8816. weight: math.unit(1200, "lb"),
  8817. name: "Back",
  8818. image: {
  8819. source: "./media/characters/teal/back.svg",
  8820. extra: 2580 / 2489,
  8821. bottom: 151 / 2731
  8822. }
  8823. },
  8824. sitting: {
  8825. height: math.unit(1.9, "meters"),
  8826. weight: math.unit(1200, "lb"),
  8827. name: "Sitting",
  8828. image: {
  8829. source: "./media/characters/teal/sitting.svg",
  8830. extra: 623 / 590,
  8831. bottom: 121 / 744
  8832. }
  8833. },
  8834. standing: {
  8835. height: math.unit(2.75, "meters"),
  8836. weight: math.unit(1200, "lb"),
  8837. name: "Standing",
  8838. image: {
  8839. source: "./media/characters/teal/standing.svg",
  8840. extra: 923 / 893,
  8841. bottom: 60 / 983
  8842. }
  8843. },
  8844. stretching: {
  8845. height: math.unit(3.65, "meters"),
  8846. weight: math.unit(1200, "lb"),
  8847. name: "Stretching",
  8848. image: {
  8849. source: "./media/characters/teal/stretching.svg",
  8850. extra: 1276 / 1244,
  8851. bottom: 0 / 1276
  8852. }
  8853. },
  8854. legged: {
  8855. height: math.unit(1.3, "meters"),
  8856. weight: math.unit(100, "lb"),
  8857. name: "Legged",
  8858. image: {
  8859. source: "./media/characters/teal/legged.svg",
  8860. extra: 462 / 437,
  8861. bottom: 24 / 486
  8862. }
  8863. },
  8864. naga: {
  8865. height: math.unit(5.4, "meters"),
  8866. weight: math.unit(4000, "lb"),
  8867. name: "Naga",
  8868. image: {
  8869. source: "./media/characters/teal/naga.svg",
  8870. extra: 1902 / 1858,
  8871. bottom: 0 / 1902
  8872. }
  8873. },
  8874. hand: {
  8875. height: math.unit(0.52, "meters"),
  8876. name: "Hand",
  8877. image: {
  8878. source: "./media/characters/teal/hand.svg"
  8879. }
  8880. },
  8881. maw: {
  8882. height: math.unit(0.43, "meters"),
  8883. name: "Maw",
  8884. image: {
  8885. source: "./media/characters/teal/maw.svg"
  8886. }
  8887. },
  8888. slit: {
  8889. height: math.unit(0.25, "meters"),
  8890. name: "Slit",
  8891. image: {
  8892. source: "./media/characters/teal/slit.svg"
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(2.75, "meters"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(300, "feet")
  8905. },
  8906. {
  8907. name: "Macro+",
  8908. height: math.unit(2000, "feet")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8914. {
  8915. frontCat: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(180, "lbs"),
  8918. name: "Front (Cat)",
  8919. image: {
  8920. source: "./media/characters/ravin-amulet/front-cat.svg"
  8921. }
  8922. },
  8923. frontCatAlt: {
  8924. height: math.unit(6, "feet"),
  8925. weight: math.unit(180, "lbs"),
  8926. name: "Front (Alt, Cat)",
  8927. image: {
  8928. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8929. }
  8930. },
  8931. frontWerewolf: {
  8932. height: math.unit(6 * 1.2, "feet"),
  8933. weight: math.unit(225, "lbs"),
  8934. name: "Front (Werewolf)",
  8935. image: {
  8936. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8937. }
  8938. },
  8939. backWerewolf: {
  8940. height: math.unit(6 * 1.2, "feet"),
  8941. weight: math.unit(225, "lbs"),
  8942. name: "Back (Werewolf)",
  8943. image: {
  8944. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Nano",
  8951. height: math.unit(1, "micrometer")
  8952. },
  8953. {
  8954. name: "Micro",
  8955. height: math.unit(1, "inch")
  8956. },
  8957. {
  8958. name: "Normal",
  8959. height: math.unit(6, "feet"),
  8960. default: true
  8961. },
  8962. {
  8963. name: "Macro",
  8964. height: math.unit(60, "feet")
  8965. }
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(6, "feet"),
  8973. weight: math.unit(165, "lbs"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/fluoresce/front.svg"
  8977. }
  8978. }
  8979. },
  8980. [
  8981. {
  8982. name: "Micro",
  8983. height: math.unit(6, "cm")
  8984. },
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(5 + 7 / 12, "feet"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Macro",
  8992. height: math.unit(56, "feet")
  8993. },
  8994. {
  8995. name: "Megamacro",
  8996. height: math.unit(1.9, "miles")
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(9 + 6 / 12, "feet"),
  9005. weight: math.unit(523, "lbs"),
  9006. name: "Side",
  9007. image: {
  9008. source: "./media/characters/aurora/side.svg",
  9009. extra: 474/393,
  9010. bottom: 5/479
  9011. }
  9012. }
  9013. },
  9014. [
  9015. {
  9016. name: "Normal",
  9017. height: math.unit(9 + 6 / 12, "feet")
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(96, "feet"),
  9022. default: true
  9023. },
  9024. {
  9025. name: "Macro+",
  9026. height: math.unit(243, "feet")
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(194, "cm"),
  9035. weight: math.unit(90, "kg"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/ranek/front.svg",
  9039. extra: 1862/1791,
  9040. bottom: 80/1942
  9041. }
  9042. },
  9043. back: {
  9044. height: math.unit(194, "cm"),
  9045. weight: math.unit(90, "kg"),
  9046. name: "Back",
  9047. image: {
  9048. source: "./media/characters/ranek/back.svg",
  9049. extra: 1853/1787,
  9050. bottom: 74/1927
  9051. }
  9052. },
  9053. feral: {
  9054. height: math.unit(30, "cm"),
  9055. weight: math.unit(1.6, "lbs"),
  9056. name: "Feral",
  9057. image: {
  9058. source: "./media/characters/ranek/feral.svg",
  9059. extra: 990/631,
  9060. bottom: 29/1019
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Normal",
  9067. height: math.unit(194, "cm"),
  9068. default: true
  9069. },
  9070. {
  9071. name: "Macro",
  9072. height: math.unit(100, "meters")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(5 + 6 / 12, "feet"),
  9081. weight: math.unit(153, "lbs"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/andrew-cooper/front.svg"
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Nano",
  9091. height: math.unit(1, "mm")
  9092. },
  9093. {
  9094. name: "Micro",
  9095. height: math.unit(2, "inches")
  9096. },
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(5 + 6 / 12, "feet"),
  9100. default: true
  9101. }
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(180, "lbs"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/akane-sato/front.svg",
  9113. extra: 1219 / 1140
  9114. }
  9115. },
  9116. back: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(180, "lbs"),
  9119. name: "Back",
  9120. image: {
  9121. source: "./media/characters/akane-sato/back.svg",
  9122. extra: 1219 / 1170
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(2.5, "meters")
  9130. },
  9131. {
  9132. name: "Macro",
  9133. height: math.unit(250, "meters"),
  9134. default: true
  9135. },
  9136. {
  9137. name: "Megamacro",
  9138. height: math.unit(25, "km")
  9139. },
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9144. {
  9145. front: {
  9146. height: math.unit(6, "feet"),
  9147. weight: math.unit(65, "kg"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/rook/front.svg",
  9151. extra: 960 / 950
  9152. }
  9153. }
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(8.8, "feet")
  9159. },
  9160. {
  9161. name: "Macro",
  9162. height: math.unit(88, "feet"),
  9163. default: true
  9164. },
  9165. {
  9166. name: "Megamacro",
  9167. height: math.unit(8, "miles")
  9168. },
  9169. ]
  9170. ))
  9171. characterMakers.push(() => makeCharacter(
  9172. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9173. {
  9174. front: {
  9175. height: math.unit(12 + 2 / 12, "feet"),
  9176. weight: math.unit(808, "lbs"),
  9177. name: "Front",
  9178. image: {
  9179. source: "./media/characters/prodigy/front.svg"
  9180. }
  9181. }
  9182. },
  9183. [
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(12 + 2 / 12, "feet"),
  9187. default: true
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(143, "feet")
  9192. },
  9193. {
  9194. name: "Macro+",
  9195. height: math.unit(400, "feet")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(225, "lbs"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/daniel/front.svg"
  9208. }
  9209. },
  9210. leaning: {
  9211. height: math.unit(6, "feet"),
  9212. weight: math.unit(225, "lbs"),
  9213. name: "Leaning",
  9214. image: {
  9215. source: "./media/characters/daniel/leaning.svg"
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(1000, "feet"),
  9223. default: true
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(88, "lbs"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/chiros/front.svg",
  9236. extra: 306 / 226
  9237. }
  9238. },
  9239. side: {
  9240. height: math.unit(6, "feet"),
  9241. weight: math.unit(88, "lbs"),
  9242. name: "Side",
  9243. image: {
  9244. source: "./media/characters/chiros/side.svg",
  9245. extra: 306 / 226
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Normal",
  9252. height: math.unit(6, "cm"),
  9253. default: true
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(100, "lbs"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/selka/front.svg",
  9266. extra: 947 / 887
  9267. }
  9268. }
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(5, "cm"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(8 + 3 / 12, "feet"),
  9283. weight: math.unit(424, "lbs"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/verin/front.svg",
  9287. extra: 1845 / 1550
  9288. }
  9289. },
  9290. frontArmored: {
  9291. height: math.unit(8 + 3 / 12, "feet"),
  9292. weight: math.unit(424, "lbs"),
  9293. name: "Front (Armored)",
  9294. image: {
  9295. source: "./media/characters/verin/front-armor.svg",
  9296. extra: 1845 / 1550,
  9297. bottom: 0.01
  9298. }
  9299. },
  9300. back: {
  9301. height: math.unit(8 + 3 / 12, "feet"),
  9302. weight: math.unit(424, "lbs"),
  9303. name: "Back",
  9304. image: {
  9305. source: "./media/characters/verin/back.svg",
  9306. bottom: 0.1,
  9307. extra: 1
  9308. }
  9309. },
  9310. foot: {
  9311. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9312. name: "Foot",
  9313. image: {
  9314. source: "./media/characters/verin/foot.svg"
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Normal",
  9321. height: math.unit(8 + 3 / 12, "feet")
  9322. },
  9323. {
  9324. name: "Minimacro",
  9325. height: math.unit(21, "feet"),
  9326. default: true
  9327. },
  9328. {
  9329. name: "Macro",
  9330. height: math.unit(626, "feet")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9336. {
  9337. front: {
  9338. height: math.unit(2.718, "meters"),
  9339. weight: math.unit(150, "lbs"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/sovrim-terraquian/front.svg",
  9343. extra: 1752/1689,
  9344. bottom: 36/1788
  9345. }
  9346. },
  9347. back: {
  9348. height: math.unit(2.718, "meters"),
  9349. weight: math.unit(150, "lbs"),
  9350. name: "Back",
  9351. image: {
  9352. source: "./media/characters/sovrim-terraquian/back.svg",
  9353. extra: 1698/1657,
  9354. bottom: 58/1756
  9355. }
  9356. },
  9357. tongue: {
  9358. height: math.unit(2.865, "feet"),
  9359. name: "Tongue",
  9360. image: {
  9361. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9362. }
  9363. },
  9364. hand: {
  9365. height: math.unit(1.61, "feet"),
  9366. name: "Hand",
  9367. image: {
  9368. source: "./media/characters/sovrim-terraquian/hand.svg"
  9369. }
  9370. },
  9371. foot: {
  9372. height: math.unit(1.05, "feet"),
  9373. name: "Foot",
  9374. image: {
  9375. source: "./media/characters/sovrim-terraquian/foot.svg"
  9376. }
  9377. },
  9378. footAlt: {
  9379. height: math.unit(0.88, "feet"),
  9380. name: "Foot (Alt)",
  9381. image: {
  9382. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(2, "inches")
  9390. },
  9391. {
  9392. name: "Small",
  9393. height: math.unit(1, "meter")
  9394. },
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(Math.E, "meters"),
  9398. default: true
  9399. },
  9400. {
  9401. name: "Macro",
  9402. height: math.unit(20, "meters")
  9403. },
  9404. {
  9405. name: "Macro+",
  9406. height: math.unit(400, "meters")
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(7, "feet"),
  9415. weight: math.unit(489, "lbs"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/reece-silvermane/front.svg",
  9419. bottom: 0.02,
  9420. extra: 1
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Macro",
  9427. height: math.unit(1.5, "miles"),
  9428. default: true
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(78, "kg"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/kane/front.svg",
  9441. extra: 978 / 899
  9442. }
  9443. },
  9444. back: {
  9445. height: math.unit(6, "feet"),
  9446. weight: math.unit(78, "kg"),
  9447. name: "Back",
  9448. image: {
  9449. source: "./media/characters/kane/back.svg",
  9450. extra: 1966/1800,
  9451. bottom: 0/1966
  9452. }
  9453. },
  9454. head: {
  9455. height: math.unit(1.4, "feet"),
  9456. name: "Head",
  9457. image: {
  9458. source: "./media/characters/kane/head.svg"
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(2.1, "m"),
  9466. },
  9467. {
  9468. name: "Macro",
  9469. height: math.unit(1, "km"),
  9470. default: true
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(6, "feet"),
  9479. weight: math.unit(200, "kg"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/tegon/front.svg",
  9483. bottom: 0.01,
  9484. extra: 1
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Micro",
  9491. height: math.unit(1, "inch")
  9492. },
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(6 + 3 / 12, "feet"),
  9496. default: true
  9497. },
  9498. {
  9499. name: "Macro",
  9500. height: math.unit(300, "feet")
  9501. },
  9502. {
  9503. name: "Megamacro",
  9504. height: math.unit(69, "miles")
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9510. {
  9511. side: {
  9512. height: math.unit(6, "feet"),
  9513. weight: math.unit(2304, "lbs"),
  9514. name: "Side",
  9515. image: {
  9516. source: "./media/characters/arcturax/side.svg",
  9517. extra: 790 / 376,
  9518. bottom: 0.01
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Micro",
  9525. height: math.unit(2, "inch")
  9526. },
  9527. {
  9528. name: "Normal",
  9529. height: math.unit(6, "feet")
  9530. },
  9531. {
  9532. name: "Macro",
  9533. height: math.unit(39, "feet"),
  9534. default: true
  9535. },
  9536. {
  9537. name: "Megamacro",
  9538. height: math.unit(7, "miles")
  9539. },
  9540. ]
  9541. ))
  9542. characterMakers.push(() => makeCharacter(
  9543. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9544. {
  9545. front: {
  9546. height: math.unit(6, "feet"),
  9547. weight: math.unit(50, "lbs"),
  9548. name: "Front",
  9549. image: {
  9550. source: "./media/characters/sentri/front.svg",
  9551. extra: 1750 / 1570,
  9552. bottom: 0.025
  9553. }
  9554. },
  9555. frontAlt: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(50, "lbs"),
  9558. name: "Front (Alt)",
  9559. image: {
  9560. source: "./media/characters/sentri/front-alt.svg",
  9561. extra: 1750 / 1570,
  9562. bottom: 0.025
  9563. }
  9564. },
  9565. },
  9566. [
  9567. {
  9568. name: "Normal",
  9569. height: math.unit(15, "feet"),
  9570. default: true
  9571. },
  9572. {
  9573. name: "Macro",
  9574. height: math.unit(2500, "feet")
  9575. }
  9576. ]
  9577. ))
  9578. characterMakers.push(() => makeCharacter(
  9579. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9580. {
  9581. front: {
  9582. height: math.unit(5 + 8 / 12, "feet"),
  9583. weight: math.unit(130, "lbs"),
  9584. name: "Front",
  9585. image: {
  9586. source: "./media/characters/corvin/front.svg",
  9587. extra: 1803 / 1629
  9588. }
  9589. },
  9590. frontShirt: {
  9591. height: math.unit(5 + 8 / 12, "feet"),
  9592. weight: math.unit(130, "lbs"),
  9593. name: "Front (Shirt)",
  9594. image: {
  9595. source: "./media/characters/corvin/front-shirt.svg",
  9596. extra: 1803 / 1629
  9597. }
  9598. },
  9599. frontPoncho: {
  9600. height: math.unit(5 + 8 / 12, "feet"),
  9601. weight: math.unit(130, "lbs"),
  9602. name: "Front (Poncho)",
  9603. image: {
  9604. source: "./media/characters/corvin/front-poncho.svg",
  9605. extra: 1803 / 1629
  9606. }
  9607. },
  9608. side: {
  9609. height: math.unit(5 + 8 / 12, "feet"),
  9610. weight: math.unit(130, "lbs"),
  9611. name: "Side",
  9612. image: {
  9613. source: "./media/characters/corvin/side.svg",
  9614. extra: 1012 / 945
  9615. }
  9616. },
  9617. back: {
  9618. height: math.unit(5 + 8 / 12, "feet"),
  9619. weight: math.unit(130, "lbs"),
  9620. name: "Back",
  9621. image: {
  9622. source: "./media/characters/corvin/back.svg",
  9623. extra: 1803 / 1629
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Micro",
  9630. height: math.unit(3, "inches")
  9631. },
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(5 + 8 / 12, "feet")
  9635. },
  9636. {
  9637. name: "Macro",
  9638. height: math.unit(300, "feet"),
  9639. default: true
  9640. },
  9641. {
  9642. name: "Megamacro",
  9643. height: math.unit(500, "miles")
  9644. }
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(135, "lbs"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/q/front.svg",
  9656. extra: 854 / 752,
  9657. bottom: 0.005
  9658. }
  9659. },
  9660. back: {
  9661. height: math.unit(6, "feet"),
  9662. weight: math.unit(130, "lbs"),
  9663. name: "Back",
  9664. image: {
  9665. source: "./media/characters/q/back.svg",
  9666. extra: 854 / 752
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Macro",
  9673. height: math.unit(90, "feet"),
  9674. default: true
  9675. },
  9676. {
  9677. name: "Extra Macro",
  9678. height: math.unit(300, "feet"),
  9679. },
  9680. {
  9681. name: "BIG WALF",
  9682. height: math.unit(750, "feet"),
  9683. },
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9688. {
  9689. front: {
  9690. height: math.unit(3, "feet"),
  9691. weight: math.unit(28, "lbs"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/citrine/front.svg"
  9695. }
  9696. }
  9697. },
  9698. [
  9699. {
  9700. name: "Normal",
  9701. height: math.unit(3, "feet"),
  9702. default: true
  9703. }
  9704. ]
  9705. ))
  9706. characterMakers.push(() => makeCharacter(
  9707. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9708. {
  9709. front: {
  9710. height: math.unit(14, "feet"),
  9711. weight: math.unit(1450, "kg"),
  9712. preyCapacity: math.unit(15, "people"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/aura-starwind/front.svg",
  9716. extra: 1440/1327,
  9717. bottom: 11/1451
  9718. }
  9719. },
  9720. side: {
  9721. height: math.unit(14, "feet"),
  9722. weight: math.unit(1450, "kg"),
  9723. preyCapacity: math.unit(15, "people"),
  9724. name: "Side",
  9725. image: {
  9726. source: "./media/characters/aura-starwind/side.svg",
  9727. extra: 1654 / 1497
  9728. }
  9729. },
  9730. taur: {
  9731. height: math.unit(18, "feet"),
  9732. weight: math.unit(5500, "kg"),
  9733. preyCapacity: math.unit(50, "people"),
  9734. name: "Taur",
  9735. image: {
  9736. source: "./media/characters/aura-starwind/taur.svg",
  9737. extra: 1760 / 1650
  9738. }
  9739. },
  9740. feral: {
  9741. height: math.unit(46, "feet"),
  9742. weight: math.unit(25000, "kg"),
  9743. preyCapacity: math.unit(120, "people"),
  9744. name: "Feral",
  9745. image: {
  9746. source: "./media/characters/aura-starwind/feral.svg"
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(14, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Macro",
  9758. height: math.unit(50, "meters")
  9759. },
  9760. {
  9761. name: "Megamacro",
  9762. height: math.unit(5000, "meters")
  9763. },
  9764. {
  9765. name: "Gigamacro",
  9766. height: math.unit(100000, "kilometers")
  9767. },
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(2 + 7 / 12, "feet"),
  9775. weight: math.unit(32, "lbs"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/rivet/front.svg",
  9779. extra: 1716 / 1658,
  9780. bottom: 0.03
  9781. }
  9782. },
  9783. foot: {
  9784. height: math.unit(0.551, "feet"),
  9785. name: "Rivet's Foot",
  9786. image: {
  9787. source: "./media/characters/rivet/foot.svg"
  9788. },
  9789. rename: true
  9790. }
  9791. },
  9792. [
  9793. {
  9794. name: "Micro",
  9795. height: math.unit(1.5, "inches"),
  9796. },
  9797. {
  9798. name: "Normal",
  9799. height: math.unit(2 + 7 / 12, "feet"),
  9800. default: true
  9801. },
  9802. {
  9803. name: "Macro",
  9804. height: math.unit(85, "feet")
  9805. },
  9806. {
  9807. name: "Megamacro",
  9808. height: math.unit(2.2, "km")
  9809. }
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9814. {
  9815. front: {
  9816. height: math.unit(5 + 9 / 12, "feet"),
  9817. weight: math.unit(150, "lbs"),
  9818. name: "Front",
  9819. image: {
  9820. source: "./media/characters/coffee/front.svg",
  9821. extra: 946/880,
  9822. bottom: 66/1012
  9823. }
  9824. },
  9825. foot: {
  9826. height: math.unit(1.29, "feet"),
  9827. name: "Foot",
  9828. image: {
  9829. source: "./media/characters/coffee/foot.svg"
  9830. }
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Micro",
  9836. height: math.unit(2, "inches"),
  9837. },
  9838. {
  9839. name: "Normal",
  9840. height: math.unit(5 + 9 / 12, "feet"),
  9841. default: true
  9842. },
  9843. {
  9844. name: "Macro",
  9845. height: math.unit(800, "feet")
  9846. },
  9847. {
  9848. name: "Megamacro",
  9849. height: math.unit(25, "miles")
  9850. }
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9855. {
  9856. front: {
  9857. height: math.unit(6, "feet"),
  9858. weight: math.unit(200, "lbs"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/chari-gal/front.svg",
  9862. extra: 735/649,
  9863. bottom: 55/790
  9864. },
  9865. form: "normal",
  9866. default: true
  9867. },
  9868. back: {
  9869. height: math.unit(6, "feet"),
  9870. weight: math.unit(200, "lb"),
  9871. name: "Back",
  9872. image: {
  9873. source: "./media/characters/chari-gal/back.svg",
  9874. extra: 762/666,
  9875. bottom: 31/793
  9876. },
  9877. form: "normal"
  9878. },
  9879. mouth: {
  9880. height: math.unit(1.35, "feet"),
  9881. name: "Mouth",
  9882. image: {
  9883. source: "./media/characters/chari-gal/mouth.svg"
  9884. },
  9885. form: "normal"
  9886. },
  9887. gigantamax: {
  9888. height: math.unit(6 * 16, "feet"),
  9889. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9890. name: "Gigantamax",
  9891. image: {
  9892. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9893. extra: 1507/1149,
  9894. bottom: 254/1761
  9895. },
  9896. form: "gigantamax",
  9897. default: true
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Normal",
  9903. height: math.unit(5 + 7 / 12, "feet"),
  9904. form: "normal",
  9905. },
  9906. {
  9907. name: "Macro",
  9908. height: math.unit(200, "feet"),
  9909. default: true,
  9910. form: "normal"
  9911. },
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9915. form: "gigantamax",
  9916. },
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(16 * 200, "feet"),
  9920. default: true,
  9921. form: "gigantamax"
  9922. },
  9923. ],
  9924. {
  9925. "normal": {
  9926. name: "Normal",
  9927. default: true
  9928. },
  9929. "gigantamax": {
  9930. name: "Gigantamax",
  9931. },
  9932. }
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(6, "feet"),
  9939. weight: math.unit(150, "lbs"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/nova/front.svg",
  9943. extra: 5000 / 4722,
  9944. bottom: 0.02
  9945. }
  9946. }
  9947. },
  9948. [
  9949. {
  9950. name: "Micro-",
  9951. height: math.unit(0.8, "inches")
  9952. },
  9953. {
  9954. name: "Micro",
  9955. height: math.unit(2, "inches"),
  9956. default: true
  9957. },
  9958. ]
  9959. ))
  9960. characterMakers.push(() => makeCharacter(
  9961. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9962. {
  9963. koboldFront: {
  9964. height: math.unit(3 + 1 / 12, "feet"),
  9965. weight: math.unit(21.7, "lbs"),
  9966. name: "Front",
  9967. image: {
  9968. source: "./media/characters/argent/kobold-front.svg",
  9969. extra: 1471 / 1331,
  9970. bottom: 100.8 / 1575.5
  9971. },
  9972. form: "kobold",
  9973. default: true
  9974. },
  9975. dragonFront: {
  9976. height: math.unit(75, "inches"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/argent/dragon-front.svg",
  9980. extra: 1389/1248,
  9981. bottom: 54/1443
  9982. },
  9983. form: "dragon",
  9984. },
  9985. dragonBack: {
  9986. height: math.unit(75, "inches"),
  9987. name: "Back",
  9988. image: {
  9989. source: "./media/characters/argent/dragon-back.svg",
  9990. extra: 1399/1271,
  9991. bottom: 23/1422
  9992. },
  9993. form: "dragon",
  9994. },
  9995. dragonDressed: {
  9996. height: math.unit(75, "inches"),
  9997. name: "Dressed",
  9998. image: {
  9999. source: "./media/characters/argent/dragon-dressed.svg",
  10000. extra: 1350/1215,
  10001. bottom: 26/1376
  10002. },
  10003. form: "dragon"
  10004. },
  10005. dragonHead: {
  10006. height: math.unit(23.5, "inches"),
  10007. name: "Head",
  10008. image: {
  10009. source: "./media/characters/argent/dragon-head.svg"
  10010. },
  10011. form: "dragon",
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(2, "inches"),
  10018. form: "kobold",
  10019. },
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(3 + 1 / 12, "feet"),
  10023. form: "kobold",
  10024. default: true
  10025. },
  10026. {
  10027. name: "Macro",
  10028. height: math.unit(120, "feet"),
  10029. form: "kobold",
  10030. },
  10031. {
  10032. name: "Speck",
  10033. height: math.unit(1, "mm"),
  10034. form: "dragon",
  10035. },
  10036. {
  10037. name: "Tiny",
  10038. height: math.unit(1, "cm"),
  10039. form: "dragon",
  10040. },
  10041. {
  10042. name: "Micro",
  10043. height: math.unit(5, "cm"),
  10044. form: "dragon",
  10045. },
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(75, "inches"),
  10049. form: "dragon",
  10050. default: true
  10051. },
  10052. {
  10053. name: "Extra Tall",
  10054. height: math.unit(9, "feet"),
  10055. form: "dragon",
  10056. },
  10057. {
  10058. name: "Inconvenient",
  10059. height: math.unit(5, "meters"),
  10060. form: "dragon",
  10061. },
  10062. {
  10063. name: "Macro",
  10064. height: math.unit(70, "meters"),
  10065. form: "dragon",
  10066. },
  10067. {
  10068. name: "Macro+",
  10069. height: math.unit(250, "meters"),
  10070. form: "dragon",
  10071. },
  10072. {
  10073. name: "Megamacro",
  10074. height: math.unit(20, "km"),
  10075. form: "dragon",
  10076. },
  10077. {
  10078. name: "Mountainous",
  10079. height: math.unit(100, "km"),
  10080. form: "dragon",
  10081. },
  10082. {
  10083. name: "Continental",
  10084. height: math.unit(2, "megameters"),
  10085. form: "dragon",
  10086. },
  10087. {
  10088. name: "Too Big",
  10089. height: math.unit(900, "megameters"),
  10090. form: "dragon",
  10091. },
  10092. ],
  10093. {
  10094. "kobold": {
  10095. name: "Kobold",
  10096. default: true
  10097. },
  10098. "dragon": {
  10099. name: "Dragon",
  10100. },
  10101. }
  10102. ))
  10103. characterMakers.push(() => makeCharacter(
  10104. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10105. {
  10106. lamp: {
  10107. height: math.unit(7 * 1559 / 989, "feet"),
  10108. name: "Magic Lamp",
  10109. image: {
  10110. source: "./media/characters/mira-al-cul/lamp.svg",
  10111. extra: 1617 / 1559
  10112. }
  10113. },
  10114. front: {
  10115. height: math.unit(7, "feet"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/mira-al-cul/front.svg",
  10119. extra: 1044 / 990
  10120. }
  10121. },
  10122. },
  10123. [
  10124. {
  10125. name: "Heavily Restricted",
  10126. height: math.unit(7 * 1559 / 989, "feet")
  10127. },
  10128. {
  10129. name: "Freshly Freed",
  10130. height: math.unit(50 * 1559 / 989, "feet")
  10131. },
  10132. {
  10133. name: "World Encompassing",
  10134. height: math.unit(10000 * 1559 / 989, "miles")
  10135. },
  10136. {
  10137. name: "Galactic",
  10138. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10139. },
  10140. {
  10141. name: "Palmed Universe",
  10142. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10143. default: true
  10144. },
  10145. {
  10146. name: "Multiversal Matriarch",
  10147. height: math.unit(8.87e10, "yottameters")
  10148. },
  10149. {
  10150. name: "Void Mother",
  10151. height: math.unit(3.14e110, "yottaparsecs")
  10152. },
  10153. {
  10154. name: "Toying with Transcendence",
  10155. height: math.unit(1e307, "meters")
  10156. },
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10161. {
  10162. front: {
  10163. height: math.unit(17 + 1 / 12, "feet"),
  10164. weight: math.unit(476.2 * 5, "lbs"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/kuro-shi-uchū/front.svg",
  10168. extra: 2329 / 1835,
  10169. bottom: 0.02
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Micro",
  10176. height: math.unit(2, "inches")
  10177. },
  10178. {
  10179. name: "Normal",
  10180. height: math.unit(12, "meters")
  10181. },
  10182. {
  10183. name: "Planetary",
  10184. height: math.unit(0.00929, "AU"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Universal",
  10189. height: math.unit(20, "gigaparsecs")
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10195. {
  10196. front: {
  10197. height: math.unit(5 + 2 / 12, "feet"),
  10198. weight: math.unit(120, "lbs"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/katherine/front.svg",
  10202. extra: 2075 / 1969
  10203. }
  10204. },
  10205. dress: {
  10206. height: math.unit(5 + 2 / 12, "feet"),
  10207. weight: math.unit(120, "lbs"),
  10208. name: "Dress",
  10209. image: {
  10210. source: "./media/characters/katherine/dress.svg",
  10211. extra: 2258 / 2064
  10212. }
  10213. },
  10214. },
  10215. [
  10216. {
  10217. name: "Micro",
  10218. height: math.unit(1, "inches"),
  10219. default: true
  10220. },
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(5 + 2 / 12, "feet")
  10224. },
  10225. {
  10226. name: "Macro",
  10227. height: math.unit(100, "meters")
  10228. },
  10229. {
  10230. name: "Megamacro",
  10231. height: math.unit(80, "miles")
  10232. },
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10237. {
  10238. front: {
  10239. height: math.unit(7 + 8 / 12, "feet"),
  10240. weight: math.unit(250, "lbs"),
  10241. name: "Front",
  10242. image: {
  10243. source: "./media/characters/yevis/front.svg",
  10244. extra: 1938 / 1755
  10245. }
  10246. }
  10247. },
  10248. [
  10249. {
  10250. name: "Mortal",
  10251. height: math.unit(7 + 8 / 12, "feet")
  10252. },
  10253. {
  10254. name: "Battle",
  10255. height: math.unit(25 + 11 / 12, "feet")
  10256. },
  10257. {
  10258. name: "Wrath",
  10259. height: math.unit(1654 + 11 / 12, "feet")
  10260. },
  10261. {
  10262. name: "Planet Destroyer",
  10263. height: math.unit(12000, "miles")
  10264. },
  10265. {
  10266. name: "Galaxy Conqueror",
  10267. height: math.unit(1.45, "zettameters"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Universal War",
  10272. height: math.unit(184, "gigaparsecs")
  10273. },
  10274. {
  10275. name: "Eternity War",
  10276. height: math.unit(1.98e55, "yottaparsecs")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(5 + 8 / 12, "feet"),
  10285. weight: math.unit(63, "kg"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/xavier/front.svg",
  10289. extra: 944 / 883
  10290. }
  10291. },
  10292. frontStretch: {
  10293. height: math.unit(5 + 8 / 12, "feet"),
  10294. weight: math.unit(63, "kg"),
  10295. name: "Stretching",
  10296. image: {
  10297. source: "./media/characters/xavier/front-stretch.svg",
  10298. extra: 962 / 820
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(5 + 8 / 12, "feet")
  10306. },
  10307. {
  10308. name: "Macro",
  10309. height: math.unit(100, "meters"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "McLargeHuge",
  10314. height: math.unit(10, "miles")
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(5 + 5 / 12, "feet"),
  10323. weight: math.unit(150, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/joshii/front.svg",
  10327. extra: 765 / 653,
  10328. bottom: 51 / 816
  10329. }
  10330. },
  10331. foot: {
  10332. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10333. name: "Foot",
  10334. image: {
  10335. source: "./media/characters/joshii/foot.svg"
  10336. }
  10337. },
  10338. },
  10339. [
  10340. {
  10341. name: "Micro",
  10342. height: math.unit(2, "inches")
  10343. },
  10344. {
  10345. name: "Normal",
  10346. height: math.unit(5 + 5 / 12, "feet")
  10347. },
  10348. {
  10349. name: "Macro",
  10350. height: math.unit(785, "feet"),
  10351. default: true
  10352. },
  10353. {
  10354. name: "Megamacro",
  10355. height: math.unit(24.5, "miles")
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(6, "feet"),
  10364. weight: math.unit(150, "lb"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/goddess-elizabeth/front.svg",
  10368. extra: 1800 / 1525,
  10369. bottom: 0.005
  10370. }
  10371. },
  10372. foot: {
  10373. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10374. name: "Foot",
  10375. image: {
  10376. source: "./media/characters/goddess-elizabeth/foot.svg"
  10377. }
  10378. },
  10379. mouth: {
  10380. height: math.unit(6, "feet"),
  10381. name: "Mouth",
  10382. image: {
  10383. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Micro",
  10390. height: math.unit(12, "feet")
  10391. },
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(80, "miles"),
  10395. default: true
  10396. },
  10397. {
  10398. name: "Macro",
  10399. height: math.unit(15000, "parsecs")
  10400. },
  10401. ]
  10402. ))
  10403. characterMakers.push(() => makeCharacter(
  10404. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10405. {
  10406. front: {
  10407. height: math.unit(5 + 9 / 12, "feet"),
  10408. weight: math.unit(144, "lb"),
  10409. name: "Front",
  10410. image: {
  10411. source: "./media/characters/kara/front.svg"
  10412. }
  10413. },
  10414. feet: {
  10415. height: math.unit(6 / 6.765, "feet"),
  10416. name: "Kara's Feet",
  10417. rename: true,
  10418. image: {
  10419. source: "./media/characters/kara/feet.svg"
  10420. }
  10421. },
  10422. },
  10423. [
  10424. {
  10425. name: "Normal",
  10426. height: math.unit(5 + 9 / 12, "feet")
  10427. },
  10428. {
  10429. name: "Macro",
  10430. height: math.unit(174, "feet"),
  10431. default: true
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10437. {
  10438. front: {
  10439. height: math.unit(18, "feet"),
  10440. weight: math.unit(4050, "lb"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/tyrone/front.svg",
  10444. extra: 2405 / 2270,
  10445. bottom: 182 / 2587
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Normal",
  10452. height: math.unit(18, "feet"),
  10453. default: true
  10454. },
  10455. {
  10456. name: "Macro",
  10457. height: math.unit(300, "feet")
  10458. },
  10459. {
  10460. name: "Megamacro",
  10461. height: math.unit(15, "km")
  10462. },
  10463. {
  10464. name: "Gigamacro",
  10465. height: math.unit(500, "km")
  10466. },
  10467. {
  10468. name: "Teramacro",
  10469. height: math.unit(0.5, "gigameters")
  10470. },
  10471. {
  10472. name: "Omnimacro",
  10473. height: math.unit(1e252, "yottauniverse")
  10474. },
  10475. ]
  10476. ))
  10477. characterMakers.push(() => makeCharacter(
  10478. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10479. {
  10480. front: {
  10481. height: math.unit(7 + 8 / 12, "feet"),
  10482. weight: math.unit(120, "lb"),
  10483. name: "Front",
  10484. image: {
  10485. source: "./media/characters/danny/front.svg",
  10486. extra: 1490 / 1350
  10487. }
  10488. },
  10489. back: {
  10490. height: math.unit(7 + 8 / 12, "feet"),
  10491. weight: math.unit(120, "lb"),
  10492. name: "Back",
  10493. image: {
  10494. source: "./media/characters/danny/back.svg",
  10495. extra: 1490 / 1350
  10496. }
  10497. },
  10498. },
  10499. [
  10500. {
  10501. name: "Normal",
  10502. height: math.unit(7 + 8 / 12, "feet"),
  10503. default: true
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10509. {
  10510. front: {
  10511. height: math.unit(3.5, "inches"),
  10512. weight: math.unit(19, "grams"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/mallow/front.svg",
  10516. extra: 471 / 431
  10517. }
  10518. },
  10519. back: {
  10520. height: math.unit(3.5, "inches"),
  10521. weight: math.unit(19, "grams"),
  10522. name: "Back",
  10523. image: {
  10524. source: "./media/characters/mallow/back.svg",
  10525. extra: 471 / 431
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(3.5, "inches"),
  10533. default: true
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10539. {
  10540. front: {
  10541. height: math.unit(9, "feet"),
  10542. weight: math.unit(230, "kg"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/starry-aqua/front.svg"
  10546. }
  10547. },
  10548. back: {
  10549. height: math.unit(9, "feet"),
  10550. weight: math.unit(230, "kg"),
  10551. name: "Back",
  10552. image: {
  10553. source: "./media/characters/starry-aqua/back.svg"
  10554. }
  10555. },
  10556. hand: {
  10557. height: math.unit(9 * 0.1168, "feet"),
  10558. name: "Hand",
  10559. image: {
  10560. source: "./media/characters/starry-aqua/hand.svg"
  10561. }
  10562. },
  10563. foot: {
  10564. height: math.unit(9 * 0.18, "feet"),
  10565. name: "Foot",
  10566. image: {
  10567. source: "./media/characters/starry-aqua/foot.svg"
  10568. }
  10569. }
  10570. },
  10571. [
  10572. {
  10573. name: "Micro",
  10574. height: math.unit(3, "inches")
  10575. },
  10576. {
  10577. name: "Normal",
  10578. height: math.unit(9, "feet")
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(300, "feet"),
  10583. default: true
  10584. },
  10585. {
  10586. name: "Megamacro",
  10587. height: math.unit(3200, "feet")
  10588. }
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10593. {
  10594. front: {
  10595. height: math.unit(15, "feet"),
  10596. weight: math.unit(5026, "lb"),
  10597. name: "Front",
  10598. image: {
  10599. source: "./media/characters/luka-towers/front.svg",
  10600. extra: 1269/1133,
  10601. bottom: 51/1320
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(15, "feet"),
  10609. default: true
  10610. },
  10611. {
  10612. name: "Minimacro",
  10613. height: math.unit(25, "feet")
  10614. },
  10615. {
  10616. name: "Macro",
  10617. height: math.unit(320, "feet")
  10618. },
  10619. {
  10620. name: "Megamacro",
  10621. height: math.unit(35000, "feet")
  10622. },
  10623. {
  10624. name: "Gigamacro",
  10625. height: math.unit(4000, "miles")
  10626. },
  10627. {
  10628. name: "Teramacro",
  10629. height: math.unit(15000, "miles")
  10630. },
  10631. ]
  10632. ))
  10633. characterMakers.push(() => makeCharacter(
  10634. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10635. {
  10636. front: {
  10637. height: math.unit(6, "feet"),
  10638. weight: math.unit(150, "lb"),
  10639. name: "Front",
  10640. image: {
  10641. source: "./media/characters/natalie-nightring/front.svg",
  10642. extra: 1,
  10643. bottom: 0.06
  10644. }
  10645. },
  10646. },
  10647. [
  10648. {
  10649. name: "Uh Oh",
  10650. height: math.unit(0.1, "mm")
  10651. },
  10652. {
  10653. name: "Small",
  10654. height: math.unit(3, "inches")
  10655. },
  10656. {
  10657. name: "Human Scale",
  10658. height: math.unit(6, "feet")
  10659. },
  10660. {
  10661. name: "Librarian",
  10662. height: math.unit(50, "feet"),
  10663. default: true
  10664. },
  10665. {
  10666. name: "Immense",
  10667. height: math.unit(200, "miles")
  10668. },
  10669. ]
  10670. ))
  10671. characterMakers.push(() => makeCharacter(
  10672. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10673. {
  10674. front: {
  10675. height: math.unit(6, "feet"),
  10676. weight: math.unit(180, "lbs"),
  10677. name: "Front",
  10678. image: {
  10679. source: "./media/characters/danni-rosie/front.svg",
  10680. extra: 1260 / 1128,
  10681. bottom: 0.022
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Micro",
  10688. height: math.unit(2, "inches"),
  10689. default: true
  10690. },
  10691. ]
  10692. ))
  10693. characterMakers.push(() => makeCharacter(
  10694. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10695. {
  10696. front: {
  10697. height: math.unit(5 + 9 / 12, "feet"),
  10698. weight: math.unit(220, "lb"),
  10699. name: "Front",
  10700. image: {
  10701. source: "./media/characters/samantha-kruse/front.svg",
  10702. extra: (985 / 935),
  10703. bottom: 0.03
  10704. }
  10705. },
  10706. frontUndressed: {
  10707. height: math.unit(5 + 9 / 12, "feet"),
  10708. weight: math.unit(220, "lb"),
  10709. name: "Front (Undressed)",
  10710. image: {
  10711. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10712. extra: (973 / 923),
  10713. bottom: 0.025
  10714. }
  10715. },
  10716. fat: {
  10717. height: math.unit(5 + 9 / 12, "feet"),
  10718. weight: math.unit(900, "lb"),
  10719. name: "Front (Fat)",
  10720. image: {
  10721. source: "./media/characters/samantha-kruse/fat.svg",
  10722. extra: 2688 / 2561
  10723. }
  10724. },
  10725. },
  10726. [
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(5 + 9 / 12, "feet"),
  10730. default: true
  10731. }
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10736. {
  10737. back: {
  10738. height: math.unit(5 + 4 / 12, "feet"),
  10739. weight: math.unit(4963, "lb"),
  10740. name: "Back",
  10741. image: {
  10742. source: "./media/characters/amelia-rosie/back.svg",
  10743. extra: 1113 / 963,
  10744. bottom: 0.01
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Level 0",
  10751. height: math.unit(5 + 4 / 12, "feet")
  10752. },
  10753. {
  10754. name: "Level 1",
  10755. height: math.unit(164597, "feet"),
  10756. default: true
  10757. },
  10758. {
  10759. name: "Level 2",
  10760. height: math.unit(956243, "miles")
  10761. },
  10762. {
  10763. name: "Level 3",
  10764. height: math.unit(29421709423, "miles")
  10765. },
  10766. {
  10767. name: "Level 4",
  10768. height: math.unit(154, "lightyears")
  10769. },
  10770. {
  10771. name: "Level 5",
  10772. height: math.unit(4738272, "lightyears")
  10773. },
  10774. {
  10775. name: "Level 6",
  10776. height: math.unit(145787152896, "lightyears")
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10782. {
  10783. front: {
  10784. height: math.unit(5 + 11 / 12, "feet"),
  10785. weight: math.unit(65, "kg"),
  10786. name: "Front",
  10787. image: {
  10788. source: "./media/characters/rook-kitara/front.svg",
  10789. extra: 1347 / 1274,
  10790. bottom: 0.005
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Totally Unfair",
  10797. height: math.unit(1.8, "mm")
  10798. },
  10799. {
  10800. name: "Lap Rookie",
  10801. height: math.unit(1.4, "feet")
  10802. },
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(5 + 11 / 12, "feet"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "How Did This Happen",
  10810. height: math.unit(80, "miles")
  10811. }
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(7, "feet"),
  10819. weight: math.unit(300, "lb"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/pisces/front.svg",
  10823. extra: 2255 / 2115,
  10824. bottom: 0.03
  10825. }
  10826. },
  10827. back: {
  10828. height: math.unit(7, "feet"),
  10829. weight: math.unit(300, "lb"),
  10830. name: "Back",
  10831. image: {
  10832. source: "./media/characters/pisces/back.svg",
  10833. extra: 2146 / 2055,
  10834. bottom: 0.04
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Normal",
  10841. height: math.unit(7, "feet"),
  10842. default: true
  10843. },
  10844. {
  10845. name: "Swimming Pool",
  10846. height: math.unit(12.2, "meters")
  10847. },
  10848. {
  10849. name: "Olympic Swimming Pool",
  10850. height: math.unit(56.3, "meters")
  10851. },
  10852. {
  10853. name: "Lake Superior",
  10854. height: math.unit(93900, "meters")
  10855. },
  10856. {
  10857. name: "Mediterranean Sea",
  10858. height: math.unit(644457, "meters")
  10859. },
  10860. {
  10861. name: "World's Oceans",
  10862. height: math.unit(4567491, "meters")
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10868. {
  10869. front: {
  10870. height: math.unit(2.3, "meters"),
  10871. weight: math.unit(120, "kg"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/zelas/front.svg"
  10875. }
  10876. },
  10877. side: {
  10878. height: math.unit(2.3, "meters"),
  10879. weight: math.unit(120, "kg"),
  10880. name: "Side",
  10881. image: {
  10882. source: "./media/characters/zelas/side.svg"
  10883. }
  10884. },
  10885. back: {
  10886. height: math.unit(2.3, "meters"),
  10887. weight: math.unit(120, "kg"),
  10888. name: "Back",
  10889. image: {
  10890. source: "./media/characters/zelas/back.svg"
  10891. }
  10892. },
  10893. foot: {
  10894. height: math.unit(1.116, "feet"),
  10895. name: "Foot",
  10896. image: {
  10897. source: "./media/characters/zelas/foot.svg"
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Normal",
  10904. height: math.unit(2.3, "meters")
  10905. },
  10906. {
  10907. name: "Macro",
  10908. height: math.unit(30, "meters"),
  10909. default: true
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10915. {
  10916. front: {
  10917. height: math.unit(1, "inch"),
  10918. weight: math.unit(0.21, "grams"),
  10919. name: "Front",
  10920. image: {
  10921. source: "./media/characters/talbot/front.svg",
  10922. extra: 594 / 544
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Micro",
  10929. height: math.unit(1, "inch"),
  10930. default: true
  10931. },
  10932. ]
  10933. ))
  10934. characterMakers.push(() => makeCharacter(
  10935. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10936. {
  10937. front: {
  10938. height: math.unit(3 + 3 / 12, "feet"),
  10939. weight: math.unit(51.8, "lb"),
  10940. name: "Front",
  10941. image: {
  10942. source: "./media/characters/fliss/front.svg",
  10943. extra: 840 / 640
  10944. }
  10945. },
  10946. },
  10947. [
  10948. {
  10949. name: "Teeny Tiny",
  10950. height: math.unit(1, "mm")
  10951. },
  10952. {
  10953. name: "Small",
  10954. height: math.unit(1, "inch"),
  10955. default: true
  10956. },
  10957. {
  10958. name: "Standard Sylveon",
  10959. height: math.unit(3 + 3 / 12, "feet")
  10960. },
  10961. {
  10962. name: "Large Nuisance",
  10963. height: math.unit(33, "feet")
  10964. },
  10965. {
  10966. name: "City Filler",
  10967. height: math.unit(3000, "feet")
  10968. },
  10969. {
  10970. name: "New Horizon",
  10971. height: math.unit(6000, "miles")
  10972. },
  10973. ]
  10974. ))
  10975. characterMakers.push(() => makeCharacter(
  10976. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10977. {
  10978. front: {
  10979. height: math.unit(5, "cm"),
  10980. weight: math.unit(1.94, "g"),
  10981. name: "Front",
  10982. image: {
  10983. source: "./media/characters/fleta/front.svg",
  10984. extra: 835 / 803
  10985. }
  10986. },
  10987. back: {
  10988. height: math.unit(5, "cm"),
  10989. weight: math.unit(1.94, "g"),
  10990. name: "Back",
  10991. image: {
  10992. source: "./media/characters/fleta/back.svg",
  10993. extra: 835 / 803
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Micro",
  11000. height: math.unit(5, "cm"),
  11001. default: true
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(6, "feet"),
  11010. weight: math.unit(225, "lb"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/dominic/front.svg",
  11014. extra: 1770 / 1620,
  11015. bottom: 0.025
  11016. }
  11017. },
  11018. back: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(225, "lb"),
  11021. name: "Back",
  11022. image: {
  11023. source: "./media/characters/dominic/back.svg",
  11024. extra: 1745 / 1620,
  11025. bottom: 0.065
  11026. }
  11027. },
  11028. },
  11029. [
  11030. {
  11031. name: "Nano",
  11032. height: math.unit(0.1, "mm")
  11033. },
  11034. {
  11035. name: "Micro-",
  11036. height: math.unit(1, "mm")
  11037. },
  11038. {
  11039. name: "Micro",
  11040. height: math.unit(4, "inches")
  11041. },
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(6 + 4 / 12, "feet"),
  11045. default: true
  11046. },
  11047. {
  11048. name: "Macro",
  11049. height: math.unit(115, "feet")
  11050. },
  11051. {
  11052. name: "Macro+",
  11053. height: math.unit(955, "feet")
  11054. },
  11055. {
  11056. name: "Megamacro",
  11057. height: math.unit(8990, "feet")
  11058. },
  11059. {
  11060. name: "Gigmacro",
  11061. height: math.unit(9310, "miles")
  11062. },
  11063. {
  11064. name: "Teramacro",
  11065. height: math.unit(1567005010, "miles")
  11066. },
  11067. {
  11068. name: "Examacro",
  11069. height: math.unit(1425, "parsecs")
  11070. },
  11071. ]
  11072. ))
  11073. characterMakers.push(() => makeCharacter(
  11074. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11075. {
  11076. front: {
  11077. height: math.unit(400, "feet"),
  11078. weight: math.unit(44444444, "lb"),
  11079. name: "Front",
  11080. image: {
  11081. source: "./media/characters/major-colonel/front.svg"
  11082. }
  11083. },
  11084. back: {
  11085. height: math.unit(400, "feet"),
  11086. weight: math.unit(44444444, "lb"),
  11087. name: "Back",
  11088. image: {
  11089. source: "./media/characters/major-colonel/back.svg"
  11090. }
  11091. },
  11092. },
  11093. [
  11094. {
  11095. name: "Macro",
  11096. height: math.unit(400, "feet"),
  11097. default: true
  11098. },
  11099. ]
  11100. ))
  11101. characterMakers.push(() => makeCharacter(
  11102. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11103. {
  11104. catFront: {
  11105. height: math.unit(6, "feet"),
  11106. weight: math.unit(120, "lb"),
  11107. name: "Front (Cat Side)",
  11108. image: {
  11109. source: "./media/characters/axel-lycan/cat-front.svg",
  11110. extra: 430 / 402,
  11111. bottom: 43 / 472.35
  11112. }
  11113. },
  11114. catBack: {
  11115. height: math.unit(6, "feet"),
  11116. weight: math.unit(120, "lb"),
  11117. name: "Back (Cat Side)",
  11118. image: {
  11119. source: "./media/characters/axel-lycan/cat-back.svg",
  11120. extra: 447 / 419,
  11121. bottom: 23.3 / 469
  11122. }
  11123. },
  11124. wolfFront: {
  11125. height: math.unit(6, "feet"),
  11126. weight: math.unit(120, "lb"),
  11127. name: "Front (Wolf Side)",
  11128. image: {
  11129. source: "./media/characters/axel-lycan/wolf-front.svg",
  11130. extra: 485 / 456,
  11131. bottom: 19 / 504
  11132. }
  11133. },
  11134. wolfBack: {
  11135. height: math.unit(6, "feet"),
  11136. weight: math.unit(120, "lb"),
  11137. name: "Back (Wolf Side)",
  11138. image: {
  11139. source: "./media/characters/axel-lycan/wolf-back.svg",
  11140. extra: 475 / 438,
  11141. bottom: 39.2 / 514
  11142. }
  11143. },
  11144. },
  11145. [
  11146. {
  11147. name: "Macro",
  11148. height: math.unit(1, "km"),
  11149. default: true
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11155. {
  11156. front: {
  11157. height: math.unit(5 + 9 / 12, "feet"),
  11158. weight: math.unit(175, "lb"),
  11159. name: "Front",
  11160. image: {
  11161. source: "./media/characters/vanrel-hyena/front.svg",
  11162. extra: 1086 / 1010,
  11163. bottom: 0.04
  11164. }
  11165. },
  11166. },
  11167. [
  11168. {
  11169. name: "Normal",
  11170. height: math.unit(5 + 9 / 12, "feet"),
  11171. default: true
  11172. },
  11173. ]
  11174. ))
  11175. characterMakers.push(() => makeCharacter(
  11176. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11177. {
  11178. front: {
  11179. height: math.unit(6, "feet"),
  11180. weight: math.unit(103, "lb"),
  11181. name: "Front",
  11182. image: {
  11183. source: "./media/characters/abbott-absol/front.svg",
  11184. extra: 765/694,
  11185. bottom: 47/812
  11186. }
  11187. },
  11188. },
  11189. [
  11190. {
  11191. name: "Megamicro",
  11192. height: math.unit(0.1, "mm")
  11193. },
  11194. {
  11195. name: "Micro",
  11196. height: math.unit(1, "inch")
  11197. },
  11198. {
  11199. name: "Normal",
  11200. height: math.unit(6, "feet"),
  11201. default: true
  11202. },
  11203. ]
  11204. ))
  11205. characterMakers.push(() => makeCharacter(
  11206. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11207. {
  11208. front: {
  11209. height: math.unit(6, "feet"),
  11210. weight: math.unit(264, "lb"),
  11211. name: "Front",
  11212. image: {
  11213. source: "./media/characters/hector/front.svg",
  11214. extra: 2280 / 2130,
  11215. bottom: 0.07
  11216. }
  11217. },
  11218. },
  11219. [
  11220. {
  11221. name: "Normal",
  11222. height: math.unit(12.25, "foot"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Macro",
  11227. height: math.unit(160, "feet")
  11228. },
  11229. ]
  11230. ))
  11231. characterMakers.push(() => makeCharacter(
  11232. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11233. {
  11234. front: {
  11235. height: math.unit(6, "feet"),
  11236. weight: math.unit(150, "lb"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/sal/front.svg",
  11240. extra: 1846 / 1699,
  11241. bottom: 0.04
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Megamacro",
  11248. height: math.unit(10, "miles"),
  11249. default: true
  11250. },
  11251. ]
  11252. ))
  11253. characterMakers.push(() => makeCharacter(
  11254. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11255. {
  11256. front: {
  11257. height: math.unit(3, "meters"),
  11258. weight: math.unit(450, "kg"),
  11259. name: "front",
  11260. image: {
  11261. source: "./media/characters/ranger/front.svg",
  11262. extra: 2401 / 2243,
  11263. bottom: 0.05
  11264. }
  11265. },
  11266. },
  11267. [
  11268. {
  11269. name: "Normal",
  11270. height: math.unit(3, "meters"),
  11271. default: true
  11272. },
  11273. ]
  11274. ))
  11275. characterMakers.push(() => makeCharacter(
  11276. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11277. {
  11278. front: {
  11279. height: math.unit(14, "feet"),
  11280. weight: math.unit(800, "kg"),
  11281. name: "Front",
  11282. image: {
  11283. source: "./media/characters/theresa/front.svg",
  11284. extra: 3575 / 3346,
  11285. bottom: 0.03
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(14, "feet"),
  11293. default: true
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11299. {
  11300. front: {
  11301. height: math.unit(6, "feet"),
  11302. weight: math.unit(3, "kg"),
  11303. name: "Front",
  11304. image: {
  11305. source: "./media/characters/ine/front.svg",
  11306. extra: 678 / 539,
  11307. bottom: 0.023
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Normal",
  11314. height: math.unit(2.265, "feet"),
  11315. default: true
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(5, "feet"),
  11324. weight: math.unit(30, "kg"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/vial/front.svg",
  11328. extra: 1365 / 1277,
  11329. bottom: 0.04
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Normal",
  11336. height: math.unit(5, "feet"),
  11337. default: true
  11338. },
  11339. ]
  11340. ))
  11341. characterMakers.push(() => makeCharacter(
  11342. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11343. {
  11344. side: {
  11345. height: math.unit(3.4, "meters"),
  11346. weight: math.unit(1000, "lb"),
  11347. name: "Side",
  11348. image: {
  11349. source: "./media/characters/rovoska/side.svg",
  11350. extra: 4403 / 1515
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(3.4, "meters"),
  11358. default: true
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11364. {
  11365. front: {
  11366. height: math.unit(8, "feet"),
  11367. weight: math.unit(315, "lb"),
  11368. name: "Front",
  11369. image: {
  11370. source: "./media/characters/gunner-rotthbauer/front.svg"
  11371. }
  11372. },
  11373. back: {
  11374. height: math.unit(8, "feet"),
  11375. weight: math.unit(315, "lb"),
  11376. name: "Back",
  11377. image: {
  11378. source: "./media/characters/gunner-rotthbauer/back.svg"
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Micro",
  11385. height: math.unit(3.5, "inches")
  11386. },
  11387. {
  11388. name: "Normal",
  11389. height: math.unit(8, "feet"),
  11390. default: true
  11391. },
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(250, "feet")
  11395. },
  11396. {
  11397. name: "Megamacro",
  11398. height: math.unit(1, "AU")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(5 + 5 / 12, "feet"),
  11407. weight: math.unit(140, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/allatia/front.svg",
  11411. extra: 1227 / 1180,
  11412. bottom: 0.027
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Normal",
  11419. height: math.unit(5 + 5 / 12, "feet")
  11420. },
  11421. {
  11422. name: "Macro",
  11423. height: math.unit(250, "feet"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Megamacro",
  11428. height: math.unit(8, "miles")
  11429. }
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11434. {
  11435. front: {
  11436. height: math.unit(6, "feet"),
  11437. weight: math.unit(120, "lb"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/tene/front.svg",
  11441. extra: 814/750,
  11442. bottom: 36/850
  11443. }
  11444. },
  11445. stomping: {
  11446. height: math.unit(2.025, "meters"),
  11447. weight: math.unit(120, "lb"),
  11448. name: "Stomping",
  11449. image: {
  11450. source: "./media/characters/tene/stomping.svg",
  11451. extra: 885/821,
  11452. bottom: 15/900
  11453. }
  11454. },
  11455. sitting: {
  11456. height: math.unit(1, "meter"),
  11457. weight: math.unit(120, "lb"),
  11458. name: "Sitting",
  11459. image: {
  11460. source: "./media/characters/tene/sitting.svg",
  11461. extra: 396/366,
  11462. bottom: 79/475
  11463. }
  11464. },
  11465. smiling: {
  11466. height: math.unit(1.2, "feet"),
  11467. name: "Smiling",
  11468. image: {
  11469. source: "./media/characters/tene/smiling.svg",
  11470. extra: 1364/1071,
  11471. bottom: 0/1364
  11472. }
  11473. },
  11474. smug: {
  11475. height: math.unit(1.3, "feet"),
  11476. name: "Smug",
  11477. image: {
  11478. source: "./media/characters/tene/smug.svg",
  11479. extra: 1323/1082,
  11480. bottom: 0/1323
  11481. }
  11482. },
  11483. feral: {
  11484. height: math.unit(3.9, "feet"),
  11485. weight: math.unit(250, "lb"),
  11486. name: "Feral",
  11487. image: {
  11488. source: "./media/characters/tene/feral.svg",
  11489. extra: 717 / 458,
  11490. bottom: 0.179
  11491. }
  11492. },
  11493. },
  11494. [
  11495. {
  11496. name: "Normal",
  11497. height: math.unit(6, "feet")
  11498. },
  11499. {
  11500. name: "Macro",
  11501. height: math.unit(300, "feet"),
  11502. default: true
  11503. },
  11504. {
  11505. name: "Megamacro",
  11506. height: math.unit(5, "miles")
  11507. },
  11508. ]
  11509. ))
  11510. characterMakers.push(() => makeCharacter(
  11511. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11512. {
  11513. side: {
  11514. height: math.unit(6, "feet"),
  11515. name: "Side",
  11516. image: {
  11517. source: "./media/characters/evander/side.svg",
  11518. extra: 877 / 477
  11519. }
  11520. },
  11521. },
  11522. [
  11523. {
  11524. name: "Normal",
  11525. height: math.unit(0.83, "meters"),
  11526. default: true
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(12, "feet"),
  11535. weight: math.unit(1000, "lb"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11539. extra: 1762 / 1611
  11540. }
  11541. },
  11542. back: {
  11543. height: math.unit(12, "feet"),
  11544. weight: math.unit(1000, "lb"),
  11545. name: "Back",
  11546. image: {
  11547. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11548. extra: 1762 / 1611
  11549. }
  11550. },
  11551. },
  11552. [
  11553. {
  11554. name: "Normal",
  11555. height: math.unit(12, "feet"),
  11556. default: true
  11557. },
  11558. {
  11559. name: "Kaiju",
  11560. height: math.unit(150, "feet")
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(5 + 11/12, "feet"),
  11569. weight: math.unit(180, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/zero-alurus/front.svg",
  11573. extra: 1032/957,
  11574. bottom: 10/1042
  11575. }
  11576. },
  11577. back: {
  11578. height: math.unit(5 + 11/12, "feet"),
  11579. weight: math.unit(180, "lb"),
  11580. name: "Back",
  11581. image: {
  11582. source: "./media/characters/zero-alurus/back.svg",
  11583. extra: 1027/950,
  11584. bottom: 12/1039
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(5 + 11 / 12, "feet")
  11592. },
  11593. {
  11594. name: "Mini-Macro",
  11595. height: math.unit(25, "feet")
  11596. },
  11597. {
  11598. name: "Macro",
  11599. height: math.unit(90, "feet"),
  11600. default: true
  11601. },
  11602. {
  11603. name: "Macro+",
  11604. height: math.unit(500, "feet")
  11605. },
  11606. {
  11607. name: "Megamacro",
  11608. height: math.unit(1200, "feet")
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(6, "feet"),
  11617. weight: math.unit(200, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/mega-shi/front.svg",
  11621. extra: 1279 / 1250,
  11622. bottom: 0.02
  11623. }
  11624. },
  11625. back: {
  11626. height: math.unit(6, "feet"),
  11627. weight: math.unit(200, "lb"),
  11628. name: "Back",
  11629. image: {
  11630. source: "./media/characters/mega-shi/back.svg",
  11631. extra: 1279 / 1250,
  11632. bottom: 0.02
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Micro",
  11639. height: math.unit(16 + 6 / 12, "feet")
  11640. },
  11641. {
  11642. name: "Third Dimension",
  11643. height: math.unit(40, "meters")
  11644. },
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(660, "feet"),
  11648. default: true
  11649. },
  11650. {
  11651. name: "Megamacro",
  11652. height: math.unit(10, "miles")
  11653. },
  11654. {
  11655. name: "Planetary Launch",
  11656. height: math.unit(500, "miles")
  11657. },
  11658. {
  11659. name: "Interstellar",
  11660. height: math.unit(1e9, "miles")
  11661. },
  11662. {
  11663. name: "Leaving the Universe",
  11664. height: math.unit(1, "gigaparsec")
  11665. },
  11666. {
  11667. name: "Travelling Universes",
  11668. height: math.unit(30e15, "parsecs")
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(5 + 4/12, "feet"),
  11677. weight: math.unit(120, "lb"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/odyssey/front.svg",
  11681. extra: 1747/1571,
  11682. bottom: 47/1794
  11683. }
  11684. },
  11685. side: {
  11686. height: math.unit(5.1, "feet"),
  11687. weight: math.unit(120, "lb"),
  11688. name: "Side",
  11689. image: {
  11690. source: "./media/characters/odyssey/side.svg",
  11691. extra: 1847/1619,
  11692. bottom: 47/1894
  11693. }
  11694. },
  11695. lounging: {
  11696. height: math.unit(1.464, "feet"),
  11697. weight: math.unit(120, "lb"),
  11698. name: "Lounging",
  11699. image: {
  11700. source: "./media/characters/odyssey/lounging.svg",
  11701. extra: 1235/837,
  11702. bottom: 551/1786
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(5 + 4 / 12, "feet")
  11710. },
  11711. {
  11712. name: "Macro",
  11713. height: math.unit(1, "km")
  11714. },
  11715. {
  11716. name: "Megamacro",
  11717. height: math.unit(3000, "km")
  11718. },
  11719. {
  11720. name: "Gigamacro",
  11721. height: math.unit(1, "AU"),
  11722. default: true
  11723. },
  11724. {
  11725. name: "Omniversal",
  11726. height: math.unit(100e14, "lightyears")
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11732. {
  11733. front: {
  11734. height: math.unit(5 + 10/12, "feet"),
  11735. name: "Front",
  11736. image: {
  11737. source: "./media/characters/mekuto/front.svg",
  11738. extra: 875/835,
  11739. bottom: 46/921
  11740. }
  11741. },
  11742. },
  11743. [
  11744. {
  11745. name: "Minimicro",
  11746. height: math.unit(0.2, "inches")
  11747. },
  11748. {
  11749. name: "Micro",
  11750. height: math.unit(1.5, "inches")
  11751. },
  11752. {
  11753. name: "Normal",
  11754. height: math.unit(5 + 10 / 12, "feet"),
  11755. default: true
  11756. },
  11757. {
  11758. name: "Minimacro",
  11759. height: math.unit(17 + 9 / 12, "feet")
  11760. },
  11761. {
  11762. name: "Macro",
  11763. height: math.unit(177.5, "feet")
  11764. },
  11765. {
  11766. name: "Megamacro",
  11767. height: math.unit(152, "miles")
  11768. },
  11769. ]
  11770. ))
  11771. characterMakers.push(() => makeCharacter(
  11772. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11773. {
  11774. front: {
  11775. height: math.unit(6.5, "inches"),
  11776. weight: math.unit(13, "oz"),
  11777. name: "Front",
  11778. image: {
  11779. source: "./media/characters/dafydd-tomos/front.svg",
  11780. extra: 2990 / 2603,
  11781. bottom: 0.03
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Micro",
  11788. height: math.unit(6.5, "inches"),
  11789. default: true
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/splinter/front.svg",
  11802. extra: 2990 / 2882,
  11803. bottom: 0.04
  11804. }
  11805. },
  11806. back: {
  11807. height: math.unit(6, "feet"),
  11808. weight: math.unit(150, "lb"),
  11809. name: "Back",
  11810. image: {
  11811. source: "./media/characters/splinter/back.svg",
  11812. extra: 2990 / 2882,
  11813. bottom: 0.04
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Normal",
  11820. height: math.unit(6, "feet")
  11821. },
  11822. {
  11823. name: "Macro",
  11824. height: math.unit(230, "meters"),
  11825. default: true
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(4 + 10 / 12, "feet"),
  11834. weight: math.unit(480, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/snow-gabumon/front.svg",
  11838. extra: 1140 / 963,
  11839. bottom: 0.058
  11840. }
  11841. },
  11842. back: {
  11843. height: math.unit(4 + 10 / 12, "feet"),
  11844. weight: math.unit(480, "lb"),
  11845. name: "Back",
  11846. image: {
  11847. source: "./media/characters/snow-gabumon/back.svg",
  11848. extra: 1115 / 962,
  11849. bottom: 0.041
  11850. }
  11851. },
  11852. frontUndresed: {
  11853. height: math.unit(4 + 10 / 12, "feet"),
  11854. weight: math.unit(480, "lb"),
  11855. name: "Front (Undressed)",
  11856. image: {
  11857. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11858. extra: 1061 / 960,
  11859. bottom: 0.045
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Micro",
  11866. height: math.unit(1, "inch")
  11867. },
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(4 + 10 / 12, "feet"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(200, "feet")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(120, "miles")
  11880. },
  11881. {
  11882. name: "Gigamacro",
  11883. height: math.unit(9800, "miles")
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(1.7, "meters"),
  11892. weight: math.unit(140, "lb"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/moody/front.svg",
  11896. extra: 3226 / 3007,
  11897. bottom: 0.087
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Micro",
  11904. height: math.unit(1, "mm")
  11905. },
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(1.7, "meters"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(80, "meters")
  11914. },
  11915. {
  11916. name: "Macro+",
  11917. height: math.unit(500, "meters")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(6, "feet"),
  11926. weight: math.unit(150, "lb"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/zyas/front.svg",
  11930. extra: 1180 / 1120,
  11931. bottom: 0.045
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Normal",
  11938. height: math.unit(10, "feet"),
  11939. default: true
  11940. },
  11941. {
  11942. name: "Macro",
  11943. height: math.unit(500, "feet")
  11944. },
  11945. {
  11946. name: "Megamacro",
  11947. height: math.unit(5, "miles")
  11948. },
  11949. {
  11950. name: "Teramacro",
  11951. height: math.unit(150000, "miles")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(6, "feet"),
  11960. weight: math.unit(150, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/cuon/front.svg",
  11964. extra: 1390 / 1320,
  11965. bottom: 0.008
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Micro",
  11972. height: math.unit(3, "inches")
  11973. },
  11974. {
  11975. name: "Normal",
  11976. height: math.unit(18 + 9 / 12, "feet"),
  11977. default: true
  11978. },
  11979. {
  11980. name: "Macro",
  11981. height: math.unit(360, "feet")
  11982. },
  11983. {
  11984. name: "Megamacro",
  11985. height: math.unit(360, "miles")
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11991. {
  11992. front: {
  11993. height: math.unit(2.4, "meters"),
  11994. weight: math.unit(70, "kg"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/nyanuxk/front.svg",
  11998. extra: 1172 / 1084,
  11999. bottom: 0.065
  12000. }
  12001. },
  12002. side: {
  12003. height: math.unit(2.4, "meters"),
  12004. weight: math.unit(70, "kg"),
  12005. name: "Side",
  12006. image: {
  12007. source: "./media/characters/nyanuxk/side.svg",
  12008. extra: 1190 / 1132,
  12009. bottom: 0.007
  12010. }
  12011. },
  12012. back: {
  12013. height: math.unit(2.4, "meters"),
  12014. weight: math.unit(70, "kg"),
  12015. name: "Back",
  12016. image: {
  12017. source: "./media/characters/nyanuxk/back.svg",
  12018. extra: 1200 / 1141,
  12019. bottom: 0.015
  12020. }
  12021. },
  12022. foot: {
  12023. height: math.unit(0.52, "meters"),
  12024. name: "Foot",
  12025. image: {
  12026. source: "./media/characters/nyanuxk/foot.svg"
  12027. }
  12028. },
  12029. },
  12030. [
  12031. {
  12032. name: "Micro",
  12033. height: math.unit(2, "cm")
  12034. },
  12035. {
  12036. name: "Normal",
  12037. height: math.unit(2.4, "meters"),
  12038. default: true
  12039. },
  12040. {
  12041. name: "Smaller Macro",
  12042. height: math.unit(120, "meters")
  12043. },
  12044. {
  12045. name: "Bigger Macro",
  12046. height: math.unit(1.2, "km")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(15, "kilometers")
  12051. },
  12052. {
  12053. name: "Gigamacro",
  12054. height: math.unit(2000, "km")
  12055. },
  12056. {
  12057. name: "Teramacro",
  12058. height: math.unit(500000, "km")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12064. {
  12065. side: {
  12066. height: math.unit(6, "feet"),
  12067. name: "Side",
  12068. image: {
  12069. source: "./media/characters/ailbhe/side.svg",
  12070. extra: 757 / 464,
  12071. bottom: 0.041
  12072. }
  12073. },
  12074. },
  12075. [
  12076. {
  12077. name: "Normal",
  12078. height: math.unit(1.07, "meters"),
  12079. default: true
  12080. },
  12081. ]
  12082. ))
  12083. characterMakers.push(() => makeCharacter(
  12084. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12085. {
  12086. front: {
  12087. height: math.unit(6, "feet"),
  12088. weight: math.unit(120, "kg"),
  12089. name: "Front",
  12090. image: {
  12091. source: "./media/characters/zevulfius/front.svg",
  12092. extra: 965 / 903
  12093. }
  12094. },
  12095. side: {
  12096. height: math.unit(6, "feet"),
  12097. weight: math.unit(120, "kg"),
  12098. name: "Side",
  12099. image: {
  12100. source: "./media/characters/zevulfius/side.svg",
  12101. extra: 939 / 900
  12102. }
  12103. },
  12104. back: {
  12105. height: math.unit(6, "feet"),
  12106. weight: math.unit(120, "kg"),
  12107. name: "Back",
  12108. image: {
  12109. source: "./media/characters/zevulfius/back.svg",
  12110. extra: 918 / 854,
  12111. bottom: 0.005
  12112. }
  12113. },
  12114. foot: {
  12115. height: math.unit(6 / 3.72, "feet"),
  12116. name: "Foot",
  12117. image: {
  12118. source: "./media/characters/zevulfius/foot.svg"
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Macro",
  12125. height: math.unit(750, "meters")
  12126. },
  12127. {
  12128. name: "Megamacro",
  12129. height: math.unit(20, "km"),
  12130. default: true
  12131. },
  12132. {
  12133. name: "Gigamacro",
  12134. height: math.unit(2000, "km")
  12135. },
  12136. {
  12137. name: "Teramacro",
  12138. height: math.unit(250000, "km")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(100, "feet"),
  12147. weight: math.unit(350, "kg"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/rikes/front.svg",
  12151. extra: 1565 / 1483,
  12152. bottom: 0.017
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(100, "feet"),
  12160. default: true
  12161. },
  12162. ]
  12163. ))
  12164. characterMakers.push(() => makeCharacter(
  12165. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12166. {
  12167. front: {
  12168. height: math.unit(8, "feet"),
  12169. weight: math.unit(356, "lb"),
  12170. name: "Front",
  12171. image: {
  12172. source: "./media/characters/adam-silver-mane/front.svg",
  12173. extra: 1036/937,
  12174. bottom: 63/1099
  12175. }
  12176. },
  12177. side: {
  12178. height: math.unit(8, "feet"),
  12179. weight: math.unit(356, "lb"),
  12180. name: "Side",
  12181. image: {
  12182. source: "./media/characters/adam-silver-mane/side.svg",
  12183. extra: 997/901,
  12184. bottom: 59/1056
  12185. }
  12186. },
  12187. frontNsfw: {
  12188. height: math.unit(8, "feet"),
  12189. weight: math.unit(356, "lb"),
  12190. name: "Front (NSFW)",
  12191. image: {
  12192. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12193. extra: 1036/937,
  12194. bottom: 63/1099
  12195. }
  12196. },
  12197. sideNsfw: {
  12198. height: math.unit(8, "feet"),
  12199. weight: math.unit(356, "lb"),
  12200. name: "Side (NSFW)",
  12201. image: {
  12202. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12203. extra: 997/901,
  12204. bottom: 59/1056
  12205. }
  12206. },
  12207. dick: {
  12208. height: math.unit(2.1, "feet"),
  12209. name: "Dick",
  12210. image: {
  12211. source: "./media/characters/adam-silver-mane/dick.svg"
  12212. }
  12213. },
  12214. taur: {
  12215. height: math.unit(16, "feet"),
  12216. weight: math.unit(1500, "kg"),
  12217. name: "Taur",
  12218. image: {
  12219. source: "./media/characters/adam-silver-mane/taur.svg",
  12220. extra: 1713 / 1571,
  12221. bottom: 0.01
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(8, "feet")
  12229. },
  12230. {
  12231. name: "Minimacro",
  12232. height: math.unit(80, "feet")
  12233. },
  12234. {
  12235. name: "MDA",
  12236. height: math.unit(80, "meters")
  12237. },
  12238. {
  12239. name: "Macro",
  12240. height: math.unit(800, "feet"),
  12241. default: true
  12242. },
  12243. {
  12244. name: "Megamacro",
  12245. height: math.unit(8000, "feet")
  12246. },
  12247. {
  12248. name: "Gigamacro",
  12249. height: math.unit(800, "miles")
  12250. },
  12251. {
  12252. name: "Teramacro",
  12253. height: math.unit(80000, "miles")
  12254. },
  12255. {
  12256. name: "Celestial",
  12257. height: math.unit(8e6, "miles")
  12258. },
  12259. {
  12260. name: "Star Dragon",
  12261. height: math.unit(800000, "parsecs")
  12262. },
  12263. {
  12264. name: "Godly",
  12265. height: math.unit(800, "teraparsecs")
  12266. },
  12267. ]
  12268. ))
  12269. characterMakers.push(() => makeCharacter(
  12270. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12271. {
  12272. front: {
  12273. height: math.unit(6, "feet"),
  12274. weight: math.unit(150, "lb"),
  12275. name: "Front",
  12276. image: {
  12277. source: "./media/characters/ky'owin/front.svg",
  12278. extra: 3862/3053,
  12279. bottom: 74/3936
  12280. }
  12281. },
  12282. },
  12283. [
  12284. {
  12285. name: "Normal",
  12286. height: math.unit(6 + 8 / 12, "feet")
  12287. },
  12288. {
  12289. name: "Large",
  12290. height: math.unit(68, "feet")
  12291. },
  12292. {
  12293. name: "Macro",
  12294. height: math.unit(132, "feet")
  12295. },
  12296. {
  12297. name: "Macro+",
  12298. height: math.unit(340, "feet")
  12299. },
  12300. {
  12301. name: "Macro++",
  12302. height: math.unit(680, "feet"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Megamacro",
  12307. height: math.unit(1, "mile")
  12308. },
  12309. {
  12310. name: "Megamacro+",
  12311. height: math.unit(10, "miles")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(4, "feet"),
  12320. weight: math.unit(50, "lb"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/mal/front.svg",
  12324. extra: 785 / 724,
  12325. bottom: 0.07
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Micro",
  12332. height: math.unit(4, "inches")
  12333. },
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(4, "feet"),
  12337. default: true
  12338. },
  12339. {
  12340. name: "Macro",
  12341. height: math.unit(200, "feet")
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(6, "feet"),
  12350. weight: math.unit(150, "lb"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/jordan-deware/front.svg",
  12354. extra: 1191 / 1012
  12355. }
  12356. },
  12357. },
  12358. [
  12359. {
  12360. name: "Nano",
  12361. height: math.unit(0.01, "mm")
  12362. },
  12363. {
  12364. name: "Minimicro",
  12365. height: math.unit(1, "mm")
  12366. },
  12367. {
  12368. name: "Micro",
  12369. height: math.unit(0.5, "inches")
  12370. },
  12371. {
  12372. name: "Normal",
  12373. height: math.unit(4, "feet"),
  12374. default: true
  12375. },
  12376. {
  12377. name: "Minimacro",
  12378. height: math.unit(40, "meters")
  12379. },
  12380. {
  12381. name: "Small Macro",
  12382. height: math.unit(400, "meters")
  12383. },
  12384. {
  12385. name: "Macro",
  12386. height: math.unit(4, "miles")
  12387. },
  12388. {
  12389. name: "Megamacro",
  12390. height: math.unit(40, "miles")
  12391. },
  12392. {
  12393. name: "Megamacro+",
  12394. height: math.unit(400, "miles")
  12395. },
  12396. {
  12397. name: "Gigamacro",
  12398. height: math.unit(400000, "miles")
  12399. },
  12400. ]
  12401. ))
  12402. characterMakers.push(() => makeCharacter(
  12403. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12404. {
  12405. front: {
  12406. height: math.unit(15, "feet"),
  12407. weight: math.unit(3000, "kg"),
  12408. preyCapacity: math.unit(450, "people"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/kimiko/front.svg",
  12412. extra: 875/832,
  12413. bottom: 36/911
  12414. },
  12415. extraAttributes: {
  12416. "pawSize": {
  12417. name: "Paw Size",
  12418. power: 1,
  12419. type: "length",
  12420. base: math.unit(0.9, "meters")
  12421. },
  12422. }
  12423. },
  12424. side: {
  12425. height: math.unit(15, "feet"),
  12426. weight: math.unit(3000, "kg"),
  12427. preyCapacity: math.unit(400, "people"),
  12428. name: "Side",
  12429. image: {
  12430. source: "./media/characters/kimiko/side.svg",
  12431. extra: 448/270,
  12432. bottom: 7/455
  12433. },
  12434. extraAttributes: {
  12435. "pawSize": {
  12436. name: "Paw Size",
  12437. power: 1,
  12438. type: "length",
  12439. base: math.unit(0.9, "meters")
  12440. },
  12441. }
  12442. },
  12443. maw: {
  12444. height: math.unit(0.81, "feet"),
  12445. name: "Maw",
  12446. image: {
  12447. source: "./media/characters/kimiko/maw.svg"
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(15, "feet"),
  12455. default: true
  12456. },
  12457. {
  12458. name: "Macro",
  12459. height: math.unit(220, "feet")
  12460. },
  12461. {
  12462. name: "Macro+",
  12463. height: math.unit(1450, "feet")
  12464. },
  12465. {
  12466. name: "Megamacro",
  12467. height: math.unit(11500, "feet")
  12468. },
  12469. {
  12470. name: "Gigamacro",
  12471. height: math.unit(9500, "miles")
  12472. },
  12473. {
  12474. name: "Teramacro",
  12475. height: math.unit(2208005005, "miles")
  12476. },
  12477. {
  12478. name: "Examacro",
  12479. height: math.unit(2750, "parsecs")
  12480. },
  12481. {
  12482. name: "Zettamacro",
  12483. height: math.unit(101500, "parsecs")
  12484. },
  12485. ]
  12486. ))
  12487. characterMakers.push(() => makeCharacter(
  12488. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12489. {
  12490. front: {
  12491. height: math.unit(6, "feet"),
  12492. weight: math.unit(70, "kg"),
  12493. name: "Front",
  12494. image: {
  12495. source: "./media/characters/andrew-sleepy/front.svg"
  12496. }
  12497. },
  12498. side: {
  12499. height: math.unit(6, "feet"),
  12500. weight: math.unit(70, "kg"),
  12501. name: "Side",
  12502. image: {
  12503. source: "./media/characters/andrew-sleepy/side.svg"
  12504. }
  12505. },
  12506. },
  12507. [
  12508. {
  12509. name: "Micro",
  12510. height: math.unit(1, "mm"),
  12511. default: true
  12512. },
  12513. ]
  12514. ))
  12515. characterMakers.push(() => makeCharacter(
  12516. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12517. {
  12518. front: {
  12519. height: math.unit(6, "feet"),
  12520. weight: math.unit(150, "lb"),
  12521. name: "Front",
  12522. image: {
  12523. source: "./media/characters/judio/front.svg",
  12524. extra: 1258 / 1110
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Normal",
  12531. height: math.unit(5 + 6 / 12, "feet")
  12532. },
  12533. {
  12534. name: "Macro",
  12535. height: math.unit(1000, "feet"),
  12536. default: true
  12537. },
  12538. {
  12539. name: "Megamacro",
  12540. height: math.unit(10, "miles")
  12541. },
  12542. ]
  12543. ))
  12544. characterMakers.push(() => makeCharacter(
  12545. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12546. {
  12547. frontDressed: {
  12548. height: math.unit(6, "feet"),
  12549. weight: math.unit(68, "kg"),
  12550. name: "Front (Dressed)",
  12551. image: {
  12552. source: "./media/characters/nomaxice/front-dressed.svg",
  12553. extra: 1137/824,
  12554. bottom: 74/1211
  12555. }
  12556. },
  12557. frontShorts: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(68, "kg"),
  12560. name: "Front (Shorts)",
  12561. image: {
  12562. source: "./media/characters/nomaxice/front-shorts.svg",
  12563. extra: 1137/824,
  12564. bottom: 74/1211
  12565. }
  12566. },
  12567. back: {
  12568. height: math.unit(6, "feet"),
  12569. weight: math.unit(68, "kg"),
  12570. name: "Back",
  12571. image: {
  12572. source: "./media/characters/nomaxice/back.svg",
  12573. extra: 822/786,
  12574. bottom: 39/861
  12575. }
  12576. },
  12577. hand: {
  12578. height: math.unit(0.565, "feet"),
  12579. name: "Hand",
  12580. image: {
  12581. source: "./media/characters/nomaxice/hand.svg"
  12582. }
  12583. },
  12584. foot: {
  12585. height: math.unit(1, "feet"),
  12586. name: "Foot",
  12587. image: {
  12588. source: "./media/characters/nomaxice/foot.svg"
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Micro",
  12595. height: math.unit(8, "cm")
  12596. },
  12597. {
  12598. name: "Norm",
  12599. height: math.unit(1.82, "m")
  12600. },
  12601. {
  12602. name: "Norm+",
  12603. height: math.unit(8.8, "feet"),
  12604. default: true
  12605. },
  12606. {
  12607. name: "Big",
  12608. height: math.unit(8, "meters")
  12609. },
  12610. {
  12611. name: "Macro",
  12612. height: math.unit(18, "meters")
  12613. },
  12614. {
  12615. name: "Macro+",
  12616. height: math.unit(88, "meters")
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12622. {
  12623. front: {
  12624. height: math.unit(12, "feet"),
  12625. weight: math.unit(1.5, "tons"),
  12626. name: "Front",
  12627. image: {
  12628. source: "./media/characters/dydros/front.svg",
  12629. extra: 863 / 800,
  12630. bottom: 0.015
  12631. }
  12632. },
  12633. back: {
  12634. height: math.unit(12, "feet"),
  12635. weight: math.unit(1.5, "tons"),
  12636. name: "Back",
  12637. image: {
  12638. source: "./media/characters/dydros/back.svg",
  12639. extra: 900 / 843,
  12640. bottom: 0.005
  12641. }
  12642. },
  12643. },
  12644. [
  12645. {
  12646. name: "Normal",
  12647. height: math.unit(12, "feet"),
  12648. default: true
  12649. },
  12650. ]
  12651. ))
  12652. characterMakers.push(() => makeCharacter(
  12653. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12654. {
  12655. front: {
  12656. height: math.unit(6, "feet"),
  12657. weight: math.unit(100, "kg"),
  12658. name: "Front",
  12659. image: {
  12660. source: "./media/characters/riggi/front.svg",
  12661. extra: 5787 / 5303
  12662. }
  12663. },
  12664. hyper: {
  12665. height: math.unit(6 * 5 / 3, "feet"),
  12666. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12667. name: "Hyper",
  12668. image: {
  12669. source: "./media/characters/riggi/hyper.svg",
  12670. extra: 3595 / 3485
  12671. }
  12672. },
  12673. },
  12674. [
  12675. {
  12676. name: "Small Macro",
  12677. height: math.unit(50, "feet")
  12678. },
  12679. {
  12680. name: "Default",
  12681. height: math.unit(200, "feet"),
  12682. default: true
  12683. },
  12684. {
  12685. name: "Loom",
  12686. height: math.unit(10000, "feet")
  12687. },
  12688. {
  12689. name: "Cruising Altitude",
  12690. height: math.unit(30000, "feet")
  12691. },
  12692. {
  12693. name: "Megamacro",
  12694. height: math.unit(100, "miles")
  12695. },
  12696. {
  12697. name: "Continent Sized",
  12698. height: math.unit(2800, "miles")
  12699. },
  12700. {
  12701. name: "Earth Sized",
  12702. height: math.unit(8000, "miles")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(250, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/alexi/front.svg",
  12715. extra: 3483 / 3291,
  12716. bottom: 0.04
  12717. }
  12718. },
  12719. back: {
  12720. height: math.unit(6, "feet"),
  12721. weight: math.unit(250, "lb"),
  12722. name: "Back",
  12723. image: {
  12724. source: "./media/characters/alexi/back.svg",
  12725. extra: 3533 / 3356,
  12726. bottom: 0.021
  12727. }
  12728. },
  12729. frontTransforming: {
  12730. height: math.unit(8.58, "feet"),
  12731. weight: math.unit(1300, "lb"),
  12732. name: "Transforming",
  12733. image: {
  12734. source: "./media/characters/alexi/front-transforming.svg",
  12735. extra: 437 / 409,
  12736. bottom: 19 / 458.66
  12737. }
  12738. },
  12739. frontTransformed: {
  12740. height: math.unit(12.5, "feet"),
  12741. weight: math.unit(4000, "lb"),
  12742. name: "Transformed",
  12743. image: {
  12744. source: "./media/characters/alexi/front-transformed.svg",
  12745. extra: 639 / 614,
  12746. bottom: 30.55 / 671
  12747. }
  12748. },
  12749. },
  12750. [
  12751. {
  12752. name: "Normal",
  12753. height: math.unit(14, "feet"),
  12754. default: true
  12755. },
  12756. {
  12757. name: "Minimacro",
  12758. height: math.unit(30, "meters")
  12759. },
  12760. {
  12761. name: "Macro",
  12762. height: math.unit(500, "meters")
  12763. },
  12764. {
  12765. name: "Megamacro",
  12766. height: math.unit(9000, "km")
  12767. },
  12768. {
  12769. name: "Teramacro",
  12770. height: math.unit(384000, "km")
  12771. },
  12772. ]
  12773. ))
  12774. characterMakers.push(() => makeCharacter(
  12775. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12776. {
  12777. front: {
  12778. height: math.unit(6, "feet"),
  12779. weight: math.unit(150, "lb"),
  12780. name: "Front",
  12781. image: {
  12782. source: "./media/characters/kayroo/front.svg",
  12783. extra: 1153 / 1038,
  12784. bottom: 0.06
  12785. }
  12786. },
  12787. foot: {
  12788. height: math.unit(6, "feet"),
  12789. weight: math.unit(150, "lb"),
  12790. name: "Foot",
  12791. image: {
  12792. source: "./media/characters/kayroo/foot.svg"
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(8, "feet"),
  12800. default: true
  12801. },
  12802. {
  12803. name: "Minimacro",
  12804. height: math.unit(250, "feet")
  12805. },
  12806. {
  12807. name: "Macro",
  12808. height: math.unit(2800, "feet")
  12809. },
  12810. {
  12811. name: "Megamacro",
  12812. height: math.unit(5200, "feet")
  12813. },
  12814. {
  12815. name: "Gigamacro",
  12816. height: math.unit(27000, "feet")
  12817. },
  12818. {
  12819. name: "Omega",
  12820. height: math.unit(45000, "feet")
  12821. },
  12822. ]
  12823. ))
  12824. characterMakers.push(() => makeCharacter(
  12825. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12826. {
  12827. front: {
  12828. height: math.unit(18, "feet"),
  12829. weight: math.unit(5800, "lb"),
  12830. name: "Front",
  12831. image: {
  12832. source: "./media/characters/rhys/front.svg",
  12833. extra: 3386 / 3090,
  12834. bottom: 0.07
  12835. }
  12836. },
  12837. },
  12838. [
  12839. {
  12840. name: "Normal",
  12841. height: math.unit(18, "feet"),
  12842. default: true
  12843. },
  12844. {
  12845. name: "Working Size",
  12846. height: math.unit(200, "feet")
  12847. },
  12848. {
  12849. name: "Demolition Size",
  12850. height: math.unit(2000, "feet")
  12851. },
  12852. {
  12853. name: "Maximum Licensed Size",
  12854. height: math.unit(5, "miles")
  12855. },
  12856. {
  12857. name: "Maximum Observed Size",
  12858. height: math.unit(10, "yottameters")
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12864. {
  12865. front: {
  12866. height: math.unit(6, "feet"),
  12867. weight: math.unit(250, "lb"),
  12868. name: "Front",
  12869. image: {
  12870. source: "./media/characters/toto/front.svg",
  12871. extra: 527 / 479,
  12872. bottom: 0.05
  12873. }
  12874. },
  12875. },
  12876. [
  12877. {
  12878. name: "Micro",
  12879. height: math.unit(3, "feet")
  12880. },
  12881. {
  12882. name: "Normal",
  12883. height: math.unit(10, "feet")
  12884. },
  12885. {
  12886. name: "Macro",
  12887. height: math.unit(150, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Megamacro",
  12892. height: math.unit(1200, "feet")
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "King", species: ["lion"], tags: ["anthro"] },
  12898. {
  12899. back: {
  12900. height: math.unit(6, "feet"),
  12901. weight: math.unit(150, "lb"),
  12902. name: "Back",
  12903. image: {
  12904. source: "./media/characters/king/back.svg"
  12905. }
  12906. },
  12907. },
  12908. [
  12909. {
  12910. name: "Micro",
  12911. height: math.unit(2, "inches")
  12912. },
  12913. {
  12914. name: "Normal",
  12915. height: math.unit(8, "feet")
  12916. },
  12917. {
  12918. name: "Macro",
  12919. height: math.unit(200, "feet"),
  12920. default: true
  12921. },
  12922. {
  12923. name: "Megamacro",
  12924. height: math.unit(50, "miles")
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12930. {
  12931. front: {
  12932. height: math.unit(11, "feet"),
  12933. weight: math.unit(1400, "lb"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/cordite/front.svg",
  12937. extra: 1919/1827,
  12938. bottom: 40/1959
  12939. }
  12940. },
  12941. side: {
  12942. height: math.unit(11, "feet"),
  12943. weight: math.unit(1400, "lb"),
  12944. name: "Side",
  12945. image: {
  12946. source: "./media/characters/cordite/side.svg",
  12947. extra: 1908/1793,
  12948. bottom: 38/1946
  12949. }
  12950. },
  12951. back: {
  12952. height: math.unit(11, "feet"),
  12953. weight: math.unit(1400, "lb"),
  12954. name: "Back",
  12955. image: {
  12956. source: "./media/characters/cordite/back.svg",
  12957. extra: 1938/1837,
  12958. bottom: 10/1948
  12959. }
  12960. },
  12961. feral: {
  12962. height: math.unit(2, "feet"),
  12963. weight: math.unit(90, "lb"),
  12964. name: "Feral",
  12965. image: {
  12966. source: "./media/characters/cordite/feral.svg",
  12967. extra: 1260 / 755,
  12968. bottom: 0.05
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Normal",
  12975. height: math.unit(11, "feet"),
  12976. default: true
  12977. },
  12978. ]
  12979. ))
  12980. characterMakers.push(() => makeCharacter(
  12981. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12982. {
  12983. front: {
  12984. height: math.unit(6, "feet"),
  12985. weight: math.unit(150, "lb"),
  12986. name: "Front",
  12987. image: {
  12988. source: "./media/characters/pianostrong/front.svg",
  12989. extra: 6577 / 6254,
  12990. bottom: 0.02
  12991. }
  12992. },
  12993. side: {
  12994. height: math.unit(6, "feet"),
  12995. weight: math.unit(150, "lb"),
  12996. name: "Side",
  12997. image: {
  12998. source: "./media/characters/pianostrong/side.svg",
  12999. extra: 6106 / 5730
  13000. }
  13001. },
  13002. back: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Back",
  13006. image: {
  13007. source: "./media/characters/pianostrong/back.svg",
  13008. extra: 6085 / 5733,
  13009. bottom: 0.01
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Macro",
  13016. height: math.unit(100, "feet")
  13017. },
  13018. {
  13019. name: "Macro+",
  13020. height: math.unit(300, "feet"),
  13021. default: true
  13022. },
  13023. {
  13024. name: "Macro++",
  13025. height: math.unit(1000, "feet")
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(6, "feet"),
  13034. weight: math.unit(150, "lb"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/kona/front.svg",
  13038. extra: 2960 / 2629,
  13039. bottom: 0.005
  13040. }
  13041. },
  13042. },
  13043. [
  13044. {
  13045. name: "Normal",
  13046. height: math.unit(11 + 8 / 12, "feet")
  13047. },
  13048. {
  13049. name: "Macro",
  13050. height: math.unit(850, "feet"),
  13051. default: true
  13052. },
  13053. {
  13054. name: "Macro+",
  13055. height: math.unit(1.5, "km"),
  13056. default: true
  13057. },
  13058. {
  13059. name: "Megamacro",
  13060. height: math.unit(80, "miles")
  13061. },
  13062. {
  13063. name: "Gigamacro",
  13064. height: math.unit(3500, "miles")
  13065. },
  13066. ]
  13067. ))
  13068. characterMakers.push(() => makeCharacter(
  13069. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13070. {
  13071. side: {
  13072. height: math.unit(1.9, "meters"),
  13073. weight: math.unit(326, "kg"),
  13074. name: "Side",
  13075. image: {
  13076. source: "./media/characters/levi/side.svg",
  13077. extra: 1704 / 1334,
  13078. bottom: 0.02
  13079. }
  13080. },
  13081. },
  13082. [
  13083. {
  13084. name: "Normal",
  13085. height: math.unit(1.9, "meters"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(20, "meters")
  13091. },
  13092. {
  13093. name: "Macro+",
  13094. height: math.unit(200, "meters")
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(2, "km")
  13099. },
  13100. {
  13101. name: "Megamacro+",
  13102. height: math.unit(20, "km")
  13103. },
  13104. {
  13105. name: "Gigamacro",
  13106. height: math.unit(2500, "km")
  13107. },
  13108. {
  13109. name: "Gigamacro+",
  13110. height: math.unit(120000, "km")
  13111. },
  13112. {
  13113. name: "Teramacro",
  13114. height: math.unit(7.77e6, "km")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(6 + 4/12, "feet"),
  13123. weight: math.unit(190, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/bmc/front.svg",
  13127. extra: 1626/1472,
  13128. bottom: 79/1705
  13129. }
  13130. },
  13131. back: {
  13132. height: math.unit(6 + 4/12, "feet"),
  13133. weight: math.unit(190, "lb"),
  13134. name: "Back",
  13135. image: {
  13136. source: "./media/characters/bmc/back.svg",
  13137. extra: 1640/1479,
  13138. bottom: 45/1685
  13139. }
  13140. },
  13141. frontArmor: {
  13142. height: math.unit(6 + 4/12, "feet"),
  13143. weight: math.unit(190, "lb"),
  13144. name: "Front-armor",
  13145. image: {
  13146. source: "./media/characters/bmc/front-armor.svg",
  13147. extra: 1538/1468,
  13148. bottom: 79/1617
  13149. }
  13150. },
  13151. },
  13152. [
  13153. {
  13154. name: "Human-sized",
  13155. height: math.unit(6 + 4 / 12, "feet")
  13156. },
  13157. {
  13158. name: "Interactive Size",
  13159. height: math.unit(25, "feet")
  13160. },
  13161. {
  13162. name: "Small",
  13163. height: math.unit(250, "feet")
  13164. },
  13165. {
  13166. name: "Normal",
  13167. height: math.unit(1250, "feet"),
  13168. default: true
  13169. },
  13170. {
  13171. name: "Good Day",
  13172. height: math.unit(88, "miles")
  13173. },
  13174. {
  13175. name: "Largest Measured Size",
  13176. height: math.unit(105.960, "galaxies")
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13182. {
  13183. front: {
  13184. height: math.unit(20, "feet"),
  13185. weight: math.unit(2016, "kg"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/sven-the-kaiju/front.svg",
  13189. extra: 1277/1250,
  13190. bottom: 35/1312
  13191. }
  13192. },
  13193. mouth: {
  13194. height: math.unit(1.85, "feet"),
  13195. name: "Mouth",
  13196. image: {
  13197. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13198. }
  13199. },
  13200. },
  13201. [
  13202. {
  13203. name: "Fairy",
  13204. height: math.unit(6, "inches")
  13205. },
  13206. {
  13207. name: "Normal",
  13208. height: math.unit(20, "feet"),
  13209. default: true
  13210. },
  13211. {
  13212. name: "Rampage",
  13213. height: math.unit(200, "feet")
  13214. },
  13215. {
  13216. name: "Archfey Forest Guardian",
  13217. height: math.unit(1, "mile")
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(4, "meters"),
  13226. weight: math.unit(2, "tons"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/marik/front.svg",
  13230. extra: 1057 / 1003,
  13231. bottom: 0.08
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(4, "meters"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Macro",
  13243. height: math.unit(20, "meters")
  13244. },
  13245. {
  13246. name: "Megamacro",
  13247. height: math.unit(50, "km")
  13248. },
  13249. {
  13250. name: "Gigamacro",
  13251. height: math.unit(100, "km")
  13252. },
  13253. {
  13254. name: "Alpha Macro",
  13255. height: math.unit(7.88e7, "yottameters")
  13256. },
  13257. ]
  13258. ))
  13259. characterMakers.push(() => makeCharacter(
  13260. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13261. {
  13262. front: {
  13263. height: math.unit(6, "feet"),
  13264. weight: math.unit(110, "lb"),
  13265. name: "Front",
  13266. image: {
  13267. source: "./media/characters/mel/front.svg",
  13268. extra: 736 / 617,
  13269. bottom: 0.017
  13270. }
  13271. },
  13272. },
  13273. [
  13274. {
  13275. name: "Pico",
  13276. height: math.unit(3, "pm")
  13277. },
  13278. {
  13279. name: "Nano",
  13280. height: math.unit(3, "nm")
  13281. },
  13282. {
  13283. name: "Micro",
  13284. height: math.unit(0.3, "mm"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Micro+",
  13289. height: math.unit(3, "mm")
  13290. },
  13291. {
  13292. name: "Normal",
  13293. height: math.unit(5 + 10.5 / 12, "feet")
  13294. },
  13295. ]
  13296. ))
  13297. characterMakers.push(() => makeCharacter(
  13298. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13299. {
  13300. kaiju: {
  13301. height: math.unit(1.75, "meters"),
  13302. weight: math.unit(55, "kg"),
  13303. name: "Kaiju",
  13304. image: {
  13305. source: "./media/characters/lykonous/kaiju.svg",
  13306. extra: 1055 / 946,
  13307. bottom: 0.135
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Normal",
  13314. height: math.unit(2.5, "meters"),
  13315. default: true
  13316. },
  13317. {
  13318. name: "Kaiju Dragon",
  13319. height: math.unit(60, "meters")
  13320. },
  13321. {
  13322. name: "Mega Kaiju",
  13323. height: math.unit(120, "km")
  13324. },
  13325. {
  13326. name: "Giga Kaiju",
  13327. height: math.unit(200, "megameters")
  13328. },
  13329. {
  13330. name: "Terra Kaiju",
  13331. height: math.unit(400, "gigameters")
  13332. },
  13333. {
  13334. name: "Kaiju Dragon God",
  13335. height: math.unit(13000, "exaparsecs")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13341. {
  13342. front: {
  13343. height: math.unit(6, "feet"),
  13344. weight: math.unit(150, "lb"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/blü/front.svg",
  13348. extra: 1883 / 1564,
  13349. bottom: 0.031
  13350. }
  13351. },
  13352. },
  13353. [
  13354. {
  13355. name: "Normal",
  13356. height: math.unit(13, "feet"),
  13357. default: true
  13358. },
  13359. {
  13360. name: "Big Boi",
  13361. height: math.unit(150, "meters")
  13362. },
  13363. {
  13364. name: "Mini Stomper",
  13365. height: math.unit(300, "meters")
  13366. },
  13367. {
  13368. name: "Macro",
  13369. height: math.unit(1000, "meters")
  13370. },
  13371. {
  13372. name: "Megamacro",
  13373. height: math.unit(11000, "meters")
  13374. },
  13375. {
  13376. name: "Gigamacro",
  13377. height: math.unit(11000, "km")
  13378. },
  13379. {
  13380. name: "Teramacro",
  13381. height: math.unit(420000, "km")
  13382. },
  13383. {
  13384. name: "Examacro",
  13385. height: math.unit(120, "parsecs")
  13386. },
  13387. {
  13388. name: "God Tho",
  13389. height: math.unit(98000000000, "parsecs")
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13395. {
  13396. taurFront: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(200, "lb"),
  13399. name: "Taur (Front)",
  13400. image: {
  13401. source: "./media/characters/scales/taur-front.svg",
  13402. extra: 1,
  13403. bottom: 0.05
  13404. }
  13405. },
  13406. taurBack: {
  13407. height: math.unit(6, "feet"),
  13408. weight: math.unit(200, "lb"),
  13409. name: "Taur (Back)",
  13410. image: {
  13411. source: "./media/characters/scales/taur-back.svg",
  13412. extra: 1,
  13413. bottom: 0.08
  13414. }
  13415. },
  13416. anthro: {
  13417. height: math.unit(6 * 7 / 12, "feet"),
  13418. weight: math.unit(100, "lb"),
  13419. name: "Anthro",
  13420. image: {
  13421. source: "./media/characters/scales/anthro.svg",
  13422. extra: 1,
  13423. bottom: 0.06
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(12, "feet"),
  13431. default: true
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/koragos/front.svg",
  13444. extra: 841 / 794,
  13445. bottom: 0.035
  13446. }
  13447. },
  13448. back: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(150, "lb"),
  13451. name: "Back",
  13452. image: {
  13453. source: "./media/characters/koragos/back.svg",
  13454. extra: 841 / 810,
  13455. bottom: 0.022
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Normal",
  13462. height: math.unit(6 + 11 / 12, "feet"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Macro",
  13467. height: math.unit(490, "feet")
  13468. },
  13469. {
  13470. name: "Megamacro",
  13471. height: math.unit(10, "miles")
  13472. },
  13473. {
  13474. name: "Gigamacro",
  13475. height: math.unit(50, "miles")
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13481. {
  13482. front: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(250, "lb"),
  13485. name: "Front",
  13486. image: {
  13487. source: "./media/characters/xylrem/front.svg",
  13488. extra: 3323 / 3050,
  13489. bottom: 0.065
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Micro",
  13496. height: math.unit(4, "feet")
  13497. },
  13498. {
  13499. name: "Normal",
  13500. height: math.unit(16, "feet"),
  13501. default: true
  13502. },
  13503. {
  13504. name: "Macro",
  13505. height: math.unit(2720, "feet")
  13506. },
  13507. {
  13508. name: "Megamacro",
  13509. height: math.unit(25000, "miles")
  13510. },
  13511. ]
  13512. ))
  13513. characterMakers.push(() => makeCharacter(
  13514. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13515. {
  13516. front: {
  13517. height: math.unit(8, "feet"),
  13518. weight: math.unit(250, "kg"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/ikideru/front.svg",
  13522. extra: 930 / 870,
  13523. bottom: 0.087
  13524. }
  13525. },
  13526. back: {
  13527. height: math.unit(8, "feet"),
  13528. weight: math.unit(250, "kg"),
  13529. name: "Back",
  13530. image: {
  13531. source: "./media/characters/ikideru/back.svg",
  13532. extra: 919 / 852,
  13533. bottom: 0.055
  13534. }
  13535. },
  13536. },
  13537. [
  13538. {
  13539. name: "Rare",
  13540. height: math.unit(8, "feet"),
  13541. default: true
  13542. },
  13543. {
  13544. name: "Playful Loom",
  13545. height: math.unit(80, "feet")
  13546. },
  13547. {
  13548. name: "City Leaner",
  13549. height: math.unit(230, "feet")
  13550. },
  13551. {
  13552. name: "Megamacro",
  13553. height: math.unit(2500, "feet")
  13554. },
  13555. {
  13556. name: "Gigamacro",
  13557. height: math.unit(26400, "feet")
  13558. },
  13559. {
  13560. name: "Tectonic Shifter",
  13561. height: math.unit(1.7, "megameters")
  13562. },
  13563. {
  13564. name: "Planet Carer",
  13565. height: math.unit(21, "megameters")
  13566. },
  13567. {
  13568. name: "God",
  13569. height: math.unit(11157.22, "parsecs")
  13570. },
  13571. ]
  13572. ))
  13573. characterMakers.push(() => makeCharacter(
  13574. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13575. {
  13576. front: {
  13577. height: math.unit(6, "feet"),
  13578. weight: math.unit(120, "lb"),
  13579. name: "Front",
  13580. image: {
  13581. source: "./media/characters/neo/front.svg"
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Micro",
  13588. height: math.unit(2, "inches"),
  13589. default: true
  13590. },
  13591. {
  13592. name: "Human Size",
  13593. height: math.unit(5 + 8 / 12, "feet")
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(13 + 10 / 12, "feet"),
  13602. weight: math.unit(5320, "lb"),
  13603. name: "Front",
  13604. image: {
  13605. source: "./media/characters/chauncey-chantz/front.svg",
  13606. extra: 1587 / 1435,
  13607. bottom: 0.02
  13608. }
  13609. },
  13610. },
  13611. [
  13612. {
  13613. name: "Normal",
  13614. height: math.unit(13 + 10 / 12, "feet"),
  13615. default: true
  13616. },
  13617. {
  13618. name: "Macro",
  13619. height: math.unit(45, "feet")
  13620. },
  13621. {
  13622. name: "Megamacro",
  13623. height: math.unit(250, "miles")
  13624. },
  13625. {
  13626. name: "Planetary",
  13627. height: math.unit(10000, "miles")
  13628. },
  13629. {
  13630. name: "Galactic",
  13631. height: math.unit(40000, "parsecs")
  13632. },
  13633. {
  13634. name: "Universal",
  13635. height: math.unit(1, "yottameter")
  13636. },
  13637. ]
  13638. ))
  13639. characterMakers.push(() => makeCharacter(
  13640. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13641. {
  13642. front: {
  13643. height: math.unit(6, "feet"),
  13644. weight: math.unit(150, "lb"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/epifox/front.svg",
  13648. extra: 1,
  13649. bottom: 0.075
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Micro",
  13656. height: math.unit(6, "inches")
  13657. },
  13658. {
  13659. name: "Normal",
  13660. height: math.unit(12, "feet"),
  13661. default: true
  13662. },
  13663. {
  13664. name: "Macro",
  13665. height: math.unit(3810, "feet")
  13666. },
  13667. {
  13668. name: "Megamacro",
  13669. height: math.unit(500, "miles")
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13675. {
  13676. front: {
  13677. height: math.unit(1.8796, "m"),
  13678. weight: math.unit(230, "lb"),
  13679. name: "Front",
  13680. image: {
  13681. source: "./media/characters/colin-t/front.svg",
  13682. extra: 1272 / 1193,
  13683. bottom: 0.07
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Micro",
  13690. height: math.unit(0.571, "meters")
  13691. },
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(1.8796, "meters"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Tall",
  13699. height: math.unit(4, "meters")
  13700. },
  13701. {
  13702. name: "Macro",
  13703. height: math.unit(67.241, "meters")
  13704. },
  13705. {
  13706. name: "Megamacro",
  13707. height: math.unit(371.856, "meters")
  13708. },
  13709. {
  13710. name: "Planetary",
  13711. height: math.unit(12631.5689, "km")
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(1.85, "meters"),
  13720. weight: math.unit(80, "kg"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/matvei/front.svg",
  13724. extra: 456/447,
  13725. bottom: 8/464
  13726. }
  13727. },
  13728. back: {
  13729. height: math.unit(1.85, "meters"),
  13730. weight: math.unit(80, "kg"),
  13731. name: "Back",
  13732. image: {
  13733. source: "./media/characters/matvei/back.svg",
  13734. extra: 434/427,
  13735. bottom: 11/445
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(1.85, "meters"),
  13743. default: true
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(5 + 9 / 12, "feet"),
  13752. weight: math.unit(70, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/quincy/front.svg",
  13756. extra: 3041 / 2751
  13757. }
  13758. },
  13759. back: {
  13760. height: math.unit(5 + 9 / 12, "feet"),
  13761. weight: math.unit(70, "lb"),
  13762. name: "Back",
  13763. image: {
  13764. source: "./media/characters/quincy/back.svg",
  13765. extra: 3041 / 2751
  13766. }
  13767. },
  13768. flying: {
  13769. height: math.unit(5 + 4 / 12, "feet"),
  13770. weight: math.unit(70, "lb"),
  13771. name: "Flying",
  13772. image: {
  13773. source: "./media/characters/quincy/flying.svg",
  13774. extra: 1044 / 930
  13775. }
  13776. },
  13777. },
  13778. [
  13779. {
  13780. name: "Micro",
  13781. height: math.unit(3, "cm")
  13782. },
  13783. {
  13784. name: "Normal",
  13785. height: math.unit(5 + 9 / 12, "feet")
  13786. },
  13787. {
  13788. name: "Macro",
  13789. height: math.unit(200, "meters"),
  13790. default: true
  13791. },
  13792. {
  13793. name: "Megamacro",
  13794. height: math.unit(1000, "meters")
  13795. },
  13796. ]
  13797. ))
  13798. characterMakers.push(() => makeCharacter(
  13799. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13800. {
  13801. front: {
  13802. height: math.unit(3 + 11/12, "feet"),
  13803. weight: math.unit(50, "lb"),
  13804. name: "Front",
  13805. image: {
  13806. source: "./media/characters/vanrel/front.svg",
  13807. extra: 1104/949,
  13808. bottom: 52/1156
  13809. }
  13810. },
  13811. back: {
  13812. height: math.unit(3 + 11/12, "feet"),
  13813. weight: math.unit(50, "lb"),
  13814. name: "Back",
  13815. image: {
  13816. source: "./media/characters/vanrel/back.svg",
  13817. extra: 1119/976,
  13818. bottom: 37/1156
  13819. }
  13820. },
  13821. tome: {
  13822. height: math.unit(1.35, "feet"),
  13823. weight: math.unit(10, "lb"),
  13824. name: "Vanrel's Tome",
  13825. rename: true,
  13826. image: {
  13827. source: "./media/characters/vanrel/tome.svg"
  13828. }
  13829. },
  13830. beans: {
  13831. height: math.unit(0.89, "feet"),
  13832. name: "Beans",
  13833. image: {
  13834. source: "./media/characters/vanrel/beans.svg"
  13835. }
  13836. },
  13837. },
  13838. [
  13839. {
  13840. name: "Normal",
  13841. height: math.unit(3 + 11/12, "feet"),
  13842. default: true
  13843. },
  13844. ]
  13845. ))
  13846. characterMakers.push(() => makeCharacter(
  13847. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13848. {
  13849. front: {
  13850. height: math.unit(7 + 5 / 12, "feet"),
  13851. name: "Front",
  13852. image: {
  13853. source: "./media/characters/kuiper-vanrel/front.svg",
  13854. extra: 1219/1169,
  13855. bottom: 69/1288
  13856. }
  13857. },
  13858. back: {
  13859. height: math.unit(7 + 5 / 12, "feet"),
  13860. name: "Back",
  13861. image: {
  13862. source: "./media/characters/kuiper-vanrel/back.svg",
  13863. extra: 1236/1193,
  13864. bottom: 27/1263
  13865. }
  13866. },
  13867. foot: {
  13868. height: math.unit(0.55, "meters"),
  13869. name: "Foot",
  13870. image: {
  13871. source: "./media/characters/kuiper-vanrel/foot.svg",
  13872. }
  13873. },
  13874. battle: {
  13875. height: math.unit(6.824, "feet"),
  13876. name: "Battle",
  13877. image: {
  13878. source: "./media/characters/kuiper-vanrel/battle.svg",
  13879. extra: 1466 / 1327,
  13880. bottom: 29 / 1492.5
  13881. }
  13882. },
  13883. meerkui: {
  13884. height: math.unit(18, "inches"),
  13885. name: "Meerkui",
  13886. image: {
  13887. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13888. extra: 1354/1289,
  13889. bottom: 69/1423
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Normal",
  13896. height: math.unit(7 + 5 / 12, "feet"),
  13897. default: true
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(8 + 5 / 12, "feet"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/keset-vanrel/front.svg",
  13909. extra: 1231/1148,
  13910. bottom: 82/1313
  13911. }
  13912. },
  13913. back: {
  13914. height: math.unit(8 + 5 / 12, "feet"),
  13915. name: "Back",
  13916. image: {
  13917. source: "./media/characters/keset-vanrel/back.svg",
  13918. extra: 1240/1174,
  13919. bottom: 33/1273
  13920. }
  13921. },
  13922. hand: {
  13923. height: math.unit(0.6, "meters"),
  13924. name: "Hand",
  13925. image: {
  13926. source: "./media/characters/keset-vanrel/hand.svg"
  13927. }
  13928. },
  13929. foot: {
  13930. height: math.unit(0.94978, "meters"),
  13931. name: "Foot",
  13932. image: {
  13933. source: "./media/characters/keset-vanrel/foot.svg"
  13934. }
  13935. },
  13936. battle: {
  13937. height: math.unit(7.408, "feet"),
  13938. name: "Battle",
  13939. image: {
  13940. source: "./media/characters/keset-vanrel/battle.svg",
  13941. extra: 1890 / 1386,
  13942. bottom: 73.28 / 1970
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(8 + 5 / 12, "feet"),
  13950. default: true
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13956. {
  13957. front: {
  13958. height: math.unit(6, "feet"),
  13959. weight: math.unit(150, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/neos/front.svg",
  13963. extra: 1696 / 992,
  13964. bottom: 0.14
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(54, "cm"),
  13972. default: true
  13973. },
  13974. {
  13975. name: "Macro",
  13976. height: math.unit(100, "m")
  13977. },
  13978. {
  13979. name: "Megamacro",
  13980. height: math.unit(10, "km")
  13981. },
  13982. {
  13983. name: "Megamacro+",
  13984. height: math.unit(100, "km")
  13985. },
  13986. {
  13987. name: "Gigamacro",
  13988. height: math.unit(100, "Mm")
  13989. },
  13990. {
  13991. name: "Teramacro",
  13992. height: math.unit(100, "Gm")
  13993. },
  13994. {
  13995. name: "Examacro",
  13996. height: math.unit(100, "Em")
  13997. },
  13998. {
  13999. name: "Godly",
  14000. height: math.unit(10000, "Ym")
  14001. },
  14002. {
  14003. name: "Beyond Godly",
  14004. height: math.unit(25, "multiverses")
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14010. {
  14011. fluide_tame: {
  14012. height: math.unit(5, "feet"),
  14013. name: "Tame",
  14014. image: {
  14015. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14016. extra: 1655/1574,
  14017. bottom: 231/1886
  14018. },
  14019. form: "fluide",
  14020. default: true
  14021. },
  14022. fluide_nude: {
  14023. height: math.unit(5, "feet"),
  14024. name: "Nude",
  14025. image: {
  14026. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14027. extra: 1655/1574,
  14028. bottom: 231/1886
  14029. },
  14030. form: "fluide",
  14031. },
  14032. male_tame: {
  14033. height: math.unit(5, "feet"),
  14034. name: "Tame",
  14035. image: {
  14036. source: "./media/characters/sammy-mouse/male-tame.svg",
  14037. extra: 1655/1574,
  14038. bottom: 231/1886
  14039. },
  14040. form: "male",
  14041. default: true
  14042. },
  14043. male_nude: {
  14044. height: math.unit(5, "feet"),
  14045. name: "Nude",
  14046. image: {
  14047. source: "./media/characters/sammy-mouse/male-nude.svg",
  14048. extra: 1655/1574,
  14049. bottom: 231/1886
  14050. },
  14051. form: "male",
  14052. },
  14053. female_nude: {
  14054. height: math.unit(5, "feet"),
  14055. name: "Nude",
  14056. image: {
  14057. source: "./media/characters/sammy-mouse/female-nude.svg",
  14058. extra: 1655/1574,
  14059. bottom: 231/1886
  14060. },
  14061. form: "female",
  14062. default: true
  14063. },
  14064. mouth: {
  14065. height: math.unit(0.32, "feet"),
  14066. name: "Mouth",
  14067. image: {
  14068. source: "./media/characters/sammy-mouse/mouth.svg"
  14069. },
  14070. allForms: true
  14071. },
  14072. paw: {
  14073. height: math.unit(0.42, "feet"),
  14074. name: "Paw",
  14075. image: {
  14076. source: "./media/characters/sammy-mouse/paw.svg"
  14077. },
  14078. allForms: true
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Micro",
  14084. height: math.unit(5, "inches"),
  14085. allForms: true
  14086. },
  14087. {
  14088. name: "Normal",
  14089. height: math.unit(5, "feet"),
  14090. default: true,
  14091. allForms: true
  14092. },
  14093. {
  14094. name: "Macro",
  14095. height: math.unit(60, "feet"),
  14096. allForms: true
  14097. },
  14098. ],
  14099. {
  14100. "fluide": {
  14101. name: "Fluide",
  14102. default: true
  14103. },
  14104. "male": {
  14105. name: "Male",
  14106. },
  14107. "female": {
  14108. name: "Female",
  14109. },
  14110. }
  14111. ))
  14112. characterMakers.push(() => makeCharacter(
  14113. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14114. {
  14115. front: {
  14116. height: math.unit(4, "feet"),
  14117. weight: math.unit(50, "lb"),
  14118. name: "Front",
  14119. image: {
  14120. source: "./media/characters/kole/front.svg",
  14121. extra: 1423 / 1303,
  14122. bottom: 0.025
  14123. }
  14124. },
  14125. back: {
  14126. height: math.unit(4, "feet"),
  14127. weight: math.unit(50, "lb"),
  14128. name: "Back",
  14129. image: {
  14130. source: "./media/characters/kole/back.svg",
  14131. extra: 1426 / 1280,
  14132. bottom: 0.02
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Normal",
  14139. height: math.unit(4, "feet"),
  14140. default: true
  14141. },
  14142. ]
  14143. ))
  14144. characterMakers.push(() => makeCharacter(
  14145. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14146. {
  14147. front: {
  14148. height: math.unit(2.5, "feet"),
  14149. weight: math.unit(32, "lb"),
  14150. name: "Front",
  14151. image: {
  14152. source: "./media/characters/rufran/front.svg",
  14153. extra: 1313/885,
  14154. bottom: 94/1407
  14155. }
  14156. },
  14157. side: {
  14158. height: math.unit(2.5, "feet"),
  14159. weight: math.unit(32, "lb"),
  14160. name: "Side",
  14161. image: {
  14162. source: "./media/characters/rufran/side.svg",
  14163. extra: 1109/852,
  14164. bottom: 118/1227
  14165. }
  14166. },
  14167. back: {
  14168. height: math.unit(2.5, "feet"),
  14169. weight: math.unit(32, "lb"),
  14170. name: "Back",
  14171. image: {
  14172. source: "./media/characters/rufran/back.svg",
  14173. extra: 1280/878,
  14174. bottom: 131/1411
  14175. }
  14176. },
  14177. mouth: {
  14178. height: math.unit(1.13, "feet"),
  14179. name: "Mouth",
  14180. image: {
  14181. source: "./media/characters/rufran/mouth.svg"
  14182. }
  14183. },
  14184. foot: {
  14185. height: math.unit(1.33, "feet"),
  14186. name: "Foot",
  14187. image: {
  14188. source: "./media/characters/rufran/foot.svg"
  14189. }
  14190. },
  14191. koboldFront: {
  14192. height: math.unit(2 + 6 / 12, "feet"),
  14193. weight: math.unit(20, "lb"),
  14194. name: "Front (Kobold)",
  14195. image: {
  14196. source: "./media/characters/rufran/kobold-front.svg",
  14197. extra: 2041 / 1839,
  14198. bottom: 0.055
  14199. }
  14200. },
  14201. koboldBack: {
  14202. height: math.unit(2 + 6 / 12, "feet"),
  14203. weight: math.unit(20, "lb"),
  14204. name: "Back (Kobold)",
  14205. image: {
  14206. source: "./media/characters/rufran/kobold-back.svg",
  14207. extra: 2054 / 1839,
  14208. bottom: 0.01
  14209. }
  14210. },
  14211. koboldHand: {
  14212. height: math.unit(0.2166, "meters"),
  14213. name: "Hand (Kobold)",
  14214. image: {
  14215. source: "./media/characters/rufran/kobold-hand.svg"
  14216. }
  14217. },
  14218. koboldFoot: {
  14219. height: math.unit(0.185, "meters"),
  14220. name: "Foot (Kobold)",
  14221. image: {
  14222. source: "./media/characters/rufran/kobold-foot.svg"
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Micro",
  14229. height: math.unit(1, "inch")
  14230. },
  14231. {
  14232. name: "Normal",
  14233. height: math.unit(2 + 6 / 12, "feet"),
  14234. default: true
  14235. },
  14236. {
  14237. name: "Big",
  14238. height: math.unit(60, "feet")
  14239. },
  14240. {
  14241. name: "Macro",
  14242. height: math.unit(325, "feet")
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14248. {
  14249. front: {
  14250. height: math.unit(0.3, "meters"),
  14251. weight: math.unit(3.5, "kg"),
  14252. name: "Front",
  14253. image: {
  14254. source: "./media/characters/chip/front.svg",
  14255. extra: 748 / 674
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Micro",
  14262. height: math.unit(1, "inch"),
  14263. default: true
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14269. {
  14270. side: {
  14271. height: math.unit(2.3, "meters"),
  14272. weight: math.unit(3500, "lb"),
  14273. name: "Side",
  14274. image: {
  14275. source: "./media/characters/torvid/side.svg",
  14276. extra: 1972 / 722,
  14277. bottom: 0.035
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(2.3, "meters"),
  14285. default: true
  14286. },
  14287. ]
  14288. ))
  14289. characterMakers.push(() => makeCharacter(
  14290. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14291. {
  14292. front: {
  14293. height: math.unit(2, "meters"),
  14294. weight: math.unit(150.5, "kg"),
  14295. name: "Front",
  14296. image: {
  14297. source: "./media/characters/susan/front.svg",
  14298. extra: 693 / 635,
  14299. bottom: 0.05
  14300. }
  14301. },
  14302. },
  14303. [
  14304. {
  14305. name: "Megamacro",
  14306. height: math.unit(505, "miles"),
  14307. default: true
  14308. },
  14309. ]
  14310. ))
  14311. characterMakers.push(() => makeCharacter(
  14312. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14313. {
  14314. front: {
  14315. height: math.unit(6, "feet"),
  14316. weight: math.unit(150, "lb"),
  14317. name: "Front",
  14318. image: {
  14319. source: "./media/characters/raindrops/front.svg",
  14320. extra: 2655 / 2461,
  14321. bottom: 49 / 2705
  14322. }
  14323. },
  14324. back: {
  14325. height: math.unit(6, "feet"),
  14326. weight: math.unit(150, "lb"),
  14327. name: "Back",
  14328. image: {
  14329. source: "./media/characters/raindrops/back.svg",
  14330. extra: 2574 / 2400,
  14331. bottom: 65 / 2634
  14332. }
  14333. },
  14334. },
  14335. [
  14336. {
  14337. name: "Micro",
  14338. height: math.unit(6, "inches")
  14339. },
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(6 + 2 / 12, "feet")
  14343. },
  14344. {
  14345. name: "Macro",
  14346. height: math.unit(131, "feet"),
  14347. default: true
  14348. },
  14349. {
  14350. name: "Megamacro",
  14351. height: math.unit(15, "miles")
  14352. },
  14353. {
  14354. name: "Gigamacro",
  14355. height: math.unit(4000, "miles")
  14356. },
  14357. {
  14358. name: "Teramacro",
  14359. height: math.unit(315000, "miles")
  14360. },
  14361. ]
  14362. ))
  14363. characterMakers.push(() => makeCharacter(
  14364. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14365. {
  14366. normal_front: {
  14367. height: math.unit(9 + 2/12, "feet"),
  14368. weight: math.unit(325, "kg"),
  14369. name: "Front",
  14370. image: {
  14371. source: "./media/characters/tezwa/normal-front.svg",
  14372. extra: 770/714,
  14373. bottom: 32/802
  14374. },
  14375. form: "normal",
  14376. },
  14377. normal_paw: {
  14378. height: math.unit(2.2, "feet"),
  14379. name: "Paw",
  14380. image: {
  14381. source: "./media/characters/tezwa/paw.svg"
  14382. },
  14383. form: "normal",
  14384. },
  14385. muscled_front: {
  14386. height: math.unit(916 + 8/12, "feet"),
  14387. weight: math.unit(500000, "tons"),
  14388. name: "Front",
  14389. image: {
  14390. source: "./media/characters/tezwa/muscled-front.svg",
  14391. extra: 1840/1697,
  14392. bottom: 29/1869
  14393. },
  14394. form: "muscled",
  14395. },
  14396. muscled_paw: {
  14397. height: math.unit(200, "feet"),
  14398. name: "Paw",
  14399. image: {
  14400. source: "./media/characters/tezwa/paw.svg"
  14401. },
  14402. form: "muscled",
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Normal",
  14408. height: math.unit(9 + 2 / 12, "feet"),
  14409. default: true,
  14410. form: "normal"
  14411. },
  14412. {
  14413. name: "Normal",
  14414. height: math.unit(916 + 8/12, "feet"),
  14415. default: true,
  14416. form: "muscled"
  14417. },
  14418. ],
  14419. {
  14420. "normal": {
  14421. name: "Normal",
  14422. default: true
  14423. },
  14424. "muscled": {
  14425. name: "Muscled",
  14426. },
  14427. }
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(58, "feet"),
  14434. weight: math.unit(89000, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/typhus/front.svg",
  14438. extra: 816 / 800,
  14439. bottom: 0.065
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Macro",
  14446. height: math.unit(58, "feet"),
  14447. default: true
  14448. },
  14449. ]
  14450. ))
  14451. characterMakers.push(() => makeCharacter(
  14452. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14453. {
  14454. front: {
  14455. height: math.unit(12, "feet"),
  14456. weight: math.unit(6, "tonnes"),
  14457. name: "Front",
  14458. image: {
  14459. source: "./media/characters/lyra-von-wulf/front.svg",
  14460. extra: 1,
  14461. bottom: 0.10
  14462. }
  14463. },
  14464. frontMecha: {
  14465. height: math.unit(12, "feet"),
  14466. weight: math.unit(12, "tonnes"),
  14467. name: "Front (Mecha)",
  14468. image: {
  14469. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14470. extra: 1,
  14471. bottom: 0.042
  14472. }
  14473. },
  14474. maw: {
  14475. height: math.unit(2.2, "feet"),
  14476. name: "Maw",
  14477. image: {
  14478. source: "./media/characters/lyra-von-wulf/maw.svg"
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(12, "feet"),
  14486. default: true
  14487. },
  14488. {
  14489. name: "Classic",
  14490. height: math.unit(50, "feet")
  14491. },
  14492. {
  14493. name: "Macro",
  14494. height: math.unit(500, "feet")
  14495. },
  14496. {
  14497. name: "Megamacro",
  14498. height: math.unit(1, "mile")
  14499. },
  14500. {
  14501. name: "Gigamacro",
  14502. height: math.unit(400, "miles")
  14503. },
  14504. {
  14505. name: "Teramacro",
  14506. height: math.unit(22000, "miles")
  14507. },
  14508. {
  14509. name: "Solarmacro",
  14510. height: math.unit(8600000, "miles")
  14511. },
  14512. {
  14513. name: "Galactic",
  14514. height: math.unit(1057000, "lightyears")
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14520. {
  14521. front: {
  14522. height: math.unit(6 + 10 / 12, "feet"),
  14523. weight: math.unit(150, "lb"),
  14524. name: "Front",
  14525. image: {
  14526. source: "./media/characters/dixon/front.svg",
  14527. extra: 3361 / 3209,
  14528. bottom: 0.01
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Normal",
  14535. height: math.unit(6 + 10 / 12, "feet"),
  14536. default: true
  14537. },
  14538. {
  14539. name: "Big",
  14540. height: math.unit(12, "meters")
  14541. },
  14542. {
  14543. name: "Macro",
  14544. height: math.unit(500, "meters")
  14545. },
  14546. {
  14547. name: "Megamacro",
  14548. height: math.unit(2, "km")
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14554. {
  14555. kingCheetah_front: {
  14556. height: math.unit(1.85, "meters"),
  14557. weight: math.unit(68, "kg"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/kauko/king-cheetah-front.svg",
  14561. extra: 1007/972,
  14562. bottom: 35/1042
  14563. },
  14564. form: "king-cheetah",
  14565. default: true
  14566. },
  14567. kingCheetah_back: {
  14568. height: math.unit(1.85, "meters"),
  14569. weight: math.unit(68, "kg"),
  14570. name: "Back",
  14571. image: {
  14572. source: "./media/characters/kauko/king-cheetah-back.svg",
  14573. extra: 1015/980,
  14574. bottom: 11/1026
  14575. },
  14576. form: "king-cheetah",
  14577. },
  14578. kingCheetah_hand: {
  14579. height: math.unit(0.23, "meters"),
  14580. name: "Hand",
  14581. image: {
  14582. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14583. },
  14584. form: "king-cheetah",
  14585. },
  14586. kingCheetah_paw: {
  14587. height: math.unit(0.38, "meters"),
  14588. name: "Paw",
  14589. image: {
  14590. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14591. },
  14592. form: "king-cheetah",
  14593. },
  14594. kingCheetah_nape: {
  14595. height: math.unit(0.23, "meters"),
  14596. name: "Nape",
  14597. image: {
  14598. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14599. },
  14600. form: "king-cheetah",
  14601. },
  14602. wolf_front: {
  14603. height: math.unit(1.88, "meters"),
  14604. weight: math.unit(74, "kg"),
  14605. name: "Front",
  14606. image: {
  14607. source: "./media/characters/kauko/wolf-front.svg",
  14608. extra: 952/908,
  14609. bottom: 64/1016
  14610. },
  14611. form: "wolf",
  14612. default: true
  14613. },
  14614. wolf_dressed: {
  14615. height: math.unit(1.88, "meters"),
  14616. weight: math.unit(74, "kg"),
  14617. name: "Dressed",
  14618. image: {
  14619. source: "./media/characters/kauko/wolf-dressed.svg",
  14620. extra: 963/916,
  14621. bottom: 101/1064
  14622. },
  14623. form: "wolf",
  14624. },
  14625. wolf_hand: {
  14626. height: math.unit(0.3, "meters"),
  14627. name: "Hand",
  14628. image: {
  14629. source: "./media/characters/kauko/wolf-hand.svg"
  14630. },
  14631. form: "wolf",
  14632. },
  14633. wolf_paw: {
  14634. height: math.unit(0.407, "meters"),
  14635. name: "Paw",
  14636. image: {
  14637. source: "./media/characters/kauko/wolf-paw.svg"
  14638. },
  14639. form: "wolf",
  14640. },
  14641. wolf_nape: {
  14642. height: math.unit(0.25, "meters"),
  14643. name: "Nape",
  14644. image: {
  14645. source: "./media/characters/kauko/wolf-nape.svg"
  14646. },
  14647. form: "wolf",
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Normal",
  14653. height: math.unit(1.85, "m"),
  14654. default: true,
  14655. form: "king-cheetah"
  14656. },
  14657. {
  14658. name: "Normal",
  14659. height: math.unit(1.88, "m"),
  14660. default: true,
  14661. form: "wolf"
  14662. },
  14663. ],
  14664. {
  14665. "king-cheetah": {
  14666. name: "King Cheetah",
  14667. default: true
  14668. },
  14669. "wolf": {
  14670. name: "Wolf",
  14671. },
  14672. }
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14676. {
  14677. frontSfw: {
  14678. height: math.unit(5, "meters"),
  14679. weight: math.unit(4250, "lb"),
  14680. name: "Front",
  14681. image: {
  14682. source: "./media/characters/varg/front-sfw.svg",
  14683. extra: 1103/1010,
  14684. bottom: 50/1153
  14685. },
  14686. form: "anthro",
  14687. default: true
  14688. },
  14689. backSfw: {
  14690. height: math.unit(5, "meters"),
  14691. weight: math.unit(4250, "lb"),
  14692. name: "Back",
  14693. image: {
  14694. source: "./media/characters/varg/back-sfw.svg",
  14695. extra: 1038/1022,
  14696. bottom: 36/1074
  14697. },
  14698. form: "anthro"
  14699. },
  14700. frontNsfw: {
  14701. height: math.unit(5, "meters"),
  14702. weight: math.unit(4250, "lb"),
  14703. name: "Front (NSFW)",
  14704. image: {
  14705. source: "./media/characters/varg/front-nsfw.svg",
  14706. extra: 1103/1010,
  14707. bottom: 50/1153
  14708. },
  14709. form: "anthro"
  14710. },
  14711. sheath: {
  14712. height: math.unit(3.8, "feet"),
  14713. weight: math.unit(90, "kilograms"),
  14714. name: "Sheath",
  14715. image: {
  14716. source: "./media/characters/varg/sheath.svg"
  14717. },
  14718. form: "anthro"
  14719. },
  14720. dick: {
  14721. height: math.unit(4.6, "feet"),
  14722. weight: math.unit(451, "kilograms"),
  14723. name: "Dick",
  14724. image: {
  14725. source: "./media/characters/varg/dick.svg"
  14726. },
  14727. form: "anthro"
  14728. },
  14729. feralSfw: {
  14730. height: math.unit(5, "meters"),
  14731. weight: math.unit(100000, "lb"),
  14732. name: "Side",
  14733. image: {
  14734. source: "./media/characters/varg/feral-sfw.svg",
  14735. extra: 1065/511,
  14736. bottom: 211/1276
  14737. },
  14738. form: "feral",
  14739. default: true
  14740. },
  14741. feralNsfw: {
  14742. height: math.unit(5, "meters"),
  14743. weight: math.unit(100000, "lb"),
  14744. name: "Side (NSFW)",
  14745. image: {
  14746. source: "./media/characters/varg/feral-nsfw.svg",
  14747. extra: 1065/511,
  14748. bottom: 211/1276
  14749. },
  14750. form: "feral",
  14751. },
  14752. feralSheath: {
  14753. height: math.unit(9.8, "feet"),
  14754. weight: math.unit(2000, "kilograms"),
  14755. name: "Sheath",
  14756. image: {
  14757. source: "./media/characters/varg/sheath.svg"
  14758. },
  14759. form: "feral"
  14760. },
  14761. feralDick: {
  14762. height: math.unit(13.11, "feet"),
  14763. weight: math.unit(10440, "kilograms"),
  14764. name: "Dick",
  14765. image: {
  14766. source: "./media/characters/varg/dick.svg"
  14767. },
  14768. form: "feral"
  14769. },
  14770. },
  14771. [
  14772. {
  14773. name: "Normal",
  14774. height: math.unit(5, "meters"),
  14775. form: "anthro"
  14776. },
  14777. {
  14778. name: "Macro",
  14779. height: math.unit(200, "meters"),
  14780. form: "anthro"
  14781. },
  14782. {
  14783. name: "Megamacro",
  14784. height: math.unit(20, "kilometers"),
  14785. form: "anthro"
  14786. },
  14787. {
  14788. name: "True Size",
  14789. height: math.unit(211, "km"),
  14790. form: "anthro",
  14791. default: true
  14792. },
  14793. {
  14794. name: "Gigamacro",
  14795. height: math.unit(1000, "km"),
  14796. form: "anthro"
  14797. },
  14798. {
  14799. name: "Gigamacro+",
  14800. height: math.unit(8000, "km"),
  14801. form: "anthro"
  14802. },
  14803. {
  14804. name: "Teramacro",
  14805. height: math.unit(1000000, "km"),
  14806. form: "anthro"
  14807. },
  14808. {
  14809. name: "Normal",
  14810. height: math.unit(5, "meters"),
  14811. form: "feral"
  14812. },
  14813. {
  14814. name: "Macro",
  14815. height: math.unit(200, "meters"),
  14816. form: "feral"
  14817. },
  14818. {
  14819. name: "Megamacro",
  14820. height: math.unit(20, "kilometers"),
  14821. form: "feral"
  14822. },
  14823. {
  14824. name: "True Size",
  14825. height: math.unit(211, "km"),
  14826. form: "feral",
  14827. default: true
  14828. },
  14829. {
  14830. name: "Gigamacro",
  14831. height: math.unit(1000, "km"),
  14832. form: "feral"
  14833. },
  14834. {
  14835. name: "Gigamacro+",
  14836. height: math.unit(8000, "km"),
  14837. form: "feral"
  14838. },
  14839. {
  14840. name: "Teramacro",
  14841. height: math.unit(1000000, "km"),
  14842. form: "feral"
  14843. },
  14844. ],
  14845. {
  14846. "anthro": {
  14847. name: "Anthro",
  14848. default: true
  14849. },
  14850. "feral": {
  14851. name: "Feral",
  14852. },
  14853. }
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(7 + 7 / 12, "feet"),
  14860. weight: math.unit(267, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/dayza/front.svg",
  14864. extra: 1262 / 1200,
  14865. bottom: 0.035
  14866. }
  14867. },
  14868. side: {
  14869. height: math.unit(7 + 7 / 12, "feet"),
  14870. weight: math.unit(267, "lb"),
  14871. name: "Side",
  14872. image: {
  14873. source: "./media/characters/dayza/side.svg",
  14874. extra: 1295 / 1245,
  14875. bottom: 0.05
  14876. }
  14877. },
  14878. back: {
  14879. height: math.unit(7 + 7 / 12, "feet"),
  14880. weight: math.unit(267, "lb"),
  14881. name: "Back",
  14882. image: {
  14883. source: "./media/characters/dayza/back.svg",
  14884. extra: 1241 / 1170
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(7 + 7 / 12, "feet"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Macro",
  14896. height: math.unit(155, "feet")
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(6 + 5 / 12, "feet"),
  14905. weight: math.unit(160, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/xanthos/front.svg",
  14909. extra: 1,
  14910. bottom: 0.04
  14911. }
  14912. },
  14913. back: {
  14914. height: math.unit(6 + 5 / 12, "feet"),
  14915. weight: math.unit(160, "lb"),
  14916. name: "Back",
  14917. image: {
  14918. source: "./media/characters/xanthos/back.svg",
  14919. extra: 1,
  14920. bottom: 0.03
  14921. }
  14922. },
  14923. hand: {
  14924. height: math.unit(0.928, "feet"),
  14925. name: "Hand",
  14926. image: {
  14927. source: "./media/characters/xanthos/hand.svg"
  14928. }
  14929. },
  14930. foot: {
  14931. height: math.unit(1.286, "feet"),
  14932. name: "Foot",
  14933. image: {
  14934. source: "./media/characters/xanthos/foot.svg"
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(6 + 5 / 12, "feet"),
  14942. default: true
  14943. },
  14944. {
  14945. name: "Normal+",
  14946. height: math.unit(6, "meters")
  14947. },
  14948. {
  14949. name: "Macro",
  14950. height: math.unit(40, "feet")
  14951. },
  14952. {
  14953. name: "Macro+",
  14954. height: math.unit(200, "meters")
  14955. },
  14956. {
  14957. name: "Megamacro",
  14958. height: math.unit(20, "km")
  14959. },
  14960. {
  14961. name: "Megamacro+",
  14962. height: math.unit(100, "km")
  14963. },
  14964. {
  14965. name: "Gigamacro",
  14966. height: math.unit(200, "megameters")
  14967. },
  14968. {
  14969. name: "Gigamacro+",
  14970. height: math.unit(1.5, "gigameters")
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(6 + 3 / 12, "feet"),
  14979. weight: math.unit(215, "lb"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/grynn/front.svg",
  14983. extra: 4627 / 4209,
  14984. bottom: 0.047
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Micro",
  14991. height: math.unit(6, "inches")
  14992. },
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(6 + 3 / 12, "feet"),
  14996. default: true
  14997. },
  14998. {
  14999. name: "Big",
  15000. height: math.unit(104, "feet")
  15001. },
  15002. {
  15003. name: "Macro",
  15004. height: math.unit(944, "feet")
  15005. },
  15006. {
  15007. name: "Macro+",
  15008. height: math.unit(9480, "feet")
  15009. },
  15010. {
  15011. name: "Megamacro",
  15012. height: math.unit(78752, "feet")
  15013. },
  15014. {
  15015. name: "Megamacro+",
  15016. height: math.unit(630128, "feet")
  15017. },
  15018. {
  15019. name: "Megamacro++",
  15020. height: math.unit(3150695, "feet")
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(7 + 5 / 12, "feet"),
  15029. weight: math.unit(450, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/mocha-aura/front.svg",
  15033. extra: 1907 / 1817,
  15034. bottom: 0.04
  15035. }
  15036. },
  15037. back: {
  15038. height: math.unit(7 + 5 / 12, "feet"),
  15039. weight: math.unit(450, "lb"),
  15040. name: "Back",
  15041. image: {
  15042. source: "./media/characters/mocha-aura/back.svg",
  15043. extra: 1900 / 1825,
  15044. bottom: 0.045
  15045. }
  15046. },
  15047. },
  15048. [
  15049. {
  15050. name: "Nano",
  15051. height: math.unit(1, "nm")
  15052. },
  15053. {
  15054. name: "Megamicro",
  15055. height: math.unit(1, "mm")
  15056. },
  15057. {
  15058. name: "Micro",
  15059. height: math.unit(3, "inches")
  15060. },
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(7 + 5 / 12, "feet"),
  15064. default: true
  15065. },
  15066. {
  15067. name: "Macro",
  15068. height: math.unit(30, "feet")
  15069. },
  15070. {
  15071. name: "Megamacro",
  15072. height: math.unit(3500, "feet")
  15073. },
  15074. {
  15075. name: "Teramacro",
  15076. height: math.unit(500000, "miles")
  15077. },
  15078. {
  15079. name: "Petamacro",
  15080. height: math.unit(50000000000000000, "parsecs")
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15086. {
  15087. front: {
  15088. height: math.unit(6, "feet"),
  15089. weight: math.unit(150, "lb"),
  15090. name: "Front",
  15091. image: {
  15092. source: "./media/characters/ilisha-devya/front.svg",
  15093. extra: 1053/1049,
  15094. bottom: 270/1323
  15095. }
  15096. },
  15097. back: {
  15098. height: math.unit(6, "feet"),
  15099. weight: math.unit(150, "lb"),
  15100. name: "Back",
  15101. image: {
  15102. source: "./media/characters/ilisha-devya/back.svg",
  15103. extra: 1131/1128,
  15104. bottom: 39/1170
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Macro",
  15111. height: math.unit(500, "feet"),
  15112. default: true
  15113. },
  15114. {
  15115. name: "Megamacro",
  15116. height: math.unit(10, "miles")
  15117. },
  15118. {
  15119. name: "Gigamacro",
  15120. height: math.unit(100000, "miles")
  15121. },
  15122. {
  15123. name: "Examacro",
  15124. height: math.unit(1e9, "lightyears")
  15125. },
  15126. {
  15127. name: "Omniversal",
  15128. height: math.unit(1e33, "lightyears")
  15129. },
  15130. {
  15131. name: "Beyond Infinite",
  15132. height: math.unit(1e100, "lightyears")
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15138. {
  15139. Side: {
  15140. height: math.unit(6, "feet"),
  15141. weight: math.unit(150, "lb"),
  15142. name: "Side",
  15143. image: {
  15144. source: "./media/characters/mira/side.svg",
  15145. extra: 900 / 799,
  15146. bottom: 0.02
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Human Size",
  15153. height: math.unit(6, "feet")
  15154. },
  15155. {
  15156. name: "Macro",
  15157. height: math.unit(100, "feet"),
  15158. default: true
  15159. },
  15160. {
  15161. name: "Megamacro",
  15162. height: math.unit(10, "miles")
  15163. },
  15164. {
  15165. name: "Gigamacro",
  15166. height: math.unit(25000, "miles")
  15167. },
  15168. {
  15169. name: "Teramacro",
  15170. height: math.unit(300, "AU")
  15171. },
  15172. {
  15173. name: "Full Size",
  15174. height: math.unit(4.5e10, "lightyears")
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(6, "feet"),
  15183. weight: math.unit(150, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/holly/front.svg",
  15187. extra: 639 / 606
  15188. }
  15189. },
  15190. back: {
  15191. height: math.unit(6, "feet"),
  15192. weight: math.unit(150, "lb"),
  15193. name: "Back",
  15194. image: {
  15195. source: "./media/characters/holly/back.svg",
  15196. extra: 623 / 598
  15197. }
  15198. },
  15199. frontWorking: {
  15200. height: math.unit(6, "feet"),
  15201. weight: math.unit(150, "lb"),
  15202. name: "Front (Working)",
  15203. image: {
  15204. source: "./media/characters/holly/front-working.svg",
  15205. extra: 607 / 577,
  15206. bottom: 0.048
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(12 + 3 / 12, "feet"),
  15214. default: true
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15220. {
  15221. front: {
  15222. height: math.unit(6, "feet"),
  15223. weight: math.unit(150, "lb"),
  15224. name: "Front",
  15225. image: {
  15226. source: "./media/characters/porter/front.svg",
  15227. extra: 1,
  15228. bottom: 0.01
  15229. }
  15230. },
  15231. frontRobes: {
  15232. height: math.unit(6, "feet"),
  15233. weight: math.unit(150, "lb"),
  15234. name: "Front (Robes)",
  15235. image: {
  15236. source: "./media/characters/porter/front-robes.svg",
  15237. extra: 1.01,
  15238. bottom: 0.01
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Normal",
  15245. height: math.unit(11 + 9 / 12, "feet"),
  15246. default: true
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15252. {
  15253. legendary: {
  15254. height: math.unit(6, "feet"),
  15255. weight: math.unit(150, "lb"),
  15256. name: "Legendary",
  15257. image: {
  15258. source: "./media/characters/lucy/legendary.svg",
  15259. extra: 1355 / 1100,
  15260. bottom: 0.045
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Legendary",
  15267. height: math.unit(86882 * 2, "miles"),
  15268. default: true
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15274. {
  15275. front: {
  15276. height: math.unit(6, "feet"),
  15277. weight: math.unit(150, "lb"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/drusilla/front.svg",
  15281. extra: 678 / 635,
  15282. bottom: 0.03
  15283. }
  15284. },
  15285. back: {
  15286. height: math.unit(6, "feet"),
  15287. weight: math.unit(150, "lb"),
  15288. name: "Back",
  15289. image: {
  15290. source: "./media/characters/drusilla/back.svg",
  15291. extra: 678 / 635,
  15292. bottom: 0.005
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Macro",
  15299. height: math.unit(100, "feet")
  15300. },
  15301. {
  15302. name: "Canon Height",
  15303. height: math.unit(2000, "feet"),
  15304. default: true
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(6, "feet"),
  15313. weight: math.unit(180, "lb"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/renard-thatch/front.svg",
  15317. extra: 2411 / 2275,
  15318. bottom: 0.01
  15319. }
  15320. },
  15321. frontPosing: {
  15322. height: math.unit(6, "feet"),
  15323. weight: math.unit(180, "lb"),
  15324. name: "Front (Posing)",
  15325. image: {
  15326. source: "./media/characters/renard-thatch/front-posing.svg",
  15327. extra: 2381 / 2261,
  15328. bottom: 0.01
  15329. }
  15330. },
  15331. back: {
  15332. height: math.unit(6, "feet"),
  15333. weight: math.unit(180, "lb"),
  15334. name: "Back",
  15335. image: {
  15336. source: "./media/characters/renard-thatch/back.svg",
  15337. extra: 2428 / 2288
  15338. }
  15339. },
  15340. },
  15341. [
  15342. {
  15343. name: "Micro",
  15344. height: math.unit(3, "inches")
  15345. },
  15346. {
  15347. name: "Default",
  15348. height: math.unit(6, "feet"),
  15349. default: true
  15350. },
  15351. {
  15352. name: "Macro",
  15353. height: math.unit(75, "feet")
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15359. {
  15360. front: {
  15361. height: math.unit(1450, "feet"),
  15362. weight: math.unit(1.21e6, "tons"),
  15363. name: "Front",
  15364. image: {
  15365. source: "./media/characters/sekvra/front.svg",
  15366. extra: 1193/1190,
  15367. bottom: 78/1271
  15368. }
  15369. },
  15370. side: {
  15371. height: math.unit(1450, "feet"),
  15372. weight: math.unit(1.21e6, "tons"),
  15373. name: "Side",
  15374. image: {
  15375. source: "./media/characters/sekvra/side.svg",
  15376. extra: 1193/1190,
  15377. bottom: 52/1245
  15378. }
  15379. },
  15380. back: {
  15381. height: math.unit(1450, "feet"),
  15382. weight: math.unit(1.21e6, "tons"),
  15383. name: "Back",
  15384. image: {
  15385. source: "./media/characters/sekvra/back.svg",
  15386. extra: 1219/1216,
  15387. bottom: 21/1240
  15388. }
  15389. },
  15390. frontClothed: {
  15391. height: math.unit(1450, "feet"),
  15392. weight: math.unit(1.21e6, "tons"),
  15393. name: "Front (Clothed)",
  15394. image: {
  15395. source: "./media/characters/sekvra/front-clothed.svg",
  15396. extra: 1192/1189,
  15397. bottom: 79/1271
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Macro",
  15404. height: math.unit(1450, "feet"),
  15405. default: true
  15406. },
  15407. {
  15408. name: "Megamacro",
  15409. height: math.unit(15000, "feet")
  15410. },
  15411. ]
  15412. ))
  15413. characterMakers.push(() => makeCharacter(
  15414. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15415. {
  15416. front: {
  15417. height: math.unit(6, "feet"),
  15418. weight: math.unit(150, "lb"),
  15419. name: "Front",
  15420. image: {
  15421. source: "./media/characters/carmine/front.svg",
  15422. extra: 1557/1538,
  15423. bottom: 68/1625
  15424. }
  15425. },
  15426. frontArmor: {
  15427. height: math.unit(6, "feet"),
  15428. weight: math.unit(150, "lb"),
  15429. name: "Front (Armor)",
  15430. image: {
  15431. source: "./media/characters/carmine/front-armor.svg",
  15432. extra: 1549/1530,
  15433. bottom: 82/1631
  15434. }
  15435. },
  15436. mouth: {
  15437. height: math.unit(0.55, "feet"),
  15438. name: "Mouth",
  15439. image: {
  15440. source: "./media/characters/carmine/mouth.svg"
  15441. }
  15442. },
  15443. hand: {
  15444. height: math.unit(1.05, "feet"),
  15445. name: "Hand",
  15446. image: {
  15447. source: "./media/characters/carmine/hand.svg"
  15448. }
  15449. },
  15450. foot: {
  15451. height: math.unit(0.6, "feet"),
  15452. name: "Foot",
  15453. image: {
  15454. source: "./media/characters/carmine/foot.svg"
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Large",
  15461. height: math.unit(1, "mile")
  15462. },
  15463. {
  15464. name: "Huge",
  15465. height: math.unit(40, "miles"),
  15466. default: true
  15467. },
  15468. {
  15469. name: "Colossal",
  15470. height: math.unit(2500, "miles")
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15476. {
  15477. front: {
  15478. height: math.unit(6, "feet"),
  15479. weight: math.unit(150, "lb"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/elyssia/front.svg",
  15483. extra: 2201 / 2035,
  15484. bottom: 0.05
  15485. }
  15486. },
  15487. frontClothed: {
  15488. height: math.unit(6, "feet"),
  15489. weight: math.unit(150, "lb"),
  15490. name: "Front (Clothed)",
  15491. image: {
  15492. source: "./media/characters/elyssia/front-clothed.svg",
  15493. extra: 2201 / 2035,
  15494. bottom: 0.05
  15495. }
  15496. },
  15497. back: {
  15498. height: math.unit(6, "feet"),
  15499. weight: math.unit(150, "lb"),
  15500. name: "Back",
  15501. image: {
  15502. source: "./media/characters/elyssia/back.svg",
  15503. extra: 2201 / 2035,
  15504. bottom: 0.013
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Smaller",
  15511. height: math.unit(150, "feet")
  15512. },
  15513. {
  15514. name: "Standard",
  15515. height: math.unit(1400, "feet"),
  15516. default: true
  15517. },
  15518. {
  15519. name: "Distracted",
  15520. height: math.unit(15000, "feet")
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(7 + 4/12, "feet"),
  15529. weight: math.unit(690, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/geno-maxwell/front.svg",
  15533. extra: 984/856,
  15534. bottom: 87/1071
  15535. }
  15536. },
  15537. back: {
  15538. height: math.unit(7 + 4/12, "feet"),
  15539. weight: math.unit(690, "lb"),
  15540. name: "Back",
  15541. image: {
  15542. source: "./media/characters/geno-maxwell/back.svg",
  15543. extra: 981/854,
  15544. bottom: 57/1038
  15545. }
  15546. },
  15547. frontCostume: {
  15548. height: math.unit(7 + 4/12, "feet"),
  15549. weight: math.unit(690, "lb"),
  15550. name: "Front (Costume)",
  15551. image: {
  15552. source: "./media/characters/geno-maxwell/front-costume.svg",
  15553. extra: 984/856,
  15554. bottom: 87/1071
  15555. }
  15556. },
  15557. backcostume: {
  15558. height: math.unit(7 + 4/12, "feet"),
  15559. weight: math.unit(690, "lb"),
  15560. name: "Back (Costume)",
  15561. image: {
  15562. source: "./media/characters/geno-maxwell/back-costume.svg",
  15563. extra: 981/854,
  15564. bottom: 57/1038
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Micro",
  15571. height: math.unit(3, "inches")
  15572. },
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(7 + 4 / 12, "feet"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Macro",
  15580. height: math.unit(220, "feet")
  15581. },
  15582. {
  15583. name: "Megamacro",
  15584. height: math.unit(11, "miles")
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(7 + 4/12, "feet"),
  15593. weight: math.unit(750, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/regena-maxwell/front.svg",
  15597. extra: 984/856,
  15598. bottom: 87/1071
  15599. }
  15600. },
  15601. back: {
  15602. height: math.unit(7 + 4/12, "feet"),
  15603. weight: math.unit(750, "lb"),
  15604. name: "Back",
  15605. image: {
  15606. source: "./media/characters/regena-maxwell/back.svg",
  15607. extra: 981/854,
  15608. bottom: 57/1038
  15609. }
  15610. },
  15611. frontCostume: {
  15612. height: math.unit(7 + 4/12, "feet"),
  15613. weight: math.unit(750, "lb"),
  15614. name: "Front (Costume)",
  15615. image: {
  15616. source: "./media/characters/regena-maxwell/front-costume.svg",
  15617. extra: 984/856,
  15618. bottom: 87/1071
  15619. }
  15620. },
  15621. backcostume: {
  15622. height: math.unit(7 + 4/12, "feet"),
  15623. weight: math.unit(750, "lb"),
  15624. name: "Back (Costume)",
  15625. image: {
  15626. source: "./media/characters/regena-maxwell/back-costume.svg",
  15627. extra: 981/854,
  15628. bottom: 57/1038
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(7 + 4 / 12, "feet"),
  15636. default: true
  15637. },
  15638. {
  15639. name: "Macro",
  15640. height: math.unit(220, "feet")
  15641. },
  15642. {
  15643. name: "Megamacro",
  15644. height: math.unit(11, "miles")
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(6, "feet"),
  15653. weight: math.unit(150, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15657. extra: 860 / 690,
  15658. bottom: 0.03
  15659. }
  15660. },
  15661. },
  15662. [
  15663. {
  15664. name: "Normal",
  15665. height: math.unit(1.7, "meters"),
  15666. default: true
  15667. },
  15668. ]
  15669. ))
  15670. characterMakers.push(() => makeCharacter(
  15671. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15672. {
  15673. front: {
  15674. height: math.unit(6, "feet"),
  15675. weight: math.unit(150, "lb"),
  15676. name: "Front",
  15677. image: {
  15678. source: "./media/characters/quilly/front.svg",
  15679. extra: 890 / 776
  15680. }
  15681. },
  15682. },
  15683. [
  15684. {
  15685. name: "Gigamacro",
  15686. height: math.unit(404090, "miles"),
  15687. default: true
  15688. },
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(7 + 8 / 12, "feet"),
  15696. weight: math.unit(350, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/tempest/front.svg",
  15700. extra: 1175 / 1086,
  15701. bottom: 0.02
  15702. }
  15703. },
  15704. },
  15705. [
  15706. {
  15707. name: "Normal",
  15708. height: math.unit(7 + 8 / 12, "feet"),
  15709. default: true
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15715. {
  15716. side: {
  15717. height: math.unit(4 + 5 / 12, "feet"),
  15718. weight: math.unit(80, "lb"),
  15719. name: "Side",
  15720. image: {
  15721. source: "./media/characters/rodger/side.svg",
  15722. extra: 1235 / 1118
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Micro",
  15729. height: math.unit(1, "inch")
  15730. },
  15731. {
  15732. name: "Normal",
  15733. height: math.unit(4 + 5 / 12, "feet"),
  15734. default: true
  15735. },
  15736. {
  15737. name: "Macro",
  15738. height: math.unit(120, "feet")
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15744. {
  15745. front: {
  15746. height: math.unit(6, "feet"),
  15747. weight: math.unit(150, "lb"),
  15748. name: "Front",
  15749. image: {
  15750. source: "./media/characters/danyel/front.svg",
  15751. extra: 1185 / 1123,
  15752. bottom: 0.05
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Shrunken",
  15759. height: math.unit(0.5, "mm")
  15760. },
  15761. {
  15762. name: "Micro",
  15763. height: math.unit(1, "mm"),
  15764. default: true
  15765. },
  15766. {
  15767. name: "Upsized",
  15768. height: math.unit(5 + 5 / 12, "feet")
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(5 + 6 / 12, "feet"),
  15777. weight: math.unit(200, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/vivian-bijoux/front.svg",
  15781. extra: 1217/1209,
  15782. bottom: 76/1293
  15783. }
  15784. },
  15785. back: {
  15786. height: math.unit(5 + 6 / 12, "feet"),
  15787. weight: math.unit(200, "lb"),
  15788. name: "Back",
  15789. image: {
  15790. source: "./media/characters/vivian-bijoux/back.svg",
  15791. extra: 1214/1208,
  15792. bottom: 51/1265
  15793. }
  15794. },
  15795. dressed: {
  15796. height: math.unit(5 + 6 / 12, "feet"),
  15797. weight: math.unit(200, "lb"),
  15798. name: "Dressed",
  15799. image: {
  15800. source: "./media/characters/vivian-bijoux/dressed.svg",
  15801. extra: 1217/1209,
  15802. bottom: 76/1293
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Normal",
  15809. height: math.unit(5 + 6 / 12, "feet"),
  15810. default: true
  15811. },
  15812. {
  15813. name: "Bad Dream",
  15814. height: math.unit(500, "feet")
  15815. },
  15816. {
  15817. name: "Nightmare",
  15818. height: math.unit(500, "miles")
  15819. },
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(6 + 1 / 12, "feet"),
  15827. weight: math.unit(260, "lb"),
  15828. name: "Front",
  15829. image: {
  15830. source: "./media/characters/zeta/front.svg",
  15831. extra: 1968 / 1889,
  15832. bottom: 0.06
  15833. }
  15834. },
  15835. back: {
  15836. height: math.unit(6 + 1 / 12, "feet"),
  15837. weight: math.unit(260, "lb"),
  15838. name: "Back",
  15839. image: {
  15840. source: "./media/characters/zeta/back.svg",
  15841. extra: 1944 / 1858,
  15842. bottom: 0.03
  15843. }
  15844. },
  15845. hand: {
  15846. height: math.unit(1.112, "feet"),
  15847. name: "Hand",
  15848. image: {
  15849. source: "./media/characters/zeta/hand.svg"
  15850. }
  15851. },
  15852. foot: {
  15853. height: math.unit(1.48, "feet"),
  15854. name: "Foot",
  15855. image: {
  15856. source: "./media/characters/zeta/foot.svg"
  15857. }
  15858. },
  15859. },
  15860. [
  15861. {
  15862. name: "Micro",
  15863. height: math.unit(6, "inches")
  15864. },
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(6 + 1 / 12, "feet"),
  15868. default: true
  15869. },
  15870. {
  15871. name: "Macro",
  15872. height: math.unit(20, "feet")
  15873. },
  15874. ]
  15875. ))
  15876. characterMakers.push(() => makeCharacter(
  15877. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15878. {
  15879. front: {
  15880. height: math.unit(6, "feet"),
  15881. weight: math.unit(150, "lb"),
  15882. name: "Front",
  15883. image: {
  15884. source: "./media/characters/jamie-larsen/front.svg",
  15885. extra: 962 / 933,
  15886. bottom: 0.02
  15887. }
  15888. },
  15889. back: {
  15890. height: math.unit(6, "feet"),
  15891. weight: math.unit(150, "lb"),
  15892. name: "Back",
  15893. image: {
  15894. source: "./media/characters/jamie-larsen/back.svg",
  15895. extra: 997 / 946
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Macro",
  15902. height: math.unit(28 + 7 / 12, "feet"),
  15903. default: true
  15904. },
  15905. {
  15906. name: "Macro+",
  15907. height: math.unit(180, "feet")
  15908. },
  15909. {
  15910. name: "Megamacro",
  15911. height: math.unit(10, "miles")
  15912. },
  15913. {
  15914. name: "Gigamacro",
  15915. height: math.unit(200000, "miles")
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(6, "feet"),
  15924. weight: math.unit(120, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/vance/front.svg",
  15928. extra: 1980 / 1890,
  15929. bottom: 0.09
  15930. }
  15931. },
  15932. back: {
  15933. height: math.unit(6, "feet"),
  15934. weight: math.unit(120, "lb"),
  15935. name: "Back",
  15936. image: {
  15937. source: "./media/characters/vance/back.svg",
  15938. extra: 2081 / 1994,
  15939. bottom: 0.014
  15940. }
  15941. },
  15942. hand: {
  15943. height: math.unit(0.88, "feet"),
  15944. name: "Hand",
  15945. image: {
  15946. source: "./media/characters/vance/hand.svg"
  15947. }
  15948. },
  15949. foot: {
  15950. height: math.unit(0.64, "feet"),
  15951. name: "Foot",
  15952. image: {
  15953. source: "./media/characters/vance/foot.svg"
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Small",
  15960. height: math.unit(90, "feet"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Macro",
  15965. height: math.unit(100, "meters")
  15966. },
  15967. {
  15968. name: "Megamacro",
  15969. height: math.unit(15, "miles")
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(6, "feet"),
  15978. weight: math.unit(180, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/xochitl/front.svg",
  15982. extra: 2297 / 2261,
  15983. bottom: 0.065
  15984. }
  15985. },
  15986. back: {
  15987. height: math.unit(6, "feet"),
  15988. weight: math.unit(180, "lb"),
  15989. name: "Back",
  15990. image: {
  15991. source: "./media/characters/xochitl/back.svg",
  15992. extra: 2386 / 2354,
  15993. bottom: 0.01
  15994. }
  15995. },
  15996. foot: {
  15997. height: math.unit(6 / 5 * 1.15, "feet"),
  15998. weight: math.unit(150, "lb"),
  15999. name: "Foot",
  16000. image: {
  16001. source: "./media/characters/xochitl/foot.svg"
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Macro",
  16008. height: math.unit(80, "feet")
  16009. },
  16010. {
  16011. name: "Macro+",
  16012. height: math.unit(400, "feet"),
  16013. default: true
  16014. },
  16015. {
  16016. name: "Gigamacro",
  16017. height: math.unit(80000, "miles")
  16018. },
  16019. {
  16020. name: "Gigamacro+",
  16021. height: math.unit(400000, "miles")
  16022. },
  16023. {
  16024. name: "Teramacro",
  16025. height: math.unit(300, "AU")
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(6, "feet"),
  16034. weight: math.unit(150, "lb"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/vincent/front.svg",
  16038. extra: 1130 / 1080,
  16039. bottom: 0.055
  16040. }
  16041. },
  16042. beak: {
  16043. height: math.unit(6 * 0.1, "feet"),
  16044. name: "Beak",
  16045. image: {
  16046. source: "./media/characters/vincent/beak.svg"
  16047. }
  16048. },
  16049. hand: {
  16050. height: math.unit(6 * 0.85, "feet"),
  16051. weight: math.unit(150, "lb"),
  16052. name: "Hand",
  16053. image: {
  16054. source: "./media/characters/vincent/hand.svg"
  16055. }
  16056. },
  16057. foot: {
  16058. height: math.unit(6 * 0.19, "feet"),
  16059. weight: math.unit(150, "lb"),
  16060. name: "Foot",
  16061. image: {
  16062. source: "./media/characters/vincent/foot.svg"
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Base",
  16069. height: math.unit(6 + 5 / 12, "feet"),
  16070. default: true
  16071. },
  16072. {
  16073. name: "Macro",
  16074. height: math.unit(300, "feet")
  16075. },
  16076. {
  16077. name: "Megamacro",
  16078. height: math.unit(2, "miles")
  16079. },
  16080. {
  16081. name: "Gigamacro",
  16082. height: math.unit(1000, "miles")
  16083. },
  16084. ]
  16085. ))
  16086. characterMakers.push(() => makeCharacter(
  16087. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16088. {
  16089. front: {
  16090. height: math.unit(2, "meters"),
  16091. weight: math.unit(500, "kg"),
  16092. name: "Front",
  16093. image: {
  16094. source: "./media/characters/coatl/front.svg",
  16095. extra: 3948 / 3500,
  16096. bottom: 0.082
  16097. }
  16098. },
  16099. },
  16100. [
  16101. {
  16102. name: "Normal",
  16103. height: math.unit(4, "meters")
  16104. },
  16105. {
  16106. name: "Macro",
  16107. height: math.unit(100, "meters"),
  16108. default: true
  16109. },
  16110. {
  16111. name: "Macro+",
  16112. height: math.unit(300, "meters")
  16113. },
  16114. {
  16115. name: "Megamacro",
  16116. height: math.unit(3, "gigameters")
  16117. },
  16118. {
  16119. name: "Megamacro+",
  16120. height: math.unit(300, "terameters")
  16121. },
  16122. {
  16123. name: "Megamacro++",
  16124. height: math.unit(3, "lightyears")
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6, "feet"),
  16133. weight: math.unit(50, "kg"),
  16134. name: "front",
  16135. image: {
  16136. source: "./media/characters/shiroryu/front.svg",
  16137. extra: 1990 / 1935
  16138. }
  16139. },
  16140. },
  16141. [
  16142. {
  16143. name: "Mortal Mingling",
  16144. height: math.unit(3, "meters")
  16145. },
  16146. {
  16147. name: "Kaiju-ish",
  16148. height: math.unit(250, "meters")
  16149. },
  16150. {
  16151. name: "Somewhat Godly",
  16152. height: math.unit(400, "km"),
  16153. default: true
  16154. },
  16155. {
  16156. name: "Planetary",
  16157. height: math.unit(300, "megameters")
  16158. },
  16159. {
  16160. name: "Galaxy-dwarfing",
  16161. height: math.unit(450, "kiloparsecs")
  16162. },
  16163. {
  16164. name: "Universe Eater",
  16165. height: math.unit(150, "gigaparsecs")
  16166. },
  16167. {
  16168. name: "Almost Immeasurable",
  16169. height: math.unit(1.3e266, "yottaparsecs")
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(6, "feet"),
  16178. weight: math.unit(150, "lb"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/umeko/front.svg",
  16182. extra: 1,
  16183. bottom: 0.019
  16184. }
  16185. },
  16186. frontArmored: {
  16187. height: math.unit(6, "feet"),
  16188. weight: math.unit(150, "lb"),
  16189. name: "Front (Armored)",
  16190. image: {
  16191. source: "./media/characters/umeko/front-armored.svg",
  16192. extra: 1,
  16193. bottom: 0.021
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Macro",
  16200. height: math.unit(220, "feet"),
  16201. default: true
  16202. },
  16203. {
  16204. name: "Guardian Dragon",
  16205. height: math.unit(50, "miles")
  16206. },
  16207. {
  16208. name: "Cosmic",
  16209. height: math.unit(800000, "miles")
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16215. {
  16216. front: {
  16217. height: math.unit(6, "feet"),
  16218. weight: math.unit(150, "lb"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/cassidy/front.svg",
  16222. extra: 810/808,
  16223. bottom: 41/851
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Canon Height",
  16230. height: math.unit(120, "feet"),
  16231. default: true
  16232. },
  16233. {
  16234. name: "Macro+",
  16235. height: math.unit(400, "feet")
  16236. },
  16237. {
  16238. name: "Macro++",
  16239. height: math.unit(4000, "feet")
  16240. },
  16241. {
  16242. name: "Megamacro",
  16243. height: math.unit(3, "miles")
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16249. {
  16250. front: {
  16251. height: math.unit(6, "feet"),
  16252. weight: math.unit(150, "lb"),
  16253. name: "Front",
  16254. image: {
  16255. source: "./media/characters/isaac/front.svg",
  16256. extra: 896 / 815,
  16257. bottom: 0.11
  16258. }
  16259. },
  16260. },
  16261. [
  16262. {
  16263. name: "Human Size",
  16264. height: math.unit(8, "feet"),
  16265. default: true
  16266. },
  16267. {
  16268. name: "Macro",
  16269. height: math.unit(400, "feet")
  16270. },
  16271. {
  16272. name: "Megamacro",
  16273. height: math.unit(50, "miles")
  16274. },
  16275. {
  16276. name: "Canon Height",
  16277. height: math.unit(200, "AU")
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16283. {
  16284. front: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(72, "kg"),
  16287. name: "Front",
  16288. image: {
  16289. source: "./media/characters/sleekit/front.svg",
  16290. extra: 4693 / 4487,
  16291. bottom: 0.012
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Minimum Height",
  16298. height: math.unit(10, "meters")
  16299. },
  16300. {
  16301. name: "Smaller",
  16302. height: math.unit(25, "meters")
  16303. },
  16304. {
  16305. name: "Larger",
  16306. height: math.unit(38, "meters"),
  16307. default: true
  16308. },
  16309. {
  16310. name: "Maximum height",
  16311. height: math.unit(100, "meters")
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16317. {
  16318. front: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(150, "lb"),
  16321. name: "Front",
  16322. image: {
  16323. source: "./media/characters/nillia/front.svg",
  16324. extra: 719/665,
  16325. bottom: 6/725
  16326. }
  16327. },
  16328. back: {
  16329. height: math.unit(6, "feet"),
  16330. weight: math.unit(150, "lb"),
  16331. name: "Back",
  16332. image: {
  16333. source: "./media/characters/nillia/back.svg",
  16334. extra: 705/651,
  16335. bottom: 5/710
  16336. }
  16337. },
  16338. },
  16339. [
  16340. {
  16341. name: "Canon Height",
  16342. height: math.unit(489, "feet"),
  16343. default: true
  16344. }
  16345. ]
  16346. ))
  16347. characterMakers.push(() => makeCharacter(
  16348. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16349. {
  16350. front: {
  16351. height: math.unit(6, "feet"),
  16352. weight: math.unit(150, "lb"),
  16353. name: "Front",
  16354. image: {
  16355. source: "./media/characters/mesmyriza/front.svg",
  16356. extra: 1541/1291,
  16357. bottom: 87/1628
  16358. }
  16359. },
  16360. foot: {
  16361. height: math.unit(6 / (250 / 35), "feet"),
  16362. name: "Foot",
  16363. image: {
  16364. source: "./media/characters/mesmyriza/foot.svg"
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Macro",
  16371. height: math.unit(457, "meters"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Megamacro",
  16376. height: math.unit(8, "megameters")
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16382. {
  16383. front: {
  16384. height: math.unit(6, "feet"),
  16385. weight: math.unit(250, "lb"),
  16386. name: "Front",
  16387. image: {
  16388. source: "./media/characters/saudade/front.svg",
  16389. extra: 1172 / 1139,
  16390. bottom: 0.035
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Micro",
  16397. height: math.unit(3, "inches")
  16398. },
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(6, "feet"),
  16402. default: true
  16403. },
  16404. {
  16405. name: "Macro",
  16406. height: math.unit(50, "feet")
  16407. },
  16408. {
  16409. name: "Megamacro",
  16410. height: math.unit(2800, "feet")
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16416. {
  16417. front: {
  16418. height: math.unit(5 + 4 / 12, "feet"),
  16419. weight: math.unit(100, "lb"),
  16420. name: "Front",
  16421. image: {
  16422. source: "./media/characters/keireer/front.svg",
  16423. extra: 716 / 666,
  16424. bottom: 0.05
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(5 + 4 / 12, "feet"),
  16432. default: true
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16438. {
  16439. front: {
  16440. height: math.unit(5.5, "feet"),
  16441. weight: math.unit(90, "kg"),
  16442. name: "Front",
  16443. image: {
  16444. source: "./media/characters/mirja/front.svg",
  16445. extra: 1452/1262,
  16446. bottom: 67/1519
  16447. }
  16448. },
  16449. frontDressed: {
  16450. height: math.unit(5.5, "feet"),
  16451. weight: math.unit(90, "lb"),
  16452. name: "Front (Dressed)",
  16453. image: {
  16454. source: "./media/characters/mirja/dressed.svg",
  16455. extra: 1452/1262,
  16456. bottom: 67/1519
  16457. }
  16458. },
  16459. back: {
  16460. height: math.unit(6, "feet"),
  16461. weight: math.unit(90, "lb"),
  16462. name: "Back",
  16463. image: {
  16464. source: "./media/characters/mirja/back.svg",
  16465. extra: 1892/1795,
  16466. bottom: 48/1940
  16467. }
  16468. },
  16469. maw: {
  16470. height: math.unit(1.312, "feet"),
  16471. name: "Maw",
  16472. image: {
  16473. source: "./media/characters/mirja/maw.svg"
  16474. }
  16475. },
  16476. paw: {
  16477. height: math.unit(1.15, "feet"),
  16478. name: "Paw",
  16479. image: {
  16480. source: "./media/characters/mirja/paw.svg"
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "\"Incognito\"",
  16487. height: math.unit(3, "meters")
  16488. },
  16489. {
  16490. name: "Strolling Size",
  16491. height: math.unit(15, "km")
  16492. },
  16493. {
  16494. name: "Larger Strolling Size",
  16495. height: math.unit(400, "km")
  16496. },
  16497. {
  16498. name: "Preferred Size",
  16499. height: math.unit(5000, "km"),
  16500. default: true
  16501. },
  16502. {
  16503. name: "True Size",
  16504. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16510. {
  16511. front: {
  16512. height: math.unit(15, "feet"),
  16513. weight: math.unit(880, "kg"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/nightraver/front.svg",
  16517. extra: 2444 / 2160,
  16518. bottom: 0.027
  16519. }
  16520. },
  16521. back: {
  16522. height: math.unit(15, "feet"),
  16523. weight: math.unit(880, "kg"),
  16524. name: "Back",
  16525. image: {
  16526. source: "./media/characters/nightraver/back.svg",
  16527. extra: 2309 / 2180,
  16528. bottom: 0.005
  16529. }
  16530. },
  16531. sole: {
  16532. height: math.unit(2.878, "feet"),
  16533. name: "Sole",
  16534. image: {
  16535. source: "./media/characters/nightraver/sole.svg"
  16536. }
  16537. },
  16538. foot: {
  16539. height: math.unit(2.285, "feet"),
  16540. name: "Foot",
  16541. image: {
  16542. source: "./media/characters/nightraver/foot.svg"
  16543. }
  16544. },
  16545. maw: {
  16546. height: math.unit(2.67, "feet"),
  16547. name: "Maw",
  16548. image: {
  16549. source: "./media/characters/nightraver/maw.svg"
  16550. }
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Micro",
  16556. height: math.unit(1, "cm")
  16557. },
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(15, "feet"),
  16561. default: true
  16562. },
  16563. {
  16564. name: "Macro",
  16565. height: math.unit(300, "feet")
  16566. },
  16567. {
  16568. name: "Megamacro",
  16569. height: math.unit(300, "miles")
  16570. },
  16571. {
  16572. name: "Gigamacro",
  16573. height: math.unit(10000, "miles")
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16579. {
  16580. side: {
  16581. height: math.unit(2, "inches"),
  16582. weight: math.unit(5, "grams"),
  16583. name: "Side",
  16584. image: {
  16585. source: "./media/characters/arc/side.svg"
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Micro",
  16592. height: math.unit(2, "inches"),
  16593. default: true
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(1.1938, "meters"),
  16602. weight: math.unit(54, "kg"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/nebula-shahar/front.svg",
  16606. extra: 1642 / 1436,
  16607. bottom: 0.06
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Megamicro",
  16614. height: math.unit(0.3, "mm")
  16615. },
  16616. {
  16617. name: "Micro",
  16618. height: math.unit(3, "cm")
  16619. },
  16620. {
  16621. name: "Normal",
  16622. height: math.unit(138, "cm"),
  16623. default: true
  16624. },
  16625. {
  16626. name: "Macro",
  16627. height: math.unit(30, "m")
  16628. },
  16629. ]
  16630. ))
  16631. characterMakers.push(() => makeCharacter(
  16632. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16633. {
  16634. front: {
  16635. height: math.unit(5.24, "feet"),
  16636. weight: math.unit(150, "lb"),
  16637. name: "Front",
  16638. image: {
  16639. source: "./media/characters/shayla/front.svg",
  16640. extra: 1512 / 1414,
  16641. bottom: 0.01
  16642. }
  16643. },
  16644. back: {
  16645. height: math.unit(5.24, "feet"),
  16646. weight: math.unit(150, "lb"),
  16647. name: "Back",
  16648. image: {
  16649. source: "./media/characters/shayla/back.svg",
  16650. extra: 1512 / 1414
  16651. }
  16652. },
  16653. hand: {
  16654. height: math.unit(0.7781496062992126, "feet"),
  16655. name: "Hand",
  16656. image: {
  16657. source: "./media/characters/shayla/hand.svg"
  16658. }
  16659. },
  16660. foot: {
  16661. height: math.unit(1.4206036745406823, "feet"),
  16662. name: "Foot",
  16663. image: {
  16664. source: "./media/characters/shayla/foot.svg"
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Micro",
  16671. height: math.unit(0.32, "feet")
  16672. },
  16673. {
  16674. name: "Normal",
  16675. height: math.unit(5.24, "feet"),
  16676. default: true
  16677. },
  16678. {
  16679. name: "Macro",
  16680. height: math.unit(492.12, "feet")
  16681. },
  16682. {
  16683. name: "Megamacro",
  16684. height: math.unit(186.41, "miles")
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16690. {
  16691. front: {
  16692. height: math.unit(2.2, "m"),
  16693. weight: math.unit(120, "kg"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/pia-jr/front.svg",
  16697. extra: 1000 / 970,
  16698. bottom: 0.035
  16699. }
  16700. },
  16701. hand: {
  16702. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16703. name: "Hand",
  16704. image: {
  16705. source: "./media/characters/pia-jr/hand.svg"
  16706. }
  16707. },
  16708. paw: {
  16709. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16710. name: "Paw",
  16711. image: {
  16712. source: "./media/characters/pia-jr/paw.svg"
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Micro",
  16719. height: math.unit(1.2, "cm")
  16720. },
  16721. {
  16722. name: "Normal",
  16723. height: math.unit(2.2, "m"),
  16724. default: true
  16725. },
  16726. {
  16727. name: "Macro",
  16728. height: math.unit(180, "m")
  16729. },
  16730. {
  16731. name: "Megamacro",
  16732. height: math.unit(420, "km")
  16733. },
  16734. ]
  16735. ))
  16736. characterMakers.push(() => makeCharacter(
  16737. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16738. {
  16739. front: {
  16740. height: math.unit(2, "m"),
  16741. weight: math.unit(115, "kg"),
  16742. name: "Front",
  16743. image: {
  16744. source: "./media/characters/pia-sr/front.svg",
  16745. extra: 760 / 730,
  16746. bottom: 0.015
  16747. }
  16748. },
  16749. back: {
  16750. height: math.unit(2, "m"),
  16751. weight: math.unit(115, "kg"),
  16752. name: "Back",
  16753. image: {
  16754. source: "./media/characters/pia-sr/back.svg",
  16755. extra: 760 / 730,
  16756. bottom: 0.01
  16757. }
  16758. },
  16759. hand: {
  16760. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16761. name: "Hand",
  16762. image: {
  16763. source: "./media/characters/pia-sr/hand.svg"
  16764. }
  16765. },
  16766. foot: {
  16767. height: math.unit(1.83, "feet"),
  16768. name: "Foot",
  16769. image: {
  16770. source: "./media/characters/pia-sr/foot.svg"
  16771. }
  16772. },
  16773. },
  16774. [
  16775. {
  16776. name: "Micro",
  16777. height: math.unit(88, "mm")
  16778. },
  16779. {
  16780. name: "Normal",
  16781. height: math.unit(2, "m"),
  16782. default: true
  16783. },
  16784. {
  16785. name: "Macro",
  16786. height: math.unit(200, "m")
  16787. },
  16788. {
  16789. name: "Megamacro",
  16790. height: math.unit(420, "km")
  16791. },
  16792. ]
  16793. ))
  16794. characterMakers.push(() => makeCharacter(
  16795. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16796. {
  16797. front: {
  16798. height: math.unit(8 + 2 / 12, "feet"),
  16799. weight: math.unit(300, "lb"),
  16800. name: "Front",
  16801. image: {
  16802. source: "./media/characters/kibibyte/front.svg",
  16803. extra: 2221 / 2098,
  16804. bottom: 0.04
  16805. }
  16806. },
  16807. },
  16808. [
  16809. {
  16810. name: "Normal",
  16811. height: math.unit(8 + 2 / 12, "feet"),
  16812. default: true
  16813. },
  16814. {
  16815. name: "Socialable Macro",
  16816. height: math.unit(50, "feet")
  16817. },
  16818. {
  16819. name: "Macro",
  16820. height: math.unit(300, "feet")
  16821. },
  16822. {
  16823. name: "Megamacro",
  16824. height: math.unit(500, "miles")
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16830. {
  16831. front: {
  16832. height: math.unit(6, "feet"),
  16833. weight: math.unit(150, "lb"),
  16834. name: "Front",
  16835. image: {
  16836. source: "./media/characters/felix/front.svg",
  16837. extra: 762 / 722,
  16838. bottom: 0.02
  16839. }
  16840. },
  16841. frontClothed: {
  16842. height: math.unit(6, "feet"),
  16843. weight: math.unit(150, "lb"),
  16844. name: "Front (Clothed)",
  16845. image: {
  16846. source: "./media/characters/felix/front-clothed.svg",
  16847. extra: 762 / 722,
  16848. bottom: 0.02
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(6 + 8 / 12, "feet"),
  16856. default: true
  16857. },
  16858. {
  16859. name: "Macro",
  16860. height: math.unit(2600, "feet")
  16861. },
  16862. {
  16863. name: "Megamacro",
  16864. height: math.unit(450, "miles")
  16865. },
  16866. ]
  16867. ))
  16868. characterMakers.push(() => makeCharacter(
  16869. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16870. {
  16871. front: {
  16872. height: math.unit(6 + 1 / 12, "feet"),
  16873. weight: math.unit(250, "lb"),
  16874. name: "Front",
  16875. image: {
  16876. source: "./media/characters/tobo/front.svg",
  16877. extra: 608 / 586,
  16878. bottom: 0.023
  16879. }
  16880. },
  16881. back: {
  16882. height: math.unit(6 + 1 / 12, "feet"),
  16883. weight: math.unit(250, "lb"),
  16884. name: "Back",
  16885. image: {
  16886. source: "./media/characters/tobo/back.svg",
  16887. extra: 608 / 586
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Nano",
  16894. height: math.unit(2, "nm")
  16895. },
  16896. {
  16897. name: "Megamicro",
  16898. height: math.unit(0.1, "mm")
  16899. },
  16900. {
  16901. name: "Micro",
  16902. height: math.unit(1, "inch"),
  16903. default: true
  16904. },
  16905. {
  16906. name: "Human-sized",
  16907. height: math.unit(6 + 1 / 12, "feet")
  16908. },
  16909. {
  16910. name: "Macro",
  16911. height: math.unit(250, "feet")
  16912. },
  16913. {
  16914. name: "Megamacro",
  16915. height: math.unit(75, "miles")
  16916. },
  16917. {
  16918. name: "Texas-sized",
  16919. height: math.unit(750, "miles")
  16920. },
  16921. {
  16922. name: "Teramacro",
  16923. height: math.unit(50000, "miles")
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(6, "feet"),
  16932. weight: math.unit(269, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/danny-kapowsky/front.svg",
  16936. extra: 766 / 736,
  16937. bottom: 0.044
  16938. }
  16939. },
  16940. back: {
  16941. height: math.unit(6, "feet"),
  16942. weight: math.unit(269, "lb"),
  16943. name: "Back",
  16944. image: {
  16945. source: "./media/characters/danny-kapowsky/back.svg",
  16946. extra: 797 / 760,
  16947. bottom: 0.025
  16948. }
  16949. },
  16950. },
  16951. [
  16952. {
  16953. name: "Macro",
  16954. height: math.unit(150, "feet"),
  16955. default: true
  16956. },
  16957. {
  16958. name: "Macro+",
  16959. height: math.unit(200, "feet")
  16960. },
  16961. {
  16962. name: "Macro++",
  16963. height: math.unit(300, "feet")
  16964. },
  16965. {
  16966. name: "Macro+++",
  16967. height: math.unit(400, "feet")
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16973. {
  16974. side: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(170, "lb"),
  16977. name: "Side",
  16978. image: {
  16979. source: "./media/characters/finn/side.svg",
  16980. extra: 1953 / 1807,
  16981. bottom: 0.057
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Megamacro",
  16988. height: math.unit(14445, "feet"),
  16989. default: true
  16990. },
  16991. ]
  16992. ))
  16993. characterMakers.push(() => makeCharacter(
  16994. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16995. {
  16996. front: {
  16997. height: math.unit(5 + 6 / 12, "feet"),
  16998. weight: math.unit(125, "lb"),
  16999. name: "Front",
  17000. image: {
  17001. source: "./media/characters/roy/front.svg",
  17002. extra: 1,
  17003. bottom: 0.11
  17004. }
  17005. },
  17006. },
  17007. [
  17008. {
  17009. name: "Micro",
  17010. height: math.unit(3, "inches"),
  17011. default: true
  17012. },
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(5 + 6 / 12, "feet")
  17016. },
  17017. {
  17018. name: "Lesser Macro",
  17019. height: math.unit(60, "feet")
  17020. },
  17021. {
  17022. name: "Greater Macro",
  17023. height: math.unit(120, "feet")
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17029. {
  17030. front: {
  17031. height: math.unit(6, "feet"),
  17032. weight: math.unit(100, "lb"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/aevsivs/front.svg",
  17036. extra: 1,
  17037. bottom: 0.03
  17038. }
  17039. },
  17040. back: {
  17041. height: math.unit(6, "feet"),
  17042. weight: math.unit(100, "lb"),
  17043. name: "Back",
  17044. image: {
  17045. source: "./media/characters/aevsivs/back.svg"
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Micro",
  17052. height: math.unit(2, "inches"),
  17053. default: true
  17054. },
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(5, "feet")
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(5 + 7 / 12, "feet"),
  17066. weight: math.unit(159, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/hildegard/front.svg",
  17070. extra: 289 / 269,
  17071. bottom: 7.63 / 297.8
  17072. }
  17073. },
  17074. back: {
  17075. height: math.unit(5 + 7 / 12, "feet"),
  17076. weight: math.unit(159, "lb"),
  17077. name: "Back",
  17078. image: {
  17079. source: "./media/characters/hildegard/back.svg",
  17080. extra: 280 / 260,
  17081. bottom: 2.3 / 282
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(5 + 7 / 12, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17095. {
  17096. bernard: {
  17097. height: math.unit(2 + 7 / 12, "feet"),
  17098. weight: math.unit(66, "lb"),
  17099. name: "Bernard",
  17100. rename: true,
  17101. image: {
  17102. source: "./media/characters/bernard-wilder/bernard.svg",
  17103. extra: 192 / 128,
  17104. bottom: 0.05
  17105. }
  17106. },
  17107. wilder: {
  17108. height: math.unit(5 + 8 / 12, "feet"),
  17109. weight: math.unit(143, "lb"),
  17110. name: "Wilder",
  17111. rename: true,
  17112. image: {
  17113. source: "./media/characters/bernard-wilder/wilder.svg",
  17114. extra: 361 / 312,
  17115. bottom: 0.02
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(2 + 7 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17129. {
  17130. anthro: {
  17131. height: math.unit(6 + 1 / 12, "feet"),
  17132. weight: math.unit(155, "lb"),
  17133. name: "Anthro",
  17134. image: {
  17135. source: "./media/characters/hearth/anthro.svg",
  17136. extra: 1178/1136,
  17137. bottom: 28/1206
  17138. }
  17139. },
  17140. feral: {
  17141. height: math.unit(3.78, "feet"),
  17142. weight: math.unit(35, "kg"),
  17143. name: "Feral",
  17144. image: {
  17145. source: "./media/characters/hearth/feral.svg",
  17146. extra: 153 / 135,
  17147. bottom: 0.03
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(6 + 1 / 12, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(6, "feet"),
  17164. weight: math.unit(182, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/ingrid/front.svg",
  17168. extra: 294 / 268,
  17169. bottom: 0.027
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(6, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17183. {
  17184. eevee: {
  17185. height: math.unit(2 + 10 / 12, "feet"),
  17186. weight: math.unit(86, "lb"),
  17187. name: "Malgam",
  17188. image: {
  17189. source: "./media/characters/malgam/eevee.svg",
  17190. extra: 952/784,
  17191. bottom: 38/990
  17192. }
  17193. },
  17194. sylveon: {
  17195. height: math.unit(4, "feet"),
  17196. weight: math.unit(101, "lb"),
  17197. name: "Future Malgam",
  17198. rename: true,
  17199. image: {
  17200. source: "./media/characters/malgam/sylveon.svg",
  17201. extra: 371 / 325,
  17202. bottom: 0.015
  17203. }
  17204. },
  17205. gigantamax: {
  17206. height: math.unit(50, "feet"),
  17207. name: "Gigantamax Malgam",
  17208. rename: true,
  17209. image: {
  17210. source: "./media/characters/malgam/gigantamax.svg"
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(2 + 10 / 12, "feet"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17224. {
  17225. front: {
  17226. height: math.unit(5 + 11 / 12, "feet"),
  17227. weight: math.unit(188, "lb"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/fleur/front.svg",
  17231. extra: 309 / 283,
  17232. bottom: 0.007
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(5 + 11 / 12, "feet"),
  17240. default: true
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(5 + 4 / 12, "feet"),
  17249. weight: math.unit(122, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/jude/front.svg",
  17253. extra: 288 / 273,
  17254. bottom: 0.03
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(5 + 4 / 12, "feet"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17268. {
  17269. front: {
  17270. height: math.unit(5 + 11 / 12, "feet"),
  17271. weight: math.unit(190, "lb"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/seara/front.svg",
  17275. extra: 1,
  17276. bottom: 0.05
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(5 + 11 / 12, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(16 + 5 / 12, "feet"),
  17293. weight: math.unit(524, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/caspian-lugia/front.svg",
  17297. extra: 1,
  17298. bottom: 0.04
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(16 + 5 / 12, "feet"),
  17306. default: true
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17312. {
  17313. front: {
  17314. height: math.unit(5 + 7 / 12, "feet"),
  17315. weight: math.unit(170, "lb"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/mika/front.svg",
  17319. extra: 1,
  17320. bottom: 0.016
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(5 + 7 / 12, "feet"),
  17328. default: true
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17334. {
  17335. front: {
  17336. height: math.unit(6 + 2 / 12, "feet"),
  17337. weight: math.unit(268, "lb"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/sol/front.svg",
  17341. extra: 247 / 231,
  17342. bottom: 0.05
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Normal",
  17349. height: math.unit(6 + 2 / 12, "feet"),
  17350. default: true
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17356. {
  17357. buizel: {
  17358. height: math.unit(2 + 5 / 12, "feet"),
  17359. weight: math.unit(87, "lb"),
  17360. name: "Front",
  17361. image: {
  17362. source: "./media/characters/umiko/buizel.svg",
  17363. extra: 172 / 157,
  17364. bottom: 0.01
  17365. },
  17366. form: "buizel",
  17367. default: true
  17368. },
  17369. floatzel: {
  17370. height: math.unit(5 + 9 / 12, "feet"),
  17371. weight: math.unit(250, "lb"),
  17372. name: "Front",
  17373. image: {
  17374. source: "./media/characters/umiko/floatzel.svg",
  17375. extra: 1076/1006,
  17376. bottom: 15/1091
  17377. },
  17378. form: "floatzel",
  17379. default: true
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(2 + 5 / 12, "feet"),
  17386. form: "buizel",
  17387. default: true
  17388. },
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(5 + 9 / 12, "feet"),
  17392. form: "floatzel",
  17393. default: true
  17394. },
  17395. ],
  17396. {
  17397. "buizel": {
  17398. name: "Buizel"
  17399. },
  17400. "floatzel": {
  17401. name: "Floatzel",
  17402. default: true
  17403. }
  17404. }
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17408. {
  17409. front: {
  17410. height: math.unit(6 + 2 / 12, "feet"),
  17411. weight: math.unit(146, "lb"),
  17412. name: "Front",
  17413. image: {
  17414. source: "./media/characters/iliac/front.svg",
  17415. extra: 389 / 365,
  17416. bottom: 0.035
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(6 + 2 / 12, "feet"),
  17424. default: true
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(170, "lb"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/topaz/front.svg",
  17437. extra: 317 / 303,
  17438. bottom: 0.055
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(6, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(5 + 11 / 12, "feet"),
  17455. weight: math.unit(144, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/gabriel/front.svg",
  17459. extra: 285 / 262,
  17460. bottom: 0.004
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(5 + 11 / 12, "feet"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17474. {
  17475. side: {
  17476. height: math.unit(6 + 5 / 12, "feet"),
  17477. weight: math.unit(300, "lb"),
  17478. name: "Side",
  17479. image: {
  17480. source: "./media/characters/tempest-suicune/side.svg",
  17481. extra: 195 / 154,
  17482. bottom: 0.04
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(6 + 5 / 12, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17496. {
  17497. front: {
  17498. height: math.unit(7 + 2 / 12, "feet"),
  17499. weight: math.unit(322, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/vulcan/front.svg",
  17503. extra: 154 / 147,
  17504. bottom: 0.04
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(7 + 2 / 12, "feet"),
  17512. default: true
  17513. },
  17514. ]
  17515. ))
  17516. characterMakers.push(() => makeCharacter(
  17517. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17518. {
  17519. front: {
  17520. height: math.unit(5 + 10 / 12, "feet"),
  17521. weight: math.unit(264, "lb"),
  17522. name: "Front",
  17523. image: {
  17524. source: "./media/characters/gault/front.svg",
  17525. extra: 161 / 140,
  17526. bottom: 0.028
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Normal",
  17533. height: math.unit(5 + 10 / 12, "feet"),
  17534. default: true
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(6, "feet"),
  17543. weight: math.unit(150, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/shard/front.svg",
  17547. extra: 273 / 238,
  17548. bottom: 0.02
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(3 + 6 / 12, "feet"),
  17556. default: true
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17562. {
  17563. front: {
  17564. height: math.unit(5 + 11 / 12, "feet"),
  17565. weight: math.unit(146, "lb"),
  17566. name: "Front",
  17567. image: {
  17568. source: "./media/characters/ashe/front.svg",
  17569. extra: 400 / 373,
  17570. bottom: 0.01
  17571. }
  17572. },
  17573. },
  17574. [
  17575. {
  17576. name: "Normal",
  17577. height: math.unit(5 + 11 / 12, "feet"),
  17578. default: true
  17579. },
  17580. ]
  17581. ))
  17582. characterMakers.push(() => makeCharacter(
  17583. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17584. {
  17585. front: {
  17586. height: math.unit(5 + 5 / 12, "feet"),
  17587. weight: math.unit(135, "lb"),
  17588. name: "Front",
  17589. image: {
  17590. source: "./media/characters/beatrix/front.svg",
  17591. extra: 392 / 379,
  17592. bottom: 0.01
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(6, "feet"),
  17600. default: true
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(6 + 2/12, "feet"),
  17609. weight: math.unit(135, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/ignatius/front.svg",
  17613. extra: 1380/1259,
  17614. bottom: 27/1407
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Normal",
  17621. height: math.unit(6 + 2/12, "feet"),
  17622. default: true
  17623. },
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17628. {
  17629. front: {
  17630. height: math.unit(6 + 2 / 12, "feet"),
  17631. weight: math.unit(138, "lb"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/mei-li/front.svg",
  17635. extra: 237 / 229,
  17636. bottom: 0.03
  17637. }
  17638. },
  17639. },
  17640. [
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(6 + 2 / 12, "feet"),
  17644. default: true
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17650. {
  17651. front: {
  17652. height: math.unit(2 + 4 / 12, "feet"),
  17653. weight: math.unit(62, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/puru/front.svg",
  17657. extra: 206 / 149,
  17658. bottom: 0.06
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(2 + 4 / 12, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17672. {
  17673. anthro: {
  17674. height: math.unit(5 + 8/12, "feet"),
  17675. weight: math.unit(200, "lb"),
  17676. energyNeed: math.unit(2000, "kcal"),
  17677. name: "Anthro",
  17678. image: {
  17679. source: "./media/characters/kee/anthro.svg",
  17680. extra: 3251/3184,
  17681. bottom: 250/3501
  17682. }
  17683. },
  17684. taur: {
  17685. height: math.unit(11, "feet"),
  17686. weight: math.unit(500, "lb"),
  17687. energyNeed: math.unit(5000, "kcal"),
  17688. name: "Taur",
  17689. image: {
  17690. source: "./media/characters/kee/taur.svg",
  17691. extra: 1362/1320,
  17692. bottom: 83/1445
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(5 + 8/12, "feet"),
  17700. default: true
  17701. },
  17702. {
  17703. name: "Macro",
  17704. height: math.unit(35, "feet")
  17705. },
  17706. ]
  17707. ))
  17708. characterMakers.push(() => makeCharacter(
  17709. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17710. {
  17711. anthro: {
  17712. height: math.unit(7, "feet"),
  17713. weight: math.unit(190, "lb"),
  17714. name: "Anthro",
  17715. image: {
  17716. source: "./media/characters/cobalt-dracha/anthro.svg",
  17717. extra: 231 / 225,
  17718. bottom: 0.04
  17719. }
  17720. },
  17721. feral: {
  17722. height: math.unit(9 + 7 / 12, "feet"),
  17723. weight: math.unit(294, "lb"),
  17724. name: "Feral",
  17725. image: {
  17726. source: "./media/characters/cobalt-dracha/feral.svg",
  17727. extra: 692 / 633,
  17728. bottom: 0.05
  17729. }
  17730. },
  17731. },
  17732. [
  17733. {
  17734. name: "Normal",
  17735. height: math.unit(7, "feet"),
  17736. default: true
  17737. },
  17738. ]
  17739. ))
  17740. characterMakers.push(() => makeCharacter(
  17741. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17742. {
  17743. fallen: {
  17744. height: math.unit(11 + 8 / 12, "feet"),
  17745. weight: math.unit(485, "lb"),
  17746. name: "Java (Fallen)",
  17747. rename: true,
  17748. image: {
  17749. source: "./media/characters/java/fallen.svg",
  17750. extra: 226 / 208,
  17751. bottom: 0.005
  17752. }
  17753. },
  17754. godkin: {
  17755. height: math.unit(10 + 6 / 12, "feet"),
  17756. weight: math.unit(328, "lb"),
  17757. name: "Java (Godkin)",
  17758. rename: true,
  17759. image: {
  17760. source: "./media/characters/java/godkin.svg",
  17761. extra: 1104/1068,
  17762. bottom: 36/1140
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(11 + 8 / 12, "feet"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17776. {
  17777. front: {
  17778. height: math.unit(5 + 9 / 12, "feet"),
  17779. weight: math.unit(170, "lb"),
  17780. name: "Front",
  17781. image: {
  17782. source: "./media/characters/purna/front.svg",
  17783. extra: 239 / 229,
  17784. bottom: 0.01
  17785. }
  17786. },
  17787. },
  17788. [
  17789. {
  17790. name: "Normal",
  17791. height: math.unit(5 + 9 / 12, "feet"),
  17792. default: true
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17798. {
  17799. front: {
  17800. height: math.unit(5 + 9 / 12, "feet"),
  17801. weight: math.unit(142, "lb"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/kuva/front.svg",
  17805. extra: 281 / 271,
  17806. bottom: 0.006
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(5 + 9 / 12, "feet"),
  17814. default: true
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17820. {
  17821. anthro: {
  17822. height: math.unit(9 + 2 / 12, "feet"),
  17823. weight: math.unit(270, "lb"),
  17824. name: "Anthro",
  17825. image: {
  17826. source: "./media/characters/embra/anthro.svg",
  17827. extra: 200 / 187,
  17828. bottom: 0.02
  17829. }
  17830. },
  17831. feral: {
  17832. height: math.unit(18 + 8 / 12, "feet"),
  17833. weight: math.unit(576, "lb"),
  17834. name: "Feral",
  17835. image: {
  17836. source: "./media/characters/embra/feral.svg",
  17837. extra: 152 / 137,
  17838. bottom: 0.037
  17839. }
  17840. },
  17841. },
  17842. [
  17843. {
  17844. name: "Normal",
  17845. height: math.unit(9 + 2 / 12, "feet"),
  17846. default: true
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17852. {
  17853. anthro: {
  17854. height: math.unit(10 + 9 / 12, "feet"),
  17855. weight: math.unit(224, "lb"),
  17856. name: "Anthro",
  17857. image: {
  17858. source: "./media/characters/grottos/anthro.svg",
  17859. extra: 350 / 332,
  17860. bottom: 0.045
  17861. }
  17862. },
  17863. feral: {
  17864. height: math.unit(20 + 7 / 12, "feet"),
  17865. weight: math.unit(629, "lb"),
  17866. name: "Feral",
  17867. image: {
  17868. source: "./media/characters/grottos/feral.svg",
  17869. extra: 207 / 190,
  17870. bottom: 0.05
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Normal",
  17877. height: math.unit(10 + 9 / 12, "feet"),
  17878. default: true
  17879. },
  17880. ]
  17881. ))
  17882. characterMakers.push(() => makeCharacter(
  17883. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17884. {
  17885. anthro: {
  17886. height: math.unit(9 + 6 / 12, "feet"),
  17887. weight: math.unit(298, "lb"),
  17888. name: "Anthro",
  17889. image: {
  17890. source: "./media/characters/frifna/anthro.svg",
  17891. extra: 282 / 269,
  17892. bottom: 0.015
  17893. }
  17894. },
  17895. feral: {
  17896. height: math.unit(16 + 2 / 12, "feet"),
  17897. weight: math.unit(624, "lb"),
  17898. name: "Feral",
  17899. image: {
  17900. source: "./media/characters/frifna/feral.svg"
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Normal",
  17907. height: math.unit(9 + 6 / 12, "feet"),
  17908. default: true
  17909. },
  17910. ]
  17911. ))
  17912. characterMakers.push(() => makeCharacter(
  17913. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17914. {
  17915. front: {
  17916. height: math.unit(6 + 2 / 12, "feet"),
  17917. weight: math.unit(168, "lb"),
  17918. name: "Front",
  17919. image: {
  17920. source: "./media/characters/elise/front.svg",
  17921. extra: 276 / 271
  17922. }
  17923. },
  17924. },
  17925. [
  17926. {
  17927. name: "Normal",
  17928. height: math.unit(6 + 2 / 12, "feet"),
  17929. default: true
  17930. },
  17931. ]
  17932. ))
  17933. characterMakers.push(() => makeCharacter(
  17934. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17935. {
  17936. front: {
  17937. height: math.unit(5 + 10 / 12, "feet"),
  17938. weight: math.unit(210, "lb"),
  17939. name: "Front",
  17940. image: {
  17941. source: "./media/characters/glade/front.svg",
  17942. extra: 258 / 247,
  17943. bottom: 0.008
  17944. }
  17945. },
  17946. },
  17947. [
  17948. {
  17949. name: "Normal",
  17950. height: math.unit(5 + 10 / 12, "feet"),
  17951. default: true
  17952. },
  17953. ]
  17954. ))
  17955. characterMakers.push(() => makeCharacter(
  17956. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17957. {
  17958. front: {
  17959. height: math.unit(5 + 10 / 12, "feet"),
  17960. weight: math.unit(129, "lb"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/rina/front.svg",
  17964. extra: 266 / 255,
  17965. bottom: 0.005
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Normal",
  17972. height: math.unit(5 + 10 / 12, "feet"),
  17973. default: true
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17979. {
  17980. front: {
  17981. height: math.unit(6 + 1 / 12, "feet"),
  17982. weight: math.unit(192, "lb"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/veronica/front.svg",
  17986. extra: 319 / 309,
  17987. bottom: 0.005
  17988. }
  17989. },
  17990. },
  17991. [
  17992. {
  17993. name: "Normal",
  17994. height: math.unit(6 + 1 / 12, "feet"),
  17995. default: true
  17996. },
  17997. ]
  17998. ))
  17999. characterMakers.push(() => makeCharacter(
  18000. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18001. {
  18002. front: {
  18003. height: math.unit(9 + 3 / 12, "feet"),
  18004. weight: math.unit(1100, "lb"),
  18005. name: "Front",
  18006. image: {
  18007. source: "./media/characters/braxton/front.svg",
  18008. extra: 1057 / 984,
  18009. bottom: 0.05
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(9 + 3 / 12, "feet")
  18017. },
  18018. {
  18019. name: "Giant",
  18020. height: math.unit(300, "feet"),
  18021. default: true
  18022. },
  18023. {
  18024. name: "Macro",
  18025. height: math.unit(700, "feet")
  18026. },
  18027. {
  18028. name: "Megamacro",
  18029. height: math.unit(6000, "feet")
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(6 + 7 / 12, "feet"),
  18038. weight: math.unit(150, "lb"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/blue-feyonics/front.svg",
  18042. extra: 1403 / 1306,
  18043. bottom: 0.047
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(6 + 7 / 12, "feet"),
  18051. default: true
  18052. },
  18053. ]
  18054. ))
  18055. characterMakers.push(() => makeCharacter(
  18056. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18057. {
  18058. front: {
  18059. height: math.unit(1.8, "meters"),
  18060. weight: math.unit(60, "kg"),
  18061. name: "Front",
  18062. image: {
  18063. source: "./media/characters/maxwell/front.svg",
  18064. extra: 2060 / 1873
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Micro",
  18071. height: math.unit(1, "mm")
  18072. },
  18073. {
  18074. name: "Normal",
  18075. height: math.unit(1.8, "meter"),
  18076. default: true
  18077. },
  18078. {
  18079. name: "Macro",
  18080. height: math.unit(30, "meters")
  18081. },
  18082. {
  18083. name: "Megamacro",
  18084. height: math.unit(10, "km")
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18090. {
  18091. front: {
  18092. height: math.unit(6, "feet"),
  18093. weight: math.unit(150, "lb"),
  18094. name: "Front",
  18095. image: {
  18096. source: "./media/characters/jack/front.svg",
  18097. extra: 1754 / 1640,
  18098. bottom: 0.01
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(80000, "feet"),
  18106. default: true
  18107. },
  18108. {
  18109. name: "Max size",
  18110. height: math.unit(10, "lightyears")
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18116. {
  18117. urban: {
  18118. height: math.unit(5, "feet"),
  18119. weight: math.unit(240, "lb"),
  18120. name: "Urban",
  18121. image: {
  18122. source: "./media/characters/cafat/urban.svg",
  18123. extra: 1223/1126,
  18124. bottom: 205/1428
  18125. }
  18126. },
  18127. summer: {
  18128. height: math.unit(5, "feet"),
  18129. weight: math.unit(240, "lb"),
  18130. name: "Summer",
  18131. image: {
  18132. source: "./media/characters/cafat/summer.svg",
  18133. extra: 1223/1126,
  18134. bottom: 205/1428
  18135. }
  18136. },
  18137. winter: {
  18138. height: math.unit(5, "feet"),
  18139. weight: math.unit(240, "lb"),
  18140. name: "Winter",
  18141. image: {
  18142. source: "./media/characters/cafat/winter.svg",
  18143. extra: 1223/1126,
  18144. bottom: 205/1428
  18145. }
  18146. },
  18147. lingerie: {
  18148. height: math.unit(5, "feet"),
  18149. weight: math.unit(240, "lb"),
  18150. name: "Lingerie",
  18151. image: {
  18152. source: "./media/characters/cafat/lingerie.svg",
  18153. extra: 1223/1126,
  18154. bottom: 205/1428
  18155. }
  18156. },
  18157. upright: {
  18158. height: math.unit(6.3, "feet"),
  18159. weight: math.unit(240, "lb"),
  18160. name: "Upright",
  18161. image: {
  18162. source: "./media/characters/cafat/upright.svg",
  18163. bottom: 0.01
  18164. }
  18165. },
  18166. uprightFull: {
  18167. height: math.unit(6.3, "feet"),
  18168. weight: math.unit(240, "lb"),
  18169. name: "Upright (Full)",
  18170. image: {
  18171. source: "./media/characters/cafat/upright-full.svg",
  18172. bottom: 0.01
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Small",
  18179. height: math.unit(5, "feet"),
  18180. default: true
  18181. },
  18182. {
  18183. name: "Large",
  18184. height: math.unit(13, "feet")
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(6, "feet"),
  18193. weight: math.unit(150, "lb"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/verin-raharra/front.svg",
  18197. extra: 5019 / 4835,
  18198. bottom: 0.023
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Normal",
  18205. height: math.unit(7 + 5 / 12, "feet"),
  18206. default: true
  18207. },
  18208. {
  18209. name: "Upsized",
  18210. height: math.unit(20, "feet")
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18216. {
  18217. front: {
  18218. height: math.unit(7, "feet"),
  18219. weight: math.unit(230, "lb"),
  18220. name: "Front",
  18221. image: {
  18222. source: "./media/characters/nakata/front.svg",
  18223. extra: 1.005,
  18224. bottom: 0.01
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Normal",
  18231. height: math.unit(7, "feet"),
  18232. default: true
  18233. },
  18234. {
  18235. name: "Big",
  18236. height: math.unit(14, "feet")
  18237. },
  18238. {
  18239. name: "Macro",
  18240. height: math.unit(400, "feet")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18246. {
  18247. front: {
  18248. height: math.unit(4.91, "feet"),
  18249. weight: math.unit(100, "lb"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/lily/front.svg",
  18253. extra: 1585 / 1415,
  18254. bottom: 0.02
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(4.91, "feet"),
  18262. default: true
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18268. {
  18269. laying: {
  18270. height: math.unit(4 + 4 / 12, "feet"),
  18271. weight: math.unit(600, "lb"),
  18272. name: "Laying",
  18273. image: {
  18274. source: "./media/characters/sheila/laying.svg",
  18275. extra: 1333 / 1265,
  18276. bottom: 0.16
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(4 + 4 / 12, "feet"),
  18284. default: true
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(6, "feet"),
  18293. weight: math.unit(190, "lb"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/sax/front.svg",
  18297. extra: 1187 / 973,
  18298. bottom: 0.042
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Micro",
  18305. height: math.unit(4, "inches"),
  18306. default: true
  18307. },
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18312. {
  18313. front: {
  18314. height: math.unit(6, "feet"),
  18315. weight: math.unit(150, "lb"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/pandora/front.svg",
  18319. extra: 2720 / 2556,
  18320. bottom: 0.015
  18321. }
  18322. },
  18323. back: {
  18324. height: math.unit(6, "feet"),
  18325. weight: math.unit(150, "lb"),
  18326. name: "Back",
  18327. image: {
  18328. source: "./media/characters/pandora/back.svg",
  18329. extra: 2720 / 2556,
  18330. bottom: 0.01
  18331. }
  18332. },
  18333. beans: {
  18334. height: math.unit(6 / 8, "feet"),
  18335. name: "Beans",
  18336. image: {
  18337. source: "./media/characters/pandora/beans.svg"
  18338. }
  18339. },
  18340. collar: {
  18341. height: math.unit(0.31, "feet"),
  18342. name: "Collar",
  18343. image: {
  18344. source: "./media/characters/pandora/collar.svg"
  18345. }
  18346. },
  18347. skirt: {
  18348. height: math.unit(6, "feet"),
  18349. weight: math.unit(150, "lb"),
  18350. name: "Skirt",
  18351. image: {
  18352. source: "./media/characters/pandora/skirt.svg",
  18353. extra: 1622 / 1525,
  18354. bottom: 0.015
  18355. }
  18356. },
  18357. hoodie: {
  18358. height: math.unit(6, "feet"),
  18359. weight: math.unit(150, "lb"),
  18360. name: "Hoodie",
  18361. image: {
  18362. source: "./media/characters/pandora/hoodie.svg",
  18363. extra: 1622 / 1525,
  18364. bottom: 0.015
  18365. }
  18366. },
  18367. casual: {
  18368. height: math.unit(6, "feet"),
  18369. weight: math.unit(150, "lb"),
  18370. name: "Casual",
  18371. image: {
  18372. source: "./media/characters/pandora/casual.svg",
  18373. extra: 1622 / 1525,
  18374. bottom: 0.015
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(6, "feet")
  18382. },
  18383. {
  18384. name: "Big Steppy",
  18385. height: math.unit(1, "km"),
  18386. default: true
  18387. },
  18388. {
  18389. name: "Galactic Steppy",
  18390. height: math.unit(2, "gigameters")
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18396. {
  18397. side: {
  18398. height: math.unit(10, "feet"),
  18399. weight: math.unit(800, "kg"),
  18400. name: "Side",
  18401. image: {
  18402. source: "./media/characters/venio-darcony/side.svg",
  18403. extra: 1373 / 1003,
  18404. bottom: 0.037
  18405. }
  18406. },
  18407. front: {
  18408. height: math.unit(19, "feet"),
  18409. weight: math.unit(800, "kg"),
  18410. name: "Front",
  18411. image: {
  18412. source: "./media/characters/venio-darcony/front.svg"
  18413. }
  18414. },
  18415. back: {
  18416. height: math.unit(19, "feet"),
  18417. weight: math.unit(800, "kg"),
  18418. name: "Back",
  18419. image: {
  18420. source: "./media/characters/venio-darcony/back.svg"
  18421. }
  18422. },
  18423. sideNsfw: {
  18424. height: math.unit(10, "feet"),
  18425. weight: math.unit(800, "kg"),
  18426. name: "Side (NSFW)",
  18427. image: {
  18428. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18429. extra: 1373 / 1003,
  18430. bottom: 0.037
  18431. }
  18432. },
  18433. frontNsfw: {
  18434. height: math.unit(19, "feet"),
  18435. weight: math.unit(800, "kg"),
  18436. name: "Front (NSFW)",
  18437. image: {
  18438. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18439. }
  18440. },
  18441. backNsfw: {
  18442. height: math.unit(19, "feet"),
  18443. weight: math.unit(800, "kg"),
  18444. name: "Back (NSFW)",
  18445. image: {
  18446. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18447. }
  18448. },
  18449. sideArmored: {
  18450. height: math.unit(10, "feet"),
  18451. weight: math.unit(800, "kg"),
  18452. name: "Side (Armored)",
  18453. image: {
  18454. source: "./media/characters/venio-darcony/side-armored.svg",
  18455. extra: 1373 / 1003,
  18456. bottom: 0.037
  18457. }
  18458. },
  18459. frontArmored: {
  18460. height: math.unit(19, "feet"),
  18461. weight: math.unit(900, "kg"),
  18462. name: "Front (Armored)",
  18463. image: {
  18464. source: "./media/characters/venio-darcony/front-armored.svg"
  18465. }
  18466. },
  18467. backArmored: {
  18468. height: math.unit(19, "feet"),
  18469. weight: math.unit(900, "kg"),
  18470. name: "Back (Armored)",
  18471. image: {
  18472. source: "./media/characters/venio-darcony/back-armored.svg"
  18473. }
  18474. },
  18475. sword: {
  18476. height: math.unit(10, "feet"),
  18477. weight: math.unit(50, "lb"),
  18478. name: "Sword",
  18479. image: {
  18480. source: "./media/characters/venio-darcony/sword.svg"
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Normal",
  18487. height: math.unit(10, "feet")
  18488. },
  18489. {
  18490. name: "Macro",
  18491. height: math.unit(130, "feet"),
  18492. default: true
  18493. },
  18494. {
  18495. name: "Macro+",
  18496. height: math.unit(240, "feet")
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18502. {
  18503. front: {
  18504. height: math.unit(6, "feet"),
  18505. weight: math.unit(150, "lb"),
  18506. name: "Front",
  18507. image: {
  18508. source: "./media/characters/veski/front.svg",
  18509. extra: 1299 / 1225,
  18510. bottom: 0.04
  18511. }
  18512. },
  18513. back: {
  18514. height: math.unit(6, "feet"),
  18515. weight: math.unit(150, "lb"),
  18516. name: "Back",
  18517. image: {
  18518. source: "./media/characters/veski/back.svg",
  18519. extra: 1299 / 1225,
  18520. bottom: 0.008
  18521. }
  18522. },
  18523. maw: {
  18524. height: math.unit(1.5 * 1.21, "feet"),
  18525. name: "Maw",
  18526. image: {
  18527. source: "./media/characters/veski/maw.svg"
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Macro",
  18534. height: math.unit(2, "km"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(5 + 7 / 12, "feet"),
  18544. name: "Front",
  18545. image: {
  18546. source: "./media/characters/isabelle/front.svg",
  18547. extra: 2130 / 1976,
  18548. bottom: 0.05
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Supermicro",
  18555. height: math.unit(10, "micrometers")
  18556. },
  18557. {
  18558. name: "Micro",
  18559. height: math.unit(1, "inch")
  18560. },
  18561. {
  18562. name: "Tiny",
  18563. height: math.unit(5, "inches")
  18564. },
  18565. {
  18566. name: "Standard",
  18567. height: math.unit(5 + 7 / 12, "inches")
  18568. },
  18569. {
  18570. name: "Macro",
  18571. height: math.unit(80, "meters"),
  18572. default: true
  18573. },
  18574. {
  18575. name: "Megamacro",
  18576. height: math.unit(250, "meters")
  18577. },
  18578. {
  18579. name: "Gigamacro",
  18580. height: math.unit(5, "km")
  18581. },
  18582. {
  18583. name: "Cosmic",
  18584. height: math.unit(2.5e6, "miles")
  18585. },
  18586. ]
  18587. ))
  18588. characterMakers.push(() => makeCharacter(
  18589. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18590. {
  18591. front: {
  18592. height: math.unit(6, "feet"),
  18593. weight: math.unit(150, "lb"),
  18594. name: "Front",
  18595. image: {
  18596. source: "./media/characters/hanzo/front.svg",
  18597. extra: 374 / 344,
  18598. bottom: 0.02
  18599. }
  18600. },
  18601. },
  18602. [
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(8, "feet"),
  18606. default: true
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18612. {
  18613. front: {
  18614. height: math.unit(7, "feet"),
  18615. weight: math.unit(130, "lb"),
  18616. name: "Front",
  18617. image: {
  18618. source: "./media/characters/anna/front.svg",
  18619. extra: 169 / 145,
  18620. bottom: 0.06
  18621. }
  18622. },
  18623. full: {
  18624. height: math.unit(4.96, "feet"),
  18625. weight: math.unit(220, "lb"),
  18626. name: "Full",
  18627. image: {
  18628. source: "./media/characters/anna/full.svg",
  18629. extra: 138 / 114,
  18630. bottom: 0.15
  18631. }
  18632. },
  18633. tongue: {
  18634. height: math.unit(2.53, "feet"),
  18635. name: "Tongue",
  18636. image: {
  18637. source: "./media/characters/anna/tongue.svg"
  18638. }
  18639. },
  18640. },
  18641. [
  18642. {
  18643. name: "Normal",
  18644. height: math.unit(7, "feet"),
  18645. default: true
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18651. {
  18652. front: {
  18653. height: math.unit(7 + 1/12, "feet"),
  18654. weight: math.unit(150, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/ian-corvid/front.svg",
  18658. extra: 621/591,
  18659. bottom: 14/635
  18660. }
  18661. },
  18662. back: {
  18663. height: math.unit(7 + 1/12, "feet"),
  18664. weight: math.unit(150, "lb"),
  18665. name: "Back",
  18666. image: {
  18667. source: "./media/characters/ian-corvid/back.svg",
  18668. extra: 621/600,
  18669. bottom: 10/631
  18670. }
  18671. },
  18672. stomping: {
  18673. height: math.unit(7 + 1/12, "feet"),
  18674. weight: math.unit(150, "lb"),
  18675. name: "Stomping",
  18676. image: {
  18677. source: "./media/characters/ian-corvid/stomping.svg",
  18678. extra: 309/291,
  18679. bottom: 7/316
  18680. }
  18681. },
  18682. tongue: {
  18683. height: math.unit(3.9, "feet"),
  18684. name: "Tongue",
  18685. image: {
  18686. source: "./media/characters/ian-corvid/tongue.svg"
  18687. }
  18688. },
  18689. beak: {
  18690. height: math.unit(0.9, "feet"),
  18691. name: "Beak",
  18692. image: {
  18693. source: "./media/characters/ian-corvid/beak.svg"
  18694. }
  18695. },
  18696. sitting: {
  18697. height: math.unit(7 / 1.8, "feet"),
  18698. weight: math.unit(150, "lb"),
  18699. name: "Sitting",
  18700. image: {
  18701. source: "./media/characters/ian-corvid/sitting.svg",
  18702. extra: 1400 / 1269,
  18703. bottom: 0.15
  18704. }
  18705. },
  18706. },
  18707. [
  18708. {
  18709. name: "Tiny Microw",
  18710. height: math.unit(1, "inch")
  18711. },
  18712. {
  18713. name: "Microw",
  18714. height: math.unit(6, "inches")
  18715. },
  18716. {
  18717. name: "Crow",
  18718. height: math.unit(7 + 1 / 12, "feet"),
  18719. default: true
  18720. },
  18721. {
  18722. name: "Macrow",
  18723. height: math.unit(176, "feet")
  18724. },
  18725. ]
  18726. ))
  18727. characterMakers.push(() => makeCharacter(
  18728. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18729. {
  18730. front: {
  18731. height: math.unit(5 + 7 / 12, "feet"),
  18732. weight: math.unit(147, "lb"),
  18733. name: "Front",
  18734. image: {
  18735. source: "./media/characters/natalie-kellon/front.svg",
  18736. extra: 1214 / 1141,
  18737. bottom: 0.02
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Micro",
  18744. height: math.unit(1 / 16, "inch")
  18745. },
  18746. {
  18747. name: "Tiny",
  18748. height: math.unit(4, "inches")
  18749. },
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(5 + 7 / 12, "feet"),
  18753. default: true
  18754. },
  18755. {
  18756. name: "Amazon",
  18757. height: math.unit(12, "feet")
  18758. },
  18759. {
  18760. name: "Giantess",
  18761. height: math.unit(160, "meters")
  18762. },
  18763. {
  18764. name: "Titaness",
  18765. height: math.unit(800, "meters")
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(6, "feet"),
  18774. weight: math.unit(150, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/alluria/front.svg",
  18778. extra: 806 / 738,
  18779. bottom: 0.01
  18780. }
  18781. },
  18782. side: {
  18783. height: math.unit(6, "feet"),
  18784. weight: math.unit(150, "lb"),
  18785. name: "Side",
  18786. image: {
  18787. source: "./media/characters/alluria/side.svg",
  18788. extra: 800 / 750,
  18789. }
  18790. },
  18791. back: {
  18792. height: math.unit(6, "feet"),
  18793. weight: math.unit(150, "lb"),
  18794. name: "Back",
  18795. image: {
  18796. source: "./media/characters/alluria/back.svg",
  18797. extra: 806 / 738,
  18798. }
  18799. },
  18800. frontMaid: {
  18801. height: math.unit(6, "feet"),
  18802. weight: math.unit(150, "lb"),
  18803. name: "Front (Maid)",
  18804. image: {
  18805. source: "./media/characters/alluria/front-maid.svg",
  18806. extra: 806 / 738,
  18807. bottom: 0.01
  18808. }
  18809. },
  18810. sideMaid: {
  18811. height: math.unit(6, "feet"),
  18812. weight: math.unit(150, "lb"),
  18813. name: "Side (Maid)",
  18814. image: {
  18815. source: "./media/characters/alluria/side-maid.svg",
  18816. extra: 800 / 750,
  18817. bottom: 0.005
  18818. }
  18819. },
  18820. backMaid: {
  18821. height: math.unit(6, "feet"),
  18822. weight: math.unit(150, "lb"),
  18823. name: "Back (Maid)",
  18824. image: {
  18825. source: "./media/characters/alluria/back-maid.svg",
  18826. extra: 806 / 738,
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Micro",
  18833. height: math.unit(6, "inches"),
  18834. default: true
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18840. {
  18841. front: {
  18842. height: math.unit(6, "feet"),
  18843. weight: math.unit(150, "lb"),
  18844. name: "Front",
  18845. image: {
  18846. source: "./media/characters/kyle/front.svg",
  18847. extra: 1069 / 962,
  18848. bottom: 77.228 / 1727.45
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(150, "feet"),
  18856. default: true
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18862. {
  18863. front: {
  18864. height: math.unit(6, "feet"),
  18865. weight: math.unit(300, "lb"),
  18866. name: "Front",
  18867. image: {
  18868. source: "./media/characters/duncan/front.svg",
  18869. extra: 1650 / 1482,
  18870. bottom: 0.05
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Macro",
  18877. height: math.unit(100, "feet"),
  18878. default: true
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18884. {
  18885. front: {
  18886. height: math.unit(5 + 4 / 12, "feet"),
  18887. weight: math.unit(220, "lb"),
  18888. name: "Front",
  18889. image: {
  18890. source: "./media/characters/memory/front.svg",
  18891. extra: 3641 / 3545,
  18892. bottom: 0.03
  18893. }
  18894. },
  18895. back: {
  18896. height: math.unit(5 + 4 / 12, "feet"),
  18897. weight: math.unit(220, "lb"),
  18898. name: "Back",
  18899. image: {
  18900. source: "./media/characters/memory/back.svg",
  18901. extra: 3641 / 3545,
  18902. bottom: 0.025
  18903. }
  18904. },
  18905. frontSkirt: {
  18906. height: math.unit(5 + 4 / 12, "feet"),
  18907. weight: math.unit(220, "lb"),
  18908. name: "Front (Skirt)",
  18909. image: {
  18910. source: "./media/characters/memory/front-skirt.svg",
  18911. extra: 3641 / 3545,
  18912. bottom: 0.03
  18913. }
  18914. },
  18915. frontDress: {
  18916. height: math.unit(5 + 4 / 12, "feet"),
  18917. weight: math.unit(220, "lb"),
  18918. name: "Front (Dress)",
  18919. image: {
  18920. source: "./media/characters/memory/front-dress.svg",
  18921. extra: 3641 / 3545,
  18922. bottom: 0.03
  18923. }
  18924. },
  18925. },
  18926. [
  18927. {
  18928. name: "Micro",
  18929. height: math.unit(6, "inches"),
  18930. default: true
  18931. },
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(5 + 4 / 12, "feet")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(4 + 11 / 12, "feet"),
  18943. weight: math.unit(100, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/luno/front.svg",
  18947. extra: 1535 / 1487,
  18948. bottom: 0.03
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Micro",
  18955. height: math.unit(3, "inches")
  18956. },
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(4 + 11 / 12, "feet"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Macro",
  18964. height: math.unit(300, "feet")
  18965. },
  18966. {
  18967. name: "Megamacro",
  18968. height: math.unit(700, "miles")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(6 + 2 / 12, "feet"),
  18977. weight: math.unit(170, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/jamesy/front.svg",
  18981. extra: 440 / 382,
  18982. bottom: 0.005
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Micro",
  18989. height: math.unit(3, "inches")
  18990. },
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(6 + 2 / 12, "feet"),
  18994. default: true
  18995. },
  18996. {
  18997. name: "Macro",
  18998. height: math.unit(300, "feet")
  18999. },
  19000. {
  19001. name: "Megamacro",
  19002. height: math.unit(700, "miles")
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(6, "feet"),
  19011. weight: math.unit(160, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/mark/front.svg",
  19015. extra: 3300 / 3100,
  19016. bottom: 136.42 / 3440.47
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Macro",
  19023. height: math.unit(120, "meters")
  19024. },
  19025. {
  19026. name: "Bigger Macro",
  19027. height: math.unit(350, "meters")
  19028. },
  19029. {
  19030. name: "Megamacro",
  19031. height: math.unit(8, "km"),
  19032. default: true
  19033. },
  19034. {
  19035. name: "Continental",
  19036. height: math.unit(4550, "km")
  19037. },
  19038. {
  19039. name: "Planetary",
  19040. height: math.unit(65000, "km")
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19046. {
  19047. front: {
  19048. height: math.unit(6, "feet"),
  19049. weight: math.unit(400, "lb"),
  19050. name: "Front",
  19051. image: {
  19052. source: "./media/characters/mac/front.svg",
  19053. extra: 1048 / 987.7,
  19054. bottom: 60 / 1107.6,
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Macro",
  19061. height: math.unit(500, "feet"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(5 + 2 / 12, "feet"),
  19071. weight: math.unit(190, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/bari/front.svg",
  19075. extra: 3156 / 2880,
  19076. bottom: 0.03
  19077. }
  19078. },
  19079. back: {
  19080. height: math.unit(5 + 2 / 12, "feet"),
  19081. weight: math.unit(190, "lb"),
  19082. name: "Back",
  19083. image: {
  19084. source: "./media/characters/bari/back.svg",
  19085. extra: 3260 / 2834,
  19086. bottom: 0.025
  19087. }
  19088. },
  19089. frontPlush: {
  19090. height: math.unit(5 + 2 / 12, "feet"),
  19091. weight: math.unit(190, "lb"),
  19092. name: "Front (Plush)",
  19093. image: {
  19094. source: "./media/characters/bari/front-plush.svg",
  19095. extra: 1112 / 1061,
  19096. bottom: 0.002
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Micro",
  19103. height: math.unit(3, "inches")
  19104. },
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(5 + 2 / 12, "feet"),
  19108. default: true
  19109. },
  19110. {
  19111. name: "Macro",
  19112. height: math.unit(20, "feet")
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(6 + 1 / 12, "feet"),
  19121. weight: math.unit(275, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/hunter-misha-raven/front.svg"
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Mortal",
  19131. height: math.unit(6 + 1 / 12, "feet")
  19132. },
  19133. {
  19134. name: "Divine",
  19135. height: math.unit(1.12134e34, "parsecs"),
  19136. default: true
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(6 + 3 / 12, "feet"),
  19145. weight: math.unit(220, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/max-calore/front.svg",
  19149. extra: 1700 / 1648,
  19150. bottom: 0.01
  19151. }
  19152. },
  19153. back: {
  19154. height: math.unit(6 + 3 / 12, "feet"),
  19155. weight: math.unit(220, "lb"),
  19156. name: "Back",
  19157. image: {
  19158. source: "./media/characters/max-calore/back.svg",
  19159. extra: 1700 / 1648,
  19160. bottom: 0.01
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(6 + 3 / 12, "feet"),
  19168. default: true
  19169. },
  19170. ]
  19171. ))
  19172. characterMakers.push(() => makeCharacter(
  19173. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19174. {
  19175. side: {
  19176. height: math.unit(2 + 8 / 12, "feet"),
  19177. weight: math.unit(99, "lb"),
  19178. name: "Side",
  19179. image: {
  19180. source: "./media/characters/aspen/side.svg",
  19181. extra: 152 / 138,
  19182. bottom: 0.032
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Normal",
  19189. height: math.unit(2 + 8 / 12, "feet"),
  19190. default: true
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19196. {
  19197. side: {
  19198. height: math.unit(3 + 2 / 12, "feet"),
  19199. weight: math.unit(224, "lb"),
  19200. name: "Side",
  19201. image: {
  19202. source: "./media/characters/sheila-feral-wolf/side.svg",
  19203. extra: 179 / 166,
  19204. bottom: 0.03
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(3 + 2 / 12, "feet"),
  19212. default: true
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19218. {
  19219. side: {
  19220. height: math.unit(1 + 9 / 12, "feet"),
  19221. weight: math.unit(38, "lb"),
  19222. name: "Side",
  19223. image: {
  19224. source: "./media/characters/michelle/side.svg",
  19225. extra: 147 / 136.7,
  19226. bottom: 0.03
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(1 + 9 / 12, "feet"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(1.54, "feet"),
  19243. weight: math.unit(50, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/nino/front.svg"
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(1.54, "feet"),
  19254. default: true
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(1.49, "feet"),
  19263. weight: math.unit(45, "lb"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/viola/front.svg"
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(1.49, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19280. {
  19281. front: {
  19282. height: math.unit(6 + 5 / 12, "feet"),
  19283. weight: math.unit(580, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/atlas/front.svg",
  19287. extra: 298.5 / 290,
  19288. bottom: 0.015
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(6 + 5 / 12, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19302. {
  19303. side: {
  19304. height: math.unit(15.6, "inches"),
  19305. weight: math.unit(10, "lb"),
  19306. name: "Side",
  19307. image: {
  19308. source: "./media/characters/davy/side.svg",
  19309. extra: 200 / 170,
  19310. bottom: 0.01
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(15.6, "inches"),
  19318. default: true
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19324. {
  19325. side: {
  19326. height: math.unit(4 + 8 / 12, "feet"),
  19327. weight: math.unit(166, "lb"),
  19328. name: "Side",
  19329. image: {
  19330. source: "./media/characters/fiona/side.svg",
  19331. extra: 232 / 220,
  19332. bottom: 0.03
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(4 + 8 / 12, "feet"),
  19340. default: true
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19346. {
  19347. front: {
  19348. height: math.unit(26, "inches"),
  19349. weight: math.unit(35, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/lyla/front.svg",
  19353. bottom: 0.1
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(3, "feet"),
  19361. default: true
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19367. {
  19368. side: {
  19369. height: math.unit(1.8, "feet"),
  19370. weight: math.unit(44, "lb"),
  19371. name: "Side",
  19372. image: {
  19373. source: "./media/characters/perseus/side.svg",
  19374. bottom: 0.21
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(1.8, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19388. {
  19389. side: {
  19390. height: math.unit(4 + 2 / 12, "feet"),
  19391. weight: math.unit(20, "lb"),
  19392. name: "Side",
  19393. image: {
  19394. source: "./media/characters/remus/side.svg"
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(4 + 2 / 12, "feet"),
  19402. default: true
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19408. {
  19409. front: {
  19410. height: math.unit(4 + 11 / 12, "feet"),
  19411. weight: math.unit(114, "lb"),
  19412. name: "Front",
  19413. image: {
  19414. source: "./media/characters/raf/front.svg",
  19415. extra: 1504/1339,
  19416. bottom: 26/1530
  19417. }
  19418. },
  19419. side: {
  19420. height: math.unit(4 + 11 / 12, "feet"),
  19421. weight: math.unit(114, "lb"),
  19422. name: "Side",
  19423. image: {
  19424. source: "./media/characters/raf/side.svg",
  19425. extra: 1466/1316,
  19426. bottom: 29/1495
  19427. }
  19428. },
  19429. paw: {
  19430. height: math.unit(1.45, "feet"),
  19431. name: "Paw",
  19432. image: {
  19433. source: "./media/characters/raf/paw.svg"
  19434. },
  19435. extraAttributes: {
  19436. "toeSize": {
  19437. name: "Toe Size",
  19438. power: 2,
  19439. type: "area",
  19440. base: math.unit(0.004, "m^2")
  19441. },
  19442. "padSize": {
  19443. name: "Pad Size",
  19444. power: 2,
  19445. type: "area",
  19446. base: math.unit(0.04, "m^2")
  19447. },
  19448. "footSize": {
  19449. name: "Foot Size",
  19450. power: 2,
  19451. type: "area",
  19452. base: math.unit(0.08, "m^2")
  19453. },
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Micro",
  19460. height: math.unit(2, "inches")
  19461. },
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(4 + 11 / 12, "feet"),
  19465. default: true
  19466. },
  19467. {
  19468. name: "Macro",
  19469. height: math.unit(70, "feet")
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19475. {
  19476. front: {
  19477. height: math.unit(1.5, "meters"),
  19478. weight: math.unit(68, "kg"),
  19479. name: "Front",
  19480. image: {
  19481. source: "./media/characters/liam-einarr/front.svg",
  19482. extra: 2822 / 2666
  19483. }
  19484. },
  19485. back: {
  19486. height: math.unit(1.5, "meters"),
  19487. weight: math.unit(68, "kg"),
  19488. name: "Back",
  19489. image: {
  19490. source: "./media/characters/liam-einarr/back.svg",
  19491. extra: 2822 / 2666,
  19492. bottom: 0.015
  19493. }
  19494. },
  19495. },
  19496. [
  19497. {
  19498. name: "Normal",
  19499. height: math.unit(1.5, "meters"),
  19500. default: true
  19501. },
  19502. {
  19503. name: "Macro",
  19504. height: math.unit(150, "meters")
  19505. },
  19506. {
  19507. name: "Megamacro",
  19508. height: math.unit(35, "km")
  19509. },
  19510. ]
  19511. ))
  19512. characterMakers.push(() => makeCharacter(
  19513. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19514. {
  19515. front: {
  19516. height: math.unit(6, "feet"),
  19517. weight: math.unit(75, "kg"),
  19518. name: "Front",
  19519. image: {
  19520. source: "./media/characters/linda/front.svg",
  19521. extra: 930 / 874,
  19522. bottom: 0.004
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Normal",
  19529. height: math.unit(6, "feet"),
  19530. default: true
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(6 + 8 / 12, "feet"),
  19539. weight: math.unit(220, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/caylex/front.svg",
  19543. extra: 821 / 772,
  19544. bottom: 0.07
  19545. }
  19546. },
  19547. back: {
  19548. height: math.unit(6 + 8 / 12, "feet"),
  19549. weight: math.unit(220, "lb"),
  19550. name: "Back",
  19551. image: {
  19552. source: "./media/characters/caylex/back.svg",
  19553. extra: 821 / 772,
  19554. bottom: 0.022
  19555. }
  19556. },
  19557. hand: {
  19558. height: math.unit(1.25, "feet"),
  19559. name: "Hand",
  19560. image: {
  19561. source: "./media/characters/caylex/hand.svg"
  19562. }
  19563. },
  19564. foot: {
  19565. height: math.unit(1.6, "feet"),
  19566. name: "Foot",
  19567. image: {
  19568. source: "./media/characters/caylex/foot.svg"
  19569. }
  19570. },
  19571. armored: {
  19572. height: math.unit(6 + 8 / 12, "feet"),
  19573. weight: math.unit(250, "lb"),
  19574. name: "Armored",
  19575. image: {
  19576. source: "./media/characters/caylex/armored.svg",
  19577. extra: 1420 / 1310,
  19578. bottom: 0.045
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(6 + 8 / 12, "feet"),
  19586. default: true
  19587. },
  19588. {
  19589. name: "Normal+",
  19590. height: math.unit(12, "feet")
  19591. },
  19592. ]
  19593. ))
  19594. characterMakers.push(() => makeCharacter(
  19595. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19596. {
  19597. front: {
  19598. height: math.unit(7 + 6 / 12, "feet"),
  19599. weight: math.unit(288, "lb"),
  19600. name: "Front",
  19601. image: {
  19602. source: "./media/characters/alana/front.svg",
  19603. extra: 679 / 653,
  19604. bottom: 22.5 / 701
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Normal",
  19611. height: math.unit(7 + 6 / 12, "feet")
  19612. },
  19613. {
  19614. name: "Large",
  19615. height: math.unit(50, "feet")
  19616. },
  19617. {
  19618. name: "Macro",
  19619. height: math.unit(100, "feet"),
  19620. default: true
  19621. },
  19622. {
  19623. name: "Macro+",
  19624. height: math.unit(200, "feet")
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(6 + 1 / 12, "feet"),
  19633. weight: math.unit(210, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/hasani/front.svg",
  19637. extra: 244 / 232,
  19638. bottom: 0.01
  19639. }
  19640. },
  19641. back: {
  19642. height: math.unit(6 + 1 / 12, "feet"),
  19643. weight: math.unit(210, "lb"),
  19644. name: "Back",
  19645. image: {
  19646. source: "./media/characters/hasani/back.svg",
  19647. extra: 244 / 232,
  19648. bottom: 0.01
  19649. }
  19650. },
  19651. },
  19652. [
  19653. {
  19654. name: "Normal",
  19655. height: math.unit(6 + 1 / 12, "feet")
  19656. },
  19657. {
  19658. name: "Macro",
  19659. height: math.unit(175, "feet"),
  19660. default: true
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19666. {
  19667. front: {
  19668. height: math.unit(1.82, "meters"),
  19669. weight: math.unit(140, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/nita/front.svg",
  19673. extra: 2473 / 2363,
  19674. bottom: 0.01
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Normal",
  19681. height: math.unit(1.82, "m")
  19682. },
  19683. {
  19684. name: "Macro",
  19685. height: math.unit(300, "m")
  19686. },
  19687. {
  19688. name: "Mistake Canon",
  19689. height: math.unit(0.5, "miles"),
  19690. default: true
  19691. },
  19692. {
  19693. name: "Big Mistake",
  19694. height: math.unit(13, "miles")
  19695. },
  19696. {
  19697. name: "Playing God",
  19698. height: math.unit(2450, "miles")
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(4, "feet"),
  19707. weight: math.unit(120, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/shiriko/front.svg",
  19711. extra: 970/934,
  19712. bottom: 5/975
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(4, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(6, "feet"),
  19729. name: "front",
  19730. image: {
  19731. source: "./media/characters/deja/front.svg",
  19732. extra: 926 / 840,
  19733. bottom: 0.07
  19734. }
  19735. },
  19736. },
  19737. [
  19738. {
  19739. name: "Planck Length",
  19740. height: math.unit(1.6e-35, "meters")
  19741. },
  19742. {
  19743. name: "Normal",
  19744. height: math.unit(30.48, "meters"),
  19745. default: true
  19746. },
  19747. {
  19748. name: "Universal",
  19749. height: math.unit(8.8e26, "meters")
  19750. },
  19751. ]
  19752. ))
  19753. characterMakers.push(() => makeCharacter(
  19754. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19755. {
  19756. side: {
  19757. height: math.unit(8, "feet"),
  19758. weight: math.unit(6300, "lb"),
  19759. name: "Side",
  19760. image: {
  19761. source: "./media/characters/anima/side.svg",
  19762. bottom: 0.035
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Normal",
  19769. height: math.unit(8, "feet"),
  19770. default: true
  19771. },
  19772. ]
  19773. ))
  19774. characterMakers.push(() => makeCharacter(
  19775. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19776. {
  19777. front: {
  19778. height: math.unit(8, "feet"),
  19779. weight: math.unit(350, "lb"),
  19780. name: "Front",
  19781. image: {
  19782. source: "./media/characters/bianca/front.svg",
  19783. extra: 234 / 225,
  19784. bottom: 0.03
  19785. }
  19786. },
  19787. },
  19788. [
  19789. {
  19790. name: "Normal",
  19791. height: math.unit(8, "feet"),
  19792. default: true
  19793. },
  19794. ]
  19795. ))
  19796. characterMakers.push(() => makeCharacter(
  19797. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19798. {
  19799. front: {
  19800. height: math.unit(11 + 5/12, "feet"),
  19801. weight: math.unit(1200, "lb"),
  19802. name: "Front",
  19803. image: {
  19804. source: "./media/characters/adinia/front.svg",
  19805. extra: 1767/1641,
  19806. bottom: 44/1811
  19807. },
  19808. extraAttributes: {
  19809. "energyIntake": {
  19810. name: "Energy Intake",
  19811. power: 3,
  19812. type: "energy",
  19813. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19814. },
  19815. }
  19816. },
  19817. back: {
  19818. height: math.unit(11 + 5/12, "feet"),
  19819. weight: math.unit(1200, "lb"),
  19820. name: "Back",
  19821. image: {
  19822. source: "./media/characters/adinia/back.svg",
  19823. extra: 1834/1684,
  19824. bottom: 14/1848
  19825. },
  19826. extraAttributes: {
  19827. "energyIntake": {
  19828. name: "Energy Intake",
  19829. power: 3,
  19830. type: "energy",
  19831. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19832. },
  19833. }
  19834. },
  19835. maw: {
  19836. height: math.unit(3.79, "feet"),
  19837. name: "Maw",
  19838. image: {
  19839. source: "./media/characters/adinia/maw.svg"
  19840. }
  19841. },
  19842. rump: {
  19843. height: math.unit(4.6, "feet"),
  19844. name: "Rump",
  19845. image: {
  19846. source: "./media/characters/adinia/rump.svg"
  19847. }
  19848. },
  19849. },
  19850. [
  19851. {
  19852. name: "Normal",
  19853. height: math.unit(11 + 5 / 12, "feet"),
  19854. default: true
  19855. },
  19856. ]
  19857. ))
  19858. characterMakers.push(() => makeCharacter(
  19859. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19860. {
  19861. front: {
  19862. height: math.unit(3, "meters"),
  19863. weight: math.unit(200, "kg"),
  19864. name: "Front",
  19865. image: {
  19866. source: "./media/characters/lykasa/front.svg",
  19867. extra: 1076 / 976,
  19868. bottom: 0.06
  19869. }
  19870. },
  19871. },
  19872. [
  19873. {
  19874. name: "Normal",
  19875. height: math.unit(3, "meters")
  19876. },
  19877. {
  19878. name: "Kaiju",
  19879. height: math.unit(120, "meters"),
  19880. default: true
  19881. },
  19882. {
  19883. name: "Mega Kaiju",
  19884. height: math.unit(240, "km")
  19885. },
  19886. {
  19887. name: "Giga Kaiju",
  19888. height: math.unit(400, "megameters")
  19889. },
  19890. {
  19891. name: "Tera Kaiju",
  19892. height: math.unit(800, "gigameters")
  19893. },
  19894. {
  19895. name: "Kaiju Dragon Goddess",
  19896. height: math.unit(26, "zettaparsecs")
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19902. {
  19903. side: {
  19904. height: math.unit(283 / 124 * 6, "feet"),
  19905. weight: math.unit(35000, "lb"),
  19906. name: "Side",
  19907. image: {
  19908. source: "./media/characters/malfaren/side.svg",
  19909. extra: 1310/529,
  19910. bottom: 24/1334
  19911. }
  19912. },
  19913. front: {
  19914. height: math.unit(22.36, "feet"),
  19915. weight: math.unit(35000, "lb"),
  19916. name: "Front",
  19917. image: {
  19918. source: "./media/characters/malfaren/front.svg",
  19919. extra: 1237/1115,
  19920. bottom: 32/1269
  19921. }
  19922. },
  19923. maw: {
  19924. height: math.unit(6.9, "feet"),
  19925. name: "Maw",
  19926. image: {
  19927. source: "./media/characters/malfaren/maw.svg"
  19928. }
  19929. },
  19930. dick: {
  19931. height: math.unit(6.19, "feet"),
  19932. name: "Dick",
  19933. image: {
  19934. source: "./media/characters/malfaren/dick.svg"
  19935. }
  19936. },
  19937. eye: {
  19938. height: math.unit(0.69, "feet"),
  19939. name: "Eye",
  19940. image: {
  19941. source: "./media/characters/malfaren/eye.svg"
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Big",
  19948. height: math.unit(283 / 162 * 6, "feet"),
  19949. },
  19950. {
  19951. name: "Bigger",
  19952. height: math.unit(283 / 124 * 6, "feet")
  19953. },
  19954. {
  19955. name: "Massive",
  19956. height: math.unit(283 / 92 * 6, "feet"),
  19957. default: true
  19958. },
  19959. {
  19960. name: "👀💦",
  19961. height: math.unit(283 / 73 * 6, "feet"),
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(1.7, "m"),
  19970. weight: math.unit(70, "kg"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/kernel/front.svg",
  19974. extra: 1960/1821,
  19975. bottom: 17/1977
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Nano",
  19982. height: math.unit(17, "micrometers")
  19983. },
  19984. {
  19985. name: "Micro",
  19986. height: math.unit(1.7, "mm")
  19987. },
  19988. {
  19989. name: "Small",
  19990. height: math.unit(1.7, "cm")
  19991. },
  19992. {
  19993. name: "Normal",
  19994. height: math.unit(1.7, "m"),
  19995. default: true
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(1.75, "meters"),
  20004. weight: math.unit(65, "kg"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/jayne-folest/front.svg",
  20008. extra: 2115 / 2007,
  20009. bottom: 0.02
  20010. }
  20011. },
  20012. back: {
  20013. height: math.unit(1.75, "meters"),
  20014. weight: math.unit(65, "kg"),
  20015. name: "Back",
  20016. image: {
  20017. source: "./media/characters/jayne-folest/back.svg",
  20018. extra: 2115 / 2007,
  20019. bottom: 0.005
  20020. }
  20021. },
  20022. frontClothed: {
  20023. height: math.unit(1.75, "meters"),
  20024. weight: math.unit(65, "kg"),
  20025. name: "Front (Clothed)",
  20026. image: {
  20027. source: "./media/characters/jayne-folest/front-clothed.svg",
  20028. extra: 2115 / 2007,
  20029. bottom: 0.035
  20030. }
  20031. },
  20032. hand: {
  20033. height: math.unit(1 / 1.260, "feet"),
  20034. name: "Hand",
  20035. image: {
  20036. source: "./media/characters/jayne-folest/hand.svg"
  20037. }
  20038. },
  20039. foot: {
  20040. height: math.unit(1 / 0.918, "feet"),
  20041. name: "Foot",
  20042. image: {
  20043. source: "./media/characters/jayne-folest/foot.svg"
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Micro",
  20050. height: math.unit(4, "cm")
  20051. },
  20052. {
  20053. name: "Normal",
  20054. height: math.unit(1.75, "meters")
  20055. },
  20056. {
  20057. name: "Macro",
  20058. height: math.unit(47.5, "meters"),
  20059. default: true
  20060. },
  20061. ]
  20062. ))
  20063. characterMakers.push(() => makeCharacter(
  20064. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20065. {
  20066. front: {
  20067. height: math.unit(180, "cm"),
  20068. weight: math.unit(70, "kg"),
  20069. name: "Front",
  20070. image: {
  20071. source: "./media/characters/algier/front.svg",
  20072. extra: 596 / 572,
  20073. bottom: 0.04
  20074. }
  20075. },
  20076. back: {
  20077. height: math.unit(180, "cm"),
  20078. weight: math.unit(70, "kg"),
  20079. name: "Back",
  20080. image: {
  20081. source: "./media/characters/algier/back.svg",
  20082. extra: 596 / 572,
  20083. bottom: 0.025
  20084. }
  20085. },
  20086. frontdressed: {
  20087. height: math.unit(180, "cm"),
  20088. weight: math.unit(150, "kg"),
  20089. name: "Front-dressed",
  20090. image: {
  20091. source: "./media/characters/algier/front-dressed.svg",
  20092. extra: 596 / 572,
  20093. bottom: 0.038
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Micro",
  20100. height: math.unit(5, "cm")
  20101. },
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(180, "cm"),
  20105. default: true
  20106. },
  20107. {
  20108. name: "Macro",
  20109. height: math.unit(64, "m")
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20115. {
  20116. upright: {
  20117. height: math.unit(7, "feet"),
  20118. weight: math.unit(300, "lb"),
  20119. name: "Upright",
  20120. image: {
  20121. source: "./media/characters/pretzel/upright.svg",
  20122. extra: 534 / 522,
  20123. bottom: 0.065
  20124. }
  20125. },
  20126. sprawling: {
  20127. height: math.unit(3.75, "feet"),
  20128. weight: math.unit(300, "lb"),
  20129. name: "Sprawling",
  20130. image: {
  20131. source: "./media/characters/pretzel/sprawling.svg",
  20132. extra: 314 / 281,
  20133. bottom: 0.1
  20134. }
  20135. },
  20136. tongue: {
  20137. height: math.unit(2, "feet"),
  20138. name: "Tongue",
  20139. image: {
  20140. source: "./media/characters/pretzel/tongue.svg"
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(7, "feet"),
  20148. default: true
  20149. },
  20150. {
  20151. name: "Oversized",
  20152. height: math.unit(15, "feet")
  20153. },
  20154. {
  20155. name: "Huge",
  20156. height: math.unit(30, "feet")
  20157. },
  20158. {
  20159. name: "Macro",
  20160. height: math.unit(250, "feet")
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20166. {
  20167. sideFront: {
  20168. height: math.unit(5 + 2 / 12, "feet"),
  20169. weight: math.unit(120, "lb"),
  20170. name: "Front Side",
  20171. image: {
  20172. source: "./media/characters/roxi/side-front.svg",
  20173. extra: 2924 / 2717,
  20174. bottom: 0.08
  20175. }
  20176. },
  20177. sideBack: {
  20178. height: math.unit(5 + 2 / 12, "feet"),
  20179. weight: math.unit(120, "lb"),
  20180. name: "Back Side",
  20181. image: {
  20182. source: "./media/characters/roxi/side-back.svg",
  20183. extra: 2904 / 2693,
  20184. bottom: 0.06
  20185. }
  20186. },
  20187. front: {
  20188. height: math.unit(5 + 2 / 12, "feet"),
  20189. weight: math.unit(120, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/roxi/front.svg",
  20193. extra: 2028 / 1907,
  20194. bottom: 0.01
  20195. }
  20196. },
  20197. frontAlt: {
  20198. height: math.unit(5 + 2 / 12, "feet"),
  20199. weight: math.unit(120, "lb"),
  20200. name: "Front (Alt)",
  20201. image: {
  20202. source: "./media/characters/roxi/front-alt.svg",
  20203. extra: 1828 / 1798,
  20204. bottom: 0.01
  20205. }
  20206. },
  20207. sitting: {
  20208. height: math.unit(2.8, "feet"),
  20209. weight: math.unit(120, "lb"),
  20210. name: "Sitting",
  20211. image: {
  20212. source: "./media/characters/roxi/sitting.svg",
  20213. extra: 2660 / 2462,
  20214. bottom: 0.1
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Normal",
  20221. height: math.unit(5 + 2 / 12, "feet"),
  20222. default: true
  20223. },
  20224. ]
  20225. ))
  20226. characterMakers.push(() => makeCharacter(
  20227. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20228. {
  20229. side: {
  20230. height: math.unit(55, "feet"),
  20231. weight: math.unit(153, "tons"),
  20232. name: "Side",
  20233. image: {
  20234. source: "./media/characters/shadow/side.svg",
  20235. extra: 701 / 628,
  20236. bottom: 0.02
  20237. }
  20238. },
  20239. flying: {
  20240. height: math.unit(145, "feet"),
  20241. weight: math.unit(153, "tons"),
  20242. name: "Flying",
  20243. image: {
  20244. source: "./media/characters/shadow/flying.svg"
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(55, "feet"),
  20252. default: true
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(6, "feet"),
  20261. weight: math.unit(200, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/marcie/front.svg",
  20265. extra: 960 / 876,
  20266. bottom: 58 / 1017.87
  20267. }
  20268. },
  20269. },
  20270. [
  20271. {
  20272. name: "Macro",
  20273. height: math.unit(1, "mile"),
  20274. default: true
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(7, "feet"),
  20283. weight: math.unit(200, "lb"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/kachina/front.svg",
  20287. extra: 3206/2764,
  20288. bottom: 140/3346
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(7, "feet"),
  20296. default: true
  20297. },
  20298. ]
  20299. ))
  20300. characterMakers.push(() => makeCharacter(
  20301. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20302. {
  20303. looking: {
  20304. height: math.unit(2, "meters"),
  20305. weight: math.unit(300, "kg"),
  20306. name: "Looking",
  20307. image: {
  20308. source: "./media/characters/kash/looking.svg",
  20309. extra: 474 / 344,
  20310. bottom: 0.03
  20311. }
  20312. },
  20313. side: {
  20314. height: math.unit(2, "meters"),
  20315. weight: math.unit(300, "kg"),
  20316. name: "Side",
  20317. image: {
  20318. source: "./media/characters/kash/side.svg",
  20319. extra: 302 / 251,
  20320. bottom: 0.03
  20321. }
  20322. },
  20323. front: {
  20324. height: math.unit(2, "meters"),
  20325. weight: math.unit(300, "kg"),
  20326. name: "Front",
  20327. image: {
  20328. source: "./media/characters/kash/front.svg",
  20329. extra: 495 / 360,
  20330. bottom: 0.015
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(2, "meters"),
  20338. default: true
  20339. },
  20340. {
  20341. name: "Big",
  20342. height: math.unit(3, "meters")
  20343. },
  20344. {
  20345. name: "Large",
  20346. height: math.unit(5, "meters")
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20352. {
  20353. feeding: {
  20354. height: math.unit(6.7, "feet"),
  20355. weight: math.unit(350, "lb"),
  20356. name: "Feeding",
  20357. image: {
  20358. source: "./media/characters/lalim/feeding.svg",
  20359. }
  20360. },
  20361. },
  20362. [
  20363. {
  20364. name: "Normal",
  20365. height: math.unit(6.7, "feet"),
  20366. default: true
  20367. },
  20368. ]
  20369. ))
  20370. characterMakers.push(() => makeCharacter(
  20371. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20372. {
  20373. front: {
  20374. height: math.unit(9.5, "feet"),
  20375. weight: math.unit(600, "lb"),
  20376. name: "Front",
  20377. image: {
  20378. source: "./media/characters/de'vout/front.svg",
  20379. extra: 1443 / 1328,
  20380. bottom: 0.025
  20381. }
  20382. },
  20383. back: {
  20384. height: math.unit(9.5, "feet"),
  20385. weight: math.unit(600, "lb"),
  20386. name: "Back",
  20387. image: {
  20388. source: "./media/characters/de'vout/back.svg",
  20389. extra: 1443 / 1328
  20390. }
  20391. },
  20392. frontDressed: {
  20393. height: math.unit(9.5, "feet"),
  20394. weight: math.unit(600, "lb"),
  20395. name: "Front (Dressed",
  20396. image: {
  20397. source: "./media/characters/de'vout/front-dressed.svg",
  20398. extra: 1443 / 1328,
  20399. bottom: 0.025
  20400. }
  20401. },
  20402. backDressed: {
  20403. height: math.unit(9.5, "feet"),
  20404. weight: math.unit(600, "lb"),
  20405. name: "Back (Dressed",
  20406. image: {
  20407. source: "./media/characters/de'vout/back-dressed.svg",
  20408. extra: 1443 / 1328
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Normal",
  20415. height: math.unit(9.5, "feet"),
  20416. default: true
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20422. {
  20423. front: {
  20424. height: math.unit(8, "feet"),
  20425. weight: math.unit(225, "lb"),
  20426. name: "Front",
  20427. image: {
  20428. source: "./media/characters/talana/front.svg",
  20429. extra: 1410 / 1300,
  20430. bottom: 0.015
  20431. }
  20432. },
  20433. frontDressed: {
  20434. height: math.unit(8, "feet"),
  20435. weight: math.unit(225, "lb"),
  20436. name: "Front (Dressed",
  20437. image: {
  20438. source: "./media/characters/talana/front-dressed.svg",
  20439. extra: 1410 / 1300,
  20440. bottom: 0.015
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(8, "feet"),
  20448. default: true
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20454. {
  20455. side: {
  20456. height: math.unit(7.2, "feet"),
  20457. weight: math.unit(150, "lb"),
  20458. name: "Side",
  20459. image: {
  20460. source: "./media/characters/xeauvok/side.svg",
  20461. extra: 1975 / 1523,
  20462. bottom: 0.07
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(7.2, "feet"),
  20470. default: true
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20476. {
  20477. side: {
  20478. height: math.unit(4, "meters"),
  20479. weight: math.unit(2200, "kg"),
  20480. name: "Side",
  20481. image: {
  20482. source: "./media/characters/zara/side.svg",
  20483. extra: 765/744,
  20484. bottom: 156/921
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Normal",
  20491. height: math.unit(4, "meters"),
  20492. default: true
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20498. {
  20499. side: {
  20500. height: math.unit(6, "feet"),
  20501. weight: math.unit(150, "lb"),
  20502. name: "Side",
  20503. image: {
  20504. source: "./media/characters/richard-dragon/side.svg",
  20505. extra: 845 / 340,
  20506. bottom: 0.017
  20507. }
  20508. },
  20509. maw: {
  20510. height: math.unit(2.97, "feet"),
  20511. name: "Maw",
  20512. image: {
  20513. source: "./media/characters/richard-dragon/maw.svg"
  20514. }
  20515. },
  20516. },
  20517. [
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20522. {
  20523. front: {
  20524. height: math.unit(4, "feet"),
  20525. weight: math.unit(100, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/richard-smeargle/front.svg",
  20529. extra: 2952 / 2820,
  20530. bottom: 0.028
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Normal",
  20537. height: math.unit(4, "feet"),
  20538. default: true
  20539. },
  20540. {
  20541. name: "Dynamax",
  20542. height: math.unit(20, "meters")
  20543. },
  20544. ]
  20545. ))
  20546. characterMakers.push(() => makeCharacter(
  20547. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20548. {
  20549. front: {
  20550. height: math.unit(6, "feet"),
  20551. weight: math.unit(110, "lb"),
  20552. name: "Front",
  20553. image: {
  20554. source: "./media/characters/klay/front.svg",
  20555. extra: 962 / 883,
  20556. bottom: 0.04
  20557. }
  20558. },
  20559. back: {
  20560. height: math.unit(6, "feet"),
  20561. weight: math.unit(110, "lb"),
  20562. name: "Back",
  20563. image: {
  20564. source: "./media/characters/klay/back.svg",
  20565. extra: 962 / 883
  20566. }
  20567. },
  20568. beans: {
  20569. height: math.unit(1.15, "feet"),
  20570. name: "Beans",
  20571. image: {
  20572. source: "./media/characters/klay/beans.svg"
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Micro",
  20579. height: math.unit(6, "inches")
  20580. },
  20581. {
  20582. name: "Mini",
  20583. height: math.unit(3, "feet")
  20584. },
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(6, "feet"),
  20588. default: true
  20589. },
  20590. {
  20591. name: "Big",
  20592. height: math.unit(25, "feet")
  20593. },
  20594. {
  20595. name: "Macro",
  20596. height: math.unit(100, "feet")
  20597. },
  20598. {
  20599. name: "Megamacro",
  20600. height: math.unit(400, "feet")
  20601. },
  20602. ]
  20603. ))
  20604. characterMakers.push(() => makeCharacter(
  20605. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20606. {
  20607. front: {
  20608. height: math.unit(6, "feet"),
  20609. weight: math.unit(160, "lb"),
  20610. name: "Front",
  20611. image: {
  20612. source: "./media/characters/marcus/front.svg",
  20613. extra: 734 / 676,
  20614. bottom: 0.03
  20615. }
  20616. },
  20617. },
  20618. [
  20619. {
  20620. name: "Little",
  20621. height: math.unit(6, "feet")
  20622. },
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(110, "feet"),
  20626. default: true
  20627. },
  20628. {
  20629. name: "Macro",
  20630. height: math.unit(250, "feet")
  20631. },
  20632. {
  20633. name: "Megamacro",
  20634. height: math.unit(1000, "feet")
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20640. {
  20641. front: {
  20642. height: math.unit(7, "feet"),
  20643. weight: math.unit(275, "lb"),
  20644. name: "Front",
  20645. image: {
  20646. source: "./media/characters/claude-delroute/front.svg",
  20647. extra: 902/827,
  20648. bottom: 26/928
  20649. }
  20650. },
  20651. side: {
  20652. height: math.unit(7, "feet"),
  20653. weight: math.unit(275, "lb"),
  20654. name: "Side",
  20655. image: {
  20656. source: "./media/characters/claude-delroute/side.svg",
  20657. extra: 908/853,
  20658. bottom: 16/924
  20659. }
  20660. },
  20661. back: {
  20662. height: math.unit(7, "feet"),
  20663. weight: math.unit(275, "lb"),
  20664. name: "Back",
  20665. image: {
  20666. source: "./media/characters/claude-delroute/back.svg",
  20667. extra: 911/829,
  20668. bottom: 18/929
  20669. }
  20670. },
  20671. maw: {
  20672. height: math.unit(0.6407, "meters"),
  20673. name: "Maw",
  20674. image: {
  20675. source: "./media/characters/claude-delroute/maw.svg"
  20676. }
  20677. },
  20678. },
  20679. [
  20680. {
  20681. name: "Normal",
  20682. height: math.unit(7, "feet"),
  20683. default: true
  20684. },
  20685. {
  20686. name: "Lorge",
  20687. height: math.unit(20, "feet")
  20688. },
  20689. ]
  20690. ))
  20691. characterMakers.push(() => makeCharacter(
  20692. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20693. {
  20694. front: {
  20695. height: math.unit(8 + 4 / 12, "feet"),
  20696. weight: math.unit(600, "lb"),
  20697. name: "Front",
  20698. image: {
  20699. source: "./media/characters/dragonien/front.svg",
  20700. extra: 100 / 94,
  20701. bottom: 3.3 / 103.3445
  20702. }
  20703. },
  20704. back: {
  20705. height: math.unit(8 + 4 / 12, "feet"),
  20706. weight: math.unit(600, "lb"),
  20707. name: "Back",
  20708. image: {
  20709. source: "./media/characters/dragonien/back.svg",
  20710. extra: 776 / 746,
  20711. bottom: 6.4 / 782.0616
  20712. }
  20713. },
  20714. foot: {
  20715. height: math.unit(1.54, "feet"),
  20716. name: "Foot",
  20717. image: {
  20718. source: "./media/characters/dragonien/foot.svg",
  20719. }
  20720. },
  20721. },
  20722. [
  20723. {
  20724. name: "Normal",
  20725. height: math.unit(8 + 4 / 12, "feet"),
  20726. default: true
  20727. },
  20728. {
  20729. name: "Macro",
  20730. height: math.unit(200, "feet")
  20731. },
  20732. {
  20733. name: "Megamacro",
  20734. height: math.unit(1, "mile")
  20735. },
  20736. {
  20737. name: "Gigamacro",
  20738. height: math.unit(1000, "miles")
  20739. },
  20740. ]
  20741. ))
  20742. characterMakers.push(() => makeCharacter(
  20743. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20744. {
  20745. front: {
  20746. height: math.unit(5 + 2 / 12, "feet"),
  20747. weight: math.unit(110, "lb"),
  20748. name: "Front",
  20749. image: {
  20750. source: "./media/characters/desta/front.svg",
  20751. extra: 767 / 726,
  20752. bottom: 11.7 / 779
  20753. }
  20754. },
  20755. back: {
  20756. height: math.unit(5 + 2 / 12, "feet"),
  20757. weight: math.unit(110, "lb"),
  20758. name: "Back",
  20759. image: {
  20760. source: "./media/characters/desta/back.svg",
  20761. extra: 777 / 728,
  20762. bottom: 6 / 784
  20763. }
  20764. },
  20765. frontAlt: {
  20766. height: math.unit(5 + 2 / 12, "feet"),
  20767. weight: math.unit(110, "lb"),
  20768. name: "Front",
  20769. image: {
  20770. source: "./media/characters/desta/front-alt.svg",
  20771. extra: 1482 / 1417
  20772. }
  20773. },
  20774. side: {
  20775. height: math.unit(5 + 2 / 12, "feet"),
  20776. weight: math.unit(110, "lb"),
  20777. name: "Side",
  20778. image: {
  20779. source: "./media/characters/desta/side.svg",
  20780. extra: 2579 / 2491,
  20781. bottom: 0.053
  20782. }
  20783. },
  20784. },
  20785. [
  20786. {
  20787. name: "Micro",
  20788. height: math.unit(6, "inches")
  20789. },
  20790. {
  20791. name: "Normal",
  20792. height: math.unit(5 + 2 / 12, "feet"),
  20793. default: true
  20794. },
  20795. {
  20796. name: "Macro",
  20797. height: math.unit(62, "feet")
  20798. },
  20799. {
  20800. name: "Megamacro",
  20801. height: math.unit(1800, "feet")
  20802. },
  20803. ]
  20804. ))
  20805. characterMakers.push(() => makeCharacter(
  20806. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20807. {
  20808. front: {
  20809. height: math.unit(10, "feet"),
  20810. weight: math.unit(700, "lb"),
  20811. name: "Front",
  20812. image: {
  20813. source: "./media/characters/storm-alystar/front.svg",
  20814. extra: 2112 / 1898,
  20815. bottom: 0.034
  20816. }
  20817. },
  20818. },
  20819. [
  20820. {
  20821. name: "Micro",
  20822. height: math.unit(3.5, "inches")
  20823. },
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(10, "feet"),
  20827. default: true
  20828. },
  20829. {
  20830. name: "Macro",
  20831. height: math.unit(400, "feet")
  20832. },
  20833. {
  20834. name: "Deific",
  20835. height: math.unit(60, "miles")
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20841. {
  20842. front: {
  20843. height: math.unit(2.35, "meters"),
  20844. weight: math.unit(119, "kg"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/ilia/front.svg",
  20848. extra: 1285 / 1255,
  20849. bottom: 0.06
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(2.35, "meters")
  20857. },
  20858. {
  20859. name: "Macro",
  20860. height: math.unit(140, "meters"),
  20861. default: true
  20862. },
  20863. {
  20864. name: "Megamacro",
  20865. height: math.unit(100, "miles")
  20866. },
  20867. ]
  20868. ))
  20869. characterMakers.push(() => makeCharacter(
  20870. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20871. {
  20872. front: {
  20873. height: math.unit(6 + 5 / 12, "feet"),
  20874. weight: math.unit(190, "lb"),
  20875. name: "Front",
  20876. image: {
  20877. source: "./media/characters/kingdead/front.svg",
  20878. extra: 1228 / 1177
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Micro",
  20885. height: math.unit(7, "inches")
  20886. },
  20887. {
  20888. name: "Normal",
  20889. height: math.unit(6 + 5 / 12, "feet")
  20890. },
  20891. {
  20892. name: "Macro",
  20893. height: math.unit(150, "feet"),
  20894. default: true
  20895. },
  20896. {
  20897. name: "Megamacro",
  20898. height: math.unit(200, "miles")
  20899. },
  20900. ]
  20901. ))
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20904. {
  20905. front: {
  20906. height: math.unit(8, "feet"),
  20907. weight: math.unit(600, "lb"),
  20908. name: "Front",
  20909. image: {
  20910. source: "./media/characters/kyrehx/front.svg",
  20911. extra: 1195 / 1095,
  20912. bottom: 0.034
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Micro",
  20919. height: math.unit(2, "inches")
  20920. },
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(8, "feet"),
  20924. default: true
  20925. },
  20926. {
  20927. name: "Macro",
  20928. height: math.unit(255, "feet")
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20934. {
  20935. front: {
  20936. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20937. weight: math.unit(184, "lb"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/xang/front.svg",
  20941. extra: 845 / 755
  20942. }
  20943. },
  20944. },
  20945. [
  20946. {
  20947. name: "Normal",
  20948. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20949. default: true
  20950. },
  20951. {
  20952. name: "Macro",
  20953. height: math.unit(0.935 * 146, "feet")
  20954. },
  20955. {
  20956. name: "Megamacro",
  20957. height: math.unit(0.935 * 3, "miles")
  20958. },
  20959. ]
  20960. ))
  20961. characterMakers.push(() => makeCharacter(
  20962. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20963. {
  20964. frontDressed: {
  20965. height: math.unit(5 + 7 / 12, "feet"),
  20966. weight: math.unit(140, "lb"),
  20967. name: "Front (Dressed)",
  20968. image: {
  20969. source: "./media/characters/doc-weardno/front-dressed.svg",
  20970. extra: 263 / 234
  20971. }
  20972. },
  20973. backDressed: {
  20974. height: math.unit(5 + 7 / 12, "feet"),
  20975. weight: math.unit(140, "lb"),
  20976. name: "Back (Dressed)",
  20977. image: {
  20978. source: "./media/characters/doc-weardno/back-dressed.svg",
  20979. extra: 266 / 238
  20980. }
  20981. },
  20982. front: {
  20983. height: math.unit(5 + 7 / 12, "feet"),
  20984. weight: math.unit(140, "lb"),
  20985. name: "Front",
  20986. image: {
  20987. source: "./media/characters/doc-weardno/front.svg",
  20988. extra: 254 / 233
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Micro",
  20995. height: math.unit(3, "inches")
  20996. },
  20997. {
  20998. name: "Normal",
  20999. height: math.unit(5 + 7 / 12, "feet"),
  21000. default: true
  21001. },
  21002. {
  21003. name: "Macro",
  21004. height: math.unit(25, "feet")
  21005. },
  21006. {
  21007. name: "Megamacro",
  21008. height: math.unit(2, "miles")
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21014. {
  21015. front: {
  21016. height: math.unit(6 + 2 / 12, "feet"),
  21017. weight: math.unit(153, "lb"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/seth-whilst/front.svg",
  21021. bottom: 0.07
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Micro",
  21028. height: math.unit(5, "inches")
  21029. },
  21030. {
  21031. name: "Normal",
  21032. height: math.unit(6 + 2 / 12, "feet"),
  21033. default: true
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21039. {
  21040. front: {
  21041. height: math.unit(3, "inches"),
  21042. weight: math.unit(8, "grams"),
  21043. name: "Front",
  21044. image: {
  21045. source: "./media/characters/pocket-jabari/front.svg",
  21046. extra: 1024 / 974,
  21047. bottom: 0.039
  21048. }
  21049. },
  21050. },
  21051. [
  21052. {
  21053. name: "Minimicro",
  21054. height: math.unit(8, "mm")
  21055. },
  21056. {
  21057. name: "Micro",
  21058. height: math.unit(3, "inches"),
  21059. default: true
  21060. },
  21061. {
  21062. name: "Normal",
  21063. height: math.unit(3, "feet")
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21069. {
  21070. frontDressed: {
  21071. height: math.unit(15, "feet"),
  21072. weight: math.unit(3280, "lb"),
  21073. name: "Front (Dressed)",
  21074. image: {
  21075. source: "./media/characters/sapphy/front-dressed.svg",
  21076. extra: 1951/1654,
  21077. bottom: 194/2145
  21078. },
  21079. form: "anthro",
  21080. default: true
  21081. },
  21082. backDressed: {
  21083. height: math.unit(15, "feet"),
  21084. weight: math.unit(3280, "lb"),
  21085. name: "Back (Dressed)",
  21086. image: {
  21087. source: "./media/characters/sapphy/back-dressed.svg",
  21088. extra: 2058/1918,
  21089. bottom: 125/2183
  21090. },
  21091. form: "anthro"
  21092. },
  21093. frontNude: {
  21094. height: math.unit(15, "feet"),
  21095. weight: math.unit(3280, "lb"),
  21096. name: "Front (Nude)",
  21097. image: {
  21098. source: "./media/characters/sapphy/front-nude.svg",
  21099. extra: 1951/1654,
  21100. bottom: 194/2145
  21101. },
  21102. form: "anthro"
  21103. },
  21104. backNude: {
  21105. height: math.unit(15, "feet"),
  21106. weight: math.unit(3280, "lb"),
  21107. name: "Back (Nude)",
  21108. image: {
  21109. source: "./media/characters/sapphy/back-nude.svg",
  21110. extra: 2058/1918,
  21111. bottom: 125/2183
  21112. },
  21113. form: "anthro"
  21114. },
  21115. full: {
  21116. height: math.unit(15, "feet"),
  21117. weight: math.unit(3280, "lb"),
  21118. name: "Full",
  21119. image: {
  21120. source: "./media/characters/sapphy/full.svg",
  21121. extra: 1396/1317,
  21122. bottom: 44/1440
  21123. },
  21124. form: "anthro"
  21125. },
  21126. dick: {
  21127. height: math.unit(3.8, "feet"),
  21128. name: "Dick",
  21129. image: {
  21130. source: "./media/characters/sapphy/dick.svg"
  21131. },
  21132. form: "anthro"
  21133. },
  21134. feral: {
  21135. height: math.unit(35, "feet"),
  21136. weight: math.unit(160, "tons"),
  21137. name: "Feral",
  21138. image: {
  21139. source: "./media/characters/sapphy/feral.svg",
  21140. extra: 1050/573,
  21141. bottom: 60/1110
  21142. },
  21143. form: "feral",
  21144. default: true
  21145. },
  21146. },
  21147. [
  21148. {
  21149. name: "Normal",
  21150. height: math.unit(15, "feet"),
  21151. form: "anthro"
  21152. },
  21153. {
  21154. name: "Casual Macro",
  21155. height: math.unit(120, "feet"),
  21156. form: "anthro"
  21157. },
  21158. {
  21159. name: "Macro",
  21160. height: math.unit(2150, "feet"),
  21161. default: true,
  21162. form: "anthro"
  21163. },
  21164. {
  21165. name: "Megamacro",
  21166. height: math.unit(8, "miles"),
  21167. form: "anthro"
  21168. },
  21169. {
  21170. name: "Galaxy Mom",
  21171. height: math.unit(6, "megalightyears"),
  21172. form: "anthro"
  21173. },
  21174. {
  21175. name: "Normal",
  21176. height: math.unit(35, "feet"),
  21177. form: "feral",
  21178. default: true
  21179. },
  21180. {
  21181. name: "Macro",
  21182. height: math.unit(300, "feet"),
  21183. form: "feral"
  21184. },
  21185. {
  21186. name: "Galaxy Mom",
  21187. height: math.unit(10, "megalightyears"),
  21188. form: "feral"
  21189. },
  21190. ],
  21191. {
  21192. "anthro": {
  21193. name: "Anthro",
  21194. default: true
  21195. },
  21196. "feral": {
  21197. name: "Feral"
  21198. }
  21199. }
  21200. ))
  21201. characterMakers.push(() => makeCharacter(
  21202. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21203. {
  21204. hyenaFront: {
  21205. height: math.unit(6, "feet"),
  21206. weight: math.unit(190, "lb"),
  21207. name: "Front",
  21208. image: {
  21209. source: "./media/characters/kiro/hyena-front.svg",
  21210. extra: 927/839,
  21211. bottom: 91/1018
  21212. },
  21213. form: "hyena",
  21214. default: true
  21215. },
  21216. front: {
  21217. height: math.unit(6, "feet"),
  21218. weight: math.unit(170, "lb"),
  21219. name: "Front",
  21220. image: {
  21221. source: "./media/characters/kiro/front.svg",
  21222. extra: 1064 / 1012,
  21223. bottom: 0.052
  21224. },
  21225. form: "folf",
  21226. default: true
  21227. },
  21228. },
  21229. [
  21230. {
  21231. name: "Micro",
  21232. height: math.unit(6, "inches"),
  21233. form: "folf"
  21234. },
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(6, "feet"),
  21238. form: "folf",
  21239. default: true
  21240. },
  21241. {
  21242. name: "Macro",
  21243. height: math.unit(72, "feet"),
  21244. form: "folf"
  21245. },
  21246. {
  21247. name: "Micro",
  21248. height: math.unit(6, "inches"),
  21249. form: "hyena"
  21250. },
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(6, "feet"),
  21254. form: "hyena",
  21255. default: true
  21256. },
  21257. {
  21258. name: "Macro",
  21259. height: math.unit(72, "feet"),
  21260. form: "hyena"
  21261. },
  21262. ],
  21263. {
  21264. "hyena": {
  21265. name: "Hyena",
  21266. default: true
  21267. },
  21268. "folf": {
  21269. name: "Folf",
  21270. },
  21271. }
  21272. ))
  21273. characterMakers.push(() => makeCharacter(
  21274. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21275. {
  21276. front: {
  21277. height: math.unit(5 + 9 / 12, "feet"),
  21278. weight: math.unit(175, "lb"),
  21279. name: "Front",
  21280. image: {
  21281. source: "./media/characters/irishfox/front.svg",
  21282. extra: 1912 / 1680,
  21283. bottom: 0.02
  21284. }
  21285. },
  21286. },
  21287. [
  21288. {
  21289. name: "Nano",
  21290. height: math.unit(1, "mm")
  21291. },
  21292. {
  21293. name: "Micro",
  21294. height: math.unit(2, "inches")
  21295. },
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(5 + 9 / 12, "feet"),
  21299. default: true
  21300. },
  21301. {
  21302. name: "Macro",
  21303. height: math.unit(45, "feet")
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(6 + 1 / 12, "feet"),
  21312. weight: math.unit(75, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/aronai-sieyes/front.svg",
  21316. extra: 1532/1450,
  21317. bottom: 42/1574
  21318. }
  21319. },
  21320. side: {
  21321. height: math.unit(6 + 1 / 12, "feet"),
  21322. weight: math.unit(75, "lb"),
  21323. name: "Side",
  21324. image: {
  21325. source: "./media/characters/aronai-sieyes/side.svg",
  21326. extra: 1422/1365,
  21327. bottom: 148/1570
  21328. }
  21329. },
  21330. back: {
  21331. height: math.unit(6 + 1 / 12, "feet"),
  21332. weight: math.unit(75, "lb"),
  21333. name: "Back",
  21334. image: {
  21335. source: "./media/characters/aronai-sieyes/back.svg",
  21336. extra: 1526/1464,
  21337. bottom: 51/1577
  21338. }
  21339. },
  21340. dressed: {
  21341. height: math.unit(6 + 1 / 12, "feet"),
  21342. weight: math.unit(75, "lb"),
  21343. name: "Dressed",
  21344. image: {
  21345. source: "./media/characters/aronai-sieyes/dressed.svg",
  21346. extra: 1559/1483,
  21347. bottom: 39/1598
  21348. }
  21349. },
  21350. slit: {
  21351. height: math.unit(1.3, "feet"),
  21352. name: "Slit",
  21353. image: {
  21354. source: "./media/characters/aronai-sieyes/slit.svg"
  21355. }
  21356. },
  21357. slitSpread: {
  21358. height: math.unit(0.9, "feet"),
  21359. name: "Slit (Spread)",
  21360. image: {
  21361. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21362. }
  21363. },
  21364. rump: {
  21365. height: math.unit(1.3, "feet"),
  21366. name: "Rump",
  21367. image: {
  21368. source: "./media/characters/aronai-sieyes/rump.svg"
  21369. }
  21370. },
  21371. maw: {
  21372. height: math.unit(1.25, "feet"),
  21373. name: "Maw",
  21374. image: {
  21375. source: "./media/characters/aronai-sieyes/maw.svg"
  21376. }
  21377. },
  21378. feral: {
  21379. height: math.unit(18, "feet"),
  21380. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21381. name: "Feral",
  21382. image: {
  21383. source: "./media/characters/aronai-sieyes/feral.svg",
  21384. extra: 1530 / 1240,
  21385. bottom: 0.035
  21386. }
  21387. },
  21388. },
  21389. [
  21390. {
  21391. name: "Micro",
  21392. height: math.unit(2, "inches")
  21393. },
  21394. {
  21395. name: "Normal",
  21396. height: math.unit(6 + 1 / 12, "feet"),
  21397. default: true
  21398. }
  21399. ]
  21400. ))
  21401. characterMakers.push(() => makeCharacter(
  21402. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21403. {
  21404. front: {
  21405. height: math.unit(12, "feet"),
  21406. weight: math.unit(410, "kg"),
  21407. name: "Front",
  21408. image: {
  21409. source: "./media/characters/xuna/front.svg",
  21410. extra: 2184 / 1980
  21411. }
  21412. },
  21413. side: {
  21414. height: math.unit(12, "feet"),
  21415. weight: math.unit(410, "kg"),
  21416. name: "Side",
  21417. image: {
  21418. source: "./media/characters/xuna/side.svg",
  21419. extra: 2184 / 1980
  21420. }
  21421. },
  21422. back: {
  21423. height: math.unit(12, "feet"),
  21424. weight: math.unit(410, "kg"),
  21425. name: "Back",
  21426. image: {
  21427. source: "./media/characters/xuna/back.svg",
  21428. extra: 2184 / 1980
  21429. }
  21430. },
  21431. },
  21432. [
  21433. {
  21434. name: "Nano glow",
  21435. height: math.unit(10, "nm")
  21436. },
  21437. {
  21438. name: "Micro floof",
  21439. height: math.unit(0.3, "m")
  21440. },
  21441. {
  21442. name: "Huggable softy boi",
  21443. height: math.unit(3.6576, "m"),
  21444. default: true
  21445. },
  21446. {
  21447. name: "Admirable floof",
  21448. height: math.unit(80, "meters")
  21449. },
  21450. {
  21451. name: "Gentle macro",
  21452. height: math.unit(300, "meters")
  21453. },
  21454. {
  21455. name: "Very careful floof",
  21456. height: math.unit(3200, "meters")
  21457. },
  21458. {
  21459. name: "The mega floof",
  21460. height: math.unit(36000, "meters")
  21461. },
  21462. {
  21463. name: "Giga-fur-Wicker",
  21464. height: math.unit(4800000, "meters")
  21465. },
  21466. {
  21467. name: "Licky world",
  21468. height: math.unit(20000000, "meters")
  21469. },
  21470. {
  21471. name: "Floofy cyan sun",
  21472. height: math.unit(1500000000, "meters")
  21473. },
  21474. {
  21475. name: "Milky Wicker",
  21476. height: math.unit(1000000000000000000000, "meters")
  21477. },
  21478. {
  21479. name: "The observing Wicker",
  21480. height: math.unit(999999999999999999999999999, "meters")
  21481. },
  21482. ]
  21483. ))
  21484. characterMakers.push(() => makeCharacter(
  21485. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21486. {
  21487. front: {
  21488. height: math.unit(5 + 9 / 12, "feet"),
  21489. weight: math.unit(150, "lb"),
  21490. name: "Front",
  21491. image: {
  21492. source: "./media/characters/arokha-sieyes/front.svg",
  21493. extra: 1425 / 1284,
  21494. bottom: 0.05
  21495. }
  21496. },
  21497. },
  21498. [
  21499. {
  21500. name: "Normal",
  21501. height: math.unit(5 + 9 / 12, "feet")
  21502. },
  21503. {
  21504. name: "Macro",
  21505. height: math.unit(30, "meters"),
  21506. default: true
  21507. },
  21508. ]
  21509. ))
  21510. characterMakers.push(() => makeCharacter(
  21511. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21512. {
  21513. front: {
  21514. height: math.unit(6, "feet"),
  21515. weight: math.unit(180, "lb"),
  21516. name: "Front",
  21517. image: {
  21518. source: "./media/characters/arokh-sieyes/front.svg",
  21519. extra: 1830 / 1769,
  21520. bottom: 0.01
  21521. }
  21522. },
  21523. },
  21524. [
  21525. {
  21526. name: "Normal",
  21527. height: math.unit(6, "feet")
  21528. },
  21529. {
  21530. name: "Macro",
  21531. height: math.unit(30, "meters"),
  21532. default: true
  21533. },
  21534. ]
  21535. ))
  21536. characterMakers.push(() => makeCharacter(
  21537. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21538. {
  21539. side: {
  21540. height: math.unit(13 + 1 / 12, "feet"),
  21541. weight: math.unit(8.5, "tonnes"),
  21542. preyCapacity: math.unit(36, "people"),
  21543. name: "Side",
  21544. image: {
  21545. source: "./media/characters/goldeneye/side.svg",
  21546. extra: 1139/741,
  21547. bottom: 98/1237
  21548. }
  21549. },
  21550. front: {
  21551. height: math.unit(5.1, "feet"),
  21552. weight: math.unit(8.5, "tonnes"),
  21553. preyCapacity: math.unit(36, "people"),
  21554. name: "Front",
  21555. image: {
  21556. source: "./media/characters/goldeneye/front.svg",
  21557. extra: 635/365,
  21558. bottom: 598/1233
  21559. }
  21560. },
  21561. maw: {
  21562. height: math.unit(6.6, "feet"),
  21563. name: "Maw",
  21564. image: {
  21565. source: "./media/characters/goldeneye/maw.svg"
  21566. }
  21567. },
  21568. headFront: {
  21569. height: math.unit(8, "feet"),
  21570. name: "Head (Front)",
  21571. image: {
  21572. source: "./media/characters/goldeneye/head-front.svg"
  21573. }
  21574. },
  21575. headSide: {
  21576. height: math.unit(6, "feet"),
  21577. name: "Head (Side)",
  21578. image: {
  21579. source: "./media/characters/goldeneye/head-side.svg"
  21580. }
  21581. },
  21582. headBack: {
  21583. height: math.unit(8, "feet"),
  21584. name: "Head (Back)",
  21585. image: {
  21586. source: "./media/characters/goldeneye/head-back.svg"
  21587. }
  21588. },
  21589. paw: {
  21590. height: math.unit(3.4, "feet"),
  21591. name: "Paw",
  21592. image: {
  21593. source: "./media/characters/goldeneye/paw.svg"
  21594. }
  21595. },
  21596. toering: {
  21597. height: math.unit(0.45, "feet"),
  21598. name: "Toering",
  21599. image: {
  21600. source: "./media/characters/goldeneye/toering.svg"
  21601. }
  21602. },
  21603. eyes: {
  21604. height: math.unit(0.5, "feet"),
  21605. name: "Eyes",
  21606. image: {
  21607. source: "./media/characters/goldeneye/eyes.svg"
  21608. }
  21609. },
  21610. },
  21611. [
  21612. {
  21613. name: "Normal",
  21614. height: math.unit(13 + 1 / 12, "feet"),
  21615. default: true
  21616. },
  21617. ]
  21618. ))
  21619. characterMakers.push(() => makeCharacter(
  21620. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21621. {
  21622. front: {
  21623. height: math.unit(6 + 1 / 12, "feet"),
  21624. weight: math.unit(210, "lb"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/leonardo-lycheborne/front.svg",
  21628. extra: 776/723,
  21629. bottom: 34/810
  21630. }
  21631. },
  21632. side: {
  21633. height: math.unit(6 + 1 / 12, "feet"),
  21634. weight: math.unit(210, "lb"),
  21635. name: "Side",
  21636. image: {
  21637. source: "./media/characters/leonardo-lycheborne/side.svg",
  21638. extra: 780/728,
  21639. bottom: 12/792
  21640. }
  21641. },
  21642. back: {
  21643. height: math.unit(6 + 1 / 12, "feet"),
  21644. weight: math.unit(210, "lb"),
  21645. name: "Back",
  21646. image: {
  21647. source: "./media/characters/leonardo-lycheborne/back.svg",
  21648. extra: 775/721,
  21649. bottom: 17/792
  21650. }
  21651. },
  21652. hand: {
  21653. height: math.unit(1.08, "feet"),
  21654. name: "Hand",
  21655. image: {
  21656. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21657. }
  21658. },
  21659. foot: {
  21660. height: math.unit(1.32, "feet"),
  21661. name: "Foot",
  21662. image: {
  21663. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21664. }
  21665. },
  21666. maw: {
  21667. height: math.unit(1, "feet"),
  21668. name: "Maw",
  21669. image: {
  21670. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21671. }
  21672. },
  21673. were: {
  21674. height: math.unit(20, "feet"),
  21675. weight: math.unit(7800, "lb"),
  21676. name: "Were",
  21677. image: {
  21678. source: "./media/characters/leonardo-lycheborne/were.svg",
  21679. extra: 1224/1165,
  21680. bottom: 72/1296
  21681. }
  21682. },
  21683. feral: {
  21684. height: math.unit(7.5, "feet"),
  21685. weight: math.unit(600, "lb"),
  21686. name: "Feral",
  21687. image: {
  21688. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21689. extra: 797/702,
  21690. bottom: 139/936
  21691. }
  21692. },
  21693. taur: {
  21694. height: math.unit(11, "feet"),
  21695. weight: math.unit(3300, "lb"),
  21696. name: "Taur",
  21697. image: {
  21698. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21699. extra: 1271/1197,
  21700. bottom: 47/1318
  21701. }
  21702. },
  21703. barghest: {
  21704. height: math.unit(11, "feet"),
  21705. weight: math.unit(1300, "lb"),
  21706. name: "Barghest",
  21707. image: {
  21708. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21709. extra: 1291/1204,
  21710. bottom: 37/1328
  21711. }
  21712. },
  21713. dick: {
  21714. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21715. name: "Dick",
  21716. image: {
  21717. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21718. }
  21719. },
  21720. dickWere: {
  21721. height: math.unit((20) / 3.8, "feet"),
  21722. name: "Dick (Were)",
  21723. image: {
  21724. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21725. }
  21726. },
  21727. },
  21728. [
  21729. {
  21730. name: "Normal",
  21731. height: math.unit(6 + 1 / 12, "feet"),
  21732. default: true
  21733. },
  21734. ]
  21735. ))
  21736. characterMakers.push(() => makeCharacter(
  21737. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21738. {
  21739. front: {
  21740. height: math.unit(10, "feet"),
  21741. weight: math.unit(350, "lb"),
  21742. name: "Front",
  21743. image: {
  21744. source: "./media/characters/jet/front.svg",
  21745. extra: 2050 / 1980,
  21746. bottom: 0.013
  21747. }
  21748. },
  21749. back: {
  21750. height: math.unit(10, "feet"),
  21751. weight: math.unit(350, "lb"),
  21752. name: "Back",
  21753. image: {
  21754. source: "./media/characters/jet/back.svg",
  21755. extra: 2050 / 1980,
  21756. bottom: 0.013
  21757. }
  21758. },
  21759. },
  21760. [
  21761. {
  21762. name: "Micro",
  21763. height: math.unit(6, "inches")
  21764. },
  21765. {
  21766. name: "Normal",
  21767. height: math.unit(10, "feet"),
  21768. default: true
  21769. },
  21770. {
  21771. name: "Macro",
  21772. height: math.unit(100, "feet")
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(15, "feet"),
  21781. weight: math.unit(2800, "lb"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/tanarath/front.svg",
  21785. extra: 2392 / 2220,
  21786. bottom: 0.03
  21787. }
  21788. },
  21789. back: {
  21790. height: math.unit(15, "feet"),
  21791. weight: math.unit(2800, "lb"),
  21792. name: "Back",
  21793. image: {
  21794. source: "./media/characters/tanarath/back.svg",
  21795. extra: 2392 / 2220,
  21796. bottom: 0.03
  21797. }
  21798. },
  21799. },
  21800. [
  21801. {
  21802. name: "Normal",
  21803. height: math.unit(15, "feet"),
  21804. default: true
  21805. },
  21806. ]
  21807. ))
  21808. characterMakers.push(() => makeCharacter(
  21809. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21810. {
  21811. front: {
  21812. height: math.unit(7 + 1 / 12, "feet"),
  21813. weight: math.unit(175, "lb"),
  21814. name: "Front",
  21815. image: {
  21816. source: "./media/characters/patty-cattybatty/front.svg",
  21817. extra: 908 / 874,
  21818. bottom: 0.025
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Micro",
  21825. height: math.unit(1, "inch")
  21826. },
  21827. {
  21828. name: "Normal",
  21829. height: math.unit(7 + 1 / 12, "feet")
  21830. },
  21831. {
  21832. name: "Mini Macro",
  21833. height: math.unit(155, "feet")
  21834. },
  21835. {
  21836. name: "Macro",
  21837. height: math.unit(1077, "feet")
  21838. },
  21839. {
  21840. name: "Mega Macro",
  21841. height: math.unit(47650, "feet"),
  21842. default: true
  21843. },
  21844. {
  21845. name: "Giga Macro",
  21846. height: math.unit(440, "miles")
  21847. },
  21848. {
  21849. name: "Tera Macro",
  21850. height: math.unit(8700, "miles")
  21851. },
  21852. {
  21853. name: "Planetary Macro",
  21854. height: math.unit(32700, "miles")
  21855. },
  21856. {
  21857. name: "Solar Macro",
  21858. height: math.unit(550000, "miles")
  21859. },
  21860. {
  21861. name: "Celestial Macro",
  21862. height: math.unit(2.5, "AU")
  21863. },
  21864. ]
  21865. ))
  21866. characterMakers.push(() => makeCharacter(
  21867. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21868. {
  21869. front: {
  21870. height: math.unit(4 + 5 / 12, "feet"),
  21871. weight: math.unit(90, "lb"),
  21872. name: "Front",
  21873. image: {
  21874. source: "./media/characters/cappu/front.svg",
  21875. extra: 1247 / 1152,
  21876. bottom: 0.012
  21877. }
  21878. },
  21879. },
  21880. [
  21881. {
  21882. name: "Normal",
  21883. height: math.unit(4 + 5 / 12, "feet"),
  21884. default: true
  21885. },
  21886. ]
  21887. ))
  21888. characterMakers.push(() => makeCharacter(
  21889. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21890. {
  21891. frontDressed: {
  21892. height: math.unit(70, "cm"),
  21893. weight: math.unit(6, "kg"),
  21894. name: "Front (Dressed)",
  21895. image: {
  21896. source: "./media/characters/sebi/front-dressed.svg",
  21897. extra: 713.5 / 686.5,
  21898. bottom: 0.003
  21899. }
  21900. },
  21901. front: {
  21902. height: math.unit(70, "cm"),
  21903. weight: math.unit(5, "kg"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/sebi/front.svg",
  21907. extra: 713.5 / 686.5,
  21908. bottom: 0.003
  21909. }
  21910. }
  21911. },
  21912. [
  21913. {
  21914. name: "Normal",
  21915. height: math.unit(70, "cm"),
  21916. default: true
  21917. },
  21918. {
  21919. name: "Macro",
  21920. height: math.unit(8, "meters")
  21921. },
  21922. ]
  21923. ))
  21924. characterMakers.push(() => makeCharacter(
  21925. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21926. {
  21927. front: {
  21928. height: math.unit(6, "feet"),
  21929. weight: math.unit(150, "lb"),
  21930. name: "Front",
  21931. image: {
  21932. source: "./media/characters/typhek/front.svg",
  21933. extra: 1948 / 1929,
  21934. bottom: 0.025
  21935. }
  21936. },
  21937. side: {
  21938. height: math.unit(6, "feet"),
  21939. weight: math.unit(150, "lb"),
  21940. name: "Side",
  21941. image: {
  21942. source: "./media/characters/typhek/side.svg",
  21943. extra: 2034 / 2010,
  21944. bottom: 0.003
  21945. }
  21946. },
  21947. back: {
  21948. height: math.unit(6, "feet"),
  21949. weight: math.unit(150, "lb"),
  21950. name: "Back",
  21951. image: {
  21952. source: "./media/characters/typhek/back.svg",
  21953. extra: 2005 / 1978,
  21954. bottom: 0.004
  21955. }
  21956. },
  21957. palm: {
  21958. height: math.unit(1.2, "feet"),
  21959. name: "Palm",
  21960. image: {
  21961. source: "./media/characters/typhek/palm.svg"
  21962. }
  21963. },
  21964. fist: {
  21965. height: math.unit(1.1, "feet"),
  21966. name: "Fist",
  21967. image: {
  21968. source: "./media/characters/typhek/fist.svg"
  21969. }
  21970. },
  21971. foot: {
  21972. height: math.unit(1.57, "feet"),
  21973. name: "Foot",
  21974. image: {
  21975. source: "./media/characters/typhek/foot.svg"
  21976. }
  21977. },
  21978. sole: {
  21979. height: math.unit(2.05, "feet"),
  21980. name: "Sole",
  21981. image: {
  21982. source: "./media/characters/typhek/sole.svg"
  21983. }
  21984. },
  21985. },
  21986. [
  21987. {
  21988. name: "Macro",
  21989. height: math.unit(40, "stories"),
  21990. default: true
  21991. },
  21992. {
  21993. name: "Megamacro",
  21994. height: math.unit(1, "mile")
  21995. },
  21996. {
  21997. name: "Gigamacro",
  21998. height: math.unit(4000, "solarradii")
  21999. },
  22000. {
  22001. name: "Universal",
  22002. height: math.unit(1.1, "universes")
  22003. }
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22008. {
  22009. side: {
  22010. height: math.unit(5 + 7 / 12, "feet"),
  22011. weight: math.unit(150, "lb"),
  22012. name: "Side",
  22013. image: {
  22014. source: "./media/characters/kassy/side.svg",
  22015. extra: 1280 / 1225,
  22016. bottom: 0.002
  22017. }
  22018. },
  22019. front: {
  22020. height: math.unit(5 + 7 / 12, "feet"),
  22021. weight: math.unit(150, "lb"),
  22022. name: "Front",
  22023. image: {
  22024. source: "./media/characters/kassy/front.svg",
  22025. extra: 1280 / 1225,
  22026. bottom: 0.025
  22027. }
  22028. },
  22029. back: {
  22030. height: math.unit(5 + 7 / 12, "feet"),
  22031. weight: math.unit(150, "lb"),
  22032. name: "Back",
  22033. image: {
  22034. source: "./media/characters/kassy/back.svg",
  22035. extra: 1280 / 1225,
  22036. bottom: 0.002
  22037. }
  22038. },
  22039. foot: {
  22040. height: math.unit(1.266, "feet"),
  22041. name: "Foot",
  22042. image: {
  22043. source: "./media/characters/kassy/foot.svg"
  22044. }
  22045. },
  22046. },
  22047. [
  22048. {
  22049. name: "Normal",
  22050. height: math.unit(5 + 7 / 12, "feet")
  22051. },
  22052. {
  22053. name: "Macro",
  22054. height: math.unit(137, "feet"),
  22055. default: true
  22056. },
  22057. {
  22058. name: "Megamacro",
  22059. height: math.unit(1, "mile")
  22060. },
  22061. ]
  22062. ))
  22063. characterMakers.push(() => makeCharacter(
  22064. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22065. {
  22066. front: {
  22067. height: math.unit(6 + 1 / 12, "feet"),
  22068. weight: math.unit(200, "lb"),
  22069. name: "Front",
  22070. image: {
  22071. source: "./media/characters/neil/front.svg",
  22072. extra: 1326 / 1250,
  22073. bottom: 0.023
  22074. }
  22075. },
  22076. },
  22077. [
  22078. {
  22079. name: "Normal",
  22080. height: math.unit(6 + 1 / 12, "feet"),
  22081. default: true
  22082. },
  22083. {
  22084. name: "Macro",
  22085. height: math.unit(200, "feet")
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22091. {
  22092. front: {
  22093. height: math.unit(5 + 9 / 12, "feet"),
  22094. weight: math.unit(190, "lb"),
  22095. name: "Front",
  22096. image: {
  22097. source: "./media/characters/atticus/front.svg",
  22098. extra: 2934 / 2785,
  22099. bottom: 0.025
  22100. }
  22101. },
  22102. },
  22103. [
  22104. {
  22105. name: "Normal",
  22106. height: math.unit(5 + 9 / 12, "feet"),
  22107. default: true
  22108. },
  22109. {
  22110. name: "Macro",
  22111. height: math.unit(180, "feet")
  22112. },
  22113. ]
  22114. ))
  22115. characterMakers.push(() => makeCharacter(
  22116. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22117. {
  22118. side: {
  22119. height: math.unit(9, "feet"),
  22120. weight: math.unit(650, "lb"),
  22121. name: "Side",
  22122. image: {
  22123. source: "./media/characters/milo/side.svg",
  22124. extra: 2644 / 2310,
  22125. bottom: 0.032
  22126. }
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Normal",
  22132. height: math.unit(9, "feet"),
  22133. default: true
  22134. },
  22135. {
  22136. name: "Macro",
  22137. height: math.unit(300, "feet")
  22138. },
  22139. ]
  22140. ))
  22141. characterMakers.push(() => makeCharacter(
  22142. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22143. {
  22144. side: {
  22145. height: math.unit(8, "meters"),
  22146. weight: math.unit(90000, "kg"),
  22147. name: "Side",
  22148. image: {
  22149. source: "./media/characters/ijzer/side.svg",
  22150. extra: 2756 / 1600,
  22151. bottom: 0.01
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "Small",
  22158. height: math.unit(3, "meters")
  22159. },
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(8, "meters"),
  22163. default: true
  22164. },
  22165. {
  22166. name: "Normal+",
  22167. height: math.unit(10, "meters")
  22168. },
  22169. {
  22170. name: "Bigger",
  22171. height: math.unit(24, "meters")
  22172. },
  22173. {
  22174. name: "Huge",
  22175. height: math.unit(80, "meters")
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22181. {
  22182. front: {
  22183. height: math.unit(6 + 2 / 12, "feet"),
  22184. weight: math.unit(153, "lb"),
  22185. name: "Front",
  22186. image: {
  22187. source: "./media/characters/luca-cervicum/front.svg",
  22188. extra: 370 / 327,
  22189. bottom: 0.015
  22190. }
  22191. },
  22192. back: {
  22193. height: math.unit(6 + 2 / 12, "feet"),
  22194. weight: math.unit(153, "lb"),
  22195. name: "Back",
  22196. image: {
  22197. source: "./media/characters/luca-cervicum/back.svg",
  22198. extra: 367 / 333,
  22199. bottom: 0.005
  22200. }
  22201. },
  22202. frontGear: {
  22203. height: math.unit(6 + 2 / 12, "feet"),
  22204. weight: math.unit(173, "lb"),
  22205. name: "Front (Gear)",
  22206. image: {
  22207. source: "./media/characters/luca-cervicum/front-gear.svg",
  22208. extra: 377 / 333,
  22209. bottom: 0.006
  22210. }
  22211. },
  22212. },
  22213. [
  22214. {
  22215. name: "Normal",
  22216. height: math.unit(6 + 2 / 12, "feet"),
  22217. default: true
  22218. },
  22219. ]
  22220. ))
  22221. characterMakers.push(() => makeCharacter(
  22222. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22223. {
  22224. front: {
  22225. height: math.unit(6 + 1 / 12, "feet"),
  22226. weight: math.unit(304, "lb"),
  22227. name: "Front",
  22228. image: {
  22229. source: "./media/characters/oliver/front.svg",
  22230. extra: 157 / 143,
  22231. bottom: 0.08
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(6 + 1 / 12, "feet"),
  22239. default: true
  22240. },
  22241. ]
  22242. ))
  22243. characterMakers.push(() => makeCharacter(
  22244. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22245. {
  22246. front: {
  22247. height: math.unit(5 + 7 / 12, "feet"),
  22248. weight: math.unit(140, "lb"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/shane/front.svg",
  22252. extra: 304 / 289,
  22253. bottom: 0.005
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Normal",
  22260. height: math.unit(5 + 7 / 12, "feet"),
  22261. default: true
  22262. },
  22263. ]
  22264. ))
  22265. characterMakers.push(() => makeCharacter(
  22266. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22267. {
  22268. front: {
  22269. height: math.unit(5 + 9 / 12, "feet"),
  22270. weight: math.unit(178, "lb"),
  22271. name: "Front",
  22272. image: {
  22273. source: "./media/characters/shin/front.svg",
  22274. extra: 159 / 151,
  22275. bottom: 0.015
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(5 + 9 / 12, "feet"),
  22283. default: true
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22289. {
  22290. front: {
  22291. height: math.unit(5 + 10 / 12, "feet"),
  22292. weight: math.unit(168, "lb"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/xerxes/front.svg",
  22296. extra: 282 / 260,
  22297. bottom: 0.045
  22298. }
  22299. },
  22300. },
  22301. [
  22302. {
  22303. name: "Normal",
  22304. height: math.unit(5 + 10 / 12, "feet"),
  22305. default: true
  22306. },
  22307. ]
  22308. ))
  22309. characterMakers.push(() => makeCharacter(
  22310. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22311. {
  22312. front: {
  22313. height: math.unit(6 + 7 / 12, "feet"),
  22314. weight: math.unit(208, "lb"),
  22315. name: "Front",
  22316. image: {
  22317. source: "./media/characters/chaska/front.svg",
  22318. extra: 332 / 319,
  22319. bottom: 0.015
  22320. }
  22321. },
  22322. },
  22323. [
  22324. {
  22325. name: "Normal",
  22326. height: math.unit(6 + 7 / 12, "feet"),
  22327. default: true
  22328. },
  22329. ]
  22330. ))
  22331. characterMakers.push(() => makeCharacter(
  22332. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22333. {
  22334. front: {
  22335. height: math.unit(5 + 8 / 12, "feet"),
  22336. weight: math.unit(208, "lb"),
  22337. name: "Front",
  22338. image: {
  22339. source: "./media/characters/enuk/front.svg",
  22340. extra: 437 / 406,
  22341. bottom: 0.02
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Normal",
  22348. height: math.unit(5 + 8 / 12, "feet"),
  22349. default: true
  22350. },
  22351. ]
  22352. ))
  22353. characterMakers.push(() => makeCharacter(
  22354. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22355. {
  22356. front: {
  22357. height: math.unit(5 + 10 / 12, "feet"),
  22358. weight: math.unit(252, "lb"),
  22359. name: "Front",
  22360. image: {
  22361. source: "./media/characters/bruun/front.svg",
  22362. extra: 197 / 187,
  22363. bottom: 0.012
  22364. }
  22365. },
  22366. },
  22367. [
  22368. {
  22369. name: "Normal",
  22370. height: math.unit(5 + 10 / 12, "feet"),
  22371. default: true
  22372. },
  22373. ]
  22374. ))
  22375. characterMakers.push(() => makeCharacter(
  22376. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22377. {
  22378. front: {
  22379. height: math.unit(6 + 10 / 12, "feet"),
  22380. weight: math.unit(255, "lb"),
  22381. name: "Front",
  22382. image: {
  22383. source: "./media/characters/alexeev/front.svg",
  22384. extra: 213 / 200,
  22385. bottom: 0.05
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Normal",
  22392. height: math.unit(6 + 10 / 12, "feet"),
  22393. default: true
  22394. },
  22395. ]
  22396. ))
  22397. characterMakers.push(() => makeCharacter(
  22398. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22399. {
  22400. front: {
  22401. height: math.unit(2 + 8 / 12, "feet"),
  22402. weight: math.unit(22, "lb"),
  22403. name: "Front",
  22404. image: {
  22405. source: "./media/characters/evelyn/front.svg",
  22406. extra: 208 / 180
  22407. }
  22408. },
  22409. },
  22410. [
  22411. {
  22412. name: "Normal",
  22413. height: math.unit(2 + 8 / 12, "feet"),
  22414. default: true
  22415. },
  22416. ]
  22417. ))
  22418. characterMakers.push(() => makeCharacter(
  22419. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22420. {
  22421. front: {
  22422. height: math.unit(5 + 9 / 12, "feet"),
  22423. weight: math.unit(139, "lb"),
  22424. name: "Front",
  22425. image: {
  22426. source: "./media/characters/inca/front.svg",
  22427. extra: 294 / 291,
  22428. bottom: 0.03
  22429. }
  22430. },
  22431. },
  22432. [
  22433. {
  22434. name: "Normal",
  22435. height: math.unit(5 + 9 / 12, "feet"),
  22436. default: true
  22437. },
  22438. ]
  22439. ))
  22440. characterMakers.push(() => makeCharacter(
  22441. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22442. {
  22443. front: {
  22444. height: math.unit(6 + 3 / 12, "feet"),
  22445. weight: math.unit(185, "lb"),
  22446. name: "Front",
  22447. image: {
  22448. source: "./media/characters/mera/front.svg",
  22449. extra: 291 / 277,
  22450. bottom: 0.03
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Normal",
  22457. height: math.unit(6 + 3 / 12, "feet"),
  22458. default: true
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22464. {
  22465. front: {
  22466. height: math.unit(6 + 7 / 12, "feet"),
  22467. weight: math.unit(160, "lb"),
  22468. name: "Front",
  22469. image: {
  22470. source: "./media/characters/ceres/front.svg",
  22471. extra: 1023 / 950,
  22472. bottom: 0.027
  22473. }
  22474. },
  22475. back: {
  22476. height: math.unit(6 + 7 / 12, "feet"),
  22477. weight: math.unit(160, "lb"),
  22478. name: "Back",
  22479. image: {
  22480. source: "./media/characters/ceres/back.svg",
  22481. extra: 1023 / 950
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Normal",
  22488. height: math.unit(6 + 7 / 12, "feet"),
  22489. default: true
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22495. {
  22496. front: {
  22497. height: math.unit(5 + 10 / 12, "feet"),
  22498. weight: math.unit(150, "lb"),
  22499. name: "Front",
  22500. image: {
  22501. source: "./media/characters/kris/front.svg",
  22502. extra: 885 / 803,
  22503. bottom: 0.03
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(5 + 10 / 12, "feet"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22517. {
  22518. dragon_front: {
  22519. height: math.unit(5, "feet"),
  22520. name: "Front",
  22521. image: {
  22522. source: "./media/characters/taluthus/dragon-front.svg",
  22523. extra: 1203/1098,
  22524. bottom: 46/1249
  22525. },
  22526. form: "dragon",
  22527. default: true
  22528. },
  22529. dragon_maw: {
  22530. height: math.unit(2.35, "feet"),
  22531. name: "Maw",
  22532. image: {
  22533. source: "./media/characters/taluthus/dragon-maw.svg"
  22534. },
  22535. form: "dragon",
  22536. },
  22537. kitsune_front: {
  22538. height: math.unit(7, "feet"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/taluthus/kitsune-front.svg",
  22542. extra: 900/841,
  22543. bottom: 65/965
  22544. },
  22545. form: "kitsune",
  22546. default: true
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Normal",
  22552. height: math.unit(5, "feet"),
  22553. form: "dragon",
  22554. default: true,
  22555. },
  22556. {
  22557. name: "Normal",
  22558. height: math.unit(7, "feet"),
  22559. form: "kitsune",
  22560. default: true
  22561. },
  22562. {
  22563. name: "Macro",
  22564. height: math.unit(300, "feet"),
  22565. allForms: true
  22566. },
  22567. ],
  22568. {
  22569. "dragon": {
  22570. name: "Dragon",
  22571. default: true
  22572. },
  22573. "kitsune": {
  22574. name: "Kitsune",
  22575. },
  22576. }
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22580. {
  22581. front: {
  22582. height: math.unit(5 + 9 / 12, "feet"),
  22583. weight: math.unit(145, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/dawn/front.svg",
  22587. extra: 2094 / 2016,
  22588. bottom: 0.025
  22589. }
  22590. },
  22591. back: {
  22592. height: math.unit(5 + 9 / 12, "feet"),
  22593. weight: math.unit(160, "lb"),
  22594. name: "Back",
  22595. image: {
  22596. source: "./media/characters/dawn/back.svg",
  22597. extra: 2112 / 2080,
  22598. bottom: 0.005
  22599. }
  22600. },
  22601. },
  22602. [
  22603. {
  22604. name: "Normal",
  22605. height: math.unit(6 + 7 / 12, "feet"),
  22606. default: true
  22607. },
  22608. ]
  22609. ))
  22610. characterMakers.push(() => makeCharacter(
  22611. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22612. {
  22613. anthro: {
  22614. height: math.unit(8 + 3 / 12, "feet"),
  22615. weight: math.unit(450, "lb"),
  22616. name: "Anthro",
  22617. image: {
  22618. source: "./media/characters/arador/anthro.svg",
  22619. extra: 1835 / 1718,
  22620. bottom: 0.025
  22621. }
  22622. },
  22623. feral: {
  22624. height: math.unit(4, "feet"),
  22625. weight: math.unit(200, "lb"),
  22626. name: "Feral",
  22627. image: {
  22628. source: "./media/characters/arador/feral.svg",
  22629. extra: 1683 / 1514,
  22630. bottom: 0.07
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(8 + 3 / 12, "feet")
  22638. },
  22639. {
  22640. name: "Macro",
  22641. height: math.unit(82.5, "feet"),
  22642. default: true
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(5 + 10 / 12, "feet"),
  22651. weight: math.unit(125, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/dharsi/front.svg",
  22655. extra: 716 / 630,
  22656. bottom: 0.035
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Nano",
  22663. height: math.unit(100, "nm")
  22664. },
  22665. {
  22666. name: "Micro",
  22667. height: math.unit(2, "inches")
  22668. },
  22669. {
  22670. name: "Normal",
  22671. height: math.unit(5 + 10 / 12, "feet"),
  22672. default: true
  22673. },
  22674. {
  22675. name: "Macro",
  22676. height: math.unit(1000, "feet")
  22677. },
  22678. {
  22679. name: "Megamacro",
  22680. height: math.unit(10, "miles")
  22681. },
  22682. {
  22683. name: "Gigamacro",
  22684. height: math.unit(3000, "miles")
  22685. },
  22686. {
  22687. name: "Teramacro",
  22688. height: math.unit(500000, "miles")
  22689. },
  22690. {
  22691. name: "Teramacro+",
  22692. height: math.unit(30, "galaxies")
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22698. {
  22699. front: {
  22700. height: math.unit(6, "feet"),
  22701. weight: math.unit(150, "lb"),
  22702. name: "Front",
  22703. image: {
  22704. source: "./media/characters/deathy/front.svg",
  22705. extra: 1552 / 1463,
  22706. bottom: 0.025
  22707. }
  22708. },
  22709. side: {
  22710. height: math.unit(6, "feet"),
  22711. weight: math.unit(150, "lb"),
  22712. name: "Side",
  22713. image: {
  22714. source: "./media/characters/deathy/side.svg",
  22715. extra: 1604 / 1455,
  22716. bottom: 0.025
  22717. }
  22718. },
  22719. back: {
  22720. height: math.unit(6, "feet"),
  22721. weight: math.unit(150, "lb"),
  22722. name: "Back",
  22723. image: {
  22724. source: "./media/characters/deathy/back.svg",
  22725. extra: 1580 / 1463,
  22726. bottom: 0.005
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Micro",
  22733. height: math.unit(5, "millimeters")
  22734. },
  22735. {
  22736. name: "Normal",
  22737. height: math.unit(6 + 5 / 12, "feet"),
  22738. default: true
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22744. {
  22745. front: {
  22746. height: math.unit(16, "feet"),
  22747. weight: math.unit(4000, "lb"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/juniper/front.svg",
  22751. bottom: 0.04
  22752. }
  22753. },
  22754. },
  22755. [
  22756. {
  22757. name: "Normal",
  22758. height: math.unit(16, "feet"),
  22759. default: true
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22765. {
  22766. front: {
  22767. height: math.unit(6, "feet"),
  22768. weight: math.unit(150, "lb"),
  22769. name: "Front",
  22770. image: {
  22771. source: "./media/characters/hipster/front.svg",
  22772. extra: 1312 / 1209,
  22773. bottom: 0.025
  22774. }
  22775. },
  22776. back: {
  22777. height: math.unit(6, "feet"),
  22778. weight: math.unit(150, "lb"),
  22779. name: "Back",
  22780. image: {
  22781. source: "./media/characters/hipster/back.svg",
  22782. extra: 1281 / 1196,
  22783. bottom: 0.01
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Micro",
  22790. height: math.unit(1, "mm")
  22791. },
  22792. {
  22793. name: "Normal",
  22794. height: math.unit(4, "inches"),
  22795. default: true
  22796. },
  22797. {
  22798. name: "Macro",
  22799. height: math.unit(500, "feet")
  22800. },
  22801. {
  22802. name: "Megamacro",
  22803. height: math.unit(1000, "miles")
  22804. },
  22805. ]
  22806. ))
  22807. characterMakers.push(() => makeCharacter(
  22808. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22809. {
  22810. front: {
  22811. height: math.unit(6, "feet"),
  22812. weight: math.unit(150, "lb"),
  22813. name: "Front",
  22814. image: {
  22815. source: "./media/characters/tendirmuldr/front.svg",
  22816. extra: 1878 / 1772,
  22817. bottom: 0.015
  22818. }
  22819. },
  22820. },
  22821. [
  22822. {
  22823. name: "Megamacro",
  22824. height: math.unit(1500, "miles"),
  22825. default: true
  22826. },
  22827. ]
  22828. ))
  22829. characterMakers.push(() => makeCharacter(
  22830. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22831. {
  22832. front: {
  22833. height: math.unit(14, "feet"),
  22834. weight: math.unit(12000, "lb"),
  22835. name: "Front",
  22836. image: {
  22837. source: "./media/characters/mort/front.svg",
  22838. extra: 365 / 318,
  22839. bottom: 0.01
  22840. }
  22841. },
  22842. side: {
  22843. height: math.unit(14, "feet"),
  22844. weight: math.unit(12000, "lb"),
  22845. name: "Side",
  22846. image: {
  22847. source: "./media/characters/mort/side.svg",
  22848. extra: 365 / 318,
  22849. bottom: 0.052
  22850. },
  22851. default: true
  22852. },
  22853. back: {
  22854. height: math.unit(14, "feet"),
  22855. weight: math.unit(12000, "lb"),
  22856. name: "Back",
  22857. image: {
  22858. source: "./media/characters/mort/back.svg",
  22859. extra: 371 / 332,
  22860. bottom: 0.18
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Normal",
  22867. height: math.unit(14, "feet"),
  22868. default: true
  22869. },
  22870. ]
  22871. ))
  22872. characterMakers.push(() => makeCharacter(
  22873. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22874. {
  22875. front: {
  22876. height: math.unit(8, "feet"),
  22877. weight: math.unit(1, "ton"),
  22878. name: "Front",
  22879. image: {
  22880. source: "./media/characters/lycoa/front.svg",
  22881. extra: 1836/1728,
  22882. bottom: 81/1917
  22883. }
  22884. },
  22885. back: {
  22886. height: math.unit(8, "feet"),
  22887. weight: math.unit(1, "ton"),
  22888. name: "Back",
  22889. image: {
  22890. source: "./media/characters/lycoa/back.svg",
  22891. extra: 1785/1720,
  22892. bottom: 91/1876
  22893. }
  22894. },
  22895. head: {
  22896. height: math.unit(1.6243, "feet"),
  22897. name: "Head",
  22898. image: {
  22899. source: "./media/characters/lycoa/head.svg",
  22900. extra: 1011/782,
  22901. bottom: 0/1011
  22902. }
  22903. },
  22904. tailmaw: {
  22905. height: math.unit(1.9, "feet"),
  22906. name: "Tailmaw",
  22907. image: {
  22908. source: "./media/characters/lycoa/tailmaw.svg"
  22909. }
  22910. },
  22911. tentacles: {
  22912. height: math.unit(2.1, "feet"),
  22913. name: "Tentacles",
  22914. image: {
  22915. source: "./media/characters/lycoa/tentacles.svg"
  22916. }
  22917. },
  22918. dick: {
  22919. height: math.unit(1.73, "feet"),
  22920. name: "Dick",
  22921. image: {
  22922. source: "./media/characters/lycoa/dick.svg"
  22923. }
  22924. },
  22925. },
  22926. [
  22927. {
  22928. name: "Normal",
  22929. height: math.unit(8, "feet"),
  22930. default: true
  22931. },
  22932. {
  22933. name: "Macro",
  22934. height: math.unit(30, "feet")
  22935. },
  22936. ]
  22937. ))
  22938. characterMakers.push(() => makeCharacter(
  22939. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22940. {
  22941. front: {
  22942. height: math.unit(4 + 2 / 12, "feet"),
  22943. weight: math.unit(70, "lb"),
  22944. name: "Front",
  22945. image: {
  22946. source: "./media/characters/naldara/front.svg",
  22947. extra: 1664/1387,
  22948. bottom: 81/1745
  22949. },
  22950. form: "anthro",
  22951. default: true
  22952. },
  22953. naga: {
  22954. height: math.unit(20, "feet"),
  22955. weight: math.unit(15000, "kg"),
  22956. name: "Front",
  22957. image: {
  22958. source: "./media/characters/naldara/naga.svg",
  22959. extra: 1590/1396,
  22960. bottom: 285/1875
  22961. },
  22962. form: "naga",
  22963. default: true
  22964. },
  22965. },
  22966. [
  22967. {
  22968. name: "Normal",
  22969. height: math.unit(4 + 2 / 12, "feet"),
  22970. form: "anthro",
  22971. default: true
  22972. },
  22973. {
  22974. name: "Normal",
  22975. height: math.unit(20, "feet"),
  22976. form: "naga",
  22977. default: true
  22978. },
  22979. ],
  22980. {
  22981. "anthro": {
  22982. name: "Anthro",
  22983. default: true
  22984. },
  22985. "naga": {
  22986. name: "Naga"
  22987. }
  22988. }
  22989. ))
  22990. characterMakers.push(() => makeCharacter(
  22991. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22992. {
  22993. front: {
  22994. height: math.unit(13 + 7 / 12, "feet"),
  22995. weight: math.unit(1500, "lb"),
  22996. name: "Front",
  22997. image: {
  22998. source: "./media/characters/briar/front.svg",
  22999. extra: 1223/1157,
  23000. bottom: 123/1346
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Normal",
  23007. height: math.unit(13 + 7 / 12, "feet"),
  23008. default: true
  23009. },
  23010. ]
  23011. ))
  23012. characterMakers.push(() => makeCharacter(
  23013. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23014. {
  23015. side: {
  23016. height: math.unit(16, "feet"),
  23017. weight: math.unit(500, "lb"),
  23018. name: "Side",
  23019. image: {
  23020. source: "./media/characters/vanguard/side.svg",
  23021. extra: 1022/914,
  23022. bottom: 30/1052
  23023. }
  23024. },
  23025. sideAlt: {
  23026. height: math.unit(10, "feet"),
  23027. weight: math.unit(500, "lb"),
  23028. name: "Side (Alt)",
  23029. image: {
  23030. source: "./media/characters/vanguard/side-alt.svg",
  23031. extra: 502 / 425,
  23032. bottom: 0.087
  23033. }
  23034. },
  23035. },
  23036. [
  23037. {
  23038. name: "Normal",
  23039. height: math.unit(17.71, "feet"),
  23040. default: true
  23041. },
  23042. ]
  23043. ))
  23044. characterMakers.push(() => makeCharacter(
  23045. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23046. {
  23047. front: {
  23048. height: math.unit(7.5, "feet"),
  23049. weight: math.unit(2, "lb"),
  23050. name: "Front",
  23051. image: {
  23052. source: "./media/characters/artemis/work-safe-front.svg",
  23053. extra: 1192 / 1075,
  23054. bottom: 0.07
  23055. },
  23056. form: "work-safe",
  23057. default: true
  23058. },
  23059. frontNsfw: {
  23060. height: math.unit(7.5, "feet"),
  23061. weight: math.unit(2, "lb"),
  23062. name: "Front",
  23063. image: {
  23064. source: "./media/characters/artemis/calibrating-front.svg",
  23065. extra: 1192 / 1075,
  23066. bottom: 0.07
  23067. },
  23068. form: "calibrating",
  23069. default: true
  23070. },
  23071. frontNsfwer: {
  23072. height: math.unit(7.5, "feet"),
  23073. weight: math.unit(2, "lb"),
  23074. name: "Front",
  23075. image: {
  23076. source: "./media/characters/artemis/oversize-load-front.svg",
  23077. extra: 1192 / 1075,
  23078. bottom: 0.07
  23079. },
  23080. form: "oversize-load",
  23081. default: true
  23082. },
  23083. side: {
  23084. height: math.unit(7.5, "feet"),
  23085. weight: math.unit(2, "lb"),
  23086. name: "Side",
  23087. image: {
  23088. source: "./media/characters/artemis/work-safe-side.svg",
  23089. extra: 1192 / 1075,
  23090. bottom: 0.07
  23091. },
  23092. form: "work-safe"
  23093. },
  23094. sideNsfw: {
  23095. height: math.unit(7.5, "feet"),
  23096. weight: math.unit(2, "lb"),
  23097. name: "Side",
  23098. image: {
  23099. source: "./media/characters/artemis/calibrating-side.svg",
  23100. extra: 1192 / 1075,
  23101. bottom: 0.07
  23102. },
  23103. form: "calibrating"
  23104. },
  23105. sideNsfwer: {
  23106. height: math.unit(7.5, "feet"),
  23107. weight: math.unit(2, "lb"),
  23108. name: "Side",
  23109. image: {
  23110. source: "./media/characters/artemis/oversize-load-side.svg",
  23111. extra: 1192 / 1075,
  23112. bottom: 0.07
  23113. },
  23114. form: "oversize-load"
  23115. },
  23116. maw: {
  23117. height: math.unit(1.1, "feet"),
  23118. name: "Maw",
  23119. image: {
  23120. source: "./media/characters/artemis/maw.svg"
  23121. },
  23122. form: "work-safe"
  23123. },
  23124. stomach: {
  23125. height: math.unit(0.95, "feet"),
  23126. name: "Stomach",
  23127. image: {
  23128. source: "./media/characters/artemis/stomach.svg"
  23129. },
  23130. form: "work-safe"
  23131. },
  23132. dickCanine: {
  23133. height: math.unit(1, "feet"),
  23134. name: "Dick (Canine)",
  23135. image: {
  23136. source: "./media/characters/artemis/dick-canine.svg"
  23137. },
  23138. form: "calibrating"
  23139. },
  23140. dickEquine: {
  23141. height: math.unit(0.85, "feet"),
  23142. name: "Dick (Equine)",
  23143. image: {
  23144. source: "./media/characters/artemis/dick-equine.svg"
  23145. },
  23146. form: "calibrating"
  23147. },
  23148. dickExotic: {
  23149. height: math.unit(0.85, "feet"),
  23150. name: "Dick (Exotic)",
  23151. image: {
  23152. source: "./media/characters/artemis/dick-exotic.svg"
  23153. },
  23154. form: "calibrating"
  23155. },
  23156. dickCanineBigger: {
  23157. height: math.unit(1 * 1.33, "feet"),
  23158. name: "Dick (Canine)",
  23159. image: {
  23160. source: "./media/characters/artemis/dick-canine.svg"
  23161. },
  23162. form: "oversize-load"
  23163. },
  23164. dickEquineBigger: {
  23165. height: math.unit(0.85 * 1.33, "feet"),
  23166. name: "Dick (Equine)",
  23167. image: {
  23168. source: "./media/characters/artemis/dick-equine.svg"
  23169. },
  23170. form: "oversize-load"
  23171. },
  23172. dickExoticBigger: {
  23173. height: math.unit(0.85 * 1.33, "feet"),
  23174. name: "Dick (Exotic)",
  23175. image: {
  23176. source: "./media/characters/artemis/dick-exotic.svg"
  23177. },
  23178. form: "oversize-load"
  23179. },
  23180. },
  23181. [
  23182. {
  23183. name: "Normal",
  23184. height: math.unit(7.5, "feet"),
  23185. form: "work-safe",
  23186. default: true
  23187. },
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(7.5, "feet"),
  23191. form: "calibrating",
  23192. default: true
  23193. },
  23194. {
  23195. name: "Normal",
  23196. height: math.unit(7.5, "feet"),
  23197. form: "oversize-load",
  23198. default: true
  23199. },
  23200. {
  23201. name: "Enlarged",
  23202. height: math.unit(12, "feet"),
  23203. form: "work-safe",
  23204. },
  23205. {
  23206. name: "Enlarged",
  23207. height: math.unit(12, "feet"),
  23208. form: "calibrating",
  23209. },
  23210. {
  23211. name: "Enlarged",
  23212. height: math.unit(12, "feet"),
  23213. form: "oversize-load",
  23214. },
  23215. ],
  23216. {
  23217. "work-safe": {
  23218. name: "Work-Safe",
  23219. default: true
  23220. },
  23221. "calibrating": {
  23222. name: "Calibrating"
  23223. },
  23224. "oversize-load": {
  23225. name: "Oversize Load"
  23226. }
  23227. }
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23231. {
  23232. front: {
  23233. height: math.unit(5 + 3 / 12, "feet"),
  23234. weight: math.unit(160, "lb"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/kira/front.svg",
  23238. extra: 906 / 786,
  23239. bottom: 0.01
  23240. }
  23241. },
  23242. back: {
  23243. height: math.unit(5 + 3 / 12, "feet"),
  23244. weight: math.unit(160, "lb"),
  23245. name: "Back",
  23246. image: {
  23247. source: "./media/characters/kira/back.svg",
  23248. extra: 882 / 757,
  23249. bottom: 0.005
  23250. }
  23251. },
  23252. frontDressed: {
  23253. height: math.unit(5 + 3 / 12, "feet"),
  23254. weight: math.unit(160, "lb"),
  23255. name: "Front (Dressed)",
  23256. image: {
  23257. source: "./media/characters/kira/front-dressed.svg",
  23258. extra: 906 / 786,
  23259. bottom: 0.01
  23260. }
  23261. },
  23262. beans: {
  23263. height: math.unit(0.92, "feet"),
  23264. name: "Beans",
  23265. image: {
  23266. source: "./media/characters/kira/beans.svg"
  23267. }
  23268. },
  23269. },
  23270. [
  23271. {
  23272. name: "Normal",
  23273. height: math.unit(5 + 3 / 12, "feet"),
  23274. default: true
  23275. },
  23276. ]
  23277. ))
  23278. characterMakers.push(() => makeCharacter(
  23279. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23280. {
  23281. front: {
  23282. height: math.unit(5 + 4 / 12, "feet"),
  23283. weight: math.unit(145, "lb"),
  23284. name: "Front",
  23285. image: {
  23286. source: "./media/characters/scramble/front.svg",
  23287. extra: 763 / 727,
  23288. bottom: 0.05
  23289. }
  23290. },
  23291. back: {
  23292. height: math.unit(5 + 4 / 12, "feet"),
  23293. weight: math.unit(145, "lb"),
  23294. name: "Back",
  23295. image: {
  23296. source: "./media/characters/scramble/back.svg",
  23297. extra: 826 / 737,
  23298. bottom: 0.002
  23299. }
  23300. },
  23301. },
  23302. [
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(5 + 4 / 12, "feet"),
  23306. default: true
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23312. {
  23313. side: {
  23314. height: math.unit(6 + 2 / 12, "feet"),
  23315. weight: math.unit(190, "lb"),
  23316. name: "Side",
  23317. image: {
  23318. source: "./media/characters/biscuit/side.svg",
  23319. extra: 858 / 791,
  23320. bottom: 0.044
  23321. }
  23322. },
  23323. },
  23324. [
  23325. {
  23326. name: "Normal",
  23327. height: math.unit(6 + 2 / 12, "feet"),
  23328. default: true
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23334. {
  23335. front: {
  23336. height: math.unit(5 + 2 / 12, "feet"),
  23337. weight: math.unit(120, "lb"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/poffin/front.svg",
  23341. extra: 786 / 680,
  23342. bottom: 0.005
  23343. }
  23344. },
  23345. },
  23346. [
  23347. {
  23348. name: "Normal",
  23349. height: math.unit(5 + 2 / 12, "feet"),
  23350. default: true
  23351. },
  23352. ]
  23353. ))
  23354. characterMakers.push(() => makeCharacter(
  23355. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23356. {
  23357. front: {
  23358. height: math.unit(6 + 3 / 12, "feet"),
  23359. weight: math.unit(519, "lb"),
  23360. name: "Front",
  23361. image: {
  23362. source: "./media/characters/dhari/front.svg",
  23363. extra: 1048 / 946,
  23364. bottom: 0.015
  23365. }
  23366. },
  23367. back: {
  23368. height: math.unit(6 + 3 / 12, "feet"),
  23369. weight: math.unit(519, "lb"),
  23370. name: "Back",
  23371. image: {
  23372. source: "./media/characters/dhari/back.svg",
  23373. extra: 1048 / 931,
  23374. bottom: 0.005
  23375. }
  23376. },
  23377. frontDressed: {
  23378. height: math.unit(6 + 3 / 12, "feet"),
  23379. weight: math.unit(519, "lb"),
  23380. name: "Front (Dressed)",
  23381. image: {
  23382. source: "./media/characters/dhari/front-dressed.svg",
  23383. extra: 1713 / 1546,
  23384. bottom: 0.02
  23385. }
  23386. },
  23387. backDressed: {
  23388. height: math.unit(6 + 3 / 12, "feet"),
  23389. weight: math.unit(519, "lb"),
  23390. name: "Back (Dressed)",
  23391. image: {
  23392. source: "./media/characters/dhari/back-dressed.svg",
  23393. extra: 1699 / 1537,
  23394. bottom: 0.01
  23395. }
  23396. },
  23397. maw: {
  23398. height: math.unit(0.95, "feet"),
  23399. name: "Maw",
  23400. image: {
  23401. source: "./media/characters/dhari/maw.svg"
  23402. }
  23403. },
  23404. wereFront: {
  23405. height: math.unit(12 + 8 / 12, "feet"),
  23406. weight: math.unit(4000, "lb"),
  23407. name: "Front (Were)",
  23408. image: {
  23409. source: "./media/characters/dhari/were-front.svg",
  23410. extra: 1065 / 969,
  23411. bottom: 0.015
  23412. }
  23413. },
  23414. wereBack: {
  23415. height: math.unit(12 + 8 / 12, "feet"),
  23416. weight: math.unit(4000, "lb"),
  23417. name: "Back (Were)",
  23418. image: {
  23419. source: "./media/characters/dhari/were-back.svg",
  23420. extra: 1065 / 969,
  23421. bottom: 0.012
  23422. }
  23423. },
  23424. wereMaw: {
  23425. height: math.unit(0.625, "meters"),
  23426. name: "Maw (Were)",
  23427. image: {
  23428. source: "./media/characters/dhari/were-maw.svg"
  23429. }
  23430. },
  23431. },
  23432. [
  23433. {
  23434. name: "Normal",
  23435. height: math.unit(6 + 3 / 12, "feet"),
  23436. default: true
  23437. },
  23438. ]
  23439. ))
  23440. characterMakers.push(() => makeCharacter(
  23441. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23442. {
  23443. anthro: {
  23444. height: math.unit(5 + 7 / 12, "feet"),
  23445. weight: math.unit(175, "lb"),
  23446. name: "Anthro",
  23447. image: {
  23448. source: "./media/characters/rena-dyne/anthro.svg",
  23449. extra: 1849 / 1785,
  23450. bottom: 0.005
  23451. }
  23452. },
  23453. taur: {
  23454. height: math.unit(15 + 6 / 12, "feet"),
  23455. weight: math.unit(8000, "lb"),
  23456. name: "Taur",
  23457. image: {
  23458. source: "./media/characters/rena-dyne/taur.svg",
  23459. extra: 2315 / 2234,
  23460. bottom: 0.033
  23461. }
  23462. },
  23463. },
  23464. [
  23465. {
  23466. name: "Normal",
  23467. height: math.unit(5 + 7 / 12, "feet"),
  23468. default: true
  23469. },
  23470. ]
  23471. ))
  23472. characterMakers.push(() => makeCharacter(
  23473. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23474. {
  23475. front: {
  23476. height: math.unit(8, "feet"),
  23477. weight: math.unit(600, "lb"),
  23478. name: "Front",
  23479. image: {
  23480. source: "./media/characters/weremeep/front.svg",
  23481. extra: 970/849,
  23482. bottom: 7/977
  23483. }
  23484. },
  23485. },
  23486. [
  23487. {
  23488. name: "Normal",
  23489. height: math.unit(8, "feet"),
  23490. default: true
  23491. },
  23492. {
  23493. name: "Lorg",
  23494. height: math.unit(12, "feet")
  23495. },
  23496. {
  23497. name: "Oh Lawd She Comin'",
  23498. height: math.unit(20, "feet")
  23499. },
  23500. ]
  23501. ))
  23502. characterMakers.push(() => makeCharacter(
  23503. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23504. {
  23505. front: {
  23506. height: math.unit(4, "feet"),
  23507. weight: math.unit(90, "lb"),
  23508. name: "Front",
  23509. image: {
  23510. source: "./media/characters/reza/front.svg",
  23511. extra: 1183 / 1111,
  23512. bottom: 0.017
  23513. }
  23514. },
  23515. back: {
  23516. height: math.unit(4, "feet"),
  23517. weight: math.unit(90, "lb"),
  23518. name: "Back",
  23519. image: {
  23520. source: "./media/characters/reza/back.svg",
  23521. extra: 1183 / 1111,
  23522. bottom: 0.01
  23523. }
  23524. },
  23525. drake: {
  23526. height: math.unit(30, "feet"),
  23527. weight: math.unit(246960, "lb"),
  23528. name: "Drake",
  23529. image: {
  23530. source: "./media/characters/reza/drake.svg",
  23531. extra: 2350 / 2024,
  23532. bottom: 60.7 / 2403
  23533. }
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(4, "feet"),
  23540. default: true
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23546. {
  23547. side: {
  23548. height: math.unit(15, "feet"),
  23549. weight: math.unit(14, "tons"),
  23550. name: "Side",
  23551. image: {
  23552. source: "./media/characters/athea/side.svg",
  23553. extra: 960 / 540,
  23554. bottom: 0.003
  23555. }
  23556. },
  23557. sitting: {
  23558. height: math.unit(6 * 2.85, "feet"),
  23559. weight: math.unit(14, "tons"),
  23560. name: "Sitting",
  23561. image: {
  23562. source: "./media/characters/athea/sitting.svg",
  23563. extra: 621 / 581,
  23564. bottom: 0.075
  23565. }
  23566. },
  23567. maw: {
  23568. height: math.unit(7.59498031496063, "feet"),
  23569. name: "Maw",
  23570. image: {
  23571. source: "./media/characters/athea/maw.svg"
  23572. }
  23573. },
  23574. },
  23575. [
  23576. {
  23577. name: "Lap Cat",
  23578. height: math.unit(2.5, "feet")
  23579. },
  23580. {
  23581. name: "Minimacro",
  23582. height: math.unit(15, "feet"),
  23583. default: true
  23584. },
  23585. {
  23586. name: "Macro",
  23587. height: math.unit(120, "feet")
  23588. },
  23589. {
  23590. name: "Macro+",
  23591. height: math.unit(640, "feet")
  23592. },
  23593. {
  23594. name: "Colossus",
  23595. height: math.unit(2.2, "miles")
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(8 + 8 / 12, "feet"),
  23604. weight: math.unit(130, "kg"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/seroko/front.svg",
  23608. extra: 1385 / 1280,
  23609. bottom: 0.025
  23610. }
  23611. },
  23612. back: {
  23613. height: math.unit(8 + 8 / 12, "feet"),
  23614. weight: math.unit(130, "kg"),
  23615. name: "Back",
  23616. image: {
  23617. source: "./media/characters/seroko/back.svg",
  23618. extra: 1369 / 1238,
  23619. bottom: 0.018
  23620. }
  23621. },
  23622. frontDressed: {
  23623. height: math.unit(8 + 8 / 12, "feet"),
  23624. weight: math.unit(130, "kg"),
  23625. name: "Front (Dressed)",
  23626. image: {
  23627. source: "./media/characters/seroko/front-dressed.svg",
  23628. extra: 1366 / 1275,
  23629. bottom: 0.03
  23630. }
  23631. },
  23632. },
  23633. [
  23634. {
  23635. name: "Normal",
  23636. height: math.unit(8 + 8 / 12, "feet"),
  23637. default: true
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23643. {
  23644. front: {
  23645. height: math.unit(5.5, "feet"),
  23646. weight: math.unit(160, "lb"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/quatzi/front.svg",
  23650. extra: 2346 / 2242,
  23651. bottom: 0.015
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(5.5, "feet"),
  23659. default: true
  23660. },
  23661. {
  23662. name: "Big",
  23663. height: math.unit(7.7, "feet")
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(5 + 11 / 12, "feet"),
  23672. weight: math.unit(180, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/sen/front.svg",
  23676. extra: 1321 / 1254,
  23677. bottom: 0.015
  23678. }
  23679. },
  23680. side: {
  23681. height: math.unit(5 + 11 / 12, "feet"),
  23682. weight: math.unit(180, "lb"),
  23683. name: "Side",
  23684. image: {
  23685. source: "./media/characters/sen/side.svg",
  23686. extra: 1321 / 1254,
  23687. bottom: 0.007
  23688. }
  23689. },
  23690. back: {
  23691. height: math.unit(5 + 11 / 12, "feet"),
  23692. weight: math.unit(180, "lb"),
  23693. name: "Back",
  23694. image: {
  23695. source: "./media/characters/sen/back.svg",
  23696. extra: 1321 / 1254
  23697. }
  23698. },
  23699. },
  23700. [
  23701. {
  23702. name: "Normal",
  23703. height: math.unit(5 + 11 / 12, "feet"),
  23704. default: true
  23705. },
  23706. ]
  23707. ))
  23708. characterMakers.push(() => makeCharacter(
  23709. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23710. {
  23711. front: {
  23712. height: math.unit(166.6, "cm"),
  23713. weight: math.unit(66.6, "kg"),
  23714. name: "Front",
  23715. image: {
  23716. source: "./media/characters/fruity/front.svg",
  23717. extra: 1510 / 1386,
  23718. bottom: 0.04
  23719. }
  23720. },
  23721. back: {
  23722. height: math.unit(166.6, "cm"),
  23723. weight: math.unit(66.6, "lb"),
  23724. name: "Back",
  23725. image: {
  23726. source: "./media/characters/fruity/back.svg",
  23727. extra: 1563 / 1435,
  23728. bottom: 0.005
  23729. }
  23730. },
  23731. },
  23732. [
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(166.6, "cm"),
  23736. default: true
  23737. },
  23738. {
  23739. name: "Demonic",
  23740. height: math.unit(166.6, "feet")
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23746. {
  23747. side: {
  23748. height: math.unit(10, "feet"),
  23749. weight: math.unit(500, "lb"),
  23750. name: "Side",
  23751. image: {
  23752. source: "./media/characters/zost/side.svg",
  23753. extra: 2870/2533,
  23754. bottom: 252/3122
  23755. }
  23756. },
  23757. mawFront: {
  23758. height: math.unit(1.08, "meters"),
  23759. name: "Maw (Front)",
  23760. image: {
  23761. source: "./media/characters/zost/maw-front.svg"
  23762. }
  23763. },
  23764. mawSide: {
  23765. height: math.unit(2.66, "feet"),
  23766. name: "Maw (Side)",
  23767. image: {
  23768. source: "./media/characters/zost/maw-side.svg"
  23769. }
  23770. },
  23771. wingspan: {
  23772. height: math.unit(7.4, "feet"),
  23773. name: "Wingspan",
  23774. image: {
  23775. source: "./media/characters/zost/wingspan.svg"
  23776. }
  23777. },
  23778. },
  23779. [
  23780. {
  23781. name: "Normal",
  23782. height: math.unit(10, "feet"),
  23783. default: true
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23789. {
  23790. front: {
  23791. height: math.unit(5 + 4 / 12, "feet"),
  23792. weight: math.unit(120, "lb"),
  23793. name: "Front",
  23794. image: {
  23795. source: "./media/characters/luci/front.svg",
  23796. extra: 1985 / 1884,
  23797. bottom: 0.04
  23798. }
  23799. },
  23800. back: {
  23801. height: math.unit(5 + 4 / 12, "feet"),
  23802. weight: math.unit(120, "lb"),
  23803. name: "Back",
  23804. image: {
  23805. source: "./media/characters/luci/back.svg",
  23806. extra: 1892 / 1791,
  23807. bottom: 0.002
  23808. }
  23809. },
  23810. },
  23811. [
  23812. {
  23813. name: "Normal",
  23814. height: math.unit(5 + 4 / 12, "feet"),
  23815. default: true
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23821. {
  23822. front: {
  23823. height: math.unit(1500, "feet"),
  23824. weight: math.unit(3.8e6, "tons"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/2th/front.svg",
  23828. extra: 3489 / 3350,
  23829. bottom: 0.1
  23830. }
  23831. },
  23832. foot: {
  23833. height: math.unit(461, "feet"),
  23834. name: "Foot",
  23835. image: {
  23836. source: "./media/characters/2th/foot.svg"
  23837. }
  23838. },
  23839. },
  23840. [
  23841. {
  23842. name: "\"Micro\"",
  23843. height: math.unit(15 + 7 / 12, "feet")
  23844. },
  23845. {
  23846. name: "Normal",
  23847. height: math.unit(1500, "feet"),
  23848. default: true
  23849. },
  23850. {
  23851. name: "Macro",
  23852. height: math.unit(5000, "feet")
  23853. },
  23854. {
  23855. name: "Megamacro",
  23856. height: math.unit(15, "miles")
  23857. },
  23858. {
  23859. name: "Gigamacro",
  23860. height: math.unit(4000, "miles")
  23861. },
  23862. {
  23863. name: "Galactic",
  23864. height: math.unit(50, "AU")
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23870. {
  23871. front: {
  23872. height: math.unit(5 + 6 / 12, "feet"),
  23873. weight: math.unit(220, "lb"),
  23874. name: "Front",
  23875. image: {
  23876. source: "./media/characters/amethyst/front.svg",
  23877. extra: 2078 / 2040,
  23878. bottom: 0.045
  23879. }
  23880. },
  23881. back: {
  23882. height: math.unit(5 + 6 / 12, "feet"),
  23883. weight: math.unit(220, "lb"),
  23884. name: "Back",
  23885. image: {
  23886. source: "./media/characters/amethyst/back.svg",
  23887. extra: 2021 / 1989,
  23888. bottom: 0.02
  23889. }
  23890. },
  23891. },
  23892. [
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(5 + 6 / 12, "feet"),
  23896. default: true
  23897. },
  23898. ]
  23899. ))
  23900. characterMakers.push(() => makeCharacter(
  23901. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23902. {
  23903. front: {
  23904. height: math.unit(4 + 11 / 12, "feet"),
  23905. weight: math.unit(120, "lb"),
  23906. name: "Front",
  23907. image: {
  23908. source: "./media/characters/yumi-akiyama/front.svg",
  23909. extra: 2638/2432,
  23910. bottom: 70/2708
  23911. }
  23912. },
  23913. back: {
  23914. height: math.unit(4 + 11 / 12, "feet"),
  23915. weight: math.unit(120, "lb"),
  23916. name: "Back",
  23917. image: {
  23918. source: "./media/characters/yumi-akiyama/back.svg",
  23919. extra: 2502/2397,
  23920. bottom: 80/2582
  23921. }
  23922. },
  23923. casual: {
  23924. height: math.unit(4 + 11 / 12, "feet"),
  23925. weight: math.unit(120, "lb"),
  23926. name: "Casual",
  23927. image: {
  23928. source: "./media/characters/yumi-akiyama/casual.svg",
  23929. extra: 958/887,
  23930. bottom: 41/999
  23931. }
  23932. },
  23933. jammies: {
  23934. height: math.unit(4 + 11 / 12, "feet"),
  23935. weight: math.unit(120, "lb"),
  23936. name: "Jammies",
  23937. image: {
  23938. source: "./media/characters/yumi-akiyama/jammies.svg",
  23939. extra: 958/894,
  23940. bottom: 37/995
  23941. }
  23942. },
  23943. warmWeather: {
  23944. height: math.unit(4 + 11 / 12, "feet"),
  23945. weight: math.unit(120, "lb"),
  23946. name: "Warm Weather",
  23947. image: {
  23948. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23949. extra: 929/865,
  23950. bottom: 76/1005
  23951. }
  23952. },
  23953. mouth: {
  23954. height: math.unit(0.35, "feet"),
  23955. name: "Mouth",
  23956. image: {
  23957. source: "./media/characters/yumi-akiyama/mouth.svg"
  23958. }
  23959. },
  23960. paws: {
  23961. height: math.unit(1.05, "feet"),
  23962. name: "Paws",
  23963. image: {
  23964. source: "./media/characters/yumi-akiyama/paws.svg"
  23965. }
  23966. },
  23967. cockRing: {
  23968. height: math.unit(0.225, "feet"),
  23969. name: "Cock Ring",
  23970. image: {
  23971. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Galactic",
  23978. height: math.unit(50, "galaxies"),
  23979. default: true
  23980. },
  23981. {
  23982. name: "Universal",
  23983. height: math.unit(100, "universes")
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23989. {
  23990. front: {
  23991. height: math.unit(8, "feet"),
  23992. weight: math.unit(500, "lb"),
  23993. name: "Front",
  23994. image: {
  23995. source: "./media/characters/rifter-yrmori/front.svg",
  23996. extra: 1180 / 1125,
  23997. bottom: 0.02
  23998. }
  23999. },
  24000. back: {
  24001. height: math.unit(8, "feet"),
  24002. weight: math.unit(500, "lb"),
  24003. name: "Back",
  24004. image: {
  24005. source: "./media/characters/rifter-yrmori/back.svg",
  24006. extra: 1190 / 1145,
  24007. bottom: 0.001
  24008. }
  24009. },
  24010. wings: {
  24011. height: math.unit(7.75, "feet"),
  24012. weight: math.unit(500, "lb"),
  24013. name: "Wings",
  24014. image: {
  24015. source: "./media/characters/rifter-yrmori/wings.svg",
  24016. extra: 1357 / 1285
  24017. }
  24018. },
  24019. maw: {
  24020. height: math.unit(0.8, "feet"),
  24021. name: "Maw",
  24022. image: {
  24023. source: "./media/characters/rifter-yrmori/maw.svg"
  24024. }
  24025. },
  24026. mawfront: {
  24027. height: math.unit(1.45, "feet"),
  24028. name: "Maw (Front)",
  24029. image: {
  24030. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24031. }
  24032. },
  24033. },
  24034. [
  24035. {
  24036. name: "Normal",
  24037. height: math.unit(8, "feet"),
  24038. default: true
  24039. },
  24040. {
  24041. name: "Macro",
  24042. height: math.unit(42, "meters")
  24043. },
  24044. ]
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24048. {
  24049. were: {
  24050. height: math.unit(25 + 6 / 12, "feet"),
  24051. weight: math.unit(10000, "lb"),
  24052. name: "Were",
  24053. image: {
  24054. source: "./media/characters/tahajin/were.svg",
  24055. extra: 801 / 770,
  24056. bottom: 0.042
  24057. }
  24058. },
  24059. aquatic: {
  24060. height: math.unit(6 + 4 / 12, "feet"),
  24061. weight: math.unit(160, "lb"),
  24062. name: "Aquatic",
  24063. image: {
  24064. source: "./media/characters/tahajin/aquatic.svg",
  24065. extra: 572 / 542,
  24066. bottom: 0.04
  24067. }
  24068. },
  24069. chow: {
  24070. height: math.unit(8 + 11 / 12, "feet"),
  24071. weight: math.unit(450, "lb"),
  24072. name: "Chow",
  24073. image: {
  24074. source: "./media/characters/tahajin/chow.svg",
  24075. extra: 660 / 640,
  24076. bottom: 0.015
  24077. }
  24078. },
  24079. demiNaga: {
  24080. height: math.unit(6 + 8 / 12, "feet"),
  24081. weight: math.unit(300, "lb"),
  24082. name: "Demi Naga",
  24083. image: {
  24084. source: "./media/characters/tahajin/demi-naga.svg",
  24085. extra: 643 / 615,
  24086. bottom: 0.1
  24087. }
  24088. },
  24089. data: {
  24090. height: math.unit(5, "inches"),
  24091. weight: math.unit(0.1, "lb"),
  24092. name: "Data",
  24093. image: {
  24094. source: "./media/characters/tahajin/data.svg"
  24095. }
  24096. },
  24097. fluu: {
  24098. height: math.unit(5 + 7 / 12, "feet"),
  24099. weight: math.unit(140, "lb"),
  24100. name: "Fluu",
  24101. image: {
  24102. source: "./media/characters/tahajin/fluu.svg",
  24103. extra: 628 / 592,
  24104. bottom: 0.02
  24105. }
  24106. },
  24107. starWarrior: {
  24108. height: math.unit(4 + 5 / 12, "feet"),
  24109. weight: math.unit(50, "lb"),
  24110. name: "Star Warrior",
  24111. image: {
  24112. source: "./media/characters/tahajin/star-warrior.svg"
  24113. }
  24114. },
  24115. },
  24116. [
  24117. {
  24118. name: "Normal",
  24119. height: math.unit(25 + 6 / 12, "feet"),
  24120. default: true
  24121. },
  24122. ]
  24123. ))
  24124. characterMakers.push(() => makeCharacter(
  24125. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24126. {
  24127. front: {
  24128. height: math.unit(8, "feet"),
  24129. weight: math.unit(350, "lb"),
  24130. name: "Front",
  24131. image: {
  24132. source: "./media/characters/gabira/front.svg",
  24133. extra: 1261/1154,
  24134. bottom: 51/1312
  24135. }
  24136. },
  24137. back: {
  24138. height: math.unit(8, "feet"),
  24139. weight: math.unit(350, "lb"),
  24140. name: "Back",
  24141. image: {
  24142. source: "./media/characters/gabira/back.svg",
  24143. extra: 1265/1163,
  24144. bottom: 46/1311
  24145. }
  24146. },
  24147. head: {
  24148. height: math.unit(2.85, "feet"),
  24149. name: "Head",
  24150. image: {
  24151. source: "./media/characters/gabira/head.svg"
  24152. }
  24153. },
  24154. },
  24155. [
  24156. {
  24157. name: "Normal",
  24158. height: math.unit(8, "feet"),
  24159. default: true
  24160. },
  24161. ]
  24162. ))
  24163. characterMakers.push(() => makeCharacter(
  24164. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24165. {
  24166. front: {
  24167. height: math.unit(5 + 3 / 12, "feet"),
  24168. weight: math.unit(137, "lb"),
  24169. name: "Front",
  24170. image: {
  24171. source: "./media/characters/sasha-katraine/front.svg",
  24172. extra: 1745/1694,
  24173. bottom: 37/1782
  24174. }
  24175. },
  24176. back: {
  24177. height: math.unit(5 + 3 / 12, "feet"),
  24178. weight: math.unit(137, "lb"),
  24179. name: "Back",
  24180. image: {
  24181. source: "./media/characters/sasha-katraine/back.svg",
  24182. extra: 1776/1699,
  24183. bottom: 26/1802
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Micro",
  24190. height: math.unit(5, "inches")
  24191. },
  24192. {
  24193. name: "Normal",
  24194. height: math.unit(5 + 3 / 12, "feet"),
  24195. default: true
  24196. },
  24197. ]
  24198. ))
  24199. characterMakers.push(() => makeCharacter(
  24200. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24201. {
  24202. side: {
  24203. height: math.unit(4, "inches"),
  24204. weight: math.unit(200, "grams"),
  24205. name: "Side",
  24206. image: {
  24207. source: "./media/characters/der/side.svg",
  24208. extra: 719 / 400,
  24209. bottom: 30.6 / 749.9187
  24210. }
  24211. },
  24212. },
  24213. [
  24214. {
  24215. name: "Micro",
  24216. height: math.unit(4, "inches"),
  24217. default: true
  24218. },
  24219. ]
  24220. ))
  24221. characterMakers.push(() => makeCharacter(
  24222. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24223. {
  24224. side: {
  24225. height: math.unit(30, "meters"),
  24226. weight: math.unit(700, "tonnes"),
  24227. name: "Side",
  24228. image: {
  24229. source: "./media/characters/fixerdragon/side.svg",
  24230. extra: (1293.0514 - 116.03) / 1106.86,
  24231. bottom: 116.03 / 1293.0514
  24232. }
  24233. },
  24234. },
  24235. [
  24236. {
  24237. name: "Planck",
  24238. height: math.unit(1.6e-35, "meters")
  24239. },
  24240. {
  24241. name: "Micro",
  24242. height: math.unit(0.4, "meters")
  24243. },
  24244. {
  24245. name: "Normal",
  24246. height: math.unit(30, "meters"),
  24247. default: true
  24248. },
  24249. {
  24250. name: "Megamacro",
  24251. height: math.unit(1.2, "megameters")
  24252. },
  24253. {
  24254. name: "Teramacro",
  24255. height: math.unit(130, "terameters")
  24256. },
  24257. {
  24258. name: "Yottamacro",
  24259. height: math.unit(6200, "yottameters")
  24260. },
  24261. ]
  24262. ));
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(8, "feet"),
  24268. weight: math.unit(250, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/kite/front.svg",
  24272. extra: 2796 / 2659,
  24273. bottom: 0.002
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(8, "feet"),
  24281. default: true
  24282. },
  24283. {
  24284. name: "Macro",
  24285. height: math.unit(360, "feet")
  24286. },
  24287. {
  24288. name: "Megamacro",
  24289. height: math.unit(1500, "feet")
  24290. },
  24291. ]
  24292. ))
  24293. characterMakers.push(() => makeCharacter(
  24294. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24295. {
  24296. anthro_front: {
  24297. height: math.unit(5 + 11/12, "feet"),
  24298. weight: math.unit(170, "lb"),
  24299. name: "Front",
  24300. image: {
  24301. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24302. extra: 1735/1585,
  24303. bottom: 96/1831
  24304. },
  24305. form: "anthro",
  24306. default: true
  24307. },
  24308. anthro_back: {
  24309. height: math.unit(5 + 11/12, "feet"),
  24310. weight: math.unit(170, "lb"),
  24311. name: "Back",
  24312. image: {
  24313. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24314. extra: 1749/1607,
  24315. bottom: 28/1777
  24316. },
  24317. form: "anthro"
  24318. },
  24319. anthro_male: {
  24320. height: math.unit(5 + 11/12, "feet"),
  24321. weight: math.unit(170, "lb"),
  24322. name: "Male",
  24323. image: {
  24324. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24325. extra: 1855/1713,
  24326. bottom: 63/1918
  24327. },
  24328. form: "anthro"
  24329. },
  24330. taur_front: {
  24331. height: math.unit(5 + 7/12, "feet"),
  24332. weight: math.unit(170, "lb"),
  24333. name: "Front",
  24334. image: {
  24335. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24336. extra: 1151/1059,
  24337. bottom: 356/1507
  24338. },
  24339. form: "taur",
  24340. default: true
  24341. },
  24342. anthro_frontDressed: {
  24343. height: math.unit(5 + 11/12, "feet"),
  24344. weight: math.unit(170, "lb"),
  24345. name: "Front (Dressed)",
  24346. image: {
  24347. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24348. extra: 1735/1585,
  24349. bottom: 96/1831
  24350. },
  24351. form: "anthro"
  24352. },
  24353. anthro_backDressed: {
  24354. height: math.unit(5 + 11/12, "feet"),
  24355. weight: math.unit(170, "lb"),
  24356. name: "Back (Dressed)",
  24357. image: {
  24358. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24359. extra: 1749/1607,
  24360. bottom: 28/1777
  24361. },
  24362. form: "anthro"
  24363. },
  24364. anthro_maleDressed: {
  24365. height: math.unit(5 + 11/12, "feet"),
  24366. weight: math.unit(170, "lb"),
  24367. name: "Male (Dressed)",
  24368. image: {
  24369. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24370. extra: 1855/1713,
  24371. bottom: 63/1918
  24372. },
  24373. form: "anthro"
  24374. },
  24375. taur_frontDressed: {
  24376. height: math.unit(5 + 7/12, "feet"),
  24377. weight: math.unit(170, "lb"),
  24378. name: "Front (Dressed)",
  24379. image: {
  24380. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24381. extra: 1151/1059,
  24382. bottom: 356/1507
  24383. },
  24384. form: "taur"
  24385. },
  24386. maw: {
  24387. height: math.unit(1.46, "feet"),
  24388. name: "Maw",
  24389. image: {
  24390. source: "./media/characters/poojawa-vynar/maw.svg"
  24391. },
  24392. allForms: true
  24393. },
  24394. head: {
  24395. height: math.unit(2.34, "feet"),
  24396. name: "Head",
  24397. image: {
  24398. source: "./media/characters/poojawa-vynar/head.svg"
  24399. },
  24400. allForms: true
  24401. },
  24402. leftPaw: {
  24403. height: math.unit(1.72, "feet"),
  24404. name: "Left Paw",
  24405. image: {
  24406. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24407. },
  24408. allForms: true
  24409. },
  24410. rightPaw: {
  24411. height: math.unit(1.61, "feet"),
  24412. name: "Right Paw",
  24413. image: {
  24414. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24415. },
  24416. allForms: true
  24417. },
  24418. toering: {
  24419. height: math.unit(2.9, "inches"),
  24420. name: "Toering",
  24421. image: {
  24422. source: "./media/characters/poojawa-vynar/toering.svg"
  24423. },
  24424. allForms: true
  24425. },
  24426. shaft: {
  24427. height: math.unit(0.625, "feet"),
  24428. name: "Shaft",
  24429. image: {
  24430. source: "./media/characters/poojawa-vynar/shaft.svg"
  24431. },
  24432. allForms: true
  24433. },
  24434. spade: {
  24435. height: math.unit(0.42, "feet"),
  24436. name: "Spade",
  24437. image: {
  24438. source: "./media/characters/poojawa-vynar/spade.svg"
  24439. },
  24440. allForms: true
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Shortstack",
  24446. height: math.unit(4, "feet"),
  24447. form: "anthro"
  24448. },
  24449. {
  24450. name: "Normal",
  24451. height: math.unit(5 + 11 / 12, "feet"),
  24452. form: "anthro",
  24453. default: true
  24454. },
  24455. {
  24456. name: "Tauric",
  24457. height: math.unit(4, "meters"),
  24458. form: "taur",
  24459. default: true
  24460. },
  24461. ],
  24462. {
  24463. "anthro": {
  24464. name: "Anthro",
  24465. default: true
  24466. },
  24467. "taur": {
  24468. name: "Taur",
  24469. },
  24470. }
  24471. ))
  24472. characterMakers.push(() => makeCharacter(
  24473. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24474. {
  24475. front: {
  24476. height: math.unit(293, "meters"),
  24477. weight: math.unit(70400, "tons"),
  24478. name: "Front",
  24479. image: {
  24480. source: "./media/characters/violette/front.svg",
  24481. extra: 1227 / 1180,
  24482. bottom: 0.005
  24483. }
  24484. },
  24485. back: {
  24486. height: math.unit(293, "meters"),
  24487. weight: math.unit(70400, "tons"),
  24488. name: "Back",
  24489. image: {
  24490. source: "./media/characters/violette/back.svg",
  24491. extra: 1227 / 1180,
  24492. bottom: 0.005
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "Macro",
  24499. height: math.unit(293, "meters"),
  24500. default: true
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24506. {
  24507. front: {
  24508. height: math.unit(1050, "feet"),
  24509. weight: math.unit(200000, "tons"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/alessandra/front.svg",
  24513. extra: 960 / 912,
  24514. bottom: 0.06
  24515. }
  24516. },
  24517. },
  24518. [
  24519. {
  24520. name: "Macro",
  24521. height: math.unit(1050, "feet")
  24522. },
  24523. {
  24524. name: "Macro+",
  24525. height: math.unit(900, "meters"),
  24526. default: true
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24532. {
  24533. front: {
  24534. height: math.unit(5, "feet"),
  24535. weight: math.unit(187, "lb"),
  24536. name: "Front",
  24537. image: {
  24538. source: "./media/characters/person/front.svg",
  24539. extra: 3087 / 2945,
  24540. bottom: 91 / 3181
  24541. }
  24542. },
  24543. },
  24544. [
  24545. {
  24546. name: "Micro",
  24547. height: math.unit(3, "inches")
  24548. },
  24549. {
  24550. name: "Normal",
  24551. height: math.unit(5, "feet"),
  24552. default: true
  24553. },
  24554. {
  24555. name: "Macro",
  24556. height: math.unit(90, "feet")
  24557. },
  24558. {
  24559. name: "Max Size",
  24560. height: math.unit(280, "feet")
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24566. {
  24567. front: {
  24568. height: math.unit(4.5, "meters"),
  24569. weight: math.unit(3200, "lb"),
  24570. name: "Front",
  24571. image: {
  24572. source: "./media/characters/ty/front.svg",
  24573. extra: 1038 / 960,
  24574. bottom: 31.156 / 1068
  24575. }
  24576. },
  24577. back: {
  24578. height: math.unit(4.5, "meters"),
  24579. weight: math.unit(3200, "lb"),
  24580. name: "Back",
  24581. image: {
  24582. source: "./media/characters/ty/back.svg",
  24583. extra: 1044 / 966,
  24584. bottom: 7.48 / 1049
  24585. }
  24586. },
  24587. },
  24588. [
  24589. {
  24590. name: "Normal",
  24591. height: math.unit(4.5, "meters"),
  24592. default: true
  24593. },
  24594. ]
  24595. ))
  24596. characterMakers.push(() => makeCharacter(
  24597. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24598. {
  24599. front: {
  24600. height: math.unit(5 + 4 / 12, "feet"),
  24601. weight: math.unit(115, "lb"),
  24602. name: "Front",
  24603. image: {
  24604. source: "./media/characters/rocky/front.svg",
  24605. extra: 1012 / 975,
  24606. bottom: 54 / 1066
  24607. }
  24608. },
  24609. },
  24610. [
  24611. {
  24612. name: "Normal",
  24613. height: math.unit(5 + 4 / 12, "feet"),
  24614. default: true
  24615. },
  24616. ]
  24617. ))
  24618. characterMakers.push(() => makeCharacter(
  24619. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24620. {
  24621. upright: {
  24622. height: math.unit(6, "meters"),
  24623. weight: math.unit(4000, "kg"),
  24624. name: "Upright",
  24625. image: {
  24626. source: "./media/characters/ruin/upright.svg",
  24627. extra: 668 / 661,
  24628. bottom: 42 / 799.8396
  24629. }
  24630. },
  24631. },
  24632. [
  24633. {
  24634. name: "Normal",
  24635. height: math.unit(6, "meters"),
  24636. default: true
  24637. },
  24638. ]
  24639. ))
  24640. characterMakers.push(() => makeCharacter(
  24641. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24642. {
  24643. front: {
  24644. height: math.unit(5, "feet"),
  24645. weight: math.unit(106, "lb"),
  24646. name: "Front",
  24647. image: {
  24648. source: "./media/characters/robin/front.svg",
  24649. extra: 862 / 799,
  24650. bottom: 42.4 / 914.8856
  24651. }
  24652. },
  24653. },
  24654. [
  24655. {
  24656. name: "Normal",
  24657. height: math.unit(5, "feet"),
  24658. default: true
  24659. },
  24660. ]
  24661. ))
  24662. characterMakers.push(() => makeCharacter(
  24663. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24664. {
  24665. side: {
  24666. height: math.unit(3, "feet"),
  24667. weight: math.unit(225, "lb"),
  24668. name: "Side",
  24669. image: {
  24670. source: "./media/characters/saian/side.svg",
  24671. extra: 566 / 356,
  24672. bottom: 79.7 / 643
  24673. }
  24674. },
  24675. maw: {
  24676. height: math.unit(2.85, "feet"),
  24677. name: "Maw",
  24678. image: {
  24679. source: "./media/characters/saian/maw.svg"
  24680. }
  24681. },
  24682. },
  24683. [
  24684. {
  24685. name: "Normal",
  24686. height: math.unit(3, "feet"),
  24687. default: true
  24688. },
  24689. ]
  24690. ))
  24691. characterMakers.push(() => makeCharacter(
  24692. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24693. {
  24694. side: {
  24695. height: math.unit(8, "feet"),
  24696. weight: math.unit(300, "lb"),
  24697. name: "Side",
  24698. image: {
  24699. source: "./media/characters/equus-silvermane/side.svg",
  24700. extra: 2176 / 2050,
  24701. bottom: 65.7 / 2245
  24702. }
  24703. },
  24704. front: {
  24705. height: math.unit(8, "feet"),
  24706. weight: math.unit(300, "lb"),
  24707. name: "Front",
  24708. image: {
  24709. source: "./media/characters/equus-silvermane/front.svg",
  24710. extra: 4633 / 4400,
  24711. bottom: 71.3 / 4706.915
  24712. }
  24713. },
  24714. sideStepping: {
  24715. height: math.unit(8, "feet"),
  24716. weight: math.unit(300, "lb"),
  24717. name: "Side (Stepping)",
  24718. image: {
  24719. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24720. extra: 1968 / 1860,
  24721. bottom: 16.4 / 1989
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Normal",
  24728. height: math.unit(8, "feet")
  24729. },
  24730. {
  24731. name: "Minimacro",
  24732. height: math.unit(75, "feet"),
  24733. default: true
  24734. },
  24735. {
  24736. name: "Macro",
  24737. height: math.unit(150, "feet")
  24738. },
  24739. {
  24740. name: "Macro+",
  24741. height: math.unit(1000, "feet")
  24742. },
  24743. {
  24744. name: "Megamacro",
  24745. height: math.unit(1, "mile")
  24746. },
  24747. ]
  24748. ))
  24749. characterMakers.push(() => makeCharacter(
  24750. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24751. {
  24752. side: {
  24753. height: math.unit(20, "feet"),
  24754. weight: math.unit(30000, "kg"),
  24755. name: "Side",
  24756. image: {
  24757. source: "./media/characters/windar/side.svg",
  24758. extra: 1491 / 1248,
  24759. bottom: 82.56 / 1568
  24760. }
  24761. },
  24762. },
  24763. [
  24764. {
  24765. name: "Normal",
  24766. height: math.unit(20, "feet"),
  24767. default: true
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24773. {
  24774. side: {
  24775. height: math.unit(15.66, "feet"),
  24776. weight: math.unit(150, "lb"),
  24777. name: "Side",
  24778. image: {
  24779. source: "./media/characters/melody/side.svg",
  24780. extra: 1097 / 944,
  24781. bottom: 11.8 / 1109
  24782. }
  24783. },
  24784. sideOutfit: {
  24785. height: math.unit(15.66, "feet"),
  24786. weight: math.unit(150, "lb"),
  24787. name: "Side (Outfit)",
  24788. image: {
  24789. source: "./media/characters/melody/side-outfit.svg",
  24790. extra: 1097 / 944,
  24791. bottom: 11.8 / 1109
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(15.66, "feet"),
  24799. default: true
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24805. {
  24806. armoredFront: {
  24807. height: math.unit(8, "feet"),
  24808. weight: math.unit(325, "lb"),
  24809. name: "Front",
  24810. image: {
  24811. source: "./media/characters/windera/armored-front.svg",
  24812. extra: 1830/1598,
  24813. bottom: 151/1981
  24814. },
  24815. form: "armored",
  24816. default: true
  24817. },
  24818. macroFront: {
  24819. height: math.unit(70, "feet"),
  24820. weight: math.unit(315453, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/windera/macro-front.svg",
  24824. extra: 963/883,
  24825. bottom: 23/986
  24826. },
  24827. form: "macro",
  24828. default: true
  24829. },
  24830. },
  24831. [
  24832. {
  24833. name: "Normal",
  24834. height: math.unit(8, "feet"),
  24835. default: true,
  24836. form: "armored"
  24837. },
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(70, "feet"),
  24841. default: true,
  24842. form: "macro"
  24843. },
  24844. ],
  24845. {
  24846. "armored": {
  24847. name: "Armored",
  24848. default: true
  24849. },
  24850. "macro": {
  24851. name: "Macro",
  24852. },
  24853. }
  24854. ))
  24855. characterMakers.push(() => makeCharacter(
  24856. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24857. {
  24858. front: {
  24859. height: math.unit(28.75, "feet"),
  24860. weight: math.unit(2000, "kg"),
  24861. name: "Front",
  24862. image: {
  24863. source: "./media/characters/sonear/front.svg",
  24864. extra: 1041.1 / 964.9,
  24865. bottom: 53.7 / 1096.6
  24866. }
  24867. },
  24868. },
  24869. [
  24870. {
  24871. name: "Normal",
  24872. height: math.unit(28.75, "feet"),
  24873. default: true
  24874. },
  24875. ]
  24876. ))
  24877. characterMakers.push(() => makeCharacter(
  24878. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24879. {
  24880. side: {
  24881. height: math.unit(25.5, "feet"),
  24882. weight: math.unit(23000, "kg"),
  24883. name: "Side",
  24884. image: {
  24885. source: "./media/characters/kanara/side.svg"
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Normal",
  24892. height: math.unit(25.5, "feet"),
  24893. default: true
  24894. },
  24895. ]
  24896. ))
  24897. characterMakers.push(() => makeCharacter(
  24898. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24899. {
  24900. side: {
  24901. height: math.unit(10, "feet"),
  24902. weight: math.unit(1000, "kg"),
  24903. name: "Side",
  24904. image: {
  24905. source: "./media/characters/ereus/side.svg",
  24906. extra: 1157 / 959,
  24907. bottom: 153 / 1312.5
  24908. }
  24909. },
  24910. },
  24911. [
  24912. {
  24913. name: "Normal",
  24914. height: math.unit(10, "feet"),
  24915. default: true
  24916. },
  24917. ]
  24918. ))
  24919. characterMakers.push(() => makeCharacter(
  24920. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24921. {
  24922. side: {
  24923. height: math.unit(4.5, "feet"),
  24924. weight: math.unit(500, "lb"),
  24925. name: "Side",
  24926. image: {
  24927. source: "./media/characters/e-ter/side.svg",
  24928. extra: 1550 / 1248,
  24929. bottom: 146 / 1694
  24930. }
  24931. },
  24932. },
  24933. [
  24934. {
  24935. name: "Normal",
  24936. height: math.unit(4.5, "feet"),
  24937. default: true
  24938. },
  24939. ]
  24940. ))
  24941. characterMakers.push(() => makeCharacter(
  24942. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24943. {
  24944. side: {
  24945. height: math.unit(9.7, "feet"),
  24946. weight: math.unit(4000, "kg"),
  24947. name: "Side",
  24948. image: {
  24949. source: "./media/characters/yamie/side.svg"
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Normal",
  24956. height: math.unit(9.7, "feet"),
  24957. default: true
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24963. {
  24964. front: {
  24965. height: math.unit(50, "feet"),
  24966. weight: math.unit(50000, "kg"),
  24967. name: "Front",
  24968. image: {
  24969. source: "./media/characters/anders/front.svg",
  24970. extra: 570 / 539,
  24971. bottom: 14.7 / 586.7
  24972. }
  24973. },
  24974. },
  24975. [
  24976. {
  24977. name: "Large",
  24978. height: math.unit(50, "feet")
  24979. },
  24980. {
  24981. name: "Macro",
  24982. height: math.unit(2000, "feet"),
  24983. default: true
  24984. },
  24985. {
  24986. name: "Megamacro",
  24987. height: math.unit(12, "miles")
  24988. },
  24989. ]
  24990. ))
  24991. characterMakers.push(() => makeCharacter(
  24992. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24993. {
  24994. front: {
  24995. height: math.unit(7 + 2 / 12, "feet"),
  24996. weight: math.unit(300, "lb"),
  24997. name: "Front",
  24998. image: {
  24999. source: "./media/characters/reban/front.svg",
  25000. extra: 1287/1212,
  25001. bottom: 148/1435
  25002. }
  25003. },
  25004. head: {
  25005. height: math.unit(1.95, "feet"),
  25006. name: "Head",
  25007. image: {
  25008. source: "./media/characters/reban/head.svg"
  25009. }
  25010. },
  25011. maw: {
  25012. height: math.unit(0.95, "feet"),
  25013. name: "Maw",
  25014. image: {
  25015. source: "./media/characters/reban/maw.svg"
  25016. }
  25017. },
  25018. foot: {
  25019. height: math.unit(1.65, "feet"),
  25020. name: "Foot",
  25021. image: {
  25022. source: "./media/characters/reban/foot.svg"
  25023. }
  25024. },
  25025. dick: {
  25026. height: math.unit(7 / 5, "feet"),
  25027. name: "Dick",
  25028. image: {
  25029. source: "./media/characters/reban/dick.svg"
  25030. }
  25031. },
  25032. },
  25033. [
  25034. {
  25035. name: "Natural Height",
  25036. height: math.unit(7 + 2 / 12, "feet")
  25037. },
  25038. {
  25039. name: "Macro",
  25040. height: math.unit(500, "feet"),
  25041. default: true
  25042. },
  25043. {
  25044. name: "Canon Height",
  25045. height: math.unit(50, "AU")
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(6, "feet"),
  25054. weight: math.unit(150, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/terrance-keayes/front.svg",
  25058. extra: 1.005,
  25059. bottom: 151 / 1615
  25060. }
  25061. },
  25062. side: {
  25063. height: math.unit(6, "feet"),
  25064. weight: math.unit(150, "lb"),
  25065. name: "Side",
  25066. image: {
  25067. source: "./media/characters/terrance-keayes/side.svg",
  25068. extra: 1.005,
  25069. bottom: 129.4 / 1544
  25070. }
  25071. },
  25072. back: {
  25073. height: math.unit(6, "feet"),
  25074. weight: math.unit(150, "lb"),
  25075. name: "Back",
  25076. image: {
  25077. source: "./media/characters/terrance-keayes/back.svg",
  25078. extra: 1.005,
  25079. bottom: 58.4 / 1557.3
  25080. }
  25081. },
  25082. dick: {
  25083. height: math.unit(6 * 0.208, "feet"),
  25084. name: "Dick",
  25085. image: {
  25086. source: "./media/characters/terrance-keayes/dick.svg"
  25087. }
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Canon Height",
  25093. height: math.unit(35, "miles"),
  25094. default: true
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25100. {
  25101. front: {
  25102. height: math.unit(6, "feet"),
  25103. weight: math.unit(150, "lb"),
  25104. name: "Front",
  25105. image: {
  25106. source: "./media/characters/ofelia/front.svg",
  25107. extra: 1130/1117,
  25108. bottom: 91/1221
  25109. }
  25110. },
  25111. back: {
  25112. height: math.unit(6, "feet"),
  25113. weight: math.unit(150, "lb"),
  25114. name: "Back",
  25115. image: {
  25116. source: "./media/characters/ofelia/back.svg",
  25117. extra: 1172/1159,
  25118. bottom: 28/1200
  25119. }
  25120. },
  25121. maw: {
  25122. height: math.unit(1, "feet"),
  25123. name: "Maw",
  25124. image: {
  25125. source: "./media/characters/ofelia/maw.svg"
  25126. }
  25127. },
  25128. foot: {
  25129. height: math.unit(1.949, "feet"),
  25130. name: "Foot",
  25131. image: {
  25132. source: "./media/characters/ofelia/foot.svg"
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Canon Height",
  25139. height: math.unit(2000, "miles"),
  25140. default: true
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(6, "feet"),
  25149. weight: math.unit(150, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/samuel/front.svg",
  25153. extra: 265 / 258,
  25154. bottom: 2 / 266.1566
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Macro",
  25161. height: math.unit(100, "feet"),
  25162. default: true
  25163. },
  25164. {
  25165. name: "Full Size",
  25166. height: math.unit(1000, "miles")
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25172. {
  25173. front: {
  25174. height: math.unit(6, "feet"),
  25175. weight: math.unit(300, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/beishir-kiel/front.svg",
  25179. extra: 569 / 547,
  25180. bottom: 41.9 / 609
  25181. }
  25182. },
  25183. maw: {
  25184. height: math.unit(6 * 0.202, "feet"),
  25185. name: "Maw",
  25186. image: {
  25187. source: "./media/characters/beishir-kiel/maw.svg"
  25188. }
  25189. },
  25190. },
  25191. [
  25192. {
  25193. name: "Macro",
  25194. height: math.unit(300, "feet"),
  25195. default: true
  25196. },
  25197. ]
  25198. ))
  25199. characterMakers.push(() => makeCharacter(
  25200. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25201. {
  25202. front: {
  25203. height: math.unit(5 + 7/12, "feet"),
  25204. weight: math.unit(120, "lb"),
  25205. name: "Front",
  25206. image: {
  25207. source: "./media/characters/logan-grey/front.svg",
  25208. extra: 1836/1738,
  25209. bottom: 108/1944
  25210. }
  25211. },
  25212. back: {
  25213. height: math.unit(5 + 7/12, "feet"),
  25214. weight: math.unit(120, "lb"),
  25215. name: "Back",
  25216. image: {
  25217. source: "./media/characters/logan-grey/back.svg",
  25218. extra: 1880/1794,
  25219. bottom: 24/1904
  25220. }
  25221. },
  25222. frontSfw: {
  25223. height: math.unit(5 + 7/12, "feet"),
  25224. weight: math.unit(120, "lb"),
  25225. name: "Front (SFW)",
  25226. image: {
  25227. source: "./media/characters/logan-grey/front-sfw.svg",
  25228. extra: 1836/1738,
  25229. bottom: 108/1944
  25230. }
  25231. },
  25232. backSfw: {
  25233. height: math.unit(5 + 7/12, "feet"),
  25234. weight: math.unit(120, "lb"),
  25235. name: "Back (SFW)",
  25236. image: {
  25237. source: "./media/characters/logan-grey/back-sfw.svg",
  25238. extra: 1880/1794,
  25239. bottom: 24/1904
  25240. }
  25241. },
  25242. hands: {
  25243. height: math.unit(0.84, "feet"),
  25244. name: "Hands",
  25245. image: {
  25246. source: "./media/characters/logan-grey/hands.svg"
  25247. }
  25248. },
  25249. paws: {
  25250. height: math.unit(0.72, "feet"),
  25251. name: "Paws",
  25252. image: {
  25253. source: "./media/characters/logan-grey/paws.svg"
  25254. }
  25255. },
  25256. cock: {
  25257. height: math.unit(1.45, "feet"),
  25258. name: "Cock",
  25259. image: {
  25260. source: "./media/characters/logan-grey/cock.svg"
  25261. }
  25262. },
  25263. cockAlt: {
  25264. height: math.unit(1.437, "feet"),
  25265. name: "Cock (alt)",
  25266. image: {
  25267. source: "./media/characters/logan-grey/cock-alt.svg"
  25268. }
  25269. },
  25270. },
  25271. [
  25272. {
  25273. name: "Normal",
  25274. height: math.unit(5 + 8 / 12, "feet")
  25275. },
  25276. {
  25277. name: "The 500 Foot Femboy",
  25278. height: math.unit(500, "feet"),
  25279. default: true
  25280. },
  25281. {
  25282. name: "Megmacro",
  25283. height: math.unit(20, "miles")
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25289. {
  25290. front: {
  25291. height: math.unit(8 + 2 / 12, "feet"),
  25292. weight: math.unit(275, "lb"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/draganta/front.svg",
  25296. extra: 1177 / 1135,
  25297. bottom: 33.46 / 1212.1
  25298. }
  25299. },
  25300. },
  25301. [
  25302. {
  25303. name: "Normal",
  25304. height: math.unit(8 + 6 / 12, "feet"),
  25305. default: true
  25306. },
  25307. {
  25308. name: "Macro",
  25309. height: math.unit(150, "feet")
  25310. },
  25311. {
  25312. name: "Megamacro",
  25313. height: math.unit(1000, "miles")
  25314. },
  25315. ]
  25316. ))
  25317. characterMakers.push(() => makeCharacter(
  25318. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25319. {
  25320. front: {
  25321. height: math.unit(1.72, "m"),
  25322. weight: math.unit(80, "lb"),
  25323. name: "Front",
  25324. image: {
  25325. source: "./media/characters/voski/front.svg",
  25326. extra: 2076.22 / 2022.4,
  25327. bottom: 102.7 / 2177.3866
  25328. }
  25329. },
  25330. frontFlaccid: {
  25331. height: math.unit(1.72, "m"),
  25332. weight: math.unit(80, "lb"),
  25333. name: "Front (Flaccid)",
  25334. image: {
  25335. source: "./media/characters/voski/front-flaccid.svg",
  25336. extra: 2076.22 / 2022.4,
  25337. bottom: 102.7 / 2177.3866
  25338. }
  25339. },
  25340. frontErect: {
  25341. height: math.unit(1.72, "m"),
  25342. weight: math.unit(80, "lb"),
  25343. name: "Front (Erect)",
  25344. image: {
  25345. source: "./media/characters/voski/front-erect.svg",
  25346. extra: 2076.22 / 2022.4,
  25347. bottom: 102.7 / 2177.3866
  25348. }
  25349. },
  25350. back: {
  25351. height: math.unit(1.72, "m"),
  25352. weight: math.unit(80, "lb"),
  25353. name: "Back",
  25354. image: {
  25355. source: "./media/characters/voski/back.svg",
  25356. extra: 2104 / 2051,
  25357. bottom: 10.45 / 2113.63
  25358. }
  25359. },
  25360. },
  25361. [
  25362. {
  25363. name: "Normal",
  25364. height: math.unit(1.72, "m")
  25365. },
  25366. {
  25367. name: "Macro",
  25368. height: math.unit(55, "m"),
  25369. default: true
  25370. },
  25371. {
  25372. name: "Macro+",
  25373. height: math.unit(300, "m")
  25374. },
  25375. {
  25376. name: "Macro++",
  25377. height: math.unit(700, "m")
  25378. },
  25379. {
  25380. name: "Macro+++",
  25381. height: math.unit(4500, "m")
  25382. },
  25383. {
  25384. name: "Macro++++",
  25385. height: math.unit(45, "km")
  25386. },
  25387. {
  25388. name: "Macro+++++",
  25389. height: math.unit(1220, "km")
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25395. {
  25396. front: {
  25397. height: math.unit(2.3, "m"),
  25398. weight: math.unit(304, "kg"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/icowom-lee/front.svg",
  25402. extra: 985 / 955,
  25403. bottom: 25.4 / 1012
  25404. }
  25405. },
  25406. fronttentacles: {
  25407. height: math.unit(2.3, "m"),
  25408. weight: math.unit(304, "kg"),
  25409. name: "Front-tentacles",
  25410. image: {
  25411. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25412. extra: 985 / 955,
  25413. bottom: 25.4 / 1012
  25414. }
  25415. },
  25416. back: {
  25417. height: math.unit(2.3, "m"),
  25418. weight: math.unit(304, "kg"),
  25419. name: "Back",
  25420. image: {
  25421. source: "./media/characters/icowom-lee/back.svg",
  25422. extra: 975 / 954,
  25423. bottom: 9.5 / 985
  25424. }
  25425. },
  25426. backtentacles: {
  25427. height: math.unit(2.3, "m"),
  25428. weight: math.unit(304, "kg"),
  25429. name: "Back-tentacles",
  25430. image: {
  25431. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25432. extra: 975 / 954,
  25433. bottom: 9.5 / 985
  25434. }
  25435. },
  25436. frontDressed: {
  25437. height: math.unit(2.3, "m"),
  25438. weight: math.unit(304, "kg"),
  25439. name: "Front (Dressed)",
  25440. image: {
  25441. source: "./media/characters/icowom-lee/front-dressed.svg",
  25442. extra: 3076 / 2933,
  25443. bottom: 51.4 / 3125.1889
  25444. }
  25445. },
  25446. rump: {
  25447. height: math.unit(0.776, "meters"),
  25448. name: "Rump",
  25449. image: {
  25450. source: "./media/characters/icowom-lee/rump.svg"
  25451. }
  25452. },
  25453. genitals: {
  25454. height: math.unit(0.78, "meters"),
  25455. name: "Genitals",
  25456. image: {
  25457. source: "./media/characters/icowom-lee/genitals.svg"
  25458. }
  25459. },
  25460. },
  25461. [
  25462. {
  25463. name: "Normal",
  25464. height: math.unit(2.3, "meters"),
  25465. default: true
  25466. },
  25467. {
  25468. name: "Macro",
  25469. height: math.unit(94, "meters"),
  25470. default: true
  25471. },
  25472. ]
  25473. ))
  25474. characterMakers.push(() => makeCharacter(
  25475. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25476. {
  25477. front: {
  25478. height: math.unit(22, "meters"),
  25479. weight: math.unit(21000, "kg"),
  25480. name: "Front",
  25481. image: {
  25482. source: "./media/characters/shock-diamond/front.svg",
  25483. extra: 2204 / 2053,
  25484. bottom: 65 / 2239.47
  25485. }
  25486. },
  25487. frontNude: {
  25488. height: math.unit(22, "meters"),
  25489. weight: math.unit(21000, "kg"),
  25490. name: "Front (Nude)",
  25491. image: {
  25492. source: "./media/characters/shock-diamond/front-nude.svg",
  25493. extra: 2514 / 2285,
  25494. bottom: 13 / 2527.56
  25495. }
  25496. },
  25497. },
  25498. [
  25499. {
  25500. name: "Normal",
  25501. height: math.unit(3, "meters")
  25502. },
  25503. {
  25504. name: "Macro",
  25505. height: math.unit(22, "meters"),
  25506. default: true
  25507. },
  25508. ]
  25509. ))
  25510. characterMakers.push(() => makeCharacter(
  25511. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25512. {
  25513. front: {
  25514. height: math.unit(5 + 4/12, "feet"),
  25515. weight: math.unit(125, "lb"),
  25516. name: "Front",
  25517. image: {
  25518. source: "./media/characters/rory/front.svg",
  25519. extra: 1790/1681,
  25520. bottom: 66/1856
  25521. },
  25522. form: "normal",
  25523. default: true
  25524. },
  25525. back: {
  25526. height: math.unit(5 + 4/12, "feet"),
  25527. weight: math.unit(125, "lb"),
  25528. name: "Back",
  25529. image: {
  25530. source: "./media/characters/rory/back.svg",
  25531. extra: 1805/1690,
  25532. bottom: 56/1861
  25533. },
  25534. form: "normal"
  25535. },
  25536. frontDressed: {
  25537. height: math.unit(5 + 4/12, "feet"),
  25538. weight: math.unit(125, "lb"),
  25539. name: "Front (Dressed)",
  25540. image: {
  25541. source: "./media/characters/rory/front-dressed.svg",
  25542. extra: 1790/1681,
  25543. bottom: 66/1856
  25544. },
  25545. form: "normal"
  25546. },
  25547. backDressed: {
  25548. height: math.unit(5 + 4/12, "feet"),
  25549. weight: math.unit(125, "lb"),
  25550. name: "Back (Dressed)",
  25551. image: {
  25552. source: "./media/characters/rory/back-dressed.svg",
  25553. extra: 1805/1690,
  25554. bottom: 56/1861
  25555. },
  25556. form: "normal"
  25557. },
  25558. frontNsfw: {
  25559. height: math.unit(5 + 4/12, "feet"),
  25560. weight: math.unit(125, "lb"),
  25561. name: "Front (NSFW)",
  25562. image: {
  25563. source: "./media/characters/rory/front-nsfw.svg",
  25564. extra: 1790/1681,
  25565. bottom: 66/1856
  25566. },
  25567. form: "normal"
  25568. },
  25569. backNsfw: {
  25570. height: math.unit(5 + 4/12, "feet"),
  25571. weight: math.unit(125, "lb"),
  25572. name: "Back (NSFW)",
  25573. image: {
  25574. source: "./media/characters/rory/back-nsfw.svg",
  25575. extra: 1805/1690,
  25576. bottom: 56/1861
  25577. },
  25578. form: "normal"
  25579. },
  25580. dick: {
  25581. height: math.unit(0.8, "feet"),
  25582. name: "Dick",
  25583. image: {
  25584. source: "./media/characters/rory/dick.svg"
  25585. },
  25586. form: "normal"
  25587. },
  25588. thicc_front: {
  25589. height: math.unit(5 + 4/12, "feet"),
  25590. weight: math.unit(195, "lb"),
  25591. name: "Front",
  25592. image: {
  25593. source: "./media/characters/rory/thicc-front.svg",
  25594. extra: 1220/1100,
  25595. bottom: 103/1323
  25596. },
  25597. form: "thicc",
  25598. default: true
  25599. },
  25600. thicc_back: {
  25601. height: math.unit(5 + 4/12, "feet"),
  25602. weight: math.unit(195, "lb"),
  25603. name: "Back",
  25604. image: {
  25605. source: "./media/characters/rory/thicc-back.svg",
  25606. extra: 1166/1086,
  25607. bottom: 35/1201
  25608. },
  25609. form: "thicc"
  25610. },
  25611. },
  25612. [
  25613. {
  25614. name: "Micro",
  25615. height: math.unit(3, "inches"),
  25616. allForms: true
  25617. },
  25618. {
  25619. name: "Normal",
  25620. height: math.unit(5 + 4/12, "feet"),
  25621. allForms: true,
  25622. default: true
  25623. },
  25624. {
  25625. name: "Macro",
  25626. height: math.unit(90, "feet"),
  25627. allForms: true
  25628. },
  25629. {
  25630. name: "Supercharged",
  25631. height: math.unit(270, "feet"),
  25632. allForms: true
  25633. },
  25634. ],
  25635. {
  25636. "normal": {
  25637. name: "Normal",
  25638. default: true
  25639. },
  25640. "thicc": {
  25641. name: "Thicc",
  25642. },
  25643. }
  25644. ))
  25645. characterMakers.push(() => makeCharacter(
  25646. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25647. {
  25648. front: {
  25649. height: math.unit(5 + 9 / 12, "feet"),
  25650. weight: math.unit(190, "lb"),
  25651. name: "Front",
  25652. image: {
  25653. source: "./media/characters/sprisk/front.svg",
  25654. extra: 1225 / 1180,
  25655. bottom: 42.7 / 1266.4
  25656. }
  25657. },
  25658. frontNsfw: {
  25659. height: math.unit(5 + 9 / 12, "feet"),
  25660. weight: math.unit(190, "lb"),
  25661. name: "Front (NSFW)",
  25662. image: {
  25663. source: "./media/characters/sprisk/front-nsfw.svg",
  25664. extra: 1225 / 1180,
  25665. bottom: 42.7 / 1266.4
  25666. }
  25667. },
  25668. back: {
  25669. height: math.unit(5 + 9 / 12, "feet"),
  25670. weight: math.unit(190, "lb"),
  25671. name: "Back",
  25672. image: {
  25673. source: "./media/characters/sprisk/back.svg",
  25674. extra: 1247 / 1200,
  25675. bottom: 5.6 / 1253.04
  25676. }
  25677. },
  25678. },
  25679. [
  25680. {
  25681. name: "Tiny",
  25682. height: math.unit(2, "inches")
  25683. },
  25684. {
  25685. name: "Normal",
  25686. height: math.unit(5 + 9 / 12, "feet"),
  25687. default: true
  25688. },
  25689. {
  25690. name: "Mini Macro",
  25691. height: math.unit(18, "feet")
  25692. },
  25693. {
  25694. name: "Macro",
  25695. height: math.unit(100, "feet")
  25696. },
  25697. {
  25698. name: "MACRO",
  25699. height: math.unit(50, "miles")
  25700. },
  25701. {
  25702. name: "M A C R O",
  25703. height: math.unit(300, "miles")
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25709. {
  25710. side: {
  25711. height: math.unit(15.6, "meters"),
  25712. weight: math.unit(700000, "kg"),
  25713. name: "Side",
  25714. image: {
  25715. source: "./media/characters/bunsen/side.svg",
  25716. extra: 1644 / 358
  25717. }
  25718. },
  25719. foot: {
  25720. height: math.unit(1.611 * 1644 / 358, "meter"),
  25721. name: "Foot",
  25722. image: {
  25723. source: "./media/characters/bunsen/foot.svg"
  25724. }
  25725. },
  25726. },
  25727. [
  25728. {
  25729. name: "Small",
  25730. height: math.unit(10, "feet")
  25731. },
  25732. {
  25733. name: "Normal",
  25734. height: math.unit(15.6, "meters"),
  25735. default: true
  25736. },
  25737. ]
  25738. ))
  25739. characterMakers.push(() => makeCharacter(
  25740. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25741. {
  25742. front: {
  25743. height: math.unit(4 + 11 / 12, "feet"),
  25744. weight: math.unit(140, "lb"),
  25745. name: "Front",
  25746. image: {
  25747. source: "./media/characters/sesh/front.svg",
  25748. extra: 3420 / 3231,
  25749. bottom: 72 / 3949.5
  25750. }
  25751. },
  25752. },
  25753. [
  25754. {
  25755. name: "Normal",
  25756. height: math.unit(4 + 11 / 12, "feet")
  25757. },
  25758. {
  25759. name: "Grown",
  25760. height: math.unit(15, "feet"),
  25761. default: true
  25762. },
  25763. {
  25764. name: "Macro",
  25765. height: math.unit(1500, "feet")
  25766. },
  25767. {
  25768. name: "Megamacro",
  25769. height: math.unit(30, "miles")
  25770. },
  25771. {
  25772. name: "Continental",
  25773. height: math.unit(3000, "miles")
  25774. },
  25775. {
  25776. name: "Gravity Mass",
  25777. height: math.unit(300000, "miles")
  25778. },
  25779. {
  25780. name: "Planet Buster",
  25781. height: math.unit(30000000, "miles")
  25782. },
  25783. {
  25784. name: "Big",
  25785. height: math.unit(3000000000, "miles")
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25791. {
  25792. front: {
  25793. height: math.unit(9, "feet"),
  25794. weight: math.unit(350, "lb"),
  25795. name: "Front",
  25796. image: {
  25797. source: "./media/characters/pepper/front.svg",
  25798. extra: 1448 / 1312,
  25799. bottom: 9.4 / 1457.88
  25800. }
  25801. },
  25802. back: {
  25803. height: math.unit(9, "feet"),
  25804. weight: math.unit(350, "lb"),
  25805. name: "Back",
  25806. image: {
  25807. source: "./media/characters/pepper/back.svg",
  25808. extra: 1423 / 1300,
  25809. bottom: 4.6 / 1429
  25810. }
  25811. },
  25812. maw: {
  25813. height: math.unit(0.932, "feet"),
  25814. name: "Maw",
  25815. image: {
  25816. source: "./media/characters/pepper/maw.svg"
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Normal",
  25823. height: math.unit(9, "feet"),
  25824. default: true
  25825. },
  25826. ]
  25827. ))
  25828. characterMakers.push(() => makeCharacter(
  25829. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25830. {
  25831. front: {
  25832. height: math.unit(6, "feet"),
  25833. weight: math.unit(150, "lb"),
  25834. name: "Front",
  25835. image: {
  25836. source: "./media/characters/maelstrom/front.svg",
  25837. extra: 2100 / 1883,
  25838. bottom: 94 / 2196.7
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Less Kaiju",
  25845. height: math.unit(200, "feet")
  25846. },
  25847. {
  25848. name: "Kaiju",
  25849. height: math.unit(400, "feet"),
  25850. default: true
  25851. },
  25852. {
  25853. name: "Kaiju-er",
  25854. height: math.unit(600, "feet")
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25860. {
  25861. front: {
  25862. height: math.unit(6 + 5 / 12, "feet"),
  25863. weight: math.unit(180, "lb"),
  25864. name: "Front",
  25865. image: {
  25866. source: "./media/characters/lexir/front.svg",
  25867. extra: 180 / 172,
  25868. bottom: 12 / 192
  25869. }
  25870. },
  25871. back: {
  25872. height: math.unit(6 + 5 / 12, "feet"),
  25873. weight: math.unit(180, "lb"),
  25874. name: "Back",
  25875. image: {
  25876. source: "./media/characters/lexir/back.svg",
  25877. extra: 1273/1201,
  25878. bottom: 39/1312
  25879. }
  25880. },
  25881. },
  25882. [
  25883. {
  25884. name: "Very Smal",
  25885. height: math.unit(1, "nm")
  25886. },
  25887. {
  25888. name: "Normal",
  25889. height: math.unit(6 + 5 / 12, "feet"),
  25890. default: true
  25891. },
  25892. {
  25893. name: "Macro",
  25894. height: math.unit(1, "mile")
  25895. },
  25896. {
  25897. name: "Megamacro",
  25898. height: math.unit(50, "miles")
  25899. },
  25900. ]
  25901. ))
  25902. characterMakers.push(() => makeCharacter(
  25903. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25904. {
  25905. front: {
  25906. height: math.unit(1.5, "meters"),
  25907. weight: math.unit(100, "lb"),
  25908. name: "Front",
  25909. image: {
  25910. source: "./media/characters/maksio/front.svg",
  25911. extra: 1549 / 1531,
  25912. bottom: 123.7 / 1674.5429
  25913. }
  25914. },
  25915. back: {
  25916. height: math.unit(1.5, "meters"),
  25917. weight: math.unit(100, "lb"),
  25918. name: "Back",
  25919. image: {
  25920. source: "./media/characters/maksio/back.svg",
  25921. extra: 1541 / 1509,
  25922. bottom: 97 / 1639
  25923. }
  25924. },
  25925. hand: {
  25926. height: math.unit(0.621, "feet"),
  25927. name: "Hand",
  25928. image: {
  25929. source: "./media/characters/maksio/hand.svg"
  25930. }
  25931. },
  25932. foot: {
  25933. height: math.unit(1.611, "feet"),
  25934. name: "Foot",
  25935. image: {
  25936. source: "./media/characters/maksio/foot.svg"
  25937. }
  25938. },
  25939. },
  25940. [
  25941. {
  25942. name: "Shrunken",
  25943. height: math.unit(10, "cm")
  25944. },
  25945. {
  25946. name: "Normal",
  25947. height: math.unit(150, "cm"),
  25948. default: true
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25954. {
  25955. front: {
  25956. height: math.unit(100, "feet"),
  25957. name: "Front",
  25958. image: {
  25959. source: "./media/characters/erza-bear/front.svg",
  25960. extra: 2449 / 2390,
  25961. bottom: 46 / 2494
  25962. }
  25963. },
  25964. back: {
  25965. height: math.unit(100, "feet"),
  25966. name: "Back",
  25967. image: {
  25968. source: "./media/characters/erza-bear/back.svg",
  25969. extra: 2489 / 2430,
  25970. bottom: 85.4 / 2480
  25971. }
  25972. },
  25973. tail: {
  25974. height: math.unit(42, "feet"),
  25975. name: "Tail",
  25976. image: {
  25977. source: "./media/characters/erza-bear/tail.svg"
  25978. }
  25979. },
  25980. tongue: {
  25981. height: math.unit(8, "feet"),
  25982. name: "Tongue",
  25983. image: {
  25984. source: "./media/characters/erza-bear/tongue.svg"
  25985. }
  25986. },
  25987. dick: {
  25988. height: math.unit(10.5, "feet"),
  25989. name: "Dick",
  25990. image: {
  25991. source: "./media/characters/erza-bear/dick.svg"
  25992. }
  25993. },
  25994. dickVertical: {
  25995. height: math.unit(16.9, "feet"),
  25996. name: "Dick (Vertical)",
  25997. image: {
  25998. source: "./media/characters/erza-bear/dick-vertical.svg"
  25999. }
  26000. },
  26001. },
  26002. [
  26003. {
  26004. name: "Macro",
  26005. height: math.unit(100, "feet"),
  26006. default: true
  26007. },
  26008. ]
  26009. ))
  26010. characterMakers.push(() => makeCharacter(
  26011. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26012. {
  26013. front: {
  26014. height: math.unit(172, "cm"),
  26015. weight: math.unit(73, "kg"),
  26016. name: "Front",
  26017. image: {
  26018. source: "./media/characters/violet-flor/front.svg",
  26019. extra: 1474/1379,
  26020. bottom: 113/1587
  26021. }
  26022. },
  26023. back: {
  26024. height: math.unit(180, "cm"),
  26025. weight: math.unit(73, "kg"),
  26026. name: "Back",
  26027. image: {
  26028. source: "./media/characters/violet-flor/back.svg",
  26029. extra: 1660/1567,
  26030. bottom: 49/1709
  26031. }
  26032. },
  26033. },
  26034. [
  26035. {
  26036. name: "Normal",
  26037. height: math.unit(172, "cm"),
  26038. default: true
  26039. },
  26040. ]
  26041. ))
  26042. characterMakers.push(() => makeCharacter(
  26043. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26044. {
  26045. front: {
  26046. height: math.unit(6, "feet"),
  26047. weight: math.unit(220, "lb"),
  26048. name: "Front",
  26049. image: {
  26050. source: "./media/characters/lynn-rhea/front.svg",
  26051. extra: 310 / 273
  26052. }
  26053. },
  26054. back: {
  26055. height: math.unit(6, "feet"),
  26056. weight: math.unit(220, "lb"),
  26057. name: "Back",
  26058. image: {
  26059. source: "./media/characters/lynn-rhea/back.svg",
  26060. extra: 310 / 273
  26061. }
  26062. },
  26063. dicks: {
  26064. height: math.unit(0.9, "feet"),
  26065. name: "Dicks",
  26066. image: {
  26067. source: "./media/characters/lynn-rhea/dicks.svg"
  26068. }
  26069. },
  26070. slit: {
  26071. height: math.unit(0.4, "feet"),
  26072. name: "Slit",
  26073. image: {
  26074. source: "./media/characters/lynn-rhea/slit.svg"
  26075. }
  26076. },
  26077. },
  26078. [
  26079. {
  26080. name: "Micro",
  26081. height: math.unit(1, "inch")
  26082. },
  26083. {
  26084. name: "Macro",
  26085. height: math.unit(60, "feet"),
  26086. default: true
  26087. },
  26088. {
  26089. name: "Megamacro",
  26090. height: math.unit(2, "miles")
  26091. },
  26092. {
  26093. name: "Gigamacro",
  26094. height: math.unit(3, "earths")
  26095. },
  26096. {
  26097. name: "Galactic",
  26098. height: math.unit(0.8, "galaxies")
  26099. },
  26100. ]
  26101. ))
  26102. characterMakers.push(() => makeCharacter(
  26103. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26104. {
  26105. front: {
  26106. height: math.unit(1600, "feet"),
  26107. weight: math.unit(85758785169, "kg"),
  26108. name: "Front",
  26109. image: {
  26110. source: "./media/characters/valathos/front.svg",
  26111. extra: 1451 / 1339
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Macro",
  26118. height: math.unit(1600, "feet"),
  26119. default: true
  26120. },
  26121. ]
  26122. ))
  26123. characterMakers.push(() => makeCharacter(
  26124. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26125. {
  26126. front: {
  26127. height: math.unit(7 + 5 / 12, "feet"),
  26128. weight: math.unit(300, "lb"),
  26129. name: "Front",
  26130. image: {
  26131. source: "./media/characters/azula/front.svg",
  26132. extra: 3208 / 2880,
  26133. bottom: 80.2 / 3277
  26134. }
  26135. },
  26136. back: {
  26137. height: math.unit(7 + 5 / 12, "feet"),
  26138. weight: math.unit(300, "lb"),
  26139. name: "Back",
  26140. image: {
  26141. source: "./media/characters/azula/back.svg",
  26142. extra: 3169 / 2822,
  26143. bottom: 150.6 / 3321
  26144. }
  26145. },
  26146. },
  26147. [
  26148. {
  26149. name: "Normal",
  26150. height: math.unit(7 + 5 / 12, "feet"),
  26151. default: true
  26152. },
  26153. {
  26154. name: "Big",
  26155. height: math.unit(20, "feet")
  26156. },
  26157. ]
  26158. ))
  26159. characterMakers.push(() => makeCharacter(
  26160. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26161. {
  26162. front: {
  26163. height: math.unit(5 + 1 / 12, "feet"),
  26164. weight: math.unit(110, "lb"),
  26165. name: "Front",
  26166. image: {
  26167. source: "./media/characters/rupert/front.svg",
  26168. extra: 1549 / 1495,
  26169. bottom: 54.2 / 1604.4
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Normal",
  26176. height: math.unit(5 + 1 / 12, "feet"),
  26177. default: true
  26178. },
  26179. ]
  26180. ))
  26181. characterMakers.push(() => makeCharacter(
  26182. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26183. {
  26184. front: {
  26185. height: math.unit(8 + 4 / 12, "feet"),
  26186. weight: math.unit(350, "lb"),
  26187. name: "Front",
  26188. image: {
  26189. source: "./media/characters/sheera-castellar/front.svg",
  26190. extra: 1957 / 1894,
  26191. bottom: 26.97 / 1975.017
  26192. }
  26193. },
  26194. side: {
  26195. height: math.unit(8 + 4 / 12, "feet"),
  26196. weight: math.unit(350, "lb"),
  26197. name: "Side",
  26198. image: {
  26199. source: "./media/characters/sheera-castellar/side.svg",
  26200. extra: 1957 / 1894
  26201. }
  26202. },
  26203. back: {
  26204. height: math.unit(8 + 4 / 12, "feet"),
  26205. weight: math.unit(350, "lb"),
  26206. name: "Back",
  26207. image: {
  26208. source: "./media/characters/sheera-castellar/back.svg",
  26209. extra: 1957 / 1894
  26210. }
  26211. },
  26212. angled: {
  26213. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26214. weight: math.unit(350, "lb"),
  26215. name: "Angled",
  26216. image: {
  26217. source: "./media/characters/sheera-castellar/angled.svg",
  26218. extra: 1807 / 1707,
  26219. bottom: 68 / 1875
  26220. }
  26221. },
  26222. genitals: {
  26223. height: math.unit(2.2, "feet"),
  26224. name: "Genitals",
  26225. image: {
  26226. source: "./media/characters/sheera-castellar/genitals.svg"
  26227. }
  26228. },
  26229. taur: {
  26230. height: math.unit(10 + 6/12, "feet"),
  26231. name: "Taur",
  26232. image: {
  26233. source: "./media/characters/sheera-castellar/taur.svg",
  26234. extra: 2017/1909,
  26235. bottom: 185/2202
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(8 + 4 / 12, "feet")
  26243. },
  26244. {
  26245. name: "Macro",
  26246. height: math.unit(150, "feet"),
  26247. default: true
  26248. },
  26249. {
  26250. name: "Macro+",
  26251. height: math.unit(800, "feet")
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26257. {
  26258. front: {
  26259. height: math.unit(6, "feet"),
  26260. weight: math.unit(150, "lb"),
  26261. name: "Front",
  26262. image: {
  26263. source: "./media/characters/jaipur/front.svg",
  26264. extra: 3860 / 3731,
  26265. bottom: 287 / 4140
  26266. }
  26267. },
  26268. back: {
  26269. height: math.unit(6, "feet"),
  26270. weight: math.unit(150, "lb"),
  26271. name: "Back",
  26272. image: {
  26273. source: "./media/characters/jaipur/back.svg",
  26274. extra: 1637/1561,
  26275. bottom: 154/1791
  26276. }
  26277. },
  26278. },
  26279. [
  26280. {
  26281. name: "Normal",
  26282. height: math.unit(1.85, "meters"),
  26283. default: true
  26284. },
  26285. {
  26286. name: "Macro",
  26287. height: math.unit(150, "meters")
  26288. },
  26289. {
  26290. name: "Macro+",
  26291. height: math.unit(0.5, "miles")
  26292. },
  26293. {
  26294. name: "Macro++",
  26295. height: math.unit(2.5, "miles")
  26296. },
  26297. {
  26298. name: "Macro+++",
  26299. height: math.unit(12, "miles")
  26300. },
  26301. {
  26302. name: "Macro++++",
  26303. height: math.unit(120, "miles")
  26304. },
  26305. {
  26306. name: "Macro+++++",
  26307. height: math.unit(1200, "miles")
  26308. },
  26309. ]
  26310. ))
  26311. characterMakers.push(() => makeCharacter(
  26312. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26313. {
  26314. front: {
  26315. height: math.unit(6, "feet"),
  26316. weight: math.unit(150, "lb"),
  26317. name: "Front",
  26318. image: {
  26319. source: "./media/characters/sheila-wolf/front.svg",
  26320. extra: 1931 / 1808,
  26321. bottom: 29.5 / 1960
  26322. }
  26323. },
  26324. dick: {
  26325. height: math.unit(1.464, "feet"),
  26326. name: "Dick",
  26327. image: {
  26328. source: "./media/characters/sheila-wolf/dick.svg"
  26329. }
  26330. },
  26331. muzzle: {
  26332. height: math.unit(0.513, "feet"),
  26333. name: "Muzzle",
  26334. image: {
  26335. source: "./media/characters/sheila-wolf/muzzle.svg"
  26336. }
  26337. },
  26338. },
  26339. [
  26340. {
  26341. name: "Macro",
  26342. height: math.unit(70, "feet"),
  26343. default: true
  26344. },
  26345. ]
  26346. ))
  26347. characterMakers.push(() => makeCharacter(
  26348. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26349. {
  26350. front: {
  26351. height: math.unit(32, "meters"),
  26352. weight: math.unit(300000, "kg"),
  26353. name: "Front",
  26354. image: {
  26355. source: "./media/characters/almor/front.svg",
  26356. extra: 1408 / 1322,
  26357. bottom: 94.6 / 1506.5
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Macro",
  26364. height: math.unit(32, "meters"),
  26365. default: true
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26371. {
  26372. front: {
  26373. height: math.unit(7, "feet"),
  26374. weight: math.unit(200, "lb"),
  26375. name: "Front",
  26376. image: {
  26377. source: "./media/characters/silver/front.svg",
  26378. extra: 472.1 / 450.5,
  26379. bottom: 26.5 / 499.424
  26380. }
  26381. },
  26382. },
  26383. [
  26384. {
  26385. name: "Normal",
  26386. height: math.unit(7, "feet"),
  26387. default: true
  26388. },
  26389. {
  26390. name: "Macro",
  26391. height: math.unit(800, "feet")
  26392. },
  26393. {
  26394. name: "Megamacro",
  26395. height: math.unit(250, "miles")
  26396. },
  26397. ]
  26398. ))
  26399. characterMakers.push(() => makeCharacter(
  26400. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26401. {
  26402. front: {
  26403. height: math.unit(6, "feet"),
  26404. weight: math.unit(150, "lb"),
  26405. name: "Front",
  26406. image: {
  26407. source: "./media/characters/pliskin/front.svg",
  26408. extra: 1469 / 1359,
  26409. bottom: 70 / 1540
  26410. }
  26411. },
  26412. },
  26413. [
  26414. {
  26415. name: "Micro",
  26416. height: math.unit(3, "inches")
  26417. },
  26418. {
  26419. name: "Normal",
  26420. height: math.unit(5 + 11 / 12, "feet"),
  26421. default: true
  26422. },
  26423. {
  26424. name: "Macro",
  26425. height: math.unit(120, "feet")
  26426. },
  26427. ]
  26428. ))
  26429. characterMakers.push(() => makeCharacter(
  26430. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26431. {
  26432. front: {
  26433. height: math.unit(6, "feet"),
  26434. weight: math.unit(150, "lb"),
  26435. name: "Front",
  26436. image: {
  26437. source: "./media/characters/sammy/front.svg",
  26438. extra: 1193 / 1089,
  26439. bottom: 30.5 / 1226
  26440. }
  26441. },
  26442. },
  26443. [
  26444. {
  26445. name: "Macro",
  26446. height: math.unit(1700, "feet"),
  26447. default: true
  26448. },
  26449. {
  26450. name: "Examacro",
  26451. height: math.unit(2.5e9, "lightyears")
  26452. },
  26453. ]
  26454. ))
  26455. characterMakers.push(() => makeCharacter(
  26456. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26457. {
  26458. front: {
  26459. height: math.unit(21, "meters"),
  26460. weight: math.unit(12, "tonnes"),
  26461. name: "Front",
  26462. image: {
  26463. source: "./media/characters/kuru/front.svg",
  26464. extra: 4301 / 3785,
  26465. bottom: 371.3 / 4691
  26466. }
  26467. },
  26468. },
  26469. [
  26470. {
  26471. name: "Macro",
  26472. height: math.unit(21, "meters"),
  26473. default: true
  26474. },
  26475. ]
  26476. ))
  26477. characterMakers.push(() => makeCharacter(
  26478. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26479. {
  26480. front: {
  26481. height: math.unit(23, "meters"),
  26482. weight: math.unit(12.2, "tonnes"),
  26483. name: "Front",
  26484. image: {
  26485. source: "./media/characters/rakka/front.svg",
  26486. extra: 4670 / 4169,
  26487. bottom: 301 / 4968.7
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Macro",
  26494. height: math.unit(23, "meters"),
  26495. default: true
  26496. },
  26497. ]
  26498. ))
  26499. characterMakers.push(() => makeCharacter(
  26500. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26501. {
  26502. front: {
  26503. height: math.unit(6, "feet"),
  26504. weight: math.unit(150, "lb"),
  26505. name: "Front",
  26506. image: {
  26507. source: "./media/characters/rhys-feline/front.svg",
  26508. extra: 2488 / 2308,
  26509. bottom: 35.67 / 2519.19
  26510. }
  26511. },
  26512. },
  26513. [
  26514. {
  26515. name: "Really Small",
  26516. height: math.unit(1, "nm")
  26517. },
  26518. {
  26519. name: "Micro",
  26520. height: math.unit(4, "inches")
  26521. },
  26522. {
  26523. name: "Normal",
  26524. height: math.unit(4 + 10 / 12, "feet"),
  26525. default: true
  26526. },
  26527. {
  26528. name: "Macro",
  26529. height: math.unit(100, "feet")
  26530. },
  26531. {
  26532. name: "Megamacto",
  26533. height: math.unit(50, "miles")
  26534. },
  26535. ]
  26536. ))
  26537. characterMakers.push(() => makeCharacter(
  26538. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26539. {
  26540. side: {
  26541. height: math.unit(30, "feet"),
  26542. weight: math.unit(35000, "kg"),
  26543. name: "Side",
  26544. image: {
  26545. source: "./media/characters/alydar/side.svg",
  26546. extra: 234 / 222,
  26547. bottom: 6.5 / 241
  26548. }
  26549. },
  26550. front: {
  26551. height: math.unit(30, "feet"),
  26552. weight: math.unit(35000, "kg"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/alydar/front.svg",
  26556. extra: 223.37 / 210.2,
  26557. bottom: 22.3 / 246.76
  26558. }
  26559. },
  26560. top: {
  26561. height: math.unit(64.54, "feet"),
  26562. weight: math.unit(35000, "kg"),
  26563. name: "Top",
  26564. image: {
  26565. source: "./media/characters/alydar/top.svg"
  26566. }
  26567. },
  26568. anthro: {
  26569. height: math.unit(30, "feet"),
  26570. weight: math.unit(9000, "kg"),
  26571. name: "Anthro",
  26572. image: {
  26573. source: "./media/characters/alydar/anthro.svg",
  26574. extra: 432 / 421,
  26575. bottom: 7.18 / 440
  26576. }
  26577. },
  26578. maw: {
  26579. height: math.unit(11.693, "feet"),
  26580. name: "Maw",
  26581. image: {
  26582. source: "./media/characters/alydar/maw.svg"
  26583. }
  26584. },
  26585. head: {
  26586. height: math.unit(11.693, "feet"),
  26587. name: "Head",
  26588. image: {
  26589. source: "./media/characters/alydar/head.svg"
  26590. }
  26591. },
  26592. headAlt: {
  26593. height: math.unit(12.861, "feet"),
  26594. name: "Head (Alt)",
  26595. image: {
  26596. source: "./media/characters/alydar/head-alt.svg"
  26597. }
  26598. },
  26599. wing: {
  26600. height: math.unit(20.712, "feet"),
  26601. name: "Wing",
  26602. image: {
  26603. source: "./media/characters/alydar/wing.svg"
  26604. }
  26605. },
  26606. wingFeather: {
  26607. height: math.unit(9.662, "feet"),
  26608. name: "Wing Feather",
  26609. image: {
  26610. source: "./media/characters/alydar/wing-feather.svg"
  26611. }
  26612. },
  26613. countourFeather: {
  26614. height: math.unit(4.154, "feet"),
  26615. name: "Contour Feather",
  26616. image: {
  26617. source: "./media/characters/alydar/contour-feather.svg"
  26618. }
  26619. },
  26620. },
  26621. [
  26622. {
  26623. name: "Diplomatic",
  26624. height: math.unit(13, "feet"),
  26625. default: true
  26626. },
  26627. {
  26628. name: "Small",
  26629. height: math.unit(30, "feet")
  26630. },
  26631. {
  26632. name: "Normal",
  26633. height: math.unit(95, "feet"),
  26634. default: true
  26635. },
  26636. {
  26637. name: "Large",
  26638. height: math.unit(285, "feet")
  26639. },
  26640. {
  26641. name: "Incomprehensible",
  26642. height: math.unit(450, "megameters")
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26648. {
  26649. side: {
  26650. height: math.unit(11, "feet"),
  26651. weight: math.unit(1750, "kg"),
  26652. name: "Side",
  26653. image: {
  26654. source: "./media/characters/selicia/side.svg",
  26655. extra: 440 / 396,
  26656. bottom: 24.8 / 465.979
  26657. }
  26658. },
  26659. maw: {
  26660. height: math.unit(4.665, "feet"),
  26661. name: "Maw",
  26662. image: {
  26663. source: "./media/characters/selicia/maw.svg"
  26664. }
  26665. },
  26666. },
  26667. [
  26668. {
  26669. name: "Normal",
  26670. height: math.unit(11, "feet"),
  26671. default: true
  26672. },
  26673. ]
  26674. ))
  26675. characterMakers.push(() => makeCharacter(
  26676. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26677. {
  26678. side: {
  26679. height: math.unit(2 + 6 / 12, "feet"),
  26680. weight: math.unit(30, "lb"),
  26681. name: "Side",
  26682. image: {
  26683. source: "./media/characters/layla/side.svg",
  26684. extra: 244 / 188,
  26685. bottom: 18.2 / 262.1
  26686. }
  26687. },
  26688. back: {
  26689. height: math.unit(2 + 6 / 12, "feet"),
  26690. weight: math.unit(30, "lb"),
  26691. name: "Back",
  26692. image: {
  26693. source: "./media/characters/layla/back.svg",
  26694. extra: 308 / 241.5,
  26695. bottom: 8.9 / 316.8
  26696. }
  26697. },
  26698. cumming: {
  26699. height: math.unit(2 + 6 / 12, "feet"),
  26700. weight: math.unit(30, "lb"),
  26701. name: "Cumming",
  26702. image: {
  26703. source: "./media/characters/layla/cumming.svg",
  26704. extra: 342 / 279,
  26705. bottom: 595 / 938
  26706. }
  26707. },
  26708. dickFlaccid: {
  26709. height: math.unit(2.595, "feet"),
  26710. name: "Flaccid Genitals",
  26711. image: {
  26712. source: "./media/characters/layla/dick-flaccid.svg"
  26713. }
  26714. },
  26715. dickErect: {
  26716. height: math.unit(2.359, "feet"),
  26717. name: "Erect Genitals",
  26718. image: {
  26719. source: "./media/characters/layla/dick-erect.svg"
  26720. }
  26721. },
  26722. dragon: {
  26723. height: math.unit(40, "feet"),
  26724. name: "Dragon",
  26725. image: {
  26726. source: "./media/characters/layla/dragon.svg",
  26727. extra: 610/535,
  26728. bottom: 367/977
  26729. }
  26730. },
  26731. taur: {
  26732. height: math.unit(30, "feet"),
  26733. name: "Taur",
  26734. image: {
  26735. source: "./media/characters/layla/taur.svg",
  26736. extra: 1268/1199,
  26737. bottom: 112/1380
  26738. }
  26739. },
  26740. },
  26741. [
  26742. {
  26743. name: "Micro",
  26744. height: math.unit(1, "inch")
  26745. },
  26746. {
  26747. name: "Small",
  26748. height: math.unit(1, "foot")
  26749. },
  26750. {
  26751. name: "Normal",
  26752. height: math.unit(2 + 6 / 12, "feet"),
  26753. default: true
  26754. },
  26755. {
  26756. name: "Macro",
  26757. height: math.unit(200, "feet")
  26758. },
  26759. {
  26760. name: "Megamacro",
  26761. height: math.unit(1000, "miles")
  26762. },
  26763. {
  26764. name: "Planetary",
  26765. height: math.unit(8000, "miles")
  26766. },
  26767. {
  26768. name: "True Layla",
  26769. height: math.unit(200000 * 7, "multiverses")
  26770. },
  26771. ]
  26772. ))
  26773. characterMakers.push(() => makeCharacter(
  26774. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26775. {
  26776. back: {
  26777. height: math.unit(10.5, "feet"),
  26778. weight: math.unit(800, "lb"),
  26779. name: "Back",
  26780. image: {
  26781. source: "./media/characters/knox/back.svg",
  26782. extra: 1486 / 1089,
  26783. bottom: 107 / 1601.4
  26784. }
  26785. },
  26786. side: {
  26787. height: math.unit(10.5, "feet"),
  26788. weight: math.unit(800, "lb"),
  26789. name: "Side",
  26790. image: {
  26791. source: "./media/characters/knox/side.svg",
  26792. extra: 244 / 218,
  26793. bottom: 14 / 260
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Compact",
  26800. height: math.unit(10.5, "feet"),
  26801. default: true
  26802. },
  26803. {
  26804. name: "Dynamax",
  26805. height: math.unit(210, "feet")
  26806. },
  26807. {
  26808. name: "Full Macro",
  26809. height: math.unit(850, "feet")
  26810. },
  26811. ]
  26812. ))
  26813. characterMakers.push(() => makeCharacter(
  26814. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26815. {
  26816. front: {
  26817. height: math.unit(28, "feet"),
  26818. weight: math.unit(10500, "lb"),
  26819. name: "Front",
  26820. image: {
  26821. source: "./media/characters/kayda/front.svg",
  26822. extra: 1536 / 1428,
  26823. bottom: 68.7 / 1603
  26824. }
  26825. },
  26826. back: {
  26827. height: math.unit(28, "feet"),
  26828. weight: math.unit(10500, "lb"),
  26829. name: "Back",
  26830. image: {
  26831. source: "./media/characters/kayda/back.svg",
  26832. extra: 1557 / 1464,
  26833. bottom: 39.5 / 1597.49
  26834. }
  26835. },
  26836. dick: {
  26837. height: math.unit(3.858, "feet"),
  26838. name: "Dick",
  26839. image: {
  26840. source: "./media/characters/kayda/dick.svg"
  26841. }
  26842. },
  26843. },
  26844. [
  26845. {
  26846. name: "Macro",
  26847. height: math.unit(28, "feet"),
  26848. default: true
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(10 + 11 / 12, "feet"),
  26857. weight: math.unit(1400, "lb"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/brian/front.svg",
  26861. extra: 737 / 692,
  26862. bottom: 55.4 / 785
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Normal",
  26869. height: math.unit(10 + 11 / 12, "feet"),
  26870. default: true
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26876. {
  26877. front: {
  26878. height: math.unit(5 + 8 / 12, "feet"),
  26879. weight: math.unit(140, "lb"),
  26880. name: "Front",
  26881. image: {
  26882. source: "./media/characters/khemri/front.svg",
  26883. extra: 4780 / 4059,
  26884. bottom: 80.1 / 4859.25
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Micro",
  26891. height: math.unit(6, "inches")
  26892. },
  26893. {
  26894. name: "Normal",
  26895. height: math.unit(5 + 8 / 12, "feet"),
  26896. default: true
  26897. },
  26898. ]
  26899. ))
  26900. characterMakers.push(() => makeCharacter(
  26901. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26902. {
  26903. front: {
  26904. height: math.unit(13, "feet"),
  26905. weight: math.unit(1700, "lb"),
  26906. name: "Front",
  26907. image: {
  26908. source: "./media/characters/felix-braveheart/front.svg",
  26909. extra: 1222 / 1157,
  26910. bottom: 53.2 / 1280
  26911. }
  26912. },
  26913. back: {
  26914. height: math.unit(13, "feet"),
  26915. weight: math.unit(1700, "lb"),
  26916. name: "Back",
  26917. image: {
  26918. source: "./media/characters/felix-braveheart/back.svg",
  26919. extra: 1277 / 1203,
  26920. bottom: 50.2 / 1327
  26921. }
  26922. },
  26923. feral: {
  26924. height: math.unit(6, "feet"),
  26925. weight: math.unit(400, "lb"),
  26926. name: "Feral",
  26927. image: {
  26928. source: "./media/characters/felix-braveheart/feral.svg",
  26929. extra: 682 / 625,
  26930. bottom: 6.9 / 688
  26931. }
  26932. },
  26933. },
  26934. [
  26935. {
  26936. name: "Normal",
  26937. height: math.unit(13, "feet"),
  26938. default: true
  26939. },
  26940. ]
  26941. ))
  26942. characterMakers.push(() => makeCharacter(
  26943. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26944. {
  26945. side: {
  26946. height: math.unit(5 + 11 / 12, "feet"),
  26947. weight: math.unit(1400, "lb"),
  26948. name: "Side",
  26949. image: {
  26950. source: "./media/characters/shadow-blade/side.svg",
  26951. extra: 1726 / 1267,
  26952. bottom: 58.4 / 1785
  26953. }
  26954. },
  26955. },
  26956. [
  26957. {
  26958. name: "Normal",
  26959. height: math.unit(5 + 11 / 12, "feet"),
  26960. default: true
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(1 + 6 / 12, "feet"),
  26969. weight: math.unit(25, "lb"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/karla-halldor/front.svg",
  26973. extra: 1459 / 1383,
  26974. bottom: 12 / 1472
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(1 + 6 / 12, "feet"),
  26982. default: true
  26983. },
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(6 + 2 / 12, "feet"),
  26991. weight: math.unit(160, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/ariam/front.svg",
  26995. extra: 1073/976,
  26996. bottom: 52/1125
  26997. }
  26998. },
  26999. back: {
  27000. height: math.unit(6 + 2/12, "feet"),
  27001. weight: math.unit(160, "lb"),
  27002. name: "Back",
  27003. image: {
  27004. source: "./media/characters/ariam/back.svg",
  27005. extra: 1103/1023,
  27006. bottom: 9/1112
  27007. }
  27008. },
  27009. dressed: {
  27010. height: math.unit(6 + 2/12, "feet"),
  27011. weight: math.unit(160, "lb"),
  27012. name: "Dressed",
  27013. image: {
  27014. source: "./media/characters/ariam/dressed.svg",
  27015. extra: 1099/1009,
  27016. bottom: 25/1124
  27017. }
  27018. },
  27019. squatting: {
  27020. height: math.unit(4.1, "feet"),
  27021. weight: math.unit(160, "lb"),
  27022. name: "Squatting",
  27023. image: {
  27024. source: "./media/characters/ariam/squatting.svg",
  27025. extra: 2617 / 2112,
  27026. bottom: 61.2 / 2681,
  27027. }
  27028. },
  27029. },
  27030. [
  27031. {
  27032. name: "Normal",
  27033. height: math.unit(6 + 2 / 12, "feet"),
  27034. default: true
  27035. },
  27036. {
  27037. name: "Normal+",
  27038. height: math.unit(4, "meters")
  27039. },
  27040. {
  27041. name: "Macro",
  27042. height: math.unit(50, "meters")
  27043. },
  27044. {
  27045. name: "Macro+",
  27046. height: math.unit(100, "meters")
  27047. },
  27048. {
  27049. name: "Megamacro",
  27050. height: math.unit(20, "km")
  27051. },
  27052. {
  27053. name: "Caretaker",
  27054. height: math.unit(444, "megameters")
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27060. {
  27061. front: {
  27062. height: math.unit(1.67, "meters"),
  27063. weight: math.unit(140, "lb"),
  27064. name: "Front",
  27065. image: {
  27066. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27067. extra: 438 / 410,
  27068. bottom: 0.75 / 439
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Shrunken",
  27075. height: math.unit(7.6, "cm")
  27076. },
  27077. {
  27078. name: "Human Scale",
  27079. height: math.unit(1.67, "meters")
  27080. },
  27081. {
  27082. name: "Wolxi Scale",
  27083. height: math.unit(36.7, "meters"),
  27084. default: true
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(1.73, "meters"),
  27093. weight: math.unit(240, "lb"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/izue-two-mothers/front.svg",
  27097. extra: 469 / 437,
  27098. bottom: 1.24 / 470.6
  27099. }
  27100. },
  27101. },
  27102. [
  27103. {
  27104. name: "Shrunken",
  27105. height: math.unit(7.86, "cm")
  27106. },
  27107. {
  27108. name: "Human Scale",
  27109. height: math.unit(1.73, "meters")
  27110. },
  27111. {
  27112. name: "Wolxi Scale",
  27113. height: math.unit(38, "meters"),
  27114. default: true
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27120. {
  27121. front: {
  27122. height: math.unit(1.55, "meters"),
  27123. weight: math.unit(120, "lb"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/teeku-love-shack/front.svg",
  27127. extra: 387 / 362,
  27128. bottom: 1.51 / 388
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Shrunken",
  27135. height: math.unit(7, "cm")
  27136. },
  27137. {
  27138. name: "Human Scale",
  27139. height: math.unit(1.55, "meters")
  27140. },
  27141. {
  27142. name: "Wolxi Scale",
  27143. height: math.unit(34.1, "meters"),
  27144. default: true
  27145. },
  27146. ]
  27147. ))
  27148. characterMakers.push(() => makeCharacter(
  27149. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27150. {
  27151. front: {
  27152. height: math.unit(1.83, "meters"),
  27153. weight: math.unit(135, "lb"),
  27154. name: "Front",
  27155. image: {
  27156. source: "./media/characters/dejma-the-red/front.svg",
  27157. extra: 480 / 458,
  27158. bottom: 1.8 / 482
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Shrunken",
  27165. height: math.unit(8.3, "cm")
  27166. },
  27167. {
  27168. name: "Human Scale",
  27169. height: math.unit(1.83, "meters")
  27170. },
  27171. {
  27172. name: "Wolxi Scale",
  27173. height: math.unit(40, "meters"),
  27174. default: true
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(1.78, "meters"),
  27183. weight: math.unit(65, "kg"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/aki/front.svg",
  27187. extra: 452 / 415
  27188. }
  27189. },
  27190. frontNsfw: {
  27191. height: math.unit(1.78, "meters"),
  27192. weight: math.unit(65, "kg"),
  27193. name: "Front (NSFW)",
  27194. image: {
  27195. source: "./media/characters/aki/front-nsfw.svg",
  27196. extra: 452 / 415
  27197. }
  27198. },
  27199. back: {
  27200. height: math.unit(1.78, "meters"),
  27201. weight: math.unit(65, "kg"),
  27202. name: "Back",
  27203. image: {
  27204. source: "./media/characters/aki/back.svg",
  27205. extra: 452 / 415
  27206. }
  27207. },
  27208. rump: {
  27209. height: math.unit(2.05, "feet"),
  27210. name: "Rump",
  27211. image: {
  27212. source: "./media/characters/aki/rump.svg"
  27213. }
  27214. },
  27215. dick: {
  27216. height: math.unit(0.95, "feet"),
  27217. name: "Dick",
  27218. image: {
  27219. source: "./media/characters/aki/dick.svg"
  27220. }
  27221. },
  27222. },
  27223. [
  27224. {
  27225. name: "Micro",
  27226. height: math.unit(15, "cm")
  27227. },
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(178, "cm"),
  27231. default: true
  27232. },
  27233. {
  27234. name: "Macro",
  27235. height: math.unit(214, "m")
  27236. },
  27237. {
  27238. name: "Macro+",
  27239. height: math.unit(534, "m")
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27245. {
  27246. front: {
  27247. height: math.unit(5 + 5 / 12, "feet"),
  27248. weight: math.unit(120, "lb"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/ari/front.svg",
  27252. extra: 1550/1471,
  27253. bottom: 39/1589
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(5 + 5 / 12, "feet")
  27261. },
  27262. {
  27263. name: "Macro",
  27264. height: math.unit(100, "feet"),
  27265. default: true
  27266. },
  27267. {
  27268. name: "Megamacro",
  27269. height: math.unit(100, "miles")
  27270. },
  27271. {
  27272. name: "Gigamacro",
  27273. height: math.unit(80000, "miles")
  27274. },
  27275. ]
  27276. ))
  27277. characterMakers.push(() => makeCharacter(
  27278. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27279. {
  27280. side: {
  27281. height: math.unit(9, "feet"),
  27282. weight: math.unit(400, "kg"),
  27283. name: "Side",
  27284. image: {
  27285. source: "./media/characters/bolt/side.svg",
  27286. extra: 1126 / 896,
  27287. bottom: 60 / 1187.3,
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Micro",
  27294. height: math.unit(5, "inches")
  27295. },
  27296. {
  27297. name: "Normal",
  27298. height: math.unit(9, "feet"),
  27299. default: true
  27300. },
  27301. {
  27302. name: "Macro",
  27303. height: math.unit(700, "feet")
  27304. },
  27305. {
  27306. name: "Max Size",
  27307. height: math.unit(1.52e22, "yottameters")
  27308. },
  27309. ]
  27310. ))
  27311. characterMakers.push(() => makeCharacter(
  27312. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27313. {
  27314. front: {
  27315. height: math.unit(4.3, "meters"),
  27316. weight: math.unit(3, "tons"),
  27317. name: "Front",
  27318. image: {
  27319. source: "./media/characters/draekon-sylviar/front.svg",
  27320. extra: 2072/1512,
  27321. bottom: 74/2146
  27322. }
  27323. },
  27324. back: {
  27325. height: math.unit(4.3, "meters"),
  27326. weight: math.unit(3, "tons"),
  27327. name: "Back",
  27328. image: {
  27329. source: "./media/characters/draekon-sylviar/back.svg",
  27330. extra: 1639/1483,
  27331. bottom: 41/1680
  27332. }
  27333. },
  27334. feral: {
  27335. height: math.unit(1.15, "meters"),
  27336. weight: math.unit(3, "tons"),
  27337. name: "Feral",
  27338. image: {
  27339. source: "./media/characters/draekon-sylviar/feral.svg",
  27340. extra: 1033/395,
  27341. bottom: 130/1163
  27342. }
  27343. },
  27344. maw: {
  27345. height: math.unit(1.3, "meters"),
  27346. name: "Maw",
  27347. image: {
  27348. source: "./media/characters/draekon-sylviar/maw.svg"
  27349. }
  27350. },
  27351. mawSeparated: {
  27352. height: math.unit(1.53, "meters"),
  27353. name: "Separated Maw",
  27354. image: {
  27355. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27356. }
  27357. },
  27358. tail: {
  27359. height: math.unit(1.15, "meters"),
  27360. name: "Tail",
  27361. image: {
  27362. source: "./media/characters/draekon-sylviar/tail.svg"
  27363. }
  27364. },
  27365. tailDick: {
  27366. height: math.unit(1.15, "meters"),
  27367. name: "Tail (Dick)",
  27368. image: {
  27369. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27370. }
  27371. },
  27372. tailDickSeparated: {
  27373. height: math.unit(1.19, "meters"),
  27374. name: "Tail (Separated Dick)",
  27375. image: {
  27376. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27377. }
  27378. },
  27379. slit: {
  27380. height: math.unit(1, "meters"),
  27381. name: "Slit",
  27382. image: {
  27383. source: "./media/characters/draekon-sylviar/slit.svg"
  27384. }
  27385. },
  27386. dick: {
  27387. height: math.unit(1.15, "meters"),
  27388. name: "Dick",
  27389. image: {
  27390. source: "./media/characters/draekon-sylviar/dick.svg"
  27391. }
  27392. },
  27393. dickSeparated: {
  27394. height: math.unit(1.1, "meters"),
  27395. name: "Separated Dick",
  27396. image: {
  27397. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27398. }
  27399. },
  27400. sheath: {
  27401. height: math.unit(1.15, "meters"),
  27402. name: "Sheath",
  27403. image: {
  27404. source: "./media/characters/draekon-sylviar/sheath.svg"
  27405. }
  27406. },
  27407. },
  27408. [
  27409. {
  27410. name: "Small",
  27411. height: math.unit(4.53 / 2, "meters"),
  27412. default: true
  27413. },
  27414. {
  27415. name: "Normal",
  27416. height: math.unit(4.53, "meters"),
  27417. default: true
  27418. },
  27419. {
  27420. name: "Large",
  27421. height: math.unit(4.53 * 2, "meters"),
  27422. },
  27423. ]
  27424. ))
  27425. characterMakers.push(() => makeCharacter(
  27426. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27427. {
  27428. front: {
  27429. height: math.unit(6 + 2 / 12, "feet"),
  27430. weight: math.unit(180, "lb"),
  27431. name: "Front",
  27432. image: {
  27433. source: "./media/characters/brawler/front.svg",
  27434. extra: 3301 / 3027,
  27435. bottom: 138 / 3439
  27436. }
  27437. },
  27438. },
  27439. [
  27440. {
  27441. name: "Normal",
  27442. height: math.unit(6 + 2 / 12, "feet"),
  27443. default: true
  27444. },
  27445. ]
  27446. ))
  27447. characterMakers.push(() => makeCharacter(
  27448. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27449. {
  27450. front: {
  27451. height: math.unit(11, "feet"),
  27452. weight: math.unit(1000, "lb"),
  27453. name: "Front",
  27454. image: {
  27455. source: "./media/characters/alex/front.svg",
  27456. bottom: 44.5 / 620
  27457. }
  27458. },
  27459. },
  27460. [
  27461. {
  27462. name: "Micro",
  27463. height: math.unit(5, "inches")
  27464. },
  27465. {
  27466. name: "Normal",
  27467. height: math.unit(11, "feet"),
  27468. default: true
  27469. },
  27470. {
  27471. name: "Macro",
  27472. height: math.unit(9.5e9, "feet")
  27473. },
  27474. {
  27475. name: "Max Size",
  27476. height: math.unit(1.4e283, "yottameters")
  27477. },
  27478. ]
  27479. ))
  27480. characterMakers.push(() => makeCharacter(
  27481. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27482. {
  27483. female: {
  27484. height: math.unit(29.9, "m"),
  27485. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27486. name: "Female",
  27487. image: {
  27488. source: "./media/characters/zenari/female.svg",
  27489. extra: 3281.6 / 3217,
  27490. bottom: 72.2 / 3353
  27491. }
  27492. },
  27493. male: {
  27494. height: math.unit(27.7, "m"),
  27495. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27496. name: "Male",
  27497. image: {
  27498. source: "./media/characters/zenari/male.svg",
  27499. extra: 3008 / 2991,
  27500. bottom: 54.6 / 3069
  27501. }
  27502. },
  27503. },
  27504. [
  27505. {
  27506. name: "Macro",
  27507. height: math.unit(29.7, "meters"),
  27508. default: true
  27509. },
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27514. {
  27515. female: {
  27516. height: math.unit(23.8, "m"),
  27517. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27518. name: "Female",
  27519. image: {
  27520. source: "./media/characters/mactarian/female.svg",
  27521. extra: 2662 / 2569,
  27522. bottom: 73 / 2736
  27523. }
  27524. },
  27525. male: {
  27526. height: math.unit(23.8, "m"),
  27527. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27528. name: "Male",
  27529. image: {
  27530. source: "./media/characters/mactarian/male.svg",
  27531. extra: 2673 / 2600,
  27532. bottom: 76 / 2750
  27533. }
  27534. },
  27535. },
  27536. [
  27537. {
  27538. name: "Macro",
  27539. height: math.unit(23.8, "meters"),
  27540. default: true
  27541. },
  27542. ]
  27543. ))
  27544. characterMakers.push(() => makeCharacter(
  27545. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27546. {
  27547. female: {
  27548. height: math.unit(19.3, "m"),
  27549. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27550. name: "Female",
  27551. image: {
  27552. source: "./media/characters/umok/female.svg",
  27553. extra: 2186 / 2078,
  27554. bottom: 87 / 2277
  27555. }
  27556. },
  27557. male: {
  27558. height: math.unit(19.5, "m"),
  27559. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27560. name: "Male",
  27561. image: {
  27562. source: "./media/characters/umok/male.svg",
  27563. extra: 2233 / 2140,
  27564. bottom: 24.4 / 2258
  27565. }
  27566. },
  27567. },
  27568. [
  27569. {
  27570. name: "Macro",
  27571. height: math.unit(19.3, "meters"),
  27572. default: true
  27573. },
  27574. ]
  27575. ))
  27576. characterMakers.push(() => makeCharacter(
  27577. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27578. {
  27579. female: {
  27580. height: math.unit(26.15, "m"),
  27581. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27582. name: "Female",
  27583. image: {
  27584. source: "./media/characters/joraxian/female.svg",
  27585. extra: 2912 / 2824,
  27586. bottom: 36 / 2956
  27587. }
  27588. },
  27589. male: {
  27590. height: math.unit(25.4, "m"),
  27591. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27592. name: "Male",
  27593. image: {
  27594. source: "./media/characters/joraxian/male.svg",
  27595. extra: 2877 / 2721,
  27596. bottom: 82 / 2967
  27597. }
  27598. },
  27599. },
  27600. [
  27601. {
  27602. name: "Macro",
  27603. height: math.unit(26.15, "meters"),
  27604. default: true
  27605. },
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27610. {
  27611. female: {
  27612. height: math.unit(21.6, "m"),
  27613. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27614. name: "Female",
  27615. image: {
  27616. source: "./media/characters/sthara/female.svg",
  27617. extra: 2516 / 2347,
  27618. bottom: 21.5 / 2537
  27619. }
  27620. },
  27621. male: {
  27622. height: math.unit(24, "m"),
  27623. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27624. name: "Male",
  27625. image: {
  27626. source: "./media/characters/sthara/male.svg",
  27627. extra: 2732 / 2607,
  27628. bottom: 23 / 2732
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Macro",
  27635. height: math.unit(21.6, "meters"),
  27636. default: true
  27637. },
  27638. ]
  27639. ))
  27640. characterMakers.push(() => makeCharacter(
  27641. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27642. {
  27643. front: {
  27644. height: math.unit(6 + 4 / 12, "feet"),
  27645. weight: math.unit(175, "lb"),
  27646. name: "Front",
  27647. image: {
  27648. source: "./media/characters/luka-bryzant/front.svg",
  27649. extra: 311 / 289,
  27650. bottom: 4 / 315
  27651. }
  27652. },
  27653. back: {
  27654. height: math.unit(6 + 4 / 12, "feet"),
  27655. weight: math.unit(175, "lb"),
  27656. name: "Back",
  27657. image: {
  27658. source: "./media/characters/luka-bryzant/back.svg",
  27659. extra: 311 / 289,
  27660. bottom: 3.8 / 313.7
  27661. }
  27662. },
  27663. },
  27664. [
  27665. {
  27666. name: "Micro",
  27667. height: math.unit(10, "inches")
  27668. },
  27669. {
  27670. name: "Normal",
  27671. height: math.unit(6 + 4 / 12, "feet"),
  27672. default: true
  27673. },
  27674. {
  27675. name: "Large",
  27676. height: math.unit(12, "feet")
  27677. },
  27678. ]
  27679. ))
  27680. characterMakers.push(() => makeCharacter(
  27681. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27682. {
  27683. front: {
  27684. height: math.unit(5 + 7 / 12, "feet"),
  27685. weight: math.unit(185, "lb"),
  27686. name: "Front",
  27687. image: {
  27688. source: "./media/characters/aman-aquila/front.svg",
  27689. extra: 1013 / 976,
  27690. bottom: 45.6 / 1057
  27691. }
  27692. },
  27693. side: {
  27694. height: math.unit(5 + 7 / 12, "feet"),
  27695. weight: math.unit(185, "lb"),
  27696. name: "Side",
  27697. image: {
  27698. source: "./media/characters/aman-aquila/side.svg",
  27699. extra: 1054 / 1011,
  27700. bottom: 15 / 1070
  27701. }
  27702. },
  27703. back: {
  27704. height: math.unit(5 + 7 / 12, "feet"),
  27705. weight: math.unit(185, "lb"),
  27706. name: "Back",
  27707. image: {
  27708. source: "./media/characters/aman-aquila/back.svg",
  27709. extra: 1026 / 970,
  27710. bottom: 12 / 1039
  27711. }
  27712. },
  27713. head: {
  27714. height: math.unit(1.211, "feet"),
  27715. name: "Head",
  27716. image: {
  27717. source: "./media/characters/aman-aquila/head.svg",
  27718. }
  27719. },
  27720. },
  27721. [
  27722. {
  27723. name: "Minimicro",
  27724. height: math.unit(0.057, "inches")
  27725. },
  27726. {
  27727. name: "Micro",
  27728. height: math.unit(7, "inches")
  27729. },
  27730. {
  27731. name: "Mini",
  27732. height: math.unit(3 + 7 / 12, "feet")
  27733. },
  27734. {
  27735. name: "Normal",
  27736. height: math.unit(5 + 7 / 12, "feet"),
  27737. default: true
  27738. },
  27739. {
  27740. name: "Macro",
  27741. height: math.unit(157 + 7 / 12, "feet")
  27742. },
  27743. {
  27744. name: "Megamacro",
  27745. height: math.unit(1557 + 7 / 12, "feet")
  27746. },
  27747. {
  27748. name: "Gigamacro",
  27749. height: math.unit(15557 + 7 / 12, "feet")
  27750. },
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27755. {
  27756. front: {
  27757. height: math.unit(3 + 2 / 12, "inches"),
  27758. weight: math.unit(0.3, "ounces"),
  27759. name: "Front",
  27760. image: {
  27761. source: "./media/characters/hiphae/front.svg",
  27762. extra: 1931 / 1683,
  27763. bottom: 24 / 1955
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(3 + 1 / 2, "inches"),
  27771. default: true
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27777. {
  27778. front: {
  27779. height: math.unit(5 + 10 / 12, "feet"),
  27780. weight: math.unit(165, "lb"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/nicky/front.svg",
  27784. extra: 3144 / 2886,
  27785. bottom: 45.6 / 3192
  27786. }
  27787. },
  27788. back: {
  27789. height: math.unit(5 + 10 / 12, "feet"),
  27790. weight: math.unit(165, "lb"),
  27791. name: "Back",
  27792. image: {
  27793. source: "./media/characters/nicky/back.svg",
  27794. extra: 3055 / 2804,
  27795. bottom: 28.4 / 3087
  27796. }
  27797. },
  27798. frontclothed: {
  27799. height: math.unit(5 + 10 / 12, "feet"),
  27800. weight: math.unit(165, "lb"),
  27801. name: "Front-clothed",
  27802. image: {
  27803. source: "./media/characters/nicky/front-clothed.svg",
  27804. extra: 3184.9 / 2926.9,
  27805. bottom: 86.5 / 3239.9
  27806. }
  27807. },
  27808. foot: {
  27809. height: math.unit(1.16, "feet"),
  27810. name: "Foot",
  27811. image: {
  27812. source: "./media/characters/nicky/foot.svg"
  27813. }
  27814. },
  27815. feet: {
  27816. height: math.unit(1.34, "feet"),
  27817. name: "Feet",
  27818. image: {
  27819. source: "./media/characters/nicky/feet.svg"
  27820. }
  27821. },
  27822. maw: {
  27823. height: math.unit(0.9, "feet"),
  27824. name: "Maw",
  27825. image: {
  27826. source: "./media/characters/nicky/maw.svg"
  27827. }
  27828. },
  27829. },
  27830. [
  27831. {
  27832. name: "Normal",
  27833. height: math.unit(5 + 10 / 12, "feet"),
  27834. default: true
  27835. },
  27836. {
  27837. name: "Macro",
  27838. height: math.unit(60, "feet")
  27839. },
  27840. {
  27841. name: "Megamacro",
  27842. height: math.unit(1, "mile")
  27843. },
  27844. ]
  27845. ))
  27846. characterMakers.push(() => makeCharacter(
  27847. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27848. {
  27849. side: {
  27850. height: math.unit(10, "feet"),
  27851. weight: math.unit(600, "lb"),
  27852. name: "Side",
  27853. image: {
  27854. source: "./media/characters/blair/side.svg",
  27855. bottom: 16.6 / 475,
  27856. extra: 458 / 431
  27857. }
  27858. },
  27859. },
  27860. [
  27861. {
  27862. name: "Micro",
  27863. height: math.unit(8, "inches")
  27864. },
  27865. {
  27866. name: "Normal",
  27867. height: math.unit(10, "feet"),
  27868. default: true
  27869. },
  27870. {
  27871. name: "Macro",
  27872. height: math.unit(180, "feet")
  27873. },
  27874. ]
  27875. ))
  27876. characterMakers.push(() => makeCharacter(
  27877. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27878. {
  27879. front: {
  27880. height: math.unit(5 + 4 / 12, "feet"),
  27881. weight: math.unit(125, "lb"),
  27882. name: "Front",
  27883. image: {
  27884. source: "./media/characters/fisher/front.svg",
  27885. extra: 444 / 390,
  27886. bottom: 2 / 444.8
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Micro",
  27893. height: math.unit(4, "inches")
  27894. },
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(5 + 4 / 12, "feet"),
  27898. default: true
  27899. },
  27900. {
  27901. name: "Macro",
  27902. height: math.unit(100, "feet")
  27903. },
  27904. ]
  27905. ))
  27906. characterMakers.push(() => makeCharacter(
  27907. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27908. {
  27909. front: {
  27910. height: math.unit(6.71, "feet"),
  27911. weight: math.unit(200, "lb"),
  27912. preyCapacity: math.unit(1000000, "people"),
  27913. name: "Front",
  27914. image: {
  27915. source: "./media/characters/gliss/front.svg",
  27916. extra: 2347 / 2231,
  27917. bottom: 113 / 2462
  27918. }
  27919. },
  27920. hammerspaceSize: {
  27921. height: math.unit(6.71 * 717, "feet"),
  27922. weight: math.unit(200, "lb"),
  27923. preyCapacity: math.unit(1000000, "people"),
  27924. name: "Hammerspace Size",
  27925. image: {
  27926. source: "./media/characters/gliss/front.svg",
  27927. extra: 2347 / 2231,
  27928. bottom: 113 / 2462
  27929. }
  27930. },
  27931. },
  27932. [
  27933. {
  27934. name: "Normal",
  27935. height: math.unit(6.71, "feet"),
  27936. default: true
  27937. },
  27938. ]
  27939. ))
  27940. characterMakers.push(() => makeCharacter(
  27941. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27942. {
  27943. side: {
  27944. height: math.unit(1.44, "m"),
  27945. weight: math.unit(80, "kg"),
  27946. name: "Side",
  27947. image: {
  27948. source: "./media/characters/dune-anderson/side.svg",
  27949. bottom: 49 / 1426
  27950. }
  27951. },
  27952. },
  27953. [
  27954. {
  27955. name: "Wolf-sized",
  27956. height: math.unit(1.44, "meters")
  27957. },
  27958. {
  27959. name: "Normal",
  27960. height: math.unit(5.05, "meters"),
  27961. default: true
  27962. },
  27963. {
  27964. name: "Big",
  27965. height: math.unit(14.4, "meters")
  27966. },
  27967. {
  27968. name: "Huge",
  27969. height: math.unit(144, "meters")
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27975. {
  27976. front: {
  27977. height: math.unit(6, "feet"),
  27978. weight: math.unit(220, "lb"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/hind/front.svg",
  27982. extra: 1912/1787,
  27983. bottom: 52/1964
  27984. }
  27985. },
  27986. back: {
  27987. height: math.unit(6, "feet"),
  27988. weight: math.unit(220, "lb"),
  27989. name: "Back",
  27990. image: {
  27991. source: "./media/characters/hind/back.svg",
  27992. extra: 1901/1794,
  27993. bottom: 26/1927
  27994. }
  27995. },
  27996. },
  27997. [
  27998. {
  27999. name: "Normal",
  28000. height: math.unit(6, "feet"),
  28001. default: true
  28002. },
  28003. ]
  28004. ))
  28005. characterMakers.push(() => makeCharacter(
  28006. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28007. {
  28008. front: {
  28009. height: math.unit(2.1, "meters"),
  28010. weight: math.unit(150, "lb"),
  28011. name: "Front",
  28012. image: {
  28013. source: "./media/characters/tharquench-sizestealer/front.svg",
  28014. extra: 1605/1470,
  28015. bottom: 36/1641
  28016. }
  28017. },
  28018. frontAlt: {
  28019. height: math.unit(2.1, "meters"),
  28020. weight: math.unit(150, "lb"),
  28021. name: "Front (Alt)",
  28022. image: {
  28023. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28024. extra: 2318 / 2063,
  28025. bottom: 93.4 / 2410
  28026. }
  28027. },
  28028. },
  28029. [
  28030. {
  28031. name: "Nano",
  28032. height: math.unit(1, "mm")
  28033. },
  28034. {
  28035. name: "Micro",
  28036. height: math.unit(1, "cm")
  28037. },
  28038. {
  28039. name: "Normal",
  28040. height: math.unit(2.1, "meters"),
  28041. default: true
  28042. },
  28043. ]
  28044. ))
  28045. characterMakers.push(() => makeCharacter(
  28046. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28047. {
  28048. front: {
  28049. height: math.unit(7 + 5 / 12, "feet"),
  28050. weight: math.unit(357, "lb"),
  28051. name: "Front",
  28052. image: {
  28053. source: "./media/characters/solex-draconov/front.svg",
  28054. extra: 1993 / 1865,
  28055. bottom: 117 / 2111
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Natural Height",
  28062. height: math.unit(7 + 5 / 12, "feet"),
  28063. default: true
  28064. },
  28065. {
  28066. name: "Macro",
  28067. height: math.unit(350, "feet")
  28068. },
  28069. {
  28070. name: "Macro+",
  28071. height: math.unit(1000, "feet")
  28072. },
  28073. {
  28074. name: "Megamacro",
  28075. height: math.unit(20, "km")
  28076. },
  28077. {
  28078. name: "Megamacro+",
  28079. height: math.unit(1000, "km")
  28080. },
  28081. {
  28082. name: "Gigamacro",
  28083. height: math.unit(2.5, "Gm")
  28084. },
  28085. {
  28086. name: "Teramacro",
  28087. height: math.unit(15, "Tm")
  28088. },
  28089. {
  28090. name: "Galactic",
  28091. height: math.unit(30, "Zm")
  28092. },
  28093. {
  28094. name: "Universal",
  28095. height: math.unit(21000, "Ym")
  28096. },
  28097. {
  28098. name: "Omniversal",
  28099. height: math.unit(9.861e50, "Ym")
  28100. },
  28101. {
  28102. name: "Existential",
  28103. height: math.unit(1e300, "meters")
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28109. {
  28110. side: {
  28111. height: math.unit(25, "feet"),
  28112. weight: math.unit(90000, "lb"),
  28113. name: "Side",
  28114. image: {
  28115. source: "./media/characters/mandarax/side.svg",
  28116. extra: 614 / 332,
  28117. bottom: 55 / 630
  28118. }
  28119. },
  28120. lounging: {
  28121. height: math.unit(15.4, "feet"),
  28122. weight: math.unit(90000, "lb"),
  28123. name: "Lounging",
  28124. image: {
  28125. source: "./media/characters/mandarax/lounging.svg",
  28126. extra: 817/609,
  28127. bottom: 685/1502
  28128. }
  28129. },
  28130. head: {
  28131. height: math.unit(11.4, "feet"),
  28132. name: "Head",
  28133. image: {
  28134. source: "./media/characters/mandarax/head.svg"
  28135. }
  28136. },
  28137. belly: {
  28138. height: math.unit(33, "feet"),
  28139. name: "Belly",
  28140. preyCapacity: math.unit(500, "people"),
  28141. image: {
  28142. source: "./media/characters/mandarax/belly.svg"
  28143. }
  28144. },
  28145. dick: {
  28146. height: math.unit(8.46, "feet"),
  28147. name: "Dick",
  28148. image: {
  28149. source: "./media/characters/mandarax/dick.svg"
  28150. }
  28151. },
  28152. top: {
  28153. height: math.unit(28, "meters"),
  28154. name: "Top",
  28155. image: {
  28156. source: "./media/characters/mandarax/top.svg"
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(25, "feet"),
  28164. default: true
  28165. },
  28166. ]
  28167. ))
  28168. characterMakers.push(() => makeCharacter(
  28169. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28170. {
  28171. front: {
  28172. height: math.unit(5, "feet"),
  28173. weight: math.unit(90, "lb"),
  28174. name: "Front",
  28175. image: {
  28176. source: "./media/characters/pixil/front.svg",
  28177. extra: 2000 / 1618,
  28178. bottom: 12.3 / 2011
  28179. }
  28180. },
  28181. },
  28182. [
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(5, "feet"),
  28186. default: true
  28187. },
  28188. {
  28189. name: "Megamacro",
  28190. height: math.unit(10, "miles"),
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28196. {
  28197. front: {
  28198. height: math.unit(7 + 2 / 12, "feet"),
  28199. weight: math.unit(200, "lb"),
  28200. name: "Front",
  28201. image: {
  28202. source: "./media/characters/angel/front.svg",
  28203. extra: 1946/1840,
  28204. bottom: 30/1976
  28205. }
  28206. },
  28207. },
  28208. [
  28209. {
  28210. name: "Normal",
  28211. height: math.unit(7 + 2 / 12, "feet"),
  28212. default: true
  28213. },
  28214. {
  28215. name: "Macro",
  28216. height: math.unit(1000, "feet")
  28217. },
  28218. {
  28219. name: "Megamacro",
  28220. height: math.unit(2, "miles")
  28221. },
  28222. {
  28223. name: "Gigamacro",
  28224. height: math.unit(20, "earths")
  28225. },
  28226. ]
  28227. ))
  28228. characterMakers.push(() => makeCharacter(
  28229. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28230. {
  28231. front: {
  28232. height: math.unit(5, "feet"),
  28233. weight: math.unit(180, "lb"),
  28234. name: "Front",
  28235. image: {
  28236. source: "./media/characters/mekana/front.svg",
  28237. extra: 1671 / 1605,
  28238. bottom: 3.5 / 1691
  28239. }
  28240. },
  28241. side: {
  28242. height: math.unit(5, "feet"),
  28243. weight: math.unit(180, "lb"),
  28244. name: "Side",
  28245. image: {
  28246. source: "./media/characters/mekana/side.svg",
  28247. extra: 1671 / 1605,
  28248. bottom: 3.5 / 1691
  28249. }
  28250. },
  28251. back: {
  28252. height: math.unit(5, "feet"),
  28253. weight: math.unit(180, "lb"),
  28254. name: "Back",
  28255. image: {
  28256. source: "./media/characters/mekana/back.svg",
  28257. extra: 1671 / 1605,
  28258. bottom: 3.5 / 1691
  28259. }
  28260. },
  28261. },
  28262. [
  28263. {
  28264. name: "Normal",
  28265. height: math.unit(5, "feet"),
  28266. default: true
  28267. },
  28268. ]
  28269. ))
  28270. characterMakers.push(() => makeCharacter(
  28271. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28272. {
  28273. front: {
  28274. height: math.unit(4 + 6 / 12, "feet"),
  28275. weight: math.unit(80, "lb"),
  28276. name: "Front",
  28277. image: {
  28278. source: "./media/characters/pixie/front.svg",
  28279. extra: 1924 / 1825,
  28280. bottom: 22.4 / 1946
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Normal",
  28287. height: math.unit(4 + 6 / 12, "feet"),
  28288. default: true
  28289. },
  28290. {
  28291. name: "Macro",
  28292. height: math.unit(40, "feet")
  28293. },
  28294. ]
  28295. ))
  28296. characterMakers.push(() => makeCharacter(
  28297. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28298. {
  28299. front: {
  28300. height: math.unit(2.1, "meters"),
  28301. weight: math.unit(200, "lb"),
  28302. name: "Front",
  28303. image: {
  28304. source: "./media/characters/the-lascivious/front.svg",
  28305. extra: 1 / 0.893,
  28306. bottom: 3.5 / 573.7
  28307. }
  28308. },
  28309. },
  28310. [
  28311. {
  28312. name: "Human Scale",
  28313. height: math.unit(2.1, "meters")
  28314. },
  28315. {
  28316. name: "Wolxi Scale",
  28317. height: math.unit(46.2, "m"),
  28318. default: true
  28319. },
  28320. {
  28321. name: "Boinker of Buildings",
  28322. height: math.unit(10, "km")
  28323. },
  28324. {
  28325. name: "Shagger of Skyscrapers",
  28326. height: math.unit(40, "km")
  28327. },
  28328. {
  28329. name: "Banger of Boroughs",
  28330. height: math.unit(4000, "km")
  28331. },
  28332. {
  28333. name: "Screwer of States",
  28334. height: math.unit(100000, "km")
  28335. },
  28336. {
  28337. name: "Pounder of Planets",
  28338. height: math.unit(2000000, "km")
  28339. },
  28340. ]
  28341. ))
  28342. characterMakers.push(() => makeCharacter(
  28343. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28344. {
  28345. front: {
  28346. height: math.unit(6, "feet"),
  28347. weight: math.unit(150, "lb"),
  28348. name: "Front",
  28349. image: {
  28350. source: "./media/characters/aj/front.svg",
  28351. extra: 2039 / 1562,
  28352. bottom: 40 / 2079
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(11 + 6 / 12, "feet"),
  28360. default: true
  28361. },
  28362. {
  28363. name: "Megamacro",
  28364. height: math.unit(60, "megameters")
  28365. },
  28366. ]
  28367. ))
  28368. characterMakers.push(() => makeCharacter(
  28369. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28370. {
  28371. side: {
  28372. height: math.unit(31 + 8 / 12, "feet"),
  28373. weight: math.unit(75000, "kg"),
  28374. name: "Side",
  28375. image: {
  28376. source: "./media/characters/koros/side.svg",
  28377. extra: 1442 / 1297,
  28378. bottom: 122.7 / 1562
  28379. }
  28380. },
  28381. dicksKingsCrown: {
  28382. height: math.unit(6, "feet"),
  28383. name: "Dicks (King's Crown)",
  28384. image: {
  28385. source: "./media/characters/koros/dicks-kings-crown.svg"
  28386. }
  28387. },
  28388. dicksTailSet: {
  28389. height: math.unit(3, "feet"),
  28390. name: "Dicks (Tail Set)",
  28391. image: {
  28392. source: "./media/characters/koros/dicks-tail-set.svg"
  28393. }
  28394. },
  28395. dickCumming: {
  28396. height: math.unit(7.98, "feet"),
  28397. name: "Dick (Cumming)",
  28398. image: {
  28399. source: "./media/characters/koros/dick-cumming.svg"
  28400. }
  28401. },
  28402. dicksBack: {
  28403. height: math.unit(5.9, "feet"),
  28404. name: "Dicks (Back)",
  28405. image: {
  28406. source: "./media/characters/koros/dicks-back.svg"
  28407. }
  28408. },
  28409. dicksFront: {
  28410. height: math.unit(3.72, "feet"),
  28411. name: "Dicks (Front)",
  28412. image: {
  28413. source: "./media/characters/koros/dicks-front.svg"
  28414. }
  28415. },
  28416. dicksPeeking: {
  28417. height: math.unit(3.0, "feet"),
  28418. name: "Dicks (Peeking)",
  28419. image: {
  28420. source: "./media/characters/koros/dicks-peeking.svg"
  28421. }
  28422. },
  28423. eye: {
  28424. height: math.unit(1.7, "feet"),
  28425. name: "Eye",
  28426. image: {
  28427. source: "./media/characters/koros/eye.svg"
  28428. }
  28429. },
  28430. headFront: {
  28431. height: math.unit(11.69, "feet"),
  28432. name: "Head (Front)",
  28433. image: {
  28434. source: "./media/characters/koros/head-front.svg"
  28435. }
  28436. },
  28437. headSide: {
  28438. height: math.unit(14, "feet"),
  28439. name: "Head (Side)",
  28440. image: {
  28441. source: "./media/characters/koros/head-side.svg"
  28442. }
  28443. },
  28444. leg: {
  28445. height: math.unit(17, "feet"),
  28446. name: "Leg",
  28447. image: {
  28448. source: "./media/characters/koros/leg.svg"
  28449. }
  28450. },
  28451. mawSide: {
  28452. height: math.unit(12.8, "feet"),
  28453. name: "Maw (Side)",
  28454. image: {
  28455. source: "./media/characters/koros/maw-side.svg"
  28456. }
  28457. },
  28458. mawSpitting: {
  28459. height: math.unit(17, "feet"),
  28460. name: "Maw (Spitting)",
  28461. image: {
  28462. source: "./media/characters/koros/maw-spitting.svg"
  28463. }
  28464. },
  28465. slit: {
  28466. height: math.unit(2.8, "feet"),
  28467. name: "Slit",
  28468. image: {
  28469. source: "./media/characters/koros/slit.svg"
  28470. }
  28471. },
  28472. stomach: {
  28473. height: math.unit(6.8, "feet"),
  28474. preyCapacity: math.unit(20, "people"),
  28475. name: "Stomach",
  28476. image: {
  28477. source: "./media/characters/koros/stomach.svg"
  28478. }
  28479. },
  28480. wingspanBottom: {
  28481. height: math.unit(114, "feet"),
  28482. name: "Wingspan (Bottom)",
  28483. image: {
  28484. source: "./media/characters/koros/wingspan-bottom.svg"
  28485. }
  28486. },
  28487. wingspanTop: {
  28488. height: math.unit(104, "feet"),
  28489. name: "Wingspan (Top)",
  28490. image: {
  28491. source: "./media/characters/koros/wingspan-top.svg"
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(31 + 8 / 12, "feet"),
  28499. default: true
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28505. {
  28506. front: {
  28507. height: math.unit(18 + 5 / 12, "feet"),
  28508. weight: math.unit(3750, "kg"),
  28509. name: "Front",
  28510. image: {
  28511. source: "./media/characters/vexx/front.svg",
  28512. extra: 426 / 396,
  28513. bottom: 31.5 / 458
  28514. }
  28515. },
  28516. maw: {
  28517. height: math.unit(6, "feet"),
  28518. name: "Maw",
  28519. image: {
  28520. source: "./media/characters/vexx/maw.svg"
  28521. }
  28522. },
  28523. },
  28524. [
  28525. {
  28526. name: "Normal",
  28527. height: math.unit(18 + 5 / 12, "feet"),
  28528. default: true
  28529. },
  28530. ]
  28531. ))
  28532. characterMakers.push(() => makeCharacter(
  28533. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28534. {
  28535. front: {
  28536. height: math.unit(17 + 6 / 12, "feet"),
  28537. weight: math.unit(150, "lb"),
  28538. name: "Front",
  28539. image: {
  28540. source: "./media/characters/baadra/front.svg",
  28541. extra: 1694/1553,
  28542. bottom: 179/1873
  28543. }
  28544. },
  28545. frontAlt: {
  28546. height: math.unit(17 + 6 / 12, "feet"),
  28547. weight: math.unit(150, "lb"),
  28548. name: "Front (Alt)",
  28549. image: {
  28550. source: "./media/characters/baadra/front-alt.svg",
  28551. extra: 3137 / 2890,
  28552. bottom: 168.4 / 3305
  28553. }
  28554. },
  28555. back: {
  28556. height: math.unit(17 + 6 / 12, "feet"),
  28557. weight: math.unit(150, "lb"),
  28558. name: "Back",
  28559. image: {
  28560. source: "./media/characters/baadra/back.svg",
  28561. extra: 3142 / 2890,
  28562. bottom: 220 / 3371
  28563. }
  28564. },
  28565. head: {
  28566. height: math.unit(5.45, "feet"),
  28567. name: "Head",
  28568. image: {
  28569. source: "./media/characters/baadra/head.svg"
  28570. }
  28571. },
  28572. headAngry: {
  28573. height: math.unit(4.95, "feet"),
  28574. name: "Head (Angry)",
  28575. image: {
  28576. source: "./media/characters/baadra/head-angry.svg"
  28577. }
  28578. },
  28579. headOpen: {
  28580. height: math.unit(6, "feet"),
  28581. name: "Head (Open)",
  28582. image: {
  28583. source: "./media/characters/baadra/head-open.svg"
  28584. }
  28585. },
  28586. },
  28587. [
  28588. {
  28589. name: "Normal",
  28590. height: math.unit(17 + 6 / 12, "feet"),
  28591. default: true
  28592. },
  28593. ]
  28594. ))
  28595. characterMakers.push(() => makeCharacter(
  28596. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28597. {
  28598. front: {
  28599. height: math.unit(7 + 3 / 12, "feet"),
  28600. weight: math.unit(180, "lb"),
  28601. name: "Front",
  28602. image: {
  28603. source: "./media/characters/juri/front.svg",
  28604. extra: 1401 / 1237,
  28605. bottom: 18.5 / 1418
  28606. }
  28607. },
  28608. side: {
  28609. height: math.unit(7 + 3 / 12, "feet"),
  28610. weight: math.unit(180, "lb"),
  28611. name: "Side",
  28612. image: {
  28613. source: "./media/characters/juri/side.svg",
  28614. extra: 1424 / 1242,
  28615. bottom: 18.5 / 1447
  28616. }
  28617. },
  28618. sitting: {
  28619. height: math.unit(6, "feet"),
  28620. weight: math.unit(180, "lb"),
  28621. name: "Sitting",
  28622. image: {
  28623. source: "./media/characters/juri/sitting.svg",
  28624. extra: 1270 / 1143,
  28625. bottom: 100 / 1343
  28626. }
  28627. },
  28628. back: {
  28629. height: math.unit(7 + 3 / 12, "feet"),
  28630. weight: math.unit(180, "lb"),
  28631. name: "Back",
  28632. image: {
  28633. source: "./media/characters/juri/back.svg",
  28634. extra: 1377 / 1240,
  28635. bottom: 23.7 / 1405
  28636. }
  28637. },
  28638. maw: {
  28639. height: math.unit(2.8, "feet"),
  28640. name: "Maw",
  28641. image: {
  28642. source: "./media/characters/juri/maw.svg"
  28643. }
  28644. },
  28645. stomach: {
  28646. height: math.unit(0.89, "feet"),
  28647. preyCapacity: math.unit(4, "liters"),
  28648. name: "Stomach",
  28649. image: {
  28650. source: "./media/characters/juri/stomach.svg"
  28651. }
  28652. },
  28653. },
  28654. [
  28655. {
  28656. name: "Normal",
  28657. height: math.unit(7 + 3 / 12, "feet"),
  28658. default: true
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28664. {
  28665. fox: {
  28666. height: math.unit(5 + 6 / 12, "feet"),
  28667. weight: math.unit(140, "lb"),
  28668. name: "Fox",
  28669. image: {
  28670. source: "./media/characters/maxene-sita/fox.svg",
  28671. extra: 146 / 138,
  28672. bottom: 2.1 / 148.19
  28673. }
  28674. },
  28675. foxLaying: {
  28676. height: math.unit(1.70, "feet"),
  28677. weight: math.unit(140, "lb"),
  28678. name: "Fox (Laying)",
  28679. image: {
  28680. source: "./media/characters/maxene-sita/fox-laying.svg",
  28681. extra: 910 / 572,
  28682. bottom: 71 / 981
  28683. }
  28684. },
  28685. kitsune: {
  28686. height: math.unit(10, "feet"),
  28687. weight: math.unit(800, "lb"),
  28688. name: "Kitsune",
  28689. image: {
  28690. source: "./media/characters/maxene-sita/kitsune.svg",
  28691. extra: 185 / 176,
  28692. bottom: 4.7 / 189.9
  28693. }
  28694. },
  28695. hellhound: {
  28696. height: math.unit(10, "feet"),
  28697. weight: math.unit(700, "lb"),
  28698. name: "Hellhound",
  28699. image: {
  28700. source: "./media/characters/maxene-sita/hellhound.svg",
  28701. extra: 1600 / 1545,
  28702. bottom: 81 / 1681
  28703. }
  28704. },
  28705. },
  28706. [
  28707. {
  28708. name: "Normal",
  28709. height: math.unit(5 + 6 / 12, "feet"),
  28710. default: true
  28711. },
  28712. ]
  28713. ))
  28714. characterMakers.push(() => makeCharacter(
  28715. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28716. {
  28717. front: {
  28718. height: math.unit(3 + 4 / 12, "feet"),
  28719. weight: math.unit(70, "lb"),
  28720. name: "Front",
  28721. image: {
  28722. source: "./media/characters/maia/front.svg",
  28723. extra: 227 / 219.5,
  28724. bottom: 40 / 267
  28725. }
  28726. },
  28727. back: {
  28728. height: math.unit(3 + 4 / 12, "feet"),
  28729. weight: math.unit(70, "lb"),
  28730. name: "Back",
  28731. image: {
  28732. source: "./media/characters/maia/back.svg",
  28733. extra: 237 / 225
  28734. }
  28735. },
  28736. },
  28737. [
  28738. {
  28739. name: "Normal",
  28740. height: math.unit(3 + 4 / 12, "feet"),
  28741. default: true
  28742. },
  28743. ]
  28744. ))
  28745. characterMakers.push(() => makeCharacter(
  28746. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28747. {
  28748. front: {
  28749. height: math.unit(5 + 10 / 12, "feet"),
  28750. weight: math.unit(197, "lb"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/jabaro/front.svg",
  28754. extra: 225 / 216,
  28755. bottom: 5.06 / 230
  28756. }
  28757. },
  28758. back: {
  28759. height: math.unit(5 + 10 / 12, "feet"),
  28760. weight: math.unit(197, "lb"),
  28761. name: "Back",
  28762. image: {
  28763. source: "./media/characters/jabaro/back.svg",
  28764. extra: 225 / 219,
  28765. bottom: 1.9 / 227
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(5 + 10 / 12, "feet"),
  28773. default: true
  28774. },
  28775. ]
  28776. ))
  28777. characterMakers.push(() => makeCharacter(
  28778. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28779. {
  28780. front: {
  28781. height: math.unit(5 + 8 / 12, "feet"),
  28782. weight: math.unit(139, "lb"),
  28783. name: "Front",
  28784. image: {
  28785. source: "./media/characters/risa/front.svg",
  28786. extra: 270 / 260,
  28787. bottom: 11.2 / 282
  28788. }
  28789. },
  28790. back: {
  28791. height: math.unit(5 + 8 / 12, "feet"),
  28792. weight: math.unit(139, "lb"),
  28793. name: "Back",
  28794. image: {
  28795. source: "./media/characters/risa/back.svg",
  28796. extra: 264 / 255,
  28797. bottom: 4 / 268
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Normal",
  28804. height: math.unit(5 + 8 / 12, "feet"),
  28805. default: true
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28811. {
  28812. front: {
  28813. height: math.unit(2 + 11 / 12, "feet"),
  28814. weight: math.unit(30, "lb"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/weatley/front.svg",
  28818. bottom: 10.7 / 414,
  28819. extra: 403.5 / 362
  28820. }
  28821. },
  28822. back: {
  28823. height: math.unit(2 + 11 / 12, "feet"),
  28824. weight: math.unit(30, "lb"),
  28825. name: "Back",
  28826. image: {
  28827. source: "./media/characters/weatley/back.svg",
  28828. bottom: 10.7 / 414,
  28829. extra: 403.5 / 362
  28830. }
  28831. },
  28832. },
  28833. [
  28834. {
  28835. name: "Normal",
  28836. height: math.unit(2 + 11 / 12, "feet"),
  28837. default: true
  28838. },
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28843. {
  28844. front: {
  28845. height: math.unit(5 + 2 / 12, "feet"),
  28846. weight: math.unit(50, "kg"),
  28847. name: "Front",
  28848. image: {
  28849. source: "./media/characters/mercury-crescent/front.svg",
  28850. extra: 1088 / 1033,
  28851. bottom: 18.9 / 1109
  28852. }
  28853. },
  28854. },
  28855. [
  28856. {
  28857. name: "Normal",
  28858. height: math.unit(5 + 2 / 12, "feet"),
  28859. default: true
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28865. {
  28866. front: {
  28867. height: math.unit(2, "feet"),
  28868. weight: math.unit(15, "kg"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/diamond-jones/front.svg",
  28872. extra: 727/723,
  28873. bottom: 46/773
  28874. }
  28875. },
  28876. },
  28877. [
  28878. {
  28879. name: "Normal",
  28880. height: math.unit(2, "feet"),
  28881. default: true
  28882. },
  28883. ]
  28884. ))
  28885. characterMakers.push(() => makeCharacter(
  28886. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28887. {
  28888. front: {
  28889. height: math.unit(3, "feet"),
  28890. weight: math.unit(30, "kg"),
  28891. name: "Front",
  28892. image: {
  28893. source: "./media/characters/sweet-bit/front.svg",
  28894. extra: 675 / 567,
  28895. bottom: 27.7 / 703
  28896. }
  28897. },
  28898. },
  28899. [
  28900. {
  28901. name: "Normal",
  28902. height: math.unit(3, "feet"),
  28903. default: true
  28904. },
  28905. ]
  28906. ))
  28907. characterMakers.push(() => makeCharacter(
  28908. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28909. {
  28910. side: {
  28911. height: math.unit(9.178, "feet"),
  28912. weight: math.unit(500, "lb"),
  28913. name: "Side",
  28914. image: {
  28915. source: "./media/characters/umbrazen/side.svg",
  28916. extra: 1730 / 1473,
  28917. bottom: 34.6 / 1765
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Normal",
  28924. height: math.unit(9.178, "feet"),
  28925. default: true
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(10, "feet"),
  28934. weight: math.unit(750, "lb"),
  28935. name: "Front",
  28936. image: {
  28937. source: "./media/characters/arlist/front.svg",
  28938. extra: 961 / 778,
  28939. bottom: 6.2 / 986
  28940. }
  28941. },
  28942. },
  28943. [
  28944. {
  28945. name: "Normal",
  28946. height: math.unit(10, "feet"),
  28947. default: true
  28948. },
  28949. ]
  28950. ))
  28951. characterMakers.push(() => makeCharacter(
  28952. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28953. {
  28954. front: {
  28955. height: math.unit(5 + 1 / 12, "feet"),
  28956. weight: math.unit(110, "lb"),
  28957. name: "Front",
  28958. image: {
  28959. source: "./media/characters/aradel/front.svg",
  28960. extra: 324 / 303,
  28961. bottom: 3.6 / 329.4
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Normal",
  28968. height: math.unit(5 + 1 / 12, "feet"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28975. {
  28976. dressed: {
  28977. height: math.unit(3 + 8 / 12, "feet"),
  28978. weight: math.unit(50, "lb"),
  28979. name: "Dressed",
  28980. image: {
  28981. source: "./media/characters/serryn/dressed.svg",
  28982. extra: 1792 / 1656,
  28983. bottom: 43.5 / 1840
  28984. }
  28985. },
  28986. nude: {
  28987. height: math.unit(3 + 8 / 12, "feet"),
  28988. weight: math.unit(50, "lb"),
  28989. name: "Nude",
  28990. image: {
  28991. source: "./media/characters/serryn/nude.svg",
  28992. extra: 1792 / 1656,
  28993. bottom: 43.5 / 1840
  28994. }
  28995. },
  28996. },
  28997. [
  28998. {
  28999. name: "Normal",
  29000. height: math.unit(3 + 8 / 12, "feet"),
  29001. default: true
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29007. {
  29008. front: {
  29009. height: math.unit(7 + 10 / 12, "feet"),
  29010. weight: math.unit(255, "lb"),
  29011. name: "Front",
  29012. image: {
  29013. source: "./media/characters/xavier-thyme/front.svg",
  29014. extra: 3733 / 3642,
  29015. bottom: 131 / 3869
  29016. }
  29017. },
  29018. frontRaven: {
  29019. height: math.unit(7 + 10 / 12, "feet"),
  29020. weight: math.unit(255, "lb"),
  29021. name: "Front (Raven)",
  29022. image: {
  29023. source: "./media/characters/xavier-thyme/front-raven.svg",
  29024. extra: 4385 / 3642,
  29025. bottom: 131 / 4517
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Normal",
  29032. height: math.unit(7 + 10 / 12, "feet"),
  29033. default: true
  29034. },
  29035. ]
  29036. ))
  29037. characterMakers.push(() => makeCharacter(
  29038. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29039. {
  29040. front: {
  29041. height: math.unit(1.6, "m"),
  29042. weight: math.unit(50, "kg"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/kiki/front.svg",
  29046. extra: 4682 / 3610,
  29047. bottom: 115 / 4777
  29048. }
  29049. },
  29050. },
  29051. [
  29052. {
  29053. name: "Normal",
  29054. height: math.unit(1.6, "meters"),
  29055. default: true
  29056. },
  29057. ]
  29058. ))
  29059. characterMakers.push(() => makeCharacter(
  29060. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29061. {
  29062. front: {
  29063. height: math.unit(50, "m"),
  29064. weight: math.unit(500, "tonnes"),
  29065. name: "Front",
  29066. image: {
  29067. source: "./media/characters/ryoko/front.svg",
  29068. extra: 4632 / 3926,
  29069. bottom: 193 / 4823
  29070. }
  29071. },
  29072. },
  29073. [
  29074. {
  29075. name: "Normal",
  29076. height: math.unit(50, "meters"),
  29077. default: true
  29078. },
  29079. ]
  29080. ))
  29081. characterMakers.push(() => makeCharacter(
  29082. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29083. {
  29084. front: {
  29085. height: math.unit(30, "m"),
  29086. weight: math.unit(22, "tonnes"),
  29087. name: "Front",
  29088. image: {
  29089. source: "./media/characters/elio/front.svg",
  29090. extra: 4582 / 3720,
  29091. bottom: 236 / 4828
  29092. }
  29093. },
  29094. },
  29095. [
  29096. {
  29097. name: "Normal",
  29098. height: math.unit(30, "meters"),
  29099. default: true
  29100. },
  29101. ]
  29102. ))
  29103. characterMakers.push(() => makeCharacter(
  29104. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29105. {
  29106. front: {
  29107. height: math.unit(6 + 3 / 12, "feet"),
  29108. weight: math.unit(120, "lb"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/azura/front.svg",
  29112. extra: 1149 / 1135,
  29113. bottom: 45 / 1194
  29114. }
  29115. },
  29116. frontClothed: {
  29117. height: math.unit(6 + 3 / 12, "feet"),
  29118. weight: math.unit(120, "lb"),
  29119. name: "Front (Clothed)",
  29120. image: {
  29121. source: "./media/characters/azura/front-clothed.svg",
  29122. extra: 1149 / 1135,
  29123. bottom: 45 / 1194
  29124. }
  29125. },
  29126. },
  29127. [
  29128. {
  29129. name: "Normal",
  29130. height: math.unit(6 + 3 / 12, "feet"),
  29131. default: true
  29132. },
  29133. {
  29134. name: "Macro",
  29135. height: math.unit(20 + 6 / 12, "feet")
  29136. },
  29137. {
  29138. name: "Megamacro",
  29139. height: math.unit(12, "miles")
  29140. },
  29141. {
  29142. name: "Gigamacro",
  29143. height: math.unit(10000, "miles")
  29144. },
  29145. {
  29146. name: "Teramacro",
  29147. height: math.unit(900000, "miles")
  29148. },
  29149. ]
  29150. ))
  29151. characterMakers.push(() => makeCharacter(
  29152. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29153. {
  29154. front: {
  29155. height: math.unit(12, "feet"),
  29156. weight: math.unit(1, "ton"),
  29157. capacity: math.unit(660000, "gallons"),
  29158. name: "Front",
  29159. image: {
  29160. source: "./media/characters/zeus/front.svg",
  29161. extra: 5005 / 4717,
  29162. bottom: 363 / 5388
  29163. }
  29164. },
  29165. },
  29166. [
  29167. {
  29168. name: "Normal",
  29169. height: math.unit(12, "feet")
  29170. },
  29171. {
  29172. name: "Preferred Size",
  29173. height: math.unit(0.5, "miles"),
  29174. default: true
  29175. },
  29176. {
  29177. name: "Giga Horse",
  29178. height: math.unit(300, "miles")
  29179. },
  29180. {
  29181. name: "Riding Planets",
  29182. height: math.unit(30, "megameters")
  29183. },
  29184. {
  29185. name: "Cosmic Giant",
  29186. height: math.unit(3, "zettameters")
  29187. },
  29188. {
  29189. name: "Breeding God",
  29190. height: math.unit(9.92e22, "yottameters")
  29191. },
  29192. ]
  29193. ))
  29194. characterMakers.push(() => makeCharacter(
  29195. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29196. {
  29197. side: {
  29198. height: math.unit(9, "feet"),
  29199. weight: math.unit(1500, "kg"),
  29200. name: "Side",
  29201. image: {
  29202. source: "./media/characters/fang/side.svg",
  29203. extra: 924 / 866,
  29204. bottom: 47.5 / 972.3
  29205. }
  29206. },
  29207. },
  29208. [
  29209. {
  29210. name: "Normal",
  29211. height: math.unit(9, "feet"),
  29212. default: true
  29213. },
  29214. {
  29215. name: "Macro",
  29216. height: math.unit(75 + 6 / 12, "feet")
  29217. },
  29218. {
  29219. name: "Teramacro",
  29220. height: math.unit(50000, "miles")
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(10, "feet"),
  29229. weight: math.unit(2, "tons"),
  29230. name: "Front",
  29231. image: {
  29232. source: "./media/characters/rekhit/front.svg",
  29233. extra: 2796 / 2590,
  29234. bottom: 225 / 3022
  29235. }
  29236. },
  29237. },
  29238. [
  29239. {
  29240. name: "Normal",
  29241. height: math.unit(10, "feet"),
  29242. default: true
  29243. },
  29244. {
  29245. name: "Macro",
  29246. height: math.unit(500, "feet")
  29247. },
  29248. ]
  29249. ))
  29250. characterMakers.push(() => makeCharacter(
  29251. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29252. {
  29253. front: {
  29254. height: math.unit(7 + 6.451 / 12, "feet"),
  29255. weight: math.unit(310, "lb"),
  29256. name: "Front",
  29257. image: {
  29258. source: "./media/characters/dahlia-verrick/front.svg",
  29259. extra: 1488 / 1365,
  29260. bottom: 6.2 / 1495
  29261. }
  29262. },
  29263. back: {
  29264. height: math.unit(7 + 6.451 / 12, "feet"),
  29265. weight: math.unit(310, "lb"),
  29266. name: "Back",
  29267. image: {
  29268. source: "./media/characters/dahlia-verrick/back.svg",
  29269. extra: 1472 / 1351,
  29270. bottom: 5.28 / 1477
  29271. }
  29272. },
  29273. frontBusiness: {
  29274. height: math.unit(7 + 6.451 / 12, "feet"),
  29275. weight: math.unit(200, "lb"),
  29276. name: "Front (Business)",
  29277. image: {
  29278. source: "./media/characters/dahlia-verrick/front-business.svg",
  29279. extra: 1478 / 1381,
  29280. bottom: 5.5 / 1484
  29281. }
  29282. },
  29283. frontCasual: {
  29284. height: math.unit(7 + 6.451 / 12, "feet"),
  29285. weight: math.unit(200, "lb"),
  29286. name: "Front (Casual)",
  29287. image: {
  29288. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29289. extra: 1478 / 1381,
  29290. bottom: 5.5 / 1484
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Travel-Sized",
  29297. height: math.unit(7.45, "inches")
  29298. },
  29299. {
  29300. name: "Normal",
  29301. height: math.unit(7 + 6.451 / 12, "feet"),
  29302. default: true
  29303. },
  29304. {
  29305. name: "Hitting the Town",
  29306. height: math.unit(37 + 8 / 12, "feet")
  29307. },
  29308. {
  29309. name: "Stomp in the Suburbs",
  29310. height: math.unit(964 + 9.728 / 12, "feet")
  29311. },
  29312. {
  29313. name: "Sit on the City",
  29314. height: math.unit(61747 + 10.592 / 12, "feet")
  29315. },
  29316. {
  29317. name: "Glomp the Globe",
  29318. height: math.unit(252919327 + 4.832 / 12, "feet")
  29319. },
  29320. ]
  29321. ))
  29322. characterMakers.push(() => makeCharacter(
  29323. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29324. {
  29325. front: {
  29326. height: math.unit(6 + 4 / 12, "feet"),
  29327. weight: math.unit(320, "lb"),
  29328. name: "Front",
  29329. image: {
  29330. source: "./media/characters/balina-mahigan/front.svg",
  29331. extra: 447 / 428,
  29332. bottom: 18 / 466
  29333. }
  29334. },
  29335. back: {
  29336. height: math.unit(6 + 4 / 12, "feet"),
  29337. weight: math.unit(320, "lb"),
  29338. name: "Back",
  29339. image: {
  29340. source: "./media/characters/balina-mahigan/back.svg",
  29341. extra: 445 / 428,
  29342. bottom: 4.07 / 448
  29343. }
  29344. },
  29345. arm: {
  29346. height: math.unit(1.88, "feet"),
  29347. name: "Arm",
  29348. image: {
  29349. source: "./media/characters/balina-mahigan/arm.svg"
  29350. }
  29351. },
  29352. backPort: {
  29353. height: math.unit(0.685, "feet"),
  29354. name: "Back Port",
  29355. image: {
  29356. source: "./media/characters/balina-mahigan/back-port.svg"
  29357. }
  29358. },
  29359. hoofpaw: {
  29360. height: math.unit(1.41, "feet"),
  29361. name: "Hoofpaw",
  29362. image: {
  29363. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29364. }
  29365. },
  29366. leftHandBack: {
  29367. height: math.unit(0.938, "feet"),
  29368. name: "Left Hand (Back)",
  29369. image: {
  29370. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29371. }
  29372. },
  29373. leftHandFront: {
  29374. height: math.unit(0.938, "feet"),
  29375. name: "Left Hand (Front)",
  29376. image: {
  29377. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29378. }
  29379. },
  29380. rightHandBack: {
  29381. height: math.unit(0.95, "feet"),
  29382. name: "Right Hand (Back)",
  29383. image: {
  29384. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29385. }
  29386. },
  29387. rightHandFront: {
  29388. height: math.unit(0.95, "feet"),
  29389. name: "Right Hand (Front)",
  29390. image: {
  29391. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29392. }
  29393. },
  29394. },
  29395. [
  29396. {
  29397. name: "Normal",
  29398. height: math.unit(6 + 4 / 12, "feet"),
  29399. default: true
  29400. },
  29401. ]
  29402. ))
  29403. characterMakers.push(() => makeCharacter(
  29404. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29405. {
  29406. front: {
  29407. height: math.unit(6, "feet"),
  29408. weight: math.unit(320, "lb"),
  29409. name: "Front",
  29410. image: {
  29411. source: "./media/characters/balina-mejeri/front.svg",
  29412. extra: 517 / 488,
  29413. bottom: 44.2 / 561
  29414. }
  29415. },
  29416. },
  29417. [
  29418. {
  29419. name: "Normal",
  29420. height: math.unit(6 + 4 / 12, "feet")
  29421. },
  29422. {
  29423. name: "Business",
  29424. height: math.unit(155, "feet"),
  29425. default: true
  29426. },
  29427. ]
  29428. ))
  29429. characterMakers.push(() => makeCharacter(
  29430. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29431. {
  29432. kneeling: {
  29433. height: math.unit(6 + 4 / 12, "feet"),
  29434. weight: math.unit(300 * 20, "lb"),
  29435. name: "Kneeling",
  29436. image: {
  29437. source: "./media/characters/balbarian/kneeling.svg",
  29438. extra: 922 / 862,
  29439. bottom: 42.4 / 965
  29440. }
  29441. },
  29442. },
  29443. [
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(6 + 4 / 12, "feet")
  29447. },
  29448. {
  29449. name: "Treasured",
  29450. height: math.unit(18 + 9 / 12, "feet"),
  29451. default: true
  29452. },
  29453. {
  29454. name: "Macro",
  29455. height: math.unit(900, "feet")
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29461. {
  29462. front: {
  29463. height: math.unit(6 + 4 / 12, "feet"),
  29464. weight: math.unit(325, "lb"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/balina-amarini/front.svg",
  29468. extra: 415 / 403,
  29469. bottom: 19 / 433.4
  29470. }
  29471. },
  29472. back: {
  29473. height: math.unit(6 + 4 / 12, "feet"),
  29474. weight: math.unit(325, "lb"),
  29475. name: "Back",
  29476. image: {
  29477. source: "./media/characters/balina-amarini/back.svg",
  29478. extra: 415 / 403,
  29479. bottom: 13.5 / 432
  29480. }
  29481. },
  29482. overdrive: {
  29483. height: math.unit(6 + 4 / 12, "feet"),
  29484. weight: math.unit(400, "lb"),
  29485. name: "Overdrive",
  29486. image: {
  29487. source: "./media/characters/balina-amarini/overdrive.svg",
  29488. extra: 269 / 259,
  29489. bottom: 12 / 282
  29490. }
  29491. },
  29492. },
  29493. [
  29494. {
  29495. name: "Boom",
  29496. height: math.unit(9 + 10 / 12, "feet"),
  29497. default: true
  29498. },
  29499. {
  29500. name: "Macro",
  29501. height: math.unit(280, "feet")
  29502. },
  29503. ]
  29504. ))
  29505. characterMakers.push(() => makeCharacter(
  29506. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29507. {
  29508. goddess: {
  29509. height: math.unit(600, "feet"),
  29510. weight: math.unit(2000000, "tons"),
  29511. name: "Goddess",
  29512. image: {
  29513. source: "./media/characters/lady-kubwa/goddess.svg",
  29514. extra: 1240.5 / 1223,
  29515. bottom: 22 / 1263
  29516. }
  29517. },
  29518. goddesser: {
  29519. height: math.unit(900, "feet"),
  29520. weight: math.unit(20000000, "lb"),
  29521. name: "Goddess-er",
  29522. image: {
  29523. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29524. extra: 899 / 888,
  29525. bottom: 12.6 / 912
  29526. }
  29527. },
  29528. },
  29529. [
  29530. {
  29531. name: "Macro",
  29532. height: math.unit(600, "feet"),
  29533. default: true
  29534. },
  29535. {
  29536. name: "Megamacro",
  29537. height: math.unit(250, "miles")
  29538. },
  29539. ]
  29540. ))
  29541. characterMakers.push(() => makeCharacter(
  29542. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29543. {
  29544. front: {
  29545. height: math.unit(7 + 7 / 12, "feet"),
  29546. weight: math.unit(250, "lb"),
  29547. name: "Front",
  29548. image: {
  29549. source: "./media/characters/tala-grovehorn/front.svg",
  29550. extra: 2636 / 2525,
  29551. bottom: 147 / 2781
  29552. }
  29553. },
  29554. back: {
  29555. height: math.unit(7 + 7 / 12, "feet"),
  29556. weight: math.unit(250, "lb"),
  29557. name: "Back",
  29558. image: {
  29559. source: "./media/characters/tala-grovehorn/back.svg",
  29560. extra: 2635 / 2539,
  29561. bottom: 100 / 2732.8
  29562. }
  29563. },
  29564. mouth: {
  29565. height: math.unit(1.15, "feet"),
  29566. name: "Mouth",
  29567. image: {
  29568. source: "./media/characters/tala-grovehorn/mouth.svg"
  29569. }
  29570. },
  29571. dick: {
  29572. height: math.unit(2.36, "feet"),
  29573. name: "Dick",
  29574. image: {
  29575. source: "./media/characters/tala-grovehorn/dick.svg"
  29576. }
  29577. },
  29578. slit: {
  29579. height: math.unit(0.61, "feet"),
  29580. name: "Slit",
  29581. image: {
  29582. source: "./media/characters/tala-grovehorn/slit.svg"
  29583. }
  29584. },
  29585. },
  29586. [
  29587. ]
  29588. ))
  29589. characterMakers.push(() => makeCharacter(
  29590. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29591. {
  29592. front: {
  29593. height: math.unit(7 + 7 / 12, "feet"),
  29594. weight: math.unit(225, "lb"),
  29595. name: "Front",
  29596. image: {
  29597. source: "./media/characters/epona/front.svg",
  29598. extra: 2445 / 2290,
  29599. bottom: 251 / 2696
  29600. }
  29601. },
  29602. back: {
  29603. height: math.unit(7 + 7 / 12, "feet"),
  29604. weight: math.unit(225, "lb"),
  29605. name: "Back",
  29606. image: {
  29607. source: "./media/characters/epona/back.svg",
  29608. extra: 2546 / 2408,
  29609. bottom: 44 / 2589
  29610. }
  29611. },
  29612. genitals: {
  29613. height: math.unit(1.5, "feet"),
  29614. name: "Genitals",
  29615. image: {
  29616. source: "./media/characters/epona/genitals.svg"
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Normal",
  29623. height: math.unit(7 + 7 / 12, "feet"),
  29624. default: true
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(7, "feet"),
  29633. weight: math.unit(518, "lb"),
  29634. name: "Front",
  29635. image: {
  29636. source: "./media/characters/avia-bloodbourn/front.svg",
  29637. extra: 1466 / 1350,
  29638. bottom: 65 / 1527
  29639. }
  29640. },
  29641. },
  29642. [
  29643. ]
  29644. ))
  29645. characterMakers.push(() => makeCharacter(
  29646. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29647. {
  29648. front: {
  29649. height: math.unit(9.35, "feet"),
  29650. weight: math.unit(600, "lb"),
  29651. name: "Front",
  29652. image: {
  29653. source: "./media/characters/amera/front.svg",
  29654. extra: 891 / 818,
  29655. bottom: 30 / 922.7
  29656. }
  29657. },
  29658. back: {
  29659. height: math.unit(9.35, "feet"),
  29660. weight: math.unit(600, "lb"),
  29661. name: "Back",
  29662. image: {
  29663. source: "./media/characters/amera/back.svg",
  29664. extra: 876 / 824,
  29665. bottom: 6.8 / 884
  29666. }
  29667. },
  29668. dick: {
  29669. height: math.unit(2.14, "feet"),
  29670. name: "Dick",
  29671. image: {
  29672. source: "./media/characters/amera/dick.svg"
  29673. }
  29674. },
  29675. },
  29676. [
  29677. {
  29678. name: "Normal",
  29679. height: math.unit(9.35, "feet"),
  29680. default: true
  29681. },
  29682. ]
  29683. ))
  29684. characterMakers.push(() => makeCharacter(
  29685. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29686. {
  29687. kneeling: {
  29688. height: math.unit(3 + 4 / 12, "feet"),
  29689. weight: math.unit(90, "lb"),
  29690. name: "Kneeling",
  29691. image: {
  29692. source: "./media/characters/rosewen/kneeling.svg",
  29693. extra: 1835 / 1571,
  29694. bottom: 27.7 / 1862
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(3 + 4 / 12, "feet"),
  29702. default: true
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29708. {
  29709. front: {
  29710. height: math.unit(5 + 10 / 12, "feet"),
  29711. weight: math.unit(200, "lb"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/sabah/front.svg",
  29715. extra: 849 / 763,
  29716. bottom: 33.9 / 881
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Normal",
  29723. height: math.unit(5 + 10 / 12, "feet"),
  29724. default: true
  29725. },
  29726. ]
  29727. ))
  29728. characterMakers.push(() => makeCharacter(
  29729. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29730. {
  29731. front: {
  29732. height: math.unit(3 + 5 / 12, "feet"),
  29733. weight: math.unit(40, "kg"),
  29734. name: "Front",
  29735. image: {
  29736. source: "./media/characters/purple-flame/front.svg",
  29737. extra: 1577 / 1412,
  29738. bottom: 97 / 1694
  29739. }
  29740. },
  29741. frontDressed: {
  29742. height: math.unit(3 + 5 / 12, "feet"),
  29743. weight: math.unit(40, "kg"),
  29744. name: "Front (Dressed)",
  29745. image: {
  29746. source: "./media/characters/purple-flame/front-dressed.svg",
  29747. extra: 1577 / 1412,
  29748. bottom: 97 / 1694
  29749. }
  29750. },
  29751. headphones: {
  29752. height: math.unit(0.85, "feet"),
  29753. name: "Headphones",
  29754. image: {
  29755. source: "./media/characters/purple-flame/headphones.svg"
  29756. }
  29757. },
  29758. },
  29759. [
  29760. {
  29761. name: "Really Small",
  29762. height: math.unit(5, "cm")
  29763. },
  29764. {
  29765. name: "Micro",
  29766. height: math.unit(1 + 5 / 12, "feet")
  29767. },
  29768. {
  29769. name: "Normal",
  29770. height: math.unit(3 + 5 / 12, "feet"),
  29771. default: true
  29772. },
  29773. {
  29774. name: "Minimacro",
  29775. height: math.unit(125, "feet")
  29776. },
  29777. {
  29778. name: "Macro",
  29779. height: math.unit(0.5, "miles")
  29780. },
  29781. {
  29782. name: "Megamacro",
  29783. height: math.unit(50, "miles")
  29784. },
  29785. {
  29786. name: "Gigantic",
  29787. height: math.unit(750, "miles")
  29788. },
  29789. {
  29790. name: "Planetary",
  29791. height: math.unit(15000, "miles")
  29792. },
  29793. ]
  29794. ))
  29795. characterMakers.push(() => makeCharacter(
  29796. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29797. {
  29798. front: {
  29799. height: math.unit(14, "feet"),
  29800. weight: math.unit(959, "lb"),
  29801. name: "Front",
  29802. image: {
  29803. source: "./media/characters/arsenal/front.svg",
  29804. extra: 2357 / 2157,
  29805. bottom: 93 / 2458
  29806. }
  29807. },
  29808. },
  29809. [
  29810. {
  29811. name: "Normal",
  29812. height: math.unit(14, "feet"),
  29813. default: true
  29814. },
  29815. ]
  29816. ))
  29817. characterMakers.push(() => makeCharacter(
  29818. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29819. {
  29820. front: {
  29821. height: math.unit(6, "feet"),
  29822. weight: math.unit(150, "lb"),
  29823. name: "Front",
  29824. image: {
  29825. source: "./media/characters/adira/front.svg",
  29826. extra: 2121/2013,
  29827. bottom: 206/2327
  29828. }
  29829. },
  29830. },
  29831. [
  29832. {
  29833. name: "Micro",
  29834. height: math.unit(4, "inches"),
  29835. default: true
  29836. },
  29837. {
  29838. name: "Macro",
  29839. height: math.unit(50, "feet")
  29840. },
  29841. ]
  29842. ))
  29843. characterMakers.push(() => makeCharacter(
  29844. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29845. {
  29846. front: {
  29847. height: math.unit(16, "feet"),
  29848. weight: math.unit(1000, "lb"),
  29849. name: "Front",
  29850. image: {
  29851. source: "./media/characters/grim/front.svg",
  29852. extra: 622 / 614,
  29853. bottom: 18.1 / 642
  29854. }
  29855. },
  29856. back: {
  29857. height: math.unit(16, "feet"),
  29858. weight: math.unit(1000, "lb"),
  29859. name: "Back",
  29860. image: {
  29861. source: "./media/characters/grim/back.svg",
  29862. extra: 610.6 / 602,
  29863. bottom: 40.8 / 652
  29864. }
  29865. },
  29866. hunched: {
  29867. height: math.unit(9.75, "feet"),
  29868. weight: math.unit(1000, "lb"),
  29869. name: "Hunched",
  29870. image: {
  29871. source: "./media/characters/grim/hunched.svg",
  29872. extra: 304 / 297,
  29873. bottom: 35.4 / 394
  29874. }
  29875. },
  29876. },
  29877. [
  29878. {
  29879. name: "Normal",
  29880. height: math.unit(16, "feet"),
  29881. default: true
  29882. },
  29883. ]
  29884. ))
  29885. characterMakers.push(() => makeCharacter(
  29886. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29887. {
  29888. front: {
  29889. height: math.unit(2.3, "meters"),
  29890. weight: math.unit(300, "lb"),
  29891. name: "Front",
  29892. image: {
  29893. source: "./media/characters/sinja/front-sfw.svg",
  29894. extra: 1393 / 1294,
  29895. bottom: 70 / 1463
  29896. }
  29897. },
  29898. frontNsfw: {
  29899. height: math.unit(2.3, "meters"),
  29900. weight: math.unit(300, "lb"),
  29901. name: "Front (NSFW)",
  29902. image: {
  29903. source: "./media/characters/sinja/front-nsfw.svg",
  29904. extra: 1393 / 1294,
  29905. bottom: 70 / 1463
  29906. }
  29907. },
  29908. back: {
  29909. height: math.unit(2.3, "meters"),
  29910. weight: math.unit(300, "lb"),
  29911. name: "Back",
  29912. image: {
  29913. source: "./media/characters/sinja/back.svg",
  29914. extra: 1393 / 1294,
  29915. bottom: 70 / 1463
  29916. }
  29917. },
  29918. head: {
  29919. height: math.unit(1.771, "feet"),
  29920. name: "Head",
  29921. image: {
  29922. source: "./media/characters/sinja/head.svg"
  29923. }
  29924. },
  29925. slit: {
  29926. height: math.unit(0.8, "feet"),
  29927. name: "Slit",
  29928. image: {
  29929. source: "./media/characters/sinja/slit.svg"
  29930. }
  29931. },
  29932. },
  29933. [
  29934. {
  29935. name: "Normal",
  29936. height: math.unit(2.3, "meters")
  29937. },
  29938. {
  29939. name: "Macro",
  29940. height: math.unit(91, "meters"),
  29941. default: true
  29942. },
  29943. {
  29944. name: "Megamacro",
  29945. height: math.unit(91440, "meters")
  29946. },
  29947. {
  29948. name: "Gigamacro",
  29949. height: math.unit(60960000, "meters")
  29950. },
  29951. {
  29952. name: "Teramacro",
  29953. height: math.unit(9144000000, "meters")
  29954. },
  29955. ]
  29956. ))
  29957. characterMakers.push(() => makeCharacter(
  29958. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29959. {
  29960. front: {
  29961. height: math.unit(1.7, "meters"),
  29962. weight: math.unit(130, "lb"),
  29963. name: "Front",
  29964. image: {
  29965. source: "./media/characters/kyu/front.svg",
  29966. extra: 415 / 395,
  29967. bottom: 5 / 420
  29968. }
  29969. },
  29970. head: {
  29971. height: math.unit(1.75, "feet"),
  29972. name: "Head",
  29973. image: {
  29974. source: "./media/characters/kyu/head.svg"
  29975. }
  29976. },
  29977. foot: {
  29978. height: math.unit(0.81, "feet"),
  29979. name: "Foot",
  29980. image: {
  29981. source: "./media/characters/kyu/foot.svg"
  29982. }
  29983. },
  29984. },
  29985. [
  29986. {
  29987. name: "Normal",
  29988. height: math.unit(1.7, "meters")
  29989. },
  29990. {
  29991. name: "Macro",
  29992. height: math.unit(131, "feet"),
  29993. default: true
  29994. },
  29995. {
  29996. name: "Megamacro",
  29997. height: math.unit(91440, "meters")
  29998. },
  29999. {
  30000. name: "Gigamacro",
  30001. height: math.unit(60960000, "meters")
  30002. },
  30003. {
  30004. name: "Teramacro",
  30005. height: math.unit(9144000000, "meters")
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(7 + 1 / 12, "feet"),
  30014. weight: math.unit(250, "lb"),
  30015. name: "Front",
  30016. image: {
  30017. source: "./media/characters/joey/front.svg",
  30018. extra: 1791 / 1537,
  30019. bottom: 28 / 1816
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Micro",
  30026. height: math.unit(3, "inches")
  30027. },
  30028. {
  30029. name: "Normal",
  30030. height: math.unit(7 + 1 / 12, "feet"),
  30031. default: true
  30032. },
  30033. ]
  30034. ))
  30035. characterMakers.push(() => makeCharacter(
  30036. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30037. {
  30038. front: {
  30039. height: math.unit(165, "cm"),
  30040. weight: math.unit(140, "lb"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/sam-evans/front.svg",
  30044. extra: 3417 / 3230,
  30045. bottom: 41.3 / 3417
  30046. }
  30047. },
  30048. frontSixTails: {
  30049. height: math.unit(165, "cm"),
  30050. weight: math.unit(140, "lb"),
  30051. name: "Front-six-tails",
  30052. image: {
  30053. source: "./media/characters/sam-evans/front-six-tails.svg",
  30054. extra: 3417 / 3230,
  30055. bottom: 41.3 / 3417
  30056. }
  30057. },
  30058. back: {
  30059. height: math.unit(165, "cm"),
  30060. weight: math.unit(140, "lb"),
  30061. name: "Back",
  30062. image: {
  30063. source: "./media/characters/sam-evans/back.svg",
  30064. extra: 3227 / 3032,
  30065. bottom: 6.8 / 3234
  30066. }
  30067. },
  30068. face: {
  30069. height: math.unit(0.68, "feet"),
  30070. name: "Face",
  30071. image: {
  30072. source: "./media/characters/sam-evans/face.svg"
  30073. }
  30074. },
  30075. },
  30076. [
  30077. {
  30078. name: "Normal",
  30079. height: math.unit(165, "cm"),
  30080. default: true
  30081. },
  30082. {
  30083. name: "Macro",
  30084. height: math.unit(100, "meters")
  30085. },
  30086. {
  30087. name: "Macro+",
  30088. height: math.unit(800, "meters")
  30089. },
  30090. {
  30091. name: "Macro++",
  30092. height: math.unit(3, "km")
  30093. },
  30094. {
  30095. name: "Macro+++",
  30096. height: math.unit(30, "km")
  30097. },
  30098. ]
  30099. ))
  30100. characterMakers.push(() => makeCharacter(
  30101. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30102. {
  30103. front: {
  30104. height: math.unit(10, "feet"),
  30105. weight: math.unit(750, "lb"),
  30106. name: "Front",
  30107. image: {
  30108. source: "./media/characters/juliet-a/front.svg",
  30109. extra: 1766 / 1720,
  30110. bottom: 43 / 1809
  30111. }
  30112. },
  30113. back: {
  30114. height: math.unit(10, "feet"),
  30115. weight: math.unit(750, "lb"),
  30116. name: "Back",
  30117. image: {
  30118. source: "./media/characters/juliet-a/back.svg",
  30119. extra: 1781 / 1734,
  30120. bottom: 35 / 1810,
  30121. }
  30122. },
  30123. },
  30124. [
  30125. {
  30126. name: "Normal",
  30127. height: math.unit(10, "feet"),
  30128. default: true
  30129. },
  30130. {
  30131. name: "Dragon Form",
  30132. height: math.unit(250, "feet")
  30133. },
  30134. {
  30135. name: "Macro",
  30136. height: math.unit(1000, "feet")
  30137. },
  30138. {
  30139. name: "Megamacro",
  30140. height: math.unit(10000, "feet")
  30141. }
  30142. ]
  30143. ))
  30144. characterMakers.push(() => makeCharacter(
  30145. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30146. {
  30147. regular: {
  30148. height: math.unit(7 + 3 / 12, "feet"),
  30149. weight: math.unit(260, "lb"),
  30150. name: "Regular",
  30151. image: {
  30152. source: "./media/characters/wild/regular.svg",
  30153. extra: 97.45 / 92,
  30154. bottom: 6.8 / 104.3
  30155. }
  30156. },
  30157. biggums: {
  30158. height: math.unit(8 + 6 / 12, "feet"),
  30159. weight: math.unit(425, "lb"),
  30160. name: "Biggums",
  30161. image: {
  30162. source: "./media/characters/wild/biggums.svg",
  30163. extra: 97.45 / 92,
  30164. bottom: 7.5 / 132.34
  30165. }
  30166. },
  30167. mawRegular: {
  30168. height: math.unit(1.24, "feet"),
  30169. name: "Maw (Regular)",
  30170. image: {
  30171. source: "./media/characters/wild/maw.svg"
  30172. }
  30173. },
  30174. mawBiggums: {
  30175. height: math.unit(1.47, "feet"),
  30176. name: "Maw (Biggums)",
  30177. image: {
  30178. source: "./media/characters/wild/maw.svg"
  30179. }
  30180. },
  30181. },
  30182. [
  30183. {
  30184. name: "Normal",
  30185. height: math.unit(7 + 3 / 12, "feet"),
  30186. default: true
  30187. },
  30188. ]
  30189. ))
  30190. characterMakers.push(() => makeCharacter(
  30191. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30192. {
  30193. front: {
  30194. height: math.unit(2.5, "meters"),
  30195. weight: math.unit(200, "kg"),
  30196. name: "Front",
  30197. image: {
  30198. source: "./media/characters/vidar/front.svg",
  30199. extra: 2994 / 2795,
  30200. bottom: 56 / 3061
  30201. }
  30202. },
  30203. back: {
  30204. height: math.unit(2.5, "meters"),
  30205. weight: math.unit(200, "kg"),
  30206. name: "Back",
  30207. image: {
  30208. source: "./media/characters/vidar/back.svg",
  30209. extra: 3131 / 2928,
  30210. bottom: 13.5 / 3141.5
  30211. }
  30212. },
  30213. feral: {
  30214. height: math.unit(2.5, "meters"),
  30215. weight: math.unit(2000, "kg"),
  30216. name: "Feral",
  30217. image: {
  30218. source: "./media/characters/vidar/feral.svg",
  30219. extra: 2790 / 1765,
  30220. bottom: 6 / 2796
  30221. }
  30222. },
  30223. },
  30224. [
  30225. {
  30226. name: "Normal",
  30227. height: math.unit(2.5, "meters"),
  30228. default: true
  30229. },
  30230. {
  30231. name: "Macro",
  30232. height: math.unit(100, "meters")
  30233. },
  30234. ]
  30235. ))
  30236. characterMakers.push(() => makeCharacter(
  30237. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30238. {
  30239. front: {
  30240. height: math.unit(5 + 9 / 12, "feet"),
  30241. weight: math.unit(120, "lb"),
  30242. name: "Front",
  30243. image: {
  30244. source: "./media/characters/ash/front.svg",
  30245. extra: 2189 / 1961,
  30246. bottom: 5.2 / 2194
  30247. }
  30248. },
  30249. },
  30250. [
  30251. {
  30252. name: "Normal",
  30253. height: math.unit(5 + 9 / 12, "feet"),
  30254. default: true
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(9, "feet"),
  30263. weight: math.unit(10000, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/gygabite/front.svg",
  30267. bottom: 31.7 / 537.8,
  30268. extra: 505 / 370
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Normal",
  30275. height: math.unit(9, "feet"),
  30276. default: true
  30277. },
  30278. ]
  30279. ))
  30280. characterMakers.push(() => makeCharacter(
  30281. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30282. {
  30283. front: {
  30284. height: math.unit(12, "feet"),
  30285. weight: math.unit(4000, "lb"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/p0tat0/front.svg",
  30289. extra: 1065 / 921,
  30290. bottom: 55.7 / 1121.25
  30291. }
  30292. },
  30293. },
  30294. [
  30295. {
  30296. name: "Normal",
  30297. height: math.unit(12, "feet"),
  30298. default: true
  30299. },
  30300. ]
  30301. ))
  30302. characterMakers.push(() => makeCharacter(
  30303. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30304. {
  30305. side: {
  30306. height: math.unit(6.5, "feet"),
  30307. weight: math.unit(800, "lb"),
  30308. name: "Side",
  30309. image: {
  30310. source: "./media/characters/dusk/side.svg",
  30311. extra: 615 / 373,
  30312. bottom: 53 / 664
  30313. }
  30314. },
  30315. sitting: {
  30316. height: math.unit(7, "feet"),
  30317. weight: math.unit(800, "lb"),
  30318. name: "Sitting",
  30319. image: {
  30320. source: "./media/characters/dusk/sitting.svg",
  30321. extra: 753 / 425,
  30322. bottom: 33 / 774
  30323. }
  30324. },
  30325. head: {
  30326. height: math.unit(6.1, "feet"),
  30327. name: "Head",
  30328. image: {
  30329. source: "./media/characters/dusk/head.svg"
  30330. }
  30331. },
  30332. },
  30333. [
  30334. {
  30335. name: "Normal",
  30336. height: math.unit(7, "feet"),
  30337. default: true
  30338. },
  30339. ]
  30340. ))
  30341. characterMakers.push(() => makeCharacter(
  30342. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30343. {
  30344. front: {
  30345. height: math.unit(15, "feet"),
  30346. weight: math.unit(7000, "lb"),
  30347. name: "Front",
  30348. image: {
  30349. source: "./media/characters/jay-direwolf/front.svg",
  30350. extra: 1810 / 1732,
  30351. bottom: 66 / 1892
  30352. }
  30353. },
  30354. },
  30355. [
  30356. {
  30357. name: "Normal",
  30358. height: math.unit(15, "feet"),
  30359. default: true
  30360. },
  30361. ]
  30362. ))
  30363. characterMakers.push(() => makeCharacter(
  30364. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30365. {
  30366. front: {
  30367. height: math.unit(4 + 9 / 12, "feet"),
  30368. weight: math.unit(130, "lb"),
  30369. name: "Front",
  30370. image: {
  30371. source: "./media/characters/anchovie/front.svg",
  30372. extra: 382 / 350,
  30373. bottom: 25 / 409
  30374. }
  30375. },
  30376. back: {
  30377. height: math.unit(4 + 9 / 12, "feet"),
  30378. weight: math.unit(130, "lb"),
  30379. name: "Back",
  30380. image: {
  30381. source: "./media/characters/anchovie/back.svg",
  30382. extra: 385 / 352,
  30383. bottom: 16.6 / 402
  30384. }
  30385. },
  30386. frontDressed: {
  30387. height: math.unit(4 + 9 / 12, "feet"),
  30388. weight: math.unit(130, "lb"),
  30389. name: "Front (Dressed)",
  30390. image: {
  30391. source: "./media/characters/anchovie/front-dressed.svg",
  30392. extra: 382 / 350,
  30393. bottom: 25 / 409
  30394. }
  30395. },
  30396. backDressed: {
  30397. height: math.unit(4 + 9 / 12, "feet"),
  30398. weight: math.unit(130, "lb"),
  30399. name: "Back (Dressed)",
  30400. image: {
  30401. source: "./media/characters/anchovie/back-dressed.svg",
  30402. extra: 385 / 352,
  30403. bottom: 16.6 / 402
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Micro",
  30410. height: math.unit(6.4, "inches")
  30411. },
  30412. {
  30413. name: "Normal",
  30414. height: math.unit(4 + 9 / 12, "feet"),
  30415. default: true
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30421. {
  30422. front: {
  30423. height: math.unit(2, "meters"),
  30424. weight: math.unit(180, "lb"),
  30425. name: "Front",
  30426. image: {
  30427. source: "./media/characters/acidrenamon/front.svg",
  30428. extra: 987 / 890,
  30429. bottom: 22.8 / 1009
  30430. }
  30431. },
  30432. back: {
  30433. height: math.unit(2, "meters"),
  30434. weight: math.unit(180, "lb"),
  30435. name: "Back",
  30436. image: {
  30437. source: "./media/characters/acidrenamon/back.svg",
  30438. extra: 983 / 891,
  30439. bottom: 8.4 / 992
  30440. }
  30441. },
  30442. head: {
  30443. height: math.unit(1.92, "feet"),
  30444. name: "Head",
  30445. image: {
  30446. source: "./media/characters/acidrenamon/head.svg"
  30447. }
  30448. },
  30449. rump: {
  30450. height: math.unit(1.72, "feet"),
  30451. name: "Rump",
  30452. image: {
  30453. source: "./media/characters/acidrenamon/rump.svg"
  30454. }
  30455. },
  30456. tail: {
  30457. height: math.unit(4.2, "feet"),
  30458. name: "Tail",
  30459. image: {
  30460. source: "./media/characters/acidrenamon/tail.svg"
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Normal",
  30467. height: math.unit(2, "meters"),
  30468. default: true
  30469. },
  30470. {
  30471. name: "Minimacro",
  30472. height: math.unit(7, "meters")
  30473. },
  30474. {
  30475. name: "Macro",
  30476. height: math.unit(200, "meters")
  30477. },
  30478. {
  30479. name: "Gigamacro",
  30480. height: math.unit(0.2, "earths")
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(152, "feet"),
  30489. name: "Front",
  30490. image: {
  30491. source: "./media/characters/kenzie-lee/front.svg",
  30492. extra: 1869/1774,
  30493. bottom: 128/1997
  30494. }
  30495. },
  30496. side: {
  30497. height: math.unit(86, "feet"),
  30498. name: "Side",
  30499. image: {
  30500. source: "./media/characters/kenzie-lee/side.svg",
  30501. extra: 930/815,
  30502. bottom: 177/1107
  30503. }
  30504. },
  30505. paw: {
  30506. height: math.unit(15, "feet"),
  30507. name: "Paw",
  30508. image: {
  30509. source: "./media/characters/kenzie-lee/paw.svg"
  30510. }
  30511. },
  30512. },
  30513. [
  30514. {
  30515. name: "Kenzie Flea",
  30516. height: math.unit(2, "mm"),
  30517. default: true
  30518. },
  30519. {
  30520. name: "Micro",
  30521. height: math.unit(2, "inches")
  30522. },
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(152, "feet")
  30526. },
  30527. {
  30528. name: "Megamacro",
  30529. height: math.unit(7, "miles")
  30530. },
  30531. {
  30532. name: "Gigamacro",
  30533. height: math.unit(8000, "miles")
  30534. },
  30535. ]
  30536. ))
  30537. characterMakers.push(() => makeCharacter(
  30538. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30539. {
  30540. front: {
  30541. height: math.unit(6, "feet"),
  30542. name: "Front",
  30543. image: {
  30544. source: "./media/characters/withers/front.svg",
  30545. extra: 1935/1760,
  30546. bottom: 72/2007
  30547. }
  30548. },
  30549. back: {
  30550. height: math.unit(6, "feet"),
  30551. name: "Back",
  30552. image: {
  30553. source: "./media/characters/withers/back.svg",
  30554. extra: 1944/1792,
  30555. bottom: 12/1956
  30556. }
  30557. },
  30558. dressed: {
  30559. height: math.unit(6, "feet"),
  30560. name: "Dressed",
  30561. image: {
  30562. source: "./media/characters/withers/dressed.svg",
  30563. extra: 1937/1765,
  30564. bottom: 73/2010
  30565. }
  30566. },
  30567. phase1: {
  30568. height: math.unit(1.1, "feet"),
  30569. name: "Phase 1",
  30570. image: {
  30571. source: "./media/characters/withers/phase-1.svg",
  30572. extra: 1885/1232,
  30573. bottom: 0/1885
  30574. }
  30575. },
  30576. phase2: {
  30577. height: math.unit(1.05, "feet"),
  30578. name: "Phase 2",
  30579. image: {
  30580. source: "./media/characters/withers/phase-2.svg",
  30581. extra: 1792/1090,
  30582. bottom: 0/1792
  30583. }
  30584. },
  30585. partyWipe: {
  30586. height: math.unit(1.1, "feet"),
  30587. name: "Party Wipe",
  30588. image: {
  30589. source: "./media/characters/withers/party-wipe.svg",
  30590. extra: 1864/1207,
  30591. bottom: 0/1864
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Macro",
  30598. height: math.unit(167, "feet"),
  30599. default: true
  30600. },
  30601. {
  30602. name: "Megamacro",
  30603. height: math.unit(15, "miles")
  30604. }
  30605. ]
  30606. ))
  30607. characterMakers.push(() => makeCharacter(
  30608. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30609. {
  30610. front: {
  30611. height: math.unit(6 + 7 / 12, "feet"),
  30612. weight: math.unit(250, "lb"),
  30613. name: "Front",
  30614. image: {
  30615. source: "./media/characters/nemoskii/front.svg",
  30616. extra: 2270 / 1734,
  30617. bottom: 86 / 2354
  30618. }
  30619. },
  30620. back: {
  30621. height: math.unit(6 + 7 / 12, "feet"),
  30622. weight: math.unit(250, "lb"),
  30623. name: "Back",
  30624. image: {
  30625. source: "./media/characters/nemoskii/back.svg",
  30626. extra: 1845 / 1788,
  30627. bottom: 10.5 / 1852
  30628. }
  30629. },
  30630. head: {
  30631. height: math.unit(1.31, "feet"),
  30632. name: "Head",
  30633. image: {
  30634. source: "./media/characters/nemoskii/head.svg"
  30635. }
  30636. },
  30637. },
  30638. [
  30639. {
  30640. name: "Micro",
  30641. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30642. },
  30643. {
  30644. name: "Normal",
  30645. height: math.unit(6 + 7 / 12, "feet"),
  30646. default: true
  30647. },
  30648. {
  30649. name: "Macro",
  30650. height: math.unit((6 + 7 / 12) * 150, "feet")
  30651. },
  30652. {
  30653. name: "Macro+",
  30654. height: math.unit((6 + 7 / 12) * 500, "feet")
  30655. },
  30656. {
  30657. name: "Megamacro",
  30658. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30659. },
  30660. ]
  30661. ))
  30662. characterMakers.push(() => makeCharacter(
  30663. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30664. {
  30665. front: {
  30666. height: math.unit(1, "mile"),
  30667. weight: math.unit(265261.9, "lb"),
  30668. name: "Front",
  30669. image: {
  30670. source: "./media/characters/shui/front.svg",
  30671. extra: 1633 / 1564,
  30672. bottom: 91.5 / 1726
  30673. }
  30674. },
  30675. },
  30676. [
  30677. {
  30678. name: "Macro",
  30679. height: math.unit(1, "mile"),
  30680. default: true
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30686. {
  30687. front: {
  30688. height: math.unit(12 + 6 / 12, "feet"),
  30689. weight: math.unit(1342, "lb"),
  30690. name: "Front",
  30691. image: {
  30692. source: "./media/characters/arokh-takakura/front.svg",
  30693. extra: 1089 / 1043,
  30694. bottom: 77.4 / 1176.7
  30695. }
  30696. },
  30697. back: {
  30698. height: math.unit(12 + 6 / 12, "feet"),
  30699. weight: math.unit(1342, "lb"),
  30700. name: "Back",
  30701. image: {
  30702. source: "./media/characters/arokh-takakura/back.svg",
  30703. extra: 1046 / 1019,
  30704. bottom: 102 / 1150
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Big",
  30711. height: math.unit(12 + 6 / 12, "feet"),
  30712. default: true
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30718. {
  30719. front: {
  30720. height: math.unit(5 + 6 / 12, "feet"),
  30721. weight: math.unit(150, "lb"),
  30722. name: "Front",
  30723. image: {
  30724. source: "./media/characters/theo/front.svg",
  30725. extra: 1184 / 1131,
  30726. bottom: 7.4 / 1191
  30727. }
  30728. },
  30729. },
  30730. [
  30731. {
  30732. name: "Micro",
  30733. height: math.unit(5, "inches")
  30734. },
  30735. {
  30736. name: "Normal",
  30737. height: math.unit(5 + 6 / 12, "feet"),
  30738. default: true
  30739. },
  30740. ]
  30741. ))
  30742. characterMakers.push(() => makeCharacter(
  30743. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30744. {
  30745. front: {
  30746. height: math.unit(5 + 9 / 12, "feet"),
  30747. weight: math.unit(130, "lb"),
  30748. name: "Front",
  30749. image: {
  30750. source: "./media/characters/cecelia-swift/front.svg",
  30751. extra: 502 / 484,
  30752. bottom: 23 / 523
  30753. }
  30754. },
  30755. back: {
  30756. height: math.unit(5 + 9 / 12, "feet"),
  30757. weight: math.unit(130, "lb"),
  30758. name: "Back",
  30759. image: {
  30760. source: "./media/characters/cecelia-swift/back.svg",
  30761. extra: 499 / 485,
  30762. bottom: 12 / 511
  30763. }
  30764. },
  30765. head: {
  30766. height: math.unit(0.90, "feet"),
  30767. name: "Head",
  30768. image: {
  30769. source: "./media/characters/cecelia-swift/head.svg"
  30770. }
  30771. },
  30772. rump: {
  30773. height: math.unit(1.75, "feet"),
  30774. name: "Rump",
  30775. image: {
  30776. source: "./media/characters/cecelia-swift/rump.svg"
  30777. }
  30778. },
  30779. },
  30780. [
  30781. {
  30782. name: "Normal",
  30783. height: math.unit(5 + 9 / 12, "feet"),
  30784. default: true
  30785. },
  30786. {
  30787. name: "Big",
  30788. height: math.unit(50, "feet")
  30789. },
  30790. {
  30791. name: "Macro",
  30792. height: math.unit(100, "feet")
  30793. },
  30794. {
  30795. name: "Macro+",
  30796. height: math.unit(500, "feet")
  30797. },
  30798. {
  30799. name: "Macro++",
  30800. height: math.unit(1000, "feet")
  30801. },
  30802. ]
  30803. ))
  30804. characterMakers.push(() => makeCharacter(
  30805. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30806. {
  30807. front: {
  30808. height: math.unit(6, "feet"),
  30809. weight: math.unit(150, "lb"),
  30810. name: "Front",
  30811. image: {
  30812. source: "./media/characters/kaunan/front.svg",
  30813. extra: 2890 / 2523,
  30814. bottom: 49 / 2939
  30815. }
  30816. },
  30817. },
  30818. [
  30819. {
  30820. name: "Macro",
  30821. height: math.unit(150, "feet"),
  30822. default: true
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30828. {
  30829. dressed: {
  30830. height: math.unit(175, "cm"),
  30831. weight: math.unit(60, "kg"),
  30832. name: "Dressed",
  30833. image: {
  30834. source: "./media/characters/fei/dressed.svg",
  30835. extra: 1402/1278,
  30836. bottom: 27/1429
  30837. }
  30838. },
  30839. nude: {
  30840. height: math.unit(175, "cm"),
  30841. weight: math.unit(60, "kg"),
  30842. name: "Nude",
  30843. image: {
  30844. source: "./media/characters/fei/nude.svg",
  30845. extra: 1402/1278,
  30846. bottom: 27/1429
  30847. }
  30848. },
  30849. heels: {
  30850. height: math.unit(0.466, "feet"),
  30851. name: "Heels",
  30852. image: {
  30853. source: "./media/characters/fei/heels.svg",
  30854. extra: 156/152,
  30855. bottom: 28/184
  30856. }
  30857. },
  30858. },
  30859. [
  30860. {
  30861. name: "Mortal",
  30862. height: math.unit(175, "cm")
  30863. },
  30864. {
  30865. name: "Normal",
  30866. height: math.unit(3500, "m")
  30867. },
  30868. {
  30869. name: "Stroll",
  30870. height: math.unit(18.4, "km"),
  30871. default: true
  30872. },
  30873. {
  30874. name: "Showoff",
  30875. height: math.unit(175, "km")
  30876. },
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30881. {
  30882. front: {
  30883. height: math.unit(7, "feet"),
  30884. weight: math.unit(1000, "kg"),
  30885. name: "Front",
  30886. image: {
  30887. source: "./media/characters/edrax/front.svg",
  30888. extra: 2838 / 2550,
  30889. bottom: 130 / 2968
  30890. }
  30891. },
  30892. },
  30893. [
  30894. {
  30895. name: "Small",
  30896. height: math.unit(7, "feet")
  30897. },
  30898. {
  30899. name: "Normal",
  30900. height: math.unit(1500, "meters")
  30901. },
  30902. {
  30903. name: "Mega",
  30904. height: math.unit(12000000, "km"),
  30905. default: true
  30906. },
  30907. {
  30908. name: "Megamacro",
  30909. height: math.unit(10600000, "lightyears")
  30910. },
  30911. {
  30912. name: "Hypermacro",
  30913. height: math.unit(256, "yottameters")
  30914. },
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30919. {
  30920. front: {
  30921. height: math.unit(10, "feet"),
  30922. weight: math.unit(750, "lb"),
  30923. name: "Front",
  30924. image: {
  30925. source: "./media/characters/clove/front.svg",
  30926. extra: 1918/1751,
  30927. bottom: 52/1970
  30928. }
  30929. },
  30930. back: {
  30931. height: math.unit(10, "feet"),
  30932. weight: math.unit(750, "lb"),
  30933. name: "Back",
  30934. image: {
  30935. source: "./media/characters/clove/back.svg",
  30936. extra: 1912/1747,
  30937. bottom: 50/1962
  30938. }
  30939. },
  30940. },
  30941. [
  30942. {
  30943. name: "Normal",
  30944. height: math.unit(10, "feet"),
  30945. default: true
  30946. },
  30947. ]
  30948. ))
  30949. characterMakers.push(() => makeCharacter(
  30950. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30951. {
  30952. front: {
  30953. height: math.unit(4, "feet"),
  30954. weight: math.unit(50, "lb"),
  30955. name: "Front",
  30956. image: {
  30957. source: "./media/characters/alex-rabbit/front.svg",
  30958. extra: 507 / 458,
  30959. bottom: 18.5 / 527
  30960. }
  30961. },
  30962. back: {
  30963. height: math.unit(4, "feet"),
  30964. weight: math.unit(50, "lb"),
  30965. name: "Back",
  30966. image: {
  30967. source: "./media/characters/alex-rabbit/back.svg",
  30968. extra: 502 / 460,
  30969. bottom: 18.9 / 521
  30970. }
  30971. },
  30972. },
  30973. [
  30974. {
  30975. name: "Normal",
  30976. height: math.unit(4, "feet"),
  30977. default: true
  30978. },
  30979. ]
  30980. ))
  30981. characterMakers.push(() => makeCharacter(
  30982. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30983. {
  30984. front: {
  30985. height: math.unit(1 + 3 / 12, "feet"),
  30986. weight: math.unit(80, "lb"),
  30987. name: "Front",
  30988. image: {
  30989. source: "./media/characters/zander-rose/front.svg",
  30990. extra: 916 / 797,
  30991. bottom: 17 / 933
  30992. }
  30993. },
  30994. back: {
  30995. height: math.unit(1 + 3 / 12, "feet"),
  30996. weight: math.unit(80, "lb"),
  30997. name: "Back",
  30998. image: {
  30999. source: "./media/characters/zander-rose/back.svg",
  31000. extra: 903 / 779,
  31001. bottom: 31 / 934
  31002. }
  31003. },
  31004. },
  31005. [
  31006. {
  31007. name: "Normal",
  31008. height: math.unit(1 + 3 / 12, "feet"),
  31009. default: true
  31010. },
  31011. ]
  31012. ))
  31013. characterMakers.push(() => makeCharacter(
  31014. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31015. {
  31016. anthro: {
  31017. height: math.unit(6, "feet"),
  31018. weight: math.unit(150, "lb"),
  31019. name: "Anthro",
  31020. image: {
  31021. source: "./media/characters/razz/anthro.svg",
  31022. extra: 1437 / 1343,
  31023. bottom: 48 / 1485
  31024. }
  31025. },
  31026. feral: {
  31027. height: math.unit(6, "feet"),
  31028. weight: math.unit(150, "lb"),
  31029. name: "Feral",
  31030. image: {
  31031. source: "./media/characters/razz/feral.svg",
  31032. extra: 2569 / 1385,
  31033. bottom: 95 / 2664
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(6, "feet"),
  31041. default: true
  31042. },
  31043. ]
  31044. ))
  31045. characterMakers.push(() => makeCharacter(
  31046. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31047. {
  31048. front: {
  31049. height: math.unit(9 + 4 / 12, "feet"),
  31050. weight: math.unit(500, "lb"),
  31051. name: "Front",
  31052. image: {
  31053. source: "./media/characters/morrigan/front.svg",
  31054. extra: 2707 / 2579,
  31055. bottom: 156 / 2863
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(9 + 4 / 12, "feet"),
  31063. default: true
  31064. },
  31065. ]
  31066. ))
  31067. characterMakers.push(() => makeCharacter(
  31068. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31069. {
  31070. front: {
  31071. height: math.unit(5, "stories"),
  31072. weight: math.unit(4000, "lb"),
  31073. name: "Front",
  31074. image: {
  31075. source: "./media/characters/jenene/front.svg",
  31076. extra: 1780 / 1710,
  31077. bottom: 57 / 1837
  31078. }
  31079. },
  31080. },
  31081. [
  31082. {
  31083. name: "Normal",
  31084. height: math.unit(5, "stories"),
  31085. default: true
  31086. },
  31087. ]
  31088. ))
  31089. characterMakers.push(() => makeCharacter(
  31090. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31091. {
  31092. taurSfw: {
  31093. height: math.unit(10, "meters"),
  31094. weight: math.unit(17500, "kg"),
  31095. name: "Taur",
  31096. image: {
  31097. source: "./media/characters/faey/taur-sfw.svg",
  31098. extra: 1200 / 968,
  31099. bottom: 41 / 1241
  31100. }
  31101. },
  31102. chestmaw: {
  31103. height: math.unit(2.01, "meters"),
  31104. name: "Chestmaw",
  31105. image: {
  31106. source: "./media/characters/faey/chestmaw.svg"
  31107. }
  31108. },
  31109. foot: {
  31110. height: math.unit(2.43, "meters"),
  31111. name: "Foot",
  31112. image: {
  31113. source: "./media/characters/faey/foot.svg"
  31114. }
  31115. },
  31116. jaws: {
  31117. height: math.unit(1.66, "meters"),
  31118. name: "Jaws",
  31119. image: {
  31120. source: "./media/characters/faey/jaws.svg"
  31121. }
  31122. },
  31123. tongues: {
  31124. height: math.unit(2.01, "meters"),
  31125. name: "Tongues",
  31126. image: {
  31127. source: "./media/characters/faey/tongues.svg"
  31128. }
  31129. },
  31130. },
  31131. [
  31132. {
  31133. name: "Small",
  31134. height: math.unit(10, "meters"),
  31135. default: true
  31136. },
  31137. {
  31138. name: "Big",
  31139. height: math.unit(500000, "km")
  31140. },
  31141. ]
  31142. ))
  31143. characterMakers.push(() => makeCharacter(
  31144. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31145. {
  31146. front: {
  31147. height: math.unit(7, "feet"),
  31148. weight: math.unit(275, "lb"),
  31149. name: "Front",
  31150. image: {
  31151. source: "./media/characters/roku/front.svg",
  31152. extra: 903 / 878,
  31153. bottom: 37 / 940
  31154. }
  31155. },
  31156. },
  31157. [
  31158. {
  31159. name: "Normal",
  31160. height: math.unit(7, "feet"),
  31161. default: true
  31162. },
  31163. {
  31164. name: "Macro",
  31165. height: math.unit(500, "feet")
  31166. },
  31167. {
  31168. name: "Megamacro",
  31169. height: math.unit(200, "miles")
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31175. {
  31176. front: {
  31177. height: math.unit(6 + 2 / 12, "feet"),
  31178. weight: math.unit(150, "lb"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/lira/front.svg",
  31182. extra: 1727 / 1605,
  31183. bottom: 26 / 1753
  31184. }
  31185. },
  31186. back: {
  31187. height: math.unit(6 + 2 / 12, "feet"),
  31188. weight: math.unit(150, "lb"),
  31189. name: "Back",
  31190. image: {
  31191. source: "./media/characters/lira/back.svg",
  31192. extra: 1713/1621,
  31193. bottom: 20/1733
  31194. }
  31195. },
  31196. hand: {
  31197. height: math.unit(0.75, "feet"),
  31198. name: "Hand",
  31199. image: {
  31200. source: "./media/characters/lira/hand.svg"
  31201. }
  31202. },
  31203. maw: {
  31204. height: math.unit(0.65, "feet"),
  31205. name: "Maw",
  31206. image: {
  31207. source: "./media/characters/lira/maw.svg"
  31208. }
  31209. },
  31210. pawDigi: {
  31211. height: math.unit(1.6, "feet"),
  31212. name: "Paw Digi",
  31213. image: {
  31214. source: "./media/characters/lira/paw-digi.svg"
  31215. }
  31216. },
  31217. pawPlanti: {
  31218. height: math.unit(1.4, "feet"),
  31219. name: "Paw Planti",
  31220. image: {
  31221. source: "./media/characters/lira/paw-planti.svg"
  31222. }
  31223. },
  31224. },
  31225. [
  31226. {
  31227. name: "Normal",
  31228. height: math.unit(6 + 2 / 12, "feet"),
  31229. default: true
  31230. },
  31231. {
  31232. name: "Macro",
  31233. height: math.unit(100, "feet")
  31234. },
  31235. {
  31236. name: "Macro²",
  31237. height: math.unit(1600, "feet")
  31238. },
  31239. {
  31240. name: "Planetary",
  31241. height: math.unit(20, "earths")
  31242. },
  31243. ]
  31244. ))
  31245. characterMakers.push(() => makeCharacter(
  31246. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31247. {
  31248. front: {
  31249. height: math.unit(6, "feet"),
  31250. weight: math.unit(150, "lb"),
  31251. name: "Front",
  31252. image: {
  31253. source: "./media/characters/hadjet/front.svg",
  31254. extra: 1480 / 1346,
  31255. bottom: 26 / 1506
  31256. }
  31257. },
  31258. frontNsfw: {
  31259. height: math.unit(6, "feet"),
  31260. weight: math.unit(150, "lb"),
  31261. name: "Front (NSFW)",
  31262. image: {
  31263. source: "./media/characters/hadjet/front-nsfw.svg",
  31264. extra: 1440 / 1358,
  31265. bottom: 52 / 1492
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Macro",
  31272. height: math.unit(10, "stories"),
  31273. default: true
  31274. },
  31275. {
  31276. name: "Megamacro",
  31277. height: math.unit(1.5, "miles")
  31278. },
  31279. {
  31280. name: "Megamacro+",
  31281. height: math.unit(5, "miles")
  31282. },
  31283. ]
  31284. ))
  31285. characterMakers.push(() => makeCharacter(
  31286. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31287. {
  31288. side: {
  31289. height: math.unit(106, "feet"),
  31290. weight: math.unit(500, "tonnes"),
  31291. name: "Side",
  31292. image: {
  31293. source: "./media/characters/kodran/side.svg",
  31294. extra: 553 / 480,
  31295. bottom: 33 / 586
  31296. }
  31297. },
  31298. front: {
  31299. height: math.unit(132, "feet"),
  31300. weight: math.unit(500, "tonnes"),
  31301. name: "Front",
  31302. image: {
  31303. source: "./media/characters/kodran/front.svg",
  31304. extra: 667 / 643,
  31305. bottom: 42 / 709
  31306. }
  31307. },
  31308. flying: {
  31309. height: math.unit(350, "feet"),
  31310. weight: math.unit(500, "tonnes"),
  31311. name: "Flying",
  31312. image: {
  31313. source: "./media/characters/kodran/flying.svg"
  31314. }
  31315. },
  31316. foot: {
  31317. height: math.unit(33, "feet"),
  31318. name: "Foot",
  31319. image: {
  31320. source: "./media/characters/kodran/foot.svg"
  31321. }
  31322. },
  31323. footFront: {
  31324. height: math.unit(19, "feet"),
  31325. name: "Foot (Front)",
  31326. image: {
  31327. source: "./media/characters/kodran/foot-front.svg",
  31328. extra: 261 / 261,
  31329. bottom: 91 / 352
  31330. }
  31331. },
  31332. headFront: {
  31333. height: math.unit(53, "feet"),
  31334. name: "Head (Front)",
  31335. image: {
  31336. source: "./media/characters/kodran/head-front.svg"
  31337. }
  31338. },
  31339. headSide: {
  31340. height: math.unit(65, "feet"),
  31341. name: "Head (Side)",
  31342. image: {
  31343. source: "./media/characters/kodran/head-side.svg"
  31344. }
  31345. },
  31346. throat: {
  31347. height: math.unit(79, "feet"),
  31348. name: "Throat",
  31349. image: {
  31350. source: "./media/characters/kodran/throat.svg"
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Large",
  31357. height: math.unit(106, "feet"),
  31358. default: true
  31359. },
  31360. ]
  31361. ))
  31362. characterMakers.push(() => makeCharacter(
  31363. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31364. {
  31365. side: {
  31366. height: math.unit(11, "feet"),
  31367. weight: math.unit(150, "lb"),
  31368. name: "Side",
  31369. image: {
  31370. source: "./media/characters/pyxaron/side.svg",
  31371. extra: 305 / 195,
  31372. bottom: 17 / 322
  31373. }
  31374. },
  31375. },
  31376. [
  31377. {
  31378. name: "Normal",
  31379. height: math.unit(11, "feet"),
  31380. default: true
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31386. {
  31387. front: {
  31388. height: math.unit(6, "feet"),
  31389. weight: math.unit(150, "lb"),
  31390. name: "Front",
  31391. image: {
  31392. source: "./media/characters/meep/front.svg",
  31393. extra: 88 / 80,
  31394. bottom: 6 / 94
  31395. }
  31396. },
  31397. },
  31398. [
  31399. {
  31400. name: "Fun Sized",
  31401. height: math.unit(2, "inches"),
  31402. default: true
  31403. },
  31404. {
  31405. name: "Friend Sized",
  31406. height: math.unit(8, "inches")
  31407. },
  31408. ]
  31409. ))
  31410. characterMakers.push(() => makeCharacter(
  31411. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31412. {
  31413. front: {
  31414. height: math.unit(15, "feet"),
  31415. weight: math.unit(2500, "lb"),
  31416. name: "Front",
  31417. image: {
  31418. source: "./media/characters/holly-rabbit/front.svg",
  31419. extra: 1433 / 1233,
  31420. bottom: 125 / 1558
  31421. }
  31422. },
  31423. dick: {
  31424. height: math.unit(4.6, "feet"),
  31425. name: "Dick",
  31426. image: {
  31427. source: "./media/characters/holly-rabbit/dick.svg"
  31428. }
  31429. },
  31430. },
  31431. [
  31432. {
  31433. name: "Normal",
  31434. height: math.unit(15, "feet"),
  31435. default: true
  31436. },
  31437. {
  31438. name: "Macro",
  31439. height: math.unit(250, "feet")
  31440. },
  31441. {
  31442. name: "Macro+",
  31443. height: math.unit(2500, "feet")
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31449. {
  31450. front: {
  31451. height: math.unit(3.02, "meters"),
  31452. weight: math.unit(500, "kg"),
  31453. name: "Front",
  31454. image: {
  31455. source: "./media/characters/drena/front.svg",
  31456. extra: 282 / 243,
  31457. bottom: 8 / 290
  31458. }
  31459. },
  31460. side: {
  31461. height: math.unit(3.02, "meters"),
  31462. weight: math.unit(500, "kg"),
  31463. name: "Side",
  31464. image: {
  31465. source: "./media/characters/drena/side.svg",
  31466. extra: 280 / 245,
  31467. bottom: 10 / 290
  31468. }
  31469. },
  31470. back: {
  31471. height: math.unit(3.02, "meters"),
  31472. weight: math.unit(500, "kg"),
  31473. name: "Back",
  31474. image: {
  31475. source: "./media/characters/drena/back.svg",
  31476. extra: 278 / 243,
  31477. bottom: 2 / 280
  31478. }
  31479. },
  31480. foot: {
  31481. height: math.unit(0.75, "meters"),
  31482. name: "Foot",
  31483. image: {
  31484. source: "./media/characters/drena/foot.svg"
  31485. }
  31486. },
  31487. maw: {
  31488. height: math.unit(0.82, "meters"),
  31489. name: "Maw",
  31490. image: {
  31491. source: "./media/characters/drena/maw.svg"
  31492. }
  31493. },
  31494. eating: {
  31495. height: math.unit(0.75, "meters"),
  31496. name: "Eating",
  31497. image: {
  31498. source: "./media/characters/drena/eating.svg"
  31499. }
  31500. },
  31501. rump: {
  31502. height: math.unit(0.93, "meters"),
  31503. name: "Rump",
  31504. image: {
  31505. source: "./media/characters/drena/rump.svg"
  31506. }
  31507. },
  31508. },
  31509. [
  31510. {
  31511. name: "Normal",
  31512. height: math.unit(3.02, "meters"),
  31513. default: true
  31514. },
  31515. ]
  31516. ))
  31517. characterMakers.push(() => makeCharacter(
  31518. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31519. {
  31520. front: {
  31521. height: math.unit(6 + 4 / 12, "feet"),
  31522. weight: math.unit(250, "lb"),
  31523. name: "Front",
  31524. image: {
  31525. source: "./media/characters/remmyzilla/front.svg",
  31526. extra: 4033 / 3588,
  31527. bottom: 123 / 4156
  31528. }
  31529. },
  31530. back: {
  31531. height: math.unit(6 + 4 / 12, "feet"),
  31532. weight: math.unit(250, "lb"),
  31533. name: "Back",
  31534. image: {
  31535. source: "./media/characters/remmyzilla/back.svg",
  31536. extra: 1696/1602,
  31537. bottom: 63/1759
  31538. }
  31539. },
  31540. paw: {
  31541. height: math.unit(1.73, "feet"),
  31542. name: "Paw",
  31543. image: {
  31544. source: "./media/characters/remmyzilla/paw.svg"
  31545. },
  31546. extraAttributes: {
  31547. "toeSize": {
  31548. name: "Toe Size",
  31549. power: 2,
  31550. type: "area",
  31551. base: math.unit(0.0035, "m^2")
  31552. },
  31553. "padSize": {
  31554. name: "Pad Size",
  31555. power: 2,
  31556. type: "area",
  31557. base: math.unit(0.015, "m^2")
  31558. },
  31559. "pawsize": {
  31560. name: "Paw Size",
  31561. power: 2,
  31562. type: "area",
  31563. base: math.unit(0.072, "m^2")
  31564. },
  31565. }
  31566. },
  31567. maw: {
  31568. height: math.unit(1.73, "feet"),
  31569. name: "Maw",
  31570. image: {
  31571. source: "./media/characters/remmyzilla/maw.svg"
  31572. }
  31573. },
  31574. },
  31575. [
  31576. {
  31577. name: "Normal",
  31578. height: math.unit(6 + 4 / 12, "feet")
  31579. },
  31580. {
  31581. name: "Minimacro",
  31582. height: math.unit(12 + 8 / 12, "feet")
  31583. },
  31584. {
  31585. name: "Normal",
  31586. height: math.unit(640, "feet"),
  31587. default: true
  31588. },
  31589. {
  31590. name: "Megamacro",
  31591. height: math.unit(6400, "feet")
  31592. },
  31593. {
  31594. name: "Gigamacro",
  31595. height: math.unit(64000, "miles")
  31596. },
  31597. ]
  31598. ))
  31599. characterMakers.push(() => makeCharacter(
  31600. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31601. {
  31602. front: {
  31603. height: math.unit(2.5, "meters"),
  31604. weight: math.unit(300, "lb"),
  31605. name: "Front",
  31606. image: {
  31607. source: "./media/characters/lawrence/front.svg",
  31608. extra: 357 / 335,
  31609. bottom: 30 / 387
  31610. }
  31611. },
  31612. back: {
  31613. height: math.unit(2.5, "meters"),
  31614. weight: math.unit(300, "lb"),
  31615. name: "Back",
  31616. image: {
  31617. source: "./media/characters/lawrence/back.svg",
  31618. extra: 357 / 338,
  31619. bottom: 16 / 373
  31620. }
  31621. },
  31622. head: {
  31623. height: math.unit(0.9, "meter"),
  31624. name: "Head",
  31625. image: {
  31626. source: "./media/characters/lawrence/head.svg"
  31627. }
  31628. },
  31629. maw: {
  31630. height: math.unit(0.7, "meter"),
  31631. name: "Maw",
  31632. image: {
  31633. source: "./media/characters/lawrence/maw.svg"
  31634. }
  31635. },
  31636. footBottom: {
  31637. height: math.unit(0.5, "meter"),
  31638. name: "Foot (Bottom)",
  31639. image: {
  31640. source: "./media/characters/lawrence/foot-bottom.svg"
  31641. }
  31642. },
  31643. footTop: {
  31644. height: math.unit(0.5, "meter"),
  31645. name: "Foot (Top)",
  31646. image: {
  31647. source: "./media/characters/lawrence/foot-top.svg"
  31648. }
  31649. },
  31650. },
  31651. [
  31652. {
  31653. name: "Normal",
  31654. height: math.unit(2.5, "meters"),
  31655. default: true
  31656. },
  31657. {
  31658. name: "Macro",
  31659. height: math.unit(95, "meters")
  31660. },
  31661. {
  31662. name: "Megamacro",
  31663. height: math.unit(150, "km")
  31664. },
  31665. ]
  31666. ))
  31667. characterMakers.push(() => makeCharacter(
  31668. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31669. {
  31670. front: {
  31671. height: math.unit(4.2, "meters"),
  31672. preyCapacity: math.unit(50, "m^3"),
  31673. weight: math.unit(30, "tonnes"),
  31674. name: "Front",
  31675. image: {
  31676. source: "./media/characters/sydney/front.svg",
  31677. extra: 1177/1129,
  31678. bottom: 197/1374
  31679. },
  31680. extraAttributes: {
  31681. "length": {
  31682. name: "Length",
  31683. power: 1,
  31684. type: "length",
  31685. base: math.unit(21, "meters")
  31686. },
  31687. }
  31688. },
  31689. },
  31690. [
  31691. {
  31692. name: "Normal",
  31693. height: math.unit(4.2, "meters"),
  31694. default: true
  31695. },
  31696. ]
  31697. ))
  31698. characterMakers.push(() => makeCharacter(
  31699. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31700. {
  31701. back: {
  31702. height: math.unit(201, "feet"),
  31703. name: "Back",
  31704. image: {
  31705. source: "./media/characters/jessica/back.svg",
  31706. extra: 273 / 259,
  31707. bottom: 7 / 280
  31708. }
  31709. },
  31710. },
  31711. [
  31712. {
  31713. name: "Normal",
  31714. height: math.unit(201, "feet"),
  31715. default: true
  31716. },
  31717. {
  31718. name: "Megamacro",
  31719. height: math.unit(8, "miles")
  31720. },
  31721. ]
  31722. ))
  31723. characterMakers.push(() => makeCharacter(
  31724. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31725. {
  31726. side: {
  31727. height: math.unit(5.6, "m"),
  31728. weight: math.unit(8000, "kg"),
  31729. name: "Side",
  31730. image: {
  31731. source: "./media/characters/victoria/side.svg",
  31732. extra: 1542/1229,
  31733. bottom: 124/1666
  31734. }
  31735. },
  31736. maw: {
  31737. height: math.unit(7.14, "feet"),
  31738. name: "Maw",
  31739. image: {
  31740. source: "./media/characters/victoria/maw.svg"
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(5.6, "m"),
  31748. default: true
  31749. },
  31750. ]
  31751. ))
  31752. characterMakers.push(() => makeCharacter(
  31753. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31754. {
  31755. front: {
  31756. height: math.unit(5 + 6 / 12, "feet"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/cat/cat-front.svg",
  31760. extra: 1422/1262,
  31761. bottom: 61/1483
  31762. },
  31763. form: "cat",
  31764. default: true
  31765. },
  31766. back: {
  31767. height: math.unit(5 + 6 / 12, "feet"),
  31768. name: "Back",
  31769. image: {
  31770. source: "./media/characters/cat/cat-back.svg",
  31771. extra: 1466/1301,
  31772. bottom: 19/1485
  31773. },
  31774. form: "cat"
  31775. },
  31776. taur: {
  31777. height: math.unit(7, "feet"),
  31778. name: "Side",
  31779. image: {
  31780. source: "./media/characters/cat/taur-side.svg",
  31781. extra: 1389/1233,
  31782. bottom: 83/1472
  31783. },
  31784. form: "taur",
  31785. default: true
  31786. },
  31787. lucarioFront: {
  31788. height: math.unit(4, "feet"),
  31789. name: "Front",
  31790. image: {
  31791. source: "./media/characters/cat/lucario-front.svg",
  31792. extra: 1149/1019,
  31793. bottom: 84/1233
  31794. },
  31795. form: "lucario",
  31796. default: true
  31797. },
  31798. lucarioBack: {
  31799. height: math.unit(4, "feet"),
  31800. name: "Back",
  31801. image: {
  31802. source: "./media/characters/cat/lucario-back.svg",
  31803. extra: 1190/1059,
  31804. bottom: 33/1223
  31805. },
  31806. form: "lucario"
  31807. },
  31808. riolu_front: {
  31809. height: math.unit(2 + 4/12, "feet"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/cat/riolu-front.svg",
  31813. extra: 1104/956,
  31814. bottom: 70/1174
  31815. },
  31816. form: "riolu",
  31817. default: true
  31818. },
  31819. nickit: {
  31820. height: math.unit(2, "feet"),
  31821. name: "Side",
  31822. image: {
  31823. source: "./media/characters/cat/nickit-side.svg",
  31824. extra: 1087/852,
  31825. bottom: 67/1154
  31826. },
  31827. form: "nickit",
  31828. default: true
  31829. },
  31830. lopunnyFront: {
  31831. height: math.unit(5, "feet"),
  31832. name: "Front",
  31833. image: {
  31834. source: "./media/characters/cat/lopunny-front.svg",
  31835. extra: 1217/1078,
  31836. bottom: 23/1240
  31837. },
  31838. form: "lopunny",
  31839. default: true
  31840. },
  31841. lopunnyBack: {
  31842. height: math.unit(5, "feet"),
  31843. name: "Back",
  31844. image: {
  31845. source: "./media/characters/cat/lopunny-back.svg",
  31846. extra: 1205/1057,
  31847. bottom: 33/1238
  31848. },
  31849. form: "lopunny"
  31850. },
  31851. dog_front: {
  31852. height: math.unit(5 + 9/12, "feet"),
  31853. name: "Front",
  31854. image: {
  31855. source: "./media/characters/cat/dog-front.svg",
  31856. extra: 1403/1309,
  31857. bottom: 31/1434
  31858. },
  31859. form: "dog",
  31860. default: true
  31861. },
  31862. dog_back: {
  31863. height: math.unit(5 + 9/12, "feet"),
  31864. name: "Back",
  31865. image: {
  31866. source: "./media/characters/cat/dog-back.svg",
  31867. extra: 1393/1297,
  31868. bottom: 38/1431
  31869. },
  31870. form: "dog",
  31871. },
  31872. pikachu_front: {
  31873. height: math.unit(2.64, "feet"),
  31874. name: "Front",
  31875. image: {
  31876. source: "./media/characters/cat/pikachu-front.svg",
  31877. extra: 1224/958,
  31878. bottom: 34/1258
  31879. },
  31880. form: "pikachu",
  31881. default: true
  31882. },
  31883. pikachu_back: {
  31884. height: math.unit(2.64, "feet"),
  31885. name: "Back",
  31886. image: {
  31887. source: "./media/characters/cat/pikachu-back.svg",
  31888. extra: 1228/958,
  31889. bottom: 16/1244
  31890. },
  31891. form: "pikachu",
  31892. },
  31893. gigachuFront: {
  31894. height: math.unit(75, "feet"),
  31895. name: "Front",
  31896. image: {
  31897. source: "./media/characters/cat/gigachu-front.svg",
  31898. extra: 1239/1027,
  31899. bottom: 32/1271
  31900. },
  31901. form: "gigachu",
  31902. default: true
  31903. },
  31904. gigachuBack: {
  31905. height: math.unit(75, "feet"),
  31906. name: "Back",
  31907. image: {
  31908. source: "./media/characters/cat/gigachu-back.svg",
  31909. extra: 1229/1030,
  31910. bottom: 9/1238
  31911. },
  31912. form: "gigachu"
  31913. },
  31914. },
  31915. [
  31916. {
  31917. name: "Really small",
  31918. height: math.unit(1, "nm"),
  31919. allForms: true
  31920. },
  31921. {
  31922. name: "Micro",
  31923. height: math.unit(5, "inches"),
  31924. allForms: true
  31925. },
  31926. {
  31927. name: "Normal",
  31928. height: math.unit(5 + 6 / 12, "feet"),
  31929. default: true,
  31930. form: "cat"
  31931. },
  31932. {
  31933. name: "Normal",
  31934. height: math.unit(7, "feet"),
  31935. default: true,
  31936. form: "taur"
  31937. },
  31938. {
  31939. name: "Normal",
  31940. height: math.unit(4, "feet"),
  31941. default: true,
  31942. form: "lucario"
  31943. },
  31944. {
  31945. name: "Normal",
  31946. height: math.unit(2, "feet"),
  31947. default: true,
  31948. form: "nickit"
  31949. },
  31950. {
  31951. name: "Normal",
  31952. height: math.unit(5, "feet"),
  31953. default: true,
  31954. form: "lopunny"
  31955. },
  31956. {
  31957. name: "Normal",
  31958. height: math.unit(2 + 4/12, "feet"),
  31959. default: true,
  31960. form: "riolu"
  31961. },
  31962. {
  31963. name: "Normal",
  31964. height: math.unit(5 + 6 / 12, "feet"),
  31965. default: true,
  31966. form: "dog"
  31967. },
  31968. {
  31969. name: "Macro",
  31970. height: math.unit(50, "feet"),
  31971. allForms: true
  31972. },
  31973. {
  31974. name: "Normal",
  31975. height: math.unit(2.64, "feet"),
  31976. default: true,
  31977. form: "pikachu"
  31978. },
  31979. {
  31980. name: "Dynamax",
  31981. height: math.unit(75, "feet"),
  31982. form: "gigachu",
  31983. default: true
  31984. },
  31985. {
  31986. name: "Macro+",
  31987. height: math.unit(150, "feet"),
  31988. allForms: true
  31989. },
  31990. {
  31991. name: "Megamacro",
  31992. height: math.unit(100, "miles"),
  31993. allForms: true
  31994. },
  31995. ],
  31996. {
  31997. "cat": {
  31998. name: "Cat",
  31999. default: true
  32000. },
  32001. "taur": {
  32002. name: "Taur",
  32003. },
  32004. "lucario": {
  32005. name: "Lucario",
  32006. },
  32007. "riolu": {
  32008. name: "Riolu",
  32009. },
  32010. "nickit": {
  32011. name: "Nickit",
  32012. },
  32013. "lopunny": {
  32014. name: "Lopunny",
  32015. },
  32016. "dog": {
  32017. name: "Dog",
  32018. },
  32019. "pikachu": {
  32020. name: "Pikachu",
  32021. },
  32022. "gigachu": {
  32023. name: "Gigachu",
  32024. ignoreAllFormSizes: true
  32025. }
  32026. }
  32027. ))
  32028. characterMakers.push(() => makeCharacter(
  32029. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32030. {
  32031. front: {
  32032. height: math.unit(63.4, "meters"),
  32033. weight: math.unit(3.28349e+6, "kilograms"),
  32034. name: "Front",
  32035. image: {
  32036. source: "./media/characters/kirina-violet/front.svg",
  32037. extra: 2812 / 2725,
  32038. bottom: 0 / 2812
  32039. }
  32040. },
  32041. back: {
  32042. height: math.unit(63.4, "meters"),
  32043. weight: math.unit(3.28349e+6, "kilograms"),
  32044. name: "Back",
  32045. image: {
  32046. source: "./media/characters/kirina-violet/back.svg",
  32047. extra: 2812 / 2725,
  32048. bottom: 0 / 2812
  32049. }
  32050. },
  32051. mouth: {
  32052. height: math.unit(4.35, "meters"),
  32053. name: "Mouth",
  32054. image: {
  32055. source: "./media/characters/kirina-violet/mouth.svg"
  32056. }
  32057. },
  32058. paw: {
  32059. height: math.unit(5.6, "meters"),
  32060. name: "Paw",
  32061. image: {
  32062. source: "./media/characters/kirina-violet/paw.svg"
  32063. }
  32064. },
  32065. tail: {
  32066. height: math.unit(18, "meters"),
  32067. name: "Tail",
  32068. image: {
  32069. source: "./media/characters/kirina-violet/tail.svg"
  32070. }
  32071. },
  32072. },
  32073. [
  32074. {
  32075. name: "Macro",
  32076. height: math.unit(63.4, "meters"),
  32077. default: true
  32078. },
  32079. ]
  32080. ))
  32081. characterMakers.push(() => makeCharacter(
  32082. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32083. {
  32084. front: {
  32085. height: math.unit(6, "feet"),
  32086. weight: math.unit(150, "lb"),
  32087. name: "Front",
  32088. image: {
  32089. source: "./media/characters/sfaiyan/front.svg",
  32090. extra: 999 / 978,
  32091. bottom: 5 / 1004
  32092. }
  32093. },
  32094. },
  32095. [
  32096. {
  32097. name: "Normal",
  32098. height: math.unit(1.82, "meters")
  32099. },
  32100. {
  32101. name: "Giant",
  32102. height: math.unit(2.27, "km"),
  32103. default: true
  32104. },
  32105. ]
  32106. ))
  32107. characterMakers.push(() => makeCharacter(
  32108. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32109. {
  32110. front: {
  32111. height: math.unit(179, "cm"),
  32112. weight: math.unit(100, "kg"),
  32113. name: "Front",
  32114. image: {
  32115. source: "./media/characters/raunehkeli/front.svg",
  32116. extra: 1934 / 1926,
  32117. bottom: 0 / 1934
  32118. }
  32119. },
  32120. },
  32121. [
  32122. {
  32123. name: "Normal",
  32124. height: math.unit(179, "cm")
  32125. },
  32126. {
  32127. name: "Maximum",
  32128. height: math.unit(575, "meters"),
  32129. default: true
  32130. },
  32131. ]
  32132. ))
  32133. characterMakers.push(() => makeCharacter(
  32134. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32135. {
  32136. dressed: {
  32137. height: math.unit(6 + 2/12, "feet"),
  32138. weight: math.unit(150, "lb"),
  32139. name: "Dressed",
  32140. image: {
  32141. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32142. extra: 2620/2496,
  32143. bottom: 66/2686
  32144. }
  32145. },
  32146. nude: {
  32147. height: math.unit(6 + 2/12, "feet"),
  32148. weight: math.unit(150, "lb"),
  32149. name: "Nude",
  32150. image: {
  32151. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32152. extra: 2620/2496,
  32153. bottom: 66/2686
  32154. }
  32155. },
  32156. },
  32157. [
  32158. {
  32159. name: "Normal",
  32160. height: math.unit(6 + 2 / 12, "feet")
  32161. },
  32162. {
  32163. name: "Max Height",
  32164. height: math.unit(1181, "feet"),
  32165. default: true
  32166. },
  32167. ]
  32168. ))
  32169. characterMakers.push(() => makeCharacter(
  32170. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32171. {
  32172. front: {
  32173. height: math.unit(5 + 6 / 12, "feet"),
  32174. weight: math.unit(108, "lb"),
  32175. name: "Front",
  32176. image: {
  32177. source: "./media/characters/lilith-zott/front.svg",
  32178. extra: 2415/2133,
  32179. bottom: 193/2608
  32180. }
  32181. },
  32182. },
  32183. [
  32184. {
  32185. name: "Base Height",
  32186. height: math.unit(5 + 6 / 12, "feet")
  32187. },
  32188. {
  32189. name: "Preferred Height",
  32190. height: math.unit(200, "feet")
  32191. },
  32192. {
  32193. name: "Max Height",
  32194. height: math.unit(1030, "feet"),
  32195. default: true
  32196. },
  32197. ]
  32198. ))
  32199. characterMakers.push(() => makeCharacter(
  32200. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32201. {
  32202. super: {
  32203. height: math.unit(6 + 2/12, "feet"),
  32204. weight: math.unit(150, "lb"),
  32205. name: "Super",
  32206. image: {
  32207. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32208. extra: 2555/2387,
  32209. bottom: 50/2605
  32210. }
  32211. },
  32212. casual: {
  32213. height: math.unit(6 + 2/12, "feet"),
  32214. weight: math.unit(150, "lb"),
  32215. name: "Casual",
  32216. image: {
  32217. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32218. extra: 2555/2387,
  32219. bottom: 50/2605
  32220. }
  32221. },
  32222. hand: {
  32223. height: math.unit(1.08, "feet"),
  32224. name: "Hand",
  32225. image: {
  32226. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32227. }
  32228. },
  32229. paw: {
  32230. height: math.unit(1.33, "feet"),
  32231. name: "Paw",
  32232. image: {
  32233. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32234. }
  32235. },
  32236. },
  32237. [
  32238. {
  32239. name: "Normal",
  32240. height: math.unit(6 + 2/12, "feet")
  32241. },
  32242. {
  32243. name: "Preferred Height",
  32244. height: math.unit(220, "feet")
  32245. },
  32246. {
  32247. name: "Max Height",
  32248. height: math.unit(1100, "feet"),
  32249. default: true
  32250. },
  32251. ]
  32252. ))
  32253. characterMakers.push(() => makeCharacter(
  32254. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32255. {
  32256. front: {
  32257. height: math.unit(100, "miles"),
  32258. name: "Front",
  32259. image: {
  32260. source: "./media/characters/sona/front.svg",
  32261. extra: 2433 / 2201,
  32262. bottom: 53 / 2486
  32263. }
  32264. },
  32265. foot: {
  32266. height: math.unit(16.1, "miles"),
  32267. name: "Foot",
  32268. image: {
  32269. source: "./media/characters/sona/foot.svg"
  32270. }
  32271. },
  32272. },
  32273. [
  32274. {
  32275. name: "Macro",
  32276. height: math.unit(100, "miles"),
  32277. default: true
  32278. },
  32279. ]
  32280. ))
  32281. characterMakers.push(() => makeCharacter(
  32282. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32283. {
  32284. front: {
  32285. height: math.unit(6, "feet"),
  32286. weight: math.unit(150, "lb"),
  32287. name: "Front",
  32288. image: {
  32289. source: "./media/characters/bailey/front.svg",
  32290. extra: 1778 / 1724,
  32291. bottom: 30 / 1808
  32292. }
  32293. },
  32294. },
  32295. [
  32296. {
  32297. name: "Micro",
  32298. height: math.unit(4, "inches")
  32299. },
  32300. {
  32301. name: "Normal",
  32302. height: math.unit(5 + 5 / 12, "feet"),
  32303. default: true
  32304. },
  32305. {
  32306. name: "Macro",
  32307. height: math.unit(250, "feet")
  32308. },
  32309. {
  32310. name: "Megamacro",
  32311. height: math.unit(100, "miles")
  32312. },
  32313. ]
  32314. ))
  32315. characterMakers.push(() => makeCharacter(
  32316. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32317. {
  32318. front: {
  32319. height: math.unit(5 + 2 / 12, "feet"),
  32320. weight: math.unit(120, "lb"),
  32321. name: "Front",
  32322. image: {
  32323. source: "./media/characters/snaps/front.svg",
  32324. extra: 2370 / 2177,
  32325. bottom: 48 / 2418
  32326. }
  32327. },
  32328. back: {
  32329. height: math.unit(5 + 2 / 12, "feet"),
  32330. weight: math.unit(120, "lb"),
  32331. name: "Back",
  32332. image: {
  32333. source: "./media/characters/snaps/back.svg",
  32334. extra: 2408 / 2258,
  32335. bottom: 15 / 2423
  32336. }
  32337. },
  32338. },
  32339. [
  32340. {
  32341. name: "Micro",
  32342. height: math.unit(9, "inches")
  32343. },
  32344. {
  32345. name: "Normal",
  32346. height: math.unit(5 + 2 / 12, "feet"),
  32347. default: true
  32348. },
  32349. {
  32350. name: "Mini Macro",
  32351. height: math.unit(10, "feet")
  32352. },
  32353. ]
  32354. ))
  32355. characterMakers.push(() => makeCharacter(
  32356. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32357. {
  32358. front: {
  32359. height: math.unit(1.8, "meters"),
  32360. weight: math.unit(85, "kg"),
  32361. name: "Front",
  32362. image: {
  32363. source: "./media/characters/azteck/front.svg",
  32364. extra: 2815 / 2625,
  32365. bottom: 89 / 2904
  32366. }
  32367. },
  32368. back: {
  32369. height: math.unit(1.8, "meters"),
  32370. weight: math.unit(85, "kg"),
  32371. name: "Back",
  32372. image: {
  32373. source: "./media/characters/azteck/back.svg",
  32374. extra: 2856 / 2648,
  32375. bottom: 85 / 2941
  32376. }
  32377. },
  32378. frontDressed: {
  32379. height: math.unit(1.8, "meters"),
  32380. weight: math.unit(85, "kg"),
  32381. name: "Front (Dressed)",
  32382. image: {
  32383. source: "./media/characters/azteck/front-dressed.svg",
  32384. extra: 2147 / 2003,
  32385. bottom: 68 / 2215
  32386. }
  32387. },
  32388. head: {
  32389. height: math.unit(0.47, "meters"),
  32390. weight: math.unit(85, "kg"),
  32391. name: "Head",
  32392. image: {
  32393. source: "./media/characters/azteck/head.svg"
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Bite sized",
  32400. height: math.unit(16, "cm")
  32401. },
  32402. {
  32403. name: "Normal",
  32404. height: math.unit(1.8, "meters"),
  32405. default: true
  32406. },
  32407. ]
  32408. ))
  32409. characterMakers.push(() => makeCharacter(
  32410. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32411. {
  32412. front: {
  32413. height: math.unit(6, "feet"),
  32414. weight: math.unit(150, "lb"),
  32415. name: "Front",
  32416. image: {
  32417. source: "./media/characters/pidge/front.svg",
  32418. extra: 1936/1820,
  32419. bottom: 0/1936
  32420. }
  32421. },
  32422. back: {
  32423. height: math.unit(6, "feet"),
  32424. weight: math.unit(150, "lb"),
  32425. name: "Back",
  32426. image: {
  32427. source: "./media/characters/pidge/back.svg",
  32428. extra: 1938/1843,
  32429. bottom: 0/1938
  32430. }
  32431. },
  32432. casual: {
  32433. height: math.unit(6, "feet"),
  32434. weight: math.unit(150, "lb"),
  32435. name: "Casual",
  32436. image: {
  32437. source: "./media/characters/pidge/casual.svg",
  32438. extra: 1936/1820,
  32439. bottom: 0/1936
  32440. }
  32441. },
  32442. tech: {
  32443. height: math.unit(6, "feet"),
  32444. weight: math.unit(150, "lb"),
  32445. name: "Tech",
  32446. image: {
  32447. source: "./media/characters/pidge/tech.svg",
  32448. extra: 1802/1682,
  32449. bottom: 0/1802
  32450. }
  32451. },
  32452. head: {
  32453. height: math.unit(1.61, "feet"),
  32454. name: "Head",
  32455. image: {
  32456. source: "./media/characters/pidge/head.svg"
  32457. }
  32458. },
  32459. collar: {
  32460. height: math.unit(0.82, "feet"),
  32461. name: "Collar",
  32462. image: {
  32463. source: "./media/characters/pidge/collar.svg"
  32464. }
  32465. },
  32466. },
  32467. [
  32468. {
  32469. name: "Macro",
  32470. height: math.unit(2, "mile"),
  32471. default: true
  32472. },
  32473. {
  32474. name: "PUPPY",
  32475. height: math.unit(20, "miles")
  32476. },
  32477. ]
  32478. ))
  32479. characterMakers.push(() => makeCharacter(
  32480. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32481. {
  32482. front: {
  32483. height: math.unit(6, "feet"),
  32484. weight: math.unit(150, "lb"),
  32485. name: "Front",
  32486. image: {
  32487. source: "./media/characters/en/front.svg",
  32488. extra: 1697 / 1563,
  32489. bottom: 103 / 1800
  32490. }
  32491. },
  32492. back: {
  32493. height: math.unit(6, "feet"),
  32494. weight: math.unit(150, "lb"),
  32495. name: "Back",
  32496. image: {
  32497. source: "./media/characters/en/back.svg",
  32498. extra: 1700 / 1570,
  32499. bottom: 51 / 1751
  32500. }
  32501. },
  32502. frontDressed: {
  32503. height: math.unit(6, "feet"),
  32504. weight: math.unit(150, "lb"),
  32505. name: "Front (Dressed)",
  32506. image: {
  32507. source: "./media/characters/en/front-dressed.svg",
  32508. extra: 1697 / 1563,
  32509. bottom: 103 / 1800
  32510. }
  32511. },
  32512. backDressed: {
  32513. height: math.unit(6, "feet"),
  32514. weight: math.unit(150, "lb"),
  32515. name: "Back (Dressed)",
  32516. image: {
  32517. source: "./media/characters/en/back-dressed.svg",
  32518. extra: 1700 / 1570,
  32519. bottom: 51 / 1751
  32520. }
  32521. },
  32522. },
  32523. [
  32524. {
  32525. name: "Macro",
  32526. height: math.unit(210, "feet"),
  32527. default: true
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32533. {
  32534. front: {
  32535. height: math.unit(6, "feet"),
  32536. weight: math.unit(150, "lb"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/haze-orris/front.svg",
  32540. extra: 3975 / 3525,
  32541. bottom: 137 / 4112
  32542. }
  32543. },
  32544. },
  32545. [
  32546. {
  32547. name: "Micro",
  32548. height: math.unit(150, "mm"),
  32549. default: true
  32550. },
  32551. ]
  32552. ))
  32553. characterMakers.push(() => makeCharacter(
  32554. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32555. {
  32556. front: {
  32557. height: math.unit(6, "feet"),
  32558. weight: math.unit(150, "lb"),
  32559. name: "Front",
  32560. image: {
  32561. source: "./media/characters/casselene-yaro/front.svg",
  32562. extra: 4721 / 4541,
  32563. bottom: 82 / 4803
  32564. }
  32565. },
  32566. back: {
  32567. height: math.unit(6, "feet"),
  32568. weight: math.unit(150, "lb"),
  32569. name: "Back",
  32570. image: {
  32571. source: "./media/characters/casselene-yaro/back.svg",
  32572. extra: 4569 / 4377,
  32573. bottom: 69 / 4638
  32574. }
  32575. },
  32576. dressed: {
  32577. height: math.unit(6, "feet"),
  32578. weight: math.unit(150, "lb"),
  32579. name: "Dressed",
  32580. image: {
  32581. source: "./media/characters/casselene-yaro/dressed.svg",
  32582. extra: 4721 / 4541,
  32583. bottom: 82 / 4803
  32584. }
  32585. },
  32586. maw: {
  32587. height: math.unit(1, "feet"),
  32588. name: "Maw",
  32589. image: {
  32590. source: "./media/characters/casselene-yaro/maw.svg"
  32591. }
  32592. },
  32593. },
  32594. [
  32595. {
  32596. name: "Macro",
  32597. height: math.unit(190, "feet"),
  32598. default: true
  32599. },
  32600. ]
  32601. ))
  32602. characterMakers.push(() => makeCharacter(
  32603. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32604. {
  32605. front: {
  32606. height: math.unit(10, "feet"),
  32607. weight: math.unit(15015, "lb"),
  32608. name: "Front",
  32609. image: {
  32610. source: "./media/characters/platine/front.svg",
  32611. extra: 1741/1650,
  32612. bottom: 84/1825
  32613. }
  32614. },
  32615. side: {
  32616. height: math.unit(10, "feet"),
  32617. weight: math.unit(15015, "lb"),
  32618. name: "Side",
  32619. image: {
  32620. source: "./media/characters/platine/side.svg",
  32621. extra: 1790/1705,
  32622. bottom: 29/1819
  32623. }
  32624. },
  32625. },
  32626. [
  32627. {
  32628. name: "Normal",
  32629. height: math.unit(10, "feet"),
  32630. default: true
  32631. },
  32632. {
  32633. name: "Macro",
  32634. height: math.unit(100, "feet")
  32635. },
  32636. {
  32637. name: "Megamacro",
  32638. height: math.unit(1000, "feet")
  32639. },
  32640. ]
  32641. ))
  32642. characterMakers.push(() => makeCharacter(
  32643. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32644. {
  32645. front: {
  32646. height: math.unit(15 + 5 / 12, "feet"),
  32647. weight: math.unit(4600, "lb"),
  32648. name: "Front",
  32649. image: {
  32650. source: "./media/characters/neapolitan-ananassa/front.svg",
  32651. extra: 2903 / 2736,
  32652. bottom: 0 / 2903
  32653. }
  32654. },
  32655. side: {
  32656. height: math.unit(15 + 5 / 12, "feet"),
  32657. weight: math.unit(4600, "lb"),
  32658. name: "Side",
  32659. image: {
  32660. source: "./media/characters/neapolitan-ananassa/side.svg",
  32661. extra: 2925 / 2719,
  32662. bottom: 0 / 2925
  32663. }
  32664. },
  32665. back: {
  32666. height: math.unit(15 + 5 / 12, "feet"),
  32667. weight: math.unit(4600, "lb"),
  32668. name: "Back",
  32669. image: {
  32670. source: "./media/characters/neapolitan-ananassa/back.svg",
  32671. extra: 2903 / 2736,
  32672. bottom: 0 / 2903
  32673. }
  32674. },
  32675. },
  32676. [
  32677. {
  32678. name: "Normal",
  32679. height: math.unit(15 + 5 / 12, "feet"),
  32680. default: true
  32681. },
  32682. {
  32683. name: "Post-Millenium",
  32684. height: math.unit(35 + 5 / 12, "feet")
  32685. },
  32686. {
  32687. name: "Post-Era",
  32688. height: math.unit(450 + 5 / 12, "feet")
  32689. },
  32690. ]
  32691. ))
  32692. characterMakers.push(() => makeCharacter(
  32693. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32694. {
  32695. front: {
  32696. height: math.unit(300, "meters"),
  32697. weight: math.unit(125000, "tonnes"),
  32698. name: "Front",
  32699. image: {
  32700. source: "./media/characters/pazuzu/front.svg",
  32701. extra: 877 / 794,
  32702. bottom: 47 / 924
  32703. }
  32704. },
  32705. },
  32706. [
  32707. {
  32708. name: "Macro",
  32709. height: math.unit(300, "meters"),
  32710. default: true
  32711. },
  32712. ]
  32713. ))
  32714. characterMakers.push(() => makeCharacter(
  32715. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32716. {
  32717. side: {
  32718. height: math.unit(10 + 7 / 12, "feet"),
  32719. weight: math.unit(2.5, "tons"),
  32720. name: "Side",
  32721. image: {
  32722. source: "./media/characters/aasha/side.svg",
  32723. extra: 1345 / 1245,
  32724. bottom: 111 / 1456
  32725. }
  32726. },
  32727. back: {
  32728. height: math.unit(10 + 7 / 12, "feet"),
  32729. weight: math.unit(2.5, "tons"),
  32730. name: "Back",
  32731. image: {
  32732. source: "./media/characters/aasha/back.svg",
  32733. extra: 1133 / 1057,
  32734. bottom: 257 / 1390
  32735. }
  32736. },
  32737. },
  32738. [
  32739. {
  32740. name: "Normal",
  32741. height: math.unit(10 + 7 / 12, "feet"),
  32742. default: true
  32743. },
  32744. ]
  32745. ))
  32746. characterMakers.push(() => makeCharacter(
  32747. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32748. {
  32749. front: {
  32750. height: math.unit(6 + 3 / 12, "feet"),
  32751. name: "Front",
  32752. image: {
  32753. source: "./media/characters/nevan/front.svg",
  32754. extra: 704 / 704,
  32755. bottom: 28 / 732
  32756. }
  32757. },
  32758. back: {
  32759. height: math.unit(6 + 3 / 12, "feet"),
  32760. name: "Back",
  32761. image: {
  32762. source: "./media/characters/nevan/back.svg",
  32763. extra: 714 / 714,
  32764. bottom: 21 / 735
  32765. }
  32766. },
  32767. frontFlaccid: {
  32768. height: math.unit(6 + 3 / 12, "feet"),
  32769. name: "Front (Flaccid)",
  32770. image: {
  32771. source: "./media/characters/nevan/front-flaccid.svg",
  32772. extra: 704 / 704,
  32773. bottom: 28 / 732
  32774. }
  32775. },
  32776. frontErect: {
  32777. height: math.unit(6 + 3 / 12, "feet"),
  32778. name: "Front (Erect)",
  32779. image: {
  32780. source: "./media/characters/nevan/front-erect.svg",
  32781. extra: 704 / 704,
  32782. bottom: 28 / 732
  32783. }
  32784. },
  32785. backFlaccid: {
  32786. height: math.unit(6 + 3 / 12, "feet"),
  32787. name: "Back (Flaccid)",
  32788. image: {
  32789. source: "./media/characters/nevan/back-flaccid.svg",
  32790. extra: 714 / 714,
  32791. bottom: 21 / 735
  32792. }
  32793. },
  32794. },
  32795. [
  32796. {
  32797. name: "Normal",
  32798. height: math.unit(6 + 3 / 12, "feet"),
  32799. default: true
  32800. },
  32801. ]
  32802. ))
  32803. characterMakers.push(() => makeCharacter(
  32804. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32805. {
  32806. front: {
  32807. height: math.unit(4, "feet"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/arhan/front.svg",
  32811. extra: 3368 / 3133,
  32812. bottom: 0 / 3368
  32813. }
  32814. },
  32815. side: {
  32816. height: math.unit(4, "feet"),
  32817. name: "Side",
  32818. image: {
  32819. source: "./media/characters/arhan/side.svg",
  32820. extra: 3347 / 3105,
  32821. bottom: 0 / 3347
  32822. }
  32823. },
  32824. tongue: {
  32825. height: math.unit(1.42, "feet"),
  32826. name: "Tongue",
  32827. image: {
  32828. source: "./media/characters/arhan/tongue.svg"
  32829. }
  32830. },
  32831. head: {
  32832. height: math.unit(0.85, "feet"),
  32833. name: "Head",
  32834. image: {
  32835. source: "./media/characters/arhan/head.svg"
  32836. }
  32837. },
  32838. },
  32839. [
  32840. {
  32841. name: "Normal",
  32842. height: math.unit(4, "feet"),
  32843. default: true
  32844. },
  32845. ]
  32846. ))
  32847. characterMakers.push(() => makeCharacter(
  32848. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32849. {
  32850. front: {
  32851. height: math.unit(5 + 7.5 / 12, "feet"),
  32852. weight: math.unit(120, "lb"),
  32853. name: "Front",
  32854. image: {
  32855. source: "./media/characters/digi-duncan/front.svg",
  32856. extra: 330 / 326,
  32857. bottom: 16 / 346
  32858. }
  32859. },
  32860. side: {
  32861. height: math.unit(5 + 7.5 / 12, "feet"),
  32862. weight: math.unit(120, "lb"),
  32863. name: "Side",
  32864. image: {
  32865. source: "./media/characters/digi-duncan/side.svg",
  32866. extra: 341 / 337,
  32867. bottom: 1 / 342
  32868. }
  32869. },
  32870. back: {
  32871. height: math.unit(5 + 7.5 / 12, "feet"),
  32872. weight: math.unit(120, "lb"),
  32873. name: "Back",
  32874. image: {
  32875. source: "./media/characters/digi-duncan/back.svg",
  32876. extra: 330 / 326,
  32877. bottom: 12 / 342
  32878. }
  32879. },
  32880. },
  32881. [
  32882. {
  32883. name: "Speck",
  32884. height: math.unit(0.25, "mm")
  32885. },
  32886. {
  32887. name: "Micro",
  32888. height: math.unit(5, "mm")
  32889. },
  32890. {
  32891. name: "Tiny",
  32892. height: math.unit(0.5, "inches"),
  32893. default: true
  32894. },
  32895. {
  32896. name: "Human",
  32897. height: math.unit(5 + 7.5 / 12, "feet")
  32898. },
  32899. {
  32900. name: "Minigiant",
  32901. height: math.unit(8 + 5.25, "feet")
  32902. },
  32903. {
  32904. name: "Giant",
  32905. height: math.unit(2000, "feet")
  32906. },
  32907. {
  32908. name: "Mega",
  32909. height: math.unit(371.1, "miles")
  32910. },
  32911. ]
  32912. ))
  32913. characterMakers.push(() => makeCharacter(
  32914. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32915. {
  32916. front: {
  32917. height: math.unit(2, "meters"),
  32918. weight: math.unit(350, "kg"),
  32919. name: "Front",
  32920. image: {
  32921. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32922. extra: 898 / 838,
  32923. bottom: 9 / 907
  32924. }
  32925. },
  32926. },
  32927. [
  32928. {
  32929. name: "Micro",
  32930. height: math.unit(8, "meters")
  32931. },
  32932. {
  32933. name: "Normal",
  32934. height: math.unit(50, "meters"),
  32935. default: true
  32936. },
  32937. {
  32938. name: "Macro",
  32939. height: math.unit(500, "meters")
  32940. },
  32941. ]
  32942. ))
  32943. characterMakers.push(() => makeCharacter(
  32944. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32945. {
  32946. front: {
  32947. height: math.unit(6 + 6 / 12, "feet"),
  32948. name: "Front",
  32949. image: {
  32950. source: "./media/characters/khardesh/front.svg",
  32951. extra: 1788/1596,
  32952. bottom: 66/1854
  32953. }
  32954. },
  32955. back: {
  32956. height: math.unit(6 + 6 / 12, "feet"),
  32957. name: "Back",
  32958. image: {
  32959. source: "./media/characters/khardesh/back.svg",
  32960. extra: 1781/1584,
  32961. bottom: 68/1849
  32962. }
  32963. },
  32964. },
  32965. [
  32966. {
  32967. name: "Normal",
  32968. height: math.unit(6 + 6 / 12, "feet"),
  32969. default: true
  32970. },
  32971. {
  32972. name: "Normal+",
  32973. height: math.unit(4, "meters")
  32974. },
  32975. {
  32976. name: "Macro",
  32977. height: math.unit(50, "meters")
  32978. },
  32979. {
  32980. name: "Macro+",
  32981. height: math.unit(100, "meters")
  32982. },
  32983. {
  32984. name: "Megamacro",
  32985. height: math.unit(20, "km")
  32986. },
  32987. ]
  32988. ))
  32989. characterMakers.push(() => makeCharacter(
  32990. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32991. {
  32992. front: {
  32993. height: math.unit(6, "feet"),
  32994. weight: math.unit(150, "lb"),
  32995. name: "Front",
  32996. image: {
  32997. source: "./media/characters/kosho/front.svg",
  32998. extra: 1847 / 1847,
  32999. bottom: 86 / 1933
  33000. }
  33001. },
  33002. },
  33003. [
  33004. {
  33005. name: "Second-stage micro",
  33006. height: math.unit(0.5, "inches")
  33007. },
  33008. {
  33009. name: "First-stage micro",
  33010. height: math.unit(6, "inches")
  33011. },
  33012. {
  33013. name: "Normal",
  33014. height: math.unit(6, "feet"),
  33015. default: true
  33016. },
  33017. {
  33018. name: "First-stage macro",
  33019. height: math.unit(72, "feet")
  33020. },
  33021. {
  33022. name: "Second-stage macro",
  33023. height: math.unit(864, "feet")
  33024. },
  33025. ]
  33026. ))
  33027. characterMakers.push(() => makeCharacter(
  33028. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33029. {
  33030. normal: {
  33031. height: math.unit(4 + 6 / 12, "feet"),
  33032. name: "Normal",
  33033. image: {
  33034. source: "./media/characters/hydra/normal.svg",
  33035. extra: 2833 / 2634,
  33036. bottom: 68 / 2901
  33037. }
  33038. },
  33039. smol: {
  33040. height: math.unit(0.705, "inches"),
  33041. name: "Smol",
  33042. image: {
  33043. source: "./media/characters/hydra/smol.svg",
  33044. extra: 2715 / 2540,
  33045. bottom: 0 / 2715
  33046. }
  33047. },
  33048. },
  33049. [
  33050. {
  33051. name: "Normal",
  33052. height: math.unit(4 + 6 / 12, "feet"),
  33053. default: true
  33054. }
  33055. ]
  33056. ))
  33057. characterMakers.push(() => makeCharacter(
  33058. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33059. {
  33060. front: {
  33061. height: math.unit(0.6, "cm"),
  33062. name: "Front",
  33063. image: {
  33064. source: "./media/characters/daz/front.svg",
  33065. extra: 1682 / 1164,
  33066. bottom: 42 / 1724
  33067. }
  33068. },
  33069. },
  33070. [
  33071. {
  33072. name: "Normal",
  33073. height: math.unit(0.6, "cm"),
  33074. default: true
  33075. },
  33076. ]
  33077. ))
  33078. characterMakers.push(() => makeCharacter(
  33079. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33080. {
  33081. front: {
  33082. height: math.unit(6, "feet"),
  33083. weight: math.unit(235, "lb"),
  33084. name: "Front",
  33085. image: {
  33086. source: "./media/characters/theo-pangolin/front.svg",
  33087. extra: 1996 / 1969,
  33088. bottom: 115 / 2111
  33089. }
  33090. },
  33091. back: {
  33092. height: math.unit(6, "feet"),
  33093. weight: math.unit(235, "lb"),
  33094. name: "Back",
  33095. image: {
  33096. source: "./media/characters/theo-pangolin/back.svg",
  33097. extra: 1979 / 1979,
  33098. bottom: 40 / 2019
  33099. }
  33100. },
  33101. feral: {
  33102. height: math.unit(2, "feet"),
  33103. weight: math.unit(30, "lb"),
  33104. name: "Feral",
  33105. image: {
  33106. source: "./media/characters/theo-pangolin/feral.svg",
  33107. extra: 803 / 791,
  33108. bottom: 181 / 984
  33109. }
  33110. },
  33111. footFive: {
  33112. height: math.unit(1.43, "feet"),
  33113. name: "Foot (Five Toes)",
  33114. image: {
  33115. source: "./media/characters/theo-pangolin/foot-five.svg"
  33116. }
  33117. },
  33118. footFour: {
  33119. height: math.unit(1.43, "feet"),
  33120. name: "Foot (Four Toes)",
  33121. image: {
  33122. source: "./media/characters/theo-pangolin/foot-four.svg"
  33123. }
  33124. },
  33125. handFour: {
  33126. height: math.unit(0.81, "feet"),
  33127. name: "Hand (Four Fingers)",
  33128. image: {
  33129. source: "./media/characters/theo-pangolin/hand-four.svg"
  33130. }
  33131. },
  33132. handThree: {
  33133. height: math.unit(0.81, "feet"),
  33134. name: "Hand (Three Fingers)",
  33135. image: {
  33136. source: "./media/characters/theo-pangolin/hand-three.svg"
  33137. }
  33138. },
  33139. headFront: {
  33140. height: math.unit(1.37, "feet"),
  33141. name: "Head (Front)",
  33142. image: {
  33143. source: "./media/characters/theo-pangolin/head-front.svg"
  33144. }
  33145. },
  33146. headSide: {
  33147. height: math.unit(1.43, "feet"),
  33148. name: "Head (Side)",
  33149. image: {
  33150. source: "./media/characters/theo-pangolin/head-side.svg"
  33151. }
  33152. },
  33153. tongue: {
  33154. height: math.unit(2.29, "feet"),
  33155. name: "Tongue",
  33156. image: {
  33157. source: "./media/characters/theo-pangolin/tongue.svg"
  33158. }
  33159. },
  33160. },
  33161. [
  33162. {
  33163. name: "Normal",
  33164. height: math.unit(6, "feet")
  33165. },
  33166. {
  33167. name: "Macro",
  33168. height: math.unit(400, "feet"),
  33169. default: true
  33170. },
  33171. ]
  33172. ))
  33173. characterMakers.push(() => makeCharacter(
  33174. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33175. {
  33176. front: {
  33177. height: math.unit(6, "inches"),
  33178. weight: math.unit(0.036, "kg"),
  33179. name: "Front",
  33180. image: {
  33181. source: "./media/characters/renée/front.svg",
  33182. extra: 900 / 886,
  33183. bottom: 8 / 908
  33184. }
  33185. },
  33186. },
  33187. [
  33188. {
  33189. name: "Nano",
  33190. height: math.unit(1, "nm")
  33191. },
  33192. {
  33193. name: "Micro",
  33194. height: math.unit(1, "mm")
  33195. },
  33196. {
  33197. name: "Normal",
  33198. height: math.unit(6, "inches")
  33199. },
  33200. {
  33201. name: "Macro",
  33202. height: math.unit(2000, "feet"),
  33203. default: true
  33204. },
  33205. {
  33206. name: "Megamacro",
  33207. height: math.unit(2, "km")
  33208. },
  33209. {
  33210. name: "Gigamacro",
  33211. height: math.unit(2000, "km")
  33212. },
  33213. {
  33214. name: "Teramacro",
  33215. height: math.unit(250000, "km")
  33216. },
  33217. ]
  33218. ))
  33219. characterMakers.push(() => makeCharacter(
  33220. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33221. {
  33222. front: {
  33223. height: math.unit(4, "meters"),
  33224. weight: math.unit(150, "kg"),
  33225. name: "Front",
  33226. image: {
  33227. source: "./media/characters/caledvwlch/front.svg",
  33228. extra: 1757/1537,
  33229. bottom: 31/1788
  33230. }
  33231. },
  33232. side: {
  33233. height: math.unit(4, "meters"),
  33234. weight: math.unit(150, "kg"),
  33235. name: "Side",
  33236. image: {
  33237. source: "./media/characters/caledvwlch/side.svg",
  33238. extra: 1605 / 1536,
  33239. bottom: 31 / 1636
  33240. }
  33241. },
  33242. back: {
  33243. height: math.unit(4, "meters"),
  33244. weight: math.unit(150, "kg"),
  33245. name: "Back",
  33246. image: {
  33247. source: "./media/characters/caledvwlch/back.svg",
  33248. extra: 1635 / 1565,
  33249. bottom: 27 / 1662
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "\"Incognito\"",
  33256. height: math.unit(4, "meters")
  33257. },
  33258. {
  33259. name: "Small rampage",
  33260. height: math.unit(600, "meters")
  33261. },
  33262. {
  33263. name: "Mega",
  33264. height: math.unit(30, "km")
  33265. },
  33266. {
  33267. name: "Home-size",
  33268. height: math.unit(50, "km"),
  33269. default: true
  33270. },
  33271. {
  33272. name: "Giga",
  33273. height: math.unit(300, "km")
  33274. },
  33275. {
  33276. name: "Lounging",
  33277. height: math.unit(11000, "km")
  33278. },
  33279. {
  33280. name: "Planet snacking",
  33281. height: math.unit(2000000, "km")
  33282. },
  33283. ]
  33284. ))
  33285. characterMakers.push(() => makeCharacter(
  33286. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33287. {
  33288. front: {
  33289. height: math.unit(6, "feet"),
  33290. weight: math.unit(215, "lb"),
  33291. name: "Front",
  33292. image: {
  33293. source: "./media/characters/sapphire-svell/front.svg",
  33294. extra: 495 / 455,
  33295. bottom: 20 / 515
  33296. }
  33297. },
  33298. back: {
  33299. height: math.unit(6, "feet"),
  33300. weight: math.unit(216, "lb"),
  33301. name: "Back",
  33302. image: {
  33303. source: "./media/characters/sapphire-svell/back.svg",
  33304. extra: 497 / 477,
  33305. bottom: 7 / 504
  33306. }
  33307. },
  33308. maw: {
  33309. height: math.unit(1.57, "feet"),
  33310. name: "Maw",
  33311. image: {
  33312. source: "./media/characters/sapphire-svell/maw.svg"
  33313. }
  33314. },
  33315. foot: {
  33316. height: math.unit(1.07, "feet"),
  33317. name: "Foot",
  33318. image: {
  33319. source: "./media/characters/sapphire-svell/foot.svg"
  33320. }
  33321. },
  33322. toering: {
  33323. height: math.unit(1.7, "inch"),
  33324. name: "Toering",
  33325. image: {
  33326. source: "./media/characters/sapphire-svell/toering.svg"
  33327. }
  33328. },
  33329. },
  33330. [
  33331. {
  33332. name: "Normal",
  33333. height: math.unit(300, "feet"),
  33334. default: true
  33335. },
  33336. {
  33337. name: "Augmented",
  33338. height: math.unit(1250, "feet")
  33339. },
  33340. {
  33341. name: "Unleashed",
  33342. height: math.unit(3000, "feet")
  33343. },
  33344. ]
  33345. ))
  33346. characterMakers.push(() => makeCharacter(
  33347. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33348. {
  33349. side: {
  33350. height: math.unit(2 + 3 / 12, "feet"),
  33351. weight: math.unit(110, "lb"),
  33352. name: "Side",
  33353. image: {
  33354. source: "./media/characters/glitch-flux/side.svg",
  33355. extra: 997 / 805,
  33356. bottom: 20 / 1017
  33357. }
  33358. },
  33359. },
  33360. [
  33361. {
  33362. name: "Normal",
  33363. height: math.unit(2 + 3 / 12, "feet"),
  33364. default: true
  33365. },
  33366. ]
  33367. ))
  33368. characterMakers.push(() => makeCharacter(
  33369. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33370. {
  33371. front: {
  33372. height: math.unit(4, "meters"),
  33373. name: "Front",
  33374. image: {
  33375. source: "./media/characters/mid/front.svg",
  33376. extra: 507 / 476,
  33377. bottom: 17 / 524
  33378. }
  33379. },
  33380. back: {
  33381. height: math.unit(4, "meters"),
  33382. name: "Back",
  33383. image: {
  33384. source: "./media/characters/mid/back.svg",
  33385. extra: 519 / 487,
  33386. bottom: 7 / 526
  33387. }
  33388. },
  33389. stuck: {
  33390. height: math.unit(2.2, "meters"),
  33391. name: "Stuck",
  33392. image: {
  33393. source: "./media/characters/mid/stuck.svg",
  33394. extra: 1951 / 1869,
  33395. bottom: 88 / 2039
  33396. }
  33397. }
  33398. },
  33399. [
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(4, "meters"),
  33403. default: true
  33404. },
  33405. {
  33406. name: "Big",
  33407. height: math.unit(10, "meters")
  33408. },
  33409. {
  33410. name: "Macro",
  33411. height: math.unit(800, "meters")
  33412. },
  33413. {
  33414. name: "Megamacro",
  33415. height: math.unit(100, "km")
  33416. },
  33417. {
  33418. name: "Overgrown",
  33419. height: math.unit(1, "parsec")
  33420. },
  33421. ]
  33422. ))
  33423. characterMakers.push(() => makeCharacter(
  33424. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33425. {
  33426. front: {
  33427. height: math.unit(2.5, "meters"),
  33428. weight: math.unit(225, "kg"),
  33429. name: "Front",
  33430. image: {
  33431. source: "./media/characters/iris/front.svg",
  33432. extra: 3348 / 3251,
  33433. bottom: 205 / 3553
  33434. }
  33435. },
  33436. maw: {
  33437. height: math.unit(0.56, "meter"),
  33438. name: "Maw",
  33439. image: {
  33440. source: "./media/characters/iris/maw.svg"
  33441. }
  33442. },
  33443. },
  33444. [
  33445. {
  33446. name: "Mewter cat",
  33447. height: math.unit(1.2, "meters")
  33448. },
  33449. {
  33450. name: "Normal",
  33451. height: math.unit(2.5, "meters"),
  33452. default: true
  33453. },
  33454. {
  33455. name: "Minimacro",
  33456. height: math.unit(18, "feet")
  33457. },
  33458. {
  33459. name: "Macro",
  33460. height: math.unit(140, "feet")
  33461. },
  33462. {
  33463. name: "Macro+",
  33464. height: math.unit(180, "meters")
  33465. },
  33466. {
  33467. name: "Megamacro",
  33468. height: math.unit(2746, "meters")
  33469. },
  33470. ]
  33471. ))
  33472. characterMakers.push(() => makeCharacter(
  33473. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33474. {
  33475. front: {
  33476. height: math.unit(6, "feet"),
  33477. weight: math.unit(135, "lb"),
  33478. name: "Front",
  33479. image: {
  33480. source: "./media/characters/axel/front.svg",
  33481. extra: 908 / 908,
  33482. bottom: 58 / 966
  33483. }
  33484. },
  33485. side: {
  33486. height: math.unit(6, "feet"),
  33487. weight: math.unit(135, "lb"),
  33488. name: "Side",
  33489. image: {
  33490. source: "./media/characters/axel/side.svg",
  33491. extra: 958 / 958,
  33492. bottom: 11 / 969
  33493. }
  33494. },
  33495. back: {
  33496. height: math.unit(6, "feet"),
  33497. weight: math.unit(135, "lb"),
  33498. name: "Back",
  33499. image: {
  33500. source: "./media/characters/axel/back.svg",
  33501. extra: 887 / 887,
  33502. bottom: 34 / 921
  33503. }
  33504. },
  33505. head: {
  33506. height: math.unit(1.07, "feet"),
  33507. name: "Head",
  33508. image: {
  33509. source: "./media/characters/axel/head.svg"
  33510. }
  33511. },
  33512. beak: {
  33513. height: math.unit(1.4, "feet"),
  33514. name: "Beak",
  33515. image: {
  33516. source: "./media/characters/axel/beak.svg"
  33517. }
  33518. },
  33519. beakSide: {
  33520. height: math.unit(1.4, "feet"),
  33521. name: "Beak Side",
  33522. image: {
  33523. source: "./media/characters/axel/beak-side.svg"
  33524. }
  33525. },
  33526. sheath: {
  33527. height: math.unit(0.5, "feet"),
  33528. name: "Sheath",
  33529. image: {
  33530. source: "./media/characters/axel/sheath.svg"
  33531. }
  33532. },
  33533. dick: {
  33534. height: math.unit(0.98, "feet"),
  33535. name: "Dick",
  33536. image: {
  33537. source: "./media/characters/axel/dick.svg"
  33538. }
  33539. },
  33540. },
  33541. [
  33542. {
  33543. name: "Macro",
  33544. height: math.unit(68, "meters"),
  33545. default: true
  33546. },
  33547. ]
  33548. ))
  33549. characterMakers.push(() => makeCharacter(
  33550. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33551. {
  33552. front: {
  33553. height: math.unit(3.5, "meters"),
  33554. weight: math.unit(1200, "kg"),
  33555. name: "Front",
  33556. image: {
  33557. source: "./media/characters/joanna/front.svg",
  33558. extra: 1596 / 1488,
  33559. bottom: 29 / 1625
  33560. }
  33561. },
  33562. back: {
  33563. height: math.unit(3.5, "meters"),
  33564. weight: math.unit(1200, "kg"),
  33565. name: "Back",
  33566. image: {
  33567. source: "./media/characters/joanna/back.svg",
  33568. extra: 1594 / 1495,
  33569. bottom: 26 / 1620
  33570. }
  33571. },
  33572. frontShorts: {
  33573. height: math.unit(3.5, "meters"),
  33574. weight: math.unit(1200, "kg"),
  33575. name: "Front (Shorts)",
  33576. image: {
  33577. source: "./media/characters/joanna/front-shorts.svg",
  33578. extra: 1596 / 1488,
  33579. bottom: 29 / 1625
  33580. }
  33581. },
  33582. frontBiker: {
  33583. height: math.unit(3.5, "meters"),
  33584. weight: math.unit(1200, "kg"),
  33585. name: "Front (Biker)",
  33586. image: {
  33587. source: "./media/characters/joanna/front-biker.svg",
  33588. extra: 1596 / 1488,
  33589. bottom: 29 / 1625
  33590. }
  33591. },
  33592. backBiker: {
  33593. height: math.unit(3.5, "meters"),
  33594. weight: math.unit(1200, "kg"),
  33595. name: "Back (Biker)",
  33596. image: {
  33597. source: "./media/characters/joanna/back-biker.svg",
  33598. extra: 1594 / 1495,
  33599. bottom: 88 / 1682
  33600. }
  33601. },
  33602. bikeLeft: {
  33603. height: math.unit(2.4, "meters"),
  33604. weight: math.unit(1600, "kg"),
  33605. name: "Bike (Left)",
  33606. image: {
  33607. source: "./media/characters/joanna/bike-left.svg",
  33608. extra: 720 / 720,
  33609. bottom: 8 / 728
  33610. }
  33611. },
  33612. bikeRight: {
  33613. height: math.unit(2.4, "meters"),
  33614. weight: math.unit(1600, "kg"),
  33615. name: "Bike (Right)",
  33616. image: {
  33617. source: "./media/characters/joanna/bike-right.svg",
  33618. extra: 720 / 720,
  33619. bottom: 8 / 728
  33620. }
  33621. },
  33622. },
  33623. [
  33624. {
  33625. name: "Incognito",
  33626. height: math.unit(3.5, "meters")
  33627. },
  33628. {
  33629. name: "Casual Big",
  33630. height: math.unit(200, "meters")
  33631. },
  33632. {
  33633. name: "Macro",
  33634. height: math.unit(600, "meters")
  33635. },
  33636. {
  33637. name: "Original",
  33638. height: math.unit(20, "km"),
  33639. default: true
  33640. },
  33641. {
  33642. name: "Giga",
  33643. height: math.unit(400, "km")
  33644. },
  33645. {
  33646. name: "Lounging",
  33647. height: math.unit(1500, "km")
  33648. },
  33649. {
  33650. name: "Planetary",
  33651. height: math.unit(200000, "km")
  33652. },
  33653. ]
  33654. ))
  33655. characterMakers.push(() => makeCharacter(
  33656. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33657. {
  33658. front: {
  33659. height: math.unit(6, "feet"),
  33660. weight: math.unit(150, "lb"),
  33661. name: "Front",
  33662. image: {
  33663. source: "./media/characters/hugo-sigil/front.svg",
  33664. extra: 522 / 500,
  33665. bottom: 2 / 524
  33666. }
  33667. },
  33668. back: {
  33669. height: math.unit(6, "feet"),
  33670. weight: math.unit(150, "lb"),
  33671. name: "Back",
  33672. image: {
  33673. source: "./media/characters/hugo-sigil/back.svg",
  33674. extra: 519 / 495,
  33675. bottom: 5 / 524
  33676. }
  33677. },
  33678. maw: {
  33679. height: math.unit(1.4, "feet"),
  33680. weight: math.unit(150, "lb"),
  33681. name: "Maw",
  33682. image: {
  33683. source: "./media/characters/hugo-sigil/maw.svg"
  33684. }
  33685. },
  33686. feet: {
  33687. height: math.unit(1.56, "feet"),
  33688. weight: math.unit(150, "lb"),
  33689. name: "Feet",
  33690. image: {
  33691. source: "./media/characters/hugo-sigil/feet.svg",
  33692. extra: 177 / 177,
  33693. bottom: 12 / 189
  33694. }
  33695. },
  33696. },
  33697. [
  33698. {
  33699. name: "Normal",
  33700. height: math.unit(6, "feet")
  33701. },
  33702. {
  33703. name: "Macro",
  33704. height: math.unit(200, "feet"),
  33705. default: true
  33706. },
  33707. ]
  33708. ))
  33709. characterMakers.push(() => makeCharacter(
  33710. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33711. {
  33712. front: {
  33713. height: math.unit(6, "feet"),
  33714. weight: math.unit(150, "lb"),
  33715. name: "Front",
  33716. image: {
  33717. source: "./media/characters/peri/front.svg",
  33718. extra: 2354 / 2233,
  33719. bottom: 49 / 2403
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Really Small",
  33726. height: math.unit(1, "nm")
  33727. },
  33728. {
  33729. name: "Micro",
  33730. height: math.unit(4, "inches")
  33731. },
  33732. {
  33733. name: "Normal",
  33734. height: math.unit(7, "inches"),
  33735. default: true
  33736. },
  33737. {
  33738. name: "Macro",
  33739. height: math.unit(400, "feet")
  33740. },
  33741. {
  33742. name: "Megamacro",
  33743. height: math.unit(100, "miles")
  33744. },
  33745. ]
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33749. {
  33750. frontSlim: {
  33751. height: math.unit(7, "feet"),
  33752. name: "Front (Slim)",
  33753. image: {
  33754. source: "./media/characters/issilora/front-slim.svg",
  33755. extra: 529 / 449,
  33756. bottom: 53 / 582
  33757. }
  33758. },
  33759. sideSlim: {
  33760. height: math.unit(7, "feet"),
  33761. name: "Side (Slim)",
  33762. image: {
  33763. source: "./media/characters/issilora/side-slim.svg",
  33764. extra: 570 / 480,
  33765. bottom: 30 / 600
  33766. }
  33767. },
  33768. backSlim: {
  33769. height: math.unit(7, "feet"),
  33770. name: "Back (Slim)",
  33771. image: {
  33772. source: "./media/characters/issilora/back-slim.svg",
  33773. extra: 537 / 455,
  33774. bottom: 46 / 583
  33775. }
  33776. },
  33777. frontBuff: {
  33778. height: math.unit(7, "feet"),
  33779. name: "Front (Buff)",
  33780. image: {
  33781. source: "./media/characters/issilora/front-buff.svg",
  33782. extra: 2310 / 2035,
  33783. bottom: 335 / 2645
  33784. }
  33785. },
  33786. head: {
  33787. height: math.unit(1.94, "feet"),
  33788. name: "Head",
  33789. image: {
  33790. source: "./media/characters/issilora/head.svg"
  33791. }
  33792. },
  33793. },
  33794. [
  33795. {
  33796. name: "Minimum",
  33797. height: math.unit(7, "feet")
  33798. },
  33799. {
  33800. name: "Comfortable",
  33801. height: math.unit(17, "feet")
  33802. },
  33803. {
  33804. name: "Fun Size",
  33805. height: math.unit(47, "feet")
  33806. },
  33807. {
  33808. name: "Natural Macro",
  33809. height: math.unit(137, "feet"),
  33810. default: true
  33811. },
  33812. {
  33813. name: "Maximum Kaiju",
  33814. height: math.unit(397, "feet")
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33820. {
  33821. front: {
  33822. height: math.unit(50 + 9/12, "feet"),
  33823. weight: math.unit(32.8, "tons"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/irb'iiritaahn/front.svg",
  33827. extra: 1878/1826,
  33828. bottom: 326/2204
  33829. }
  33830. },
  33831. back: {
  33832. height: math.unit(50 + 9/12, "feet"),
  33833. weight: math.unit(32.8, "tons"),
  33834. name: "Back",
  33835. image: {
  33836. source: "./media/characters/irb'iiritaahn/back.svg",
  33837. extra: 2052/2018,
  33838. bottom: 152/2204
  33839. }
  33840. },
  33841. head: {
  33842. height: math.unit(12.86, "feet"),
  33843. name: "Head",
  33844. image: {
  33845. source: "./media/characters/irb'iiritaahn/head.svg"
  33846. }
  33847. },
  33848. maw: {
  33849. height: math.unit(9.66, "feet"),
  33850. name: "Maw",
  33851. image: {
  33852. source: "./media/characters/irb'iiritaahn/maw.svg"
  33853. }
  33854. },
  33855. frontDick: {
  33856. height: math.unit(8.78461, "feet"),
  33857. name: "Front Dick",
  33858. image: {
  33859. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33860. }
  33861. },
  33862. rearDick: {
  33863. height: math.unit(8.78461, "feet"),
  33864. name: "Rear Dick",
  33865. image: {
  33866. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33867. }
  33868. },
  33869. rearDickUnfolded: {
  33870. height: math.unit(8.78, "feet"),
  33871. name: "Rear Dick (Unfolded)",
  33872. image: {
  33873. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33874. }
  33875. },
  33876. wings: {
  33877. height: math.unit(43, "feet"),
  33878. name: "Wings",
  33879. image: {
  33880. source: "./media/characters/irb'iiritaahn/wings.svg"
  33881. }
  33882. },
  33883. },
  33884. [
  33885. {
  33886. name: "Macro",
  33887. height: math.unit(50 + 9/12, "feet"),
  33888. default: true
  33889. },
  33890. ]
  33891. ))
  33892. characterMakers.push(() => makeCharacter(
  33893. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33894. {
  33895. front: {
  33896. height: math.unit(205, "cm"),
  33897. weight: math.unit(102, "kg"),
  33898. name: "Front",
  33899. image: {
  33900. source: "./media/characters/irbisgreif/front.svg",
  33901. extra: 785/706,
  33902. bottom: 13/798
  33903. }
  33904. },
  33905. back: {
  33906. height: math.unit(205, "cm"),
  33907. weight: math.unit(102, "kg"),
  33908. name: "Back",
  33909. image: {
  33910. source: "./media/characters/irbisgreif/back.svg",
  33911. extra: 713/701,
  33912. bottom: 26/739
  33913. }
  33914. },
  33915. frontDressed: {
  33916. height: math.unit(216, "cm"),
  33917. weight: math.unit(102, "kg"),
  33918. name: "Front-dressed",
  33919. image: {
  33920. source: "./media/characters/irbisgreif/front-dressed.svg",
  33921. extra: 902/776,
  33922. bottom: 14/916
  33923. }
  33924. },
  33925. sideDressed: {
  33926. height: math.unit(195, "cm"),
  33927. weight: math.unit(102, "kg"),
  33928. name: "Side-dressed",
  33929. image: {
  33930. source: "./media/characters/irbisgreif/side-dressed.svg",
  33931. extra: 788/688,
  33932. bottom: 21/809
  33933. }
  33934. },
  33935. backDressed: {
  33936. height: math.unit(216, "cm"),
  33937. weight: math.unit(102, "kg"),
  33938. name: "Back-dressed",
  33939. image: {
  33940. source: "./media/characters/irbisgreif/back-dressed.svg",
  33941. extra: 901/783,
  33942. bottom: 10/911
  33943. }
  33944. },
  33945. dick: {
  33946. height: math.unit(0.49, "feet"),
  33947. name: "Dick",
  33948. image: {
  33949. source: "./media/characters/irbisgreif/dick.svg"
  33950. }
  33951. },
  33952. wingTop: {
  33953. height: math.unit(1.93 , "feet"),
  33954. name: "Wing-top",
  33955. image: {
  33956. source: "./media/characters/irbisgreif/wing-top.svg"
  33957. }
  33958. },
  33959. wingBottom: {
  33960. height: math.unit(1.93 , "feet"),
  33961. name: "Wing-bottom",
  33962. image: {
  33963. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33964. }
  33965. },
  33966. },
  33967. [
  33968. {
  33969. name: "Normal",
  33970. height: math.unit(216, "cm"),
  33971. default: true
  33972. },
  33973. ]
  33974. ))
  33975. characterMakers.push(() => makeCharacter(
  33976. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33977. {
  33978. front: {
  33979. height: math.unit(6, "feet"),
  33980. weight: math.unit(150, "lb"),
  33981. name: "Front",
  33982. image: {
  33983. source: "./media/characters/pride/front.svg",
  33984. extra: 1299/1230,
  33985. bottom: 18/1317
  33986. }
  33987. },
  33988. },
  33989. [
  33990. {
  33991. name: "Normal",
  33992. height: math.unit(7, "feet")
  33993. },
  33994. {
  33995. name: "Mini-macro",
  33996. height: math.unit(11, "feet")
  33997. },
  33998. {
  33999. name: "Macro",
  34000. height: math.unit(15, "meters"),
  34001. default: true
  34002. },
  34003. {
  34004. name: "Macro+",
  34005. height: math.unit(40, "meters")
  34006. },
  34007. ]
  34008. ))
  34009. characterMakers.push(() => makeCharacter(
  34010. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34011. {
  34012. front: {
  34013. height: math.unit(4 + 2 / 12, "feet"),
  34014. weight: math.unit(95, "lb"),
  34015. name: "Front",
  34016. image: {
  34017. source: "./media/characters/vaelophis-nyx/front.svg",
  34018. extra: 2532/2330,
  34019. bottom: 0/2532
  34020. }
  34021. },
  34022. back: {
  34023. height: math.unit(4 + 2 / 12, "feet"),
  34024. weight: math.unit(95, "lb"),
  34025. name: "Back",
  34026. image: {
  34027. source: "./media/characters/vaelophis-nyx/back.svg",
  34028. extra: 2484/2361,
  34029. bottom: 0/2484
  34030. }
  34031. },
  34032. feralSide: {
  34033. height: math.unit(2 + 1/12, "feet"),
  34034. weight: math.unit(20, "lb"),
  34035. name: "Feral (Side)",
  34036. image: {
  34037. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34038. extra: 1721/1581,
  34039. bottom: 70/1791
  34040. }
  34041. },
  34042. feralLazing: {
  34043. height: math.unit(1.08, "feet"),
  34044. weight: math.unit(20, "lb"),
  34045. name: "Feral (Lazing)",
  34046. image: {
  34047. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34048. extra: 822/822,
  34049. bottom: 248/1070
  34050. }
  34051. },
  34052. ear: {
  34053. height: math.unit(0.416, "feet"),
  34054. name: "Ear",
  34055. image: {
  34056. source: "./media/characters/vaelophis-nyx/ear.svg"
  34057. }
  34058. },
  34059. eye: {
  34060. height: math.unit(0.0748, "feet"),
  34061. name: "Eye",
  34062. image: {
  34063. source: "./media/characters/vaelophis-nyx/eye.svg"
  34064. }
  34065. },
  34066. mouth: {
  34067. height: math.unit(0.378, "feet"),
  34068. name: "Mouth",
  34069. image: {
  34070. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34071. }
  34072. },
  34073. spade: {
  34074. height: math.unit(0.55, "feet"),
  34075. name: "Spade",
  34076. image: {
  34077. source: "./media/characters/vaelophis-nyx/spade.svg"
  34078. }
  34079. },
  34080. },
  34081. [
  34082. {
  34083. name: "Normal",
  34084. height: math.unit(4 + 2/12, "feet"),
  34085. default: true
  34086. },
  34087. ]
  34088. ))
  34089. characterMakers.push(() => makeCharacter(
  34090. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34091. {
  34092. front: {
  34093. height: math.unit(7, "feet"),
  34094. weight: math.unit(231, "lb"),
  34095. name: "Front",
  34096. image: {
  34097. source: "./media/characters/flux/front.svg",
  34098. extra: 919/871,
  34099. bottom: 0/919
  34100. }
  34101. },
  34102. back: {
  34103. height: math.unit(7, "feet"),
  34104. weight: math.unit(231, "lb"),
  34105. name: "Back",
  34106. image: {
  34107. source: "./media/characters/flux/back.svg",
  34108. extra: 1040/992,
  34109. bottom: 0/1040
  34110. }
  34111. },
  34112. frontDressed: {
  34113. height: math.unit(7, "feet"),
  34114. weight: math.unit(231, "lb"),
  34115. name: "Front (Dressed)",
  34116. image: {
  34117. source: "./media/characters/flux/front-dressed.svg",
  34118. extra: 919/871,
  34119. bottom: 0/919
  34120. }
  34121. },
  34122. feralSide: {
  34123. height: math.unit(5, "feet"),
  34124. weight: math.unit(150, "lb"),
  34125. name: "Feral (Side)",
  34126. image: {
  34127. source: "./media/characters/flux/feral-side.svg",
  34128. extra: 598/528,
  34129. bottom: 28/626
  34130. }
  34131. },
  34132. head: {
  34133. height: math.unit(1.585, "feet"),
  34134. name: "Head",
  34135. image: {
  34136. source: "./media/characters/flux/head.svg"
  34137. }
  34138. },
  34139. headSide: {
  34140. height: math.unit(1.74, "feet"),
  34141. name: "Head (Side)",
  34142. image: {
  34143. source: "./media/characters/flux/head-side.svg"
  34144. }
  34145. },
  34146. headSideFire: {
  34147. height: math.unit(1.76, "feet"),
  34148. name: "Head (Side, Fire)",
  34149. image: {
  34150. source: "./media/characters/flux/head-side-fire.svg"
  34151. }
  34152. },
  34153. },
  34154. [
  34155. {
  34156. name: "Normal",
  34157. height: math.unit(7, "feet"),
  34158. default: true
  34159. },
  34160. ]
  34161. ))
  34162. characterMakers.push(() => makeCharacter(
  34163. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34164. {
  34165. front: {
  34166. height: math.unit(9, "feet"),
  34167. weight: math.unit(1012, "lb"),
  34168. name: "Front",
  34169. image: {
  34170. source: "./media/characters/ulfra-lupae/front.svg",
  34171. extra: 1083/1011,
  34172. bottom: 67/1150
  34173. }
  34174. },
  34175. },
  34176. [
  34177. {
  34178. name: "Micro",
  34179. height: math.unit(6, "inches")
  34180. },
  34181. {
  34182. name: "Socializing",
  34183. height: math.unit(6 + 5/12, "feet")
  34184. },
  34185. {
  34186. name: "Normal",
  34187. height: math.unit(9, "feet"),
  34188. default: true
  34189. },
  34190. {
  34191. name: "Macro",
  34192. height: math.unit(150, "feet")
  34193. },
  34194. ]
  34195. ))
  34196. characterMakers.push(() => makeCharacter(
  34197. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34198. {
  34199. front: {
  34200. height: math.unit(5 + 2/12, "feet"),
  34201. weight: math.unit(120, "lb"),
  34202. name: "Front",
  34203. image: {
  34204. source: "./media/characters/timber/front.svg",
  34205. extra: 2814/2705,
  34206. bottom: 181/2995
  34207. }
  34208. },
  34209. },
  34210. [
  34211. {
  34212. name: "Normal",
  34213. height: math.unit(5 + 2/12, "feet"),
  34214. default: true
  34215. },
  34216. ]
  34217. ))
  34218. characterMakers.push(() => makeCharacter(
  34219. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34220. {
  34221. front: {
  34222. height: math.unit(9, "feet"),
  34223. name: "Front",
  34224. image: {
  34225. source: "./media/characters/nicki/front.svg",
  34226. extra: 1240/990,
  34227. bottom: 45/1285
  34228. },
  34229. form: "anthro",
  34230. default: true
  34231. },
  34232. side: {
  34233. height: math.unit(9, "feet"),
  34234. name: "Side",
  34235. image: {
  34236. source: "./media/characters/nicki/side.svg",
  34237. extra: 1047/973,
  34238. bottom: 61/1108
  34239. },
  34240. form: "anthro"
  34241. },
  34242. back: {
  34243. height: math.unit(9, "feet"),
  34244. name: "Back",
  34245. image: {
  34246. source: "./media/characters/nicki/back.svg",
  34247. extra: 1006/965,
  34248. bottom: 39/1045
  34249. },
  34250. form: "anthro"
  34251. },
  34252. taur: {
  34253. height: math.unit(15, "feet"),
  34254. name: "Taur",
  34255. image: {
  34256. source: "./media/characters/nicki/taur.svg",
  34257. extra: 1592/1347,
  34258. bottom: 0/1592
  34259. },
  34260. form: "taur",
  34261. default: true
  34262. },
  34263. },
  34264. [
  34265. {
  34266. name: "Normal",
  34267. height: math.unit(9, "feet"),
  34268. form: "anthro",
  34269. default: true
  34270. },
  34271. {
  34272. name: "Normal",
  34273. height: math.unit(15, "feet"),
  34274. form: "taur",
  34275. default: true
  34276. }
  34277. ],
  34278. {
  34279. "anthro": {
  34280. name: "Anthro",
  34281. default: true
  34282. },
  34283. "taur": {
  34284. name: "Taur"
  34285. }
  34286. }
  34287. ))
  34288. characterMakers.push(() => makeCharacter(
  34289. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34290. {
  34291. front: {
  34292. height: math.unit(7 + 10/12, "feet"),
  34293. weight: math.unit(3.5, "tons"),
  34294. name: "Front",
  34295. image: {
  34296. source: "./media/characters/lee/front.svg",
  34297. extra: 1773/1615,
  34298. bottom: 86/1859
  34299. }
  34300. },
  34301. hand: {
  34302. height: math.unit(1.78, "feet"),
  34303. name: "Hand",
  34304. image: {
  34305. source: "./media/characters/lee/hand.svg"
  34306. }
  34307. },
  34308. maw: {
  34309. height: math.unit(1.18, "feet"),
  34310. name: "Maw",
  34311. image: {
  34312. source: "./media/characters/lee/maw.svg"
  34313. }
  34314. },
  34315. },
  34316. [
  34317. {
  34318. name: "Normal",
  34319. height: math.unit(7 + 10/12, "feet"),
  34320. default: true
  34321. },
  34322. ]
  34323. ))
  34324. characterMakers.push(() => makeCharacter(
  34325. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34326. {
  34327. front: {
  34328. height: math.unit(9, "feet"),
  34329. name: "Front",
  34330. image: {
  34331. source: "./media/characters/guti/front.svg",
  34332. extra: 4551/4355,
  34333. bottom: 123/4674
  34334. }
  34335. },
  34336. tongue: {
  34337. height: math.unit(1, "feet"),
  34338. name: "Tongue",
  34339. image: {
  34340. source: "./media/characters/guti/tongue.svg"
  34341. }
  34342. },
  34343. paw: {
  34344. height: math.unit(1.18, "feet"),
  34345. name: "Paw",
  34346. image: {
  34347. source: "./media/characters/guti/paw.svg"
  34348. }
  34349. },
  34350. },
  34351. [
  34352. {
  34353. name: "Normal",
  34354. height: math.unit(9, "feet"),
  34355. default: true
  34356. },
  34357. ]
  34358. ))
  34359. characterMakers.push(() => makeCharacter(
  34360. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34361. {
  34362. side: {
  34363. height: math.unit(5, "meters"),
  34364. name: "Side",
  34365. image: {
  34366. source: "./media/characters/vesper/side.svg",
  34367. extra: 1605/1518,
  34368. bottom: 0/1605
  34369. }
  34370. },
  34371. },
  34372. [
  34373. {
  34374. name: "Small",
  34375. height: math.unit(5, "meters")
  34376. },
  34377. {
  34378. name: "Sage",
  34379. height: math.unit(100, "meters"),
  34380. default: true
  34381. },
  34382. {
  34383. name: "Fun Size",
  34384. height: math.unit(600, "meters")
  34385. },
  34386. {
  34387. name: "Goddess",
  34388. height: math.unit(20000, "km")
  34389. },
  34390. {
  34391. name: "Maximum",
  34392. height: math.unit(5, "galaxies")
  34393. },
  34394. ]
  34395. ))
  34396. characterMakers.push(() => makeCharacter(
  34397. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34398. {
  34399. front: {
  34400. height: math.unit(6 + 3/12, "feet"),
  34401. weight: math.unit(190, "lb"),
  34402. name: "Front",
  34403. image: {
  34404. source: "./media/characters/gawain/front.svg",
  34405. extra: 2222/2139,
  34406. bottom: 90/2312
  34407. }
  34408. },
  34409. back: {
  34410. height: math.unit(6 + 3/12, "feet"),
  34411. weight: math.unit(190, "lb"),
  34412. name: "Back",
  34413. image: {
  34414. source: "./media/characters/gawain/back.svg",
  34415. extra: 2199/2111,
  34416. bottom: 73/2272
  34417. }
  34418. },
  34419. },
  34420. [
  34421. {
  34422. name: "Normal",
  34423. height: math.unit(6 + 3/12, "feet"),
  34424. default: true
  34425. },
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34430. {
  34431. side: {
  34432. height: math.unit(3.5, "meters"),
  34433. weight: math.unit(16000, "lb"),
  34434. name: "Side",
  34435. image: {
  34436. source: "./media/characters/dascalti/side.svg",
  34437. extra: 392/273,
  34438. bottom: 47/439
  34439. }
  34440. },
  34441. breath: {
  34442. height: math.unit(7.4, "feet"),
  34443. name: "Breath",
  34444. image: {
  34445. source: "./media/characters/dascalti/breath.svg"
  34446. }
  34447. },
  34448. fed: {
  34449. height: math.unit(3.6, "meters"),
  34450. weight: math.unit(16000, "lb"),
  34451. name: "Fed",
  34452. image: {
  34453. source: "./media/characters/dascalti/fed.svg",
  34454. extra: 1419/820,
  34455. bottom: 95/1514
  34456. }
  34457. },
  34458. },
  34459. [
  34460. {
  34461. name: "Normal",
  34462. height: math.unit(3.5, "meters"),
  34463. default: true
  34464. },
  34465. ]
  34466. ))
  34467. characterMakers.push(() => makeCharacter(
  34468. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34469. {
  34470. front: {
  34471. height: math.unit(3 + 5/12, "feet"),
  34472. name: "Front",
  34473. image: {
  34474. source: "./media/characters/mauve/front.svg",
  34475. extra: 1126/1033,
  34476. bottom: 65/1191
  34477. }
  34478. },
  34479. side: {
  34480. height: math.unit(3 + 5/12, "feet"),
  34481. name: "Side",
  34482. image: {
  34483. source: "./media/characters/mauve/side.svg",
  34484. extra: 1089/1001,
  34485. bottom: 29/1118
  34486. }
  34487. },
  34488. back: {
  34489. height: math.unit(3 + 5/12, "feet"),
  34490. name: "Back",
  34491. image: {
  34492. source: "./media/characters/mauve/back.svg",
  34493. extra: 1173/1053,
  34494. bottom: 109/1282
  34495. }
  34496. },
  34497. },
  34498. [
  34499. {
  34500. name: "Normal",
  34501. height: math.unit(3 + 5/12, "feet"),
  34502. default: true
  34503. },
  34504. ]
  34505. ))
  34506. characterMakers.push(() => makeCharacter(
  34507. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34508. {
  34509. front: {
  34510. height: math.unit(6 + 3/12, "feet"),
  34511. weight: math.unit(430, "lb"),
  34512. name: "Front",
  34513. image: {
  34514. source: "./media/characters/carlos/front.svg",
  34515. extra: 1964/1913,
  34516. bottom: 70/2034
  34517. }
  34518. },
  34519. },
  34520. [
  34521. {
  34522. name: "Normal",
  34523. height: math.unit(6 + 3/12, "feet"),
  34524. default: true
  34525. },
  34526. ]
  34527. ))
  34528. characterMakers.push(() => makeCharacter(
  34529. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34530. {
  34531. back: {
  34532. height: math.unit(5 + 10/12, "feet"),
  34533. weight: math.unit(200, "lb"),
  34534. name: "Back",
  34535. image: {
  34536. source: "./media/characters/jax/back.svg",
  34537. extra: 764/739,
  34538. bottom: 25/789
  34539. }
  34540. },
  34541. },
  34542. [
  34543. {
  34544. name: "Normal",
  34545. height: math.unit(5 + 10/12, "feet"),
  34546. default: true
  34547. },
  34548. ]
  34549. ))
  34550. characterMakers.push(() => makeCharacter(
  34551. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34552. {
  34553. front: {
  34554. height: math.unit(8, "feet"),
  34555. weight: math.unit(250, "lb"),
  34556. name: "Front",
  34557. image: {
  34558. source: "./media/characters/eikthynir/front.svg",
  34559. extra: 1332/1166,
  34560. bottom: 82/1414
  34561. }
  34562. },
  34563. back: {
  34564. height: math.unit(8, "feet"),
  34565. weight: math.unit(250, "lb"),
  34566. name: "Back",
  34567. image: {
  34568. source: "./media/characters/eikthynir/back.svg",
  34569. extra: 1342/1190,
  34570. bottom: 19/1361
  34571. }
  34572. },
  34573. dick: {
  34574. height: math.unit(2.35, "feet"),
  34575. name: "Dick",
  34576. image: {
  34577. source: "./media/characters/eikthynir/dick.svg"
  34578. }
  34579. },
  34580. },
  34581. [
  34582. {
  34583. name: "Normal",
  34584. height: math.unit(8, "feet"),
  34585. default: true
  34586. },
  34587. ]
  34588. ))
  34589. characterMakers.push(() => makeCharacter(
  34590. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34591. {
  34592. front: {
  34593. height: math.unit(99, "meters"),
  34594. weight: math.unit(13000, "tons"),
  34595. name: "Front",
  34596. image: {
  34597. source: "./media/characters/zlmos/front.svg",
  34598. extra: 2202/1992,
  34599. bottom: 315/2517
  34600. }
  34601. },
  34602. },
  34603. [
  34604. {
  34605. name: "Macro",
  34606. height: math.unit(99, "meters"),
  34607. default: true
  34608. },
  34609. ]
  34610. ))
  34611. characterMakers.push(() => makeCharacter(
  34612. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34613. {
  34614. front: {
  34615. height: math.unit(6 + 5/12, "feet"),
  34616. name: "Front",
  34617. image: {
  34618. source: "./media/characters/purri/front.svg",
  34619. extra: 1698/1610,
  34620. bottom: 32/1730
  34621. }
  34622. },
  34623. frontAlt: {
  34624. height: math.unit(6 + 5/12, "feet"),
  34625. name: "Front (Alt)",
  34626. image: {
  34627. source: "./media/characters/purri/front-alt.svg",
  34628. extra: 450/420,
  34629. bottom: 26/476
  34630. }
  34631. },
  34632. boots: {
  34633. height: math.unit(5.5, "feet"),
  34634. name: "Boots",
  34635. image: {
  34636. source: "./media/characters/purri/boots.svg",
  34637. extra: 905/853,
  34638. bottom: 18/923
  34639. },
  34640. extraAttributes: {
  34641. "shoeSize": {
  34642. name: "Shoe Size",
  34643. power: 1,
  34644. type: "length",
  34645. base: math.unit(12, "ShoeSizeMensUS")
  34646. },
  34647. "platformHeight": {
  34648. name: "Platform Height",
  34649. power: 1,
  34650. type: "length",
  34651. base: math.unit(2, "inches")
  34652. },
  34653. }
  34654. },
  34655. lying: {
  34656. height: math.unit(2, "feet"),
  34657. name: "Lying",
  34658. image: {
  34659. source: "./media/characters/purri/lying.svg",
  34660. extra: 940/843,
  34661. bottom: 146/1086
  34662. }
  34663. },
  34664. devious: {
  34665. height: math.unit(1.77, "feet"),
  34666. name: "Devious",
  34667. image: {
  34668. source: "./media/characters/purri/devious.svg",
  34669. extra: 1440/1155,
  34670. bottom: 147/1587
  34671. }
  34672. },
  34673. bean: {
  34674. height: math.unit(1.94, "feet"),
  34675. name: "Bean",
  34676. image: {
  34677. source: "./media/characters/purri/bean.svg"
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Micro",
  34684. height: math.unit(1, "mm")
  34685. },
  34686. {
  34687. name: "Normal",
  34688. height: math.unit(6 + 5/12, "feet"),
  34689. default: true
  34690. },
  34691. {
  34692. name: "Macro :3c",
  34693. height: math.unit(2, "miles")
  34694. },
  34695. ]
  34696. ))
  34697. characterMakers.push(() => makeCharacter(
  34698. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34699. {
  34700. front: {
  34701. height: math.unit(6 + 2/12, "feet"),
  34702. weight: math.unit(250, "lb"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/moonlight/front.svg",
  34706. extra: 1044/908,
  34707. bottom: 56/1100
  34708. }
  34709. },
  34710. feral: {
  34711. height: math.unit(3 + 1/12, "feet"),
  34712. weight: math.unit(50, "kg"),
  34713. name: "Feral",
  34714. image: {
  34715. source: "./media/characters/moonlight/feral.svg",
  34716. extra: 3705/2791,
  34717. bottom: 145/3850
  34718. }
  34719. },
  34720. paw: {
  34721. height: math.unit(1, "feet"),
  34722. name: "Paw",
  34723. image: {
  34724. source: "./media/characters/moonlight/paw.svg"
  34725. }
  34726. },
  34727. paws: {
  34728. height: math.unit(0.98, "feet"),
  34729. name: "Paws",
  34730. image: {
  34731. source: "./media/characters/moonlight/paws.svg",
  34732. extra: 939/939,
  34733. bottom: 50/989
  34734. }
  34735. },
  34736. mouth: {
  34737. height: math.unit(0.48, "feet"),
  34738. name: "Mouth",
  34739. image: {
  34740. source: "./media/characters/moonlight/mouth.svg"
  34741. }
  34742. },
  34743. dick: {
  34744. height: math.unit(1.46, "feet"),
  34745. name: "Dick",
  34746. image: {
  34747. source: "./media/characters/moonlight/dick.svg"
  34748. }
  34749. },
  34750. },
  34751. [
  34752. {
  34753. name: "Normal",
  34754. height: math.unit(6 + 2/12, "feet"),
  34755. default: true
  34756. },
  34757. {
  34758. name: "Macro",
  34759. height: math.unit(300, "feet")
  34760. },
  34761. {
  34762. name: "Macro+",
  34763. height: math.unit(1, "mile")
  34764. },
  34765. {
  34766. name: "Mt. Moon",
  34767. height: math.unit(5, "miles")
  34768. },
  34769. {
  34770. name: "Megamacro",
  34771. height: math.unit(15, "miles")
  34772. },
  34773. ]
  34774. ))
  34775. characterMakers.push(() => makeCharacter(
  34776. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34777. {
  34778. back: {
  34779. height: math.unit(6, "feet"),
  34780. weight: math.unit(150, "lb"),
  34781. name: "Back",
  34782. image: {
  34783. source: "./media/characters/sylen/back.svg",
  34784. extra: 1335/1273,
  34785. bottom: 107/1442
  34786. }
  34787. },
  34788. },
  34789. [
  34790. {
  34791. name: "Normal",
  34792. height: math.unit(5 + 5/12, "feet")
  34793. },
  34794. {
  34795. name: "Megamacro",
  34796. height: math.unit(3, "miles"),
  34797. default: true
  34798. },
  34799. ]
  34800. ))
  34801. characterMakers.push(() => makeCharacter(
  34802. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34803. {
  34804. front: {
  34805. height: math.unit(6, "feet"),
  34806. weight: math.unit(190, "lb"),
  34807. name: "Front",
  34808. image: {
  34809. source: "./media/characters/huttser/front.svg",
  34810. extra: 1152/1058,
  34811. bottom: 23/1175
  34812. }
  34813. },
  34814. side: {
  34815. height: math.unit(6, "feet"),
  34816. weight: math.unit(190, "lb"),
  34817. name: "Side",
  34818. image: {
  34819. source: "./media/characters/huttser/side.svg",
  34820. extra: 1174/1065,
  34821. bottom: 18/1192
  34822. }
  34823. },
  34824. back: {
  34825. height: math.unit(6, "feet"),
  34826. weight: math.unit(190, "lb"),
  34827. name: "Back",
  34828. image: {
  34829. source: "./media/characters/huttser/back.svg",
  34830. extra: 1158/1056,
  34831. bottom: 12/1170
  34832. }
  34833. },
  34834. },
  34835. [
  34836. ]
  34837. ))
  34838. characterMakers.push(() => makeCharacter(
  34839. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34840. {
  34841. side: {
  34842. height: math.unit(12 + 9/12, "feet"),
  34843. weight: math.unit(15000, "lb"),
  34844. name: "Side",
  34845. image: {
  34846. source: "./media/characters/faan/side.svg",
  34847. extra: 2747/2697,
  34848. bottom: 0/2747
  34849. }
  34850. },
  34851. front: {
  34852. height: math.unit(12 + 9/12, "feet"),
  34853. weight: math.unit(15000, "lb"),
  34854. name: "Front",
  34855. image: {
  34856. source: "./media/characters/faan/front.svg",
  34857. extra: 607/571,
  34858. bottom: 24/631
  34859. }
  34860. },
  34861. head: {
  34862. height: math.unit(2.85, "feet"),
  34863. name: "Head",
  34864. image: {
  34865. source: "./media/characters/faan/head.svg"
  34866. }
  34867. },
  34868. headAlt: {
  34869. height: math.unit(3.13, "feet"),
  34870. name: "Head-alt",
  34871. image: {
  34872. source: "./media/characters/faan/head-alt.svg"
  34873. }
  34874. },
  34875. },
  34876. [
  34877. {
  34878. name: "Normal",
  34879. height: math.unit(12 + 9/12, "feet"),
  34880. default: true
  34881. },
  34882. ]
  34883. ))
  34884. characterMakers.push(() => makeCharacter(
  34885. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34886. {
  34887. front: {
  34888. height: math.unit(6, "feet"),
  34889. weight: math.unit(300, "lb"),
  34890. name: "Front",
  34891. image: {
  34892. source: "./media/characters/tanio/front.svg",
  34893. extra: 711/673,
  34894. bottom: 25/736
  34895. }
  34896. },
  34897. },
  34898. [
  34899. {
  34900. name: "Normal",
  34901. height: math.unit(6, "feet"),
  34902. default: true
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34908. {
  34909. front: {
  34910. height: math.unit(3, "inches"),
  34911. name: "Front",
  34912. image: {
  34913. source: "./media/characters/noboru/front.svg",
  34914. extra: 1039/932,
  34915. bottom: 18/1057
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Micro",
  34922. height: math.unit(3, "inches"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34929. {
  34930. front: {
  34931. height: math.unit(1.85, "meters"),
  34932. weight: math.unit(80, "kg"),
  34933. name: "Front",
  34934. image: {
  34935. source: "./media/characters/daniel-barrett/front.svg",
  34936. extra: 355/337,
  34937. bottom: 9/364
  34938. }
  34939. },
  34940. },
  34941. [
  34942. {
  34943. name: "Pico",
  34944. height: math.unit(0.0433, "mm")
  34945. },
  34946. {
  34947. name: "Nano",
  34948. height: math.unit(1.5, "mm")
  34949. },
  34950. {
  34951. name: "Micro",
  34952. height: math.unit(5.3, "cm"),
  34953. default: true
  34954. },
  34955. {
  34956. name: "Normal",
  34957. height: math.unit(1.85, "meters")
  34958. },
  34959. {
  34960. name: "Macro",
  34961. height: math.unit(64.7, "meters")
  34962. },
  34963. {
  34964. name: "Megamacro",
  34965. height: math.unit(2.26, "km")
  34966. },
  34967. {
  34968. name: "Gigamacro",
  34969. height: math.unit(79, "km")
  34970. },
  34971. {
  34972. name: "Teramacro",
  34973. height: math.unit(2765, "km")
  34974. },
  34975. {
  34976. name: "Petamacro",
  34977. height: math.unit(96678, "km")
  34978. },
  34979. ]
  34980. ))
  34981. characterMakers.push(() => makeCharacter(
  34982. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34983. {
  34984. front: {
  34985. height: math.unit(30, "meters"),
  34986. weight: math.unit(400, "tons"),
  34987. name: "Front",
  34988. image: {
  34989. source: "./media/characters/zeel/front.svg",
  34990. extra: 2599/2599,
  34991. bottom: 226/2825
  34992. }
  34993. },
  34994. },
  34995. [
  34996. {
  34997. name: "Macro",
  34998. height: math.unit(30, "meters"),
  34999. default: true
  35000. },
  35001. ]
  35002. ))
  35003. characterMakers.push(() => makeCharacter(
  35004. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35005. {
  35006. front: {
  35007. height: math.unit(6 + 7/12, "feet"),
  35008. weight: math.unit(210, "lb"),
  35009. name: "Front",
  35010. image: {
  35011. source: "./media/characters/tarn/front.svg",
  35012. extra: 3517/3220,
  35013. bottom: 91/3608
  35014. }
  35015. },
  35016. back: {
  35017. height: math.unit(6 + 7/12, "feet"),
  35018. weight: math.unit(210, "lb"),
  35019. name: "Back",
  35020. image: {
  35021. source: "./media/characters/tarn/back.svg",
  35022. extra: 3566/3241,
  35023. bottom: 34/3600
  35024. }
  35025. },
  35026. dick: {
  35027. height: math.unit(1.65, "feet"),
  35028. name: "Dick",
  35029. image: {
  35030. source: "./media/characters/tarn/dick.svg"
  35031. }
  35032. },
  35033. paw: {
  35034. height: math.unit(1.80, "feet"),
  35035. name: "Paw",
  35036. image: {
  35037. source: "./media/characters/tarn/paw.svg"
  35038. }
  35039. },
  35040. tongue: {
  35041. height: math.unit(0.97, "feet"),
  35042. name: "Tongue",
  35043. image: {
  35044. source: "./media/characters/tarn/tongue.svg"
  35045. }
  35046. },
  35047. },
  35048. [
  35049. {
  35050. name: "Micro",
  35051. height: math.unit(4, "inches")
  35052. },
  35053. {
  35054. name: "Normal",
  35055. height: math.unit(6 + 7/12, "feet"),
  35056. default: true
  35057. },
  35058. {
  35059. name: "Macro",
  35060. height: math.unit(300, "feet")
  35061. },
  35062. ]
  35063. ))
  35064. characterMakers.push(() => makeCharacter(
  35065. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35066. {
  35067. front: {
  35068. height: math.unit(5 + 7/12, "feet"),
  35069. weight: math.unit(80, "kg"),
  35070. name: "Front",
  35071. image: {
  35072. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35073. extra: 3023/2865,
  35074. bottom: 33/3056
  35075. }
  35076. },
  35077. back: {
  35078. height: math.unit(5 + 7/12, "feet"),
  35079. weight: math.unit(80, "kg"),
  35080. name: "Back",
  35081. image: {
  35082. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35083. extra: 3020/2886,
  35084. bottom: 30/3050
  35085. }
  35086. },
  35087. dick: {
  35088. height: math.unit(0.98, "feet"),
  35089. name: "Dick",
  35090. image: {
  35091. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35092. }
  35093. },
  35094. anatomy: {
  35095. height: math.unit(2.86, "feet"),
  35096. name: "Anatomy",
  35097. image: {
  35098. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35099. }
  35100. },
  35101. },
  35102. [
  35103. {
  35104. name: "Really Small",
  35105. height: math.unit(2, "inches")
  35106. },
  35107. {
  35108. name: "Micro",
  35109. height: math.unit(5.583, "inches")
  35110. },
  35111. {
  35112. name: "Normal",
  35113. height: math.unit(5 + 7/12, "feet"),
  35114. default: true
  35115. },
  35116. {
  35117. name: "Macro",
  35118. height: math.unit(67, "feet")
  35119. },
  35120. {
  35121. name: "Megamacro",
  35122. height: math.unit(134, "feet")
  35123. },
  35124. ]
  35125. ))
  35126. characterMakers.push(() => makeCharacter(
  35127. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35128. {
  35129. front: {
  35130. height: math.unit(9, "feet"),
  35131. weight: math.unit(120, "lb"),
  35132. name: "Front",
  35133. image: {
  35134. source: "./media/characters/sally/front.svg",
  35135. extra: 1506/1349,
  35136. bottom: 66/1572
  35137. }
  35138. },
  35139. },
  35140. [
  35141. {
  35142. name: "Normal",
  35143. height: math.unit(9, "feet"),
  35144. default: true
  35145. },
  35146. ]
  35147. ))
  35148. characterMakers.push(() => makeCharacter(
  35149. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35150. {
  35151. front: {
  35152. height: math.unit(8, "feet"),
  35153. weight: math.unit(900, "lb"),
  35154. name: "Front",
  35155. image: {
  35156. source: "./media/characters/owen/front.svg",
  35157. extra: 1761/1657,
  35158. bottom: 74/1835
  35159. }
  35160. },
  35161. side: {
  35162. height: math.unit(8, "feet"),
  35163. weight: math.unit(900, "lb"),
  35164. name: "Side",
  35165. image: {
  35166. source: "./media/characters/owen/side.svg",
  35167. extra: 1797/1734,
  35168. bottom: 30/1827
  35169. }
  35170. },
  35171. back: {
  35172. height: math.unit(8, "feet"),
  35173. weight: math.unit(900, "lb"),
  35174. name: "Back",
  35175. image: {
  35176. source: "./media/characters/owen/back.svg",
  35177. extra: 1796/1706,
  35178. bottom: 59/1855
  35179. }
  35180. },
  35181. maw: {
  35182. height: math.unit(1.76, "feet"),
  35183. name: "Maw",
  35184. image: {
  35185. source: "./media/characters/owen/maw.svg"
  35186. }
  35187. },
  35188. },
  35189. [
  35190. {
  35191. name: "Normal",
  35192. height: math.unit(8, "feet"),
  35193. default: true
  35194. },
  35195. ]
  35196. ))
  35197. characterMakers.push(() => makeCharacter(
  35198. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35199. {
  35200. front: {
  35201. height: math.unit(4, "feet"),
  35202. weight: math.unit(400, "lb"),
  35203. name: "Front",
  35204. image: {
  35205. source: "./media/characters/ryth/front.svg",
  35206. extra: 1920/1748,
  35207. bottom: 42/1962
  35208. }
  35209. },
  35210. back: {
  35211. height: math.unit(4, "feet"),
  35212. weight: math.unit(400, "lb"),
  35213. name: "Back",
  35214. image: {
  35215. source: "./media/characters/ryth/back.svg",
  35216. extra: 1897/1690,
  35217. bottom: 89/1986
  35218. }
  35219. },
  35220. mouth: {
  35221. height: math.unit(1.39, "feet"),
  35222. name: "Mouth",
  35223. image: {
  35224. source: "./media/characters/ryth/mouth.svg"
  35225. }
  35226. },
  35227. tailmaw: {
  35228. height: math.unit(1.23, "feet"),
  35229. name: "Tailmaw",
  35230. image: {
  35231. source: "./media/characters/ryth/tailmaw.svg"
  35232. }
  35233. },
  35234. goia: {
  35235. height: math.unit(4, "meters"),
  35236. weight: math.unit(10800, "lb"),
  35237. name: "Goia",
  35238. image: {
  35239. source: "./media/characters/ryth/goia.svg",
  35240. extra: 745/640,
  35241. bottom: 107/852
  35242. }
  35243. },
  35244. goiaFront: {
  35245. height: math.unit(4, "meters"),
  35246. weight: math.unit(10800, "lb"),
  35247. name: "Goia (Front)",
  35248. image: {
  35249. source: "./media/characters/ryth/goia-front.svg",
  35250. extra: 750/586,
  35251. bottom: 114/864
  35252. }
  35253. },
  35254. goiaMaw: {
  35255. height: math.unit(5.55, "feet"),
  35256. name: "Goia Maw",
  35257. image: {
  35258. source: "./media/characters/ryth/goia-maw.svg"
  35259. }
  35260. },
  35261. goiaForepaw: {
  35262. height: math.unit(3.5, "feet"),
  35263. name: "Goia Forepaw",
  35264. image: {
  35265. source: "./media/characters/ryth/goia-forepaw.svg"
  35266. }
  35267. },
  35268. goiaHindpaw: {
  35269. height: math.unit(5.55, "feet"),
  35270. name: "Goia Hindpaw",
  35271. image: {
  35272. source: "./media/characters/ryth/goia-hindpaw.svg"
  35273. }
  35274. },
  35275. },
  35276. [
  35277. {
  35278. name: "Normal",
  35279. height: math.unit(4, "feet"),
  35280. default: true
  35281. },
  35282. ]
  35283. ))
  35284. characterMakers.push(() => makeCharacter(
  35285. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35286. {
  35287. front: {
  35288. height: math.unit(7, "feet"),
  35289. weight: math.unit(180, "lb"),
  35290. name: "Front",
  35291. image: {
  35292. source: "./media/characters/necrolance/front.svg",
  35293. extra: 1062/947,
  35294. bottom: 41/1103
  35295. }
  35296. },
  35297. back: {
  35298. height: math.unit(7, "feet"),
  35299. weight: math.unit(180, "lb"),
  35300. name: "Back",
  35301. image: {
  35302. source: "./media/characters/necrolance/back.svg",
  35303. extra: 1045/984,
  35304. bottom: 14/1059
  35305. }
  35306. },
  35307. wing: {
  35308. height: math.unit(2.67, "feet"),
  35309. name: "Wing",
  35310. image: {
  35311. source: "./media/characters/necrolance/wing.svg"
  35312. }
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "Normal",
  35318. height: math.unit(7, "feet"),
  35319. default: true
  35320. },
  35321. ]
  35322. ))
  35323. characterMakers.push(() => makeCharacter(
  35324. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35325. {
  35326. front: {
  35327. height: math.unit(76, "meters"),
  35328. weight: math.unit(30000, "tons"),
  35329. name: "Front",
  35330. image: {
  35331. source: "./media/characters/tyler/front.svg",
  35332. extra: 1640/1640,
  35333. bottom: 114/1754
  35334. }
  35335. },
  35336. },
  35337. [
  35338. {
  35339. name: "Macro",
  35340. height: math.unit(76, "meters"),
  35341. default: true
  35342. },
  35343. ]
  35344. ))
  35345. characterMakers.push(() => makeCharacter(
  35346. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35347. {
  35348. front: {
  35349. height: math.unit(4 + 11/12, "feet"),
  35350. weight: math.unit(132, "lb"),
  35351. name: "Front",
  35352. image: {
  35353. source: "./media/characters/icey/front.svg",
  35354. extra: 2750/2550,
  35355. bottom: 33/2783
  35356. }
  35357. },
  35358. back: {
  35359. height: math.unit(4 + 11/12, "feet"),
  35360. weight: math.unit(132, "lb"),
  35361. name: "Back",
  35362. image: {
  35363. source: "./media/characters/icey/back.svg",
  35364. extra: 2624/2481,
  35365. bottom: 35/2659
  35366. }
  35367. },
  35368. },
  35369. [
  35370. {
  35371. name: "Normal",
  35372. height: math.unit(4 + 11/12, "feet"),
  35373. default: true
  35374. },
  35375. ]
  35376. ))
  35377. characterMakers.push(() => makeCharacter(
  35378. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35379. {
  35380. front: {
  35381. height: math.unit(100, "feet"),
  35382. weight: math.unit(0, "lb"),
  35383. name: "Front",
  35384. image: {
  35385. source: "./media/characters/smile/front.svg",
  35386. extra: 2983/2912,
  35387. bottom: 162/3145
  35388. }
  35389. },
  35390. back: {
  35391. height: math.unit(100, "feet"),
  35392. weight: math.unit(0, "lb"),
  35393. name: "Back",
  35394. image: {
  35395. source: "./media/characters/smile/back.svg",
  35396. extra: 3143/3031,
  35397. bottom: 91/3234
  35398. }
  35399. },
  35400. head: {
  35401. height: math.unit(26.3, "feet"),
  35402. weight: math.unit(0, "lb"),
  35403. name: "Head",
  35404. image: {
  35405. source: "./media/characters/smile/head.svg"
  35406. }
  35407. },
  35408. collar: {
  35409. height: math.unit(5.3, "feet"),
  35410. weight: math.unit(0, "lb"),
  35411. name: "Collar",
  35412. image: {
  35413. source: "./media/characters/smile/collar.svg"
  35414. }
  35415. },
  35416. },
  35417. [
  35418. {
  35419. name: "Macro",
  35420. height: math.unit(100, "feet"),
  35421. default: true
  35422. },
  35423. ]
  35424. ))
  35425. characterMakers.push(() => makeCharacter(
  35426. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35427. {
  35428. dragon: {
  35429. height: math.unit(26, "feet"),
  35430. weight: math.unit(36, "tons"),
  35431. name: "Dragon",
  35432. image: {
  35433. source: "./media/characters/arimphae/dragon.svg",
  35434. extra: 1574/983,
  35435. bottom: 357/1931
  35436. }
  35437. },
  35438. drake: {
  35439. height: math.unit(9, "feet"),
  35440. weight: math.unit(1.5, "tons"),
  35441. name: "Drake",
  35442. image: {
  35443. source: "./media/characters/arimphae/drake.svg",
  35444. extra: 1120/925,
  35445. bottom: 435/1555
  35446. }
  35447. },
  35448. },
  35449. [
  35450. {
  35451. name: "Small",
  35452. height: math.unit(26*5/9, "feet")
  35453. },
  35454. {
  35455. name: "Normal",
  35456. height: math.unit(26, "feet"),
  35457. default: true
  35458. },
  35459. ]
  35460. ))
  35461. characterMakers.push(() => makeCharacter(
  35462. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35463. {
  35464. front: {
  35465. height: math.unit(8 + 9/12, "feet"),
  35466. name: "Front",
  35467. image: {
  35468. source: "./media/characters/xander/front.svg",
  35469. extra: 1237/974,
  35470. bottom: 94/1331
  35471. }
  35472. },
  35473. },
  35474. [
  35475. {
  35476. name: "Normal",
  35477. height: math.unit(8 + 9/12, "feet"),
  35478. default: true
  35479. },
  35480. {
  35481. name: "Gaze Grabber",
  35482. height: math.unit(13 + 8/12, "feet")
  35483. },
  35484. {
  35485. name: "Jaw Dropper",
  35486. height: math.unit(27, "feet")
  35487. },
  35488. {
  35489. name: "Show Stopper",
  35490. height: math.unit(136, "feet")
  35491. },
  35492. {
  35493. name: "Superstar",
  35494. height: math.unit(1.9e6, "miles")
  35495. },
  35496. ]
  35497. ))
  35498. characterMakers.push(() => makeCharacter(
  35499. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35500. {
  35501. side: {
  35502. height: math.unit(2100, "feet"),
  35503. name: "Side",
  35504. image: {
  35505. source: "./media/characters/osiris/side.svg",
  35506. extra: 1105/939,
  35507. bottom: 167/1272
  35508. }
  35509. },
  35510. },
  35511. [
  35512. {
  35513. name: "Macro",
  35514. height: math.unit(2100, "feet"),
  35515. default: true
  35516. },
  35517. ]
  35518. ))
  35519. characterMakers.push(() => makeCharacter(
  35520. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35521. {
  35522. front: {
  35523. height: math.unit(6 + 8/12, "feet"),
  35524. weight: math.unit(225, "lb"),
  35525. name: "Front",
  35526. image: {
  35527. source: "./media/characters/rhys-londe/front.svg",
  35528. extra: 2258/2141,
  35529. bottom: 188/2446
  35530. }
  35531. },
  35532. back: {
  35533. height: math.unit(6 + 8/12, "feet"),
  35534. weight: math.unit(225, "lb"),
  35535. name: "Back",
  35536. image: {
  35537. source: "./media/characters/rhys-londe/back.svg",
  35538. extra: 2237/2137,
  35539. bottom: 63/2300
  35540. }
  35541. },
  35542. frontNsfw: {
  35543. height: math.unit(6 + 8/12, "feet"),
  35544. weight: math.unit(225, "lb"),
  35545. name: "Front (NSFW)",
  35546. image: {
  35547. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35548. extra: 2258/2141,
  35549. bottom: 188/2446
  35550. }
  35551. },
  35552. backNsfw: {
  35553. height: math.unit(6 + 8/12, "feet"),
  35554. weight: math.unit(225, "lb"),
  35555. name: "Back (NSFW)",
  35556. image: {
  35557. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35558. extra: 2237/2137,
  35559. bottom: 63/2300
  35560. }
  35561. },
  35562. dick: {
  35563. height: math.unit(30, "inches"),
  35564. name: "Dick",
  35565. image: {
  35566. source: "./media/characters/rhys-londe/dick.svg"
  35567. }
  35568. },
  35569. maw: {
  35570. height: math.unit(1.6, "feet"),
  35571. name: "Maw",
  35572. image: {
  35573. source: "./media/characters/rhys-londe/maw.svg"
  35574. }
  35575. },
  35576. },
  35577. [
  35578. {
  35579. name: "Normal",
  35580. height: math.unit(6 + 8/12, "feet"),
  35581. default: true
  35582. },
  35583. ]
  35584. ))
  35585. characterMakers.push(() => makeCharacter(
  35586. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35587. {
  35588. front: {
  35589. height: math.unit(3 + 10/12, "feet"),
  35590. weight: math.unit(90, "lb"),
  35591. name: "Front",
  35592. image: {
  35593. source: "./media/characters/taivas-ensim/front.svg",
  35594. extra: 1327/1216,
  35595. bottom: 96/1423
  35596. }
  35597. },
  35598. back: {
  35599. height: math.unit(3 + 10/12, "feet"),
  35600. weight: math.unit(90, "lb"),
  35601. name: "Back",
  35602. image: {
  35603. source: "./media/characters/taivas-ensim/back.svg",
  35604. extra: 1355/1247,
  35605. bottom: 11/1366
  35606. }
  35607. },
  35608. frontNsfw: {
  35609. height: math.unit(3 + 10/12, "feet"),
  35610. weight: math.unit(90, "lb"),
  35611. name: "Front (NSFW)",
  35612. image: {
  35613. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35614. extra: 1327/1216,
  35615. bottom: 96/1423
  35616. }
  35617. },
  35618. backNsfw: {
  35619. height: math.unit(3 + 10/12, "feet"),
  35620. weight: math.unit(90, "lb"),
  35621. name: "Back (NSFW)",
  35622. image: {
  35623. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35624. extra: 1355/1247,
  35625. bottom: 11/1366
  35626. }
  35627. },
  35628. },
  35629. [
  35630. {
  35631. name: "Normal",
  35632. height: math.unit(3 + 10/12, "feet"),
  35633. default: true
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35639. {
  35640. front: {
  35641. height: math.unit(9 + 6/12, "feet"),
  35642. weight: math.unit(940, "lb"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/byliss/front.svg",
  35646. extra: 1327/1290,
  35647. bottom: 82/1409
  35648. }
  35649. },
  35650. back: {
  35651. height: math.unit(9 + 6/12, "feet"),
  35652. weight: math.unit(940, "lb"),
  35653. name: "Back",
  35654. image: {
  35655. source: "./media/characters/byliss/back.svg",
  35656. extra: 1376/1349,
  35657. bottom: 9/1385
  35658. }
  35659. },
  35660. frontNsfw: {
  35661. height: math.unit(9 + 6/12, "feet"),
  35662. weight: math.unit(940, "lb"),
  35663. name: "Front (NSFW)",
  35664. image: {
  35665. source: "./media/characters/byliss/front-nsfw.svg",
  35666. extra: 1327/1290,
  35667. bottom: 82/1409
  35668. }
  35669. },
  35670. backNsfw: {
  35671. height: math.unit(9 + 6/12, "feet"),
  35672. weight: math.unit(940, "lb"),
  35673. name: "Back (NSFW)",
  35674. image: {
  35675. source: "./media/characters/byliss/back-nsfw.svg",
  35676. extra: 1376/1349,
  35677. bottom: 9/1385
  35678. }
  35679. },
  35680. },
  35681. [
  35682. {
  35683. name: "Normal",
  35684. height: math.unit(9 + 6/12, "feet"),
  35685. default: true
  35686. },
  35687. ]
  35688. ))
  35689. characterMakers.push(() => makeCharacter(
  35690. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35691. {
  35692. front: {
  35693. height: math.unit(5 + 2/12, "feet"),
  35694. weight: math.unit(200, "lb"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/noraly/front.svg",
  35698. extra: 4985/4773,
  35699. bottom: 150/5135
  35700. }
  35701. },
  35702. full: {
  35703. height: math.unit(5 + 2/12, "feet"),
  35704. weight: math.unit(164, "lb"),
  35705. name: "Full",
  35706. image: {
  35707. source: "./media/characters/noraly/full.svg",
  35708. extra: 1114/1059,
  35709. bottom: 35/1149
  35710. }
  35711. },
  35712. fuller: {
  35713. height: math.unit(5 + 2/12, "feet"),
  35714. weight: math.unit(230, "lb"),
  35715. name: "Fuller",
  35716. image: {
  35717. source: "./media/characters/noraly/fuller.svg",
  35718. extra: 1114/1059,
  35719. bottom: 35/1149
  35720. }
  35721. },
  35722. fullest: {
  35723. height: math.unit(5 + 2/12, "feet"),
  35724. weight: math.unit(300, "lb"),
  35725. name: "Fullest",
  35726. image: {
  35727. source: "./media/characters/noraly/fullest.svg",
  35728. extra: 1114/1059,
  35729. bottom: 35/1149
  35730. }
  35731. },
  35732. },
  35733. [
  35734. {
  35735. name: "Normal",
  35736. height: math.unit(5 + 2/12, "feet"),
  35737. default: true
  35738. },
  35739. ]
  35740. ))
  35741. characterMakers.push(() => makeCharacter(
  35742. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35743. {
  35744. front: {
  35745. height: math.unit(5 + 2/12, "feet"),
  35746. weight: math.unit(210, "lb"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/pera/front.svg",
  35750. extra: 1560/1531,
  35751. bottom: 165/1725
  35752. }
  35753. },
  35754. back: {
  35755. height: math.unit(5 + 2/12, "feet"),
  35756. weight: math.unit(210, "lb"),
  35757. name: "Back",
  35758. image: {
  35759. source: "./media/characters/pera/back.svg",
  35760. extra: 1523/1493,
  35761. bottom: 152/1675
  35762. }
  35763. },
  35764. dick: {
  35765. height: math.unit(2.4, "feet"),
  35766. name: "Dick",
  35767. image: {
  35768. source: "./media/characters/pera/dick.svg"
  35769. }
  35770. },
  35771. },
  35772. [
  35773. {
  35774. name: "Normal",
  35775. height: math.unit(5 + 2/12, "feet"),
  35776. default: true
  35777. },
  35778. ]
  35779. ))
  35780. characterMakers.push(() => makeCharacter(
  35781. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35782. {
  35783. front: {
  35784. height: math.unit(12, "feet"),
  35785. weight: math.unit(3200, "lb"),
  35786. name: "Front",
  35787. image: {
  35788. source: "./media/characters/julian/front.svg",
  35789. extra: 2962/2701,
  35790. bottom: 184/3146
  35791. }
  35792. },
  35793. maw: {
  35794. height: math.unit(5.35, "feet"),
  35795. name: "Maw",
  35796. image: {
  35797. source: "./media/characters/julian/maw.svg"
  35798. }
  35799. },
  35800. paw: {
  35801. height: math.unit(3.07, "feet"),
  35802. name: "Paw",
  35803. image: {
  35804. source: "./media/characters/julian/paw.svg"
  35805. }
  35806. },
  35807. },
  35808. [
  35809. {
  35810. name: "Default",
  35811. height: math.unit(12, "feet"),
  35812. default: true
  35813. },
  35814. {
  35815. name: "Big",
  35816. height: math.unit(50, "feet")
  35817. },
  35818. {
  35819. name: "Really Big",
  35820. height: math.unit(1, "mile")
  35821. },
  35822. {
  35823. name: "Extremely Big",
  35824. height: math.unit(100, "miles")
  35825. },
  35826. {
  35827. name: "Planet Hugger",
  35828. height: math.unit(200, "megameters")
  35829. },
  35830. {
  35831. name: "Unreasonably Big",
  35832. height: math.unit(1e300, "meters")
  35833. },
  35834. ]
  35835. ))
  35836. characterMakers.push(() => makeCharacter(
  35837. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35838. {
  35839. solgooleo: {
  35840. height: math.unit(4, "meters"),
  35841. weight: math.unit(6000*1.5, "kg"),
  35842. volume: math.unit(6000, "liters"),
  35843. name: "Solgooleo",
  35844. image: {
  35845. source: "./media/characters/pi/solgooleo.svg",
  35846. extra: 388/331,
  35847. bottom: 29/417
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Normal",
  35854. height: math.unit(4, "meters"),
  35855. default: true
  35856. },
  35857. ]
  35858. ))
  35859. characterMakers.push(() => makeCharacter(
  35860. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35861. {
  35862. front: {
  35863. height: math.unit(8, "feet"),
  35864. weight: math.unit(4, "tons"),
  35865. name: "Front",
  35866. image: {
  35867. source: "./media/characters/shaun/front.svg",
  35868. extra: 503/495,
  35869. bottom: 20/523
  35870. }
  35871. },
  35872. back: {
  35873. height: math.unit(8, "feet"),
  35874. weight: math.unit(4, "tons"),
  35875. name: "Back",
  35876. image: {
  35877. source: "./media/characters/shaun/back.svg",
  35878. extra: 487/480,
  35879. bottom: 20/507
  35880. }
  35881. },
  35882. },
  35883. [
  35884. {
  35885. name: "Lorg",
  35886. height: math.unit(8, "feet"),
  35887. default: true
  35888. },
  35889. ]
  35890. ))
  35891. characterMakers.push(() => makeCharacter(
  35892. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35893. {
  35894. frontAnthro: {
  35895. height: math.unit(7, "feet"),
  35896. name: "Front",
  35897. image: {
  35898. source: "./media/characters/sini/front-anthro.svg",
  35899. extra: 726/678,
  35900. bottom: 35/761
  35901. },
  35902. form: "anthro",
  35903. default: true
  35904. },
  35905. backAnthro: {
  35906. height: math.unit(7, "feet"),
  35907. name: "Back",
  35908. image: {
  35909. source: "./media/characters/sini/back-anthro.svg",
  35910. extra: 743/701,
  35911. bottom: 12/755
  35912. },
  35913. form: "anthro",
  35914. },
  35915. frontAnthroNsfw: {
  35916. height: math.unit(7, "feet"),
  35917. name: "Front (NSFW)",
  35918. image: {
  35919. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35920. extra: 726/678,
  35921. bottom: 35/761
  35922. },
  35923. form: "anthro"
  35924. },
  35925. backAnthroNsfw: {
  35926. height: math.unit(7, "feet"),
  35927. name: "Back (NSFW)",
  35928. image: {
  35929. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35930. extra: 743/701,
  35931. bottom: 12/755
  35932. },
  35933. form: "anthro",
  35934. },
  35935. mawAnthro: {
  35936. height: math.unit(2.14, "feet"),
  35937. name: "Maw",
  35938. image: {
  35939. source: "./media/characters/sini/maw-anthro.svg"
  35940. },
  35941. form: "anthro"
  35942. },
  35943. dick: {
  35944. height: math.unit(1.45, "feet"),
  35945. name: "Dick",
  35946. image: {
  35947. source: "./media/characters/sini/dick-anthro.svg"
  35948. },
  35949. form: "anthro"
  35950. },
  35951. feral: {
  35952. height: math.unit(16, "feet"),
  35953. name: "Feral",
  35954. image: {
  35955. source: "./media/characters/sini/feral.svg",
  35956. extra: 814/605,
  35957. bottom: 11/825
  35958. },
  35959. form: "feral",
  35960. default: true
  35961. },
  35962. feralNsfw: {
  35963. height: math.unit(16, "feet"),
  35964. name: "Feral (NSFW)",
  35965. image: {
  35966. source: "./media/characters/sini/feral-nsfw.svg",
  35967. extra: 814/605,
  35968. bottom: 11/825
  35969. },
  35970. form: "feral"
  35971. },
  35972. mawFeral: {
  35973. height: math.unit(5.66, "feet"),
  35974. name: "Maw",
  35975. image: {
  35976. source: "./media/characters/sini/maw-feral.svg"
  35977. },
  35978. form: "feral",
  35979. },
  35980. pawFeral: {
  35981. height: math.unit(5.17, "feet"),
  35982. name: "Paw",
  35983. image: {
  35984. source: "./media/characters/sini/paw-feral.svg"
  35985. },
  35986. form: "feral",
  35987. },
  35988. rumpFeral: {
  35989. height: math.unit(13.11, "feet"),
  35990. name: "Rump",
  35991. image: {
  35992. source: "./media/characters/sini/rump-feral.svg"
  35993. },
  35994. form: "feral",
  35995. },
  35996. dickFeral: {
  35997. height: math.unit(1, "feet"),
  35998. name: "Dick",
  35999. image: {
  36000. source: "./media/characters/sini/dick-feral.svg"
  36001. },
  36002. form: "feral",
  36003. },
  36004. eyeFeral: {
  36005. height: math.unit(1.23, "feet"),
  36006. name: "Eye",
  36007. image: {
  36008. source: "./media/characters/sini/eye-feral.svg"
  36009. },
  36010. form: "feral",
  36011. },
  36012. },
  36013. [
  36014. {
  36015. name: "Normal",
  36016. height: math.unit(7, "feet"),
  36017. default: true,
  36018. form: "anthro"
  36019. },
  36020. {
  36021. name: "Normal",
  36022. height: math.unit(16, "feet"),
  36023. default: true,
  36024. form: "feral"
  36025. },
  36026. ],
  36027. {
  36028. "anthro": {
  36029. name: "Anthro",
  36030. default: true
  36031. },
  36032. "feral": {
  36033. name: "Feral",
  36034. }
  36035. }
  36036. ))
  36037. characterMakers.push(() => makeCharacter(
  36038. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36039. {
  36040. side: {
  36041. height: math.unit(47.2, "meters"),
  36042. weight: math.unit(10000, "tons"),
  36043. name: "Side",
  36044. image: {
  36045. source: "./media/characters/raylldo/side.svg",
  36046. extra: 2363/642,
  36047. bottom: 221/2584
  36048. }
  36049. },
  36050. top: {
  36051. height: math.unit(240, "meters"),
  36052. weight: math.unit(10000, "tons"),
  36053. name: "Top",
  36054. image: {
  36055. source: "./media/characters/raylldo/top.svg"
  36056. }
  36057. },
  36058. bottom: {
  36059. height: math.unit(240, "meters"),
  36060. weight: math.unit(10000, "tons"),
  36061. name: "Bottom",
  36062. image: {
  36063. source: "./media/characters/raylldo/bottom.svg"
  36064. }
  36065. },
  36066. head: {
  36067. height: math.unit(38.6, "meters"),
  36068. name: "Head",
  36069. image: {
  36070. source: "./media/characters/raylldo/head.svg",
  36071. extra: 1335/1112,
  36072. bottom: 0/1335
  36073. }
  36074. },
  36075. maw: {
  36076. height: math.unit(16.37, "meters"),
  36077. name: "Maw",
  36078. image: {
  36079. source: "./media/characters/raylldo/maw.svg",
  36080. extra: 883/660,
  36081. bottom: 0/883
  36082. },
  36083. extraAttributes: {
  36084. preyCapacity: {
  36085. name: "Capacity",
  36086. power: 3,
  36087. type: "volume",
  36088. base: math.unit(1000, "people")
  36089. },
  36090. tongueSize: {
  36091. name: "Tongue Size",
  36092. power: 2,
  36093. type: "area",
  36094. base: math.unit(21, "m^2")
  36095. }
  36096. }
  36097. },
  36098. forepaw: {
  36099. height: math.unit(18, "meters"),
  36100. name: "Forepaw",
  36101. image: {
  36102. source: "./media/characters/raylldo/forepaw.svg"
  36103. }
  36104. },
  36105. hindpaw: {
  36106. height: math.unit(23, "meters"),
  36107. name: "Hindpaw",
  36108. image: {
  36109. source: "./media/characters/raylldo/hindpaw.svg"
  36110. }
  36111. },
  36112. genitals: {
  36113. height: math.unit(42, "meters"),
  36114. name: "Genitals",
  36115. image: {
  36116. source: "./media/characters/raylldo/genitals.svg"
  36117. }
  36118. },
  36119. },
  36120. [
  36121. {
  36122. name: "Normal",
  36123. height: math.unit(47.2, "meters"),
  36124. default: true
  36125. },
  36126. ]
  36127. ))
  36128. characterMakers.push(() => makeCharacter(
  36129. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36130. {
  36131. anthroFront: {
  36132. height: math.unit(9, "feet"),
  36133. weight: math.unit(600, "lb"),
  36134. name: "Anthro (Front)",
  36135. image: {
  36136. source: "./media/characters/glint/anthro-front.svg",
  36137. extra: 1097/1018,
  36138. bottom: 28/1125
  36139. }
  36140. },
  36141. anthroBack: {
  36142. height: math.unit(9, "feet"),
  36143. weight: math.unit(600, "lb"),
  36144. name: "Anthro (Back)",
  36145. image: {
  36146. source: "./media/characters/glint/anthro-back.svg",
  36147. extra: 1154/997,
  36148. bottom: 36/1190
  36149. }
  36150. },
  36151. feral: {
  36152. height: math.unit(11, "feet"),
  36153. weight: math.unit(50000, "lb"),
  36154. name: "Feral",
  36155. image: {
  36156. source: "./media/characters/glint/feral.svg",
  36157. extra: 3035/1585,
  36158. bottom: 1169/4204
  36159. }
  36160. },
  36161. dickAnthro: {
  36162. height: math.unit(0.7, "meters"),
  36163. name: "Dick (Anthro)",
  36164. image: {
  36165. source: "./media/characters/glint/dick-anthro.svg"
  36166. }
  36167. },
  36168. dickFeral: {
  36169. height: math.unit(2.65, "meters"),
  36170. name: "Dick (Feral)",
  36171. image: {
  36172. source: "./media/characters/glint/dick-feral.svg"
  36173. }
  36174. },
  36175. slitHidden: {
  36176. height: math.unit(5.85, "meters"),
  36177. name: "Slit (Hidden)",
  36178. image: {
  36179. source: "./media/characters/glint/slit-hidden.svg"
  36180. }
  36181. },
  36182. slitErect: {
  36183. height: math.unit(5.85, "meters"),
  36184. name: "Slit (Erect)",
  36185. image: {
  36186. source: "./media/characters/glint/slit-erect.svg"
  36187. }
  36188. },
  36189. mawAnthro: {
  36190. height: math.unit(0.63, "meters"),
  36191. name: "Maw (Anthro)",
  36192. image: {
  36193. source: "./media/characters/glint/maw.svg"
  36194. }
  36195. },
  36196. mawFeral: {
  36197. height: math.unit(2.89, "meters"),
  36198. name: "Maw (Feral)",
  36199. image: {
  36200. source: "./media/characters/glint/maw.svg"
  36201. }
  36202. },
  36203. },
  36204. [
  36205. {
  36206. name: "Normal",
  36207. height: math.unit(9, "feet"),
  36208. default: true
  36209. },
  36210. ]
  36211. ))
  36212. characterMakers.push(() => makeCharacter(
  36213. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36214. {
  36215. side: {
  36216. height: math.unit(15, "feet"),
  36217. weight: math.unit(5000, "kg"),
  36218. name: "Side",
  36219. image: {
  36220. source: "./media/characters/kairne/side.svg",
  36221. extra: 979/811,
  36222. bottom: 13/992
  36223. }
  36224. },
  36225. front: {
  36226. height: math.unit(15, "feet"),
  36227. weight: math.unit(5000, "kg"),
  36228. name: "Front",
  36229. image: {
  36230. source: "./media/characters/kairne/front.svg",
  36231. extra: 908/814,
  36232. bottom: 26/934
  36233. }
  36234. },
  36235. sideNsfw: {
  36236. height: math.unit(15, "feet"),
  36237. weight: math.unit(5000, "kg"),
  36238. name: "Side (NSFW)",
  36239. image: {
  36240. source: "./media/characters/kairne/side-nsfw.svg",
  36241. extra: 979/811,
  36242. bottom: 13/992
  36243. }
  36244. },
  36245. frontNsfw: {
  36246. height: math.unit(15, "feet"),
  36247. weight: math.unit(5000, "kg"),
  36248. name: "Front (NSFW)",
  36249. image: {
  36250. source: "./media/characters/kairne/front-nsfw.svg",
  36251. extra: 908/814,
  36252. bottom: 26/934
  36253. }
  36254. },
  36255. dickCaged: {
  36256. height: math.unit(0.65, "meters"),
  36257. name: "Dick-caged",
  36258. image: {
  36259. source: "./media/characters/kairne/dick-caged.svg"
  36260. }
  36261. },
  36262. dick: {
  36263. height: math.unit(0.79, "meters"),
  36264. name: "Dick",
  36265. image: {
  36266. source: "./media/characters/kairne/dick.svg"
  36267. }
  36268. },
  36269. genitals: {
  36270. height: math.unit(1.29, "meters"),
  36271. name: "Genitals",
  36272. image: {
  36273. source: "./media/characters/kairne/genitals.svg"
  36274. }
  36275. },
  36276. maw: {
  36277. height: math.unit(1.73, "meters"),
  36278. name: "Maw",
  36279. image: {
  36280. source: "./media/characters/kairne/maw.svg"
  36281. }
  36282. },
  36283. },
  36284. [
  36285. {
  36286. name: "Normal",
  36287. height: math.unit(15, "feet"),
  36288. default: true
  36289. },
  36290. ]
  36291. ))
  36292. characterMakers.push(() => makeCharacter(
  36293. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36294. {
  36295. front: {
  36296. height: math.unit(5 + 8/12, "feet"),
  36297. weight: math.unit(139, "lb"),
  36298. name: "Front",
  36299. image: {
  36300. source: "./media/characters/biscuit-jackal/front.svg",
  36301. extra: 2106/1961,
  36302. bottom: 58/2164
  36303. }
  36304. },
  36305. back: {
  36306. height: math.unit(5 + 8/12, "feet"),
  36307. weight: math.unit(139, "lb"),
  36308. name: "Back",
  36309. image: {
  36310. source: "./media/characters/biscuit-jackal/back.svg",
  36311. extra: 2132/1976,
  36312. bottom: 57/2189
  36313. }
  36314. },
  36315. werejackal: {
  36316. height: math.unit(6 + 3/12, "feet"),
  36317. weight: math.unit(188, "lb"),
  36318. name: "Werejackal",
  36319. image: {
  36320. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36321. extra: 2373/2178,
  36322. bottom: 53/2426
  36323. }
  36324. },
  36325. },
  36326. [
  36327. {
  36328. name: "Normal",
  36329. height: math.unit(5 + 8/12, "feet"),
  36330. default: true
  36331. },
  36332. ]
  36333. ))
  36334. characterMakers.push(() => makeCharacter(
  36335. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36336. {
  36337. front: {
  36338. height: math.unit(140, "cm"),
  36339. weight: math.unit(45, "kg"),
  36340. name: "Front",
  36341. image: {
  36342. source: "./media/characters/tayra-white/front.svg",
  36343. extra: 2229/2192,
  36344. bottom: 75/2304
  36345. }
  36346. },
  36347. },
  36348. [
  36349. {
  36350. name: "Normal",
  36351. height: math.unit(140, "cm"),
  36352. default: true
  36353. },
  36354. ]
  36355. ))
  36356. characterMakers.push(() => makeCharacter(
  36357. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36358. {
  36359. front: {
  36360. height: math.unit(4 + 5/12, "feet"),
  36361. name: "Front",
  36362. image: {
  36363. source: "./media/characters/scoop/front.svg",
  36364. extra: 1257/1136,
  36365. bottom: 69/1326
  36366. }
  36367. },
  36368. back: {
  36369. height: math.unit(4 + 5/12, "feet"),
  36370. name: "Back",
  36371. image: {
  36372. source: "./media/characters/scoop/back.svg",
  36373. extra: 1321/1152,
  36374. bottom: 32/1353
  36375. }
  36376. },
  36377. maw: {
  36378. height: math.unit(0.68, "feet"),
  36379. name: "Maw",
  36380. image: {
  36381. source: "./media/characters/scoop/maw.svg"
  36382. }
  36383. },
  36384. },
  36385. [
  36386. {
  36387. name: "Really Small",
  36388. height: math.unit(1, "mm")
  36389. },
  36390. {
  36391. name: "Micro",
  36392. height: math.unit(1, "inch")
  36393. },
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(4 + 5/12, "feet"),
  36397. default: true
  36398. },
  36399. {
  36400. name: "Macro",
  36401. height: math.unit(200, "feet")
  36402. },
  36403. {
  36404. name: "Megamacro",
  36405. height: math.unit(3240, "feet")
  36406. },
  36407. {
  36408. name: "Teramacro",
  36409. height: math.unit(2500, "miles")
  36410. },
  36411. ]
  36412. ))
  36413. characterMakers.push(() => makeCharacter(
  36414. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36415. {
  36416. front: {
  36417. height: math.unit(15 + 7/12, "feet"),
  36418. weight: math.unit(1150, "tons"),
  36419. name: "Front",
  36420. image: {
  36421. source: "./media/characters/saphinara/front.svg",
  36422. extra: 1837/1643,
  36423. bottom: 84/1921
  36424. },
  36425. form: "normal",
  36426. default: true
  36427. },
  36428. side: {
  36429. height: math.unit(15 + 7/12, "feet"),
  36430. weight: math.unit(1150, "tons"),
  36431. name: "Side",
  36432. image: {
  36433. source: "./media/characters/saphinara/side.svg",
  36434. extra: 605/547,
  36435. bottom: 6/611
  36436. },
  36437. form: "normal"
  36438. },
  36439. back: {
  36440. height: math.unit(15 + 7/12, "feet"),
  36441. weight: math.unit(1150, "tons"),
  36442. name: "Back",
  36443. image: {
  36444. source: "./media/characters/saphinara/back.svg",
  36445. extra: 591/531,
  36446. bottom: 13/604
  36447. },
  36448. form: "normal"
  36449. },
  36450. frontTail: {
  36451. height: math.unit(15 + 7/12, "feet"),
  36452. weight: math.unit(1150, "tons"),
  36453. name: "Front (Full Tail)",
  36454. image: {
  36455. source: "./media/characters/saphinara/front-tail.svg",
  36456. extra: 2256/1630,
  36457. bottom: 261/2517
  36458. },
  36459. form: "normal"
  36460. },
  36461. insides: {
  36462. height: math.unit(11.92, "feet"),
  36463. name: "Insides",
  36464. image: {
  36465. source: "./media/characters/saphinara/insides.svg"
  36466. },
  36467. form: "normal"
  36468. },
  36469. head: {
  36470. height: math.unit(4.17, "feet"),
  36471. name: "Head",
  36472. image: {
  36473. source: "./media/characters/saphinara/head.svg"
  36474. },
  36475. form: "normal"
  36476. },
  36477. tongue: {
  36478. height: math.unit(4.60, "feet"),
  36479. name: "Tongue",
  36480. image: {
  36481. source: "./media/characters/saphinara/tongue.svg"
  36482. },
  36483. form: "normal"
  36484. },
  36485. headEnraged: {
  36486. height: math.unit(5.55, "feet"),
  36487. name: "Head (Enraged)",
  36488. image: {
  36489. source: "./media/characters/saphinara/head-enraged.svg"
  36490. },
  36491. form: "normal"
  36492. },
  36493. wings: {
  36494. height: math.unit(11.95, "feet"),
  36495. name: "Wings",
  36496. image: {
  36497. source: "./media/characters/saphinara/wings.svg"
  36498. },
  36499. form: "normal"
  36500. },
  36501. feathers: {
  36502. height: math.unit(8.92, "feet"),
  36503. name: "Feathers",
  36504. image: {
  36505. source: "./media/characters/saphinara/feathers.svg"
  36506. },
  36507. form: "normal"
  36508. },
  36509. shackles: {
  36510. height: math.unit(2, "feet"),
  36511. name: "Shackles",
  36512. image: {
  36513. source: "./media/characters/saphinara/shackles.svg"
  36514. },
  36515. form: "normal"
  36516. },
  36517. eyes: {
  36518. height: math.unit(1.331, "feet"),
  36519. name: "Eyes",
  36520. image: {
  36521. source: "./media/characters/saphinara/eyes.svg"
  36522. },
  36523. form: "normal"
  36524. },
  36525. eyesEnraged: {
  36526. height: math.unit(1.331, "feet"),
  36527. name: "Eyes (Enraged)",
  36528. image: {
  36529. source: "./media/characters/saphinara/eyes-enraged.svg"
  36530. },
  36531. form: "normal"
  36532. },
  36533. trueFormSide: {
  36534. height: math.unit(200, "feet"),
  36535. weight: math.unit(1e7, "tons"),
  36536. name: "Side",
  36537. image: {
  36538. source: "./media/characters/saphinara/true-form-side.svg",
  36539. extra: 1399/770,
  36540. bottom: 97/1496
  36541. },
  36542. form: "true-form",
  36543. default: true
  36544. },
  36545. trueFormMaw: {
  36546. height: math.unit(71.5, "feet"),
  36547. name: "Maw",
  36548. image: {
  36549. source: "./media/characters/saphinara/true-form-maw.svg",
  36550. extra: 2302/1453,
  36551. bottom: 0/2302
  36552. },
  36553. form: "true-form"
  36554. },
  36555. meowberusSide: {
  36556. height: math.unit(75, "feet"),
  36557. weight: math.unit(180000, "kg"),
  36558. preyCapacity: math.unit(50000, "people"),
  36559. name: "Side",
  36560. image: {
  36561. source: "./media/characters/saphinara/meowberus-side.svg",
  36562. extra: 1400/711,
  36563. bottom: 126/1526
  36564. },
  36565. form: "meowberus",
  36566. extraAttributes: {
  36567. "pawArea": {
  36568. name: "Paw Size",
  36569. power: 2,
  36570. type: "area",
  36571. base: math.unit(35, "m^2")
  36572. }
  36573. }
  36574. },
  36575. },
  36576. [
  36577. {
  36578. name: "Normal",
  36579. height: math.unit(15 + 7/12, "feet"),
  36580. default: true,
  36581. form: "normal"
  36582. },
  36583. {
  36584. name: "Angry",
  36585. height: math.unit(30 + 6/12, "feet"),
  36586. form: "normal"
  36587. },
  36588. {
  36589. name: "Enraged",
  36590. height: math.unit(102 + 1/12, "feet"),
  36591. form: "normal"
  36592. },
  36593. {
  36594. name: "True",
  36595. height: math.unit(200, "feet"),
  36596. default: true,
  36597. form: "true-form"
  36598. },
  36599. {
  36600. name: "Normal",
  36601. height: math.unit(75, "feet"),
  36602. default: true,
  36603. form: "meowberus"
  36604. },
  36605. ],
  36606. {
  36607. "normal": {
  36608. name: "Normal",
  36609. default: true
  36610. },
  36611. "true-form": {
  36612. name: "True Form"
  36613. },
  36614. "meowberus": {
  36615. name: "Meowberus",
  36616. },
  36617. }
  36618. ))
  36619. characterMakers.push(() => makeCharacter(
  36620. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36621. {
  36622. front: {
  36623. height: math.unit(6 + 8/12, "feet"),
  36624. weight: math.unit(300, "lb"),
  36625. name: "Front",
  36626. image: {
  36627. source: "./media/characters/jrain/front.svg",
  36628. extra: 3039/2865,
  36629. bottom: 399/3438
  36630. }
  36631. },
  36632. back: {
  36633. height: math.unit(6 + 8/12, "feet"),
  36634. weight: math.unit(300, "lb"),
  36635. name: "Back",
  36636. image: {
  36637. source: "./media/characters/jrain/back.svg",
  36638. extra: 3089/2938,
  36639. bottom: 172/3261
  36640. }
  36641. },
  36642. head: {
  36643. height: math.unit(2.14, "feet"),
  36644. name: "Head",
  36645. image: {
  36646. source: "./media/characters/jrain/head.svg"
  36647. }
  36648. },
  36649. maw: {
  36650. height: math.unit(1.77, "feet"),
  36651. name: "Maw",
  36652. image: {
  36653. source: "./media/characters/jrain/maw.svg"
  36654. }
  36655. },
  36656. leftHand: {
  36657. height: math.unit(1.1, "feet"),
  36658. name: "Left Hand",
  36659. image: {
  36660. source: "./media/characters/jrain/left-hand.svg"
  36661. }
  36662. },
  36663. rightHand: {
  36664. height: math.unit(1.1, "feet"),
  36665. name: "Right Hand",
  36666. image: {
  36667. source: "./media/characters/jrain/right-hand.svg"
  36668. }
  36669. },
  36670. eye: {
  36671. height: math.unit(0.35, "feet"),
  36672. name: "Eye",
  36673. image: {
  36674. source: "./media/characters/jrain/eye.svg"
  36675. }
  36676. },
  36677. },
  36678. [
  36679. {
  36680. name: "Normal",
  36681. height: math.unit(6 + 8/12, "feet"),
  36682. default: true
  36683. },
  36684. {
  36685. name: "Casually Large",
  36686. height: math.unit(25, "feet")
  36687. },
  36688. {
  36689. name: "Giant",
  36690. height: math.unit(100, "feet")
  36691. },
  36692. {
  36693. name: "Kaiju",
  36694. height: math.unit(300, "feet")
  36695. },
  36696. ]
  36697. ))
  36698. characterMakers.push(() => makeCharacter(
  36699. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36700. {
  36701. dragon: {
  36702. height: math.unit(5, "meters"),
  36703. name: "Dragon",
  36704. image: {
  36705. source: "./media/characters/sabrina/dragon.svg",
  36706. extra: 3670 / 2365,
  36707. bottom: 333 / 4003
  36708. }
  36709. },
  36710. gryphon: {
  36711. height: math.unit(3, "meters"),
  36712. name: "Gryphon",
  36713. image: {
  36714. source: "./media/characters/sabrina/gryphon.svg",
  36715. extra: 1576 / 945,
  36716. bottom: 71 / 1647
  36717. }
  36718. },
  36719. snake: {
  36720. height: math.unit(12, "meters"),
  36721. name: "Snake",
  36722. image: {
  36723. source: "./media/characters/sabrina/snake.svg",
  36724. extra: 1758 / 1320,
  36725. bottom: 186 / 1944
  36726. }
  36727. },
  36728. collar: {
  36729. height: math.unit(1.86, "meters"),
  36730. name: "Collar",
  36731. image: {
  36732. source: "./media/characters/sabrina/collar.svg"
  36733. }
  36734. },
  36735. eye: {
  36736. height: math.unit(0.53, "meters"),
  36737. name: "Eye",
  36738. image: {
  36739. source: "./media/characters/sabrina/eye.svg"
  36740. }
  36741. },
  36742. foot: {
  36743. height: math.unit(1.86, "meters"),
  36744. name: "Foot",
  36745. image: {
  36746. source: "./media/characters/sabrina/foot.svg"
  36747. }
  36748. },
  36749. hand: {
  36750. height: math.unit(1.32, "meters"),
  36751. name: "Hand",
  36752. image: {
  36753. source: "./media/characters/sabrina/hand.svg"
  36754. }
  36755. },
  36756. head: {
  36757. height: math.unit(2.44, "meters"),
  36758. name: "Head",
  36759. image: {
  36760. source: "./media/characters/sabrina/head.svg"
  36761. }
  36762. },
  36763. headAngry: {
  36764. height: math.unit(2.44, "meters"),
  36765. name: "Head (Angry))",
  36766. image: {
  36767. source: "./media/characters/sabrina/head-angry.svg"
  36768. }
  36769. },
  36770. maw: {
  36771. height: math.unit(1.65, "meters"),
  36772. name: "Maw",
  36773. image: {
  36774. source: "./media/characters/sabrina/maw.svg"
  36775. }
  36776. },
  36777. spikes: {
  36778. height: math.unit(1.69, "meters"),
  36779. name: "Spikes",
  36780. image: {
  36781. source: "./media/characters/sabrina/spikes.svg"
  36782. }
  36783. },
  36784. stomach: {
  36785. height: math.unit(1.15, "meters"),
  36786. name: "Stomach",
  36787. image: {
  36788. source: "./media/characters/sabrina/stomach.svg"
  36789. }
  36790. },
  36791. tongue: {
  36792. height: math.unit(1.27, "meters"),
  36793. name: "Tongue",
  36794. image: {
  36795. source: "./media/characters/sabrina/tongue.svg"
  36796. }
  36797. },
  36798. wingDorsal: {
  36799. height: math.unit(4.85, "meters"),
  36800. name: "Wing (Dorsal)",
  36801. image: {
  36802. source: "./media/characters/sabrina/wing-dorsal.svg"
  36803. }
  36804. },
  36805. wingVentral: {
  36806. height: math.unit(4.85, "meters"),
  36807. name: "Wing (Ventral)",
  36808. image: {
  36809. source: "./media/characters/sabrina/wing-ventral.svg"
  36810. }
  36811. },
  36812. },
  36813. [
  36814. {
  36815. name: "Normal",
  36816. height: math.unit(5, "meters"),
  36817. default: true
  36818. },
  36819. ]
  36820. ))
  36821. characterMakers.push(() => makeCharacter(
  36822. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36823. {
  36824. frontMaid: {
  36825. height: math.unit(5 + 5/12, "feet"),
  36826. weight: math.unit(130, "lb"),
  36827. name: "Front (Maid)",
  36828. image: {
  36829. source: "./media/characters/midnight-tales/front-maid.svg",
  36830. extra: 489/454,
  36831. bottom: 61/550
  36832. }
  36833. },
  36834. frontFormal: {
  36835. height: math.unit(5 + 5/12, "feet"),
  36836. weight: math.unit(130, "lb"),
  36837. name: "Front (Formal)",
  36838. image: {
  36839. source: "./media/characters/midnight-tales/front-formal.svg",
  36840. extra: 489/454,
  36841. bottom: 61/550
  36842. }
  36843. },
  36844. back: {
  36845. height: math.unit(5 + 5/12, "feet"),
  36846. weight: math.unit(130, "lb"),
  36847. name: "Back",
  36848. image: {
  36849. source: "./media/characters/midnight-tales/back.svg",
  36850. extra: 498/456,
  36851. bottom: 33/531
  36852. }
  36853. },
  36854. frontBeast: {
  36855. height: math.unit(40, "feet"),
  36856. weight: math.unit(64000, "lb"),
  36857. name: "Front (Beast)",
  36858. image: {
  36859. source: "./media/characters/midnight-tales/front-beast.svg",
  36860. extra: 927/860,
  36861. bottom: 53/980
  36862. }
  36863. },
  36864. backBeast: {
  36865. height: math.unit(40, "feet"),
  36866. weight: math.unit(64000, "lb"),
  36867. name: "Back (Beast)",
  36868. image: {
  36869. source: "./media/characters/midnight-tales/back-beast.svg",
  36870. extra: 929/855,
  36871. bottom: 16/945
  36872. }
  36873. },
  36874. footBeast: {
  36875. height: math.unit(6.7, "feet"),
  36876. name: "Foot (Beast)",
  36877. image: {
  36878. source: "./media/characters/midnight-tales/foot-beast.svg"
  36879. }
  36880. },
  36881. headBeast: {
  36882. height: math.unit(8, "feet"),
  36883. name: "Head (Beast)",
  36884. image: {
  36885. source: "./media/characters/midnight-tales/head-beast.svg"
  36886. }
  36887. },
  36888. },
  36889. [
  36890. {
  36891. name: "Normal",
  36892. height: math.unit(5 + 5 / 12, "feet"),
  36893. default: true
  36894. },
  36895. {
  36896. name: "Macro",
  36897. height: math.unit(25, "feet")
  36898. },
  36899. ]
  36900. ))
  36901. characterMakers.push(() => makeCharacter(
  36902. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36903. {
  36904. front: {
  36905. height: math.unit(6 + 2/12, "feet"),
  36906. weight: math.unit(115, "kg"),
  36907. preyCapacity: math.unit(3, "people"),
  36908. name: "Front",
  36909. image: {
  36910. source: "./media/characters/argon/front.svg",
  36911. extra: 2009/1935,
  36912. bottom: 118/2127
  36913. },
  36914. extraAttributes: {
  36915. "tailLength": {
  36916. name: "Tail Length",
  36917. power: 1,
  36918. type: "length",
  36919. base: math.unit(6, "feet")
  36920. },
  36921. "tailWeight": {
  36922. name: "Tail Weight",
  36923. power: 3,
  36924. type: "mass",
  36925. base: math.unit(40, "kg")
  36926. },
  36927. }
  36928. },
  36929. back: {
  36930. height: math.unit(6 + 2/12, "feet"),
  36931. weight: math.unit(115, "kg"),
  36932. preyCapacity: math.unit(3, "people"),
  36933. name: "Back",
  36934. image: {
  36935. source: "./media/characters/argon/back.svg",
  36936. extra: 2047/1992,
  36937. bottom: 20/2067
  36938. },
  36939. extraAttributes: {
  36940. "tailLength": {
  36941. name: "Tail Length",
  36942. power: 1,
  36943. type: "length",
  36944. base: math.unit(6, "feet")
  36945. },
  36946. "tailWeight": {
  36947. name: "Tail Weight",
  36948. power: 3,
  36949. type: "mass",
  36950. base: math.unit(40, "kg")
  36951. },
  36952. }
  36953. },
  36954. frontDressed: {
  36955. height: math.unit(6 + 2/12, "feet"),
  36956. weight: math.unit(115, "kg"),
  36957. preyCapacity: math.unit(3, "people"),
  36958. name: "Front (Dressed)",
  36959. image: {
  36960. source: "./media/characters/argon/front-dressed.svg",
  36961. extra: 2009/1935,
  36962. bottom: 118/2127
  36963. },
  36964. extraAttributes: {
  36965. "tailLength": {
  36966. name: "Tail Length",
  36967. power: 1,
  36968. type: "length",
  36969. base: math.unit(6, "feet")
  36970. },
  36971. "tailWeight": {
  36972. name: "Tail Weight",
  36973. power: 3,
  36974. type: "mass",
  36975. base: math.unit(40, "kg")
  36976. },
  36977. }
  36978. },
  36979. },
  36980. [
  36981. {
  36982. name: "Minimum",
  36983. height: math.unit(2 + 8/12, "feet")
  36984. },
  36985. {
  36986. name: "Normal",
  36987. height: math.unit(6 + 2/12, "feet"),
  36988. default: true
  36989. },
  36990. {
  36991. name: "Maximum",
  36992. height: math.unit(20, "feet")
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36998. {
  36999. front: {
  37000. height: math.unit(8 + 6/12, "feet"),
  37001. weight: math.unit(1150, "lb"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/kichi/front.svg",
  37005. extra: 1267/1164,
  37006. bottom: 61/1328
  37007. }
  37008. },
  37009. back: {
  37010. height: math.unit(8 + 6/12, "feet"),
  37011. weight: math.unit(1150, "lb"),
  37012. name: "Back",
  37013. image: {
  37014. source: "./media/characters/kichi/back.svg",
  37015. extra: 1273/1166,
  37016. bottom: 33/1306
  37017. }
  37018. },
  37019. },
  37020. [
  37021. {
  37022. name: "Normal",
  37023. height: math.unit(8 + 6/12, "feet"),
  37024. default: true
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  37030. {
  37031. front: {
  37032. height: math.unit(6, "feet"),
  37033. weight: math.unit(210, "lb"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/manetel-greyscale/front.svg",
  37037. extra: 350/312,
  37038. bottom: 8/358
  37039. }
  37040. },
  37041. },
  37042. [
  37043. {
  37044. name: "Micro",
  37045. height: math.unit(2, "inches")
  37046. },
  37047. {
  37048. name: "Normal",
  37049. height: math.unit(6, "feet"),
  37050. default: true
  37051. },
  37052. {
  37053. name: "Minimacro",
  37054. height: math.unit(17, "feet")
  37055. },
  37056. {
  37057. name: "Macro",
  37058. height: math.unit(117, "feet")
  37059. },
  37060. ]
  37061. ))
  37062. characterMakers.push(() => makeCharacter(
  37063. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37064. {
  37065. side: {
  37066. height: math.unit(5 + 1/12, "feet"),
  37067. weight: math.unit(418, "lb"),
  37068. name: "Side",
  37069. image: {
  37070. source: "./media/characters/softpurr/side.svg",
  37071. extra: 1993/1945,
  37072. bottom: 134/2127
  37073. }
  37074. },
  37075. front: {
  37076. height: math.unit(5 + 1/12, "feet"),
  37077. weight: math.unit(418, "lb"),
  37078. name: "Front",
  37079. image: {
  37080. source: "./media/characters/softpurr/front.svg",
  37081. extra: 1950/1856,
  37082. bottom: 174/2124
  37083. }
  37084. },
  37085. paw: {
  37086. height: math.unit(1, "feet"),
  37087. name: "Paw",
  37088. image: {
  37089. source: "./media/characters/softpurr/paw.svg"
  37090. }
  37091. },
  37092. },
  37093. [
  37094. {
  37095. name: "Normal",
  37096. height: math.unit(5 + 1/12, "feet"),
  37097. default: true
  37098. },
  37099. ]
  37100. ))
  37101. characterMakers.push(() => makeCharacter(
  37102. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  37103. {
  37104. front: {
  37105. height: math.unit(260, "meters"),
  37106. name: "Front",
  37107. image: {
  37108. source: "./media/characters/anahita/front.svg",
  37109. extra: 665/635,
  37110. bottom: 89/754
  37111. }
  37112. },
  37113. },
  37114. [
  37115. {
  37116. name: "Macro",
  37117. height: math.unit(260, "meters"),
  37118. default: true
  37119. },
  37120. ]
  37121. ))
  37122. characterMakers.push(() => makeCharacter(
  37123. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37124. {
  37125. front: {
  37126. height: math.unit(4 + 10/12, "feet"),
  37127. weight: math.unit(160, "lb"),
  37128. name: "Front",
  37129. image: {
  37130. source: "./media/characters/chip-mouse/front.svg",
  37131. extra: 3528/3408,
  37132. bottom: 0/3528
  37133. }
  37134. },
  37135. frontNsfw: {
  37136. height: math.unit(4 + 10/12, "feet"),
  37137. weight: math.unit(160, "lb"),
  37138. name: "Front (NSFW)",
  37139. image: {
  37140. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37141. extra: 3528/3408,
  37142. bottom: 0/3528
  37143. }
  37144. },
  37145. },
  37146. [
  37147. {
  37148. name: "Normal",
  37149. height: math.unit(4 + 10/12, "feet"),
  37150. default: true
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37156. {
  37157. side: {
  37158. height: math.unit(10, "feet"),
  37159. weight: math.unit(14000, "lb"),
  37160. name: "Side",
  37161. image: {
  37162. source: "./media/characters/kremm/side.svg",
  37163. extra: 1390/1053,
  37164. bottom: 90/1480
  37165. }
  37166. },
  37167. gut: {
  37168. height: math.unit(5.8, "feet"),
  37169. name: "Gut",
  37170. image: {
  37171. source: "./media/characters/kremm/gut.svg"
  37172. }
  37173. },
  37174. ass: {
  37175. height: math.unit(6.1, "feet"),
  37176. name: "Ass",
  37177. image: {
  37178. source: "./media/characters/kremm/ass.svg"
  37179. }
  37180. },
  37181. jaws: {
  37182. height: math.unit(2.2, "feet"),
  37183. name: "Jaws",
  37184. image: {
  37185. source: "./media/characters/kremm/jaws.svg"
  37186. }
  37187. },
  37188. dick: {
  37189. height: math.unit(4.26, "feet"),
  37190. name: "Dick",
  37191. image: {
  37192. source: "./media/characters/kremm/dick.svg"
  37193. }
  37194. },
  37195. },
  37196. [
  37197. {
  37198. name: "Normal",
  37199. height: math.unit(10, "feet"),
  37200. default: true
  37201. },
  37202. ]
  37203. ))
  37204. characterMakers.push(() => makeCharacter(
  37205. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37206. {
  37207. front: {
  37208. height: math.unit(30, "stories"),
  37209. name: "Front",
  37210. image: {
  37211. source: "./media/characters/kai/front.svg",
  37212. extra: 1892/1718,
  37213. bottom: 162/2054
  37214. }
  37215. },
  37216. },
  37217. [
  37218. {
  37219. name: "Macro",
  37220. height: math.unit(30, "stories"),
  37221. default: true
  37222. },
  37223. ]
  37224. ))
  37225. characterMakers.push(() => makeCharacter(
  37226. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37227. {
  37228. front: {
  37229. height: math.unit(6 + 4/12, "feet"),
  37230. weight: math.unit(145, "lb"),
  37231. name: "Front",
  37232. image: {
  37233. source: "./media/characters/sykes/front.svg",
  37234. extra: 1321 / 1187,
  37235. bottom: 66 / 1387
  37236. }
  37237. },
  37238. back: {
  37239. height: math.unit(6 + 4/12, "feet"),
  37240. weight: math.unit(145, "lb"),
  37241. name: "Back",
  37242. image: {
  37243. source: "./media/characters/sykes/back.svg",
  37244. extra: 1326/1181,
  37245. bottom: 31/1357
  37246. }
  37247. },
  37248. traditionalOutfit: {
  37249. height: math.unit(6 + 4/12, "feet"),
  37250. weight: math.unit(145, "lb"),
  37251. name: "Traditional Outfit",
  37252. image: {
  37253. source: "./media/characters/sykes/traditional-outfit.svg",
  37254. extra: 1321 / 1187,
  37255. bottom: 66 / 1387
  37256. }
  37257. },
  37258. adventureOutfit: {
  37259. height: math.unit(6 + 4/12, "feet"),
  37260. weight: math.unit(145, "lb"),
  37261. name: "Adventure Outfit",
  37262. image: {
  37263. source: "./media/characters/sykes/adventure-outfit.svg",
  37264. extra: 1321 / 1187,
  37265. bottom: 66 / 1387
  37266. }
  37267. },
  37268. handLeft: {
  37269. height: math.unit(0.9, "feet"),
  37270. name: "Hand (Left)",
  37271. image: {
  37272. source: "./media/characters/sykes/hand-left.svg"
  37273. }
  37274. },
  37275. handRight: {
  37276. height: math.unit(0.839, "feet"),
  37277. name: "Hand (Right)",
  37278. image: {
  37279. source: "./media/characters/sykes/hand-right.svg"
  37280. }
  37281. },
  37282. leftFoot: {
  37283. height: math.unit(1.2, "feet"),
  37284. name: "Foot (Left)",
  37285. image: {
  37286. source: "./media/characters/sykes/foot-left.svg"
  37287. }
  37288. },
  37289. rightFoot: {
  37290. height: math.unit(1.2, "feet"),
  37291. name: "Foot (Right)",
  37292. image: {
  37293. source: "./media/characters/sykes/foot-right.svg"
  37294. }
  37295. },
  37296. maw: {
  37297. height: math.unit(1.93, "feet"),
  37298. name: "Maw",
  37299. image: {
  37300. source: "./media/characters/sykes/maw.svg"
  37301. }
  37302. },
  37303. teeth: {
  37304. height: math.unit(0.51, "feet"),
  37305. name: "Teeth",
  37306. image: {
  37307. source: "./media/characters/sykes/teeth.svg"
  37308. }
  37309. },
  37310. tongue: {
  37311. height: math.unit(2.13, "feet"),
  37312. name: "Tongue",
  37313. image: {
  37314. source: "./media/characters/sykes/tongue.svg"
  37315. }
  37316. },
  37317. uvula: {
  37318. height: math.unit(0.16, "feet"),
  37319. name: "Uvula",
  37320. image: {
  37321. source: "./media/characters/sykes/uvula.svg"
  37322. }
  37323. },
  37324. collar: {
  37325. height: math.unit(0.287, "feet"),
  37326. name: "Collar",
  37327. image: {
  37328. source: "./media/characters/sykes/collar.svg"
  37329. }
  37330. },
  37331. tail: {
  37332. height: math.unit(3.8, "feet"),
  37333. name: "Tail",
  37334. image: {
  37335. source: "./media/characters/sykes/tail.svg"
  37336. }
  37337. },
  37338. },
  37339. [
  37340. {
  37341. name: "Shrunken",
  37342. height: math.unit(5, "inches")
  37343. },
  37344. {
  37345. name: "Normal",
  37346. height: math.unit(6 + 4 / 12, "feet"),
  37347. default: true
  37348. },
  37349. {
  37350. name: "Big",
  37351. height: math.unit(15, "feet")
  37352. },
  37353. ]
  37354. ))
  37355. characterMakers.push(() => makeCharacter(
  37356. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37357. {
  37358. front: {
  37359. height: math.unit(5 + 8/12, "feet"),
  37360. weight: math.unit(190, "lb"),
  37361. name: "Front",
  37362. image: {
  37363. source: "./media/characters/oven-otter/front.svg",
  37364. extra: 1809/1740,
  37365. bottom: 181/1990
  37366. }
  37367. },
  37368. back: {
  37369. height: math.unit(5 + 8/12, "feet"),
  37370. weight: math.unit(190, "lb"),
  37371. name: "Back",
  37372. image: {
  37373. source: "./media/characters/oven-otter/back.svg",
  37374. extra: 1709/1635,
  37375. bottom: 118/1827
  37376. }
  37377. },
  37378. hand: {
  37379. height: math.unit(1.07, "feet"),
  37380. name: "Hand",
  37381. image: {
  37382. source: "./media/characters/oven-otter/hand.svg"
  37383. }
  37384. },
  37385. beans: {
  37386. height: math.unit(1.74, "feet"),
  37387. name: "Beans",
  37388. image: {
  37389. source: "./media/characters/oven-otter/beans.svg"
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Micro",
  37396. height: math.unit(0.5, "inches")
  37397. },
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(5 + 8/12, "feet"),
  37401. default: true
  37402. },
  37403. {
  37404. name: "Macro",
  37405. height: math.unit(250, "feet")
  37406. },
  37407. {
  37408. name: "Really High",
  37409. height: math.unit(420, "feet")
  37410. },
  37411. ]
  37412. ))
  37413. characterMakers.push(() => makeCharacter(
  37414. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37415. {
  37416. front: {
  37417. height: math.unit(5, "meters"),
  37418. weight: math.unit(292000000000000, "kg"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/devourer/front.svg",
  37422. extra: 1800/1733,
  37423. bottom: 211/2011
  37424. }
  37425. },
  37426. maw: {
  37427. height: math.unit(1.1, "meter"),
  37428. name: "Maw",
  37429. image: {
  37430. source: "./media/characters/devourer/maw.svg"
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Small",
  37437. height: math.unit(3, "meters")
  37438. },
  37439. {
  37440. name: "Large",
  37441. height: math.unit(5, "meters"),
  37442. default: true
  37443. },
  37444. ]
  37445. ))
  37446. characterMakers.push(() => makeCharacter(
  37447. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37448. {
  37449. front: {
  37450. height: math.unit(6, "feet"),
  37451. weight: math.unit(400, "lb"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/ellarby/front.svg",
  37455. extra: 1909/1763,
  37456. bottom: 80/1989
  37457. }
  37458. },
  37459. back: {
  37460. height: math.unit(6, "feet"),
  37461. weight: math.unit(400, "lb"),
  37462. name: "Back",
  37463. image: {
  37464. source: "./media/characters/ellarby/back.svg",
  37465. extra: 1914/1784,
  37466. bottom: 172/2086
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Mischief",
  37473. height: math.unit(18, "inches")
  37474. },
  37475. {
  37476. name: "Trouble",
  37477. height: math.unit(12, "feet")
  37478. },
  37479. {
  37480. name: "Havoc",
  37481. height: math.unit(200, "feet"),
  37482. default: true
  37483. },
  37484. {
  37485. name: "Pandemonium",
  37486. height: math.unit(1, "mile")
  37487. },
  37488. {
  37489. name: "Catastrophe",
  37490. height: math.unit(100, "miles")
  37491. },
  37492. ]
  37493. ))
  37494. characterMakers.push(() => makeCharacter(
  37495. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37496. {
  37497. front: {
  37498. height: math.unit(4.7, "meters"),
  37499. weight: math.unit(6500, "kg"),
  37500. name: "Front",
  37501. image: {
  37502. source: "./media/characters/vex/front.svg",
  37503. extra: 1288/1140,
  37504. bottom: 100/1388
  37505. }
  37506. },
  37507. },
  37508. [
  37509. {
  37510. name: "Normal",
  37511. height: math.unit(4.7, "meters"),
  37512. default: true
  37513. },
  37514. ]
  37515. ))
  37516. characterMakers.push(() => makeCharacter(
  37517. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37518. {
  37519. normal: {
  37520. height: math.unit(6, "feet"),
  37521. weight: math.unit(350, "lb"),
  37522. name: "Normal",
  37523. image: {
  37524. source: "./media/characters/teshy/normal.svg",
  37525. extra: 1795/1735,
  37526. bottom: 16/1811
  37527. }
  37528. },
  37529. monsterFront: {
  37530. height: math.unit(12, "feet"),
  37531. weight: math.unit(4700, "lb"),
  37532. name: "Monster (Front)",
  37533. image: {
  37534. source: "./media/characters/teshy/monster-front.svg",
  37535. extra: 2042/2034,
  37536. bottom: 128/2170
  37537. }
  37538. },
  37539. monsterSide: {
  37540. height: math.unit(12, "feet"),
  37541. weight: math.unit(4700, "lb"),
  37542. name: "Monster (Side)",
  37543. image: {
  37544. source: "./media/characters/teshy/monster-side.svg",
  37545. extra: 2067/2056,
  37546. bottom: 70/2137
  37547. }
  37548. },
  37549. monsterBack: {
  37550. height: math.unit(12, "feet"),
  37551. weight: math.unit(4700, "lb"),
  37552. name: "Monster (Back)",
  37553. image: {
  37554. source: "./media/characters/teshy/monster-back.svg",
  37555. extra: 1921/1914,
  37556. bottom: 171/2092
  37557. }
  37558. },
  37559. },
  37560. [
  37561. {
  37562. name: "Normal",
  37563. height: math.unit(6, "feet"),
  37564. default: true
  37565. },
  37566. ]
  37567. ))
  37568. characterMakers.push(() => makeCharacter(
  37569. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37570. {
  37571. front: {
  37572. height: math.unit(6, "feet"),
  37573. name: "Front",
  37574. image: {
  37575. source: "./media/characters/ramey/front.svg",
  37576. extra: 790/787,
  37577. bottom: 27/817
  37578. }
  37579. },
  37580. },
  37581. [
  37582. {
  37583. name: "Normal",
  37584. height: math.unit(6, "feet"),
  37585. default: true
  37586. },
  37587. ]
  37588. ))
  37589. characterMakers.push(() => makeCharacter(
  37590. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37591. {
  37592. front: {
  37593. height: math.unit(5 + 5/12, "feet"),
  37594. weight: math.unit(120, "lb"),
  37595. name: "Front",
  37596. image: {
  37597. source: "./media/characters/phirae/front.svg",
  37598. extra: 2491/2436,
  37599. bottom: 38/2529
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Normal",
  37606. height: math.unit(5 + 5/12, "feet"),
  37607. default: true
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37613. {
  37614. front: {
  37615. height: math.unit(5 + 3/12, "feet"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/stagglas/front.svg",
  37619. extra: 962/882,
  37620. bottom: 53/1015
  37621. }
  37622. },
  37623. feral: {
  37624. height: math.unit(335, "cm"),
  37625. name: "Feral",
  37626. image: {
  37627. source: "./media/characters/stagglas/feral.svg",
  37628. extra: 1732/1090,
  37629. bottom: 48/1780
  37630. }
  37631. },
  37632. },
  37633. [
  37634. {
  37635. name: "Normal",
  37636. height: math.unit(5 + 3/12, "feet"),
  37637. default: true
  37638. },
  37639. ]
  37640. ))
  37641. characterMakers.push(() => makeCharacter(
  37642. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37643. {
  37644. front: {
  37645. height: math.unit(5 + 4/12, "feet"),
  37646. weight: math.unit(145, "lb"),
  37647. name: "Front",
  37648. image: {
  37649. source: "./media/characters/starra/front.svg",
  37650. extra: 1790/1691,
  37651. bottom: 91/1881
  37652. }
  37653. },
  37654. },
  37655. [
  37656. {
  37657. name: "Normal",
  37658. height: math.unit(5 + 4/12, "feet"),
  37659. default: true
  37660. },
  37661. ]
  37662. ))
  37663. characterMakers.push(() => makeCharacter(
  37664. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37665. {
  37666. front: {
  37667. height: math.unit(3.5, "meters"),
  37668. name: "Front",
  37669. image: {
  37670. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37671. extra: 1248/972,
  37672. bottom: 38/1286
  37673. }
  37674. },
  37675. },
  37676. [
  37677. {
  37678. name: "Normal",
  37679. height: math.unit(3.5, "meters"),
  37680. default: true
  37681. },
  37682. ]
  37683. ))
  37684. characterMakers.push(() => makeCharacter(
  37685. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37686. {
  37687. side: {
  37688. height: math.unit(8 + 2/12, "feet"),
  37689. weight: math.unit(1240, "lb"),
  37690. name: "Side",
  37691. image: {
  37692. source: "./media/characters/mika-valentine/side.svg",
  37693. extra: 2670/2501,
  37694. bottom: 250/2920
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Normal",
  37701. height: math.unit(8 + 2/12, "feet"),
  37702. default: true
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(7 + 2/12, "feet"),
  37711. name: "Front",
  37712. image: {
  37713. source: "./media/characters/xoltol/front.svg",
  37714. extra: 2212/2124,
  37715. bottom: 84/2296
  37716. }
  37717. },
  37718. side: {
  37719. height: math.unit(7 + 2/12, "feet"),
  37720. name: "Side",
  37721. image: {
  37722. source: "./media/characters/xoltol/side.svg",
  37723. extra: 2273/2197,
  37724. bottom: 26/2299
  37725. }
  37726. },
  37727. hand: {
  37728. height: math.unit(2.5, "feet"),
  37729. name: "Hand",
  37730. image: {
  37731. source: "./media/characters/xoltol/hand.svg"
  37732. }
  37733. },
  37734. },
  37735. [
  37736. {
  37737. name: "Small-ish",
  37738. height: math.unit(5 + 11/12, "feet")
  37739. },
  37740. {
  37741. name: "Normal",
  37742. height: math.unit(7 + 2/12, "feet")
  37743. },
  37744. {
  37745. name: "\"Macro\"",
  37746. height: math.unit(14 + 9/12, "feet"),
  37747. default: true
  37748. },
  37749. {
  37750. name: "Alternate Height",
  37751. height: math.unit(20, "feet")
  37752. },
  37753. {
  37754. name: "Actually Macro",
  37755. height: math.unit(100, "feet")
  37756. },
  37757. ]
  37758. ))
  37759. characterMakers.push(() => makeCharacter(
  37760. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37761. {
  37762. front: {
  37763. height: math.unit(5 + 2/12, "feet"),
  37764. weight: math.unit(75, "kg"),
  37765. name: "Front",
  37766. image: {
  37767. source: "./media/characters/kotetsu-redwood/front.svg",
  37768. extra: 1053/942,
  37769. bottom: 60/1113
  37770. }
  37771. },
  37772. },
  37773. [
  37774. {
  37775. name: "Normal",
  37776. height: math.unit(5 + 2/12, "feet"),
  37777. default: true
  37778. },
  37779. ]
  37780. ))
  37781. characterMakers.push(() => makeCharacter(
  37782. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37783. {
  37784. front: {
  37785. height: math.unit(2.4, "meters"),
  37786. weight: math.unit(125, "kg"),
  37787. name: "Front",
  37788. image: {
  37789. source: "./media/characters/lilith/front.svg",
  37790. extra: 1590/1513,
  37791. bottom: 203/1793
  37792. }
  37793. },
  37794. },
  37795. [
  37796. {
  37797. name: "Humanoid",
  37798. height: math.unit(2.4, "meters")
  37799. },
  37800. {
  37801. name: "Normal",
  37802. height: math.unit(6, "meters"),
  37803. default: true
  37804. },
  37805. {
  37806. name: "Largest",
  37807. height: math.unit(55, "meters")
  37808. },
  37809. ]
  37810. ))
  37811. characterMakers.push(() => makeCharacter(
  37812. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37813. {
  37814. front: {
  37815. height: math.unit(8 + 4/12, "feet"),
  37816. weight: math.unit(535, "lb"),
  37817. name: "Front",
  37818. image: {
  37819. source: "./media/characters/beh'kah-bolger/front.svg",
  37820. extra: 1660/1603,
  37821. bottom: 37/1697
  37822. }
  37823. },
  37824. },
  37825. [
  37826. {
  37827. name: "Normal",
  37828. height: math.unit(8 + 4/12, "feet"),
  37829. default: true
  37830. },
  37831. {
  37832. name: "Kaiju",
  37833. height: math.unit(250, "feet")
  37834. },
  37835. {
  37836. name: "Still Growing",
  37837. height: math.unit(10, "miles")
  37838. },
  37839. {
  37840. name: "Continental",
  37841. height: math.unit(5000, "miles")
  37842. },
  37843. {
  37844. name: "Final Form",
  37845. height: math.unit(2500000, "miles")
  37846. },
  37847. ]
  37848. ))
  37849. characterMakers.push(() => makeCharacter(
  37850. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37851. {
  37852. front: {
  37853. height: math.unit(7 + 2/12, "feet"),
  37854. weight: math.unit(230, "kg"),
  37855. name: "Front",
  37856. image: {
  37857. source: "./media/characters/tatyana-milewska/front.svg",
  37858. extra: 1199/1150,
  37859. bottom: 86/1285
  37860. }
  37861. },
  37862. },
  37863. [
  37864. {
  37865. name: "Normal",
  37866. height: math.unit(7 + 2/12, "feet"),
  37867. default: true
  37868. },
  37869. {
  37870. name: "Big",
  37871. height: math.unit(12, "feet")
  37872. },
  37873. {
  37874. name: "Minimacro",
  37875. height: math.unit(20, "feet")
  37876. },
  37877. {
  37878. name: "Macro",
  37879. height: math.unit(120, "feet")
  37880. },
  37881. ]
  37882. ))
  37883. characterMakers.push(() => makeCharacter(
  37884. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37885. {
  37886. front: {
  37887. height: math.unit(7 + 8/12, "feet"),
  37888. weight: math.unit(152, "kg"),
  37889. name: "Front",
  37890. image: {
  37891. source: "./media/characters/helen-arri/front.svg",
  37892. extra: 440/423,
  37893. bottom: 14/454
  37894. }
  37895. },
  37896. back: {
  37897. height: math.unit(7 + 8/12, "feet"),
  37898. weight: math.unit(152, "kg"),
  37899. name: "Back",
  37900. image: {
  37901. source: "./media/characters/helen-arri/back.svg",
  37902. extra: 443/426,
  37903. bottom: 8/451
  37904. }
  37905. },
  37906. },
  37907. [
  37908. {
  37909. name: "Normal",
  37910. height: math.unit(7 + 8/12, "feet"),
  37911. default: true
  37912. },
  37913. {
  37914. name: "Big",
  37915. height: math.unit(14, "feet")
  37916. },
  37917. {
  37918. name: "Minimacro",
  37919. height: math.unit(24, "feet")
  37920. },
  37921. {
  37922. name: "Macro",
  37923. height: math.unit(140, "feet")
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(6, "meters"),
  37932. name: "Front",
  37933. image: {
  37934. source: "./media/characters/ehanu-rehu/front.svg",
  37935. extra: 1800/1800,
  37936. bottom: 59/1859
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(6, "meters"),
  37944. default: true
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37950. {
  37951. front: {
  37952. height: math.unit(7 + 3/12, "feet"),
  37953. name: "Front",
  37954. image: {
  37955. source: "./media/characters/renholder/front.svg",
  37956. extra: 3096/2960,
  37957. bottom: 250/3346
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal Bat",
  37964. height: math.unit(7 + 3/12, "feet"),
  37965. default: true
  37966. },
  37967. {
  37968. name: "Slightly Tall Bat",
  37969. height: math.unit(100, "feet")
  37970. },
  37971. {
  37972. name: "Big Bat",
  37973. height: math.unit(1000, "feet")
  37974. },
  37975. {
  37976. name: "City-Sized Bat",
  37977. height: math.unit(200000, "feet")
  37978. },
  37979. {
  37980. name: "Bigger Bat",
  37981. height: math.unit(10000, "miles")
  37982. },
  37983. {
  37984. name: "Solar Sized Bat",
  37985. height: math.unit(100, "AU")
  37986. },
  37987. {
  37988. name: "Galactic Bat",
  37989. height: math.unit(200000, "lightyears")
  37990. },
  37991. {
  37992. name: "Universally Known Bat",
  37993. height: math.unit(1, "universe")
  37994. },
  37995. ]
  37996. ))
  37997. characterMakers.push(() => makeCharacter(
  37998. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37999. {
  38000. front: {
  38001. height: math.unit(6 + 11/12, "feet"),
  38002. weight: math.unit(250, "lb"),
  38003. name: "Front",
  38004. image: {
  38005. source: "./media/characters/cookiecat/front.svg",
  38006. extra: 893/827,
  38007. bottom: 14/907
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Micro",
  38014. height: math.unit(3, "inches")
  38015. },
  38016. {
  38017. name: "Normal",
  38018. height: math.unit(6 + 11/12, "feet"),
  38019. default: true
  38020. },
  38021. {
  38022. name: "Macro",
  38023. height: math.unit(100, "feet")
  38024. },
  38025. {
  38026. name: "Macro+",
  38027. height: math.unit(404, "feet")
  38028. },
  38029. {
  38030. name: "Megamacro",
  38031. height: math.unit(165, "miles")
  38032. },
  38033. {
  38034. name: "Planetary",
  38035. height: math.unit(4600, "miles")
  38036. },
  38037. ]
  38038. ))
  38039. characterMakers.push(() => makeCharacter(
  38040. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38041. {
  38042. front: {
  38043. height: math.unit(10 + 3/12, "feet"),
  38044. weight: math.unit(1500, "lb"),
  38045. name: "Front",
  38046. image: {
  38047. source: "./media/characters/tux-kusanagi/front.svg",
  38048. extra: 944/840,
  38049. bottom: 39/983
  38050. }
  38051. },
  38052. back: {
  38053. height: math.unit(10 + 3/12, "feet"),
  38054. weight: math.unit(1500, "lb"),
  38055. name: "Back",
  38056. image: {
  38057. source: "./media/characters/tux-kusanagi/back.svg",
  38058. extra: 941/842,
  38059. bottom: 28/969
  38060. }
  38061. },
  38062. rump: {
  38063. height: math.unit(5.25, "feet"),
  38064. name: "Rump",
  38065. image: {
  38066. source: "./media/characters/tux-kusanagi/rump.svg"
  38067. }
  38068. },
  38069. beak: {
  38070. height: math.unit(1.54, "feet"),
  38071. name: "Beak",
  38072. image: {
  38073. source: "./media/characters/tux-kusanagi/beak.svg"
  38074. }
  38075. },
  38076. },
  38077. [
  38078. {
  38079. name: "Normal",
  38080. height: math.unit(10 + 3/12, "feet"),
  38081. default: true
  38082. },
  38083. ]
  38084. ))
  38085. characterMakers.push(() => makeCharacter(
  38086. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38087. {
  38088. front: {
  38089. height: math.unit(58, "feet"),
  38090. weight: math.unit(200, "tons"),
  38091. name: "Front",
  38092. image: {
  38093. source: "./media/characters/uzarmazari/front.svg",
  38094. extra: 1575/1455,
  38095. bottom: 152/1727
  38096. }
  38097. },
  38098. back: {
  38099. height: math.unit(58, "feet"),
  38100. weight: math.unit(200, "tons"),
  38101. name: "Back",
  38102. image: {
  38103. source: "./media/characters/uzarmazari/back.svg",
  38104. extra: 1585/1510,
  38105. bottom: 157/1742
  38106. }
  38107. },
  38108. head: {
  38109. height: math.unit(26, "feet"),
  38110. name: "Head",
  38111. image: {
  38112. source: "./media/characters/uzarmazari/head.svg"
  38113. }
  38114. },
  38115. },
  38116. [
  38117. {
  38118. name: "Normal",
  38119. height: math.unit(58, "feet"),
  38120. default: true
  38121. },
  38122. ]
  38123. ))
  38124. characterMakers.push(() => makeCharacter(
  38125. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38126. {
  38127. side: {
  38128. height: math.unit(15, "feet"),
  38129. name: "Side",
  38130. image: {
  38131. source: "./media/characters/akitu/side.svg",
  38132. extra: 1421/1321,
  38133. bottom: 157/1578
  38134. }
  38135. },
  38136. front: {
  38137. height: math.unit(15, "feet"),
  38138. name: "Front",
  38139. image: {
  38140. source: "./media/characters/akitu/front.svg",
  38141. extra: 1435/1326,
  38142. bottom: 232/1667
  38143. }
  38144. },
  38145. },
  38146. [
  38147. {
  38148. name: "Normal",
  38149. height: math.unit(15, "feet"),
  38150. default: true
  38151. },
  38152. ]
  38153. ))
  38154. characterMakers.push(() => makeCharacter(
  38155. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38156. {
  38157. front: {
  38158. height: math.unit(10 + 8/12, "feet"),
  38159. name: "Front",
  38160. image: {
  38161. source: "./media/characters/azalie-croixland/front.svg",
  38162. extra: 1972/1856,
  38163. bottom: 31/2003
  38164. }
  38165. },
  38166. },
  38167. [
  38168. {
  38169. name: "Original Height",
  38170. height: math.unit(5 + 4/12, "feet")
  38171. },
  38172. {
  38173. name: "Normal Height",
  38174. height: math.unit(10 + 8/12, "feet"),
  38175. default: true
  38176. },
  38177. ]
  38178. ))
  38179. characterMakers.push(() => makeCharacter(
  38180. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38181. {
  38182. side: {
  38183. height: math.unit(7 + 1/12, "feet"),
  38184. weight: math.unit(245, "lb"),
  38185. name: "Side",
  38186. image: {
  38187. source: "./media/characters/kavus-kazian/side.svg",
  38188. extra: 349/342,
  38189. bottom: 15/364
  38190. }
  38191. },
  38192. },
  38193. [
  38194. {
  38195. name: "Normal",
  38196. height: math.unit(7 + 1/12, "feet"),
  38197. default: true
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38203. {
  38204. normalFront: {
  38205. height: math.unit(5 + 11/12, "feet"),
  38206. name: "Front",
  38207. image: {
  38208. source: "./media/characters/moonlight-rose/normal-front.svg",
  38209. extra: 1980/1825,
  38210. bottom: 18/1998
  38211. },
  38212. form: "normal",
  38213. default: true
  38214. },
  38215. normalBack: {
  38216. height: math.unit(5 + 11/12, "feet"),
  38217. name: "Back",
  38218. image: {
  38219. source: "./media/characters/moonlight-rose/normal-back.svg",
  38220. extra: 2010/1839,
  38221. bottom: 10/2020
  38222. },
  38223. form: "normal"
  38224. },
  38225. demonFront: {
  38226. height: math.unit(1.5, "earths"),
  38227. name: "Front",
  38228. image: {
  38229. source: "./media/characters/moonlight-rose/demon.svg",
  38230. extra: 1400/1294,
  38231. bottom: 45/1445
  38232. },
  38233. form: "demon",
  38234. default: true
  38235. },
  38236. terraFront: {
  38237. height: math.unit(1.5, "earths"),
  38238. name: "Front",
  38239. image: {
  38240. source: "./media/characters/moonlight-rose/terra.svg"
  38241. },
  38242. form: "terra",
  38243. default: true
  38244. },
  38245. jupiterFront: {
  38246. height: math.unit(69911*2, "km"),
  38247. name: "Front",
  38248. image: {
  38249. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38250. extra: 1367/1286,
  38251. bottom: 55/1422
  38252. },
  38253. form: "jupiter",
  38254. default: true
  38255. },
  38256. neptuneFront: {
  38257. height: math.unit(24622*2, "feet"),
  38258. name: "Front",
  38259. image: {
  38260. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38261. extra: 1851/1712,
  38262. bottom: 0/1851
  38263. },
  38264. form: "neptune",
  38265. default: true
  38266. },
  38267. },
  38268. [
  38269. {
  38270. name: "\"Natural\" Height",
  38271. height: math.unit(5 + 11/12, "feet"),
  38272. form: "normal"
  38273. },
  38274. {
  38275. name: "Smallest comfortable size",
  38276. height: math.unit(40, "meters"),
  38277. form: "normal"
  38278. },
  38279. {
  38280. name: "Common size",
  38281. height: math.unit(50, "km"),
  38282. form: "normal",
  38283. default: true
  38284. },
  38285. {
  38286. name: "Normal",
  38287. height: math.unit(1.5, "earths"),
  38288. form: "demon",
  38289. default: true
  38290. },
  38291. {
  38292. name: "Universal",
  38293. height: math.unit(15, "universes"),
  38294. form: "demon"
  38295. },
  38296. {
  38297. name: "Earth",
  38298. height: math.unit(1.5, "earths"),
  38299. form: "terra",
  38300. default: true
  38301. },
  38302. {
  38303. name: "Super Earth",
  38304. height: math.unit(67.5, "earths"),
  38305. form: "terra"
  38306. },
  38307. {
  38308. name: "Doesn't fit in a solar system...",
  38309. height: math.unit(1, "galaxy"),
  38310. form: "terra"
  38311. },
  38312. {
  38313. name: "Saturn",
  38314. height: math.unit(58232*2, "km"),
  38315. form: "jupiter"
  38316. },
  38317. {
  38318. name: "Jupiter",
  38319. height: math.unit(69911*2, "km"),
  38320. form: "jupiter",
  38321. default: true
  38322. },
  38323. {
  38324. name: "HD 100546 b",
  38325. height: math.unit(482938, "km"),
  38326. form: "jupiter"
  38327. },
  38328. {
  38329. name: "Enceladus",
  38330. height: math.unit(513*2, "km"),
  38331. form: "neptune"
  38332. },
  38333. {
  38334. name: "Europe",
  38335. height: math.unit(1560*2, "km"),
  38336. form: "neptune"
  38337. },
  38338. {
  38339. name: "Neptune",
  38340. height: math.unit(24622*2, "km"),
  38341. form: "neptune",
  38342. default: true
  38343. },
  38344. {
  38345. name: "CoRoT-9b",
  38346. height: math.unit(75067*2, "km"),
  38347. form: "neptune"
  38348. },
  38349. ],
  38350. {
  38351. "normal": {
  38352. name: "Normal",
  38353. default: true
  38354. },
  38355. "demon": {
  38356. name: "Demon"
  38357. },
  38358. "terra": {
  38359. name: "Terra"
  38360. },
  38361. "jupiter": {
  38362. name: "Jupiter"
  38363. },
  38364. "neptune": {
  38365. name: "Neptune"
  38366. }
  38367. }
  38368. ))
  38369. characterMakers.push(() => makeCharacter(
  38370. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38371. {
  38372. front: {
  38373. height: math.unit(16, "feet"),
  38374. weight: math.unit(610, "kg"),
  38375. name: "Front",
  38376. image: {
  38377. source: "./media/characters/huckle/front.svg",
  38378. extra: 1731/1625,
  38379. bottom: 33/1764
  38380. }
  38381. },
  38382. back: {
  38383. height: math.unit(16, "feet"),
  38384. weight: math.unit(610, "kg"),
  38385. name: "Back",
  38386. image: {
  38387. source: "./media/characters/huckle/back.svg",
  38388. extra: 1738/1651,
  38389. bottom: 37/1775
  38390. }
  38391. },
  38392. laughing: {
  38393. height: math.unit(3.75, "feet"),
  38394. name: "Laughing",
  38395. image: {
  38396. source: "./media/characters/huckle/laughing.svg"
  38397. }
  38398. },
  38399. angry: {
  38400. height: math.unit(4.15, "feet"),
  38401. name: "Angry",
  38402. image: {
  38403. source: "./media/characters/huckle/angry.svg"
  38404. }
  38405. },
  38406. },
  38407. [
  38408. {
  38409. name: "Normal",
  38410. height: math.unit(16, "feet"),
  38411. default: true
  38412. },
  38413. {
  38414. name: "Mini Macro",
  38415. height: math.unit(463, "feet")
  38416. },
  38417. {
  38418. name: "Macro",
  38419. height: math.unit(1680, "meters")
  38420. },
  38421. {
  38422. name: "Mega Macro",
  38423. height: math.unit(175, "km")
  38424. },
  38425. {
  38426. name: "Terra Macro",
  38427. height: math.unit(32, "gigameters")
  38428. },
  38429. {
  38430. name: "Multiverse+",
  38431. height: math.unit(2.56e23, "yottameters")
  38432. },
  38433. ]
  38434. ))
  38435. characterMakers.push(() => makeCharacter(
  38436. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38437. {
  38438. front: {
  38439. height: math.unit(6 + 9/12, "feet"),
  38440. weight: math.unit(280, "lb"),
  38441. name: "Front",
  38442. image: {
  38443. source: "./media/characters/candy/front.svg",
  38444. extra: 234/217,
  38445. bottom: 11/245
  38446. }
  38447. },
  38448. },
  38449. [
  38450. {
  38451. name: "Really Small",
  38452. height: math.unit(0.1, "nm")
  38453. },
  38454. {
  38455. name: "Micro",
  38456. height: math.unit(2, "inches")
  38457. },
  38458. {
  38459. name: "Normal",
  38460. height: math.unit(6 + 9/12, "feet"),
  38461. default: true
  38462. },
  38463. {
  38464. name: "Small Macro",
  38465. height: math.unit(69, "feet")
  38466. },
  38467. {
  38468. name: "Macro",
  38469. height: math.unit(160, "feet")
  38470. },
  38471. {
  38472. name: "Megamacro",
  38473. height: math.unit(22000, "miles")
  38474. },
  38475. {
  38476. name: "Gigamacro",
  38477. height: math.unit(50000, "miles")
  38478. },
  38479. ]
  38480. ))
  38481. characterMakers.push(() => makeCharacter(
  38482. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38483. {
  38484. front: {
  38485. height: math.unit(4, "feet"),
  38486. weight: math.unit(90, "lb"),
  38487. name: "Front",
  38488. image: {
  38489. source: "./media/characters/joey-mcdonald/front.svg",
  38490. extra: 1059/852,
  38491. bottom: 33/1092
  38492. }
  38493. },
  38494. back: {
  38495. height: math.unit(4, "feet"),
  38496. weight: math.unit(90, "lb"),
  38497. name: "Back",
  38498. image: {
  38499. source: "./media/characters/joey-mcdonald/back.svg",
  38500. extra: 1077/879,
  38501. bottom: 5/1082
  38502. }
  38503. },
  38504. frontKobold: {
  38505. height: math.unit(4, "feet"),
  38506. weight: math.unit(100, "lb"),
  38507. name: "Front-kobold",
  38508. image: {
  38509. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38510. extra: 1480/1367,
  38511. bottom: 0/1480
  38512. }
  38513. },
  38514. backKobold: {
  38515. height: math.unit(4, "feet"),
  38516. weight: math.unit(100, "lb"),
  38517. name: "Back-kobold",
  38518. image: {
  38519. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38520. extra: 1449/1361,
  38521. bottom: 0/1449
  38522. }
  38523. },
  38524. },
  38525. [
  38526. {
  38527. name: "Normal",
  38528. height: math.unit(4, "feet"),
  38529. default: true
  38530. },
  38531. ]
  38532. ))
  38533. characterMakers.push(() => makeCharacter(
  38534. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38535. {
  38536. front: {
  38537. height: math.unit(12 + 6/12, "feet"),
  38538. name: "Front",
  38539. image: {
  38540. source: "./media/characters/kass-lockheed/front.svg",
  38541. extra: 354/343,
  38542. bottom: 9/363
  38543. }
  38544. },
  38545. back: {
  38546. height: math.unit(12 + 6/12, "feet"),
  38547. name: "Back",
  38548. image: {
  38549. source: "./media/characters/kass-lockheed/back.svg",
  38550. extra: 364/352,
  38551. bottom: 3/367
  38552. }
  38553. },
  38554. dick: {
  38555. height: math.unit(3.12, "feet"),
  38556. name: "Dick",
  38557. image: {
  38558. source: "./media/characters/kass-lockheed/dick.svg"
  38559. }
  38560. },
  38561. head: {
  38562. height: math.unit(2.6, "feet"),
  38563. name: "Head",
  38564. image: {
  38565. source: "./media/characters/kass-lockheed/head.svg"
  38566. }
  38567. },
  38568. bleh: {
  38569. height: math.unit(2.85, "feet"),
  38570. name: "Bleh",
  38571. image: {
  38572. source: "./media/characters/kass-lockheed/bleh.svg"
  38573. }
  38574. },
  38575. smug: {
  38576. height: math.unit(2.85, "feet"),
  38577. name: "Smug",
  38578. image: {
  38579. source: "./media/characters/kass-lockheed/smug.svg"
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(12 + 6/12, "feet"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(6 + 2/12, "feet"),
  38596. name: "Front",
  38597. image: {
  38598. source: "./media/characters/taylor/front.svg",
  38599. extra: 639/495,
  38600. bottom: 12/651
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Normal",
  38607. height: math.unit(6 + 2/12, "feet"),
  38608. default: true
  38609. },
  38610. {
  38611. name: "Big",
  38612. height: math.unit(15, "feet")
  38613. },
  38614. {
  38615. name: "Lorg",
  38616. height: math.unit(80, "feet")
  38617. },
  38618. {
  38619. name: "Too Lorg",
  38620. height: math.unit(120, "feet")
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(15, "feet"),
  38629. name: "Front",
  38630. image: {
  38631. source: "./media/characters/kaizer/front.svg",
  38632. extra: 1612/1436,
  38633. bottom: 43/1655
  38634. }
  38635. },
  38636. },
  38637. [
  38638. {
  38639. name: "Normal",
  38640. height: math.unit(15, "feet"),
  38641. default: true
  38642. },
  38643. ]
  38644. ))
  38645. characterMakers.push(() => makeCharacter(
  38646. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38647. {
  38648. front: {
  38649. height: math.unit(2, "feet"),
  38650. weight: math.unit(30, "lb"),
  38651. name: "Front",
  38652. image: {
  38653. source: "./media/characters/sandy/front.svg",
  38654. extra: 1439/1307,
  38655. bottom: 194/1633
  38656. }
  38657. },
  38658. },
  38659. [
  38660. {
  38661. name: "Normal",
  38662. height: math.unit(2, "feet"),
  38663. default: true
  38664. },
  38665. ]
  38666. ))
  38667. characterMakers.push(() => makeCharacter(
  38668. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38669. {
  38670. front: {
  38671. height: math.unit(3, "feet"),
  38672. name: "Front",
  38673. image: {
  38674. source: "./media/characters/mellvi/front.svg",
  38675. extra: 1831/1630,
  38676. bottom: 58/1889
  38677. }
  38678. },
  38679. },
  38680. [
  38681. {
  38682. name: "Normal",
  38683. height: math.unit(3, "feet"),
  38684. default: true
  38685. },
  38686. ]
  38687. ))
  38688. characterMakers.push(() => makeCharacter(
  38689. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38690. {
  38691. front: {
  38692. height: math.unit(5 + 11/12, "feet"),
  38693. weight: math.unit(200, "lb"),
  38694. name: "Front",
  38695. image: {
  38696. source: "./media/characters/shirou/front.svg",
  38697. extra: 2491/2383,
  38698. bottom: 189/2680
  38699. }
  38700. },
  38701. back: {
  38702. height: math.unit(5 + 11/12, "feet"),
  38703. weight: math.unit(200, "lb"),
  38704. name: "Back",
  38705. image: {
  38706. source: "./media/characters/shirou/back.svg",
  38707. extra: 2554/2450,
  38708. bottom: 76/2630
  38709. }
  38710. },
  38711. },
  38712. [
  38713. {
  38714. name: "Normal",
  38715. height: math.unit(5 + 11/12, "feet"),
  38716. default: true
  38717. },
  38718. ]
  38719. ))
  38720. characterMakers.push(() => makeCharacter(
  38721. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38722. {
  38723. front: {
  38724. height: math.unit(6 + 3/12, "feet"),
  38725. weight: math.unit(177, "lb"),
  38726. name: "Front",
  38727. image: {
  38728. source: "./media/characters/noryu/front.svg",
  38729. extra: 973/885,
  38730. bottom: 10/983
  38731. }
  38732. },
  38733. },
  38734. [
  38735. {
  38736. name: "Normal",
  38737. height: math.unit(6 + 3/12, "feet"),
  38738. default: true
  38739. },
  38740. ]
  38741. ))
  38742. characterMakers.push(() => makeCharacter(
  38743. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38744. {
  38745. front: {
  38746. height: math.unit(5 + 6/12, "feet"),
  38747. weight: math.unit(170, "lb"),
  38748. name: "Front",
  38749. image: {
  38750. source: "./media/characters/mevolas-rubenido/front.svg",
  38751. extra: 2109/1901,
  38752. bottom: 96/2205
  38753. }
  38754. },
  38755. },
  38756. [
  38757. {
  38758. name: "Normal",
  38759. height: math.unit(5 + 6/12, "feet"),
  38760. default: true
  38761. },
  38762. ]
  38763. ))
  38764. characterMakers.push(() => makeCharacter(
  38765. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38766. {
  38767. front: {
  38768. height: math.unit(100, "feet"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/dee/front.svg",
  38772. extra: 2153/2036,
  38773. bottom: 59/2212
  38774. }
  38775. },
  38776. back: {
  38777. height: math.unit(100, "feet"),
  38778. name: "Back",
  38779. image: {
  38780. source: "./media/characters/dee/back.svg",
  38781. extra: 2183/2058,
  38782. bottom: 75/2258
  38783. }
  38784. },
  38785. foot: {
  38786. height: math.unit(19.43, "feet"),
  38787. name: "Foot",
  38788. image: {
  38789. source: "./media/characters/dee/foot.svg"
  38790. }
  38791. },
  38792. hoof: {
  38793. height: math.unit(20.6, "feet"),
  38794. name: "Hoof",
  38795. image: {
  38796. source: "./media/characters/dee/hoof.svg"
  38797. }
  38798. },
  38799. },
  38800. [
  38801. {
  38802. name: "Macro",
  38803. height: math.unit(100, "feet"),
  38804. default: true
  38805. },
  38806. ]
  38807. ))
  38808. characterMakers.push(() => makeCharacter(
  38809. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38810. {
  38811. front: {
  38812. height: math.unit(5 + 6/12, "feet"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/teh/front.svg",
  38816. extra: 1002/847,
  38817. bottom: 62/1064
  38818. }
  38819. },
  38820. },
  38821. [
  38822. {
  38823. name: "Normal",
  38824. height: math.unit(5 + 6/12, "feet"),
  38825. default: true
  38826. },
  38827. ]
  38828. ))
  38829. characterMakers.push(() => makeCharacter(
  38830. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38831. {
  38832. side: {
  38833. height: math.unit(6 + 1/12, "feet"),
  38834. weight: math.unit(204, "lb"),
  38835. name: "Side",
  38836. image: {
  38837. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38838. extra: 974/775,
  38839. bottom: 169/1143
  38840. }
  38841. },
  38842. sitting: {
  38843. height: math.unit(6 + 2/12, "feet"),
  38844. weight: math.unit(204, "lb"),
  38845. name: "Sitting",
  38846. image: {
  38847. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38848. extra: 1175/964,
  38849. bottom: 378/1553
  38850. }
  38851. },
  38852. },
  38853. [
  38854. {
  38855. name: "Normal",
  38856. height: math.unit(6 + 1/12, "feet"),
  38857. default: true
  38858. },
  38859. ]
  38860. ))
  38861. characterMakers.push(() => makeCharacter(
  38862. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38863. {
  38864. front: {
  38865. height: math.unit(6, "inches"),
  38866. name: "Front",
  38867. image: {
  38868. source: "./media/characters/tululi/front.svg",
  38869. extra: 1997/1876,
  38870. bottom: 20/2017
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Normal",
  38877. height: math.unit(6, "inches"),
  38878. default: true
  38879. },
  38880. ]
  38881. ))
  38882. characterMakers.push(() => makeCharacter(
  38883. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38884. {
  38885. front: {
  38886. height: math.unit(4 + 1/12, "feet"),
  38887. name: "Front",
  38888. image: {
  38889. source: "./media/characters/star/front.svg",
  38890. extra: 1493/1189,
  38891. bottom: 48/1541
  38892. }
  38893. },
  38894. },
  38895. [
  38896. {
  38897. name: "Normal",
  38898. height: math.unit(4 + 1/12, "feet"),
  38899. default: true
  38900. },
  38901. ]
  38902. ))
  38903. characterMakers.push(() => makeCharacter(
  38904. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38905. {
  38906. front: {
  38907. height: math.unit(6 + 3/12, "feet"),
  38908. name: "Front",
  38909. image: {
  38910. source: "./media/characters/comet/front.svg",
  38911. extra: 1681/1462,
  38912. bottom: 26/1707
  38913. }
  38914. },
  38915. },
  38916. [
  38917. {
  38918. name: "Normal",
  38919. height: math.unit(6 + 3/12, "feet"),
  38920. default: true
  38921. },
  38922. ]
  38923. ))
  38924. characterMakers.push(() => makeCharacter(
  38925. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38926. {
  38927. front: {
  38928. height: math.unit(950, "feet"),
  38929. name: "Front",
  38930. image: {
  38931. source: "./media/characters/vortex/front.svg",
  38932. extra: 1497/1434,
  38933. bottom: 56/1553
  38934. }
  38935. },
  38936. maw: {
  38937. height: math.unit(285, "feet"),
  38938. name: "Maw",
  38939. image: {
  38940. source: "./media/characters/vortex/maw.svg"
  38941. }
  38942. },
  38943. },
  38944. [
  38945. {
  38946. name: "Macro",
  38947. height: math.unit(950, "feet"),
  38948. default: true
  38949. },
  38950. ]
  38951. ))
  38952. characterMakers.push(() => makeCharacter(
  38953. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38954. {
  38955. front: {
  38956. height: math.unit(600, "feet"),
  38957. weight: math.unit(0.02, "grams"),
  38958. name: "Front",
  38959. image: {
  38960. source: "./media/characters/doodle/front.svg",
  38961. extra: 1578/1413,
  38962. bottom: 37/1615
  38963. }
  38964. },
  38965. },
  38966. [
  38967. {
  38968. name: "Macro",
  38969. height: math.unit(600, "feet"),
  38970. default: true
  38971. },
  38972. ]
  38973. ))
  38974. characterMakers.push(() => makeCharacter(
  38975. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38976. {
  38977. front: {
  38978. height: math.unit(6 + 6/12, "feet"),
  38979. name: "Front",
  38980. image: {
  38981. source: "./media/characters/jai/front.svg",
  38982. extra: 1645/1534,
  38983. bottom: 115/1760
  38984. }
  38985. },
  38986. },
  38987. [
  38988. {
  38989. name: "Normal",
  38990. height: math.unit(6 + 6/12, "feet"),
  38991. default: true
  38992. },
  38993. ]
  38994. ))
  38995. characterMakers.push(() => makeCharacter(
  38996. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38997. {
  38998. front: {
  38999. height: math.unit(6 + 8/12, "feet"),
  39000. name: "Front",
  39001. image: {
  39002. source: "./media/characters/pixel/front.svg",
  39003. extra: 1900/1735,
  39004. bottom: 63/1963
  39005. }
  39006. },
  39007. },
  39008. [
  39009. {
  39010. name: "Normal",
  39011. height: math.unit(6 + 8/12, "feet"),
  39012. default: true
  39013. },
  39014. ]
  39015. ))
  39016. characterMakers.push(() => makeCharacter(
  39017. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39018. {
  39019. back: {
  39020. height: math.unit(4 + 1/12, "feet"),
  39021. weight: math.unit(75, "lb"),
  39022. name: "Back",
  39023. image: {
  39024. source: "./media/characters/rhett/back.svg",
  39025. extra: 930/878,
  39026. bottom: 25/955
  39027. }
  39028. },
  39029. front: {
  39030. height: math.unit(4 + 1/12, "feet"),
  39031. weight: math.unit(75, "lb"),
  39032. name: "Front",
  39033. image: {
  39034. source: "./media/characters/rhett/front.svg",
  39035. extra: 1682/1586,
  39036. bottom: 92/1774
  39037. }
  39038. },
  39039. },
  39040. [
  39041. {
  39042. name: "Micro",
  39043. height: math.unit(8, "inches")
  39044. },
  39045. {
  39046. name: "Tiny",
  39047. height: math.unit(2, "feet")
  39048. },
  39049. {
  39050. name: "Normal",
  39051. height: math.unit(4 + 1/12, "feet"),
  39052. default: true
  39053. },
  39054. ]
  39055. ))
  39056. characterMakers.push(() => makeCharacter(
  39057. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39058. {
  39059. front: {
  39060. height: math.unit(3 + 3/12, "feet"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/penny/front.svg",
  39064. extra: 1406/1311,
  39065. bottom: 26/1432
  39066. }
  39067. },
  39068. },
  39069. [
  39070. {
  39071. name: "Normal",
  39072. height: math.unit(3 + 3/12, "feet"),
  39073. default: true
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39079. {
  39080. front: {
  39081. height: math.unit(4 + 11/12, "feet"),
  39082. name: "Front",
  39083. image: {
  39084. source: "./media/characters/monty/front.svg",
  39085. extra: 1479/1209,
  39086. bottom: 0/1479
  39087. }
  39088. },
  39089. },
  39090. [
  39091. {
  39092. name: "Normal",
  39093. height: math.unit(4 + 11/12, "feet"),
  39094. default: true
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(8 + 4/12, "feet"),
  39103. name: "Front",
  39104. image: {
  39105. source: "./media/characters/sterling/front.svg",
  39106. extra: 1420/1236,
  39107. bottom: 27/1447
  39108. }
  39109. },
  39110. },
  39111. [
  39112. {
  39113. name: "Normal",
  39114. height: math.unit(8 + 4/12, "feet"),
  39115. default: true
  39116. },
  39117. ]
  39118. ))
  39119. characterMakers.push(() => makeCharacter(
  39120. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39121. {
  39122. front: {
  39123. height: math.unit(15, "feet"),
  39124. name: "Front",
  39125. image: {
  39126. source: "./media/characters/marble/front.svg",
  39127. extra: 973/937,
  39128. bottom: 32/1005
  39129. }
  39130. },
  39131. },
  39132. [
  39133. {
  39134. name: "Normal",
  39135. height: math.unit(15, "feet"),
  39136. default: true
  39137. },
  39138. ]
  39139. ))
  39140. characterMakers.push(() => makeCharacter(
  39141. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39142. {
  39143. front: {
  39144. height: math.unit(3, "inches"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/powder/front.svg",
  39148. extra: 1504/1334,
  39149. bottom: 518/2022
  39150. }
  39151. },
  39152. },
  39153. [
  39154. {
  39155. name: "Normal",
  39156. height: math.unit(3, "inches"),
  39157. default: true
  39158. },
  39159. ]
  39160. ))
  39161. characterMakers.push(() => makeCharacter(
  39162. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39163. {
  39164. front: {
  39165. height: math.unit(4 + 5/12, "feet"),
  39166. name: "Front",
  39167. image: {
  39168. source: "./media/characters/joey-raccoon/front.svg",
  39169. extra: 1273/1197,
  39170. bottom: 0/1273
  39171. }
  39172. },
  39173. },
  39174. [
  39175. {
  39176. name: "Normal",
  39177. height: math.unit(4 + 5/12, "feet"),
  39178. default: true
  39179. },
  39180. ]
  39181. ))
  39182. characterMakers.push(() => makeCharacter(
  39183. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39184. {
  39185. front: {
  39186. height: math.unit(8 + 4/12, "feet"),
  39187. name: "Front",
  39188. image: {
  39189. source: "./media/characters/vick/front.svg",
  39190. extra: 2187/2118,
  39191. bottom: 47/2234
  39192. }
  39193. },
  39194. },
  39195. [
  39196. {
  39197. name: "Normal",
  39198. height: math.unit(8 + 4/12, "feet"),
  39199. default: true
  39200. },
  39201. ]
  39202. ))
  39203. characterMakers.push(() => makeCharacter(
  39204. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39205. {
  39206. front: {
  39207. height: math.unit(5 + 5/12, "feet"),
  39208. name: "Front",
  39209. image: {
  39210. source: "./media/characters/mitsy/front.svg",
  39211. extra: 1842/1695,
  39212. bottom: 0/1842
  39213. }
  39214. },
  39215. },
  39216. [
  39217. {
  39218. name: "Normal",
  39219. height: math.unit(5 + 5/12, "feet"),
  39220. default: true
  39221. },
  39222. ]
  39223. ))
  39224. characterMakers.push(() => makeCharacter(
  39225. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39226. {
  39227. front: {
  39228. height: math.unit(6 + 3/12, "feet"),
  39229. name: "Front",
  39230. image: {
  39231. source: "./media/characters/silvy/front.svg",
  39232. extra: 1995/1836,
  39233. bottom: 225/2220
  39234. }
  39235. },
  39236. },
  39237. [
  39238. {
  39239. name: "Normal",
  39240. height: math.unit(6 + 3/12, "feet"),
  39241. default: true
  39242. },
  39243. ]
  39244. ))
  39245. characterMakers.push(() => makeCharacter(
  39246. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39247. {
  39248. front: {
  39249. height: math.unit(3 + 8/12, "feet"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/rodney/front.svg",
  39253. extra: 1956/1747,
  39254. bottom: 31/1987
  39255. }
  39256. },
  39257. frontDressed: {
  39258. height: math.unit(2.9, "feet"),
  39259. name: "Front (Dressed)",
  39260. image: {
  39261. source: "./media/characters/rodney/front-dressed.svg",
  39262. extra: 1382/1241,
  39263. bottom: 385/1767
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(3 + 8/12, "feet"),
  39271. default: true
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(5 + 9/12, "feet"),
  39280. weight: math.unit(194, "lbs"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/zakail-sudekai/front.svg",
  39284. extra: 2696/2533,
  39285. bottom: 248/2944
  39286. }
  39287. },
  39288. maw: {
  39289. height: math.unit(1.35, "feet"),
  39290. name: "Maw",
  39291. image: {
  39292. source: "./media/characters/zakail-sudekai/maw.svg"
  39293. }
  39294. },
  39295. },
  39296. [
  39297. {
  39298. name: "Normal",
  39299. height: math.unit(5 + 9/12, "feet"),
  39300. default: true
  39301. },
  39302. ]
  39303. ))
  39304. characterMakers.push(() => makeCharacter(
  39305. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39306. {
  39307. front: {
  39308. height: math.unit(8 + 4/12, "feet"),
  39309. weight: math.unit(1200, "lb"),
  39310. name: "Front",
  39311. image: {
  39312. source: "./media/characters/eleanor/front.svg",
  39313. extra: 1226/1192,
  39314. bottom: 52/1278
  39315. }
  39316. },
  39317. back: {
  39318. height: math.unit(8 + 4/12, "feet"),
  39319. weight: math.unit(1200, "lb"),
  39320. name: "Back",
  39321. image: {
  39322. source: "./media/characters/eleanor/back.svg",
  39323. extra: 1242/1184,
  39324. bottom: 60/1302
  39325. }
  39326. },
  39327. head: {
  39328. height: math.unit(2.62, "feet"),
  39329. name: "Head",
  39330. image: {
  39331. source: "./media/characters/eleanor/head.svg"
  39332. }
  39333. },
  39334. },
  39335. [
  39336. {
  39337. name: "Normal",
  39338. height: math.unit(8 + 4/12, "feet"),
  39339. default: true
  39340. },
  39341. ]
  39342. ))
  39343. characterMakers.push(() => makeCharacter(
  39344. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39345. {
  39346. front: {
  39347. height: math.unit(8 + 4/12, "feet"),
  39348. weight: math.unit(750, "lb"),
  39349. name: "Front",
  39350. image: {
  39351. source: "./media/characters/tanya/front.svg",
  39352. extra: 1749/1615,
  39353. bottom: 33/1782
  39354. }
  39355. },
  39356. },
  39357. [
  39358. {
  39359. name: "Normal",
  39360. height: math.unit(8 + 4/12, "feet"),
  39361. default: true
  39362. },
  39363. ]
  39364. ))
  39365. characterMakers.push(() => makeCharacter(
  39366. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39367. {
  39368. front: {
  39369. height: math.unit(5, "feet"),
  39370. weight: math.unit(225, "lb"),
  39371. name: "Front",
  39372. image: {
  39373. source: "./media/characters/cindy/front.svg",
  39374. extra: 1320/1250,
  39375. bottom: 42/1362
  39376. }
  39377. },
  39378. frontDressed: {
  39379. height: math.unit(5, "feet"),
  39380. weight: math.unit(225, "lb"),
  39381. name: "Front (Dressed)",
  39382. image: {
  39383. source: "./media/characters/cindy/front-dressed.svg",
  39384. extra: 1320/1250,
  39385. bottom: 42/1362
  39386. }
  39387. },
  39388. back: {
  39389. height: math.unit(5, "feet"),
  39390. weight: math.unit(225, "lb"),
  39391. name: "Back",
  39392. image: {
  39393. source: "./media/characters/cindy/back.svg",
  39394. extra: 1384/1346,
  39395. bottom: 14/1398
  39396. }
  39397. },
  39398. },
  39399. [
  39400. {
  39401. name: "Normal",
  39402. height: math.unit(5, "feet"),
  39403. default: true
  39404. },
  39405. ]
  39406. ))
  39407. characterMakers.push(() => makeCharacter(
  39408. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39409. {
  39410. front: {
  39411. height: math.unit(6 + 9/12, "feet"),
  39412. weight: math.unit(440, "lb"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/wilbur-owen/front.svg",
  39416. extra: 1575/1448,
  39417. bottom: 72/1647
  39418. }
  39419. },
  39420. back: {
  39421. height: math.unit(6 + 9/12, "feet"),
  39422. weight: math.unit(440, "lb"),
  39423. name: "Back",
  39424. image: {
  39425. source: "./media/characters/wilbur-owen/back.svg",
  39426. extra: 1578/1445,
  39427. bottom: 36/1614
  39428. }
  39429. },
  39430. },
  39431. [
  39432. {
  39433. name: "Normal",
  39434. height: math.unit(6 + 9/12, "feet"),
  39435. default: true
  39436. },
  39437. ]
  39438. ))
  39439. characterMakers.push(() => makeCharacter(
  39440. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39441. {
  39442. front: {
  39443. height: math.unit(6 + 5/12, "feet"),
  39444. weight: math.unit(650, "lb"),
  39445. name: "Front",
  39446. image: {
  39447. source: "./media/characters/keegan/front.svg",
  39448. extra: 2387/2198,
  39449. bottom: 33/2420
  39450. }
  39451. },
  39452. side: {
  39453. height: math.unit(6 + 5/12, "feet"),
  39454. weight: math.unit(650, "lb"),
  39455. name: "Side",
  39456. image: {
  39457. source: "./media/characters/keegan/side.svg",
  39458. extra: 2390/2202,
  39459. bottom: 47/2437
  39460. }
  39461. },
  39462. back: {
  39463. height: math.unit(6 + 5/12, "feet"),
  39464. weight: math.unit(650, "lb"),
  39465. name: "Back",
  39466. image: {
  39467. source: "./media/characters/keegan/back.svg",
  39468. extra: 2418/2268,
  39469. bottom: 15/2433
  39470. }
  39471. },
  39472. frontSfw: {
  39473. height: math.unit(6 + 5/12, "feet"),
  39474. weight: math.unit(650, "lb"),
  39475. name: "Front (SFW)",
  39476. image: {
  39477. source: "./media/characters/keegan/front-sfw.svg",
  39478. extra: 2387/2198,
  39479. bottom: 33/2420
  39480. }
  39481. },
  39482. beans: {
  39483. height: math.unit(1.85, "feet"),
  39484. name: "Beans",
  39485. image: {
  39486. source: "./media/characters/keegan/beans.svg"
  39487. }
  39488. },
  39489. },
  39490. [
  39491. {
  39492. name: "Normal",
  39493. height: math.unit(6 + 5/12, "feet"),
  39494. default: true
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(9, "feet"),
  39503. name: "Front",
  39504. image: {
  39505. source: "./media/characters/colton/front.svg",
  39506. extra: 1589/1326,
  39507. bottom: 139/1728
  39508. }
  39509. },
  39510. },
  39511. [
  39512. {
  39513. name: "Normal",
  39514. height: math.unit(9, "feet"),
  39515. default: true
  39516. },
  39517. ]
  39518. ))
  39519. characterMakers.push(() => makeCharacter(
  39520. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39521. {
  39522. front: {
  39523. height: math.unit(2 + 9/12, "feet"),
  39524. name: "Front",
  39525. image: {
  39526. source: "./media/characters/bora/front.svg",
  39527. extra: 1265/1250,
  39528. bottom: 24/1289
  39529. }
  39530. },
  39531. },
  39532. [
  39533. {
  39534. name: "Normal",
  39535. height: math.unit(2 + 9/12, "feet"),
  39536. default: true
  39537. },
  39538. ]
  39539. ))
  39540. characterMakers.push(() => makeCharacter(
  39541. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39542. {
  39543. front: {
  39544. height: math.unit(8, "feet"),
  39545. name: "Front",
  39546. image: {
  39547. source: "./media/characters/myu-myu/front.svg",
  39548. extra: 1949/1857,
  39549. bottom: 90/2039
  39550. }
  39551. },
  39552. },
  39553. [
  39554. {
  39555. name: "Normal",
  39556. height: math.unit(8, "feet"),
  39557. default: true
  39558. },
  39559. {
  39560. name: "Big",
  39561. height: math.unit(15, "feet")
  39562. },
  39563. {
  39564. name: "BIG",
  39565. height: math.unit(25, "feet")
  39566. },
  39567. ]
  39568. ))
  39569. characterMakers.push(() => makeCharacter(
  39570. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39571. {
  39572. side: {
  39573. height: math.unit(7 + 5/12, "feet"),
  39574. weight: math.unit(2800, "lb"),
  39575. name: "Side",
  39576. image: {
  39577. source: "./media/characters/haloren/side.svg",
  39578. extra: 1793/409,
  39579. bottom: 59/1852
  39580. }
  39581. },
  39582. frontPaw: {
  39583. height: math.unit(2.36, "feet"),
  39584. name: "Front paw",
  39585. image: {
  39586. source: "./media/characters/haloren/front-paw.svg"
  39587. }
  39588. },
  39589. hindPaw: {
  39590. height: math.unit(3.18, "feet"),
  39591. name: "Hind paw",
  39592. image: {
  39593. source: "./media/characters/haloren/hind-paw.svg"
  39594. }
  39595. },
  39596. maw: {
  39597. height: math.unit(5.05, "feet"),
  39598. name: "Maw",
  39599. image: {
  39600. source: "./media/characters/haloren/maw.svg"
  39601. }
  39602. },
  39603. dick: {
  39604. height: math.unit(2.90, "feet"),
  39605. name: "Dick",
  39606. image: {
  39607. source: "./media/characters/haloren/dick.svg"
  39608. }
  39609. },
  39610. },
  39611. [
  39612. {
  39613. name: "Normal",
  39614. height: math.unit(7 + 5/12, "feet"),
  39615. default: true
  39616. },
  39617. {
  39618. name: "Enhanced",
  39619. height: math.unit(14 + 3/12, "feet")
  39620. },
  39621. ]
  39622. ))
  39623. characterMakers.push(() => makeCharacter(
  39624. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39625. {
  39626. front: {
  39627. height: math.unit(171, "cm"),
  39628. name: "Front",
  39629. image: {
  39630. source: "./media/characters/kimmy/front.svg",
  39631. extra: 1491/1435,
  39632. bottom: 53/1544
  39633. }
  39634. },
  39635. },
  39636. [
  39637. {
  39638. name: "Small",
  39639. height: math.unit(9, "cm")
  39640. },
  39641. {
  39642. name: "Normal",
  39643. height: math.unit(171, "cm"),
  39644. default: true
  39645. },
  39646. ]
  39647. ))
  39648. characterMakers.push(() => makeCharacter(
  39649. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39650. {
  39651. front: {
  39652. height: math.unit(8, "feet"),
  39653. weight: math.unit(300, "lb"),
  39654. name: "Front",
  39655. image: {
  39656. source: "./media/characters/galeboomer/front.svg",
  39657. extra: 4651/4415,
  39658. bottom: 162/4813
  39659. }
  39660. },
  39661. back: {
  39662. height: math.unit(8, "feet"),
  39663. weight: math.unit(300, "lb"),
  39664. name: "Back",
  39665. image: {
  39666. source: "./media/characters/galeboomer/back.svg",
  39667. extra: 4544/4314,
  39668. bottom: 16/4560
  39669. }
  39670. },
  39671. frontAlt: {
  39672. height: math.unit(8, "feet"),
  39673. weight: math.unit(300, "lb"),
  39674. name: "Front (Alt)",
  39675. image: {
  39676. source: "./media/characters/galeboomer/front-alt.svg",
  39677. extra: 4458/4228,
  39678. bottom: 68/4526
  39679. }
  39680. },
  39681. maw: {
  39682. height: math.unit(1.2, "feet"),
  39683. name: "Maw",
  39684. image: {
  39685. source: "./media/characters/galeboomer/maw.svg"
  39686. }
  39687. },
  39688. },
  39689. [
  39690. {
  39691. name: "Normal",
  39692. height: math.unit(8, "feet"),
  39693. default: true
  39694. },
  39695. ]
  39696. ))
  39697. characterMakers.push(() => makeCharacter(
  39698. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39699. {
  39700. front: {
  39701. height: math.unit(5 + 9/12, "feet"),
  39702. weight: math.unit(120, "lb"),
  39703. name: "Front",
  39704. image: {
  39705. source: "./media/characters/chyr/front.svg",
  39706. extra: 1323/1254,
  39707. bottom: 63/1386
  39708. }
  39709. },
  39710. back: {
  39711. height: math.unit(5 + 9/12, "feet"),
  39712. weight: math.unit(120, "lb"),
  39713. name: "Back",
  39714. image: {
  39715. source: "./media/characters/chyr/back.svg",
  39716. extra: 1323/1252,
  39717. bottom: 48/1371
  39718. }
  39719. },
  39720. },
  39721. [
  39722. {
  39723. name: "Normal",
  39724. height: math.unit(5 + 9/12, "feet"),
  39725. default: true
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39731. {
  39732. front: {
  39733. height: math.unit(7, "feet"),
  39734. weight: math.unit(310, "lb"),
  39735. name: "Front",
  39736. image: {
  39737. source: "./media/characters/solarus/front.svg",
  39738. extra: 2415/2021,
  39739. bottom: 103/2518
  39740. }
  39741. },
  39742. back: {
  39743. height: math.unit(7, "feet"),
  39744. weight: math.unit(310, "lb"),
  39745. name: "Back",
  39746. image: {
  39747. source: "./media/characters/solarus/back.svg",
  39748. extra: 2463/2089,
  39749. bottom: 79/2542
  39750. }
  39751. },
  39752. },
  39753. [
  39754. {
  39755. name: "Normal",
  39756. height: math.unit(7, "feet"),
  39757. default: true
  39758. },
  39759. ]
  39760. ))
  39761. characterMakers.push(() => makeCharacter(
  39762. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39763. {
  39764. front: {
  39765. height: math.unit(16, "feet"),
  39766. name: "Front",
  39767. image: {
  39768. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39769. extra: 1844/1780,
  39770. bottom: 58/1902
  39771. }
  39772. },
  39773. winterCoat: {
  39774. height: math.unit(16, "feet"),
  39775. name: "Winter Coat",
  39776. image: {
  39777. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39778. extra: 1807/1775,
  39779. bottom: 69/1876
  39780. }
  39781. },
  39782. },
  39783. [
  39784. {
  39785. name: "Normal",
  39786. height: math.unit(16, "feet"),
  39787. default: true
  39788. },
  39789. {
  39790. name: "Chicago Size",
  39791. height: math.unit(560, "feet")
  39792. },
  39793. ]
  39794. ))
  39795. characterMakers.push(() => makeCharacter(
  39796. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39797. {
  39798. front: {
  39799. height: math.unit(11 + 6/12, "feet"),
  39800. weight: math.unit(1366, "lb"),
  39801. name: "Front",
  39802. image: {
  39803. source: "./media/characters/lexor/front.svg",
  39804. extra: 1560/1481,
  39805. bottom: 211/1771
  39806. }
  39807. },
  39808. back: {
  39809. height: math.unit(11 + 6/12, "feet"),
  39810. weight: math.unit(1366, "lb"),
  39811. name: "Back",
  39812. image: {
  39813. source: "./media/characters/lexor/back.svg",
  39814. extra: 1614/1533,
  39815. bottom: 76/1690
  39816. }
  39817. },
  39818. maw: {
  39819. height: math.unit(3, "feet"),
  39820. name: "Maw",
  39821. image: {
  39822. source: "./media/characters/lexor/maw.svg"
  39823. }
  39824. },
  39825. dick: {
  39826. height: math.unit(2.59, "feet"),
  39827. name: "Dick",
  39828. image: {
  39829. source: "./media/characters/lexor/dick.svg"
  39830. }
  39831. },
  39832. },
  39833. [
  39834. {
  39835. name: "Normal",
  39836. height: math.unit(11 + 6/12, "feet"),
  39837. default: true
  39838. },
  39839. ]
  39840. ))
  39841. characterMakers.push(() => makeCharacter(
  39842. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39843. {
  39844. front: {
  39845. height: math.unit(5 + 8/12, "feet"),
  39846. name: "Front",
  39847. image: {
  39848. source: "./media/characters/magnum/front.svg",
  39849. extra: 942/855,
  39850. bottom: 26/968
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Normal",
  39857. height: math.unit(5 + 8/12, "feet"),
  39858. default: true
  39859. },
  39860. ]
  39861. ))
  39862. characterMakers.push(() => makeCharacter(
  39863. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39864. {
  39865. front: {
  39866. height: math.unit(18 + 4/12, "feet"),
  39867. weight: math.unit(1500, "kg"),
  39868. name: "Front",
  39869. image: {
  39870. source: "./media/characters/solas-sharpsman/front.svg",
  39871. extra: 1698/1589,
  39872. bottom: 0/1698
  39873. }
  39874. },
  39875. },
  39876. [
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(18 + 4/12, "feet"),
  39880. default: true
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39886. {
  39887. front: {
  39888. height: math.unit(5 + 5/12, "feet"),
  39889. weight: math.unit(180, "lb"),
  39890. name: "Front",
  39891. image: {
  39892. source: "./media/characters/october/front.svg",
  39893. extra: 1800/1650,
  39894. bottom: 0/1800
  39895. }
  39896. },
  39897. frontNsfw: {
  39898. height: math.unit(5 + 5/12, "feet"),
  39899. weight: math.unit(180, "lb"),
  39900. name: "Front (NSFW)",
  39901. image: {
  39902. source: "./media/characters/october/front-nsfw.svg",
  39903. extra: 1392/1307,
  39904. bottom: 42/1434
  39905. }
  39906. },
  39907. },
  39908. [
  39909. {
  39910. name: "Normal",
  39911. height: math.unit(5 + 5/12, "feet"),
  39912. default: true
  39913. },
  39914. ]
  39915. ))
  39916. characterMakers.push(() => makeCharacter(
  39917. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39918. {
  39919. front: {
  39920. height: math.unit(8 + 6/12, "feet"),
  39921. name: "Front",
  39922. image: {
  39923. source: "./media/characters/essynkardi/front.svg",
  39924. extra: 1541/1457,
  39925. bottom: 47/1588
  39926. }
  39927. },
  39928. },
  39929. [
  39930. {
  39931. name: "Normal",
  39932. height: math.unit(8 + 6/12, "feet"),
  39933. default: true
  39934. },
  39935. ]
  39936. ))
  39937. characterMakers.push(() => makeCharacter(
  39938. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39939. {
  39940. front: {
  39941. height: math.unit(6 + 6/12, "feet"),
  39942. weight: math.unit(7, "lb"),
  39943. name: "Front",
  39944. image: {
  39945. source: "./media/characters/icky/front.svg",
  39946. extra: 813/782,
  39947. bottom: 66/879
  39948. }
  39949. },
  39950. back: {
  39951. height: math.unit(6 + 6/12, "feet"),
  39952. weight: math.unit(7, "lb"),
  39953. name: "Back",
  39954. image: {
  39955. source: "./media/characters/icky/back.svg",
  39956. extra: 754/735,
  39957. bottom: 56/810
  39958. }
  39959. },
  39960. },
  39961. [
  39962. {
  39963. name: "Normal",
  39964. height: math.unit(6 + 6/12, "feet"),
  39965. default: true
  39966. },
  39967. ]
  39968. ))
  39969. characterMakers.push(() => makeCharacter(
  39970. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39971. {
  39972. front: {
  39973. height: math.unit(15, "feet"),
  39974. name: "Front",
  39975. image: {
  39976. source: "./media/characters/rojas/front.svg",
  39977. extra: 1462/1408,
  39978. bottom: 95/1557
  39979. }
  39980. },
  39981. back: {
  39982. height: math.unit(15, "feet"),
  39983. name: "Back",
  39984. image: {
  39985. source: "./media/characters/rojas/back.svg",
  39986. extra: 1023/954,
  39987. bottom: 28/1051
  39988. }
  39989. },
  39990. },
  39991. [
  39992. {
  39993. name: "Normal",
  39994. height: math.unit(15, "feet"),
  39995. default: true
  39996. },
  39997. ]
  39998. ))
  39999. characterMakers.push(() => makeCharacter(
  40000. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40001. {
  40002. frontHuman: {
  40003. height: math.unit(5 + 7/12, "feet"),
  40004. name: "Front (Human)",
  40005. image: {
  40006. source: "./media/characters/alek-dryagan/front-human.svg",
  40007. extra: 1687/1667,
  40008. bottom: 69/1756
  40009. }
  40010. },
  40011. backHuman: {
  40012. height: math.unit(5 + 7/12, "feet"),
  40013. name: "Back (Human)",
  40014. image: {
  40015. source: "./media/characters/alek-dryagan/back-human.svg",
  40016. extra: 1670/1649,
  40017. bottom: 65/1735
  40018. }
  40019. },
  40020. frontDemi: {
  40021. height: math.unit(65, "feet"),
  40022. name: "Front (Demi)",
  40023. image: {
  40024. source: "./media/characters/alek-dryagan/front-demi.svg",
  40025. extra: 1669/1642,
  40026. bottom: 49/1718
  40027. }
  40028. },
  40029. backDemi: {
  40030. height: math.unit(65, "feet"),
  40031. name: "Back (Demi)",
  40032. image: {
  40033. source: "./media/characters/alek-dryagan/back-demi.svg",
  40034. extra: 1658/1637,
  40035. bottom: 40/1698
  40036. }
  40037. },
  40038. mawHuman: {
  40039. height: math.unit(0.3, "feet"),
  40040. name: "Maw (Human)",
  40041. image: {
  40042. source: "./media/characters/alek-dryagan/maw-human.svg"
  40043. }
  40044. },
  40045. mawDemi: {
  40046. height: math.unit(3.8, "feet"),
  40047. name: "Maw (Demi)",
  40048. image: {
  40049. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40050. }
  40051. },
  40052. },
  40053. [
  40054. {
  40055. name: "Normal",
  40056. height: math.unit(5 + 7/12, "feet"),
  40057. default: true
  40058. },
  40059. ]
  40060. ))
  40061. characterMakers.push(() => makeCharacter(
  40062. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40063. {
  40064. frontHuman: {
  40065. height: math.unit(5 + 2/12, "feet"),
  40066. name: "Front (Human)",
  40067. image: {
  40068. source: "./media/characters/gen/front-human.svg",
  40069. extra: 1627/1538,
  40070. bottom: 71/1698
  40071. }
  40072. },
  40073. backHuman: {
  40074. height: math.unit(5 + 2/12, "feet"),
  40075. name: "Back (Human)",
  40076. image: {
  40077. source: "./media/characters/gen/back-human.svg",
  40078. extra: 1638/1548,
  40079. bottom: 69/1707
  40080. }
  40081. },
  40082. frontDemi: {
  40083. height: math.unit(5 + 2/12, "feet"),
  40084. name: "Front (Demi)",
  40085. image: {
  40086. source: "./media/characters/gen/front-demi.svg",
  40087. extra: 1627/1538,
  40088. bottom: 71/1698
  40089. }
  40090. },
  40091. backDemi: {
  40092. height: math.unit(5 + 2/12, "feet"),
  40093. name: "Back (Demi)",
  40094. image: {
  40095. source: "./media/characters/gen/back-demi.svg",
  40096. extra: 1638/1548,
  40097. bottom: 69/1707
  40098. }
  40099. },
  40100. },
  40101. [
  40102. {
  40103. name: "Normal",
  40104. height: math.unit(5 + 2/12, "feet"),
  40105. default: true
  40106. },
  40107. ]
  40108. ))
  40109. characterMakers.push(() => makeCharacter(
  40110. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40111. {
  40112. frontImp: {
  40113. height: math.unit(1 + 11/12, "feet"),
  40114. name: "Front (Imp)",
  40115. image: {
  40116. source: "./media/characters/max-kobold/front-imp.svg",
  40117. extra: 1238/1134,
  40118. bottom: 81/1319
  40119. }
  40120. },
  40121. backImp: {
  40122. height: math.unit(1 + 11/12, "feet"),
  40123. name: "Back (Imp)",
  40124. image: {
  40125. source: "./media/characters/max-kobold/back-imp.svg",
  40126. extra: 1334/1175,
  40127. bottom: 34/1368
  40128. }
  40129. },
  40130. frontDemi: {
  40131. height: math.unit(5 + 9/12, "feet"),
  40132. name: "Front (Demi)",
  40133. image: {
  40134. source: "./media/characters/max-kobold/front-demi.svg",
  40135. extra: 1715/1685,
  40136. bottom: 54/1769
  40137. }
  40138. },
  40139. backDemi: {
  40140. height: math.unit(5 + 9/12, "feet"),
  40141. name: "Back (Demi)",
  40142. image: {
  40143. source: "./media/characters/max-kobold/back-demi.svg",
  40144. extra: 1752/1729,
  40145. bottom: 41/1793
  40146. }
  40147. },
  40148. handImp: {
  40149. height: math.unit(0.45, "feet"),
  40150. name: "Hand (Imp)",
  40151. image: {
  40152. source: "./media/characters/max-kobold/hand.svg"
  40153. }
  40154. },
  40155. pawImp: {
  40156. height: math.unit(0.46, "feet"),
  40157. name: "Paw (Imp)",
  40158. image: {
  40159. source: "./media/characters/max-kobold/paw.svg"
  40160. }
  40161. },
  40162. handDemi: {
  40163. height: math.unit(0.80, "feet"),
  40164. name: "Hand (Demi)",
  40165. image: {
  40166. source: "./media/characters/max-kobold/hand.svg"
  40167. }
  40168. },
  40169. pawDemi: {
  40170. height: math.unit(1.1, "feet"),
  40171. name: "Paw (Demi)",
  40172. image: {
  40173. source: "./media/characters/max-kobold/paw.svg"
  40174. }
  40175. },
  40176. headImp: {
  40177. height: math.unit(1.33, "feet"),
  40178. name: "Head (Imp)",
  40179. image: {
  40180. source: "./media/characters/max-kobold/head-imp.svg"
  40181. }
  40182. },
  40183. mawImp: {
  40184. height: math.unit(0.75, "feet"),
  40185. name: "Maw (Imp)",
  40186. image: {
  40187. source: "./media/characters/max-kobold/maw-imp.svg"
  40188. }
  40189. },
  40190. mawDemi: {
  40191. height: math.unit(0.42, "feet"),
  40192. name: "Maw (Demi)",
  40193. image: {
  40194. source: "./media/characters/max-kobold/maw-demi.svg"
  40195. }
  40196. },
  40197. },
  40198. [
  40199. {
  40200. name: "Normal",
  40201. height: math.unit(1 + 11/12, "feet"),
  40202. default: true
  40203. },
  40204. ]
  40205. ))
  40206. characterMakers.push(() => makeCharacter(
  40207. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40208. {
  40209. front: {
  40210. height: math.unit(7 + 5/12, "feet"),
  40211. name: "Front",
  40212. image: {
  40213. source: "./media/characters/carbon/front.svg",
  40214. extra: 1754/1689,
  40215. bottom: 65/1819
  40216. }
  40217. },
  40218. back: {
  40219. height: math.unit(7 + 5/12, "feet"),
  40220. name: "Back",
  40221. image: {
  40222. source: "./media/characters/carbon/back.svg",
  40223. extra: 1762/1695,
  40224. bottom: 24/1786
  40225. }
  40226. },
  40227. frontGigantamax: {
  40228. height: math.unit(150, "feet"),
  40229. name: "Front (Gigantamax)",
  40230. image: {
  40231. source: "./media/characters/carbon/front-gigantamax.svg",
  40232. extra: 1826/1669,
  40233. bottom: 59/1885
  40234. }
  40235. },
  40236. backGigantamax: {
  40237. height: math.unit(150, "feet"),
  40238. name: "Back (Gigantamax)",
  40239. image: {
  40240. source: "./media/characters/carbon/back-gigantamax.svg",
  40241. extra: 1796/1653,
  40242. bottom: 53/1849
  40243. }
  40244. },
  40245. maw: {
  40246. height: math.unit(0.48, "feet"),
  40247. name: "Maw",
  40248. image: {
  40249. source: "./media/characters/carbon/maw.svg"
  40250. }
  40251. },
  40252. mawGigantamax: {
  40253. height: math.unit(7.5, "feet"),
  40254. name: "Maw (Gigantamax)",
  40255. image: {
  40256. source: "./media/characters/carbon/maw-gigantamax.svg"
  40257. }
  40258. },
  40259. },
  40260. [
  40261. {
  40262. name: "Normal",
  40263. height: math.unit(7 + 5/12, "feet"),
  40264. default: true
  40265. },
  40266. ]
  40267. ))
  40268. characterMakers.push(() => makeCharacter(
  40269. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40270. {
  40271. front: {
  40272. height: math.unit(6, "feet"),
  40273. name: "Front",
  40274. image: {
  40275. source: "./media/characters/maverick/front.svg",
  40276. extra: 1672/1661,
  40277. bottom: 85/1757
  40278. }
  40279. },
  40280. back: {
  40281. height: math.unit(6, "feet"),
  40282. name: "Back",
  40283. image: {
  40284. source: "./media/characters/maverick/back.svg",
  40285. extra: 1642/1631,
  40286. bottom: 38/1680
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Normal",
  40293. height: math.unit(6, "feet"),
  40294. default: true
  40295. },
  40296. ]
  40297. ))
  40298. characterMakers.push(() => makeCharacter(
  40299. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40300. {
  40301. front: {
  40302. height: math.unit(15, "feet"),
  40303. weight: math.unit(615, "lb"),
  40304. name: "Front",
  40305. image: {
  40306. source: "./media/characters/grockle/front.svg",
  40307. extra: 1535/1427,
  40308. bottom: 56/1591
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Normal",
  40315. height: math.unit(15, "feet"),
  40316. default: true
  40317. },
  40318. {
  40319. name: "Large",
  40320. height: math.unit(150, "feet")
  40321. },
  40322. {
  40323. name: "Macro",
  40324. height: math.unit(1876, "feet")
  40325. },
  40326. {
  40327. name: "Mega Macro",
  40328. height: math.unit(121940, "feet")
  40329. },
  40330. {
  40331. name: "Giga Macro",
  40332. height: math.unit(750, "km")
  40333. },
  40334. {
  40335. name: "Tera Macro",
  40336. height: math.unit(750000, "km")
  40337. },
  40338. {
  40339. name: "Galactic",
  40340. height: math.unit(1.4e5, "km")
  40341. },
  40342. {
  40343. name: "Godlike",
  40344. height: math.unit(9.8e280, "galaxies")
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(11, "meters"),
  40353. weight: math.unit(20, "tonnes"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/alistair/front.svg",
  40357. extra: 1265/1009,
  40358. bottom: 93/1358
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Normal",
  40365. height: math.unit(11, "meters"),
  40366. default: true
  40367. },
  40368. ]
  40369. ))
  40370. characterMakers.push(() => makeCharacter(
  40371. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40372. {
  40373. front: {
  40374. height: math.unit(5 + 8/12, "feet"),
  40375. name: "Front",
  40376. image: {
  40377. source: "./media/characters/haruka/front.svg",
  40378. extra: 2012/1952,
  40379. bottom: 0/2012
  40380. }
  40381. },
  40382. },
  40383. [
  40384. {
  40385. name: "Normal",
  40386. height: math.unit(5 + 8/12, "feet"),
  40387. default: true
  40388. },
  40389. ]
  40390. ))
  40391. characterMakers.push(() => makeCharacter(
  40392. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40393. {
  40394. back: {
  40395. height: math.unit(9, "feet"),
  40396. name: "Back",
  40397. image: {
  40398. source: "./media/characters/vivian-sylveon/back.svg",
  40399. extra: 1853/1714,
  40400. bottom: 0/1853
  40401. }
  40402. },
  40403. hyper: {
  40404. height: math.unit(5.58, "feet"),
  40405. name: "Hyper",
  40406. preyCapacity: math.unit(2.80616218797, "m^3"),
  40407. image: {
  40408. source: "./media/characters/vivian-sylveon/hyper.svg",
  40409. extra: 999/676,
  40410. bottom: 697/1696
  40411. },
  40412. },
  40413. paw: {
  40414. height: math.unit(1.8, "feet"),
  40415. name: "Paw",
  40416. image: {
  40417. source: "./media/characters/vivian-sylveon/paw.svg"
  40418. }
  40419. },
  40420. danger: {
  40421. height: math.unit(7.5, "feet"),
  40422. name: "DANGER",
  40423. image: {
  40424. source: "./media/characters/vivian-sylveon/danger.svg"
  40425. }
  40426. },
  40427. },
  40428. [
  40429. {
  40430. name: "Normal",
  40431. height: math.unit(9, "feet"),
  40432. default: true
  40433. },
  40434. {
  40435. name: "Macro",
  40436. height: math.unit(500, "feet")
  40437. },
  40438. {
  40439. name: "Megamacro",
  40440. height: math.unit(600, "miles")
  40441. },
  40442. {
  40443. name: "Gigamacro",
  40444. height: math.unit(30000, "miles")
  40445. },
  40446. ]
  40447. ))
  40448. characterMakers.push(() => makeCharacter(
  40449. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40450. {
  40451. anthro: {
  40452. height: math.unit(5 + 10/12, "feet"),
  40453. weight: math.unit(100, "lb"),
  40454. name: "Anthro",
  40455. image: {
  40456. source: "./media/characters/daiki/anthro.svg",
  40457. extra: 1115/1027,
  40458. bottom: 69/1184
  40459. }
  40460. },
  40461. feral: {
  40462. height: math.unit(200, "feet"),
  40463. name: "Feral",
  40464. image: {
  40465. source: "./media/characters/daiki/feral.svg",
  40466. extra: 1256/313,
  40467. bottom: 39/1295
  40468. }
  40469. },
  40470. feralHead: {
  40471. height: math.unit(171, "feet"),
  40472. name: "Feral Head",
  40473. image: {
  40474. source: "./media/characters/daiki/feral-head.svg"
  40475. }
  40476. },
  40477. manaDragon: {
  40478. height: math.unit(170, "meters"),
  40479. name: "Mana-dragon",
  40480. image: {
  40481. source: "./media/characters/daiki/mana-dragon.svg",
  40482. extra: 763/420,
  40483. bottom: 97/860
  40484. }
  40485. },
  40486. },
  40487. [
  40488. {
  40489. name: "Normal",
  40490. height: math.unit(5 + 10/12, "feet"),
  40491. default: true
  40492. },
  40493. ]
  40494. ))
  40495. characterMakers.push(() => makeCharacter(
  40496. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40497. {
  40498. fullyEquippedFront: {
  40499. height: math.unit(3 + 1/12, "feet"),
  40500. weight: math.unit(24, "lb"),
  40501. name: "Fully Equipped (Front)",
  40502. image: {
  40503. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40504. extra: 687/605,
  40505. bottom: 18/705
  40506. }
  40507. },
  40508. fullyEquippedBack: {
  40509. height: math.unit(3 + 1/12, "feet"),
  40510. weight: math.unit(24, "lb"),
  40511. name: "Fully Equipped (Back)",
  40512. image: {
  40513. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40514. extra: 689/590,
  40515. bottom: 18/707
  40516. }
  40517. },
  40518. dailyWear: {
  40519. height: math.unit(3 + 1/12, "feet"),
  40520. weight: math.unit(24, "lb"),
  40521. name: "Daily Wear",
  40522. image: {
  40523. source: "./media/characters/tea-spot/daily-wear.svg",
  40524. extra: 701/620,
  40525. bottom: 21/722
  40526. }
  40527. },
  40528. maidWork: {
  40529. height: math.unit(3 + 1/12, "feet"),
  40530. weight: math.unit(24, "lb"),
  40531. name: "Maid Work",
  40532. image: {
  40533. source: "./media/characters/tea-spot/maid-work.svg",
  40534. extra: 693/609,
  40535. bottom: 15/708
  40536. }
  40537. },
  40538. },
  40539. [
  40540. {
  40541. name: "Normal",
  40542. height: math.unit(3 + 1/12, "feet"),
  40543. default: true
  40544. },
  40545. ]
  40546. ))
  40547. characterMakers.push(() => makeCharacter(
  40548. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40549. {
  40550. front: {
  40551. height: math.unit(175, "cm"),
  40552. weight: math.unit(75, "kg"),
  40553. name: "Front",
  40554. image: {
  40555. source: "./media/characters/chee/front.svg",
  40556. extra: 1796/1740,
  40557. bottom: 40/1836
  40558. }
  40559. },
  40560. },
  40561. [
  40562. {
  40563. name: "Micro-Micro",
  40564. height: math.unit(1, "nm")
  40565. },
  40566. {
  40567. name: "Micro-erst",
  40568. height: math.unit(1, "micrometer")
  40569. },
  40570. {
  40571. name: "Micro-er",
  40572. height: math.unit(1, "cm")
  40573. },
  40574. {
  40575. name: "Normal",
  40576. height: math.unit(175, "cm"),
  40577. default: true
  40578. },
  40579. {
  40580. name: "Macro",
  40581. height: math.unit(100, "m")
  40582. },
  40583. {
  40584. name: "Macro-er",
  40585. height: math.unit(1, "km")
  40586. },
  40587. {
  40588. name: "Macro-erst",
  40589. height: math.unit(10, "km")
  40590. },
  40591. {
  40592. name: "Macro-Macro",
  40593. height: math.unit(100, "km")
  40594. },
  40595. ]
  40596. ))
  40597. characterMakers.push(() => makeCharacter(
  40598. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40599. {
  40600. front: {
  40601. height: math.unit(11 + 9/12, "feet"),
  40602. weight: math.unit(935, "lb"),
  40603. name: "Front",
  40604. image: {
  40605. source: "./media/characters/kingsley/front.svg",
  40606. extra: 1803/1674,
  40607. bottom: 127/1930
  40608. }
  40609. },
  40610. frontNude: {
  40611. height: math.unit(11 + 9/12, "feet"),
  40612. weight: math.unit(935, "lb"),
  40613. name: "Front (Nude)",
  40614. image: {
  40615. source: "./media/characters/kingsley/front-nude.svg",
  40616. extra: 1803/1674,
  40617. bottom: 127/1930
  40618. }
  40619. },
  40620. },
  40621. [
  40622. {
  40623. name: "Normal",
  40624. height: math.unit(11 + 9/12, "feet"),
  40625. default: true
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40631. {
  40632. side: {
  40633. height: math.unit(9, "feet"),
  40634. name: "Side",
  40635. image: {
  40636. source: "./media/characters/rymel/side.svg",
  40637. extra: 792/469,
  40638. bottom: 121/913
  40639. }
  40640. },
  40641. maw: {
  40642. height: math.unit(2.4, "meters"),
  40643. name: "Maw",
  40644. image: {
  40645. source: "./media/characters/rymel/maw.svg"
  40646. }
  40647. },
  40648. },
  40649. [
  40650. {
  40651. name: "House Drake",
  40652. height: math.unit(2, "feet")
  40653. },
  40654. {
  40655. name: "Reduced",
  40656. height: math.unit(4.5, "feet")
  40657. },
  40658. {
  40659. name: "Normal",
  40660. height: math.unit(9, "feet"),
  40661. default: true
  40662. },
  40663. ]
  40664. ))
  40665. characterMakers.push(() => makeCharacter(
  40666. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40667. {
  40668. front: {
  40669. height: math.unit(1.74, "meters"),
  40670. weight: math.unit(55, "kg"),
  40671. name: "Front",
  40672. image: {
  40673. source: "./media/characters/rubus/front.svg",
  40674. extra: 1894/1742,
  40675. bottom: 44/1938
  40676. }
  40677. },
  40678. },
  40679. [
  40680. {
  40681. name: "Normal",
  40682. height: math.unit(1.74, "meters"),
  40683. default: true
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40689. {
  40690. front: {
  40691. height: math.unit(5 + 2/12, "feet"),
  40692. weight: math.unit(112, "lb"),
  40693. name: "Front",
  40694. image: {
  40695. source: "./media/characters/cassie-kingston/front.svg",
  40696. extra: 1438/1390,
  40697. bottom: 47/1485
  40698. }
  40699. },
  40700. },
  40701. [
  40702. {
  40703. name: "Normal",
  40704. height: math.unit(5 + 2/12, "feet"),
  40705. default: true
  40706. },
  40707. {
  40708. name: "Macro",
  40709. height: math.unit(128, "feet")
  40710. },
  40711. {
  40712. name: "Megamacro",
  40713. height: math.unit(2.56, "miles")
  40714. },
  40715. ]
  40716. ))
  40717. characterMakers.push(() => makeCharacter(
  40718. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40719. {
  40720. front: {
  40721. height: math.unit(7, "feet"),
  40722. name: "Front",
  40723. image: {
  40724. source: "./media/characters/fox/front.svg",
  40725. extra: 1798/1703,
  40726. bottom: 55/1853
  40727. }
  40728. },
  40729. back: {
  40730. height: math.unit(7, "feet"),
  40731. name: "Back",
  40732. image: {
  40733. source: "./media/characters/fox/back.svg",
  40734. extra: 1748/1649,
  40735. bottom: 32/1780
  40736. }
  40737. },
  40738. head: {
  40739. height: math.unit(1.95, "feet"),
  40740. name: "Head",
  40741. image: {
  40742. source: "./media/characters/fox/head.svg"
  40743. }
  40744. },
  40745. dick: {
  40746. height: math.unit(1.33, "feet"),
  40747. name: "Dick",
  40748. image: {
  40749. source: "./media/characters/fox/dick.svg"
  40750. }
  40751. },
  40752. foot: {
  40753. height: math.unit(1, "feet"),
  40754. name: "Foot",
  40755. image: {
  40756. source: "./media/characters/fox/foot.svg"
  40757. }
  40758. },
  40759. paw: {
  40760. height: math.unit(0.92, "feet"),
  40761. name: "Paw",
  40762. image: {
  40763. source: "./media/characters/fox/paw.svg"
  40764. }
  40765. },
  40766. },
  40767. [
  40768. {
  40769. name: "Small",
  40770. height: math.unit(3, "inches")
  40771. },
  40772. {
  40773. name: "\"Realistic\"",
  40774. height: math.unit(7, "feet")
  40775. },
  40776. {
  40777. name: "Normal",
  40778. height: math.unit(150, "feet"),
  40779. default: true
  40780. },
  40781. {
  40782. name: "BIG",
  40783. height: math.unit(1200, "feet")
  40784. },
  40785. {
  40786. name: "👀",
  40787. height: math.unit(5, "miles")
  40788. },
  40789. {
  40790. name: "👀👀👀",
  40791. height: math.unit(64, "miles")
  40792. },
  40793. ]
  40794. ))
  40795. characterMakers.push(() => makeCharacter(
  40796. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40797. {
  40798. front: {
  40799. height: math.unit(625, "feet"),
  40800. name: "Front",
  40801. image: {
  40802. source: "./media/characters/asonja-rossa/front.svg",
  40803. extra: 1833/1686,
  40804. bottom: 24/1857
  40805. }
  40806. },
  40807. back: {
  40808. height: math.unit(625, "feet"),
  40809. name: "Back",
  40810. image: {
  40811. source: "./media/characters/asonja-rossa/back.svg",
  40812. extra: 1852/1753,
  40813. bottom: 26/1878
  40814. }
  40815. },
  40816. },
  40817. [
  40818. {
  40819. name: "Macro",
  40820. height: math.unit(625, "feet"),
  40821. default: true
  40822. },
  40823. ]
  40824. ))
  40825. characterMakers.push(() => makeCharacter(
  40826. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40827. {
  40828. side: {
  40829. height: math.unit(8, "feet"),
  40830. name: "Side",
  40831. image: {
  40832. source: "./media/characters/rezukii/side.svg",
  40833. extra: 979/542,
  40834. bottom: 87/1066
  40835. }
  40836. },
  40837. sitting: {
  40838. height: math.unit(14.6, "feet"),
  40839. name: "Sitting",
  40840. image: {
  40841. source: "./media/characters/rezukii/sitting.svg",
  40842. extra: 1023/813,
  40843. bottom: 45/1068
  40844. }
  40845. },
  40846. },
  40847. [
  40848. {
  40849. name: "Tiny",
  40850. height: math.unit(2, "feet")
  40851. },
  40852. {
  40853. name: "Smol",
  40854. height: math.unit(4, "feet")
  40855. },
  40856. {
  40857. name: "Normal",
  40858. height: math.unit(8, "feet"),
  40859. default: true
  40860. },
  40861. {
  40862. name: "Big",
  40863. height: math.unit(12, "feet")
  40864. },
  40865. {
  40866. name: "Macro",
  40867. height: math.unit(30, "feet")
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(14, "feet"),
  40876. weight: math.unit(9.5, "tonnes"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/dawnheart/front.svg",
  40880. extra: 2792/2675,
  40881. bottom: 64/2856
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Normal",
  40888. height: math.unit(14, "feet"),
  40889. default: true
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40895. {
  40896. front: {
  40897. height: math.unit(1.7, "m"),
  40898. name: "Front",
  40899. image: {
  40900. source: "./media/characters/gladi/front.svg",
  40901. extra: 1460/1362,
  40902. bottom: 19/1479
  40903. }
  40904. },
  40905. back: {
  40906. height: math.unit(1.7, "m"),
  40907. name: "Back",
  40908. image: {
  40909. source: "./media/characters/gladi/back.svg",
  40910. extra: 1459/1357,
  40911. bottom: 12/1471
  40912. }
  40913. },
  40914. feral: {
  40915. height: math.unit(2.05, "m"),
  40916. name: "Feral",
  40917. image: {
  40918. source: "./media/characters/gladi/feral.svg",
  40919. extra: 821/557,
  40920. bottom: 91/912
  40921. }
  40922. },
  40923. },
  40924. [
  40925. {
  40926. name: "Shortest",
  40927. height: math.unit(70, "cm")
  40928. },
  40929. {
  40930. name: "Normal",
  40931. height: math.unit(1.7, "m")
  40932. },
  40933. {
  40934. name: "Macro",
  40935. height: math.unit(10, "m"),
  40936. default: true
  40937. },
  40938. {
  40939. name: "Tallest",
  40940. height: math.unit(200, "m")
  40941. },
  40942. ]
  40943. ))
  40944. characterMakers.push(() => makeCharacter(
  40945. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40946. {
  40947. front: {
  40948. height: math.unit(5 + 7/12, "feet"),
  40949. weight: math.unit(2, "tons"),
  40950. name: "Front",
  40951. image: {
  40952. source: "./media/characters/erdno/front.svg",
  40953. extra: 1234/1129,
  40954. bottom: 35/1269
  40955. }
  40956. },
  40957. angled: {
  40958. height: math.unit(5 + 7/12, "feet"),
  40959. weight: math.unit(2, "tons"),
  40960. name: "Angled",
  40961. image: {
  40962. source: "./media/characters/erdno/angled.svg",
  40963. extra: 1185/1139,
  40964. bottom: 36/1221
  40965. }
  40966. },
  40967. side: {
  40968. height: math.unit(5 + 7/12, "feet"),
  40969. weight: math.unit(2, "tons"),
  40970. name: "Side",
  40971. image: {
  40972. source: "./media/characters/erdno/side.svg",
  40973. extra: 1191/1144,
  40974. bottom: 40/1231
  40975. }
  40976. },
  40977. back: {
  40978. height: math.unit(5 + 7/12, "feet"),
  40979. weight: math.unit(2, "tons"),
  40980. name: "Back",
  40981. image: {
  40982. source: "./media/characters/erdno/back.svg",
  40983. extra: 1202/1146,
  40984. bottom: 17/1219
  40985. }
  40986. },
  40987. frontNsfw: {
  40988. height: math.unit(5 + 7/12, "feet"),
  40989. weight: math.unit(2, "tons"),
  40990. name: "Front (NSFW)",
  40991. image: {
  40992. source: "./media/characters/erdno/front-nsfw.svg",
  40993. extra: 1234/1129,
  40994. bottom: 35/1269
  40995. }
  40996. },
  40997. angledNsfw: {
  40998. height: math.unit(5 + 7/12, "feet"),
  40999. weight: math.unit(2, "tons"),
  41000. name: "Angled (NSFW)",
  41001. image: {
  41002. source: "./media/characters/erdno/angled-nsfw.svg",
  41003. extra: 1185/1139,
  41004. bottom: 36/1221
  41005. }
  41006. },
  41007. sideNsfw: {
  41008. height: math.unit(5 + 7/12, "feet"),
  41009. weight: math.unit(2, "tons"),
  41010. name: "Side (NSFW)",
  41011. image: {
  41012. source: "./media/characters/erdno/side-nsfw.svg",
  41013. extra: 1191/1144,
  41014. bottom: 40/1231
  41015. }
  41016. },
  41017. backNsfw: {
  41018. height: math.unit(5 + 7/12, "feet"),
  41019. weight: math.unit(2, "tons"),
  41020. name: "Back (NSFW)",
  41021. image: {
  41022. source: "./media/characters/erdno/back-nsfw.svg",
  41023. extra: 1202/1146,
  41024. bottom: 17/1219
  41025. }
  41026. },
  41027. frontHyper: {
  41028. height: math.unit(5 + 7/12, "feet"),
  41029. weight: math.unit(2, "tons"),
  41030. name: "Front (Hyper)",
  41031. image: {
  41032. source: "./media/characters/erdno/front-hyper.svg",
  41033. extra: 1298/1136,
  41034. bottom: 35/1333
  41035. }
  41036. },
  41037. },
  41038. [
  41039. {
  41040. name: "Normal",
  41041. height: math.unit(5 + 7/12, "feet"),
  41042. default: true
  41043. },
  41044. {
  41045. name: "Big",
  41046. height: math.unit(5.7, "meters")
  41047. },
  41048. {
  41049. name: "Macro",
  41050. height: math.unit(5.7, "kilometers")
  41051. },
  41052. {
  41053. name: "Megamacro",
  41054. height: math.unit(5.7, "earths")
  41055. },
  41056. ]
  41057. ))
  41058. characterMakers.push(() => makeCharacter(
  41059. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41060. {
  41061. front: {
  41062. height: math.unit(5 + 10/12, "feet"),
  41063. weight: math.unit(150, "lb"),
  41064. name: "Front",
  41065. image: {
  41066. source: "./media/characters/jamie/front.svg",
  41067. extra: 1908/1768,
  41068. bottom: 19/1927
  41069. }
  41070. },
  41071. },
  41072. [
  41073. {
  41074. name: "Minimum",
  41075. height: math.unit(2, "cm")
  41076. },
  41077. {
  41078. name: "Micro",
  41079. height: math.unit(3, "inches")
  41080. },
  41081. {
  41082. name: "Normal",
  41083. height: math.unit(5 + 10/12, "feet"),
  41084. default: true
  41085. },
  41086. {
  41087. name: "Macro",
  41088. height: math.unit(150, "feet")
  41089. },
  41090. {
  41091. name: "Megamacro",
  41092. height: math.unit(10000, "m")
  41093. },
  41094. ]
  41095. ))
  41096. characterMakers.push(() => makeCharacter(
  41097. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41098. {
  41099. front: {
  41100. height: math.unit(2, "meters"),
  41101. weight: math.unit(100, "kg"),
  41102. name: "Front",
  41103. image: {
  41104. source: "./media/characters/shiron/front.svg",
  41105. extra: 2103/1985,
  41106. bottom: 98/2201
  41107. }
  41108. },
  41109. back: {
  41110. height: math.unit(2, "meters"),
  41111. weight: math.unit(100, "kg"),
  41112. name: "Back",
  41113. image: {
  41114. source: "./media/characters/shiron/back.svg",
  41115. extra: 2110/2015,
  41116. bottom: 89/2199
  41117. }
  41118. },
  41119. hand: {
  41120. height: math.unit(0.96, "feet"),
  41121. name: "Hand",
  41122. image: {
  41123. source: "./media/characters/shiron/hand.svg"
  41124. }
  41125. },
  41126. foot: {
  41127. height: math.unit(1.464, "feet"),
  41128. name: "Foot",
  41129. image: {
  41130. source: "./media/characters/shiron/foot.svg"
  41131. }
  41132. },
  41133. },
  41134. [
  41135. {
  41136. name: "Normal",
  41137. height: math.unit(2, "meters")
  41138. },
  41139. {
  41140. name: "Macro",
  41141. height: math.unit(500, "meters"),
  41142. default: true
  41143. },
  41144. {
  41145. name: "Megamacro",
  41146. height: math.unit(20, "km")
  41147. },
  41148. ]
  41149. ))
  41150. characterMakers.push(() => makeCharacter(
  41151. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41152. {
  41153. front: {
  41154. height: math.unit(6, "feet"),
  41155. name: "Front",
  41156. image: {
  41157. source: "./media/characters/sam/front.svg",
  41158. extra: 849/826,
  41159. bottom: 19/868
  41160. }
  41161. },
  41162. },
  41163. [
  41164. {
  41165. name: "Normal",
  41166. height: math.unit(6, "feet"),
  41167. default: true
  41168. },
  41169. ]
  41170. ))
  41171. characterMakers.push(() => makeCharacter(
  41172. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41173. {
  41174. front: {
  41175. height: math.unit(8 + 4/12, "feet"),
  41176. weight: math.unit(122, "kg"),
  41177. name: "Front",
  41178. image: {
  41179. source: "./media/characters/namori-kurogawa/front.svg",
  41180. extra: 1894/1576,
  41181. bottom: 34/1928
  41182. }
  41183. },
  41184. },
  41185. [
  41186. {
  41187. name: "Normal",
  41188. height: math.unit(8 + 4/12, "feet"),
  41189. default: true
  41190. },
  41191. ]
  41192. ))
  41193. characterMakers.push(() => makeCharacter(
  41194. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41195. {
  41196. front: {
  41197. height: math.unit(9, "feet"),
  41198. weight: math.unit(621, "lb"),
  41199. name: "Front",
  41200. image: {
  41201. source: "./media/characters/unmru/front.svg",
  41202. extra: 1853/1747,
  41203. bottom: 73/1926
  41204. }
  41205. },
  41206. side: {
  41207. height: math.unit(9, "feet"),
  41208. weight: math.unit(621, "lb"),
  41209. name: "Side",
  41210. image: {
  41211. source: "./media/characters/unmru/side.svg",
  41212. extra: 1781/1671,
  41213. bottom: 127/1908
  41214. }
  41215. },
  41216. back: {
  41217. height: math.unit(9, "feet"),
  41218. weight: math.unit(621, "lb"),
  41219. name: "Back",
  41220. image: {
  41221. source: "./media/characters/unmru/back.svg",
  41222. extra: 1894/1765,
  41223. bottom: 75/1969
  41224. }
  41225. },
  41226. dick: {
  41227. height: math.unit(3, "feet"),
  41228. weight: math.unit(35, "lb"),
  41229. name: "Dick",
  41230. image: {
  41231. source: "./media/characters/unmru/dick.svg"
  41232. }
  41233. },
  41234. },
  41235. [
  41236. {
  41237. name: "Normal",
  41238. height: math.unit(9, "feet")
  41239. },
  41240. {
  41241. name: "Natural",
  41242. height: math.unit(27, "feet"),
  41243. default: true
  41244. },
  41245. {
  41246. name: "Giant",
  41247. height: math.unit(90, "feet")
  41248. },
  41249. {
  41250. name: "Kaiju",
  41251. height: math.unit(270, "feet")
  41252. },
  41253. {
  41254. name: "Macro",
  41255. height: math.unit(900, "feet")
  41256. },
  41257. {
  41258. name: "Macro+",
  41259. height: math.unit(2700, "feet")
  41260. },
  41261. {
  41262. name: "Megamacro",
  41263. height: math.unit(9000, "feet")
  41264. },
  41265. {
  41266. name: "City-Crushing",
  41267. height: math.unit(27000, "feet")
  41268. },
  41269. {
  41270. name: "Mountain-Mashing",
  41271. height: math.unit(90000, "feet")
  41272. },
  41273. {
  41274. name: "Earth-Eclipsing",
  41275. height: math.unit(2.7e8, "feet")
  41276. },
  41277. {
  41278. name: "Sol-Swallowing",
  41279. height: math.unit(9e10, "feet")
  41280. },
  41281. {
  41282. name: "Majoris-Munching",
  41283. height: math.unit(2.7e13, "feet")
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41289. {
  41290. front: {
  41291. height: math.unit(1, "inch"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/squeaks-mouse/front.svg",
  41295. extra: 352/308,
  41296. bottom: 25/377
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Micro",
  41303. height: math.unit(1, "inch"),
  41304. default: true
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41310. {
  41311. side: {
  41312. height: math.unit(35, "feet"),
  41313. name: "Side",
  41314. image: {
  41315. source: "./media/characters/sayko/side.svg",
  41316. extra: 1697/1021,
  41317. bottom: 82/1779
  41318. }
  41319. },
  41320. head: {
  41321. height: math.unit(16, "feet"),
  41322. name: "Head",
  41323. image: {
  41324. source: "./media/characters/sayko/head.svg"
  41325. }
  41326. },
  41327. forepaw: {
  41328. height: math.unit(7.85, "feet"),
  41329. name: "Forepaw",
  41330. image: {
  41331. source: "./media/characters/sayko/forepaw.svg"
  41332. }
  41333. },
  41334. hindpaw: {
  41335. height: math.unit(8.8, "feet"),
  41336. name: "Hindpaw",
  41337. image: {
  41338. source: "./media/characters/sayko/hindpaw.svg"
  41339. }
  41340. },
  41341. },
  41342. [
  41343. {
  41344. name: "Normal",
  41345. height: math.unit(35, "feet"),
  41346. default: true
  41347. },
  41348. {
  41349. name: "Colossus",
  41350. height: math.unit(100, "meters")
  41351. },
  41352. {
  41353. name: "\"Small\" Deity",
  41354. height: math.unit(1, "km")
  41355. },
  41356. {
  41357. name: "\"Large\" Deity",
  41358. height: math.unit(15, "km")
  41359. },
  41360. ]
  41361. ))
  41362. characterMakers.push(() => makeCharacter(
  41363. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41364. {
  41365. front: {
  41366. height: math.unit(6, "feet"),
  41367. weight: math.unit(250, "lb"),
  41368. name: "Front",
  41369. image: {
  41370. source: "./media/characters/mukiro/front.svg",
  41371. extra: 1368/1310,
  41372. bottom: 34/1402
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Normal",
  41379. height: math.unit(6, "feet"),
  41380. default: true
  41381. },
  41382. ]
  41383. ))
  41384. characterMakers.push(() => makeCharacter(
  41385. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41386. {
  41387. front: {
  41388. height: math.unit(12 + 4/12, "feet"),
  41389. name: "Front",
  41390. image: {
  41391. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41392. extra: 1346/1311,
  41393. bottom: 65/1411
  41394. }
  41395. },
  41396. },
  41397. [
  41398. {
  41399. name: "Base",
  41400. height: math.unit(12 + 4/12, "feet"),
  41401. default: true
  41402. },
  41403. {
  41404. name: "Macro",
  41405. height: math.unit(150, "feet")
  41406. },
  41407. {
  41408. name: "Mega",
  41409. height: math.unit(2, "miles")
  41410. },
  41411. {
  41412. name: "Demi God",
  41413. height: math.unit(4, "AU")
  41414. },
  41415. {
  41416. name: "God Size",
  41417. height: math.unit(1, "universe")
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(3 + 3/12, "feet"),
  41426. weight: math.unit(88, "lb"),
  41427. name: "Front",
  41428. image: {
  41429. source: "./media/characters/trey/front.svg",
  41430. extra: 1815/1509,
  41431. bottom: 60/1875
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Normal",
  41438. height: math.unit(3 + 3/12, "feet"),
  41439. default: true
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41445. {
  41446. front: {
  41447. height: math.unit(4, "meters"),
  41448. name: "Front",
  41449. image: {
  41450. source: "./media/characters/adelonda/front.svg",
  41451. extra: 1077/982,
  41452. bottom: 39/1116
  41453. }
  41454. },
  41455. back: {
  41456. height: math.unit(4, "meters"),
  41457. name: "Back",
  41458. image: {
  41459. source: "./media/characters/adelonda/back.svg",
  41460. extra: 1105/1003,
  41461. bottom: 25/1130
  41462. }
  41463. },
  41464. feral: {
  41465. height: math.unit(40/1.5, "meters"),
  41466. name: "Feral",
  41467. image: {
  41468. source: "./media/characters/adelonda/feral.svg",
  41469. extra: 597/271,
  41470. bottom: 387/984
  41471. }
  41472. },
  41473. },
  41474. [
  41475. {
  41476. name: "Normal",
  41477. height: math.unit(4, "meters"),
  41478. default: true
  41479. },
  41480. ]
  41481. ))
  41482. characterMakers.push(() => makeCharacter(
  41483. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41484. {
  41485. front: {
  41486. height: math.unit(8 + 4/12, "feet"),
  41487. weight: math.unit(670, "lb"),
  41488. name: "Front",
  41489. image: {
  41490. source: "./media/characters/acadiel/front.svg",
  41491. extra: 1901/1595,
  41492. bottom: 142/2043
  41493. }
  41494. },
  41495. },
  41496. [
  41497. {
  41498. name: "Normal",
  41499. height: math.unit(8 + 4/12, "feet"),
  41500. default: true
  41501. },
  41502. {
  41503. name: "Macro",
  41504. height: math.unit(200, "feet")
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41510. {
  41511. front: {
  41512. height: math.unit(6 + 2/12, "feet"),
  41513. weight: math.unit(185, "lb"),
  41514. name: "Front",
  41515. image: {
  41516. source: "./media/characters/kayne-ein/front.svg",
  41517. extra: 1780/1560,
  41518. bottom: 81/1861
  41519. }
  41520. },
  41521. },
  41522. [
  41523. {
  41524. name: "Normal",
  41525. height: math.unit(6 + 2/12, "feet"),
  41526. default: true
  41527. },
  41528. {
  41529. name: "Transformation Stage",
  41530. height: math.unit(15, "feet")
  41531. },
  41532. {
  41533. name: "Macro",
  41534. height: math.unit(150, "feet")
  41535. },
  41536. {
  41537. name: "Earth's Shadow",
  41538. height: math.unit(6200, "miles")
  41539. },
  41540. {
  41541. name: "Universal Demon",
  41542. height: math.unit(28e9, "parsecs")
  41543. },
  41544. {
  41545. name: "Multiverse God",
  41546. height: math.unit(3, "multiverses")
  41547. },
  41548. ]
  41549. ))
  41550. characterMakers.push(() => makeCharacter(
  41551. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41552. {
  41553. front: {
  41554. height: math.unit(5 + 5/12, "feet"),
  41555. name: "Front",
  41556. image: {
  41557. source: "./media/characters/fawn/front.svg",
  41558. extra: 1873/1731,
  41559. bottom: 95/1968
  41560. }
  41561. },
  41562. back: {
  41563. height: math.unit(5 + 5/12, "feet"),
  41564. name: "Back",
  41565. image: {
  41566. source: "./media/characters/fawn/back.svg",
  41567. extra: 1813/1700,
  41568. bottom: 14/1827
  41569. }
  41570. },
  41571. hoof: {
  41572. height: math.unit(1.45, "feet"),
  41573. name: "Hoof",
  41574. image: {
  41575. source: "./media/characters/fawn/hoof.svg"
  41576. }
  41577. },
  41578. },
  41579. [
  41580. {
  41581. name: "Normal",
  41582. height: math.unit(5 + 5/12, "feet"),
  41583. default: true
  41584. },
  41585. ]
  41586. ))
  41587. characterMakers.push(() => makeCharacter(
  41588. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41589. {
  41590. front: {
  41591. height: math.unit(2 + 5/12, "feet"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/orion/front.svg",
  41595. extra: 1366/1304,
  41596. bottom: 43/1409
  41597. }
  41598. },
  41599. paw: {
  41600. height: math.unit(0.52, "feet"),
  41601. name: "Paw",
  41602. image: {
  41603. source: "./media/characters/orion/paw.svg"
  41604. }
  41605. },
  41606. },
  41607. [
  41608. {
  41609. name: "Normal",
  41610. height: math.unit(2 + 5/12, "feet"),
  41611. default: true
  41612. },
  41613. ]
  41614. ))
  41615. characterMakers.push(() => makeCharacter(
  41616. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41617. {
  41618. front: {
  41619. height: math.unit(5 + 10/12, "feet"),
  41620. name: "Front",
  41621. image: {
  41622. source: "./media/characters/vera/front.svg",
  41623. extra: 1680/1575,
  41624. bottom: 49/1729
  41625. }
  41626. },
  41627. back: {
  41628. height: math.unit(5 + 10/12, "feet"),
  41629. name: "Back",
  41630. image: {
  41631. source: "./media/characters/vera/back.svg",
  41632. extra: 1700/1588,
  41633. bottom: 18/1718
  41634. }
  41635. },
  41636. arcanine: {
  41637. height: math.unit(6 + 8/12, "feet"),
  41638. name: "Arcanine",
  41639. image: {
  41640. source: "./media/characters/vera/arcanine.svg",
  41641. extra: 1590/1511,
  41642. bottom: 71/1661
  41643. }
  41644. },
  41645. maw: {
  41646. height: math.unit(0.82, "feet"),
  41647. name: "Maw",
  41648. image: {
  41649. source: "./media/characters/vera/maw.svg"
  41650. }
  41651. },
  41652. mawArcanine: {
  41653. height: math.unit(0.97, "feet"),
  41654. name: "Maw (Arcanine)",
  41655. image: {
  41656. source: "./media/characters/vera/maw-arcanine.svg"
  41657. }
  41658. },
  41659. paw: {
  41660. height: math.unit(0.75, "feet"),
  41661. name: "Paw",
  41662. image: {
  41663. source: "./media/characters/vera/paw.svg"
  41664. }
  41665. },
  41666. pawprint: {
  41667. height: math.unit(0.52, "feet"),
  41668. name: "Pawprint",
  41669. image: {
  41670. source: "./media/characters/vera/pawprint.svg"
  41671. }
  41672. },
  41673. },
  41674. [
  41675. {
  41676. name: "Normal",
  41677. height: math.unit(5 + 10/12, "feet"),
  41678. default: true
  41679. },
  41680. {
  41681. name: "Macro",
  41682. height: math.unit(75, "feet")
  41683. },
  41684. ]
  41685. ))
  41686. characterMakers.push(() => makeCharacter(
  41687. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41688. {
  41689. front: {
  41690. height: math.unit(4, "feet"),
  41691. weight: math.unit(40, "lb"),
  41692. name: "Front",
  41693. image: {
  41694. source: "./media/characters/orvan-rabbit/front.svg",
  41695. extra: 1896/1642,
  41696. bottom: 29/1925
  41697. }
  41698. },
  41699. },
  41700. [
  41701. {
  41702. name: "Normal",
  41703. height: math.unit(4, "feet"),
  41704. default: true
  41705. },
  41706. ]
  41707. ))
  41708. characterMakers.push(() => makeCharacter(
  41709. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41710. {
  41711. front: {
  41712. height: math.unit(6, "feet"),
  41713. weight: math.unit(168, "lb"),
  41714. name: "Front",
  41715. image: {
  41716. source: "./media/characters/lisa/front.svg",
  41717. extra: 2065/1867,
  41718. bottom: 46/2111
  41719. }
  41720. },
  41721. back: {
  41722. height: math.unit(6, "feet"),
  41723. weight: math.unit(168, "lb"),
  41724. name: "Back",
  41725. image: {
  41726. source: "./media/characters/lisa/back.svg",
  41727. extra: 1982/1838,
  41728. bottom: 29/2011
  41729. }
  41730. },
  41731. maw: {
  41732. height: math.unit(0.81, "feet"),
  41733. name: "Maw",
  41734. image: {
  41735. source: "./media/characters/lisa/maw.svg"
  41736. }
  41737. },
  41738. paw: {
  41739. height: math.unit(0.9, "feet"),
  41740. name: "Paw",
  41741. image: {
  41742. source: "./media/characters/lisa/paw.svg"
  41743. }
  41744. },
  41745. caribousune: {
  41746. height: math.unit(7 + 2/12, "feet"),
  41747. weight: math.unit(268, "lb"),
  41748. name: "Caribousune",
  41749. image: {
  41750. source: "./media/characters/lisa/caribousune.svg",
  41751. extra: 1843/1633,
  41752. bottom: 29/1872
  41753. }
  41754. },
  41755. frontCaribousune: {
  41756. height: math.unit(7 + 2/12, "feet"),
  41757. weight: math.unit(268, "lb"),
  41758. name: "Front (Caribousune)",
  41759. image: {
  41760. source: "./media/characters/lisa/front-caribousune.svg",
  41761. extra: 1818/1638,
  41762. bottom: 52/1870
  41763. }
  41764. },
  41765. sideCaribousune: {
  41766. height: math.unit(7 + 2/12, "feet"),
  41767. weight: math.unit(268, "lb"),
  41768. name: "Side (Caribousune)",
  41769. image: {
  41770. source: "./media/characters/lisa/side-caribousune.svg",
  41771. extra: 1851/1635,
  41772. bottom: 16/1867
  41773. }
  41774. },
  41775. backCaribousune: {
  41776. height: math.unit(7 + 2/12, "feet"),
  41777. weight: math.unit(268, "lb"),
  41778. name: "Back (Caribousune)",
  41779. image: {
  41780. source: "./media/characters/lisa/back-caribousune.svg",
  41781. extra: 1801/1604,
  41782. bottom: 44/1845
  41783. }
  41784. },
  41785. caribou: {
  41786. height: math.unit(7 + 2/12, "feet"),
  41787. weight: math.unit(268, "lb"),
  41788. name: "Caribou",
  41789. image: {
  41790. source: "./media/characters/lisa/caribou.svg",
  41791. extra: 1843/1633,
  41792. bottom: 29/1872
  41793. }
  41794. },
  41795. frontCaribou: {
  41796. height: math.unit(7 + 2/12, "feet"),
  41797. weight: math.unit(268, "lb"),
  41798. name: "Front (Caribou)",
  41799. image: {
  41800. source: "./media/characters/lisa/front-caribou.svg",
  41801. extra: 1818/1638,
  41802. bottom: 52/1870
  41803. }
  41804. },
  41805. sideCaribou: {
  41806. height: math.unit(7 + 2/12, "feet"),
  41807. weight: math.unit(268, "lb"),
  41808. name: "Side (Caribou)",
  41809. image: {
  41810. source: "./media/characters/lisa/side-caribou.svg",
  41811. extra: 1851/1635,
  41812. bottom: 16/1867
  41813. }
  41814. },
  41815. backCaribou: {
  41816. height: math.unit(7 + 2/12, "feet"),
  41817. weight: math.unit(268, "lb"),
  41818. name: "Back (Caribou)",
  41819. image: {
  41820. source: "./media/characters/lisa/back-caribou.svg",
  41821. extra: 1801/1604,
  41822. bottom: 44/1845
  41823. }
  41824. },
  41825. mawCaribou: {
  41826. height: math.unit(1.45, "feet"),
  41827. name: "Maw (Caribou)",
  41828. image: {
  41829. source: "./media/characters/lisa/maw-caribou.svg"
  41830. }
  41831. },
  41832. mawCaribousune: {
  41833. height: math.unit(1.45, "feet"),
  41834. name: "Maw (Caribousune)",
  41835. image: {
  41836. source: "./media/characters/lisa/maw-caribousune.svg"
  41837. }
  41838. },
  41839. pawCaribousune: {
  41840. height: math.unit(1.61, "feet"),
  41841. name: "Paw (Caribou)",
  41842. image: {
  41843. source: "./media/characters/lisa/paw-caribousune.svg"
  41844. }
  41845. },
  41846. },
  41847. [
  41848. {
  41849. name: "Normal",
  41850. height: math.unit(6, "feet")
  41851. },
  41852. {
  41853. name: "God Size",
  41854. height: math.unit(72, "feet"),
  41855. default: true
  41856. },
  41857. {
  41858. name: "Towering",
  41859. height: math.unit(288, "feet")
  41860. },
  41861. {
  41862. name: "City Size",
  41863. height: math.unit(48384, "feet")
  41864. },
  41865. {
  41866. name: "Continental",
  41867. height: math.unit(4200, "miles")
  41868. },
  41869. {
  41870. name: "Planet Eater",
  41871. height: math.unit(42, "earths")
  41872. },
  41873. {
  41874. name: "Star Swallower",
  41875. height: math.unit(42, "solarradii")
  41876. },
  41877. {
  41878. name: "System Swallower",
  41879. height: math.unit(84000, "AU")
  41880. },
  41881. {
  41882. name: "Galaxy Gobbler",
  41883. height: math.unit(42, "galaxies")
  41884. },
  41885. {
  41886. name: "Universe Devourer",
  41887. height: math.unit(42, "universes")
  41888. },
  41889. {
  41890. name: "Multiverse Muncher",
  41891. height: math.unit(42, "multiverses")
  41892. },
  41893. ]
  41894. ))
  41895. characterMakers.push(() => makeCharacter(
  41896. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41897. {
  41898. front: {
  41899. height: math.unit(36, "feet"),
  41900. name: "Front",
  41901. image: {
  41902. source: "./media/characters/shadow-rat/front.svg",
  41903. extra: 1845/1758,
  41904. bottom: 83/1928
  41905. }
  41906. },
  41907. },
  41908. [
  41909. {
  41910. name: "Macro",
  41911. height: math.unit(36, "feet"),
  41912. default: true
  41913. },
  41914. ]
  41915. ))
  41916. characterMakers.push(() => makeCharacter(
  41917. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41918. {
  41919. side: {
  41920. height: math.unit(8, "feet"),
  41921. weight: math.unit(2630, "lb"),
  41922. name: "Side",
  41923. image: {
  41924. source: "./media/characters/torallia/side.svg",
  41925. extra: 2164/2021,
  41926. bottom: 371/2535
  41927. }
  41928. },
  41929. },
  41930. [
  41931. {
  41932. name: "Mortal Interaction",
  41933. height: math.unit(8, "feet")
  41934. },
  41935. {
  41936. name: "Natural",
  41937. height: math.unit(24, "feet"),
  41938. default: true
  41939. },
  41940. {
  41941. name: "Giant",
  41942. height: math.unit(80, "feet")
  41943. },
  41944. {
  41945. name: "Kaiju",
  41946. height: math.unit(240, "feet")
  41947. },
  41948. {
  41949. name: "Macro",
  41950. height: math.unit(800, "feet")
  41951. },
  41952. {
  41953. name: "Macro+",
  41954. height: math.unit(2400, "feet")
  41955. },
  41956. {
  41957. name: "Macro++",
  41958. height: math.unit(8000, "feet")
  41959. },
  41960. {
  41961. name: "City-Crushing",
  41962. height: math.unit(24000, "feet")
  41963. },
  41964. {
  41965. name: "Mountain-Mashing",
  41966. height: math.unit(80000, "feet")
  41967. },
  41968. {
  41969. name: "District Demolisher",
  41970. height: math.unit(240000, "feet")
  41971. },
  41972. {
  41973. name: "Tri-County Terror",
  41974. height: math.unit(800000, "feet")
  41975. },
  41976. {
  41977. name: "State Smasher",
  41978. height: math.unit(2.4e6, "feet")
  41979. },
  41980. {
  41981. name: "Nation Nemesis",
  41982. height: math.unit(8e6, "feet")
  41983. },
  41984. {
  41985. name: "Continent Cracker",
  41986. height: math.unit(2.4e7, "feet")
  41987. },
  41988. {
  41989. name: "Planet-Pillaging",
  41990. height: math.unit(8e7, "feet")
  41991. },
  41992. {
  41993. name: "Earth-Eclipsing",
  41994. height: math.unit(2.4e8, "feet")
  41995. },
  41996. {
  41997. name: "Jovian-Jostling",
  41998. height: math.unit(8e8, "feet")
  41999. },
  42000. {
  42001. name: "Gas Giant Gulper",
  42002. height: math.unit(2.4e9, "feet")
  42003. },
  42004. {
  42005. name: "Astral Annihilator",
  42006. height: math.unit(8e9, "feet")
  42007. },
  42008. {
  42009. name: "Celestial Conqueror",
  42010. height: math.unit(2.4e10, "feet")
  42011. },
  42012. {
  42013. name: "Sol-Swallowing",
  42014. height: math.unit(8e10, "feet")
  42015. },
  42016. {
  42017. name: "Hunter of the Heavens",
  42018. height: math.unit(2.4e13, "feet")
  42019. },
  42020. ]
  42021. ))
  42022. characterMakers.push(() => makeCharacter(
  42023. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42024. {
  42025. front: {
  42026. height: math.unit(10, "feet"),
  42027. weight: math.unit(844, "kilograms"),
  42028. name: "Front",
  42029. image: {
  42030. source: "./media/characters/rebecca-pawlson/front.svg",
  42031. extra: 1196/1099,
  42032. bottom: 81/1277
  42033. },
  42034. extraAttributes: {
  42035. "pawSize": {
  42036. name: "Paw Size",
  42037. power: 2,
  42038. type: "area",
  42039. base: math.unit(0.2 * 0.375, "meters^2")
  42040. },
  42041. "handSize": {
  42042. name: "Hand Size",
  42043. power: 2,
  42044. type: "area",
  42045. base: math.unit(0.2 * 0.35, "meters^2")
  42046. },
  42047. "breastDiameter": {
  42048. name: "Breast Diameter",
  42049. power: 1,
  42050. type: "length",
  42051. base: math.unit(0.5, "meters")
  42052. },
  42053. "breastVolume": {
  42054. name: "Breast Volume",
  42055. power: 3,
  42056. type: "volume",
  42057. base: math.unit(0.065, "m^3")
  42058. },
  42059. "breastMass": {
  42060. name: "Breast Mass",
  42061. power: 3,
  42062. type: "mass",
  42063. base: math.unit(65, "kg")
  42064. },
  42065. "nippleDiameter": {
  42066. name: "Nipple Diameter",
  42067. power: 1,
  42068. type: "length",
  42069. base: math.unit(0.1, "meters")
  42070. },
  42071. }
  42072. },
  42073. back: {
  42074. height: math.unit(10, "feet"),
  42075. weight: math.unit(844, "kilograms"),
  42076. name: "Back",
  42077. image: {
  42078. source: "./media/characters/rebecca-pawlson/back.svg",
  42079. extra: 879/776,
  42080. bottom: 43/922
  42081. },
  42082. extraAttributes: {
  42083. "pawSize": {
  42084. name: "Paw Size",
  42085. power: 2,
  42086. type: "area",
  42087. base: math.unit(0.2 * 0.375, "meters^2")
  42088. },
  42089. "handSize": {
  42090. name: "Hand Size",
  42091. power: 2,
  42092. type: "area",
  42093. base: math.unit(0.2 * 0.35, "meters^2")
  42094. },
  42095. "breastDiameter": {
  42096. name: "Breast Diameter",
  42097. power: 1,
  42098. type: "length",
  42099. base: math.unit(0.5, "meters")
  42100. },
  42101. "breastVolume": {
  42102. name: "Breast Volume",
  42103. power: 3,
  42104. type: "volume",
  42105. base: math.unit(0.065, "m^3")
  42106. },
  42107. "breastMass": {
  42108. name: "Breast Mass",
  42109. power: 3,
  42110. type: "mass",
  42111. base: math.unit(65, "kg")
  42112. },
  42113. "nippleDiameter": {
  42114. name: "Nipple Diameter",
  42115. power: 1,
  42116. type: "length",
  42117. base: math.unit(0.1, "meters")
  42118. },
  42119. }
  42120. },
  42121. },
  42122. [
  42123. {
  42124. name: "Normal",
  42125. height: math.unit(6 + 8/12, "feet")
  42126. },
  42127. {
  42128. name: "Mini Macro",
  42129. height: math.unit(10, "feet"),
  42130. default: true
  42131. },
  42132. {
  42133. name: "Macro",
  42134. height: math.unit(100, "feet")
  42135. },
  42136. {
  42137. name: "Mega Macro",
  42138. height: math.unit(2500, "feet")
  42139. },
  42140. {
  42141. name: "Giga Macro",
  42142. height: math.unit(50, "miles")
  42143. },
  42144. ]
  42145. ))
  42146. characterMakers.push(() => makeCharacter(
  42147. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42148. {
  42149. front: {
  42150. height: math.unit(7 + 6/12, "feet"),
  42151. weight: math.unit(600, "lb"),
  42152. name: "Front",
  42153. image: {
  42154. source: "./media/characters/moxie-nova/front.svg",
  42155. extra: 1734/1652,
  42156. bottom: 41/1775
  42157. }
  42158. },
  42159. },
  42160. [
  42161. {
  42162. name: "Normal",
  42163. height: math.unit(7 + 6/12, "feet"),
  42164. default: true
  42165. },
  42166. ]
  42167. ))
  42168. characterMakers.push(() => makeCharacter(
  42169. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42170. {
  42171. goat: {
  42172. height: math.unit(4, "feet"),
  42173. weight: math.unit(180, "lb"),
  42174. name: "Goat",
  42175. image: {
  42176. source: "./media/characters/tiffany/goat.svg",
  42177. extra: 1845/1595,
  42178. bottom: 106/1951
  42179. }
  42180. },
  42181. front: {
  42182. height: math.unit(5, "feet"),
  42183. weight: math.unit(150, "lb"),
  42184. name: "Foxcoon",
  42185. image: {
  42186. source: "./media/characters/tiffany/foxcoon.svg",
  42187. extra: 1941/1845,
  42188. bottom: 58/1999
  42189. }
  42190. },
  42191. },
  42192. [
  42193. {
  42194. name: "Normal",
  42195. height: math.unit(5, "feet"),
  42196. default: true
  42197. },
  42198. ]
  42199. ))
  42200. characterMakers.push(() => makeCharacter(
  42201. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42202. {
  42203. front: {
  42204. height: math.unit(8, "feet"),
  42205. weight: math.unit(300, "lb"),
  42206. name: "Front",
  42207. image: {
  42208. source: "./media/characters/raxinath/front.svg",
  42209. extra: 1407/1309,
  42210. bottom: 39/1446
  42211. }
  42212. },
  42213. back: {
  42214. height: math.unit(8, "feet"),
  42215. weight: math.unit(300, "lb"),
  42216. name: "Back",
  42217. image: {
  42218. source: "./media/characters/raxinath/back.svg",
  42219. extra: 1405/1315,
  42220. bottom: 9/1414
  42221. }
  42222. },
  42223. },
  42224. [
  42225. {
  42226. name: "Speck",
  42227. height: math.unit(0.5, "nm")
  42228. },
  42229. {
  42230. name: "Micro",
  42231. height: math.unit(3, "inches")
  42232. },
  42233. {
  42234. name: "Kobold",
  42235. height: math.unit(3, "feet")
  42236. },
  42237. {
  42238. name: "Normal",
  42239. height: math.unit(8, "feet"),
  42240. default: true
  42241. },
  42242. {
  42243. name: "Giant",
  42244. height: math.unit(50, "feet")
  42245. },
  42246. {
  42247. name: "Macro",
  42248. height: math.unit(1000, "feet")
  42249. },
  42250. {
  42251. name: "Megamacro",
  42252. height: math.unit(1, "mile")
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42258. {
  42259. front: {
  42260. height: math.unit(10, "feet"),
  42261. weight: math.unit(1442, "lb"),
  42262. name: "Front",
  42263. image: {
  42264. source: "./media/characters/mal-dragon/front.svg",
  42265. extra: 1515/1444,
  42266. bottom: 113/1628
  42267. }
  42268. },
  42269. back: {
  42270. height: math.unit(10, "feet"),
  42271. weight: math.unit(1442, "lb"),
  42272. name: "Back",
  42273. image: {
  42274. source: "./media/characters/mal-dragon/back.svg",
  42275. extra: 1527/1434,
  42276. bottom: 25/1552
  42277. }
  42278. },
  42279. },
  42280. [
  42281. {
  42282. name: "Mortal Interaction",
  42283. height: math.unit(10, "feet"),
  42284. default: true
  42285. },
  42286. {
  42287. name: "Large",
  42288. height: math.unit(30, "feet")
  42289. },
  42290. {
  42291. name: "Kaiju",
  42292. height: math.unit(300, "feet")
  42293. },
  42294. {
  42295. name: "Megamacro",
  42296. height: math.unit(10000, "feet")
  42297. },
  42298. {
  42299. name: "Continent Cracker",
  42300. height: math.unit(30000000, "feet")
  42301. },
  42302. {
  42303. name: "Sol-Swallowing",
  42304. height: math.unit(1e11, "feet")
  42305. },
  42306. {
  42307. name: "Light Universal",
  42308. height: math.unit(5, "universes")
  42309. },
  42310. {
  42311. name: "Universe Atoms",
  42312. height: math.unit(1.829e9, "universes")
  42313. },
  42314. {
  42315. name: "Light Multiversal",
  42316. height: math.unit(5, "multiverses")
  42317. },
  42318. {
  42319. name: "Multiverse Atoms",
  42320. height: math.unit(1.829e9, "multiverses")
  42321. },
  42322. {
  42323. name: "Fabric of Time",
  42324. height: math.unit(1e262, "multiverses")
  42325. },
  42326. ]
  42327. ))
  42328. characterMakers.push(() => makeCharacter(
  42329. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42330. {
  42331. front: {
  42332. height: math.unit(9, "feet"),
  42333. weight: math.unit(1050, "lb"),
  42334. name: "Front",
  42335. image: {
  42336. source: "./media/characters/tabitha/front.svg",
  42337. extra: 2083/1994,
  42338. bottom: 68/2151
  42339. }
  42340. },
  42341. },
  42342. [
  42343. {
  42344. name: "Baseline",
  42345. height: math.unit(9, "feet"),
  42346. default: true
  42347. },
  42348. {
  42349. name: "Giant",
  42350. height: math.unit(90, "feet")
  42351. },
  42352. {
  42353. name: "Macro",
  42354. height: math.unit(900, "feet")
  42355. },
  42356. {
  42357. name: "Megamacro",
  42358. height: math.unit(9000, "feet")
  42359. },
  42360. {
  42361. name: "City-Crushing",
  42362. height: math.unit(27000, "feet")
  42363. },
  42364. {
  42365. name: "Mountain-Mashing",
  42366. height: math.unit(90000, "feet")
  42367. },
  42368. {
  42369. name: "Nation Nemesis",
  42370. height: math.unit(9e6, "feet")
  42371. },
  42372. {
  42373. name: "Continent Cracker",
  42374. height: math.unit(27e6, "feet")
  42375. },
  42376. {
  42377. name: "Earth-Eclipsing",
  42378. height: math.unit(2.7e8, "feet")
  42379. },
  42380. {
  42381. name: "Gas Giant Gulper",
  42382. height: math.unit(2.7e9, "feet")
  42383. },
  42384. {
  42385. name: "Sol-Swallowing",
  42386. height: math.unit(9e10, "feet")
  42387. },
  42388. {
  42389. name: "Galaxy Gulper",
  42390. height: math.unit(9, "galaxies")
  42391. },
  42392. {
  42393. name: "Cosmos Churner",
  42394. height: math.unit(9, "universes")
  42395. },
  42396. ]
  42397. ))
  42398. characterMakers.push(() => makeCharacter(
  42399. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42400. {
  42401. front: {
  42402. height: math.unit(160, "cm"),
  42403. weight: math.unit(55, "kg"),
  42404. name: "Front",
  42405. image: {
  42406. source: "./media/characters/tow/front.svg",
  42407. extra: 1751/1722,
  42408. bottom: 74/1825
  42409. }
  42410. },
  42411. },
  42412. [
  42413. {
  42414. name: "Norm",
  42415. height: math.unit(160, "cm")
  42416. },
  42417. {
  42418. name: "Casual",
  42419. height: math.unit(3200, "m"),
  42420. default: true
  42421. },
  42422. {
  42423. name: "Show-Off",
  42424. height: math.unit(160, "km")
  42425. },
  42426. ]
  42427. ))
  42428. characterMakers.push(() => makeCharacter(
  42429. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42430. {
  42431. front: {
  42432. height: math.unit(7 + 11/12, "feet"),
  42433. weight: math.unit(342.8, "lb"),
  42434. name: "Front",
  42435. image: {
  42436. source: "./media/characters/vivian-orca-dragon/front.svg",
  42437. extra: 1890/1865,
  42438. bottom: 28/1918
  42439. }
  42440. },
  42441. },
  42442. [
  42443. {
  42444. name: "Micro",
  42445. height: math.unit(5, "inches")
  42446. },
  42447. {
  42448. name: "Normal",
  42449. height: math.unit(7 + 11/12, "feet"),
  42450. default: true
  42451. },
  42452. {
  42453. name: "Macro",
  42454. height: math.unit(395 + 7/12, "feet")
  42455. },
  42456. ]
  42457. ))
  42458. characterMakers.push(() => makeCharacter(
  42459. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42460. {
  42461. side: {
  42462. height: math.unit(10, "feet"),
  42463. weight: math.unit(1442, "lb"),
  42464. name: "Side",
  42465. image: {
  42466. source: "./media/characters/lotherakon/side.svg",
  42467. extra: 1604/1497,
  42468. bottom: 89/1693
  42469. }
  42470. },
  42471. },
  42472. [
  42473. {
  42474. name: "Mortal Interaction",
  42475. height: math.unit(10, "feet")
  42476. },
  42477. {
  42478. name: "Large",
  42479. height: math.unit(30, "feet"),
  42480. default: true
  42481. },
  42482. {
  42483. name: "Giant",
  42484. height: math.unit(100, "feet")
  42485. },
  42486. {
  42487. name: "Kaiju",
  42488. height: math.unit(300, "feet")
  42489. },
  42490. {
  42491. name: "Macro",
  42492. height: math.unit(1000, "feet")
  42493. },
  42494. {
  42495. name: "Macro+",
  42496. height: math.unit(3000, "feet")
  42497. },
  42498. {
  42499. name: "Megamacro",
  42500. height: math.unit(10000, "feet")
  42501. },
  42502. {
  42503. name: "City-Crushing",
  42504. height: math.unit(30000, "feet")
  42505. },
  42506. {
  42507. name: "Continent Cracker",
  42508. height: math.unit(30e6, "feet")
  42509. },
  42510. {
  42511. name: "Earth Eclipsing",
  42512. height: math.unit(3e8, "feet")
  42513. },
  42514. {
  42515. name: "Gas Giant Gulper",
  42516. height: math.unit(3e9, "feet")
  42517. },
  42518. {
  42519. name: "Sol-Swallowing",
  42520. height: math.unit(1e11, "feet")
  42521. },
  42522. {
  42523. name: "System Swallower",
  42524. height: math.unit(3e14, "feet")
  42525. },
  42526. {
  42527. name: "Galaxy Gulper",
  42528. height: math.unit(10, "galaxies")
  42529. },
  42530. {
  42531. name: "Light Universal",
  42532. height: math.unit(5, "universes")
  42533. },
  42534. {
  42535. name: "Universe Palm",
  42536. height: math.unit(20, "universes")
  42537. },
  42538. {
  42539. name: "Light Multiversal",
  42540. height: math.unit(5, "multiverses")
  42541. },
  42542. {
  42543. name: "Multiverse Palm",
  42544. height: math.unit(20, "multiverses")
  42545. },
  42546. {
  42547. name: "Inferno Incarnate",
  42548. height: math.unit(1e7, "multiverses")
  42549. },
  42550. ]
  42551. ))
  42552. characterMakers.push(() => makeCharacter(
  42553. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42554. {
  42555. front: {
  42556. height: math.unit(8, "feet"),
  42557. weight: math.unit(1200, "lb"),
  42558. name: "Front",
  42559. image: {
  42560. source: "./media/characters/malithee/front.svg",
  42561. extra: 1675/1640,
  42562. bottom: 162/1837
  42563. }
  42564. },
  42565. },
  42566. [
  42567. {
  42568. name: "Mortal Interaction",
  42569. height: math.unit(8, "feet"),
  42570. default: true
  42571. },
  42572. {
  42573. name: "Large",
  42574. height: math.unit(24, "feet")
  42575. },
  42576. {
  42577. name: "Kaiju",
  42578. height: math.unit(240, "feet")
  42579. },
  42580. {
  42581. name: "Megamacro",
  42582. height: math.unit(8000, "feet")
  42583. },
  42584. {
  42585. name: "Continent Cracker",
  42586. height: math.unit(24e6, "feet")
  42587. },
  42588. {
  42589. name: "Earth-Eclipsing",
  42590. height: math.unit(2.4e8, "feet")
  42591. },
  42592. {
  42593. name: "Sol-Swallowing",
  42594. height: math.unit(8e10, "feet")
  42595. },
  42596. {
  42597. name: "Galaxy Gulper",
  42598. height: math.unit(8, "galaxies")
  42599. },
  42600. {
  42601. name: "Light Universal",
  42602. height: math.unit(4, "universes")
  42603. },
  42604. {
  42605. name: "Universe Atoms",
  42606. height: math.unit(1.829e9, "universes")
  42607. },
  42608. {
  42609. name: "Light Multiversal",
  42610. height: math.unit(4, "multiverses")
  42611. },
  42612. {
  42613. name: "Multiverse Atoms",
  42614. height: math.unit(1.829e9, "multiverses")
  42615. },
  42616. {
  42617. name: "Nigh-Omnipresence",
  42618. height: math.unit(8e261, "multiverses")
  42619. },
  42620. ]
  42621. ))
  42622. characterMakers.push(() => makeCharacter(
  42623. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42624. {
  42625. front: {
  42626. height: math.unit(10, "feet"),
  42627. weight: math.unit(1500, "lb"),
  42628. name: "Front",
  42629. image: {
  42630. source: "./media/characters/miles-thestia/front.svg",
  42631. extra: 1812/1727,
  42632. bottom: 86/1898
  42633. }
  42634. },
  42635. back: {
  42636. height: math.unit(10, "feet"),
  42637. weight: math.unit(1500, "lb"),
  42638. name: "Back",
  42639. image: {
  42640. source: "./media/characters/miles-thestia/back.svg",
  42641. extra: 1799/1690,
  42642. bottom: 47/1846
  42643. }
  42644. },
  42645. frontNsfw: {
  42646. height: math.unit(10, "feet"),
  42647. weight: math.unit(1500, "lb"),
  42648. name: "Front (NSFW)",
  42649. image: {
  42650. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42651. extra: 1812/1727,
  42652. bottom: 86/1898
  42653. }
  42654. },
  42655. },
  42656. [
  42657. {
  42658. name: "Mini-Macro",
  42659. height: math.unit(10, "feet"),
  42660. default: true
  42661. },
  42662. ]
  42663. ))
  42664. characterMakers.push(() => makeCharacter(
  42665. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42666. {
  42667. front: {
  42668. height: math.unit(25, "feet"),
  42669. name: "Front",
  42670. image: {
  42671. source: "./media/characters/titan-s-wulf/front.svg",
  42672. extra: 1560/1484,
  42673. bottom: 76/1636
  42674. }
  42675. },
  42676. },
  42677. [
  42678. {
  42679. name: "Smallest",
  42680. height: math.unit(25, "feet"),
  42681. default: true
  42682. },
  42683. {
  42684. name: "Normal",
  42685. height: math.unit(200, "feet")
  42686. },
  42687. {
  42688. name: "Macro",
  42689. height: math.unit(200000, "feet")
  42690. },
  42691. {
  42692. name: "Multiversal Original",
  42693. height: math.unit(10000, "multiverses")
  42694. },
  42695. ]
  42696. ))
  42697. characterMakers.push(() => makeCharacter(
  42698. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42699. {
  42700. front: {
  42701. height: math.unit(8, "feet"),
  42702. weight: math.unit(553, "lb"),
  42703. name: "Front",
  42704. image: {
  42705. source: "./media/characters/tawendeh/front.svg",
  42706. extra: 2365/2268,
  42707. bottom: 83/2448
  42708. }
  42709. },
  42710. frontClothed: {
  42711. height: math.unit(8, "feet"),
  42712. weight: math.unit(553, "lb"),
  42713. name: "Front (Clothed)",
  42714. image: {
  42715. source: "./media/characters/tawendeh/front-clothed.svg",
  42716. extra: 2365/2268,
  42717. bottom: 83/2448
  42718. }
  42719. },
  42720. back: {
  42721. height: math.unit(8, "feet"),
  42722. weight: math.unit(553, "lb"),
  42723. name: "Back",
  42724. image: {
  42725. source: "./media/characters/tawendeh/back.svg",
  42726. extra: 2397/2294,
  42727. bottom: 42/2439
  42728. }
  42729. },
  42730. },
  42731. [
  42732. {
  42733. name: "Mortal Interaction",
  42734. height: math.unit(8, "feet"),
  42735. default: true
  42736. },
  42737. {
  42738. name: "Giant",
  42739. height: math.unit(80, "feet")
  42740. },
  42741. {
  42742. name: "Macro",
  42743. height: math.unit(800, "feet")
  42744. },
  42745. {
  42746. name: "Megamacro",
  42747. height: math.unit(8000, "feet")
  42748. },
  42749. {
  42750. name: "City-Crushing",
  42751. height: math.unit(24000, "feet")
  42752. },
  42753. {
  42754. name: "Mountain-Mashing",
  42755. height: math.unit(80000, "feet")
  42756. },
  42757. {
  42758. name: "Nation Nemesis",
  42759. height: math.unit(8e6, "feet")
  42760. },
  42761. {
  42762. name: "Continent Cracker",
  42763. height: math.unit(24e6, "feet")
  42764. },
  42765. {
  42766. name: "Earth-Eclipsing",
  42767. height: math.unit(2.4e8, "feet")
  42768. },
  42769. {
  42770. name: "Gas Giant Gulper",
  42771. height: math.unit(2.4e9, "feet")
  42772. },
  42773. {
  42774. name: "Sol-Swallowing",
  42775. height: math.unit(8e10, "feet")
  42776. },
  42777. {
  42778. name: "Galaxy Gulper",
  42779. height: math.unit(8, "galaxies")
  42780. },
  42781. {
  42782. name: "Cosmos Churner",
  42783. height: math.unit(8, "universes")
  42784. },
  42785. {
  42786. name: "Omnipotent Otter",
  42787. height: math.unit(80, "universes")
  42788. },
  42789. ]
  42790. ))
  42791. characterMakers.push(() => makeCharacter(
  42792. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42793. {
  42794. front: {
  42795. height: math.unit(2.6, "meters"),
  42796. weight: math.unit(900, "kg"),
  42797. name: "Front",
  42798. image: {
  42799. source: "./media/characters/neesha/front.svg",
  42800. extra: 1803/1653,
  42801. bottom: 128/1931
  42802. }
  42803. },
  42804. },
  42805. [
  42806. {
  42807. name: "Normal",
  42808. height: math.unit(2.6, "meters"),
  42809. default: true
  42810. },
  42811. {
  42812. name: "Macro",
  42813. height: math.unit(50, "meters")
  42814. },
  42815. ]
  42816. ))
  42817. characterMakers.push(() => makeCharacter(
  42818. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42819. {
  42820. front: {
  42821. height: math.unit(5, "feet"),
  42822. weight: math.unit(185, "lb"),
  42823. name: "Front",
  42824. image: {
  42825. source: "./media/characters/kyera/front.svg",
  42826. extra: 1875/1790,
  42827. bottom: 96/1971
  42828. }
  42829. },
  42830. },
  42831. [
  42832. {
  42833. name: "Normal",
  42834. height: math.unit(5, "feet"),
  42835. default: true
  42836. },
  42837. ]
  42838. ))
  42839. characterMakers.push(() => makeCharacter(
  42840. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42841. {
  42842. front: {
  42843. height: math.unit(7 + 6/12, "feet"),
  42844. weight: math.unit(540, "lb"),
  42845. name: "Front",
  42846. image: {
  42847. source: "./media/characters/yuko/front.svg",
  42848. extra: 1282/1222,
  42849. bottom: 101/1383
  42850. }
  42851. },
  42852. frontClothed: {
  42853. height: math.unit(7 + 6/12, "feet"),
  42854. weight: math.unit(540, "lb"),
  42855. name: "Front (Clothed)",
  42856. image: {
  42857. source: "./media/characters/yuko/front-clothed.svg",
  42858. extra: 1282/1222,
  42859. bottom: 101/1383
  42860. }
  42861. },
  42862. },
  42863. [
  42864. {
  42865. name: "Normal",
  42866. height: math.unit(7 + 6/12, "feet"),
  42867. default: true
  42868. },
  42869. {
  42870. name: "Macro",
  42871. height: math.unit(26 + 9/12, "feet")
  42872. },
  42873. {
  42874. name: "Megamacro",
  42875. height: math.unit(300, "feet")
  42876. },
  42877. {
  42878. name: "Gigamacro",
  42879. height: math.unit(5000, "feet")
  42880. },
  42881. {
  42882. name: "Planetary",
  42883. height: math.unit(10000, "miles")
  42884. },
  42885. ]
  42886. ))
  42887. characterMakers.push(() => makeCharacter(
  42888. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42889. {
  42890. front: {
  42891. height: math.unit(8 + 2/12, "feet"),
  42892. weight: math.unit(600, "lb"),
  42893. name: "Front",
  42894. image: {
  42895. source: "./media/characters/deam-nitrel/front.svg",
  42896. extra: 1308/1234,
  42897. bottom: 125/1433
  42898. }
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "Normal",
  42904. height: math.unit(8 + 2/12, "feet"),
  42905. default: true
  42906. },
  42907. ]
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42911. {
  42912. front: {
  42913. height: math.unit(6.1, "feet"),
  42914. weight: math.unit(180, "lb"),
  42915. name: "Front",
  42916. image: {
  42917. source: "./media/characters/skyress/front.svg",
  42918. extra: 1045/915,
  42919. bottom: 28/1073
  42920. }
  42921. },
  42922. maw: {
  42923. height: math.unit(1, "feet"),
  42924. name: "Maw",
  42925. image: {
  42926. source: "./media/characters/skyress/maw.svg"
  42927. }
  42928. },
  42929. },
  42930. [
  42931. {
  42932. name: "Normal",
  42933. height: math.unit(6.1, "feet"),
  42934. default: true
  42935. },
  42936. {
  42937. name: "Macro",
  42938. height: math.unit(200, "feet")
  42939. },
  42940. ]
  42941. ))
  42942. characterMakers.push(() => makeCharacter(
  42943. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42944. {
  42945. front: {
  42946. height: math.unit(4 + 2/12, "feet"),
  42947. weight: math.unit(40, "kg"),
  42948. name: "Front",
  42949. image: {
  42950. source: "./media/characters/amethyst-jones/front.svg",
  42951. extra: 1220/1150,
  42952. bottom: 101/1321
  42953. }
  42954. },
  42955. },
  42956. [
  42957. {
  42958. name: "Normal",
  42959. height: math.unit(4 + 2/12, "feet"),
  42960. default: true
  42961. },
  42962. ]
  42963. ))
  42964. characterMakers.push(() => makeCharacter(
  42965. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42966. {
  42967. front: {
  42968. height: math.unit(1.7, "m"),
  42969. weight: math.unit(135, "lb"),
  42970. name: "Front",
  42971. image: {
  42972. source: "./media/characters/jade/front.svg",
  42973. extra: 1818/1767,
  42974. bottom: 32/1850
  42975. }
  42976. },
  42977. back: {
  42978. height: math.unit(1.7, "m"),
  42979. weight: math.unit(135, "lb"),
  42980. name: "Back",
  42981. image: {
  42982. source: "./media/characters/jade/back.svg",
  42983. extra: 1869/1809,
  42984. bottom: 35/1904
  42985. }
  42986. },
  42987. hand: {
  42988. height: math.unit(0.24, "m"),
  42989. name: "Hand",
  42990. image: {
  42991. source: "./media/characters/jade/hand.svg"
  42992. }
  42993. },
  42994. foot: {
  42995. height: math.unit(0.263, "m"),
  42996. name: "Foot",
  42997. image: {
  42998. source: "./media/characters/jade/foot.svg"
  42999. }
  43000. },
  43001. dick: {
  43002. height: math.unit(0.47, "m"),
  43003. name: "Dick",
  43004. image: {
  43005. source: "./media/characters/jade/dick.svg"
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Micro",
  43012. height: math.unit(22, "cm")
  43013. },
  43014. {
  43015. name: "Normal",
  43016. height: math.unit(1.7, "m"),
  43017. default: true
  43018. },
  43019. {
  43020. name: "Macro",
  43021. height: math.unit(152, "m")
  43022. },
  43023. ]
  43024. ))
  43025. characterMakers.push(() => makeCharacter(
  43026. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43027. {
  43028. front: {
  43029. height: math.unit(100, "miles"),
  43030. weight: math.unit(20000, "tons"),
  43031. name: "Front",
  43032. image: {
  43033. source: "./media/characters/cookie/front.svg",
  43034. extra: 1125/1070,
  43035. bottom: 30/1155
  43036. }
  43037. },
  43038. },
  43039. [
  43040. {
  43041. name: "Big",
  43042. height: math.unit(50, "feet")
  43043. },
  43044. {
  43045. name: "Macro",
  43046. height: math.unit(100, "miles"),
  43047. default: true
  43048. },
  43049. {
  43050. name: "Megamacro",
  43051. height: math.unit(90000, "miles")
  43052. },
  43053. ]
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43057. {
  43058. front: {
  43059. height: math.unit(6, "feet"),
  43060. weight: math.unit(145, "lb"),
  43061. name: "Front",
  43062. image: {
  43063. source: "./media/characters/farzian/front.svg",
  43064. extra: 1902/1693,
  43065. bottom: 108/2010
  43066. }
  43067. },
  43068. },
  43069. [
  43070. {
  43071. name: "Macro",
  43072. height: math.unit(500, "feet"),
  43073. default: true
  43074. },
  43075. ]
  43076. ))
  43077. characterMakers.push(() => makeCharacter(
  43078. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43079. {
  43080. front: {
  43081. height: math.unit(3 + 6/12, "feet"),
  43082. weight: math.unit(50, "lb"),
  43083. name: "Front",
  43084. image: {
  43085. source: "./media/characters/kimberly-tilson/front.svg",
  43086. extra: 1400/1322,
  43087. bottom: 36/1436
  43088. }
  43089. },
  43090. back: {
  43091. height: math.unit(3 + 6/12, "feet"),
  43092. weight: math.unit(50, "lb"),
  43093. name: "Back",
  43094. image: {
  43095. source: "./media/characters/kimberly-tilson/back.svg",
  43096. extra: 1370/1307,
  43097. bottom: 20/1390
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Normal",
  43104. height: math.unit(3 + 6/12, "feet"),
  43105. default: true
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43111. {
  43112. front: {
  43113. height: math.unit(350, "meters"),
  43114. weight: math.unit(7.57059e+8, "lb"),
  43115. name: "Front",
  43116. image: {
  43117. source: "./media/characters/harthos/front.svg",
  43118. extra: 455/446,
  43119. bottom: 15/470
  43120. },
  43121. form: "peacekeeper",
  43122. default: true
  43123. },
  43124. allusus_front: {
  43125. height: math.unit(270, "meters"),
  43126. weight: math.unit(3.47550e+8, "lb"),
  43127. name: "Front",
  43128. image: {
  43129. source: "./media/characters/harthos/allusus-front.svg",
  43130. extra: 455/446,
  43131. bottom: 15/470
  43132. },
  43133. form: "allusus",
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Macro",
  43139. height: math.unit(350, "meters"),
  43140. default: true,
  43141. form: "peacekeeper"
  43142. },
  43143. {
  43144. name: "Macro",
  43145. height: math.unit(270, "meters"),
  43146. default: true,
  43147. form: "allusus"
  43148. },
  43149. ],
  43150. {
  43151. "peacekeeper": {
  43152. name: "Peacekeeper",
  43153. default: true
  43154. },
  43155. "allusus": {
  43156. name: "Allusus",
  43157. },
  43158. }
  43159. ))
  43160. characterMakers.push(() => makeCharacter(
  43161. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43162. {
  43163. front: {
  43164. height: math.unit(15, "feet"),
  43165. name: "Front",
  43166. image: {
  43167. source: "./media/characters/hypatia/front.svg",
  43168. extra: 1653/1591,
  43169. bottom: 79/1732
  43170. }
  43171. },
  43172. },
  43173. [
  43174. {
  43175. name: "Normal",
  43176. height: math.unit(15, "feet")
  43177. },
  43178. {
  43179. name: "Small",
  43180. height: math.unit(300, "feet")
  43181. },
  43182. {
  43183. name: "Macro",
  43184. height: math.unit(2500, "feet"),
  43185. default: true
  43186. },
  43187. {
  43188. name: "Mega Macro",
  43189. height: math.unit(1500, "miles")
  43190. },
  43191. {
  43192. name: "Giga Macro",
  43193. height: math.unit(1.5e6, "miles")
  43194. },
  43195. ]
  43196. ))
  43197. characterMakers.push(() => makeCharacter(
  43198. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43199. {
  43200. front: {
  43201. height: math.unit(6, "feet"),
  43202. weight: math.unit(200, "lb"),
  43203. name: "Front",
  43204. image: {
  43205. source: "./media/characters/wulver/front.svg",
  43206. extra: 1724/1632,
  43207. bottom: 130/1854
  43208. }
  43209. },
  43210. frontNsfw: {
  43211. height: math.unit(6, "feet"),
  43212. weight: math.unit(200, "lb"),
  43213. name: "Front (NSFW)",
  43214. image: {
  43215. source: "./media/characters/wulver/front-nsfw.svg",
  43216. extra: 1724/1632,
  43217. bottom: 130/1854
  43218. }
  43219. },
  43220. },
  43221. [
  43222. {
  43223. name: "Human-Sized",
  43224. height: math.unit(6, "feet")
  43225. },
  43226. {
  43227. name: "Normal",
  43228. height: math.unit(4, "meters"),
  43229. default: true
  43230. },
  43231. {
  43232. name: "Large",
  43233. height: math.unit(6, "m")
  43234. },
  43235. ]
  43236. ))
  43237. characterMakers.push(() => makeCharacter(
  43238. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43239. {
  43240. front: {
  43241. height: math.unit(7, "feet"),
  43242. name: "Front",
  43243. image: {
  43244. source: "./media/characters/maru/front.svg",
  43245. extra: 1595/1570,
  43246. bottom: 0/1595
  43247. }
  43248. },
  43249. },
  43250. [
  43251. {
  43252. name: "Normal",
  43253. height: math.unit(7, "feet"),
  43254. default: true
  43255. },
  43256. {
  43257. name: "Macro",
  43258. height: math.unit(700, "feet")
  43259. },
  43260. {
  43261. name: "Mega Macro",
  43262. height: math.unit(25, "miles")
  43263. },
  43264. ]
  43265. ))
  43266. characterMakers.push(() => makeCharacter(
  43267. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43268. {
  43269. front: {
  43270. height: math.unit(6, "feet"),
  43271. weight: math.unit(170, "lb"),
  43272. name: "Front",
  43273. image: {
  43274. source: "./media/characters/xenon/front.svg",
  43275. extra: 1376/1305,
  43276. bottom: 56/1432
  43277. }
  43278. },
  43279. back: {
  43280. height: math.unit(6, "feet"),
  43281. weight: math.unit(170, "lb"),
  43282. name: "Back",
  43283. image: {
  43284. source: "./media/characters/xenon/back.svg",
  43285. extra: 1328/1259,
  43286. bottom: 95/1423
  43287. }
  43288. },
  43289. maw: {
  43290. height: math.unit(0.52, "feet"),
  43291. name: "Maw",
  43292. image: {
  43293. source: "./media/characters/xenon/maw.svg"
  43294. }
  43295. },
  43296. handLeft: {
  43297. height: math.unit(0.82 * 169 / 153, "feet"),
  43298. name: "Hand (Left)",
  43299. image: {
  43300. source: "./media/characters/xenon/hand-left.svg"
  43301. }
  43302. },
  43303. handRight: {
  43304. height: math.unit(0.82, "feet"),
  43305. name: "Hand (Right)",
  43306. image: {
  43307. source: "./media/characters/xenon/hand-right.svg"
  43308. }
  43309. },
  43310. footLeft: {
  43311. height: math.unit(1.13, "feet"),
  43312. name: "Foot (Left)",
  43313. image: {
  43314. source: "./media/characters/xenon/foot-left.svg"
  43315. }
  43316. },
  43317. footRight: {
  43318. height: math.unit(1.13 * 194 / 196, "feet"),
  43319. name: "Foot (Right)",
  43320. image: {
  43321. source: "./media/characters/xenon/foot-right.svg"
  43322. }
  43323. },
  43324. },
  43325. [
  43326. {
  43327. name: "Micro",
  43328. height: math.unit(0.8, "inches")
  43329. },
  43330. {
  43331. name: "Normal",
  43332. height: math.unit(6, "feet")
  43333. },
  43334. {
  43335. name: "Macro",
  43336. height: math.unit(50, "feet"),
  43337. default: true
  43338. },
  43339. {
  43340. name: "Macro+",
  43341. height: math.unit(250, "feet")
  43342. },
  43343. {
  43344. name: "Megamacro",
  43345. height: math.unit(1500, "feet")
  43346. },
  43347. ]
  43348. ))
  43349. characterMakers.push(() => makeCharacter(
  43350. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43351. {
  43352. front: {
  43353. height: math.unit(7 + 5/12, "feet"),
  43354. name: "Front",
  43355. image: {
  43356. source: "./media/characters/zane/front.svg",
  43357. extra: 1260/1203,
  43358. bottom: 94/1354
  43359. }
  43360. },
  43361. back: {
  43362. height: math.unit(5.05, "feet"),
  43363. name: "Back",
  43364. image: {
  43365. source: "./media/characters/zane/back.svg",
  43366. extra: 893/829,
  43367. bottom: 30/923
  43368. }
  43369. },
  43370. werewolf: {
  43371. height: math.unit(11, "feet"),
  43372. name: "Werewolf",
  43373. image: {
  43374. source: "./media/characters/zane/werewolf.svg",
  43375. extra: 1383/1323,
  43376. bottom: 89/1472
  43377. }
  43378. },
  43379. foot: {
  43380. height: math.unit(1.46, "feet"),
  43381. name: "Foot",
  43382. image: {
  43383. source: "./media/characters/zane/foot.svg"
  43384. }
  43385. },
  43386. footFront: {
  43387. height: math.unit(0.784, "feet"),
  43388. name: "Foot (Front)",
  43389. image: {
  43390. source: "./media/characters/zane/foot-front.svg"
  43391. }
  43392. },
  43393. dick: {
  43394. height: math.unit(1.95, "feet"),
  43395. name: "Dick",
  43396. image: {
  43397. source: "./media/characters/zane/dick.svg"
  43398. }
  43399. },
  43400. dickWerewolf: {
  43401. height: math.unit(3.77, "feet"),
  43402. name: "Dick (Werewolf)",
  43403. image: {
  43404. source: "./media/characters/zane/dick.svg"
  43405. }
  43406. },
  43407. },
  43408. [
  43409. {
  43410. name: "Normal",
  43411. height: math.unit(7 + 5/12, "feet"),
  43412. default: true
  43413. },
  43414. ]
  43415. ))
  43416. characterMakers.push(() => makeCharacter(
  43417. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43418. {
  43419. front: {
  43420. height: math.unit(6 + 2/12, "feet"),
  43421. weight: math.unit(284, "lb"),
  43422. name: "Front",
  43423. image: {
  43424. source: "./media/characters/benni-desparque/front.svg",
  43425. extra: 878/729,
  43426. bottom: 58/936
  43427. }
  43428. },
  43429. back: {
  43430. height: math.unit(6 + 2/12, "feet"),
  43431. weight: math.unit(284, "lb"),
  43432. name: "Back",
  43433. image: {
  43434. source: "./media/characters/benni-desparque/back.svg",
  43435. extra: 901/756,
  43436. bottom: 51/952
  43437. }
  43438. },
  43439. dressed: {
  43440. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43441. weight: math.unit(284, "lb"),
  43442. name: "Dressed",
  43443. image: {
  43444. source: "./media/characters/benni-desparque/dressed.svg",
  43445. extra: 1514/1276,
  43446. bottom: 65/1579
  43447. }
  43448. },
  43449. hand: {
  43450. height: math.unit(1.28, "feet"),
  43451. name: "Hand",
  43452. image: {
  43453. source: "./media/characters/benni-desparque/hand.svg"
  43454. }
  43455. },
  43456. foot: {
  43457. height: math.unit(1.53, "feet"),
  43458. name: "Foot",
  43459. image: {
  43460. source: "./media/characters/benni-desparque/foot.svg"
  43461. }
  43462. },
  43463. aiControlUnit: {
  43464. height: math.unit(0.175, "feet"),
  43465. name: "AI Control Unit",
  43466. image: {
  43467. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43468. }
  43469. },
  43470. },
  43471. [
  43472. {
  43473. name: "Civilian",
  43474. height: math.unit(6 + 2/12, "feet")
  43475. },
  43476. {
  43477. name: "Normal",
  43478. height: math.unit(98, "feet"),
  43479. default: true
  43480. },
  43481. {
  43482. name: "Kaiju Fighter",
  43483. height: math.unit(268, "feet")
  43484. },
  43485. ]
  43486. ))
  43487. characterMakers.push(() => makeCharacter(
  43488. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43489. {
  43490. front: {
  43491. height: math.unit(5, "feet"),
  43492. weight: math.unit(105, "lb"),
  43493. name: "Front",
  43494. image: {
  43495. source: "./media/characters/maxine/front.svg",
  43496. extra: 1386/1250,
  43497. bottom: 71/1457
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(5, "feet"),
  43505. default: true
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43511. {
  43512. front: {
  43513. height: math.unit(11 + 7/12, "feet"),
  43514. weight: math.unit(9576, "lb"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/scaly/front.svg",
  43518. extra: 888/867,
  43519. bottom: 36/924
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Normal",
  43526. height: math.unit(11 + 7/12, "feet"),
  43527. default: true
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43533. {
  43534. front: {
  43535. height: math.unit(6 + 3/12, "feet"),
  43536. name: "Front",
  43537. image: {
  43538. source: "./media/characters/saelria/front.svg",
  43539. extra: 1243/1138,
  43540. bottom: 46/1289
  43541. }
  43542. },
  43543. },
  43544. [
  43545. {
  43546. name: "Micro",
  43547. height: math.unit(6, "inches"),
  43548. },
  43549. {
  43550. name: "Normal",
  43551. height: math.unit(6 + 3/12, "feet"),
  43552. default: true
  43553. },
  43554. {
  43555. name: "Macro",
  43556. height: math.unit(25, "feet")
  43557. },
  43558. ]
  43559. ))
  43560. characterMakers.push(() => makeCharacter(
  43561. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43562. {
  43563. front: {
  43564. height: math.unit(80, "meters"),
  43565. weight: math.unit(7000, "tonnes"),
  43566. name: "Front",
  43567. image: {
  43568. source: "./media/characters/tef/front.svg",
  43569. extra: 2036/1991,
  43570. bottom: 54/2090
  43571. }
  43572. },
  43573. back: {
  43574. height: math.unit(80, "meters"),
  43575. weight: math.unit(7000, "tonnes"),
  43576. name: "Back",
  43577. image: {
  43578. source: "./media/characters/tef/back.svg",
  43579. extra: 2036/1991,
  43580. bottom: 54/2090
  43581. }
  43582. },
  43583. },
  43584. [
  43585. {
  43586. name: "Macro",
  43587. height: math.unit(80, "meters"),
  43588. default: true
  43589. },
  43590. ]
  43591. ))
  43592. characterMakers.push(() => makeCharacter(
  43593. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43594. {
  43595. front: {
  43596. height: math.unit(13, "feet"),
  43597. weight: math.unit(6, "tons"),
  43598. name: "Front",
  43599. image: {
  43600. source: "./media/characters/rover/front.svg",
  43601. extra: 1233/1156,
  43602. bottom: 50/1283
  43603. }
  43604. },
  43605. back: {
  43606. height: math.unit(13, "feet"),
  43607. weight: math.unit(6, "tons"),
  43608. name: "Back",
  43609. image: {
  43610. source: "./media/characters/rover/back.svg",
  43611. extra: 1327/1258,
  43612. bottom: 39/1366
  43613. }
  43614. },
  43615. },
  43616. [
  43617. {
  43618. name: "Normal",
  43619. height: math.unit(13, "feet"),
  43620. default: true
  43621. },
  43622. {
  43623. name: "Macro",
  43624. height: math.unit(1300, "feet")
  43625. },
  43626. {
  43627. name: "Megamacro",
  43628. height: math.unit(1300, "miles")
  43629. },
  43630. {
  43631. name: "Gigamacro",
  43632. height: math.unit(1300000, "miles")
  43633. },
  43634. ]
  43635. ))
  43636. characterMakers.push(() => makeCharacter(
  43637. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43638. {
  43639. front: {
  43640. height: math.unit(10, "feet"),
  43641. weight: math.unit(500, "lb"),
  43642. name: "Front",
  43643. image: {
  43644. source: "./media/characters/ariz/front.svg",
  43645. extra: 461/450,
  43646. bottom: 16/477
  43647. }
  43648. },
  43649. },
  43650. [
  43651. {
  43652. name: "MiniMacro",
  43653. height: math.unit(10, "feet"),
  43654. default: true
  43655. },
  43656. ]
  43657. ))
  43658. characterMakers.push(() => makeCharacter(
  43659. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43660. {
  43661. front: {
  43662. height: math.unit(6, "feet"),
  43663. weight: math.unit(140, "lb"),
  43664. name: "Front",
  43665. image: {
  43666. source: "./media/characters/sigrun/front.svg",
  43667. extra: 1418/1359,
  43668. bottom: 27/1445
  43669. }
  43670. },
  43671. },
  43672. [
  43673. {
  43674. name: "Macro",
  43675. height: math.unit(35, "feet"),
  43676. default: true
  43677. },
  43678. ]
  43679. ))
  43680. characterMakers.push(() => makeCharacter(
  43681. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43682. {
  43683. front: {
  43684. height: math.unit(6, "feet"),
  43685. weight: math.unit(150, "lb"),
  43686. name: "Front",
  43687. image: {
  43688. source: "./media/characters/numin/front.svg",
  43689. extra: 1433/1388,
  43690. bottom: 12/1445
  43691. }
  43692. },
  43693. },
  43694. [
  43695. {
  43696. name: "Macro",
  43697. height: math.unit(21.5, "km"),
  43698. default: true
  43699. },
  43700. ]
  43701. ))
  43702. characterMakers.push(() => makeCharacter(
  43703. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43704. {
  43705. front: {
  43706. height: math.unit(6, "feet"),
  43707. weight: math.unit(463, "lb"),
  43708. name: "Front",
  43709. image: {
  43710. source: "./media/characters/melwa/front.svg",
  43711. extra: 1307/1248,
  43712. bottom: 93/1400
  43713. }
  43714. },
  43715. },
  43716. [
  43717. {
  43718. name: "Macro",
  43719. height: math.unit(50, "meters"),
  43720. default: true
  43721. },
  43722. ]
  43723. ))
  43724. characterMakers.push(() => makeCharacter(
  43725. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43726. {
  43727. front: {
  43728. height: math.unit(325, "feet"),
  43729. name: "Front",
  43730. image: {
  43731. source: "./media/characters/zorkaiju/front.svg",
  43732. extra: 1955/1814,
  43733. bottom: 40/1995
  43734. }
  43735. },
  43736. frontExtended: {
  43737. height: math.unit(325, "feet"),
  43738. name: "Front (Extended)",
  43739. image: {
  43740. source: "./media/characters/zorkaiju/front-extended.svg",
  43741. extra: 1955/1814,
  43742. bottom: 40/1995
  43743. }
  43744. },
  43745. side: {
  43746. height: math.unit(325, "feet"),
  43747. name: "Side",
  43748. image: {
  43749. source: "./media/characters/zorkaiju/side.svg",
  43750. extra: 1495/1396,
  43751. bottom: 17/1512
  43752. }
  43753. },
  43754. sideExtended: {
  43755. height: math.unit(325, "feet"),
  43756. name: "Side (Extended)",
  43757. image: {
  43758. source: "./media/characters/zorkaiju/side-extended.svg",
  43759. extra: 1495/1396,
  43760. bottom: 17/1512
  43761. }
  43762. },
  43763. back: {
  43764. height: math.unit(325, "feet"),
  43765. name: "Back",
  43766. image: {
  43767. source: "./media/characters/zorkaiju/back.svg",
  43768. extra: 1959/1821,
  43769. bottom: 31/1990
  43770. }
  43771. },
  43772. backExtended: {
  43773. height: math.unit(325, "feet"),
  43774. name: "Back (Extended)",
  43775. image: {
  43776. source: "./media/characters/zorkaiju/back-extended.svg",
  43777. extra: 1959/1821,
  43778. bottom: 31/1990
  43779. }
  43780. },
  43781. hand: {
  43782. height: math.unit(58.4, "feet"),
  43783. name: "Hand",
  43784. image: {
  43785. source: "./media/characters/zorkaiju/hand.svg"
  43786. }
  43787. },
  43788. handExtended: {
  43789. height: math.unit(61.4, "feet"),
  43790. name: "Hand (Extended)",
  43791. image: {
  43792. source: "./media/characters/zorkaiju/hand-extended.svg"
  43793. }
  43794. },
  43795. foot: {
  43796. height: math.unit(95, "feet"),
  43797. name: "Foot",
  43798. image: {
  43799. source: "./media/characters/zorkaiju/foot.svg"
  43800. }
  43801. },
  43802. leftArm: {
  43803. height: math.unit(59, "feet"),
  43804. name: "Left Arm",
  43805. image: {
  43806. source: "./media/characters/zorkaiju/left-arm.svg"
  43807. }
  43808. },
  43809. rightArm: {
  43810. height: math.unit(59, "feet"),
  43811. name: "Right Arm",
  43812. image: {
  43813. source: "./media/characters/zorkaiju/right-arm.svg"
  43814. }
  43815. },
  43816. leftArmExtended: {
  43817. height: math.unit(59 * 1.033546, "feet"),
  43818. name: "Left Arm (Extended)",
  43819. image: {
  43820. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43821. }
  43822. },
  43823. rightArmExtended: {
  43824. height: math.unit(59 * 1.0496, "feet"),
  43825. name: "Right Arm (Extended)",
  43826. image: {
  43827. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43828. }
  43829. },
  43830. tail: {
  43831. height: math.unit(104, "feet"),
  43832. name: "Tail",
  43833. image: {
  43834. source: "./media/characters/zorkaiju/tail.svg"
  43835. }
  43836. },
  43837. tailExtended: {
  43838. height: math.unit(104, "feet"),
  43839. name: "Tail (Extended)",
  43840. image: {
  43841. source: "./media/characters/zorkaiju/tail-extended.svg"
  43842. }
  43843. },
  43844. tailBottom: {
  43845. height: math.unit(104, "feet"),
  43846. name: "Tail Bottom",
  43847. image: {
  43848. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43849. }
  43850. },
  43851. crystal: {
  43852. height: math.unit(27.54, "feet"),
  43853. name: "Crystal",
  43854. image: {
  43855. source: "./media/characters/zorkaiju/crystal.svg"
  43856. }
  43857. },
  43858. },
  43859. [
  43860. {
  43861. name: "Kaiju",
  43862. height: math.unit(325, "feet"),
  43863. default: true
  43864. },
  43865. ]
  43866. ))
  43867. characterMakers.push(() => makeCharacter(
  43868. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43869. {
  43870. front: {
  43871. height: math.unit(6 + 1/12, "feet"),
  43872. weight: math.unit(115, "lb"),
  43873. name: "Front",
  43874. image: {
  43875. source: "./media/characters/bailey-belfry/front.svg",
  43876. extra: 1240/1121,
  43877. bottom: 101/1341
  43878. }
  43879. },
  43880. },
  43881. [
  43882. {
  43883. name: "Normal",
  43884. height: math.unit(6 + 1/12, "feet"),
  43885. default: true
  43886. },
  43887. ]
  43888. ))
  43889. characterMakers.push(() => makeCharacter(
  43890. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43891. {
  43892. side: {
  43893. height: math.unit(4, "meters"),
  43894. weight: math.unit(250, "kg"),
  43895. name: "Side",
  43896. image: {
  43897. source: "./media/characters/blacky/side.svg",
  43898. extra: 1027/919,
  43899. bottom: 43/1070
  43900. }
  43901. },
  43902. maw: {
  43903. height: math.unit(1, "meters"),
  43904. name: "Maw",
  43905. image: {
  43906. source: "./media/characters/blacky/maw.svg"
  43907. }
  43908. },
  43909. paw: {
  43910. height: math.unit(1, "meters"),
  43911. name: "Paw",
  43912. image: {
  43913. source: "./media/characters/blacky/paw.svg"
  43914. }
  43915. },
  43916. },
  43917. [
  43918. {
  43919. name: "Normal",
  43920. height: math.unit(4, "meters"),
  43921. default: true
  43922. },
  43923. ]
  43924. ))
  43925. characterMakers.push(() => makeCharacter(
  43926. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43927. {
  43928. front: {
  43929. height: math.unit(170, "cm"),
  43930. weight: math.unit(66, "kg"),
  43931. name: "Front",
  43932. image: {
  43933. source: "./media/characters/thux-ei/front.svg",
  43934. extra: 1109/1011,
  43935. bottom: 8/1117
  43936. }
  43937. },
  43938. },
  43939. [
  43940. {
  43941. name: "Normal",
  43942. height: math.unit(170, "cm"),
  43943. default: true
  43944. },
  43945. ]
  43946. ))
  43947. characterMakers.push(() => makeCharacter(
  43948. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43949. {
  43950. front: {
  43951. height: math.unit(5, "feet"),
  43952. weight: math.unit(120, "lb"),
  43953. name: "Front",
  43954. image: {
  43955. source: "./media/characters/roxanne-voltaire/front.svg",
  43956. extra: 1901/1779,
  43957. bottom: 53/1954
  43958. }
  43959. },
  43960. },
  43961. [
  43962. {
  43963. name: "Normal",
  43964. height: math.unit(5, "feet"),
  43965. default: true
  43966. },
  43967. {
  43968. name: "Giant",
  43969. height: math.unit(50, "feet")
  43970. },
  43971. {
  43972. name: "Titan",
  43973. height: math.unit(500, "feet")
  43974. },
  43975. {
  43976. name: "Macro",
  43977. height: math.unit(5000, "feet")
  43978. },
  43979. {
  43980. name: "Megamacro",
  43981. height: math.unit(50000, "feet")
  43982. },
  43983. {
  43984. name: "Gigamacro",
  43985. height: math.unit(500000, "feet")
  43986. },
  43987. {
  43988. name: "Teramacro",
  43989. height: math.unit(5e6, "feet")
  43990. },
  43991. ]
  43992. ))
  43993. characterMakers.push(() => makeCharacter(
  43994. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43995. {
  43996. front: {
  43997. height: math.unit(6 + 2/12, "feet"),
  43998. name: "Front",
  43999. image: {
  44000. source: "./media/characters/squeaks/front.svg",
  44001. extra: 1823/1768,
  44002. bottom: 138/1961
  44003. }
  44004. },
  44005. },
  44006. [
  44007. {
  44008. name: "Micro",
  44009. height: math.unit(0.5, "inches")
  44010. },
  44011. {
  44012. name: "Normal",
  44013. height: math.unit(6 + 2/12, "feet"),
  44014. default: true
  44015. },
  44016. {
  44017. name: "Macro",
  44018. height: math.unit(600, "feet")
  44019. },
  44020. ]
  44021. ))
  44022. characterMakers.push(() => makeCharacter(
  44023. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44024. {
  44025. front: {
  44026. height: math.unit(1.72, "meters"),
  44027. name: "Front",
  44028. image: {
  44029. source: "./media/characters/archinger/front.svg",
  44030. extra: 1861/1675,
  44031. bottom: 125/1986
  44032. }
  44033. },
  44034. back: {
  44035. height: math.unit(1.72, "meters"),
  44036. name: "Back",
  44037. image: {
  44038. source: "./media/characters/archinger/back.svg",
  44039. extra: 1844/1701,
  44040. bottom: 104/1948
  44041. }
  44042. },
  44043. cock: {
  44044. height: math.unit(0.59, "feet"),
  44045. name: "Cock",
  44046. image: {
  44047. source: "./media/characters/archinger/cock.svg"
  44048. }
  44049. },
  44050. },
  44051. [
  44052. {
  44053. name: "Normal",
  44054. height: math.unit(1.72, "meters"),
  44055. default: true
  44056. },
  44057. {
  44058. name: "Macro",
  44059. height: math.unit(84, "meters")
  44060. },
  44061. {
  44062. name: "Macro+",
  44063. height: math.unit(112, "meters")
  44064. },
  44065. {
  44066. name: "Macro++",
  44067. height: math.unit(960, "meters")
  44068. },
  44069. {
  44070. name: "Macro+++",
  44071. height: math.unit(4, "km")
  44072. },
  44073. {
  44074. name: "Macro++++",
  44075. height: math.unit(48, "km")
  44076. },
  44077. {
  44078. name: "Macro+++++",
  44079. height: math.unit(4500, "km")
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(5 + 5/12, "feet"),
  44088. name: "Front",
  44089. image: {
  44090. source: "./media/characters/alsnapz/front.svg",
  44091. extra: 1157/1065,
  44092. bottom: 42/1199
  44093. }
  44094. },
  44095. },
  44096. [
  44097. {
  44098. name: "Normal",
  44099. height: math.unit(5 + 5/12, "feet"),
  44100. default: true
  44101. },
  44102. ]
  44103. ))
  44104. characterMakers.push(() => makeCharacter(
  44105. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44106. {
  44107. side: {
  44108. height: math.unit(3.2, "earths"),
  44109. name: "Side",
  44110. image: {
  44111. source: "./media/characters/mag/side.svg",
  44112. extra: 1331/1008,
  44113. bottom: 52/1383
  44114. }
  44115. },
  44116. wing: {
  44117. height: math.unit(1.94, "earths"),
  44118. name: "Wing",
  44119. image: {
  44120. source: "./media/characters/mag/wing.svg"
  44121. }
  44122. },
  44123. dick: {
  44124. height: math.unit(1.8, "earths"),
  44125. name: "Dick",
  44126. image: {
  44127. source: "./media/characters/mag/dick.svg"
  44128. }
  44129. },
  44130. ass: {
  44131. height: math.unit(1.33, "earths"),
  44132. name: "Ass",
  44133. image: {
  44134. source: "./media/characters/mag/ass.svg"
  44135. }
  44136. },
  44137. head: {
  44138. height: math.unit(1.1, "earths"),
  44139. name: "Head",
  44140. image: {
  44141. source: "./media/characters/mag/head.svg"
  44142. }
  44143. },
  44144. maw: {
  44145. height: math.unit(1.62, "earths"),
  44146. name: "Maw",
  44147. image: {
  44148. source: "./media/characters/mag/maw.svg"
  44149. }
  44150. },
  44151. },
  44152. [
  44153. {
  44154. name: "Small",
  44155. height: math.unit(162, "feet")
  44156. },
  44157. {
  44158. name: "Normal",
  44159. height: math.unit(3.2, "earths"),
  44160. default: true
  44161. },
  44162. ]
  44163. ))
  44164. characterMakers.push(() => makeCharacter(
  44165. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44166. {
  44167. front: {
  44168. height: math.unit(512, "feet"),
  44169. weight: math.unit(63509, "tonnes"),
  44170. name: "Front",
  44171. image: {
  44172. source: "./media/characters/vorrel-harroc/front.svg",
  44173. extra: 1075/1063,
  44174. bottom: 62/1137
  44175. }
  44176. },
  44177. },
  44178. [
  44179. {
  44180. name: "Normal",
  44181. height: math.unit(10, "feet")
  44182. },
  44183. {
  44184. name: "Macro",
  44185. height: math.unit(512, "feet"),
  44186. default: true
  44187. },
  44188. {
  44189. name: "Megamacro",
  44190. height: math.unit(256, "miles")
  44191. },
  44192. {
  44193. name: "Gigamacro",
  44194. height: math.unit(4096, "miles")
  44195. },
  44196. ]
  44197. ))
  44198. characterMakers.push(() => makeCharacter(
  44199. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44200. {
  44201. side: {
  44202. height: math.unit(50, "feet"),
  44203. name: "Side",
  44204. image: {
  44205. source: "./media/characters/froimar/side.svg",
  44206. extra: 855/638,
  44207. bottom: 99/954
  44208. }
  44209. },
  44210. },
  44211. [
  44212. {
  44213. name: "Macro",
  44214. height: math.unit(50, "feet"),
  44215. default: true
  44216. },
  44217. ]
  44218. ))
  44219. characterMakers.push(() => makeCharacter(
  44220. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44221. {
  44222. front: {
  44223. height: math.unit(210, "miles"),
  44224. name: "Front",
  44225. image: {
  44226. source: "./media/characters/timothy/front.svg",
  44227. extra: 1007/943,
  44228. bottom: 62/1069
  44229. }
  44230. },
  44231. frontSkirt: {
  44232. height: math.unit(210, "miles"),
  44233. name: "Front (Skirt)",
  44234. image: {
  44235. source: "./media/characters/timothy/front-skirt.svg",
  44236. extra: 1007/943,
  44237. bottom: 62/1069
  44238. }
  44239. },
  44240. frontCoat: {
  44241. height: math.unit(210, "miles"),
  44242. name: "Front (Coat)",
  44243. image: {
  44244. source: "./media/characters/timothy/front-coat.svg",
  44245. extra: 1007/943,
  44246. bottom: 62/1069
  44247. }
  44248. },
  44249. },
  44250. [
  44251. {
  44252. name: "Macro",
  44253. height: math.unit(210, "miles"),
  44254. default: true
  44255. },
  44256. {
  44257. name: "Megamacro",
  44258. height: math.unit(210000, "miles")
  44259. },
  44260. ]
  44261. ))
  44262. characterMakers.push(() => makeCharacter(
  44263. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44264. {
  44265. front: {
  44266. height: math.unit(188, "feet"),
  44267. name: "Front",
  44268. image: {
  44269. source: "./media/characters/pyotr/front.svg",
  44270. extra: 1912/1826,
  44271. bottom: 18/1930
  44272. }
  44273. },
  44274. },
  44275. [
  44276. {
  44277. name: "Macro",
  44278. height: math.unit(188, "feet"),
  44279. default: true
  44280. },
  44281. {
  44282. name: "Megamacro",
  44283. height: math.unit(8, "miles")
  44284. },
  44285. ]
  44286. ))
  44287. characterMakers.push(() => makeCharacter(
  44288. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44289. {
  44290. side: {
  44291. height: math.unit(10, "feet"),
  44292. weight: math.unit(4500, "lb"),
  44293. name: "Side",
  44294. image: {
  44295. source: "./media/characters/ackart/side.svg",
  44296. extra: 1776/1668,
  44297. bottom: 116/1892
  44298. }
  44299. },
  44300. },
  44301. [
  44302. {
  44303. name: "Normal",
  44304. height: math.unit(10, "feet"),
  44305. default: true
  44306. },
  44307. ]
  44308. ))
  44309. characterMakers.push(() => makeCharacter(
  44310. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44311. {
  44312. side: {
  44313. height: math.unit(21, "feet"),
  44314. name: "Side",
  44315. image: {
  44316. source: "./media/characters/nolow/side.svg",
  44317. extra: 1484/1434,
  44318. bottom: 85/1569
  44319. }
  44320. },
  44321. sideErect: {
  44322. height: math.unit(21, "feet"),
  44323. name: "Side-erect",
  44324. image: {
  44325. source: "./media/characters/nolow/side-erect.svg",
  44326. extra: 1484/1434,
  44327. bottom: 85/1569
  44328. }
  44329. },
  44330. },
  44331. [
  44332. {
  44333. name: "Regular",
  44334. height: math.unit(12, "feet")
  44335. },
  44336. {
  44337. name: "Big Chee",
  44338. height: math.unit(21, "feet"),
  44339. default: true
  44340. },
  44341. ]
  44342. ))
  44343. characterMakers.push(() => makeCharacter(
  44344. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44345. {
  44346. front: {
  44347. height: math.unit(7, "feet"),
  44348. weight: math.unit(250, "lb"),
  44349. name: "Front",
  44350. image: {
  44351. source: "./media/characters/nines/front.svg",
  44352. extra: 1741/1607,
  44353. bottom: 41/1782
  44354. }
  44355. },
  44356. side: {
  44357. height: math.unit(7, "feet"),
  44358. weight: math.unit(250, "lb"),
  44359. name: "Side",
  44360. image: {
  44361. source: "./media/characters/nines/side.svg",
  44362. extra: 1854/1735,
  44363. bottom: 93/1947
  44364. }
  44365. },
  44366. back: {
  44367. height: math.unit(7, "feet"),
  44368. weight: math.unit(250, "lb"),
  44369. name: "Back",
  44370. image: {
  44371. source: "./media/characters/nines/back.svg",
  44372. extra: 1748/1615,
  44373. bottom: 20/1768
  44374. }
  44375. },
  44376. },
  44377. [
  44378. {
  44379. name: "Megamacro",
  44380. height: math.unit(99, "km"),
  44381. default: true
  44382. },
  44383. ]
  44384. ))
  44385. characterMakers.push(() => makeCharacter(
  44386. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44387. {
  44388. front: {
  44389. height: math.unit(5 + 10/12, "feet"),
  44390. weight: math.unit(210, "lb"),
  44391. name: "Front",
  44392. image: {
  44393. source: "./media/characters/zenith/front.svg",
  44394. extra: 1531/1452,
  44395. bottom: 198/1729
  44396. }
  44397. },
  44398. back: {
  44399. height: math.unit(5 + 10/12, "feet"),
  44400. weight: math.unit(210, "lb"),
  44401. name: "Back",
  44402. image: {
  44403. source: "./media/characters/zenith/back.svg",
  44404. extra: 1571/1487,
  44405. bottom: 75/1646
  44406. }
  44407. },
  44408. },
  44409. [
  44410. {
  44411. name: "Normal",
  44412. height: math.unit(5 + 10/12, "feet"),
  44413. default: true
  44414. }
  44415. ]
  44416. ))
  44417. characterMakers.push(() => makeCharacter(
  44418. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44419. {
  44420. front: {
  44421. height: math.unit(4, "feet"),
  44422. weight: math.unit(60, "lb"),
  44423. name: "Front",
  44424. image: {
  44425. source: "./media/characters/jasper/front.svg",
  44426. extra: 1450/1379,
  44427. bottom: 19/1469
  44428. }
  44429. },
  44430. },
  44431. [
  44432. {
  44433. name: "Normal",
  44434. height: math.unit(4, "feet"),
  44435. default: true
  44436. },
  44437. ]
  44438. ))
  44439. characterMakers.push(() => makeCharacter(
  44440. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44441. {
  44442. front: {
  44443. height: math.unit(6 + 5/12, "feet"),
  44444. weight: math.unit(290, "lb"),
  44445. name: "Front",
  44446. image: {
  44447. source: "./media/characters/tiberius-thyben/front.svg",
  44448. extra: 757/739,
  44449. bottom: 39/796
  44450. }
  44451. },
  44452. },
  44453. [
  44454. {
  44455. name: "Micro",
  44456. height: math.unit(1.5, "inches")
  44457. },
  44458. {
  44459. name: "Normal",
  44460. height: math.unit(6 + 5/12, "feet"),
  44461. default: true
  44462. },
  44463. {
  44464. name: "Macro",
  44465. height: math.unit(300, "feet")
  44466. },
  44467. ]
  44468. ))
  44469. characterMakers.push(() => makeCharacter(
  44470. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44471. {
  44472. front: {
  44473. height: math.unit(5 + 6/12, "feet"),
  44474. weight: math.unit(60, "kg"),
  44475. name: "Front",
  44476. image: {
  44477. source: "./media/characters/sabre/front.svg",
  44478. extra: 738/671,
  44479. bottom: 27/765
  44480. }
  44481. },
  44482. },
  44483. [
  44484. {
  44485. name: "Teeny",
  44486. height: math.unit(2, "inches")
  44487. },
  44488. {
  44489. name: "Smol",
  44490. height: math.unit(8, "inches")
  44491. },
  44492. {
  44493. name: "Normal",
  44494. height: math.unit(5 + 6/12, "feet"),
  44495. default: true
  44496. },
  44497. {
  44498. name: "Mini-Macro",
  44499. height: math.unit(15, "feet")
  44500. },
  44501. {
  44502. name: "Macro",
  44503. height: math.unit(50, "feet")
  44504. },
  44505. ]
  44506. ))
  44507. characterMakers.push(() => makeCharacter(
  44508. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44509. {
  44510. front: {
  44511. height: math.unit(6 + 4/12, "feet"),
  44512. weight: math.unit(170, "lb"),
  44513. name: "Front",
  44514. image: {
  44515. source: "./media/characters/charlie/front.svg",
  44516. extra: 1348/1228,
  44517. bottom: 15/1363
  44518. }
  44519. },
  44520. },
  44521. [
  44522. {
  44523. name: "Macro",
  44524. height: math.unit(1700, "meters"),
  44525. default: true
  44526. },
  44527. {
  44528. name: "MegaMacro",
  44529. height: math.unit(20400, "meters")
  44530. },
  44531. ]
  44532. ))
  44533. characterMakers.push(() => makeCharacter(
  44534. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44535. {
  44536. front: {
  44537. height: math.unit(1.96, "meters"),
  44538. weight: math.unit(220, "lb"),
  44539. name: "Front",
  44540. image: {
  44541. source: "./media/characters/susan-grant/front.svg",
  44542. extra: 482/478,
  44543. bottom: 7/489
  44544. }
  44545. },
  44546. },
  44547. [
  44548. {
  44549. name: "Normal",
  44550. height: math.unit(1.96, "meters"),
  44551. default: true
  44552. },
  44553. {
  44554. name: "Macro",
  44555. height: math.unit(76.2, "meters")
  44556. },
  44557. {
  44558. name: "MegaMacro",
  44559. height: math.unit(305, "meters")
  44560. },
  44561. {
  44562. name: "GigaMacro",
  44563. height: math.unit(1220, "meters")
  44564. },
  44565. {
  44566. name: "SuperMacro",
  44567. height: math.unit(4878, "meters")
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44573. {
  44574. front: {
  44575. height: math.unit(5 + 4/12, "feet"),
  44576. weight: math.unit(110, "lb"),
  44577. name: "Front",
  44578. image: {
  44579. source: "./media/characters/axel-isanov/front.svg",
  44580. extra: 1096/1065,
  44581. bottom: 13/1109
  44582. }
  44583. },
  44584. },
  44585. [
  44586. {
  44587. name: "Normal",
  44588. height: math.unit(5 + 4/12, "feet"),
  44589. default: true
  44590. },
  44591. ]
  44592. ))
  44593. characterMakers.push(() => makeCharacter(
  44594. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44595. {
  44596. front: {
  44597. height: math.unit(9, "feet"),
  44598. weight: math.unit(467, "lb"),
  44599. name: "Front",
  44600. image: {
  44601. source: "./media/characters/necahual/front.svg",
  44602. extra: 920/873,
  44603. bottom: 26/946
  44604. }
  44605. },
  44606. back: {
  44607. height: math.unit(9, "feet"),
  44608. weight: math.unit(467, "lb"),
  44609. name: "Back",
  44610. image: {
  44611. source: "./media/characters/necahual/back.svg",
  44612. extra: 930/884,
  44613. bottom: 16/946
  44614. }
  44615. },
  44616. frontUnderwear: {
  44617. height: math.unit(9, "feet"),
  44618. weight: math.unit(467, "lb"),
  44619. name: "Front (Underwear)",
  44620. image: {
  44621. source: "./media/characters/necahual/front-underwear.svg",
  44622. extra: 920/873,
  44623. bottom: 26/946
  44624. }
  44625. },
  44626. frontDressed: {
  44627. height: math.unit(9, "feet"),
  44628. weight: math.unit(467, "lb"),
  44629. name: "Front (Dressed)",
  44630. image: {
  44631. source: "./media/characters/necahual/front-dressed.svg",
  44632. extra: 920/873,
  44633. bottom: 26/946
  44634. }
  44635. },
  44636. },
  44637. [
  44638. {
  44639. name: "Comprsesed",
  44640. height: math.unit(9, "feet")
  44641. },
  44642. {
  44643. name: "Natural",
  44644. height: math.unit(15, "feet"),
  44645. default: true
  44646. },
  44647. {
  44648. name: "Boosted",
  44649. height: math.unit(50, "feet")
  44650. },
  44651. {
  44652. name: "Boosted+",
  44653. height: math.unit(150, "feet")
  44654. },
  44655. {
  44656. name: "Max",
  44657. height: math.unit(500, "feet")
  44658. },
  44659. ]
  44660. ))
  44661. characterMakers.push(() => makeCharacter(
  44662. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44663. {
  44664. front: {
  44665. height: math.unit(22 + 1/12, "feet"),
  44666. weight: math.unit(3200, "lb"),
  44667. name: "Front",
  44668. image: {
  44669. source: "./media/characters/theo-acacia/front.svg",
  44670. extra: 1796/1741,
  44671. bottom: 83/1879
  44672. }
  44673. },
  44674. frontUnderwear: {
  44675. height: math.unit(22 + 1/12, "feet"),
  44676. weight: math.unit(3200, "lb"),
  44677. name: "Front (Underwear)",
  44678. image: {
  44679. source: "./media/characters/theo-acacia/front-underwear.svg",
  44680. extra: 1796/1741,
  44681. bottom: 83/1879
  44682. }
  44683. },
  44684. frontNude: {
  44685. height: math.unit(22 + 1/12, "feet"),
  44686. weight: math.unit(3200, "lb"),
  44687. name: "Front (Nude)",
  44688. image: {
  44689. source: "./media/characters/theo-acacia/front-nude.svg",
  44690. extra: 1796/1741,
  44691. bottom: 83/1879
  44692. }
  44693. },
  44694. },
  44695. [
  44696. {
  44697. name: "Normal",
  44698. height: math.unit(22 + 1/12, "feet"),
  44699. default: true
  44700. },
  44701. ]
  44702. ))
  44703. characterMakers.push(() => makeCharacter(
  44704. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44705. {
  44706. front: {
  44707. height: math.unit(20, "feet"),
  44708. name: "Front",
  44709. image: {
  44710. source: "./media/characters/astra/front.svg",
  44711. extra: 1850/1714,
  44712. bottom: 106/1956
  44713. }
  44714. },
  44715. frontUndressed: {
  44716. height: math.unit(20, "feet"),
  44717. name: "Front (Undressed)",
  44718. image: {
  44719. source: "./media/characters/astra/front-undressed.svg",
  44720. extra: 1926/1749,
  44721. bottom: 0/1926
  44722. }
  44723. },
  44724. hand: {
  44725. height: math.unit(1.53, "feet"),
  44726. name: "Hand",
  44727. image: {
  44728. source: "./media/characters/astra/hand.svg"
  44729. }
  44730. },
  44731. paw: {
  44732. height: math.unit(1.53, "feet"),
  44733. name: "Paw",
  44734. image: {
  44735. source: "./media/characters/astra/paw.svg"
  44736. }
  44737. },
  44738. },
  44739. [
  44740. {
  44741. name: "Smallest",
  44742. height: math.unit(20, "feet")
  44743. },
  44744. {
  44745. name: "Normal",
  44746. height: math.unit(1e9, "miles"),
  44747. default: true
  44748. },
  44749. {
  44750. name: "Larger",
  44751. height: math.unit(5, "multiverses")
  44752. },
  44753. {
  44754. name: "Largest",
  44755. height: math.unit(1e9, "multiverses")
  44756. },
  44757. ]
  44758. ))
  44759. characterMakers.push(() => makeCharacter(
  44760. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44761. {
  44762. front: {
  44763. height: math.unit(8, "feet"),
  44764. name: "Front",
  44765. image: {
  44766. source: "./media/characters/breanna/front.svg",
  44767. extra: 1912/1632,
  44768. bottom: 33/1945
  44769. }
  44770. },
  44771. },
  44772. [
  44773. {
  44774. name: "Smallest",
  44775. height: math.unit(8, "feet")
  44776. },
  44777. {
  44778. name: "Normal",
  44779. height: math.unit(1, "mile"),
  44780. default: true
  44781. },
  44782. {
  44783. name: "Maximum",
  44784. height: math.unit(1500000000000, "lightyears")
  44785. },
  44786. ]
  44787. ))
  44788. characterMakers.push(() => makeCharacter(
  44789. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44790. {
  44791. front: {
  44792. height: math.unit(5 + 11/12, "feet"),
  44793. weight: math.unit(155, "lb"),
  44794. name: "Front",
  44795. image: {
  44796. source: "./media/characters/cai/front.svg",
  44797. extra: 1823/1702,
  44798. bottom: 32/1855
  44799. }
  44800. },
  44801. back: {
  44802. height: math.unit(5 + 11/12, "feet"),
  44803. weight: math.unit(155, "lb"),
  44804. name: "Back",
  44805. image: {
  44806. source: "./media/characters/cai/back.svg",
  44807. extra: 1809/1708,
  44808. bottom: 31/1840
  44809. }
  44810. },
  44811. },
  44812. [
  44813. {
  44814. name: "Normal",
  44815. height: math.unit(5 + 11/12, "feet"),
  44816. default: true
  44817. },
  44818. {
  44819. name: "Big",
  44820. height: math.unit(15, "feet")
  44821. },
  44822. {
  44823. name: "Macro",
  44824. height: math.unit(200, "feet")
  44825. },
  44826. ]
  44827. ))
  44828. characterMakers.push(() => makeCharacter(
  44829. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44830. {
  44831. front: {
  44832. height: math.unit(5 + 6/12, "feet"),
  44833. weight: math.unit(160, "lb"),
  44834. name: "Front",
  44835. image: {
  44836. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44837. extra: 1227/1174,
  44838. bottom: 37/1264
  44839. }
  44840. },
  44841. },
  44842. [
  44843. {
  44844. name: "Macro",
  44845. height: math.unit(444, "meters"),
  44846. default: true
  44847. },
  44848. ]
  44849. ))
  44850. characterMakers.push(() => makeCharacter(
  44851. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44852. {
  44853. front: {
  44854. height: math.unit(18 + 7/12, "feet"),
  44855. name: "Front",
  44856. image: {
  44857. source: "./media/characters/rex/front.svg",
  44858. extra: 1941/1807,
  44859. bottom: 66/2007
  44860. }
  44861. },
  44862. back: {
  44863. height: math.unit(18 + 7/12, "feet"),
  44864. name: "Back",
  44865. image: {
  44866. source: "./media/characters/rex/back.svg",
  44867. extra: 1937/1822,
  44868. bottom: 42/1979
  44869. }
  44870. },
  44871. boot: {
  44872. height: math.unit(3.45, "feet"),
  44873. name: "Boot",
  44874. image: {
  44875. source: "./media/characters/rex/boot.svg"
  44876. }
  44877. },
  44878. paw: {
  44879. height: math.unit(4.17, "feet"),
  44880. name: "Paw",
  44881. image: {
  44882. source: "./media/characters/rex/paw.svg"
  44883. }
  44884. },
  44885. head: {
  44886. height: math.unit(6.728, "feet"),
  44887. name: "Head",
  44888. image: {
  44889. source: "./media/characters/rex/head.svg"
  44890. }
  44891. },
  44892. },
  44893. [
  44894. {
  44895. name: "Nano",
  44896. height: math.unit(18 + 7/12, "feet")
  44897. },
  44898. {
  44899. name: "Micro",
  44900. height: math.unit(1.5, "megameters")
  44901. },
  44902. {
  44903. name: "Normal",
  44904. height: math.unit(440, "megameters"),
  44905. default: true
  44906. },
  44907. {
  44908. name: "Macro",
  44909. height: math.unit(2.5, "gigameters")
  44910. },
  44911. {
  44912. name: "Gigamacro",
  44913. height: math.unit(2, "galaxies")
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44919. {
  44920. side: {
  44921. height: math.unit(32, "feet"),
  44922. weight: math.unit(250000, "lb"),
  44923. name: "Side",
  44924. image: {
  44925. source: "./media/characters/silverwing/side.svg",
  44926. extra: 1100/1019,
  44927. bottom: 204/1304
  44928. }
  44929. },
  44930. },
  44931. [
  44932. {
  44933. name: "Normal",
  44934. height: math.unit(32, "feet"),
  44935. default: true
  44936. },
  44937. ]
  44938. ))
  44939. characterMakers.push(() => makeCharacter(
  44940. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44941. {
  44942. front: {
  44943. height: math.unit(6 + 6/12, "feet"),
  44944. weight: math.unit(350, "lb"),
  44945. name: "Front",
  44946. image: {
  44947. source: "./media/characters/tristan-hawthorne/front.svg",
  44948. extra: 1159/1124,
  44949. bottom: 37/1196
  44950. },
  44951. form: "labrador",
  44952. default: true
  44953. },
  44954. skunkFront: {
  44955. height: math.unit(4 + 6/12, "feet"),
  44956. weight: math.unit(120, "lb"),
  44957. name: "Front",
  44958. image: {
  44959. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44960. extra: 1609/1551,
  44961. bottom: 169/1778
  44962. },
  44963. form: "skunk",
  44964. default: true
  44965. },
  44966. },
  44967. [
  44968. {
  44969. name: "Normal",
  44970. height: math.unit(6 + 6/12, "feet"),
  44971. form: "labrador",
  44972. default: true
  44973. },
  44974. {
  44975. name: "Normal",
  44976. height: math.unit(4 + 6/12, "feet"),
  44977. form: "skunk",
  44978. default: true
  44979. },
  44980. ],
  44981. {
  44982. "labrador": {
  44983. name: "Labrador",
  44984. default: true
  44985. },
  44986. "skunk": {
  44987. name: "Skunk"
  44988. }
  44989. }
  44990. ))
  44991. characterMakers.push(() => makeCharacter(
  44992. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44993. {
  44994. front: {
  44995. height: math.unit(5 + 11/12, "feet"),
  44996. weight: math.unit(190, "lb"),
  44997. name: "Front",
  44998. image: {
  44999. source: "./media/characters/mizu/front.svg",
  45000. extra: 1988/1788,
  45001. bottom: 14/2002
  45002. }
  45003. },
  45004. },
  45005. [
  45006. {
  45007. name: "Normal",
  45008. height: math.unit(5 + 11/12, "feet"),
  45009. default: true
  45010. },
  45011. ]
  45012. ))
  45013. characterMakers.push(() => makeCharacter(
  45014. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45015. {
  45016. front: {
  45017. height: math.unit(1.7, "feet"),
  45018. weight: math.unit(50, "lb"),
  45019. name: "Front",
  45020. image: {
  45021. source: "./media/characters/dechroma/front.svg",
  45022. extra: 1095/859,
  45023. bottom: 64/1159
  45024. }
  45025. },
  45026. },
  45027. [
  45028. {
  45029. name: "Normal",
  45030. height: math.unit(1.7, "feet"),
  45031. default: true
  45032. },
  45033. ]
  45034. ))
  45035. characterMakers.push(() => makeCharacter(
  45036. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45037. {
  45038. side: {
  45039. height: math.unit(30, "feet"),
  45040. name: "Side",
  45041. image: {
  45042. source: "./media/characters/veluren-thanazel/side.svg",
  45043. extra: 1611/633,
  45044. bottom: 118/1729
  45045. }
  45046. },
  45047. front: {
  45048. height: math.unit(30, "feet"),
  45049. name: "Front",
  45050. image: {
  45051. source: "./media/characters/veluren-thanazel/front.svg",
  45052. extra: 1486/636,
  45053. bottom: 238/1724
  45054. }
  45055. },
  45056. head: {
  45057. height: math.unit(21.4, "feet"),
  45058. name: "Head",
  45059. image: {
  45060. source: "./media/characters/veluren-thanazel/head.svg"
  45061. }
  45062. },
  45063. genitals: {
  45064. height: math.unit(19.4, "feet"),
  45065. name: "Genitals",
  45066. image: {
  45067. source: "./media/characters/veluren-thanazel/genitals.svg"
  45068. }
  45069. },
  45070. },
  45071. [
  45072. {
  45073. name: "Social",
  45074. height: math.unit(6, "feet")
  45075. },
  45076. {
  45077. name: "Play",
  45078. height: math.unit(12, "feet")
  45079. },
  45080. {
  45081. name: "True",
  45082. height: math.unit(30, "feet"),
  45083. default: true
  45084. },
  45085. ]
  45086. ))
  45087. characterMakers.push(() => makeCharacter(
  45088. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45089. {
  45090. front: {
  45091. height: math.unit(7 + 6/12, "feet"),
  45092. weight: math.unit(500, "kg"),
  45093. name: "Front",
  45094. image: {
  45095. source: "./media/characters/arcturas/front.svg",
  45096. extra: 1700/1500,
  45097. bottom: 145/1845
  45098. }
  45099. },
  45100. },
  45101. [
  45102. {
  45103. name: "Normal",
  45104. height: math.unit(7 + 6/12, "feet"),
  45105. default: true
  45106. },
  45107. ]
  45108. ))
  45109. characterMakers.push(() => makeCharacter(
  45110. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45111. {
  45112. side: {
  45113. height: math.unit(6, "feet"),
  45114. weight: math.unit(2, "tons"),
  45115. name: "Side",
  45116. image: {
  45117. source: "./media/characters/vitaen/side.svg",
  45118. extra: 1157/617,
  45119. bottom: 122/1279
  45120. }
  45121. },
  45122. },
  45123. [
  45124. {
  45125. name: "Normal",
  45126. height: math.unit(6, "feet"),
  45127. default: true
  45128. },
  45129. ]
  45130. ))
  45131. characterMakers.push(() => makeCharacter(
  45132. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45133. {
  45134. front: {
  45135. height: math.unit(19, "feet"),
  45136. name: "Front",
  45137. image: {
  45138. source: "./media/characters/fia-dreamweaver/front.svg",
  45139. extra: 1630/1504,
  45140. bottom: 25/1655
  45141. }
  45142. },
  45143. },
  45144. [
  45145. {
  45146. name: "Normal",
  45147. height: math.unit(19, "feet"),
  45148. default: true
  45149. },
  45150. ]
  45151. ))
  45152. characterMakers.push(() => makeCharacter(
  45153. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45154. {
  45155. front: {
  45156. height: math.unit(5 + 4/12, "feet"),
  45157. name: "Front",
  45158. image: {
  45159. source: "./media/characters/artan/front.svg",
  45160. extra: 1618/1535,
  45161. bottom: 46/1664
  45162. }
  45163. },
  45164. back: {
  45165. height: math.unit(5 + 4/12, "feet"),
  45166. name: "Back",
  45167. image: {
  45168. source: "./media/characters/artan/back.svg",
  45169. extra: 1618/1543,
  45170. bottom: 31/1649
  45171. }
  45172. },
  45173. },
  45174. [
  45175. {
  45176. name: "Normal",
  45177. height: math.unit(5 + 4/12, "feet"),
  45178. default: true
  45179. },
  45180. ]
  45181. ))
  45182. characterMakers.push(() => makeCharacter(
  45183. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45184. {
  45185. side: {
  45186. height: math.unit(182, "cm"),
  45187. weight: math.unit(1000, "lb"),
  45188. name: "Side",
  45189. image: {
  45190. source: "./media/characters/silver-dragon/side.svg",
  45191. extra: 710/287,
  45192. bottom: 88/798
  45193. }
  45194. },
  45195. },
  45196. [
  45197. {
  45198. name: "Normal",
  45199. height: math.unit(182, "cm"),
  45200. default: true
  45201. },
  45202. ]
  45203. ))
  45204. characterMakers.push(() => makeCharacter(
  45205. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45206. {
  45207. side: {
  45208. height: math.unit(6 + 6/12, "feet"),
  45209. weight: math.unit(1.5, "tons"),
  45210. name: "Side",
  45211. image: {
  45212. source: "./media/characters/zephyr/side.svg",
  45213. extra: 1433/586,
  45214. bottom: 109/1542
  45215. }
  45216. },
  45217. },
  45218. [
  45219. {
  45220. name: "Normal",
  45221. height: math.unit(6 + 6/12, "feet"),
  45222. default: true
  45223. },
  45224. ]
  45225. ))
  45226. characterMakers.push(() => makeCharacter(
  45227. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45228. {
  45229. side: {
  45230. height: math.unit(1, "feet"),
  45231. name: "Side",
  45232. image: {
  45233. source: "./media/characters/vixye/side.svg",
  45234. extra: 632/541,
  45235. bottom: 0/632
  45236. }
  45237. },
  45238. },
  45239. [
  45240. {
  45241. name: "Normal",
  45242. height: math.unit(1, "feet"),
  45243. default: true
  45244. },
  45245. {
  45246. name: "True",
  45247. height: math.unit(1e15, "multiverses")
  45248. },
  45249. ]
  45250. ))
  45251. characterMakers.push(() => makeCharacter(
  45252. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45253. {
  45254. front: {
  45255. height: math.unit(8 + 2/12, "feet"),
  45256. weight: math.unit(650, "lb"),
  45257. name: "Front",
  45258. image: {
  45259. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45260. extra: 1174/1137,
  45261. bottom: 82/1256
  45262. }
  45263. },
  45264. back: {
  45265. height: math.unit(8 + 2/12, "feet"),
  45266. weight: math.unit(650, "lb"),
  45267. name: "Back",
  45268. image: {
  45269. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45270. extra: 1204/1157,
  45271. bottom: 46/1250
  45272. }
  45273. },
  45274. },
  45275. [
  45276. {
  45277. name: "Wildform",
  45278. height: math.unit(8 + 2/12, "feet"),
  45279. default: true
  45280. },
  45281. ]
  45282. ))
  45283. characterMakers.push(() => makeCharacter(
  45284. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45285. {
  45286. front: {
  45287. height: math.unit(18, "feet"),
  45288. name: "Front",
  45289. image: {
  45290. source: "./media/characters/cyphin/front.svg",
  45291. extra: 970/886,
  45292. bottom: 42/1012
  45293. }
  45294. },
  45295. back: {
  45296. height: math.unit(18, "feet"),
  45297. name: "Back",
  45298. image: {
  45299. source: "./media/characters/cyphin/back.svg",
  45300. extra: 1009/894,
  45301. bottom: 24/1033
  45302. }
  45303. },
  45304. head: {
  45305. height: math.unit(5.05, "feet"),
  45306. name: "Head",
  45307. image: {
  45308. source: "./media/characters/cyphin/head.svg"
  45309. }
  45310. },
  45311. tailbud: {
  45312. height: math.unit(5, "feet"),
  45313. name: "Tailbud",
  45314. image: {
  45315. source: "./media/characters/cyphin/tailbud.svg"
  45316. }
  45317. },
  45318. },
  45319. [
  45320. ]
  45321. ))
  45322. characterMakers.push(() => makeCharacter(
  45323. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45324. {
  45325. side: {
  45326. height: math.unit(10, "feet"),
  45327. weight: math.unit(6, "tons"),
  45328. name: "Side",
  45329. image: {
  45330. source: "./media/characters/raijin/side.svg",
  45331. extra: 1529/613,
  45332. bottom: 337/1866
  45333. }
  45334. },
  45335. },
  45336. [
  45337. {
  45338. name: "Normal",
  45339. height: math.unit(10, "feet"),
  45340. default: true
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45346. {
  45347. side: {
  45348. height: math.unit(9, "feet"),
  45349. name: "Side",
  45350. image: {
  45351. source: "./media/characters/nilghais/side.svg",
  45352. extra: 1047/744,
  45353. bottom: 91/1138
  45354. }
  45355. },
  45356. head: {
  45357. height: math.unit(3.14, "feet"),
  45358. name: "Head",
  45359. image: {
  45360. source: "./media/characters/nilghais/head.svg"
  45361. }
  45362. },
  45363. mouth: {
  45364. height: math.unit(4.6, "feet"),
  45365. name: "Mouth",
  45366. image: {
  45367. source: "./media/characters/nilghais/mouth.svg"
  45368. }
  45369. },
  45370. wings: {
  45371. height: math.unit(24, "feet"),
  45372. name: "Wings",
  45373. image: {
  45374. source: "./media/characters/nilghais/wings.svg"
  45375. }
  45376. },
  45377. ass: {
  45378. height: math.unit(6.12, "feet"),
  45379. name: "Ass",
  45380. image: {
  45381. source: "./media/characters/nilghais/ass.svg"
  45382. }
  45383. },
  45384. },
  45385. [
  45386. {
  45387. name: "Normal",
  45388. height: math.unit(9, "feet"),
  45389. default: true
  45390. },
  45391. ]
  45392. ))
  45393. characterMakers.push(() => makeCharacter(
  45394. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45395. {
  45396. regular: {
  45397. height: math.unit(16 + 2/12, "feet"),
  45398. weight: math.unit(2300, "lb"),
  45399. name: "Regular",
  45400. image: {
  45401. source: "./media/characters/zolgar/regular.svg",
  45402. extra: 1246/1004,
  45403. bottom: 124/1370
  45404. }
  45405. },
  45406. boxers: {
  45407. height: math.unit(16 + 2/12, "feet"),
  45408. weight: math.unit(2300, "lb"),
  45409. name: "Boxers",
  45410. image: {
  45411. source: "./media/characters/zolgar/boxers.svg",
  45412. extra: 1246/1004,
  45413. bottom: 124/1370
  45414. }
  45415. },
  45416. armored: {
  45417. height: math.unit(16 + 2/12, "feet"),
  45418. weight: math.unit(2300, "lb"),
  45419. name: "Armored",
  45420. image: {
  45421. source: "./media/characters/zolgar/armored.svg",
  45422. extra: 1246/1004,
  45423. bottom: 124/1370
  45424. }
  45425. },
  45426. goth: {
  45427. height: math.unit(16 + 2/12, "feet"),
  45428. weight: math.unit(2300, "lb"),
  45429. name: "Goth",
  45430. image: {
  45431. source: "./media/characters/zolgar/goth.svg",
  45432. extra: 1246/1004,
  45433. bottom: 124/1370
  45434. }
  45435. },
  45436. },
  45437. [
  45438. {
  45439. name: "Shrunken Down",
  45440. height: math.unit(9 + 2/12, "feet")
  45441. },
  45442. {
  45443. name: "Normal",
  45444. height: math.unit(16 + 2/12, "feet"),
  45445. default: true
  45446. },
  45447. ]
  45448. ))
  45449. characterMakers.push(() => makeCharacter(
  45450. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45451. {
  45452. front: {
  45453. height: math.unit(6, "feet"),
  45454. weight: math.unit(168, "lb"),
  45455. name: "Front",
  45456. image: {
  45457. source: "./media/characters/luca/front.svg",
  45458. extra: 841/667,
  45459. bottom: 102/943
  45460. }
  45461. },
  45462. },
  45463. [
  45464. {
  45465. name: "Normal",
  45466. height: math.unit(6, "feet"),
  45467. default: true
  45468. },
  45469. ]
  45470. ))
  45471. characterMakers.push(() => makeCharacter(
  45472. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45473. {
  45474. side: {
  45475. height: math.unit(7 + 3/12, "feet"),
  45476. weight: math.unit(312, "lb"),
  45477. name: "Side",
  45478. image: {
  45479. source: "./media/characters/zezo/side.svg",
  45480. extra: 1192/1067,
  45481. bottom: 63/1255
  45482. }
  45483. },
  45484. },
  45485. [
  45486. {
  45487. name: "Normal",
  45488. height: math.unit(7 + 3/12, "feet"),
  45489. default: true
  45490. },
  45491. ]
  45492. ))
  45493. characterMakers.push(() => makeCharacter(
  45494. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45495. {
  45496. front: {
  45497. height: math.unit(5 + 5/12, "feet"),
  45498. weight: math.unit(170, "lb"),
  45499. name: "Front",
  45500. image: {
  45501. source: "./media/characters/mayso/front.svg",
  45502. extra: 1215/1108,
  45503. bottom: 16/1231
  45504. }
  45505. },
  45506. },
  45507. [
  45508. {
  45509. name: "Normal",
  45510. height: math.unit(5 + 5/12, "feet"),
  45511. default: true
  45512. },
  45513. ]
  45514. ))
  45515. characterMakers.push(() => makeCharacter(
  45516. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45517. {
  45518. front: {
  45519. height: math.unit(4 + 3/12, "feet"),
  45520. weight: math.unit(80, "lb"),
  45521. name: "Front",
  45522. image: {
  45523. source: "./media/characters/hess/front.svg",
  45524. extra: 1200/1123,
  45525. bottom: 16/1216
  45526. }
  45527. },
  45528. },
  45529. [
  45530. {
  45531. name: "Normal",
  45532. height: math.unit(4 + 3/12, "feet"),
  45533. default: true
  45534. },
  45535. ]
  45536. ))
  45537. characterMakers.push(() => makeCharacter(
  45538. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45539. {
  45540. front: {
  45541. height: math.unit(1.9, "meters"),
  45542. name: "Front",
  45543. image: {
  45544. source: "./media/characters/ashgar/front.svg",
  45545. extra: 1177/1146,
  45546. bottom: 99/1276
  45547. }
  45548. },
  45549. back: {
  45550. height: math.unit(1.9, "meters"),
  45551. name: "Back",
  45552. image: {
  45553. source: "./media/characters/ashgar/back.svg",
  45554. extra: 1201/1183,
  45555. bottom: 53/1254
  45556. }
  45557. },
  45558. feral: {
  45559. height: math.unit(1.4, "meters"),
  45560. name: "Feral",
  45561. image: {
  45562. source: "./media/characters/ashgar/feral.svg",
  45563. extra: 370/345,
  45564. bottom: 45/415
  45565. }
  45566. },
  45567. },
  45568. [
  45569. {
  45570. name: "Normal",
  45571. height: math.unit(1.9, "meters"),
  45572. default: true
  45573. },
  45574. ]
  45575. ))
  45576. characterMakers.push(() => makeCharacter(
  45577. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45578. {
  45579. regular: {
  45580. height: math.unit(6, "feet"),
  45581. weight: math.unit(220, "lb"),
  45582. name: "Regular",
  45583. image: {
  45584. source: "./media/characters/phillip/regular.svg",
  45585. extra: 1373/1277,
  45586. bottom: 75/1448
  45587. }
  45588. },
  45589. dressed: {
  45590. height: math.unit(6, "feet"),
  45591. weight: math.unit(220, "lb"),
  45592. name: "Dressed",
  45593. image: {
  45594. source: "./media/characters/phillip/dressed.svg",
  45595. extra: 1373/1277,
  45596. bottom: 75/1448
  45597. }
  45598. },
  45599. paw: {
  45600. height: math.unit(1.44, "feet"),
  45601. name: "Paw",
  45602. image: {
  45603. source: "./media/characters/phillip/paw.svg"
  45604. }
  45605. },
  45606. },
  45607. [
  45608. {
  45609. name: "Normal",
  45610. height: math.unit(6, "feet"),
  45611. default: true
  45612. },
  45613. ]
  45614. ))
  45615. characterMakers.push(() => makeCharacter(
  45616. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45617. {
  45618. side: {
  45619. height: math.unit(42, "feet"),
  45620. name: "Side",
  45621. image: {
  45622. source: "./media/characters/uvula/side.svg",
  45623. extra: 683/586,
  45624. bottom: 60/743
  45625. }
  45626. },
  45627. front: {
  45628. height: math.unit(42, "feet"),
  45629. name: "Front",
  45630. image: {
  45631. source: "./media/characters/uvula/front.svg",
  45632. extra: 705/613,
  45633. bottom: 54/759
  45634. }
  45635. },
  45636. maw: {
  45637. height: math.unit(23.5, "feet"),
  45638. name: "Maw",
  45639. image: {
  45640. source: "./media/characters/uvula/maw.svg"
  45641. }
  45642. },
  45643. },
  45644. [
  45645. {
  45646. name: "Original Size",
  45647. height: math.unit(14, "inches")
  45648. },
  45649. {
  45650. name: "Human Size",
  45651. height: math.unit(6, "feet")
  45652. },
  45653. {
  45654. name: "Big",
  45655. height: math.unit(42, "feet"),
  45656. default: true
  45657. },
  45658. {
  45659. name: "Bigger",
  45660. height: math.unit(100, "feet")
  45661. },
  45662. ]
  45663. ))
  45664. characterMakers.push(() => makeCharacter(
  45665. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45666. {
  45667. front: {
  45668. height: math.unit(5 + 11/12, "feet"),
  45669. name: "Front",
  45670. image: {
  45671. source: "./media/characters/lannah/front.svg",
  45672. extra: 1208/1113,
  45673. bottom: 97/1305
  45674. }
  45675. },
  45676. },
  45677. [
  45678. {
  45679. name: "Normal",
  45680. height: math.unit(5 + 11/12, "feet"),
  45681. default: true
  45682. },
  45683. ]
  45684. ))
  45685. characterMakers.push(() => makeCharacter(
  45686. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45687. {
  45688. front: {
  45689. height: math.unit(6 + 3/12, "feet"),
  45690. weight: math.unit(3.5, "tons"),
  45691. name: "Front",
  45692. image: {
  45693. source: "./media/characters/emberflame/front.svg",
  45694. extra: 1198/672,
  45695. bottom: 82/1280
  45696. }
  45697. },
  45698. side: {
  45699. height: math.unit(6 + 3/12, "feet"),
  45700. weight: math.unit(3.5, "tons"),
  45701. name: "Side",
  45702. image: {
  45703. source: "./media/characters/emberflame/side.svg",
  45704. extra: 938/527,
  45705. bottom: 56/994
  45706. }
  45707. },
  45708. },
  45709. [
  45710. {
  45711. name: "Normal",
  45712. height: math.unit(6 + 3/12, "feet"),
  45713. default: true
  45714. },
  45715. ]
  45716. ))
  45717. characterMakers.push(() => makeCharacter(
  45718. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45719. {
  45720. side: {
  45721. height: math.unit(17.5, "feet"),
  45722. weight: math.unit(35, "tons"),
  45723. name: "Side",
  45724. image: {
  45725. source: "./media/characters/sophie-ambrose/side.svg",
  45726. extra: 1573/1242,
  45727. bottom: 71/1644
  45728. }
  45729. },
  45730. maw: {
  45731. height: math.unit(7.4, "feet"),
  45732. name: "Maw",
  45733. image: {
  45734. source: "./media/characters/sophie-ambrose/maw.svg"
  45735. }
  45736. },
  45737. },
  45738. [
  45739. {
  45740. name: "Normal",
  45741. height: math.unit(17.5, "feet"),
  45742. default: true
  45743. },
  45744. ]
  45745. ))
  45746. characterMakers.push(() => makeCharacter(
  45747. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45748. {
  45749. front: {
  45750. height: math.unit(280, "feet"),
  45751. weight: math.unit(550, "tons"),
  45752. name: "Front",
  45753. image: {
  45754. source: "./media/characters/king-mugi/front.svg",
  45755. extra: 1102/947,
  45756. bottom: 104/1206
  45757. }
  45758. },
  45759. },
  45760. [
  45761. {
  45762. name: "King Mugi",
  45763. height: math.unit(280, "feet"),
  45764. default: true
  45765. },
  45766. ]
  45767. ))
  45768. characterMakers.push(() => makeCharacter(
  45769. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45770. {
  45771. female: {
  45772. height: math.unit(300, "meters"),
  45773. name: "Front",
  45774. image: {
  45775. source: "./media/characters/nova-fox/female.svg",
  45776. extra: 664/632,
  45777. bottom: 51/715
  45778. },
  45779. form: "female",
  45780. default: true
  45781. },
  45782. male: {
  45783. height: math.unit(300, "meters"),
  45784. name: "Front",
  45785. image: {
  45786. source: "./media/characters/nova-fox/male.svg",
  45787. extra: 663/631,
  45788. bottom: 30/693
  45789. },
  45790. form: "male",
  45791. default: true
  45792. },
  45793. },
  45794. [
  45795. {
  45796. name: "Macro",
  45797. height: math.unit(300, "meters"),
  45798. default: true,
  45799. allForms: true
  45800. },
  45801. ],
  45802. {
  45803. "female": {
  45804. name: "Female",
  45805. default: true
  45806. },
  45807. "male": {
  45808. name: "Male",
  45809. },
  45810. }
  45811. ))
  45812. characterMakers.push(() => makeCharacter(
  45813. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45814. {
  45815. front: {
  45816. height: math.unit(6 + 3/12, "feet"),
  45817. weight: math.unit(170, "lb"),
  45818. name: "Front",
  45819. image: {
  45820. source: "./media/characters/sam-bat/front.svg",
  45821. extra: 1601/1411,
  45822. bottom: 125/1726
  45823. }
  45824. },
  45825. back: {
  45826. height: math.unit(6 + 3/12, "feet"),
  45827. weight: math.unit(170, "lb"),
  45828. name: "Back",
  45829. image: {
  45830. source: "./media/characters/sam-bat/back.svg",
  45831. extra: 1577/1405,
  45832. bottom: 58/1635
  45833. }
  45834. },
  45835. },
  45836. [
  45837. {
  45838. name: "Normal",
  45839. height: math.unit(6 + 3/12, "feet"),
  45840. default: true
  45841. },
  45842. ]
  45843. ))
  45844. characterMakers.push(() => makeCharacter(
  45845. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45846. {
  45847. front: {
  45848. height: math.unit(59, "feet"),
  45849. weight: math.unit(40000, "lb"),
  45850. name: "Front",
  45851. image: {
  45852. source: "./media/characters/inari/front.svg",
  45853. extra: 1884/1350,
  45854. bottom: 95/1979
  45855. }
  45856. },
  45857. },
  45858. [
  45859. {
  45860. name: "Gigantamax",
  45861. height: math.unit(59, "feet"),
  45862. default: true
  45863. },
  45864. ]
  45865. ))
  45866. characterMakers.push(() => makeCharacter(
  45867. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45868. {
  45869. front: {
  45870. height: math.unit(5 + 8/12, "feet"),
  45871. name: "Front",
  45872. image: {
  45873. source: "./media/characters/elizabeth/front.svg",
  45874. extra: 1395/1298,
  45875. bottom: 54/1449
  45876. }
  45877. },
  45878. mouth: {
  45879. height: math.unit(1.97, "feet"),
  45880. name: "Mouth",
  45881. image: {
  45882. source: "./media/characters/elizabeth/mouth.svg"
  45883. }
  45884. },
  45885. foot: {
  45886. height: math.unit(1.17, "feet"),
  45887. name: "Foot",
  45888. image: {
  45889. source: "./media/characters/elizabeth/foot.svg"
  45890. }
  45891. },
  45892. },
  45893. [
  45894. {
  45895. name: "Normal",
  45896. height: math.unit(5 + 8/12, "feet"),
  45897. default: true
  45898. },
  45899. {
  45900. name: "Minimacro",
  45901. height: math.unit(18, "feet")
  45902. },
  45903. {
  45904. name: "Macro",
  45905. height: math.unit(180, "feet")
  45906. },
  45907. ]
  45908. ))
  45909. characterMakers.push(() => makeCharacter(
  45910. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45911. {
  45912. front: {
  45913. height: math.unit(5 + 2/12, "feet"),
  45914. name: "Front",
  45915. image: {
  45916. source: "./media/characters/october-gossamer/front.svg",
  45917. extra: 505/454,
  45918. bottom: 7/512
  45919. }
  45920. },
  45921. back: {
  45922. height: math.unit(5 + 2/12, "feet"),
  45923. name: "Back",
  45924. image: {
  45925. source: "./media/characters/october-gossamer/back.svg",
  45926. extra: 501/454,
  45927. bottom: 11/512
  45928. }
  45929. },
  45930. },
  45931. [
  45932. {
  45933. name: "Normal",
  45934. height: math.unit(5 + 2/12, "feet"),
  45935. default: true
  45936. },
  45937. ]
  45938. ))
  45939. characterMakers.push(() => makeCharacter(
  45940. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45941. {
  45942. front: {
  45943. height: math.unit(5, "feet"),
  45944. name: "Front",
  45945. image: {
  45946. source: "./media/characters/epiglottis/front.svg",
  45947. extra: 923/849,
  45948. bottom: 17/940
  45949. }
  45950. },
  45951. },
  45952. [
  45953. {
  45954. name: "Original Size",
  45955. height: math.unit(10, "inches")
  45956. },
  45957. {
  45958. name: "Human Size",
  45959. height: math.unit(5, "feet"),
  45960. default: true
  45961. },
  45962. {
  45963. name: "Big",
  45964. height: math.unit(25, "feet")
  45965. },
  45966. {
  45967. name: "Bigger",
  45968. height: math.unit(50, "feet")
  45969. },
  45970. {
  45971. name: "oh lawd",
  45972. height: math.unit(75, "feet")
  45973. },
  45974. ]
  45975. ))
  45976. characterMakers.push(() => makeCharacter(
  45977. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45978. {
  45979. front: {
  45980. height: math.unit(2 + 4/12, "feet"),
  45981. weight: math.unit(60, "lb"),
  45982. name: "Front",
  45983. image: {
  45984. source: "./media/characters/lerm/front.svg",
  45985. extra: 796/790,
  45986. bottom: 79/875
  45987. }
  45988. },
  45989. },
  45990. [
  45991. {
  45992. name: "Normal",
  45993. height: math.unit(2 + 4/12, "feet"),
  45994. default: true
  45995. },
  45996. ]
  45997. ))
  45998. characterMakers.push(() => makeCharacter(
  45999. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46000. {
  46001. front: {
  46002. height: math.unit(5.5, "feet"),
  46003. weight: math.unit(130, "lb"),
  46004. name: "Front",
  46005. image: {
  46006. source: "./media/characters/xena-nebadon/front.svg",
  46007. extra: 1828/1730,
  46008. bottom: 79/1907
  46009. }
  46010. },
  46011. },
  46012. [
  46013. {
  46014. name: "Tiny Puppy",
  46015. height: math.unit(3, "inches")
  46016. },
  46017. {
  46018. name: "Normal",
  46019. height: math.unit(5.5, "feet"),
  46020. default: true
  46021. },
  46022. {
  46023. name: "Lotta Lady",
  46024. height: math.unit(12, "feet")
  46025. },
  46026. {
  46027. name: "Pretty Big",
  46028. height: math.unit(100, "feet")
  46029. },
  46030. {
  46031. name: "Big",
  46032. height: math.unit(500, "feet")
  46033. },
  46034. {
  46035. name: "Skyscraper Toys",
  46036. height: math.unit(2500, "feet")
  46037. },
  46038. {
  46039. name: "Plane Catcher",
  46040. height: math.unit(8, "miles")
  46041. },
  46042. {
  46043. name: "Planet Toys",
  46044. height: math.unit(15, "earths")
  46045. },
  46046. {
  46047. name: "Stardust",
  46048. height: math.unit(0.25, "galaxies")
  46049. },
  46050. {
  46051. name: "Snacks",
  46052. height: math.unit(70, "universes")
  46053. },
  46054. ]
  46055. ))
  46056. characterMakers.push(() => makeCharacter(
  46057. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46058. {
  46059. front: {
  46060. height: math.unit(1.6, "meters"),
  46061. weight: math.unit(60, "kg"),
  46062. name: "Front",
  46063. image: {
  46064. source: "./media/characters/bounty/front.svg",
  46065. extra: 1426/1308,
  46066. bottom: 15/1441
  46067. }
  46068. },
  46069. back: {
  46070. height: math.unit(1.6, "meters"),
  46071. weight: math.unit(60, "kg"),
  46072. name: "Back",
  46073. image: {
  46074. source: "./media/characters/bounty/back.svg",
  46075. extra: 1417/1307,
  46076. bottom: 8/1425
  46077. }
  46078. },
  46079. },
  46080. [
  46081. {
  46082. name: "Normal",
  46083. height: math.unit(1.6, "meters"),
  46084. default: true
  46085. },
  46086. {
  46087. name: "Macro",
  46088. height: math.unit(300, "meters")
  46089. },
  46090. ]
  46091. ))
  46092. characterMakers.push(() => makeCharacter(
  46093. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46094. {
  46095. front: {
  46096. height: math.unit(2 + 8/12, "feet"),
  46097. weight: math.unit(15, "lb"),
  46098. name: "Front",
  46099. image: {
  46100. source: "./media/characters/mochi/front.svg",
  46101. extra: 1022/852,
  46102. bottom: 435/1457
  46103. }
  46104. },
  46105. back: {
  46106. height: math.unit(2 + 8/12, "feet"),
  46107. weight: math.unit(15, "lb"),
  46108. name: "Back",
  46109. image: {
  46110. source: "./media/characters/mochi/back.svg",
  46111. extra: 1335/1119,
  46112. bottom: 39/1374
  46113. }
  46114. },
  46115. bird: {
  46116. height: math.unit(2 + 8/12, "feet"),
  46117. weight: math.unit(15, "lb"),
  46118. name: "Bird",
  46119. image: {
  46120. source: "./media/characters/mochi/bird.svg",
  46121. extra: 1251/1113,
  46122. bottom: 178/1429
  46123. }
  46124. },
  46125. kaiju: {
  46126. height: math.unit(154, "feet"),
  46127. weight: math.unit(1e7, "lb"),
  46128. name: "Kaiju",
  46129. image: {
  46130. source: "./media/characters/mochi/kaiju.svg",
  46131. extra: 460/324,
  46132. bottom: 40/500
  46133. }
  46134. },
  46135. head: {
  46136. height: math.unit(1.21, "feet"),
  46137. name: "Head",
  46138. image: {
  46139. source: "./media/characters/mochi/head.svg"
  46140. }
  46141. },
  46142. alternateTail: {
  46143. height: math.unit(2 + 8/12, "feet"),
  46144. weight: math.unit(45, "lb"),
  46145. name: "Alternate Tail",
  46146. image: {
  46147. source: "./media/characters/mochi/alternate-tail.svg",
  46148. extra: 139/76,
  46149. bottom: 45/184
  46150. }
  46151. },
  46152. },
  46153. [
  46154. {
  46155. name: "Micro",
  46156. height: math.unit(2, "inches")
  46157. },
  46158. {
  46159. name: "Normal",
  46160. height: math.unit(2 + 8/12, "feet"),
  46161. default: true
  46162. },
  46163. {
  46164. name: "Macro",
  46165. height: math.unit(106, "feet")
  46166. },
  46167. ]
  46168. ))
  46169. characterMakers.push(() => makeCharacter(
  46170. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46171. {
  46172. front: {
  46173. height: math.unit(5.67, "feet"),
  46174. weight: math.unit(135, "lb"),
  46175. name: "Front",
  46176. image: {
  46177. source: "./media/characters/sarel/front.svg",
  46178. extra: 865/788,
  46179. bottom: 97/962
  46180. }
  46181. },
  46182. back: {
  46183. height: math.unit(5.67, "feet"),
  46184. weight: math.unit(135, "lb"),
  46185. name: "Back",
  46186. image: {
  46187. source: "./media/characters/sarel/back.svg",
  46188. extra: 857/777,
  46189. bottom: 32/889
  46190. }
  46191. },
  46192. chozoan: {
  46193. height: math.unit(5.67, "feet"),
  46194. weight: math.unit(135, "lb"),
  46195. name: "Chozoan",
  46196. image: {
  46197. source: "./media/characters/sarel/chozoan.svg",
  46198. extra: 865/788,
  46199. bottom: 97/962
  46200. }
  46201. },
  46202. current: {
  46203. height: math.unit(5.67, "feet"),
  46204. weight: math.unit(135, "lb"),
  46205. name: "Current",
  46206. image: {
  46207. source: "./media/characters/sarel/current.svg",
  46208. extra: 865/788,
  46209. bottom: 97/962
  46210. }
  46211. },
  46212. head: {
  46213. height: math.unit(1.77, "feet"),
  46214. name: "Head",
  46215. image: {
  46216. source: "./media/characters/sarel/head.svg"
  46217. }
  46218. },
  46219. claws: {
  46220. height: math.unit(1.8, "feet"),
  46221. name: "Claws",
  46222. image: {
  46223. source: "./media/characters/sarel/claws.svg"
  46224. }
  46225. },
  46226. clawsAlt: {
  46227. height: math.unit(1.8, "feet"),
  46228. name: "Claws-alt",
  46229. image: {
  46230. source: "./media/characters/sarel/claws-alt.svg"
  46231. }
  46232. },
  46233. },
  46234. [
  46235. {
  46236. name: "Normal",
  46237. height: math.unit(5.67, "feet"),
  46238. default: true
  46239. },
  46240. ]
  46241. ))
  46242. characterMakers.push(() => makeCharacter(
  46243. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46244. {
  46245. front: {
  46246. height: math.unit(5500, "feet"),
  46247. name: "Front",
  46248. image: {
  46249. source: "./media/characters/alyonia/front.svg",
  46250. extra: 1200/1135,
  46251. bottom: 29/1229
  46252. }
  46253. },
  46254. back: {
  46255. height: math.unit(5500, "feet"),
  46256. name: "Back",
  46257. image: {
  46258. source: "./media/characters/alyonia/back.svg",
  46259. extra: 1205/1138,
  46260. bottom: 10/1215
  46261. }
  46262. },
  46263. },
  46264. [
  46265. {
  46266. name: "Small",
  46267. height: math.unit(10, "feet")
  46268. },
  46269. {
  46270. name: "Macro",
  46271. height: math.unit(500, "feet")
  46272. },
  46273. {
  46274. name: "Mega Macro",
  46275. height: math.unit(5500, "feet"),
  46276. default: true
  46277. },
  46278. {
  46279. name: "Mega Macro+",
  46280. height: math.unit(500000, "feet")
  46281. },
  46282. {
  46283. name: "Giga Macro",
  46284. height: math.unit(3000, "miles")
  46285. },
  46286. {
  46287. name: "Tera Macro",
  46288. height: math.unit(2.8e6, "miles")
  46289. },
  46290. {
  46291. name: "Galactic",
  46292. height: math.unit(120000, "lightyears")
  46293. },
  46294. ]
  46295. ))
  46296. characterMakers.push(() => makeCharacter(
  46297. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46298. {
  46299. werewolf: {
  46300. height: math.unit(8, "feet"),
  46301. weight: math.unit(425, "lb"),
  46302. name: "Werewolf",
  46303. image: {
  46304. source: "./media/characters/autumn/werewolf.svg",
  46305. extra: 2154/2031,
  46306. bottom: 160/2314
  46307. }
  46308. },
  46309. human: {
  46310. height: math.unit(5 + 8/12, "feet"),
  46311. weight: math.unit(150, "lb"),
  46312. name: "Human",
  46313. image: {
  46314. source: "./media/characters/autumn/human.svg",
  46315. extra: 1200/1149,
  46316. bottom: 30/1230
  46317. }
  46318. },
  46319. },
  46320. [
  46321. {
  46322. name: "Normal",
  46323. height: math.unit(8, "feet"),
  46324. default: true
  46325. },
  46326. ]
  46327. ))
  46328. characterMakers.push(() => makeCharacter(
  46329. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46330. {
  46331. front: {
  46332. height: math.unit(8 + 5/12, "feet"),
  46333. weight: math.unit(825, "lb"),
  46334. name: "Front",
  46335. image: {
  46336. source: "./media/characters/cobalt-charizard/front.svg",
  46337. extra: 1268/1155,
  46338. bottom: 122/1390
  46339. }
  46340. },
  46341. side: {
  46342. height: math.unit(8 + 5/12, "feet"),
  46343. weight: math.unit(825, "lb"),
  46344. name: "Side",
  46345. image: {
  46346. source: "./media/characters/cobalt-charizard/side.svg",
  46347. extra: 1348/1257,
  46348. bottom: 58/1406
  46349. }
  46350. },
  46351. gMax: {
  46352. height: math.unit(134 + 11/12, "feet"),
  46353. name: "G-Max",
  46354. image: {
  46355. source: "./media/characters/cobalt-charizard/g-max.svg",
  46356. extra: 1835/1541,
  46357. bottom: 151/1986
  46358. }
  46359. },
  46360. },
  46361. [
  46362. {
  46363. name: "Normal",
  46364. height: math.unit(8 + 5/12, "feet"),
  46365. default: true
  46366. },
  46367. ]
  46368. ))
  46369. characterMakers.push(() => makeCharacter(
  46370. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46371. {
  46372. front: {
  46373. height: math.unit(6 + 3/12, "feet"),
  46374. weight: math.unit(210, "lb"),
  46375. name: "Front",
  46376. image: {
  46377. source: "./media/characters/stella/front.svg",
  46378. extra: 3549/3335,
  46379. bottom: 51/3600
  46380. }
  46381. },
  46382. },
  46383. [
  46384. {
  46385. name: "Normal",
  46386. height: math.unit(6 + 3/12, "feet"),
  46387. default: true
  46388. },
  46389. ]
  46390. ))
  46391. characterMakers.push(() => makeCharacter(
  46392. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46393. {
  46394. front: {
  46395. height: math.unit(5, "feet"),
  46396. weight: math.unit(90, "lb"),
  46397. name: "Front",
  46398. image: {
  46399. source: "./media/characters/riley-bishop/front.svg",
  46400. extra: 1450/1428,
  46401. bottom: 152/1602
  46402. }
  46403. },
  46404. },
  46405. [
  46406. {
  46407. name: "Normal",
  46408. height: math.unit(5, "feet"),
  46409. default: true
  46410. },
  46411. ]
  46412. ))
  46413. characterMakers.push(() => makeCharacter(
  46414. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46415. {
  46416. side: {
  46417. height: math.unit(8 + 2/12, "feet"),
  46418. weight: math.unit(500, "kg"),
  46419. name: "Side",
  46420. image: {
  46421. source: "./media/characters/theo-arcanine/side.svg",
  46422. extra: 1342/1074,
  46423. bottom: 111/1453
  46424. }
  46425. },
  46426. },
  46427. [
  46428. {
  46429. name: "Normal",
  46430. height: math.unit(8 + 2/12, "feet"),
  46431. default: true
  46432. },
  46433. ]
  46434. ))
  46435. characterMakers.push(() => makeCharacter(
  46436. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46437. {
  46438. front: {
  46439. height: math.unit(4, "feet"),
  46440. name: "Front",
  46441. image: {
  46442. source: "./media/characters/kali/front.svg",
  46443. extra: 1074/867,
  46444. bottom: 34/1108
  46445. }
  46446. },
  46447. back: {
  46448. height: math.unit(4, "feet"),
  46449. name: "Back",
  46450. image: {
  46451. source: "./media/characters/kali/back.svg",
  46452. extra: 1068/863,
  46453. bottom: 26/1094
  46454. }
  46455. },
  46456. frontAlt: {
  46457. height: math.unit(4, "feet"),
  46458. name: "Front (Alt)",
  46459. image: {
  46460. source: "./media/characters/kali/front-alt.svg",
  46461. extra: 1921/1357,
  46462. bottom: 70/1991
  46463. }
  46464. },
  46465. },
  46466. [
  46467. {
  46468. name: "Normal",
  46469. height: math.unit(4, "feet"),
  46470. default: true
  46471. },
  46472. {
  46473. name: "Big'vali",
  46474. height: math.unit(11, "feet")
  46475. },
  46476. {
  46477. name: "Macro",
  46478. height: math.unit(32, "meters")
  46479. },
  46480. {
  46481. name: "Macro+",
  46482. height: math.unit(150, "meters")
  46483. },
  46484. {
  46485. name: "Megamacro",
  46486. height: math.unit(7500, "meters")
  46487. },
  46488. {
  46489. name: "Megamacro+",
  46490. height: math.unit(80, "kilometers")
  46491. },
  46492. ]
  46493. ))
  46494. characterMakers.push(() => makeCharacter(
  46495. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46496. {
  46497. side: {
  46498. height: math.unit(5 + 11/12, "feet"),
  46499. weight: math.unit(236, "lb"),
  46500. name: "Side",
  46501. image: {
  46502. source: "./media/characters/gapp/side.svg",
  46503. extra: 775/340,
  46504. bottom: 58/833
  46505. }
  46506. },
  46507. mouth: {
  46508. height: math.unit(2.98, "feet"),
  46509. name: "Mouth",
  46510. image: {
  46511. source: "./media/characters/gapp/mouth.svg"
  46512. }
  46513. },
  46514. },
  46515. [
  46516. {
  46517. name: "Normal",
  46518. height: math.unit(5 + 1/12, "feet"),
  46519. default: true
  46520. },
  46521. ]
  46522. ))
  46523. characterMakers.push(() => makeCharacter(
  46524. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46525. {
  46526. front: {
  46527. height: math.unit(6, "feet"),
  46528. name: "Front",
  46529. image: {
  46530. source: "./media/characters/persephone/front.svg",
  46531. extra: 1895/1717,
  46532. bottom: 96/1991
  46533. }
  46534. },
  46535. back: {
  46536. height: math.unit(6, "feet"),
  46537. name: "Back",
  46538. image: {
  46539. source: "./media/characters/persephone/back.svg",
  46540. extra: 1868/1679,
  46541. bottom: 26/1894
  46542. }
  46543. },
  46544. casual: {
  46545. height: math.unit(6, "feet"),
  46546. name: "Casual",
  46547. image: {
  46548. source: "./media/characters/persephone/casual.svg",
  46549. extra: 1713/1541,
  46550. bottom: 76/1789
  46551. }
  46552. },
  46553. gaming: {
  46554. height: math.unit(3.55, "feet"),
  46555. name: "Gaming",
  46556. image: {
  46557. source: "./media/characters/persephone/gaming.svg",
  46558. extra: 1242/1038,
  46559. bottom: 66/1308
  46560. }
  46561. },
  46562. head: {
  46563. height: math.unit(2.15, "feet"),
  46564. name: "😐",
  46565. image: {
  46566. source: "./media/characters/persephone/head.svg"
  46567. }
  46568. },
  46569. talking: {
  46570. height: math.unit(2.5, "feet"),
  46571. name: "💬",
  46572. image: {
  46573. source: "./media/characters/persephone/talking.svg"
  46574. }
  46575. },
  46576. hmm: {
  46577. height: math.unit(2.28, "feet"),
  46578. name: "🤨",
  46579. image: {
  46580. source: "./media/characters/persephone/hmm.svg"
  46581. }
  46582. },
  46583. },
  46584. [
  46585. {
  46586. name: "Human Size",
  46587. height: math.unit(6, "feet")
  46588. },
  46589. {
  46590. name: "Big Steppy",
  46591. height: math.unit(600, "meters"),
  46592. default: true
  46593. },
  46594. {
  46595. name: "Galaxy Brain",
  46596. height: math.unit(1, "zettameter")
  46597. },
  46598. ]
  46599. ))
  46600. characterMakers.push(() => makeCharacter(
  46601. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46602. {
  46603. front: {
  46604. height: math.unit(1.85, "meters"),
  46605. name: "Front",
  46606. image: {
  46607. source: "./media/characters/riley-foxthing/front.svg",
  46608. extra: 1495/1354,
  46609. bottom: 122/1617
  46610. }
  46611. },
  46612. frontAlt: {
  46613. height: math.unit(1.85, "meters"),
  46614. name: "Front (Alt)",
  46615. image: {
  46616. source: "./media/characters/riley-foxthing/front-alt.svg",
  46617. extra: 1572/1389,
  46618. bottom: 116/1688
  46619. }
  46620. },
  46621. },
  46622. [
  46623. {
  46624. name: "Normal Sized",
  46625. height: math.unit(1.85, "meters"),
  46626. default: true
  46627. },
  46628. {
  46629. name: "Quite Sizable",
  46630. height: math.unit(5, "meters")
  46631. },
  46632. {
  46633. name: "Rather Large",
  46634. height: math.unit(20, "meters")
  46635. },
  46636. {
  46637. name: "Macro",
  46638. height: math.unit(450, "meters")
  46639. },
  46640. {
  46641. name: "Giga",
  46642. height: math.unit(5, "km")
  46643. },
  46644. ]
  46645. ))
  46646. characterMakers.push(() => makeCharacter(
  46647. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46648. {
  46649. front: {
  46650. height: math.unit(6, "feet"),
  46651. weight: math.unit(200, "lb"),
  46652. name: "Front",
  46653. image: {
  46654. source: "./media/characters/blizzard/front.svg",
  46655. extra: 1136/990,
  46656. bottom: 136/1272
  46657. }
  46658. },
  46659. back: {
  46660. height: math.unit(6, "feet"),
  46661. weight: math.unit(200, "lb"),
  46662. name: "Back",
  46663. image: {
  46664. source: "./media/characters/blizzard/back.svg",
  46665. extra: 1175/1034,
  46666. bottom: 97/1272
  46667. }
  46668. },
  46669. sitting: {
  46670. height: math.unit(3.725, "feet"),
  46671. weight: math.unit(200, "lb"),
  46672. name: "Sitting",
  46673. image: {
  46674. source: "./media/characters/blizzard/sitting.svg",
  46675. extra: 581/485,
  46676. bottom: 90/671
  46677. }
  46678. },
  46679. frontWizard: {
  46680. height: math.unit(7.9, "feet"),
  46681. weight: math.unit(200, "lb"),
  46682. name: "Front (Wizard)",
  46683. image: {
  46684. source: "./media/characters/blizzard/front-wizard.svg"
  46685. }
  46686. },
  46687. backWizard: {
  46688. height: math.unit(7.9, "feet"),
  46689. weight: math.unit(200, "lb"),
  46690. name: "Back (Wizard)",
  46691. image: {
  46692. source: "./media/characters/blizzard/back-wizard.svg"
  46693. }
  46694. },
  46695. frontNsfw: {
  46696. height: math.unit(6, "feet"),
  46697. weight: math.unit(200, "lb"),
  46698. name: "Front (NSFW)",
  46699. image: {
  46700. source: "./media/characters/blizzard/front-nsfw.svg",
  46701. extra: 1136/990,
  46702. bottom: 136/1272
  46703. }
  46704. },
  46705. backNsfw: {
  46706. height: math.unit(6, "feet"),
  46707. weight: math.unit(200, "lb"),
  46708. name: "Back (NSFW)",
  46709. image: {
  46710. source: "./media/characters/blizzard/back-nsfw.svg",
  46711. extra: 1175/1034,
  46712. bottom: 97/1272
  46713. }
  46714. },
  46715. sittingNsfw: {
  46716. height: math.unit(3.725, "feet"),
  46717. weight: math.unit(200, "lb"),
  46718. name: "Sitting (NSFW)",
  46719. image: {
  46720. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46721. extra: 581/485,
  46722. bottom: 90/671
  46723. }
  46724. },
  46725. wizardFrontNsfw: {
  46726. height: math.unit(7.9, "feet"),
  46727. weight: math.unit(200, "lb"),
  46728. name: "Wizard (Front, NSFW)",
  46729. image: {
  46730. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46731. }
  46732. },
  46733. },
  46734. [
  46735. {
  46736. name: "Normal",
  46737. height: math.unit(6, "feet"),
  46738. default: true
  46739. },
  46740. ]
  46741. ))
  46742. characterMakers.push(() => makeCharacter(
  46743. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46744. {
  46745. front: {
  46746. height: math.unit(5 + 2/12, "feet"),
  46747. name: "Front",
  46748. image: {
  46749. source: "./media/characters/lumi/front.svg",
  46750. extra: 1328/1268,
  46751. bottom: 103/1431
  46752. }
  46753. },
  46754. back: {
  46755. height: math.unit(5 + 2/12, "feet"),
  46756. name: "Back",
  46757. image: {
  46758. source: "./media/characters/lumi/back.svg",
  46759. extra: 1381/1327,
  46760. bottom: 43/1424
  46761. }
  46762. },
  46763. },
  46764. [
  46765. {
  46766. name: "Normal",
  46767. height: math.unit(5 + 2/12, "feet"),
  46768. default: true
  46769. },
  46770. ]
  46771. ))
  46772. characterMakers.push(() => makeCharacter(
  46773. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46774. {
  46775. front: {
  46776. height: math.unit(5 + 9/12, "feet"),
  46777. name: "Front",
  46778. image: {
  46779. source: "./media/characters/aliya-cotton/front.svg",
  46780. extra: 577/564,
  46781. bottom: 29/606
  46782. }
  46783. },
  46784. },
  46785. [
  46786. {
  46787. name: "Normal",
  46788. height: math.unit(5 + 9/12, "feet"),
  46789. default: true
  46790. },
  46791. ]
  46792. ))
  46793. characterMakers.push(() => makeCharacter(
  46794. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46795. {
  46796. front: {
  46797. height: math.unit(2.7, "meters"),
  46798. weight: math.unit(25000, "lb"),
  46799. name: "Front",
  46800. image: {
  46801. source: "./media/characters/noah-luxray/front.svg",
  46802. extra: 1644/825,
  46803. bottom: 339/1983
  46804. }
  46805. },
  46806. side: {
  46807. height: math.unit(2.97, "meters"),
  46808. weight: math.unit(25000, "lb"),
  46809. name: "Side",
  46810. image: {
  46811. source: "./media/characters/noah-luxray/side.svg",
  46812. extra: 1319/650,
  46813. bottom: 163/1482
  46814. }
  46815. },
  46816. dick: {
  46817. height: math.unit(7.4, "feet"),
  46818. weight: math.unit(2500, "lb"),
  46819. name: "Dick",
  46820. image: {
  46821. source: "./media/characters/noah-luxray/dick.svg"
  46822. }
  46823. },
  46824. dickAlt: {
  46825. height: math.unit(10.83, "feet"),
  46826. weight: math.unit(2500, "lb"),
  46827. name: "Dick-alt",
  46828. image: {
  46829. source: "./media/characters/noah-luxray/dick-alt.svg"
  46830. }
  46831. },
  46832. },
  46833. [
  46834. {
  46835. name: "BIG",
  46836. height: math.unit(2.7, "meters"),
  46837. default: true
  46838. },
  46839. ]
  46840. ))
  46841. characterMakers.push(() => makeCharacter(
  46842. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46843. {
  46844. standing: {
  46845. height: math.unit(183, "cm"),
  46846. weight: math.unit(68, "kg"),
  46847. name: "Standing",
  46848. image: {
  46849. source: "./media/characters/arion/standing.svg",
  46850. extra: 1869/1807,
  46851. bottom: 93/1962
  46852. }
  46853. },
  46854. reclining: {
  46855. height: math.unit(70.5, "cm"),
  46856. weight: math.unit(68, "lb"),
  46857. name: "Reclining",
  46858. image: {
  46859. source: "./media/characters/arion/reclining.svg",
  46860. extra: 937/870,
  46861. bottom: 63/1000
  46862. }
  46863. },
  46864. },
  46865. [
  46866. {
  46867. name: "Colossus Size, Low",
  46868. height: math.unit(33, "meters"),
  46869. default: true
  46870. },
  46871. {
  46872. name: "Colossus Size, Mid",
  46873. height: math.unit(52, "meters")
  46874. },
  46875. {
  46876. name: "Colossus Size, High",
  46877. height: math.unit(60, "meters")
  46878. },
  46879. {
  46880. name: "Titan Size, Low",
  46881. height: math.unit(91, "meters"),
  46882. },
  46883. {
  46884. name: "Titan Size, Mid",
  46885. height: math.unit(122, "meters")
  46886. },
  46887. {
  46888. name: "Titan Size, High",
  46889. height: math.unit(162, "meters")
  46890. },
  46891. ]
  46892. ))
  46893. characterMakers.push(() => makeCharacter(
  46894. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46895. {
  46896. front: {
  46897. height: math.unit(53, "meters"),
  46898. name: "Front",
  46899. image: {
  46900. source: "./media/characters/stellar-marbey/front.svg",
  46901. extra: 1913/1805,
  46902. bottom: 92/2005
  46903. }
  46904. },
  46905. back: {
  46906. height: math.unit(53, "meters"),
  46907. name: "Back",
  46908. image: {
  46909. source: "./media/characters/stellar-marbey/back.svg",
  46910. extra: 1960/1851,
  46911. bottom: 28/1988
  46912. }
  46913. },
  46914. mouth: {
  46915. height: math.unit(3.5, "meters"),
  46916. name: "Mouth",
  46917. image: {
  46918. source: "./media/characters/stellar-marbey/mouth.svg"
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Macro",
  46925. height: math.unit(53, "meters"),
  46926. default: true
  46927. },
  46928. ]
  46929. ))
  46930. characterMakers.push(() => makeCharacter(
  46931. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46932. {
  46933. front: {
  46934. height: math.unit(8 + 1/12, "feet"),
  46935. weight: math.unit(233, "lb"),
  46936. name: "Front",
  46937. image: {
  46938. source: "./media/characters/matsu/front.svg",
  46939. extra: 832/772,
  46940. bottom: 40/872
  46941. }
  46942. },
  46943. back: {
  46944. height: math.unit(8 + 1/12, "feet"),
  46945. weight: math.unit(233, "lb"),
  46946. name: "Back",
  46947. image: {
  46948. source: "./media/characters/matsu/back.svg",
  46949. extra: 839/780,
  46950. bottom: 47/886
  46951. }
  46952. },
  46953. },
  46954. [
  46955. {
  46956. name: "Normal",
  46957. height: math.unit(8 + 1/12, "feet"),
  46958. default: true
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46964. {
  46965. front: {
  46966. height: math.unit(4, "feet"),
  46967. weight: math.unit(148, "lb"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/thiz/front.svg",
  46971. extra: 1913/1748,
  46972. bottom: 62/1975
  46973. }
  46974. },
  46975. },
  46976. [
  46977. {
  46978. name: "Normal",
  46979. height: math.unit(4, "feet"),
  46980. default: true
  46981. },
  46982. ]
  46983. ))
  46984. characterMakers.push(() => makeCharacter(
  46985. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46986. {
  46987. front: {
  46988. height: math.unit(7 + 6/12, "feet"),
  46989. weight: math.unit(267, "lb"),
  46990. name: "Front",
  46991. image: {
  46992. source: "./media/characters/marcel/front.svg",
  46993. extra: 1221/1096,
  46994. bottom: 76/1297
  46995. }
  46996. },
  46997. },
  46998. [
  46999. {
  47000. name: "Normal",
  47001. height: math.unit(7 + 6/12, "feet"),
  47002. default: true
  47003. },
  47004. ]
  47005. ))
  47006. characterMakers.push(() => makeCharacter(
  47007. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47008. {
  47009. side: {
  47010. height: math.unit(42, "meters"),
  47011. name: "Side",
  47012. image: {
  47013. source: "./media/characters/flake/side.svg",
  47014. extra: 1525/1306,
  47015. bottom: 209/1734
  47016. }
  47017. },
  47018. },
  47019. [
  47020. {
  47021. name: "Normal",
  47022. height: math.unit(42, "meters"),
  47023. default: true
  47024. },
  47025. ]
  47026. ))
  47027. characterMakers.push(() => makeCharacter(
  47028. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47029. {
  47030. dressed: {
  47031. height: math.unit(6 + 4/12, "feet"),
  47032. weight: math.unit(520, "lb"),
  47033. name: "Dressed",
  47034. image: {
  47035. source: "./media/characters/someonne/dressed.svg",
  47036. extra: 1020/1010,
  47037. bottom: 178/1198
  47038. }
  47039. },
  47040. undressed: {
  47041. height: math.unit(6 + 4/12, "feet"),
  47042. weight: math.unit(520, "lb"),
  47043. name: "Undressed",
  47044. image: {
  47045. source: "./media/characters/someonne/undressed.svg",
  47046. extra: 1019/1014,
  47047. bottom: 169/1188
  47048. }
  47049. },
  47050. },
  47051. [
  47052. {
  47053. name: "Normal",
  47054. height: math.unit(6 + 4/12, "feet"),
  47055. default: true
  47056. },
  47057. ]
  47058. ))
  47059. characterMakers.push(() => makeCharacter(
  47060. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47061. {
  47062. front: {
  47063. height: math.unit(3, "feet"),
  47064. weight: math.unit(30, "lb"),
  47065. name: "Front",
  47066. image: {
  47067. source: "./media/characters/till/front.svg",
  47068. extra: 892/823,
  47069. bottom: 55/947
  47070. }
  47071. },
  47072. },
  47073. [
  47074. {
  47075. name: "Normal",
  47076. height: math.unit(3, "feet"),
  47077. default: true
  47078. },
  47079. ]
  47080. ))
  47081. characterMakers.push(() => makeCharacter(
  47082. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47083. {
  47084. front: {
  47085. height: math.unit(9 + 8/12, "feet"),
  47086. weight: math.unit(800, "lb"),
  47087. name: "Front",
  47088. image: {
  47089. source: "./media/characters/sydney-heki/front.svg",
  47090. extra: 1360/1300,
  47091. bottom: 22/1382
  47092. }
  47093. },
  47094. back: {
  47095. height: math.unit(9 + 8/12, "feet"),
  47096. weight: math.unit(800, "lb"),
  47097. name: "Back",
  47098. image: {
  47099. source: "./media/characters/sydney-heki/back.svg",
  47100. extra: 1356/1293,
  47101. bottom: 12/1368
  47102. }
  47103. },
  47104. frontDressed: {
  47105. height: math.unit(9 + 8/12, "feet"),
  47106. weight: math.unit(800, "lb"),
  47107. name: "Front-dressed",
  47108. image: {
  47109. source: "./media/characters/sydney-heki/front-dressed.svg",
  47110. extra: 1360/1300,
  47111. bottom: 22/1382
  47112. }
  47113. },
  47114. },
  47115. [
  47116. {
  47117. name: "Normal",
  47118. height: math.unit(9 + 8/12, "feet"),
  47119. default: true
  47120. },
  47121. {
  47122. name: "Macro",
  47123. height: math.unit(500, "feet")
  47124. },
  47125. {
  47126. name: "Megamacro",
  47127. height: math.unit(3.6, "miles")
  47128. },
  47129. ]
  47130. ))
  47131. characterMakers.push(() => makeCharacter(
  47132. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47133. {
  47134. front: {
  47135. height: math.unit(200, "cm"),
  47136. weight: math.unit(250, "lb"),
  47137. name: "Front",
  47138. image: {
  47139. source: "./media/characters/fowler-karlsson/front.svg",
  47140. extra: 897/845,
  47141. bottom: 123/1020
  47142. }
  47143. },
  47144. back: {
  47145. height: math.unit(200, "cm"),
  47146. weight: math.unit(250, "lb"),
  47147. name: "Back",
  47148. image: {
  47149. source: "./media/characters/fowler-karlsson/back.svg",
  47150. extra: 999/944,
  47151. bottom: 26/1025
  47152. }
  47153. },
  47154. dick: {
  47155. height: math.unit(1.92, "feet"),
  47156. weight: math.unit(150, "lb"),
  47157. name: "Dick",
  47158. image: {
  47159. source: "./media/characters/fowler-karlsson/dick.svg"
  47160. }
  47161. },
  47162. },
  47163. [
  47164. {
  47165. name: "Normal",
  47166. height: math.unit(200, "cm"),
  47167. default: true
  47168. },
  47169. {
  47170. name: "Smaller Macro",
  47171. height: math.unit(90, "m")
  47172. },
  47173. {
  47174. name: "Macro",
  47175. height: math.unit(150, "m")
  47176. },
  47177. {
  47178. name: "Bigger Macro",
  47179. height: math.unit(300, "m")
  47180. },
  47181. ]
  47182. ))
  47183. characterMakers.push(() => makeCharacter(
  47184. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47185. {
  47186. side: {
  47187. height: math.unit(8 + 2/12, "feet"),
  47188. weight: math.unit(1, "tonne"),
  47189. name: "Side",
  47190. image: {
  47191. source: "./media/characters/rylide/side.svg",
  47192. extra: 1318/1034,
  47193. bottom: 106/1424
  47194. }
  47195. },
  47196. sitting: {
  47197. height: math.unit(303, "cm"),
  47198. weight: math.unit(1, "tonne"),
  47199. name: "Sitting",
  47200. image: {
  47201. source: "./media/characters/rylide/sitting.svg",
  47202. extra: 1303/1103,
  47203. bottom: 36/1339
  47204. }
  47205. },
  47206. },
  47207. [
  47208. {
  47209. name: "Normal",
  47210. height: math.unit(8 + 2/12, "feet"),
  47211. default: true
  47212. },
  47213. ]
  47214. ))
  47215. characterMakers.push(() => makeCharacter(
  47216. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47217. {
  47218. front: {
  47219. height: math.unit(5 + 10/12, "feet"),
  47220. weight: math.unit(160, "lb"),
  47221. name: "Front",
  47222. image: {
  47223. source: "./media/characters/pudask/front.svg",
  47224. extra: 1616/1590,
  47225. bottom: 161/1777
  47226. }
  47227. },
  47228. },
  47229. [
  47230. {
  47231. name: "Ferret Height",
  47232. height: math.unit(2 + 5/12, "feet")
  47233. },
  47234. {
  47235. name: "Canon Height",
  47236. height: math.unit(5 + 10/12, "feet"),
  47237. default: true
  47238. },
  47239. ]
  47240. ))
  47241. characterMakers.push(() => makeCharacter(
  47242. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47243. {
  47244. front: {
  47245. height: math.unit(3 + 6/12, "feet"),
  47246. weight: math.unit(60, "lb"),
  47247. name: "Front",
  47248. image: {
  47249. source: "./media/characters/ramita/front.svg",
  47250. extra: 1402/1232,
  47251. bottom: 62/1464
  47252. }
  47253. },
  47254. dressed: {
  47255. height: math.unit(3 + 6/12, "feet"),
  47256. weight: math.unit(60, "lb"),
  47257. name: "Dressed",
  47258. image: {
  47259. source: "./media/characters/ramita/dressed.svg",
  47260. extra: 1534/1249,
  47261. bottom: 50/1584
  47262. }
  47263. },
  47264. },
  47265. [
  47266. {
  47267. name: "Normal",
  47268. height: math.unit(3 + 6/12, "feet"),
  47269. default: true
  47270. },
  47271. ]
  47272. ))
  47273. characterMakers.push(() => makeCharacter(
  47274. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47275. {
  47276. front: {
  47277. height: math.unit(8, "feet"),
  47278. name: "Front",
  47279. image: {
  47280. source: "./media/characters/ark/front.svg",
  47281. extra: 772/693,
  47282. bottom: 45/817
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Normal",
  47289. height: math.unit(8, "feet"),
  47290. default: true
  47291. },
  47292. ]
  47293. ))
  47294. characterMakers.push(() => makeCharacter(
  47295. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47296. {
  47297. front: {
  47298. height: math.unit(6, "feet"),
  47299. weight: math.unit(250, "lb"),
  47300. volume: math.unit(5/8, "gallons"),
  47301. name: "Front",
  47302. image: {
  47303. source: "./media/characters/ludwig-horn/front.svg",
  47304. extra: 1782/1635,
  47305. bottom: 96/1878
  47306. }
  47307. },
  47308. back: {
  47309. height: math.unit(6, "feet"),
  47310. weight: math.unit(250, "lb"),
  47311. volume: math.unit(5/8, "gallons"),
  47312. name: "Back",
  47313. image: {
  47314. source: "./media/characters/ludwig-horn/back.svg",
  47315. extra: 1874/1729,
  47316. bottom: 27/1901
  47317. }
  47318. },
  47319. dick: {
  47320. height: math.unit(1.05, "feet"),
  47321. weight: math.unit(15, "lb"),
  47322. volume: math.unit(5/8, "gallons"),
  47323. name: "Dick",
  47324. image: {
  47325. source: "./media/characters/ludwig-horn/dick.svg"
  47326. }
  47327. },
  47328. },
  47329. [
  47330. {
  47331. name: "Small",
  47332. height: math.unit(6, "feet")
  47333. },
  47334. {
  47335. name: "Typical",
  47336. height: math.unit(12, "feet"),
  47337. default: true
  47338. },
  47339. {
  47340. name: "Building",
  47341. height: math.unit(80, "feet")
  47342. },
  47343. {
  47344. name: "Town",
  47345. height: math.unit(800, "feet")
  47346. },
  47347. {
  47348. name: "Kingdom",
  47349. height: math.unit(80000, "feet")
  47350. },
  47351. {
  47352. name: "Planet",
  47353. height: math.unit(8000000, "feet")
  47354. },
  47355. {
  47356. name: "Universe",
  47357. height: math.unit(8000000000, "feet")
  47358. },
  47359. {
  47360. name: "Transcended",
  47361. height: math.unit(8e27, "feet")
  47362. },
  47363. ]
  47364. ))
  47365. characterMakers.push(() => makeCharacter(
  47366. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47367. {
  47368. front: {
  47369. height: math.unit(5, "feet"),
  47370. weight: math.unit(50, "kg"),
  47371. name: "Front",
  47372. image: {
  47373. source: "./media/characters/biot-avery/front.svg",
  47374. extra: 1295/1232,
  47375. bottom: 86/1381
  47376. }
  47377. },
  47378. },
  47379. [
  47380. {
  47381. name: "Normal",
  47382. height: math.unit(5, "feet"),
  47383. default: true
  47384. },
  47385. ]
  47386. ))
  47387. characterMakers.push(() => makeCharacter(
  47388. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47389. {
  47390. front: {
  47391. height: math.unit(6, "feet"),
  47392. name: "Front",
  47393. image: {
  47394. source: "./media/characters/kitsune-kiro/front.svg",
  47395. extra: 1270/1158,
  47396. bottom: 42/1312
  47397. }
  47398. },
  47399. frontAlt: {
  47400. height: math.unit(6, "feet"),
  47401. name: "Front-alt",
  47402. image: {
  47403. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47404. extra: 1130/1081,
  47405. bottom: 36/1166
  47406. }
  47407. },
  47408. },
  47409. [
  47410. {
  47411. name: "Smol",
  47412. height: math.unit(3, "feet")
  47413. },
  47414. {
  47415. name: "Normal",
  47416. height: math.unit(6, "feet"),
  47417. default: true
  47418. },
  47419. ]
  47420. ))
  47421. characterMakers.push(() => makeCharacter(
  47422. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47423. {
  47424. front: {
  47425. height: math.unit(6, "feet"),
  47426. weight: math.unit(125, "lb"),
  47427. name: "Front",
  47428. image: {
  47429. source: "./media/characters/jack-thatcher/front.svg",
  47430. extra: 1474/1370,
  47431. bottom: 26/1500
  47432. }
  47433. },
  47434. back: {
  47435. height: math.unit(6, "feet"),
  47436. weight: math.unit(125, "lb"),
  47437. name: "Back",
  47438. image: {
  47439. source: "./media/characters/jack-thatcher/back.svg",
  47440. extra: 1489/1384,
  47441. bottom: 18/1507
  47442. }
  47443. },
  47444. },
  47445. [
  47446. {
  47447. name: "Normal",
  47448. height: math.unit(6, "feet"),
  47449. default: true
  47450. },
  47451. {
  47452. name: "Macro",
  47453. height: math.unit(75, "feet")
  47454. },
  47455. {
  47456. name: "Macro-er",
  47457. height: math.unit(250, "feet")
  47458. },
  47459. ]
  47460. ))
  47461. characterMakers.push(() => makeCharacter(
  47462. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47463. {
  47464. front: {
  47465. height: math.unit(7, "feet"),
  47466. weight: math.unit(110, "kg"),
  47467. name: "Front",
  47468. image: {
  47469. source: "./media/characters/max-hyper/front.svg",
  47470. extra: 1969/1881,
  47471. bottom: 49/2018
  47472. }
  47473. },
  47474. },
  47475. [
  47476. {
  47477. name: "Normal",
  47478. height: math.unit(7, "feet"),
  47479. default: true
  47480. },
  47481. ]
  47482. ))
  47483. characterMakers.push(() => makeCharacter(
  47484. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47485. {
  47486. front: {
  47487. height: math.unit(5 + 5/12, "feet"),
  47488. weight: math.unit(160, "lb"),
  47489. name: "Front",
  47490. image: {
  47491. source: "./media/characters/spook/front.svg",
  47492. extra: 794/791,
  47493. bottom: 54/848
  47494. }
  47495. },
  47496. back: {
  47497. height: math.unit(5 + 5/12, "feet"),
  47498. weight: math.unit(160, "lb"),
  47499. name: "Back",
  47500. image: {
  47501. source: "./media/characters/spook/back.svg",
  47502. extra: 812/798,
  47503. bottom: 32/844
  47504. }
  47505. },
  47506. },
  47507. [
  47508. {
  47509. name: "Normal",
  47510. height: math.unit(5 + 5/12, "feet"),
  47511. default: true
  47512. },
  47513. ]
  47514. ))
  47515. characterMakers.push(() => makeCharacter(
  47516. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47517. {
  47518. front: {
  47519. height: math.unit(18, "feet"),
  47520. name: "Front",
  47521. image: {
  47522. source: "./media/characters/xeaduulix/front.svg",
  47523. extra: 1380/1166,
  47524. bottom: 110/1490
  47525. }
  47526. },
  47527. back: {
  47528. height: math.unit(18, "feet"),
  47529. name: "Back",
  47530. image: {
  47531. source: "./media/characters/xeaduulix/back.svg",
  47532. extra: 1592/1170,
  47533. bottom: 128/1720
  47534. }
  47535. },
  47536. frontNsfw: {
  47537. height: math.unit(18, "feet"),
  47538. name: "Front (NSFW)",
  47539. image: {
  47540. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47541. extra: 1380/1166,
  47542. bottom: 110/1490
  47543. }
  47544. },
  47545. backNsfw: {
  47546. height: math.unit(18, "feet"),
  47547. name: "Back (NSFW)",
  47548. image: {
  47549. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47550. extra: 1592/1170,
  47551. bottom: 128/1720
  47552. }
  47553. },
  47554. },
  47555. [
  47556. {
  47557. name: "Normal",
  47558. height: math.unit(18, "feet"),
  47559. default: true
  47560. },
  47561. ]
  47562. ))
  47563. characterMakers.push(() => makeCharacter(
  47564. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47565. {
  47566. spreadWings: {
  47567. height: math.unit(20, "feet"),
  47568. name: "Spread Wings",
  47569. image: {
  47570. source: "./media/characters/fledge/spread-wings.svg",
  47571. extra: 693/635,
  47572. bottom: 26/719
  47573. }
  47574. },
  47575. front: {
  47576. height: math.unit(20, "feet"),
  47577. name: "Front",
  47578. image: {
  47579. source: "./media/characters/fledge/front.svg",
  47580. extra: 684/637,
  47581. bottom: 18/702
  47582. }
  47583. },
  47584. frontAlt: {
  47585. height: math.unit(20, "feet"),
  47586. name: "Front (Alt)",
  47587. image: {
  47588. source: "./media/characters/fledge/front-alt.svg",
  47589. extra: 708/664,
  47590. bottom: 13/721
  47591. }
  47592. },
  47593. back: {
  47594. height: math.unit(20, "feet"),
  47595. name: "Back",
  47596. image: {
  47597. source: "./media/characters/fledge/back.svg",
  47598. extra: 718/634,
  47599. bottom: 22/740
  47600. }
  47601. },
  47602. head: {
  47603. height: math.unit(5.55, "feet"),
  47604. name: "Head",
  47605. image: {
  47606. source: "./media/characters/fledge/head.svg"
  47607. }
  47608. },
  47609. headAlt: {
  47610. height: math.unit(5.1, "feet"),
  47611. name: "Head (Alt)",
  47612. image: {
  47613. source: "./media/characters/fledge/head-alt.svg"
  47614. }
  47615. },
  47616. },
  47617. [
  47618. {
  47619. name: "Small",
  47620. height: math.unit(6 + 2/12, "feet")
  47621. },
  47622. {
  47623. name: "Big",
  47624. height: math.unit(20, "feet"),
  47625. default: true
  47626. },
  47627. {
  47628. name: "Giant",
  47629. height: math.unit(100, "feet")
  47630. },
  47631. {
  47632. name: "Macro",
  47633. height: math.unit(200, "feet")
  47634. },
  47635. ]
  47636. ))
  47637. characterMakers.push(() => makeCharacter(
  47638. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47639. {
  47640. front: {
  47641. height: math.unit(1, "meter"),
  47642. name: "Front",
  47643. image: {
  47644. source: "./media/characters/atlas-morenai/front.svg",
  47645. extra: 1275/1043,
  47646. bottom: 19/1294
  47647. }
  47648. },
  47649. back: {
  47650. height: math.unit(1, "meter"),
  47651. name: "Back",
  47652. image: {
  47653. source: "./media/characters/atlas-morenai/back.svg",
  47654. extra: 1141/1001,
  47655. bottom: 25/1166
  47656. }
  47657. },
  47658. },
  47659. [
  47660. {
  47661. name: "Normal",
  47662. height: math.unit(1, "meter"),
  47663. default: true
  47664. },
  47665. {
  47666. name: "Magic-Infused",
  47667. height: math.unit(5, "meters")
  47668. },
  47669. ]
  47670. ))
  47671. characterMakers.push(() => makeCharacter(
  47672. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47673. {
  47674. front: {
  47675. height: math.unit(5, "meters"),
  47676. name: "Front",
  47677. image: {
  47678. source: "./media/characters/cintia/front.svg",
  47679. extra: 1312/1228,
  47680. bottom: 38/1350
  47681. }
  47682. },
  47683. back: {
  47684. height: math.unit(5, "meters"),
  47685. name: "Back",
  47686. image: {
  47687. source: "./media/characters/cintia/back.svg",
  47688. extra: 1260/1166,
  47689. bottom: 98/1358
  47690. }
  47691. },
  47692. frontDick: {
  47693. height: math.unit(5, "meters"),
  47694. name: "Front (Dick)",
  47695. image: {
  47696. source: "./media/characters/cintia/front-dick.svg",
  47697. extra: 1312/1228,
  47698. bottom: 38/1350
  47699. }
  47700. },
  47701. backDick: {
  47702. height: math.unit(5, "meters"),
  47703. name: "Back (Dick)",
  47704. image: {
  47705. source: "./media/characters/cintia/back-dick.svg",
  47706. extra: 1260/1166,
  47707. bottom: 98/1358
  47708. }
  47709. },
  47710. bust: {
  47711. height: math.unit(1.97, "meters"),
  47712. name: "Bust",
  47713. image: {
  47714. source: "./media/characters/cintia/bust.svg",
  47715. extra: 617/565,
  47716. bottom: 0/617
  47717. }
  47718. },
  47719. },
  47720. [
  47721. {
  47722. name: "Normal",
  47723. height: math.unit(5, "meters"),
  47724. default: true
  47725. },
  47726. ]
  47727. ))
  47728. characterMakers.push(() => makeCharacter(
  47729. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47730. {
  47731. side: {
  47732. height: math.unit(100, "feet"),
  47733. name: "Side",
  47734. image: {
  47735. source: "./media/characters/denora/side.svg",
  47736. extra: 875/803,
  47737. bottom: 9/884
  47738. }
  47739. },
  47740. },
  47741. [
  47742. {
  47743. name: "Standard",
  47744. height: math.unit(100, "feet"),
  47745. default: true
  47746. },
  47747. {
  47748. name: "Grand",
  47749. height: math.unit(1000, "feet")
  47750. },
  47751. {
  47752. name: "Conquering",
  47753. height: math.unit(10000, "feet")
  47754. },
  47755. ]
  47756. ))
  47757. characterMakers.push(() => makeCharacter(
  47758. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47759. {
  47760. dressed: {
  47761. height: math.unit(8 + 5/12, "feet"),
  47762. weight: math.unit(700, "lb"),
  47763. name: "Dressed",
  47764. image: {
  47765. source: "./media/characters/kiva/dressed.svg",
  47766. extra: 1102/1055,
  47767. bottom: 60/1162
  47768. }
  47769. },
  47770. nude: {
  47771. height: math.unit(8 + 5/12, "feet"),
  47772. weight: math.unit(700, "lb"),
  47773. name: "Nude",
  47774. image: {
  47775. source: "./media/characters/kiva/nude.svg",
  47776. extra: 1102/1055,
  47777. bottom: 60/1162
  47778. }
  47779. },
  47780. },
  47781. [
  47782. {
  47783. name: "Base Height",
  47784. height: math.unit(8 + 5/12, "feet"),
  47785. default: true
  47786. },
  47787. {
  47788. name: "Macro",
  47789. height: math.unit(100, "feet")
  47790. },
  47791. {
  47792. name: "Max",
  47793. height: math.unit(3280, "feet")
  47794. },
  47795. ]
  47796. ))
  47797. characterMakers.push(() => makeCharacter(
  47798. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47799. {
  47800. front: {
  47801. height: math.unit(6 + 8/12, "feet"),
  47802. weight: math.unit(250, "lb"),
  47803. name: "Front",
  47804. image: {
  47805. source: "./media/characters/ztragon/front.svg",
  47806. extra: 1825/1684,
  47807. bottom: 98/1923
  47808. }
  47809. },
  47810. },
  47811. [
  47812. {
  47813. name: "Normal",
  47814. height: math.unit(6 + 8/12, "feet"),
  47815. default: true
  47816. },
  47817. {
  47818. name: "Macro",
  47819. height: math.unit(80, "feet")
  47820. },
  47821. ]
  47822. ))
  47823. characterMakers.push(() => makeCharacter(
  47824. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47825. {
  47826. front: {
  47827. height: math.unit(10.4, "feet"),
  47828. weight: math.unit(2, "tons"),
  47829. name: "Front",
  47830. image: {
  47831. source: "./media/characters/yesenia/front.svg",
  47832. extra: 1479/1474,
  47833. bottom: 233/1712
  47834. }
  47835. },
  47836. },
  47837. [
  47838. {
  47839. name: "Normal",
  47840. height: math.unit(10.4, "feet"),
  47841. default: true
  47842. },
  47843. ]
  47844. ))
  47845. characterMakers.push(() => makeCharacter(
  47846. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47847. {
  47848. normal: {
  47849. height: math.unit(6 + 1/12, "feet"),
  47850. weight: math.unit(180, "lb"),
  47851. name: "Normal",
  47852. image: {
  47853. source: "./media/characters/leanne-lycheborne/normal.svg",
  47854. extra: 1748/1660,
  47855. bottom: 98/1846
  47856. }
  47857. },
  47858. were: {
  47859. height: math.unit(12, "feet"),
  47860. weight: math.unit(1600, "lb"),
  47861. name: "Were",
  47862. image: {
  47863. source: "./media/characters/leanne-lycheborne/were.svg",
  47864. extra: 1485/1432,
  47865. bottom: 66/1551
  47866. }
  47867. },
  47868. },
  47869. [
  47870. {
  47871. name: "Normal",
  47872. height: math.unit(6 + 1/12, "feet"),
  47873. default: true
  47874. },
  47875. ]
  47876. ))
  47877. characterMakers.push(() => makeCharacter(
  47878. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47879. {
  47880. side: {
  47881. height: math.unit(13, "feet"),
  47882. name: "Side",
  47883. image: {
  47884. source: "./media/characters/kira-tyler/side.svg",
  47885. extra: 693/393,
  47886. bottom: 58/751
  47887. }
  47888. },
  47889. },
  47890. [
  47891. {
  47892. name: "Normal",
  47893. height: math.unit(13, "feet"),
  47894. default: true
  47895. },
  47896. ]
  47897. ))
  47898. characterMakers.push(() => makeCharacter(
  47899. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47900. {
  47901. front: {
  47902. height: math.unit(10.3, "feet"),
  47903. weight: math.unit(150, "lb"),
  47904. name: "Front",
  47905. image: {
  47906. source: "./media/characters/blaze/front.svg",
  47907. extra: 1378/1286,
  47908. bottom: 172/1550
  47909. }
  47910. },
  47911. },
  47912. [
  47913. {
  47914. name: "Normal",
  47915. height: math.unit(10.3, "feet"),
  47916. default: true
  47917. },
  47918. ]
  47919. ))
  47920. characterMakers.push(() => makeCharacter(
  47921. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47922. {
  47923. side: {
  47924. height: math.unit(2, "meters"),
  47925. weight: math.unit(400, "kg"),
  47926. name: "Side",
  47927. image: {
  47928. source: "./media/characters/anu/side.svg",
  47929. extra: 506/394,
  47930. bottom: 18/524
  47931. }
  47932. },
  47933. },
  47934. [
  47935. {
  47936. name: "Humanoid",
  47937. height: math.unit(2, "meters")
  47938. },
  47939. {
  47940. name: "Normal",
  47941. height: math.unit(5, "meters"),
  47942. default: true
  47943. },
  47944. ]
  47945. ))
  47946. characterMakers.push(() => makeCharacter(
  47947. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47948. {
  47949. front: {
  47950. height: math.unit(5 + 5/12, "feet"),
  47951. weight: math.unit(170, "lb"),
  47952. name: "Front",
  47953. image: {
  47954. source: "./media/characters/synx-the-lynx/front.svg",
  47955. extra: 1893/1745,
  47956. bottom: 17/1910
  47957. }
  47958. },
  47959. side: {
  47960. height: math.unit(5 + 5/12, "feet"),
  47961. weight: math.unit(170, "lb"),
  47962. name: "Side",
  47963. image: {
  47964. source: "./media/characters/synx-the-lynx/side.svg",
  47965. extra: 1884/1740,
  47966. bottom: 39/1923
  47967. }
  47968. },
  47969. back: {
  47970. height: math.unit(5 + 5/12, "feet"),
  47971. weight: math.unit(170, "lb"),
  47972. name: "Back",
  47973. image: {
  47974. source: "./media/characters/synx-the-lynx/back.svg",
  47975. extra: 1903/1755,
  47976. bottom: 14/1917
  47977. }
  47978. },
  47979. },
  47980. [
  47981. {
  47982. name: "Normal",
  47983. height: math.unit(5 + 5/12, "feet"),
  47984. default: true
  47985. },
  47986. ]
  47987. ))
  47988. characterMakers.push(() => makeCharacter(
  47989. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47990. {
  47991. back: {
  47992. height: math.unit(15, "feet"),
  47993. name: "Back",
  47994. image: {
  47995. source: "./media/characters/nadezda-fex/back.svg",
  47996. extra: 1695/1481,
  47997. bottom: 25/1720
  47998. }
  47999. },
  48000. },
  48001. [
  48002. {
  48003. name: "Normal",
  48004. height: math.unit(15, "feet"),
  48005. default: true
  48006. },
  48007. {
  48008. name: "Macro",
  48009. height: math.unit(2.5, "miles")
  48010. },
  48011. {
  48012. name: "Goddess",
  48013. height: math.unit(2, "multiverses")
  48014. },
  48015. ]
  48016. ))
  48017. characterMakers.push(() => makeCharacter(
  48018. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48019. {
  48020. front: {
  48021. height: math.unit(216, "cm"),
  48022. name: "Front",
  48023. image: {
  48024. source: "./media/characters/lev/front.svg",
  48025. extra: 1728/1670,
  48026. bottom: 82/1810
  48027. }
  48028. },
  48029. back: {
  48030. height: math.unit(216, "cm"),
  48031. name: "Back",
  48032. image: {
  48033. source: "./media/characters/lev/back.svg",
  48034. extra: 1738/1675,
  48035. bottom: 24/1762
  48036. }
  48037. },
  48038. dressed: {
  48039. height: math.unit(216, "cm"),
  48040. name: "Dressed",
  48041. image: {
  48042. source: "./media/characters/lev/dressed.svg",
  48043. extra: 1397/1351,
  48044. bottom: 73/1470
  48045. }
  48046. },
  48047. head: {
  48048. height: math.unit(0.51, "meter"),
  48049. name: "Head",
  48050. image: {
  48051. source: "./media/characters/lev/head.svg"
  48052. }
  48053. },
  48054. },
  48055. [
  48056. {
  48057. name: "Normal",
  48058. height: math.unit(216, "cm"),
  48059. default: true
  48060. },
  48061. {
  48062. name: "Relatively Macro",
  48063. height: math.unit(80, "meters")
  48064. },
  48065. {
  48066. name: "Megamacro",
  48067. height: math.unit(21600, "meters")
  48068. },
  48069. {
  48070. name: "Megamacro+",
  48071. height: math.unit(64800, "meters")
  48072. },
  48073. ]
  48074. ))
  48075. characterMakers.push(() => makeCharacter(
  48076. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48077. {
  48078. front: {
  48079. height: math.unit(2, "meters"),
  48080. weight: math.unit(80, "kg"),
  48081. name: "Front",
  48082. image: {
  48083. source: "./media/characters/moka/front.svg",
  48084. extra: 1337/1255,
  48085. bottom: 58/1395
  48086. }
  48087. },
  48088. },
  48089. [
  48090. {
  48091. name: "Micro",
  48092. height: math.unit(15, "cm")
  48093. },
  48094. {
  48095. name: "Normal",
  48096. height: math.unit(2, "meters"),
  48097. default: true
  48098. },
  48099. {
  48100. name: "Macro",
  48101. height: math.unit(20, "meters"),
  48102. },
  48103. ]
  48104. ))
  48105. characterMakers.push(() => makeCharacter(
  48106. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48107. {
  48108. front: {
  48109. height: math.unit(9, "feet"),
  48110. weight: math.unit(240, "lb"),
  48111. name: "Front",
  48112. image: {
  48113. source: "./media/characters/kuzco/front.svg",
  48114. extra: 1593/1487,
  48115. bottom: 32/1625
  48116. }
  48117. },
  48118. side: {
  48119. height: math.unit(9, "feet"),
  48120. weight: math.unit(240, "lb"),
  48121. name: "Side",
  48122. image: {
  48123. source: "./media/characters/kuzco/side.svg",
  48124. extra: 1575/1485,
  48125. bottom: 30/1605
  48126. }
  48127. },
  48128. back: {
  48129. height: math.unit(9, "feet"),
  48130. weight: math.unit(240, "lb"),
  48131. name: "Back",
  48132. image: {
  48133. source: "./media/characters/kuzco/back.svg",
  48134. extra: 1603/1514,
  48135. bottom: 14/1617
  48136. }
  48137. },
  48138. },
  48139. [
  48140. {
  48141. name: "Normal",
  48142. height: math.unit(9, "feet"),
  48143. default: true
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48149. {
  48150. side: {
  48151. height: math.unit(2, "meters"),
  48152. weight: math.unit(300, "kg"),
  48153. name: "Side",
  48154. image: {
  48155. source: "./media/characters/ceruleus/side.svg",
  48156. extra: 1068/974,
  48157. bottom: 126/1194
  48158. }
  48159. },
  48160. maw: {
  48161. height: math.unit(0.8125, "meter"),
  48162. name: "Maw",
  48163. image: {
  48164. source: "./media/characters/ceruleus/maw.svg"
  48165. }
  48166. },
  48167. },
  48168. [
  48169. {
  48170. name: "Normal",
  48171. height: math.unit(16, "meters"),
  48172. default: true
  48173. },
  48174. ]
  48175. ))
  48176. characterMakers.push(() => makeCharacter(
  48177. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48178. {
  48179. front: {
  48180. height: math.unit(9, "feet"),
  48181. weight: math.unit(500, "kg"),
  48182. name: "Front",
  48183. image: {
  48184. source: "./media/characters/acouya/front.svg",
  48185. extra: 1660/1473,
  48186. bottom: 28/1688
  48187. }
  48188. },
  48189. },
  48190. [
  48191. {
  48192. name: "Normal",
  48193. height: math.unit(9, "feet"),
  48194. default: true
  48195. },
  48196. ]
  48197. ))
  48198. characterMakers.push(() => makeCharacter(
  48199. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48200. {
  48201. front: {
  48202. height: math.unit(5 + 6/12, "feet"),
  48203. weight: math.unit(195, "lb"),
  48204. name: "Front",
  48205. image: {
  48206. source: "./media/characters/vant/front.svg",
  48207. extra: 1396/1320,
  48208. bottom: 20/1416
  48209. }
  48210. },
  48211. back: {
  48212. height: math.unit(5 + 6/12, "feet"),
  48213. weight: math.unit(195, "lb"),
  48214. name: "Back",
  48215. image: {
  48216. source: "./media/characters/vant/back.svg",
  48217. extra: 1396/1320,
  48218. bottom: 20/1416
  48219. }
  48220. },
  48221. maw: {
  48222. height: math.unit(0.75, "feet"),
  48223. name: "Maw",
  48224. image: {
  48225. source: "./media/characters/vant/maw.svg"
  48226. }
  48227. },
  48228. paw: {
  48229. height: math.unit(1.07, "feet"),
  48230. name: "Paw",
  48231. image: {
  48232. source: "./media/characters/vant/paw.svg"
  48233. }
  48234. },
  48235. },
  48236. [
  48237. {
  48238. name: "Micro",
  48239. height: math.unit(0.25, "inches")
  48240. },
  48241. {
  48242. name: "Normal",
  48243. height: math.unit(5 + 6/12, "feet"),
  48244. default: true
  48245. },
  48246. {
  48247. name: "Macro",
  48248. height: math.unit(75, "feet")
  48249. },
  48250. ]
  48251. ))
  48252. characterMakers.push(() => makeCharacter(
  48253. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48254. {
  48255. front: {
  48256. height: math.unit(30, "meters"),
  48257. weight: math.unit(363, "tons"),
  48258. name: "Front",
  48259. image: {
  48260. source: "./media/characters/ahra/front.svg",
  48261. extra: 1914/1814,
  48262. bottom: 46/1960
  48263. }
  48264. },
  48265. },
  48266. [
  48267. {
  48268. name: "Macro",
  48269. height: math.unit(30, "meters"),
  48270. default: true
  48271. },
  48272. ]
  48273. ))
  48274. characterMakers.push(() => makeCharacter(
  48275. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48276. {
  48277. undressed: {
  48278. height: math.unit(2, "m"),
  48279. weight: math.unit(250, "kg"),
  48280. name: "Undressed",
  48281. image: {
  48282. source: "./media/characters/coriander/undressed.svg",
  48283. extra: 1757/1606,
  48284. bottom: 107/1864
  48285. }
  48286. },
  48287. dressed: {
  48288. height: math.unit(2, "m"),
  48289. weight: math.unit(250, "kg"),
  48290. name: "Dressed",
  48291. image: {
  48292. source: "./media/characters/coriander/dressed.svg",
  48293. extra: 1757/1606,
  48294. bottom: 107/1864
  48295. }
  48296. },
  48297. },
  48298. [
  48299. {
  48300. name: "Normal",
  48301. height: math.unit(4, "meters"),
  48302. default: true
  48303. },
  48304. {
  48305. name: "XL",
  48306. height: math.unit(6, "meters")
  48307. },
  48308. {
  48309. name: "XXL",
  48310. height: math.unit(8, "meters")
  48311. },
  48312. ]
  48313. ))
  48314. characterMakers.push(() => makeCharacter(
  48315. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48316. {
  48317. front: {
  48318. height: math.unit(6, "feet"),
  48319. name: "Front",
  48320. image: {
  48321. source: "./media/characters/syrinx/front.svg",
  48322. extra: 1557/1259,
  48323. bottom: 171/1728
  48324. }
  48325. },
  48326. },
  48327. [
  48328. {
  48329. name: "Normal",
  48330. height: math.unit(6 + 3/12, "feet"),
  48331. default: true
  48332. },
  48333. ]
  48334. ))
  48335. characterMakers.push(() => makeCharacter(
  48336. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48337. {
  48338. front: {
  48339. height: math.unit(11 + 6/12, "feet"),
  48340. weight: math.unit(1.5, "tons"),
  48341. name: "Front",
  48342. image: {
  48343. source: "./media/characters/bor/front.svg",
  48344. extra: 1189/1109,
  48345. bottom: 170/1359
  48346. }
  48347. },
  48348. },
  48349. [
  48350. {
  48351. name: "Normal",
  48352. height: math.unit(11 + 6/12, "feet"),
  48353. default: true
  48354. },
  48355. {
  48356. name: "Macro",
  48357. height: math.unit(32 + 9/12, "feet")
  48358. },
  48359. ]
  48360. ))
  48361. characterMakers.push(() => makeCharacter(
  48362. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48363. {
  48364. anthro: {
  48365. height: math.unit(9, "feet"),
  48366. weight: math.unit(2076, "lb"),
  48367. name: "Anthro",
  48368. image: {
  48369. source: "./media/characters/abacus/anthro.svg",
  48370. extra: 1540/1494,
  48371. bottom: 233/1773
  48372. }
  48373. },
  48374. pigeon: {
  48375. height: math.unit(1, "feet"),
  48376. name: "Pigeon",
  48377. image: {
  48378. source: "./media/characters/abacus/pigeon.svg",
  48379. extra: 528/525,
  48380. bottom: 46/574
  48381. }
  48382. },
  48383. },
  48384. [
  48385. {
  48386. name: "Normal",
  48387. height: math.unit(9, "feet"),
  48388. default: true
  48389. },
  48390. ]
  48391. ))
  48392. characterMakers.push(() => makeCharacter(
  48393. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48394. {
  48395. side: {
  48396. height: math.unit(6, "feet"),
  48397. name: "Side",
  48398. image: {
  48399. source: "./media/characters/delkhan/side.svg",
  48400. extra: 1884/1786,
  48401. bottom: 308/2192
  48402. }
  48403. },
  48404. head: {
  48405. height: math.unit(3.38, "feet"),
  48406. name: "Head",
  48407. image: {
  48408. source: "./media/characters/delkhan/head.svg"
  48409. }
  48410. },
  48411. },
  48412. [
  48413. {
  48414. name: "Normal",
  48415. height: math.unit(72, "feet"),
  48416. default: true
  48417. },
  48418. {
  48419. name: "Giant",
  48420. height: math.unit(172, "feet")
  48421. },
  48422. ]
  48423. ))
  48424. characterMakers.push(() => makeCharacter(
  48425. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48426. {
  48427. standing: {
  48428. height: math.unit(6, "feet"),
  48429. name: "Standing",
  48430. image: {
  48431. source: "./media/characters/euchidat/standing.svg",
  48432. extra: 1612/1553,
  48433. bottom: 116/1728
  48434. }
  48435. },
  48436. leaning: {
  48437. height: math.unit(6, "feet"),
  48438. name: "Leaning",
  48439. image: {
  48440. source: "./media/characters/euchidat/leaning.svg",
  48441. extra: 1719/1674,
  48442. bottom: 27/1746
  48443. }
  48444. },
  48445. },
  48446. [
  48447. {
  48448. name: "Normal",
  48449. height: math.unit(175, "feet"),
  48450. default: true
  48451. },
  48452. {
  48453. name: "Megamacro",
  48454. height: math.unit(190, "miles")
  48455. },
  48456. {
  48457. name: "Gigamacro",
  48458. height: math.unit(190000, "miles")
  48459. },
  48460. ]
  48461. ))
  48462. characterMakers.push(() => makeCharacter(
  48463. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48464. {
  48465. front: {
  48466. height: math.unit(6, "feet"),
  48467. weight: math.unit(150, "lb"),
  48468. name: "Front",
  48469. image: {
  48470. source: "./media/characters/rebecca-stack/front.svg",
  48471. extra: 1256/1201,
  48472. bottom: 18/1274
  48473. }
  48474. },
  48475. },
  48476. [
  48477. {
  48478. name: "Normal",
  48479. height: math.unit(5 + 8/12, "feet"),
  48480. default: true
  48481. },
  48482. {
  48483. name: "Demolitionist",
  48484. height: math.unit(200, "feet")
  48485. },
  48486. {
  48487. name: "Out of Control",
  48488. height: math.unit(2, "miles")
  48489. },
  48490. {
  48491. name: "Giga",
  48492. height: math.unit(7200, "miles")
  48493. },
  48494. ]
  48495. ))
  48496. characterMakers.push(() => makeCharacter(
  48497. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48498. {
  48499. front: {
  48500. height: math.unit(6, "feet"),
  48501. weight: math.unit(150, "lb"),
  48502. name: "Front",
  48503. image: {
  48504. source: "./media/characters/jenny-cartwright/front.svg",
  48505. extra: 1384/1376,
  48506. bottom: 58/1442
  48507. }
  48508. },
  48509. },
  48510. [
  48511. {
  48512. name: "Normal",
  48513. height: math.unit(6 + 7/12, "feet"),
  48514. default: true
  48515. },
  48516. {
  48517. name: "Librarian",
  48518. height: math.unit(55, "feet")
  48519. },
  48520. {
  48521. name: "Sightseer",
  48522. height: math.unit(50, "miles")
  48523. },
  48524. {
  48525. name: "Giga",
  48526. height: math.unit(30000, "miles")
  48527. },
  48528. ]
  48529. ))
  48530. characterMakers.push(() => makeCharacter(
  48531. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48532. {
  48533. nude: {
  48534. height: math.unit(8, "feet"),
  48535. weight: math.unit(225, "lb"),
  48536. name: "Nude",
  48537. image: {
  48538. source: "./media/characters/marvy/nude.svg",
  48539. extra: 1900/1683,
  48540. bottom: 89/1989
  48541. }
  48542. },
  48543. dressed: {
  48544. height: math.unit(8, "feet"),
  48545. weight: math.unit(225, "lb"),
  48546. name: "Dressed",
  48547. image: {
  48548. source: "./media/characters/marvy/dressed.svg",
  48549. extra: 1900/1683,
  48550. bottom: 89/1989
  48551. }
  48552. },
  48553. head: {
  48554. height: math.unit(2.85, "feet"),
  48555. name: "Head",
  48556. image: {
  48557. source: "./media/characters/marvy/head.svg"
  48558. }
  48559. },
  48560. },
  48561. [
  48562. {
  48563. name: "Normal",
  48564. height: math.unit(8, "feet"),
  48565. default: true
  48566. },
  48567. ]
  48568. ))
  48569. characterMakers.push(() => makeCharacter(
  48570. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48571. {
  48572. front: {
  48573. height: math.unit(8, "feet"),
  48574. weight: math.unit(250, "lb"),
  48575. name: "Front",
  48576. image: {
  48577. source: "./media/characters/leah/front.svg",
  48578. extra: 1257/1149,
  48579. bottom: 109/1366
  48580. }
  48581. },
  48582. },
  48583. [
  48584. {
  48585. name: "Normal",
  48586. height: math.unit(8, "feet"),
  48587. default: true
  48588. },
  48589. {
  48590. name: "Minimacro",
  48591. height: math.unit(40, "feet")
  48592. },
  48593. {
  48594. name: "Macro",
  48595. height: math.unit(124, "feet")
  48596. },
  48597. {
  48598. name: "Megamacro",
  48599. height: math.unit(850, "feet")
  48600. },
  48601. ]
  48602. ))
  48603. characterMakers.push(() => makeCharacter(
  48604. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48605. {
  48606. side: {
  48607. height: math.unit(13 + 6/12, "feet"),
  48608. weight: math.unit(3200, "lb"),
  48609. name: "Side",
  48610. image: {
  48611. source: "./media/characters/alvir/side.svg",
  48612. extra: 896/589,
  48613. bottom: 26/922
  48614. }
  48615. },
  48616. },
  48617. [
  48618. {
  48619. name: "Normal",
  48620. height: math.unit(13 + 6/12, "feet"),
  48621. default: true
  48622. },
  48623. ]
  48624. ))
  48625. characterMakers.push(() => makeCharacter(
  48626. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48627. {
  48628. front: {
  48629. height: math.unit(5 + 4/12, "feet"),
  48630. weight: math.unit(236, "lb"),
  48631. name: "Front",
  48632. image: {
  48633. source: "./media/characters/zaina-khalil/front.svg",
  48634. extra: 1533/1485,
  48635. bottom: 94/1627
  48636. }
  48637. },
  48638. side: {
  48639. height: math.unit(5 + 4/12, "feet"),
  48640. weight: math.unit(236, "lb"),
  48641. name: "Side",
  48642. image: {
  48643. source: "./media/characters/zaina-khalil/side.svg",
  48644. extra: 1537/1498,
  48645. bottom: 66/1603
  48646. }
  48647. },
  48648. back: {
  48649. height: math.unit(5 + 4/12, "feet"),
  48650. weight: math.unit(236, "lb"),
  48651. name: "Back",
  48652. image: {
  48653. source: "./media/characters/zaina-khalil/back.svg",
  48654. extra: 1546/1494,
  48655. bottom: 89/1635
  48656. }
  48657. },
  48658. },
  48659. [
  48660. {
  48661. name: "Normal",
  48662. height: math.unit(5 + 4/12, "feet"),
  48663. default: true
  48664. },
  48665. ]
  48666. ))
  48667. characterMakers.push(() => makeCharacter(
  48668. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48669. {
  48670. side: {
  48671. height: math.unit(12, "feet"),
  48672. weight: math.unit(4000, "lb"),
  48673. name: "Side",
  48674. image: {
  48675. source: "./media/characters/terry/side.svg",
  48676. extra: 1518/1439,
  48677. bottom: 149/1667
  48678. }
  48679. },
  48680. },
  48681. [
  48682. {
  48683. name: "Normal",
  48684. height: math.unit(12, "feet"),
  48685. default: true
  48686. },
  48687. ]
  48688. ))
  48689. characterMakers.push(() => makeCharacter(
  48690. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48691. {
  48692. front: {
  48693. height: math.unit(12, "feet"),
  48694. weight: math.unit(1500, "lb"),
  48695. name: "Front",
  48696. image: {
  48697. source: "./media/characters/kahea/front.svg",
  48698. extra: 1722/1617,
  48699. bottom: 179/1901
  48700. }
  48701. },
  48702. },
  48703. [
  48704. {
  48705. name: "Normal",
  48706. height: math.unit(12, "feet"),
  48707. default: true
  48708. },
  48709. ]
  48710. ))
  48711. characterMakers.push(() => makeCharacter(
  48712. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48713. {
  48714. demonFront: {
  48715. height: math.unit(36, "feet"),
  48716. name: "Front",
  48717. image: {
  48718. source: "./media/characters/alex-xuria/demon-front.svg",
  48719. extra: 1705/1673,
  48720. bottom: 198/1903
  48721. },
  48722. form: "demon",
  48723. default: true
  48724. },
  48725. demonBack: {
  48726. height: math.unit(36, "feet"),
  48727. name: "Back",
  48728. image: {
  48729. source: "./media/characters/alex-xuria/demon-back.svg",
  48730. extra: 1725/1693,
  48731. bottom: 70/1795
  48732. },
  48733. form: "demon"
  48734. },
  48735. demonHead: {
  48736. height: math.unit(2.14, "meters"),
  48737. name: "Head",
  48738. image: {
  48739. source: "./media/characters/alex-xuria/demon-head.svg"
  48740. },
  48741. form: "demon"
  48742. },
  48743. demonHand: {
  48744. height: math.unit(1.61, "meters"),
  48745. name: "Hand",
  48746. image: {
  48747. source: "./media/characters/alex-xuria/demon-hand.svg"
  48748. },
  48749. form: "demon"
  48750. },
  48751. demonPaw: {
  48752. height: math.unit(1.35, "meters"),
  48753. name: "Paw",
  48754. image: {
  48755. source: "./media/characters/alex-xuria/demon-paw.svg"
  48756. },
  48757. form: "demon"
  48758. },
  48759. demonFoot: {
  48760. height: math.unit(2.2, "meters"),
  48761. name: "Foot",
  48762. image: {
  48763. source: "./media/characters/alex-xuria/demon-foot.svg"
  48764. },
  48765. form: "demon"
  48766. },
  48767. demonCock: {
  48768. height: math.unit(1.74, "meters"),
  48769. name: "Cock",
  48770. image: {
  48771. source: "./media/characters/alex-xuria/demon-cock.svg"
  48772. },
  48773. form: "demon"
  48774. },
  48775. demonTailClosed: {
  48776. height: math.unit(1.47, "meters"),
  48777. name: "Tail (Closed)",
  48778. image: {
  48779. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48780. },
  48781. form: "demon"
  48782. },
  48783. demonTailOpen: {
  48784. height: math.unit(2.85, "meters"),
  48785. name: "Tail (Open)",
  48786. image: {
  48787. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48788. },
  48789. form: "demon"
  48790. },
  48791. incubusFront: {
  48792. height: math.unit(12, "feet"),
  48793. name: "Front",
  48794. image: {
  48795. source: "./media/characters/alex-xuria/incubus-front.svg",
  48796. extra: 1754/1677,
  48797. bottom: 125/1879
  48798. },
  48799. form: "incubus",
  48800. default: true
  48801. },
  48802. incubusBack: {
  48803. height: math.unit(12, "feet"),
  48804. name: "Back",
  48805. image: {
  48806. source: "./media/characters/alex-xuria/incubus-back.svg",
  48807. extra: 1702/1647,
  48808. bottom: 30/1732
  48809. },
  48810. form: "incubus"
  48811. },
  48812. incubusHead: {
  48813. height: math.unit(3.45, "feet"),
  48814. name: "Head",
  48815. image: {
  48816. source: "./media/characters/alex-xuria/incubus-head.svg"
  48817. },
  48818. form: "incubus"
  48819. },
  48820. rabbitFront: {
  48821. height: math.unit(6, "feet"),
  48822. name: "Front",
  48823. image: {
  48824. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48825. extra: 1369/1349,
  48826. bottom: 45/1414
  48827. },
  48828. form: "rabbit",
  48829. default: true
  48830. },
  48831. rabbitSide: {
  48832. height: math.unit(6, "feet"),
  48833. name: "Side",
  48834. image: {
  48835. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48836. extra: 1370/1356,
  48837. bottom: 37/1407
  48838. },
  48839. form: "rabbit"
  48840. },
  48841. rabbitBack: {
  48842. height: math.unit(6, "feet"),
  48843. name: "Back",
  48844. image: {
  48845. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48846. extra: 1375/1358,
  48847. bottom: 43/1418
  48848. },
  48849. form: "rabbit"
  48850. },
  48851. },
  48852. [
  48853. {
  48854. name: "Normal",
  48855. height: math.unit(6, "feet"),
  48856. default: true,
  48857. form: "rabbit"
  48858. },
  48859. {
  48860. name: "Incubus",
  48861. height: math.unit(12, "feet"),
  48862. default: true,
  48863. form: "incubus"
  48864. },
  48865. {
  48866. name: "Demon",
  48867. height: math.unit(36, "feet"),
  48868. default: true,
  48869. form: "demon"
  48870. }
  48871. ],
  48872. {
  48873. "demon": {
  48874. name: "Demon",
  48875. default: true
  48876. },
  48877. "incubus": {
  48878. name: "Incubus",
  48879. },
  48880. "rabbit": {
  48881. name: "Rabbit"
  48882. }
  48883. }
  48884. ))
  48885. characterMakers.push(() => makeCharacter(
  48886. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48887. {
  48888. front: {
  48889. height: math.unit(7 + 5/12, "feet"),
  48890. weight: math.unit(510, "lb"),
  48891. name: "Front",
  48892. image: {
  48893. source: "./media/characters/syrup/front.svg",
  48894. extra: 932/916,
  48895. bottom: 26/958
  48896. }
  48897. },
  48898. },
  48899. [
  48900. {
  48901. name: "Normal",
  48902. height: math.unit(7 + 5/12, "feet"),
  48903. default: true
  48904. },
  48905. {
  48906. name: "Big",
  48907. height: math.unit(50, "feet")
  48908. },
  48909. {
  48910. name: "Macro",
  48911. height: math.unit(300, "feet")
  48912. },
  48913. {
  48914. name: "Megamacro",
  48915. height: math.unit(1, "mile")
  48916. },
  48917. ]
  48918. ))
  48919. characterMakers.push(() => makeCharacter(
  48920. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48921. {
  48922. front: {
  48923. height: math.unit(6 + 9/12, "feet"),
  48924. name: "Front",
  48925. image: {
  48926. source: "./media/characters/zeimne/front.svg",
  48927. extra: 1969/1806,
  48928. bottom: 53/2022
  48929. }
  48930. },
  48931. },
  48932. [
  48933. {
  48934. name: "Normal",
  48935. height: math.unit(6 + 9/12, "feet"),
  48936. default: true
  48937. },
  48938. {
  48939. name: "Giant",
  48940. height: math.unit(550, "feet")
  48941. },
  48942. {
  48943. name: "Mega",
  48944. height: math.unit(3, "miles")
  48945. },
  48946. {
  48947. name: "Giga",
  48948. height: math.unit(250, "miles")
  48949. },
  48950. {
  48951. name: "Tera",
  48952. height: math.unit(1, "AU")
  48953. },
  48954. ]
  48955. ))
  48956. characterMakers.push(() => makeCharacter(
  48957. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48958. {
  48959. front: {
  48960. height: math.unit(5 + 2/12, "feet"),
  48961. name: "Front",
  48962. image: {
  48963. source: "./media/characters/grar/front.svg",
  48964. extra: 1331/1119,
  48965. bottom: 60/1391
  48966. }
  48967. },
  48968. back: {
  48969. height: math.unit(5 + 2/12, "feet"),
  48970. name: "Back",
  48971. image: {
  48972. source: "./media/characters/grar/back.svg",
  48973. extra: 1385/1169,
  48974. bottom: 23/1408
  48975. }
  48976. },
  48977. },
  48978. [
  48979. {
  48980. name: "Normal",
  48981. height: math.unit(5 + 2/12, "feet"),
  48982. default: true
  48983. },
  48984. ]
  48985. ))
  48986. characterMakers.push(() => makeCharacter(
  48987. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48988. {
  48989. front: {
  48990. height: math.unit(13 + 7/12, "feet"),
  48991. weight: math.unit(2200, "lb"),
  48992. name: "Front",
  48993. image: {
  48994. source: "./media/characters/endraya/front.svg",
  48995. extra: 1289/1215,
  48996. bottom: 50/1339
  48997. }
  48998. },
  48999. nude: {
  49000. height: math.unit(13 + 7/12, "feet"),
  49001. weight: math.unit(2200, "lb"),
  49002. name: "Nude",
  49003. image: {
  49004. source: "./media/characters/endraya/nude.svg",
  49005. extra: 1247/1171,
  49006. bottom: 40/1287
  49007. }
  49008. },
  49009. head: {
  49010. height: math.unit(2.6, "feet"),
  49011. name: "Head",
  49012. image: {
  49013. source: "./media/characters/endraya/head.svg"
  49014. }
  49015. },
  49016. slit: {
  49017. height: math.unit(3.4, "feet"),
  49018. name: "Slit",
  49019. image: {
  49020. source: "./media/characters/endraya/slit.svg"
  49021. }
  49022. },
  49023. },
  49024. [
  49025. {
  49026. name: "Normal",
  49027. height: math.unit(13 + 7/12, "feet"),
  49028. default: true
  49029. },
  49030. {
  49031. name: "Macro",
  49032. height: math.unit(200, "feet")
  49033. },
  49034. ]
  49035. ))
  49036. characterMakers.push(() => makeCharacter(
  49037. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49038. {
  49039. front: {
  49040. height: math.unit(1.81, "meters"),
  49041. weight: math.unit(69, "kg"),
  49042. name: "Front",
  49043. image: {
  49044. source: "./media/characters/rodryana/front.svg",
  49045. extra: 2002/1921,
  49046. bottom: 53/2055
  49047. }
  49048. },
  49049. back: {
  49050. height: math.unit(1.81, "meters"),
  49051. weight: math.unit(69, "kg"),
  49052. name: "Back",
  49053. image: {
  49054. source: "./media/characters/rodryana/back.svg",
  49055. extra: 1993/1926,
  49056. bottom: 48/2041
  49057. }
  49058. },
  49059. maw: {
  49060. height: math.unit(0.19769417475, "meters"),
  49061. name: "Maw",
  49062. image: {
  49063. source: "./media/characters/rodryana/maw.svg"
  49064. }
  49065. },
  49066. slit: {
  49067. height: math.unit(0.31631067961, "meters"),
  49068. name: "Slit",
  49069. image: {
  49070. source: "./media/characters/rodryana/slit.svg"
  49071. }
  49072. },
  49073. },
  49074. [
  49075. {
  49076. name: "Normal",
  49077. height: math.unit(1.81, "meters")
  49078. },
  49079. {
  49080. name: "Mini Macro",
  49081. height: math.unit(181, "meters")
  49082. },
  49083. {
  49084. name: "Macro",
  49085. height: math.unit(452, "meters"),
  49086. default: true
  49087. },
  49088. {
  49089. name: "Mega Macro",
  49090. height: math.unit(1.375, "km")
  49091. },
  49092. {
  49093. name: "Giga Macro",
  49094. height: math.unit(13.575, "km")
  49095. },
  49096. ]
  49097. ))
  49098. characterMakers.push(() => makeCharacter(
  49099. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49100. {
  49101. front: {
  49102. height: math.unit(6, "feet"),
  49103. weight: math.unit(1000, "lb"),
  49104. name: "Front",
  49105. image: {
  49106. source: "./media/characters/asaya/front.svg",
  49107. extra: 1460/1200,
  49108. bottom: 71/1531
  49109. }
  49110. },
  49111. },
  49112. [
  49113. {
  49114. name: "Normal",
  49115. height: math.unit(8, "km"),
  49116. default: true
  49117. },
  49118. ]
  49119. ))
  49120. characterMakers.push(() => makeCharacter(
  49121. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49122. {
  49123. front: {
  49124. height: math.unit(3.5, "meters"),
  49125. name: "Front",
  49126. image: {
  49127. source: "./media/characters/sarzu-and-israz/front.svg",
  49128. extra: 1570/1558,
  49129. bottom: 150/1720
  49130. },
  49131. },
  49132. back: {
  49133. height: math.unit(3.5, "meters"),
  49134. name: "Back",
  49135. image: {
  49136. source: "./media/characters/sarzu-and-israz/back.svg",
  49137. extra: 1523/1509,
  49138. bottom: 132/1655
  49139. },
  49140. },
  49141. frontFemale: {
  49142. height: math.unit(3.5, "meters"),
  49143. name: "Front (Female)",
  49144. image: {
  49145. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49146. extra: 1570/1558,
  49147. bottom: 150/1720
  49148. },
  49149. },
  49150. frontHerm: {
  49151. height: math.unit(3.5, "meters"),
  49152. name: "Front (Herm)",
  49153. image: {
  49154. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49155. extra: 1570/1558,
  49156. bottom: 150/1720
  49157. },
  49158. },
  49159. },
  49160. [
  49161. {
  49162. name: "Normal",
  49163. height: math.unit(3.5, "meters"),
  49164. default: true,
  49165. },
  49166. {
  49167. name: "Macro",
  49168. height: math.unit(65.5, "meters"),
  49169. },
  49170. ],
  49171. ))
  49172. characterMakers.push(() => makeCharacter(
  49173. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49174. {
  49175. front: {
  49176. height: math.unit(6, "feet"),
  49177. weight: math.unit(250, "lb"),
  49178. name: "Front",
  49179. image: {
  49180. source: "./media/characters/zenimma/front.svg",
  49181. extra: 1346/1320,
  49182. bottom: 58/1404
  49183. }
  49184. },
  49185. back: {
  49186. height: math.unit(6, "feet"),
  49187. weight: math.unit(250, "lb"),
  49188. name: "Back",
  49189. image: {
  49190. source: "./media/characters/zenimma/back.svg",
  49191. extra: 1324/1308,
  49192. bottom: 44/1368
  49193. }
  49194. },
  49195. dick: {
  49196. height: math.unit(1.44, "feet"),
  49197. name: "Dick",
  49198. image: {
  49199. source: "./media/characters/zenimma/dick.svg"
  49200. }
  49201. },
  49202. },
  49203. [
  49204. {
  49205. name: "Canon Height",
  49206. height: math.unit(66, "miles"),
  49207. default: true
  49208. },
  49209. ]
  49210. ))
  49211. characterMakers.push(() => makeCharacter(
  49212. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49213. {
  49214. nude: {
  49215. height: math.unit(6, "feet"),
  49216. weight: math.unit(150, "lb"),
  49217. name: "Nude",
  49218. image: {
  49219. source: "./media/characters/shavon/nude.svg",
  49220. extra: 1242/1096,
  49221. bottom: 98/1340
  49222. }
  49223. },
  49224. dressed: {
  49225. height: math.unit(6, "feet"),
  49226. weight: math.unit(150, "lb"),
  49227. name: "Dressed",
  49228. image: {
  49229. source: "./media/characters/shavon/dressed.svg",
  49230. extra: 1242/1096,
  49231. bottom: 98/1340
  49232. }
  49233. },
  49234. },
  49235. [
  49236. {
  49237. name: "Macro",
  49238. height: math.unit(255, "feet"),
  49239. default: true
  49240. },
  49241. ]
  49242. ))
  49243. characterMakers.push(() => makeCharacter(
  49244. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49245. {
  49246. front: {
  49247. height: math.unit(6, "feet"),
  49248. name: "Front",
  49249. image: {
  49250. source: "./media/characters/steph/front.svg",
  49251. extra: 1430/1330,
  49252. bottom: 54/1484
  49253. }
  49254. },
  49255. },
  49256. [
  49257. {
  49258. name: "Normal",
  49259. height: math.unit(6, "feet"),
  49260. default: true
  49261. },
  49262. ]
  49263. ))
  49264. characterMakers.push(() => makeCharacter(
  49265. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49266. {
  49267. front: {
  49268. height: math.unit(9, "feet"),
  49269. weight: math.unit(400, "lb"),
  49270. name: "Front",
  49271. image: {
  49272. source: "./media/characters/kil'aman/front.svg",
  49273. extra: 1210/1159,
  49274. bottom: 109/1319
  49275. }
  49276. },
  49277. head: {
  49278. height: math.unit(2.14, "feet"),
  49279. name: "Head",
  49280. image: {
  49281. source: "./media/characters/kil'aman/head.svg"
  49282. }
  49283. },
  49284. maw: {
  49285. height: math.unit(1.21, "feet"),
  49286. name: "Maw",
  49287. image: {
  49288. source: "./media/characters/kil'aman/maw.svg"
  49289. }
  49290. },
  49291. foot: {
  49292. height: math.unit(1.7, "feet"),
  49293. name: "Foot",
  49294. image: {
  49295. source: "./media/characters/kil'aman/foot.svg"
  49296. }
  49297. },
  49298. dick: {
  49299. height: math.unit(2.1, "feet"),
  49300. name: "Dick",
  49301. image: {
  49302. source: "./media/characters/kil'aman/dick.svg"
  49303. }
  49304. },
  49305. },
  49306. [
  49307. {
  49308. name: "Normal",
  49309. height: math.unit(9, "feet")
  49310. },
  49311. {
  49312. name: "Canon Height",
  49313. height: math.unit(10, "miles"),
  49314. default: true
  49315. },
  49316. {
  49317. name: "Maximum",
  49318. height: math.unit(6e9, "miles")
  49319. },
  49320. ]
  49321. ))
  49322. characterMakers.push(() => makeCharacter(
  49323. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49324. {
  49325. front: {
  49326. height: math.unit(90, "feet"),
  49327. weight: math.unit(675000, "lb"),
  49328. name: "Front",
  49329. image: {
  49330. source: "./media/characters/qadan/front.svg",
  49331. extra: 1012/1004,
  49332. bottom: 78/1090
  49333. }
  49334. },
  49335. back: {
  49336. height: math.unit(90, "feet"),
  49337. weight: math.unit(675000, "lb"),
  49338. name: "Back",
  49339. image: {
  49340. source: "./media/characters/qadan/back.svg",
  49341. extra: 1042/1031,
  49342. bottom: 55/1097
  49343. }
  49344. },
  49345. armored: {
  49346. height: math.unit(90, "feet"),
  49347. weight: math.unit(675000, "lb"),
  49348. name: "Armored",
  49349. image: {
  49350. source: "./media/characters/qadan/armored.svg",
  49351. extra: 1047/1037,
  49352. bottom: 48/1095
  49353. }
  49354. },
  49355. },
  49356. [
  49357. {
  49358. name: "Normal",
  49359. height: math.unit(90, "feet"),
  49360. default: true
  49361. },
  49362. ]
  49363. ))
  49364. characterMakers.push(() => makeCharacter(
  49365. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49366. {
  49367. front: {
  49368. height: math.unit(6, "feet"),
  49369. weight: math.unit(225, "lb"),
  49370. name: "Front",
  49371. image: {
  49372. source: "./media/characters/brooke/front.svg",
  49373. extra: 1050/1010,
  49374. bottom: 66/1116
  49375. }
  49376. },
  49377. back: {
  49378. height: math.unit(6, "feet"),
  49379. weight: math.unit(225, "lb"),
  49380. name: "Back",
  49381. image: {
  49382. source: "./media/characters/brooke/back.svg",
  49383. extra: 1053/1013,
  49384. bottom: 41/1094
  49385. }
  49386. },
  49387. dressed: {
  49388. height: math.unit(6, "feet"),
  49389. weight: math.unit(225, "lb"),
  49390. name: "Dressed",
  49391. image: {
  49392. source: "./media/characters/brooke/dressed.svg",
  49393. extra: 1050/1010,
  49394. bottom: 66/1116
  49395. }
  49396. },
  49397. },
  49398. [
  49399. {
  49400. name: "Canon Height",
  49401. height: math.unit(500, "miles"),
  49402. default: true
  49403. },
  49404. ]
  49405. ))
  49406. characterMakers.push(() => makeCharacter(
  49407. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49408. {
  49409. front: {
  49410. height: math.unit(6 + 2/12, "feet"),
  49411. weight: math.unit(210, "lb"),
  49412. name: "Front",
  49413. image: {
  49414. source: "./media/characters/wubs/front.svg",
  49415. extra: 1345/1325,
  49416. bottom: 70/1415
  49417. }
  49418. },
  49419. back: {
  49420. height: math.unit(6 + 2/12, "feet"),
  49421. weight: math.unit(210, "lb"),
  49422. name: "Back",
  49423. image: {
  49424. source: "./media/characters/wubs/back.svg",
  49425. extra: 1296/1275,
  49426. bottom: 58/1354
  49427. }
  49428. },
  49429. },
  49430. [
  49431. {
  49432. name: "Normal",
  49433. height: math.unit(6 + 2/12, "feet"),
  49434. default: true
  49435. },
  49436. {
  49437. name: "Macro",
  49438. height: math.unit(1000, "feet")
  49439. },
  49440. {
  49441. name: "Megamacro",
  49442. height: math.unit(1, "mile")
  49443. },
  49444. ]
  49445. ))
  49446. characterMakers.push(() => makeCharacter(
  49447. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49448. {
  49449. front: {
  49450. height: math.unit(4, "feet"),
  49451. weight: math.unit(120, "lb"),
  49452. name: "Front",
  49453. image: {
  49454. source: "./media/characters/blue/front.svg",
  49455. extra: 1636/1525,
  49456. bottom: 43/1679
  49457. }
  49458. },
  49459. back: {
  49460. height: math.unit(4, "feet"),
  49461. weight: math.unit(120, "lb"),
  49462. name: "Back",
  49463. image: {
  49464. source: "./media/characters/blue/back.svg",
  49465. extra: 1660/1560,
  49466. bottom: 57/1717
  49467. }
  49468. },
  49469. paws: {
  49470. height: math.unit(0.826, "feet"),
  49471. name: "Paws",
  49472. image: {
  49473. source: "./media/characters/blue/paws.svg"
  49474. }
  49475. },
  49476. },
  49477. [
  49478. {
  49479. name: "Micro",
  49480. height: math.unit(3, "inches")
  49481. },
  49482. {
  49483. name: "Normal",
  49484. height: math.unit(4, "feet"),
  49485. default: true
  49486. },
  49487. {
  49488. name: "Femenine Form",
  49489. height: math.unit(14, "feet")
  49490. },
  49491. {
  49492. name: "Werebat Form",
  49493. height: math.unit(18, "feet")
  49494. },
  49495. ]
  49496. ))
  49497. characterMakers.push(() => makeCharacter(
  49498. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49499. {
  49500. female: {
  49501. height: math.unit(7 + 4/12, "feet"),
  49502. weight: math.unit(243, "lb"),
  49503. name: "Female",
  49504. image: {
  49505. source: "./media/characters/kaya/female.svg",
  49506. extra: 975/898,
  49507. bottom: 34/1009
  49508. }
  49509. },
  49510. herm: {
  49511. height: math.unit(7 + 4/12, "feet"),
  49512. weight: math.unit(243, "lb"),
  49513. name: "Herm",
  49514. image: {
  49515. source: "./media/characters/kaya/herm.svg",
  49516. extra: 975/898,
  49517. bottom: 34/1009
  49518. }
  49519. },
  49520. },
  49521. [
  49522. {
  49523. name: "Normal",
  49524. height: math.unit(7 + 4/12, "feet"),
  49525. default: true
  49526. },
  49527. ]
  49528. ))
  49529. characterMakers.push(() => makeCharacter(
  49530. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49531. {
  49532. female: {
  49533. height: math.unit(9 + 4/12, "feet"),
  49534. weight: math.unit(398, "lb"),
  49535. name: "Female",
  49536. image: {
  49537. source: "./media/characters/kassandra/female.svg",
  49538. extra: 908/839,
  49539. bottom: 61/969
  49540. }
  49541. },
  49542. intersex: {
  49543. height: math.unit(9 + 4/12, "feet"),
  49544. weight: math.unit(398, "lb"),
  49545. name: "Intersex",
  49546. image: {
  49547. source: "./media/characters/kassandra/intersex.svg",
  49548. extra: 908/839,
  49549. bottom: 61/969
  49550. }
  49551. },
  49552. },
  49553. [
  49554. {
  49555. name: "Normal",
  49556. height: math.unit(9 + 4/12, "feet"),
  49557. default: true
  49558. },
  49559. ]
  49560. ))
  49561. characterMakers.push(() => makeCharacter(
  49562. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49563. {
  49564. front: {
  49565. height: math.unit(3, "meters"),
  49566. name: "Front",
  49567. image: {
  49568. source: "./media/characters/amy/front.svg",
  49569. extra: 1380/1343,
  49570. bottom: 70/1450
  49571. }
  49572. },
  49573. back: {
  49574. height: math.unit(3, "meters"),
  49575. name: "Back",
  49576. image: {
  49577. source: "./media/characters/amy/back.svg",
  49578. extra: 1380/1347,
  49579. bottom: 66/1446
  49580. }
  49581. },
  49582. },
  49583. [
  49584. {
  49585. name: "Normal",
  49586. height: math.unit(3, "meters"),
  49587. default: true
  49588. },
  49589. ]
  49590. ))
  49591. characterMakers.push(() => makeCharacter(
  49592. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49593. {
  49594. side: {
  49595. height: math.unit(47, "cm"),
  49596. weight: math.unit(10.8, "kg"),
  49597. name: "Side",
  49598. image: {
  49599. source: "./media/characters/alphaschakal/side.svg",
  49600. extra: 1058/568,
  49601. bottom: 62/1120
  49602. }
  49603. },
  49604. back: {
  49605. height: math.unit(78, "cm"),
  49606. weight: math.unit(10.8, "kg"),
  49607. name: "Back",
  49608. image: {
  49609. source: "./media/characters/alphaschakal/back.svg",
  49610. extra: 1102/942,
  49611. bottom: 185/1287
  49612. }
  49613. },
  49614. head: {
  49615. height: math.unit(28, "cm"),
  49616. name: "Head",
  49617. image: {
  49618. source: "./media/characters/alphaschakal/head.svg",
  49619. extra: 696/508,
  49620. bottom: 0/696
  49621. }
  49622. },
  49623. paw: {
  49624. height: math.unit(16, "cm"),
  49625. name: "Paw",
  49626. image: {
  49627. source: "./media/characters/alphaschakal/paw.svg"
  49628. }
  49629. },
  49630. },
  49631. [
  49632. {
  49633. name: "Normal",
  49634. height: math.unit(47, "cm"),
  49635. default: true
  49636. },
  49637. {
  49638. name: "Macro",
  49639. height: math.unit(340, "cm")
  49640. },
  49641. ]
  49642. ))
  49643. characterMakers.push(() => makeCharacter(
  49644. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49645. {
  49646. front: {
  49647. height: math.unit(36, "earths"),
  49648. name: "Front",
  49649. image: {
  49650. source: "./media/characters/ecobyss/front.svg",
  49651. extra: 1282/1215,
  49652. bottom: 11/1293
  49653. }
  49654. },
  49655. back: {
  49656. height: math.unit(36, "earths"),
  49657. name: "Back",
  49658. image: {
  49659. source: "./media/characters/ecobyss/back.svg",
  49660. extra: 1291/1222,
  49661. bottom: 8/1299
  49662. }
  49663. },
  49664. },
  49665. [
  49666. {
  49667. name: "Normal",
  49668. height: math.unit(36, "earths"),
  49669. default: true
  49670. },
  49671. ]
  49672. ))
  49673. characterMakers.push(() => makeCharacter(
  49674. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49675. {
  49676. front: {
  49677. height: math.unit(12, "feet"),
  49678. name: "Front",
  49679. image: {
  49680. source: "./media/characters/vasuk/front.svg",
  49681. extra: 1326/1207,
  49682. bottom: 64/1390
  49683. }
  49684. },
  49685. },
  49686. [
  49687. {
  49688. name: "Normal",
  49689. height: math.unit(12, "feet"),
  49690. default: true
  49691. },
  49692. ]
  49693. ))
  49694. characterMakers.push(() => makeCharacter(
  49695. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49696. {
  49697. side: {
  49698. height: math.unit(100, "feet"),
  49699. name: "Side",
  49700. image: {
  49701. source: "./media/characters/linneaus/side.svg",
  49702. extra: 987/807,
  49703. bottom: 47/1034
  49704. }
  49705. },
  49706. },
  49707. [
  49708. {
  49709. name: "Macro",
  49710. height: math.unit(100, "feet"),
  49711. default: true
  49712. },
  49713. ]
  49714. ))
  49715. characterMakers.push(() => makeCharacter(
  49716. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49717. {
  49718. front: {
  49719. height: math.unit(8, "feet"),
  49720. weight: math.unit(1200, "lb"),
  49721. name: "Front",
  49722. image: {
  49723. source: "./media/characters/nyterious-daligdig/front.svg",
  49724. extra: 1284/1094,
  49725. bottom: 84/1368
  49726. }
  49727. },
  49728. back: {
  49729. height: math.unit(8, "feet"),
  49730. weight: math.unit(1200, "lb"),
  49731. name: "Back",
  49732. image: {
  49733. source: "./media/characters/nyterious-daligdig/back.svg",
  49734. extra: 1301/1121,
  49735. bottom: 129/1430
  49736. }
  49737. },
  49738. mouth: {
  49739. height: math.unit(1.464, "feet"),
  49740. name: "Mouth",
  49741. image: {
  49742. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49743. }
  49744. },
  49745. },
  49746. [
  49747. {
  49748. name: "Small",
  49749. height: math.unit(8, "feet"),
  49750. default: true
  49751. },
  49752. {
  49753. name: "Normal",
  49754. height: math.unit(15, "feet")
  49755. },
  49756. {
  49757. name: "Macro",
  49758. height: math.unit(90, "feet")
  49759. },
  49760. ]
  49761. ))
  49762. characterMakers.push(() => makeCharacter(
  49763. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49764. {
  49765. front: {
  49766. height: math.unit(7 + 4/12, "feet"),
  49767. weight: math.unit(252, "lb"),
  49768. name: "Front",
  49769. image: {
  49770. source: "./media/characters/bandel/front.svg",
  49771. extra: 1946/1775,
  49772. bottom: 26/1972
  49773. }
  49774. },
  49775. back: {
  49776. height: math.unit(7 + 4/12, "feet"),
  49777. weight: math.unit(252, "lb"),
  49778. name: "Back",
  49779. image: {
  49780. source: "./media/characters/bandel/back.svg",
  49781. extra: 1940/1770,
  49782. bottom: 25/1965
  49783. }
  49784. },
  49785. maw: {
  49786. height: math.unit(2.15, "feet"),
  49787. name: "Maw",
  49788. image: {
  49789. source: "./media/characters/bandel/maw.svg"
  49790. }
  49791. },
  49792. stomach: {
  49793. height: math.unit(1.95, "feet"),
  49794. name: "Stomach",
  49795. image: {
  49796. source: "./media/characters/bandel/stomach.svg"
  49797. }
  49798. },
  49799. },
  49800. [
  49801. {
  49802. name: "Normal",
  49803. height: math.unit(7 + 4/12, "feet"),
  49804. default: true
  49805. },
  49806. ]
  49807. ))
  49808. characterMakers.push(() => makeCharacter(
  49809. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49810. {
  49811. front: {
  49812. height: math.unit(10 + 5/12, "feet"),
  49813. weight: math.unit(773.5, "kg"),
  49814. name: "Front",
  49815. image: {
  49816. source: "./media/characters/zed/front.svg",
  49817. extra: 987/941,
  49818. bottom: 52/1039
  49819. }
  49820. },
  49821. },
  49822. [
  49823. {
  49824. name: "Short",
  49825. height: math.unit(5 + 4/12, "feet")
  49826. },
  49827. {
  49828. name: "Average",
  49829. height: math.unit(10 + 5/12, "feet"),
  49830. default: true
  49831. },
  49832. {
  49833. name: "Mini-Macro",
  49834. height: math.unit(24 + 9/12, "feet")
  49835. },
  49836. {
  49837. name: "Macro",
  49838. height: math.unit(249, "feet")
  49839. },
  49840. {
  49841. name: "Mega-Macro",
  49842. height: math.unit(12490, "feet")
  49843. },
  49844. {
  49845. name: "Giga-Macro",
  49846. height: math.unit(24.9, "miles")
  49847. },
  49848. {
  49849. name: "Tera-Macro",
  49850. height: math.unit(24900, "miles")
  49851. },
  49852. {
  49853. name: "Cosmic Scale",
  49854. height: math.unit(38.9, "lightyears")
  49855. },
  49856. {
  49857. name: "Universal Scale",
  49858. height: math.unit(138e12, "lightyears")
  49859. },
  49860. ]
  49861. ))
  49862. characterMakers.push(() => makeCharacter(
  49863. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49864. {
  49865. front: {
  49866. height: math.unit(1561, "inches"),
  49867. name: "Front",
  49868. image: {
  49869. source: "./media/characters/ivan/front.svg",
  49870. extra: 1126/1071,
  49871. bottom: 26/1152
  49872. }
  49873. },
  49874. back: {
  49875. height: math.unit(1561, "inches"),
  49876. name: "Back",
  49877. image: {
  49878. source: "./media/characters/ivan/back.svg",
  49879. extra: 1134/1079,
  49880. bottom: 30/1164
  49881. }
  49882. },
  49883. },
  49884. [
  49885. {
  49886. name: "Normal",
  49887. height: math.unit(1561, "inches"),
  49888. default: true
  49889. },
  49890. ]
  49891. ))
  49892. characterMakers.push(() => makeCharacter(
  49893. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49894. {
  49895. front: {
  49896. height: math.unit(5 + 7/12, "feet"),
  49897. weight: math.unit(150, "lb"),
  49898. name: "Front",
  49899. image: {
  49900. source: "./media/characters/robin-arctic-hare/front.svg",
  49901. extra: 1148/974,
  49902. bottom: 20/1168
  49903. }
  49904. },
  49905. },
  49906. [
  49907. {
  49908. name: "Normal",
  49909. height: math.unit(5 + 7/12, "feet"),
  49910. default: true
  49911. },
  49912. ]
  49913. ))
  49914. characterMakers.push(() => makeCharacter(
  49915. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49916. {
  49917. side: {
  49918. height: math.unit(5, "feet"),
  49919. name: "Side",
  49920. image: {
  49921. source: "./media/characters/birch/side.svg",
  49922. extra: 985/796,
  49923. bottom: 111/1096
  49924. }
  49925. },
  49926. },
  49927. [
  49928. {
  49929. name: "Normal",
  49930. height: math.unit(5, "feet"),
  49931. default: true
  49932. },
  49933. ]
  49934. ))
  49935. characterMakers.push(() => makeCharacter(
  49936. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49937. {
  49938. front: {
  49939. height: math.unit(4, "feet"),
  49940. name: "Front",
  49941. image: {
  49942. source: "./media/characters/rasp/front.svg",
  49943. extra: 561/478,
  49944. bottom: 74/635
  49945. }
  49946. },
  49947. },
  49948. [
  49949. {
  49950. name: "Normal",
  49951. height: math.unit(4, "feet"),
  49952. default: true
  49953. },
  49954. ]
  49955. ))
  49956. characterMakers.push(() => makeCharacter(
  49957. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49958. {
  49959. front: {
  49960. height: math.unit(4 + 6/12, "feet"),
  49961. name: "Front",
  49962. image: {
  49963. source: "./media/characters/agatha/front.svg",
  49964. extra: 947/933,
  49965. bottom: 42/989
  49966. }
  49967. },
  49968. back: {
  49969. height: math.unit(4 + 6/12, "feet"),
  49970. name: "Back",
  49971. image: {
  49972. source: "./media/characters/agatha/back.svg",
  49973. extra: 935/922,
  49974. bottom: 48/983
  49975. }
  49976. },
  49977. },
  49978. [
  49979. {
  49980. name: "Normal",
  49981. height: math.unit(4 + 6 /12, "feet"),
  49982. default: true
  49983. },
  49984. {
  49985. name: "Max Size",
  49986. height: math.unit(500, "feet")
  49987. },
  49988. ]
  49989. ))
  49990. characterMakers.push(() => makeCharacter(
  49991. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49992. {
  49993. side: {
  49994. height: math.unit(30, "feet"),
  49995. name: "Side",
  49996. image: {
  49997. source: "./media/characters/roggy/side.svg",
  49998. extra: 909/643,
  49999. bottom: 63/972
  50000. }
  50001. },
  50002. lounging: {
  50003. height: math.unit(20, "feet"),
  50004. name: "Lounging",
  50005. image: {
  50006. source: "./media/characters/roggy/lounging.svg",
  50007. extra: 643/479,
  50008. bottom: 145/788
  50009. }
  50010. },
  50011. handpaw: {
  50012. height: math.unit(13.1, "feet"),
  50013. name: "Handpaw",
  50014. image: {
  50015. source: "./media/characters/roggy/handpaw.svg"
  50016. }
  50017. },
  50018. footpaw: {
  50019. height: math.unit(15.8, "feet"),
  50020. name: "Footpaw",
  50021. image: {
  50022. source: "./media/characters/roggy/footpaw.svg"
  50023. }
  50024. },
  50025. },
  50026. [
  50027. {
  50028. name: "Menacing",
  50029. height: math.unit(30, "feet"),
  50030. default: true
  50031. },
  50032. ]
  50033. ))
  50034. characterMakers.push(() => makeCharacter(
  50035. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50036. {
  50037. front: {
  50038. height: math.unit(5 + 7/12, "feet"),
  50039. weight: math.unit(135, "lb"),
  50040. name: "Front",
  50041. image: {
  50042. source: "./media/characters/naomi/front.svg",
  50043. extra: 1209/1154,
  50044. bottom: 129/1338
  50045. }
  50046. },
  50047. back: {
  50048. height: math.unit(5 + 7/12, "feet"),
  50049. weight: math.unit(135, "lb"),
  50050. name: "Back",
  50051. image: {
  50052. source: "./media/characters/naomi/back.svg",
  50053. extra: 1252/1190,
  50054. bottom: 23/1275
  50055. }
  50056. },
  50057. },
  50058. [
  50059. {
  50060. name: "Normal",
  50061. height: math.unit(5 + 7 /12, "feet"),
  50062. default: true
  50063. },
  50064. ]
  50065. ))
  50066. characterMakers.push(() => makeCharacter(
  50067. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50068. {
  50069. side: {
  50070. height: math.unit(35, "meters"),
  50071. name: "Side",
  50072. image: {
  50073. source: "./media/characters/kimpi/side.svg",
  50074. extra: 419/382,
  50075. bottom: 63/482
  50076. }
  50077. },
  50078. hand: {
  50079. height: math.unit(8.96, "meters"),
  50080. name: "Hand",
  50081. image: {
  50082. source: "./media/characters/kimpi/hand.svg"
  50083. }
  50084. },
  50085. },
  50086. [
  50087. {
  50088. name: "Normal",
  50089. height: math.unit(35, "meters"),
  50090. default: true
  50091. },
  50092. ]
  50093. ))
  50094. characterMakers.push(() => makeCharacter(
  50095. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50096. {
  50097. front: {
  50098. height: math.unit(4 + 4/12, "feet"),
  50099. name: "Front",
  50100. image: {
  50101. source: "./media/characters/pepper-purrloin/front.svg",
  50102. extra: 1141/1024,
  50103. bottom: 21/1162
  50104. }
  50105. },
  50106. },
  50107. [
  50108. {
  50109. name: "Normal",
  50110. height: math.unit(4 + 4/12, "feet"),
  50111. default: true
  50112. },
  50113. ]
  50114. ))
  50115. characterMakers.push(() => makeCharacter(
  50116. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50117. {
  50118. front: {
  50119. height: math.unit(6 + 2/12, "feet"),
  50120. name: "Front",
  50121. image: {
  50122. source: "./media/characters/raphael/front.svg",
  50123. extra: 1101/962,
  50124. bottom: 59/1160
  50125. }
  50126. },
  50127. },
  50128. [
  50129. {
  50130. name: "Normal",
  50131. height: math.unit(6 + 2/12, "feet"),
  50132. default: true
  50133. },
  50134. ]
  50135. ))
  50136. characterMakers.push(() => makeCharacter(
  50137. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50138. {
  50139. front: {
  50140. height: math.unit(6, "feet"),
  50141. weight: math.unit(150, "lb"),
  50142. name: "Front",
  50143. image: {
  50144. source: "./media/characters/victor-williams/front.svg",
  50145. extra: 1894/1825,
  50146. bottom: 67/1961
  50147. }
  50148. },
  50149. },
  50150. [
  50151. {
  50152. name: "Normal",
  50153. height: math.unit(6, "feet"),
  50154. default: true
  50155. },
  50156. ]
  50157. ))
  50158. characterMakers.push(() => makeCharacter(
  50159. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50160. {
  50161. front: {
  50162. height: math.unit(5 + 8/12, "feet"),
  50163. weight: math.unit(150, "lb"),
  50164. name: "Front",
  50165. image: {
  50166. source: "./media/characters/rachel/front.svg",
  50167. extra: 1902/1787,
  50168. bottom: 46/1948
  50169. }
  50170. },
  50171. },
  50172. [
  50173. {
  50174. name: "Base Height",
  50175. height: math.unit(5 + 8/12, "feet"),
  50176. default: true
  50177. },
  50178. {
  50179. name: "Macro",
  50180. height: math.unit(200, "feet")
  50181. },
  50182. {
  50183. name: "Mega Macro",
  50184. height: math.unit(1, "mile")
  50185. },
  50186. {
  50187. name: "Giga Macro",
  50188. height: math.unit(1500, "miles")
  50189. },
  50190. {
  50191. name: "Tera Macro",
  50192. height: math.unit(8000, "miles")
  50193. },
  50194. {
  50195. name: "Tera Macro+",
  50196. height: math.unit(2e5, "miles")
  50197. },
  50198. ]
  50199. ))
  50200. characterMakers.push(() => makeCharacter(
  50201. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50202. {
  50203. front: {
  50204. height: math.unit(6.5, "feet"),
  50205. name: "Front",
  50206. image: {
  50207. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50208. extra: 860/819,
  50209. bottom: 307/1167
  50210. }
  50211. },
  50212. back: {
  50213. height: math.unit(6.5, "feet"),
  50214. name: "Back",
  50215. image: {
  50216. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50217. extra: 880/837,
  50218. bottom: 395/1275
  50219. }
  50220. },
  50221. sleeping: {
  50222. height: math.unit(2.79, "feet"),
  50223. name: "Sleeping",
  50224. image: {
  50225. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50226. extra: 465/383,
  50227. bottom: 263/728
  50228. }
  50229. },
  50230. maw: {
  50231. height: math.unit(2.52, "feet"),
  50232. name: "Maw",
  50233. image: {
  50234. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50235. }
  50236. },
  50237. },
  50238. [
  50239. {
  50240. name: "Normal",
  50241. height: math.unit(6.5, "feet"),
  50242. default: true
  50243. },
  50244. ]
  50245. ))
  50246. characterMakers.push(() => makeCharacter(
  50247. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50248. {
  50249. front: {
  50250. height: math.unit(5, "feet"),
  50251. name: "Front",
  50252. image: {
  50253. source: "./media/characters/nova-nerium/front.svg",
  50254. extra: 1548/1392,
  50255. bottom: 374/1922
  50256. }
  50257. },
  50258. back: {
  50259. height: math.unit(5, "feet"),
  50260. name: "Back",
  50261. image: {
  50262. source: "./media/characters/nova-nerium/back.svg",
  50263. extra: 1658/1468,
  50264. bottom: 257/1915
  50265. }
  50266. },
  50267. },
  50268. [
  50269. {
  50270. name: "Normal",
  50271. height: math.unit(5, "feet"),
  50272. default: true
  50273. },
  50274. ]
  50275. ))
  50276. characterMakers.push(() => makeCharacter(
  50277. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50278. {
  50279. front: {
  50280. height: math.unit(5 + 4/12, "feet"),
  50281. name: "Front",
  50282. image: {
  50283. source: "./media/characters/ashe-pyriph/front.svg",
  50284. extra: 1935/1747,
  50285. bottom: 60/1995
  50286. }
  50287. },
  50288. },
  50289. [
  50290. {
  50291. name: "Normal",
  50292. height: math.unit(5 + 4/12, "feet"),
  50293. default: true
  50294. },
  50295. ]
  50296. ))
  50297. characterMakers.push(() => makeCharacter(
  50298. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50299. {
  50300. front: {
  50301. height: math.unit(8.7, "feet"),
  50302. name: "Front",
  50303. image: {
  50304. source: "./media/characters/flicker-wisp/front.svg",
  50305. extra: 1835/1613,
  50306. bottom: 449/2284
  50307. }
  50308. },
  50309. side: {
  50310. height: math.unit(8.7, "feet"),
  50311. name: "Side",
  50312. image: {
  50313. source: "./media/characters/flicker-wisp/side.svg",
  50314. extra: 1841/1642,
  50315. bottom: 336/2177
  50316. },
  50317. default: true
  50318. },
  50319. maw: {
  50320. height: math.unit(3.35, "feet"),
  50321. name: "Maw",
  50322. image: {
  50323. source: "./media/characters/flicker-wisp/maw.svg",
  50324. extra: 2338/1506,
  50325. bottom: 0/2338
  50326. }
  50327. },
  50328. ovipositor: {
  50329. height: math.unit(4.95, "feet"),
  50330. name: "Ovipositor",
  50331. image: {
  50332. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50333. }
  50334. },
  50335. egg: {
  50336. height: math.unit(0.385, "feet"),
  50337. weight: math.unit(2, "lb"),
  50338. name: "Egg",
  50339. image: {
  50340. source: "./media/characters/flicker-wisp/egg.svg"
  50341. }
  50342. },
  50343. },
  50344. [
  50345. {
  50346. name: "Normal",
  50347. height: math.unit(8.7, "feet"),
  50348. default: true
  50349. },
  50350. ]
  50351. ))
  50352. characterMakers.push(() => makeCharacter(
  50353. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50354. {
  50355. side: {
  50356. height: math.unit(11, "feet"),
  50357. name: "Side",
  50358. image: {
  50359. source: "./media/characters/faefnul/side.svg",
  50360. extra: 1100/1007,
  50361. bottom: 0/1100
  50362. }
  50363. },
  50364. },
  50365. [
  50366. {
  50367. name: "Normal",
  50368. height: math.unit(11, "feet"),
  50369. default: true
  50370. },
  50371. ]
  50372. ))
  50373. characterMakers.push(() => makeCharacter(
  50374. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50375. {
  50376. front: {
  50377. height: math.unit(6 + 2/12, "feet"),
  50378. name: "Front",
  50379. image: {
  50380. source: "./media/characters/shady/front.svg",
  50381. extra: 502/461,
  50382. bottom: 9/511
  50383. }
  50384. },
  50385. kneeling: {
  50386. height: math.unit(4.6, "feet"),
  50387. name: "Kneeling",
  50388. image: {
  50389. source: "./media/characters/shady/kneeling.svg",
  50390. extra: 1328/1219,
  50391. bottom: 117/1445
  50392. }
  50393. },
  50394. maw: {
  50395. height: math.unit(2, "feet"),
  50396. name: "Maw",
  50397. image: {
  50398. source: "./media/characters/shady/maw.svg"
  50399. }
  50400. },
  50401. },
  50402. [
  50403. {
  50404. name: "Nano",
  50405. height: math.unit(1, "mm")
  50406. },
  50407. {
  50408. name: "Micro",
  50409. height: math.unit(12, "mm")
  50410. },
  50411. {
  50412. name: "Tiny",
  50413. height: math.unit(3, "inches")
  50414. },
  50415. {
  50416. name: "Normal",
  50417. height: math.unit(6 + 2/12, "feet"),
  50418. default: true
  50419. },
  50420. {
  50421. name: "Big",
  50422. height: math.unit(15, "feet")
  50423. },
  50424. {
  50425. name: "Macro",
  50426. height: math.unit(150, "feet")
  50427. },
  50428. {
  50429. name: "Titanic",
  50430. height: math.unit(500, "feet")
  50431. },
  50432. ]
  50433. ))
  50434. characterMakers.push(() => makeCharacter(
  50435. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50436. {
  50437. front: {
  50438. height: math.unit(12, "feet"),
  50439. name: "Front",
  50440. image: {
  50441. source: "./media/characters/fenrir/front.svg",
  50442. extra: 968/875,
  50443. bottom: 22/990
  50444. }
  50445. },
  50446. },
  50447. [
  50448. {
  50449. name: "Big",
  50450. height: math.unit(12, "feet"),
  50451. default: true
  50452. },
  50453. ]
  50454. ))
  50455. characterMakers.push(() => makeCharacter(
  50456. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50457. {
  50458. front: {
  50459. height: math.unit(5 + 4/12, "feet"),
  50460. name: "Front",
  50461. image: {
  50462. source: "./media/characters/makar/front.svg",
  50463. extra: 1181/1112,
  50464. bottom: 78/1259
  50465. }
  50466. },
  50467. },
  50468. [
  50469. {
  50470. name: "Normal",
  50471. height: math.unit(5 + 4/12, "feet"),
  50472. default: true
  50473. },
  50474. ]
  50475. ))
  50476. characterMakers.push(() => makeCharacter(
  50477. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50478. {
  50479. front: {
  50480. height: math.unit(5 + 7/12, "feet"),
  50481. name: "Front",
  50482. image: {
  50483. source: "./media/characters/callow/front.svg",
  50484. extra: 1482/1304,
  50485. bottom: 23/1505
  50486. }
  50487. },
  50488. back: {
  50489. height: math.unit(5 + 7/12, "feet"),
  50490. name: "Back",
  50491. image: {
  50492. source: "./media/characters/callow/back.svg",
  50493. extra: 1484/1296,
  50494. bottom: 25/1509
  50495. }
  50496. },
  50497. },
  50498. [
  50499. {
  50500. name: "Micro",
  50501. height: math.unit(3, "inches"),
  50502. default: true
  50503. },
  50504. {
  50505. name: "Normal",
  50506. height: math.unit(5 + 7/12, "feet")
  50507. },
  50508. ]
  50509. ))
  50510. characterMakers.push(() => makeCharacter(
  50511. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50512. {
  50513. front: {
  50514. height: math.unit(6 + 2/12, "feet"),
  50515. name: "Front",
  50516. image: {
  50517. source: "./media/characters/natel/front.svg",
  50518. extra: 1833/1692,
  50519. bottom: 166/1999
  50520. }
  50521. },
  50522. },
  50523. [
  50524. {
  50525. name: "Normal",
  50526. height: math.unit(6 + 2/12, "feet"),
  50527. default: true
  50528. },
  50529. ]
  50530. ))
  50531. characterMakers.push(() => makeCharacter(
  50532. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50533. {
  50534. front: {
  50535. height: math.unit(1.75, "meters"),
  50536. name: "Front",
  50537. image: {
  50538. source: "./media/characters/misu/front.svg",
  50539. extra: 1690/1558,
  50540. bottom: 234/1924
  50541. }
  50542. },
  50543. back: {
  50544. height: math.unit(1.75, "meters"),
  50545. name: "Back",
  50546. image: {
  50547. source: "./media/characters/misu/back.svg",
  50548. extra: 1762/1618,
  50549. bottom: 146/1908
  50550. }
  50551. },
  50552. frontNude: {
  50553. height: math.unit(1.75, "meters"),
  50554. name: "Front (Nude)",
  50555. image: {
  50556. source: "./media/characters/misu/front-nude.svg",
  50557. extra: 1690/1558,
  50558. bottom: 234/1924
  50559. }
  50560. },
  50561. backNude: {
  50562. height: math.unit(1.75, "meters"),
  50563. name: "Back (Nude)",
  50564. image: {
  50565. source: "./media/characters/misu/back-nude.svg",
  50566. extra: 1762/1618,
  50567. bottom: 146/1908
  50568. }
  50569. },
  50570. frontErect: {
  50571. height: math.unit(1.75, "meters"),
  50572. name: "Front (Erect)",
  50573. image: {
  50574. source: "./media/characters/misu/front-erect.svg",
  50575. extra: 1690/1558,
  50576. bottom: 234/1924
  50577. }
  50578. },
  50579. maw: {
  50580. height: math.unit(0.47, "meters"),
  50581. name: "Maw",
  50582. image: {
  50583. source: "./media/characters/misu/maw.svg"
  50584. }
  50585. },
  50586. head: {
  50587. height: math.unit(0.35, "meters"),
  50588. name: "Head",
  50589. image: {
  50590. source: "./media/characters/misu/head.svg"
  50591. }
  50592. },
  50593. rear: {
  50594. height: math.unit(0.47, "meters"),
  50595. name: "Rear",
  50596. image: {
  50597. source: "./media/characters/misu/rear.svg"
  50598. }
  50599. },
  50600. },
  50601. [
  50602. {
  50603. name: "Normal",
  50604. height: math.unit(1.75, "meters")
  50605. },
  50606. {
  50607. name: "Not good for the people",
  50608. height: math.unit(42, "meters")
  50609. },
  50610. {
  50611. name: "Not good for the neighborhood",
  50612. height: math.unit(135, "meters")
  50613. },
  50614. {
  50615. name: "Bit bigger problem",
  50616. height: math.unit(380, "meters"),
  50617. default: true
  50618. },
  50619. {
  50620. name: "Not good for the city",
  50621. height: math.unit(1.5, "km")
  50622. },
  50623. {
  50624. name: "Not good for the county",
  50625. height: math.unit(5.5, "km")
  50626. },
  50627. {
  50628. name: "Not good for the state",
  50629. height: math.unit(25, "km")
  50630. },
  50631. {
  50632. name: "Not good for the country",
  50633. height: math.unit(125, "km")
  50634. },
  50635. {
  50636. name: "Not good for the continent",
  50637. height: math.unit(2100, "km")
  50638. },
  50639. {
  50640. name: "Not good for the planet",
  50641. height: math.unit(35000, "km")
  50642. },
  50643. {
  50644. name: "Just no",
  50645. height: math.unit(8.5e18, "km")
  50646. },
  50647. ]
  50648. ))
  50649. characterMakers.push(() => makeCharacter(
  50650. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50651. {
  50652. front: {
  50653. height: math.unit(6.5, "feet"),
  50654. name: "Front",
  50655. image: {
  50656. source: "./media/characters/poppy/front.svg",
  50657. extra: 1878/1812,
  50658. bottom: 43/1921
  50659. }
  50660. },
  50661. feet: {
  50662. height: math.unit(1.06, "feet"),
  50663. name: "Feet",
  50664. image: {
  50665. source: "./media/characters/poppy/feet.svg",
  50666. extra: 1083/1083,
  50667. bottom: 87/1170
  50668. }
  50669. },
  50670. },
  50671. [
  50672. {
  50673. name: "Human",
  50674. height: math.unit(6.5, "feet")
  50675. },
  50676. {
  50677. name: "Default",
  50678. height: math.unit(300, "feet"),
  50679. default: true
  50680. },
  50681. {
  50682. name: "Huge",
  50683. height: math.unit(850, "feet")
  50684. },
  50685. {
  50686. name: "Mega",
  50687. height: math.unit(8000, "feet")
  50688. },
  50689. {
  50690. name: "Giga",
  50691. height: math.unit(300, "miles")
  50692. },
  50693. ]
  50694. ))
  50695. characterMakers.push(() => makeCharacter(
  50696. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50697. {
  50698. bipedal: {
  50699. height: math.unit(7, "feet"),
  50700. name: "Bipedal",
  50701. image: {
  50702. source: "./media/characters/zener/bipedal.svg",
  50703. extra: 874/805,
  50704. bottom: 109/983
  50705. }
  50706. },
  50707. quadrupedal: {
  50708. height: math.unit(4.64, "feet"),
  50709. name: "Quadrupedal",
  50710. image: {
  50711. source: "./media/characters/zener/quadrupedal.svg",
  50712. extra: 638/507,
  50713. bottom: 190/828
  50714. }
  50715. },
  50716. cock: {
  50717. height: math.unit(18, "inches"),
  50718. name: "Cock",
  50719. image: {
  50720. source: "./media/characters/zener/cock.svg"
  50721. }
  50722. },
  50723. },
  50724. [
  50725. {
  50726. name: "Normal",
  50727. height: math.unit(7, "feet"),
  50728. default: true
  50729. },
  50730. ]
  50731. ))
  50732. characterMakers.push(() => makeCharacter(
  50733. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50734. {
  50735. nude: {
  50736. height: math.unit(5 + 6/12, "feet"),
  50737. name: "Nude",
  50738. image: {
  50739. source: "./media/characters/charlie-dog/nude.svg",
  50740. extra: 768/734,
  50741. bottom: 26/794
  50742. }
  50743. },
  50744. dressed: {
  50745. height: math.unit(5 + 6/12, "feet"),
  50746. name: "Dressed",
  50747. image: {
  50748. source: "./media/characters/charlie-dog/dressed.svg",
  50749. extra: 768/734,
  50750. bottom: 26/794
  50751. }
  50752. },
  50753. },
  50754. [
  50755. {
  50756. name: "Normal",
  50757. height: math.unit(5 + 6/12, "feet"),
  50758. default: true
  50759. },
  50760. ]
  50761. ))
  50762. characterMakers.push(() => makeCharacter(
  50763. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50764. {
  50765. front: {
  50766. height: math.unit(6 + 4/12, "feet"),
  50767. name: "Front",
  50768. image: {
  50769. source: "./media/characters/ir'istrasz/front.svg",
  50770. extra: 1014/977,
  50771. bottom: 65/1079
  50772. }
  50773. },
  50774. back: {
  50775. height: math.unit(6 + 4/12, "feet"),
  50776. name: "Back",
  50777. image: {
  50778. source: "./media/characters/ir'istrasz/back.svg",
  50779. extra: 1024/992,
  50780. bottom: 34/1058
  50781. }
  50782. },
  50783. },
  50784. [
  50785. {
  50786. name: "Normal",
  50787. height: math.unit(6 + 4/12, "feet"),
  50788. default: true
  50789. },
  50790. ]
  50791. ))
  50792. characterMakers.push(() => makeCharacter(
  50793. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50794. {
  50795. front: {
  50796. height: math.unit(5 + 8/12, "feet"),
  50797. name: "Front",
  50798. image: {
  50799. source: "./media/characters/dee-ditto/front.svg",
  50800. extra: 1874/1785,
  50801. bottom: 68/1942
  50802. }
  50803. },
  50804. back: {
  50805. height: math.unit(5 + 8/12, "feet"),
  50806. name: "Back",
  50807. image: {
  50808. source: "./media/characters/dee-ditto/back.svg",
  50809. extra: 1870/1783,
  50810. bottom: 77/1947
  50811. }
  50812. },
  50813. },
  50814. [
  50815. {
  50816. name: "Normal",
  50817. height: math.unit(5 + 8/12, "feet"),
  50818. default: true
  50819. },
  50820. ]
  50821. ))
  50822. characterMakers.push(() => makeCharacter(
  50823. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50824. {
  50825. front: {
  50826. height: math.unit(7 + 6/12, "feet"),
  50827. name: "Front",
  50828. image: {
  50829. source: "./media/characters/fey/front.svg",
  50830. extra: 995/979,
  50831. bottom: 30/1025
  50832. }
  50833. },
  50834. back: {
  50835. height: math.unit(7 + 6/12, "feet"),
  50836. name: "Back",
  50837. image: {
  50838. source: "./media/characters/fey/back.svg",
  50839. extra: 1079/1008,
  50840. bottom: 5/1084
  50841. }
  50842. },
  50843. dressed: {
  50844. height: math.unit(7 + 6/12, "feet"),
  50845. name: "Dressed",
  50846. image: {
  50847. source: "./media/characters/fey/dressed.svg",
  50848. extra: 995/979,
  50849. bottom: 30/1025
  50850. }
  50851. },
  50852. },
  50853. [
  50854. {
  50855. name: "Normal",
  50856. height: math.unit(7 + 6/12, "feet"),
  50857. default: true
  50858. },
  50859. ]
  50860. ))
  50861. characterMakers.push(() => makeCharacter(
  50862. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50863. {
  50864. standing: {
  50865. height: math.unit(17, "feet"),
  50866. name: "Standing",
  50867. image: {
  50868. source: "./media/characters/aster/standing.svg",
  50869. extra: 1798/1598,
  50870. bottom: 117/1915
  50871. }
  50872. },
  50873. },
  50874. [
  50875. {
  50876. name: "Normal",
  50877. height: math.unit(17, "feet"),
  50878. default: true
  50879. },
  50880. {
  50881. name: "Homewrecker",
  50882. height: math.unit(95, "feet")
  50883. },
  50884. {
  50885. name: "Planet Devourer",
  50886. height: math.unit(1008000, "miles")
  50887. },
  50888. ]
  50889. ))
  50890. characterMakers.push(() => makeCharacter(
  50891. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50892. {
  50893. front: {
  50894. height: math.unit(6 + 5/12, "feet"),
  50895. weight: math.unit(265, "lb"),
  50896. name: "Front",
  50897. image: {
  50898. source: "./media/characters/devon-childs/front.svg",
  50899. extra: 1795/1721,
  50900. bottom: 41/1836
  50901. }
  50902. },
  50903. side: {
  50904. height: math.unit(6 + 5/12, "feet"),
  50905. weight: math.unit(265, "lb"),
  50906. name: "Side",
  50907. image: {
  50908. source: "./media/characters/devon-childs/side.svg",
  50909. extra: 1812/1738,
  50910. bottom: 30/1842
  50911. }
  50912. },
  50913. back: {
  50914. height: math.unit(6 + 5/12, "feet"),
  50915. weight: math.unit(265, "lb"),
  50916. name: "Back",
  50917. image: {
  50918. source: "./media/characters/devon-childs/back.svg",
  50919. extra: 1808/1735,
  50920. bottom: 23/1831
  50921. }
  50922. },
  50923. hand: {
  50924. height: math.unit(1.464, "feet"),
  50925. name: "Hand",
  50926. image: {
  50927. source: "./media/characters/devon-childs/hand.svg"
  50928. }
  50929. },
  50930. foot: {
  50931. height: math.unit(1.6, "feet"),
  50932. name: "Foot",
  50933. image: {
  50934. source: "./media/characters/devon-childs/foot.svg"
  50935. }
  50936. },
  50937. },
  50938. [
  50939. {
  50940. name: "Micro",
  50941. height: math.unit(7, "cm")
  50942. },
  50943. {
  50944. name: "Normal",
  50945. height: math.unit(6 + 5/12, "feet"),
  50946. default: true
  50947. },
  50948. {
  50949. name: "Macro",
  50950. height: math.unit(154, "feet")
  50951. },
  50952. ]
  50953. ))
  50954. characterMakers.push(() => makeCharacter(
  50955. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50956. {
  50957. front: {
  50958. height: math.unit(6, "feet"),
  50959. weight: math.unit(180, "lb"),
  50960. name: "Front",
  50961. image: {
  50962. source: "./media/characters/lydemox-vir/front.svg",
  50963. extra: 1632/1435,
  50964. bottom: 58/1690
  50965. }
  50966. },
  50967. frontSFW: {
  50968. height: math.unit(6, "feet"),
  50969. weight: math.unit(180, "lb"),
  50970. name: "Front (SFW)",
  50971. image: {
  50972. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50973. extra: 1632/1435,
  50974. bottom: 58/1690
  50975. }
  50976. },
  50977. back: {
  50978. height: math.unit(6, "feet"),
  50979. weight: math.unit(180, "lb"),
  50980. name: "Back",
  50981. image: {
  50982. source: "./media/characters/lydemox-vir/back.svg",
  50983. extra: 1593/1408,
  50984. bottom: 31/1624
  50985. }
  50986. },
  50987. paw: {
  50988. height: math.unit(1.85, "feet"),
  50989. name: "Paw",
  50990. image: {
  50991. source: "./media/characters/lydemox-vir/paw.svg"
  50992. }
  50993. },
  50994. dick: {
  50995. height: math.unit(1.8, "feet"),
  50996. name: "Dick",
  50997. image: {
  50998. source: "./media/characters/lydemox-vir/dick.svg"
  50999. }
  51000. },
  51001. },
  51002. [
  51003. {
  51004. name: "Macro",
  51005. height: math.unit(100, "feet"),
  51006. default: true
  51007. },
  51008. {
  51009. name: "Teramacro",
  51010. height: math.unit(1, "earth")
  51011. },
  51012. {
  51013. name: "Planetary",
  51014. height: math.unit(20, "earths")
  51015. },
  51016. ]
  51017. ))
  51018. characterMakers.push(() => makeCharacter(
  51019. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51020. {
  51021. front: {
  51022. height: math.unit(15 + 8/12, "feet"),
  51023. weight: math.unit(1237, "kg"),
  51024. name: "Front",
  51025. image: {
  51026. source: "./media/characters/mia/front.svg",
  51027. extra: 1573/1446,
  51028. bottom: 58/1631
  51029. }
  51030. },
  51031. },
  51032. [
  51033. {
  51034. name: "Small",
  51035. height: math.unit(9 + 5/12, "feet")
  51036. },
  51037. {
  51038. name: "Normal",
  51039. height: math.unit(15 + 8/12, "feet"),
  51040. default: true
  51041. },
  51042. ]
  51043. ))
  51044. characterMakers.push(() => makeCharacter(
  51045. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51046. {
  51047. front: {
  51048. height: math.unit(10 + 6/12, "feet"),
  51049. weight: math.unit(1.3, "tons"),
  51050. name: "Front",
  51051. image: {
  51052. source: "./media/characters/mr-graves/front.svg",
  51053. extra: 1779/1695,
  51054. bottom: 198/1977
  51055. }
  51056. },
  51057. },
  51058. [
  51059. {
  51060. name: "Normal",
  51061. height: math.unit(10 + 6 /12, "feet"),
  51062. default: true
  51063. },
  51064. ]
  51065. ))
  51066. characterMakers.push(() => makeCharacter(
  51067. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51068. {
  51069. dressedFront: {
  51070. height: math.unit(5 + 8/12, "feet"),
  51071. weight: math.unit(125, "lb"),
  51072. name: "Dressed (Front)",
  51073. image: {
  51074. source: "./media/characters/jess/dressed-front.svg",
  51075. extra: 1176/1152,
  51076. bottom: 42/1218
  51077. }
  51078. },
  51079. dressedSide: {
  51080. height: math.unit(5 + 8/12, "feet"),
  51081. weight: math.unit(125, "lb"),
  51082. name: "Dressed (Side)",
  51083. image: {
  51084. source: "./media/characters/jess/dressed-side.svg",
  51085. extra: 1204/1190,
  51086. bottom: 6/1210
  51087. }
  51088. },
  51089. nudeFront: {
  51090. height: math.unit(5 + 8/12, "feet"),
  51091. weight: math.unit(125, "lb"),
  51092. name: "Nude (Front)",
  51093. image: {
  51094. source: "./media/characters/jess/nude-front.svg",
  51095. extra: 1176/1152,
  51096. bottom: 42/1218
  51097. }
  51098. },
  51099. nudeSide: {
  51100. height: math.unit(5 + 8/12, "feet"),
  51101. weight: math.unit(125, "lb"),
  51102. name: "Nude (Side)",
  51103. image: {
  51104. source: "./media/characters/jess/nude-side.svg",
  51105. extra: 1204/1190,
  51106. bottom: 6/1210
  51107. }
  51108. },
  51109. organsFront: {
  51110. height: math.unit(2.83799342105, "feet"),
  51111. name: "Organs (Front)",
  51112. image: {
  51113. source: "./media/characters/jess/organs-front.svg"
  51114. }
  51115. },
  51116. organsSide: {
  51117. height: math.unit(2.64225290474, "feet"),
  51118. name: "Organs (Side)",
  51119. image: {
  51120. source: "./media/characters/jess/organs-side.svg"
  51121. }
  51122. },
  51123. digestiveTractFront: {
  51124. height: math.unit(2.8106580871, "feet"),
  51125. name: "Digestive Tract (Front)",
  51126. image: {
  51127. source: "./media/characters/jess/digestive-tract-front.svg"
  51128. }
  51129. },
  51130. digestiveTractSide: {
  51131. height: math.unit(2.54365045014, "feet"),
  51132. name: "Digestive Tract (Side)",
  51133. image: {
  51134. source: "./media/characters/jess/digestive-tract-side.svg"
  51135. }
  51136. },
  51137. respiratorySystemFront: {
  51138. height: math.unit(1.11196233456, "feet"),
  51139. name: "Respiratory System (Front)",
  51140. image: {
  51141. source: "./media/characters/jess/respiratory-system-front.svg"
  51142. }
  51143. },
  51144. respiratorySystemSide: {
  51145. height: math.unit(0.89327966297, "feet"),
  51146. name: "Respiratory System (Side)",
  51147. image: {
  51148. source: "./media/characters/jess/respiratory-system-side.svg"
  51149. }
  51150. },
  51151. urinaryTractFront: {
  51152. height: math.unit(1.16126356186, "feet"),
  51153. name: "Urinary Tract (Front)",
  51154. image: {
  51155. source: "./media/characters/jess/urinary-tract-front.svg"
  51156. }
  51157. },
  51158. urinaryTractSide: {
  51159. height: math.unit(1.20910039627, "feet"),
  51160. name: "Urinary Tract (Side)",
  51161. image: {
  51162. source: "./media/characters/jess/urinary-tract-side.svg"
  51163. }
  51164. },
  51165. reproductiveOrgansFront: {
  51166. height: math.unit(0.48422591566, "feet"),
  51167. name: "Reproductive Organs (Front)",
  51168. image: {
  51169. source: "./media/characters/jess/reproductive-organs-front.svg"
  51170. }
  51171. },
  51172. reproductiveOrgansSide: {
  51173. height: math.unit(0.61553314481, "feet"),
  51174. name: "Reproductive Organs (Side)",
  51175. image: {
  51176. source: "./media/characters/jess/reproductive-organs-side.svg"
  51177. }
  51178. },
  51179. breastsFront: {
  51180. height: math.unit(0.47690395121, "feet"),
  51181. name: "Breasts (Front)",
  51182. image: {
  51183. source: "./media/characters/jess/breasts-front.svg"
  51184. }
  51185. },
  51186. breastsSide: {
  51187. height: math.unit(0.30556998307, "feet"),
  51188. name: "Breasts (Side)",
  51189. image: {
  51190. source: "./media/characters/jess/breasts-side.svg"
  51191. }
  51192. },
  51193. heartFront: {
  51194. height: math.unit(0.53011022622, "feet"),
  51195. name: "Heart (Front)",
  51196. image: {
  51197. source: "./media/characters/jess/heart-front.svg"
  51198. }
  51199. },
  51200. heartSide: {
  51201. height: math.unit(0.51790695213, "feet"),
  51202. name: "Heart (Side)",
  51203. image: {
  51204. source: "./media/characters/jess/heart-side.svg"
  51205. }
  51206. },
  51207. earsAndNoseFront: {
  51208. height: math.unit(0.29385483995, "feet"),
  51209. name: "Ears and Nose (Front)",
  51210. image: {
  51211. source: "./media/characters/jess/ears-and-nose-front.svg"
  51212. }
  51213. },
  51214. earsAndNoseSide: {
  51215. height: math.unit(0.18109658741, "feet"),
  51216. name: "Ears and Nose (Side)",
  51217. image: {
  51218. source: "./media/characters/jess/ears-and-nose-side.svg"
  51219. }
  51220. },
  51221. },
  51222. [
  51223. {
  51224. name: "Normal",
  51225. height: math.unit(5 + 8/12, "feet"),
  51226. default: true
  51227. },
  51228. ]
  51229. ))
  51230. characterMakers.push(() => makeCharacter(
  51231. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51232. {
  51233. front: {
  51234. height: math.unit(6, "feet"),
  51235. weight: math.unit(6.64467e-7, "grams"),
  51236. name: "Front",
  51237. image: {
  51238. source: "./media/characters/wimpering/front.svg",
  51239. extra: 597/587,
  51240. bottom: 34/631
  51241. }
  51242. },
  51243. },
  51244. [
  51245. {
  51246. name: "Micro",
  51247. height: math.unit(0.4, "mm"),
  51248. default: true
  51249. },
  51250. ]
  51251. ))
  51252. characterMakers.push(() => makeCharacter(
  51253. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51254. {
  51255. front: {
  51256. height: math.unit(5 + 2/12, "feet"),
  51257. weight: math.unit(110, "lb"),
  51258. name: "Front",
  51259. image: {
  51260. source: "./media/characters/keltre/front.svg",
  51261. extra: 1099/1057,
  51262. bottom: 22/1121
  51263. }
  51264. },
  51265. back: {
  51266. height: math.unit(5 + 2/12, "feet"),
  51267. weight: math.unit(110, "lb"),
  51268. name: "Back",
  51269. image: {
  51270. source: "./media/characters/keltre/back.svg",
  51271. extra: 1095/1053,
  51272. bottom: 17/1112
  51273. }
  51274. },
  51275. dressed: {
  51276. height: math.unit(5 + 2/12, "feet"),
  51277. weight: math.unit(110, "lb"),
  51278. name: "Dressed",
  51279. image: {
  51280. source: "./media/characters/keltre/dressed.svg",
  51281. extra: 1099/1057,
  51282. bottom: 22/1121
  51283. }
  51284. },
  51285. winter: {
  51286. height: math.unit(5 + 2/12, "feet"),
  51287. weight: math.unit(110, "lb"),
  51288. name: "Winter",
  51289. image: {
  51290. source: "./media/characters/keltre/winter.svg",
  51291. extra: 1099/1057,
  51292. bottom: 22/1121
  51293. }
  51294. },
  51295. head: {
  51296. height: math.unit(1.61 * 0.86, "feet"),
  51297. name: "Head",
  51298. image: {
  51299. source: "./media/characters/keltre/head.svg",
  51300. extra: 534/421,
  51301. bottom: 0/534
  51302. }
  51303. },
  51304. hand: {
  51305. height: math.unit(1.3 * 0.86, "feet"),
  51306. name: "Hand",
  51307. image: {
  51308. source: "./media/characters/keltre/hand.svg"
  51309. }
  51310. },
  51311. foot: {
  51312. height: math.unit(1.8 * 0.86, "feet"),
  51313. name: "Foot",
  51314. image: {
  51315. source: "./media/characters/keltre/foot.svg"
  51316. }
  51317. },
  51318. },
  51319. [
  51320. {
  51321. name: "Fine",
  51322. height: math.unit(1, "inch")
  51323. },
  51324. {
  51325. name: "Dimnutive",
  51326. height: math.unit(4, "inches")
  51327. },
  51328. {
  51329. name: "Tiny",
  51330. height: math.unit(1, "foot")
  51331. },
  51332. {
  51333. name: "Small",
  51334. height: math.unit(3, "feet")
  51335. },
  51336. {
  51337. name: "Normal",
  51338. height: math.unit(5 + 2/12, "feet"),
  51339. default: true
  51340. },
  51341. ]
  51342. ))
  51343. characterMakers.push(() => makeCharacter(
  51344. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51345. {
  51346. front: {
  51347. height: math.unit(6 + 2/12, "feet"),
  51348. name: "Front",
  51349. image: {
  51350. source: "./media/characters/nox/front.svg",
  51351. extra: 1917/1830,
  51352. bottom: 74/1991
  51353. }
  51354. },
  51355. back: {
  51356. height: math.unit(6 + 2/12, "feet"),
  51357. name: "Back",
  51358. image: {
  51359. source: "./media/characters/nox/back.svg",
  51360. extra: 1896/1815,
  51361. bottom: 21/1917
  51362. }
  51363. },
  51364. head: {
  51365. height: math.unit(1.1, "feet"),
  51366. name: "Head",
  51367. image: {
  51368. source: "./media/characters/nox/head.svg",
  51369. extra: 874/704,
  51370. bottom: 0/874
  51371. }
  51372. },
  51373. tattoo: {
  51374. height: math.unit(0.729, "feet"),
  51375. name: "Tattoo",
  51376. image: {
  51377. source: "./media/characters/nox/tattoo.svg"
  51378. }
  51379. },
  51380. },
  51381. [
  51382. {
  51383. name: "Normal",
  51384. height: math.unit(6 + 2/12, "feet")
  51385. },
  51386. {
  51387. name: "Gigamacro",
  51388. height: math.unit(2, "earths"),
  51389. default: true
  51390. },
  51391. {
  51392. name: "Cosmic",
  51393. height: math.unit(867, "yottameters")
  51394. },
  51395. ]
  51396. ))
  51397. characterMakers.push(() => makeCharacter(
  51398. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51399. {
  51400. front: {
  51401. height: math.unit(6, "feet"),
  51402. weight: math.unit(150, "lb"),
  51403. name: "Front",
  51404. image: {
  51405. source: "./media/characters/caspian/front.svg",
  51406. extra: 1443/1359,
  51407. bottom: 0/1443
  51408. }
  51409. },
  51410. back: {
  51411. height: math.unit(6, "feet"),
  51412. weight: math.unit(150, "lb"),
  51413. name: "Back",
  51414. image: {
  51415. source: "./media/characters/caspian/back.svg",
  51416. extra: 1379/1309,
  51417. bottom: 0/1379
  51418. }
  51419. },
  51420. head: {
  51421. height: math.unit(0.9, "feet"),
  51422. name: "Head",
  51423. image: {
  51424. source: "./media/characters/caspian/head.svg",
  51425. extra: 692/492,
  51426. bottom: 0/692
  51427. }
  51428. },
  51429. headAlt: {
  51430. height: math.unit(0.95, "feet"),
  51431. name: "Head (Alt)",
  51432. image: {
  51433. source: "./media/characters/caspian/head-alt.svg",
  51434. extra: 668/508,
  51435. bottom: 0/668
  51436. }
  51437. },
  51438. hand: {
  51439. height: math.unit(0.8, "feet"),
  51440. name: "Hand",
  51441. image: {
  51442. source: "./media/characters/caspian/hand.svg"
  51443. }
  51444. },
  51445. paw: {
  51446. height: math.unit(0.95, "feet"),
  51447. name: "Paw",
  51448. image: {
  51449. source: "./media/characters/caspian/paw.svg"
  51450. }
  51451. },
  51452. },
  51453. [
  51454. {
  51455. name: "Normal",
  51456. height: math.unit(162, "feet"),
  51457. default: true
  51458. },
  51459. ]
  51460. ))
  51461. characterMakers.push(() => makeCharacter(
  51462. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51463. {
  51464. front: {
  51465. height: math.unit(6, "feet"),
  51466. name: "Front",
  51467. image: {
  51468. source: "./media/characters/myra-aisling/front.svg",
  51469. extra: 1268/1166,
  51470. bottom: 73/1341
  51471. }
  51472. },
  51473. back: {
  51474. height: math.unit(6, "feet"),
  51475. name: "Back",
  51476. image: {
  51477. source: "./media/characters/myra-aisling/back.svg",
  51478. extra: 1249/1149,
  51479. bottom: 79/1328
  51480. }
  51481. },
  51482. dressed: {
  51483. height: math.unit(6, "feet"),
  51484. name: "Dressed",
  51485. image: {
  51486. source: "./media/characters/myra-aisling/dressed.svg",
  51487. extra: 1290/1189,
  51488. bottom: 47/1337
  51489. }
  51490. },
  51491. hand: {
  51492. height: math.unit(1.1, "feet"),
  51493. name: "Hand",
  51494. image: {
  51495. source: "./media/characters/myra-aisling/hand.svg"
  51496. }
  51497. },
  51498. paw: {
  51499. height: math.unit(1.23, "feet"),
  51500. name: "Paw",
  51501. image: {
  51502. source: "./media/characters/myra-aisling/paw.svg"
  51503. }
  51504. },
  51505. },
  51506. [
  51507. {
  51508. name: "Normal",
  51509. height: math.unit(160, "feet"),
  51510. default: true
  51511. },
  51512. ]
  51513. ))
  51514. characterMakers.push(() => makeCharacter(
  51515. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51516. {
  51517. front: {
  51518. height: math.unit(6, "feet"),
  51519. name: "Front",
  51520. image: {
  51521. source: "./media/characters/tenley-sidero/front.svg",
  51522. extra: 1365/1276,
  51523. bottom: 47/1412
  51524. }
  51525. },
  51526. back: {
  51527. height: math.unit(6, "feet"),
  51528. name: "Back",
  51529. image: {
  51530. source: "./media/characters/tenley-sidero/back.svg",
  51531. extra: 1383/1283,
  51532. bottom: 35/1418
  51533. }
  51534. },
  51535. dressed: {
  51536. height: math.unit(6, "feet"),
  51537. name: "Dressed",
  51538. image: {
  51539. source: "./media/characters/tenley-sidero/dressed.svg",
  51540. extra: 1364/1275,
  51541. bottom: 42/1406
  51542. }
  51543. },
  51544. head: {
  51545. height: math.unit(1.47, "feet"),
  51546. name: "Head",
  51547. image: {
  51548. source: "./media/characters/tenley-sidero/head.svg",
  51549. extra: 610/490,
  51550. bottom: 0/610
  51551. }
  51552. },
  51553. },
  51554. [
  51555. {
  51556. name: "Normal",
  51557. height: math.unit(154, "feet"),
  51558. default: true
  51559. },
  51560. ]
  51561. ))
  51562. characterMakers.push(() => makeCharacter(
  51563. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51564. {
  51565. front: {
  51566. height: math.unit(5, "inches"),
  51567. name: "Front",
  51568. image: {
  51569. source: "./media/characters/mallory/front.svg",
  51570. extra: 1919/1678,
  51571. bottom: 29/1948
  51572. }
  51573. },
  51574. hand: {
  51575. height: math.unit(0.73, "inches"),
  51576. name: "Hand",
  51577. image: {
  51578. source: "./media/characters/mallory/hand.svg"
  51579. }
  51580. },
  51581. paw: {
  51582. height: math.unit(0.68, "inches"),
  51583. name: "Paw",
  51584. image: {
  51585. source: "./media/characters/mallory/paw.svg"
  51586. }
  51587. },
  51588. },
  51589. [
  51590. {
  51591. name: "Small",
  51592. height: math.unit(5, "inches"),
  51593. default: true
  51594. },
  51595. ]
  51596. ))
  51597. characterMakers.push(() => makeCharacter(
  51598. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51599. {
  51600. naked: {
  51601. height: math.unit(6, "feet"),
  51602. name: "Naked",
  51603. image: {
  51604. source: "./media/characters/mab/naked.svg",
  51605. extra: 1855/1757,
  51606. bottom: 208/2063
  51607. }
  51608. },
  51609. outside: {
  51610. height: math.unit(6, "feet"),
  51611. name: "Outside",
  51612. image: {
  51613. source: "./media/characters/mab/outside.svg",
  51614. extra: 1855/1757,
  51615. bottom: 208/2063
  51616. }
  51617. },
  51618. party: {
  51619. height: math.unit(6, "feet"),
  51620. name: "Party",
  51621. image: {
  51622. source: "./media/characters/mab/party.svg",
  51623. extra: 1855/1757,
  51624. bottom: 208/2063
  51625. }
  51626. },
  51627. },
  51628. [
  51629. {
  51630. name: "Normal",
  51631. height: math.unit(165, "feet"),
  51632. default: true
  51633. },
  51634. ]
  51635. ))
  51636. characterMakers.push(() => makeCharacter(
  51637. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51638. {
  51639. feral: {
  51640. height: math.unit(12, "feet"),
  51641. weight: math.unit(20000, "lb"),
  51642. name: "Side",
  51643. image: {
  51644. source: "./media/characters/winter/feral.svg",
  51645. extra: 1286/943,
  51646. bottom: 112/1398
  51647. },
  51648. form: "feral",
  51649. default: true
  51650. },
  51651. feralNsfw: {
  51652. height: math.unit(12, "feet"),
  51653. weight: math.unit(20000, "lb"),
  51654. name: "Side (NSFW)",
  51655. image: {
  51656. source: "./media/characters/winter/feral-nsfw.svg",
  51657. extra: 1286/943,
  51658. bottom: 112/1398
  51659. },
  51660. form: "feral"
  51661. },
  51662. dick: {
  51663. height: math.unit(3.79, "feet"),
  51664. name: "Dick",
  51665. image: {
  51666. source: "./media/characters/winter/dick.svg"
  51667. },
  51668. form: "feral"
  51669. },
  51670. anthro: {
  51671. height: math.unit(12, "feet"),
  51672. weight: math.unit(10, "tons"),
  51673. name: "Anthro",
  51674. image: {
  51675. source: "./media/characters/winter/anthro.svg",
  51676. extra: 1701/1553,
  51677. bottom: 64/1765
  51678. },
  51679. form: "anthro",
  51680. default: true
  51681. },
  51682. },
  51683. [
  51684. {
  51685. name: "Big",
  51686. height: math.unit(12, "feet"),
  51687. default: true,
  51688. form: "feral"
  51689. },
  51690. {
  51691. name: "Big",
  51692. height: math.unit(12, "feet"),
  51693. default: true,
  51694. form: "anthro"
  51695. },
  51696. ],
  51697. {
  51698. "feral": {
  51699. name: "Feral",
  51700. default: true
  51701. },
  51702. "anthro": {
  51703. name: "Anthro"
  51704. }
  51705. }
  51706. ))
  51707. characterMakers.push(() => makeCharacter(
  51708. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51709. {
  51710. front: {
  51711. height: math.unit(4.1, "inches"),
  51712. name: "Front",
  51713. image: {
  51714. source: "./media/characters/alto/front.svg",
  51715. extra: 736/627,
  51716. bottom: 90/826
  51717. }
  51718. },
  51719. },
  51720. [
  51721. {
  51722. name: "Normal",
  51723. height: math.unit(4.1, "inches"),
  51724. default: true
  51725. },
  51726. ]
  51727. ))
  51728. characterMakers.push(() => makeCharacter(
  51729. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51730. {
  51731. sitting: {
  51732. height: math.unit(3, "feet"),
  51733. name: "Sitting",
  51734. image: {
  51735. source: "./media/characters/ratstrid-v/sitting.svg",
  51736. extra: 355/310,
  51737. bottom: 136/491
  51738. }
  51739. },
  51740. },
  51741. [
  51742. {
  51743. name: "Normal",
  51744. height: math.unit(3, "feet"),
  51745. default: true
  51746. },
  51747. ]
  51748. ))
  51749. characterMakers.push(() => makeCharacter(
  51750. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51751. {
  51752. back: {
  51753. height: math.unit(6, "feet"),
  51754. weight: math.unit(450, "lb"),
  51755. name: "Back",
  51756. image: {
  51757. source: "./media/characters/siz/back.svg",
  51758. extra: 1449/1274,
  51759. bottom: 13/1462
  51760. }
  51761. },
  51762. },
  51763. [
  51764. {
  51765. name: "Smallest",
  51766. height: math.unit(18 + 3/12, "feet")
  51767. },
  51768. {
  51769. name: "Modest",
  51770. height: math.unit(56 + 8/12, "feet"),
  51771. default: true
  51772. },
  51773. {
  51774. name: "Largest",
  51775. height: math.unit(3590, "feet")
  51776. },
  51777. ]
  51778. ))
  51779. characterMakers.push(() => makeCharacter(
  51780. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51781. {
  51782. front: {
  51783. height: math.unit(5 + 9/12, "feet"),
  51784. weight: math.unit(150, "lb"),
  51785. name: "Front",
  51786. image: {
  51787. source: "./media/characters/ven/front.svg",
  51788. extra: 1372/1320,
  51789. bottom: 73/1445
  51790. }
  51791. },
  51792. side: {
  51793. height: math.unit(5 + 9/12, "feet"),
  51794. weight: math.unit(1150, "lb"),
  51795. name: "Side",
  51796. image: {
  51797. source: "./media/characters/ven/side.svg",
  51798. extra: 1119/1070,
  51799. bottom: 42/1161
  51800. },
  51801. default: true
  51802. },
  51803. },
  51804. [
  51805. {
  51806. name: "Normal",
  51807. height: math.unit(5 + 9/12, "feet"),
  51808. default: true
  51809. },
  51810. ]
  51811. ))
  51812. characterMakers.push(() => makeCharacter(
  51813. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51814. {
  51815. front: {
  51816. height: math.unit(12, "feet"),
  51817. weight: math.unit(1000, "kg"),
  51818. name: "Front",
  51819. image: {
  51820. source: "./media/characters/maple/front.svg",
  51821. extra: 1193/1081,
  51822. bottom: 22/1215
  51823. }
  51824. },
  51825. },
  51826. [
  51827. {
  51828. name: "Compressed",
  51829. height: math.unit(7, "feet")
  51830. },
  51831. {
  51832. name: "Normal",
  51833. height: math.unit(12, "feet"),
  51834. default: true
  51835. },
  51836. ]
  51837. ))
  51838. characterMakers.push(() => makeCharacter(
  51839. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51840. {
  51841. front: {
  51842. height: math.unit(9, "feet"),
  51843. weight: math.unit(1500, "lb"),
  51844. name: "Front",
  51845. image: {
  51846. source: "./media/characters/nora/front.svg",
  51847. extra: 1348/1286,
  51848. bottom: 218/1566
  51849. }
  51850. },
  51851. erect: {
  51852. height: math.unit(9, "feet"),
  51853. weight: math.unit(11500, "lb"),
  51854. name: "Erect",
  51855. image: {
  51856. source: "./media/characters/nora/erect.svg",
  51857. extra: 1488/1433,
  51858. bottom: 133/1621
  51859. }
  51860. },
  51861. },
  51862. [
  51863. {
  51864. name: "Normal",
  51865. height: math.unit(9, "feet"),
  51866. default: true
  51867. },
  51868. ]
  51869. ))
  51870. characterMakers.push(() => makeCharacter(
  51871. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51872. {
  51873. front: {
  51874. height: math.unit(25, "feet"),
  51875. weight: math.unit(27500, "lb"),
  51876. name: "Front",
  51877. image: {
  51878. source: "./media/characters/north-caudin/front.svg",
  51879. extra: 1184/1082,
  51880. bottom: 23/1207
  51881. }
  51882. },
  51883. },
  51884. [
  51885. {
  51886. name: "Compressed",
  51887. height: math.unit(10, "feet")
  51888. },
  51889. {
  51890. name: "Normal",
  51891. height: math.unit(25, "feet"),
  51892. default: true
  51893. },
  51894. ]
  51895. ))
  51896. characterMakers.push(() => makeCharacter(
  51897. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51898. {
  51899. front: {
  51900. height: math.unit(9, "feet"),
  51901. weight: math.unit(1250, "lb"),
  51902. name: "Front",
  51903. image: {
  51904. source: "./media/characters/merrian/front.svg",
  51905. extra: 2393/2304,
  51906. bottom: 40/2433
  51907. }
  51908. },
  51909. },
  51910. [
  51911. {
  51912. name: "Normal",
  51913. height: math.unit(9, "feet"),
  51914. default: true
  51915. },
  51916. ]
  51917. ))
  51918. characterMakers.push(() => makeCharacter(
  51919. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51920. {
  51921. front: {
  51922. height: math.unit(9, "feet"),
  51923. weight: math.unit(1000, "lb"),
  51924. name: "Front",
  51925. image: {
  51926. source: "./media/characters/hazel/front.svg",
  51927. extra: 2351/2298,
  51928. bottom: 38/2389
  51929. }
  51930. },
  51931. },
  51932. [
  51933. {
  51934. name: "Normal",
  51935. height: math.unit(9, "feet"),
  51936. default: true
  51937. },
  51938. ]
  51939. ))
  51940. characterMakers.push(() => makeCharacter(
  51941. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51942. {
  51943. front: {
  51944. height: math.unit(13, "feet"),
  51945. weight: math.unit(3200, "lb"),
  51946. name: "Front",
  51947. image: {
  51948. source: "./media/characters/emma/front.svg",
  51949. extra: 2263/2029,
  51950. bottom: 68/2331
  51951. }
  51952. },
  51953. },
  51954. [
  51955. {
  51956. name: "Normal",
  51957. height: math.unit(13, "feet"),
  51958. default: true
  51959. },
  51960. ]
  51961. ))
  51962. characterMakers.push(() => makeCharacter(
  51963. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51964. {
  51965. front: {
  51966. height: math.unit(11 + 9/12, "feet"),
  51967. weight: math.unit(2500, "lb"),
  51968. name: "Front",
  51969. image: {
  51970. source: "./media/characters/ilumina/front.svg",
  51971. extra: 2248/2209,
  51972. bottom: 164/2412
  51973. }
  51974. },
  51975. },
  51976. [
  51977. {
  51978. name: "Normal",
  51979. height: math.unit(11 + 9/12, "feet"),
  51980. default: true
  51981. },
  51982. ]
  51983. ))
  51984. characterMakers.push(() => makeCharacter(
  51985. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51986. {
  51987. front: {
  51988. height: math.unit(8 + 10/12, "feet"),
  51989. weight: math.unit(1350, "lb"),
  51990. name: "Front",
  51991. image: {
  51992. source: "./media/characters/moonshine/front.svg",
  51993. extra: 2395/2288,
  51994. bottom: 40/2435
  51995. }
  51996. },
  51997. },
  51998. [
  51999. {
  52000. name: "Normal",
  52001. height: math.unit(8 + 10/12, "feet"),
  52002. default: true
  52003. },
  52004. ]
  52005. ))
  52006. characterMakers.push(() => makeCharacter(
  52007. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52008. {
  52009. front: {
  52010. height: math.unit(14, "feet"),
  52011. weight: math.unit(3400, "lb"),
  52012. name: "Front",
  52013. image: {
  52014. source: "./media/characters/aletia/front.svg",
  52015. extra: 1185/1052,
  52016. bottom: 21/1206
  52017. }
  52018. },
  52019. },
  52020. [
  52021. {
  52022. name: "Compressed",
  52023. height: math.unit(8, "feet")
  52024. },
  52025. {
  52026. name: "Normal",
  52027. height: math.unit(14, "feet"),
  52028. default: true
  52029. },
  52030. ]
  52031. ))
  52032. characterMakers.push(() => makeCharacter(
  52033. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52034. {
  52035. front: {
  52036. height: math.unit(17, "feet"),
  52037. weight: math.unit(6500, "lb"),
  52038. name: "Front",
  52039. image: {
  52040. source: "./media/characters/deidra/front.svg",
  52041. extra: 1201/1081,
  52042. bottom: 16/1217
  52043. }
  52044. },
  52045. },
  52046. [
  52047. {
  52048. name: "Compressed",
  52049. height: math.unit(9 + 6/12, "feet")
  52050. },
  52051. {
  52052. name: "Normal",
  52053. height: math.unit(17, "feet"),
  52054. default: true
  52055. },
  52056. ]
  52057. ))
  52058. characterMakers.push(() => makeCharacter(
  52059. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52060. {
  52061. front: {
  52062. height: math.unit(7 + 4/12, "feet"),
  52063. weight: math.unit(280, "lb"),
  52064. name: "Front",
  52065. image: {
  52066. source: "./media/characters/freki-yrmori/front.svg",
  52067. extra: 1286/1182,
  52068. bottom: 29/1315
  52069. }
  52070. },
  52071. maw: {
  52072. height: math.unit(0.9, "feet"),
  52073. name: "Maw",
  52074. image: {
  52075. source: "./media/characters/freki-yrmori/maw.svg"
  52076. }
  52077. },
  52078. },
  52079. [
  52080. {
  52081. name: "Normal",
  52082. height: math.unit(7 + 4/12, "feet"),
  52083. default: true
  52084. },
  52085. {
  52086. name: "Macro",
  52087. height: math.unit(38.5, "meters")
  52088. },
  52089. ]
  52090. ))
  52091. characterMakers.push(() => makeCharacter(
  52092. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52093. {
  52094. side: {
  52095. height: math.unit(47.2, "meters"),
  52096. weight: math.unit(10000, "tons"),
  52097. name: "Side",
  52098. image: {
  52099. source: "./media/characters/aetherios/side.svg",
  52100. extra: 2363/642,
  52101. bottom: 221/2584
  52102. }
  52103. },
  52104. top: {
  52105. height: math.unit(240, "meters"),
  52106. weight: math.unit(10000, "tons"),
  52107. name: "Top",
  52108. image: {
  52109. source: "./media/characters/aetherios/top.svg"
  52110. }
  52111. },
  52112. bottom: {
  52113. height: math.unit(240, "meters"),
  52114. weight: math.unit(10000, "tons"),
  52115. name: "Bottom",
  52116. image: {
  52117. source: "./media/characters/aetherios/bottom.svg"
  52118. }
  52119. },
  52120. head: {
  52121. height: math.unit(38.6, "meters"),
  52122. name: "Head",
  52123. image: {
  52124. source: "./media/characters/aetherios/head.svg",
  52125. extra: 1335/1112,
  52126. bottom: 0/1335
  52127. }
  52128. },
  52129. front: {
  52130. height: math.unit(29, "meters"),
  52131. name: "Front",
  52132. image: {
  52133. source: "./media/characters/aetherios/front.svg",
  52134. extra: 1266/953,
  52135. bottom: 158/1424
  52136. }
  52137. },
  52138. maw: {
  52139. height: math.unit(16.37, "meters"),
  52140. name: "Maw",
  52141. image: {
  52142. source: "./media/characters/aetherios/maw.svg",
  52143. extra: 748/637,
  52144. bottom: 0/748
  52145. },
  52146. extraAttributes: {
  52147. preyCapacity: {
  52148. name: "Capacity",
  52149. power: 3,
  52150. type: "volume",
  52151. base: math.unit(1000, "people")
  52152. },
  52153. tongueSize: {
  52154. name: "Tongue Size",
  52155. power: 2,
  52156. type: "area",
  52157. base: math.unit(21, "m^2")
  52158. }
  52159. }
  52160. },
  52161. forepaw: {
  52162. height: math.unit(18, "meters"),
  52163. name: "Forepaw",
  52164. image: {
  52165. source: "./media/characters/aetherios/forepaw.svg"
  52166. }
  52167. },
  52168. hindpaw: {
  52169. height: math.unit(23, "meters"),
  52170. name: "Hindpaw",
  52171. image: {
  52172. source: "./media/characters/aetherios/hindpaw.svg"
  52173. }
  52174. },
  52175. genitals: {
  52176. height: math.unit(42, "meters"),
  52177. name: "Genitals",
  52178. image: {
  52179. source: "./media/characters/aetherios/genitals.svg"
  52180. }
  52181. },
  52182. },
  52183. [
  52184. {
  52185. name: "Normal",
  52186. height: math.unit(47.2, "meters"),
  52187. default: true
  52188. },
  52189. {
  52190. name: "Macro",
  52191. height: math.unit(160, "meters")
  52192. },
  52193. {
  52194. name: "Mega",
  52195. height: math.unit(1.87, "km")
  52196. },
  52197. {
  52198. name: "Giga",
  52199. height: math.unit(40000, "km")
  52200. },
  52201. {
  52202. name: "Stellar",
  52203. height: math.unit(158000000, "km")
  52204. },
  52205. {
  52206. name: "Cosmic",
  52207. height: math.unit(9.46e12, "km")
  52208. },
  52209. ]
  52210. ))
  52211. characterMakers.push(() => makeCharacter(
  52212. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52213. {
  52214. front: {
  52215. height: math.unit(5 + 4/12, "feet"),
  52216. weight: math.unit(80, "lb"),
  52217. name: "Front",
  52218. image: {
  52219. source: "./media/characters/mizu-gieeg/front.svg",
  52220. extra: 850/709,
  52221. bottom: 52/902
  52222. }
  52223. },
  52224. back: {
  52225. height: math.unit(5 + 4/12, "feet"),
  52226. weight: math.unit(80, "lb"),
  52227. name: "Back",
  52228. image: {
  52229. source: "./media/characters/mizu-gieeg/back.svg",
  52230. extra: 882/745,
  52231. bottom: 25/907
  52232. }
  52233. },
  52234. },
  52235. [
  52236. {
  52237. name: "Normal",
  52238. height: math.unit(5 + 4/12, "feet"),
  52239. default: true
  52240. },
  52241. ]
  52242. ))
  52243. characterMakers.push(() => makeCharacter(
  52244. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52245. {
  52246. front: {
  52247. height: math.unit(6, "feet"),
  52248. name: "Front",
  52249. image: {
  52250. source: "./media/characters/roselle-st-papier/front.svg",
  52251. extra: 1430/1280,
  52252. bottom: 37/1467
  52253. }
  52254. },
  52255. back: {
  52256. height: math.unit(6, "feet"),
  52257. name: "Back",
  52258. image: {
  52259. source: "./media/characters/roselle-st-papier/back.svg",
  52260. extra: 1491/1296,
  52261. bottom: 23/1514
  52262. }
  52263. },
  52264. ear: {
  52265. height: math.unit(1.26, "feet"),
  52266. name: "Ear",
  52267. image: {
  52268. source: "./media/characters/roselle-st-papier/ear.svg"
  52269. }
  52270. },
  52271. },
  52272. [
  52273. {
  52274. name: "Normal",
  52275. height: math.unit(150, "feet"),
  52276. default: true
  52277. },
  52278. ]
  52279. ))
  52280. characterMakers.push(() => makeCharacter(
  52281. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52282. {
  52283. front: {
  52284. height: math.unit(1, "inches"),
  52285. name: "Front",
  52286. image: {
  52287. source: "./media/characters/valargent/front.svg",
  52288. extra: 1825/1694,
  52289. bottom: 62/1887
  52290. }
  52291. },
  52292. back: {
  52293. height: math.unit(1, "inches"),
  52294. name: "Back",
  52295. image: {
  52296. source: "./media/characters/valargent/back.svg",
  52297. extra: 1775/1682,
  52298. bottom: 88/1863
  52299. }
  52300. },
  52301. },
  52302. [
  52303. {
  52304. name: "Micro",
  52305. height: math.unit(1, "inch"),
  52306. default: true
  52307. },
  52308. ]
  52309. ))
  52310. characterMakers.push(() => makeCharacter(
  52311. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52312. {
  52313. front: {
  52314. height: math.unit(3.4, "meters"),
  52315. name: "Front",
  52316. image: {
  52317. source: "./media/characters/zarina/front.svg",
  52318. extra: 1733/1425,
  52319. bottom: 93/1826
  52320. }
  52321. },
  52322. squatting: {
  52323. height: math.unit(2.14, "meters"),
  52324. name: "Squatting",
  52325. image: {
  52326. source: "./media/characters/zarina/squatting.svg",
  52327. extra: 1073/788,
  52328. bottom: 63/1136
  52329. }
  52330. },
  52331. back: {
  52332. height: math.unit(2.14, "meters"),
  52333. name: "Back",
  52334. image: {
  52335. source: "./media/characters/zarina/back.svg",
  52336. extra: 1128/885,
  52337. bottom: 0/1128
  52338. }
  52339. },
  52340. },
  52341. [
  52342. {
  52343. name: "Normal",
  52344. height: math.unit(3.4, "meters"),
  52345. default: true
  52346. },
  52347. {
  52348. name: "Big",
  52349. height: math.unit(5, "meters")
  52350. },
  52351. {
  52352. name: "Macro",
  52353. height: math.unit(110, "meters")
  52354. },
  52355. ]
  52356. ))
  52357. characterMakers.push(() => makeCharacter(
  52358. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52359. {
  52360. front: {
  52361. height: math.unit(7, "feet"),
  52362. name: "Front",
  52363. image: {
  52364. source: "./media/characters/ventus-astro-fox/front.svg",
  52365. extra: 1792/1623,
  52366. bottom: 28/1820
  52367. }
  52368. },
  52369. back: {
  52370. height: math.unit(7, "feet"),
  52371. name: "Back",
  52372. image: {
  52373. source: "./media/characters/ventus-astro-fox/back.svg",
  52374. extra: 1789/1620,
  52375. bottom: 31/1820
  52376. }
  52377. },
  52378. outfit: {
  52379. height: math.unit(7, "feet"),
  52380. name: "Outfit",
  52381. image: {
  52382. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52383. extra: 1054/925,
  52384. bottom: 15/1069
  52385. }
  52386. },
  52387. head: {
  52388. height: math.unit(1.12, "feet"),
  52389. name: "Head",
  52390. image: {
  52391. source: "./media/characters/ventus-astro-fox/head.svg",
  52392. extra: 866/504,
  52393. bottom: 0/866
  52394. }
  52395. },
  52396. hand: {
  52397. height: math.unit(1, "feet"),
  52398. name: "Hand",
  52399. image: {
  52400. source: "./media/characters/ventus-astro-fox/hand.svg"
  52401. }
  52402. },
  52403. paw: {
  52404. height: math.unit(1.5, "feet"),
  52405. name: "Paw",
  52406. image: {
  52407. source: "./media/characters/ventus-astro-fox/paw.svg"
  52408. }
  52409. },
  52410. },
  52411. [
  52412. {
  52413. name: "Normal",
  52414. height: math.unit(7, "feet"),
  52415. default: true
  52416. },
  52417. {
  52418. name: "Macro",
  52419. height: math.unit(200, "feet")
  52420. },
  52421. {
  52422. name: "Cosmic",
  52423. height: math.unit(3, "universes")
  52424. },
  52425. ]
  52426. ))
  52427. characterMakers.push(() => makeCharacter(
  52428. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52429. {
  52430. front: {
  52431. height: math.unit(3, "meters"),
  52432. weight: math.unit(7000, "lb"),
  52433. name: "Front",
  52434. image: {
  52435. source: "./media/characters/core-t/front.svg",
  52436. extra: 5729/4941,
  52437. bottom: 1129/6858
  52438. }
  52439. },
  52440. },
  52441. [
  52442. {
  52443. name: "Big",
  52444. height: math.unit(3, "meters"),
  52445. default: true
  52446. },
  52447. ]
  52448. ))
  52449. characterMakers.push(() => makeCharacter(
  52450. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52451. {
  52452. normal: {
  52453. height: math.unit(6 + 6/12, "feet"),
  52454. weight: math.unit(275, "lb"),
  52455. name: "Front",
  52456. image: {
  52457. source: "./media/characters/cadbunny/normal.svg",
  52458. extra: 1129/947,
  52459. bottom: 93/1222
  52460. },
  52461. default: true,
  52462. form: "normal"
  52463. },
  52464. gigantamax: {
  52465. height: math.unit(26, "feet"),
  52466. weight: math.unit(16000, "lb"),
  52467. name: "Front",
  52468. image: {
  52469. source: "./media/characters/cadbunny/gigantamax.svg",
  52470. extra: 1133/944,
  52471. bottom: 90/1223
  52472. },
  52473. default: true,
  52474. form: "gigantamax"
  52475. },
  52476. },
  52477. [
  52478. {
  52479. name: "Normal",
  52480. height: math.unit(6 + 6/12, "feet"),
  52481. default: true,
  52482. form: "normal"
  52483. },
  52484. {
  52485. name: "Small",
  52486. height: math.unit(26, "feet"),
  52487. default: true,
  52488. form: "gigantamax"
  52489. },
  52490. {
  52491. name: "Large",
  52492. height: math.unit(78, "feet"),
  52493. form: "gigantamax"
  52494. },
  52495. ],
  52496. {
  52497. "normal": {
  52498. name: "Normal",
  52499. default: true
  52500. },
  52501. "gigantamax": {
  52502. name: "Gigantamax"
  52503. }
  52504. }
  52505. ))
  52506. characterMakers.push(() => makeCharacter(
  52507. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52508. {
  52509. anthroFront: {
  52510. height: math.unit(8, "feet"),
  52511. weight: math.unit(300, "lb"),
  52512. name: "Front",
  52513. image: {
  52514. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52515. extra: 1272/1176,
  52516. bottom: 53/1325
  52517. },
  52518. form: "anthro",
  52519. default: true
  52520. },
  52521. feralSide: {
  52522. height: math.unit(4, "feet"),
  52523. weight: math.unit(250, "lb"),
  52524. name: "Side",
  52525. image: {
  52526. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52527. extra: 731/621,
  52528. bottom: 0/731
  52529. },
  52530. form: "feral",
  52531. default: true
  52532. },
  52533. },
  52534. [
  52535. {
  52536. name: "Regular",
  52537. height: math.unit(8, "feet"),
  52538. form: "anthro"
  52539. },
  52540. {
  52541. name: "Macro",
  52542. height: math.unit(250, "feet"),
  52543. form: "anthro",
  52544. default: true
  52545. },
  52546. {
  52547. name: "Regular",
  52548. height: math.unit(4, "feet"),
  52549. form: "feral"
  52550. },
  52551. {
  52552. name: "Macro",
  52553. height: math.unit(125, "feet"),
  52554. form: "feral",
  52555. default: true
  52556. },
  52557. ],
  52558. {
  52559. "anthro": {
  52560. name: "Anthro",
  52561. default: true
  52562. },
  52563. "feral": {
  52564. name: "Feral",
  52565. },
  52566. }
  52567. ))
  52568. characterMakers.push(() => makeCharacter(
  52569. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52570. {
  52571. front: {
  52572. height: math.unit(11 + 10/12, "feet"),
  52573. weight: math.unit(1587, "kg"),
  52574. name: "Front",
  52575. image: {
  52576. source: "./media/characters/maple-javira-dragon/front.svg",
  52577. extra: 1136/744,
  52578. bottom: 73/1209
  52579. }
  52580. },
  52581. side: {
  52582. height: math.unit(11 + 10/12, "feet"),
  52583. weight: math.unit(1587, "kg"),
  52584. name: "Side",
  52585. image: {
  52586. source: "./media/characters/maple-javira-dragon/side.svg",
  52587. extra: 712/505,
  52588. bottom: 17/729
  52589. }
  52590. },
  52591. head: {
  52592. height: math.unit(8.05, "feet"),
  52593. name: "Head",
  52594. image: {
  52595. source: "./media/characters/maple-javira-dragon/head.svg",
  52596. extra: 1420/1344,
  52597. bottom: 0/1420
  52598. }
  52599. },
  52600. },
  52601. [
  52602. {
  52603. name: "Normal",
  52604. height: math.unit(11 + 10/12, "feet"),
  52605. default: true
  52606. },
  52607. ]
  52608. ))
  52609. characterMakers.push(() => makeCharacter(
  52610. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52611. {
  52612. front: {
  52613. height: math.unit(117, "cm"),
  52614. weight: math.unit(50, "kg"),
  52615. name: "Front",
  52616. image: {
  52617. source: "./media/characters/sonia-wyverntail/front.svg",
  52618. extra: 708/592,
  52619. bottom: 25/733
  52620. }
  52621. },
  52622. },
  52623. [
  52624. {
  52625. name: "Normal",
  52626. height: math.unit(117, "cm"),
  52627. default: true
  52628. },
  52629. ]
  52630. ))
  52631. characterMakers.push(() => makeCharacter(
  52632. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52633. {
  52634. front: {
  52635. height: math.unit(6 + 5/12, "feet"),
  52636. name: "Front",
  52637. image: {
  52638. source: "./media/characters/micah/front.svg",
  52639. extra: 1758/1546,
  52640. bottom: 214/1972
  52641. }
  52642. },
  52643. },
  52644. [
  52645. {
  52646. name: "Normal",
  52647. height: math.unit(6 + 5/12, "feet"),
  52648. default: true
  52649. },
  52650. ]
  52651. ))
  52652. characterMakers.push(() => makeCharacter(
  52653. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52654. {
  52655. front: {
  52656. height: math.unit(1.75, "meters"),
  52657. weight: math.unit(100, "kg"),
  52658. name: "Front",
  52659. image: {
  52660. source: "./media/characters/zarya/front.svg",
  52661. extra: 741/735,
  52662. bottom: 44/785
  52663. },
  52664. extraAttributes: {
  52665. "tailLength": {
  52666. name: "Tail Length",
  52667. power: 1,
  52668. type: "length",
  52669. base: math.unit(180, "cm")
  52670. },
  52671. "pawLength": {
  52672. name: "Paw Length",
  52673. power: 1,
  52674. type: "length",
  52675. base: math.unit(31, "cm")
  52676. },
  52677. }
  52678. },
  52679. side: {
  52680. height: math.unit(1.75, "meters"),
  52681. weight: math.unit(100, "kg"),
  52682. name: "Side",
  52683. image: {
  52684. source: "./media/characters/zarya/side.svg",
  52685. extra: 776/770,
  52686. bottom: 17/793
  52687. },
  52688. extraAttributes: {
  52689. "tailLength": {
  52690. name: "Tail Length",
  52691. power: 1,
  52692. type: "length",
  52693. base: math.unit(180, "cm")
  52694. },
  52695. "pawLength": {
  52696. name: "Paw Length",
  52697. power: 1,
  52698. type: "length",
  52699. base: math.unit(31, "cm")
  52700. },
  52701. }
  52702. },
  52703. back: {
  52704. height: math.unit(1.75, "meters"),
  52705. weight: math.unit(100, "kg"),
  52706. name: "Back",
  52707. image: {
  52708. source: "./media/characters/zarya/back.svg",
  52709. extra: 741/735,
  52710. bottom: 44/785
  52711. },
  52712. extraAttributes: {
  52713. "tailLength": {
  52714. name: "Tail Length",
  52715. power: 1,
  52716. type: "length",
  52717. base: math.unit(180, "cm")
  52718. },
  52719. "pawLength": {
  52720. name: "Paw Length",
  52721. power: 1,
  52722. type: "length",
  52723. base: math.unit(31, "cm")
  52724. },
  52725. }
  52726. },
  52727. frontNoTail: {
  52728. height: math.unit(1.75, "meters"),
  52729. weight: math.unit(100, "kg"),
  52730. name: "Front (No Tail)",
  52731. image: {
  52732. source: "./media/characters/zarya/front-no-tail.svg",
  52733. extra: 741/735,
  52734. bottom: 44/785
  52735. },
  52736. extraAttributes: {
  52737. "tailLength": {
  52738. name: "Tail Length",
  52739. power: 1,
  52740. type: "length",
  52741. base: math.unit(180, "cm")
  52742. },
  52743. "pawLength": {
  52744. name: "Paw Length",
  52745. power: 1,
  52746. type: "length",
  52747. base: math.unit(31, "cm")
  52748. },
  52749. }
  52750. },
  52751. dressed: {
  52752. height: math.unit(1.75, "meters"),
  52753. weight: math.unit(100, "kg"),
  52754. name: "Dressed",
  52755. image: {
  52756. source: "./media/characters/zarya/dressed.svg",
  52757. extra: 683/672,
  52758. bottom: 79/762
  52759. },
  52760. extraAttributes: {
  52761. "tailLength": {
  52762. name: "Tail Length",
  52763. power: 1,
  52764. type: "length",
  52765. base: math.unit(180, "cm")
  52766. },
  52767. "pawLength": {
  52768. name: "Paw Length",
  52769. power: 1,
  52770. type: "length",
  52771. base: math.unit(31, "cm")
  52772. },
  52773. }
  52774. },
  52775. },
  52776. [
  52777. {
  52778. name: "Micro",
  52779. height: math.unit(5, "cm")
  52780. },
  52781. {
  52782. name: "Normal",
  52783. height: math.unit(1.75, "meters"),
  52784. default: true
  52785. },
  52786. {
  52787. name: "Macro",
  52788. height: math.unit(122, "meters")
  52789. },
  52790. ]
  52791. ))
  52792. characterMakers.push(() => makeCharacter(
  52793. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52794. {
  52795. front: {
  52796. height: math.unit(7.5, "feet"),
  52797. name: "Front",
  52798. image: {
  52799. source: "./media/characters/sven-hatisson/front.svg",
  52800. extra: 917/857,
  52801. bottom: 42/959
  52802. }
  52803. },
  52804. back: {
  52805. height: math.unit(7.5, "feet"),
  52806. name: "Back",
  52807. image: {
  52808. source: "./media/characters/sven-hatisson/back.svg",
  52809. extra: 903/856,
  52810. bottom: 15/918
  52811. }
  52812. },
  52813. },
  52814. [
  52815. {
  52816. name: "Base Height",
  52817. height: math.unit(7.5, "feet")
  52818. },
  52819. {
  52820. name: "Usual Height",
  52821. height: math.unit(13.5, "feet"),
  52822. default: true
  52823. },
  52824. {
  52825. name: "Smaller Macro",
  52826. height: math.unit(85, "feet")
  52827. },
  52828. {
  52829. name: "Moderate Macro",
  52830. height: math.unit(320, "feet")
  52831. },
  52832. {
  52833. name: "Large Macro",
  52834. height: math.unit(1000, "feet")
  52835. },
  52836. {
  52837. name: "Largest Size",
  52838. height: math.unit(2, "miles")
  52839. },
  52840. ]
  52841. ))
  52842. characterMakers.push(() => makeCharacter(
  52843. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52844. {
  52845. side: {
  52846. height: math.unit(1.8, "meters"),
  52847. weight: math.unit(275, "kg"),
  52848. name: "Side",
  52849. image: {
  52850. source: "./media/characters/terra/side.svg",
  52851. extra: 1273/1147,
  52852. bottom: 0/1273
  52853. }
  52854. },
  52855. },
  52856. [
  52857. {
  52858. name: "Normal",
  52859. height: math.unit(16.2, "meters"),
  52860. default: true
  52861. },
  52862. ]
  52863. ))
  52864. characterMakers.push(() => makeCharacter(
  52865. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52866. {
  52867. borzoiFront: {
  52868. height: math.unit(6 + 9/12, "feet"),
  52869. name: "Front",
  52870. image: {
  52871. source: "./media/characters/rae/borzoi-front.svg",
  52872. extra: 1161/1098,
  52873. bottom: 31/1192
  52874. },
  52875. form: "borzoi",
  52876. default: true
  52877. },
  52878. werewolfFront: {
  52879. height: math.unit(8 + 7/12, "feet"),
  52880. name: "Front",
  52881. image: {
  52882. source: "./media/characters/rae/werewolf-front.svg",
  52883. extra: 1411/1334,
  52884. bottom: 127/1538
  52885. },
  52886. form: "werewolf",
  52887. default: true
  52888. },
  52889. },
  52890. [
  52891. {
  52892. name: "Normal",
  52893. height: math.unit(6 + 9/12, "feet"),
  52894. default: true,
  52895. form: "borzoi"
  52896. },
  52897. {
  52898. name: "Normal",
  52899. height: math.unit(8 + 7/12, "feet"),
  52900. default: true,
  52901. form: "werewolf"
  52902. },
  52903. ],
  52904. {
  52905. "borzoi": {
  52906. name: "Borzoi",
  52907. default: true
  52908. },
  52909. "werewolf": {
  52910. name: "Werewolf",
  52911. },
  52912. }
  52913. ))
  52914. characterMakers.push(() => makeCharacter(
  52915. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52916. {
  52917. front: {
  52918. height: math.unit(8 + 7/12, "feet"),
  52919. weight: math.unit(482, "lb"),
  52920. name: "Front",
  52921. image: {
  52922. source: "./media/characters/kit/front.svg",
  52923. extra: 1247/1103,
  52924. bottom: 41/1288
  52925. }
  52926. },
  52927. back: {
  52928. height: math.unit(8 + 7/12, "feet"),
  52929. weight: math.unit(482, "lb"),
  52930. name: "Back",
  52931. image: {
  52932. source: "./media/characters/kit/back.svg",
  52933. extra: 1252/1123,
  52934. bottom: 21/1273
  52935. }
  52936. },
  52937. paw: {
  52938. height: math.unit(1.46, "feet"),
  52939. name: "Paw",
  52940. image: {
  52941. source: "./media/characters/kit/paw.svg"
  52942. }
  52943. },
  52944. },
  52945. [
  52946. {
  52947. name: "Normal",
  52948. height: math.unit(2.61, "meters"),
  52949. default: true
  52950. },
  52951. {
  52952. name: "\"Tall\"",
  52953. height: math.unit(8.21, "meters")
  52954. },
  52955. {
  52956. name: "Tall",
  52957. height: math.unit(19.6, "meters")
  52958. },
  52959. {
  52960. name: "Very Tall",
  52961. height: math.unit(57.91, "meters")
  52962. },
  52963. {
  52964. name: "Semi-Macro",
  52965. height: math.unit(138.64, "meters")
  52966. },
  52967. {
  52968. name: "Macro",
  52969. height: math.unit(831.99, "meters")
  52970. },
  52971. {
  52972. name: "EX-Macro",
  52973. height: math.unit(96451121, "meters")
  52974. },
  52975. {
  52976. name: "S1-Omnipotent",
  52977. height: math.unit(4.42074e+9, "meters")
  52978. },
  52979. {
  52980. name: "S2-Omnipotent",
  52981. height: math.unit(9.42074e+17, "meters")
  52982. },
  52983. {
  52984. name: "Omnipotent",
  52985. height: math.unit(4.23112e+24, "meters")
  52986. },
  52987. {
  52988. name: "Hypergod",
  52989. height: math.unit(5.05176e+27, "meters")
  52990. },
  52991. {
  52992. name: "Hypergod-EX",
  52993. height: math.unit(9.45532e+49, "meters")
  52994. },
  52995. {
  52996. name: "Hypergod-SP",
  52997. height: math.unit(9.45532e+195, "meters")
  52998. },
  52999. ]
  53000. ))
  53001. characterMakers.push(() => makeCharacter(
  53002. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53003. {
  53004. side: {
  53005. height: math.unit(0.6, "meters"),
  53006. weight: math.unit(24, "kg"),
  53007. name: "Side",
  53008. image: {
  53009. source: "./media/characters/celeste/side.svg",
  53010. extra: 810/517,
  53011. bottom: 53/863
  53012. }
  53013. },
  53014. },
  53015. [
  53016. {
  53017. name: "Velociraptor",
  53018. height: math.unit(0.6, "meters"),
  53019. default: true
  53020. },
  53021. {
  53022. name: "Utahraptor",
  53023. height: math.unit(1.8, "meters")
  53024. },
  53025. {
  53026. name: "Gallimimus",
  53027. height: math.unit(4.0, "meters")
  53028. },
  53029. {
  53030. name: "Large",
  53031. height: math.unit(20, "meters")
  53032. },
  53033. {
  53034. name: "Planetary",
  53035. height: math.unit(50, "megameters")
  53036. },
  53037. {
  53038. name: "Stellar",
  53039. height: math.unit(1.5, "gigameters")
  53040. },
  53041. {
  53042. name: "Galactic",
  53043. height: math.unit(100, "exameters")
  53044. },
  53045. ]
  53046. ))
  53047. characterMakers.push(() => makeCharacter(
  53048. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53049. {
  53050. front: {
  53051. height: math.unit(6, "feet"),
  53052. weight: math.unit(210, "lb"),
  53053. name: "Front",
  53054. image: {
  53055. source: "./media/characters/glacia/front.svg",
  53056. extra: 958/901,
  53057. bottom: 45/1003
  53058. }
  53059. },
  53060. },
  53061. [
  53062. {
  53063. name: "Macro",
  53064. height: math.unit(1000, "meters"),
  53065. default: true
  53066. },
  53067. ]
  53068. ))
  53069. characterMakers.push(() => makeCharacter(
  53070. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53071. {
  53072. front: {
  53073. height: math.unit(4, "meters"),
  53074. name: "Front",
  53075. image: {
  53076. source: "./media/characters/giri/front.svg",
  53077. extra: 966/894,
  53078. bottom: 21/987
  53079. }
  53080. },
  53081. },
  53082. [
  53083. {
  53084. name: "Normal",
  53085. height: math.unit(4, "meters"),
  53086. default: true
  53087. },
  53088. ]
  53089. ))
  53090. characterMakers.push(() => makeCharacter(
  53091. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53092. {
  53093. back: {
  53094. height: math.unit(4, "feet"),
  53095. weight: math.unit(37, "lb"),
  53096. name: "Back",
  53097. image: {
  53098. source: "./media/characters/tin/back.svg",
  53099. extra: 845/780,
  53100. bottom: 28/873
  53101. }
  53102. },
  53103. },
  53104. [
  53105. {
  53106. name: "Normal",
  53107. height: math.unit(4, "feet"),
  53108. default: true
  53109. },
  53110. ]
  53111. ))
  53112. characterMakers.push(() => makeCharacter(
  53113. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53114. {
  53115. front: {
  53116. height: math.unit(25, "feet"),
  53117. name: "Front",
  53118. image: {
  53119. source: "./media/characters/cadenza-vivace/front.svg",
  53120. extra: 1842/1578,
  53121. bottom: 30/1872
  53122. }
  53123. },
  53124. },
  53125. [
  53126. {
  53127. name: "Macro",
  53128. height: math.unit(25, "feet"),
  53129. default: true
  53130. },
  53131. ]
  53132. ))
  53133. characterMakers.push(() => makeCharacter(
  53134. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53135. {
  53136. front: {
  53137. height: math.unit(10, "feet"),
  53138. weight: math.unit(625, "kg"),
  53139. name: "Front",
  53140. image: {
  53141. source: "./media/characters/zain/front.svg",
  53142. extra: 1682/1498,
  53143. bottom: 223/1905
  53144. }
  53145. },
  53146. back: {
  53147. height: math.unit(10, "feet"),
  53148. weight: math.unit(625, "kg"),
  53149. name: "Back",
  53150. image: {
  53151. source: "./media/characters/zain/back.svg",
  53152. extra: 1814/1657,
  53153. bottom: 152/1966
  53154. }
  53155. },
  53156. head: {
  53157. height: math.unit(10, "feet"),
  53158. weight: math.unit(625, "kg"),
  53159. name: "Head",
  53160. image: {
  53161. source: "./media/characters/zain/head.svg",
  53162. extra: 1059/762,
  53163. bottom: 0/1059
  53164. }
  53165. },
  53166. },
  53167. [
  53168. {
  53169. name: "Normal",
  53170. height: math.unit(10, "feet"),
  53171. default: true
  53172. },
  53173. ]
  53174. ))
  53175. characterMakers.push(() => makeCharacter(
  53176. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53177. {
  53178. front: {
  53179. height: math.unit(6 + 5/12, "feet"),
  53180. weight: math.unit(750, "lb"),
  53181. name: "Front",
  53182. image: {
  53183. source: "./media/characters/ruchex/front.svg",
  53184. extra: 877/820,
  53185. bottom: 17/894
  53186. },
  53187. extraAttributes: {
  53188. "width": {
  53189. name: "Width",
  53190. power: 1,
  53191. type: "length",
  53192. base: math.unit(4.757, "feet")
  53193. },
  53194. }
  53195. },
  53196. },
  53197. [
  53198. {
  53199. name: "Normal",
  53200. height: math.unit(6 + 5/12, "feet"),
  53201. default: true
  53202. },
  53203. ]
  53204. ))
  53205. characterMakers.push(() => makeCharacter(
  53206. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53207. {
  53208. dressedFront: {
  53209. height: math.unit(191, "cm"),
  53210. weight: math.unit(80, "kg"),
  53211. name: "Front",
  53212. image: {
  53213. source: "./media/characters/buster/dressed-front.svg",
  53214. extra: 1022/973,
  53215. bottom: 69/1091
  53216. }
  53217. },
  53218. dressedBack: {
  53219. height: math.unit(191, "cm"),
  53220. weight: math.unit(80, "kg"),
  53221. name: "Back",
  53222. image: {
  53223. source: "./media/characters/buster/dressed-back.svg",
  53224. extra: 1018/970,
  53225. bottom: 55/1073
  53226. }
  53227. },
  53228. nudeFront: {
  53229. height: math.unit(191, "cm"),
  53230. weight: math.unit(80, "kg"),
  53231. name: "Front (Nude)",
  53232. image: {
  53233. source: "./media/characters/buster/nude-front.svg",
  53234. extra: 1022/973,
  53235. bottom: 69/1091
  53236. }
  53237. },
  53238. nudeBack: {
  53239. height: math.unit(191, "cm"),
  53240. weight: math.unit(80, "kg"),
  53241. name: "Back (Nude)",
  53242. image: {
  53243. source: "./media/characters/buster/nude-back.svg",
  53244. extra: 1018/970,
  53245. bottom: 55/1073
  53246. }
  53247. },
  53248. dick: {
  53249. height: math.unit(2.59, "feet"),
  53250. name: "Dick",
  53251. image: {
  53252. source: "./media/characters/buster/dick.svg"
  53253. }
  53254. },
  53255. ass: {
  53256. height: math.unit(1.2, "feet"),
  53257. name: "Ass",
  53258. image: {
  53259. source: "./media/characters/buster/ass.svg"
  53260. }
  53261. },
  53262. },
  53263. [
  53264. {
  53265. name: "Normal",
  53266. height: math.unit(191, "cm"),
  53267. default: true
  53268. },
  53269. ]
  53270. ))
  53271. characterMakers.push(() => makeCharacter(
  53272. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53273. {
  53274. side: {
  53275. height: math.unit(8.1, "feet"),
  53276. weight: math.unit(3500, "lb"),
  53277. name: "Side",
  53278. image: {
  53279. source: "./media/characters/sonya/side.svg",
  53280. extra: 1730/1317,
  53281. bottom: 86/1816
  53282. }
  53283. },
  53284. },
  53285. [
  53286. {
  53287. name: "Normal",
  53288. height: math.unit(8.1, "feet"),
  53289. default: true
  53290. },
  53291. ]
  53292. ))
  53293. characterMakers.push(() => makeCharacter(
  53294. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53295. {
  53296. front: {
  53297. height: math.unit(6, "feet"),
  53298. weight: math.unit(150, "lb"),
  53299. name: "Front",
  53300. image: {
  53301. source: "./media/characters/cadence-andrysiak/front.svg",
  53302. extra: 1164/1121,
  53303. bottom: 60/1224
  53304. }
  53305. },
  53306. back: {
  53307. height: math.unit(6, "feet"),
  53308. weight: math.unit(150, "lb"),
  53309. name: "Back",
  53310. image: {
  53311. source: "./media/characters/cadence-andrysiak/back.svg",
  53312. extra: 1200/1165,
  53313. bottom: 9/1209
  53314. }
  53315. },
  53316. dressed: {
  53317. height: math.unit(6, "feet"),
  53318. weight: math.unit(150, "lb"),
  53319. name: "Dressed",
  53320. image: {
  53321. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53322. extra: 1164/1121,
  53323. bottom: 60/1224
  53324. }
  53325. },
  53326. },
  53327. [
  53328. {
  53329. name: "Micro",
  53330. height: math.unit(1, "mm")
  53331. },
  53332. {
  53333. name: "Normal",
  53334. height: math.unit(6, "feet"),
  53335. default: true
  53336. },
  53337. ]
  53338. ))
  53339. characterMakers.push(() => makeCharacter(
  53340. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53341. {
  53342. front: {
  53343. height: math.unit(60, "inches"),
  53344. weight: math.unit(16, "lb"),
  53345. preyCapacity: math.unit(80, "liters"),
  53346. name: "Front",
  53347. image: {
  53348. source: "./media/characters/penny-lynx/front.svg",
  53349. extra: 1959/1769,
  53350. bottom: 49/2008
  53351. }
  53352. },
  53353. },
  53354. [
  53355. {
  53356. name: "Nokia",
  53357. height: math.unit(2, "inches")
  53358. },
  53359. {
  53360. name: "Desktop",
  53361. height: math.unit(24, "inches")
  53362. },
  53363. {
  53364. name: "TV",
  53365. height: math.unit(60, "inches")
  53366. },
  53367. {
  53368. name: "Jumbotron",
  53369. height: math.unit(12, "feet")
  53370. },
  53371. {
  53372. name: "Billboard",
  53373. height: math.unit(48, "feet"),
  53374. default: true
  53375. },
  53376. {
  53377. name: "IMAX",
  53378. height: math.unit(96, "feet")
  53379. },
  53380. {
  53381. name: "SINGULARITY",
  53382. height: math.unit(864938, "miles")
  53383. },
  53384. ]
  53385. ))
  53386. characterMakers.push(() => makeCharacter(
  53387. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53388. {
  53389. front: {
  53390. height: math.unit(5 + 4/12, "feet"),
  53391. weight: math.unit(230, "lb"),
  53392. name: "Front",
  53393. image: {
  53394. source: "./media/characters/sukebe/front.svg",
  53395. extra: 2130/2038,
  53396. bottom: 90/2220
  53397. }
  53398. },
  53399. back: {
  53400. height: math.unit(3.48, "feet"),
  53401. weight: math.unit(230, "lb"),
  53402. name: "Back",
  53403. image: {
  53404. source: "./media/characters/sukebe/back.svg",
  53405. extra: 1670/1604,
  53406. bottom: 0/1670
  53407. }
  53408. },
  53409. },
  53410. [
  53411. {
  53412. name: "Normal",
  53413. height: math.unit(5 + 4/12, "feet"),
  53414. default: true
  53415. },
  53416. ]
  53417. ))
  53418. characterMakers.push(() => makeCharacter(
  53419. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53420. {
  53421. front: {
  53422. height: math.unit(6, "feet"),
  53423. name: "Front",
  53424. image: {
  53425. source: "./media/characters/nylla/front.svg",
  53426. extra: 1868/1699,
  53427. bottom: 97/1965
  53428. }
  53429. },
  53430. back: {
  53431. height: math.unit(6, "feet"),
  53432. name: "Back",
  53433. image: {
  53434. source: "./media/characters/nylla/back.svg",
  53435. extra: 1889/1712,
  53436. bottom: 93/1982
  53437. }
  53438. },
  53439. frontNsfw: {
  53440. height: math.unit(6, "feet"),
  53441. name: "Front (NSFW)",
  53442. image: {
  53443. source: "./media/characters/nylla/front-nsfw.svg",
  53444. extra: 1868/1699,
  53445. bottom: 97/1965
  53446. },
  53447. extraAttributes: {
  53448. "dickLength": {
  53449. name: "Dick Length",
  53450. power: 1,
  53451. type: "length",
  53452. base: math.unit(1.4, "feet")
  53453. },
  53454. "cumVolume": {
  53455. name: "Cum Volume",
  53456. power: 3,
  53457. type: "volume",
  53458. base: math.unit(100, "mL")
  53459. },
  53460. }
  53461. },
  53462. backNsfw: {
  53463. height: math.unit(6, "feet"),
  53464. name: "Back (NSFW)",
  53465. image: {
  53466. source: "./media/characters/nylla/back-nsfw.svg",
  53467. extra: 1889/1712,
  53468. bottom: 93/1982
  53469. }
  53470. },
  53471. maw: {
  53472. height: math.unit(2.10, "feet"),
  53473. name: "Maw",
  53474. image: {
  53475. source: "./media/characters/nylla/maw.svg"
  53476. }
  53477. },
  53478. paws: {
  53479. height: math.unit(2.06, "feet"),
  53480. name: "Paws",
  53481. image: {
  53482. source: "./media/characters/nylla/paws.svg"
  53483. }
  53484. },
  53485. muzzle: {
  53486. height: math.unit(0.61, "feet"),
  53487. name: "Muzzle",
  53488. image: {
  53489. source: "./media/characters/nylla/muzzle.svg"
  53490. }
  53491. },
  53492. sheath: {
  53493. height: math.unit(1.305, "feet"),
  53494. name: "Sheath",
  53495. image: {
  53496. source: "./media/characters/nylla/sheath.svg"
  53497. }
  53498. },
  53499. },
  53500. [
  53501. {
  53502. name: "Micro",
  53503. height: math.unit(7.5, "inches")
  53504. },
  53505. {
  53506. name: "Normal",
  53507. height: math.unit(7, "feet"),
  53508. default: true
  53509. },
  53510. {
  53511. name: "Macro",
  53512. height: math.unit(60, "feet")
  53513. },
  53514. {
  53515. name: "Mega",
  53516. height: math.unit(200, "feet")
  53517. },
  53518. ]
  53519. ))
  53520. characterMakers.push(() => makeCharacter(
  53521. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53522. {
  53523. front: {
  53524. height: math.unit(10, "feet"),
  53525. weight: math.unit(2300, "lb"),
  53526. name: "Front",
  53527. image: {
  53528. source: "./media/characters/hunt3r/front.svg",
  53529. extra: 1909/1742,
  53530. bottom: 46/1955
  53531. }
  53532. },
  53533. },
  53534. [
  53535. {
  53536. name: "Normal",
  53537. height: math.unit(10, "feet"),
  53538. default: true
  53539. },
  53540. ]
  53541. ))
  53542. characterMakers.push(() => makeCharacter(
  53543. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53544. {
  53545. dressed: {
  53546. height: math.unit(11, "feet"),
  53547. weight: math.unit(18500, "lb"),
  53548. preyCapacity: math.unit(9, "people"),
  53549. name: "Dressed",
  53550. image: {
  53551. source: "./media/characters/cylphis/dressed.svg",
  53552. extra: 1028/1003,
  53553. bottom: 75/1103
  53554. },
  53555. },
  53556. undressed: {
  53557. height: math.unit(11, "feet"),
  53558. weight: math.unit(18500, "lb"),
  53559. preyCapacity: math.unit(9, "people"),
  53560. name: "Undressed",
  53561. image: {
  53562. source: "./media/characters/cylphis/undressed.svg",
  53563. extra: 1028/1003,
  53564. bottom: 75/1103
  53565. }
  53566. },
  53567. full: {
  53568. height: math.unit(11, "feet"),
  53569. weight: math.unit(18500 + 150*9, "lb"),
  53570. preyCapacity: math.unit(9, "people"),
  53571. name: "Full",
  53572. image: {
  53573. source: "./media/characters/cylphis/full.svg",
  53574. extra: 1028/1003,
  53575. bottom: 75/1103
  53576. }
  53577. },
  53578. },
  53579. [
  53580. {
  53581. name: "Small",
  53582. height: math.unit(8, "feet")
  53583. },
  53584. {
  53585. name: "Normal",
  53586. height: math.unit(11, "feet"),
  53587. default: true
  53588. },
  53589. ]
  53590. ))
  53591. characterMakers.push(() => makeCharacter(
  53592. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53593. {
  53594. front: {
  53595. height: math.unit(2 + 7/12, "feet"),
  53596. name: "Front",
  53597. image: {
  53598. source: "./media/characters/orishan/front.svg",
  53599. extra: 1058/1023,
  53600. bottom: 23/1081
  53601. }
  53602. },
  53603. back: {
  53604. height: math.unit(2 + 7/12, "feet"),
  53605. name: "Back",
  53606. image: {
  53607. source: "./media/characters/orishan/back.svg",
  53608. extra: 1058/1023,
  53609. bottom: 23/1081
  53610. }
  53611. },
  53612. },
  53613. [
  53614. {
  53615. name: "Micro",
  53616. height: math.unit(2, "cm")
  53617. },
  53618. {
  53619. name: "Normal",
  53620. height: math.unit(2 + 7/12, "feet"),
  53621. default: true
  53622. },
  53623. ]
  53624. ))
  53625. characterMakers.push(() => makeCharacter(
  53626. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53627. {
  53628. front: {
  53629. height: math.unit(3, "meters"),
  53630. weight: math.unit(508, "kg"),
  53631. name: "Front",
  53632. image: {
  53633. source: "./media/characters/seranis/front.svg",
  53634. extra: 1478/1454,
  53635. bottom: 41/1519
  53636. }
  53637. },
  53638. },
  53639. [
  53640. {
  53641. name: "Normal",
  53642. height: math.unit(3, "meters"),
  53643. default: true
  53644. },
  53645. {
  53646. name: "Macro",
  53647. height: math.unit(108, "meters")
  53648. },
  53649. {
  53650. name: "Megamacro",
  53651. height: math.unit(1250, "meters")
  53652. },
  53653. ]
  53654. ))
  53655. characterMakers.push(() => makeCharacter(
  53656. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53657. {
  53658. undressed: {
  53659. height: math.unit(5 + 3/12, "feet"),
  53660. name: "Undressed",
  53661. image: {
  53662. source: "./media/characters/ankou/undressed.svg",
  53663. extra: 1301/1213,
  53664. bottom: 87/1388
  53665. }
  53666. },
  53667. dressed: {
  53668. height: math.unit(5 + 3/12, "feet"),
  53669. name: "Dressed",
  53670. image: {
  53671. source: "./media/characters/ankou/dressed.svg",
  53672. extra: 1301/1213,
  53673. bottom: 87/1388
  53674. }
  53675. },
  53676. head: {
  53677. height: math.unit(1.61, "feet"),
  53678. name: "Head",
  53679. image: {
  53680. source: "./media/characters/ankou/head.svg"
  53681. }
  53682. },
  53683. },
  53684. [
  53685. {
  53686. name: "Normal",
  53687. height: math.unit(5 + 3/12, "feet"),
  53688. default: true
  53689. },
  53690. ]
  53691. ))
  53692. characterMakers.push(() => makeCharacter(
  53693. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53694. {
  53695. side: {
  53696. height: math.unit(6 + 3/12, "feet"),
  53697. weight: math.unit(200, "kg"),
  53698. name: "Side",
  53699. image: {
  53700. source: "./media/characters/juniper-skunktaur/side.svg",
  53701. extra: 1574/1229,
  53702. bottom: 38/1612
  53703. }
  53704. },
  53705. front: {
  53706. height: math.unit(6 + 3/12, "feet"),
  53707. weight: math.unit(200, "kg"),
  53708. name: "Front",
  53709. image: {
  53710. source: "./media/characters/juniper-skunktaur/front.svg",
  53711. extra: 1337/1278,
  53712. bottom: 22/1359
  53713. }
  53714. },
  53715. back: {
  53716. height: math.unit(6 + 3/12, "feet"),
  53717. weight: math.unit(200, "kg"),
  53718. name: "Back",
  53719. image: {
  53720. source: "./media/characters/juniper-skunktaur/back.svg",
  53721. extra: 1618/1273,
  53722. bottom: 13/1631
  53723. }
  53724. },
  53725. top: {
  53726. height: math.unit(2.62, "feet"),
  53727. weight: math.unit(200, "kg"),
  53728. name: "Top",
  53729. image: {
  53730. source: "./media/characters/juniper-skunktaur/top.svg"
  53731. }
  53732. },
  53733. },
  53734. [
  53735. {
  53736. name: "Normal",
  53737. height: math.unit(6 + 3/12, "feet"),
  53738. default: true
  53739. },
  53740. ]
  53741. ))
  53742. characterMakers.push(() => makeCharacter(
  53743. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53744. {
  53745. front: {
  53746. height: math.unit(20.5, "feet"),
  53747. name: "Front",
  53748. image: {
  53749. source: "./media/characters/rei/front.svg",
  53750. extra: 1349/1195,
  53751. bottom: 31/1380
  53752. }
  53753. },
  53754. back: {
  53755. height: math.unit(20.5, "feet"),
  53756. name: "Back",
  53757. image: {
  53758. source: "./media/characters/rei/back.svg",
  53759. extra: 1358/1204,
  53760. bottom: 22/1380
  53761. }
  53762. },
  53763. pawsDigi: {
  53764. height: math.unit(3.45, "feet"),
  53765. name: "Paws (Digi)",
  53766. image: {
  53767. source: "./media/characters/rei/paws-digi.svg"
  53768. }
  53769. },
  53770. pawsPlanti: {
  53771. height: math.unit(3.45, "feet"),
  53772. name: "Paws (Planti)",
  53773. image: {
  53774. source: "./media/characters/rei/paws-planti.svg"
  53775. }
  53776. },
  53777. },
  53778. [
  53779. {
  53780. name: "Normal",
  53781. height: math.unit(20.5, "feet"),
  53782. default: true
  53783. },
  53784. ]
  53785. ))
  53786. characterMakers.push(() => makeCharacter(
  53787. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53788. {
  53789. front: {
  53790. height: math.unit(5 + 11/12, "feet"),
  53791. name: "Front",
  53792. image: {
  53793. source: "./media/characters/carina/front.svg",
  53794. extra: 1720/1449,
  53795. bottom: 14/1734
  53796. }
  53797. },
  53798. back: {
  53799. height: math.unit(5 + 11/12, "feet"),
  53800. name: "Back",
  53801. image: {
  53802. source: "./media/characters/carina/back.svg",
  53803. extra: 1493/1445,
  53804. bottom: 17/1510
  53805. }
  53806. },
  53807. paw: {
  53808. height: math.unit(0.92, "feet"),
  53809. name: "Paw",
  53810. image: {
  53811. source: "./media/characters/carina/paw.svg"
  53812. }
  53813. },
  53814. },
  53815. [
  53816. {
  53817. name: "Normal",
  53818. height: math.unit(5 + 11/12, "feet"),
  53819. default: true
  53820. },
  53821. ]
  53822. ))
  53823. characterMakers.push(() => makeCharacter(
  53824. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53825. {
  53826. normal_front: {
  53827. height: math.unit(4.88, "meters"),
  53828. name: "Front",
  53829. image: {
  53830. source: "./media/characters/maya/normal-front.svg",
  53831. extra: 1222/1145,
  53832. bottom: 57/1279
  53833. },
  53834. form: "normal",
  53835. default: true
  53836. },
  53837. monstrous_front: {
  53838. height: math.unit(10, "meters"),
  53839. name: "Front",
  53840. image: {
  53841. source: "./media/characters/maya/monstrous-front.svg",
  53842. extra: 1523/1109,
  53843. bottom: 113/1636
  53844. },
  53845. form: "monstrous",
  53846. extraAttributes: {
  53847. "swallowSize": {
  53848. name: "Tailmaw Bite Size",
  53849. power: 3,
  53850. type: "volume",
  53851. base: math.unit(43000, "liters")
  53852. },
  53853. }
  53854. },
  53855. taur_front: {
  53856. height: math.unit(10, "meters"),
  53857. name: "Front",
  53858. image: {
  53859. source: "./media/characters/maya/taur-front.svg",
  53860. extra: 743/506,
  53861. bottom: 101/844
  53862. },
  53863. form: "taur",
  53864. },
  53865. },
  53866. [
  53867. {
  53868. name: "Normal",
  53869. height: math.unit(4.88, "meters"),
  53870. default: true,
  53871. form: "normal"
  53872. },
  53873. {
  53874. name: "Macro",
  53875. height: math.unit(38.1, "meters"),
  53876. form: "normal"
  53877. },
  53878. {
  53879. name: "Macro+",
  53880. height: math.unit(152.4, "meters"),
  53881. form: "normal"
  53882. },
  53883. {
  53884. name: "Macro++",
  53885. height: math.unit(16.09, "km"),
  53886. form: "normal"
  53887. },
  53888. {
  53889. name: "Mega-macro",
  53890. height: math.unit(700, "megameters"),
  53891. form: "normal"
  53892. },
  53893. {
  53894. name: "Satiated",
  53895. height: math.unit(10, "meters"),
  53896. default: true,
  53897. form: "monstrous"
  53898. },
  53899. {
  53900. name: "Hungry",
  53901. height: math.unit(75, "meters"),
  53902. form: "monstrous"
  53903. },
  53904. {
  53905. name: "Ravenous",
  53906. height: math.unit(500, "meters"),
  53907. form: "monstrous"
  53908. },
  53909. {
  53910. name: "\"Normal\"",
  53911. height: math.unit(10, "meters"),
  53912. form: "taur"
  53913. },
  53914. {
  53915. name: "Macro",
  53916. height: math.unit(50, "meters"),
  53917. form: "taur"
  53918. },
  53919. ],
  53920. {
  53921. "normal": {
  53922. name: "Normal",
  53923. default: true
  53924. },
  53925. "monstrous": {
  53926. name: "Monstrous",
  53927. },
  53928. "taur": {
  53929. name: "Taur",
  53930. },
  53931. }
  53932. ))
  53933. characterMakers.push(() => makeCharacter(
  53934. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53935. {
  53936. front: {
  53937. height: math.unit(6 + 2/12, "feet"),
  53938. weight: math.unit(500, "lb"),
  53939. preyCapacity: math.unit(4, "people"),
  53940. name: "Front",
  53941. image: {
  53942. source: "./media/characters/yepir/front.svg"
  53943. }
  53944. },
  53945. side: {
  53946. height: math.unit(6 + 2/12, "feet"),
  53947. weight: math.unit(500, "lb"),
  53948. preyCapacity: math.unit(4, "people"),
  53949. name: "Side",
  53950. image: {
  53951. source: "./media/characters/yepir/side.svg"
  53952. }
  53953. },
  53954. paw: {
  53955. height: math.unit(1.05, "feet"),
  53956. name: "Paw",
  53957. image: {
  53958. source: "./media/characters/yepir/paw.svg"
  53959. }
  53960. },
  53961. },
  53962. [
  53963. {
  53964. name: "Normal",
  53965. height: math.unit(6 + 2/12, "feet"),
  53966. default: true
  53967. },
  53968. ]
  53969. ))
  53970. characterMakers.push(() => makeCharacter(
  53971. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53972. {
  53973. front: {
  53974. height: math.unit(5 + 4/12, "feet"),
  53975. name: "Front",
  53976. image: {
  53977. source: "./media/characters/russec/front.svg",
  53978. extra: 1926/1626,
  53979. bottom: 72/1998
  53980. }
  53981. },
  53982. back: {
  53983. height: math.unit(5 + 4/12, "feet"),
  53984. name: "Back",
  53985. image: {
  53986. source: "./media/characters/russec/back.svg",
  53987. extra: 1910/1591,
  53988. bottom: 48/1958
  53989. }
  53990. },
  53991. },
  53992. [
  53993. {
  53994. name: "Small",
  53995. height: math.unit(5 + 4/12, "feet")
  53996. },
  53997. {
  53998. name: "Normal",
  53999. height: math.unit(72, "feet"),
  54000. default: true
  54001. },
  54002. ]
  54003. ))
  54004. characterMakers.push(() => makeCharacter(
  54005. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54006. {
  54007. side: {
  54008. height: math.unit(12, "feet"),
  54009. name: "Side",
  54010. image: {
  54011. source: "./media/characters/cianus/side.svg",
  54012. extra: 808/526,
  54013. bottom: 61/869
  54014. }
  54015. },
  54016. },
  54017. [
  54018. {
  54019. name: "Normal",
  54020. height: math.unit(12, "feet"),
  54021. default: true
  54022. },
  54023. ]
  54024. ))
  54025. characterMakers.push(() => makeCharacter(
  54026. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54027. {
  54028. front: {
  54029. height: math.unit(9 + 6/12, "feet"),
  54030. weight: math.unit(300, "lb"),
  54031. name: "Front",
  54032. image: {
  54033. source: "./media/characters/ahab/front.svg",
  54034. extra: 1897/1868,
  54035. bottom: 121/2018
  54036. }
  54037. },
  54038. frontNsfw: {
  54039. height: math.unit(9 + 6/12, "feet"),
  54040. weight: math.unit(300, "lb"),
  54041. name: "Front-nsfw",
  54042. image: {
  54043. source: "./media/characters/ahab/front-nsfw.svg",
  54044. extra: 1897/1868,
  54045. bottom: 121/2018
  54046. }
  54047. },
  54048. },
  54049. [
  54050. {
  54051. name: "Normal",
  54052. height: math.unit(9 + 6/12, "feet")
  54053. },
  54054. {
  54055. name: "Macro",
  54056. height: math.unit(657, "feet"),
  54057. default: true
  54058. },
  54059. ]
  54060. ))
  54061. characterMakers.push(() => makeCharacter(
  54062. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54063. {
  54064. front: {
  54065. height: math.unit(2.69, "meters"),
  54066. weight: math.unit(132, "kg"),
  54067. name: "Front",
  54068. image: {
  54069. source: "./media/characters/aarkus/front.svg",
  54070. extra: 1400/1231,
  54071. bottom: 34/1434
  54072. }
  54073. },
  54074. back: {
  54075. height: math.unit(2.69, "meters"),
  54076. weight: math.unit(132, "kg"),
  54077. name: "Back",
  54078. image: {
  54079. source: "./media/characters/aarkus/back.svg",
  54080. extra: 1381/1218,
  54081. bottom: 30/1411
  54082. }
  54083. },
  54084. frontNsfw: {
  54085. height: math.unit(2.69, "meters"),
  54086. weight: math.unit(132, "kg"),
  54087. name: "Front (NSFW)",
  54088. image: {
  54089. source: "./media/characters/aarkus/front-nsfw.svg",
  54090. extra: 1400/1231,
  54091. bottom: 34/1434
  54092. }
  54093. },
  54094. foot: {
  54095. height: math.unit(1.45, "feet"),
  54096. name: "Foot",
  54097. image: {
  54098. source: "./media/characters/aarkus/foot.svg"
  54099. }
  54100. },
  54101. head: {
  54102. height: math.unit(2.85, "feet"),
  54103. name: "Head",
  54104. image: {
  54105. source: "./media/characters/aarkus/head.svg"
  54106. }
  54107. },
  54108. headAlt: {
  54109. height: math.unit(3.07, "feet"),
  54110. name: "Head (Alt)",
  54111. image: {
  54112. source: "./media/characters/aarkus/head-alt.svg"
  54113. }
  54114. },
  54115. mouth: {
  54116. height: math.unit(1.25, "feet"),
  54117. name: "Mouth",
  54118. image: {
  54119. source: "./media/characters/aarkus/mouth.svg"
  54120. }
  54121. },
  54122. dick: {
  54123. height: math.unit(1.77, "feet"),
  54124. name: "Dick",
  54125. image: {
  54126. source: "./media/characters/aarkus/dick.svg"
  54127. }
  54128. },
  54129. },
  54130. [
  54131. {
  54132. name: "Normal",
  54133. height: math.unit(2.69, "meters"),
  54134. default: true
  54135. },
  54136. {
  54137. name: "Macro",
  54138. height: math.unit(269, "meters")
  54139. },
  54140. {
  54141. name: "Macro+",
  54142. height: math.unit(672.5, "meters")
  54143. },
  54144. {
  54145. name: "Megamacro",
  54146. height: math.unit(2.017, "km")
  54147. },
  54148. ]
  54149. ))
  54150. characterMakers.push(() => makeCharacter(
  54151. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54152. {
  54153. front: {
  54154. height: math.unit(23.47, "cm"),
  54155. weight: math.unit(600, "grams"),
  54156. name: "Front",
  54157. image: {
  54158. source: "./media/characters/diode/front.svg",
  54159. extra: 1778/1396,
  54160. bottom: 95/1873
  54161. }
  54162. },
  54163. side: {
  54164. height: math.unit(23.47, "cm"),
  54165. weight: math.unit(600, "grams"),
  54166. name: "Side",
  54167. image: {
  54168. source: "./media/characters/diode/side.svg",
  54169. extra: 1831/1404,
  54170. bottom: 86/1917
  54171. }
  54172. },
  54173. wings: {
  54174. height: math.unit(0.683, "feet"),
  54175. name: "Wings",
  54176. image: {
  54177. source: "./media/characters/diode/wings.svg"
  54178. }
  54179. },
  54180. },
  54181. [
  54182. {
  54183. name: "Normal",
  54184. height: math.unit(23.47, "cm"),
  54185. default: true
  54186. },
  54187. ]
  54188. ))
  54189. characterMakers.push(() => makeCharacter(
  54190. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54191. {
  54192. front: {
  54193. height: math.unit(6 + 3/12, "feet"),
  54194. weight: math.unit(250, "lb"),
  54195. name: "Front",
  54196. image: {
  54197. source: "./media/characters/reika/front.svg",
  54198. extra: 1120/1078,
  54199. bottom: 86/1206
  54200. }
  54201. },
  54202. },
  54203. [
  54204. {
  54205. name: "Normal",
  54206. height: math.unit(6 + 3/12, "feet"),
  54207. default: true
  54208. },
  54209. ]
  54210. ))
  54211. characterMakers.push(() => makeCharacter(
  54212. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54213. {
  54214. front: {
  54215. height: math.unit(16 + 8/12, "feet"),
  54216. weight: math.unit(9000, "lb"),
  54217. name: "Front",
  54218. image: {
  54219. source: "./media/characters/lokuto-takama/front.svg",
  54220. extra: 1774/1632,
  54221. bottom: 147/1921
  54222. },
  54223. extraAttributes: {
  54224. "bustWidth": {
  54225. name: "Bust Width",
  54226. power: 1,
  54227. type: "length",
  54228. base: math.unit(2.4, "meters")
  54229. },
  54230. "breastWeight": {
  54231. name: "Breast Weight",
  54232. power: 3,
  54233. type: "mass",
  54234. base: math.unit(1000, "kg")
  54235. },
  54236. }
  54237. },
  54238. },
  54239. [
  54240. {
  54241. name: "Normal",
  54242. height: math.unit(16 + 8/12, "feet"),
  54243. default: true
  54244. },
  54245. ]
  54246. ))
  54247. characterMakers.push(() => makeCharacter(
  54248. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54249. {
  54250. front: {
  54251. height: math.unit(10, "cm"),
  54252. weight: math.unit(850, "grams"),
  54253. name: "Front",
  54254. image: {
  54255. source: "./media/characters/owak-bone/front.svg",
  54256. extra: 1965/1801,
  54257. bottom: 31/1996
  54258. }
  54259. },
  54260. },
  54261. [
  54262. {
  54263. name: "Normal",
  54264. height: math.unit(10, "cm"),
  54265. default: true
  54266. },
  54267. ]
  54268. ))
  54269. characterMakers.push(() => makeCharacter(
  54270. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54271. {
  54272. front: {
  54273. height: math.unit(2 + 6/12, "feet"),
  54274. weight: math.unit(9, "lb"),
  54275. name: "Front",
  54276. image: {
  54277. source: "./media/characters/muffin/front.svg",
  54278. extra: 1220/1195,
  54279. bottom: 84/1304
  54280. }
  54281. },
  54282. },
  54283. [
  54284. {
  54285. name: "Normal",
  54286. height: math.unit(2 + 6/12, "feet"),
  54287. default: true
  54288. },
  54289. ]
  54290. ))
  54291. characterMakers.push(() => makeCharacter(
  54292. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54293. {
  54294. front: {
  54295. height: math.unit(7, "feet"),
  54296. name: "Front",
  54297. image: {
  54298. source: "./media/characters/chimera/front.svg",
  54299. extra: 1752/1614,
  54300. bottom: 68/1820
  54301. }
  54302. },
  54303. },
  54304. [
  54305. {
  54306. name: "Normal",
  54307. height: math.unit(7, "feet")
  54308. },
  54309. {
  54310. name: "Gigamacro",
  54311. height: math.unit(2.9, "gigameters"),
  54312. default: true
  54313. },
  54314. {
  54315. name: "Universal",
  54316. height: math.unit(1.56e26, "yottameters")
  54317. },
  54318. ]
  54319. ))
  54320. characterMakers.push(() => makeCharacter(
  54321. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54322. {
  54323. front: {
  54324. height: math.unit(3, "feet"),
  54325. weight: math.unit(20, "lb"),
  54326. name: "Front",
  54327. image: {
  54328. source: "./media/characters/kit-fennec-fox/front.svg",
  54329. extra: 1027/932,
  54330. bottom: 16/1043
  54331. }
  54332. },
  54333. back: {
  54334. height: math.unit(3, "feet"),
  54335. weight: math.unit(20, "lb"),
  54336. name: "Back",
  54337. image: {
  54338. source: "./media/characters/kit-fennec-fox/back.svg",
  54339. extra: 1027/932,
  54340. bottom: 16/1043
  54341. }
  54342. },
  54343. },
  54344. [
  54345. {
  54346. name: "Normal",
  54347. height: math.unit(3, "feet"),
  54348. default: true
  54349. },
  54350. ]
  54351. ))
  54352. characterMakers.push(() => makeCharacter(
  54353. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54354. {
  54355. front: {
  54356. height: math.unit(167, "cm"),
  54357. name: "Front",
  54358. image: {
  54359. source: "./media/characters/blue-otter/front.svg",
  54360. extra: 1951/1920,
  54361. bottom: 31/1982
  54362. }
  54363. },
  54364. },
  54365. [
  54366. {
  54367. name: "Otter-Sized",
  54368. height: math.unit(100, "cm")
  54369. },
  54370. {
  54371. name: "Normal",
  54372. height: math.unit(167, "cm"),
  54373. default: true
  54374. },
  54375. ]
  54376. ))
  54377. characterMakers.push(() => makeCharacter(
  54378. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54379. {
  54380. front: {
  54381. height: math.unit(4 + 4/12, "feet"),
  54382. name: "Front",
  54383. image: {
  54384. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54385. extra: 1072/1067,
  54386. bottom: 117/1189
  54387. }
  54388. },
  54389. back: {
  54390. height: math.unit(4 + 4/12, "feet"),
  54391. name: "Back",
  54392. image: {
  54393. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54394. extra: 1135/1129,
  54395. bottom: 57/1192
  54396. }
  54397. },
  54398. head: {
  54399. height: math.unit(1.77, "feet"),
  54400. name: "Head",
  54401. image: {
  54402. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54403. }
  54404. },
  54405. },
  54406. [
  54407. {
  54408. name: "Normal",
  54409. height: math.unit(4 + 4/12, "feet"),
  54410. default: true
  54411. },
  54412. ]
  54413. ))
  54414. characterMakers.push(() => makeCharacter(
  54415. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54416. {
  54417. front: {
  54418. height: math.unit(2, "inches"),
  54419. name: "Front",
  54420. image: {
  54421. source: "./media/characters/carley-hartford/front.svg",
  54422. extra: 1035/988,
  54423. bottom: 23/1058
  54424. }
  54425. },
  54426. back: {
  54427. height: math.unit(2, "inches"),
  54428. name: "Back",
  54429. image: {
  54430. source: "./media/characters/carley-hartford/back.svg",
  54431. extra: 1035/988,
  54432. bottom: 23/1058
  54433. }
  54434. },
  54435. dressed: {
  54436. height: math.unit(2, "inches"),
  54437. name: "Dressed",
  54438. image: {
  54439. source: "./media/characters/carley-hartford/dressed.svg",
  54440. extra: 651/620,
  54441. bottom: 0/651
  54442. }
  54443. },
  54444. },
  54445. [
  54446. {
  54447. name: "Micro",
  54448. height: math.unit(2, "inches"),
  54449. default: true
  54450. },
  54451. {
  54452. name: "Macro",
  54453. height: math.unit(6 + 3/12, "feet")
  54454. },
  54455. ]
  54456. ))
  54457. characterMakers.push(() => makeCharacter(
  54458. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54459. {
  54460. front: {
  54461. height: math.unit(2 + 3/12, "feet"),
  54462. weight: math.unit(15 + 7/16, "lb"),
  54463. name: "Front",
  54464. image: {
  54465. source: "./media/characters/duke/front.svg",
  54466. extra: 910/815,
  54467. bottom: 30/940
  54468. }
  54469. },
  54470. },
  54471. [
  54472. {
  54473. name: "Normal",
  54474. height: math.unit(2 + 3/12, "feet"),
  54475. default: true
  54476. },
  54477. ]
  54478. ))
  54479. characterMakers.push(() => makeCharacter(
  54480. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54481. {
  54482. front: {
  54483. height: math.unit(5 + 4/12, "feet"),
  54484. weight: math.unit(156, "lb"),
  54485. name: "Front",
  54486. image: {
  54487. source: "./media/characters/dein/front.svg",
  54488. extra: 855/815,
  54489. bottom: 48/903
  54490. }
  54491. },
  54492. side: {
  54493. height: math.unit(5 + 4/12, "feet"),
  54494. weight: math.unit(156, "lb"),
  54495. name: "side",
  54496. image: {
  54497. source: "./media/characters/dein/side.svg",
  54498. extra: 846/803,
  54499. bottom: 25/871
  54500. }
  54501. },
  54502. maw: {
  54503. height: math.unit(1.45, "feet"),
  54504. name: "Maw",
  54505. image: {
  54506. source: "./media/characters/dein/maw.svg"
  54507. }
  54508. },
  54509. },
  54510. [
  54511. {
  54512. name: "Ferret Sized",
  54513. height: math.unit(2 + 5/12, "feet")
  54514. },
  54515. {
  54516. name: "Normal",
  54517. height: math.unit(5 + 4/12, "feet"),
  54518. default: true
  54519. },
  54520. ]
  54521. ))
  54522. characterMakers.push(() => makeCharacter(
  54523. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54524. {
  54525. front: {
  54526. height: math.unit(84 + 8/12, "feet"),
  54527. weight: math.unit(942180, "lb"),
  54528. name: "Front",
  54529. image: {
  54530. source: "./media/characters/daurine-arima/front.svg",
  54531. extra: 1989/1782,
  54532. bottom: 37/2026
  54533. }
  54534. },
  54535. side: {
  54536. height: math.unit(84 + 8/12, "feet"),
  54537. weight: math.unit(942180, "lb"),
  54538. name: "Side",
  54539. image: {
  54540. source: "./media/characters/daurine-arima/side.svg",
  54541. extra: 1997/1790,
  54542. bottom: 21/2018
  54543. }
  54544. },
  54545. back: {
  54546. height: math.unit(84 + 8/12, "feet"),
  54547. weight: math.unit(942180, "lb"),
  54548. name: "Back",
  54549. image: {
  54550. source: "./media/characters/daurine-arima/back.svg",
  54551. extra: 1992/1800,
  54552. bottom: 12/2004
  54553. }
  54554. },
  54555. head: {
  54556. height: math.unit(15.5, "feet"),
  54557. name: "Head",
  54558. image: {
  54559. source: "./media/characters/daurine-arima/head.svg"
  54560. }
  54561. },
  54562. headAlt: {
  54563. height: math.unit(19.19, "feet"),
  54564. name: "Head (Alt)",
  54565. image: {
  54566. source: "./media/characters/daurine-arima/head-alt.svg"
  54567. }
  54568. },
  54569. },
  54570. [
  54571. {
  54572. name: "Minimum height",
  54573. height: math.unit(8 + 10/12, "feet")
  54574. },
  54575. {
  54576. name: "Comfort height",
  54577. height: math.unit(19 + 6 /12, "feet")
  54578. },
  54579. {
  54580. name: "\"Normal\" height",
  54581. height: math.unit(28 + 10/12, "feet")
  54582. },
  54583. {
  54584. name: "Base height",
  54585. height: math.unit(84 + 8/12, "feet"),
  54586. default: true
  54587. },
  54588. {
  54589. name: "Mini-macro",
  54590. height: math.unit(2360, "feet")
  54591. },
  54592. {
  54593. name: "Macro",
  54594. height: math.unit(10, "miles")
  54595. },
  54596. {
  54597. name: "Goddess",
  54598. height: math.unit(9.99e40, "yottameters")
  54599. },
  54600. ]
  54601. ))
  54602. characterMakers.push(() => makeCharacter(
  54603. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54604. {
  54605. front: {
  54606. height: math.unit(2.3, "meters"),
  54607. name: "Front",
  54608. image: {
  54609. source: "./media/characters/cilenomon/front.svg",
  54610. extra: 1963/1778,
  54611. bottom: 54/2017
  54612. }
  54613. },
  54614. },
  54615. [
  54616. {
  54617. name: "Normal",
  54618. height: math.unit(2.3, "meters"),
  54619. default: true
  54620. },
  54621. {
  54622. name: "Big",
  54623. height: math.unit(5, "meters")
  54624. },
  54625. {
  54626. name: "Macro",
  54627. height: math.unit(30, "meters")
  54628. },
  54629. {
  54630. name: "True",
  54631. height: math.unit(1, "universe")
  54632. },
  54633. ]
  54634. ))
  54635. characterMakers.push(() => makeCharacter(
  54636. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54637. {
  54638. front: {
  54639. height: math.unit(5, "feet"),
  54640. name: "Front",
  54641. image: {
  54642. source: "./media/characters/sen-mink/front.svg",
  54643. extra: 1727/1675,
  54644. bottom: 35/1762
  54645. }
  54646. },
  54647. },
  54648. [
  54649. {
  54650. name: "Normal",
  54651. height: math.unit(5, "feet"),
  54652. default: true
  54653. },
  54654. ]
  54655. ))
  54656. characterMakers.push(() => makeCharacter(
  54657. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54658. {
  54659. front: {
  54660. height: math.unit(5.42999, "feet"),
  54661. weight: math.unit(100, "lb"),
  54662. name: "Front",
  54663. image: {
  54664. source: "./media/characters/ophois/front.svg",
  54665. extra: 1429/1286,
  54666. bottom: 60/1489
  54667. }
  54668. },
  54669. },
  54670. [
  54671. {
  54672. name: "Normal",
  54673. height: math.unit(5.42999, "feet"),
  54674. default: true
  54675. },
  54676. ]
  54677. ))
  54678. characterMakers.push(() => makeCharacter(
  54679. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54680. {
  54681. front: {
  54682. height: math.unit(2, "meters"),
  54683. name: "Front",
  54684. image: {
  54685. source: "./media/characters/riley/front.svg",
  54686. extra: 1779/1754,
  54687. bottom: 139/1918
  54688. }
  54689. },
  54690. },
  54691. [
  54692. {
  54693. name: "Normal",
  54694. height: math.unit(2, "meters"),
  54695. default: true
  54696. },
  54697. ]
  54698. ))
  54699. characterMakers.push(() => makeCharacter(
  54700. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54701. {
  54702. front: {
  54703. height: math.unit(6 + 2/12, "feet"),
  54704. weight: math.unit(195, "lb"),
  54705. preyCapacity: math.unit(6, "people"),
  54706. name: "Front",
  54707. image: {
  54708. source: "./media/characters/shuken-flash/front.svg",
  54709. extra: 1905/1739,
  54710. bottom: 65/1970
  54711. }
  54712. },
  54713. back: {
  54714. height: math.unit(6 + 2/12, "feet"),
  54715. weight: math.unit(195, "lb"),
  54716. preyCapacity: math.unit(6, "people"),
  54717. name: "Back",
  54718. image: {
  54719. source: "./media/characters/shuken-flash/back.svg",
  54720. extra: 1912/1751,
  54721. bottom: 13/1925
  54722. }
  54723. },
  54724. },
  54725. [
  54726. {
  54727. name: "Normal",
  54728. height: math.unit(6 + 2/12, "feet"),
  54729. default: true
  54730. },
  54731. ]
  54732. ))
  54733. characterMakers.push(() => makeCharacter(
  54734. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54735. {
  54736. front: {
  54737. height: math.unit(5 + 9/12, "feet"),
  54738. weight: math.unit(150, "lb"),
  54739. name: "Front",
  54740. image: {
  54741. source: "./media/characters/plat/front.svg",
  54742. extra: 1816/1703,
  54743. bottom: 43/1859
  54744. }
  54745. },
  54746. side: {
  54747. height: math.unit(5 + 9/12, "feet"),
  54748. weight: math.unit(300, "lb"),
  54749. name: "Side",
  54750. image: {
  54751. source: "./media/characters/plat/side.svg",
  54752. extra: 1824/1699,
  54753. bottom: 18/1842
  54754. }
  54755. },
  54756. },
  54757. [
  54758. {
  54759. name: "Normal",
  54760. height: math.unit(5 + 9/12, "feet"),
  54761. default: true
  54762. },
  54763. ]
  54764. ))
  54765. characterMakers.push(() => makeCharacter(
  54766. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54767. {
  54768. front: {
  54769. height: math.unit(9, "feet"),
  54770. weight: math.unit(1800, "lb"),
  54771. name: "Front",
  54772. image: {
  54773. source: "./media/characters/elaine/front.svg",
  54774. extra: 1833/1354,
  54775. bottom: 25/1858
  54776. }
  54777. },
  54778. back: {
  54779. height: math.unit(8.8, "feet"),
  54780. weight: math.unit(1800, "lb"),
  54781. name: "Back",
  54782. image: {
  54783. source: "./media/characters/elaine/back.svg",
  54784. extra: 1641/1233,
  54785. bottom: 53/1694
  54786. }
  54787. },
  54788. },
  54789. [
  54790. {
  54791. name: "Normal",
  54792. height: math.unit(9, "feet"),
  54793. default: true
  54794. },
  54795. ]
  54796. ))
  54797. characterMakers.push(() => makeCharacter(
  54798. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54799. {
  54800. front: {
  54801. height: math.unit(17 + 9/12, "feet"),
  54802. weight: math.unit(8000, "lb"),
  54803. name: "Front",
  54804. image: {
  54805. source: "./media/characters/vera-raven/front.svg",
  54806. extra: 1457/1412,
  54807. bottom: 121/1578
  54808. }
  54809. },
  54810. side: {
  54811. height: math.unit(17 + 9/12, "feet"),
  54812. weight: math.unit(8000, "lb"),
  54813. name: "Side",
  54814. image: {
  54815. source: "./media/characters/vera-raven/side.svg",
  54816. extra: 1510/1464,
  54817. bottom: 54/1564
  54818. }
  54819. },
  54820. },
  54821. [
  54822. {
  54823. name: "Normal",
  54824. height: math.unit(17 + 9/12, "feet"),
  54825. default: true
  54826. },
  54827. ]
  54828. ))
  54829. characterMakers.push(() => makeCharacter(
  54830. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54831. {
  54832. dressed: {
  54833. height: math.unit(6 + 9/12, "feet"),
  54834. name: "Dressed",
  54835. image: {
  54836. source: "./media/characters/nakisha/dressed.svg",
  54837. extra: 1909/1757,
  54838. bottom: 48/1957
  54839. }
  54840. },
  54841. nude: {
  54842. height: math.unit(6 + 9/12, "feet"),
  54843. name: "Nude",
  54844. image: {
  54845. source: "./media/characters/nakisha/nude.svg",
  54846. extra: 1917/1765,
  54847. bottom: 34/1951
  54848. }
  54849. },
  54850. },
  54851. [
  54852. {
  54853. name: "Normal",
  54854. height: math.unit(6 + 9/12, "feet"),
  54855. default: true
  54856. },
  54857. ]
  54858. ))
  54859. characterMakers.push(() => makeCharacter(
  54860. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54861. {
  54862. front: {
  54863. height: math.unit(87, "meters"),
  54864. name: "Front",
  54865. image: {
  54866. source: "./media/characters/serafin/front.svg",
  54867. extra: 1919/1776,
  54868. bottom: 65/1984
  54869. }
  54870. },
  54871. },
  54872. [
  54873. {
  54874. name: "Normal",
  54875. height: math.unit(87, "meters"),
  54876. default: true
  54877. },
  54878. ]
  54879. ))
  54880. characterMakers.push(() => makeCharacter(
  54881. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54882. {
  54883. front: {
  54884. height: math.unit(6, "feet"),
  54885. weight: math.unit(200, "lb"),
  54886. name: "Front",
  54887. image: {
  54888. source: "./media/characters/poptart/front.svg",
  54889. extra: 615/583,
  54890. bottom: 23/638
  54891. }
  54892. },
  54893. back: {
  54894. height: math.unit(6, "feet"),
  54895. weight: math.unit(200, "lb"),
  54896. name: "Back",
  54897. image: {
  54898. source: "./media/characters/poptart/back.svg",
  54899. extra: 617/584,
  54900. bottom: 22/639
  54901. }
  54902. },
  54903. frontNsfw: {
  54904. height: math.unit(6, "feet"),
  54905. weight: math.unit(200, "lb"),
  54906. name: "Front (NSFW)",
  54907. image: {
  54908. source: "./media/characters/poptart/front-nsfw.svg",
  54909. extra: 615/583,
  54910. bottom: 23/638
  54911. }
  54912. },
  54913. backNsfw: {
  54914. height: math.unit(6, "feet"),
  54915. weight: math.unit(200, "lb"),
  54916. name: "Back (NSFW)",
  54917. image: {
  54918. source: "./media/characters/poptart/back-nsfw.svg",
  54919. extra: 617/584,
  54920. bottom: 22/639
  54921. }
  54922. },
  54923. hand: {
  54924. height: math.unit(1.14, "feet"),
  54925. name: "Hand",
  54926. image: {
  54927. source: "./media/characters/poptart/hand.svg"
  54928. }
  54929. },
  54930. foot: {
  54931. height: math.unit(1.5, "feet"),
  54932. name: "Foot",
  54933. image: {
  54934. source: "./media/characters/poptart/foot.svg"
  54935. }
  54936. },
  54937. },
  54938. [
  54939. {
  54940. name: "Normal",
  54941. height: math.unit(6, "feet"),
  54942. default: true
  54943. },
  54944. {
  54945. name: "Grande",
  54946. height: math.unit(350, "feet")
  54947. },
  54948. {
  54949. name: "Massif",
  54950. height: math.unit(967, "feet")
  54951. },
  54952. ]
  54953. ))
  54954. characterMakers.push(() => makeCharacter(
  54955. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54956. {
  54957. hyenaSide: {
  54958. height: math.unit(120, "cm"),
  54959. weight: math.unit(120, "lb"),
  54960. name: "Side",
  54961. image: {
  54962. source: "./media/characters/trance/hyena-side.svg",
  54963. extra: 998/904,
  54964. bottom: 76/1074
  54965. }
  54966. },
  54967. },
  54968. [
  54969. {
  54970. name: "Normal",
  54971. height: math.unit(120, "cm"),
  54972. default: true
  54973. },
  54974. {
  54975. name: "Dire",
  54976. height: math.unit(230, "cm")
  54977. },
  54978. {
  54979. name: "Macro",
  54980. height: math.unit(37, "feet")
  54981. },
  54982. ]
  54983. ))
  54984. characterMakers.push(() => makeCharacter(
  54985. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54986. {
  54987. front: {
  54988. height: math.unit(6 + 3/12, "feet"),
  54989. name: "Front",
  54990. image: {
  54991. source: "./media/characters/michael-berretta/front.svg",
  54992. extra: 515/494,
  54993. bottom: 20/535
  54994. }
  54995. },
  54996. back: {
  54997. height: math.unit(6 + 3/12, "feet"),
  54998. name: "Back",
  54999. image: {
  55000. source: "./media/characters/michael-berretta/back.svg",
  55001. extra: 520/497,
  55002. bottom: 21/541
  55003. }
  55004. },
  55005. frontNsfw: {
  55006. height: math.unit(6 + 3/12, "feet"),
  55007. name: "Front (NSFW)",
  55008. image: {
  55009. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55010. extra: 515/494,
  55011. bottom: 20/535
  55012. }
  55013. },
  55014. dick: {
  55015. height: math.unit(1, "feet"),
  55016. name: "Dick",
  55017. image: {
  55018. source: "./media/characters/michael-berretta/dick.svg"
  55019. }
  55020. },
  55021. },
  55022. [
  55023. {
  55024. name: "Normal",
  55025. height: math.unit(6 + 3/12, "feet"),
  55026. default: true
  55027. },
  55028. {
  55029. name: "Big",
  55030. height: math.unit(12, "feet")
  55031. },
  55032. {
  55033. name: "Macro",
  55034. height: math.unit(187.5, "feet")
  55035. },
  55036. ]
  55037. ))
  55038. characterMakers.push(() => makeCharacter(
  55039. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55040. {
  55041. front: {
  55042. height: math.unit(9 + 9/12, "feet"),
  55043. weight: math.unit(1244, "lb"),
  55044. name: "Front",
  55045. image: {
  55046. source: "./media/characters/stella-edgecomb/front.svg",
  55047. extra: 1835/1706,
  55048. bottom: 49/1884
  55049. }
  55050. },
  55051. pen: {
  55052. height: math.unit(0.95, "feet"),
  55053. name: "Pen",
  55054. image: {
  55055. source: "./media/characters/stella-edgecomb/pen.svg"
  55056. }
  55057. },
  55058. },
  55059. [
  55060. {
  55061. name: "Cozy Bear",
  55062. height: math.unit(0.5, "inches")
  55063. },
  55064. {
  55065. name: "Normal",
  55066. height: math.unit(9 + 9/12, "feet"),
  55067. default: true
  55068. },
  55069. {
  55070. name: "Giga Bear",
  55071. height: math.unit(1, "mile")
  55072. },
  55073. {
  55074. name: "Great Bear",
  55075. height: math.unit(53, "miles")
  55076. },
  55077. {
  55078. name: "Goddess Bear",
  55079. height: math.unit(40000, "miles")
  55080. },
  55081. {
  55082. name: "Sun Bear",
  55083. height: math.unit(900000, "miles")
  55084. },
  55085. ]
  55086. ))
  55087. characterMakers.push(() => makeCharacter(
  55088. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55089. {
  55090. anthroFront: {
  55091. height: math.unit(556, "cm"),
  55092. weight: math.unit(2650, "kg"),
  55093. preyCapacity: math.unit(3, "people"),
  55094. name: "Front",
  55095. image: {
  55096. source: "./media/characters/ash´iika/front.svg",
  55097. extra: 710/673,
  55098. bottom: 15/725
  55099. },
  55100. form: "anthro",
  55101. default: true
  55102. },
  55103. anthroSide: {
  55104. height: math.unit(556, "cm"),
  55105. weight: math.unit(2650, "kg"),
  55106. preyCapacity: math.unit(3, "people"),
  55107. name: "Side",
  55108. image: {
  55109. source: "./media/characters/ash´iika/side.svg",
  55110. extra: 696/676,
  55111. bottom: 13/709
  55112. },
  55113. form: "anthro"
  55114. },
  55115. anthroDressed: {
  55116. height: math.unit(556, "cm"),
  55117. weight: math.unit(2650, "kg"),
  55118. preyCapacity: math.unit(3, "people"),
  55119. name: "Dressed",
  55120. image: {
  55121. source: "./media/characters/ash´iika/dressed.svg",
  55122. extra: 710/673,
  55123. bottom: 15/725
  55124. },
  55125. form: "anthro"
  55126. },
  55127. anthroHead: {
  55128. height: math.unit(3.5, "feet"),
  55129. name: "Head",
  55130. image: {
  55131. source: "./media/characters/ash´iika/head.svg",
  55132. extra: 348/291,
  55133. bottom: 45/393
  55134. },
  55135. form: "anthro"
  55136. },
  55137. feralSide: {
  55138. height: math.unit(870, "cm"),
  55139. weight: math.unit(17500, "kg"),
  55140. preyCapacity: math.unit(15, "people"),
  55141. name: "Side",
  55142. image: {
  55143. source: "./media/characters/ash´iika/feral.svg",
  55144. extra: 595/199,
  55145. bottom: 7/602
  55146. },
  55147. form: "feral",
  55148. default: true,
  55149. },
  55150. },
  55151. [
  55152. {
  55153. name: "Normal",
  55154. height: math.unit(556, "cm"),
  55155. default: true,
  55156. form: "anthro"
  55157. },
  55158. {
  55159. name: "Macro",
  55160. height: math.unit(88, "meters"),
  55161. form: "anthro"
  55162. },
  55163. {
  55164. name: "Normal",
  55165. height: math.unit(870, "cm"),
  55166. default: true,
  55167. form: "feral"
  55168. },
  55169. {
  55170. name: "Large",
  55171. height: math.unit(25, "meters"),
  55172. form: "feral"
  55173. },
  55174. ],
  55175. {
  55176. "anthro": {
  55177. name: "Anthro",
  55178. default: true
  55179. },
  55180. "feral": {
  55181. name: "Feral",
  55182. },
  55183. }
  55184. ))
  55185. characterMakers.push(() => makeCharacter(
  55186. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55187. {
  55188. front: {
  55189. height: math.unit(10, "feet"),
  55190. weight: math.unit(800, "lb"),
  55191. name: "Front",
  55192. image: {
  55193. source: "./media/characters/yen/front.svg",
  55194. extra: 443/411,
  55195. bottom: 6/449
  55196. }
  55197. },
  55198. sleeping: {
  55199. height: math.unit(10, "feet"),
  55200. weight: math.unit(800, "lb"),
  55201. name: "Sleeping",
  55202. image: {
  55203. source: "./media/characters/yen/sleeping.svg",
  55204. extra: 470/422,
  55205. bottom: 0/470
  55206. }
  55207. },
  55208. head: {
  55209. height: math.unit(2.2, "feet"),
  55210. name: "Head",
  55211. image: {
  55212. source: "./media/characters/yen/head.svg"
  55213. }
  55214. },
  55215. headAlt: {
  55216. height: math.unit(2.1, "feet"),
  55217. name: "Head (Alt)",
  55218. image: {
  55219. source: "./media/characters/yen/head-alt.svg"
  55220. }
  55221. },
  55222. },
  55223. [
  55224. {
  55225. name: "Normal",
  55226. height: math.unit(10, "feet"),
  55227. default: true
  55228. },
  55229. ]
  55230. ))
  55231. characterMakers.push(() => makeCharacter(
  55232. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55233. {
  55234. front: {
  55235. height: math.unit(12, "feet"),
  55236. name: "Front",
  55237. image: {
  55238. source: "./media/characters/citra/front.svg",
  55239. extra: 1950/1710,
  55240. bottom: 47/1997
  55241. }
  55242. },
  55243. },
  55244. [
  55245. {
  55246. name: "Normal",
  55247. height: math.unit(12, "feet"),
  55248. default: true
  55249. },
  55250. ]
  55251. ))
  55252. characterMakers.push(() => makeCharacter(
  55253. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55254. {
  55255. side: {
  55256. height: math.unit(7 + 10/12, "feet"),
  55257. name: "Side",
  55258. image: {
  55259. source: "./media/characters/sholstim/side.svg",
  55260. extra: 786/682,
  55261. bottom: 40/826
  55262. }
  55263. },
  55264. },
  55265. [
  55266. {
  55267. name: "Normal",
  55268. height: math.unit(7 + 10/12, "feet"),
  55269. default: true
  55270. },
  55271. ]
  55272. ))
  55273. characterMakers.push(() => makeCharacter(
  55274. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55275. {
  55276. front: {
  55277. height: math.unit(3.10, "meters"),
  55278. name: "Front",
  55279. image: {
  55280. source: "./media/characters/aggyn/front.svg",
  55281. extra: 1188/963,
  55282. bottom: 24/1212
  55283. }
  55284. },
  55285. },
  55286. [
  55287. {
  55288. name: "Normal",
  55289. height: math.unit(3.10, "meters"),
  55290. default: true
  55291. },
  55292. ]
  55293. ))
  55294. characterMakers.push(() => makeCharacter(
  55295. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55296. {
  55297. front: {
  55298. height: math.unit(7 + 5/12, "feet"),
  55299. weight: math.unit(687, "lb"),
  55300. name: "Front",
  55301. image: {
  55302. source: "./media/characters/alsandair-hergenroether/front.svg",
  55303. extra: 1251/1186,
  55304. bottom: 75/1326
  55305. }
  55306. },
  55307. back: {
  55308. height: math.unit(7 + 5/12, "feet"),
  55309. weight: math.unit(687, "lb"),
  55310. name: "Back",
  55311. image: {
  55312. source: "./media/characters/alsandair-hergenroether/back.svg",
  55313. extra: 1290/1229,
  55314. bottom: 17/1307
  55315. }
  55316. },
  55317. },
  55318. [
  55319. {
  55320. name: "Max Compression",
  55321. height: math.unit(7 + 5/12, "feet"),
  55322. default: true
  55323. },
  55324. {
  55325. name: "\"Normal\"",
  55326. height: math.unit(2, "universes")
  55327. },
  55328. ]
  55329. ))
  55330. characterMakers.push(() => makeCharacter(
  55331. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55332. {
  55333. front: {
  55334. height: math.unit(4 + 1/12, "feet"),
  55335. weight: math.unit(92, "lb"),
  55336. name: "Front",
  55337. image: {
  55338. source: "./media/characters/ie/front.svg",
  55339. extra: 1585/1352,
  55340. bottom: 91/1676
  55341. }
  55342. },
  55343. },
  55344. [
  55345. {
  55346. name: "Normal",
  55347. height: math.unit(4 + 1/12, "feet"),
  55348. default: true
  55349. },
  55350. ]
  55351. ))
  55352. characterMakers.push(() => makeCharacter(
  55353. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55354. {
  55355. anthro: {
  55356. height: math.unit(6, "feet"),
  55357. weight: math.unit(150, "lb"),
  55358. name: "Front",
  55359. image: {
  55360. source: "./media/characters/willow/anthro.svg",
  55361. extra: 1073/986,
  55362. bottom: 34/1107
  55363. },
  55364. form: "anthro",
  55365. default: true
  55366. },
  55367. taur: {
  55368. height: math.unit(6, "feet"),
  55369. weight: math.unit(150, "lb"),
  55370. name: "Side",
  55371. image: {
  55372. source: "./media/characters/willow/taur.svg",
  55373. extra: 647/512,
  55374. bottom: 136/783
  55375. },
  55376. form: "taur",
  55377. default: true
  55378. },
  55379. },
  55380. [
  55381. {
  55382. name: "Humanoid",
  55383. height: math.unit(2.7, "meters"),
  55384. form: "anthro"
  55385. },
  55386. {
  55387. name: "Normal",
  55388. height: math.unit(9, "meters"),
  55389. form: "anthro",
  55390. default: true
  55391. },
  55392. {
  55393. name: "Humanoid",
  55394. height: math.unit(2.1, "meters"),
  55395. form: "taur"
  55396. },
  55397. {
  55398. name: "Normal",
  55399. height: math.unit(7, "meters"),
  55400. form: "taur",
  55401. default: true
  55402. },
  55403. ],
  55404. {
  55405. "anthro": {
  55406. name: "Anthro",
  55407. default: true
  55408. },
  55409. "taur": {
  55410. name: "Taur",
  55411. },
  55412. }
  55413. ))
  55414. characterMakers.push(() => makeCharacter(
  55415. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55416. {
  55417. front: {
  55418. height: math.unit(2 + 5/12, "feet"),
  55419. name: "Front",
  55420. image: {
  55421. source: "./media/characters/kyan/front.svg",
  55422. extra: 460/334,
  55423. bottom: 23/483
  55424. },
  55425. extraAttributes: {
  55426. "toeLength": {
  55427. name: "Toe Length",
  55428. power: 1,
  55429. type: "length",
  55430. base: math.unit(7, "cm")
  55431. },
  55432. "toeclawLength": {
  55433. name: "Toeclaw Length",
  55434. power: 1,
  55435. type: "length",
  55436. base: math.unit(4.7, "cm")
  55437. },
  55438. "earHeight": {
  55439. name: "Ear Height",
  55440. power: 1,
  55441. type: "length",
  55442. base: math.unit(14.1, "cm")
  55443. },
  55444. }
  55445. },
  55446. paws: {
  55447. height: math.unit(0.45, "feet"),
  55448. name: "Paws",
  55449. image: {
  55450. source: "./media/characters/kyan/paws.svg",
  55451. extra: 581/581,
  55452. bottom: 114/695
  55453. }
  55454. },
  55455. },
  55456. [
  55457. {
  55458. name: "Normal",
  55459. height: math.unit(2 + 5/12, "feet"),
  55460. default: true
  55461. },
  55462. ]
  55463. ))
  55464. characterMakers.push(() => makeCharacter(
  55465. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55466. {
  55467. front: {
  55468. height: math.unit(2 + 2/3, "feet"),
  55469. name: "Front",
  55470. image: {
  55471. source: "./media/characters/xazzon/front.svg",
  55472. extra: 1109/984,
  55473. bottom: 42/1151
  55474. }
  55475. },
  55476. back: {
  55477. height: math.unit(2 + 2/3, "feet"),
  55478. name: "Back",
  55479. image: {
  55480. source: "./media/characters/xazzon/back.svg",
  55481. extra: 1095/971,
  55482. bottom: 23/1118
  55483. }
  55484. },
  55485. },
  55486. [
  55487. {
  55488. name: "Normal",
  55489. height: math.unit(2 + 2/3, "feet"),
  55490. default: true
  55491. },
  55492. ]
  55493. ))
  55494. characterMakers.push(() => makeCharacter(
  55495. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55496. {
  55497. front: {
  55498. height: math.unit(8, "feet"),
  55499. weight: math.unit(300, "lb"),
  55500. name: "Front",
  55501. image: {
  55502. source: "./media/characters/khyla-shadowsong/front.svg",
  55503. extra: 861/798,
  55504. bottom: 32/893
  55505. }
  55506. },
  55507. side: {
  55508. height: math.unit(8, "feet"),
  55509. weight: math.unit(300, "lb"),
  55510. name: "Side",
  55511. image: {
  55512. source: "./media/characters/khyla-shadowsong/side.svg",
  55513. extra: 790/750,
  55514. bottom: 87/877
  55515. }
  55516. },
  55517. back: {
  55518. height: math.unit(8, "feet"),
  55519. weight: math.unit(300, "lb"),
  55520. name: "Back",
  55521. image: {
  55522. source: "./media/characters/khyla-shadowsong/back.svg",
  55523. extra: 855/808,
  55524. bottom: 14/869
  55525. }
  55526. },
  55527. head: {
  55528. height: math.unit(2.7, "feet"),
  55529. name: "Head",
  55530. image: {
  55531. source: "./media/characters/khyla-shadowsong/head.svg"
  55532. }
  55533. },
  55534. },
  55535. [
  55536. {
  55537. name: "Micro",
  55538. height: math.unit(6, "inches")
  55539. },
  55540. {
  55541. name: "Normal",
  55542. height: math.unit(8, "feet"),
  55543. default: true
  55544. },
  55545. ]
  55546. ))
  55547. characterMakers.push(() => makeCharacter(
  55548. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55549. {
  55550. hyperFront: {
  55551. height: math.unit(9 + 4/12, "feet"),
  55552. weight: math.unit(2000, "lb"),
  55553. name: "Front",
  55554. image: {
  55555. source: "./media/characters/tiden/hyper-front.svg",
  55556. extra: 400/382,
  55557. bottom: 6/406
  55558. },
  55559. form: "hyper",
  55560. },
  55561. regularFront: {
  55562. height: math.unit(7 + 10/12, "feet"),
  55563. weight: math.unit(470, "lb"),
  55564. name: "Front",
  55565. image: {
  55566. source: "./media/characters/tiden/regular-front.svg",
  55567. extra: 468/442,
  55568. bottom: 6/474
  55569. },
  55570. form: "regular",
  55571. },
  55572. },
  55573. [
  55574. {
  55575. name: "Normal",
  55576. height: math.unit(9 + 4/12, "feet"),
  55577. default: true,
  55578. form: "hyper"
  55579. },
  55580. {
  55581. name: "Normal",
  55582. height: math.unit(7 + 10/12, "feet"),
  55583. default: true,
  55584. form: "regular"
  55585. },
  55586. ],
  55587. {
  55588. "hyper": {
  55589. name: "Hyper",
  55590. default: true
  55591. },
  55592. "regular": {
  55593. name: "Regular",
  55594. },
  55595. }
  55596. ))
  55597. characterMakers.push(() => makeCharacter(
  55598. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55599. {
  55600. side: {
  55601. height: math.unit(6, "feet"),
  55602. weight: math.unit(150, "lb"),
  55603. name: "Side",
  55604. image: {
  55605. source: "./media/characters/jason-crowe/side.svg",
  55606. extra: 1771/766,
  55607. bottom: 219/1990
  55608. }
  55609. },
  55610. },
  55611. [
  55612. {
  55613. name: "Pocket Gryphon",
  55614. height: math.unit(6, "cm")
  55615. },
  55616. {
  55617. name: "Raven",
  55618. height: math.unit(60, "cm")
  55619. },
  55620. {
  55621. name: "Normal",
  55622. height: math.unit(1, "meter"),
  55623. default: true
  55624. },
  55625. ]
  55626. ))
  55627. characterMakers.push(() => makeCharacter(
  55628. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55629. {
  55630. front: {
  55631. height: math.unit(9 + 6/12, "feet"),
  55632. weight: math.unit(1100, "lb"),
  55633. name: "Front",
  55634. image: {
  55635. source: "./media/characters/django/front.svg",
  55636. extra: 1231/1136,
  55637. bottom: 34/1265
  55638. }
  55639. },
  55640. side: {
  55641. height: math.unit(9 + 6/12, "feet"),
  55642. weight: math.unit(1100, "lb"),
  55643. name: "Side",
  55644. image: {
  55645. source: "./media/characters/django/side.svg",
  55646. extra: 1267/1174,
  55647. bottom: 9/1276
  55648. }
  55649. },
  55650. },
  55651. [
  55652. {
  55653. name: "Normal",
  55654. height: math.unit(9 + 6/12, "feet"),
  55655. default: true
  55656. },
  55657. {
  55658. name: "Macro 1",
  55659. height: math.unit(50, "feet")
  55660. },
  55661. {
  55662. name: "Macro 2",
  55663. height: math.unit(500, "feet")
  55664. },
  55665. {
  55666. name: "Mega Macro",
  55667. height: math.unit(5300, "feet")
  55668. },
  55669. ]
  55670. ))
  55671. characterMakers.push(() => makeCharacter(
  55672. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55673. {
  55674. frontSfw: {
  55675. height: math.unit(120, "cm"),
  55676. weight: math.unit(15, "kg"),
  55677. name: "Front (SFW)",
  55678. image: {
  55679. source: "./media/characters/eri/front-sfw.svg",
  55680. extra: 1014/939,
  55681. bottom: 37/1051
  55682. },
  55683. form: "moth",
  55684. },
  55685. frontNsfw: {
  55686. height: math.unit(120, "cm"),
  55687. weight: math.unit(15, "kg"),
  55688. name: "Front (NSFW)",
  55689. image: {
  55690. source: "./media/characters/eri/front-nsfw.svg",
  55691. extra: 1014/939,
  55692. bottom: 37/1051
  55693. },
  55694. form: "moth",
  55695. default: true
  55696. },
  55697. egg: {
  55698. height: math.unit(10, "cm"),
  55699. name: "Egg",
  55700. image: {
  55701. source: "./media/characters/eri/egg.svg"
  55702. },
  55703. form: "egg",
  55704. default: true
  55705. },
  55706. },
  55707. [
  55708. {
  55709. name: "Normal",
  55710. height: math.unit(120, "cm"),
  55711. default: true,
  55712. form: "moth"
  55713. },
  55714. {
  55715. name: "Normal",
  55716. height: math.unit(10, "cm"),
  55717. default: true,
  55718. form: "egg"
  55719. },
  55720. ],
  55721. {
  55722. "moth": {
  55723. name: "Moth",
  55724. default: true
  55725. },
  55726. "egg": {
  55727. name: "Egg",
  55728. },
  55729. }
  55730. ))
  55731. characterMakers.push(() => makeCharacter(
  55732. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55733. {
  55734. front: {
  55735. height: math.unit(200, "feet"),
  55736. name: "Front",
  55737. image: {
  55738. source: "./media/characters/bishop-dowser/front.svg",
  55739. extra: 933/868,
  55740. bottom: 106/1039
  55741. }
  55742. },
  55743. },
  55744. [
  55745. {
  55746. name: "Giant",
  55747. height: math.unit(200, "feet"),
  55748. default: true
  55749. },
  55750. ]
  55751. ))
  55752. characterMakers.push(() => makeCharacter(
  55753. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55754. {
  55755. front: {
  55756. height: math.unit(2, "meters"),
  55757. preyCapacity: math.unit(3, "people"),
  55758. name: "Front",
  55759. image: {
  55760. source: "./media/characters/fryra/front.svg",
  55761. extra: 1025/948,
  55762. bottom: 30/1055
  55763. },
  55764. extraAttributes: {
  55765. "breastVolume": {
  55766. name: "Breast Volume",
  55767. power: 3,
  55768. type: "volume",
  55769. base: math.unit(8, "liters")
  55770. },
  55771. }
  55772. },
  55773. back: {
  55774. height: math.unit(2, "meters"),
  55775. preyCapacity: math.unit(3, "people"),
  55776. name: "Back",
  55777. image: {
  55778. source: "./media/characters/fryra/back.svg",
  55779. extra: 993/938,
  55780. bottom: 38/1031
  55781. },
  55782. extraAttributes: {
  55783. "breastVolume": {
  55784. name: "Breast Volume",
  55785. power: 3,
  55786. type: "volume",
  55787. base: math.unit(8, "liters")
  55788. },
  55789. }
  55790. },
  55791. head: {
  55792. height: math.unit(1.33, "feet"),
  55793. name: "Head",
  55794. image: {
  55795. source: "./media/characters/fryra/head.svg"
  55796. }
  55797. },
  55798. maw: {
  55799. height: math.unit(0.56, "feet"),
  55800. name: "Maw",
  55801. image: {
  55802. source: "./media/characters/fryra/maw.svg"
  55803. }
  55804. },
  55805. },
  55806. [
  55807. {
  55808. name: "Micro",
  55809. height: math.unit(5, "cm")
  55810. },
  55811. {
  55812. name: "Normal",
  55813. height: math.unit(2, "meters"),
  55814. default: true
  55815. },
  55816. {
  55817. name: "Small Macro",
  55818. height: math.unit(8, "meters")
  55819. },
  55820. {
  55821. name: "Macro",
  55822. height: math.unit(50, "meters")
  55823. },
  55824. {
  55825. name: "Megamacro",
  55826. height: math.unit(1, "km")
  55827. },
  55828. {
  55829. name: "Planetary",
  55830. height: math.unit(300000, "km")
  55831. },
  55832. {
  55833. name: "Universal",
  55834. height: math.unit(250, "lightyears")
  55835. },
  55836. {
  55837. name: "Fabric of Reality",
  55838. height: math.unit(1000, "multiverses")
  55839. },
  55840. ]
  55841. ))
  55842. characterMakers.push(() => makeCharacter(
  55843. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55844. {
  55845. frontDressed: {
  55846. height: math.unit(6 + 2/12, "feet"),
  55847. name: "Front (Dressed)",
  55848. image: {
  55849. source: "./media/characters/fiera/front-dressed.svg",
  55850. extra: 1883/1793,
  55851. bottom: 70/1953
  55852. }
  55853. },
  55854. backDressed: {
  55855. height: math.unit(6 + 2/12, "feet"),
  55856. name: "Back (Dressed)",
  55857. image: {
  55858. source: "./media/characters/fiera/back-dressed.svg",
  55859. extra: 1847/1780,
  55860. bottom: 70/1917
  55861. }
  55862. },
  55863. frontNude: {
  55864. height: math.unit(6 + 2/12, "feet"),
  55865. name: "Front (Nude)",
  55866. image: {
  55867. source: "./media/characters/fiera/front-nude.svg",
  55868. extra: 1875/1785,
  55869. bottom: 66/1941
  55870. }
  55871. },
  55872. backNude: {
  55873. height: math.unit(6 + 2/12, "feet"),
  55874. name: "Back (Nude)",
  55875. image: {
  55876. source: "./media/characters/fiera/back-nude.svg",
  55877. extra: 1855/1788,
  55878. bottom: 44/1899
  55879. }
  55880. },
  55881. maw: {
  55882. height: math.unit(1.3, "feet"),
  55883. name: "Maw",
  55884. image: {
  55885. source: "./media/characters/fiera/maw.svg"
  55886. }
  55887. },
  55888. paw: {
  55889. height: math.unit(1, "feet"),
  55890. name: "Paw",
  55891. image: {
  55892. source: "./media/characters/fiera/paw.svg"
  55893. }
  55894. },
  55895. shoe: {
  55896. height: math.unit(1.05, "feet"),
  55897. name: "Shoe",
  55898. image: {
  55899. source: "./media/characters/fiera/shoe.svg"
  55900. }
  55901. },
  55902. },
  55903. [
  55904. {
  55905. name: "Normal",
  55906. height: math.unit(6 + 2/12, "feet"),
  55907. default: true
  55908. },
  55909. {
  55910. name: "Size Difference",
  55911. height: math.unit(13, "feet")
  55912. },
  55913. {
  55914. name: "Macro",
  55915. height: math.unit(60, "feet")
  55916. },
  55917. {
  55918. name: "Mega Macro",
  55919. height: math.unit(200, "feet")
  55920. },
  55921. ]
  55922. ))
  55923. characterMakers.push(() => makeCharacter(
  55924. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55925. {
  55926. back: {
  55927. height: math.unit(6, "feet"),
  55928. name: "Back",
  55929. image: {
  55930. source: "./media/characters/flare/back.svg",
  55931. extra: 1883/1765,
  55932. bottom: 32/1915
  55933. }
  55934. },
  55935. },
  55936. [
  55937. {
  55938. name: "Normal",
  55939. height: math.unit(6 + 2/12, "feet"),
  55940. default: true
  55941. },
  55942. {
  55943. name: "Size Difference",
  55944. height: math.unit(13, "feet")
  55945. },
  55946. {
  55947. name: "Macro",
  55948. height: math.unit(60, "feet")
  55949. },
  55950. {
  55951. name: "Macro 2",
  55952. height: math.unit(100, "feet")
  55953. },
  55954. {
  55955. name: "Mega Macro",
  55956. height: math.unit(200, "feet")
  55957. },
  55958. ]
  55959. ))
  55960. characterMakers.push(() => makeCharacter(
  55961. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55962. {
  55963. front: {
  55964. height: math.unit(2.2, "m"),
  55965. weight: math.unit(300, "kg"),
  55966. name: "Front",
  55967. image: {
  55968. source: "./media/characters/hanna/front.svg",
  55969. extra: 1696/1502,
  55970. bottom: 206/1902
  55971. }
  55972. },
  55973. },
  55974. [
  55975. {
  55976. name: "Humanoid",
  55977. height: math.unit(2.2, "meters")
  55978. },
  55979. {
  55980. name: "Normal",
  55981. height: math.unit(4.8, "meters"),
  55982. default: true
  55983. },
  55984. ]
  55985. ))
  55986. characterMakers.push(() => makeCharacter(
  55987. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55988. {
  55989. front: {
  55990. height: math.unit(2.8, "meters"),
  55991. name: "Front",
  55992. image: {
  55993. source: "./media/characters/argo/front.svg",
  55994. extra: 731/518,
  55995. bottom: 84/815
  55996. }
  55997. },
  55998. },
  55999. [
  56000. {
  56001. name: "Normal",
  56002. height: math.unit(3, "meters"),
  56003. default: true
  56004. },
  56005. ]
  56006. ))
  56007. characterMakers.push(() => makeCharacter(
  56008. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56009. {
  56010. side: {
  56011. height: math.unit(3.8, "meters"),
  56012. name: "Side",
  56013. image: {
  56014. source: "./media/characters/sybil/side.svg",
  56015. extra: 382/361,
  56016. bottom: 25/407
  56017. }
  56018. },
  56019. },
  56020. [
  56021. {
  56022. name: "Normal",
  56023. height: math.unit(3.8, "meters"),
  56024. default: true
  56025. },
  56026. ]
  56027. ))
  56028. characterMakers.push(() => makeCharacter(
  56029. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56030. {
  56031. side: {
  56032. height: math.unit(6, "meters"),
  56033. name: "Side",
  56034. image: {
  56035. source: "./media/characters/plum/side.svg",
  56036. extra: 858/755,
  56037. bottom: 45/903
  56038. },
  56039. form: "taur",
  56040. default: true
  56041. },
  56042. back: {
  56043. height: math.unit(6.3, "meters"),
  56044. name: "Back",
  56045. image: {
  56046. source: "./media/characters/plum/back.svg",
  56047. extra: 887/813,
  56048. bottom: 32/919
  56049. },
  56050. form: "taur",
  56051. },
  56052. feral: {
  56053. height: math.unit(5.5, "meter"),
  56054. name: "Front",
  56055. image: {
  56056. source: "./media/characters/plum/feral.svg",
  56057. extra: 568/403,
  56058. bottom: 51/619
  56059. },
  56060. form: "feral",
  56061. default: true
  56062. },
  56063. head: {
  56064. height: math.unit(1.46, "meter"),
  56065. name: "Head",
  56066. image: {
  56067. source: "./media/characters/plum/head.svg"
  56068. },
  56069. form: "taur"
  56070. },
  56071. tailTop: {
  56072. height: math.unit(5.6, "meter"),
  56073. name: "Tail (Top)",
  56074. image: {
  56075. source: "./media/characters/plum/tail-top.svg"
  56076. },
  56077. form: "taur",
  56078. },
  56079. tailBottom: {
  56080. height: math.unit(5.6, "meter"),
  56081. name: "Tail (Bottom)",
  56082. image: {
  56083. source: "./media/characters/plum/tail-bottom.svg"
  56084. },
  56085. form: "taur",
  56086. },
  56087. feralHead: {
  56088. height: math.unit(2.56549521, "meter"),
  56089. name: "Head",
  56090. image: {
  56091. source: "./media/characters/plum/head.svg"
  56092. },
  56093. form: "feral"
  56094. },
  56095. feralTailTop: {
  56096. height: math.unit(5.44728435, "meter"),
  56097. name: "Tail (Top)",
  56098. image: {
  56099. source: "./media/characters/plum/tail-top.svg"
  56100. },
  56101. form: "feral",
  56102. },
  56103. feralTailBottom: {
  56104. height: math.unit(5.44728435, "meter"),
  56105. name: "Tail (Bottom)",
  56106. image: {
  56107. source: "./media/characters/plum/tail-bottom.svg"
  56108. },
  56109. form: "feral",
  56110. },
  56111. },
  56112. [
  56113. {
  56114. name: "Normal",
  56115. height: math.unit(6, "meters"),
  56116. default: true,
  56117. form: "taur"
  56118. },
  56119. {
  56120. name: "Normal",
  56121. height: math.unit(5.5, "meters"),
  56122. default: true,
  56123. form: "feral"
  56124. },
  56125. ],
  56126. {
  56127. "taur": {
  56128. name: "Taur",
  56129. default: true
  56130. },
  56131. "feral": {
  56132. name: "Feral",
  56133. },
  56134. }
  56135. ))
  56136. characterMakers.push(() => makeCharacter(
  56137. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56138. {
  56139. front: {
  56140. height: math.unit(6, "feet"),
  56141. weight: math.unit(115, "lb"),
  56142. name: "Front",
  56143. image: {
  56144. source: "./media/characters/celeste-kitsune/front.svg",
  56145. extra: 393/366,
  56146. bottom: 7/400
  56147. }
  56148. },
  56149. side: {
  56150. height: math.unit(6, "feet"),
  56151. weight: math.unit(115, "lb"),
  56152. name: "Side",
  56153. image: {
  56154. source: "./media/characters/celeste-kitsune/side.svg",
  56155. extra: 818/765,
  56156. bottom: 40/858
  56157. }
  56158. },
  56159. },
  56160. [
  56161. {
  56162. name: "Megamacro",
  56163. height: math.unit(1500, "miles"),
  56164. default: true
  56165. },
  56166. ]
  56167. ))
  56168. characterMakers.push(() => makeCharacter(
  56169. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56170. {
  56171. front: {
  56172. height: math.unit(8, "meters"),
  56173. name: "Front",
  56174. image: {
  56175. source: "./media/characters/io/front.svg",
  56176. extra: 865/722,
  56177. bottom: 58/923
  56178. }
  56179. },
  56180. back: {
  56181. height: math.unit(8, "meters"),
  56182. name: "Back",
  56183. image: {
  56184. source: "./media/characters/io/back.svg",
  56185. extra: 920/776,
  56186. bottom: 42/962
  56187. }
  56188. },
  56189. head: {
  56190. height: math.unit(5.09, "meters"),
  56191. name: "Head",
  56192. image: {
  56193. source: "./media/characters/io/head.svg"
  56194. }
  56195. },
  56196. hand: {
  56197. height: math.unit(1.6, "meters"),
  56198. name: "Hand",
  56199. image: {
  56200. source: "./media/characters/io/hand.svg"
  56201. }
  56202. },
  56203. foot: {
  56204. height: math.unit(2.4, "meters"),
  56205. name: "Foot",
  56206. image: {
  56207. source: "./media/characters/io/foot.svg"
  56208. }
  56209. },
  56210. },
  56211. [
  56212. {
  56213. name: "Normal",
  56214. height: math.unit(8, "meters"),
  56215. default: true
  56216. },
  56217. ]
  56218. ))
  56219. characterMakers.push(() => makeCharacter(
  56220. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56221. {
  56222. side: {
  56223. height: math.unit(6 + 3/12, "feet"),
  56224. weight: math.unit(225, "lb"),
  56225. name: "Side",
  56226. image: {
  56227. source: "./media/characters/silas/side.svg",
  56228. extra: 703/653,
  56229. bottom: 23/726
  56230. },
  56231. extraAttributes: {
  56232. "pawLength": {
  56233. name: "Paw Length",
  56234. power: 1,
  56235. type: "length",
  56236. base: math.unit(12, "inches")
  56237. },
  56238. "pawWidth": {
  56239. name: "Paw Width",
  56240. power: 1,
  56241. type: "length",
  56242. base: math.unit(4.5, "inches")
  56243. },
  56244. "pawArea": {
  56245. name: "Paw Area",
  56246. power: 2,
  56247. type: "area",
  56248. base: math.unit(12 * 4.5, "inches^2")
  56249. },
  56250. }
  56251. },
  56252. },
  56253. [
  56254. {
  56255. name: "Normal",
  56256. height: math.unit(6 + 3/12, "feet"),
  56257. default: true
  56258. },
  56259. ]
  56260. ))
  56261. characterMakers.push(() => makeCharacter(
  56262. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56263. {
  56264. back: {
  56265. height: math.unit(1.6, "meters"),
  56266. weight: math.unit(150, "lb"),
  56267. name: "Back",
  56268. image: {
  56269. source: "./media/characters/zari/back.svg",
  56270. extra: 424/411,
  56271. bottom: 32/456
  56272. },
  56273. extraAttributes: {
  56274. "bladderCapacity": {
  56275. name: "Bladder Size",
  56276. power: 3,
  56277. type: "volume",
  56278. base: math.unit(500, "mL")
  56279. },
  56280. "bladderFlow": {
  56281. name: "Flow Rate",
  56282. power: 3,
  56283. type: "volume",
  56284. base: math.unit(25, "mL")
  56285. },
  56286. }
  56287. },
  56288. },
  56289. [
  56290. {
  56291. name: "Normal",
  56292. height: math.unit(1.6, "meters"),
  56293. default: true
  56294. },
  56295. ]
  56296. ))
  56297. characterMakers.push(() => makeCharacter(
  56298. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56299. {
  56300. front: {
  56301. height: math.unit(25, "feet"),
  56302. weight: math.unit(5, "tons"),
  56303. name: "Front",
  56304. image: {
  56305. source: "./media/characters/charlie-human/front.svg",
  56306. extra: 1870/1740,
  56307. bottom: 102/1972
  56308. },
  56309. extraAttributes: {
  56310. "dickLength": {
  56311. name: "Dick Length",
  56312. power: 1,
  56313. type: "length",
  56314. base: math.unit(9, "feet")
  56315. },
  56316. }
  56317. },
  56318. back: {
  56319. height: math.unit(25, "feet"),
  56320. weight: math.unit(5, "tons"),
  56321. name: "Back",
  56322. image: {
  56323. source: "./media/characters/charlie-human/back.svg",
  56324. extra: 1858/1733,
  56325. bottom: 105/1963
  56326. },
  56327. extraAttributes: {
  56328. "dickLength": {
  56329. name: "Dick Length",
  56330. power: 1,
  56331. type: "length",
  56332. base: math.unit(9, "feet")
  56333. },
  56334. }
  56335. },
  56336. },
  56337. [
  56338. {
  56339. name: "\"Normal\"",
  56340. height: math.unit(6 + 4/12, "feet")
  56341. },
  56342. {
  56343. name: "Big",
  56344. height: math.unit(25, "feet"),
  56345. default: true
  56346. },
  56347. ]
  56348. ))
  56349. characterMakers.push(() => makeCharacter(
  56350. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56351. {
  56352. front: {
  56353. height: math.unit(6 + 4/12, "feet"),
  56354. weight: math.unit(320, "lb"),
  56355. name: "Front",
  56356. image: {
  56357. source: "./media/characters/ookitsu/front.svg",
  56358. extra: 1160/976,
  56359. bottom: 38/1198
  56360. }
  56361. },
  56362. frontNsfw: {
  56363. height: math.unit(6 + 4/12, "feet"),
  56364. weight: math.unit(320, "lb"),
  56365. name: "Front (NSFW)",
  56366. image: {
  56367. source: "./media/characters/ookitsu/front-nsfw.svg",
  56368. extra: 1160/976,
  56369. bottom: 38/1198
  56370. }
  56371. },
  56372. back: {
  56373. height: math.unit(6 + 4/12, "feet"),
  56374. weight: math.unit(320, "lb"),
  56375. name: "Back",
  56376. image: {
  56377. source: "./media/characters/ookitsu/back.svg",
  56378. extra: 1030/975,
  56379. bottom: 70/1100
  56380. }
  56381. },
  56382. head: {
  56383. height: math.unit(1.79, "feet"),
  56384. name: "Head",
  56385. image: {
  56386. source: "./media/characters/ookitsu/head.svg"
  56387. }
  56388. },
  56389. hand: {
  56390. height: math.unit(0.92, "feet"),
  56391. name: "Hand",
  56392. image: {
  56393. source: "./media/characters/ookitsu/hand.svg"
  56394. }
  56395. },
  56396. tails: {
  56397. height: math.unit(3.3, "feet"),
  56398. name: "Tails",
  56399. image: {
  56400. source: "./media/characters/ookitsu/tails.svg"
  56401. }
  56402. },
  56403. dick: {
  56404. height: math.unit(1.10833, "feet"),
  56405. name: "Dick",
  56406. image: {
  56407. source: "./media/characters/ookitsu/dick.svg"
  56408. }
  56409. },
  56410. },
  56411. [
  56412. {
  56413. name: "Normal",
  56414. height: math.unit(6 + 4/12, "feet"),
  56415. default: true
  56416. },
  56417. {
  56418. name: "Macro",
  56419. height: math.unit(30, "feet")
  56420. },
  56421. ]
  56422. ))
  56423. characterMakers.push(() => makeCharacter(
  56424. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56425. {
  56426. anthroFront: {
  56427. height: math.unit(6, "feet"),
  56428. weight: math.unit(250, "lb"),
  56429. name: "Front",
  56430. image: {
  56431. source: "./media/characters/jhusky/anthro-front.svg",
  56432. extra: 474/439,
  56433. bottom: 7/481
  56434. },
  56435. form: "anthro",
  56436. default: true
  56437. },
  56438. taurSideSfw: {
  56439. height: math.unit(6 + 4/12, "feet"),
  56440. weight: math.unit(500, "lb"),
  56441. name: "Side (SFW)",
  56442. image: {
  56443. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56444. extra: 1741/1629,
  56445. bottom: 196/1937
  56446. },
  56447. form: "taur",
  56448. default: true
  56449. },
  56450. taurSideNsfw: {
  56451. height: math.unit(6 + 4/12, "feet"),
  56452. weight: math.unit(500, "lb"),
  56453. name: "Taur (NSFW)",
  56454. image: {
  56455. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56456. extra: 1741/1629,
  56457. bottom: 196/1937
  56458. },
  56459. form: "taur",
  56460. },
  56461. },
  56462. [
  56463. {
  56464. name: "Huge",
  56465. height: math.unit(500, "feet"),
  56466. form: "anthro"
  56467. },
  56468. {
  56469. name: "Macro",
  56470. height: math.unit(1000, "feet"),
  56471. default: true,
  56472. form: "anthro"
  56473. },
  56474. {
  56475. name: "Megamacro",
  56476. height: math.unit(10000, "feet"),
  56477. form: "anthro"
  56478. },
  56479. {
  56480. name: "Huge",
  56481. height: math.unit(528, "feet"),
  56482. form: "taur"
  56483. },
  56484. {
  56485. name: "Macro",
  56486. height: math.unit(1056, "feet"),
  56487. default: true,
  56488. form: "taur"
  56489. },
  56490. {
  56491. name: "Megamacro",
  56492. height: math.unit(10556, "feet"),
  56493. form: "taur"
  56494. },
  56495. ],
  56496. {
  56497. "anthro": {
  56498. name: "Anthro",
  56499. default: true
  56500. },
  56501. "taur": {
  56502. name: "Taur",
  56503. },
  56504. }
  56505. ))
  56506. characterMakers.push(() => makeCharacter(
  56507. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56508. {
  56509. front: {
  56510. height: math.unit(8, "feet"),
  56511. weight: math.unit(500, "lb"),
  56512. name: "Front",
  56513. image: {
  56514. source: "./media/characters/armail/front.svg",
  56515. extra: 1753/1669,
  56516. bottom: 155/1908
  56517. }
  56518. },
  56519. back: {
  56520. height: math.unit(8, "feet"),
  56521. weight: math.unit(500, "lb"),
  56522. name: "Back",
  56523. image: {
  56524. source: "./media/characters/armail/back.svg",
  56525. extra: 1872/1803,
  56526. bottom: 63/1935
  56527. }
  56528. },
  56529. },
  56530. [
  56531. {
  56532. name: "Micro",
  56533. height: math.unit(0.25, "feet")
  56534. },
  56535. {
  56536. name: "Normal",
  56537. height: math.unit(8, "feet"),
  56538. default: true
  56539. },
  56540. {
  56541. name: "Mini-macro",
  56542. height: math.unit(30, "feet")
  56543. },
  56544. {
  56545. name: "Macro",
  56546. height: math.unit(400, "feet")
  56547. },
  56548. {
  56549. name: "Mega-macro",
  56550. height: math.unit(6000, "feet")
  56551. },
  56552. ]
  56553. ))
  56554. characterMakers.push(() => makeCharacter(
  56555. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56556. {
  56557. front: {
  56558. height: math.unit(6 + 7/12, "feet"),
  56559. weight: math.unit(210, "lb"),
  56560. name: "Front",
  56561. image: {
  56562. source: "./media/characters/wilfred-t-buxton/front.svg",
  56563. extra: 1068/882,
  56564. bottom: 28/1096
  56565. }
  56566. },
  56567. },
  56568. [
  56569. {
  56570. name: "Normal",
  56571. height: math.unit(6 + 7/12, "feet"),
  56572. default: true
  56573. },
  56574. ]
  56575. ))
  56576. characterMakers.push(() => makeCharacter(
  56577. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56578. {
  56579. front: {
  56580. height: math.unit(5 + 2/12, "feet"),
  56581. weight: math.unit(120, "lb"),
  56582. name: "Front",
  56583. image: {
  56584. source: "./media/characters/leighton-marrow/front.svg",
  56585. extra: 441/409,
  56586. bottom: 37/478
  56587. }
  56588. },
  56589. },
  56590. [
  56591. {
  56592. name: "Normal",
  56593. height: math.unit(5 + 2/12, "feet"),
  56594. default: true
  56595. },
  56596. ]
  56597. ))
  56598. characterMakers.push(() => makeCharacter(
  56599. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56600. {
  56601. front: {
  56602. height: math.unit(4, "meters"),
  56603. weight: math.unit(1200, "kg"),
  56604. name: "Front",
  56605. image: {
  56606. source: "./media/characters/licos/front.svg",
  56607. extra: 1727/1604,
  56608. bottom: 101/1828
  56609. },
  56610. form: "anthro",
  56611. default: true
  56612. },
  56613. taur_side: {
  56614. height: math.unit(20, "meters"),
  56615. weight: math.unit(1100000, "kg"),
  56616. name: "Side",
  56617. image: {
  56618. source: "./media/characters/licos/taur.svg",
  56619. extra: 1158/1091,
  56620. bottom: 80/1238
  56621. },
  56622. form: "taur",
  56623. default: true
  56624. },
  56625. },
  56626. [
  56627. {
  56628. name: "Normal",
  56629. height: math.unit(4, "meters"),
  56630. default: true,
  56631. form: "anthro"
  56632. },
  56633. {
  56634. name: "Normal",
  56635. height: math.unit(20, "meters"),
  56636. default: true,
  56637. form: "taur"
  56638. },
  56639. ],
  56640. {
  56641. "anthro": {
  56642. name: "Anthro",
  56643. default: true
  56644. },
  56645. "taur": {
  56646. name: "Taur",
  56647. },
  56648. }
  56649. ))
  56650. characterMakers.push(() => makeCharacter(
  56651. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56652. {
  56653. front: {
  56654. height: math.unit(10 + 3/12, "feet"),
  56655. name: "Front",
  56656. image: {
  56657. source: "./media/characters/theo-monkey/front.svg",
  56658. extra: 1735/1658,
  56659. bottom: 73/1808
  56660. }
  56661. },
  56662. back: {
  56663. height: math.unit(10 + 3/12, "feet"),
  56664. name: "Back",
  56665. image: {
  56666. source: "./media/characters/theo-monkey/back.svg",
  56667. extra: 1742/1664,
  56668. bottom: 33/1775
  56669. }
  56670. },
  56671. head: {
  56672. height: math.unit(2.29, "feet"),
  56673. name: "Head",
  56674. image: {
  56675. source: "./media/characters/theo-monkey/head.svg"
  56676. }
  56677. },
  56678. handPalm: {
  56679. height: math.unit(1.73, "feet"),
  56680. name: "Hand (Palm)",
  56681. image: {
  56682. source: "./media/characters/theo-monkey/hand-palm.svg"
  56683. }
  56684. },
  56685. handBack: {
  56686. height: math.unit(1.63, "feet"),
  56687. name: "Hand (Back)",
  56688. image: {
  56689. source: "./media/characters/theo-monkey/hand-back.svg"
  56690. }
  56691. },
  56692. footSole: {
  56693. height: math.unit(2.15, "feet"),
  56694. name: "Foot (Sole)",
  56695. image: {
  56696. source: "./media/characters/theo-monkey/foot-sole.svg"
  56697. }
  56698. },
  56699. footSide: {
  56700. height: math.unit(1.6, "feet"),
  56701. name: "Foot (Side)",
  56702. image: {
  56703. source: "./media/characters/theo-monkey/foot-side.svg"
  56704. }
  56705. },
  56706. },
  56707. [
  56708. {
  56709. name: "Normal",
  56710. height: math.unit(10 + 3/12, "feet"),
  56711. default: true
  56712. },
  56713. ]
  56714. ))
  56715. characterMakers.push(() => makeCharacter(
  56716. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56717. {
  56718. front: {
  56719. height: math.unit(11, "feet"),
  56720. weight: math.unit(3000, "lb"),
  56721. preyCapacity: math.unit(10, "people"),
  56722. name: "Front",
  56723. image: {
  56724. source: "./media/characters/brook/front.svg",
  56725. extra: 909/835,
  56726. bottom: 108/1017
  56727. }
  56728. },
  56729. back: {
  56730. height: math.unit(11, "feet"),
  56731. weight: math.unit(3000, "lb"),
  56732. preyCapacity: math.unit(10, "people"),
  56733. name: "Back",
  56734. image: {
  56735. source: "./media/characters/brook/back.svg",
  56736. extra: 976/916,
  56737. bottom: 34/1010
  56738. }
  56739. },
  56740. backAlt: {
  56741. height: math.unit(11, "feet"),
  56742. weight: math.unit(3000, "lb"),
  56743. preyCapacity: math.unit(10, "people"),
  56744. name: "Back (Alt)",
  56745. image: {
  56746. source: "./media/characters/brook/back-alt.svg",
  56747. extra: 1283/1213,
  56748. bottom: 35/1318
  56749. }
  56750. },
  56751. bust: {
  56752. height: math.unit(9.0859030837, "feet"),
  56753. weight: math.unit(3000, "lb"),
  56754. preyCapacity: math.unit(10, "people"),
  56755. name: "Bust",
  56756. image: {
  56757. source: "./media/characters/brook/bust.svg",
  56758. extra: 2043/1923,
  56759. bottom: 0/2043
  56760. }
  56761. },
  56762. },
  56763. [
  56764. {
  56765. name: "Small",
  56766. height: math.unit(11, "feet"),
  56767. default: true
  56768. },
  56769. {
  56770. name: "Towering",
  56771. height: math.unit(5, "km")
  56772. },
  56773. {
  56774. name: "Enormous",
  56775. height: math.unit(25, "earths")
  56776. },
  56777. ]
  56778. ))
  56779. characterMakers.push(() => makeCharacter(
  56780. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56781. {
  56782. front: {
  56783. height: math.unit(4, "feet"),
  56784. weight: math.unit(150, "lb"),
  56785. name: "Front",
  56786. image: {
  56787. source: "./media/characters/squishi/front.svg",
  56788. extra: 1428/1271,
  56789. bottom: 30/1458
  56790. },
  56791. extraAttributes: {
  56792. "pawSize": {
  56793. name: "Paw Size",
  56794. power: 1,
  56795. type: "length",
  56796. base: math.unit(14, "ShoeSizeMensUS"),
  56797. defaultUnit: "ShoeSizeMensUS"
  56798. },
  56799. }
  56800. },
  56801. side: {
  56802. height: math.unit(4, "feet"),
  56803. weight: math.unit(150, "lb"),
  56804. name: "Side",
  56805. image: {
  56806. source: "./media/characters/squishi/side.svg",
  56807. extra: 1428/1271,
  56808. bottom: 30/1458
  56809. },
  56810. extraAttributes: {
  56811. "pawSize": {
  56812. name: "Paw Size",
  56813. power: 1,
  56814. type: "length",
  56815. base: math.unit(14, "ShoeSizeMensUS"),
  56816. defaultUnit: "ShoeSizeMensUS"
  56817. },
  56818. }
  56819. },
  56820. back: {
  56821. height: math.unit(4, "feet"),
  56822. weight: math.unit(150, "lb"),
  56823. name: "Back",
  56824. image: {
  56825. source: "./media/characters/squishi/back.svg",
  56826. extra: 1428/1271,
  56827. bottom: 30/1458
  56828. },
  56829. extraAttributes: {
  56830. "pawSize": {
  56831. name: "Paw Size",
  56832. power: 1,
  56833. type: "length",
  56834. base: math.unit(14, "ShoeSizeMensUS"),
  56835. defaultUnit: "ShoeSizeMensUS"
  56836. },
  56837. }
  56838. },
  56839. },
  56840. [
  56841. {
  56842. name: "Normal",
  56843. height: math.unit(4, "feet"),
  56844. default: true
  56845. },
  56846. ]
  56847. ))
  56848. characterMakers.push(() => makeCharacter(
  56849. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56850. {
  56851. front: {
  56852. height: math.unit(7 + 8/12, "feet"),
  56853. weight: math.unit(333, "lb"),
  56854. name: "Front",
  56855. image: {
  56856. source: "./media/characters/vincent-vasroc/front.svg",
  56857. extra: 1962/1860,
  56858. bottom: 41/2003
  56859. }
  56860. },
  56861. back: {
  56862. height: math.unit(7 + 8/12, "feet"),
  56863. weight: math.unit(333, "lb"),
  56864. name: "Back",
  56865. image: {
  56866. source: "./media/characters/vincent-vasroc/back.svg",
  56867. extra: 1952/1815,
  56868. bottom: 33/1985
  56869. }
  56870. },
  56871. paw: {
  56872. height: math.unit(1.24, "feet"),
  56873. name: "Paw",
  56874. image: {
  56875. source: "./media/characters/vincent-vasroc/paw.svg"
  56876. }
  56877. },
  56878. ear: {
  56879. height: math.unit(0.75, "feet"),
  56880. name: "Ear",
  56881. image: {
  56882. source: "./media/characters/vincent-vasroc/ear.svg"
  56883. }
  56884. },
  56885. },
  56886. [
  56887. {
  56888. name: "Nano",
  56889. height: math.unit(92, "micrometers")
  56890. },
  56891. {
  56892. name: "Normal",
  56893. height: math.unit(7 + 8/12, "feet"),
  56894. default: true
  56895. },
  56896. ]
  56897. ))
  56898. characterMakers.push(() => makeCharacter(
  56899. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56900. {
  56901. frontNsfw: {
  56902. height: math.unit(40, "feet"),
  56903. weight: math.unit(58, "tons"),
  56904. name: "Front (NSFW)",
  56905. image: {
  56906. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56907. extra: 1265/965,
  56908. bottom: 155/1420
  56909. }
  56910. },
  56911. frontSfw: {
  56912. height: math.unit(40, "feet"),
  56913. weight: math.unit(58, "tons"),
  56914. name: "Front (SFW)",
  56915. image: {
  56916. source: "./media/characters/ru-kahn/front-sfw.svg",
  56917. extra: 1265/965,
  56918. bottom: 80/1345
  56919. }
  56920. },
  56921. },
  56922. [
  56923. {
  56924. name: "Small",
  56925. height: math.unit(4, "feet")
  56926. },
  56927. {
  56928. name: "Normal",
  56929. height: math.unit(40, "feet"),
  56930. default: true
  56931. },
  56932. {
  56933. name: "Macro",
  56934. height: math.unit(400, "feet")
  56935. },
  56936. ]
  56937. ))
  56938. characterMakers.push(() => makeCharacter(
  56939. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56940. {
  56941. frontNude: {
  56942. height: math.unit(6 + 5/12, "feet"),
  56943. name: "Front (Nude)",
  56944. image: {
  56945. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56946. extra: 1369/1366,
  56947. bottom: 68/1437
  56948. }
  56949. },
  56950. frontDressed: {
  56951. height: math.unit(6 + 5/12, "feet"),
  56952. name: "Front (Dressed)",
  56953. image: {
  56954. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56955. extra: 1369/1366,
  56956. bottom: 68/1437
  56957. }
  56958. },
  56959. },
  56960. [
  56961. {
  56962. name: "Normal",
  56963. height: math.unit(6 + 5/12, "feet"),
  56964. default: true
  56965. },
  56966. {
  56967. name: "Maximum",
  56968. height: math.unit(1930, "feet")
  56969. },
  56970. ]
  56971. ))
  56972. characterMakers.push(() => makeCharacter(
  56973. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56974. {
  56975. front: {
  56976. height: math.unit(5 + 6/12, "feet"),
  56977. name: "Front",
  56978. image: {
  56979. source: "./media/characters/kaja/front.svg",
  56980. extra: 1874/1514,
  56981. bottom: 117/1991
  56982. }
  56983. },
  56984. },
  56985. [
  56986. {
  56987. name: "Normal",
  56988. height: math.unit(5 + 6/12, "feet"),
  56989. default: true
  56990. },
  56991. ]
  56992. ))
  56993. characterMakers.push(() => makeCharacter(
  56994. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56995. {
  56996. front: {
  56997. height: math.unit(5 + 9/12, "feet"),
  56998. weight: math.unit(200, "lb"),
  56999. name: "Front",
  57000. image: {
  57001. source: "./media/characters/mark-smith/front.svg",
  57002. extra: 1004/943,
  57003. bottom: 58/1062
  57004. }
  57005. },
  57006. back: {
  57007. height: math.unit(5 + 9/12, "feet"),
  57008. weight: math.unit(200, "lb"),
  57009. name: "Back",
  57010. image: {
  57011. source: "./media/characters/mark-smith/back.svg",
  57012. extra: 1023/953,
  57013. bottom: 24/1047
  57014. }
  57015. },
  57016. head: {
  57017. height: math.unit(1.82, "feet"),
  57018. name: "Head",
  57019. image: {
  57020. source: "./media/characters/mark-smith/head.svg"
  57021. }
  57022. },
  57023. hand: {
  57024. height: math.unit(1.4, "feet"),
  57025. name: "Hand",
  57026. image: {
  57027. source: "./media/characters/mark-smith/hand.svg"
  57028. }
  57029. },
  57030. paw: {
  57031. height: math.unit(1.69, "feet"),
  57032. name: "Paw",
  57033. image: {
  57034. source: "./media/characters/mark-smith/paw.svg"
  57035. }
  57036. },
  57037. },
  57038. [
  57039. {
  57040. name: "Micro",
  57041. height: math.unit(0.25, "inches")
  57042. },
  57043. {
  57044. name: "Normal",
  57045. height: math.unit(5 + 9/12, "feet"),
  57046. default: true
  57047. },
  57048. {
  57049. name: "Macro",
  57050. height: math.unit(500, "feet")
  57051. },
  57052. ]
  57053. ))
  57054. characterMakers.push(() => makeCharacter(
  57055. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57056. {
  57057. frontNude: {
  57058. height: math.unit(6, "feet"),
  57059. name: "Front (Nude)",
  57060. image: {
  57061. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57062. extra: 1384/1321,
  57063. bottom: 57/1441
  57064. }
  57065. },
  57066. frontDressed: {
  57067. height: math.unit(6, "feet"),
  57068. name: "Front (Dressed)",
  57069. image: {
  57070. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57071. extra: 1384/1321,
  57072. bottom: 57/1441
  57073. }
  57074. },
  57075. },
  57076. [
  57077. {
  57078. name: "Normal",
  57079. height: math.unit(6, "feet"),
  57080. default: true
  57081. },
  57082. {
  57083. name: "Maximum",
  57084. height: math.unit(1776, "feet")
  57085. },
  57086. ]
  57087. ))
  57088. characterMakers.push(() => makeCharacter(
  57089. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57090. {
  57091. front: {
  57092. height: math.unit(2 + 4/12, "feet"),
  57093. weight: math.unit(350, "lb"),
  57094. name: "Front",
  57095. image: {
  57096. source: "./media/characters/devos/front.svg",
  57097. extra: 958/852,
  57098. bottom: 143/1101
  57099. }
  57100. },
  57101. },
  57102. [
  57103. {
  57104. name: "Base",
  57105. height: math.unit(2 + 4/12, "feet"),
  57106. default: true
  57107. },
  57108. ]
  57109. ))
  57110. characterMakers.push(() => makeCharacter(
  57111. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57112. {
  57113. front: {
  57114. height: math.unit(9 + 2/12, "feet"),
  57115. name: "Front",
  57116. image: {
  57117. source: "./media/characters/hiveheart/front.svg",
  57118. extra: 394/364,
  57119. bottom: 65/459
  57120. }
  57121. },
  57122. back: {
  57123. height: math.unit(9 + 2/12, "feet"),
  57124. name: "Back",
  57125. image: {
  57126. source: "./media/characters/hiveheart/back.svg",
  57127. extra: 374/357,
  57128. bottom: 63/437
  57129. }
  57130. },
  57131. },
  57132. [
  57133. {
  57134. name: "Base",
  57135. height: math.unit(9 + 2/12, "feet"),
  57136. default: true
  57137. },
  57138. ]
  57139. ))
  57140. characterMakers.push(() => makeCharacter(
  57141. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57142. {
  57143. front: {
  57144. height: math.unit(2.5, "inches"),
  57145. weight: math.unit(0.6, "oz"),
  57146. name: "Front",
  57147. image: {
  57148. source: "./media/characters/bryn/front.svg",
  57149. extra: 1484/1119,
  57150. bottom: 66/1550
  57151. }
  57152. },
  57153. back: {
  57154. height: math.unit(2.5, "inches"),
  57155. weight: math.unit(0.6, "oz"),
  57156. name: "Back",
  57157. image: {
  57158. source: "./media/characters/bryn/back.svg",
  57159. extra: 1472/1170,
  57160. bottom: 32/1504
  57161. }
  57162. },
  57163. wings: {
  57164. height: math.unit(2.5, "inches"),
  57165. weight: math.unit(0.6, "oz"),
  57166. name: "Wings",
  57167. image: {
  57168. source: "./media/characters/bryn/wings.svg",
  57169. extra: 567/448,
  57170. bottom: 10/577
  57171. }
  57172. },
  57173. dressed: {
  57174. height: math.unit(2.5, "inches"),
  57175. weight: math.unit(0.6, "oz"),
  57176. name: "Dressed",
  57177. image: {
  57178. source: "./media/characters/bryn/dressed.svg",
  57179. extra: 719/589,
  57180. bottom: 54/773
  57181. }
  57182. },
  57183. head: {
  57184. height: math.unit(1.75, "inches"),
  57185. name: "Head",
  57186. image: {
  57187. source: "./media/characters/bryn/head.svg"
  57188. }
  57189. },
  57190. foot: {
  57191. height: math.unit(0.4, "inches"),
  57192. name: "Foot",
  57193. image: {
  57194. source: "./media/characters/bryn/foot.svg"
  57195. }
  57196. },
  57197. },
  57198. [
  57199. {
  57200. name: "Normal",
  57201. height: math.unit(2.5, "inches"),
  57202. default: true
  57203. },
  57204. ]
  57205. ))
  57206. characterMakers.push(() => makeCharacter(
  57207. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57208. {
  57209. side: {
  57210. height: math.unit(7, "feet"),
  57211. weight: math.unit(657, "kg"),
  57212. name: "Side",
  57213. image: {
  57214. source: "./media/characters/delta/side.svg",
  57215. extra: 781/212,
  57216. bottom: 7/788
  57217. },
  57218. extraAttributes: {
  57219. "wingspan": {
  57220. name: "Wingspan",
  57221. power: 1,
  57222. type: "length",
  57223. base: math.unit(48, "feet")
  57224. },
  57225. "length": {
  57226. name: "Length",
  57227. power: 1,
  57228. type: "length",
  57229. base: math.unit(21, "feet")
  57230. },
  57231. "pawSize": {
  57232. name: "Paw Size",
  57233. power: 2,
  57234. type: "area",
  57235. base: math.unit(1.5*1.4, "feet^2")
  57236. },
  57237. }
  57238. },
  57239. },
  57240. [
  57241. {
  57242. name: "Normal",
  57243. height: math.unit(6, "feet"),
  57244. default: true
  57245. },
  57246. ]
  57247. ))
  57248. characterMakers.push(() => makeCharacter(
  57249. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57250. {
  57251. front: {
  57252. height: math.unit(6, "feet"),
  57253. name: "Front",
  57254. image: {
  57255. source: "./media/characters/pyrow/front.svg",
  57256. extra: 513/486,
  57257. bottom: 14/527
  57258. }
  57259. },
  57260. frontWing: {
  57261. height: math.unit(6, "feet"),
  57262. name: "Front (Wing)",
  57263. image: {
  57264. source: "./media/characters/pyrow/front-wing.svg",
  57265. extra: 539/383,
  57266. bottom: 20/559
  57267. }
  57268. },
  57269. back: {
  57270. height: math.unit(6, "feet"),
  57271. name: "Back",
  57272. image: {
  57273. source: "./media/characters/pyrow/back.svg",
  57274. extra: 500/473,
  57275. bottom: 9/509
  57276. }
  57277. },
  57278. },
  57279. [
  57280. {
  57281. name: "Normal",
  57282. height: math.unit(6, "feet"),
  57283. default: true
  57284. },
  57285. ]
  57286. ))
  57287. characterMakers.push(() => makeCharacter(
  57288. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57289. {
  57290. front: {
  57291. height: math.unit(5, "meters"),
  57292. weight: math.unit(3, "tonnes"),
  57293. name: "Front",
  57294. image: {
  57295. source: "./media/characters/velikan/front.svg",
  57296. extra: 867/744,
  57297. bottom: 71/938
  57298. },
  57299. extraAttributes: {
  57300. "shoeSize": {
  57301. name: "Shoe Size",
  57302. power: 1,
  57303. type: "length",
  57304. base: math.unit(135, "ShoeSizeUK"),
  57305. defaultUnit: "ShoeSizeUK"
  57306. },
  57307. }
  57308. },
  57309. },
  57310. [
  57311. {
  57312. name: "Normal",
  57313. height: math.unit(5, "meters"),
  57314. default: true
  57315. },
  57316. {
  57317. name: "Macro",
  57318. height: math.unit(1, "km")
  57319. },
  57320. {
  57321. name: "Mega Macro",
  57322. height: math.unit(100, "km")
  57323. },
  57324. {
  57325. name: "Giga Macro",
  57326. height: math.unit(2, "megameters")
  57327. },
  57328. {
  57329. name: "Planetary",
  57330. height: math.unit(22, "megameters")
  57331. },
  57332. {
  57333. name: "Solar",
  57334. height: math.unit(8, "gigameters")
  57335. },
  57336. {
  57337. name: "Cosmic",
  57338. height: math.unit(10, "zettameters")
  57339. },
  57340. {
  57341. name: "Omni",
  57342. height: math.unit(9e260, "multiverses")
  57343. },
  57344. ]
  57345. ))
  57346. characterMakers.push(() => makeCharacter(
  57347. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57348. {
  57349. front: {
  57350. height: math.unit(4 + 3/12, "feet"),
  57351. weight: math.unit(90, "lb"),
  57352. name: "Front",
  57353. image: {
  57354. source: "./media/characters/sabiki/front.svg",
  57355. extra: 1662/1423,
  57356. bottom: 65/1727
  57357. }
  57358. },
  57359. },
  57360. [
  57361. {
  57362. name: "Normal",
  57363. height: math.unit(4 + 3/12, "feet"),
  57364. default: true
  57365. },
  57366. ]
  57367. ))
  57368. characterMakers.push(() => makeCharacter(
  57369. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57370. {
  57371. frontSfw: {
  57372. height: math.unit(2, "mm"),
  57373. name: "Front (SFW)",
  57374. image: {
  57375. source: "./media/characters/carmel/front-sfw.svg",
  57376. extra: 1131/1006,
  57377. bottom: 66/1197
  57378. }
  57379. },
  57380. frontNsfw: {
  57381. height: math.unit(2, "mm"),
  57382. name: "Front (NSFW)",
  57383. image: {
  57384. source: "./media/characters/carmel/front-nsfw.svg",
  57385. extra: 1131/1006,
  57386. bottom: 66/1197
  57387. }
  57388. },
  57389. foot: {
  57390. height: math.unit(0.3, "mm"),
  57391. name: "Foot",
  57392. image: {
  57393. source: "./media/characters/carmel/foot.svg"
  57394. }
  57395. },
  57396. tongue: {
  57397. height: math.unit(0.71, "mm"),
  57398. name: "Tongue",
  57399. image: {
  57400. source: "./media/characters/carmel/tongue.svg"
  57401. }
  57402. },
  57403. dick: {
  57404. height: math.unit(0.085, "mm"),
  57405. name: "Dick",
  57406. image: {
  57407. source: "./media/characters/carmel/dick.svg"
  57408. }
  57409. },
  57410. },
  57411. [
  57412. {
  57413. name: "Micro",
  57414. height: math.unit(2, "mm"),
  57415. default: true
  57416. },
  57417. {
  57418. name: "Normal",
  57419. height: math.unit(4 + 8/12, "feet")
  57420. },
  57421. {
  57422. name: "Mega Macro",
  57423. height: math.unit(250, "feet")
  57424. },
  57425. {
  57426. name: "BIGGER",
  57427. height: math.unit(1000, "feet")
  57428. },
  57429. {
  57430. name: "BIGGEST",
  57431. height: math.unit(2, "miles")
  57432. },
  57433. ]
  57434. ))
  57435. characterMakers.push(() => makeCharacter(
  57436. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57437. {
  57438. front: {
  57439. height: math.unit(6.5, "feet"),
  57440. weight: math.unit(198, "lb"),
  57441. name: "Front",
  57442. image: {
  57443. source: "./media/characters/tamani/anthro.svg",
  57444. extra: 930/890,
  57445. bottom: 34/964
  57446. },
  57447. form: "anthro",
  57448. default: true
  57449. },
  57450. side: {
  57451. height: math.unit(6, "feet"),
  57452. weight: math.unit(198*2, "lb"),
  57453. name: "Side",
  57454. image: {
  57455. source: "./media/characters/tamani/feral.svg",
  57456. extra: 559/519,
  57457. bottom: 43/602
  57458. },
  57459. form: "feral"
  57460. },
  57461. },
  57462. [
  57463. {
  57464. name: "Normal",
  57465. height: math.unit(6.5, "feet"),
  57466. default: true,
  57467. form: "anthro"
  57468. },
  57469. {
  57470. name: "Normal",
  57471. height: math.unit(6, "feet"),
  57472. default: true,
  57473. form: "feral"
  57474. },
  57475. ],
  57476. {
  57477. "anthro": {
  57478. name: "Anthro",
  57479. default: true
  57480. },
  57481. "feral": {
  57482. name: "Feral",
  57483. },
  57484. }
  57485. ))
  57486. characterMakers.push(() => makeCharacter(
  57487. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57488. {
  57489. front: {
  57490. height: math.unit(4 + 1/12, "feet"),
  57491. weight: math.unit(114, "lb"),
  57492. name: "Front",
  57493. image: {
  57494. source: "./media/characters/dex/front.svg",
  57495. extra: 787/680,
  57496. bottom: 18/805
  57497. }
  57498. },
  57499. side: {
  57500. height: math.unit(4 + 1/12, "feet"),
  57501. weight: math.unit(114, "lb"),
  57502. name: "Side",
  57503. image: {
  57504. source: "./media/characters/dex/side.svg",
  57505. extra: 785/680,
  57506. bottom: 12/797
  57507. }
  57508. },
  57509. back: {
  57510. height: math.unit(4 + 1/12, "feet"),
  57511. weight: math.unit(114, "lb"),
  57512. name: "Back",
  57513. image: {
  57514. source: "./media/characters/dex/back.svg",
  57515. extra: 785/681,
  57516. bottom: 17/802
  57517. }
  57518. },
  57519. loungewear: {
  57520. height: math.unit(4 + 1/12, "feet"),
  57521. weight: math.unit(114, "lb"),
  57522. name: "Loungewear",
  57523. image: {
  57524. source: "./media/characters/dex/loungewear.svg",
  57525. extra: 787/680,
  57526. bottom: 18/805
  57527. }
  57528. },
  57529. workout: {
  57530. height: math.unit(4 + 1/12, "feet"),
  57531. weight: math.unit(114, "lb"),
  57532. name: "Workout",
  57533. image: {
  57534. source: "./media/characters/dex/workout.svg",
  57535. extra: 787/680,
  57536. bottom: 18/805
  57537. }
  57538. },
  57539. schoolUniform: {
  57540. height: math.unit(4 + 1/12, "feet"),
  57541. weight: math.unit(114, "lb"),
  57542. name: "School-uniform",
  57543. image: {
  57544. source: "./media/characters/dex/school-uniform.svg",
  57545. extra: 787/680,
  57546. bottom: 18/805
  57547. }
  57548. },
  57549. maw: {
  57550. height: math.unit(0.55, "feet"),
  57551. name: "Maw",
  57552. image: {
  57553. source: "./media/characters/dex/maw.svg"
  57554. }
  57555. },
  57556. paw: {
  57557. height: math.unit(0.87, "feet"),
  57558. name: "Paw",
  57559. image: {
  57560. source: "./media/characters/dex/paw.svg"
  57561. }
  57562. },
  57563. bust: {
  57564. height: math.unit(1.67, "feet"),
  57565. name: "Bust",
  57566. image: {
  57567. source: "./media/characters/dex/bust.svg"
  57568. }
  57569. },
  57570. },
  57571. [
  57572. {
  57573. name: "Normal",
  57574. height: math.unit(4 + 1/12, "feet"),
  57575. default: true
  57576. },
  57577. ]
  57578. ))
  57579. characterMakers.push(() => makeCharacter(
  57580. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57581. {
  57582. front: {
  57583. height: math.unit(4 + 3/12, "feet"),
  57584. weight: math.unit(60, "lb"),
  57585. name: "Front",
  57586. image: {
  57587. source: "./media/characters/silke/front.svg",
  57588. extra: 1334/1122,
  57589. bottom: 21/1355
  57590. }
  57591. },
  57592. back: {
  57593. height: math.unit(4 + 3/12, "feet"),
  57594. weight: math.unit(60, "lb"),
  57595. name: "Back",
  57596. image: {
  57597. source: "./media/characters/silke/back.svg",
  57598. extra: 1328/1092,
  57599. bottom: 16/1344
  57600. }
  57601. },
  57602. dressed: {
  57603. height: math.unit(4 + 3/12, "feet"),
  57604. weight: math.unit(60, "lb"),
  57605. name: "Dressed",
  57606. image: {
  57607. source: "./media/characters/silke/dressed.svg",
  57608. extra: 1334/1122,
  57609. bottom: 43/1377
  57610. }
  57611. },
  57612. },
  57613. [
  57614. {
  57615. name: "Normal",
  57616. height: math.unit(4 + 3/12, "feet"),
  57617. default: true
  57618. },
  57619. ]
  57620. ))
  57621. characterMakers.push(() => makeCharacter(
  57622. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57623. {
  57624. front: {
  57625. height: math.unit(1.58, "meters"),
  57626. weight: math.unit(47, "kg"),
  57627. name: "Front",
  57628. image: {
  57629. source: "./media/characters/wireshark/front.svg",
  57630. extra: 883/838,
  57631. bottom: 66/949
  57632. }
  57633. },
  57634. },
  57635. [
  57636. {
  57637. name: "Normal",
  57638. height: math.unit(1.58, "meters"),
  57639. default: true
  57640. },
  57641. ]
  57642. ))
  57643. characterMakers.push(() => makeCharacter(
  57644. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57645. {
  57646. front: {
  57647. height: math.unit(6, "meters"),
  57648. weight: math.unit(15000, "kg"),
  57649. name: "Front",
  57650. image: {
  57651. source: "./media/characters/gallagher/front.svg",
  57652. extra: 532/493,
  57653. bottom: 0/532
  57654. }
  57655. },
  57656. },
  57657. [
  57658. {
  57659. name: "Normal",
  57660. height: math.unit(6, "meters"),
  57661. default: true
  57662. },
  57663. ]
  57664. ))
  57665. characterMakers.push(() => makeCharacter(
  57666. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57667. {
  57668. front: {
  57669. height: math.unit(2.4, "meters"),
  57670. weight: math.unit(270, "kg"),
  57671. name: "Front",
  57672. image: {
  57673. source: "./media/characters/alice/front.svg",
  57674. extra: 950/900,
  57675. bottom: 36/986
  57676. }
  57677. },
  57678. side: {
  57679. height: math.unit(2.4, "meters"),
  57680. weight: math.unit(270, "kg"),
  57681. name: "Side",
  57682. image: {
  57683. source: "./media/characters/alice/side.svg",
  57684. extra: 921/876,
  57685. bottom: 19/940
  57686. }
  57687. },
  57688. dressed: {
  57689. height: math.unit(2.4, "meters"),
  57690. weight: math.unit(270, "kg"),
  57691. name: "Dressed",
  57692. image: {
  57693. source: "./media/characters/alice/dressed.svg",
  57694. extra: 905/850,
  57695. bottom: 81/986
  57696. }
  57697. },
  57698. fishnet: {
  57699. height: math.unit(2.4, "meters"),
  57700. weight: math.unit(270, "kg"),
  57701. name: "Fishnet",
  57702. image: {
  57703. source: "./media/characters/alice/fishnet.svg",
  57704. extra: 905/850,
  57705. bottom: 81/986
  57706. }
  57707. },
  57708. },
  57709. [
  57710. {
  57711. name: "Normal",
  57712. height: math.unit(2.4, "meters"),
  57713. default: true
  57714. },
  57715. ]
  57716. ))
  57717. characterMakers.push(() => makeCharacter(
  57718. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57719. {
  57720. front: {
  57721. height: math.unit(175.25, "feet"),
  57722. name: "Front",
  57723. image: {
  57724. source: "./media/characters/fio/front.svg",
  57725. extra: 1883/1591,
  57726. bottom: 34/1917
  57727. }
  57728. },
  57729. },
  57730. [
  57731. {
  57732. name: "Normal",
  57733. height: math.unit(175.25, "cm"),
  57734. default: true
  57735. },
  57736. ]
  57737. ))
  57738. characterMakers.push(() => makeCharacter(
  57739. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57740. {
  57741. side: {
  57742. height: math.unit(6, "meters"),
  57743. weight: math.unit(3400, "kg"),
  57744. preyCapacity: math.unit(1700, "liters"),
  57745. name: "Side",
  57746. image: {
  57747. source: "./media/characters/hass/side.svg",
  57748. extra: 1058/997,
  57749. bottom: 177/1235
  57750. }
  57751. },
  57752. feeding: {
  57753. height: math.unit(6*0.63, "meters"),
  57754. weight: math.unit(3400, "kg"),
  57755. preyCapacity: math.unit(1700, "liters"),
  57756. name: "Feeding",
  57757. image: {
  57758. source: "./media/characters/hass/feeding.svg",
  57759. extra: 689/579,
  57760. bottom: 146/835
  57761. }
  57762. },
  57763. guts: {
  57764. height: math.unit(6, "meters"),
  57765. weight: math.unit(3400, "kg"),
  57766. name: "Guts",
  57767. image: {
  57768. source: "./media/characters/hass/guts.svg",
  57769. extra: 1223/1198,
  57770. bottom: 182/1405
  57771. }
  57772. },
  57773. dickFront: {
  57774. height: math.unit(1.4, "meters"),
  57775. name: "Dick (Front)",
  57776. image: {
  57777. source: "./media/characters/hass/dick-front.svg"
  57778. }
  57779. },
  57780. dickSide: {
  57781. height: math.unit(1.3, "meters"),
  57782. name: "Dick (Side)",
  57783. image: {
  57784. source: "./media/characters/hass/dick-side.svg"
  57785. }
  57786. },
  57787. dickBack: {
  57788. height: math.unit(1.4, "meters"),
  57789. name: "Dick (Back)",
  57790. image: {
  57791. source: "./media/characters/hass/dick-back.svg"
  57792. }
  57793. },
  57794. },
  57795. [
  57796. {
  57797. name: "Normal",
  57798. height: math.unit(6, "meters"),
  57799. default: true
  57800. },
  57801. ]
  57802. ))
  57803. characterMakers.push(() => makeCharacter(
  57804. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57805. {
  57806. front: {
  57807. height: math.unit(4, "feet"),
  57808. weight: math.unit(60, "lb"),
  57809. name: "Front",
  57810. image: {
  57811. source: "./media/characters/hickory-finnegan/front.svg",
  57812. extra: 444/411,
  57813. bottom: 10/454
  57814. }
  57815. },
  57816. side: {
  57817. height: math.unit(4, "feet"),
  57818. weight: math.unit(60, "lb"),
  57819. name: "Side",
  57820. image: {
  57821. source: "./media/characters/hickory-finnegan/side.svg",
  57822. extra: 444/411,
  57823. bottom: 10/454
  57824. }
  57825. },
  57826. back: {
  57827. height: math.unit(4, "feet"),
  57828. weight: math.unit(60, "lb"),
  57829. name: "Back",
  57830. image: {
  57831. source: "./media/characters/hickory-finnegan/back.svg",
  57832. extra: 444/411,
  57833. bottom: 10/454
  57834. }
  57835. },
  57836. },
  57837. [
  57838. {
  57839. name: "Normal",
  57840. height: math.unit(4, "feet"),
  57841. default: true
  57842. },
  57843. ]
  57844. ))
  57845. characterMakers.push(() => makeCharacter(
  57846. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57847. {
  57848. snivy_front: {
  57849. height: math.unit(2, "feet"),
  57850. weight: math.unit(17.9, "lb"),
  57851. name: "Front",
  57852. image: {
  57853. source: "./media/characters/robin-phox/snivy-front.svg",
  57854. extra: 569/504,
  57855. bottom: 33/602
  57856. },
  57857. form: "snivy",
  57858. default: true
  57859. },
  57860. snivy_frontNsfw: {
  57861. height: math.unit(2, "feet"),
  57862. weight: math.unit(17.9, "lb"),
  57863. name: "Front (NSFW)",
  57864. image: {
  57865. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57866. extra: 569/504,
  57867. bottom: 33/602
  57868. },
  57869. form: "snivy",
  57870. },
  57871. snivy_back: {
  57872. height: math.unit(2, "feet"),
  57873. weight: math.unit(17.9, "lb"),
  57874. name: "Back",
  57875. image: {
  57876. source: "./media/characters/robin-phox/snivy-back.svg",
  57877. extra: 577/508,
  57878. bottom: 21/598
  57879. },
  57880. form: "snivy",
  57881. },
  57882. snivy_foot: {
  57883. height: math.unit(0.68, "feet"),
  57884. name: "Foot",
  57885. image: {
  57886. source: "./media/characters/robin-phox/snivy-foot.svg"
  57887. },
  57888. form: "snivy",
  57889. },
  57890. snivy_sole: {
  57891. height: math.unit(0.68, "feet"),
  57892. name: "Sole",
  57893. image: {
  57894. source: "./media/characters/robin-phox/snivy-sole.svg"
  57895. },
  57896. form: "snivy",
  57897. },
  57898. yoshi_front: {
  57899. height: math.unit(6, "feet"),
  57900. weight: math.unit(150, "lb"),
  57901. name: "Front",
  57902. image: {
  57903. source: "./media/characters/robin-phox/yoshi-front.svg",
  57904. extra: 890/792,
  57905. bottom: 29/919
  57906. },
  57907. form: "yoshi",
  57908. default: true
  57909. },
  57910. yoshi_frontNsfw: {
  57911. height: math.unit(6, "feet"),
  57912. weight: math.unit(150, "lb"),
  57913. name: "Front (NSFW)",
  57914. image: {
  57915. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57916. extra: 890/792,
  57917. bottom: 29/919
  57918. },
  57919. form: "yoshi",
  57920. },
  57921. yoshi_back: {
  57922. height: math.unit(6, "feet"),
  57923. weight: math.unit(150, "lb"),
  57924. name: "Back",
  57925. image: {
  57926. source: "./media/characters/robin-phox/yoshi-back.svg",
  57927. extra: 890/792,
  57928. bottom: 29/919
  57929. },
  57930. form: "yoshi",
  57931. },
  57932. yoshi_foot: {
  57933. height: math.unit(1.5, "feet"),
  57934. name: "Foot",
  57935. image: {
  57936. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57937. },
  57938. form: "yoshi",
  57939. },
  57940. delphox_front: {
  57941. height: math.unit(4 + 11/12, "feet"),
  57942. weight: math.unit(86, "lb"),
  57943. name: "Front",
  57944. image: {
  57945. source: "./media/characters/robin-phox/delphox-front.svg",
  57946. extra: 1266/1069,
  57947. bottom: 32/1298
  57948. },
  57949. form: "delphox",
  57950. default: true
  57951. },
  57952. delphox_frontNsfw: {
  57953. height: math.unit(4 + 11/12, "feet"),
  57954. weight: math.unit(86, "lb"),
  57955. name: "Front (NSFW)",
  57956. image: {
  57957. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57958. extra: 1266/1069,
  57959. bottom: 32/1298
  57960. },
  57961. form: "delphox",
  57962. },
  57963. delphox_back: {
  57964. height: math.unit(4 + 11/12, "feet"),
  57965. weight: math.unit(86, "lb"),
  57966. name: "Back",
  57967. image: {
  57968. source: "./media/characters/robin-phox/delphox-back.svg",
  57969. extra: 1269/1083,
  57970. bottom: 15/1284
  57971. },
  57972. form: "delphox",
  57973. },
  57974. mienshao_front: {
  57975. height: math.unit(4 + 7/12, "feet"),
  57976. weight: math.unit(78.3, "lb"),
  57977. name: "Front",
  57978. image: {
  57979. source: "./media/characters/robin-phox/mienshao-front.svg",
  57980. extra: 1052/970,
  57981. bottom: 108/1160
  57982. },
  57983. form: "mienshao",
  57984. default: true
  57985. },
  57986. mienshao_frontNsfw: {
  57987. height: math.unit(4 + 7/12, "feet"),
  57988. weight: math.unit(78.3, "lb"),
  57989. name: "Front (NSFW)",
  57990. image: {
  57991. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57992. extra: 1052/970,
  57993. bottom: 108/1160
  57994. },
  57995. form: "mienshao",
  57996. },
  57997. mienshao_back: {
  57998. height: math.unit(4 + 7/12, "feet"),
  57999. weight: math.unit(78.3, "lb"),
  58000. name: "Back",
  58001. image: {
  58002. source: "./media/characters/robin-phox/mienshao-back.svg",
  58003. extra: 1102/982,
  58004. bottom: 32/1134
  58005. },
  58006. form: "mienshao",
  58007. },
  58008. inteleon_front: {
  58009. height: math.unit(6 + 3/12, "feet"),
  58010. weight: math.unit(99.6, "lb"),
  58011. name: "Front",
  58012. image: {
  58013. source: "./media/characters/robin-phox/inteleon-front.svg",
  58014. extra: 910/799,
  58015. bottom: 76/986
  58016. },
  58017. form: "inteleon",
  58018. default: true
  58019. },
  58020. inteleon_frontNsfw: {
  58021. height: math.unit(6 + 3/12, "feet"),
  58022. weight: math.unit(99.6, "lb"),
  58023. name: "Front (NSFW)",
  58024. image: {
  58025. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58026. extra: 910/799,
  58027. bottom: 76/986
  58028. },
  58029. form: "inteleon",
  58030. },
  58031. inteleon_back: {
  58032. height: math.unit(6 + 3/12, "feet"),
  58033. weight: math.unit(99.6, "lb"),
  58034. name: "Back",
  58035. image: {
  58036. source: "./media/characters/robin-phox/inteleon-back.svg",
  58037. extra: 907/796,
  58038. bottom: 25/932
  58039. },
  58040. form: "inteleon",
  58041. },
  58042. reshiram_front: {
  58043. height: math.unit(10 + 6/12, "feet"),
  58044. weight: math.unit(727.5, "lb"),
  58045. name: "Front",
  58046. image: {
  58047. source: "./media/characters/robin-phox/reshiram-front.svg",
  58048. extra: 1198/940,
  58049. bottom: 123/1321
  58050. },
  58051. form: "reshiram",
  58052. },
  58053. reshiram_frontNsfw: {
  58054. height: math.unit(10 + 6/12, "feet"),
  58055. weight: math.unit(727.5, "lb"),
  58056. name: "Front-nsfw",
  58057. image: {
  58058. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58059. extra: 1198/940,
  58060. bottom: 123/1321
  58061. },
  58062. form: "reshiram",
  58063. },
  58064. reshiram_back: {
  58065. height: math.unit(10 + 6/12, "feet"),
  58066. weight: math.unit(727.5, "lb"),
  58067. name: "Back",
  58068. image: {
  58069. source: "./media/characters/robin-phox/reshiram-back.svg",
  58070. extra: 1024/904,
  58071. bottom: 85/1109
  58072. },
  58073. form: "reshiram",
  58074. },
  58075. samurott_front: {
  58076. height: math.unit(8, "feet"),
  58077. weight: math.unit(208.6, "lb"),
  58078. name: "Front",
  58079. image: {
  58080. source: "./media/characters/robin-phox/samurott-front.svg",
  58081. extra: 1048/984,
  58082. bottom: 100/1148
  58083. },
  58084. form: "samurott",
  58085. },
  58086. samurott_frontNsfw: {
  58087. height: math.unit(8, "feet"),
  58088. weight: math.unit(208.6, "lb"),
  58089. name: "Front-nsfw",
  58090. image: {
  58091. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58092. extra: 1048/984,
  58093. bottom: 100/1148
  58094. },
  58095. form: "samurott",
  58096. },
  58097. samurott_back: {
  58098. height: math.unit(8, "feet"),
  58099. weight: math.unit(208.6, "lb"),
  58100. name: "Back",
  58101. image: {
  58102. source: "./media/characters/robin-phox/samurott-back.svg",
  58103. extra: 1110/1042,
  58104. bottom: 12/1122
  58105. },
  58106. form: "samurott",
  58107. },
  58108. samurott_feral: {
  58109. height: math.unit(4 + 11/12, "feet"),
  58110. weight: math.unit(208.6, "lb"),
  58111. name: "Feral",
  58112. image: {
  58113. source: "./media/characters/robin-phox/samurott-feral.svg",
  58114. extra: 766/681,
  58115. bottom: 108/874
  58116. },
  58117. form: "samurott",
  58118. },
  58119. },
  58120. [
  58121. {
  58122. name: "Normal",
  58123. height: math.unit(2, "feet"),
  58124. default: true,
  58125. form: "snivy"
  58126. },
  58127. {
  58128. name: "Normal",
  58129. height: math.unit(6, "feet"),
  58130. default: true,
  58131. form: "yoshi"
  58132. },
  58133. {
  58134. name: "Normal",
  58135. height: math.unit(4 + 11/12, "feet"),
  58136. default: true,
  58137. form: "delphox"
  58138. },
  58139. {
  58140. name: "Normal",
  58141. height: math.unit(4 + 7/12, "feet"),
  58142. default: true,
  58143. form: "mienshao"
  58144. },
  58145. {
  58146. name: "Normal",
  58147. height: math.unit(6 + 3/12, "feet"),
  58148. default: true,
  58149. form: "inteleon"
  58150. },
  58151. {
  58152. name: "Normal",
  58153. height: math.unit(10 + 6/12, "feet"),
  58154. default: true,
  58155. form: "reshiram"
  58156. },
  58157. {
  58158. name: "Normal",
  58159. height: math.unit(8, "feet"),
  58160. default: true,
  58161. form: "samurott"
  58162. },
  58163. {
  58164. name: "Macro",
  58165. height: math.unit(500, "feet"),
  58166. allForms: true
  58167. },
  58168. {
  58169. name: "Mega Macro",
  58170. height: math.unit(10, "earths"),
  58171. allForms: true
  58172. },
  58173. {
  58174. name: "Giga Macro",
  58175. height: math.unit(1, "galaxy"),
  58176. allForms: true
  58177. },
  58178. {
  58179. name: "Godly Macro",
  58180. height: math.unit(1e10, "multiverses"),
  58181. allForms: true
  58182. },
  58183. ],
  58184. {
  58185. "snivy": {
  58186. name: "Snivy",
  58187. default: true
  58188. },
  58189. "yoshi": {
  58190. name: "Yoshi",
  58191. },
  58192. "delphox": {
  58193. name: "Delphox",
  58194. },
  58195. "mienshao": {
  58196. name: "Mienshao",
  58197. },
  58198. "inteleon": {
  58199. name: "Inteleon",
  58200. },
  58201. "reshiram": {
  58202. name: "Reshiram",
  58203. },
  58204. "samurott": {
  58205. name: "Samurott",
  58206. },
  58207. }
  58208. ))
  58209. characterMakers.push(() => makeCharacter(
  58210. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58211. {
  58212. front: {
  58213. height: math.unit(4, "feet"),
  58214. name: "Front",
  58215. image: {
  58216. source: "./media/characters/ash-leung/front.svg",
  58217. extra: 1916/1792,
  58218. bottom: 50/1966
  58219. }
  58220. },
  58221. },
  58222. [
  58223. {
  58224. name: "Atomic",
  58225. height: math.unit(1, "angstrom")
  58226. },
  58227. {
  58228. name: "Microscopic",
  58229. height: math.unit(4000, "angstroms")
  58230. },
  58231. {
  58232. name: "Speck",
  58233. height: math.unit(1, "mm")
  58234. },
  58235. {
  58236. name: "Small",
  58237. height: math.unit(1, "inch")
  58238. },
  58239. {
  58240. name: "Normal",
  58241. height: math.unit(4, "feet"),
  58242. default: true
  58243. },
  58244. ]
  58245. ))
  58246. characterMakers.push(() => makeCharacter(
  58247. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58248. {
  58249. frontDressed: {
  58250. height: math.unit(2.08, "meters"),
  58251. weight: math.unit(175, "lb"),
  58252. name: "Front (Dressed)",
  58253. image: {
  58254. source: "./media/characters/carie/front-dressed.svg",
  58255. extra: 456/417,
  58256. bottom: 7/463
  58257. }
  58258. },
  58259. backDressed: {
  58260. height: math.unit(2.08, "meters"),
  58261. weight: math.unit(175, "lb"),
  58262. name: "Back (Dressed)",
  58263. image: {
  58264. source: "./media/characters/carie/back-dressed.svg",
  58265. extra: 455/414,
  58266. bottom: 11/466
  58267. }
  58268. },
  58269. front: {
  58270. height: math.unit(2, "meters"),
  58271. weight: math.unit(175, "lb"),
  58272. name: "Front",
  58273. image: {
  58274. source: "./media/characters/carie/front.svg",
  58275. extra: 438/399,
  58276. bottom: 12/450
  58277. }
  58278. },
  58279. back: {
  58280. height: math.unit(2, "meters"),
  58281. weight: math.unit(175, "lb"),
  58282. name: "Back",
  58283. image: {
  58284. source: "./media/characters/carie/back.svg",
  58285. extra: 438/397,
  58286. bottom: 7/445
  58287. }
  58288. },
  58289. },
  58290. [
  58291. {
  58292. name: "Normal",
  58293. height: math.unit(2.08, "meters"),
  58294. default: true
  58295. },
  58296. {
  58297. name: "Macro",
  58298. height: math.unit(2.08e3, "meters")
  58299. },
  58300. {
  58301. name: "Mega Macro",
  58302. height: math.unit(2.08e6, "meters")
  58303. },
  58304. {
  58305. name: "Giga Macro",
  58306. height: math.unit(2.08e9, "meters")
  58307. },
  58308. {
  58309. name: "Tera Macro",
  58310. height: math.unit(2.08e12, "meters")
  58311. },
  58312. {
  58313. name: "Peta Macro",
  58314. height: math.unit(2.08e15, "meters")
  58315. },
  58316. {
  58317. name: "Exa Macro",
  58318. height: math.unit(2.08e18, "meters")
  58319. },
  58320. {
  58321. name: "Zetta Macro",
  58322. height: math.unit(2.08e21, "meters")
  58323. },
  58324. {
  58325. name: "Yotta Macro",
  58326. height: math.unit(2.08e24, "meters")
  58327. },
  58328. ]
  58329. ))
  58330. characterMakers.push(() => makeCharacter(
  58331. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58332. {
  58333. front: {
  58334. height: math.unit(5 + 2/12, "feet"),
  58335. weight: math.unit(120, "lb"),
  58336. name: "Front",
  58337. image: {
  58338. source: "./media/characters/sai-bree/front.svg",
  58339. extra: 1843/1702,
  58340. bottom: 91/1934
  58341. }
  58342. },
  58343. back: {
  58344. height: math.unit(5 + 2/12, "feet"),
  58345. weight: math.unit(120, "lb"),
  58346. name: "Back",
  58347. image: {
  58348. source: "./media/characters/sai-bree/back.svg",
  58349. extra: 1809/1637,
  58350. bottom: 56/1865
  58351. }
  58352. },
  58353. },
  58354. [
  58355. {
  58356. name: "Normal",
  58357. height: math.unit(5 + 2/12, "feet"),
  58358. default: true
  58359. },
  58360. {
  58361. name: "Macro",
  58362. height: math.unit(500, "feet")
  58363. },
  58364. ]
  58365. ))
  58366. characterMakers.push(() => makeCharacter(
  58367. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58368. {
  58369. side: {
  58370. height: math.unit(0.77, "meters"),
  58371. weight: math.unit(120, "lb"),
  58372. name: "Side",
  58373. image: {
  58374. source: "./media/characters/davwyn/side.svg",
  58375. extra: 1557/1225,
  58376. bottom: 131/1688
  58377. }
  58378. },
  58379. front: {
  58380. height: math.unit(0.835410, "meters"),
  58381. weight: math.unit(120, "lb"),
  58382. name: "Front",
  58383. image: {
  58384. source: "./media/characters/davwyn/front.svg",
  58385. extra: 870/843,
  58386. bottom: 175/1045
  58387. }
  58388. },
  58389. },
  58390. [
  58391. {
  58392. name: "Minidrake",
  58393. height: math.unit(0.77/4, "meters")
  58394. },
  58395. {
  58396. name: "Normal",
  58397. height: math.unit(0.77, "meters"),
  58398. default: true
  58399. },
  58400. ]
  58401. ))
  58402. characterMakers.push(() => makeCharacter(
  58403. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58404. {
  58405. front: {
  58406. height: math.unit(10 + 3/12, "feet"),
  58407. weight: math.unit(2857, "lb"),
  58408. name: "Front",
  58409. image: {
  58410. source: "./media/characters/balans/front.svg",
  58411. extra: 427/402,
  58412. bottom: 26/453
  58413. }
  58414. },
  58415. side: {
  58416. height: math.unit(10 + 3/12, "feet"),
  58417. weight: math.unit(2857, "lb"),
  58418. name: "Side",
  58419. image: {
  58420. source: "./media/characters/balans/side.svg",
  58421. extra: 397/371,
  58422. bottom: 17/414
  58423. }
  58424. },
  58425. back: {
  58426. height: math.unit(10 + 3/12, "feet"),
  58427. weight: math.unit(2857, "lb"),
  58428. name: "Back",
  58429. image: {
  58430. source: "./media/characters/balans/back.svg",
  58431. extra: 408/381,
  58432. bottom: 14/422
  58433. }
  58434. },
  58435. hand: {
  58436. height: math.unit(1.15, "feet"),
  58437. name: "Hand",
  58438. image: {
  58439. source: "./media/characters/balans/hand.svg"
  58440. }
  58441. },
  58442. footRest: {
  58443. height: math.unit(3.1, "feet"),
  58444. name: "Foot (Rest)",
  58445. image: {
  58446. source: "./media/characters/balans/foot-rest.svg"
  58447. }
  58448. },
  58449. footActive: {
  58450. height: math.unit(3.5, "feet"),
  58451. name: "Foot (Active)",
  58452. image: {
  58453. source: "./media/characters/balans/foot-active.svg"
  58454. }
  58455. },
  58456. },
  58457. [
  58458. {
  58459. name: "Normal",
  58460. height: math.unit(10 + 3/12, "feet"),
  58461. default: true
  58462. },
  58463. ]
  58464. ))
  58465. characterMakers.push(() => makeCharacter(
  58466. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58467. {
  58468. side: {
  58469. height: math.unit(9, "meters"),
  58470. weight: math.unit(114, "tonnes"),
  58471. name: "Side",
  58472. image: {
  58473. source: "./media/characters/eldkveikir/side.svg",
  58474. extra: 1927/338,
  58475. bottom: 42/1969
  58476. }
  58477. },
  58478. sitting: {
  58479. height: math.unit(13.4, "meters"),
  58480. weight: math.unit(114, "tonnes"),
  58481. name: "Sitting",
  58482. image: {
  58483. source: "./media/characters/eldkveikir/sitting.svg",
  58484. extra: 1108/963,
  58485. bottom: 610/1718
  58486. }
  58487. },
  58488. maw: {
  58489. height: math.unit(8.36, "meters"),
  58490. name: "Maw",
  58491. image: {
  58492. source: "./media/characters/eldkveikir/maw.svg"
  58493. }
  58494. },
  58495. hand: {
  58496. height: math.unit(4.84, "meters"),
  58497. name: "Hand",
  58498. image: {
  58499. source: "./media/characters/eldkveikir/hand.svg"
  58500. }
  58501. },
  58502. foot: {
  58503. height: math.unit(6.9, "meters"),
  58504. name: "Foot",
  58505. image: {
  58506. source: "./media/characters/eldkveikir/foot.svg"
  58507. }
  58508. },
  58509. genitals: {
  58510. height: math.unit(9.6, "meters"),
  58511. name: "Genitals",
  58512. image: {
  58513. source: "./media/characters/eldkveikir/genitals.svg"
  58514. }
  58515. },
  58516. },
  58517. [
  58518. {
  58519. name: "Normal",
  58520. height: math.unit(9, "meters"),
  58521. default: true
  58522. },
  58523. ]
  58524. ))
  58525. characterMakers.push(() => makeCharacter(
  58526. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58527. {
  58528. front: {
  58529. height: math.unit(14, "feet"),
  58530. weight: math.unit(4100, "lb"),
  58531. name: "Front",
  58532. image: {
  58533. source: "./media/characters/arrow/front.svg",
  58534. extra: 330/318,
  58535. bottom: 56/386
  58536. }
  58537. },
  58538. },
  58539. [
  58540. {
  58541. name: "Normal",
  58542. height: math.unit(14, "feet"),
  58543. default: true
  58544. },
  58545. {
  58546. name: "Minimacro",
  58547. height: math.unit(63, "feet")
  58548. },
  58549. {
  58550. name: "Macro",
  58551. height: math.unit(630, "feet")
  58552. },
  58553. {
  58554. name: "Megamacro",
  58555. height: math.unit(12600, "feet")
  58556. },
  58557. {
  58558. name: "Gigamacro",
  58559. height: math.unit(18000, "miles")
  58560. },
  58561. ]
  58562. ))
  58563. characterMakers.push(() => makeCharacter(
  58564. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58565. {
  58566. front: {
  58567. height: math.unit(10, "feet"),
  58568. weight: math.unit(2.4, "tons"),
  58569. name: "Front",
  58570. image: {
  58571. source: "./media/characters/3yk-k0-unit/front.svg",
  58572. extra: 573/561,
  58573. bottom: 33/606
  58574. }
  58575. },
  58576. back: {
  58577. height: math.unit(10, "feet"),
  58578. weight: math.unit(2.4, "tons"),
  58579. name: "Back",
  58580. image: {
  58581. source: "./media/characters/3yk-k0-unit/back.svg",
  58582. extra: 614/573,
  58583. bottom: 32/646
  58584. }
  58585. },
  58586. maw: {
  58587. height: math.unit(2.15, "feet"),
  58588. name: "Maw",
  58589. image: {
  58590. source: "./media/characters/3yk-k0-unit/maw.svg"
  58591. }
  58592. },
  58593. },
  58594. [
  58595. {
  58596. name: "Normal",
  58597. height: math.unit(10, "feet"),
  58598. default: true
  58599. },
  58600. ]
  58601. ))
  58602. characterMakers.push(() => makeCharacter(
  58603. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58604. {
  58605. front: {
  58606. height: math.unit(8 + 8/12, "feet"),
  58607. name: "Front",
  58608. image: {
  58609. source: "./media/characters/nemo/front.svg",
  58610. extra: 1308/1217,
  58611. bottom: 57/1365
  58612. }
  58613. },
  58614. },
  58615. [
  58616. {
  58617. name: "Normal",
  58618. height: math.unit(8 + 8/12, "feet"),
  58619. default: true
  58620. },
  58621. ]
  58622. ))
  58623. characterMakers.push(() => makeCharacter(
  58624. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58625. {
  58626. front: {
  58627. height: math.unit(8, "feet"),
  58628. weight: math.unit(760, "lb"),
  58629. name: "Front",
  58630. image: {
  58631. source: "./media/characters/rexx/front.svg",
  58632. extra: 786/750,
  58633. bottom: 17/803
  58634. },
  58635. extraAttributes: {
  58636. "pawLength": {
  58637. name: "Paw Length",
  58638. power: 1,
  58639. type: "length",
  58640. base: math.unit(27, "inches")
  58641. },
  58642. }
  58643. },
  58644. },
  58645. [
  58646. {
  58647. name: "Micro",
  58648. height: math.unit(2, "inches")
  58649. },
  58650. {
  58651. name: "Normal",
  58652. height: math.unit(8, "feet"),
  58653. default: true
  58654. },
  58655. {
  58656. name: "Macro",
  58657. height: math.unit(150, "feet")
  58658. },
  58659. ]
  58660. ))
  58661. characterMakers.push(() => makeCharacter(
  58662. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58663. {
  58664. front: {
  58665. height: math.unit(18, "feet"),
  58666. weight: math.unit(1975, "lb"),
  58667. name: "Front",
  58668. image: {
  58669. source: "./media/characters/draco/front.svg",
  58670. extra: 1325/1241,
  58671. bottom: 83/1408
  58672. }
  58673. },
  58674. back: {
  58675. height: math.unit(18, "feet"),
  58676. weight: math.unit(1975, "lb"),
  58677. name: "Back",
  58678. image: {
  58679. source: "./media/characters/draco/back.svg",
  58680. extra: 1332/1250,
  58681. bottom: 43/1375
  58682. }
  58683. },
  58684. dick: {
  58685. height: math.unit(7.5, "feet"),
  58686. name: "Dick",
  58687. image: {
  58688. source: "./media/characters/draco/dick.svg"
  58689. }
  58690. },
  58691. },
  58692. [
  58693. {
  58694. name: "Normal",
  58695. height: math.unit(18, "feet"),
  58696. default: true
  58697. },
  58698. ]
  58699. ))
  58700. characterMakers.push(() => makeCharacter(
  58701. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58702. {
  58703. front: {
  58704. height: math.unit(3.2, "meters"),
  58705. name: "Front",
  58706. image: {
  58707. source: "./media/characters/harriett/front.svg",
  58708. extra: 1966/1915,
  58709. bottom: 9/1975
  58710. }
  58711. },
  58712. },
  58713. [
  58714. {
  58715. name: "Normal",
  58716. height: math.unit(3.2, "meters"),
  58717. default: true
  58718. },
  58719. ]
  58720. ))
  58721. characterMakers.push(() => makeCharacter(
  58722. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58723. {
  58724. standing: {
  58725. height: math.unit(180, "cm"),
  58726. weight: math.unit(185, "lb"),
  58727. name: "Standing",
  58728. image: {
  58729. source: "./media/characters/serpentus/standing.svg",
  58730. extra: 882/878,
  58731. bottom: 16/898
  58732. }
  58733. },
  58734. sitting: {
  58735. height: math.unit(0.8, "meter"),
  58736. weight: math.unit(155, "lb"),
  58737. name: "Sitting",
  58738. image: {
  58739. source: "./media/characters/serpentus/sitting.svg",
  58740. extra: 293/290,
  58741. bottom: 140/433
  58742. }
  58743. },
  58744. },
  58745. [
  58746. {
  58747. name: "Normal",
  58748. height: math.unit(1.8, "meter"),
  58749. default: true
  58750. },
  58751. ]
  58752. ))
  58753. characterMakers.push(() => makeCharacter(
  58754. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58755. {
  58756. front: {
  58757. height: math.unit(5.7174385736, "feet"),
  58758. name: "Front",
  58759. image: {
  58760. source: "./media/characters/nova-polecat/front.svg",
  58761. extra: 1317/1216,
  58762. bottom: 92/1409
  58763. }
  58764. },
  58765. },
  58766. [
  58767. {
  58768. name: "Normal",
  58769. height: math.unit(5.7174385736, "feet"),
  58770. default: true
  58771. },
  58772. ]
  58773. ))
  58774. characterMakers.push(() => makeCharacter(
  58775. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58776. {
  58777. front: {
  58778. height: math.unit(5 + 4/12, "feet"),
  58779. weight: math.unit(250, "lb"),
  58780. name: "Front",
  58781. image: {
  58782. source: "./media/characters/mook/front.svg",
  58783. extra: 1088/1037,
  58784. bottom: 132/1220
  58785. }
  58786. },
  58787. back: {
  58788. height: math.unit(5 + 1/12, "feet"),
  58789. weight: math.unit(250, "lb"),
  58790. name: "Back",
  58791. image: {
  58792. source: "./media/characters/mook/back.svg",
  58793. extra: 1184/905,
  58794. bottom: 96/1280
  58795. }
  58796. },
  58797. head: {
  58798. height: math.unit(1.85, "feet"),
  58799. name: "Head",
  58800. image: {
  58801. source: "./media/characters/mook/head.svg"
  58802. }
  58803. },
  58804. hand: {
  58805. height: math.unit(1.9, "feet"),
  58806. name: "Hand",
  58807. image: {
  58808. source: "./media/characters/mook/hand.svg"
  58809. }
  58810. },
  58811. palm: {
  58812. height: math.unit(1.84, "feet"),
  58813. name: "Palm",
  58814. image: {
  58815. source: "./media/characters/mook/palm.svg"
  58816. }
  58817. },
  58818. foot: {
  58819. height: math.unit(1.44, "feet"),
  58820. name: "Foot",
  58821. image: {
  58822. source: "./media/characters/mook/foot.svg"
  58823. }
  58824. },
  58825. sole: {
  58826. height: math.unit(1.44, "feet"),
  58827. name: "Sole",
  58828. image: {
  58829. source: "./media/characters/mook/sole.svg"
  58830. }
  58831. },
  58832. },
  58833. [
  58834. {
  58835. name: "Normal",
  58836. height: math.unit(5 + 4/12, "feet"),
  58837. default: true
  58838. },
  58839. {
  58840. name: "Big",
  58841. height: math.unit(12, "feet")
  58842. },
  58843. ]
  58844. ))
  58845. characterMakers.push(() => makeCharacter(
  58846. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58847. {
  58848. front: {
  58849. height: math.unit(6 + 10/12, "feet"),
  58850. weight: math.unit(233, "lb"),
  58851. name: "Front",
  58852. image: {
  58853. source: "./media/characters/kayla/front.svg",
  58854. extra: 1850/1775,
  58855. bottom: 65/1915
  58856. }
  58857. },
  58858. },
  58859. [
  58860. {
  58861. name: "Normal",
  58862. height: math.unit(6 + 10/12, "feet"),
  58863. default: true
  58864. },
  58865. {
  58866. name: "Amazonian",
  58867. height: math.unit(12 + 5/12, "feet")
  58868. },
  58869. {
  58870. name: "Mini Giantess",
  58871. height: math.unit(26, "feet")
  58872. },
  58873. {
  58874. name: "Giantess",
  58875. height: math.unit(200, "feet")
  58876. },
  58877. {
  58878. name: "Mega Giantess",
  58879. height: math.unit(2500, "feet")
  58880. },
  58881. {
  58882. name: "City Sized",
  58883. height: math.unit(50, "miles")
  58884. },
  58885. {
  58886. name: "Country Sized",
  58887. height: math.unit(500, "miles")
  58888. },
  58889. {
  58890. name: "Continent Sized",
  58891. height: math.unit(2500, "miles")
  58892. },
  58893. {
  58894. name: "Planet Sized",
  58895. height: math.unit(10000, "miles")
  58896. },
  58897. {
  58898. name: "Star Sized",
  58899. height: math.unit(5e6, "miles")
  58900. },
  58901. {
  58902. name: "Solar System Sized",
  58903. height: math.unit(125, "AU")
  58904. },
  58905. {
  58906. name: "Galaxy Sized",
  58907. height: math.unit(300e3, "lightyears")
  58908. },
  58909. {
  58910. name: "Universe Sized",
  58911. height: math.unit(200e9, "lightyears")
  58912. },
  58913. {
  58914. name: "Multiverse Sized",
  58915. height: math.unit(20, "exauniverses")
  58916. },
  58917. {
  58918. name: "Mother of Existence",
  58919. height: math.unit(1e6, "yottauniverses")
  58920. },
  58921. ]
  58922. ))
  58923. characterMakers.push(() => makeCharacter(
  58924. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58925. {
  58926. side: {
  58927. height: math.unit(9.5, "meters"),
  58928. name: "Side",
  58929. image: {
  58930. source: "./media/characters/kulve-ragnarok/side.svg",
  58931. extra: 364/326,
  58932. bottom: 50/414
  58933. }
  58934. },
  58935. },
  58936. [
  58937. {
  58938. name: "Normal",
  58939. height: math.unit(9.5, "meters"),
  58940. default: true
  58941. },
  58942. ]
  58943. ))
  58944. characterMakers.push(() => makeCharacter(
  58945. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58946. {
  58947. front: {
  58948. height: math.unit(8 + 9/12, "feet"),
  58949. name: "Front",
  58950. image: {
  58951. source: "./media/characters/atlas-goat/front.svg",
  58952. extra: 1462/1323,
  58953. bottom: 12/1474
  58954. }
  58955. },
  58956. },
  58957. [
  58958. {
  58959. name: "Normal",
  58960. height: math.unit(8 + 9/12, "feet"),
  58961. default: true
  58962. },
  58963. {
  58964. name: "Skyline",
  58965. height: math.unit(845, "feet")
  58966. },
  58967. {
  58968. name: "Orbital",
  58969. height: math.unit(93000, "miles")
  58970. },
  58971. {
  58972. name: "Constellation",
  58973. height: math.unit(27000, "lightyears")
  58974. },
  58975. ]
  58976. ))
  58977. characterMakers.push(() => makeCharacter(
  58978. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58979. {
  58980. side: {
  58981. height: math.unit(1.8, "meters"),
  58982. weight: math.unit(120, "kg"),
  58983. name: "Side",
  58984. image: {
  58985. source: "./media/characters/xie-ling/side.svg",
  58986. extra: 646/574,
  58987. bottom: 44/690
  58988. }
  58989. },
  58990. },
  58991. [
  58992. {
  58993. name: "Tiny",
  58994. height: math.unit(1.80, "meters")
  58995. },
  58996. {
  58997. name: "Small",
  58998. height: math.unit(6, "meters")
  58999. },
  59000. {
  59001. name: "Medium",
  59002. height: math.unit(15, "meters")
  59003. },
  59004. {
  59005. name: "Normal",
  59006. height: math.unit(30, "meters"),
  59007. default: true
  59008. },
  59009. {
  59010. name: "Above Normal",
  59011. height: math.unit(60, "meters")
  59012. },
  59013. {
  59014. name: "Big",
  59015. height: math.unit(220, "meters")
  59016. },
  59017. {
  59018. name: "Giant",
  59019. height: math.unit(2.2, "km")
  59020. },
  59021. {
  59022. name: "Macro",
  59023. height: math.unit(25, "km")
  59024. },
  59025. {
  59026. name: "Mega Macro",
  59027. height: math.unit(350, "km")
  59028. },
  59029. {
  59030. name: "Mega Macro+",
  59031. height: math.unit(5000, "km")
  59032. },
  59033. {
  59034. name: "Goddess",
  59035. height: math.unit(3, "multiverses")
  59036. },
  59037. ]
  59038. ))
  59039. characterMakers.push(() => makeCharacter(
  59040. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59041. {
  59042. frontSfw: {
  59043. height: math.unit(5 + 11/12, "feet"),
  59044. weight: math.unit(210, "lb"),
  59045. name: "Front",
  59046. image: {
  59047. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59048. extra: 1928/1821,
  59049. bottom: 45/1973
  59050. }
  59051. },
  59052. backSfw: {
  59053. height: math.unit(5 + 11/12, "feet"),
  59054. weight: math.unit(210, "lb"),
  59055. name: "Back",
  59056. image: {
  59057. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59058. extra: 1920/1813,
  59059. bottom: 34/1954
  59060. }
  59061. },
  59062. frontNsfw: {
  59063. height: math.unit(5 + 11/12, "feet"),
  59064. weight: math.unit(210, "lb"),
  59065. name: "Front (NSFW)",
  59066. image: {
  59067. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59068. extra: 1928/1821,
  59069. bottom: 45/1973
  59070. }
  59071. },
  59072. backNsfw: {
  59073. height: math.unit(5 + 11/12, "feet"),
  59074. weight: math.unit(210, "lb"),
  59075. name: "Back (NSFW)",
  59076. image: {
  59077. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59078. extra: 1920/1813,
  59079. bottom: 34/1954
  59080. }
  59081. },
  59082. },
  59083. [
  59084. {
  59085. name: "Normal",
  59086. height: math.unit(5 + 11/12, "feet"),
  59087. default: true
  59088. },
  59089. {
  59090. name: "Goddess",
  59091. height: math.unit(20 + 3/12, "feet")
  59092. },
  59093. {
  59094. name: "Breaker of Man",
  59095. height: math.unit(329 + 9/12, "feet")
  59096. },
  59097. {
  59098. name: "Solar Justice",
  59099. height: math.unit(0.6, "solarradii")
  59100. },
  59101. {
  59102. name: "She Who Judges",
  59103. height: math.unit(1, "universe")
  59104. },
  59105. ]
  59106. ))
  59107. characterMakers.push(() => makeCharacter(
  59108. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59109. {
  59110. casual_front: {
  59111. height: math.unit(6 + 1/12, "feet"),
  59112. weight: math.unit(190, "lb"),
  59113. preyCapacity: math.unit(1, "people"),
  59114. name: "Front",
  59115. image: {
  59116. source: "./media/characters/managarmr/casual-front.svg",
  59117. extra: 411/381,
  59118. bottom: 15/426
  59119. },
  59120. extraAttributes: {
  59121. "pawSize": {
  59122. name: "Paw Size",
  59123. power: 1,
  59124. type: "length",
  59125. base: math.unit(0.2, "meters")
  59126. },
  59127. },
  59128. form: "casual",
  59129. },
  59130. casual_back: {
  59131. height: math.unit(6 + 1/12, "feet"),
  59132. weight: math.unit(190, "lb"),
  59133. preyCapacity: math.unit(1, "people"),
  59134. name: "Back",
  59135. image: {
  59136. source: "./media/characters/managarmr/casual-back.svg",
  59137. extra: 413/383,
  59138. bottom: 13/426
  59139. },
  59140. extraAttributes: {
  59141. "pawSize": {
  59142. name: "Paw Size",
  59143. power: 1,
  59144. type: "length",
  59145. base: math.unit(0.2, "meters")
  59146. },
  59147. },
  59148. form: "casual",
  59149. },
  59150. base_front: {
  59151. height: math.unit(7, "feet"),
  59152. weight: math.unit(210, "lb"),
  59153. preyCapacity: math.unit(2, "people"),
  59154. name: "Front",
  59155. image: {
  59156. source: "./media/characters/managarmr/base-front.svg",
  59157. extra: 580/485,
  59158. bottom: 32/612
  59159. },
  59160. extraAttributes: {
  59161. "wingspan": {
  59162. name: "Wingspan",
  59163. power: 1,
  59164. type: "length",
  59165. base: math.unit(4, "meters")
  59166. },
  59167. "pawSize": {
  59168. name: "Paw Size",
  59169. power: 1,
  59170. type: "length",
  59171. base: math.unit(0.2, "meters")
  59172. },
  59173. },
  59174. form: "base",
  59175. },
  59176. "true-divine_front": {
  59177. height: math.unit(40, "feet"),
  59178. weight: math.unit(39000, "lb"),
  59179. preyCapacity: math.unit(375, "people"),
  59180. name: "Front",
  59181. image: {
  59182. source: "./media/characters/managarmr/true-divine-front.svg",
  59183. extra: 725/573,
  59184. bottom: 120/845
  59185. },
  59186. extraAttributes: {
  59187. "wingspan": {
  59188. name: "Wingspan",
  59189. power: 1,
  59190. type: "length",
  59191. base: math.unit(20, "meters")
  59192. },
  59193. "pawSize": {
  59194. name: "Paw Size",
  59195. power: 1,
  59196. type: "length",
  59197. base: math.unit(1.5, "meters")
  59198. },
  59199. },
  59200. form: "true-divine",
  59201. },
  59202. },
  59203. [
  59204. {
  59205. name: "Normal",
  59206. height: math.unit(6 + 1/12, "feet"),
  59207. form: "casual",
  59208. default: true
  59209. },
  59210. {
  59211. name: "Normal",
  59212. height: math.unit(7, "feet"),
  59213. form: "base",
  59214. default: true
  59215. },
  59216. ],
  59217. {
  59218. "casual": {
  59219. name: "Casual",
  59220. default: true
  59221. },
  59222. "base": {
  59223. name: "Base",
  59224. },
  59225. "true-divine": {
  59226. name: "True Divine",
  59227. },
  59228. }
  59229. ))
  59230. characterMakers.push(() => makeCharacter(
  59231. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59232. {
  59233. front: {
  59234. height: math.unit(1.8, "meters"),
  59235. weight: math.unit(110, "kg"),
  59236. name: "Front",
  59237. image: {
  59238. source: "./media/characters/mystra/front.svg",
  59239. extra: 529/442,
  59240. bottom: 31/560
  59241. }
  59242. },
  59243. frontLewd: {
  59244. height: math.unit(1.8, "meters"),
  59245. weight: math.unit(110, "kg"),
  59246. name: "Front (Lewd)",
  59247. image: {
  59248. source: "./media/characters/mystra/front-lewd.svg",
  59249. extra: 529/442,
  59250. bottom: 31/560
  59251. }
  59252. },
  59253. head: {
  59254. height: math.unit(1.63, "feet"),
  59255. name: "Head",
  59256. image: {
  59257. source: "./media/characters/mystra/head.svg"
  59258. }
  59259. },
  59260. paw: {
  59261. height: math.unit(1.9, "feet"),
  59262. name: "Paw",
  59263. image: {
  59264. source: "./media/characters/mystra/paw.svg"
  59265. }
  59266. },
  59267. },
  59268. [
  59269. {
  59270. name: "Incognito",
  59271. height: math.unit(2.3, "meters")
  59272. },
  59273. {
  59274. name: "Small Macro",
  59275. height: math.unit(300, "meters")
  59276. },
  59277. {
  59278. name: "Small Mega",
  59279. height: math.unit(2, "km")
  59280. },
  59281. {
  59282. name: "Mega",
  59283. height: math.unit(30, "km")
  59284. },
  59285. {
  59286. name: "Small Giga",
  59287. height: math.unit(100, "km")
  59288. },
  59289. {
  59290. name: "Giga",
  59291. height: math.unit(1000, "km"),
  59292. default: true
  59293. },
  59294. {
  59295. name: "Continental",
  59296. height: math.unit(5000, "km")
  59297. },
  59298. {
  59299. name: "Terra",
  59300. height: math.unit(20000, "km")
  59301. },
  59302. {
  59303. name: "Solar",
  59304. height: math.unit(2e6, "km")
  59305. },
  59306. {
  59307. name: "Galactic",
  59308. height: math.unit(528502, "lightyears")
  59309. },
  59310. {
  59311. name: "Universal",
  59312. height: math.unit(20, "universes")
  59313. },
  59314. ]
  59315. ))
  59316. characterMakers.push(() => makeCharacter(
  59317. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59318. {
  59319. front: {
  59320. height: math.unit(2, "meters"),
  59321. weight: math.unit(140, "kg"),
  59322. name: "Front",
  59323. image: {
  59324. source: "./media/characters/caleb/front.svg",
  59325. extra: 873/817,
  59326. bottom: 47/920
  59327. }
  59328. },
  59329. back: {
  59330. height: math.unit(2, "meters"),
  59331. weight: math.unit(140, "kg"),
  59332. name: "Back",
  59333. image: {
  59334. source: "./media/characters/caleb/back.svg",
  59335. extra: 877/828,
  59336. bottom: 24/901
  59337. }
  59338. },
  59339. snakeTail: {
  59340. height: math.unit(1.44, "feet"),
  59341. name: "Snake Tail",
  59342. image: {
  59343. source: "./media/characters/caleb/snake-tail.svg"
  59344. }
  59345. },
  59346. dick: {
  59347. height: math.unit(2.6, "feet"),
  59348. name: "Dick",
  59349. image: {
  59350. source: "./media/characters/caleb/dick.svg"
  59351. }
  59352. },
  59353. },
  59354. [
  59355. {
  59356. name: "Incognito",
  59357. height: math.unit(3, "meters")
  59358. },
  59359. {
  59360. name: "Home Size",
  59361. height: math.unit(200, "meters"),
  59362. default: true
  59363. },
  59364. {
  59365. name: "Macro",
  59366. height: math.unit(500, "meters")
  59367. },
  59368. {
  59369. name: "Big Macro",
  59370. height: math.unit(5, "km")
  59371. },
  59372. {
  59373. name: "Giga",
  59374. height: math.unit(250, "km")
  59375. },
  59376. {
  59377. name: "Giga+",
  59378. height: math.unit(5000, "km")
  59379. },
  59380. {
  59381. name: "Small Terra",
  59382. height: math.unit(35e3, "km")
  59383. },
  59384. {
  59385. name: "Terra",
  59386. height: math.unit(2e6, "km")
  59387. },
  59388. {
  59389. name: "Terra+",
  59390. height: math.unit(1.5e6, "km")
  59391. },
  59392. ]
  59393. ))
  59394. characterMakers.push(() => makeCharacter(
  59395. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59396. {
  59397. front: {
  59398. height: math.unit(2, "meters"),
  59399. weight: math.unit(120, "kg"),
  59400. name: "Front",
  59401. image: {
  59402. source: "./media/characters/gilirian/front.svg",
  59403. extra: 805/737,
  59404. bottom: 13/818
  59405. }
  59406. },
  59407. side: {
  59408. height: math.unit(2, "meters"),
  59409. weight: math.unit(120, "kg"),
  59410. name: "Side",
  59411. image: {
  59412. source: "./media/characters/gilirian/side.svg",
  59413. extra: 810/746,
  59414. bottom: 6/816
  59415. }
  59416. },
  59417. back: {
  59418. height: math.unit(2, "meters"),
  59419. weight: math.unit(120, "kg"),
  59420. name: "Back",
  59421. image: {
  59422. source: "./media/characters/gilirian/back.svg",
  59423. extra: 815/745,
  59424. bottom: 15/830
  59425. }
  59426. },
  59427. frontNsfw: {
  59428. height: math.unit(2, "meters"),
  59429. weight: math.unit(120, "kg"),
  59430. name: "Front (NSFW)",
  59431. image: {
  59432. source: "./media/characters/gilirian/front-nsfw.svg",
  59433. extra: 805/737,
  59434. bottom: 13/818
  59435. }
  59436. },
  59437. sideNsfw: {
  59438. height: math.unit(2, "meters"),
  59439. weight: math.unit(120, "kg"),
  59440. name: "Side (NSFW)",
  59441. image: {
  59442. source: "./media/characters/gilirian/side-nsfw.svg",
  59443. extra: 810/746,
  59444. bottom: 6/816
  59445. }
  59446. },
  59447. },
  59448. [
  59449. {
  59450. name: "Incognito",
  59451. height: math.unit(2, "meters"),
  59452. default: true
  59453. },
  59454. {
  59455. name: "Macro",
  59456. height: math.unit(250, "meters")
  59457. },
  59458. {
  59459. name: "Big Macro",
  59460. height: math.unit(1500, "meters")
  59461. },
  59462. {
  59463. name: "Mega",
  59464. height: math.unit(40, "km")
  59465. },
  59466. {
  59467. name: "Giga",
  59468. height: math.unit(300, "km")
  59469. },
  59470. {
  59471. name: "Extra Giga",
  59472. height: math.unit(5000, "km")
  59473. },
  59474. {
  59475. name: "Small Terra",
  59476. height: math.unit(10e3, "km")
  59477. },
  59478. {
  59479. name: "Terra",
  59480. height: math.unit(3e5, "km")
  59481. },
  59482. {
  59483. name: "Galactic",
  59484. height: math.unit(369950, "lightyears")
  59485. },
  59486. ]
  59487. ))
  59488. characterMakers.push(() => makeCharacter(
  59489. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59490. {
  59491. front: {
  59492. height: math.unit(2.5, "meters"),
  59493. weight: math.unit(230, "lb"),
  59494. name: "Front",
  59495. image: {
  59496. source: "./media/characters/tarken/front.svg",
  59497. extra: 764/720,
  59498. bottom: 49/813
  59499. }
  59500. },
  59501. back: {
  59502. height: math.unit(2.5, "meters"),
  59503. weight: math.unit(230, "lb"),
  59504. name: "Back",
  59505. image: {
  59506. source: "./media/characters/tarken/back.svg",
  59507. extra: 756/720,
  59508. bottom: 35/791
  59509. }
  59510. },
  59511. frontNsfw: {
  59512. height: math.unit(2.5, "meters"),
  59513. weight: math.unit(230, "lb"),
  59514. name: "Front (NSFW)",
  59515. image: {
  59516. source: "./media/characters/tarken/front-nsfw.svg",
  59517. extra: 764/720,
  59518. bottom: 49/813
  59519. }
  59520. },
  59521. backNsfw: {
  59522. height: math.unit(2.5, "meters"),
  59523. weight: math.unit(230, "lb"),
  59524. name: "Back (NSFW)",
  59525. image: {
  59526. source: "./media/characters/tarken/back-nsfw.svg",
  59527. extra: 756/720,
  59528. bottom: 35/791
  59529. }
  59530. },
  59531. head: {
  59532. height: math.unit(2.22, "feet"),
  59533. name: "Head",
  59534. image: {
  59535. source: "./media/characters/tarken/head.svg"
  59536. }
  59537. },
  59538. tail: {
  59539. height: math.unit(5.25, "feet"),
  59540. name: "Tail",
  59541. image: {
  59542. source: "./media/characters/tarken/tail.svg"
  59543. }
  59544. },
  59545. dick: {
  59546. height: math.unit(1.95, "feet"),
  59547. name: "Dick",
  59548. image: {
  59549. source: "./media/characters/tarken/dick.svg"
  59550. }
  59551. },
  59552. hand: {
  59553. height: math.unit(1.78, "feet"),
  59554. name: "Hand",
  59555. image: {
  59556. source: "./media/characters/tarken/hand.svg"
  59557. }
  59558. },
  59559. beam: {
  59560. height: math.unit(1.5, "feet"),
  59561. name: "Beam",
  59562. image: {
  59563. source: "./media/characters/tarken/beam.svg"
  59564. }
  59565. },
  59566. },
  59567. [
  59568. {
  59569. name: "Original Size",
  59570. height: math.unit(2.5, "meters")
  59571. },
  59572. {
  59573. name: "Macro",
  59574. height: math.unit(150, "meters"),
  59575. default: true
  59576. },
  59577. {
  59578. name: "Macro+",
  59579. height: math.unit(300, "meters")
  59580. },
  59581. {
  59582. name: "Mega",
  59583. height: math.unit(2, "km")
  59584. },
  59585. {
  59586. name: "Mega+",
  59587. height: math.unit(35, "km")
  59588. },
  59589.  {
  59590. name: "Mega++",
  59591. height: math.unit(60, "km")
  59592. },
  59593. {
  59594. name: "Giga",
  59595. height: math.unit(200, "km")
  59596. },
  59597. {
  59598. name: "Giga+",
  59599. height: math.unit(2500, "km")
  59600. },
  59601. {
  59602. name: "Giga++",
  59603. height: math.unit(6600, "km")
  59604. },
  59605. {
  59606. name: "Terra",
  59607. height: math.unit(20000, "km")
  59608. },
  59609. {
  59610. name: "Terra+",
  59611. height: math.unit(300000, "km")
  59612. },
  59613. ]
  59614. ))
  59615. characterMakers.push(() => makeCharacter(
  59616. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59617. {
  59618. magpie_dressed: {
  59619. height: math.unit(1.7, "meters"),
  59620. weight: math.unit(70, "kg"),
  59621. name: "Dressed",
  59622. image: {
  59623. source: "./media/characters/otreus/magpie-dressed.svg",
  59624. extra: 691/672,
  59625. bottom: 116/807
  59626. },
  59627. form: "magpie",
  59628. default: true
  59629. },
  59630. magpie_nude: {
  59631. height: math.unit(1.7, "meters"),
  59632. weight: math.unit(70, "kg"),
  59633. name: "Nude",
  59634. image: {
  59635. source: "./media/characters/otreus/magpie-nude.svg",
  59636. extra: 691/672,
  59637. bottom: 116/807
  59638. },
  59639. form: "magpie",
  59640. },
  59641. magpie_dressedLewd: {
  59642. height: math.unit(1.7, "meters"),
  59643. weight: math.unit(70, "kg"),
  59644. name: "Dressed (Lewd)",
  59645. image: {
  59646. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59647. extra: 691/672,
  59648. bottom: 116/807
  59649. },
  59650. form: "magpie",
  59651. },
  59652. magpie_nudeLewd: {
  59653. height: math.unit(1.7, "meters"),
  59654. weight: math.unit(70, "kg"),
  59655. name: "Nude (Lewd)",
  59656. image: {
  59657. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59658. extra: 691/672,
  59659. bottom: 116/807
  59660. },
  59661. form: "magpie",
  59662. },
  59663. magpie_leftFoot: {
  59664. height: math.unit(1.58, "feet"),
  59665. name: "Left Foot",
  59666. image: {
  59667. source: "./media/characters/otreus/magpie-left-foot.svg"
  59668. },
  59669. form: "magpie",
  59670. },
  59671. magpie_rightFoot: {
  59672. height: math.unit(1.58, "feet"),
  59673. name: "Right Foot",
  59674. image: {
  59675. source: "./media/characters/otreus/magpie-right-foot.svg"
  59676. },
  59677. form: "magpie",
  59678. },
  59679. magpie_wingspan: {
  59680. height: math.unit(2, "meters"),
  59681. weight: math.unit(70, "kg"),
  59682. name: "Wingspan",
  59683. image: {
  59684. source: "./media/characters/otreus/magpie-wingspan.svg"
  59685. },
  59686. extraAttributes: {
  59687. "wingspan": {
  59688. name: "Wingspan",
  59689. power: 1,
  59690. type: "length",
  59691. base: math.unit(3.35, "meters")
  59692. },
  59693. },
  59694. form: "magpie",
  59695. },
  59696. hippogriff_dressed: {
  59697. height: math.unit(1.7, "meters"),
  59698. weight: math.unit(70, "kg"),
  59699. name: "Dressed",
  59700. image: {
  59701. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59702. extra: 710/689,
  59703. bottom: 67/777
  59704. },
  59705. form: "hippogriff",
  59706. default: true
  59707. },
  59708. hippogriff_nude: {
  59709. height: math.unit(1.7, "meters"),
  59710. weight: math.unit(70, "kg"),
  59711. name: "Nude",
  59712. image: {
  59713. source: "./media/characters/otreus/hippogriff-nude.svg",
  59714. extra: 710/689,
  59715. bottom: 67/777
  59716. },
  59717. form: "hippogriff",
  59718. },
  59719. hippogriff_dressedLewd: {
  59720. height: math.unit(1.7, "meters"),
  59721. weight: math.unit(70, "kg"),
  59722. name: "Dressed (Lewd)",
  59723. image: {
  59724. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59725. extra: 710/689,
  59726. bottom: 67/777
  59727. },
  59728. form: "hippogriff",
  59729. },
  59730. hippogriff_nudeLewd: {
  59731. height: math.unit(1.7, "meters"),
  59732. weight: math.unit(70, "kg"),
  59733. name: "Nude (Lewd)",
  59734. image: {
  59735. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59736. extra: 710/689,
  59737. bottom: 67/777
  59738. },
  59739. form: "hippogriff",
  59740. },
  59741. },
  59742. [
  59743. {
  59744. name: "Original Size",
  59745. height: math.unit(1.7, "meters"),
  59746. allForms: true
  59747. },
  59748. {
  59749. name: "Incognito Size",
  59750. height: math.unit(2, "meters"),
  59751. allForms: true
  59752. },
  59753. {
  59754. name: "Mega",
  59755. height: math.unit(2, "km"),
  59756. allForms: true
  59757. },
  59758. {
  59759. name: "Mega+",
  59760. height: math.unit(40, "km"),
  59761. allForms: true
  59762. },
  59763. {
  59764. name: "Giga",
  59765. height: math.unit(250, "km"),
  59766. allForms: true
  59767. },
  59768. {
  59769. name: "Giga+",
  59770. height: math.unit(3000, "km"),
  59771. allForms: true
  59772. },
  59773. {
  59774. name: "Terra",
  59775. height: math.unit(20000, "km"),
  59776. allForms: true
  59777. },
  59778. {
  59779. name: "Solar (Home Size)",
  59780. height: math.unit(3e6, "km"),
  59781. allForms: true,
  59782. default: true
  59783. },
  59784. ],
  59785. {
  59786. "magpie": {
  59787. name: "Magpie",
  59788. default: true
  59789. },
  59790. "hippogriff": {
  59791. name: "Hippogriff",
  59792. },
  59793. }
  59794. ))
  59795. characterMakers.push(() => makeCharacter(
  59796. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59797. {
  59798. frontDressed: {
  59799. height: math.unit(1.8, "meters"),
  59800. weight: math.unit(90, "kg"),
  59801. name: "Front (Dressed)",
  59802. image: {
  59803. source: "./media/characters/thalia/front-dressed.svg",
  59804. extra: 478/402,
  59805. bottom: 55/533
  59806. }
  59807. },
  59808. backDressed: {
  59809. height: math.unit(1.8, "meters"),
  59810. weight: math.unit(90, "kg"),
  59811. name: "Back (Dressed)",
  59812. image: {
  59813. source: "./media/characters/thalia/back-dressed.svg",
  59814. extra: 500/424,
  59815. bottom: 15/515
  59816. }
  59817. },
  59818. frontNude: {
  59819. height: math.unit(1.8, "meters"),
  59820. weight: math.unit(90, "kg"),
  59821. name: "Front (Nude)",
  59822. image: {
  59823. source: "./media/characters/thalia/front-nude.svg",
  59824. extra: 478/402,
  59825. bottom: 55/533
  59826. }
  59827. },
  59828. backNude: {
  59829. height: math.unit(1.8, "meters"),
  59830. weight: math.unit(90, "kg"),
  59831. name: "Back (Nude)",
  59832. image: {
  59833. source: "./media/characters/thalia/back-nude.svg",
  59834. extra: 500/424,
  59835. bottom: 15/515
  59836. }
  59837. },
  59838. },
  59839. [
  59840. {
  59841. name: "Incognito",
  59842. height: math.unit(3, "meters")
  59843. },
  59844. {
  59845. name: "Macro",
  59846. height: math.unit(500, "meters")
  59847. },
  59848. {
  59849. name: "Mega",
  59850. height: math.unit(5, "km")
  59851. },
  59852. {
  59853. name: "Mega+",
  59854. height: math.unit(30, "km")
  59855. },
  59856. {
  59857. name: "Giga",
  59858. height: math.unit(350, "km")
  59859. },
  59860. {
  59861. name: "Giga+",
  59862. height: math.unit(4000, "km")
  59863. },
  59864. {
  59865. name: "Terra",
  59866. height: math.unit(35000, "km")
  59867. },
  59868. {
  59869. name: "Original Size",
  59870. height: math.unit(130000, "km")
  59871. },
  59872. {
  59873. name: "Solar (Home Size)",
  59874. height: math.unit(4e6, "km"),
  59875. default: true
  59876. },
  59877. ]
  59878. ))
  59879. characterMakers.push(() => makeCharacter(
  59880. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59881. {
  59882. front: {
  59883. height: math.unit(1.8, "meters"),
  59884. weight: math.unit(95, "kg"),
  59885. name: "Front",
  59886. image: {
  59887. source: "./media/characters/shango/front.svg",
  59888. extra: 1925/1774,
  59889. bottom: 67/1992
  59890. }
  59891. },
  59892. back: {
  59893. height: math.unit(1.8, "meters"),
  59894. weight: math.unit(95, "kg"),
  59895. name: "Back",
  59896. image: {
  59897. source: "./media/characters/shango/back.svg",
  59898. extra: 1915/1766,
  59899. bottom: 52/1967
  59900. }
  59901. },
  59902. frontLewd: {
  59903. height: math.unit(1.8, "meters"),
  59904. weight: math.unit(95, "kg"),
  59905. name: "Front (Lewd)",
  59906. image: {
  59907. source: "./media/characters/shango/front-lewd.svg",
  59908. extra: 1925/1774,
  59909. bottom: 67/1992
  59910. }
  59911. },
  59912. backLewd: {
  59913. height: math.unit(1.8, "meters"),
  59914. weight: math.unit(95, "kg"),
  59915. name: "Back (Lewd)",
  59916. image: {
  59917. source: "./media/characters/shango/back-lewd.svg",
  59918. extra: 1915/1766,
  59919. bottom: 52/1967
  59920. }
  59921. },
  59922. maw: {
  59923. height: math.unit(1.64, "feet"),
  59924. name: "Maw",
  59925. image: {
  59926. source: "./media/characters/shango/maw.svg"
  59927. }
  59928. },
  59929. dick: {
  59930. height: math.unit(2.14, "feet"),
  59931. name: "Dick",
  59932. image: {
  59933. source: "./media/characters/shango/dick.svg"
  59934. }
  59935. },
  59936. },
  59937. [
  59938. {
  59939. name: "Incognito",
  59940. height: math.unit(1.8, "meters")
  59941. },
  59942. {
  59943. name: "Home Size",
  59944. height: math.unit(60, "meters"),
  59945. default: true
  59946. },
  59947. {
  59948. name: "Macro",
  59949. height: math.unit(450, "meters")
  59950. },
  59951. {
  59952. name: "Mega",
  59953. height: math.unit(6, "km")
  59954. },
  59955. {
  59956. name: "Mega+",
  59957. height: math.unit(35, "km")
  59958. },
  59959. {
  59960. name: "Giga",
  59961. height: math.unit(500, "km")
  59962. },
  59963. {
  59964. name: "Giga+",
  59965. height: math.unit(5000, "km")
  59966. },
  59967. {
  59968. name: "Terra",
  59969. height: math.unit(60000, "km")
  59970. },
  59971. {
  59972. name: "Terra+",
  59973. height: math.unit(400000, "km")
  59974. },
  59975. ]
  59976. ))
  59977. characterMakers.push(() => makeCharacter(
  59978. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59979. {
  59980. front: {
  59981. height: math.unit(2, "meters"),
  59982. weight: math.unit(95, "kg"),
  59983. name: "Front",
  59984. image: {
  59985. source: "./media/characters/osiris-gryphon/front.svg",
  59986. extra: 1508/1313,
  59987. bottom: 87/1595
  59988. }
  59989. },
  59990. back: {
  59991. height: math.unit(2, "meters"),
  59992. weight: math.unit(95, "kg"),
  59993. name: "Back",
  59994. image: {
  59995. source: "./media/characters/osiris-gryphon/back.svg",
  59996. extra: 1436/1309,
  59997. bottom: 64/1500
  59998. }
  59999. },
  60000. frontLewd: {
  60001. height: math.unit(2, "meters"),
  60002. weight: math.unit(95, "kg"),
  60003. name: "Front-lewd",
  60004. image: {
  60005. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60006. extra: 1508/1313,
  60007. bottom: 87/1595
  60008. }
  60009. },
  60010. wing: {
  60011. height: math.unit(6.3333, "feet"),
  60012. name: "Wing",
  60013. image: {
  60014. source: "./media/characters/osiris-gryphon/wing.svg"
  60015. }
  60016. },
  60017. },
  60018. [
  60019. {
  60020. name: "Incognito",
  60021. height: math.unit(2, "meters")
  60022. },
  60023. {
  60024. name: "Home Size",
  60025. height: math.unit(30, "meters"),
  60026. default: true
  60027. },
  60028. {
  60029. name: "Macro",
  60030. height: math.unit(100, "meters")
  60031. },
  60032. {
  60033. name: "Macro+",
  60034. height: math.unit(350, "meters")
  60035. },
  60036. {
  60037. name: "Mega",
  60038. height: math.unit(40, "km")
  60039. },
  60040. {
  60041. name: "Giga",
  60042. height: math.unit(300, "km")
  60043. },
  60044. {
  60045. name: "Giga+",
  60046. height: math.unit(2000, "km")
  60047. },
  60048. {
  60049. name: "Terra",
  60050. height: math.unit(30000, "km")
  60051. },
  60052. ]
  60053. ))
  60054. characterMakers.push(() => makeCharacter(
  60055. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60056. {
  60057. front: {
  60058. height: math.unit(2.5, "meters"),
  60059. weight: math.unit(200, "kg"),
  60060. name: "Front",
  60061. image: {
  60062. source: "./media/characters/atlas-dragon/front.svg",
  60063. extra: 745/462,
  60064. bottom: 36/781
  60065. }
  60066. },
  60067. back: {
  60068. height: math.unit(2.5, "meters"),
  60069. weight: math.unit(200, "kg"),
  60070. name: "Back",
  60071. image: {
  60072. source: "./media/characters/atlas-dragon/back.svg",
  60073. extra: 848/822,
  60074. bottom: 57/905
  60075. }
  60076. },
  60077. frontLewd: {
  60078. height: math.unit(2.5, "meters"),
  60079. weight: math.unit(200, "kg"),
  60080. name: "Front (Lewd)",
  60081. image: {
  60082. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60083. extra: 745/462,
  60084. bottom: 36/781
  60085. }
  60086. },
  60087. backLewd: {
  60088. height: math.unit(2.5, "meters"),
  60089. weight: math.unit(200, "kg"),
  60090. name: "Back (Lewd)",
  60091. image: {
  60092. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60093. extra: 848/822,
  60094. bottom: 57/905
  60095. }
  60096. },
  60097. },
  60098. [
  60099. {
  60100. name: "Incognito",
  60101. height: math.unit(2.5, "meters")
  60102. },
  60103. {
  60104. name: "Small Macro",
  60105. height: math.unit(50, "meters")
  60106. },
  60107. {
  60108. name: "Macro",
  60109. height: math.unit(350, "meters")
  60110. },
  60111. {
  60112. name: "Mega",
  60113. height: math.unit(5.5, "kilometers")
  60114. },
  60115. {
  60116. name: "Mega+",
  60117. height: math.unit(50, "km")
  60118. },
  60119. {
  60120. name: "Giga",
  60121. height: math.unit(350, "km")
  60122. },
  60123. {
  60124. name: "Giga+",
  60125. height: math.unit(2000, "km")
  60126. },
  60127. {
  60128. name: "Giga++",
  60129. height: math.unit(6500, "km")
  60130. },
  60131. {
  60132. name: "Terra",
  60133. height: math.unit(30000, "km")
  60134. },
  60135. {
  60136. name: "Terra+",
  60137. height: math.unit(250000, "km")
  60138. },
  60139. {
  60140. name: "True Size",
  60141. height: math.unit(100, "multiverses"),
  60142. default: true
  60143. },
  60144. ]
  60145. ))
  60146. characterMakers.push(() => makeCharacter(
  60147. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60148. {
  60149. front: {
  60150. height: math.unit(1.8, "m"),
  60151. weight: math.unit(120, "kg"),
  60152. name: "Front",
  60153. image: {
  60154. source: "./media/characters/chey/front.svg",
  60155. extra: 1359/1270,
  60156. bottom: 18/1377
  60157. }
  60158. },
  60159. arm: {
  60160. height: math.unit(2.05, "feet"),
  60161. name: "Arm",
  60162. image: {
  60163. source: "./media/characters/chey/arm.svg"
  60164. }
  60165. },
  60166. head: {
  60167. height: math.unit(1.89, "feet"),
  60168. name: "Head",
  60169. image: {
  60170. source: "./media/characters/chey/head.svg"
  60171. }
  60172. },
  60173. },
  60174. [
  60175. {
  60176. name: "Original Size",
  60177. height: math.unit(5, "cm")
  60178. },
  60179. {
  60180. name: "Incognito Size",
  60181. height: math.unit(2.4, "m")
  60182. },
  60183. {
  60184. name: "Home Size",
  60185. height: math.unit(200, "meters"),
  60186. default: true
  60187. },
  60188. {
  60189. name: "Mega",
  60190. height: math.unit(2, "km")
  60191. },
  60192. {
  60193. name: "Giga (Preferred Size)",
  60194. height: math.unit(2000, "km")
  60195. },
  60196. {
  60197. name: "Giga+",
  60198. height: math.unit(6000, "km")
  60199. },
  60200. {
  60201. name: "Terra",
  60202. height: math.unit(17000, "km")
  60203. },
  60204. {
  60205. name: "Terra+",
  60206. height: math.unit(75000, "km")
  60207. },
  60208. {
  60209. name: "Terra++",
  60210. height: math.unit(225000, "km")
  60211. },
  60212. ]
  60213. ))
  60214. characterMakers.push(() => makeCharacter(
  60215. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60216. {
  60217. side: {
  60218. height: math.unit(7.8, "meters"),
  60219. name: "Side",
  60220. image: {
  60221. source: "./media/characters/ragnarok/side.svg",
  60222. extra: 725/621,
  60223. bottom: 72/797
  60224. }
  60225. },
  60226. },
  60227. [
  60228. {
  60229. name: "Normal",
  60230. height: math.unit(7.8, "meters"),
  60231. default: true
  60232. },
  60233. ]
  60234. ))
  60235. characterMakers.push(() => makeCharacter(
  60236. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60237. {
  60238. hyena_front: {
  60239. height: math.unit(2.1, "meters"),
  60240. weight: math.unit(110, "kg"),
  60241. name: "Front",
  60242. image: {
  60243. source: "./media/characters/nima/hyena-front.svg",
  60244. extra: 1904/1796,
  60245. bottom: 67/1971
  60246. },
  60247. form: "hyena",
  60248. },
  60249. hyena_back: {
  60250. height: math.unit(2.1, "meters"),
  60251. weight: math.unit(110, "kg"),
  60252. name: "Back",
  60253. image: {
  60254. source: "./media/characters/nima/hyena-back.svg",
  60255. extra: 1964/1884,
  60256. bottom: 35/1999
  60257. },
  60258. form: "hyena",
  60259. },
  60260. shark_front: {
  60261. height: math.unit(1.95, "meters"),
  60262. weight: math.unit(110, "kg"),
  60263. name: "Front",
  60264. image: {
  60265. source: "./media/characters/nima/shark-front.svg",
  60266. extra: 2238/2013,
  60267. bottom: 0/223
  60268. },
  60269. form: "shark",
  60270. },
  60271. paw: {
  60272. height: math.unit(1, "feet"),
  60273. name: "Paw",
  60274. image: {
  60275. source: "./media/characters/nima/paw.svg"
  60276. }
  60277. },
  60278. circlet: {
  60279. height: math.unit(0.3, "feet"),
  60280. name: "Circlet",
  60281. image: {
  60282. source: "./media/characters/nima/circlet.svg"
  60283. }
  60284. },
  60285. necklace: {
  60286. height: math.unit(1.2, "feet"),
  60287. name: "Necklace",
  60288. image: {
  60289. source: "./media/characters/nima/necklace.svg"
  60290. }
  60291. },
  60292. bracelet: {
  60293. height: math.unit(0.51, "feet"),
  60294. name: "Bracelet",
  60295. image: {
  60296. source: "./media/characters/nima/bracelet.svg"
  60297. }
  60298. },
  60299. armband: {
  60300. height: math.unit(1.3, "feet"),
  60301. name: "Armband",
  60302. image: {
  60303. source: "./media/characters/nima/armband.svg"
  60304. }
  60305. },
  60306. },
  60307. [
  60308. {
  60309. name: "Incognito",
  60310. height: math.unit(2.1, "meters"),
  60311. allForms: true
  60312. },
  60313. {
  60314. name: "Small Macro",
  60315. height: math.unit(50, "meters"),
  60316. allForms: true
  60317. },
  60318. {
  60319. name: "Macro",
  60320. height: math.unit(200, "meters"),
  60321. allForms: true
  60322. },
  60323. {
  60324. name: "Mega",
  60325. height: math.unit(2.5, "km"),
  60326. allForms: true
  60327. },
  60328. {
  60329. name: "Mega+",
  60330. height: math.unit(30, "km"),
  60331. allForms: true
  60332. },
  60333. {
  60334. name: "Giga (Home Size)",
  60335. height: math.unit(400, "km"),
  60336. allForms: true,
  60337. default: true
  60338. },
  60339. {
  60340. name: "Giga+",
  60341. height: math.unit(2500, "km"),
  60342. allForms: true
  60343. },
  60344. {
  60345. name: "Giga++",
  60346. height: math.unit(8000, "km"),
  60347. allForms: true
  60348. },
  60349. {
  60350. name: "Terra",
  60351. height: math.unit(20000, "km"),
  60352. allForms: true
  60353. },
  60354. {
  60355. name: "Terra+",
  60356. height: math.unit(70000, "km"),
  60357. allForms: true
  60358. },
  60359. {
  60360. name: "Terra++",
  60361. height: math.unit(600000, "km"),
  60362. allForms: true
  60363. },
  60364. {
  60365. name: "Galactic",
  60366. height: math.unit(40, "galaxies"),
  60367. allForms: true
  60368. },
  60369. {
  60370. name: "Universal",
  60371. height: math.unit(40, "universes"),
  60372. allForms: true
  60373. },
  60374. ],
  60375. {
  60376. "hyena": {
  60377. name: "Hyena",
  60378. default: true
  60379. },
  60380. "shark": {
  60381. name: "Shark",
  60382. },
  60383. }
  60384. ))
  60385. characterMakers.push(() => makeCharacter(
  60386. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60387. {
  60388. anthro_front: {
  60389. height: math.unit(1.5, "meters"),
  60390. name: "Front",
  60391. image: {
  60392. source: "./media/characters/adelaide/anthro-front.svg",
  60393. extra: 860/783,
  60394. bottom: 60/920
  60395. },
  60396. form: "anthro",
  60397. default: true
  60398. },
  60399. hand: {
  60400. height: math.unit(0.65, "feet"),
  60401. name: "Hand",
  60402. image: {
  60403. source: "./media/characters/adelaide/hand.svg"
  60404. },
  60405. form: "anthro"
  60406. },
  60407. foot: {
  60408. height: math.unit(1.38 * 259 / 314, "feet"),
  60409. name: "Foot",
  60410. image: {
  60411. source: "./media/characters/adelaide/foot.svg",
  60412. extra: 259/259,
  60413. bottom: 55/314
  60414. },
  60415. form: "anthro"
  60416. },
  60417. feather: {
  60418. height: math.unit(0.85, "feet"),
  60419. name: "Feather",
  60420. image: {
  60421. source: "./media/characters/adelaide/feather.svg"
  60422. },
  60423. form: "anthro"
  60424. },
  60425. feral_side: {
  60426. height: math.unit(1, "meters"),
  60427. name: "Side",
  60428. image: {
  60429. source: "./media/characters/adelaide/feral-side.svg",
  60430. extra: 550/467,
  60431. bottom: 37/587
  60432. },
  60433. form: "feral",
  60434. default: true
  60435. },
  60436. feral_hand: {
  60437. height: math.unit(0.58, "feet"),
  60438. name: "Hand",
  60439. image: {
  60440. source: "./media/characters/adelaide/hand.svg"
  60441. },
  60442. form: "feral"
  60443. },
  60444. feral_foot: {
  60445. height: math.unit(1.2 * 259 / 314, "feet"),
  60446. name: "Foot",
  60447. image: {
  60448. source: "./media/characters/adelaide/foot.svg",
  60449. extra: 259/259,
  60450. bottom: 55/314
  60451. },
  60452. form: "feral"
  60453. },
  60454. feral_feather: {
  60455. height: math.unit(0.63, "feet"),
  60456. name: "Feather",
  60457. image: {
  60458. source: "./media/characters/adelaide/feather.svg"
  60459. },
  60460. form: "feral"
  60461. },
  60462. },
  60463. [
  60464. {
  60465. name: "Normal",
  60466. height: math.unit(1.5, "meters"),
  60467. form: "anthro",
  60468. default: true
  60469. },
  60470. {
  60471. name: "Normal",
  60472. height: math.unit(1, "meters"),
  60473. form: "feral",
  60474. default: true
  60475. },
  60476. ],
  60477. {
  60478. "anthro": {
  60479. name: "Anthro",
  60480. default: true
  60481. },
  60482. "feral": {
  60483. name: "Feral",
  60484. },
  60485. }
  60486. ))
  60487. characterMakers.push(() => makeCharacter(
  60488. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60489. {
  60490. front: {
  60491. height: math.unit(2.5, "meters"),
  60492. name: "Front",
  60493. image: {
  60494. source: "./media/characters/goa/front.svg",
  60495. extra: 1109/1013,
  60496. bottom: 150/1259
  60497. }
  60498. },
  60499. },
  60500. [
  60501. {
  60502. name: "Normal",
  60503. height: math.unit(2.5, "meters"),
  60504. default: true
  60505. },
  60506. ]
  60507. ))
  60508. characterMakers.push(() => makeCharacter(
  60509. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60510. {
  60511. front: {
  60512. height: math.unit(2, "meters"),
  60513. weight: math.unit(100, "kg"),
  60514. name: "Front",
  60515. image: {
  60516. source: "./media/characters/kiki-weavile/front.svg",
  60517. extra: 357/332,
  60518. bottom: 60/417
  60519. }
  60520. },
  60521. },
  60522. [
  60523. {
  60524. name: "Normal",
  60525. height: math.unit(2, "meters"),
  60526. default: true
  60527. },
  60528. ]
  60529. ))
  60530. characterMakers.push(() => makeCharacter(
  60531. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60532. {
  60533. side: {
  60534. height: math.unit(1.6, "meters"),
  60535. name: "Side",
  60536. image: {
  60537. source: "./media/characters/liza/side.svg",
  60538. extra: 943/915,
  60539. bottom: 72/1015
  60540. }
  60541. },
  60542. },
  60543. [
  60544. {
  60545. name: "Normal",
  60546. height: math.unit(1.6, "meters"),
  60547. default: true
  60548. },
  60549. ]
  60550. ))
  60551. characterMakers.push(() => makeCharacter(
  60552. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60553. {
  60554. side: {
  60555. height: math.unit(2.5, "meters"),
  60556. preyCapacity: math.unit(1, "people"),
  60557. name: "Side",
  60558. image: {
  60559. source: "./media/characters/persephone-sweetbreath/side.svg",
  60560. extra: 796/700,
  60561. bottom: 44/840
  60562. }
  60563. },
  60564. sideVore: {
  60565. height: math.unit(2.5, "meters"),
  60566. preyCapacity: math.unit(1, "people"),
  60567. name: "Side (Full)",
  60568. image: {
  60569. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60570. extra: 796/700,
  60571. bottom: 44/840
  60572. }
  60573. },
  60574. },
  60575. [
  60576. {
  60577. name: "Normal",
  60578. height: math.unit(2.5, "meters"),
  60579. default: true
  60580. },
  60581. ]
  60582. ))
  60583. characterMakers.push(() => makeCharacter(
  60584. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60585. {
  60586. front: {
  60587. height: math.unit(32, "meters"),
  60588. name: "Front",
  60589. image: {
  60590. source: "./media/characters/pierce/front.svg",
  60591. extra: 1695/1475,
  60592. bottom: 185/1880
  60593. }
  60594. },
  60595. side: {
  60596. height: math.unit(32, "meters"),
  60597. name: "Side",
  60598. image: {
  60599. source: "./media/characters/pierce/side.svg",
  60600. extra: 974/859,
  60601. bottom: 43/1017
  60602. }
  60603. },
  60604. frontWingless: {
  60605. height: math.unit(32, "meters"),
  60606. name: "Front (Wingless)",
  60607. image: {
  60608. source: "./media/characters/pierce/front-wingless.svg",
  60609. extra: 1695/1475,
  60610. bottom: 185/1880
  60611. }
  60612. },
  60613. sideWingless: {
  60614. height: math.unit(32, "meters"),
  60615. name: "Side (Wingless)",
  60616. image: {
  60617. source: "./media/characters/pierce/side-wingless.svg",
  60618. extra: 974/859,
  60619. bottom: 43/1017
  60620. }
  60621. },
  60622. maw: {
  60623. height: math.unit(19.3, "meters"),
  60624. name: "Maw",
  60625. image: {
  60626. source: "./media/characters/pierce/maw.svg"
  60627. }
  60628. },
  60629. },
  60630. [
  60631. {
  60632. name: "Small",
  60633. height: math.unit(8.5, "meters")
  60634. },
  60635. {
  60636. name: "Normal",
  60637. height: math.unit(32, "meters"),
  60638. default: true
  60639. },
  60640. ]
  60641. ))
  60642. characterMakers.push(() => makeCharacter(
  60643. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60644. {
  60645. front: {
  60646. height: math.unit(2.3, "meters"),
  60647. weight: math.unit(165, "kg"),
  60648. name: "Front",
  60649. image: {
  60650. source: "./media/characters/shira/front.svg",
  60651. extra: 924/919,
  60652. bottom: 17/941
  60653. },
  60654. form: "cobra",
  60655. default: true
  60656. },
  60657. back: {
  60658. height: math.unit(2.3, "meters"),
  60659. weight: math.unit(165, "kg"),
  60660. name: "Back",
  60661. image: {
  60662. source: "./media/characters/shira/back.svg",
  60663. extra: 928/922,
  60664. bottom: 18/946
  60665. },
  60666. form: "cobra"
  60667. },
  60668. frontLewd: {
  60669. height: math.unit(2.3, "meters"),
  60670. weight: math.unit(165, "kg"),
  60671. name: "Front (Lewd)",
  60672. image: {
  60673. source: "./media/characters/shira/front-lewd.svg",
  60674. extra: 924/919,
  60675. bottom: 17/941
  60676. },
  60677. form: "cobra"
  60678. },
  60679. backLewd: {
  60680. height: math.unit(2.3, "meters"),
  60681. weight: math.unit(165, "kg"),
  60682. name: "Back (Lewd)",
  60683. image: {
  60684. source: "./media/characters/shira/back-lewd.svg",
  60685. extra: 928/922,
  60686. bottom: 18/946
  60687. },
  60688. form: "cobra"
  60689. },
  60690. maw: {
  60691. height: math.unit(1.14, "feet"),
  60692. name: "Maw",
  60693. image: {
  60694. source: "./media/characters/shira/maw.svg"
  60695. },
  60696. form: "cobra"
  60697. },
  60698. magma_front: {
  60699. height: math.unit(2.3, "meters"),
  60700. weight: math.unit(165, "kg"),
  60701. name: "Front",
  60702. image: {
  60703. source: "./media/characters/shira/magma-front.svg",
  60704. extra: 1870/1693,
  60705. bottom: 24/1894
  60706. },
  60707. form: "magma",
  60708. },
  60709. magma_back: {
  60710. height: math.unit(2.3, "meters"),
  60711. weight: math.unit(165, "kg"),
  60712. name: "Back",
  60713. image: {
  60714. source: "./media/characters/shira/magma-back.svg",
  60715. extra: 1918/1756,
  60716. bottom: 46/1964
  60717. },
  60718. form: "magma",
  60719. },
  60720. },
  60721. [
  60722. {
  60723. name: "Incognito",
  60724. height: math.unit(2.3, "meters"),
  60725. allForms: true
  60726. },
  60727. {
  60728. name: "Home Size",
  60729. height: math.unit(150, "meters"),
  60730. default: true,
  60731. allForms: true
  60732. },
  60733. {
  60734. name: "Macro",
  60735. height: math.unit(2, "km"),
  60736. allForms: true
  60737. },
  60738. {
  60739. name: "Mega",
  60740. height: math.unit(30, "km"),
  60741. allForms: true
  60742. },
  60743. {
  60744. name: "Giga",
  60745. height: math.unit(450, "km"),
  60746. allForms: true
  60747. },
  60748. {
  60749. name: "Giga+",
  60750. height: math.unit(3000, "km"),
  60751. allForms: true
  60752. },
  60753. {
  60754. name: "Giga++",
  60755. height: math.unit(6000, "km"),
  60756. allForms: true
  60757. },
  60758. {
  60759. name: "Terra",
  60760. height: math.unit(80000, "km"),
  60761. allForms: true
  60762. },
  60763. {
  60764. name: "Terra+",
  60765. height: math.unit(350000, "km"),
  60766. allForms: true
  60767. },
  60768. {
  60769. name: "Solar",
  60770. height: math.unit(1e6, "km"),
  60771. allForms: true
  60772. },
  60773. ],
  60774. {
  60775. "cobra": {
  60776. name: "Cobra",
  60777. default: true
  60778. },
  60779. "magma": {
  60780. name: "Magma Dragon",
  60781. },
  60782. }
  60783. ))
  60784. characterMakers.push(() => makeCharacter(
  60785. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60786. {
  60787. front: {
  60788. height: math.unit(2, "meters"),
  60789. weight: math.unit(160, "kg"),
  60790. name: "Front",
  60791. image: {
  60792. source: "./media/characters/daxerios/front.svg",
  60793. extra: 1334/1277,
  60794. bottom: 45/1379
  60795. }
  60796. },
  60797. frontLewd: {
  60798. height: math.unit(2, "meters"),
  60799. weight: math.unit(160, "kg"),
  60800. name: "Front (Lewd)",
  60801. image: {
  60802. source: "./media/characters/daxerios/front-lewd.svg",
  60803. extra: 1334/1277,
  60804. bottom: 45/1379
  60805. }
  60806. },
  60807. dick: {
  60808. height: math.unit(2.35, "feet"),
  60809. name: "Dick",
  60810. image: {
  60811. source: "./media/characters/daxerios/dick.svg"
  60812. }
  60813. },
  60814. },
  60815. [
  60816. {
  60817. name: "\"Small\"",
  60818. height: math.unit(5, "meters")
  60819. },
  60820. {
  60821. name: "Original Size",
  60822. height: math.unit(500, "meters"),
  60823. default: true
  60824. },
  60825. {
  60826. name: "Mega",
  60827. height: math.unit(2, "km")
  60828. },
  60829. {
  60830. name: "Mega+",
  60831. height: math.unit(35, "km")
  60832. },
  60833. {
  60834. name: "Giga",
  60835. height: math.unit(250, "km")
  60836. },
  60837. {
  60838. name: "Giga+",
  60839. height: math.unit(3000, "km")
  60840. },
  60841. {
  60842. name: "Terra",
  60843. height: math.unit(25000, "km")
  60844. },
  60845. {
  60846. name: "Terra+",
  60847. height: math.unit(300000, "km")
  60848. },
  60849. {
  60850. name: "Solar",
  60851. height: math.unit(1e6, "km")
  60852. },
  60853. ]
  60854. ))
  60855. characterMakers.push(() => makeCharacter(
  60856. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60857. {
  60858. front: {
  60859. height: math.unit(8 + 4/12, "feet"),
  60860. weight: math.unit(464, "lb"),
  60861. name: "Front",
  60862. image: {
  60863. source: "./media/characters/caveat/front.svg",
  60864. extra: 1861/1678,
  60865. bottom: 40/1901
  60866. }
  60867. },
  60868. },
  60869. [
  60870. {
  60871. name: "Normal",
  60872. height: math.unit(8 + 4/12, "feet"),
  60873. default: true
  60874. },
  60875. ]
  60876. ))
  60877. characterMakers.push(() => makeCharacter(
  60878. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60879. {
  60880. front: {
  60881. height: math.unit(12, "feet"),
  60882. weight: math.unit(1800, "lb"),
  60883. name: "Front",
  60884. image: {
  60885. source: "./media/characters/centbair/front.svg",
  60886. extra: 781/663,
  60887. bottom: 25/806
  60888. }
  60889. },
  60890. frontNsfw: {
  60891. height: math.unit(12, "feet"),
  60892. weight: math.unit(1800, "lb"),
  60893. name: "Front (NSFW)",
  60894. image: {
  60895. source: "./media/characters/centbair/front-nsfw.svg",
  60896. extra: 781/663,
  60897. bottom: 25/806
  60898. }
  60899. },
  60900. back: {
  60901. height: math.unit(12, "feet"),
  60902. weight: math.unit(1800, "lb"),
  60903. name: "Back",
  60904. image: {
  60905. source: "./media/characters/centbair/back.svg",
  60906. extra: 808/761,
  60907. bottom: 19/827
  60908. }
  60909. },
  60910. dick: {
  60911. height: math.unit(6.5, "feet"),
  60912. name: "Dick",
  60913. image: {
  60914. source: "./media/characters/centbair/dick.svg"
  60915. }
  60916. },
  60917. slit: {
  60918. height: math.unit(3.25, "feet"),
  60919. name: "Slit",
  60920. image: {
  60921. source: "./media/characters/centbair/slit.svg"
  60922. }
  60923. },
  60924. },
  60925. [
  60926. {
  60927. name: "Normal",
  60928. height: math.unit(12, "feet"),
  60929. default: true
  60930. },
  60931. ]
  60932. ))
  60933. characterMakers.push(() => makeCharacter(
  60934. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60935. {
  60936. front: {
  60937. height: math.unit(5 + 7/12, "feet"),
  60938. name: "Front",
  60939. image: {
  60940. source: "./media/characters/andy/front.svg",
  60941. extra: 634/588,
  60942. bottom: 36/670
  60943. },
  60944. extraAttributes: {
  60945. "pawLength": {
  60946. name: "Paw Length",
  60947. power: 1,
  60948. type: "length",
  60949. base: math.unit(1, "feet")
  60950. },
  60951. }
  60952. },
  60953. side: {
  60954. height: math.unit(5 + 7/12, "feet"),
  60955. name: "Side",
  60956. image: {
  60957. source: "./media/characters/andy/side.svg",
  60958. extra: 641/596,
  60959. bottom: 34/675
  60960. },
  60961. extraAttributes: {
  60962. "pawLength": {
  60963. name: "Paw Length",
  60964. power: 1,
  60965. type: "length",
  60966. base: math.unit(1, "feet")
  60967. },
  60968. }
  60969. },
  60970. back: {
  60971. height: math.unit(5 + 7/12, "feet"),
  60972. name: "Back",
  60973. image: {
  60974. source: "./media/characters/andy/back.svg",
  60975. extra: 618/583,
  60976. bottom: 39/657
  60977. },
  60978. extraAttributes: {
  60979. "pawLength": {
  60980. name: "Paw Length",
  60981. power: 1,
  60982. type: "length",
  60983. base: math.unit(1, "feet")
  60984. },
  60985. }
  60986. },
  60987. paw: {
  60988. height: math.unit(1.13, "feet"),
  60989. name: "Paw",
  60990. image: {
  60991. source: "./media/characters/andy/paw.svg"
  60992. }
  60993. },
  60994. },
  60995. [
  60996. {
  60997. name: "Micro",
  60998. height: math.unit(4, "inches")
  60999. },
  61000. {
  61001. name: "Normal",
  61002. height: math.unit(5 + 7/12, "feet"),
  61003. default: true
  61004. },
  61005. {
  61006. name: "Macro",
  61007. height: math.unit(390.42, "feet")
  61008. },
  61009. ]
  61010. ))
  61011. characterMakers.push(() => makeCharacter(
  61012. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61013. {
  61014. front: {
  61015. height: math.unit(7, "feet"),
  61016. weight: math.unit(250, "lb"),
  61017. name: "Front",
  61018. image: {
  61019. source: "./media/characters/vix-titan/front.svg",
  61020. extra: 460/428,
  61021. bottom: 15/475
  61022. },
  61023. extraAttributes: {
  61024. "pawWidth": {
  61025. name: "Paw Width",
  61026. power: 1,
  61027. type: "length",
  61028. base: math.unit(0.75, "feet")
  61029. },
  61030. }
  61031. },
  61032. },
  61033. [
  61034. {
  61035. name: "Normal",
  61036. height: math.unit(7, "feet"),
  61037. default: true
  61038. },
  61039. {
  61040. name: "Giant",
  61041. height: math.unit(1500, "feet")
  61042. },
  61043. {
  61044. name: "Mega",
  61045. height: math.unit(10, "miles")
  61046. },
  61047. {
  61048. name: "Giga",
  61049. height: math.unit(150, "miles")
  61050. },
  61051. {
  61052. name: "Tera",
  61053. height: math.unit(144000, "miles")
  61054. },
  61055. ]
  61056. ))
  61057. characterMakers.push(() => makeCharacter(
  61058. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61059. {
  61060. front: {
  61061. height: math.unit(6 + 2/12, "feet"),
  61062. name: "Front",
  61063. image: {
  61064. source: "./media/characters/reiku/front.svg",
  61065. extra: 1910/1757,
  61066. bottom: 103/2013
  61067. },
  61068. extraAttributes: {
  61069. "thighThickness": {
  61070. name: "Thigh Thickness",
  61071. power: 1,
  61072. type: "length",
  61073. base: math.unit(1.12, "feet")
  61074. },
  61075. "assThickness": {
  61076. name: "Ass Thickness",
  61077. power: 1,
  61078. type: "length",
  61079. base: math.unit(1.12*2, "feet")
  61080. },
  61081. }
  61082. },
  61083. side: {
  61084. height: math.unit(6 + 2/12, "feet"),
  61085. name: "Side",
  61086. image: {
  61087. source: "./media/characters/reiku/side.svg",
  61088. extra: 1846/1748,
  61089. bottom: 99/1945
  61090. },
  61091. extraAttributes: {
  61092. "thighThickness": {
  61093. name: "Thigh Thickness",
  61094. power: 1,
  61095. type: "length",
  61096. base: math.unit(1.12, "feet")
  61097. },
  61098. "assThickness": {
  61099. name: "Ass Thickness",
  61100. power: 1,
  61101. type: "length",
  61102. base: math.unit(1.12*2, "feet")
  61103. },
  61104. }
  61105. },
  61106. back: {
  61107. height: math.unit(6 + 2/12, "feet"),
  61108. name: "Back",
  61109. image: {
  61110. source: "./media/characters/reiku/back.svg",
  61111. extra: 1941/1786,
  61112. bottom: 34/1975
  61113. },
  61114. extraAttributes: {
  61115. "thighThickness": {
  61116. name: "Thigh Thickness",
  61117. power: 1,
  61118. type: "length",
  61119. base: math.unit(1.12, "feet")
  61120. },
  61121. "assThickness": {
  61122. name: "Ass Thickness",
  61123. power: 1,
  61124. type: "length",
  61125. base: math.unit(1.12*2, "feet")
  61126. },
  61127. }
  61128. },
  61129. head: {
  61130. height: math.unit(1.8, "feet"),
  61131. name: "Head",
  61132. image: {
  61133. source: "./media/characters/reiku/head.svg"
  61134. }
  61135. },
  61136. tailTop: {
  61137. height: math.unit(8.4, "feet"),
  61138. name: "Tail (Top)",
  61139. image: {
  61140. source: "./media/characters/reiku/tail-top.svg"
  61141. }
  61142. },
  61143. tailBottom: {
  61144. height: math.unit(8.4, "feet"),
  61145. name: "Tail (Bottom)",
  61146. image: {
  61147. source: "./media/characters/reiku/tail-bottom.svg"
  61148. }
  61149. },
  61150. foot: {
  61151. height: math.unit(2.6, "feet"),
  61152. name: "Foot",
  61153. image: {
  61154. source: "./media/characters/reiku/foot.svg"
  61155. }
  61156. },
  61157. footCurled: {
  61158. height: math.unit(2.3, "feet"),
  61159. name: "Foot (Curled)",
  61160. image: {
  61161. source: "./media/characters/reiku/foot-curled.svg"
  61162. }
  61163. },
  61164. footSide: {
  61165. height: math.unit(1.26, "feet"),
  61166. name: "Foot (Side)",
  61167. image: {
  61168. source: "./media/characters/reiku/foot-side.svg"
  61169. }
  61170. },
  61171. },
  61172. [
  61173. {
  61174. name: "Normal",
  61175. height: math.unit(6 + 2/12, "feet"),
  61176. default: true
  61177. },
  61178. ]
  61179. ))
  61180. characterMakers.push(() => makeCharacter(
  61181. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61182. {
  61183. front: {
  61184. height: math.unit(7, "feet"),
  61185. weight: math.unit(500, "kg"),
  61186. name: "Front",
  61187. image: {
  61188. source: "./media/characters/cialda/front.svg",
  61189. extra: 912/745,
  61190. bottom: 55/967
  61191. }
  61192. },
  61193. },
  61194. [
  61195. {
  61196. name: "Normal",
  61197. height: math.unit(7, "feet"),
  61198. default: true
  61199. },
  61200. ]
  61201. ))
  61202. characterMakers.push(() => makeCharacter(
  61203. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61204. {
  61205. side: {
  61206. height: math.unit(6, "feet"),
  61207. weight: math.unit(600, "lb"),
  61208. preyCapacity: math.unit(25, "liters"),
  61209. name: "Side",
  61210. image: {
  61211. source: "./media/characters/darkkin/side.svg",
  61212. extra: 1597/1447,
  61213. bottom: 101/1698
  61214. }
  61215. },
  61216. },
  61217. [
  61218. {
  61219. name: "Canon Height",
  61220. height: math.unit(568, "feet"),
  61221. default: true
  61222. },
  61223. ]
  61224. ))
  61225. characterMakers.push(() => makeCharacter(
  61226. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61227. {
  61228. front: {
  61229. height: math.unit(6, "feet"),
  61230. weight: math.unit(1500, "lb"),
  61231. preyCapacity: math.unit(3, "people"),
  61232. name: "Front",
  61233. image: {
  61234. source: "./media/characters/livnia/front.svg",
  61235. extra: 934/932,
  61236. bottom: 83/1017
  61237. }
  61238. },
  61239. back: {
  61240. height: math.unit(6, "feet"),
  61241. weight: math.unit(1500, "lb"),
  61242. preyCapacity: math.unit(3, "people"),
  61243. name: "Back",
  61244. image: {
  61245. source: "./media/characters/livnia/back.svg",
  61246. extra: 916/915,
  61247. bottom: 58/974
  61248. }
  61249. },
  61250. head: {
  61251. height: math.unit(1.53, "feet"),
  61252. name: "Head",
  61253. image: {
  61254. source: "./media/characters/livnia/head.svg"
  61255. }
  61256. },
  61257. maw: {
  61258. height: math.unit(0.78, "feet"),
  61259. name: "Maw",
  61260. image: {
  61261. source: "./media/characters/livnia/maw.svg"
  61262. }
  61263. },
  61264. genitals: {
  61265. height: math.unit(0.35, "feet"),
  61266. name: "Genitals",
  61267. image: {
  61268. source: "./media/characters/livnia/genitals.svg"
  61269. }
  61270. },
  61271. },
  61272. [
  61273. {
  61274. name: "Normal",
  61275. height: math.unit(1000, "feet"),
  61276. default: true
  61277. },
  61278. ]
  61279. ))
  61280. characterMakers.push(() => makeCharacter(
  61281. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61282. {
  61283. front: {
  61284. height: math.unit(4, "feet"),
  61285. weight: math.unit(73, "lb"),
  61286. name: "Front",
  61287. image: {
  61288. source: "./media/characters/hayaku/front.svg",
  61289. extra: 1011/888,
  61290. bottom: 33/1044
  61291. }
  61292. },
  61293. back: {
  61294. height: math.unit(4, "feet"),
  61295. weight: math.unit(73, "lb"),
  61296. name: "Back",
  61297. image: {
  61298. source: "./media/characters/hayaku/back.svg",
  61299. extra: 1040/930,
  61300. bottom: 20/1060
  61301. }
  61302. },
  61303. },
  61304. [
  61305. {
  61306. name: "Normal",
  61307. height: math.unit(4, "feet"),
  61308. default: true
  61309. },
  61310. ]
  61311. ))
  61312. characterMakers.push(() => makeCharacter(
  61313. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61314. {
  61315. front: {
  61316. height: math.unit(6 + 7/12, "feet"),
  61317. weight: math.unit(300, "lb"),
  61318. name: "Front",
  61319. image: {
  61320. source: "./media/characters/athena-bryzant/front.svg",
  61321. extra: 870/835,
  61322. bottom: 33/903
  61323. }
  61324. },
  61325. back: {
  61326. height: math.unit(6 + 7/12, "feet"),
  61327. weight: math.unit(300, "lb"),
  61328. name: "Back",
  61329. image: {
  61330. source: "./media/characters/athena-bryzant/back.svg",
  61331. extra: 858/823,
  61332. bottom: 30/888
  61333. }
  61334. },
  61335. head: {
  61336. height: math.unit(2.38, "feet"),
  61337. name: "Head",
  61338. image: {
  61339. source: "./media/characters/athena-bryzant/head.svg"
  61340. }
  61341. },
  61342. wings: {
  61343. height: math.unit(2.85, "feet"),
  61344. name: "Wings",
  61345. image: {
  61346. source: "./media/characters/athena-bryzant/wings.svg"
  61347. }
  61348. },
  61349. },
  61350. [
  61351. {
  61352. name: "Normal",
  61353. height: math.unit(6 + 7/12, "feet"),
  61354. default: true
  61355. },
  61356. {
  61357. name: "Big",
  61358. height: math.unit(8, "feet")
  61359. },
  61360. {
  61361. name: "Very Big",
  61362. height: math.unit(11, "feet")
  61363. },
  61364. ]
  61365. ))
  61366. characterMakers.push(() => makeCharacter(
  61367. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61368. {
  61369. side: {
  61370. height: math.unit(3, "meters"),
  61371. weight: math.unit(7500, "kg"),
  61372. preyCapacity: math.unit(1e12, "people"),
  61373. name: "Side",
  61374. image: {
  61375. source: "./media/characters/zel-kesh/side.svg",
  61376. extra: 910/407,
  61377. bottom: 147/1057
  61378. }
  61379. },
  61380. },
  61381. [
  61382. {
  61383. name: "Normal",
  61384. height: math.unit(3, "meters"),
  61385. default: true
  61386. },
  61387. ]
  61388. ))
  61389. characterMakers.push(() => makeCharacter(
  61390. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61391. {
  61392. front: {
  61393. height: math.unit(2, "meters"),
  61394. weight: math.unit(95, "kg"),
  61395. name: "Front",
  61396. image: {
  61397. source: "./media/characters/kane-fox/front.svg",
  61398. extra: 945/888,
  61399. bottom: 27/972
  61400. }
  61401. },
  61402. back: {
  61403. height: math.unit(2, "meters"),
  61404. weight: math.unit(95, "kg"),
  61405. name: "Back",
  61406. image: {
  61407. source: "./media/characters/kane-fox/back.svg",
  61408. extra: 959/914,
  61409. bottom: 15/974
  61410. }
  61411. },
  61412. frontLewd: {
  61413. height: math.unit(2, "meters"),
  61414. weight: math.unit(95, "kg"),
  61415. name: "Front (Lewd)",
  61416. image: {
  61417. source: "./media/characters/kane-fox/front-lewd.svg",
  61418. extra: 945/888,
  61419. bottom: 27/972
  61420. }
  61421. },
  61422. },
  61423. [
  61424. {
  61425. name: "Home Size",
  61426. height: math.unit(2, "meters"),
  61427. default: true
  61428. },
  61429. {
  61430. name: "Macro",
  61431. height: math.unit(200, "meters")
  61432. },
  61433. {
  61434. name: "Small Mega",
  61435. height: math.unit(3, "km")
  61436. },
  61437. {
  61438. name: "Mega",
  61439. height: math.unit(50, "km")
  61440. },
  61441. {
  61442. name: "Giga",
  61443. height: math.unit(200, "km")
  61444. },
  61445. {
  61446. name: "Giga+",
  61447. height: math.unit(2500, "km")
  61448. },
  61449. {
  61450. name: "Terra",
  61451. height: math.unit(70000, "km")
  61452. },
  61453. {
  61454. name: "Terra+",
  61455. height: math.unit(150000, "km")
  61456. },
  61457. {
  61458. name: "Terra++",
  61459. height: math.unit(400000, "km")
  61460. },
  61461. ]
  61462. ))
  61463. characterMakers.push(() => makeCharacter(
  61464. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61465. {
  61466. otter_front: {
  61467. height: math.unit(1.8, "meters"),
  61468. weight: math.unit(90, "kg"),
  61469. name: "Front",
  61470. image: {
  61471. source: "./media/characters/ayranus/otter-front.svg",
  61472. extra: 468/452,
  61473. bottom: 43/511
  61474. },
  61475. form: "otter",
  61476. },
  61477. otter_frontLewd: {
  61478. height: math.unit(1.8, "meters"),
  61479. weight: math.unit(90, "kg"),
  61480. name: "Front (Lewd)",
  61481. image: {
  61482. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61483. extra: 468/452,
  61484. bottom: 43/511
  61485. },
  61486. form: "otter",
  61487. },
  61488. lionbat_front: {
  61489. height: math.unit(1.8, "meters"),
  61490. weight: math.unit(90, "kg"),
  61491. name: "Front (Lewd)",
  61492. image: {
  61493. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61494. extra: 797/740,
  61495. bottom: 78/875
  61496. },
  61497. form: "lionbat",
  61498. },
  61499. paw: {
  61500. height: math.unit(1.5, "feet"),
  61501. name: "Paw",
  61502. image: {
  61503. source: "./media/characters/ayranus/paw.svg"
  61504. },
  61505. },
  61506. },
  61507. [
  61508. {
  61509. name: "Incognito",
  61510. height: math.unit(1.8, "meters"),
  61511. allForms: true
  61512. },
  61513. {
  61514. name: "Macro",
  61515. height: math.unit(60, "meters"),
  61516. allForms: true
  61517. },
  61518. {
  61519. name: "Macro+",
  61520. height: math.unit(200, "meters"),
  61521. allForms: true
  61522. },
  61523. {
  61524. name: "Mega",
  61525. height: math.unit(35, "km"),
  61526. allForms: true
  61527. },
  61528. {
  61529. name: "Giga",
  61530. height: math.unit(220, "km"),
  61531. allForms: true
  61532. },
  61533. {
  61534. name: "Giga+",
  61535. height: math.unit(1500, "km"),
  61536. allForms: true
  61537. },
  61538. {
  61539. name: "Terra",
  61540. height: math.unit(13000, "km"),
  61541. allForms: true
  61542. },
  61543. {
  61544. name: "Terra+",
  61545. height: math.unit(500000, "km"),
  61546. allForms: true
  61547. },
  61548. {
  61549. name: "Galactic",
  61550. height: math.unit(486080, "parsecs"),
  61551. default: true,
  61552. allForms: true
  61553. },
  61554. ],
  61555. {
  61556. "otter": {
  61557. name: "Otter",
  61558. default: true
  61559. },
  61560. "lionbat": {
  61561. name: "Lionbat",
  61562. },
  61563. }
  61564. ))
  61565. characterMakers.push(() => makeCharacter(
  61566. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61567. {
  61568. front: {
  61569. height: math.unit(7 + 4/12, "feet"),
  61570. weight: math.unit(400, "lb"),
  61571. name: "Front",
  61572. image: {
  61573. source: "./media/characters/proxy/front.svg",
  61574. extra: 1605/1542,
  61575. bottom: 55/1660
  61576. }
  61577. },
  61578. side: {
  61579. height: math.unit(7 + 4/12, "feet"),
  61580. weight: math.unit(400, "lb"),
  61581. name: "Side",
  61582. image: {
  61583. source: "./media/characters/proxy/side.svg",
  61584. extra: 794/759,
  61585. bottom: 6/800
  61586. }
  61587. },
  61588. hand: {
  61589. height: math.unit(1.54, "feet"),
  61590. name: "Hand",
  61591. image: {
  61592. source: "./media/characters/proxy/hand.svg"
  61593. }
  61594. },
  61595. paw: {
  61596. height: math.unit(1.53, "feet"),
  61597. name: "Paw",
  61598. image: {
  61599. source: "./media/characters/proxy/paw.svg"
  61600. }
  61601. },
  61602. maw: {
  61603. height: math.unit(1.9, "feet"),
  61604. name: "Maw",
  61605. image: {
  61606. source: "./media/characters/proxy/maw.svg"
  61607. }
  61608. },
  61609. },
  61610. [
  61611. {
  61612. name: "Normal",
  61613. height: math.unit(7 + 4/12, "feet"),
  61614. default: true
  61615. },
  61616. ]
  61617. ))
  61618. characterMakers.push(() => makeCharacter(
  61619. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61620. {
  61621. front: {
  61622. height: math.unit(4, "meters"),
  61623. name: "Front",
  61624. image: {
  61625. source: "./media/characters/crocozilla/front.svg",
  61626. extra: 1790/1742,
  61627. bottom: 78/1868
  61628. }
  61629. },
  61630. },
  61631. [
  61632. {
  61633. name: "Normal",
  61634. height: math.unit(4, "meters"),
  61635. default: true
  61636. },
  61637. ]
  61638. ))
  61639. characterMakers.push(() => makeCharacter(
  61640. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61641. {
  61642. front: {
  61643. height: math.unit(1.8, "meters"),
  61644. weight: math.unit(120, "kg"),
  61645. name: "Front",
  61646. image: {
  61647. source: "./media/characters/kurz/front.svg",
  61648. extra: 1960/1824,
  61649. bottom: 41/2001
  61650. }
  61651. },
  61652. back: {
  61653. height: math.unit(1.8, "meters"),
  61654. weight: math.unit(120, "kg"),
  61655. name: "Back",
  61656. image: {
  61657. source: "./media/characters/kurz/back.svg",
  61658. extra: 1906/1787,
  61659. bottom: 60/1966
  61660. }
  61661. },
  61662. frontLewd: {
  61663. height: math.unit(1.8, "meters"),
  61664. weight: math.unit(120, "kg"),
  61665. name: "Front (Lewd)",
  61666. image: {
  61667. source: "./media/characters/kurz/front-lewd.svg",
  61668. extra: 1960/1824,
  61669. bottom: 41/2001
  61670. }
  61671. },
  61672. maw: {
  61673. height: math.unit(0.69, "meters"),
  61674. name: "Maw",
  61675. image: {
  61676. source: "./media/characters/kurz/maw.svg"
  61677. }
  61678. },
  61679. },
  61680. [
  61681. {
  61682. name: "Original Size",
  61683. height: math.unit(1.8, "meters")
  61684. },
  61685. {
  61686. name: "Incognito Size",
  61687. height: math.unit(2.4, "meters"),
  61688. default: true
  61689. },
  61690. {
  61691. name: "Macro",
  61692. height: math.unit(30, "meters")
  61693. },
  61694. {
  61695. name: "Macro+",
  61696. height: math.unit(250, "meters")
  61697. },
  61698. {
  61699. name: "Mega",
  61700. height: math.unit(2, "km")
  61701. },
  61702. {
  61703. name: "Mega+",
  61704. height: math.unit(35, "km")
  61705. },
  61706. {
  61707. name: "Mega++",
  61708. height: math.unit(75, "km")
  61709. },
  61710. {
  61711. name: "Giga",
  61712. height: math.unit(250, "km")
  61713. },
  61714. {
  61715. name: "Terra",
  61716. height: math.unit(15000, "km")
  61717. },
  61718. {
  61719. name: "Terra+",
  61720. height: math.unit(2250000, "km")
  61721. },
  61722. ]
  61723. ))
  61724. characterMakers.push(() => makeCharacter(
  61725. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61726. {
  61727. front: {
  61728. height: math.unit(16 + 3/12, "feet"),
  61729. weight: math.unit(3575, "lb"),
  61730. name: "Front",
  61731. image: {
  61732. source: "./media/characters/nikita/front.svg",
  61733. extra: 1064/955,
  61734. bottom: 47/1111
  61735. }
  61736. },
  61737. },
  61738. [
  61739. {
  61740. name: "Normal",
  61741. height: math.unit(16 + 3/12, "feet"),
  61742. default: true
  61743. },
  61744. {
  61745. name: "Big",
  61746. height: math.unit(21, "feet")
  61747. },
  61748. {
  61749. name: "Biggest",
  61750. height: math.unit(50, "feet")
  61751. },
  61752. ]
  61753. ))
  61754. characterMakers.push(() => makeCharacter(
  61755. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61756. {
  61757. front: {
  61758. height: math.unit(1.92, "m"),
  61759. weight: math.unit(76, "kg"),
  61760. name: "Front",
  61761. image: {
  61762. source: "./media/characters/kyara/front.svg",
  61763. extra: 1550/1438,
  61764. bottom: 139/1689
  61765. }
  61766. },
  61767. back: {
  61768. height: math.unit(1.92, "m"),
  61769. weight: math.unit(76, "kg"),
  61770. name: "Back",
  61771. image: {
  61772. source: "./media/characters/kyara/back.svg",
  61773. extra: 1523/1427,
  61774. bottom: 83/1606
  61775. }
  61776. },
  61777. head: {
  61778. height: math.unit(1.22, "feet"),
  61779. name: "Head",
  61780. image: {
  61781. source: "./media/characters/kyara/head.svg"
  61782. }
  61783. },
  61784. maw: {
  61785. height: math.unit(0.73, "feet"),
  61786. name: "Maw",
  61787. image: {
  61788. source: "./media/characters/kyara/maw.svg"
  61789. }
  61790. },
  61791. paws: {
  61792. height: math.unit(0.95, "feet"),
  61793. name: "Paws",
  61794. image: {
  61795. source: "./media/characters/kyara/paws.svg"
  61796. }
  61797. },
  61798. },
  61799. [
  61800. {
  61801. name: "Normal",
  61802. height: math.unit(1.92, "meters"),
  61803. default: true
  61804. },
  61805. {
  61806. name: "Mini Macro",
  61807. height: math.unit(192, "meters")
  61808. },
  61809. {
  61810. name: "Macro",
  61811. height: math.unit(480, "meters")
  61812. },
  61813. {
  61814. name: "Mega Macro",
  61815. height: math.unit(1440, "meters")
  61816. },
  61817. ]
  61818. ))
  61819. characterMakers.push(() => makeCharacter(
  61820. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61821. {
  61822. front: {
  61823. height: math.unit(6, "feet"),
  61824. weight: math.unit(160, "lbs"),
  61825. preyCapacity: math.unit(0.05, "people"),
  61826. name: "Front",
  61827. image: {
  61828. source: "./media/characters/layla-amari/front.svg",
  61829. extra: 1922/1723,
  61830. bottom: 90/2012
  61831. }
  61832. },
  61833. back: {
  61834. height: math.unit(6, "feet"),
  61835. weight: math.unit(160, "lbs"),
  61836. preyCapacity: math.unit(0.05, "people"),
  61837. name: "Back",
  61838. image: {
  61839. source: "./media/characters/layla-amari/back.svg",
  61840. extra: 1917/1718,
  61841. bottom: 50/1967
  61842. }
  61843. },
  61844. frontDressed: {
  61845. height: math.unit(6, "feet"),
  61846. weight: math.unit(160, "lbs"),
  61847. preyCapacity: math.unit(0.05, "people"),
  61848. name: "Front (Dressed)",
  61849. image: {
  61850. source: "./media/characters/layla-amari/front-dressed.svg",
  61851. extra: 1922/1723,
  61852. bottom: 90/2012
  61853. }
  61854. },
  61855. face: {
  61856. height: math.unit(0.93, "feet"),
  61857. name: "Face",
  61858. image: {
  61859. source: "./media/characters/layla-amari/face.svg"
  61860. }
  61861. },
  61862. hand: {
  61863. height: math.unit(0.66 , "feet"),
  61864. name: "Hand",
  61865. image: {
  61866. source: "./media/characters/layla-amari/hand.svg"
  61867. }
  61868. },
  61869. foot: {
  61870. height: math.unit(1, "feet"),
  61871. name: "Foot",
  61872. image: {
  61873. source: "./media/characters/layla-amari/foot.svg"
  61874. }
  61875. },
  61876. necklace: {
  61877. height: math.unit(0.32, "feet"),
  61878. name: "Necklace",
  61879. image: {
  61880. source: "./media/characters/layla-amari/necklace.svg"
  61881. }
  61882. },
  61883. nipple: {
  61884. height: math.unit(0.2, "feet"),
  61885. name: "Nipple",
  61886. image: {
  61887. source: "./media/characters/layla-amari/nipple.svg"
  61888. }
  61889. },
  61890. slit: {
  61891. height: math.unit(0.26, "feet"),
  61892. name: "Slit",
  61893. image: {
  61894. source: "./media/characters/layla-amari/slit.svg"
  61895. }
  61896. },
  61897. },
  61898. [
  61899. {
  61900. name: "Natural",
  61901. height: math.unit(825, "feet"),
  61902. default: true
  61903. },
  61904. {
  61905. name: "Enhanced",
  61906. height: math.unit(8250, "feet")
  61907. },
  61908. {
  61909. name: "Apparent Size",
  61910. height: math.unit(9.04363e+8, "meters")
  61911. },
  61912. ]
  61913. ))
  61914. characterMakers.push(() => makeCharacter(
  61915. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61916. {
  61917. front: {
  61918. height: math.unit(1.3, "meters"),
  61919. name: "Front",
  61920. image: {
  61921. source: "./media/characters/percy/front.svg",
  61922. extra: 1444/1289,
  61923. bottom: 54/1498
  61924. }
  61925. },
  61926. },
  61927. [
  61928. {
  61929. name: "Normal",
  61930. height: math.unit(1.3, "meters"),
  61931. default: true
  61932. },
  61933. ]
  61934. ))
  61935. characterMakers.push(() => makeCharacter(
  61936. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61937. {
  61938. side: {
  61939. height: math.unit(10, "meters"),
  61940. name: "Side",
  61941. image: {
  61942. source: "./media/characters/grev/side.svg",
  61943. extra: 653/266,
  61944. bottom: 77/730
  61945. }
  61946. },
  61947. head: {
  61948. height: math.unit(16.2, "m"),
  61949. name: "Head",
  61950. image: {
  61951. source: "./media/characters/grev/head.svg"
  61952. }
  61953. },
  61954. dick: {
  61955. height: math.unit(2.8135932034, "m"),
  61956. name: "Dick",
  61957. image: {
  61958. source: "./media/characters/grev/dick.svg"
  61959. }
  61960. },
  61961. },
  61962. [
  61963. {
  61964. name: "Friend-Sized",
  61965. height: math.unit(80, "cm")
  61966. },
  61967. {
  61968. name: "Normal",
  61969. height: math.unit(10, "meters"),
  61970. default: true
  61971. },
  61972. {
  61973. name: "Macro",
  61974. height: math.unit(200, "meters")
  61975. },
  61976. ]
  61977. ))
  61978. characterMakers.push(() => makeCharacter(
  61979. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61980. {
  61981. front: {
  61982. height: math.unit(19.75, "feet"),
  61983. weight: math.unit(20000, "lb"),
  61984. name: "Front",
  61985. image: {
  61986. source: "./media/characters/azuuca/front.svg",
  61987. extra: 1593/1511,
  61988. bottom: 55/1648
  61989. }
  61990. },
  61991. },
  61992. [
  61993. {
  61994. name: "Normal",
  61995. height: math.unit(19.75, "feet"),
  61996. default: true
  61997. },
  61998. ]
  61999. ))
  62000. characterMakers.push(() => makeCharacter(
  62001. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62002. {
  62003. front: {
  62004. height: math.unit(15, "feet"),
  62005. weight: math.unit(1500, "lb"),
  62006. name: "Front",
  62007. image: {
  62008. source: "./media/characters/valuria/front.svg",
  62009. extra: 1588/1486,
  62010. bottom: 31/1619
  62011. }
  62012. },
  62013. },
  62014. [
  62015. {
  62016. name: "Normal",
  62017. height: math.unit(15, "feet"),
  62018. default: true
  62019. },
  62020. {
  62021. name: "Small",
  62022. height: math.unit(500, "feet")
  62023. },
  62024. {
  62025. name: "Macro",
  62026. height: math.unit(4000, "feet")
  62027. },
  62028. {
  62029. name: "Mega Macro",
  62030. height: math.unit(2000, "miles")
  62031. },
  62032. {
  62033. name: "Giga Macro",
  62034. height: math.unit(3e6, "miles")
  62035. },
  62036. ]
  62037. ))
  62038. characterMakers.push(() => makeCharacter(
  62039. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62040. {
  62041. front: {
  62042. height: math.unit(3500, "solarradii"),
  62043. name: "Front",
  62044. image: {
  62045. source: "./media/characters/terigaia/front.svg",
  62046. extra: 1531/1451,
  62047. bottom: 98/1629
  62048. }
  62049. },
  62050. },
  62051. [
  62052. {
  62053. name: "Normal",
  62054. height: math.unit(3500, "solarradii"),
  62055. default: true
  62056. },
  62057. ]
  62058. ))
  62059. characterMakers.push(() => makeCharacter(
  62060. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62061. {
  62062. front: {
  62063. height: math.unit(9.34, "feet"),
  62064. weight: math.unit(600, "lb"),
  62065. name: "Front",
  62066. image: {
  62067. source: "./media/characters/blair-blaziken/front.svg",
  62068. extra: 1557/1462,
  62069. bottom: 55/1612
  62070. }
  62071. },
  62072. },
  62073. [
  62074. {
  62075. name: "Normal",
  62076. height: math.unit(9.34, "feet"),
  62077. default: true
  62078. },
  62079. ]
  62080. ))
  62081. characterMakers.push(() => makeCharacter(
  62082. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62083. {
  62084. pistrogre_front: {
  62085. height: math.unit(10, "feet"),
  62086. weight: math.unit(10, "tons"),
  62087. name: "Front",
  62088. image: {
  62089. source: "./media/characters/braxia/pistrogre-front.svg",
  62090. extra: 1531/1334,
  62091. bottom: 114/1645
  62092. },
  62093. form: "pistrogre",
  62094. default: true
  62095. },
  62096. human_front: {
  62097. height: math.unit(10, "feet"),
  62098. weight: math.unit(10, "tons"),
  62099. name: "Front",
  62100. image: {
  62101. source: "./media/characters/braxia/human-front.svg",
  62102. extra: 1574/1501,
  62103. bottom: 37/1611
  62104. },
  62105. form: "human",
  62106. default: true
  62107. },
  62108. },
  62109. [
  62110. {
  62111. name: "Normal",
  62112. height: math.unit(10, "feet"),
  62113. default: true,
  62114. allForms: true
  62115. },
  62116. {
  62117. name: "Macro",
  62118. height: math.unit(1000, "feet"),
  62119. allForms: true
  62120. },
  62121. {
  62122. name: "Mega Macro",
  62123. height: math.unit(100, "miles"),
  62124. allForms: true
  62125. },
  62126. {
  62127. name: "Cosmic",
  62128. height: math.unit(1000000, "lightyears"),
  62129. allForms: true
  62130. },
  62131. {
  62132. name: "ϐѮԆԬӁꭍϞԢ",
  62133. height: math.unit(1000, "multiverses"),
  62134. allForms: true
  62135. },
  62136. ],
  62137. {
  62138. "pistrogre": {
  62139. name: "Pistrogre",
  62140. default: true
  62141. },
  62142. "human": {
  62143. name: "Human",
  62144. },
  62145. }
  62146. ))
  62147. characterMakers.push(() => makeCharacter(
  62148. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62149. {
  62150. front: {
  62151. height: math.unit(6 + 1/12, "feet"),
  62152. weight: math.unit(280, "lb"),
  62153. name: "Front",
  62154. image: {
  62155. source: "./media/characters/kiriga-yato/front.svg",
  62156. extra: 445/394,
  62157. bottom: 11/456
  62158. }
  62159. },
  62160. },
  62161. [
  62162. {
  62163. name: "Descended",
  62164. height: math.unit(3, "feet")
  62165. },
  62166. {
  62167. name: "Average",
  62168. height: math.unit(6 + 1/12, "feet"),
  62169. default: true
  62170. },
  62171. {
  62172. name: "Ascended",
  62173. height: math.unit(9 + 2/12, "feet")
  62174. },
  62175. ]
  62176. ))
  62177. characterMakers.push(() => makeCharacter(
  62178. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62179. {
  62180. front: {
  62181. height: math.unit(6, "feet"),
  62182. weight: math.unit(150, "lb"),
  62183. name: "Front",
  62184. image: {
  62185. source: "./media/characters/kylie/front.svg",
  62186. extra: 1114/1046,
  62187. bottom: 65/1179
  62188. },
  62189. extraAttributes: {
  62190. "hoofSize": {
  62191. name: "Hoof Size",
  62192. power: 2,
  62193. type: "area",
  62194. base: math.unit(0.034, "m^2")
  62195. },
  62196. "footSize": {
  62197. name: "Foot Size",
  62198. power: 2,
  62199. type: "area",
  62200. base: math.unit(0.75, "m^2")
  62201. },
  62202. }
  62203. },
  62204. side: {
  62205. height: math.unit(6, "feet"),
  62206. weight: math.unit(150, "lb"),
  62207. name: "Side",
  62208. image: {
  62209. source: "./media/characters/kylie/side.svg",
  62210. extra: 1178/1110,
  62211. bottom: 21/1199
  62212. },
  62213. extraAttributes: {
  62214. "hoofSize": {
  62215. name: "Hoof Size",
  62216. power: 2,
  62217. type: "area",
  62218. base: math.unit(0.034, "m^2")
  62219. },
  62220. "footSize": {
  62221. name: "Foot Size",
  62222. power: 2,
  62223. type: "area",
  62224. base: math.unit(0.75, "m^2")
  62225. },
  62226. }
  62227. },
  62228. back: {
  62229. height: math.unit(6, "feet"),
  62230. weight: math.unit(150, "lb"),
  62231. name: "Back",
  62232. image: {
  62233. source: "./media/characters/kylie/back.svg",
  62234. extra: 1115/1047,
  62235. bottom: 66/1181
  62236. },
  62237. extraAttributes: {
  62238. "hoofSize": {
  62239. name: "Hoof Size",
  62240. power: 2,
  62241. type: "area",
  62242. base: math.unit(0.034, "m^2")
  62243. },
  62244. "footSize": {
  62245. name: "Foot Size",
  62246. power: 2,
  62247. type: "area",
  62248. base: math.unit(0.75, "m^2")
  62249. },
  62250. }
  62251. },
  62252. head: {
  62253. height: math.unit(1.85, "feet"),
  62254. name: "Head",
  62255. image: {
  62256. source: "./media/characters/kylie/head.svg"
  62257. }
  62258. },
  62259. },
  62260. [
  62261. {
  62262. name: "Normal",
  62263. height: math.unit(90, "meters"),
  62264. default: true
  62265. },
  62266. ]
  62267. ))
  62268. characterMakers.push(() => makeCharacter(
  62269. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62270. {
  62271. front: {
  62272. height: math.unit(245, "feet"),
  62273. weight: math.unit(400000, "lb"),
  62274. name: "Front",
  62275. image: {
  62276. source: "./media/characters/sabado/front.svg",
  62277. extra: 1309/1164,
  62278. bottom: 29/1338
  62279. }
  62280. },
  62281. },
  62282. [
  62283. {
  62284. name: "Normal",
  62285. height: math.unit(245, "feet"),
  62286. default: true
  62287. },
  62288. ]
  62289. ))
  62290. characterMakers.push(() => makeCharacter(
  62291. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62292. {
  62293. shark_front: {
  62294. height: math.unit(2, "meters"),
  62295. weight: math.unit(200, "kg"),
  62296. name: "Front",
  62297. image: {
  62298. source: "./media/characters/zechal/shark-front.svg",
  62299. extra: 969/925,
  62300. bottom: 74/1043
  62301. },
  62302. form: "shark",
  62303. },
  62304. shark_back: {
  62305. height: math.unit(2, "meters"),
  62306. weight: math.unit(200, "kg"),
  62307. name: "Back",
  62308. image: {
  62309. source: "./media/characters/zechal/shark-back.svg",
  62310. extra: 994/949,
  62311. bottom: 176/1170
  62312. },
  62313. form: "shark",
  62314. },
  62315. shark_frontLewd: {
  62316. height: math.unit(2, "meters"),
  62317. weight: math.unit(200, "kg"),
  62318. name: "Front (Lewd)",
  62319. image: {
  62320. source: "./media/characters/zechal/shark-front-lewd.svg",
  62321. extra: 969/925,
  62322. bottom: 74/1043
  62323. },
  62324. form: "shark",
  62325. },
  62326. shark_side: {
  62327. height: math.unit(1.56, "meters"),
  62328. weight: math.unit(200, "kg"),
  62329. name: "Side",
  62330. image: {
  62331. source: "./media/characters/zechal/shark-side.svg"
  62332. },
  62333. form: "shark",
  62334. },
  62335. dragon_front: {
  62336. height: math.unit(2, "meters"),
  62337. weight: math.unit(200, "kg"),
  62338. name: "Front",
  62339. image: {
  62340. source: "./media/characters/zechal/dragon-front.svg",
  62341. extra: 1041/925,
  62342. bottom: 74/1115
  62343. },
  62344. form: "dragon",
  62345. },
  62346. dragon_back: {
  62347. height: math.unit(2, "meters"),
  62348. weight: math.unit(200, "kg"),
  62349. name: "Back",
  62350. image: {
  62351. source: "./media/characters/zechal/dragon-back.svg",
  62352. extra: 1061/949,
  62353. bottom: 176/1237
  62354. },
  62355. form: "dragon",
  62356. },
  62357. dragon_frontLewd: {
  62358. height: math.unit(2, "meters"),
  62359. weight: math.unit(200, "kg"),
  62360. name: "Front (Lewd)",
  62361. image: {
  62362. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62363. extra: 1041/925,
  62364. bottom: 74/1115
  62365. },
  62366. form: "dragon",
  62367. },
  62368. dragon_side: {
  62369. height: math.unit(1.56, "meters"),
  62370. weight: math.unit(200, "kg"),
  62371. name: "Side",
  62372. image: {
  62373. source: "./media/characters/zechal/dragon-side.svg"
  62374. },
  62375. form: "dragon",
  62376. },
  62377. foot: {
  62378. height: math.unit(0.5, "meters"),
  62379. name: "Foot",
  62380. image: {
  62381. source: "./media/characters/zechal/foot.svg"
  62382. }
  62383. },
  62384. sheathFront: {
  62385. height: math.unit(0.45, "meters"),
  62386. name: "Sheath (Front)",
  62387. image: {
  62388. source: "./media/characters/zechal/sheath-front.svg"
  62389. }
  62390. },
  62391. sheathSide: {
  62392. height: math.unit(0.45, "meters"),
  62393. name: "Sheath (Side)",
  62394. image: {
  62395. source: "./media/characters/zechal/sheath-side.svg"
  62396. }
  62397. },
  62398. },
  62399. [
  62400. {
  62401. name: "Incognito",
  62402. height: math.unit(2, "meters"),
  62403. allForms: true
  62404. },
  62405. {
  62406. name: "Small Rampage",
  62407. height: math.unit(25, "meters"),
  62408. allForms: true
  62409. },
  62410. {
  62411. name: "Home Size",
  62412. height: math.unit(250, "meters"),
  62413. allForms: true,
  62414. default: true
  62415. },
  62416. {
  62417. name: "Macro+",
  62418. height: math.unit(700, "meters"),
  62419. allForms: true
  62420. },
  62421. {
  62422. name: "Small Mega",
  62423. height: math.unit(3, "km"),
  62424. allForms: true
  62425. },
  62426. {
  62427. name: "Mega",
  62428. height: math.unit(15, "km"),
  62429. allForms: true
  62430. },
  62431. {
  62432. name: "Giga",
  62433. height: math.unit(300, "km"),
  62434. allForms: true
  62435. },
  62436. {
  62437. name: "Giga+",
  62438. height: math.unit(1750, "km"),
  62439. allForms: true
  62440. },
  62441. {
  62442. name: "Continental",
  62443. height: math.unit(5000, "km"),
  62444. allForms: true
  62445. },
  62446. {
  62447. name: "Terra",
  62448. height: math.unit(20000, "km"),
  62449. allForms: true
  62450. },
  62451. {
  62452. name: "Terra+",
  62453. height: math.unit(300000, "km"),
  62454. allForms: true
  62455. },
  62456. {
  62457. name: "Solar",
  62458. height: math.unit(40000000, "km"),
  62459. allForms: true
  62460. },
  62461. {
  62462. name: "Galactic",
  62463. height: math.unit(810133, "parsecs"),
  62464. allForms: true
  62465. },
  62466. {
  62467. name: "Universal",
  62468. height: math.unit(25, "universes"),
  62469. allForms: true
  62470. },
  62471. ],
  62472. {
  62473. "shark": {
  62474. name: "Shark",
  62475. default: true
  62476. },
  62477. "dragon": {
  62478. name: "Dragon",
  62479. },
  62480. }
  62481. ))
  62482. characterMakers.push(() => makeCharacter(
  62483. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62484. {
  62485. front: {
  62486. height: math.unit(2.2, "meters"),
  62487. weight: math.unit(150, "kg"),
  62488. name: "Front",
  62489. image: {
  62490. source: "./media/characters/sergis/front.svg",
  62491. extra: 1314/1312,
  62492. bottom: 112/1426
  62493. }
  62494. },
  62495. back: {
  62496. height: math.unit(2.2, "meters"),
  62497. weight: math.unit(150, "kg"),
  62498. name: "Back",
  62499. image: {
  62500. source: "./media/characters/sergis/back.svg",
  62501. extra: 1335/1333,
  62502. bottom: 19/1354
  62503. }
  62504. },
  62505. frontLewd: {
  62506. height: math.unit(2.2, "meters"),
  62507. weight: math.unit(150, "kg"),
  62508. name: "Front (Lewd)",
  62509. image: {
  62510. source: "./media/characters/sergis/front-lewd.svg",
  62511. extra: 1314/1312,
  62512. bottom: 112/1426
  62513. }
  62514. },
  62515. frontDressed: {
  62516. height: math.unit(2.2, "meters"),
  62517. weight: math.unit(150, "kg"),
  62518. name: "Front (Dressed)",
  62519. image: {
  62520. source: "./media/characters/sergis/front-dressed.svg",
  62521. extra: 1330/1328,
  62522. bottom: 95/1425
  62523. }
  62524. },
  62525. frontDressedLewd: {
  62526. height: math.unit(2.2, "meters"),
  62527. weight: math.unit(150, "kg"),
  62528. name: "Front (Dressed, Lewd)",
  62529. image: {
  62530. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62531. extra: 1330/1328,
  62532. bottom: 95/1425
  62533. }
  62534. },
  62535. maw: {
  62536. height: math.unit(0.48, "meters"),
  62537. name: "Maw",
  62538. image: {
  62539. source: "./media/characters/sergis/maw.svg"
  62540. }
  62541. },
  62542. sheath: {
  62543. height: math.unit(0.38, "meters"),
  62544. name: "Sheath",
  62545. image: {
  62546. source: "./media/characters/sergis/sheath.svg"
  62547. }
  62548. },
  62549. },
  62550. [
  62551. {
  62552. name: "Incognito Size",
  62553. height: math.unit(2.2, "meters")
  62554. },
  62555. {
  62556. name: "Small Macro",
  62557. height: math.unit(40, "meters")
  62558. },
  62559. {
  62560. name: "Macro",
  62561. height: math.unit(150, "meters")
  62562. },
  62563. {
  62564. name: "Macro+",
  62565. height: math.unit(300, "meters")
  62566. },
  62567. {
  62568. name: "Mega",
  62569. height: math.unit(2.5, "km")
  62570. },
  62571. {
  62572. name: "Mega+",
  62573. height: math.unit(30, "km")
  62574. },
  62575. {
  62576. name: "Home Size",
  62577. height: math.unit(300, "km"),
  62578. default: true
  62579. },
  62580. {
  62581. name: "Giga+",
  62582. height: math.unit(1000, "km")
  62583. },
  62584. {
  62585. name: "Giga++",
  62586. height: math.unit(6000, "km")
  62587. },
  62588. {
  62589. name: "Terra",
  62590. height: math.unit(70000, "km")
  62591. },
  62592. {
  62593. name: "Terra+",
  62594. height: math.unit(200000, "km")
  62595. },
  62596. {
  62597. name: "Galactic",
  62598. height: math.unit(634200, "lightyears")
  62599. },
  62600. ]
  62601. ))
  62602. characterMakers.push(() => makeCharacter(
  62603. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62604. {
  62605. standard: {
  62606. height: math.unit(1 + 5/12, "feet"),
  62607. name: "Standard",
  62608. image: {
  62609. source: "./media/characters/spade/standard.svg",
  62610. extra: 1794/1703,
  62611. bottom: 115/1909
  62612. }
  62613. },
  62614. disguised: {
  62615. height: math.unit(1 + 5/12, "feet"),
  62616. name: "Disguised",
  62617. image: {
  62618. source: "./media/characters/spade/disguised.svg",
  62619. extra: 1794/1700,
  62620. bottom: 98/1892
  62621. }
  62622. },
  62623. },
  62624. [
  62625. {
  62626. name: "Normal",
  62627. height: math.unit(1 + 5/12, "feet"),
  62628. default: true
  62629. },
  62630. ]
  62631. ))
  62632. characterMakers.push(() => makeCharacter(
  62633. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62634. {
  62635. frontNsfw: {
  62636. height: math.unit(5, "meters"),
  62637. weight: math.unit(2000, "kg"),
  62638. preyCapacity: math.unit(5, "people"),
  62639. name: "Front (NSFW)",
  62640. image: {
  62641. source: "./media/characters/zeanlain/front-nsfw.svg",
  62642. extra: 1087/938,
  62643. bottom: 93/1180
  62644. },
  62645. extraAttributes: {
  62646. "wingspan": {
  62647. name: "Wingspan",
  62648. power: 1,
  62649. type: "length",
  62650. base: math.unit(10, "meters")
  62651. },
  62652. "footSize": {
  62653. name: "Foot Size",
  62654. power: 1,
  62655. type: "length",
  62656. base: math.unit(0.68, "meters")
  62657. },
  62658. "cockLength": {
  62659. name: "Cock Length",
  62660. power: 1,
  62661. type: "length",
  62662. base: math.unit(1.69, "meters")
  62663. },
  62664. "ballVolume": {
  62665. name: "Ball Volume",
  62666. power: 3,
  62667. type: "volume",
  62668. base: math.unit(0.028, "m^3")
  62669. },
  62670. }
  62671. },
  62672. front: {
  62673. height: math.unit(5, "meters"),
  62674. weight: math.unit(2000, "kg"),
  62675. preyCapacity: math.unit(3, "people"),
  62676. name: "Front",
  62677. image: {
  62678. source: "./media/characters/zeanlain/front.svg",
  62679. extra: 1087/938,
  62680. bottom: 93/1180
  62681. },
  62682. extraAttributes: {
  62683. "wingspan": {
  62684. name: "Wingspan",
  62685. power: 1,
  62686. type: "length",
  62687. base: math.unit(10, "meters")
  62688. },
  62689. "footSize": {
  62690. name: "Foot Size",
  62691. power: 1,
  62692. type: "length",
  62693. base: math.unit(0.68, "meters")
  62694. },
  62695. }
  62696. },
  62697. },
  62698. [
  62699. {
  62700. name: "Normal",
  62701. height: math.unit(5, "meters"),
  62702. default: true
  62703. },
  62704. ]
  62705. ))
  62706. characterMakers.push(() => makeCharacter(
  62707. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62708. {
  62709. front: {
  62710. height: math.unit(10, "meters"),
  62711. weight: math.unit(250000, "kg"),
  62712. name: "Front",
  62713. image: {
  62714. source: "./media/characters/airamis/front.svg",
  62715. extra: 865/835,
  62716. bottom: 13/878
  62717. }
  62718. },
  62719. },
  62720. [
  62721. {
  62722. name: "Normal",
  62723. height: math.unit(10, "meters"),
  62724. default: true
  62725. },
  62726. ]
  62727. ))
  62728. characterMakers.push(() => makeCharacter(
  62729. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62730. {
  62731. front: {
  62732. height: math.unit(3 + 3/12, "feet"),
  62733. weight: math.unit(75, "lb"),
  62734. name: "Front",
  62735. image: {
  62736. source: "./media/characters/corra-tourmaline/front.svg",
  62737. extra: 1037/864,
  62738. bottom: 39/1076
  62739. }
  62740. },
  62741. back: {
  62742. height: math.unit(3 + 3/12, "feet"),
  62743. weight: math.unit(75, "lb"),
  62744. name: "Back",
  62745. image: {
  62746. source: "./media/characters/corra-tourmaline/back.svg",
  62747. extra: 1022/849,
  62748. bottom: 26/1048
  62749. }
  62750. },
  62751. dressed: {
  62752. height: math.unit(3 + 3/12, "feet"),
  62753. weight: math.unit(75, "lb"),
  62754. name: "Dressed",
  62755. image: {
  62756. source: "./media/characters/corra-tourmaline/dressed.svg",
  62757. extra: 1037/864,
  62758. bottom: 39/1076
  62759. }
  62760. },
  62761. beans: {
  62762. height: math.unit(0.37, "feet"),
  62763. name: "Beans",
  62764. image: {
  62765. source: "./media/characters/corra-tourmaline/beans.svg"
  62766. }
  62767. },
  62768. },
  62769. [
  62770. {
  62771. name: "Normal",
  62772. height: math.unit(3 + 3/12, "feet"),
  62773. default: true
  62774. },
  62775. {
  62776. name: "Macro",
  62777. height: math.unit(32, "feet")
  62778. },
  62779. ]
  62780. ))
  62781. characterMakers.push(() => makeCharacter(
  62782. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62783. {
  62784. front: {
  62785. height: math.unit(6 + 2/12, "feet"),
  62786. weight: math.unit(203, "lb"),
  62787. name: "Front",
  62788. image: {
  62789. source: "./media/characters/maki-kawa/front.svg",
  62790. extra: 950/890,
  62791. bottom: 62/1012
  62792. }
  62793. },
  62794. back: {
  62795. height: math.unit(6 + 2/12, "feet"),
  62796. weight: math.unit(203, "lb"),
  62797. name: "Back",
  62798. image: {
  62799. source: "./media/characters/maki-kawa/back.svg",
  62800. extra: 953/878,
  62801. bottom: 49/1002
  62802. }
  62803. },
  62804. frontBarista: {
  62805. height: math.unit(6 + 2/12, "feet"),
  62806. weight: math.unit(203, "lb"),
  62807. name: "Front (Barista)",
  62808. image: {
  62809. source: "./media/characters/maki-kawa/front-barista.svg",
  62810. extra: 943/883,
  62811. bottom: 69/1012
  62812. }
  62813. },
  62814. backBarista: {
  62815. height: math.unit(6 + 2/12, "feet"),
  62816. weight: math.unit(203, "lb"),
  62817. name: "Back (Barista)",
  62818. image: {
  62819. source: "./media/characters/maki-kawa/back-barista.svg",
  62820. extra: 953/878,
  62821. bottom: 49/1002
  62822. }
  62823. },
  62824. frontWrestler: {
  62825. height: math.unit(6 + 2/12, "feet"),
  62826. weight: math.unit(203, "lb"),
  62827. name: "Front (Wrestler)",
  62828. image: {
  62829. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62830. extra: 950/890,
  62831. bottom: 62/1012
  62832. }
  62833. },
  62834. backWrestler: {
  62835. height: math.unit(6 + 2/12, "feet"),
  62836. weight: math.unit(203, "lb"),
  62837. name: "Back (Wrestler)",
  62838. image: {
  62839. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62840. extra: 953/878,
  62841. bottom: 49/1002
  62842. }
  62843. },
  62844. headFront: {
  62845. height: math.unit(1.64, "feet"),
  62846. name: "Head (Front)",
  62847. image: {
  62848. source: "./media/characters/maki-kawa/head-front.svg"
  62849. }
  62850. },
  62851. headSide: {
  62852. height: math.unit(1.59, "feet"),
  62853. name: "Head (Side)",
  62854. image: {
  62855. source: "./media/characters/maki-kawa/head-side.svg"
  62856. }
  62857. },
  62858. paw: {
  62859. height: math.unit(0.9, "feet"),
  62860. name: "Paw",
  62861. image: {
  62862. source: "./media/characters/maki-kawa/paw.svg"
  62863. }
  62864. },
  62865. },
  62866. [
  62867. {
  62868. name: "Normal",
  62869. height: math.unit(6 + 2/12, "feet"),
  62870. default: true
  62871. },
  62872. {
  62873. name: "Macro",
  62874. height: math.unit(617, "feet")
  62875. },
  62876. ]
  62877. ))
  62878. characterMakers.push(() => makeCharacter(
  62879. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62880. {
  62881. frontNsfw: {
  62882. height: math.unit(10, "feet"),
  62883. weight: math.unit(1500, "lb"),
  62884. name: "Front (NSFW)",
  62885. image: {
  62886. source: "./media/characters/lennox/front-nsfw.svg",
  62887. extra: 1623/1496,
  62888. bottom: 18/1641
  62889. },
  62890. extraAttributes: {
  62891. "cumVolume": {
  62892. name: "Cum Volume",
  62893. power: 3,
  62894. type: "volume",
  62895. base: math.unit(75, "liters")
  62896. },
  62897. }
  62898. },
  62899. backNsfw: {
  62900. height: math.unit(10, "feet"),
  62901. weight: math.unit(1500, "lb"),
  62902. name: "Back (NSFW)",
  62903. image: {
  62904. source: "./media/characters/lennox/back-nsfw.svg",
  62905. extra: 1641/1481,
  62906. bottom: 13/1654
  62907. },
  62908. extraAttributes: {
  62909. "cumVolume": {
  62910. name: "Cum Volume",
  62911. power: 3,
  62912. type: "volume",
  62913. base: math.unit(75, "liters")
  62914. },
  62915. }
  62916. },
  62917. frontSfw: {
  62918. height: math.unit(10, "feet"),
  62919. weight: math.unit(1500, "lb"),
  62920. name: "Front (SFW)",
  62921. image: {
  62922. source: "./media/characters/lennox/front-sfw.svg",
  62923. extra: 1623/1496,
  62924. bottom: 18/1641
  62925. }
  62926. },
  62927. backSfw: {
  62928. height: math.unit(10, "feet"),
  62929. weight: math.unit(1500, "lb"),
  62930. name: "Back (SFW)",
  62931. image: {
  62932. source: "./media/characters/lennox/back-sfw.svg",
  62933. extra: 1641/1481,
  62934. bottom: 13/1654
  62935. }
  62936. },
  62937. maw: {
  62938. height: math.unit(2.94, "feet"),
  62939. name: "Maw",
  62940. image: {
  62941. source: "./media/characters/lennox/maw.svg"
  62942. }
  62943. },
  62944. dick: {
  62945. height: math.unit(0.8323, "meters"),
  62946. weight: math.unit(0.07315728637*1000, "kg"),
  62947. name: "Dick",
  62948. image: {
  62949. source: "./media/characters/lennox/dick.svg"
  62950. },
  62951. extraAttributes: {
  62952. "thickness": {
  62953. name: "Thickness",
  62954. power: 1,
  62955. type: "length",
  62956. base: math.unit(0.330, "meters")
  62957. },
  62958. "length": {
  62959. name: "Length",
  62960. power: 1,
  62961. type: "length",
  62962. base: math.unit(0.8, "meters")
  62963. },
  62964. "cumVolume": {
  62965. name: "Cum Volume",
  62966. power: 3,
  62967. type: "volume",
  62968. base: math.unit(75, "liters")
  62969. },
  62970. }
  62971. },
  62972. },
  62973. [
  62974. {
  62975. name: "Micro",
  62976. height: math.unit(1, "inch")
  62977. },
  62978. {
  62979. name: "Normal",
  62980. height: math.unit(10, "feet"),
  62981. default: true
  62982. },
  62983. {
  62984. name: "Macro",
  62985. height: math.unit(200, "feet")
  62986. },
  62987. ]
  62988. ))
  62989. characterMakers.push(() => makeCharacter(
  62990. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62991. {
  62992. frontDressed: {
  62993. height: math.unit(15 + 7/12, "feet"),
  62994. weight: math.unit(5000, "lb"),
  62995. name: "Front (Dressed)",
  62996. image: {
  62997. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62998. extra: 1136/1023,
  62999. bottom: 51/1187
  63000. }
  63001. },
  63002. backDressed: {
  63003. height: math.unit(15 + 7/12, "feet"),
  63004. weight: math.unit(5000, "lb"),
  63005. name: "Back (Dressed)",
  63006. image: {
  63007. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63008. extra: 2359/2143,
  63009. bottom: 103/2462
  63010. }
  63011. },
  63012. front: {
  63013. height: math.unit(15 + 7/12, "feet"),
  63014. weight: math.unit(5000, "lb"),
  63015. name: "Front",
  63016. image: {
  63017. source: "./media/characters/vyse-iron-thunder/front.svg",
  63018. extra: 1136/1023,
  63019. bottom: 51/1187
  63020. }
  63021. },
  63022. hand: {
  63023. height: math.unit(2.36, "feet"),
  63024. name: "Hand",
  63025. image: {
  63026. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63027. }
  63028. },
  63029. foot: {
  63030. height: math.unit(1.72, "feet"),
  63031. name: "Foot",
  63032. image: {
  63033. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63034. }
  63035. },
  63036. mouth: {
  63037. height: math.unit(2, "feet"),
  63038. name: "Mouth",
  63039. image: {
  63040. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63041. }
  63042. },
  63043. eye: {
  63044. height: math.unit(0.58, "feet"),
  63045. name: "Eye",
  63046. image: {
  63047. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63048. }
  63049. },
  63050. },
  63051. [
  63052. {
  63053. name: "Normal",
  63054. height: math.unit(15 + 7/12, "feet"),
  63055. default: true
  63056. },
  63057. {
  63058. name: "Macro",
  63059. height: math.unit(157, "feet")
  63060. },
  63061. {
  63062. name: "Macro+",
  63063. height: math.unit(1570, "feet")
  63064. },
  63065. {
  63066. name: "Macro++",
  63067. height: math.unit(15700, "feet")
  63068. },
  63069. {
  63070. name: "Macro+++",
  63071. height: math.unit(157000, "feet")
  63072. },
  63073. {
  63074. name: "Macro++++",
  63075. height: math.unit(1570000, "feet")
  63076. },
  63077. ]
  63078. ))
  63079. characterMakers.push(() => makeCharacter(
  63080. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63081. {
  63082. side: {
  63083. height: math.unit(6, "feet"),
  63084. weight: math.unit(115, "lb"),
  63085. name: "Side",
  63086. image: {
  63087. source: "./media/characters/moonbeam/side.svg",
  63088. extra: 839/485,
  63089. bottom: 60/899
  63090. }
  63091. },
  63092. },
  63093. [
  63094. {
  63095. name: "Normal",
  63096. height: math.unit(6, "feet"),
  63097. default: true
  63098. },
  63099. ]
  63100. ))
  63101. characterMakers.push(() => makeCharacter(
  63102. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63103. {
  63104. front: {
  63105. height: math.unit(3500, "miles"),
  63106. weight: math.unit(1659, "petatonnes"),
  63107. name: "Front",
  63108. image: {
  63109. source: "./media/characters/baltica/front.svg",
  63110. extra: 429/428,
  63111. bottom: 41/470
  63112. }
  63113. },
  63114. back: {
  63115. height: math.unit(3500, "miles"),
  63116. weight: math.unit(1659, "petatonnes"),
  63117. name: "Back",
  63118. image: {
  63119. source: "./media/characters/baltica/back.svg",
  63120. extra: 452/451,
  63121. bottom: 8/460
  63122. }
  63123. },
  63124. },
  63125. [
  63126. {
  63127. name: "Gigamacro",
  63128. height: math.unit(3500, "miles"),
  63129. default: true
  63130. },
  63131. ]
  63132. ))
  63133. characterMakers.push(() => makeCharacter(
  63134. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63135. {
  63136. front: {
  63137. height: math.unit(6 + 10/12, "feet"),
  63138. weight: math.unit(200, "lb"),
  63139. name: "Front",
  63140. image: {
  63141. source: "./media/characters/shadow-wolf/front.svg",
  63142. extra: 1931/1760,
  63143. bottom: 88/2019
  63144. }
  63145. },
  63146. },
  63147. [
  63148. {
  63149. name: "Normal",
  63150. height: math.unit(6 + 10/12, "feet"),
  63151. default: true
  63152. },
  63153. ]
  63154. ))
  63155. characterMakers.push(() => makeCharacter(
  63156. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63157. {
  63158. front: {
  63159. height: math.unit(5 + 10/12, "feet"),
  63160. name: "Front",
  63161. image: {
  63162. source: "./media/characters/quincy-praying-mantis/front.svg",
  63163. extra: 1055/891,
  63164. bottom: 92/1147
  63165. }
  63166. },
  63167. soles: {
  63168. height: math.unit(0.85, "feet"),
  63169. name: "Soles",
  63170. image: {
  63171. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63172. extra: 429/324,
  63173. bottom: 89/518
  63174. },
  63175. extraAttributes: {
  63176. "shoeSize": {
  63177. name: "Shoe Size",
  63178. power: 1,
  63179. type: "length",
  63180. base: math.unit(23, "ShoeSizeMensUS"),
  63181. defaultUnit: "ShoeSizeMensUS"
  63182. },
  63183. }
  63184. },
  63185. foot: {
  63186. height: math.unit(0.72, "feet"),
  63187. name: "Foot",
  63188. image: {
  63189. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63190. extra: 349/349,
  63191. bottom: 76/425
  63192. }
  63193. },
  63194. },
  63195. [
  63196. {
  63197. name: "Normal",
  63198. height: math.unit(5 + 10/12, "feet"),
  63199. default: true
  63200. },
  63201. ]
  63202. ))
  63203. characterMakers.push(() => makeCharacter(
  63204. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63205. {
  63206. front: {
  63207. height: math.unit(6, "feet"),
  63208. name: "Front",
  63209. image: {
  63210. source: "./media/characters/christopher-redwood/front.svg",
  63211. extra: 1402/1341,
  63212. bottom: 23/1425
  63213. }
  63214. },
  63215. back: {
  63216. height: math.unit(6, "feet"),
  63217. name: "Back",
  63218. image: {
  63219. source: "./media/characters/christopher-redwood/back.svg",
  63220. extra: 1406/1345,
  63221. bottom: 36/1442
  63222. }
  63223. },
  63224. head: {
  63225. height: math.unit(1.685, "feet"),
  63226. name: "Head",
  63227. image: {
  63228. source: "./media/characters/christopher-redwood/head.svg"
  63229. }
  63230. },
  63231. },
  63232. [
  63233. {
  63234. name: "Normal",
  63235. height: math.unit(6, "feet"),
  63236. default: true
  63237. },
  63238. ]
  63239. ))
  63240. characterMakers.push(() => makeCharacter(
  63241. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63242. {
  63243. front: {
  63244. height: math.unit(1.9, "meters"),
  63245. weight: math.unit(140, "lb"),
  63246. name: "Front",
  63247. image: {
  63248. source: "./media/characters/kara-fox/front.svg",
  63249. extra: 766/711,
  63250. bottom: 41/807
  63251. }
  63252. },
  63253. back: {
  63254. height: math.unit(1.9, "meters"),
  63255. weight: math.unit(140, "lb"),
  63256. name: "Back",
  63257. image: {
  63258. source: "./media/characters/kara-fox/back.svg",
  63259. extra: 766/596,
  63260. bottom: 29/795
  63261. }
  63262. },
  63263. maw: {
  63264. height: math.unit(0.78, "feet"),
  63265. name: "Maw",
  63266. image: {
  63267. source: "./media/characters/kara-fox/maw.svg"
  63268. }
  63269. },
  63270. pawpads: {
  63271. height: math.unit(0.96, "feet"),
  63272. name: "Pawpads",
  63273. image: {
  63274. source: "./media/characters/kara-fox/pawpads.svg"
  63275. }
  63276. },
  63277. },
  63278. [
  63279. {
  63280. name: "Normal",
  63281. height: math.unit(1.9, "meters"),
  63282. default: true
  63283. },
  63284. {
  63285. name: "Giantess",
  63286. height: math.unit(80, "meters")
  63287. },
  63288. ]
  63289. ))
  63290. characterMakers.push(() => makeCharacter(
  63291. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63292. {
  63293. front: {
  63294. height: math.unit(12, "feet"),
  63295. name: "Front",
  63296. image: {
  63297. source: "./media/characters/naomi-espeon/front.svg",
  63298. extra: 892/797,
  63299. bottom: 5/897
  63300. }
  63301. },
  63302. back: {
  63303. height: math.unit(12, "feet"),
  63304. name: "Back",
  63305. image: {
  63306. source: "./media/characters/naomi-espeon/back.svg",
  63307. extra: 890/785,
  63308. bottom: 12/902
  63309. }
  63310. },
  63311. },
  63312. [
  63313. {
  63314. name: "Normal",
  63315. height: math.unit(12, "feet"),
  63316. default: true
  63317. },
  63318. ]
  63319. ))
  63320. characterMakers.push(() => makeCharacter(
  63321. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63322. {
  63323. anthro_front: {
  63324. height: math.unit(8, "feet"),
  63325. weight: math.unit(625, "lb"),
  63326. name: "Front",
  63327. image: {
  63328. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63329. extra: 638/574,
  63330. bottom: 73/711
  63331. },
  63332. form: "anthro",
  63333. default: true
  63334. },
  63335. anthro_back: {
  63336. height: math.unit(8, "feet"),
  63337. weight: math.unit(625, "lb"),
  63338. name: "Back",
  63339. image: {
  63340. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63341. extra: 674/614,
  63342. bottom: 7/681
  63343. },
  63344. form: "anthro",
  63345. },
  63346. taur_side: {
  63347. height: math.unit(16, "feet"),
  63348. weight: math.unit(4.5, "tons"),
  63349. name: "Side",
  63350. image: {
  63351. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63352. extra: 704/646,
  63353. bottom: 132/836
  63354. },
  63355. form: "taur",
  63356. default: true
  63357. },
  63358. },
  63359. [
  63360. {
  63361. name: "Normal",
  63362. height: math.unit(8, "feet"),
  63363. default: true,
  63364. form: "anthro"
  63365. },
  63366. {
  63367. name: "Normal",
  63368. height: math.unit(16, "feet"),
  63369. default: true,
  63370. form: "taur"
  63371. },
  63372. ],
  63373. {
  63374. "anthro": {
  63375. name: "Anthro",
  63376. default: true
  63377. },
  63378. "taur": {
  63379. name: "Taur",
  63380. },
  63381. }
  63382. ))
  63383. characterMakers.push(() => makeCharacter(
  63384. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63385. {
  63386. front: {
  63387. height: math.unit(190, "cm"),
  63388. weight: math.unit(110, "kg"),
  63389. name: "Front",
  63390. image: {
  63391. source: "./media/characters/amelie/front.svg",
  63392. extra: 530/442,
  63393. bottom: 35/565
  63394. }
  63395. },
  63396. },
  63397. [
  63398. {
  63399. name: "Normal",
  63400. height: math.unit(190, "cm"),
  63401. default: true
  63402. },
  63403. ]
  63404. ))
  63405. characterMakers.push(() => makeCharacter(
  63406. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63407. {
  63408. front: {
  63409. height: math.unit(21, "feet"),
  63410. weight: math.unit(30000, "lb"),
  63411. name: "Front",
  63412. image: {
  63413. source: "./media/characters/valence/front.svg",
  63414. extra: 1430/1306,
  63415. bottom: 51/1481
  63416. }
  63417. },
  63418. },
  63419. [
  63420. {
  63421. name: "Normal",
  63422. height: math.unit(21, "feet"),
  63423. default: true
  63424. },
  63425. ]
  63426. ))
  63427. characterMakers.push(() => makeCharacter(
  63428. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63429. {
  63430. front: {
  63431. height: math.unit(5 + 9/12, "feet"),
  63432. weight: math.unit(170, "lb"),
  63433. name: "Front",
  63434. image: {
  63435. source: "./media/characters/aurora-adkins/front.svg",
  63436. extra: 1141/1089,
  63437. bottom: 41/1182
  63438. }
  63439. },
  63440. },
  63441. [
  63442. {
  63443. name: "Tiny",
  63444. height: math.unit(7, "mm")
  63445. },
  63446. {
  63447. name: "Small",
  63448. height: math.unit(3.4, "inches")
  63449. },
  63450. {
  63451. name: "Normal",
  63452. height: math.unit(5 + 9/12, "feet"),
  63453. default: true
  63454. },
  63455. {
  63456. name: "Big",
  63457. height: math.unit(31, "feet")
  63458. },
  63459. {
  63460. name: "Giant",
  63461. height: math.unit(300, "feet")
  63462. },
  63463. ]
  63464. ))
  63465. characterMakers.push(() => makeCharacter(
  63466. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63467. {
  63468. front: {
  63469. height: math.unit(5 + 6/12, "feet"),
  63470. weight: math.unit(210, "lb"),
  63471. name: "Front",
  63472. image: {
  63473. source: "./media/characters/cyber/front.svg",
  63474. extra: 1968/1798,
  63475. bottom: 10/1978
  63476. },
  63477. extraAttributes: {
  63478. "shoeSize": {
  63479. name: "Shoe Size",
  63480. power: 1,
  63481. type: "length",
  63482. base: math.unit(30, "ShoeSizeMensUS")
  63483. },
  63484. }
  63485. },
  63486. },
  63487. [
  63488. {
  63489. name: "Normal",
  63490. height: math.unit(5 + 6/12, "feet"),
  63491. default: true
  63492. },
  63493. ]
  63494. ))
  63495. characterMakers.push(() => makeCharacter(
  63496. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63497. {
  63498. front: {
  63499. height: math.unit(6 + 6/12, "feet"),
  63500. weight: math.unit(140, "lb"),
  63501. name: "Front",
  63502. image: {
  63503. source: "./media/characters/sapphire-wairimea/front.svg",
  63504. extra: 475/458,
  63505. bottom: 14/489
  63506. }
  63507. },
  63508. },
  63509. [
  63510. {
  63511. name: "Normal",
  63512. height: math.unit(6 + 6/12, "feet")
  63513. },
  63514. {
  63515. name: "Macro",
  63516. height: math.unit(132, "feet"),
  63517. default: true
  63518. },
  63519. ]
  63520. ))
  63521. characterMakers.push(() => makeCharacter(
  63522. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63523. {
  63524. front: {
  63525. height: math.unit(1.6, "meters"),
  63526. weight: math.unit(100, "lb"),
  63527. name: "Front",
  63528. image: {
  63529. source: "./media/characters/cirkazi/front.svg",
  63530. extra: 489/477,
  63531. bottom: 0/489
  63532. }
  63533. },
  63534. },
  63535. [
  63536. {
  63537. name: "Normal",
  63538. height: math.unit(1.6, "meters")
  63539. },
  63540. {
  63541. name: "Macro",
  63542. height: math.unit(800, "feet"),
  63543. default: true
  63544. },
  63545. ]
  63546. ))
  63547. characterMakers.push(() => makeCharacter(
  63548. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63549. {
  63550. front: {
  63551. height: math.unit(5 + 10/12, "feet"),
  63552. weight: math.unit(145, "lb"),
  63553. name: "Front",
  63554. image: {
  63555. source: "./media/characters/corrin-cavelli/front.svg",
  63556. extra: 483/464,
  63557. bottom: 6/489
  63558. }
  63559. },
  63560. },
  63561. [
  63562. {
  63563. name: "Human",
  63564. height: math.unit(5 + 10/12, "feet")
  63565. },
  63566. {
  63567. name: "Giant",
  63568. height: math.unit(210, "feet"),
  63569. default: true
  63570. },
  63571. ]
  63572. ))
  63573. characterMakers.push(() => makeCharacter(
  63574. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63575. {
  63576. back: {
  63577. height: math.unit(5 + 6/12, "feet"),
  63578. weight: math.unit(115, "lb"),
  63579. name: "Back",
  63580. image: {
  63581. source: "./media/characters/lori-lopez/back.svg",
  63582. extra: 483/474,
  63583. bottom: 6/489
  63584. }
  63585. },
  63586. },
  63587. [
  63588. {
  63589. name: "Human",
  63590. height: math.unit(5 + 6/12, "feet")
  63591. },
  63592. {
  63593. name: "Macro",
  63594. height: math.unit(198, "feet"),
  63595. default: true
  63596. },
  63597. ]
  63598. ))
  63599. characterMakers.push(() => makeCharacter(
  63600. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63601. {
  63602. front: {
  63603. height: math.unit(6, "feet"),
  63604. weight: math.unit(220, "lb"),
  63605. name: "Front",
  63606. image: {
  63607. source: "./media/characters/sylvia-beauregard/front.svg",
  63608. extra: 483/479,
  63609. bottom: 6/489
  63610. }
  63611. },
  63612. },
  63613. [
  63614. {
  63615. name: "Macro",
  63616. height: math.unit(2071, "feet"),
  63617. default: true
  63618. },
  63619. ]
  63620. ))
  63621. characterMakers.push(() => makeCharacter(
  63622. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63623. {
  63624. back: {
  63625. height: math.unit(5 + 6/12, "feet"),
  63626. weight: math.unit(160, "lb"),
  63627. name: "Back",
  63628. image: {
  63629. source: "./media/characters/akiko-takahashi/back.svg",
  63630. extra: 459/454,
  63631. bottom: 27/486
  63632. }
  63633. },
  63634. },
  63635. [
  63636. {
  63637. name: "Human",
  63638. height: math.unit(5 + 6/12, "feet")
  63639. },
  63640. {
  63641. name: "Macro",
  63642. height: math.unit(198, "feet"),
  63643. default: true
  63644. },
  63645. {
  63646. name: "Megamacro",
  63647. height: math.unit(7128, "feet")
  63648. },
  63649. ]
  63650. ))
  63651. characterMakers.push(() => makeCharacter(
  63652. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63653. {
  63654. front: {
  63655. height: math.unit(6, "feet"),
  63656. weight: math.unit(140, "lb"),
  63657. name: "Front",
  63658. image: {
  63659. source: "./media/characters/velvet-garza/front.svg",
  63660. extra: 480/462,
  63661. bottom: 7/487
  63662. }
  63663. },
  63664. },
  63665. [
  63666. {
  63667. name: "Macro",
  63668. height: math.unit(37, "feet"),
  63669. default: true
  63670. },
  63671. ]
  63672. ))
  63673. characterMakers.push(() => makeCharacter(
  63674. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63675. {
  63676. front: {
  63677. height: math.unit(7 + 6/12, "feet"),
  63678. weight: math.unit(400, "lb"),
  63679. name: "Front",
  63680. image: {
  63681. source: "./media/characters/gaia/front.svg",
  63682. extra: 474/463,
  63683. bottom: 13/487
  63684. }
  63685. },
  63686. },
  63687. [
  63688. {
  63689. name: "MiniMacro",
  63690. height: math.unit(7 + 6/12, "feet")
  63691. },
  63692. {
  63693. name: "GigaMacro",
  63694. height: math.unit(14500, "feet"),
  63695. default: true
  63696. },
  63697. ]
  63698. ))
  63699. characterMakers.push(() => makeCharacter(
  63700. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63701. {
  63702. front: {
  63703. height: math.unit(6, "feet"),
  63704. weight: math.unit(150, "lb"),
  63705. name: "Front",
  63706. image: {
  63707. source: "./media/characters/tim/front.svg",
  63708. extra: 1878/1743,
  63709. bottom: 9/1887
  63710. }
  63711. },
  63712. frontDressed: {
  63713. height: math.unit(6, "feet"),
  63714. weight: math.unit(150, "lb"),
  63715. name: "Front (Dressed)",
  63716. image: {
  63717. source: "./media/characters/tim/front-dressed.svg",
  63718. extra: 1765/1485,
  63719. bottom: 48/1813
  63720. }
  63721. },
  63722. backDressed: {
  63723. height: math.unit(6, "feet"),
  63724. weight: math.unit(150, "lb"),
  63725. name: "Back (Dressed)",
  63726. image: {
  63727. source: "./media/characters/tim/back-dressed.svg",
  63728. extra: 1750/1465,
  63729. bottom: 25/1775
  63730. }
  63731. },
  63732. dick: {
  63733. height: math.unit(1.5, "feet"),
  63734. weight: math.unit(6, "lb"),
  63735. name: "Dick",
  63736. image: {
  63737. source: "./media/characters/tim/dick.svg"
  63738. }
  63739. },
  63740. hand: {
  63741. height: math.unit(0.522, "feet"),
  63742. name: "Hand",
  63743. image: {
  63744. source: "./media/characters/tim/hand.svg"
  63745. }
  63746. },
  63747. palm: {
  63748. height: math.unit(0.48, "feet"),
  63749. name: "Palm",
  63750. image: {
  63751. source: "./media/characters/tim/palm.svg"
  63752. }
  63753. },
  63754. paw: {
  63755. height: math.unit(0.9, "feet"),
  63756. name: "Paw",
  63757. image: {
  63758. source: "./media/characters/tim/paw.svg"
  63759. }
  63760. },
  63761. sole: {
  63762. height: math.unit(0.88, "feet"),
  63763. name: "Sole",
  63764. image: {
  63765. source: "./media/characters/tim/sole.svg"
  63766. }
  63767. },
  63768. },
  63769. [
  63770. {
  63771. name: "Macro",
  63772. height: math.unit(1000, "feet")
  63773. },
  63774. {
  63775. name: "Megamacro",
  63776. height: math.unit(10000, "feet"),
  63777. default: true
  63778. },
  63779. {
  63780. name: "Megamacro+",
  63781. height: math.unit(50000, "feet")
  63782. },
  63783. {
  63784. name: "Gigamacro",
  63785. height: math.unit(150000, "km")
  63786. },
  63787. ]
  63788. ))
  63789. characterMakers.push(() => makeCharacter(
  63790. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63791. {
  63792. front: {
  63793. height: math.unit(5 + 8/12, "feet"),
  63794. weight: math.unit(170, "lb"),
  63795. name: "Front",
  63796. image: {
  63797. source: "./media/characters/abel-delreoux/front.svg",
  63798. extra: 1615/1500,
  63799. bottom: 82/1697
  63800. }
  63801. },
  63802. back: {
  63803. height: math.unit(5 + 8/12, "feet"),
  63804. weight: math.unit(170, "lb"),
  63805. name: "Back",
  63806. image: {
  63807. source: "./media/characters/abel-delreoux/back.svg",
  63808. extra: 1644/1534,
  63809. bottom: 24/1668
  63810. }
  63811. },
  63812. casual: {
  63813. height: math.unit(5 + 8/12, "feet"),
  63814. weight: math.unit(170, "lb"),
  63815. name: "Casual",
  63816. image: {
  63817. source: "./media/characters/abel-delreoux/casual.svg",
  63818. extra: 1716/1598,
  63819. bottom: 29/1745
  63820. }
  63821. },
  63822. sleepy: {
  63823. height: math.unit(5 + 8/12, "feet"),
  63824. weight: math.unit(170, "lb"),
  63825. name: "Sleepy",
  63826. image: {
  63827. source: "./media/characters/abel-delreoux/sleepy.svg",
  63828. extra: 1649/1573,
  63829. bottom: 22/1671
  63830. }
  63831. },
  63832. fem: {
  63833. height: math.unit(5 + 8/12, "feet"),
  63834. weight: math.unit(170, "lb"),
  63835. name: "Fem",
  63836. image: {
  63837. source: "./media/characters/abel-delreoux/fem.svg",
  63838. extra: 1680/1564,
  63839. bottom: 17/1697
  63840. }
  63841. },
  63842. hand: {
  63843. height: math.unit(0.78, "feet"),
  63844. name: "Hand",
  63845. image: {
  63846. source: "./media/characters/abel-delreoux/hand.svg"
  63847. }
  63848. },
  63849. paw: {
  63850. height: math.unit(0.78, "feet"),
  63851. name: "Paw",
  63852. image: {
  63853. source: "./media/characters/abel-delreoux/paw.svg"
  63854. }
  63855. },
  63856. },
  63857. [
  63858. {
  63859. name: "Normal",
  63860. height: math.unit(5 + 8/12, "feet"),
  63861. default: true
  63862. },
  63863. ]
  63864. ))
  63865. characterMakers.push(() => makeCharacter(
  63866. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63867. {
  63868. front: {
  63869. height: math.unit(6, "feet"),
  63870. weight: math.unit(159, "lb"),
  63871. name: "Front",
  63872. image: {
  63873. source: "./media/characters/meus/front.svg",
  63874. extra: 938/843,
  63875. bottom: 37/975
  63876. }
  63877. },
  63878. back: {
  63879. height: math.unit(6, "feet"),
  63880. weight: math.unit(159, "lb"),
  63881. name: "Back",
  63882. image: {
  63883. source: "./media/characters/meus/back.svg",
  63884. extra: 967/873,
  63885. bottom: 12/979
  63886. }
  63887. },
  63888. },
  63889. [
  63890. {
  63891. name: "Micro",
  63892. height: math.unit(2, "inches")
  63893. },
  63894. {
  63895. name: "Mini",
  63896. height: math.unit(6, "inches")
  63897. },
  63898. {
  63899. name: "Normal",
  63900. height: math.unit(6, "feet"),
  63901. default: true
  63902. },
  63903. {
  63904. name: "Macro",
  63905. height: math.unit(84, "feet")
  63906. },
  63907. ]
  63908. ))
  63909. characterMakers.push(() => makeCharacter(
  63910. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63911. {
  63912. front: {
  63913. height: math.unit(60, "cm"),
  63914. weight: math.unit(18, "kg"),
  63915. name: "Front",
  63916. image: {
  63917. source: "./media/characters/yamato/front.svg",
  63918. extra: 733/688,
  63919. bottom: 29/762
  63920. }
  63921. },
  63922. },
  63923. [
  63924. {
  63925. name: "Micro",
  63926. height: math.unit(6, "cm")
  63927. },
  63928. {
  63929. name: "Normal",
  63930. height: math.unit(60, "cm"),
  63931. default: true
  63932. },
  63933. ]
  63934. ))
  63935. characterMakers.push(() => makeCharacter(
  63936. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63937. {
  63938. front: {
  63939. height: math.unit(9, "feet"),
  63940. weight: math.unit(518, "lb"),
  63941. name: "Front",
  63942. image: {
  63943. source: "./media/characters/barus/front.svg",
  63944. extra: 1877/1795,
  63945. bottom: 55/1932
  63946. }
  63947. },
  63948. },
  63949. [
  63950. {
  63951. name: "Base Height",
  63952. height: math.unit(9, "feet"),
  63953. default: true
  63954. },
  63955. {
  63956. name: "Large",
  63957. height: math.unit(18, "feet")
  63958. },
  63959. {
  63960. name: "Giant",
  63961. height: math.unit(100, "feet")
  63962. },
  63963. {
  63964. name: "Huge",
  63965. height: math.unit(500, "feet")
  63966. },
  63967. {
  63968. name: "Enormous",
  63969. height: math.unit(300, "meters")
  63970. },
  63971. {
  63972. name: "Deity Among Man",
  63973. height: math.unit(3000, "meters")
  63974. },
  63975. ]
  63976. ))
  63977. characterMakers.push(() => makeCharacter(
  63978. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63979. {
  63980. front: {
  63981. height: math.unit(1.7, "meters"),
  63982. name: "Front",
  63983. image: {
  63984. source: "./media/characters/yari/front.svg",
  63985. extra: 1210/1125,
  63986. bottom: 283/1493
  63987. }
  63988. },
  63989. back: {
  63990. height: math.unit(1.7, "meters"),
  63991. name: "Back",
  63992. image: {
  63993. source: "./media/characters/yari/back.svg",
  63994. extra: 1240/1195,
  63995. bottom: 180/1420
  63996. }
  63997. },
  63998. head: {
  63999. height: math.unit(1.26, "feet"),
  64000. name: "Head",
  64001. image: {
  64002. source: "./media/characters/yari/head.svg"
  64003. }
  64004. },
  64005. },
  64006. [
  64007. {
  64008. name: "Nano",
  64009. height: math.unit(0.5, "mm")
  64010. },
  64011. {
  64012. name: "Micro",
  64013. height: math.unit(3, "inches")
  64014. },
  64015. {
  64016. name: "Short",
  64017. height: math.unit(1.5, "meters")
  64018. },
  64019. {
  64020. name: "Norm",
  64021. height: math.unit(1.7, "meters"),
  64022. default: true
  64023. },
  64024. ]
  64025. ))
  64026. characterMakers.push(() => makeCharacter(
  64027. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64028. {
  64029. front: {
  64030. height: math.unit(5 + 2/12, "feet"),
  64031. weight: math.unit(110, "lb"),
  64032. name: "Front",
  64033. image: {
  64034. source: "./media/characters/salem/front.svg",
  64035. extra: 1895/1800,
  64036. bottom: 23/1918
  64037. }
  64038. },
  64039. back: {
  64040. height: math.unit(5 + 2/12, "feet"),
  64041. weight: math.unit(110, "lb"),
  64042. name: "Back",
  64043. image: {
  64044. source: "./media/characters/salem/back.svg",
  64045. extra: 1875/1802,
  64046. bottom: 20/1895
  64047. }
  64048. },
  64049. head: {
  64050. height: math.unit(1, "feet"),
  64051. name: "Head",
  64052. image: {
  64053. source: "./media/characters/salem/head.svg"
  64054. }
  64055. },
  64056. paw: {
  64057. height: math.unit(0.59, "feet"),
  64058. name: "Paw",
  64059. image: {
  64060. source: "./media/characters/salem/paw.svg"
  64061. }
  64062. },
  64063. beans: {
  64064. height: math.unit(0.66, "feet"),
  64065. name: "Beans",
  64066. image: {
  64067. source: "./media/characters/salem/beans.svg"
  64068. }
  64069. },
  64070. eye: {
  64071. height: math.unit(0.224, "feet"),
  64072. name: "Eye",
  64073. image: {
  64074. source: "./media/characters/salem/eye.svg"
  64075. }
  64076. },
  64077. semiferal: {
  64078. height: math.unit(2.3, "feet"),
  64079. name: "Semiferal",
  64080. image: {
  64081. source: "./media/characters/salem/semiferal.svg",
  64082. extra: 914/839,
  64083. bottom: 32/946
  64084. }
  64085. },
  64086. },
  64087. [
  64088. {
  64089. name: "Micro",
  64090. height: math.unit(4, "inches")
  64091. },
  64092. {
  64093. name: "Normal",
  64094. height: math.unit(5 + 2/12, "feet"),
  64095. default: true
  64096. },
  64097. {
  64098. name: "Macro",
  64099. height: math.unit(108, "feet")
  64100. },
  64101. {
  64102. name: "Macro+",
  64103. height: math.unit(1500, "feet")
  64104. },
  64105. ]
  64106. ))
  64107. characterMakers.push(() => makeCharacter(
  64108. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64109. {
  64110. front: {
  64111. height: math.unit(7 + 6/12, "feet"),
  64112. weight: math.unit(600, "kg"),
  64113. preyCapacity: math.unit(10, "people"),
  64114. name: "Front",
  64115. image: {
  64116. source: "./media/characters/kii/front.svg",
  64117. extra: 3296/3087,
  64118. bottom: 130/3426
  64119. }
  64120. },
  64121. },
  64122. [
  64123. {
  64124. name: "Normal",
  64125. height: math.unit(7 + 6/12, "feet"),
  64126. default: true
  64127. },
  64128. ]
  64129. ))
  64130. characterMakers.push(() => makeCharacter(
  64131. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64132. {
  64133. front: {
  64134. height: math.unit(2, "meters"),
  64135. weight: math.unit(200, "lb"),
  64136. name: "Front",
  64137. image: {
  64138. source: "./media/characters/taffy/front.svg",
  64139. extra: 1666/1618,
  64140. bottom: 157/1823
  64141. }
  64142. },
  64143. back: {
  64144. height: math.unit(2, "meters"),
  64145. weight: math.unit(200, "lb"),
  64146. name: "Back",
  64147. image: {
  64148. source: "./media/characters/taffy/back.svg",
  64149. extra: 1635/1583,
  64150. bottom: 153/1788
  64151. }
  64152. },
  64153. },
  64154. [
  64155. {
  64156. name: "Normal",
  64157. height: math.unit(2, "meters"),
  64158. default: true
  64159. },
  64160. ]
  64161. ))
  64162. characterMakers.push(() => makeCharacter(
  64163. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64164. {
  64165. front: {
  64166. height: math.unit(1.55, "meters"),
  64167. weight: math.unit(60, "kg"),
  64168. name: "Front",
  64169. image: {
  64170. source: "./media/characters/barley/front.svg",
  64171. extra: 1520/1340,
  64172. bottom: 47/1567
  64173. }
  64174. },
  64175. back: {
  64176. height: math.unit(1.55, "meters"),
  64177. weight: math.unit(60, "kg"),
  64178. name: "Back",
  64179. image: {
  64180. source: "./media/characters/barley/back.svg",
  64181. extra: 1543/1341,
  64182. bottom: 12/1555
  64183. }
  64184. },
  64185. feet: {
  64186. height: math.unit(2.18, "feet"),
  64187. name: "Feet",
  64188. image: {
  64189. source: "./media/characters/barley/feet.svg"
  64190. }
  64191. },
  64192. },
  64193. [
  64194. {
  64195. name: "Normal",
  64196. height: math.unit(1.55, "meters"),
  64197. default: true
  64198. },
  64199. ]
  64200. ))
  64201. characterMakers.push(() => makeCharacter(
  64202. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64203. {
  64204. dressed: {
  64205. height: math.unit(6, "feet"),
  64206. name: "Dressed",
  64207. image: {
  64208. source: "./media/characters/lydia-lopez/dressed.svg",
  64209. extra: 1319/1277,
  64210. bottom: 90/1409
  64211. }
  64212. },
  64213. nude: {
  64214. height: math.unit(6, "feet"),
  64215. name: "Nude",
  64216. image: {
  64217. source: "./media/characters/lydia-lopez/nude.svg",
  64218. extra: 1319/1277,
  64219. bottom: 90/1409
  64220. }
  64221. },
  64222. },
  64223. [
  64224. {
  64225. name: "Normal",
  64226. height: math.unit(6, "feet"),
  64227. default: true
  64228. },
  64229. {
  64230. name: "Maximum",
  64231. height: math.unit(2101, "feet")
  64232. },
  64233. ]
  64234. ))
  64235. characterMakers.push(() => makeCharacter(
  64236. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64237. {
  64238. front: {
  64239. height: math.unit(5 + 4/12, "feet"),
  64240. weight: math.unit(250, "lb"),
  64241. volume: math.unit(20, "gallons"),
  64242. name: "Front",
  64243. image: {
  64244. source: "./media/characters/kira-slime/front.svg",
  64245. extra: 442/403,
  64246. bottom: 18/460
  64247. }
  64248. },
  64249. frontNsfw: {
  64250. height: math.unit(5 + 4/12, "feet"),
  64251. weight: math.unit(250, "lb"),
  64252. volume: math.unit(20, "gallons"),
  64253. name: "Front (NSFW)",
  64254. image: {
  64255. source: "./media/characters/kira-slime/front-nsfw.svg",
  64256. extra: 442/403,
  64257. bottom: 18/460
  64258. }
  64259. },
  64260. },
  64261. [
  64262. {
  64263. name: "Droplet",
  64264. height: math.unit(0.0464452, "feet")
  64265. },
  64266. {
  64267. name: "Pint",
  64268. height: math.unit(0.9824, "feet")
  64269. },
  64270. {
  64271. name: "Bucket",
  64272. height: math.unit(2.83, "feet")
  64273. },
  64274. {
  64275. name: "Normal",
  64276. height: math.unit(5 + 4/12, "feet"),
  64277. default: true
  64278. },
  64279. {
  64280. name: "Tub",
  64281. height: math.unit(8.46614, "feet")
  64282. },
  64283. {
  64284. name: "Pool",
  64285. height: math.unit(31.1895, "feet")
  64286. },
  64287. {
  64288. name: "Pond",
  64289. height: math.unit(170.349, "feet")
  64290. },
  64291. {
  64292. name: "Lake",
  64293. height: math.unit(289334, "feet")
  64294. },
  64295. {
  64296. name: "Ocean",
  64297. height: math.unit(1.11940e+7, "feet")
  64298. },
  64299. ]
  64300. ))
  64301. characterMakers.push(() => makeCharacter(
  64302. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64303. {
  64304. front: {
  64305. height: math.unit(5 + 6/12, "feet"),
  64306. weight: math.unit(120, "lb"),
  64307. name: "Front",
  64308. image: {
  64309. source: "./media/characters/holiday/front.svg",
  64310. extra: 456/403,
  64311. bottom: 4/460
  64312. }
  64313. },
  64314. back: {
  64315. height: math.unit(5 + 6/12, "feet"),
  64316. weight: math.unit(120, "lb"),
  64317. name: "Back",
  64318. image: {
  64319. source: "./media/characters/holiday/back.svg",
  64320. extra: 450/404,
  64321. bottom: 12/462
  64322. }
  64323. },
  64324. head: {
  64325. height: math.unit(2.3, "feet"),
  64326. name: "Head",
  64327. image: {
  64328. source: "./media/characters/holiday/head.svg"
  64329. }
  64330. },
  64331. },
  64332. [
  64333. {
  64334. name: "Normal",
  64335. height: math.unit(5 + 6/12, "feet"),
  64336. default: true
  64337. },
  64338. {
  64339. name: "Macro",
  64340. height: math.unit(6574.25, "feet")
  64341. },
  64342. ]
  64343. ))
  64344. characterMakers.push(() => makeCharacter(
  64345. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64346. {
  64347. front: {
  64348. height: math.unit(6 + 2/12, "feet"),
  64349. weight: math.unit(200, "lb"),
  64350. name: "Front",
  64351. image: {
  64352. source: "./media/characters/camina/front.svg",
  64353. extra: 1048/985,
  64354. bottom: 30/1078
  64355. }
  64356. },
  64357. },
  64358. [
  64359. {
  64360. name: "Normal",
  64361. height: math.unit(6 + 2/12, "feet"),
  64362. default: true
  64363. },
  64364. ]
  64365. ))
  64366. characterMakers.push(() => makeCharacter(
  64367. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64368. {
  64369. front: {
  64370. height: math.unit(30, "cm"),
  64371. weight: math.unit(420, "grams"),
  64372. name: "Front",
  64373. image: {
  64374. source: "./media/characters/smuck/front.svg",
  64375. extra: 379/345,
  64376. bottom: 36/415
  64377. }
  64378. },
  64379. },
  64380. [
  64381. {
  64382. name: "Smuck-Sized",
  64383. height: math.unit(30, "cm"),
  64384. default: true
  64385. },
  64386. ]
  64387. ))
  64388. characterMakers.push(() => makeCharacter(
  64389. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64390. {
  64391. frontSfw: {
  64392. height: math.unit(10, "feet"),
  64393. weight: math.unit(1000, "kg"),
  64394. preyCapacity: math.unit(2, "people"),
  64395. name: "Front (SFW)",
  64396. image: {
  64397. source: "./media/characters/bylur/front-sfw.svg",
  64398. extra: 419/343,
  64399. bottom: 3/422
  64400. },
  64401. default: true
  64402. },
  64403. frontSheath: {
  64404. height: math.unit(10, "feet"),
  64405. weight: math.unit(1000, "kg"),
  64406. preyCapacity: math.unit(2, "people"),
  64407. name: "Front (Sheath)",
  64408. image: {
  64409. source: "./media/characters/bylur/front-sheath.svg",
  64410. extra: 419/343,
  64411. bottom: 3/422
  64412. }
  64413. },
  64414. frontErect: {
  64415. height: math.unit(10, "feet"),
  64416. weight: math.unit(1000, "kg"),
  64417. preyCapacity: math.unit(2, "people"),
  64418. name: "Front (Erect)",
  64419. image: {
  64420. source: "./media/characters/bylur/front-erect.svg",
  64421. extra: 419/343,
  64422. bottom: 3/422
  64423. }
  64424. },
  64425. back: {
  64426. height: math.unit(10, "feet"),
  64427. weight: math.unit(1000, "kg"),
  64428. preyCapacity: math.unit(2, "people"),
  64429. name: "Back",
  64430. image: {
  64431. source: "./media/characters/bylur/back.svg",
  64432. extra: 392/315,
  64433. bottom: 3/395
  64434. }
  64435. },
  64436. maw: {
  64437. height: math.unit(3.65, "feet"),
  64438. name: "Maw",
  64439. image: {
  64440. source: "./media/characters/bylur/maw.svg"
  64441. }
  64442. },
  64443. },
  64444. [
  64445. {
  64446. name: "Slightly Human Sized",
  64447. height: math.unit(10, "feet")
  64448. },
  64449. {
  64450. name: "Normal",
  64451. height: math.unit(35, "feet"),
  64452. default: true
  64453. },
  64454. {
  64455. name: "Macro",
  64456. height: math.unit(130, "feet")
  64457. },
  64458. ]
  64459. ))
  64460. characterMakers.push(() => makeCharacter(
  64461. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64462. {
  64463. frontNsfw: {
  64464. height: math.unit(6, "feet"),
  64465. weight: math.unit(250, "lb"),
  64466. preyCapacity: math.unit(0.05, "people"),
  64467. name: "Front (NSFW)",
  64468. image: {
  64469. source: "./media/characters/oarven/front-nsfw.svg",
  64470. extra: 1795/1783,
  64471. bottom: 142/1937
  64472. }
  64473. },
  64474. frontSfw: {
  64475. height: math.unit(6, "feet"),
  64476. weight: math.unit(250, "lb"),
  64477. preyCapacity: math.unit(0.05, "people"),
  64478. name: "Front (SFW)",
  64479. image: {
  64480. source: "./media/characters/oarven/front-sfw.svg",
  64481. extra: 1795/1783,
  64482. bottom: 142/1937
  64483. }
  64484. },
  64485. },
  64486. [
  64487. {
  64488. name: "Megamacro",
  64489. height: math.unit(5, "miles"),
  64490. default: true
  64491. },
  64492. {
  64493. name: "Maximum Height",
  64494. height: math.unit(5, "AUs")
  64495. },
  64496. ]
  64497. ))
  64498. characterMakers.push(() => makeCharacter(
  64499. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64500. {
  64501. side: {
  64502. height: math.unit(1065, "meters"),
  64503. weight: math.unit(1e12, "kg"),
  64504. volume: math.unit(3265000000, "m^3"),
  64505. name: "Side",
  64506. image: {
  64507. source: "./media/characters/solidarity/side.svg"
  64508. }
  64509. },
  64510. front: {
  64511. height: math.unit(1065, "meters"),
  64512. weight: math.unit(3265000000000, "kg"),
  64513. volume: math.unit(3265000000, "m^3"),
  64514. name: "Front",
  64515. image: {
  64516. source: "./media/characters/solidarity/front.svg"
  64517. }
  64518. },
  64519. top: {
  64520. height: math.unit(5823, "meters"),
  64521. weight: math.unit(3265000000000, "kg"),
  64522. volume: math.unit(3265000000, "m^3"),
  64523. name: "Top",
  64524. image: {
  64525. source: "./media/characters/solidarity/top.svg"
  64526. }
  64527. },
  64528. },
  64529. [
  64530. {
  64531. name: "Normal",
  64532. height: math.unit(1065, "meters"),
  64533. default: true
  64534. },
  64535. ]
  64536. ))
  64537. characterMakers.push(() => makeCharacter(
  64538. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64539. {
  64540. side: {
  64541. height: math.unit(18 + 4/12, "feet"),
  64542. weight: math.unit(13000, "kg"),
  64543. name: "Side",
  64544. image: {
  64545. source: "./media/characters/ani'szi/side.svg",
  64546. extra: 468/459,
  64547. bottom: 60/528
  64548. }
  64549. },
  64550. head: {
  64551. height: math.unit(4.8, "feet"),
  64552. name: "Head",
  64553. image: {
  64554. source: "./media/characters/ani'szi/head.svg"
  64555. }
  64556. },
  64557. jaws: {
  64558. height: math.unit(2.25, "feet"),
  64559. name: "Jaws",
  64560. image: {
  64561. source: "./media/characters/ani'szi/jaws.svg"
  64562. }
  64563. },
  64564. bust: {
  64565. height: math.unit(8.9, "feet"),
  64566. name: "Bust",
  64567. image: {
  64568. source: "./media/characters/ani'szi/bust.svg"
  64569. }
  64570. },
  64571. back: {
  64572. height: math.unit(13.53, "feet"),
  64573. name: "Back",
  64574. image: {
  64575. source: "./media/characters/ani'szi/back.svg"
  64576. }
  64577. },
  64578. eye: {
  64579. height: math.unit(0.44, "feet"),
  64580. name: "Eye",
  64581. image: {
  64582. source: "./media/characters/ani'szi/eye.svg"
  64583. }
  64584. },
  64585. },
  64586. [
  64587. {
  64588. name: "Normal",
  64589. height: math.unit(18 + 4/12, "feet"),
  64590. default: true
  64591. },
  64592. ]
  64593. ))
  64594. characterMakers.push(() => makeCharacter(
  64595. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64596. {
  64597. front: {
  64598. height: math.unit(7 + 6/12, "feet"),
  64599. weight: math.unit(300, "lb"),
  64600. name: "Front",
  64601. image: {
  64602. source: "./media/characters/rain/front.svg",
  64603. extra: 2955/2698,
  64604. bottom: 235/3190
  64605. }
  64606. },
  64607. dressed: {
  64608. height: math.unit(7 + 6/12, "feet"),
  64609. weight: math.unit(300, "lb"),
  64610. name: "Dressed",
  64611. image: {
  64612. source: "./media/characters/rain/dressed.svg",
  64613. extra: 2783/2572,
  64614. bottom: 430/3213
  64615. }
  64616. },
  64617. },
  64618. [
  64619. {
  64620. name: "Normal",
  64621. height: math.unit(7 + 6/12, "feet"),
  64622. default: true
  64623. },
  64624. {
  64625. name: "Macro",
  64626. height: math.unit(200, "feet")
  64627. },
  64628. {
  64629. name: "Macro+",
  64630. height: math.unit(500, "feet")
  64631. },
  64632. {
  64633. name: "Megamacro",
  64634. height: math.unit(5, "miles")
  64635. },
  64636. ]
  64637. ))
  64638. characterMakers.push(() => makeCharacter(
  64639. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64640. {
  64641. taur_side: {
  64642. height: math.unit(3, "meters"),
  64643. name: "Side",
  64644. image: {
  64645. source: "./media/characters/anise/taur-side.svg",
  64646. extra: 1833/926,
  64647. bottom: 134/1967
  64648. },
  64649. form: "taur",
  64650. default: true
  64651. },
  64652. feral_side: {
  64653. height: math.unit(3, "meters"),
  64654. name: "Side",
  64655. image: {
  64656. source: "./media/characters/anise/feral-side.svg",
  64657. extra: 681/349,
  64658. bottom: 26/707
  64659. },
  64660. form: "feral"
  64661. },
  64662. },
  64663. [
  64664. {
  64665. name: "Normal",
  64666. height: math.unit(3, "meters"),
  64667. default: true,
  64668. allForms: true
  64669. },
  64670. ],
  64671. {
  64672. "taur": {
  64673. name: "Taur",
  64674. default: true
  64675. },
  64676. "feral": {
  64677. name: "Feral",
  64678. },
  64679. }
  64680. ))
  64681. characterMakers.push(() => makeCharacter(
  64682. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64683. {
  64684. front: {
  64685. height: math.unit(1.9, "meters"),
  64686. weight: math.unit(75, "kg"),
  64687. name: "Front",
  64688. image: {
  64689. source: "./media/characters/sarina/front.svg",
  64690. extra: 1275/1200,
  64691. bottom: 49/1324
  64692. }
  64693. },
  64694. back: {
  64695. height: math.unit(1.9, "meters"),
  64696. weight: math.unit(75, "kg"),
  64697. name: "Back",
  64698. image: {
  64699. source: "./media/characters/sarina/back.svg",
  64700. extra: 1279/1209,
  64701. bottom: 14/1293
  64702. }
  64703. },
  64704. dressed: {
  64705. height: math.unit(1.9, "meters"),
  64706. weight: math.unit(75, "kg"),
  64707. name: "Dressed",
  64708. image: {
  64709. source: "./media/characters/sarina/dressed.svg",
  64710. extra: 1256/1187,
  64711. bottom: 56/1312
  64712. }
  64713. },
  64714. paw: {
  64715. height: math.unit(0.57, "feet"),
  64716. name: "Paw",
  64717. image: {
  64718. source: "./media/characters/sarina/paw.svg"
  64719. }
  64720. },
  64721. toering: {
  64722. height: math.unit(0.27, "feet"),
  64723. name: "Toering",
  64724. image: {
  64725. source: "./media/characters/sarina/toering.svg"
  64726. }
  64727. },
  64728. },
  64729. [
  64730. {
  64731. name: "Incognito",
  64732. height: math.unit(1.9, "meters")
  64733. },
  64734. {
  64735. name: "Home Size",
  64736. height: math.unit(160, "meters"),
  64737. default: true
  64738. },
  64739. {
  64740. name: "Mega",
  64741. height: math.unit(50, "km")
  64742. },
  64743. {
  64744. name: "Small Giga",
  64745. height: math.unit(250, "km")
  64746. },
  64747. {
  64748. name: "Giga (Preferred Size)",
  64749. height: math.unit(3000, "km")
  64750. },
  64751. {
  64752. name: "Terra",
  64753. height: math.unit(40000, "km")
  64754. },
  64755. {
  64756. name: "Terra+",
  64757. height: math.unit(400000, "km")
  64758. },
  64759. {
  64760. name: "Solar",
  64761. height: math.unit(35e6, "km")
  64762. },
  64763. {
  64764. name: "Galactic",
  64765. height: math.unit(648106, "parsecs")
  64766. },
  64767. {
  64768. name: "Universal",
  64769. height: math.unit(7, "universes")
  64770. },
  64771. {
  64772. name: "Universal+",
  64773. height: math.unit(30, "universes")
  64774. },
  64775. ]
  64776. ))
  64777. characterMakers.push(() => makeCharacter(
  64778. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64779. {
  64780. front: {
  64781. height: math.unit(5 + 6/12, "feet"),
  64782. name: "Front",
  64783. image: {
  64784. source: "./media/characters/sifray/front.svg",
  64785. extra: 722/691,
  64786. bottom: 64/786
  64787. }
  64788. },
  64789. },
  64790. [
  64791. {
  64792. name: "Normal",
  64793. height: math.unit(5 + 6/12, "feet"),
  64794. default: true
  64795. },
  64796. ]
  64797. ))
  64798. characterMakers.push(() => makeCharacter(
  64799. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64800. {
  64801. side: {
  64802. height: math.unit(2.64, "feet"),
  64803. weight: math.unit(100, "lb"),
  64804. preyCapacity: math.unit(3, "people"),
  64805. name: "Side",
  64806. image: {
  64807. source: "./media/characters/spots/side.svg",
  64808. extra: 1859/977,
  64809. bottom: 19/1878
  64810. },
  64811. extraAttributes: {
  64812. "preyPerMinute": {
  64813. name: "Prey Per Minute",
  64814. power: 3,
  64815. type: "volume",
  64816. base: math.unit(6, "people"),
  64817. defaultUnit: "people"
  64818. },
  64819. "preyPerDay": {
  64820. name: "Prey Per Day",
  64821. power: 3,
  64822. type: "volume",
  64823. base: math.unit(6 * 60 * 24, "people"),
  64824. defaultUnit: "people"
  64825. },
  64826. }
  64827. },
  64828. },
  64829. [
  64830. {
  64831. name: "Normal",
  64832. height: math.unit(2.64, "feet"),
  64833. default: true
  64834. },
  64835. ]
  64836. ))
  64837. characterMakers.push(() => makeCharacter(
  64838. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64839. {
  64840. front: {
  64841. height: math.unit(29 + 11/12, "feet"),
  64842. weight: math.unit(40, "tons"),
  64843. name: "Front",
  64844. image: {
  64845. source: "./media/characters/mona/front.svg",
  64846. extra: 1257/1116,
  64847. bottom: 34/1291
  64848. }
  64849. },
  64850. },
  64851. [
  64852. {
  64853. name: "Normal",
  64854. height: math.unit(29 + 11/12, "feet"),
  64855. default: true
  64856. },
  64857. ]
  64858. ))
  64859. characterMakers.push(() => makeCharacter(
  64860. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64861. {
  64862. front: {
  64863. height: math.unit(15, "feet"),
  64864. weight: math.unit(3000, "kg"),
  64865. preyCapacity: math.unit(5, "people"),
  64866. name: "Front",
  64867. image: {
  64868. source: "./media/characters/frostfire/front.svg",
  64869. extra: 675/558,
  64870. bottom: 73/748
  64871. }
  64872. },
  64873. side: {
  64874. height: math.unit(15, "feet"),
  64875. weight: math.unit(3000, "kg"),
  64876. preyCapacity: math.unit(5, "people"),
  64877. name: "Side",
  64878. image: {
  64879. source: "./media/characters/frostfire/side.svg",
  64880. extra: 687/585,
  64881. bottom: 50/737
  64882. }
  64883. },
  64884. back: {
  64885. height: math.unit(15, "feet"),
  64886. weight: math.unit(3000, "kg"),
  64887. preyCapacity: math.unit(5, "people"),
  64888. name: "Back",
  64889. image: {
  64890. source: "./media/characters/frostfire/back.svg",
  64891. extra: 707/607,
  64892. bottom: 16/723
  64893. }
  64894. },
  64895. head: {
  64896. height: math.unit(9.35, "feet"),
  64897. name: "Head",
  64898. image: {
  64899. source: "./media/characters/frostfire/head.svg"
  64900. }
  64901. },
  64902. maw: {
  64903. height: math.unit(3.32, "feet"),
  64904. name: "Maw",
  64905. image: {
  64906. source: "./media/characters/frostfire/maw.svg"
  64907. }
  64908. },
  64909. hand: {
  64910. height: math.unit(3.7, "feet"),
  64911. name: "Hand",
  64912. image: {
  64913. source: "./media/characters/frostfire/hand.svg"
  64914. }
  64915. },
  64916. paw: {
  64917. height: math.unit(5.8, "feet"),
  64918. name: "Paw",
  64919. image: {
  64920. source: "./media/characters/frostfire/paw.svg"
  64921. }
  64922. },
  64923. },
  64924. [
  64925. {
  64926. name: "Normal",
  64927. height: math.unit(15, "feet"),
  64928. default: true
  64929. },
  64930. ]
  64931. ))
  64932. characterMakers.push(() => makeCharacter(
  64933. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64934. {
  64935. front: {
  64936. height: math.unit(5 + 2/12, "feet"),
  64937. weight: math.unit(122, "lb"),
  64938. name: "Front",
  64939. image: {
  64940. source: "./media/characters/valeroo/front.svg",
  64941. extra: 1789/1534,
  64942. bottom: 66/1855
  64943. }
  64944. },
  64945. back: {
  64946. height: math.unit(5 + 2/12, "feet"),
  64947. weight: math.unit(122, "lb"),
  64948. name: "Back",
  64949. image: {
  64950. source: "./media/characters/valeroo/back.svg",
  64951. extra: 1848/1588,
  64952. bottom: 68/1916
  64953. }
  64954. },
  64955. head: {
  64956. height: math.unit(1.87, "feet"),
  64957. name: "Head",
  64958. image: {
  64959. source: "./media/characters/valeroo/head.svg"
  64960. }
  64961. },
  64962. hand: {
  64963. height: math.unit(0.82, "feet"),
  64964. name: "Hand",
  64965. image: {
  64966. source: "./media/characters/valeroo/hand.svg"
  64967. }
  64968. },
  64969. foot: {
  64970. height: math.unit(2.42, "feet"),
  64971. name: "Foot",
  64972. image: {
  64973. source: "./media/characters/valeroo/foot.svg"
  64974. }
  64975. },
  64976. },
  64977. [
  64978. {
  64979. name: "Normal",
  64980. height: math.unit(5 + 2/12, "feet"),
  64981. default: true
  64982. },
  64983. ]
  64984. ))
  64985. characterMakers.push(() => makeCharacter(
  64986. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64987. {
  64988. front: {
  64989. height: math.unit(11 + 3/12, "feet"),
  64990. name: "Front",
  64991. image: {
  64992. source: "./media/characters/corrin/front.svg",
  64993. extra: 665/597,
  64994. bottom: 74/739
  64995. }
  64996. },
  64997. },
  64998. [
  64999. {
  65000. name: "Standard",
  65001. height: math.unit(11 + 3/12, "feet"),
  65002. default: true
  65003. },
  65004. {
  65005. name: "The Boss",
  65006. height: math.unit(110, "feet")
  65007. },
  65008. {
  65009. name: "Shipbreaker",
  65010. height: math.unit(38, "km")
  65011. },
  65012. ]
  65013. ))
  65014. characterMakers.push(() => makeCharacter(
  65015. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65016. {
  65017. front: {
  65018. height: math.unit(10, "feet"),
  65019. weight: math.unit(1750, "lb"),
  65020. name: "Front",
  65021. image: {
  65022. source: "./media/characters/kiba-ulrich/front.svg",
  65023. extra: 1037/973,
  65024. bottom: 36/1073
  65025. }
  65026. },
  65027. },
  65028. [
  65029. {
  65030. name: "Normal",
  65031. height: math.unit(10, "feet"),
  65032. default: true
  65033. },
  65034. {
  65035. name: "Minimacro",
  65036. height: math.unit(20, "feet")
  65037. },
  65038. {
  65039. name: "Macro",
  65040. height: math.unit(200, "feet")
  65041. },
  65042. {
  65043. name: "Megamacro",
  65044. height: math.unit(22500, "feet")
  65045. },
  65046. {
  65047. name: "Gigamacro",
  65048. height: math.unit(2700, "miles")
  65049. },
  65050. {
  65051. name: "Teramacro",
  65052. height: math.unit(10000, "miles")
  65053. },
  65054. ]
  65055. ))
  65056. characterMakers.push(() => makeCharacter(
  65057. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65058. {
  65059. gryphon_front: {
  65060. height: math.unit(220, "cm"),
  65061. weight: math.unit(160, "kg"),
  65062. name: "Front",
  65063. image: {
  65064. source: "./media/characters/ceanoth/gryphon-front.svg",
  65065. extra: 616/552,
  65066. bottom: 33/649
  65067. },
  65068. form: "gryphon",
  65069. default: true
  65070. },
  65071. },
  65072. [
  65073. {
  65074. name: "Normal",
  65075. height: math.unit(220, "cm"),
  65076. form: "gryphon",
  65077. default: true
  65078. },
  65079. ],
  65080. {
  65081. "gryphon": {
  65082. name: "Grpyhon",
  65083. default: true
  65084. },
  65085. }
  65086. ))
  65087. characterMakers.push(() => makeCharacter(
  65088. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65089. {
  65090. dressed: {
  65091. height: math.unit(2.2 * 0.79, "meters"),
  65092. weight: math.unit(0.5, "tonnes"),
  65093. name: "Dressed",
  65094. image: {
  65095. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65096. extra: 665/315,
  65097. bottom: 106/771
  65098. },
  65099. extraAttributes: {
  65100. "bodyLength": {
  65101. name: "Body Length",
  65102. power: 1,
  65103. type: "length",
  65104. base: math.unit(2.5, "meters")
  65105. },
  65106. "tailLength": {
  65107. name: "Tail Length",
  65108. power: 1,
  65109. type: "length",
  65110. base: math.unit(4.5, "meters")
  65111. },
  65112. "wingspan": {
  65113. name: "Wingspan",
  65114. power: 1,
  65115. type: "length",
  65116. base: math.unit(6, "meters")
  65117. },
  65118. "taurStomachCapacity": {
  65119. name: "Taur Stomach Capacity",
  65120. power: 3,
  65121. type: "volume",
  65122. base: math.unit(4, "people"),
  65123. defaultUnit: "people"
  65124. },
  65125. "anthroStomachCapacity": {
  65126. name: "Anthro Stomach Capacity",
  65127. power: 3,
  65128. type: "volume",
  65129. base: math.unit(1, "people"),
  65130. defaultUnit: "people"
  65131. },
  65132. }
  65133. },
  65134. nude: {
  65135. height: math.unit(2.2 * 0.79, "meters"),
  65136. weight: math.unit(0.5, "tonnes"),
  65137. name: "Nude",
  65138. image: {
  65139. source: "./media/characters/vanadiya-athelya/nude.svg",
  65140. extra: 665/315,
  65141. bottom: 106/771
  65142. },
  65143. extraAttributes: {
  65144. "bodyLength": {
  65145. name: "Body Length",
  65146. power: 1,
  65147. type: "length",
  65148. base: math.unit(2.5, "meters")
  65149. },
  65150. "tailLength": {
  65151. name: "Tail Length",
  65152. power: 1,
  65153. type: "length",
  65154. base: math.unit(4.5, "meters")
  65155. },
  65156. "wingspan": {
  65157. name: "Wingspan",
  65158. power: 1,
  65159. type: "length",
  65160. base: math.unit(6, "meters")
  65161. },
  65162. "taurStomachCapacity": {
  65163. name: "Taur Stomach Capacity",
  65164. power: 3,
  65165. type: "volume",
  65166. base: math.unit(4, "people"),
  65167. defaultUnit: "people"
  65168. },
  65169. "anthroStomachCapacity": {
  65170. name: "Anthro Stomach Capacity",
  65171. power: 3,
  65172. type: "volume",
  65173. base: math.unit(1, "people"),
  65174. defaultUnit: "people"
  65175. },
  65176. }
  65177. },
  65178. },
  65179. [
  65180. {
  65181. name: "Handheld",
  65182. height: math.unit(0.79 * 0.06, "meters")
  65183. },
  65184. {
  65185. name: "Mini",
  65186. height: math.unit(0.79 * 0.7, "meters")
  65187. },
  65188. {
  65189. name: "Short",
  65190. height: math.unit(0.79 * 1.4, "meters")
  65191. },
  65192. {
  65193. name: "Imposing",
  65194. height: math.unit(0.79 * 2.2, "meters"),
  65195. default: true
  65196. },
  65197. {
  65198. name: "Big",
  65199. height: math.unit(0.79 * 3.8, "meters")
  65200. },
  65201. {
  65202. name: "Giant",
  65203. height: math.unit(0.79 * 6.7, "meters")
  65204. },
  65205. {
  65206. name: "Airliner",
  65207. height: math.unit(0.79 * 64, "meters")
  65208. },
  65209. {
  65210. name: "Skyscraper",
  65211. height: math.unit(0.79 * 220, "meters")
  65212. },
  65213. {
  65214. name: "Mountain",
  65215. height: math.unit(0.79 * 3.6, "km")
  65216. },
  65217. {
  65218. name: "Spacescraper",
  65219. height: math.unit(0.79 * 70, "km")
  65220. },
  65221. {
  65222. name: "Continental",
  65223. height: math.unit(0.79 * 1290, "km")
  65224. },
  65225. {
  65226. name: "Moon",
  65227. height: math.unit(0.79 * 32200, "km")
  65228. },
  65229. {
  65230. name: "Planetary",
  65231. height: math.unit(0.79 * 145000, "km")
  65232. },
  65233. {
  65234. name: "Stellar",
  65235. height: math.unit(0.79 * 19e6, "km")
  65236. },
  65237. {
  65238. name: "Solar",
  65239. height: math.unit(0.79 * 40, "AU")
  65240. },
  65241. {
  65242. name: "Intersteller",
  65243. height: math.unit(0.79 * 3, "lightyears")
  65244. },
  65245. {
  65246. name: "Star Cluster",
  65247. height: math.unit(0.79 * 80, "lightyears")
  65248. },
  65249. {
  65250. name: "Ecumenical",
  65251. height: math.unit(0.79 * 2e3, "lightyears")
  65252. },
  65253. {
  65254. name: "Galactic",
  65255. height: math.unit(0.79 * 175000, "lightyears")
  65256. },
  65257. {
  65258. name: "Galaxy Cluster",
  65259. height: math.unit(0.79 * 25e6, "lightyears")
  65260. },
  65261. ]
  65262. ))
  65263. characterMakers.push(() => makeCharacter(
  65264. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65265. {
  65266. front: {
  65267. height: math.unit(6 + 2/12, "feet"),
  65268. weight: math.unit(160, "lb"),
  65269. name: "Front",
  65270. image: {
  65271. source: "./media/characters/yana-amelin/front.svg",
  65272. extra: 1413/1295,
  65273. bottom: 42/1455
  65274. }
  65275. },
  65276. back: {
  65277. height: math.unit(6 + 2/12, "feet"),
  65278. weight: math.unit(160, "lb"),
  65279. name: "Back",
  65280. image: {
  65281. source: "./media/characters/yana-amelin/back.svg",
  65282. extra: 1424/1310,
  65283. bottom: 24/1448
  65284. }
  65285. },
  65286. paws: {
  65287. height: math.unit(1.48, "feet"),
  65288. name: "Paws",
  65289. image: {
  65290. source: "./media/characters/yana-amelin/paws.svg",
  65291. extra: 304/304,
  65292. bottom: 49/353
  65293. }
  65294. },
  65295. },
  65296. [
  65297. {
  65298. name: "Micro",
  65299. height: math.unit(4, "inches")
  65300. },
  65301. {
  65302. name: "Normal",
  65303. height: math.unit(6 + 2/12, "feet"),
  65304. default: true
  65305. },
  65306. {
  65307. name: "Minimacro",
  65308. height: math.unit(20, "feet")
  65309. },
  65310. {
  65311. name: "Macro",
  65312. height: math.unit(70, "feet")
  65313. },
  65314. ]
  65315. ))
  65316. characterMakers.push(() => makeCharacter(
  65317. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65318. {
  65319. frontNsfw: {
  65320. height: math.unit(2.48, "meters"),
  65321. weight: math.unit(112, "kg"),
  65322. name: "Front (NSFW)",
  65323. image: {
  65324. source: "./media/characters/titania/front-nsfw.svg",
  65325. extra: 1302/1232,
  65326. bottom: 90/1392
  65327. }
  65328. },
  65329. backNsfw: {
  65330. height: math.unit(2.48, "meters"),
  65331. weight: math.unit(112, "kg"),
  65332. name: "Back (NSFW)",
  65333. image: {
  65334. source: "./media/characters/titania/back-nsfw.svg",
  65335. extra: 1355/1288,
  65336. bottom: 18/1373
  65337. }
  65338. },
  65339. frontSfw: {
  65340. height: math.unit(2.48, "meters"),
  65341. weight: math.unit(112, "kg"),
  65342. name: "Front (SFW)",
  65343. image: {
  65344. source: "./media/characters/titania/front-sfw.svg",
  65345. extra: 1302/1232,
  65346. bottom: 90/1392
  65347. }
  65348. },
  65349. backSfw: {
  65350. height: math.unit(2.48, "meters"),
  65351. weight: math.unit(112, "kg"),
  65352. name: "Back (SFW)",
  65353. image: {
  65354. source: "./media/characters/titania/back-sfw.svg",
  65355. extra: 1355/1288,
  65356. bottom: 18/1373
  65357. }
  65358. },
  65359. head: {
  65360. height: math.unit(2.06, "feet"),
  65361. name: "Head",
  65362. image: {
  65363. source: "./media/characters/titania/head.svg"
  65364. }
  65365. },
  65366. maw: {
  65367. height: math.unit(0.8, "feet"),
  65368. name: "Maw",
  65369. image: {
  65370. source: "./media/characters/titania/maw.svg"
  65371. }
  65372. },
  65373. foot: {
  65374. height: math.unit(1.65, "feet"),
  65375. name: "Foot",
  65376. image: {
  65377. source: "./media/characters/titania/foot.svg"
  65378. }
  65379. },
  65380. nethers: {
  65381. height: math.unit(1.7, "feet"),
  65382. name: "Nethers",
  65383. image: {
  65384. source: "./media/characters/titania/nethers.svg"
  65385. }
  65386. },
  65387. },
  65388. [
  65389. {
  65390. name: "Normal",
  65391. height: math.unit(2.48, "meters"),
  65392. default: true
  65393. },
  65394. {
  65395. name: "Mini Macro",
  65396. height: math.unit(248, "meters")
  65397. },
  65398. {
  65399. name: "Macro",
  65400. height: math.unit(620, "meters")
  65401. },
  65402. {
  65403. name: "Mega Macro",
  65404. height: math.unit(1860, "meters")
  65405. },
  65406. ]
  65407. ))
  65408. characterMakers.push(() => makeCharacter(
  65409. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65410. {
  65411. front: {
  65412. height: math.unit(5 + 9/12, "feet"),
  65413. weight: math.unit(1500, "lb"),
  65414. name: "Front",
  65415. image: {
  65416. source: "./media/characters/tony-gray/front.svg",
  65417. extra: 700/575,
  65418. bottom: 71/771
  65419. }
  65420. },
  65421. },
  65422. [
  65423. {
  65424. name: "Normal",
  65425. height: math.unit(5 + 9/12, "feet"),
  65426. default: true
  65427. },
  65428. ]
  65429. ))
  65430. characterMakers.push(() => makeCharacter(
  65431. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65432. {
  65433. side: {
  65434. height: math.unit(8 + 2/12, "feet"),
  65435. name: "Side",
  65436. image: {
  65437. source: "./media/characters/kelby/side.svg",
  65438. extra: 804/578,
  65439. bottom: 70/874
  65440. },
  65441. form: "regular",
  65442. default: true
  65443. },
  65444. lounging: {
  65445. height: math.unit(12.41, "feet"),
  65446. name: "Lounging",
  65447. image: {
  65448. source: "./media/characters/kelby/lounging.svg"
  65449. },
  65450. form: "regular"
  65451. },
  65452. maw: {
  65453. height: math.unit(5, "feet"),
  65454. name: "Maw",
  65455. image: {
  65456. source: "./media/characters/kelby/maw.svg"
  65457. },
  65458. form: "regular"
  65459. },
  65460. dick: {
  65461. height: math.unit(2.4, "feet"),
  65462. name: "Dick",
  65463. image: {
  65464. source: "./media/characters/kelby/dick.svg"
  65465. },
  65466. form: "regular"
  65467. },
  65468. slit: {
  65469. height: math.unit(1.2, "feet"),
  65470. name: "Slit",
  65471. image: {
  65472. source: "./media/characters/kelby/slit.svg"
  65473. },
  65474. form: "regular"
  65475. },
  65476. chibi: {
  65477. height: math.unit(5, "feet"),
  65478. name: "Chibi",
  65479. image: {
  65480. source: "./media/characters/kelby/chibi.svg",
  65481. extra: 245/200,
  65482. bottom: 43/288
  65483. },
  65484. form: "chibi",
  65485. default: true
  65486. },
  65487. },
  65488. [
  65489. {
  65490. name: "Normal",
  65491. height: math.unit(8 + 2/12, "feet"),
  65492. default: true,
  65493. form: "regular"
  65494. },
  65495. {
  65496. name: "Normal",
  65497. height: math.unit(5, "feet"),
  65498. default: true,
  65499. form: "chibi"
  65500. },
  65501. ],
  65502. {
  65503. "regular": {
  65504. name: "Regular",
  65505. default: true
  65506. },
  65507. "chibi": {
  65508. name: "Chibi",
  65509. },
  65510. }
  65511. ))
  65512. characterMakers.push(() => makeCharacter(
  65513. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65514. {
  65515. front: {
  65516. height: math.unit(7 + 10/12, "feet"),
  65517. weight: math.unit(300, "lb"),
  65518. name: "Front",
  65519. image: {
  65520. source: "./media/characters/elisa-mitchell/front.svg",
  65521. extra: 2562/2355,
  65522. bottom: 62/2624
  65523. }
  65524. },
  65525. maw: {
  65526. height: math.unit(2.37, "feet"),
  65527. name: "Maw",
  65528. image: {
  65529. source: "./media/characters/elisa-mitchell/maw.svg"
  65530. }
  65531. },
  65532. },
  65533. [
  65534. {
  65535. name: "Normal",
  65536. height: math.unit(7 + 10/12, "feet"),
  65537. default: true
  65538. },
  65539. {
  65540. name: "Macro",
  65541. height: math.unit(1490, "feet"),
  65542. default: true
  65543. },
  65544. ]
  65545. ))
  65546. characterMakers.push(() => makeCharacter(
  65547. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65548. {
  65549. front: {
  65550. height: math.unit(122, "cm"),
  65551. weight: math.unit(40, "lb"),
  65552. name: "Front",
  65553. image: {
  65554. source: "./media/characters/camia-vertigo-zott/front.svg",
  65555. extra: 2112/1902,
  65556. bottom: 21/2133
  65557. }
  65558. },
  65559. },
  65560. [
  65561. {
  65562. name: "Base Height",
  65563. height: math.unit(122, "cm")
  65564. },
  65565. {
  65566. name: "Macro Height",
  65567. height: math.unit(345, "meters"),
  65568. default: true
  65569. },
  65570. ]
  65571. ))
  65572. characterMakers.push(() => makeCharacter(
  65573. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65574. {
  65575. front: {
  65576. height: math.unit(6 + 3/12, "feet"),
  65577. weight: math.unit(180, "lb"),
  65578. name: "Front",
  65579. image: {
  65580. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65581. extra: 2580/2457,
  65582. bottom: 131/2711
  65583. }
  65584. },
  65585. },
  65586. [
  65587. {
  65588. name: "Normal",
  65589. height: math.unit(6 + 3/12, "feet"),
  65590. default: true
  65591. },
  65592. ]
  65593. ))
  65594. characterMakers.push(() => makeCharacter(
  65595. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65596. {
  65597. front: {
  65598. height: math.unit(165, "cm"),
  65599. weight: math.unit(130, "lb"),
  65600. name: "Front",
  65601. image: {
  65602. source: "./media/characters/sleeka/front.svg",
  65603. extra: 1252/1200,
  65604. bottom: 46/1298
  65605. }
  65606. },
  65607. },
  65608. [
  65609. {
  65610. name: "Normal",
  65611. height: math.unit(165, "cm")
  65612. },
  65613. {
  65614. name: "Galactic",
  65615. height: math.unit(5.8e22, "meters"),
  65616. default: true
  65617. },
  65618. {
  65619. name: "Universal",
  65620. height: math.unit(1.02e29, "meters")
  65621. },
  65622. ]
  65623. ))
  65624. characterMakers.push(() => makeCharacter(
  65625. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65626. {
  65627. front: {
  65628. height: math.unit(5 + 11/12, "feet"),
  65629. weight: math.unit(145, "lb"),
  65630. name: "Front",
  65631. image: {
  65632. source: "./media/characters/emily-whitetail/front.svg",
  65633. extra: 2510/2280,
  65634. bottom: 128/2638
  65635. }
  65636. },
  65637. },
  65638. [
  65639. {
  65640. name: "Normal",
  65641. height: math.unit(5 + 11/12, "feet")
  65642. },
  65643. {
  65644. name: "Galactic",
  65645. height: math.unit(6.3e22, "meters"),
  65646. default: true
  65647. },
  65648. {
  65649. name: "Universal",
  65650. height: math.unit(1.12e29, "meters")
  65651. },
  65652. ]
  65653. ))
  65654. characterMakers.push(() => makeCharacter(
  65655. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65656. {
  65657. front: {
  65658. height: math.unit(5 + 4/12, "feet"),
  65659. weight: math.unit(110, "lb"),
  65660. name: "Front",
  65661. image: {
  65662. source: "./media/characters/buck-whitetail/front.svg",
  65663. extra: 2430/2186,
  65664. bottom: 125/2555
  65665. }
  65666. },
  65667. },
  65668. [
  65669. {
  65670. name: "Normal",
  65671. height: math.unit(5 + 4/12, "feet")
  65672. },
  65673. {
  65674. name: "Galactic",
  65675. height: math.unit(5.4e22, "meters"),
  65676. default: true
  65677. },
  65678. {
  65679. name: "Universal",
  65680. height: math.unit(9.6e28, "meters")
  65681. },
  65682. ]
  65683. ))
  65684. characterMakers.push(() => makeCharacter(
  65685. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65686. {
  65687. front: {
  65688. height: math.unit(5 + 3/12, "feet"),
  65689. name: "Front",
  65690. image: {
  65691. source: "./media/characters/zoey-frisk/front.svg",
  65692. extra: 2825/2646,
  65693. bottom: 57/2882
  65694. }
  65695. },
  65696. },
  65697. [
  65698. {
  65699. name: "Normal",
  65700. height: math.unit(5 + 3/12, "feet"),
  65701. default: true
  65702. },
  65703. {
  65704. name: "Macro",
  65705. height: math.unit(800, "feet")
  65706. },
  65707. ]
  65708. ))
  65709. characterMakers.push(() => makeCharacter(
  65710. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65711. {
  65712. front: {
  65713. height: math.unit(210, "cm"),
  65714. weight: math.unit(102, "kg"),
  65715. name: "Front",
  65716. image: {
  65717. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65718. extra: 831/790,
  65719. bottom: 19/850
  65720. }
  65721. },
  65722. },
  65723. [
  65724. {
  65725. name: "Micro",
  65726. height: math.unit(1, "mm")
  65727. },
  65728. {
  65729. name: "Small",
  65730. height: math.unit(1, "cm")
  65731. },
  65732. {
  65733. name: "Short",
  65734. height: math.unit(1, "foot")
  65735. },
  65736. {
  65737. name: "Normal",
  65738. height: math.unit(210, "cm"),
  65739. default: true
  65740. },
  65741. {
  65742. name: "Big",
  65743. height: math.unit(15, "feet")
  65744. },
  65745. {
  65746. name: "Macro",
  65747. height: math.unit(50, "feet")
  65748. },
  65749. ]
  65750. ))
  65751. characterMakers.push(() => makeCharacter(
  65752. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65753. {
  65754. front: {
  65755. height: math.unit(80, "feet"),
  65756. weight: math.unit(410000, "lb"),
  65757. name: "Front",
  65758. image: {
  65759. source: "./media/characters/trouble/front.svg",
  65760. extra: 780/723,
  65761. bottom: 11/791
  65762. },
  65763. extraAttributes: {
  65764. "pawArea": {
  65765. name: "Paw Area",
  65766. power: 2,
  65767. type: "area",
  65768. base: math.unit(49, "feet^2")
  65769. },
  65770. }
  65771. },
  65772. },
  65773. [
  65774. {
  65775. name: "Normal",
  65776. height: math.unit(80, "feet"),
  65777. default: true
  65778. },
  65779. ]
  65780. ))
  65781. characterMakers.push(() => makeCharacter(
  65782. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65783. {
  65784. front: {
  65785. height: math.unit(5 + 7/12, "feet"),
  65786. weight: math.unit(140, "lb"),
  65787. name: "Front",
  65788. image: {
  65789. source: "./media/characters/bastion-aralus/front.svg",
  65790. extra: 1122/1045,
  65791. bottom: 24/1146
  65792. }
  65793. },
  65794. back: {
  65795. height: math.unit(5 + 7/12, "feet"),
  65796. weight: math.unit(140, "lb"),
  65797. name: "Back",
  65798. image: {
  65799. source: "./media/characters/bastion-aralus/back.svg",
  65800. extra: 1158/1078,
  65801. bottom: 39/1197
  65802. }
  65803. },
  65804. dick: {
  65805. height: math.unit(1.16, "feet"),
  65806. name: "Dick",
  65807. image: {
  65808. source: "./media/characters/bastion-aralus/dick.svg"
  65809. }
  65810. },
  65811. },
  65812. [
  65813. {
  65814. name: "Micro",
  65815. height: math.unit(1, "mm")
  65816. },
  65817. {
  65818. name: "Normal",
  65819. height: math.unit(5 + 7/12, "feet"),
  65820. default: true
  65821. },
  65822. {
  65823. name: "Macro",
  65824. height: math.unit(57, "feet")
  65825. },
  65826. ]
  65827. ))
  65828. characterMakers.push(() => makeCharacter(
  65829. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  65830. {
  65831. sona_front: {
  65832. height: math.unit(6, "feet"),
  65833. weight: math.unit(350, "lb"),
  65834. name: "Front",
  65835. image: {
  65836. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  65837. extra: 1099/1005,
  65838. bottom: 22/1121
  65839. },
  65840. form: "sona",
  65841. default: true
  65842. },
  65843. sona_side: {
  65844. height: math.unit(6, "feet"),
  65845. weight: math.unit(350, "lb"),
  65846. name: "Side",
  65847. image: {
  65848. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  65849. extra: 1075/1017,
  65850. bottom: 20/1095
  65851. },
  65852. form: "sona",
  65853. },
  65854. character_front: {
  65855. height: math.unit(6, "feet"),
  65856. weight: math.unit(300, "lb"),
  65857. name: "Front",
  65858. image: {
  65859. source: "./media/characters/midnight-yamikidate/character-front.svg",
  65860. extra: 1099/1005,
  65861. bottom: 22/1121
  65862. },
  65863. form: "character",
  65864. default: true
  65865. },
  65866. character_side: {
  65867. height: math.unit(6, "feet"),
  65868. weight: math.unit(300, "lb"),
  65869. name: "Side",
  65870. image: {
  65871. source: "./media/characters/midnight-yamikidate/character-side.svg",
  65872. extra: 1075/1017,
  65873. bottom: 20/1095
  65874. },
  65875. form: "character",
  65876. },
  65877. },
  65878. [
  65879. {
  65880. name: "Normal",
  65881. height: math.unit(500, "feet"),
  65882. default: true,
  65883. form: "sona"
  65884. },
  65885. {
  65886. name: "Normal",
  65887. height: math.unit(50, "feet"),
  65888. default: true,
  65889. form: "character"
  65890. },
  65891. ],
  65892. {
  65893. "sona": {
  65894. name: "Sona",
  65895. default: true
  65896. },
  65897. "character": {
  65898. name: "Character",
  65899. },
  65900. }
  65901. ))
  65902. characterMakers.push(() => makeCharacter(
  65903. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  65904. {
  65905. front: {
  65906. height: math.unit(5 + 4/12, "feet"),
  65907. weight: math.unit(58, "kg"),
  65908. name: "Front",
  65909. image: {
  65910. source: "./media/characters/hood/front.svg",
  65911. extra: 1474/1309,
  65912. bottom: 0/1474
  65913. }
  65914. },
  65915. },
  65916. [
  65917. {
  65918. name: "Normal",
  65919. height: math.unit(5 + 4/12, "feet"),
  65920. default: true
  65921. },
  65922. ]
  65923. ))
  65924. characterMakers.push(() => makeCharacter(
  65925. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  65926. {
  65927. front: {
  65928. height: math.unit(8 + 2/12, "feet"),
  65929. name: "Front",
  65930. image: {
  65931. source: "./media/characters/rena/front.svg",
  65932. extra: 1768/1632,
  65933. bottom: 57/1825
  65934. }
  65935. },
  65936. },
  65937. [
  65938. {
  65939. name: "Normal",
  65940. height: math.unit(8 + 2/12, "feet"),
  65941. default: true
  65942. },
  65943. ]
  65944. ))
  65945. characterMakers.push(() => makeCharacter(
  65946. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  65947. {
  65948. front: {
  65949. height: math.unit(5 + 3/12, "feet"),
  65950. name: "Front",
  65951. image: {
  65952. source: "./media/characters/taylor-dilophosaurus/front.svg",
  65953. extra: 1209/1159,
  65954. bottom: 33/1242
  65955. }
  65956. },
  65957. maw: {
  65958. height: math.unit(1.75, "feet"),
  65959. name: "Maw",
  65960. image: {
  65961. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  65962. }
  65963. },
  65964. },
  65965. [
  65966. {
  65967. name: "Micro",
  65968. height: math.unit(3, "inches")
  65969. },
  65970. {
  65971. name: "Regular",
  65972. height: math.unit(5 + 3/12, "feet"),
  65973. default: true
  65974. },
  65975. {
  65976. name: "Imagined",
  65977. height: math.unit(90, "meters")
  65978. },
  65979. ]
  65980. ))
  65981. characterMakers.push(() => makeCharacter(
  65982. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  65983. {
  65984. front: {
  65985. height: math.unit(11.75, "feet"),
  65986. weight: math.unit(4346, "lb"),
  65987. preyCapacity: math.unit(20, "people"),
  65988. name: "Front",
  65989. image: {
  65990. source: "./media/characters/suma-roo/front.svg",
  65991. extra: 1370/1365,
  65992. bottom: 164/1534
  65993. }
  65994. },
  65995. },
  65996. [
  65997. {
  65998. name: "Normal",
  65999. height: math.unit(11.75, "feet"),
  66000. default: true
  66001. },
  66002. ]
  66003. ))
  66004. characterMakers.push(() => makeCharacter(
  66005. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66006. {
  66007. front: {
  66008. height: math.unit(2.35, "meters"),
  66009. weight: math.unit(240, "kg"),
  66010. name: "Front",
  66011. image: {
  66012. source: "./media/characters/hymmanios/front.svg",
  66013. extra: 2032/1994,
  66014. bottom: 194/2226
  66015. }
  66016. },
  66017. },
  66018. [
  66019. {
  66020. name: "Normal",
  66021. height: math.unit(2.35, "meters"),
  66022. default: true
  66023. },
  66024. {
  66025. name: "Macro",
  66026. height: math.unit(75, "meters")
  66027. },
  66028. {
  66029. name: "Mega",
  66030. height: math.unit(1250, "meters")
  66031. },
  66032. {
  66033. name: "Giga",
  66034. height: math.unit(235000, "meters")
  66035. },
  66036. ]
  66037. ))
  66038. characterMakers.push(() => makeCharacter(
  66039. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66040. {
  66041. front: {
  66042. height: math.unit(134, "feet"),
  66043. weight: math.unit(932.635, "tons"),
  66044. name: "Front",
  66045. image: {
  66046. source: "./media/characters/azalea/front.svg",
  66047. extra: 703/687,
  66048. bottom: 75/778
  66049. }
  66050. },
  66051. },
  66052. [
  66053. {
  66054. name: "Normal",
  66055. height: math.unit(134, "feet"),
  66056. default: true
  66057. },
  66058. ]
  66059. ))
  66060. characterMakers.push(() => makeCharacter(
  66061. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66062. {
  66063. front: {
  66064. height: math.unit(6.4, "feet"),
  66065. weight: math.unit(167.5, "lb"),
  66066. name: "Front",
  66067. image: {
  66068. source: "./media/characters/lizzy/front.svg",
  66069. extra: 1916/1791,
  66070. bottom: 103/2019
  66071. }
  66072. },
  66073. back: {
  66074. height: math.unit(6.4, "feet"),
  66075. weight: math.unit(167.5, "lb"),
  66076. name: "Back",
  66077. image: {
  66078. source: "./media/characters/lizzy/back.svg",
  66079. extra: 1995/1856,
  66080. bottom: 11/2006
  66081. }
  66082. },
  66083. },
  66084. [
  66085. {
  66086. name: "Normal",
  66087. height: math.unit(6.4, "feet"),
  66088. default: true
  66089. },
  66090. ]
  66091. ))
  66092. characterMakers.push(() => makeCharacter(
  66093. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66094. {
  66095. front: {
  66096. height: math.unit(66, "inches"),
  66097. name: "Front",
  66098. image: {
  66099. source: "./media/characters/sasha/front.svg",
  66100. extra: 620/571,
  66101. bottom: 33/653
  66102. }
  66103. },
  66104. back: {
  66105. height: math.unit(66, "inches"),
  66106. name: "Back",
  66107. image: {
  66108. source: "./media/characters/sasha/back.svg",
  66109. extra: 615/564,
  66110. bottom: 38/653
  66111. }
  66112. },
  66113. },
  66114. [
  66115. {
  66116. name: "IRL",
  66117. height: math.unit(2, "inches")
  66118. },
  66119. {
  66120. name: "Normal",
  66121. height: math.unit(66, "inches"),
  66122. default: true
  66123. },
  66124. {
  66125. name: "Macro",
  66126. height: math.unit(400, "feet")
  66127. },
  66128. {
  66129. name: "Mega Macro",
  66130. height: math.unit(500000, "feet")
  66131. },
  66132. {
  66133. name: "Giga Macro",
  66134. height: math.unit(50000, "miles")
  66135. },
  66136. ]
  66137. ))
  66138. characterMakers.push(() => makeCharacter(
  66139. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66140. {
  66141. front: {
  66142. height: math.unit(52, "inches"),
  66143. name: "Front",
  66144. image: {
  66145. source: "./media/characters/autumn-avali/front.svg",
  66146. extra: 1031/908,
  66147. bottom: 38/1069
  66148. }
  66149. },
  66150. back: {
  66151. height: math.unit(52, "inches"),
  66152. name: "Back",
  66153. image: {
  66154. source: "./media/characters/autumn-avali/back.svg",
  66155. extra: 1047/923,
  66156. bottom: 11/1058
  66157. }
  66158. },
  66159. maw: {
  66160. height: math.unit(0.59, "feet"),
  66161. name: "Maw",
  66162. image: {
  66163. source: "./media/characters/autumn-avali/maw.svg"
  66164. }
  66165. },
  66166. },
  66167. [
  66168. {
  66169. name: "Normal",
  66170. height: math.unit(52, "inches"),
  66171. default: true
  66172. },
  66173. {
  66174. name: "Big'vali",
  66175. height: math.unit(3.5, "meters")
  66176. },
  66177. {
  66178. name: "Macro",
  66179. height: math.unit(35, "meters")
  66180. },
  66181. {
  66182. name: "Macro+",
  66183. height: math.unit(165, "meters")
  66184. },
  66185. {
  66186. name: "Megamacro",
  66187. height: math.unit(8250, "meters")
  66188. },
  66189. {
  66190. name: "Megamacro+",
  66191. height: math.unit(88000, "meters")
  66192. },
  66193. {
  66194. name: "Gigamacro",
  66195. height: math.unit(1.32, "megameters")
  66196. },
  66197. {
  66198. name: "Planet Cracker",
  66199. height: math.unit(77, "megameters")
  66200. },
  66201. ]
  66202. ))
  66203. //characters
  66204. function makeCharacters() {
  66205. const results = [];
  66206. characterMakers.forEach(character => {
  66207. results.push(character());
  66208. });
  66209. return results;
  66210. }