less copy protection, more size visualization
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

63544 linhas
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  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. }
  2327. //species
  2328. function getSpeciesInfo(speciesList) {
  2329. let result = new Set();
  2330. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2331. result.add(entry)
  2332. });
  2333. return Array.from(result);
  2334. };
  2335. function getSpeciesInfoHelper(species) {
  2336. if (!speciesData[species]) {
  2337. console.warn(species + " doesn't exist");
  2338. return [];
  2339. }
  2340. if (speciesData[species].parents) {
  2341. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2342. } else {
  2343. return [species];
  2344. }
  2345. }
  2346. characterMakers.push(() => makeCharacter(
  2347. {
  2348. name: "Fen",
  2349. species: ["crux"],
  2350. description: {
  2351. title: "Bio",
  2352. text: "Very furry. Sheds on everything."
  2353. },
  2354. tags: [
  2355. "anthro",
  2356. "goo"
  2357. ]
  2358. },
  2359. {
  2360. front: {
  2361. height: math.unit(12, "feet"),
  2362. weight: math.unit(2400, "lb"),
  2363. preyCapacity: math.unit(1, "people"),
  2364. name: "Front",
  2365. image: {
  2366. source: "./media/characters/fen/front.svg",
  2367. extra: 1804/1562,
  2368. bottom: 205/2009
  2369. },
  2370. extraAttributes: {
  2371. pawSize: {
  2372. name: "Paw Size",
  2373. power: 2,
  2374. type: "area",
  2375. base: math.unit(0.35, "m^2")
  2376. }
  2377. }
  2378. },
  2379. diving: {
  2380. height: math.unit(4.9, "meters"),
  2381. weight: math.unit(2400, "lb"),
  2382. name: "Diving",
  2383. image: {
  2384. source: "./media/characters/fen/diving.svg"
  2385. }
  2386. },
  2387. sleeby: {
  2388. height: math.unit(3.45, "meters"),
  2389. weight: math.unit(2400, "lb"),
  2390. name: "Sleeby",
  2391. image: {
  2392. source: "./media/characters/fen/sleeby.svg"
  2393. }
  2394. },
  2395. goo: {
  2396. height: math.unit(12, "feet"),
  2397. weight: math.unit(3600, "lb"),
  2398. volume: math.unit(1000, "liters"),
  2399. preyCapacity: math.unit(6, "people"),
  2400. name: "Goo",
  2401. image: {
  2402. source: "./media/characters/fen/goo.svg",
  2403. extra: 1307/1071,
  2404. bottom: 134/1441
  2405. }
  2406. },
  2407. horror: {
  2408. height: math.unit(13.6, "feet"),
  2409. weight: math.unit(2400, "lb"),
  2410. preyCapacity: math.unit(1, "people"),
  2411. name: "Horror",
  2412. image: {
  2413. source: "./media/characters/fen/horror.svg",
  2414. extra: 893/797,
  2415. bottom: 0/893
  2416. }
  2417. },
  2418. gooNsfw: {
  2419. height: math.unit(12, "feet"),
  2420. weight: math.unit(3750, "lb"),
  2421. volume: math.unit(1000, "liters"),
  2422. preyCapacity: math.unit(6, "people"),
  2423. name: "Goo (NSFW)",
  2424. image: {
  2425. source: "./media/characters/fen/goo-nsfw.svg",
  2426. extra: 1875/1734,
  2427. bottom: 122/1997
  2428. }
  2429. },
  2430. maw: {
  2431. height: math.unit(5.03, "feet"),
  2432. name: "Maw",
  2433. image: {
  2434. source: "./media/characters/fen/maw.svg"
  2435. }
  2436. },
  2437. gooCeiling: {
  2438. height: math.unit(6.6, "feet"),
  2439. weight: math.unit(3000, "lb"),
  2440. volume: math.unit(1000, "liters"),
  2441. preyCapacity: math.unit(6, "people"),
  2442. name: "Maw (Goo)",
  2443. image: {
  2444. source: "./media/characters/fen/goo-maw.svg"
  2445. }
  2446. },
  2447. paw: {
  2448. height: math.unit(3.77, "feet"),
  2449. name: "Paw",
  2450. image: {
  2451. source: "./media/characters/fen/paw.svg"
  2452. },
  2453. extraAttributes: {
  2454. "toeSize": {
  2455. name: "Toe Size",
  2456. power: 2,
  2457. type: "area",
  2458. base: math.unit(0.02875, "m^2")
  2459. },
  2460. "pawSize": {
  2461. name: "Paw Size",
  2462. power: 2,
  2463. type: "area",
  2464. base: math.unit(0.378, "m^2")
  2465. },
  2466. }
  2467. },
  2468. tail: {
  2469. height: math.unit(12.1, "feet"),
  2470. name: "Tail",
  2471. image: {
  2472. source: "./media/characters/fen/tail.svg"
  2473. }
  2474. },
  2475. tailFull: {
  2476. height: math.unit(12.1, "feet"),
  2477. name: "Full Tail",
  2478. image: {
  2479. source: "./media/characters/fen/tail-full.svg"
  2480. }
  2481. },
  2482. back: {
  2483. height: math.unit(12, "feet"),
  2484. weight: math.unit(2400, "lb"),
  2485. name: "Back",
  2486. image: {
  2487. source: "./media/characters/fen/back.svg",
  2488. },
  2489. info: {
  2490. description: {
  2491. mode: "append",
  2492. text: "\n\nHe is not currently looking at you."
  2493. }
  2494. }
  2495. },
  2496. full: {
  2497. height: math.unit(1.85, "meter"),
  2498. weight: math.unit(3200, "lb"),
  2499. preyCapacity: math.unit(3, "people"),
  2500. name: "Full",
  2501. image: {
  2502. source: "./media/characters/fen/full.svg",
  2503. extra: 1133/859,
  2504. bottom: 145/1278
  2505. },
  2506. info: {
  2507. description: {
  2508. mode: "append",
  2509. text: "\n\nMunch."
  2510. }
  2511. }
  2512. },
  2513. gooLounging: {
  2514. height: math.unit(4.53, "feet"),
  2515. weight: math.unit(3000, "lb"),
  2516. preyCapacity: math.unit(6, "people"),
  2517. name: "Goo (Lounging)",
  2518. image: {
  2519. source: "./media/characters/fen/goo-lounging.svg",
  2520. bottom: 116 / 613
  2521. }
  2522. },
  2523. lounging: {
  2524. height: math.unit(10.52, "feet"),
  2525. weight: math.unit(2400, "lb"),
  2526. name: "Lounging",
  2527. image: {
  2528. source: "./media/characters/fen/lounging.svg"
  2529. }
  2530. },
  2531. },
  2532. [
  2533. {
  2534. name: "Small",
  2535. height: math.unit(2.2428, "meter")
  2536. },
  2537. {
  2538. name: "Normal",
  2539. height: math.unit(12, "feet"),
  2540. default: true,
  2541. },
  2542. {
  2543. name: "Big",
  2544. height: math.unit(20, "feet")
  2545. },
  2546. {
  2547. name: "Minimacro",
  2548. height: math.unit(40, "feet"),
  2549. info: {
  2550. description: {
  2551. mode: "append",
  2552. text: "\n\nTOO DAMN BIG"
  2553. }
  2554. }
  2555. },
  2556. {
  2557. name: "Macro",
  2558. height: math.unit(100, "feet"),
  2559. info: {
  2560. description: {
  2561. mode: "append",
  2562. text: "\n\nTOO DAMN BIG"
  2563. }
  2564. }
  2565. },
  2566. {
  2567. name: "Megamacro",
  2568. height: math.unit(2, "miles")
  2569. },
  2570. {
  2571. name: "Gigamacro",
  2572. height: math.unit(10, "earths")
  2573. },
  2574. ]
  2575. ))
  2576. characterMakers.push(() => makeCharacter(
  2577. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2578. {
  2579. front: {
  2580. height: math.unit(183, "cm"),
  2581. weight: math.unit(80, "kg"),
  2582. name: "Front",
  2583. image: {
  2584. source: "./media/characters/sofia-fluttertail/front.svg",
  2585. bottom: 0.01,
  2586. extra: 2154 / 2081
  2587. }
  2588. },
  2589. frontAlt: {
  2590. height: math.unit(183, "cm"),
  2591. weight: math.unit(80, "kg"),
  2592. name: "Front (alt)",
  2593. image: {
  2594. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2595. }
  2596. },
  2597. back: {
  2598. height: math.unit(183, "cm"),
  2599. weight: math.unit(80, "kg"),
  2600. name: "Back",
  2601. image: {
  2602. source: "./media/characters/sofia-fluttertail/back.svg"
  2603. }
  2604. },
  2605. kneeling: {
  2606. height: math.unit(125, "cm"),
  2607. weight: math.unit(80, "kg"),
  2608. name: "Kneeling",
  2609. image: {
  2610. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2611. extra: 1033 / 977,
  2612. bottom: 23.7 / 1057
  2613. }
  2614. },
  2615. maw: {
  2616. height: math.unit(183 / 5, "cm"),
  2617. name: "Maw",
  2618. image: {
  2619. source: "./media/characters/sofia-fluttertail/maw.svg"
  2620. }
  2621. },
  2622. mawcloseup: {
  2623. height: math.unit(183 / 5 * 0.41, "cm"),
  2624. name: "Maw (Closeup)",
  2625. image: {
  2626. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2627. }
  2628. },
  2629. paws: {
  2630. height: math.unit(1.17, "feet"),
  2631. name: "Paws",
  2632. image: {
  2633. source: "./media/characters/sofia-fluttertail/paws.svg",
  2634. extra: 851 / 851,
  2635. bottom: 17 / 868
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(1.83, "meter")
  2643. },
  2644. {
  2645. name: "Size Thief",
  2646. height: math.unit(18, "feet")
  2647. },
  2648. {
  2649. name: "50 Foot Collie",
  2650. height: math.unit(50, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(96, "feet"),
  2655. default: true
  2656. },
  2657. {
  2658. name: "Megamerger",
  2659. height: math.unit(650, "feet")
  2660. },
  2661. ]
  2662. ))
  2663. characterMakers.push(() => makeCharacter(
  2664. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2665. {
  2666. front: {
  2667. height: math.unit(7, "feet"),
  2668. weight: math.unit(100, "kg"),
  2669. name: "Front",
  2670. image: {
  2671. source: "./media/characters/march/front.svg",
  2672. extra: 1992/1851,
  2673. bottom: 39/2031
  2674. }
  2675. },
  2676. foot: {
  2677. height: math.unit(0.9, "feet"),
  2678. name: "Foot",
  2679. image: {
  2680. source: "./media/characters/march/foot.svg"
  2681. }
  2682. },
  2683. },
  2684. [
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(7.9, "feet")
  2688. },
  2689. {
  2690. name: "Macro",
  2691. height: math.unit(220, "meters")
  2692. },
  2693. {
  2694. name: "Megamacro",
  2695. height: math.unit(2.98, "km"),
  2696. default: true
  2697. },
  2698. {
  2699. name: "Gigamacro",
  2700. height: math.unit(15963, "km")
  2701. },
  2702. {
  2703. name: "Teramacro",
  2704. height: math.unit(2980000000, "km")
  2705. },
  2706. {
  2707. name: "Examacro",
  2708. height: math.unit(250, "parsecs")
  2709. },
  2710. ]
  2711. ))
  2712. characterMakers.push(() => makeCharacter(
  2713. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2714. {
  2715. front: {
  2716. height: math.unit(6, "feet"),
  2717. weight: math.unit(60, "kg"),
  2718. name: "Front",
  2719. image: {
  2720. source: "./media/characters/noir/front.svg",
  2721. extra: 1,
  2722. bottom: 0.032
  2723. }
  2724. },
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(6.6, "feet")
  2730. },
  2731. {
  2732. name: "Macro",
  2733. height: math.unit(500, "feet")
  2734. },
  2735. {
  2736. name: "Megamacro",
  2737. height: math.unit(2.5, "km"),
  2738. default: true
  2739. },
  2740. {
  2741. name: "Gigamacro",
  2742. height: math.unit(22500, "km")
  2743. },
  2744. {
  2745. name: "Teramacro",
  2746. height: math.unit(2500000000, "km")
  2747. },
  2748. {
  2749. name: "Examacro",
  2750. height: math.unit(200, "parsecs")
  2751. },
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2756. {
  2757. front: {
  2758. height: math.unit(7, "feet"),
  2759. weight: math.unit(100, "kg"),
  2760. name: "Front",
  2761. image: {
  2762. source: "./media/characters/okuri/front.svg",
  2763. extra: 739/665,
  2764. bottom: 39/778
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(7, "feet"),
  2769. weight: math.unit(100, "kg"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/okuri/back.svg",
  2773. extra: 734/653,
  2774. bottom: 13/747
  2775. }
  2776. },
  2777. sitting: {
  2778. height: math.unit(2.95, "feet"),
  2779. weight: math.unit(100, "kg"),
  2780. name: "Sitting",
  2781. image: {
  2782. source: "./media/characters/okuri/sitting.svg",
  2783. extra: 370/318,
  2784. bottom: 99/469
  2785. }
  2786. },
  2787. },
  2788. [
  2789. {
  2790. name: "Smallest",
  2791. height: math.unit(5 + 2/12, "feet")
  2792. },
  2793. {
  2794. name: "Smaller",
  2795. height: math.unit(300, "feet")
  2796. },
  2797. {
  2798. name: "Small",
  2799. height: math.unit(1000, "feet")
  2800. },
  2801. {
  2802. name: "Macro",
  2803. height: math.unit(1, "mile")
  2804. },
  2805. {
  2806. name: "Mega Macro (Small)",
  2807. height: math.unit(20, "km")
  2808. },
  2809. {
  2810. name: "Mega Macro (Large)",
  2811. height: math.unit(600, "km")
  2812. },
  2813. {
  2814. name: "Giga Macro",
  2815. height: math.unit(10000, "km")
  2816. },
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(577560, "km"),
  2820. default: true
  2821. },
  2822. {
  2823. name: "Large",
  2824. height: math.unit(4, "galaxies")
  2825. },
  2826. {
  2827. name: "Largest",
  2828. height: math.unit(15, "multiverses")
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2834. {
  2835. front: {
  2836. height: math.unit(7, "feet"),
  2837. weight: math.unit(100, "kg"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/manny/front.svg",
  2841. extra: 1,
  2842. bottom: 0.06
  2843. }
  2844. },
  2845. back: {
  2846. height: math.unit(7, "feet"),
  2847. weight: math.unit(100, "kg"),
  2848. name: "Back",
  2849. image: {
  2850. source: "./media/characters/manny/back.svg",
  2851. extra: 1,
  2852. bottom: 0.014
  2853. }
  2854. },
  2855. },
  2856. [
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(7, "feet"),
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(78, "feet"),
  2864. default: true
  2865. },
  2866. {
  2867. name: "Macro+",
  2868. height: math.unit(300, "meters")
  2869. },
  2870. {
  2871. name: "Macro++",
  2872. height: math.unit(2400, "meters")
  2873. },
  2874. {
  2875. name: "Megamacro",
  2876. height: math.unit(5167, "meters")
  2877. },
  2878. {
  2879. name: "Gigamacro",
  2880. height: math.unit(41769, "miles")
  2881. },
  2882. ]
  2883. ))
  2884. characterMakers.push(() => makeCharacter(
  2885. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2886. {
  2887. front: {
  2888. height: math.unit(7, "feet"),
  2889. weight: math.unit(100, "kg"),
  2890. name: "Front",
  2891. image: {
  2892. source: "./media/characters/adake/front-1.svg"
  2893. }
  2894. },
  2895. frontAlt: {
  2896. height: math.unit(7, "feet"),
  2897. weight: math.unit(100, "kg"),
  2898. name: "Front (Alt)",
  2899. image: {
  2900. source: "./media/characters/adake/front-2.svg",
  2901. extra: 1,
  2902. bottom: 0.01
  2903. }
  2904. },
  2905. back: {
  2906. height: math.unit(7, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Back",
  2909. image: {
  2910. source: "./media/characters/adake/back.svg",
  2911. }
  2912. },
  2913. kneel: {
  2914. height: math.unit(5.385, "feet"),
  2915. weight: math.unit(100, "kg"),
  2916. name: "Kneeling",
  2917. image: {
  2918. source: "./media/characters/adake/kneel.svg",
  2919. bottom: 0.052
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(7, "feet"),
  2927. },
  2928. {
  2929. name: "Macro",
  2930. height: math.unit(78, "feet"),
  2931. default: true
  2932. },
  2933. {
  2934. name: "Macro+",
  2935. height: math.unit(300, "meters")
  2936. },
  2937. {
  2938. name: "Macro++",
  2939. height: math.unit(2400, "meters")
  2940. },
  2941. {
  2942. name: "Megamacro",
  2943. height: math.unit(5167, "meters")
  2944. },
  2945. {
  2946. name: "Gigamacro",
  2947. height: math.unit(41769, "miles")
  2948. },
  2949. ]
  2950. ))
  2951. characterMakers.push(() => makeCharacter(
  2952. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2953. {
  2954. front: {
  2955. height: math.unit(1.65, "meters"),
  2956. weight: math.unit(50, "kg"),
  2957. name: "Front",
  2958. image: {
  2959. source: "./media/characters/elijah/front.svg",
  2960. extra: 858 / 830,
  2961. bottom: 95.5 / 953.8559
  2962. }
  2963. },
  2964. back: {
  2965. height: math.unit(1.65, "meters"),
  2966. weight: math.unit(50, "kg"),
  2967. name: "Back",
  2968. image: {
  2969. source: "./media/characters/elijah/back.svg",
  2970. extra: 895 / 850,
  2971. bottom: 5.3 / 897.956
  2972. }
  2973. },
  2974. frontNsfw: {
  2975. height: math.unit(1.65, "meters"),
  2976. weight: math.unit(50, "kg"),
  2977. name: "Front (NSFW)",
  2978. image: {
  2979. source: "./media/characters/elijah/front-nsfw.svg",
  2980. extra: 858 / 830,
  2981. bottom: 95.5 / 953.8559
  2982. }
  2983. },
  2984. backNsfw: {
  2985. height: math.unit(1.65, "meters"),
  2986. weight: math.unit(50, "kg"),
  2987. name: "Back (NSFW)",
  2988. image: {
  2989. source: "./media/characters/elijah/back-nsfw.svg",
  2990. extra: 895 / 850,
  2991. bottom: 5.3 / 897.956
  2992. }
  2993. },
  2994. dick: {
  2995. height: math.unit(1, "feet"),
  2996. name: "Dick",
  2997. image: {
  2998. source: "./media/characters/elijah/dick.svg"
  2999. }
  3000. },
  3001. beakOpen: {
  3002. height: math.unit(1.25, "feet"),
  3003. name: "Beak (Open)",
  3004. image: {
  3005. source: "./media/characters/elijah/beak-open.svg"
  3006. }
  3007. },
  3008. beakShut: {
  3009. height: math.unit(1.25, "feet"),
  3010. name: "Beak (Shut)",
  3011. image: {
  3012. source: "./media/characters/elijah/beak-shut.svg"
  3013. }
  3014. },
  3015. footFlexing: {
  3016. height: math.unit(1.61, "feet"),
  3017. name: "Foot (Flexing)",
  3018. image: {
  3019. source: "./media/characters/elijah/foot-flexing.svg"
  3020. }
  3021. },
  3022. footStepping: {
  3023. height: math.unit(1.44, "feet"),
  3024. name: "Foot (Stepping)",
  3025. image: {
  3026. source: "./media/characters/elijah/foot-stepping.svg"
  3027. }
  3028. },
  3029. plantigradeLeg: {
  3030. height: math.unit(2.34, "feet"),
  3031. name: "Plantigrade Leg",
  3032. image: {
  3033. source: "./media/characters/elijah/plantigrade-leg.svg"
  3034. }
  3035. },
  3036. plantigradeFootLeft: {
  3037. height: math.unit(0.9, "feet"),
  3038. name: "Plantigrade Foot (Left)",
  3039. image: {
  3040. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3041. }
  3042. },
  3043. plantigradeFootRight: {
  3044. height: math.unit(0.9, "feet"),
  3045. name: "Plantigrade Foot (Right)",
  3046. image: {
  3047. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3048. }
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Normal",
  3054. height: math.unit(1.65, "meters")
  3055. },
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(55, "meters"),
  3059. default: true
  3060. },
  3061. {
  3062. name: "Macro+",
  3063. height: math.unit(105, "meters")
  3064. },
  3065. ]
  3066. ))
  3067. characterMakers.push(() => makeCharacter(
  3068. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3069. {
  3070. front: {
  3071. height: math.unit(7 + 2/12, "feet"),
  3072. weight: math.unit(320, "kg"),
  3073. preyCapacity: math.unit(0.276549935, "people"),
  3074. name: "Front",
  3075. image: {
  3076. source: "./media/characters/rai/front.svg",
  3077. extra: 1802/1696,
  3078. bottom: 68/1870
  3079. },
  3080. form: "anthro",
  3081. default: true
  3082. },
  3083. frontDressed: {
  3084. height: math.unit(7 + 2/12, "feet"),
  3085. weight: math.unit(320, "kg"),
  3086. preyCapacity: math.unit(0.276549935, "people"),
  3087. name: "Front (Dressed)",
  3088. image: {
  3089. source: "./media/characters/rai/front-dressed.svg",
  3090. extra: 1802/1696,
  3091. bottom: 68/1870
  3092. },
  3093. form: "anthro"
  3094. },
  3095. side: {
  3096. height: math.unit(7 + 2/12, "feet"),
  3097. weight: math.unit(320, "kg"),
  3098. preyCapacity: math.unit(0.276549935, "people"),
  3099. name: "Side",
  3100. image: {
  3101. source: "./media/characters/rai/side.svg",
  3102. extra: 1789/1710,
  3103. bottom: 115/1904
  3104. },
  3105. form: "anthro"
  3106. },
  3107. back: {
  3108. height: math.unit(7 + 2/12, "feet"),
  3109. weight: math.unit(320, "kg"),
  3110. preyCapacity: math.unit(0.276549935, "people"),
  3111. name: "Back",
  3112. image: {
  3113. source: "./media/characters/rai/back.svg",
  3114. extra: 1770/1707,
  3115. bottom: 28/1798
  3116. },
  3117. form: "anthro"
  3118. },
  3119. feral: {
  3120. height: math.unit(9.5, "feet"),
  3121. weight: math.unit(640, "kg"),
  3122. preyCapacity: math.unit(4, "people"),
  3123. name: "Feral",
  3124. image: {
  3125. source: "./media/characters/rai/feral.svg",
  3126. extra: 945/553,
  3127. bottom: 176/1121
  3128. },
  3129. form: "feral",
  3130. default: true
  3131. },
  3132. dragon: {
  3133. height: math.unit(23, "feet"),
  3134. weight: math.unit(50000, "lb"),
  3135. name: "Dragon",
  3136. image: {
  3137. source: "./media/characters/rai/dragon.svg",
  3138. extra: 2498 / 2030,
  3139. bottom: 85.2 / 2584
  3140. },
  3141. form: "dragon",
  3142. default: true
  3143. },
  3144. maw: {
  3145. height: math.unit(1.69, "feet"),
  3146. name: "Maw",
  3147. image: {
  3148. source: "./media/characters/rai/maw.svg"
  3149. },
  3150. form: "anthro"
  3151. },
  3152. },
  3153. [
  3154. {
  3155. name: "Normal",
  3156. height: math.unit(7 + 2/12, "feet"),
  3157. form: "anthro"
  3158. },
  3159. {
  3160. name: "Big",
  3161. height: math.unit(11, "feet"),
  3162. form: "anthro"
  3163. },
  3164. {
  3165. name: "Minimacro",
  3166. height: math.unit(77, "feet"),
  3167. form: "anthro"
  3168. },
  3169. {
  3170. name: "Macro",
  3171. height: math.unit(302, "feet"),
  3172. default: true,
  3173. form: "anthro"
  3174. },
  3175. {
  3176. name: "Normal",
  3177. height: math.unit(9.5, "feet"),
  3178. form: "feral",
  3179. default: true
  3180. },
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(23, "feet"),
  3184. form: "dragon",
  3185. default: true
  3186. }
  3187. ],
  3188. {
  3189. "anthro": {
  3190. name: "Anthro",
  3191. default: true
  3192. },
  3193. "feral": {
  3194. name: "Feral",
  3195. },
  3196. "dragon": {
  3197. name: "Dragon",
  3198. },
  3199. }
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3203. {
  3204. frontDressed: {
  3205. height: math.unit(216, "feet"),
  3206. weight: math.unit(7000000, "lb"),
  3207. preyCapacity: math.unit(1321, "people"),
  3208. name: "Front (Dressed)",
  3209. image: {
  3210. source: "./media/characters/jazzy/front-dressed.svg",
  3211. extra: 2738 / 2651,
  3212. bottom: 41.8 / 2786
  3213. }
  3214. },
  3215. backDressed: {
  3216. height: math.unit(216, "feet"),
  3217. weight: math.unit(7000000, "lb"),
  3218. preyCapacity: math.unit(1321, "people"),
  3219. name: "Back (Dressed)",
  3220. image: {
  3221. source: "./media/characters/jazzy/back-dressed.svg",
  3222. extra: 2775 / 2673,
  3223. bottom: 36.8 / 2817
  3224. }
  3225. },
  3226. front: {
  3227. height: math.unit(216, "feet"),
  3228. weight: math.unit(7000000, "lb"),
  3229. preyCapacity: math.unit(1321, "people"),
  3230. name: "Front",
  3231. image: {
  3232. source: "./media/characters/jazzy/front.svg",
  3233. extra: 2738 / 2651,
  3234. bottom: 41.8 / 2786
  3235. }
  3236. },
  3237. back: {
  3238. height: math.unit(216, "feet"),
  3239. weight: math.unit(7000000, "lb"),
  3240. preyCapacity: math.unit(1321, "people"),
  3241. name: "Back",
  3242. image: {
  3243. source: "./media/characters/jazzy/back.svg",
  3244. extra: 2775 / 2673,
  3245. bottom: 36.8 / 2817
  3246. }
  3247. },
  3248. maw: {
  3249. height: math.unit(20, "feet"),
  3250. name: "Maw",
  3251. image: {
  3252. source: "./media/characters/jazzy/maw.svg"
  3253. }
  3254. },
  3255. paws: {
  3256. height: math.unit(27.5, "feet"),
  3257. name: "Paws",
  3258. image: {
  3259. source: "./media/characters/jazzy/paws.svg"
  3260. }
  3261. },
  3262. eye: {
  3263. height: math.unit(4.4, "feet"),
  3264. name: "Eye",
  3265. image: {
  3266. source: "./media/characters/jazzy/eye.svg"
  3267. }
  3268. },
  3269. droneOffense: {
  3270. height: math.unit(9.5, "inches"),
  3271. name: "Drone (Offense)",
  3272. image: {
  3273. source: "./media/characters/jazzy/drone-offense.svg"
  3274. }
  3275. },
  3276. droneRecon: {
  3277. height: math.unit(9.5, "inches"),
  3278. name: "Drone (Recon)",
  3279. image: {
  3280. source: "./media/characters/jazzy/drone-recon.svg"
  3281. }
  3282. },
  3283. droneDefense: {
  3284. height: math.unit(9.5, "inches"),
  3285. name: "Drone (Defense)",
  3286. image: {
  3287. source: "./media/characters/jazzy/drone-defense.svg"
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Macro",
  3294. height: math.unit(216, "feet"),
  3295. default: true
  3296. },
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(9 + 6/12, "feet"),
  3304. weight: math.unit(700, "lb"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/flamm/front.svg",
  3308. extra: 1736/1596,
  3309. bottom: 93/1829
  3310. }
  3311. },
  3312. buff: {
  3313. height: math.unit(9 + 6/12, "feet"),
  3314. weight: math.unit(950, "lb"),
  3315. name: "Buff",
  3316. image: {
  3317. source: "./media/characters/flamm/buff.svg",
  3318. extra: 3018/2874,
  3319. bottom: 221/3239
  3320. }
  3321. },
  3322. },
  3323. [
  3324. {
  3325. name: "Normal",
  3326. height: math.unit(9.5, "feet")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(200, "feet"),
  3331. default: true
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(5 + 3/12, "feet"),
  3340. weight: math.unit(60, "kg"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/zephiro/front.svg",
  3344. extra: 1873/1761,
  3345. bottom: 147/2020
  3346. }
  3347. },
  3348. side: {
  3349. height: math.unit(5 + 3/12, "feet"),
  3350. weight: math.unit(60, "kg"),
  3351. name: "Side",
  3352. image: {
  3353. source: "./media/characters/zephiro/side.svg",
  3354. extra: 1929/1827,
  3355. bottom: 65/1994
  3356. }
  3357. },
  3358. back: {
  3359. height: math.unit(5 + 3/12, "feet"),
  3360. weight: math.unit(60, "kg"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/zephiro/back.svg",
  3364. extra: 1926/1816,
  3365. bottom: 41/1967
  3366. }
  3367. },
  3368. hand: {
  3369. height: math.unit(0.68, "feet"),
  3370. name: "Hand",
  3371. image: {
  3372. source: "./media/characters/zephiro/hand.svg"
  3373. }
  3374. },
  3375. paw: {
  3376. height: math.unit(1, "feet"),
  3377. name: "Paw",
  3378. image: {
  3379. source: "./media/characters/zephiro/paw.svg"
  3380. }
  3381. },
  3382. beans: {
  3383. height: math.unit(0.93, "feet"),
  3384. name: "Beans",
  3385. image: {
  3386. source: "./media/characters/zephiro/beans.svg"
  3387. }
  3388. },
  3389. },
  3390. [
  3391. {
  3392. name: "Micro",
  3393. height: math.unit(3, "inches")
  3394. },
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(5 + 3 / 12, "feet"),
  3398. default: true
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(118, "feet")
  3403. },
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(5, "feet"),
  3411. weight: math.unit(90, "kg"),
  3412. preyCapacity: math.unit(14, "people"),
  3413. name: "Front",
  3414. image: {
  3415. source: "./media/characters/fory/front.svg",
  3416. extra: 2862 / 2674,
  3417. bottom: 180 / 3043.8
  3418. },
  3419. form: "weaselbun",
  3420. default: true,
  3421. extraAttributes: {
  3422. "pawSize": {
  3423. name: "Paw Size",
  3424. power: 2,
  3425. type: "area",
  3426. base: math.unit(0.1596, "m^2")
  3427. },
  3428. "pawLength": {
  3429. name: "Paw Length",
  3430. power: 1,
  3431. type: "length",
  3432. base: math.unit(0.7, "m")
  3433. }
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(5, "feet"),
  3438. weight: math.unit(90, "kg"),
  3439. preyCapacity: math.unit(14, "people"),
  3440. name: "Back",
  3441. image: {
  3442. source: "./media/characters/fory/back.svg",
  3443. extra: 1790/1672,
  3444. bottom: 84/1874
  3445. },
  3446. form: "weaselbun",
  3447. extraAttributes: {
  3448. "pawSize": {
  3449. name: "Paw Size",
  3450. power: 2,
  3451. type: "area",
  3452. base: math.unit(0.1596, "m^2")
  3453. },
  3454. "pawLength": {
  3455. name: "Paw Length",
  3456. power: 1,
  3457. type: "length",
  3458. base: math.unit(0.7, "m")
  3459. }
  3460. }
  3461. },
  3462. paw: {
  3463. height: math.unit(2.14, "feet"),
  3464. name: "Paw",
  3465. image: {
  3466. source: "./media/characters/fory/paw.svg"
  3467. },
  3468. form: "weaselbun",
  3469. extraAttributes: {
  3470. "pawSize": {
  3471. name: "Paw Size",
  3472. power: 2,
  3473. type: "area",
  3474. base: math.unit(0.1596, "m^2")
  3475. },
  3476. "pawLength": {
  3477. name: "Paw Length",
  3478. power: 1,
  3479. type: "length",
  3480. base: math.unit(0.48, "m")
  3481. }
  3482. }
  3483. },
  3484. bunBack: {
  3485. height: math.unit(3, "feet"),
  3486. weight: math.unit(20, "kg"),
  3487. preyCapacity: math.unit(3, "people"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/fory/bun-back.svg",
  3491. extra: 1749/1564,
  3492. bottom: 246/1995
  3493. },
  3494. form: "bun",
  3495. default: true,
  3496. extraAttributes: {
  3497. "pawSize": {
  3498. name: "Paw Size",
  3499. power: 2,
  3500. type: "area",
  3501. base: math.unit(0.072, "m^2")
  3502. },
  3503. "pawLength": {
  3504. name: "Paw Length",
  3505. power: 1,
  3506. type: "length",
  3507. base: math.unit(0.45, "m")
  3508. }
  3509. }
  3510. },
  3511. },
  3512. [
  3513. {
  3514. name: "Normal",
  3515. height: math.unit(5, "feet"),
  3516. form: "weaselbun"
  3517. },
  3518. {
  3519. name: "Macro",
  3520. height: math.unit(50, "feet"),
  3521. default: true,
  3522. form: "weaselbun"
  3523. },
  3524. {
  3525. name: "Megamacro",
  3526. height: math.unit(10, "miles"),
  3527. form: "weaselbun"
  3528. },
  3529. {
  3530. name: "Gigamacro",
  3531. height: math.unit(5, "earths"),
  3532. form: "weaselbun"
  3533. },
  3534. {
  3535. name: "Normal",
  3536. height: math.unit(3, "feet"),
  3537. default: true,
  3538. form: "bun"
  3539. },
  3540. {
  3541. name: "Fun-Size",
  3542. height: math.unit(12, "feet"),
  3543. form: "bun"
  3544. },
  3545. {
  3546. name: "Macro",
  3547. height: math.unit(100, "feet"),
  3548. form: "bun"
  3549. },
  3550. {
  3551. name: "Planetary",
  3552. height: math.unit(3, "earths"),
  3553. form: "bun"
  3554. },
  3555. ],
  3556. {
  3557. "weaselbun": {
  3558. name: "Weaselbun",
  3559. default: true
  3560. },
  3561. "bun": {
  3562. name: "Bun",
  3563. },
  3564. }
  3565. ))
  3566. characterMakers.push(() => makeCharacter(
  3567. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3568. {
  3569. front: {
  3570. height: math.unit(7, "feet"),
  3571. weight: math.unit(90, "kg"),
  3572. name: "Front",
  3573. image: {
  3574. source: "./media/characters/kurrikage/front.svg",
  3575. extra: 1845/1733,
  3576. bottom: 119/1964
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(7, "feet"),
  3581. weight: math.unit(90, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/kurrikage/back.svg",
  3585. extra: 1790/1677,
  3586. bottom: 61/1851
  3587. }
  3588. },
  3589. dressed: {
  3590. height: math.unit(7, "feet"),
  3591. weight: math.unit(90, "kg"),
  3592. name: "Dressed",
  3593. image: {
  3594. source: "./media/characters/kurrikage/dressed.svg",
  3595. extra: 1845/1733,
  3596. bottom: 119/1964
  3597. }
  3598. },
  3599. foot: {
  3600. height: math.unit(1.5, "feet"),
  3601. name: "Foot",
  3602. image: {
  3603. source: "./media/characters/kurrikage/foot.svg"
  3604. }
  3605. },
  3606. staff: {
  3607. height: math.unit(6.7, "feet"),
  3608. name: "Staff",
  3609. image: {
  3610. source: "./media/characters/kurrikage/staff.svg"
  3611. }
  3612. },
  3613. peek: {
  3614. height: math.unit(1.05, "feet"),
  3615. name: "Peeking",
  3616. image: {
  3617. source: "./media/characters/kurrikage/peek.svg",
  3618. bottom: 0.08
  3619. }
  3620. },
  3621. },
  3622. [
  3623. {
  3624. name: "Normal",
  3625. height: math.unit(12, "feet"),
  3626. default: true
  3627. },
  3628. {
  3629. name: "Big",
  3630. height: math.unit(20, "feet")
  3631. },
  3632. {
  3633. name: "Macro",
  3634. height: math.unit(500, "feet")
  3635. },
  3636. {
  3637. name: "Megamacro",
  3638. height: math.unit(20, "miles")
  3639. },
  3640. ]
  3641. ))
  3642. characterMakers.push(() => makeCharacter(
  3643. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3644. {
  3645. front: {
  3646. height: math.unit(6, "feet"),
  3647. weight: math.unit(75, "kg"),
  3648. name: "Front",
  3649. image: {
  3650. source: "./media/characters/shingo/front.svg",
  3651. extra: 1900/1825,
  3652. bottom: 82/1982
  3653. }
  3654. },
  3655. side: {
  3656. height: math.unit(6, "feet"),
  3657. weight: math.unit(75, "kg"),
  3658. name: "Side",
  3659. image: {
  3660. source: "./media/characters/shingo/side.svg",
  3661. extra: 1930/1865,
  3662. bottom: 16/1946
  3663. }
  3664. },
  3665. back: {
  3666. height: math.unit(6, "feet"),
  3667. weight: math.unit(75, "kg"),
  3668. name: "Back",
  3669. image: {
  3670. source: "./media/characters/shingo/back.svg",
  3671. extra: 1922/1852,
  3672. bottom: 16/1938
  3673. }
  3674. },
  3675. frontDressed: {
  3676. height: math.unit(6, "feet"),
  3677. weight: math.unit(150, "lb"),
  3678. name: "Front-dressed",
  3679. image: {
  3680. source: "./media/characters/shingo/front-dressed.svg",
  3681. extra: 1900/1825,
  3682. bottom: 82/1982
  3683. }
  3684. },
  3685. paw: {
  3686. height: math.unit(1.29, "feet"),
  3687. name: "Paw",
  3688. image: {
  3689. source: "./media/characters/shingo/paw.svg"
  3690. }
  3691. },
  3692. hand: {
  3693. height: math.unit(1.07, "feet"),
  3694. name: "Hand",
  3695. image: {
  3696. source: "./media/characters/shingo/hand.svg"
  3697. }
  3698. },
  3699. frontAlt: {
  3700. height: math.unit(6, "feet"),
  3701. weight: math.unit(75, "kg"),
  3702. name: "Front (Alt)",
  3703. image: {
  3704. source: "./media/characters/shingo/front-alt.svg",
  3705. extra: 3511 / 3338,
  3706. bottom: 0.005
  3707. }
  3708. },
  3709. frontAlt2: {
  3710. height: math.unit(6, "feet"),
  3711. weight: math.unit(75, "kg"),
  3712. name: "Front (Alt 2)",
  3713. image: {
  3714. source: "./media/characters/shingo/front-alt-2.svg",
  3715. extra: 706/681,
  3716. bottom: 11/717
  3717. }
  3718. },
  3719. pawAlt: {
  3720. height: math.unit(1, "feet"),
  3721. name: "Paw (Alt)",
  3722. image: {
  3723. source: "./media/characters/shingo/paw-alt.svg"
  3724. }
  3725. },
  3726. },
  3727. [
  3728. {
  3729. name: "Micro",
  3730. height: math.unit(4, "inches")
  3731. },
  3732. {
  3733. name: "Normal",
  3734. height: math.unit(6, "feet"),
  3735. default: true
  3736. },
  3737. {
  3738. name: "Macro",
  3739. height: math.unit(108, "feet")
  3740. },
  3741. {
  3742. name: "Macro+",
  3743. height: math.unit(1500, "feet")
  3744. },
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3749. {
  3750. side: {
  3751. height: math.unit(6, "feet"),
  3752. weight: math.unit(75, "kg"),
  3753. name: "Side",
  3754. image: {
  3755. source: "./media/characters/aigey/side.svg"
  3756. }
  3757. },
  3758. },
  3759. [
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(200, "feet"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Megamacro",
  3767. height: math.unit(100, "miles")
  3768. },
  3769. ]
  3770. )
  3771. )
  3772. characterMakers.push(() => makeCharacter(
  3773. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3774. {
  3775. front: {
  3776. height: math.unit(5 + 5 / 12, "feet"),
  3777. weight: math.unit(75, "kg"),
  3778. name: "Front",
  3779. image: {
  3780. source: "./media/characters/natasha/front.svg",
  3781. extra: 859 / 824,
  3782. bottom: 23 / 879.6
  3783. }
  3784. },
  3785. frontNsfw: {
  3786. height: math.unit(5 + 5 / 12, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Front (NSFW)",
  3789. image: {
  3790. source: "./media/characters/natasha/front-nsfw.svg",
  3791. extra: 859 / 824,
  3792. bottom: 23 / 879.6
  3793. }
  3794. },
  3795. frontErect: {
  3796. height: math.unit(5 + 5 / 12, "feet"),
  3797. weight: math.unit(75, "kg"),
  3798. name: "Front (Erect)",
  3799. image: {
  3800. source: "./media/characters/natasha/front-erect.svg",
  3801. extra: 859 / 824,
  3802. bottom: 23 / 879.6
  3803. }
  3804. },
  3805. back: {
  3806. height: math.unit(5 + 5 / 12, "feet"),
  3807. weight: math.unit(75, "kg"),
  3808. name: "Back",
  3809. image: {
  3810. source: "./media/characters/natasha/back.svg",
  3811. extra: 887.9 / 852.6,
  3812. bottom: 9.7 / 896.4
  3813. }
  3814. },
  3815. backAlt: {
  3816. height: math.unit(5 + 5 / 12, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Back (Alt)",
  3819. image: {
  3820. source: "./media/characters/natasha/back-alt.svg",
  3821. extra: 1236.7 / 1192,
  3822. bottom: 22.3 / 1258.2
  3823. }
  3824. },
  3825. dick: {
  3826. height: math.unit(1.772, "feet"),
  3827. name: "Dick",
  3828. image: {
  3829. source: "./media/characters/natasha/dick.svg"
  3830. }
  3831. },
  3832. paw: {
  3833. height: math.unit(0.250, "meters"),
  3834. name: "Paw",
  3835. image: {
  3836. source: "./media/characters/natasha/paw.svg"
  3837. },
  3838. extraAttributes: {
  3839. "toeSize": {
  3840. name: "Toe Size",
  3841. power: 2,
  3842. type: "area",
  3843. base: math.unit(0.0024, "m^2")
  3844. },
  3845. "padSize": {
  3846. name: "Pad Size",
  3847. power: 2,
  3848. type: "area",
  3849. base: math.unit(0.00889, "m^2")
  3850. },
  3851. "pawSize": {
  3852. name: "Paw Size",
  3853. power: 2,
  3854. type: "area",
  3855. base: math.unit(0.023667, "m^2")
  3856. },
  3857. }
  3858. },
  3859. },
  3860. [
  3861. {
  3862. name: "Shortstack",
  3863. height: math.unit(3, "feet"),
  3864. default: true
  3865. },
  3866. {
  3867. name: "Normal",
  3868. height: math.unit(5 + 5 / 12, "feet")
  3869. },
  3870. {
  3871. name: "Large",
  3872. height: math.unit(12, "feet")
  3873. },
  3874. {
  3875. name: "Macro",
  3876. height: math.unit(100, "feet")
  3877. },
  3878. {
  3879. name: "Macro+",
  3880. height: math.unit(260, "feet")
  3881. },
  3882. {
  3883. name: "Macro++",
  3884. height: math.unit(1, "mile")
  3885. },
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3890. {
  3891. front: {
  3892. height: math.unit(6, "feet"),
  3893. weight: math.unit(75, "kg"),
  3894. name: "Front",
  3895. image: {
  3896. source: "./media/characters/malik/front.svg",
  3897. extra: 1750/1561,
  3898. bottom: 80/1830
  3899. },
  3900. extraAttributes: {
  3901. "toeSize": {
  3902. name: "Toe Size",
  3903. power: 2,
  3904. type: "area",
  3905. base: math.unit(0.0159, "m^2")
  3906. },
  3907. "pawSize": {
  3908. name: "Paw Size",
  3909. power: 2,
  3910. type: "area",
  3911. base: math.unit(0.09834, "m^2")
  3912. },
  3913. }
  3914. },
  3915. side: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(75, "kg"),
  3918. name: "Side",
  3919. image: {
  3920. source: "./media/characters/malik/side.svg",
  3921. extra: 1802/1685,
  3922. bottom: 42/1844
  3923. },
  3924. extraAttributes: {
  3925. "toeSize": {
  3926. name: "Toe Size",
  3927. power: 2,
  3928. type: "area",
  3929. base: math.unit(0.0159, "m^2")
  3930. },
  3931. "pawSize": {
  3932. name: "Paw Size",
  3933. power: 2,
  3934. type: "area",
  3935. base: math.unit(0.09834, "m^2")
  3936. },
  3937. }
  3938. },
  3939. back: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(75, "kg"),
  3942. name: "Back",
  3943. image: {
  3944. source: "./media/characters/malik/back.svg",
  3945. extra: 1803/1607,
  3946. bottom: 33/1836
  3947. },
  3948. extraAttributes: {
  3949. "toeSize": {
  3950. name: "Toe Size",
  3951. power: 2,
  3952. type: "area",
  3953. base: math.unit(0.0159, "m^2")
  3954. },
  3955. "pawSize": {
  3956. name: "Paw Size",
  3957. power: 2,
  3958. type: "area",
  3959. base: math.unit(0.09834, "m^2")
  3960. },
  3961. }
  3962. },
  3963. },
  3964. [
  3965. {
  3966. name: "Macro",
  3967. height: math.unit(156, "feet"),
  3968. default: true
  3969. },
  3970. {
  3971. name: "Macro+",
  3972. height: math.unit(1188, "feet")
  3973. },
  3974. ]
  3975. ))
  3976. characterMakers.push(() => makeCharacter(
  3977. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3978. {
  3979. front: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(75, "kg"),
  3982. name: "Front",
  3983. image: {
  3984. source: "./media/characters/sefer/front.svg",
  3985. extra: 848 / 659,
  3986. bottom: 28.3 / 876.442
  3987. }
  3988. },
  3989. back: {
  3990. height: math.unit(6, "feet"),
  3991. weight: math.unit(75, "kg"),
  3992. name: "Back",
  3993. image: {
  3994. source: "./media/characters/sefer/back.svg",
  3995. extra: 864 / 695,
  3996. bottom: 10 / 871
  3997. }
  3998. },
  3999. frontDressed: {
  4000. height: math.unit(6, "feet"),
  4001. weight: math.unit(75, "kg"),
  4002. name: "Dressed",
  4003. image: {
  4004. source: "./media/characters/sefer/dressed.svg",
  4005. extra: 839 / 653,
  4006. bottom: 37.6 / 878
  4007. }
  4008. },
  4009. },
  4010. [
  4011. {
  4012. name: "Normal",
  4013. height: math.unit(6, "feet"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Big",
  4018. height: math.unit(8, "meters")
  4019. },
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4024. {
  4025. body: {
  4026. height: math.unit(2.2428, "meter"),
  4027. weight: math.unit(124.738, "kg"),
  4028. name: "Body",
  4029. image: {
  4030. extra: 1225 / 1050,
  4031. source: "./media/characters/north/front.svg"
  4032. }
  4033. }
  4034. },
  4035. [
  4036. {
  4037. name: "Micro",
  4038. height: math.unit(4, "inches")
  4039. },
  4040. {
  4041. name: "Macro",
  4042. height: math.unit(63, "meters")
  4043. },
  4044. {
  4045. name: "Megamacro",
  4046. height: math.unit(101, "miles"),
  4047. default: true
  4048. }
  4049. ]
  4050. ))
  4051. characterMakers.push(() => makeCharacter(
  4052. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4053. {
  4054. angled: {
  4055. height: math.unit(4, "meter"),
  4056. weight: math.unit(150, "kg"),
  4057. name: "Angled",
  4058. image: {
  4059. source: "./media/characters/talan/angled-sfw.svg",
  4060. bottom: 29 / 3734
  4061. }
  4062. },
  4063. angledNsfw: {
  4064. height: math.unit(4, "meter"),
  4065. weight: math.unit(150, "kg"),
  4066. name: "Angled (NSFW)",
  4067. image: {
  4068. source: "./media/characters/talan/angled-nsfw.svg",
  4069. bottom: 29 / 3734
  4070. }
  4071. },
  4072. frontNsfw: {
  4073. height: math.unit(4, "meter"),
  4074. weight: math.unit(150, "kg"),
  4075. name: "Front (NSFW)",
  4076. image: {
  4077. source: "./media/characters/talan/front-nsfw.svg",
  4078. bottom: 29 / 3734
  4079. }
  4080. },
  4081. sideNsfw: {
  4082. height: math.unit(4, "meter"),
  4083. weight: math.unit(150, "kg"),
  4084. name: "Side (NSFW)",
  4085. image: {
  4086. source: "./media/characters/talan/side-nsfw.svg",
  4087. bottom: 29 / 3734
  4088. }
  4089. },
  4090. back: {
  4091. height: math.unit(4, "meter"),
  4092. weight: math.unit(150, "kg"),
  4093. name: "Back",
  4094. image: {
  4095. source: "./media/characters/talan/back.svg"
  4096. }
  4097. },
  4098. dickBottom: {
  4099. height: math.unit(0.621, "meter"),
  4100. name: "Dick (Bottom)",
  4101. image: {
  4102. source: "./media/characters/talan/dick-bottom.svg"
  4103. }
  4104. },
  4105. dickTop: {
  4106. height: math.unit(0.621, "meter"),
  4107. name: "Dick (Top)",
  4108. image: {
  4109. source: "./media/characters/talan/dick-top.svg"
  4110. }
  4111. },
  4112. dickSide: {
  4113. height: math.unit(0.305, "meter"),
  4114. name: "Dick (Side)",
  4115. image: {
  4116. source: "./media/characters/talan/dick-side.svg"
  4117. }
  4118. },
  4119. dickFront: {
  4120. height: math.unit(0.305, "meter"),
  4121. name: "Dick (Front)",
  4122. image: {
  4123. source: "./media/characters/talan/dick-front.svg"
  4124. }
  4125. },
  4126. },
  4127. [
  4128. {
  4129. name: "Normal",
  4130. height: math.unit(4, "meters")
  4131. },
  4132. {
  4133. name: "Macro",
  4134. height: math.unit(100, "meters")
  4135. },
  4136. {
  4137. name: "Megamacro",
  4138. height: math.unit(2, "miles"),
  4139. default: true
  4140. },
  4141. {
  4142. name: "Gigamacro",
  4143. height: math.unit(5000, "miles")
  4144. },
  4145. {
  4146. name: "Teramacro",
  4147. height: math.unit(100, "parsecs")
  4148. }
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4153. {
  4154. front: {
  4155. height: math.unit(2, "meter"),
  4156. weight: math.unit(90, "kg"),
  4157. name: "Front",
  4158. image: {
  4159. source: "./media/characters/gael'rathus/front.svg"
  4160. }
  4161. },
  4162. frontAlt: {
  4163. height: math.unit(2, "meter"),
  4164. weight: math.unit(90, "kg"),
  4165. name: "Front (alt)",
  4166. image: {
  4167. source: "./media/characters/gael'rathus/front-alt.svg"
  4168. }
  4169. },
  4170. frontAlt2: {
  4171. height: math.unit(2, "meter"),
  4172. weight: math.unit(90, "kg"),
  4173. name: "Front (alt 2)",
  4174. image: {
  4175. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4176. }
  4177. }
  4178. },
  4179. [
  4180. {
  4181. name: "Normal",
  4182. height: math.unit(9, "feet"),
  4183. default: true
  4184. },
  4185. {
  4186. name: "Large",
  4187. height: math.unit(25, "feet")
  4188. },
  4189. {
  4190. name: "Macro",
  4191. height: math.unit(0.25, "miles")
  4192. },
  4193. {
  4194. name: "Megamacro",
  4195. height: math.unit(10, "miles")
  4196. }
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4201. {
  4202. side: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(140, "kg"),
  4205. name: "Side",
  4206. image: {
  4207. source: "./media/characters/sosha/side.svg",
  4208. extra: 1170/1006,
  4209. bottom: 94/1264
  4210. }
  4211. },
  4212. maw: {
  4213. height: math.unit(2.87, "feet"),
  4214. name: "Maw",
  4215. image: {
  4216. source: "./media/characters/sosha/maw.svg",
  4217. extra: 966/865,
  4218. bottom: 0/966
  4219. }
  4220. },
  4221. cooch: {
  4222. height: math.unit(5.6, "feet"),
  4223. name: "Cooch",
  4224. image: {
  4225. source: "./media/characters/sosha/cooch.svg"
  4226. }
  4227. },
  4228. },
  4229. [
  4230. {
  4231. name: "Normal",
  4232. height: math.unit(12, "feet"),
  4233. default: true
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4239. {
  4240. side: {
  4241. height: math.unit(5 + 5 / 12, "feet"),
  4242. weight: math.unit(170, "kg"),
  4243. name: "Side",
  4244. image: {
  4245. source: "./media/characters/runnola/side.svg",
  4246. extra: 741 / 448,
  4247. bottom: 0.05
  4248. }
  4249. },
  4250. },
  4251. [
  4252. {
  4253. name: "Small",
  4254. height: math.unit(3, "feet")
  4255. },
  4256. {
  4257. name: "Normal",
  4258. height: math.unit(5 + 5 / 12, "feet"),
  4259. default: true
  4260. },
  4261. {
  4262. name: "Big",
  4263. height: math.unit(10, "feet")
  4264. },
  4265. ]
  4266. ))
  4267. characterMakers.push(() => makeCharacter(
  4268. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4269. {
  4270. front: {
  4271. height: math.unit(2, "meter"),
  4272. weight: math.unit(50, "kg"),
  4273. name: "Front",
  4274. image: {
  4275. source: "./media/characters/kurribird/front.svg",
  4276. bottom: 0.015
  4277. }
  4278. },
  4279. frontAlt: {
  4280. height: math.unit(1.5, "meter"),
  4281. weight: math.unit(50, "kg"),
  4282. name: "Front (Alt)",
  4283. image: {
  4284. source: "./media/characters/kurribird/front-alt.svg",
  4285. extra: 1.45
  4286. }
  4287. },
  4288. },
  4289. [
  4290. {
  4291. name: "Normal",
  4292. height: math.unit(7, "feet")
  4293. },
  4294. {
  4295. name: "Big",
  4296. height: math.unit(12, "feet"),
  4297. default: true
  4298. },
  4299. {
  4300. name: "Macro",
  4301. height: math.unit(1500, "feet")
  4302. },
  4303. {
  4304. name: "Megamacro",
  4305. height: math.unit(2, "miles")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(80, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/elbial/front.svg",
  4318. extra: 1643 / 1556,
  4319. bottom: 60.2 / 1696
  4320. }
  4321. },
  4322. side: {
  4323. height: math.unit(2, "meter"),
  4324. weight: math.unit(80, "kg"),
  4325. name: "Side",
  4326. image: {
  4327. source: "./media/characters/elbial/side.svg",
  4328. extra: 1601/1528,
  4329. bottom: 97/1698
  4330. }
  4331. },
  4332. back: {
  4333. height: math.unit(2, "meter"),
  4334. weight: math.unit(80, "kg"),
  4335. name: "Back",
  4336. image: {
  4337. source: "./media/characters/elbial/back.svg",
  4338. extra: 1653/1569,
  4339. bottom: 20/1673
  4340. }
  4341. },
  4342. frontDressed: {
  4343. height: math.unit(2, "meter"),
  4344. weight: math.unit(80, "kg"),
  4345. name: "Front (Dressed)",
  4346. image: {
  4347. source: "./media/characters/elbial/front-dressed.svg",
  4348. extra: 1638/1569,
  4349. bottom: 70/1708
  4350. }
  4351. },
  4352. genitals: {
  4353. height: math.unit(2 / 3.367, "meter"),
  4354. name: "Genitals",
  4355. image: {
  4356. source: "./media/characters/elbial/genitals.svg"
  4357. }
  4358. },
  4359. },
  4360. [
  4361. {
  4362. name: "Large",
  4363. height: math.unit(100, "feet")
  4364. },
  4365. {
  4366. name: "Macro",
  4367. height: math.unit(500, "feet"),
  4368. default: true
  4369. },
  4370. {
  4371. name: "Megamacro",
  4372. height: math.unit(10, "miles")
  4373. },
  4374. {
  4375. name: "Gigamacro",
  4376. height: math.unit(25000, "miles")
  4377. },
  4378. {
  4379. name: "Full-Size",
  4380. height: math.unit(8000000, "gigaparsecs")
  4381. }
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4386. {
  4387. front: {
  4388. height: math.unit(2, "meter"),
  4389. weight: math.unit(60, "kg"),
  4390. name: "Front",
  4391. image: {
  4392. source: "./media/characters/noah/front.svg",
  4393. extra: 1383/1313,
  4394. bottom: 104/1487
  4395. }
  4396. },
  4397. hand: {
  4398. height: math.unit(0.6, "feet"),
  4399. name: "Hand",
  4400. image: {
  4401. source: "./media/characters/noah/hand.svg"
  4402. }
  4403. },
  4404. talons: {
  4405. height: math.unit(1.385, "feet"),
  4406. name: "Talons",
  4407. image: {
  4408. source: "./media/characters/noah/talons.svg"
  4409. }
  4410. },
  4411. beak: {
  4412. height: math.unit(0.43, "feet"),
  4413. name: "Beak",
  4414. image: {
  4415. source: "./media/characters/noah/beak.svg"
  4416. }
  4417. },
  4418. collar: {
  4419. height: math.unit(0.88, "feet"),
  4420. name: "Collar",
  4421. image: {
  4422. source: "./media/characters/noah/collar.svg"
  4423. }
  4424. },
  4425. eyeNarrow: {
  4426. height: math.unit(0.18, "feet"),
  4427. name: "Eye (Narrow)",
  4428. image: {
  4429. source: "./media/characters/noah/eye-narrow.svg"
  4430. }
  4431. },
  4432. eyeNormal: {
  4433. height: math.unit(0.18, "feet"),
  4434. name: "Eye (Normal)",
  4435. image: {
  4436. source: "./media/characters/noah/eye-normal.svg"
  4437. }
  4438. },
  4439. eyeWide: {
  4440. height: math.unit(0.18, "feet"),
  4441. name: "Eye (Wide)",
  4442. image: {
  4443. source: "./media/characters/noah/eye-wide.svg"
  4444. }
  4445. },
  4446. ear: {
  4447. height: math.unit(0.64, "feet"),
  4448. name: "Ear",
  4449. image: {
  4450. source: "./media/characters/noah/ear.svg"
  4451. }
  4452. },
  4453. },
  4454. [
  4455. {
  4456. name: "Large",
  4457. height: math.unit(50, "feet")
  4458. },
  4459. {
  4460. name: "Macro",
  4461. height: math.unit(750, "feet"),
  4462. default: true
  4463. },
  4464. {
  4465. name: "Megamacro",
  4466. height: math.unit(50, "miles")
  4467. },
  4468. {
  4469. name: "Gigamacro",
  4470. height: math.unit(100000, "miles")
  4471. },
  4472. {
  4473. name: "Full-Size",
  4474. height: math.unit(3000000000, "miles")
  4475. }
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4480. {
  4481. front: {
  4482. height: math.unit(2, "meter"),
  4483. weight: math.unit(80, "kg"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/natalya/front.svg"
  4487. }
  4488. },
  4489. back: {
  4490. height: math.unit(2, "meter"),
  4491. weight: math.unit(80, "kg"),
  4492. name: "Back",
  4493. image: {
  4494. source: "./media/characters/natalya/back.svg"
  4495. }
  4496. }
  4497. },
  4498. [
  4499. {
  4500. name: "Normal",
  4501. height: math.unit(150, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(5, "miles")
  4507. },
  4508. {
  4509. name: "Full-Size",
  4510. height: math.unit(600, "kiloparsecs")
  4511. }
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4516. {
  4517. front: {
  4518. height: math.unit(2, "meter"),
  4519. weight: math.unit(50, "kg"),
  4520. name: "Front",
  4521. image: {
  4522. source: "./media/characters/erestrebah/front.svg",
  4523. extra: 1262/1162,
  4524. bottom: 96/1358
  4525. }
  4526. },
  4527. back: {
  4528. height: math.unit(2, "meter"),
  4529. weight: math.unit(50, "kg"),
  4530. name: "Back",
  4531. image: {
  4532. source: "./media/characters/erestrebah/back.svg",
  4533. extra: 1257/1139,
  4534. bottom: 13/1270
  4535. }
  4536. },
  4537. wing: {
  4538. height: math.unit(2, "meter"),
  4539. weight: math.unit(50, "kg"),
  4540. name: "Wing",
  4541. image: {
  4542. source: "./media/characters/erestrebah/wing.svg",
  4543. extra: 1262/1162,
  4544. bottom: 96/1358
  4545. }
  4546. },
  4547. mouth: {
  4548. height: math.unit(0.39, "feet"),
  4549. name: "Mouth",
  4550. image: {
  4551. source: "./media/characters/erestrebah/mouth.svg"
  4552. }
  4553. }
  4554. },
  4555. [
  4556. {
  4557. name: "Normal",
  4558. height: math.unit(10, "feet")
  4559. },
  4560. {
  4561. name: "Large",
  4562. height: math.unit(50, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(300, "feet")
  4568. },
  4569. {
  4570. name: "Macro+",
  4571. height: math.unit(750, "feet")
  4572. },
  4573. {
  4574. name: "Megamacro",
  4575. height: math.unit(3, "miles")
  4576. }
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(2, "meter"),
  4584. weight: math.unit(80, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/jennifer/front.svg",
  4588. bottom: 0.11,
  4589. extra: 1.16
  4590. }
  4591. },
  4592. frontAlt: {
  4593. height: math.unit(2, "meter"),
  4594. weight: math.unit(80, "kg"),
  4595. name: "Front (Alt)",
  4596. image: {
  4597. source: "./media/characters/jennifer/front-alt.svg"
  4598. }
  4599. }
  4600. },
  4601. [
  4602. {
  4603. name: "Canon Height",
  4604. height: math.unit(120, "feet"),
  4605. default: true
  4606. },
  4607. {
  4608. name: "Macro+",
  4609. height: math.unit(300, "feet")
  4610. },
  4611. {
  4612. name: "Megamacro",
  4613. height: math.unit(20000, "feet")
  4614. }
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(2, "meter"),
  4622. weight: math.unit(50, "kg"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/kalista/front.svg",
  4626. extra: 1314/1145,
  4627. bottom: 101/1415
  4628. }
  4629. },
  4630. back: {
  4631. height: math.unit(2, "meter"),
  4632. weight: math.unit(50, "kg"),
  4633. name: "Back",
  4634. image: {
  4635. source: "./media/characters/kalista/back.svg",
  4636. extra: 1366 / 1156,
  4637. bottom: 33.9 / 1362.78
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Uncomfortably Small",
  4644. height: math.unit(10, "feet")
  4645. },
  4646. {
  4647. name: "Small",
  4648. height: math.unit(30, "feet")
  4649. },
  4650. {
  4651. name: "Macro",
  4652. height: math.unit(100, "feet"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Macro+",
  4657. height: math.unit(2000, "feet")
  4658. },
  4659. {
  4660. name: "True Form",
  4661. height: math.unit(8924, "miles")
  4662. }
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(2, "meter"),
  4670. weight: math.unit(120, "kg"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/ggv/front.svg"
  4674. }
  4675. },
  4676. side: {
  4677. height: math.unit(2, "meter"),
  4678. weight: math.unit(120, "kg"),
  4679. name: "Side",
  4680. image: {
  4681. source: "./media/characters/ggv/side.svg"
  4682. }
  4683. }
  4684. },
  4685. [
  4686. {
  4687. name: "Extremely Puny",
  4688. height: math.unit(9 + 5 / 12, "feet")
  4689. },
  4690. {
  4691. name: "Horribly Small",
  4692. height: math.unit(47.7, "miles"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Reasonably Sized",
  4697. height: math.unit(25000, "parsecs")
  4698. },
  4699. {
  4700. name: "Slightly Uncompressed",
  4701. height: math.unit(7.77e31, "parsecs")
  4702. },
  4703. {
  4704. name: "Omniversal",
  4705. height: math.unit(1e300, "meters")
  4706. },
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4711. {
  4712. front: {
  4713. height: math.unit(2, "meter"),
  4714. weight: math.unit(75, "lb"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/napalm/front.svg"
  4718. }
  4719. },
  4720. back: {
  4721. height: math.unit(2, "meter"),
  4722. weight: math.unit(75, "lb"),
  4723. name: "Back",
  4724. image: {
  4725. source: "./media/characters/napalm/back.svg"
  4726. }
  4727. }
  4728. },
  4729. [
  4730. {
  4731. name: "Standard",
  4732. height: math.unit(55, "feet"),
  4733. default: true
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4739. {
  4740. front: {
  4741. height: math.unit(7 + 5 / 6, "feet"),
  4742. weight: math.unit(325, "lb"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/asana/front.svg",
  4746. extra: 1133 / 1060,
  4747. bottom: 15.2 / 1148.6
  4748. }
  4749. },
  4750. back: {
  4751. height: math.unit(7 + 5 / 6, "feet"),
  4752. weight: math.unit(325, "lb"),
  4753. name: "Back",
  4754. image: {
  4755. source: "./media/characters/asana/back.svg",
  4756. extra: 1114 / 1043,
  4757. bottom: 5 / 1120
  4758. }
  4759. },
  4760. dressedDark: {
  4761. height: math.unit(7 + 5 / 6, "feet"),
  4762. weight: math.unit(325, "lb"),
  4763. name: "Dressed (Dark)",
  4764. image: {
  4765. source: "./media/characters/asana/dressed-dark.svg",
  4766. extra: 1133 / 1060,
  4767. bottom: 15.2 / 1148.6
  4768. }
  4769. },
  4770. dressedLight: {
  4771. height: math.unit(7 + 5 / 6, "feet"),
  4772. weight: math.unit(325, "lb"),
  4773. name: "Dressed (Light)",
  4774. image: {
  4775. source: "./media/characters/asana/dressed-light.svg",
  4776. extra: 1133 / 1060,
  4777. bottom: 15.2 / 1148.6
  4778. }
  4779. },
  4780. },
  4781. [
  4782. {
  4783. name: "Standard",
  4784. height: math.unit(7 + 5 / 6, "feet"),
  4785. default: true
  4786. },
  4787. {
  4788. name: "Large",
  4789. height: math.unit(10, "meters")
  4790. },
  4791. {
  4792. name: "Macro",
  4793. height: math.unit(2500, "meters")
  4794. },
  4795. {
  4796. name: "Megamacro",
  4797. height: math.unit(5e6, "meters")
  4798. },
  4799. {
  4800. name: "Examacro",
  4801. height: math.unit(5e12, "lightyears")
  4802. },
  4803. {
  4804. name: "Max Size",
  4805. height: math.unit(1e31, "lightyears")
  4806. }
  4807. ]
  4808. ))
  4809. characterMakers.push(() => makeCharacter(
  4810. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4811. {
  4812. front: {
  4813. height: math.unit(2, "meter"),
  4814. weight: math.unit(60, "kg"),
  4815. name: "Front",
  4816. image: {
  4817. source: "./media/characters/ebony/front.svg",
  4818. bottom: 0.03,
  4819. extra: 1045 / 810 + 0.03
  4820. }
  4821. },
  4822. side: {
  4823. height: math.unit(2, "meter"),
  4824. weight: math.unit(60, "kg"),
  4825. name: "Side",
  4826. image: {
  4827. source: "./media/characters/ebony/side.svg",
  4828. bottom: 0.03,
  4829. extra: 1045 / 810 + 0.03
  4830. }
  4831. },
  4832. back: {
  4833. height: math.unit(2, "meter"),
  4834. weight: math.unit(60, "kg"),
  4835. name: "Back",
  4836. image: {
  4837. source: "./media/characters/ebony/back.svg",
  4838. bottom: 0.01,
  4839. extra: 1045 / 810 + 0.01
  4840. }
  4841. },
  4842. },
  4843. [
  4844. // TODO check why I did this lol
  4845. {
  4846. name: "Standard",
  4847. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Macro",
  4852. height: math.unit(200, "feet")
  4853. },
  4854. {
  4855. name: "Gigamacro",
  4856. height: math.unit(13000, "km")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4862. {
  4863. front: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(175, "lb"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/mountain/front.svg",
  4869. extra: 972 / 955,
  4870. bottom: 64 / 1036.6
  4871. }
  4872. },
  4873. back: {
  4874. height: math.unit(6, "feet"),
  4875. weight: math.unit(175, "lb"),
  4876. name: "Back",
  4877. image: {
  4878. source: "./media/characters/mountain/back.svg",
  4879. extra: 970 / 950,
  4880. bottom: 28.25 / 999
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Large",
  4887. height: math.unit(20, "meters")
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(300, "meters")
  4892. },
  4893. {
  4894. name: "Gigamacro",
  4895. height: math.unit(10000, "km"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(10e9, "lightyears")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4906. {
  4907. front: {
  4908. height: math.unit(8, "feet"),
  4909. weight: math.unit(500, "lb"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/rick/front.svg"
  4913. }
  4914. }
  4915. },
  4916. [
  4917. {
  4918. name: "Normal",
  4919. height: math.unit(8, "feet"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Macro",
  4924. height: math.unit(5, "km")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4930. {
  4931. front: {
  4932. height: math.unit(8, "feet"),
  4933. weight: math.unit(120, "lb"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/ona/front.svg"
  4937. }
  4938. },
  4939. frontAlt: {
  4940. height: math.unit(8, "feet"),
  4941. weight: math.unit(120, "lb"),
  4942. name: "Front (Alt)",
  4943. image: {
  4944. source: "./media/characters/ona/front-alt.svg"
  4945. }
  4946. },
  4947. back: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(120, "lb"),
  4950. name: "Back",
  4951. image: {
  4952. source: "./media/characters/ona/back.svg"
  4953. }
  4954. },
  4955. foot: {
  4956. height: math.unit(1.1, "feet"),
  4957. name: "Foot",
  4958. image: {
  4959. source: "./media/characters/ona/foot.svg"
  4960. }
  4961. }
  4962. },
  4963. [
  4964. {
  4965. name: "Megamacro",
  4966. height: math.unit(70, "km"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Gigamacro",
  4971. height: math.unit(681818, "miles")
  4972. },
  4973. {
  4974. name: "Examacro",
  4975. height: math.unit(3800000, "lightyears")
  4976. },
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(12, "feet"),
  4984. weight: math.unit(3000, "lb"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/mech/front.svg",
  4988. extra: 2900 / 2770,
  4989. bottom: 110 / 3010
  4990. }
  4991. },
  4992. back: {
  4993. height: math.unit(12, "feet"),
  4994. weight: math.unit(3000, "lb"),
  4995. name: "Back",
  4996. image: {
  4997. source: "./media/characters/mech/back.svg",
  4998. extra: 3011 / 2890,
  4999. bottom: 94 / 3105
  5000. }
  5001. },
  5002. maw: {
  5003. height: math.unit(3.07, "feet"),
  5004. name: "Maw",
  5005. image: {
  5006. source: "./media/characters/mech/maw.svg"
  5007. }
  5008. },
  5009. head: {
  5010. height: math.unit(3.07, "feet"),
  5011. name: "Head",
  5012. image: {
  5013. source: "./media/characters/mech/head.svg"
  5014. }
  5015. },
  5016. dick: {
  5017. height: math.unit(1.43, "feet"),
  5018. name: "Dick",
  5019. image: {
  5020. source: "./media/characters/mech/dick.svg"
  5021. }
  5022. },
  5023. },
  5024. [
  5025. {
  5026. name: "Normal",
  5027. height: math.unit(12, "feet")
  5028. },
  5029. {
  5030. name: "Macro",
  5031. height: math.unit(300, "feet"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Macro+",
  5036. height: math.unit(1500, "feet")
  5037. },
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(1.3, "meter"),
  5045. weight: math.unit(30, "kg"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/gregory/front.svg",
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(1.3, "meter"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Macro",
  5060. height: math.unit(20, "meter")
  5061. }
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(2.8, "meter"),
  5069. weight: math.unit(200, "kg"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/elory/front.svg",
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(2.8, "meter"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Macro",
  5084. height: math.unit(38, "meter")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(470, "feet"),
  5093. weight: math.unit(924, "tons"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/angelpatamon/front.svg",
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Normal",
  5103. height: math.unit(470, "feet"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Deity Size I",
  5108. height: math.unit(28651.2, "km")
  5109. },
  5110. {
  5111. name: "Deity Size II",
  5112. height: math.unit(171907.2, "km")
  5113. }
  5114. ]
  5115. ))
  5116. characterMakers.push(() => makeCharacter(
  5117. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5118. {
  5119. side: {
  5120. height: math.unit(7.2, "meter"),
  5121. weight: math.unit(8.2, "tons"),
  5122. name: "Side",
  5123. image: {
  5124. source: "./media/characters/cryae/side.svg",
  5125. extra: 3500 / 1500
  5126. }
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(7.2, "meter"),
  5133. default: true
  5134. }
  5135. ]
  5136. ))
  5137. characterMakers.push(() => makeCharacter(
  5138. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5139. {
  5140. front: {
  5141. height: math.unit(6, "feet"),
  5142. weight: math.unit(175, "lb"),
  5143. name: "Front",
  5144. image: {
  5145. source: "./media/characters/xera/front.svg",
  5146. extra: 2377 / 1972,
  5147. bottom: 75.5 / 2452
  5148. }
  5149. },
  5150. side: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(175, "lb"),
  5153. name: "Side",
  5154. image: {
  5155. source: "./media/characters/xera/side.svg",
  5156. extra: 2345 / 2019,
  5157. bottom: 39.7 / 2384
  5158. }
  5159. },
  5160. back: {
  5161. height: math.unit(6, "feet"),
  5162. weight: math.unit(175, "lb"),
  5163. name: "Back",
  5164. image: {
  5165. source: "./media/characters/xera/back.svg",
  5166. extra: 2095 / 1984,
  5167. bottom: 67 / 2166
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Small",
  5174. height: math.unit(10, "feet")
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(500, "meters"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro+",
  5183. height: math.unit(10, "km")
  5184. },
  5185. {
  5186. name: "Gigamacro",
  5187. height: math.unit(25000, "km")
  5188. },
  5189. {
  5190. name: "Teramacro",
  5191. height: math.unit(3e6, "km")
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5197. {
  5198. front: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(175, "lb"),
  5201. name: "Front",
  5202. image: {
  5203. source: "./media/characters/nebula/front.svg",
  5204. extra: 2566 / 2362,
  5205. bottom: 81 / 2644
  5206. }
  5207. }
  5208. },
  5209. [
  5210. {
  5211. name: "Small",
  5212. height: math.unit(4.5, "meters")
  5213. },
  5214. {
  5215. name: "Macro",
  5216. height: math.unit(1500, "meters"),
  5217. default: true
  5218. },
  5219. {
  5220. name: "Megamacro",
  5221. height: math.unit(150, "km")
  5222. },
  5223. {
  5224. name: "Gigamacro",
  5225. height: math.unit(27000, "km")
  5226. }
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5231. {
  5232. front: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(225, "lb"),
  5235. name: "Front",
  5236. image: {
  5237. source: "./media/characters/abysgar/front.svg",
  5238. extra: 1739/1614,
  5239. bottom: 71/1810
  5240. }
  5241. },
  5242. frontNsfw: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(225, "lb"),
  5245. name: "Front (NSFW)",
  5246. image: {
  5247. source: "./media/characters/abysgar/front-nsfw.svg",
  5248. extra: 1739/1614,
  5249. bottom: 71/1810
  5250. }
  5251. },
  5252. back: {
  5253. height: math.unit(4.6, "feet"),
  5254. weight: math.unit(225, "lb"),
  5255. name: "Back",
  5256. image: {
  5257. source: "./media/characters/abysgar/back.svg",
  5258. extra: 1384/1327,
  5259. bottom: 0/1384
  5260. }
  5261. },
  5262. head: {
  5263. height: math.unit(1.25, "feet"),
  5264. name: "Head",
  5265. image: {
  5266. source: "./media/characters/abysgar/head.svg",
  5267. extra: 669/569,
  5268. bottom: 0/669
  5269. }
  5270. },
  5271. },
  5272. [
  5273. {
  5274. name: "Small",
  5275. height: math.unit(4.5, "meters")
  5276. },
  5277. {
  5278. name: "Macro",
  5279. height: math.unit(1250, "meters"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Megamacro",
  5284. height: math.unit(125, "km")
  5285. },
  5286. {
  5287. name: "Gigamacro",
  5288. height: math.unit(26000, "km")
  5289. }
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5294. {
  5295. front: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(180, "lb"),
  5298. name: "Front",
  5299. image: {
  5300. source: "./media/characters/yakuz/front.svg"
  5301. }
  5302. }
  5303. },
  5304. [
  5305. {
  5306. name: "Small",
  5307. height: math.unit(5, "meters")
  5308. },
  5309. {
  5310. name: "Macro",
  5311. height: math.unit(1500, "meters"),
  5312. default: true
  5313. },
  5314. {
  5315. name: "Megamacro",
  5316. height: math.unit(200, "km")
  5317. },
  5318. {
  5319. name: "Gigamacro",
  5320. height: math.unit(100000, "km")
  5321. }
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5326. {
  5327. front: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(175, "lb"),
  5330. name: "Front",
  5331. image: {
  5332. source: "./media/characters/mirova/front.svg",
  5333. extra: 3334 / 3071,
  5334. bottom: 42 / 3375.6
  5335. }
  5336. }
  5337. },
  5338. [
  5339. {
  5340. name: "Small",
  5341. height: math.unit(5, "meters")
  5342. },
  5343. {
  5344. name: "Macro",
  5345. height: math.unit(900, "meters"),
  5346. default: true
  5347. },
  5348. {
  5349. name: "Megamacro",
  5350. height: math.unit(135, "km")
  5351. },
  5352. {
  5353. name: "Gigamacro",
  5354. height: math.unit(20000, "km")
  5355. }
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5360. {
  5361. side: {
  5362. height: math.unit(28.35, "feet"),
  5363. weight: math.unit(99.75, "tons"),
  5364. name: "Side",
  5365. image: {
  5366. source: "./media/characters/asana-mech/side.svg",
  5367. extra: 923 / 699,
  5368. bottom: 50 / 975
  5369. }
  5370. },
  5371. chaingun: {
  5372. height: math.unit(7, "feet"),
  5373. weight: math.unit(2400, "lb"),
  5374. name: "Chaingun",
  5375. image: {
  5376. source: "./media/characters/asana-mech/chaingun.svg"
  5377. }
  5378. },
  5379. laser: {
  5380. height: math.unit(7.12, "feet"),
  5381. weight: math.unit(2000, "lb"),
  5382. name: "Laser",
  5383. image: {
  5384. source: "./media/characters/asana-mech/laser.svg"
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Normal",
  5391. height: math.unit(28.35, "feet"),
  5392. default: true
  5393. },
  5394. {
  5395. name: "Macro",
  5396. height: math.unit(2500, "feet")
  5397. },
  5398. {
  5399. name: "Megamacro",
  5400. height: math.unit(25, "miles")
  5401. },
  5402. {
  5403. name: "Examacro",
  5404. height: math.unit(6e8, "lightyears")
  5405. },
  5406. ]
  5407. ))
  5408. characterMakers.push(() => makeCharacter(
  5409. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5410. {
  5411. front: {
  5412. height: math.unit(5, "meters"),
  5413. weight: math.unit(1000, "kg"),
  5414. name: "Front",
  5415. image: {
  5416. source: "./media/characters/asche/front.svg",
  5417. extra: 1258 / 1190,
  5418. bottom: 47 / 1305
  5419. }
  5420. },
  5421. frontUnderwear: {
  5422. height: math.unit(5, "meters"),
  5423. weight: math.unit(1000, "kg"),
  5424. name: "Front (Underwear)",
  5425. image: {
  5426. source: "./media/characters/asche/front-underwear.svg",
  5427. extra: 1258 / 1190,
  5428. bottom: 47 / 1305
  5429. }
  5430. },
  5431. frontDressed: {
  5432. height: math.unit(5, "meters"),
  5433. weight: math.unit(1000, "kg"),
  5434. name: "Front (Dressed)",
  5435. image: {
  5436. source: "./media/characters/asche/front-dressed.svg",
  5437. extra: 1258 / 1190,
  5438. bottom: 47 / 1305
  5439. }
  5440. },
  5441. frontArmor: {
  5442. height: math.unit(5, "meters"),
  5443. weight: math.unit(1000, "kg"),
  5444. name: "Front (Armored)",
  5445. image: {
  5446. source: "./media/characters/asche/front-armored.svg",
  5447. extra: 1374 / 1308,
  5448. bottom: 23 / 1397
  5449. }
  5450. },
  5451. mp724: {
  5452. height: math.unit(0.96, "meters"),
  5453. weight: math.unit(38, "kg"),
  5454. name: "H&K MP724",
  5455. image: {
  5456. source: "./media/characters/asche/h&k-mp724.svg"
  5457. }
  5458. },
  5459. side: {
  5460. height: math.unit(5, "meters"),
  5461. weight: math.unit(1000, "kg"),
  5462. name: "Side",
  5463. image: {
  5464. source: "./media/characters/asche/side.svg",
  5465. extra: 1717 / 1609,
  5466. bottom: 0.005
  5467. }
  5468. },
  5469. back: {
  5470. height: math.unit(5, "meters"),
  5471. weight: math.unit(1000, "kg"),
  5472. name: "Back",
  5473. image: {
  5474. source: "./media/characters/asche/back.svg",
  5475. extra: 1570 / 1501
  5476. }
  5477. },
  5478. },
  5479. [
  5480. {
  5481. name: "DEFCON 5",
  5482. height: math.unit(5, "meters")
  5483. },
  5484. {
  5485. name: "DEFCON 4",
  5486. height: math.unit(500, "meters"),
  5487. default: true
  5488. },
  5489. {
  5490. name: "DEFCON 3",
  5491. height: math.unit(5, "km")
  5492. },
  5493. {
  5494. name: "DEFCON 2",
  5495. height: math.unit(500, "km")
  5496. },
  5497. {
  5498. name: "DEFCON 1",
  5499. height: math.unit(500000, "km")
  5500. },
  5501. {
  5502. name: "DEFCON 0",
  5503. height: math.unit(3, "gigaparsecs")
  5504. },
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(7, "feet"),
  5512. weight: math.unit(92.7, "kg"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/gale/front.svg",
  5516. extra: 977/919,
  5517. bottom: 105/1082
  5518. }
  5519. },
  5520. side: {
  5521. height: math.unit(6.7, "feet"),
  5522. weight: math.unit(92.7, "kg"),
  5523. name: "Side",
  5524. image: {
  5525. source: "./media/characters/gale/side.svg",
  5526. extra: 978/922,
  5527. bottom: 140/1118
  5528. }
  5529. },
  5530. back: {
  5531. height: math.unit(7, "feet"),
  5532. weight: math.unit(92.7, "kg"),
  5533. name: "Back",
  5534. image: {
  5535. source: "./media/characters/gale/back.svg",
  5536. extra: 966/920,
  5537. bottom: 61/1027
  5538. }
  5539. },
  5540. maw: {
  5541. height: math.unit(2.23, "feet"),
  5542. name: "Maw",
  5543. image: {
  5544. source: "./media/characters/gale/maw.svg"
  5545. }
  5546. },
  5547. foot: {
  5548. height: math.unit(2.1, "feet"),
  5549. name: "Foot",
  5550. image: {
  5551. source: "./media/characters/gale/foot.svg"
  5552. }
  5553. },
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(7, "feet")
  5559. },
  5560. {
  5561. name: "Macro",
  5562. height: math.unit(150, "feet"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Macro+",
  5567. height: math.unit(300, "feet")
  5568. },
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(5 + 10/12, "feet"),
  5576. weight: math.unit(67, "kg"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/draylen/front.svg",
  5580. extra: 832/777,
  5581. bottom: 85/917
  5582. }
  5583. }
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(5 + 10/12, "feet")
  5589. },
  5590. {
  5591. name: "Macro",
  5592. height: math.unit(150, "feet"),
  5593. default: true
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(7 + 9 / 12, "feet"),
  5602. weight: math.unit(379, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/chez/front.svg"
  5606. }
  5607. },
  5608. side: {
  5609. height: math.unit(7 + 9 / 12, "feet"),
  5610. weight: math.unit(379, "lbs"),
  5611. name: "Side",
  5612. image: {
  5613. source: "./media/characters/chez/side.svg"
  5614. }
  5615. }
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(7 + 9 / 12, "feet"),
  5621. default: true
  5622. },
  5623. {
  5624. name: "God King",
  5625. height: math.unit(9750000, "meters")
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5631. {
  5632. front: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(275, "lbs"),
  5635. name: "Front",
  5636. image: {
  5637. source: "./media/characters/kaylum/front.svg",
  5638. bottom: 0.01,
  5639. extra: 1166 / 1031
  5640. }
  5641. },
  5642. frontWingless: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(275, "lbs"),
  5645. name: "Front (Wingless)",
  5646. image: {
  5647. source: "./media/characters/kaylum/front-wingless.svg",
  5648. bottom: 0.01,
  5649. extra: 1117 / 1031
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(3.05, "meters")
  5657. },
  5658. {
  5659. name: "Master",
  5660. height: math.unit(5.5, "meters")
  5661. },
  5662. {
  5663. name: "Rampage",
  5664. height: math.unit(19, "meters")
  5665. },
  5666. {
  5667. name: "Macro Lite",
  5668. height: math.unit(37, "meters")
  5669. },
  5670. {
  5671. name: "Hyper Predator",
  5672. height: math.unit(61, "meters")
  5673. },
  5674. {
  5675. name: "Macro",
  5676. height: math.unit(138, "meters"),
  5677. default: true
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5683. {
  5684. front: {
  5685. height: math.unit(5 + 5 / 12, "feet"),
  5686. weight: math.unit(120, "lbs"),
  5687. name: "Front",
  5688. image: {
  5689. source: "./media/characters/geta/front.svg",
  5690. extra: 1003/933,
  5691. bottom: 21/1024
  5692. }
  5693. },
  5694. paw: {
  5695. height: math.unit(0.35, "feet"),
  5696. name: "Paw",
  5697. image: {
  5698. source: "./media/characters/geta/paw.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Micro",
  5705. height: math.unit(3, "inches"),
  5706. default: true
  5707. },
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(5 + 5 / 12, "feet")
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(300, "lbs"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/tyrnn/front.svg"
  5723. }
  5724. }
  5725. },
  5726. [
  5727. {
  5728. name: "Main Height",
  5729. height: math.unit(355, "feet"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Fave. Height",
  5734. height: math.unit(2400, "feet")
  5735. }
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(300, "lbs"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/appledectomy/front.svg"
  5747. }
  5748. }
  5749. },
  5750. [
  5751. {
  5752. name: "Macro",
  5753. height: math.unit(2500, "feet")
  5754. },
  5755. {
  5756. name: "Megamacro",
  5757. height: math.unit(50, "miles"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Gigamacro",
  5762. height: math.unit(5000, "miles")
  5763. },
  5764. {
  5765. name: "Teramacro",
  5766. height: math.unit(250000, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(6, "feet"),
  5775. weight: math.unit(200, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/vulpes/front.svg",
  5779. extra: 573 / 543,
  5780. bottom: 0.033
  5781. }
  5782. },
  5783. side: {
  5784. height: math.unit(6, "feet"),
  5785. weight: math.unit(200, "lbs"),
  5786. name: "Side",
  5787. image: {
  5788. source: "./media/characters/vulpes/side.svg",
  5789. extra: 577 / 549,
  5790. bottom: 11 / 588
  5791. }
  5792. },
  5793. back: {
  5794. height: math.unit(6, "feet"),
  5795. weight: math.unit(200, "lbs"),
  5796. name: "Back",
  5797. image: {
  5798. source: "./media/characters/vulpes/back.svg",
  5799. extra: 573 / 549,
  5800. bottom: 20 / 593
  5801. }
  5802. },
  5803. feet: {
  5804. height: math.unit(1.276, "feet"),
  5805. name: "Feet",
  5806. image: {
  5807. source: "./media/characters/vulpes/feet.svg"
  5808. }
  5809. },
  5810. maw: {
  5811. height: math.unit(1.18, "feet"),
  5812. name: "Maw",
  5813. image: {
  5814. source: "./media/characters/vulpes/maw.svg"
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Micro",
  5821. height: math.unit(2, "inches")
  5822. },
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(6.3, "feet")
  5826. },
  5827. {
  5828. name: "Macro",
  5829. height: math.unit(850, "feet")
  5830. },
  5831. {
  5832. name: "Megamacro",
  5833. height: math.unit(7500, "feet"),
  5834. default: true
  5835. },
  5836. {
  5837. name: "Gigamacro",
  5838. height: math.unit(570000, "miles")
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5844. {
  5845. front: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(210, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/rain-fallen/front.svg"
  5851. }
  5852. },
  5853. side: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(210, "lbs"),
  5856. name: "Side",
  5857. image: {
  5858. source: "./media/characters/rain-fallen/side.svg"
  5859. }
  5860. },
  5861. back: {
  5862. height: math.unit(6, "feet"),
  5863. weight: math.unit(210, "lbs"),
  5864. name: "Back",
  5865. image: {
  5866. source: "./media/characters/rain-fallen/back.svg"
  5867. }
  5868. },
  5869. feral: {
  5870. height: math.unit(9, "feet"),
  5871. weight: math.unit(700, "lbs"),
  5872. name: "Feral",
  5873. image: {
  5874. source: "./media/characters/rain-fallen/feral.svg"
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Meddling with Mortals",
  5881. height: math.unit(8 + 8/12, "feet")
  5882. },
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(5, "meter")
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(150, "meter"),
  5890. default: true
  5891. },
  5892. {
  5893. name: "Megamacro",
  5894. height: math.unit(278e6, "meter")
  5895. },
  5896. {
  5897. name: "Gigamacro",
  5898. height: math.unit(2e9, "meter")
  5899. },
  5900. {
  5901. name: "Teramacro",
  5902. height: math.unit(8e12, "meter")
  5903. },
  5904. {
  5905. name: "Devourer",
  5906. height: math.unit(14, "zettameters")
  5907. },
  5908. {
  5909. name: "Scarlet King",
  5910. height: math.unit(18, "yottameters")
  5911. },
  5912. {
  5913. name: "Void",
  5914. height: math.unit(1e88, "yottameters")
  5915. }
  5916. ]
  5917. ))
  5918. characterMakers.push(() => makeCharacter(
  5919. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5920. {
  5921. standing: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(180, "lbs"),
  5924. name: "Standing",
  5925. image: {
  5926. source: "./media/characters/zaakira/standing.svg",
  5927. extra: 1599/1504,
  5928. bottom: 39/1638
  5929. }
  5930. },
  5931. laying: {
  5932. height: math.unit(3.3, "feet"),
  5933. weight: math.unit(180, "lbs"),
  5934. name: "Laying",
  5935. image: {
  5936. source: "./media/characters/zaakira/laying.svg"
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Normal",
  5943. height: math.unit(12, "feet")
  5944. },
  5945. {
  5946. name: "Macro",
  5947. height: math.unit(279, "feet"),
  5948. default: true
  5949. }
  5950. ]
  5951. ))
  5952. characterMakers.push(() => makeCharacter(
  5953. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5954. {
  5955. femSfw: {
  5956. height: math.unit(8, "feet"),
  5957. weight: math.unit(350, "lb"),
  5958. name: "Fem",
  5959. image: {
  5960. source: "./media/characters/sigvald/fem-sfw.svg",
  5961. extra: 182 / 164,
  5962. bottom: 8.7 / 190.5
  5963. }
  5964. },
  5965. femNsfw: {
  5966. height: math.unit(8, "feet"),
  5967. weight: math.unit(350, "lb"),
  5968. name: "Fem (NSFW)",
  5969. image: {
  5970. source: "./media/characters/sigvald/fem-nsfw.svg",
  5971. extra: 182 / 164,
  5972. bottom: 8.7 / 190.5
  5973. }
  5974. },
  5975. maleNsfw: {
  5976. height: math.unit(8, "feet"),
  5977. weight: math.unit(350, "lb"),
  5978. name: "Male (NSFW)",
  5979. image: {
  5980. source: "./media/characters/sigvald/male-nsfw.svg",
  5981. extra: 182 / 164,
  5982. bottom: 8.7 / 190.5
  5983. }
  5984. },
  5985. hermNsfw: {
  5986. height: math.unit(8, "feet"),
  5987. weight: math.unit(350, "lb"),
  5988. name: "Herm (NSFW)",
  5989. image: {
  5990. source: "./media/characters/sigvald/herm-nsfw.svg",
  5991. extra: 182 / 164,
  5992. bottom: 8.7 / 190.5
  5993. }
  5994. },
  5995. dick: {
  5996. height: math.unit(2.36, "feet"),
  5997. name: "Dick",
  5998. image: {
  5999. source: "./media/characters/sigvald/dick.svg"
  6000. }
  6001. },
  6002. eye: {
  6003. height: math.unit(0.31, "feet"),
  6004. name: "Eye",
  6005. image: {
  6006. source: "./media/characters/sigvald/eye.svg"
  6007. }
  6008. },
  6009. mouth: {
  6010. height: math.unit(0.92, "feet"),
  6011. name: "Mouth",
  6012. image: {
  6013. source: "./media/characters/sigvald/mouth.svg"
  6014. }
  6015. },
  6016. paws: {
  6017. height: math.unit(2.2, "feet"),
  6018. name: "Paws",
  6019. image: {
  6020. source: "./media/characters/sigvald/paws.svg"
  6021. }
  6022. }
  6023. },
  6024. [
  6025. {
  6026. name: "Normal",
  6027. height: math.unit(8, "feet")
  6028. },
  6029. {
  6030. name: "Large",
  6031. height: math.unit(12, "feet")
  6032. },
  6033. {
  6034. name: "Larger",
  6035. height: math.unit(20, "feet")
  6036. },
  6037. {
  6038. name: "Macro",
  6039. height: math.unit(150, "feet")
  6040. },
  6041. {
  6042. name: "Macro+",
  6043. height: math.unit(200, "feet"),
  6044. default: true
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6050. {
  6051. side: {
  6052. height: math.unit(12, "feet"),
  6053. weight: math.unit(2000, "kg"),
  6054. name: "Side",
  6055. image: {
  6056. source: "./media/characters/scott/side.svg",
  6057. extra: 754 / 724,
  6058. bottom: 0.069
  6059. }
  6060. },
  6061. upright: {
  6062. height: math.unit(12, "feet"),
  6063. weight: math.unit(2000, "kg"),
  6064. name: "Upright",
  6065. image: {
  6066. source: "./media/characters/scott/upright.svg",
  6067. extra: 3881 / 3722,
  6068. bottom: 0.05
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(12, "feet"),
  6076. default: true
  6077. },
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6082. {
  6083. side: {
  6084. height: math.unit(8, "meters"),
  6085. weight: math.unit(84755, "lbs"),
  6086. name: "Side",
  6087. image: {
  6088. source: "./media/characters/tobias/side.svg",
  6089. extra: 1474 / 1096,
  6090. bottom: 38.9 / 1513.1235
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(8, "meters"),
  6098. default: true
  6099. },
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6104. {
  6105. front: {
  6106. height: math.unit(5.5, "feet"),
  6107. weight: math.unit(400, "lbs"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/kieran/front.svg",
  6111. extra: 2694 / 2364,
  6112. bottom: 217 / 2908
  6113. }
  6114. },
  6115. side: {
  6116. height: math.unit(5.5, "feet"),
  6117. weight: math.unit(400, "lbs"),
  6118. name: "Side",
  6119. image: {
  6120. source: "./media/characters/kieran/side.svg",
  6121. extra: 875 / 777,
  6122. bottom: 84.6 / 959
  6123. }
  6124. },
  6125. },
  6126. [
  6127. {
  6128. name: "Normal",
  6129. height: math.unit(5.5, "feet"),
  6130. default: true
  6131. },
  6132. ]
  6133. ))
  6134. characterMakers.push(() => makeCharacter(
  6135. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6136. {
  6137. side: {
  6138. height: math.unit(2, "meters"),
  6139. weight: math.unit(70, "kg"),
  6140. name: "Side",
  6141. image: {
  6142. source: "./media/characters/sanya/side.svg",
  6143. bottom: 0.02,
  6144. extra: 1.02
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Small",
  6151. height: math.unit(2, "meters")
  6152. },
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(3, "meters")
  6156. },
  6157. {
  6158. name: "Macro",
  6159. height: math.unit(16, "meters"),
  6160. default: true
  6161. },
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6166. {
  6167. front: {
  6168. height: math.unit(2, "meters"),
  6169. weight: math.unit(120, "kg"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/miranda/front.svg",
  6173. extra: 195 / 185,
  6174. bottom: 10.9 / 206.5
  6175. }
  6176. },
  6177. back: {
  6178. height: math.unit(2, "meters"),
  6179. weight: math.unit(120, "kg"),
  6180. name: "Back",
  6181. image: {
  6182. source: "./media/characters/miranda/back.svg",
  6183. extra: 201 / 193,
  6184. bottom: 2.3 / 203.7
  6185. }
  6186. },
  6187. },
  6188. [
  6189. {
  6190. name: "Normal",
  6191. height: math.unit(10, "feet"),
  6192. default: true
  6193. }
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "James", species: ["deer"], tags: ["anthro"] },
  6198. {
  6199. side: {
  6200. height: math.unit(2, "meters"),
  6201. weight: math.unit(100, "kg"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/james/front.svg",
  6205. extra: 10 / 8.5
  6206. }
  6207. },
  6208. },
  6209. [
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(8.5, "feet"),
  6213. default: true
  6214. }
  6215. ]
  6216. ))
  6217. characterMakers.push(() => makeCharacter(
  6218. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6219. {
  6220. side: {
  6221. height: math.unit(9.5, "feet"),
  6222. weight: math.unit(2500, "lbs"),
  6223. name: "Side",
  6224. image: {
  6225. source: "./media/characters/heather/side.svg"
  6226. }
  6227. },
  6228. },
  6229. [
  6230. {
  6231. name: "Normal",
  6232. height: math.unit(9.5, "feet"),
  6233. default: true
  6234. }
  6235. ]
  6236. ))
  6237. characterMakers.push(() => makeCharacter(
  6238. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6239. {
  6240. side: {
  6241. height: math.unit(6.5, "feet"),
  6242. weight: math.unit(400, "lbs"),
  6243. name: "Side",
  6244. image: {
  6245. source: "./media/characters/lukas/side.svg",
  6246. extra: 7.25 / 6.5
  6247. }
  6248. },
  6249. },
  6250. [
  6251. {
  6252. name: "Normal",
  6253. height: math.unit(6.5, "feet"),
  6254. default: true
  6255. }
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6260. {
  6261. side: {
  6262. height: math.unit(5, "feet"),
  6263. weight: math.unit(3000, "lbs"),
  6264. name: "Side",
  6265. image: {
  6266. source: "./media/characters/louise/side.svg"
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Normal",
  6273. height: math.unit(5, "feet"),
  6274. default: true
  6275. }
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6280. {
  6281. side: {
  6282. height: math.unit(6, "feet"),
  6283. weight: math.unit(150, "lbs"),
  6284. name: "Side",
  6285. image: {
  6286. source: "./media/characters/ramona/side.svg",
  6287. extra: 871/854,
  6288. bottom: 41/912
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Normal",
  6295. height: math.unit(6 + 4/12, "feet")
  6296. },
  6297. {
  6298. name: "Minimacro",
  6299. height: math.unit(5.3, "meters"),
  6300. default: true
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(20, "stories")
  6305. },
  6306. {
  6307. name: "Macro+",
  6308. height: math.unit(50, "stories")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6314. {
  6315. standing: {
  6316. height: math.unit(5.75, "feet"),
  6317. weight: math.unit(160, "lbs"),
  6318. name: "Standing",
  6319. image: {
  6320. source: "./media/characters/deerpuff/standing.svg",
  6321. extra: 682 / 624
  6322. }
  6323. },
  6324. sitting: {
  6325. height: math.unit(5.75 / 1.79, "feet"),
  6326. weight: math.unit(160, "lbs"),
  6327. name: "Sitting",
  6328. image: {
  6329. source: "./media/characters/deerpuff/sitting.svg",
  6330. bottom: 44 / 400,
  6331. extra: 1
  6332. }
  6333. },
  6334. taurLaying: {
  6335. height: math.unit(6, "feet"),
  6336. weight: math.unit(400, "lbs"),
  6337. name: "Taur (Laying)",
  6338. image: {
  6339. source: "./media/characters/deerpuff/taur-laying.svg"
  6340. }
  6341. },
  6342. },
  6343. [
  6344. {
  6345. name: "Puffball",
  6346. height: math.unit(6, "inches")
  6347. },
  6348. {
  6349. name: "Normalpuff",
  6350. height: math.unit(5.75, "feet")
  6351. },
  6352. {
  6353. name: "Macropuff",
  6354. height: math.unit(1500, "feet"),
  6355. default: true
  6356. },
  6357. {
  6358. name: "Megapuff",
  6359. height: math.unit(500, "miles")
  6360. },
  6361. {
  6362. name: "Gigapuff",
  6363. height: math.unit(250000, "miles")
  6364. },
  6365. {
  6366. name: "Omegapuff",
  6367. height: math.unit(1000, "lightyears")
  6368. },
  6369. ]
  6370. ))
  6371. characterMakers.push(() => makeCharacter(
  6372. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6373. {
  6374. stomping: {
  6375. height: math.unit(6, "feet"),
  6376. weight: math.unit(170, "lbs"),
  6377. name: "Stomping",
  6378. image: {
  6379. source: "./media/characters/vivian/stomping.svg"
  6380. }
  6381. },
  6382. sitting: {
  6383. height: math.unit(6 / 1.75, "feet"),
  6384. weight: math.unit(170, "lbs"),
  6385. name: "Sitting",
  6386. image: {
  6387. source: "./media/characters/vivian/sitting.svg",
  6388. bottom: 1 / 6.4,
  6389. extra: 1,
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Normal",
  6396. height: math.unit(7, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(10, "stories")
  6402. },
  6403. {
  6404. name: "Macro+",
  6405. height: math.unit(30, "stories")
  6406. },
  6407. {
  6408. name: "Megamacro",
  6409. height: math.unit(10, "miles")
  6410. },
  6411. {
  6412. name: "Megamacro+",
  6413. height: math.unit(2750000, "meters")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(6, "feet"),
  6422. weight: math.unit(160, "lbs"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/prince/front.svg",
  6426. extra: 1938/1682,
  6427. bottom: 45/1983
  6428. }
  6429. },
  6430. back: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(160, "lbs"),
  6433. name: "Back",
  6434. image: {
  6435. source: "./media/characters/prince/back.svg",
  6436. extra: 1955/1726,
  6437. bottom: 6/1961
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(7.75, "feet"),
  6445. default: true
  6446. },
  6447. {
  6448. name: "Not cute",
  6449. height: math.unit(17, "feet")
  6450. },
  6451. {
  6452. name: "I said NOT",
  6453. height: math.unit(91, "feet")
  6454. },
  6455. {
  6456. name: "Please stop",
  6457. height: math.unit(560, "feet")
  6458. },
  6459. {
  6460. name: "What have you done",
  6461. height: math.unit(2200, "feet")
  6462. },
  6463. {
  6464. name: "Deer God",
  6465. height: math.unit(3.6, "miles")
  6466. },
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6471. {
  6472. standing: {
  6473. height: math.unit(6, "feet"),
  6474. weight: math.unit(300, "lbs"),
  6475. name: "Standing",
  6476. image: {
  6477. source: "./media/characters/psymon/standing.svg",
  6478. extra: 1888 / 1810,
  6479. bottom: 0.05
  6480. }
  6481. },
  6482. slithering: {
  6483. height: math.unit(6, "feet"),
  6484. weight: math.unit(300, "lbs"),
  6485. name: "Slithering",
  6486. image: {
  6487. source: "./media/characters/psymon/slithering.svg",
  6488. extra: 1330 / 1224
  6489. }
  6490. },
  6491. slitheringAlt: {
  6492. height: math.unit(6, "feet"),
  6493. weight: math.unit(300, "lbs"),
  6494. name: "Slithering (Alt)",
  6495. image: {
  6496. source: "./media/characters/psymon/slithering-alt.svg",
  6497. extra: 1330 / 1224
  6498. }
  6499. },
  6500. },
  6501. [
  6502. {
  6503. name: "Normal",
  6504. height: math.unit(11.25, "feet"),
  6505. default: true
  6506. },
  6507. {
  6508. name: "Large",
  6509. height: math.unit(27, "feet")
  6510. },
  6511. {
  6512. name: "Giant",
  6513. height: math.unit(87, "feet")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(365, "feet")
  6518. },
  6519. {
  6520. name: "Megamacro",
  6521. height: math.unit(3, "miles")
  6522. },
  6523. {
  6524. name: "World Serpent",
  6525. height: math.unit(8000, "miles")
  6526. },
  6527. ]
  6528. ))
  6529. characterMakers.push(() => makeCharacter(
  6530. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6531. {
  6532. front: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(180, "lbs"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/daimos/front.svg",
  6538. extra: 4160 / 3897,
  6539. bottom: 0.021
  6540. }
  6541. }
  6542. },
  6543. [
  6544. {
  6545. name: "Normal",
  6546. height: math.unit(8, "feet"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Big Dog",
  6551. height: math.unit(22, "feet")
  6552. },
  6553. {
  6554. name: "Macro",
  6555. height: math.unit(127, "feet")
  6556. },
  6557. {
  6558. name: "Megamacro",
  6559. height: math.unit(3600, "feet")
  6560. },
  6561. ]
  6562. ))
  6563. characterMakers.push(() => makeCharacter(
  6564. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6565. {
  6566. side: {
  6567. height: math.unit(6, "feet"),
  6568. weight: math.unit(180, "lbs"),
  6569. name: "Side",
  6570. image: {
  6571. source: "./media/characters/blake/side.svg",
  6572. extra: 1212 / 1120,
  6573. bottom: 0.05
  6574. }
  6575. },
  6576. crouched: {
  6577. height: math.unit(6 * 0.57, "feet"),
  6578. weight: math.unit(180, "lbs"),
  6579. name: "Crouched",
  6580. image: {
  6581. source: "./media/characters/blake/crouched.svg",
  6582. extra: 840 / 587,
  6583. bottom: 0.04
  6584. }
  6585. },
  6586. bent: {
  6587. height: math.unit(6 * 0.75, "feet"),
  6588. weight: math.unit(180, "lbs"),
  6589. name: "Bent",
  6590. image: {
  6591. source: "./media/characters/blake/bent.svg",
  6592. extra: 592 / 544,
  6593. bottom: 0.035
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(8 + 1 / 6, "feet"),
  6601. default: true
  6602. },
  6603. {
  6604. name: "Big Backside",
  6605. height: math.unit(37, "feet")
  6606. },
  6607. {
  6608. name: "Subway Shredder",
  6609. height: math.unit(72, "feet")
  6610. },
  6611. {
  6612. name: "City Carver",
  6613. height: math.unit(1675, "feet")
  6614. },
  6615. {
  6616. name: "Tectonic Tweaker",
  6617. height: math.unit(2300, "miles")
  6618. },
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(6, "feet"),
  6626. weight: math.unit(180, "lbs"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/guisetto/front.svg",
  6630. extra: 856 / 817,
  6631. bottom: 0.06
  6632. }
  6633. },
  6634. airborne: {
  6635. height: math.unit(6, "feet"),
  6636. weight: math.unit(180, "lbs"),
  6637. name: "Airborne",
  6638. image: {
  6639. source: "./media/characters/guisetto/airborne.svg",
  6640. extra: 584 / 525
  6641. }
  6642. },
  6643. },
  6644. [
  6645. {
  6646. name: "Normal",
  6647. height: math.unit(10 + 11 / 12, "feet"),
  6648. default: true
  6649. },
  6650. {
  6651. name: "Large",
  6652. height: math.unit(35, "feet")
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(475, "feet")
  6657. },
  6658. ]
  6659. ))
  6660. characterMakers.push(() => makeCharacter(
  6661. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6662. {
  6663. front: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(180, "lbs"),
  6666. name: "Front",
  6667. image: {
  6668. source: "./media/characters/luxor/front.svg",
  6669. extra: 2940 / 2152
  6670. }
  6671. },
  6672. back: {
  6673. height: math.unit(6, "feet"),
  6674. weight: math.unit(180, "lbs"),
  6675. name: "Back",
  6676. image: {
  6677. source: "./media/characters/luxor/back.svg",
  6678. extra: 1083 / 960
  6679. }
  6680. },
  6681. },
  6682. [
  6683. {
  6684. name: "Normal",
  6685. height: math.unit(5 + 5 / 6, "feet"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Lamp",
  6690. height: math.unit(50, "feet")
  6691. },
  6692. {
  6693. name: "Lämp",
  6694. height: math.unit(300, "feet")
  6695. },
  6696. {
  6697. name: "The sun is a lamp",
  6698. height: math.unit(250000, "miles")
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(50, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/huoyan/front.svg"
  6711. }
  6712. },
  6713. side: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(180, "lbs"),
  6716. name: "Side",
  6717. image: {
  6718. source: "./media/characters/huoyan/side.svg"
  6719. }
  6720. },
  6721. },
  6722. [
  6723. {
  6724. name: "Chef",
  6725. height: math.unit(9, "feet")
  6726. },
  6727. {
  6728. name: "Normal",
  6729. height: math.unit(65, "feet"),
  6730. default: true
  6731. },
  6732. {
  6733. name: "Macro",
  6734. height: math.unit(780, "feet")
  6735. },
  6736. {
  6737. name: "Flaming Mountain",
  6738. height: math.unit(4.8, "miles")
  6739. },
  6740. {
  6741. name: "Celestial",
  6742. height: math.unit(765000, "miles")
  6743. },
  6744. ]
  6745. ))
  6746. characterMakers.push(() => makeCharacter(
  6747. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6748. {
  6749. front: {
  6750. height: math.unit(5 + 3 / 4, "feet"),
  6751. weight: math.unit(120, "lbs"),
  6752. name: "Front",
  6753. image: {
  6754. source: "./media/characters/tails/front.svg"
  6755. }
  6756. }
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(5 + 3 / 4, "feet"),
  6762. default: true
  6763. }
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(4, "feet"),
  6771. weight: math.unit(50, "lbs"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/rainy/front.svg"
  6775. }
  6776. }
  6777. },
  6778. [
  6779. {
  6780. name: "Macro",
  6781. height: math.unit(800, "feet"),
  6782. default: true
  6783. }
  6784. ]
  6785. ))
  6786. characterMakers.push(() => makeCharacter(
  6787. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6788. {
  6789. front: {
  6790. height: math.unit(6, "feet"),
  6791. weight: math.unit(150, "lbs"),
  6792. name: "Front",
  6793. image: {
  6794. source: "./media/characters/rainier/front.svg"
  6795. }
  6796. }
  6797. },
  6798. [
  6799. {
  6800. name: "Micro",
  6801. height: math.unit(2, "mm"),
  6802. default: true
  6803. }
  6804. ]
  6805. ))
  6806. characterMakers.push(() => makeCharacter(
  6807. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6808. {
  6809. front: {
  6810. height: math.unit(8 + 4/12, "feet"),
  6811. weight: math.unit(450, "kilograms"),
  6812. volume: math.unit(5, "cups"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/andy-renard/front.svg",
  6816. extra: 1839/1726,
  6817. bottom: 134/1973
  6818. }
  6819. },
  6820. back: {
  6821. height: math.unit(8 + 4/12, "feet"),
  6822. weight: math.unit(450, "kilograms"),
  6823. volume: math.unit(5, "cups"),
  6824. name: "Back",
  6825. image: {
  6826. source: "./media/characters/andy-renard/back.svg",
  6827. extra: 1838/1710,
  6828. bottom: 105/1943
  6829. }
  6830. },
  6831. },
  6832. [
  6833. {
  6834. name: "Tall",
  6835. height: math.unit(8 + 4/12, "feet")
  6836. },
  6837. {
  6838. name: "Mini Macro",
  6839. height: math.unit(15, "feet"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Macro",
  6844. height: math.unit(100, "feet")
  6845. },
  6846. {
  6847. name: "Mega Macro",
  6848. height: math.unit(1000, "feet")
  6849. },
  6850. {
  6851. name: "Giga Macro",
  6852. height: math.unit(10, "miles")
  6853. },
  6854. {
  6855. name: "God Macro",
  6856. height: math.unit(1, "multiverse")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(6, "feet"),
  6865. weight: math.unit(210, "lbs"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/cimmaron/front-sfw.svg",
  6869. extra: 701 / 676,
  6870. bottom: 0.046
  6871. }
  6872. },
  6873. back: {
  6874. height: math.unit(6, "feet"),
  6875. weight: math.unit(210, "lbs"),
  6876. name: "Back",
  6877. image: {
  6878. source: "./media/characters/cimmaron/back-sfw.svg",
  6879. extra: 701 / 676,
  6880. bottom: 0.046
  6881. }
  6882. },
  6883. frontNsfw: {
  6884. height: math.unit(6, "feet"),
  6885. weight: math.unit(210, "lbs"),
  6886. name: "Front (NSFW)",
  6887. image: {
  6888. source: "./media/characters/cimmaron/front-nsfw.svg",
  6889. extra: 701 / 676,
  6890. bottom: 0.046
  6891. }
  6892. },
  6893. backNsfw: {
  6894. height: math.unit(6, "feet"),
  6895. weight: math.unit(210, "lbs"),
  6896. name: "Back (NSFW)",
  6897. image: {
  6898. source: "./media/characters/cimmaron/back-nsfw.svg",
  6899. extra: 701 / 676,
  6900. bottom: 0.046
  6901. }
  6902. },
  6903. dick: {
  6904. height: math.unit(1.714, "feet"),
  6905. name: "Dick",
  6906. image: {
  6907. source: "./media/characters/cimmaron/dick.svg"
  6908. }
  6909. },
  6910. },
  6911. [
  6912. {
  6913. name: "Normal",
  6914. height: math.unit(6, "feet"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Macro Mayor",
  6919. height: math.unit(350, "meters")
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(200, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/akari/front.svg",
  6932. extra: 962 / 901,
  6933. bottom: 0.04
  6934. }
  6935. }
  6936. },
  6937. [
  6938. {
  6939. name: "Micro",
  6940. height: math.unit(5, "inches"),
  6941. default: true
  6942. },
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(7, "feet")
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6951. {
  6952. front: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(140, "lbs"),
  6955. name: "Front",
  6956. image: {
  6957. source: "./media/characters/cynosura/front.svg",
  6958. extra: 437/410,
  6959. bottom: 9/446
  6960. }
  6961. },
  6962. back: {
  6963. height: math.unit(6, "feet"),
  6964. weight: math.unit(140, "lbs"),
  6965. name: "Back",
  6966. image: {
  6967. source: "./media/characters/cynosura/back.svg",
  6968. extra: 1304/1160,
  6969. bottom: 71/1375
  6970. }
  6971. },
  6972. },
  6973. [
  6974. {
  6975. name: "Micro",
  6976. height: math.unit(4, "inches")
  6977. },
  6978. {
  6979. name: "Normal",
  6980. height: math.unit(5.75, "feet"),
  6981. default: true
  6982. },
  6983. {
  6984. name: "Tall",
  6985. height: math.unit(10, "feet")
  6986. },
  6987. {
  6988. name: "Big",
  6989. height: math.unit(20, "feet")
  6990. },
  6991. {
  6992. name: "Macro",
  6993. height: math.unit(50, "feet")
  6994. },
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6999. {
  7000. front: {
  7001. height: math.unit(13 + 2/12, "feet"),
  7002. weight: math.unit(800, "kg"),
  7003. name: "Front",
  7004. image: {
  7005. source: "./media/characters/gin/front.svg",
  7006. extra: 1312/1191,
  7007. bottom: 45/1357
  7008. }
  7009. },
  7010. mouth: {
  7011. height: math.unit(2.39 * 1.8, "feet"),
  7012. name: "Mouth",
  7013. image: {
  7014. source: "./media/characters/gin/mouth.svg"
  7015. }
  7016. },
  7017. hand: {
  7018. height: math.unit(1.57 * 2.19, "feet"),
  7019. name: "Hand",
  7020. image: {
  7021. source: "./media/characters/gin/hand.svg"
  7022. }
  7023. },
  7024. foot: {
  7025. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7026. name: "Foot",
  7027. image: {
  7028. source: "./media/characters/gin/foot.svg"
  7029. }
  7030. },
  7031. sole: {
  7032. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7033. name: "Sole",
  7034. image: {
  7035. source: "./media/characters/gin/sole.svg"
  7036. }
  7037. },
  7038. },
  7039. [
  7040. {
  7041. name: "Very Small",
  7042. height: math.unit(13 + 2 / 12, "feet")
  7043. },
  7044. {
  7045. name: "Micro",
  7046. height: math.unit(600, "miles")
  7047. },
  7048. {
  7049. name: "Regular",
  7050. height: math.unit(20, "earths"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Macro",
  7055. height: math.unit(2.2, "solarradii")
  7056. },
  7057. {
  7058. name: "Teramacro",
  7059. height: math.unit(1.2, "galaxies")
  7060. },
  7061. {
  7062. name: "Omegamacro",
  7063. height: math.unit(200, "universes")
  7064. },
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(6 + 1 / 6, "feet"),
  7072. weight: math.unit(178, "lbs"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/guy/front.svg"
  7076. }
  7077. }
  7078. },
  7079. [
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(6 + 1 / 6, "feet"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Large",
  7087. height: math.unit(25 + 7 / 12, "feet")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(60 + 9 / 12, "feet")
  7092. },
  7093. {
  7094. name: "Macro+",
  7095. height: math.unit(246, "feet")
  7096. },
  7097. {
  7098. name: "Macro++",
  7099. height: math.unit(878, "feet")
  7100. }
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(9, "feet"),
  7108. weight: math.unit(800, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/tiberius/front.svg",
  7112. extra: 2295 / 2071
  7113. }
  7114. },
  7115. back: {
  7116. height: math.unit(9, "feet"),
  7117. weight: math.unit(800, "lbs"),
  7118. name: "Back",
  7119. image: {
  7120. source: "./media/characters/tiberius/back.svg",
  7121. extra: 2373 / 2160
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(9, "feet"),
  7129. default: true
  7130. }
  7131. ]
  7132. ))
  7133. characterMakers.push(() => makeCharacter(
  7134. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7135. {
  7136. front: {
  7137. height: math.unit(6, "feet"),
  7138. weight: math.unit(600, "lbs"),
  7139. name: "Front",
  7140. image: {
  7141. source: "./media/characters/surgo/front.svg",
  7142. extra: 3591 / 2227
  7143. }
  7144. },
  7145. back: {
  7146. height: math.unit(6, "feet"),
  7147. weight: math.unit(600, "lbs"),
  7148. name: "Back",
  7149. image: {
  7150. source: "./media/characters/surgo/back.svg",
  7151. extra: 3557 / 2228
  7152. }
  7153. },
  7154. laying: {
  7155. height: math.unit(6 * 0.85, "feet"),
  7156. weight: math.unit(600, "lbs"),
  7157. name: "Laying",
  7158. image: {
  7159. source: "./media/characters/surgo/laying.svg"
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(6, "feet"),
  7167. default: true
  7168. }
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7173. {
  7174. side: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(150, "lbs"),
  7177. name: "Side",
  7178. image: {
  7179. source: "./media/characters/cibus/side.svg",
  7180. extra: 800 / 400
  7181. }
  7182. },
  7183. },
  7184. [
  7185. {
  7186. name: "Normal",
  7187. height: math.unit(6, "feet"),
  7188. default: true
  7189. }
  7190. ]
  7191. ))
  7192. characterMakers.push(() => makeCharacter(
  7193. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7194. {
  7195. front: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(240, "lbs"),
  7198. name: "Front",
  7199. image: {
  7200. source: "./media/characters/nibbles/front.svg"
  7201. }
  7202. },
  7203. side: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(240, "lbs"),
  7206. name: "Side",
  7207. image: {
  7208. source: "./media/characters/nibbles/side.svg"
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Normal",
  7215. height: math.unit(9, "feet"),
  7216. default: true
  7217. }
  7218. ]
  7219. ))
  7220. characterMakers.push(() => makeCharacter(
  7221. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7222. {
  7223. side: {
  7224. height: math.unit(5 + 1 / 6, "feet"),
  7225. weight: math.unit(130, "lbs"),
  7226. name: "Side",
  7227. image: {
  7228. source: "./media/characters/rikky/side.svg",
  7229. extra: 851 / 801
  7230. }
  7231. },
  7232. },
  7233. [
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(5 + 1 / 6, "feet")
  7237. },
  7238. {
  7239. name: "Macro",
  7240. height: math.unit(152, "feet"),
  7241. default: true
  7242. },
  7243. {
  7244. name: "Megamacro",
  7245. height: math.unit(7, "miles")
  7246. }
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7251. {
  7252. side: {
  7253. height: math.unit(370, "cm"),
  7254. weight: math.unit(350, "lbs"),
  7255. name: "Side",
  7256. image: {
  7257. source: "./media/characters/malfressa/side.svg"
  7258. }
  7259. },
  7260. walking: {
  7261. height: math.unit(370, "cm"),
  7262. weight: math.unit(350, "lbs"),
  7263. name: "Walking",
  7264. image: {
  7265. source: "./media/characters/malfressa/walking.svg"
  7266. }
  7267. },
  7268. feral: {
  7269. height: math.unit(2500, "cm"),
  7270. weight: math.unit(100000, "lbs"),
  7271. name: "Feral",
  7272. image: {
  7273. source: "./media/characters/malfressa/feral.svg",
  7274. extra: 2108 / 837,
  7275. bottom: 0.02
  7276. }
  7277. },
  7278. },
  7279. [
  7280. {
  7281. name: "Normal",
  7282. height: math.unit(370, "cm")
  7283. },
  7284. {
  7285. name: "Macro",
  7286. height: math.unit(300, "meters"),
  7287. default: true
  7288. }
  7289. ]
  7290. ))
  7291. characterMakers.push(() => makeCharacter(
  7292. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7293. {
  7294. front: {
  7295. height: math.unit(6, "feet"),
  7296. weight: math.unit(60, "kg"),
  7297. name: "Front",
  7298. image: {
  7299. source: "./media/characters/jaro/front.svg",
  7300. extra: 845/817,
  7301. bottom: 45/890
  7302. }
  7303. },
  7304. back: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(60, "kg"),
  7307. name: "Back",
  7308. image: {
  7309. source: "./media/characters/jaro/back.svg",
  7310. extra: 847/817,
  7311. bottom: 34/881
  7312. }
  7313. },
  7314. },
  7315. [
  7316. {
  7317. name: "Micro",
  7318. height: math.unit(7, "inches")
  7319. },
  7320. {
  7321. name: "Normal",
  7322. height: math.unit(5.5, "feet"),
  7323. default: true
  7324. },
  7325. {
  7326. name: "Minimacro",
  7327. height: math.unit(20, "feet")
  7328. },
  7329. {
  7330. name: "Macro",
  7331. height: math.unit(200, "meters")
  7332. }
  7333. ]
  7334. ))
  7335. characterMakers.push(() => makeCharacter(
  7336. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7337. {
  7338. front: {
  7339. height: math.unit(6, "feet"),
  7340. weight: math.unit(195, "lb"),
  7341. name: "Front",
  7342. image: {
  7343. source: "./media/characters/rogue/front.svg"
  7344. }
  7345. },
  7346. },
  7347. [
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(90, "feet"),
  7351. default: true
  7352. },
  7353. ]
  7354. ))
  7355. characterMakers.push(() => makeCharacter(
  7356. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7357. {
  7358. standing: {
  7359. height: math.unit(5 + 8 / 12, "feet"),
  7360. weight: math.unit(140, "lb"),
  7361. name: "Standing",
  7362. image: {
  7363. source: "./media/characters/piper/standing.svg",
  7364. extra: 1440/1284,
  7365. bottom: 66/1506
  7366. }
  7367. },
  7368. running: {
  7369. height: math.unit(5 + 8 / 12, "feet"),
  7370. weight: math.unit(140, "lb"),
  7371. name: "Running",
  7372. image: {
  7373. source: "./media/characters/piper/running.svg",
  7374. extra: 3948/3655,
  7375. bottom: 0/3948
  7376. }
  7377. },
  7378. sole: {
  7379. height: math.unit(0.81, "feet"),
  7380. weight: math.unit(2, "kg"),
  7381. name: "Sole",
  7382. image: {
  7383. source: "./media/characters/piper/sole.svg"
  7384. }
  7385. },
  7386. nipple: {
  7387. height: math.unit(0.25, "feet"),
  7388. weight: math.unit(1.5, "lb"),
  7389. name: "Nipple",
  7390. image: {
  7391. source: "./media/characters/piper/nipple.svg"
  7392. }
  7393. },
  7394. head: {
  7395. height: math.unit(1.1, "feet"),
  7396. name: "Head",
  7397. image: {
  7398. source: "./media/characters/piper/head.svg"
  7399. }
  7400. },
  7401. },
  7402. [
  7403. {
  7404. name: "Micro",
  7405. height: math.unit(2, "inches")
  7406. },
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(5 + 8 / 12, "feet")
  7410. },
  7411. {
  7412. name: "Macro",
  7413. height: math.unit(250, "feet"),
  7414. default: true
  7415. },
  7416. {
  7417. name: "Megamacro",
  7418. height: math.unit(7, "miles")
  7419. },
  7420. ]
  7421. ))
  7422. characterMakers.push(() => makeCharacter(
  7423. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7424. {
  7425. front: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(220, "lb"),
  7428. name: "Front",
  7429. image: {
  7430. source: "./media/characters/gemini/front.svg"
  7431. }
  7432. },
  7433. back: {
  7434. height: math.unit(6, "feet"),
  7435. weight: math.unit(220, "lb"),
  7436. name: "Back",
  7437. image: {
  7438. source: "./media/characters/gemini/back.svg"
  7439. }
  7440. },
  7441. kneeling: {
  7442. height: math.unit(6 / 1.5, "feet"),
  7443. weight: math.unit(220, "lb"),
  7444. name: "Kneeling",
  7445. image: {
  7446. source: "./media/characters/gemini/kneeling.svg",
  7447. bottom: 0.02
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Macro",
  7454. height: math.unit(300, "meters"),
  7455. default: true
  7456. },
  7457. {
  7458. name: "Megamacro",
  7459. height: math.unit(6900, "meters")
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7465. {
  7466. anthro: {
  7467. height: math.unit(2.35, "meters"),
  7468. weight: math.unit(73, "kg"),
  7469. name: "Anthro",
  7470. image: {
  7471. source: "./media/characters/alicia/anthro.svg",
  7472. extra: 2571 / 2385,
  7473. bottom: 75 / 2648
  7474. }
  7475. },
  7476. paw: {
  7477. height: math.unit(1.32, "feet"),
  7478. name: "Paw",
  7479. image: {
  7480. source: "./media/characters/alicia/paw.svg"
  7481. }
  7482. },
  7483. feral: {
  7484. height: math.unit(1.69, "meters"),
  7485. weight: math.unit(73, "kg"),
  7486. name: "Feral",
  7487. image: {
  7488. source: "./media/characters/alicia/feral.svg",
  7489. extra: 2123 / 1715,
  7490. bottom: 222 / 2349
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Normal",
  7497. height: math.unit(2.35, "meters")
  7498. },
  7499. {
  7500. name: "Macro",
  7501. height: math.unit(60, "meters"),
  7502. default: true
  7503. },
  7504. {
  7505. name: "Megamacro",
  7506. height: math.unit(10000, "kilometers")
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7512. {
  7513. front: {
  7514. height: math.unit(7, "feet"),
  7515. weight: math.unit(250, "lbs"),
  7516. name: "Front",
  7517. image: {
  7518. source: "./media/characters/archy/front.svg"
  7519. }
  7520. }
  7521. },
  7522. [
  7523. {
  7524. name: "Micro",
  7525. height: math.unit(1, "inch")
  7526. },
  7527. {
  7528. name: "Shorty",
  7529. height: math.unit(5, "feet")
  7530. },
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(7, "feet")
  7534. },
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(600, "meters"),
  7538. default: true
  7539. },
  7540. {
  7541. name: "Megamacro",
  7542. height: math.unit(1, "mile")
  7543. },
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(1.65, "meters"),
  7551. weight: math.unit(74, "kg"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/berri/front.svg",
  7555. extra: 857 / 837,
  7556. bottom: 18 / 877
  7557. }
  7558. },
  7559. bum: {
  7560. height: math.unit(1.46, "feet"),
  7561. name: "Bum",
  7562. image: {
  7563. source: "./media/characters/berri/bum.svg"
  7564. }
  7565. },
  7566. mouth: {
  7567. height: math.unit(0.44, "feet"),
  7568. name: "Mouth",
  7569. image: {
  7570. source: "./media/characters/berri/mouth.svg"
  7571. }
  7572. },
  7573. paw: {
  7574. height: math.unit(0.826, "feet"),
  7575. name: "Paw",
  7576. image: {
  7577. source: "./media/characters/berri/paw.svg"
  7578. }
  7579. },
  7580. },
  7581. [
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(1.65, "meters")
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(60, "m"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Megamacro",
  7593. height: math.unit(9.213, "km")
  7594. },
  7595. {
  7596. name: "Planet Eater",
  7597. height: math.unit(489, "megameters")
  7598. },
  7599. {
  7600. name: "Teramacro",
  7601. height: math.unit(2471635000000, "meters")
  7602. },
  7603. {
  7604. name: "Examacro",
  7605. height: math.unit(8.0624e+26, "meters")
  7606. }
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7611. {
  7612. front: {
  7613. height: math.unit(1.72, "meters"),
  7614. weight: math.unit(68, "kg"),
  7615. name: "Front",
  7616. image: {
  7617. source: "./media/characters/lexi/front.svg"
  7618. }
  7619. }
  7620. },
  7621. [
  7622. {
  7623. name: "Very Smol",
  7624. height: math.unit(10, "mm")
  7625. },
  7626. {
  7627. name: "Micro",
  7628. height: math.unit(6.8, "cm"),
  7629. default: true
  7630. },
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(1.72, "m")
  7634. }
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(1.69, "meters"),
  7642. weight: math.unit(68, "kg"),
  7643. name: "Front",
  7644. image: {
  7645. source: "./media/characters/martin/front.svg",
  7646. extra: 596 / 581
  7647. }
  7648. }
  7649. },
  7650. [
  7651. {
  7652. name: "Micro",
  7653. height: math.unit(6.85, "cm"),
  7654. default: true
  7655. },
  7656. {
  7657. name: "Normal",
  7658. height: math.unit(1.69, "m")
  7659. }
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(1.69, "meters"),
  7667. weight: math.unit(68, "kg"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/juno/front.svg"
  7671. }
  7672. }
  7673. },
  7674. [
  7675. {
  7676. name: "Micro",
  7677. height: math.unit(7, "cm")
  7678. },
  7679. {
  7680. name: "Normal",
  7681. height: math.unit(1.89, "m")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(353, "meters"),
  7686. default: true
  7687. }
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7692. {
  7693. front: {
  7694. height: math.unit(1.93, "meters"),
  7695. weight: math.unit(83, "kg"),
  7696. name: "Front",
  7697. image: {
  7698. source: "./media/characters/samantha/front.svg"
  7699. }
  7700. },
  7701. frontClothed: {
  7702. height: math.unit(1.93, "meters"),
  7703. weight: math.unit(83, "kg"),
  7704. name: "Front (Clothed)",
  7705. image: {
  7706. source: "./media/characters/samantha/front-clothed.svg"
  7707. }
  7708. },
  7709. back: {
  7710. height: math.unit(1.93, "meters"),
  7711. weight: math.unit(83, "kg"),
  7712. name: "Back",
  7713. image: {
  7714. source: "./media/characters/samantha/back.svg"
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(1.93, "m")
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(74, "meters"),
  7726. default: true
  7727. },
  7728. {
  7729. name: "Macro+",
  7730. height: math.unit(223, "meters"),
  7731. },
  7732. {
  7733. name: "Megamacro",
  7734. height: math.unit(8381, "meters"),
  7735. },
  7736. {
  7737. name: "Megamacro+",
  7738. height: math.unit(12000, "kilometers")
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(1.92, "meters"),
  7747. weight: math.unit(80, "kg"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/dr-clay/front.svg"
  7751. }
  7752. },
  7753. frontClothed: {
  7754. height: math.unit(1.92, "meters"),
  7755. weight: math.unit(80, "kg"),
  7756. name: "Front (Clothed)",
  7757. image: {
  7758. source: "./media/characters/dr-clay/front-clothed.svg"
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Normal",
  7765. height: math.unit(1.92, "m")
  7766. },
  7767. {
  7768. name: "Macro",
  7769. height: math.unit(214, "meters"),
  7770. default: true
  7771. },
  7772. {
  7773. name: "Macro+",
  7774. height: math.unit(12.237, "meters"),
  7775. },
  7776. {
  7777. name: "Megamacro",
  7778. height: math.unit(557, "megameters"),
  7779. },
  7780. {
  7781. name: "Unimaginable",
  7782. height: math.unit(120e9, "lightyears")
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7788. {
  7789. front: {
  7790. height: math.unit(2, "meters"),
  7791. weight: math.unit(80, "kg"),
  7792. name: "Front",
  7793. image: {
  7794. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7795. }
  7796. }
  7797. },
  7798. [
  7799. {
  7800. name: "Teramacro",
  7801. height: math.unit(500000, "lightyears"),
  7802. default: true
  7803. },
  7804. ]
  7805. ))
  7806. characterMakers.push(() => makeCharacter(
  7807. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7808. {
  7809. crux: {
  7810. height: math.unit(2, "meters"),
  7811. weight: math.unit(150, "kg"),
  7812. name: "Crux",
  7813. image: {
  7814. source: "./media/characters/vemus/crux.svg",
  7815. extra: 1074/936,
  7816. bottom: 23/1097
  7817. }
  7818. },
  7819. skunkTanuki: {
  7820. height: math.unit(2, "meters"),
  7821. weight: math.unit(150, "kg"),
  7822. name: "Skunk-Tanuki",
  7823. image: {
  7824. source: "./media/characters/vemus/skunk-tanuki.svg",
  7825. extra: 926/893,
  7826. bottom: 20/946
  7827. }
  7828. },
  7829. },
  7830. [
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(4, "meters"),
  7834. default: true
  7835. },
  7836. {
  7837. name: "Big",
  7838. height: math.unit(8, "meters")
  7839. },
  7840. {
  7841. name: "Macro",
  7842. height: math.unit(100, "meters")
  7843. },
  7844. {
  7845. name: "Macro+",
  7846. height: math.unit(1500, "meters")
  7847. },
  7848. {
  7849. name: "Stellar",
  7850. height: math.unit(14e8, "meters")
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7856. {
  7857. front: {
  7858. height: math.unit(2, "meters"),
  7859. weight: math.unit(70, "kg"),
  7860. name: "Front",
  7861. image: {
  7862. source: "./media/characters/beherit/front.svg",
  7863. extra: 1234/1109,
  7864. bottom: 55/1289
  7865. }
  7866. }
  7867. },
  7868. [
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(6, "feet")
  7872. },
  7873. {
  7874. name: "Lorg",
  7875. height: math.unit(25, "feet"),
  7876. default: true
  7877. },
  7878. {
  7879. name: "Lorger",
  7880. height: math.unit(75, "feet")
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(200, "meters")
  7885. },
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7890. {
  7891. front: {
  7892. height: math.unit(2, "meters"),
  7893. weight: math.unit(150, "kg"),
  7894. name: "Front",
  7895. image: {
  7896. source: "./media/characters/everett/front.svg",
  7897. extra: 1017/866,
  7898. bottom: 86/1103
  7899. }
  7900. },
  7901. paw: {
  7902. height: math.unit(2 / 3.6, "meters"),
  7903. name: "Paw",
  7904. image: {
  7905. source: "./media/characters/everett/paw.svg"
  7906. }
  7907. },
  7908. },
  7909. [
  7910. {
  7911. name: "Normal",
  7912. height: math.unit(15, "feet"),
  7913. default: true
  7914. },
  7915. {
  7916. name: "Lorg",
  7917. height: math.unit(70, "feet"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Lorger",
  7922. height: math.unit(250, "feet")
  7923. },
  7924. {
  7925. name: "Macro",
  7926. height: math.unit(500, "meters")
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(2, "meters"),
  7935. weight: math.unit(86, "kg"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/rose/front.svg",
  7939. extra: 1785/1636,
  7940. bottom: 30/1815
  7941. },
  7942. form: "liom",
  7943. default: true
  7944. },
  7945. frontSporty: {
  7946. height: math.unit(2, "meters"),
  7947. weight: math.unit(86, "kg"),
  7948. name: "Front (Sporty)",
  7949. image: {
  7950. source: "./media/characters/rose/front-sporty.svg",
  7951. extra: 350/335,
  7952. bottom: 10/360
  7953. },
  7954. form: "liom"
  7955. },
  7956. frontAlt: {
  7957. height: math.unit(1.6, "meters"),
  7958. weight: math.unit(86, "kg"),
  7959. name: "Front (Alt)",
  7960. image: {
  7961. source: "./media/characters/rose/front-alt.svg",
  7962. extra: 299/283,
  7963. bottom: 3/302
  7964. },
  7965. form: "liom"
  7966. },
  7967. plush: {
  7968. height: math.unit(2, "meters"),
  7969. weight: math.unit(86/3, "kg"),
  7970. name: "Plush",
  7971. image: {
  7972. source: "./media/characters/rose/plush.svg",
  7973. extra: 361/337,
  7974. bottom: 11/372
  7975. },
  7976. form: "plush",
  7977. default: true
  7978. },
  7979. faeStanding: {
  7980. height: math.unit(10, "cm"),
  7981. weight: math.unit(10, "grams"),
  7982. name: "Standing",
  7983. image: {
  7984. source: "./media/characters/rose/fae-standing.svg",
  7985. extra: 1189/1060,
  7986. bottom: 27/1216
  7987. },
  7988. form: "fae",
  7989. default: true
  7990. },
  7991. faeSitting: {
  7992. height: math.unit(5, "cm"),
  7993. weight: math.unit(10, "grams"),
  7994. name: "Sitting",
  7995. image: {
  7996. source: "./media/characters/rose/fae-sitting.svg",
  7997. extra: 737/577,
  7998. bottom: 356/1093
  7999. },
  8000. form: "fae"
  8001. },
  8002. faePaw: {
  8003. height: math.unit(1.35, "cm"),
  8004. name: "Paw",
  8005. image: {
  8006. source: "./media/characters/rose/fae-paw.svg"
  8007. },
  8008. form: "fae"
  8009. },
  8010. },
  8011. [
  8012. {
  8013. name: "True Micro",
  8014. height: math.unit(9, "cm"),
  8015. form: "liom"
  8016. },
  8017. {
  8018. name: "Micro",
  8019. height: math.unit(16, "cm"),
  8020. form: "liom"
  8021. },
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(1.85, "meters"),
  8025. default: true,
  8026. form: "liom"
  8027. },
  8028. {
  8029. name: "Mini-Macro",
  8030. height: math.unit(5, "meters"),
  8031. form: "liom"
  8032. },
  8033. {
  8034. name: "Macro",
  8035. height: math.unit(15, "meters"),
  8036. form: "liom"
  8037. },
  8038. {
  8039. name: "True Macro",
  8040. height: math.unit(40, "meters"),
  8041. form: "liom"
  8042. },
  8043. {
  8044. name: "City Scale",
  8045. height: math.unit(1, "km"),
  8046. form: "liom"
  8047. },
  8048. {
  8049. name: "Plushie",
  8050. height: math.unit(9, "cm"),
  8051. form: "plush",
  8052. default: true
  8053. },
  8054. {
  8055. name: "Fae",
  8056. height: math.unit(10, "cm"),
  8057. form: "fae",
  8058. default: true
  8059. },
  8060. ],
  8061. {
  8062. "liom": {
  8063. name: "Liom"
  8064. },
  8065. "plush": {
  8066. name: "Plush"
  8067. },
  8068. "fae": {
  8069. name: "Fae Fox",
  8070. default: true
  8071. }
  8072. }
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(2, "meters"),
  8079. weight: math.unit(350, "lbs"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/regal/front.svg"
  8083. }
  8084. },
  8085. back: {
  8086. height: math.unit(2, "meters"),
  8087. weight: math.unit(350, "lbs"),
  8088. name: "Back",
  8089. image: {
  8090. source: "./media/characters/regal/back.svg"
  8091. }
  8092. },
  8093. },
  8094. [
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(350, "feet"),
  8098. default: true
  8099. }
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(4 + 11 / 12, "feet"),
  8107. weight: math.unit(100, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/opal/front.svg"
  8111. }
  8112. },
  8113. frontAlt: {
  8114. height: math.unit(4 + 11 / 12, "feet"),
  8115. weight: math.unit(100, "lbs"),
  8116. name: "Front (Alt)",
  8117. image: {
  8118. source: "./media/characters/opal/front-alt.svg"
  8119. }
  8120. },
  8121. },
  8122. [
  8123. {
  8124. name: "Small",
  8125. height: math.unit(4 + 11 / 12, "feet")
  8126. },
  8127. {
  8128. name: "Normal",
  8129. height: math.unit(20, "feet"),
  8130. default: true
  8131. },
  8132. {
  8133. name: "Macro",
  8134. height: math.unit(120, "feet")
  8135. },
  8136. {
  8137. name: "Megamacro",
  8138. height: math.unit(80, "miles")
  8139. },
  8140. {
  8141. name: "True Size",
  8142. height: math.unit(100000, "lightyears")
  8143. },
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(6, "feet"),
  8151. weight: math.unit(200, "lbs"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/vector-wuff/front.svg"
  8155. }
  8156. }
  8157. },
  8158. [
  8159. {
  8160. name: "Normal",
  8161. height: math.unit(2.8, "meters")
  8162. },
  8163. {
  8164. name: "Macro",
  8165. height: math.unit(450, "meters"),
  8166. default: true
  8167. },
  8168. {
  8169. name: "Megamacro",
  8170. height: math.unit(15, "kilometers")
  8171. }
  8172. ]
  8173. ))
  8174. characterMakers.push(() => makeCharacter(
  8175. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8176. {
  8177. front: {
  8178. height: math.unit(6, "feet"),
  8179. weight: math.unit(256, "lbs"),
  8180. name: "Front",
  8181. image: {
  8182. source: "./media/characters/dannik/front.svg"
  8183. }
  8184. }
  8185. },
  8186. [
  8187. {
  8188. name: "Macro",
  8189. height: math.unit(69.57, "meters"),
  8190. default: true
  8191. },
  8192. ]
  8193. ))
  8194. characterMakers.push(() => makeCharacter(
  8195. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8196. {
  8197. front: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(120, "lbs"),
  8200. name: "Front",
  8201. image: {
  8202. source: "./media/characters/azura-saharah/front.svg"
  8203. }
  8204. },
  8205. back: {
  8206. height: math.unit(6, "feet"),
  8207. weight: math.unit(120, "lbs"),
  8208. name: "Back",
  8209. image: {
  8210. source: "./media/characters/azura-saharah/back.svg"
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Macro",
  8217. height: math.unit(100, "feet"),
  8218. default: true
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8224. {
  8225. side: {
  8226. height: math.unit(5 + 4 / 12, "feet"),
  8227. weight: math.unit(163, "lbs"),
  8228. name: "Side",
  8229. image: {
  8230. source: "./media/characters/kennedy/side.svg"
  8231. }
  8232. }
  8233. },
  8234. [
  8235. {
  8236. name: "Standard Doggo",
  8237. height: math.unit(5 + 4 / 12, "feet")
  8238. },
  8239. {
  8240. name: "Big Doggo",
  8241. height: math.unit(25 + 3 / 12, "feet"),
  8242. default: true
  8243. },
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(5 + 5/12, "feet"),
  8251. weight: math.unit(100, "lbs"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/odios-de-lunar/front.svg",
  8255. extra: 1468/1323,
  8256. bottom: 22/1490
  8257. }
  8258. }
  8259. },
  8260. [
  8261. {
  8262. name: "Micro",
  8263. height: math.unit(3, "inches")
  8264. },
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(5.5, "feet"),
  8268. default: true
  8269. },
  8270. {
  8271. name: "Macro",
  8272. height: math.unit(100, "feet")
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8278. {
  8279. back: {
  8280. height: math.unit(6, "feet"),
  8281. weight: math.unit(220, "lbs"),
  8282. name: "Back",
  8283. image: {
  8284. source: "./media/characters/mandake/back.svg"
  8285. }
  8286. }
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(7, "feet"),
  8292. default: true
  8293. },
  8294. {
  8295. name: "Macro",
  8296. height: math.unit(78, "feet")
  8297. },
  8298. {
  8299. name: "Macro+",
  8300. height: math.unit(300, "meters")
  8301. },
  8302. {
  8303. name: "Macro++",
  8304. height: math.unit(2400, "feet")
  8305. },
  8306. {
  8307. name: "Megamacro",
  8308. height: math.unit(5167, "meters")
  8309. },
  8310. {
  8311. name: "Gigamacro",
  8312. height: math.unit(41769, "miles")
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(120, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/yozey/front.svg"
  8325. }
  8326. },
  8327. frontAlt: {
  8328. height: math.unit(6, "feet"),
  8329. weight: math.unit(120, "lbs"),
  8330. name: "Front (Alt)",
  8331. image: {
  8332. source: "./media/characters/yozey/front-alt.svg"
  8333. }
  8334. },
  8335. side: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(120, "lbs"),
  8338. name: "Side",
  8339. image: {
  8340. source: "./media/characters/yozey/side.svg"
  8341. }
  8342. },
  8343. },
  8344. [
  8345. {
  8346. name: "Micro",
  8347. height: math.unit(3, "inches"),
  8348. default: true
  8349. },
  8350. {
  8351. name: "Normal",
  8352. height: math.unit(6, "feet")
  8353. }
  8354. ]
  8355. ))
  8356. characterMakers.push(() => makeCharacter(
  8357. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8358. {
  8359. front: {
  8360. height: math.unit(6, "feet"),
  8361. weight: math.unit(103, "lbs"),
  8362. name: "Front",
  8363. image: {
  8364. source: "./media/characters/valeska-voss/front.svg"
  8365. }
  8366. }
  8367. },
  8368. [
  8369. {
  8370. name: "Mini-Sized Sub",
  8371. height: math.unit(3.1, "inches")
  8372. },
  8373. {
  8374. name: "Mid-Sized Sub",
  8375. height: math.unit(6.2, "inches")
  8376. },
  8377. {
  8378. name: "Full-Sized Sub",
  8379. height: math.unit(9.3, "inches")
  8380. },
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(5 + 2 / 12, "foot"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(160, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/gene-zeta/front.svg",
  8397. extra: 3006 / 2826,
  8398. bottom: 182 / 3188
  8399. }
  8400. }
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(6, "inches")
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(5 + 11 / 12, "foot"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(140, "feet")
  8415. },
  8416. {
  8417. name: "Supercharged",
  8418. height: math.unit(2500, "feet")
  8419. },
  8420. ]
  8421. ))
  8422. characterMakers.push(() => makeCharacter(
  8423. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8424. {
  8425. front: {
  8426. height: math.unit(6, "feet"),
  8427. weight: math.unit(350, "lbs"),
  8428. name: "Front",
  8429. image: {
  8430. source: "./media/characters/razinox/front.svg",
  8431. extra: 1686 / 1548,
  8432. bottom: 28.2 / 1868
  8433. }
  8434. },
  8435. back: {
  8436. height: math.unit(6, "feet"),
  8437. weight: math.unit(350, "lbs"),
  8438. name: "Back",
  8439. image: {
  8440. source: "./media/characters/razinox/back.svg",
  8441. extra: 1660 / 1590,
  8442. bottom: 15 / 1665
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(10 + 8 / 12, "foot")
  8450. },
  8451. {
  8452. name: "Minimacro",
  8453. height: math.unit(15, "foot")
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(60, "foot"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Megamacro",
  8462. height: math.unit(5, "miles")
  8463. },
  8464. {
  8465. name: "Gigamacro",
  8466. height: math.unit(6000, "miles")
  8467. },
  8468. ]
  8469. ))
  8470. characterMakers.push(() => makeCharacter(
  8471. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8472. {
  8473. front: {
  8474. height: math.unit(6, "feet"),
  8475. weight: math.unit(150, "lbs"),
  8476. name: "Front",
  8477. image: {
  8478. source: "./media/characters/cobalt/front.svg"
  8479. }
  8480. }
  8481. },
  8482. [
  8483. {
  8484. name: "Normal",
  8485. height: math.unit(8 + 1 / 12, "foot")
  8486. },
  8487. {
  8488. name: "Macro",
  8489. height: math.unit(111, "foot"),
  8490. default: true
  8491. },
  8492. {
  8493. name: "Supracosmic",
  8494. height: math.unit(1e42, "feet")
  8495. },
  8496. ]
  8497. ))
  8498. characterMakers.push(() => makeCharacter(
  8499. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8500. {
  8501. front: {
  8502. height: math.unit(5, "inches"),
  8503. name: "Front",
  8504. image: {
  8505. source: "./media/characters/amanda/front.svg",
  8506. extra: 926/791,
  8507. bottom: 38/964
  8508. }
  8509. },
  8510. back: {
  8511. height: math.unit(5, "inches"),
  8512. name: "Back",
  8513. image: {
  8514. source: "./media/characters/amanda/back.svg",
  8515. extra: 909/805,
  8516. bottom: 43/952
  8517. }
  8518. },
  8519. },
  8520. [
  8521. {
  8522. name: "Micro",
  8523. height: math.unit(5, "inches"),
  8524. default: true
  8525. },
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8530. {
  8531. front: {
  8532. height: math.unit(2.75, "meters"),
  8533. weight: math.unit(1200, "lb"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/teal/front.svg",
  8537. extra: 2463 / 2320,
  8538. bottom: 166 / 2629
  8539. }
  8540. },
  8541. back: {
  8542. height: math.unit(2.75, "meters"),
  8543. weight: math.unit(1200, "lb"),
  8544. name: "Back",
  8545. image: {
  8546. source: "./media/characters/teal/back.svg",
  8547. extra: 2580 / 2489,
  8548. bottom: 151 / 2731
  8549. }
  8550. },
  8551. sitting: {
  8552. height: math.unit(1.9, "meters"),
  8553. weight: math.unit(1200, "lb"),
  8554. name: "Sitting",
  8555. image: {
  8556. source: "./media/characters/teal/sitting.svg",
  8557. extra: 623 / 590,
  8558. bottom: 121 / 744
  8559. }
  8560. },
  8561. standing: {
  8562. height: math.unit(2.75, "meters"),
  8563. weight: math.unit(1200, "lb"),
  8564. name: "Standing",
  8565. image: {
  8566. source: "./media/characters/teal/standing.svg",
  8567. extra: 923 / 893,
  8568. bottom: 60 / 983
  8569. }
  8570. },
  8571. stretching: {
  8572. height: math.unit(3.65, "meters"),
  8573. weight: math.unit(1200, "lb"),
  8574. name: "Stretching",
  8575. image: {
  8576. source: "./media/characters/teal/stretching.svg",
  8577. extra: 1276 / 1244,
  8578. bottom: 0 / 1276
  8579. }
  8580. },
  8581. legged: {
  8582. height: math.unit(1.3, "meters"),
  8583. weight: math.unit(100, "lb"),
  8584. name: "Legged",
  8585. image: {
  8586. source: "./media/characters/teal/legged.svg",
  8587. extra: 462 / 437,
  8588. bottom: 24 / 486
  8589. }
  8590. },
  8591. naga: {
  8592. height: math.unit(5.4, "meters"),
  8593. weight: math.unit(4000, "lb"),
  8594. name: "Naga",
  8595. image: {
  8596. source: "./media/characters/teal/naga.svg",
  8597. extra: 1902 / 1858,
  8598. bottom: 0 / 1902
  8599. }
  8600. },
  8601. hand: {
  8602. height: math.unit(0.52, "meters"),
  8603. name: "Hand",
  8604. image: {
  8605. source: "./media/characters/teal/hand.svg"
  8606. }
  8607. },
  8608. maw: {
  8609. height: math.unit(0.43, "meters"),
  8610. name: "Maw",
  8611. image: {
  8612. source: "./media/characters/teal/maw.svg"
  8613. }
  8614. },
  8615. slit: {
  8616. height: math.unit(0.25, "meters"),
  8617. name: "Slit",
  8618. image: {
  8619. source: "./media/characters/teal/slit.svg"
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Normal",
  8626. height: math.unit(2.75, "meters"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "Macro",
  8631. height: math.unit(300, "feet")
  8632. },
  8633. {
  8634. name: "Macro+",
  8635. height: math.unit(2000, "feet")
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8641. {
  8642. frontCat: {
  8643. height: math.unit(6, "feet"),
  8644. weight: math.unit(180, "lbs"),
  8645. name: "Front (Cat)",
  8646. image: {
  8647. source: "./media/characters/ravin-amulet/front-cat.svg"
  8648. }
  8649. },
  8650. frontCatAlt: {
  8651. height: math.unit(6, "feet"),
  8652. weight: math.unit(180, "lbs"),
  8653. name: "Front (Alt, Cat)",
  8654. image: {
  8655. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8656. }
  8657. },
  8658. frontWerewolf: {
  8659. height: math.unit(6 * 1.2, "feet"),
  8660. weight: math.unit(225, "lbs"),
  8661. name: "Front (Werewolf)",
  8662. image: {
  8663. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8664. }
  8665. },
  8666. backWerewolf: {
  8667. height: math.unit(6 * 1.2, "feet"),
  8668. weight: math.unit(225, "lbs"),
  8669. name: "Back (Werewolf)",
  8670. image: {
  8671. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Nano",
  8678. height: math.unit(1, "micrometer")
  8679. },
  8680. {
  8681. name: "Micro",
  8682. height: math.unit(1, "inch")
  8683. },
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(6, "feet"),
  8687. default: true
  8688. },
  8689. {
  8690. name: "Macro",
  8691. height: math.unit(60, "feet")
  8692. }
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(165, "lbs"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/fluoresce/front.svg"
  8704. }
  8705. }
  8706. },
  8707. [
  8708. {
  8709. name: "Micro",
  8710. height: math.unit(6, "cm")
  8711. },
  8712. {
  8713. name: "Normal",
  8714. height: math.unit(5 + 7 / 12, "feet"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Macro",
  8719. height: math.unit(56, "feet")
  8720. },
  8721. {
  8722. name: "Megamacro",
  8723. height: math.unit(1.9, "miles")
  8724. },
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(9 + 6 / 12, "feet"),
  8732. weight: math.unit(523, "lbs"),
  8733. name: "Side",
  8734. image: {
  8735. source: "./media/characters/aurora/side.svg",
  8736. extra: 474/393,
  8737. bottom: 5/479
  8738. }
  8739. }
  8740. },
  8741. [
  8742. {
  8743. name: "Normal",
  8744. height: math.unit(9 + 6 / 12, "feet")
  8745. },
  8746. {
  8747. name: "Macro",
  8748. height: math.unit(96, "feet"),
  8749. default: true
  8750. },
  8751. {
  8752. name: "Macro+",
  8753. height: math.unit(243, "feet")
  8754. },
  8755. ]
  8756. ))
  8757. characterMakers.push(() => makeCharacter(
  8758. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8759. {
  8760. front: {
  8761. height: math.unit(194, "cm"),
  8762. weight: math.unit(90, "kg"),
  8763. name: "Front",
  8764. image: {
  8765. source: "./media/characters/ranek/front.svg",
  8766. extra: 1862/1791,
  8767. bottom: 80/1942
  8768. }
  8769. },
  8770. back: {
  8771. height: math.unit(194, "cm"),
  8772. weight: math.unit(90, "kg"),
  8773. name: "Back",
  8774. image: {
  8775. source: "./media/characters/ranek/back.svg",
  8776. extra: 1853/1787,
  8777. bottom: 74/1927
  8778. }
  8779. },
  8780. feral: {
  8781. height: math.unit(30, "cm"),
  8782. weight: math.unit(1.6, "lbs"),
  8783. name: "Feral",
  8784. image: {
  8785. source: "./media/characters/ranek/feral.svg",
  8786. extra: 990/631,
  8787. bottom: 29/1019
  8788. }
  8789. },
  8790. },
  8791. [
  8792. {
  8793. name: "Normal",
  8794. height: math.unit(194, "cm"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Macro",
  8799. height: math.unit(100, "meters")
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(5 + 6 / 12, "feet"),
  8808. weight: math.unit(153, "lbs"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/andrew-cooper/front.svg"
  8812. }
  8813. },
  8814. },
  8815. [
  8816. {
  8817. name: "Nano",
  8818. height: math.unit(1, "mm")
  8819. },
  8820. {
  8821. name: "Micro",
  8822. height: math.unit(2, "inches")
  8823. },
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(5 + 6 / 12, "feet"),
  8827. default: true
  8828. }
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8833. {
  8834. front: {
  8835. height: math.unit(6, "feet"),
  8836. weight: math.unit(180, "lbs"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/akane-sato/front.svg",
  8840. extra: 1219 / 1140
  8841. }
  8842. },
  8843. back: {
  8844. height: math.unit(6, "feet"),
  8845. weight: math.unit(180, "lbs"),
  8846. name: "Back",
  8847. image: {
  8848. source: "./media/characters/akane-sato/back.svg",
  8849. extra: 1219 / 1170
  8850. }
  8851. },
  8852. },
  8853. [
  8854. {
  8855. name: "Normal",
  8856. height: math.unit(2.5, "meters")
  8857. },
  8858. {
  8859. name: "Macro",
  8860. height: math.unit(250, "meters"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Megamacro",
  8865. height: math.unit(25, "km")
  8866. },
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8871. {
  8872. front: {
  8873. height: math.unit(6, "feet"),
  8874. weight: math.unit(65, "kg"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/rook/front.svg",
  8878. extra: 960 / 950
  8879. }
  8880. }
  8881. },
  8882. [
  8883. {
  8884. name: "Normal",
  8885. height: math.unit(8.8, "feet")
  8886. },
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(88, "feet"),
  8890. default: true
  8891. },
  8892. {
  8893. name: "Megamacro",
  8894. height: math.unit(8, "miles")
  8895. },
  8896. ]
  8897. ))
  8898. characterMakers.push(() => makeCharacter(
  8899. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8900. {
  8901. front: {
  8902. height: math.unit(12 + 2 / 12, "feet"),
  8903. weight: math.unit(808, "lbs"),
  8904. name: "Front",
  8905. image: {
  8906. source: "./media/characters/prodigy/front.svg"
  8907. }
  8908. }
  8909. },
  8910. [
  8911. {
  8912. name: "Normal",
  8913. height: math.unit(12 + 2 / 12, "feet"),
  8914. default: true
  8915. },
  8916. {
  8917. name: "Macro",
  8918. height: math.unit(143, "feet")
  8919. },
  8920. {
  8921. name: "Macro+",
  8922. height: math.unit(400, "feet")
  8923. },
  8924. ]
  8925. ))
  8926. characterMakers.push(() => makeCharacter(
  8927. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8928. {
  8929. front: {
  8930. height: math.unit(6, "feet"),
  8931. weight: math.unit(225, "lbs"),
  8932. name: "Front",
  8933. image: {
  8934. source: "./media/characters/daniel/front.svg"
  8935. }
  8936. },
  8937. leaning: {
  8938. height: math.unit(6, "feet"),
  8939. weight: math.unit(225, "lbs"),
  8940. name: "Leaning",
  8941. image: {
  8942. source: "./media/characters/daniel/leaning.svg"
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Macro",
  8949. height: math.unit(1000, "feet"),
  8950. default: true
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(6, "feet"),
  8959. weight: math.unit(88, "lbs"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/chiros/front.svg",
  8963. extra: 306 / 226
  8964. }
  8965. },
  8966. side: {
  8967. height: math.unit(6, "feet"),
  8968. weight: math.unit(88, "lbs"),
  8969. name: "Side",
  8970. image: {
  8971. source: "./media/characters/chiros/side.svg",
  8972. extra: 306 / 226
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(6, "cm"),
  8980. default: true
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8986. {
  8987. front: {
  8988. height: math.unit(6, "feet"),
  8989. weight: math.unit(100, "lbs"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/selka/front.svg",
  8993. extra: 947 / 887
  8994. }
  8995. }
  8996. },
  8997. [
  8998. {
  8999. name: "Normal",
  9000. height: math.unit(5, "cm"),
  9001. default: true
  9002. },
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9007. {
  9008. front: {
  9009. height: math.unit(8 + 3 / 12, "feet"),
  9010. weight: math.unit(424, "lbs"),
  9011. name: "Front",
  9012. image: {
  9013. source: "./media/characters/verin/front.svg",
  9014. extra: 1845 / 1550
  9015. }
  9016. },
  9017. frontArmored: {
  9018. height: math.unit(8 + 3 / 12, "feet"),
  9019. weight: math.unit(424, "lbs"),
  9020. name: "Front (Armored)",
  9021. image: {
  9022. source: "./media/characters/verin/front-armor.svg",
  9023. extra: 1845 / 1550,
  9024. bottom: 0.01
  9025. }
  9026. },
  9027. back: {
  9028. height: math.unit(8 + 3 / 12, "feet"),
  9029. weight: math.unit(424, "lbs"),
  9030. name: "Back",
  9031. image: {
  9032. source: "./media/characters/verin/back.svg",
  9033. bottom: 0.1,
  9034. extra: 1
  9035. }
  9036. },
  9037. foot: {
  9038. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9039. name: "Foot",
  9040. image: {
  9041. source: "./media/characters/verin/foot.svg"
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(8 + 3 / 12, "feet")
  9049. },
  9050. {
  9051. name: "Minimacro",
  9052. height: math.unit(21, "feet"),
  9053. default: true
  9054. },
  9055. {
  9056. name: "Macro",
  9057. height: math.unit(626, "feet")
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(2.718, "meters"),
  9066. weight: math.unit(150, "lbs"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/sovrim-terraquian/front.svg",
  9070. extra: 1752/1689,
  9071. bottom: 36/1788
  9072. }
  9073. },
  9074. back: {
  9075. height: math.unit(2.718, "meters"),
  9076. weight: math.unit(150, "lbs"),
  9077. name: "Back",
  9078. image: {
  9079. source: "./media/characters/sovrim-terraquian/back.svg",
  9080. extra: 1698/1657,
  9081. bottom: 58/1756
  9082. }
  9083. },
  9084. tongue: {
  9085. height: math.unit(2.865, "feet"),
  9086. name: "Tongue",
  9087. image: {
  9088. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9089. }
  9090. },
  9091. hand: {
  9092. height: math.unit(1.61, "feet"),
  9093. name: "Hand",
  9094. image: {
  9095. source: "./media/characters/sovrim-terraquian/hand.svg"
  9096. }
  9097. },
  9098. foot: {
  9099. height: math.unit(1.05, "feet"),
  9100. name: "Foot",
  9101. image: {
  9102. source: "./media/characters/sovrim-terraquian/foot.svg"
  9103. }
  9104. },
  9105. footAlt: {
  9106. height: math.unit(0.88, "feet"),
  9107. name: "Foot (Alt)",
  9108. image: {
  9109. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Micro",
  9116. height: math.unit(2, "inches")
  9117. },
  9118. {
  9119. name: "Small",
  9120. height: math.unit(1, "meter")
  9121. },
  9122. {
  9123. name: "Normal",
  9124. height: math.unit(Math.E, "meters"),
  9125. default: true
  9126. },
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(20, "meters")
  9130. },
  9131. {
  9132. name: "Macro+",
  9133. height: math.unit(400, "meters")
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(7, "feet"),
  9142. weight: math.unit(489, "lbs"),
  9143. name: "Front",
  9144. image: {
  9145. source: "./media/characters/reece-silvermane/front.svg",
  9146. bottom: 0.02,
  9147. extra: 1
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Macro",
  9154. height: math.unit(1.5, "miles"),
  9155. default: true
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(6, "feet"),
  9164. weight: math.unit(78, "kg"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/kane/front.svg",
  9168. extra: 978 / 899
  9169. }
  9170. },
  9171. back: {
  9172. height: math.unit(6, "feet"),
  9173. weight: math.unit(78, "kg"),
  9174. name: "Back",
  9175. image: {
  9176. source: "./media/characters/kane/back.svg",
  9177. extra: 1966/1800,
  9178. bottom: 0/1966
  9179. }
  9180. },
  9181. head: {
  9182. height: math.unit(1.4, "feet"),
  9183. name: "Head",
  9184. image: {
  9185. source: "./media/characters/kane/head.svg"
  9186. }
  9187. },
  9188. },
  9189. [
  9190. {
  9191. name: "Normal",
  9192. height: math.unit(2.1, "m"),
  9193. },
  9194. {
  9195. name: "Macro",
  9196. height: math.unit(1, "km"),
  9197. default: true
  9198. },
  9199. ]
  9200. ))
  9201. characterMakers.push(() => makeCharacter(
  9202. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9203. {
  9204. front: {
  9205. height: math.unit(6, "feet"),
  9206. weight: math.unit(200, "kg"),
  9207. name: "Front",
  9208. image: {
  9209. source: "./media/characters/tegon/front.svg",
  9210. bottom: 0.01,
  9211. extra: 1
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Micro",
  9218. height: math.unit(1, "inch")
  9219. },
  9220. {
  9221. name: "Normal",
  9222. height: math.unit(6 + 3 / 12, "feet"),
  9223. default: true
  9224. },
  9225. {
  9226. name: "Macro",
  9227. height: math.unit(300, "feet")
  9228. },
  9229. {
  9230. name: "Megamacro",
  9231. height: math.unit(69, "miles")
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9237. {
  9238. side: {
  9239. height: math.unit(6, "feet"),
  9240. weight: math.unit(2304, "lbs"),
  9241. name: "Side",
  9242. image: {
  9243. source: "./media/characters/arcturax/side.svg",
  9244. extra: 790 / 376,
  9245. bottom: 0.01
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Micro",
  9252. height: math.unit(2, "inch")
  9253. },
  9254. {
  9255. name: "Normal",
  9256. height: math.unit(6, "feet")
  9257. },
  9258. {
  9259. name: "Macro",
  9260. height: math.unit(39, "feet"),
  9261. default: true
  9262. },
  9263. {
  9264. name: "Megamacro",
  9265. height: math.unit(7, "miles")
  9266. },
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(50, "lbs"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/sentri/front.svg",
  9278. extra: 1750 / 1570,
  9279. bottom: 0.025
  9280. }
  9281. },
  9282. frontAlt: {
  9283. height: math.unit(6, "feet"),
  9284. weight: math.unit(50, "lbs"),
  9285. name: "Front (Alt)",
  9286. image: {
  9287. source: "./media/characters/sentri/front-alt.svg",
  9288. extra: 1750 / 1570,
  9289. bottom: 0.025
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Normal",
  9296. height: math.unit(15, "feet"),
  9297. default: true
  9298. },
  9299. {
  9300. name: "Macro",
  9301. height: math.unit(2500, "feet")
  9302. }
  9303. ]
  9304. ))
  9305. characterMakers.push(() => makeCharacter(
  9306. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9307. {
  9308. front: {
  9309. height: math.unit(5 + 8 / 12, "feet"),
  9310. weight: math.unit(130, "lbs"),
  9311. name: "Front",
  9312. image: {
  9313. source: "./media/characters/corvin/front.svg",
  9314. extra: 1803 / 1629
  9315. }
  9316. },
  9317. frontShirt: {
  9318. height: math.unit(5 + 8 / 12, "feet"),
  9319. weight: math.unit(130, "lbs"),
  9320. name: "Front (Shirt)",
  9321. image: {
  9322. source: "./media/characters/corvin/front-shirt.svg",
  9323. extra: 1803 / 1629
  9324. }
  9325. },
  9326. frontPoncho: {
  9327. height: math.unit(5 + 8 / 12, "feet"),
  9328. weight: math.unit(130, "lbs"),
  9329. name: "Front (Poncho)",
  9330. image: {
  9331. source: "./media/characters/corvin/front-poncho.svg",
  9332. extra: 1803 / 1629
  9333. }
  9334. },
  9335. side: {
  9336. height: math.unit(5 + 8 / 12, "feet"),
  9337. weight: math.unit(130, "lbs"),
  9338. name: "Side",
  9339. image: {
  9340. source: "./media/characters/corvin/side.svg",
  9341. extra: 1012 / 945
  9342. }
  9343. },
  9344. back: {
  9345. height: math.unit(5 + 8 / 12, "feet"),
  9346. weight: math.unit(130, "lbs"),
  9347. name: "Back",
  9348. image: {
  9349. source: "./media/characters/corvin/back.svg",
  9350. extra: 1803 / 1629
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Micro",
  9357. height: math.unit(3, "inches")
  9358. },
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(5 + 8 / 12, "feet")
  9362. },
  9363. {
  9364. name: "Macro",
  9365. height: math.unit(300, "feet"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Megamacro",
  9370. height: math.unit(500, "miles")
  9371. }
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9376. {
  9377. front: {
  9378. height: math.unit(6, "feet"),
  9379. weight: math.unit(135, "lbs"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/q/front.svg",
  9383. extra: 854 / 752,
  9384. bottom: 0.005
  9385. }
  9386. },
  9387. back: {
  9388. height: math.unit(6, "feet"),
  9389. weight: math.unit(130, "lbs"),
  9390. name: "Back",
  9391. image: {
  9392. source: "./media/characters/q/back.svg",
  9393. extra: 854 / 752
  9394. }
  9395. },
  9396. },
  9397. [
  9398. {
  9399. name: "Macro",
  9400. height: math.unit(90, "feet"),
  9401. default: true
  9402. },
  9403. {
  9404. name: "Extra Macro",
  9405. height: math.unit(300, "feet"),
  9406. },
  9407. {
  9408. name: "BIG WALF",
  9409. height: math.unit(750, "feet"),
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(3, "feet"),
  9418. weight: math.unit(28, "lbs"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/citrine/front.svg"
  9422. }
  9423. }
  9424. },
  9425. [
  9426. {
  9427. name: "Normal",
  9428. height: math.unit(3, "feet"),
  9429. default: true
  9430. }
  9431. ]
  9432. ))
  9433. characterMakers.push(() => makeCharacter(
  9434. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9435. {
  9436. front: {
  9437. height: math.unit(14, "feet"),
  9438. weight: math.unit(1450, "kg"),
  9439. preyCapacity: math.unit(15, "people"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/aura-starwind/front.svg",
  9443. extra: 1440/1327,
  9444. bottom: 11/1451
  9445. }
  9446. },
  9447. side: {
  9448. height: math.unit(14, "feet"),
  9449. weight: math.unit(1450, "kg"),
  9450. preyCapacity: math.unit(15, "people"),
  9451. name: "Side",
  9452. image: {
  9453. source: "./media/characters/aura-starwind/side.svg",
  9454. extra: 1654 / 1497
  9455. }
  9456. },
  9457. taur: {
  9458. height: math.unit(18, "feet"),
  9459. weight: math.unit(5500, "kg"),
  9460. preyCapacity: math.unit(50, "people"),
  9461. name: "Taur",
  9462. image: {
  9463. source: "./media/characters/aura-starwind/taur.svg",
  9464. extra: 1760 / 1650
  9465. }
  9466. },
  9467. feral: {
  9468. height: math.unit(46, "feet"),
  9469. weight: math.unit(25000, "kg"),
  9470. preyCapacity: math.unit(120, "people"),
  9471. name: "Feral",
  9472. image: {
  9473. source: "./media/characters/aura-starwind/feral.svg"
  9474. }
  9475. },
  9476. },
  9477. [
  9478. {
  9479. name: "Normal",
  9480. height: math.unit(14, "feet"),
  9481. default: true
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(50, "meters")
  9486. },
  9487. {
  9488. name: "Megamacro",
  9489. height: math.unit(5000, "meters")
  9490. },
  9491. {
  9492. name: "Gigamacro",
  9493. height: math.unit(100000, "kilometers")
  9494. },
  9495. ]
  9496. ))
  9497. characterMakers.push(() => makeCharacter(
  9498. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9499. {
  9500. front: {
  9501. height: math.unit(2 + 7 / 12, "feet"),
  9502. weight: math.unit(32, "lbs"),
  9503. name: "Front",
  9504. image: {
  9505. source: "./media/characters/rivet/front.svg",
  9506. extra: 1716 / 1658,
  9507. bottom: 0.03
  9508. }
  9509. },
  9510. foot: {
  9511. height: math.unit(0.551, "feet"),
  9512. name: "Rivet's Foot",
  9513. image: {
  9514. source: "./media/characters/rivet/foot.svg"
  9515. },
  9516. rename: true
  9517. }
  9518. },
  9519. [
  9520. {
  9521. name: "Micro",
  9522. height: math.unit(1.5, "inches"),
  9523. },
  9524. {
  9525. name: "Normal",
  9526. height: math.unit(2 + 7 / 12, "feet"),
  9527. default: true
  9528. },
  9529. {
  9530. name: "Macro",
  9531. height: math.unit(85, "feet")
  9532. },
  9533. {
  9534. name: "Megamacro",
  9535. height: math.unit(2.2, "km")
  9536. }
  9537. ]
  9538. ))
  9539. characterMakers.push(() => makeCharacter(
  9540. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9541. {
  9542. front: {
  9543. height: math.unit(5 + 9 / 12, "feet"),
  9544. weight: math.unit(150, "lbs"),
  9545. name: "Front",
  9546. image: {
  9547. source: "./media/characters/coffee/front.svg",
  9548. extra: 946/880,
  9549. bottom: 66/1012
  9550. }
  9551. },
  9552. foot: {
  9553. height: math.unit(1.29, "feet"),
  9554. name: "Foot",
  9555. image: {
  9556. source: "./media/characters/coffee/foot.svg"
  9557. }
  9558. },
  9559. },
  9560. [
  9561. {
  9562. name: "Micro",
  9563. height: math.unit(2, "inches"),
  9564. },
  9565. {
  9566. name: "Normal",
  9567. height: math.unit(5 + 9 / 12, "feet"),
  9568. default: true
  9569. },
  9570. {
  9571. name: "Macro",
  9572. height: math.unit(800, "feet")
  9573. },
  9574. {
  9575. name: "Megamacro",
  9576. height: math.unit(25, "miles")
  9577. }
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9582. {
  9583. front: {
  9584. height: math.unit(6, "feet"),
  9585. weight: math.unit(200, "lbs"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/chari-gal/front.svg",
  9589. extra: 735/649,
  9590. bottom: 55/790
  9591. },
  9592. form: "normal",
  9593. default: true
  9594. },
  9595. back: {
  9596. height: math.unit(6, "feet"),
  9597. weight: math.unit(200, "lb"),
  9598. name: "Back",
  9599. image: {
  9600. source: "./media/characters/chari-gal/back.svg",
  9601. extra: 762/666,
  9602. bottom: 31/793
  9603. },
  9604. form: "normal"
  9605. },
  9606. mouth: {
  9607. height: math.unit(1.35, "feet"),
  9608. name: "Mouth",
  9609. image: {
  9610. source: "./media/characters/chari-gal/mouth.svg"
  9611. },
  9612. form: "normal"
  9613. },
  9614. gigantamax: {
  9615. height: math.unit(6 * 16, "feet"),
  9616. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9617. name: "Gigantamax",
  9618. image: {
  9619. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9620. extra: 1507/1149,
  9621. bottom: 254/1761
  9622. },
  9623. form: "gigantamax",
  9624. default: true
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(5 + 7 / 12, "feet"),
  9631. form: "normal",
  9632. },
  9633. {
  9634. name: "Macro",
  9635. height: math.unit(200, "feet"),
  9636. default: true,
  9637. form: "normal"
  9638. },
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9642. form: "gigantamax",
  9643. },
  9644. {
  9645. name: "Macro",
  9646. height: math.unit(16 * 200, "feet"),
  9647. default: true,
  9648. form: "gigantamax"
  9649. },
  9650. ],
  9651. {
  9652. "normal": {
  9653. name: "Normal",
  9654. default: true
  9655. },
  9656. "gigantamax": {
  9657. name: "Gigantamax",
  9658. },
  9659. }
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9663. {
  9664. front: {
  9665. height: math.unit(6, "feet"),
  9666. weight: math.unit(150, "lbs"),
  9667. name: "Front",
  9668. image: {
  9669. source: "./media/characters/nova/front.svg",
  9670. extra: 5000 / 4722,
  9671. bottom: 0.02
  9672. }
  9673. }
  9674. },
  9675. [
  9676. {
  9677. name: "Micro-",
  9678. height: math.unit(0.8, "inches")
  9679. },
  9680. {
  9681. name: "Micro",
  9682. height: math.unit(2, "inches"),
  9683. default: true
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9689. {
  9690. koboldFront: {
  9691. height: math.unit(3 + 1 / 12, "feet"),
  9692. weight: math.unit(21.7, "lbs"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/argent/kobold-front.svg",
  9696. extra: 1471 / 1331,
  9697. bottom: 100.8 / 1575.5
  9698. },
  9699. form: "kobold",
  9700. default: true
  9701. },
  9702. dragonFront: {
  9703. height: math.unit(75, "inches"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/argent/dragon-front.svg",
  9707. extra: 1389/1248,
  9708. bottom: 54/1443
  9709. },
  9710. form: "dragon",
  9711. },
  9712. dragonBack: {
  9713. height: math.unit(75, "inches"),
  9714. name: "Back",
  9715. image: {
  9716. source: "./media/characters/argent/dragon-back.svg",
  9717. extra: 1399/1271,
  9718. bottom: 23/1422
  9719. },
  9720. form: "dragon",
  9721. },
  9722. dragonDressed: {
  9723. height: math.unit(75, "inches"),
  9724. name: "Dressed",
  9725. image: {
  9726. source: "./media/characters/argent/dragon-dressed.svg",
  9727. extra: 1350/1215,
  9728. bottom: 26/1376
  9729. },
  9730. form: "dragon"
  9731. },
  9732. dragonHead: {
  9733. height: math.unit(23.5, "inches"),
  9734. name: "Head",
  9735. image: {
  9736. source: "./media/characters/argent/dragon-head.svg"
  9737. },
  9738. form: "dragon",
  9739. },
  9740. },
  9741. [
  9742. {
  9743. name: "Micro",
  9744. height: math.unit(2, "inches"),
  9745. form: "kobold",
  9746. },
  9747. {
  9748. name: "Normal",
  9749. height: math.unit(3 + 1 / 12, "feet"),
  9750. form: "kobold",
  9751. default: true
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(120, "feet"),
  9756. form: "kobold",
  9757. },
  9758. {
  9759. name: "Speck",
  9760. height: math.unit(1, "mm"),
  9761. form: "dragon",
  9762. },
  9763. {
  9764. name: "Tiny",
  9765. height: math.unit(1, "cm"),
  9766. form: "dragon",
  9767. },
  9768. {
  9769. name: "Micro",
  9770. height: math.unit(5, "cm"),
  9771. form: "dragon",
  9772. },
  9773. {
  9774. name: "Normal",
  9775. height: math.unit(75, "inches"),
  9776. form: "dragon",
  9777. default: true
  9778. },
  9779. {
  9780. name: "Extra Tall",
  9781. height: math.unit(9, "feet"),
  9782. form: "dragon",
  9783. },
  9784. {
  9785. name: "Inconvenient",
  9786. height: math.unit(5, "meters"),
  9787. form: "dragon",
  9788. },
  9789. {
  9790. name: "Macro",
  9791. height: math.unit(70, "meters"),
  9792. form: "dragon",
  9793. },
  9794. {
  9795. name: "Macro+",
  9796. height: math.unit(250, "meters"),
  9797. form: "dragon",
  9798. },
  9799. {
  9800. name: "Megamacro",
  9801. height: math.unit(20, "km"),
  9802. form: "dragon",
  9803. },
  9804. {
  9805. name: "Mountainous",
  9806. height: math.unit(100, "km"),
  9807. form: "dragon",
  9808. },
  9809. {
  9810. name: "Continental",
  9811. height: math.unit(2, "megameters"),
  9812. form: "dragon",
  9813. },
  9814. {
  9815. name: "Too Big",
  9816. height: math.unit(900, "megameters"),
  9817. form: "dragon",
  9818. },
  9819. ],
  9820. {
  9821. "kobold": {
  9822. name: "Kobold",
  9823. default: true
  9824. },
  9825. "dragon": {
  9826. name: "Dragon",
  9827. },
  9828. }
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9832. {
  9833. lamp: {
  9834. height: math.unit(7 * 1559 / 989, "feet"),
  9835. name: "Magic Lamp",
  9836. image: {
  9837. source: "./media/characters/mira-al-cul/lamp.svg",
  9838. extra: 1617 / 1559
  9839. }
  9840. },
  9841. front: {
  9842. height: math.unit(7, "feet"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/mira-al-cul/front.svg",
  9846. extra: 1044 / 990
  9847. }
  9848. },
  9849. },
  9850. [
  9851. {
  9852. name: "Heavily Restricted",
  9853. height: math.unit(7 * 1559 / 989, "feet")
  9854. },
  9855. {
  9856. name: "Freshly Freed",
  9857. height: math.unit(50 * 1559 / 989, "feet")
  9858. },
  9859. {
  9860. name: "World Encompassing",
  9861. height: math.unit(10000 * 1559 / 989, "miles")
  9862. },
  9863. {
  9864. name: "Galactic",
  9865. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9866. },
  9867. {
  9868. name: "Palmed Universe",
  9869. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9870. default: true
  9871. },
  9872. {
  9873. name: "Multiversal Matriarch",
  9874. height: math.unit(8.87e10, "yottameters")
  9875. },
  9876. {
  9877. name: "Void Mother",
  9878. height: math.unit(3.14e110, "yottaparsecs")
  9879. },
  9880. {
  9881. name: "Toying with Transcendence",
  9882. height: math.unit(1e307, "meters")
  9883. },
  9884. ]
  9885. ))
  9886. characterMakers.push(() => makeCharacter(
  9887. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9888. {
  9889. front: {
  9890. height: math.unit(17 + 1 / 12, "feet"),
  9891. weight: math.unit(476.2 * 5, "lbs"),
  9892. name: "Front",
  9893. image: {
  9894. source: "./media/characters/kuro-shi-uchū/front.svg",
  9895. extra: 2329 / 1835,
  9896. bottom: 0.02
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Micro",
  9903. height: math.unit(2, "inches")
  9904. },
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(12, "meters")
  9908. },
  9909. {
  9910. name: "Planetary",
  9911. height: math.unit(0.00929, "AU"),
  9912. default: true
  9913. },
  9914. {
  9915. name: "Universal",
  9916. height: math.unit(20, "gigaparsecs")
  9917. },
  9918. ]
  9919. ))
  9920. characterMakers.push(() => makeCharacter(
  9921. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9922. {
  9923. front: {
  9924. height: math.unit(5 + 2 / 12, "feet"),
  9925. weight: math.unit(120, "lbs"),
  9926. name: "Front",
  9927. image: {
  9928. source: "./media/characters/katherine/front.svg",
  9929. extra: 2075 / 1969
  9930. }
  9931. },
  9932. dress: {
  9933. height: math.unit(5 + 2 / 12, "feet"),
  9934. weight: math.unit(120, "lbs"),
  9935. name: "Dress",
  9936. image: {
  9937. source: "./media/characters/katherine/dress.svg",
  9938. extra: 2258 / 2064
  9939. }
  9940. },
  9941. },
  9942. [
  9943. {
  9944. name: "Micro",
  9945. height: math.unit(1, "inches"),
  9946. default: true
  9947. },
  9948. {
  9949. name: "Normal",
  9950. height: math.unit(5 + 2 / 12, "feet")
  9951. },
  9952. {
  9953. name: "Macro",
  9954. height: math.unit(100, "meters")
  9955. },
  9956. {
  9957. name: "Megamacro",
  9958. height: math.unit(80, "miles")
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9964. {
  9965. front: {
  9966. height: math.unit(7 + 8 / 12, "feet"),
  9967. weight: math.unit(250, "lbs"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/yevis/front.svg",
  9971. extra: 1938 / 1755
  9972. }
  9973. }
  9974. },
  9975. [
  9976. {
  9977. name: "Mortal",
  9978. height: math.unit(7 + 8 / 12, "feet")
  9979. },
  9980. {
  9981. name: "Battle",
  9982. height: math.unit(25 + 11 / 12, "feet")
  9983. },
  9984. {
  9985. name: "Wrath",
  9986. height: math.unit(1654 + 11 / 12, "feet")
  9987. },
  9988. {
  9989. name: "Planet Destroyer",
  9990. height: math.unit(12000, "miles")
  9991. },
  9992. {
  9993. name: "Galaxy Conqueror",
  9994. height: math.unit(1.45, "zettameters"),
  9995. default: true
  9996. },
  9997. {
  9998. name: "Universal War",
  9999. height: math.unit(184, "gigaparsecs")
  10000. },
  10001. {
  10002. name: "Eternity War",
  10003. height: math.unit(1.98e55, "yottaparsecs")
  10004. },
  10005. ]
  10006. ))
  10007. characterMakers.push(() => makeCharacter(
  10008. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10009. {
  10010. front: {
  10011. height: math.unit(5 + 8 / 12, "feet"),
  10012. weight: math.unit(63, "kg"),
  10013. name: "Front",
  10014. image: {
  10015. source: "./media/characters/xavier/front.svg",
  10016. extra: 944 / 883
  10017. }
  10018. },
  10019. frontStretch: {
  10020. height: math.unit(5 + 8 / 12, "feet"),
  10021. weight: math.unit(63, "kg"),
  10022. name: "Stretching",
  10023. image: {
  10024. source: "./media/characters/xavier/front-stretch.svg",
  10025. extra: 962 / 820
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Normal",
  10032. height: math.unit(5 + 8 / 12, "feet")
  10033. },
  10034. {
  10035. name: "Macro",
  10036. height: math.unit(100, "meters"),
  10037. default: true
  10038. },
  10039. {
  10040. name: "McLargeHuge",
  10041. height: math.unit(10, "miles")
  10042. },
  10043. ]
  10044. ))
  10045. characterMakers.push(() => makeCharacter(
  10046. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10047. {
  10048. front: {
  10049. height: math.unit(5 + 5 / 12, "feet"),
  10050. weight: math.unit(150, "lb"),
  10051. name: "Front",
  10052. image: {
  10053. source: "./media/characters/joshii/front.svg",
  10054. extra: 765 / 653,
  10055. bottom: 51 / 816
  10056. }
  10057. },
  10058. foot: {
  10059. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10060. name: "Foot",
  10061. image: {
  10062. source: "./media/characters/joshii/foot.svg"
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Micro",
  10069. height: math.unit(2, "inches")
  10070. },
  10071. {
  10072. name: "Normal",
  10073. height: math.unit(5 + 5 / 12, "feet")
  10074. },
  10075. {
  10076. name: "Macro",
  10077. height: math.unit(785, "feet"),
  10078. default: true
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(24.5, "miles")
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10088. {
  10089. front: {
  10090. height: math.unit(6, "feet"),
  10091. weight: math.unit(150, "lb"),
  10092. name: "Front",
  10093. image: {
  10094. source: "./media/characters/goddess-elizabeth/front.svg",
  10095. extra: 1800 / 1525,
  10096. bottom: 0.005
  10097. }
  10098. },
  10099. foot: {
  10100. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10101. name: "Foot",
  10102. image: {
  10103. source: "./media/characters/goddess-elizabeth/foot.svg"
  10104. }
  10105. },
  10106. mouth: {
  10107. height: math.unit(6, "feet"),
  10108. name: "Mouth",
  10109. image: {
  10110. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10111. }
  10112. },
  10113. },
  10114. [
  10115. {
  10116. name: "Micro",
  10117. height: math.unit(12, "feet")
  10118. },
  10119. {
  10120. name: "Normal",
  10121. height: math.unit(80, "miles"),
  10122. default: true
  10123. },
  10124. {
  10125. name: "Macro",
  10126. height: math.unit(15000, "parsecs")
  10127. },
  10128. ]
  10129. ))
  10130. characterMakers.push(() => makeCharacter(
  10131. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10132. {
  10133. front: {
  10134. height: math.unit(5 + 9 / 12, "feet"),
  10135. weight: math.unit(144, "lb"),
  10136. name: "Front",
  10137. image: {
  10138. source: "./media/characters/kara/front.svg"
  10139. }
  10140. },
  10141. feet: {
  10142. height: math.unit(6 / 6.765, "feet"),
  10143. name: "Kara's Feet",
  10144. rename: true,
  10145. image: {
  10146. source: "./media/characters/kara/feet.svg"
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(5 + 9 / 12, "feet")
  10154. },
  10155. {
  10156. name: "Macro",
  10157. height: math.unit(174, "feet"),
  10158. default: true
  10159. },
  10160. ]
  10161. ))
  10162. characterMakers.push(() => makeCharacter(
  10163. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10164. {
  10165. front: {
  10166. height: math.unit(18, "feet"),
  10167. weight: math.unit(4050, "lb"),
  10168. name: "Front",
  10169. image: {
  10170. source: "./media/characters/tyrone/front.svg",
  10171. extra: 2405 / 2270,
  10172. bottom: 182 / 2587
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(18, "feet"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Macro",
  10184. height: math.unit(300, "feet")
  10185. },
  10186. {
  10187. name: "Megamacro",
  10188. height: math.unit(15, "km")
  10189. },
  10190. {
  10191. name: "Gigamacro",
  10192. height: math.unit(500, "km")
  10193. },
  10194. {
  10195. name: "Teramacro",
  10196. height: math.unit(0.5, "gigameters")
  10197. },
  10198. {
  10199. name: "Omnimacro",
  10200. height: math.unit(1e252, "yottauniverse")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(7 + 8 / 12, "feet"),
  10209. weight: math.unit(120, "lb"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/danny/front.svg",
  10213. extra: 1490 / 1350
  10214. }
  10215. },
  10216. back: {
  10217. height: math.unit(7 + 8 / 12, "feet"),
  10218. weight: math.unit(120, "lb"),
  10219. name: "Back",
  10220. image: {
  10221. source: "./media/characters/danny/back.svg",
  10222. extra: 1490 / 1350
  10223. }
  10224. },
  10225. },
  10226. [
  10227. {
  10228. name: "Normal",
  10229. height: math.unit(7 + 8 / 12, "feet"),
  10230. default: true
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(3.5, "inches"),
  10239. weight: math.unit(19, "grams"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/mallow/front.svg",
  10243. extra: 471 / 431
  10244. }
  10245. },
  10246. back: {
  10247. height: math.unit(3.5, "inches"),
  10248. weight: math.unit(19, "grams"),
  10249. name: "Back",
  10250. image: {
  10251. source: "./media/characters/mallow/back.svg",
  10252. extra: 471 / 431
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Normal",
  10259. height: math.unit(3.5, "inches"),
  10260. default: true
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10266. {
  10267. front: {
  10268. height: math.unit(9, "feet"),
  10269. weight: math.unit(230, "kg"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/starry-aqua/front.svg"
  10273. }
  10274. },
  10275. back: {
  10276. height: math.unit(9, "feet"),
  10277. weight: math.unit(230, "kg"),
  10278. name: "Back",
  10279. image: {
  10280. source: "./media/characters/starry-aqua/back.svg"
  10281. }
  10282. },
  10283. hand: {
  10284. height: math.unit(9 * 0.1168, "feet"),
  10285. name: "Hand",
  10286. image: {
  10287. source: "./media/characters/starry-aqua/hand.svg"
  10288. }
  10289. },
  10290. foot: {
  10291. height: math.unit(9 * 0.18, "feet"),
  10292. name: "Foot",
  10293. image: {
  10294. source: "./media/characters/starry-aqua/foot.svg"
  10295. }
  10296. }
  10297. },
  10298. [
  10299. {
  10300. name: "Micro",
  10301. height: math.unit(3, "inches")
  10302. },
  10303. {
  10304. name: "Normal",
  10305. height: math.unit(9, "feet")
  10306. },
  10307. {
  10308. name: "Macro",
  10309. height: math.unit(300, "feet"),
  10310. default: true
  10311. },
  10312. {
  10313. name: "Megamacro",
  10314. height: math.unit(3200, "feet")
  10315. }
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(15, "feet"),
  10323. weight: math.unit(5026, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/luka-towers/front.svg",
  10327. extra: 1269/1133,
  10328. bottom: 51/1320
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(15, "feet"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Minimacro",
  10340. height: math.unit(25, "feet")
  10341. },
  10342. {
  10343. name: "Macro",
  10344. height: math.unit(320, "feet")
  10345. },
  10346. {
  10347. name: "Megamacro",
  10348. height: math.unit(35000, "feet")
  10349. },
  10350. {
  10351. name: "Gigamacro",
  10352. height: math.unit(4000, "miles")
  10353. },
  10354. {
  10355. name: "Teramacro",
  10356. height: math.unit(15000, "miles")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10362. {
  10363. front: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(150, "lb"),
  10366. name: "Front",
  10367. image: {
  10368. source: "./media/characters/natalie-nightring/front.svg",
  10369. extra: 1,
  10370. bottom: 0.06
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Uh Oh",
  10377. height: math.unit(0.1, "mm")
  10378. },
  10379. {
  10380. name: "Small",
  10381. height: math.unit(3, "inches")
  10382. },
  10383. {
  10384. name: "Human Scale",
  10385. height: math.unit(6, "feet")
  10386. },
  10387. {
  10388. name: "Librarian",
  10389. height: math.unit(50, "feet"),
  10390. default: true
  10391. },
  10392. {
  10393. name: "Immense",
  10394. height: math.unit(200, "miles")
  10395. },
  10396. ]
  10397. ))
  10398. characterMakers.push(() => makeCharacter(
  10399. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10400. {
  10401. front: {
  10402. height: math.unit(6, "feet"),
  10403. weight: math.unit(180, "lbs"),
  10404. name: "Front",
  10405. image: {
  10406. source: "./media/characters/danni-rosie/front.svg",
  10407. extra: 1260 / 1128,
  10408. bottom: 0.022
  10409. }
  10410. },
  10411. },
  10412. [
  10413. {
  10414. name: "Micro",
  10415. height: math.unit(2, "inches"),
  10416. default: true
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(5 + 9 / 12, "feet"),
  10425. weight: math.unit(220, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/samantha-kruse/front.svg",
  10429. extra: (985 / 935),
  10430. bottom: 0.03
  10431. }
  10432. },
  10433. frontUndressed: {
  10434. height: math.unit(5 + 9 / 12, "feet"),
  10435. weight: math.unit(220, "lb"),
  10436. name: "Front (Undressed)",
  10437. image: {
  10438. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10439. extra: (973 / 923),
  10440. bottom: 0.025
  10441. }
  10442. },
  10443. fat: {
  10444. height: math.unit(5 + 9 / 12, "feet"),
  10445. weight: math.unit(900, "lb"),
  10446. name: "Front (Fat)",
  10447. image: {
  10448. source: "./media/characters/samantha-kruse/fat.svg",
  10449. extra: 2688 / 2561
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Normal",
  10456. height: math.unit(5 + 9 / 12, "feet"),
  10457. default: true
  10458. }
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10463. {
  10464. back: {
  10465. height: math.unit(5 + 4 / 12, "feet"),
  10466. weight: math.unit(4963, "lb"),
  10467. name: "Back",
  10468. image: {
  10469. source: "./media/characters/amelia-rosie/back.svg",
  10470. extra: 1113 / 963,
  10471. bottom: 0.01
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Level 0",
  10478. height: math.unit(5 + 4 / 12, "feet")
  10479. },
  10480. {
  10481. name: "Level 1",
  10482. height: math.unit(164597, "feet"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Level 2",
  10487. height: math.unit(956243, "miles")
  10488. },
  10489. {
  10490. name: "Level 3",
  10491. height: math.unit(29421709423, "miles")
  10492. },
  10493. {
  10494. name: "Level 4",
  10495. height: math.unit(154, "lightyears")
  10496. },
  10497. {
  10498. name: "Level 5",
  10499. height: math.unit(4738272, "lightyears")
  10500. },
  10501. {
  10502. name: "Level 6",
  10503. height: math.unit(145787152896, "lightyears")
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10509. {
  10510. front: {
  10511. height: math.unit(5 + 11 / 12, "feet"),
  10512. weight: math.unit(65, "kg"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/rook-kitara/front.svg",
  10516. extra: 1347 / 1274,
  10517. bottom: 0.005
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Totally Unfair",
  10524. height: math.unit(1.8, "mm")
  10525. },
  10526. {
  10527. name: "Lap Rookie",
  10528. height: math.unit(1.4, "feet")
  10529. },
  10530. {
  10531. name: "Normal",
  10532. height: math.unit(5 + 11 / 12, "feet"),
  10533. default: true
  10534. },
  10535. {
  10536. name: "How Did This Happen",
  10537. height: math.unit(80, "miles")
  10538. }
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(7, "feet"),
  10546. weight: math.unit(300, "lb"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/pisces/front.svg",
  10550. extra: 2255 / 2115,
  10551. bottom: 0.03
  10552. }
  10553. },
  10554. back: {
  10555. height: math.unit(7, "feet"),
  10556. weight: math.unit(300, "lb"),
  10557. name: "Back",
  10558. image: {
  10559. source: "./media/characters/pisces/back.svg",
  10560. extra: 2146 / 2055,
  10561. bottom: 0.04
  10562. }
  10563. },
  10564. },
  10565. [
  10566. {
  10567. name: "Normal",
  10568. height: math.unit(7, "feet"),
  10569. default: true
  10570. },
  10571. {
  10572. name: "Swimming Pool",
  10573. height: math.unit(12.2, "meters")
  10574. },
  10575. {
  10576. name: "Olympic Swimming Pool",
  10577. height: math.unit(56.3, "meters")
  10578. },
  10579. {
  10580. name: "Lake Superior",
  10581. height: math.unit(93900, "meters")
  10582. },
  10583. {
  10584. name: "Mediterranean Sea",
  10585. height: math.unit(644457, "meters")
  10586. },
  10587. {
  10588. name: "World's Oceans",
  10589. height: math.unit(4567491, "meters")
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10595. {
  10596. front: {
  10597. height: math.unit(2.3, "meters"),
  10598. weight: math.unit(120, "kg"),
  10599. name: "Front",
  10600. image: {
  10601. source: "./media/characters/zelas/front.svg"
  10602. }
  10603. },
  10604. side: {
  10605. height: math.unit(2.3, "meters"),
  10606. weight: math.unit(120, "kg"),
  10607. name: "Side",
  10608. image: {
  10609. source: "./media/characters/zelas/side.svg"
  10610. }
  10611. },
  10612. back: {
  10613. height: math.unit(2.3, "meters"),
  10614. weight: math.unit(120, "kg"),
  10615. name: "Back",
  10616. image: {
  10617. source: "./media/characters/zelas/back.svg"
  10618. }
  10619. },
  10620. foot: {
  10621. height: math.unit(1.116, "feet"),
  10622. name: "Foot",
  10623. image: {
  10624. source: "./media/characters/zelas/foot.svg"
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(2.3, "meters")
  10632. },
  10633. {
  10634. name: "Macro",
  10635. height: math.unit(30, "meters"),
  10636. default: true
  10637. },
  10638. ]
  10639. ))
  10640. characterMakers.push(() => makeCharacter(
  10641. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10642. {
  10643. front: {
  10644. height: math.unit(1, "inch"),
  10645. weight: math.unit(0.21, "grams"),
  10646. name: "Front",
  10647. image: {
  10648. source: "./media/characters/talbot/front.svg",
  10649. extra: 594 / 544
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Micro",
  10656. height: math.unit(1, "inch"),
  10657. default: true
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10663. {
  10664. front: {
  10665. height: math.unit(3 + 3 / 12, "feet"),
  10666. weight: math.unit(51.8, "lb"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/fliss/front.svg",
  10670. extra: 840 / 640
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Teeny Tiny",
  10677. height: math.unit(1, "mm")
  10678. },
  10679. {
  10680. name: "Small",
  10681. height: math.unit(1, "inch"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Standard Sylveon",
  10686. height: math.unit(3 + 3 / 12, "feet")
  10687. },
  10688. {
  10689. name: "Large Nuisance",
  10690. height: math.unit(33, "feet")
  10691. },
  10692. {
  10693. name: "City Filler",
  10694. height: math.unit(3000, "feet")
  10695. },
  10696. {
  10697. name: "New Horizon",
  10698. height: math.unit(6000, "miles")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10704. {
  10705. front: {
  10706. height: math.unit(5, "cm"),
  10707. weight: math.unit(1.94, "g"),
  10708. name: "Front",
  10709. image: {
  10710. source: "./media/characters/fleta/front.svg",
  10711. extra: 835 / 803
  10712. }
  10713. },
  10714. back: {
  10715. height: math.unit(5, "cm"),
  10716. weight: math.unit(1.94, "g"),
  10717. name: "Back",
  10718. image: {
  10719. source: "./media/characters/fleta/back.svg",
  10720. extra: 835 / 803
  10721. }
  10722. },
  10723. },
  10724. [
  10725. {
  10726. name: "Micro",
  10727. height: math.unit(5, "cm"),
  10728. default: true
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10734. {
  10735. front: {
  10736. height: math.unit(6, "feet"),
  10737. weight: math.unit(225, "lb"),
  10738. name: "Front",
  10739. image: {
  10740. source: "./media/characters/dominic/front.svg",
  10741. extra: 1770 / 1620,
  10742. bottom: 0.025
  10743. }
  10744. },
  10745. back: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(225, "lb"),
  10748. name: "Back",
  10749. image: {
  10750. source: "./media/characters/dominic/back.svg",
  10751. extra: 1745 / 1620,
  10752. bottom: 0.065
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Nano",
  10759. height: math.unit(0.1, "mm")
  10760. },
  10761. {
  10762. name: "Micro-",
  10763. height: math.unit(1, "mm")
  10764. },
  10765. {
  10766. name: "Micro",
  10767. height: math.unit(4, "inches")
  10768. },
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(6 + 4 / 12, "feet"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Macro",
  10776. height: math.unit(115, "feet")
  10777. },
  10778. {
  10779. name: "Macro+",
  10780. height: math.unit(955, "feet")
  10781. },
  10782. {
  10783. name: "Megamacro",
  10784. height: math.unit(8990, "feet")
  10785. },
  10786. {
  10787. name: "Gigmacro",
  10788. height: math.unit(9310, "miles")
  10789. },
  10790. {
  10791. name: "Teramacro",
  10792. height: math.unit(1567005010, "miles")
  10793. },
  10794. {
  10795. name: "Examacro",
  10796. height: math.unit(1425, "parsecs")
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10802. {
  10803. front: {
  10804. height: math.unit(400, "feet"),
  10805. weight: math.unit(44444444, "lb"),
  10806. name: "Front",
  10807. image: {
  10808. source: "./media/characters/major-colonel/front.svg"
  10809. }
  10810. },
  10811. back: {
  10812. height: math.unit(400, "feet"),
  10813. weight: math.unit(44444444, "lb"),
  10814. name: "Back",
  10815. image: {
  10816. source: "./media/characters/major-colonel/back.svg"
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Macro",
  10823. height: math.unit(400, "feet"),
  10824. default: true
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10830. {
  10831. catFront: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(120, "lb"),
  10834. name: "Front (Cat Side)",
  10835. image: {
  10836. source: "./media/characters/axel-lycan/cat-front.svg",
  10837. extra: 430 / 402,
  10838. bottom: 43 / 472.35
  10839. }
  10840. },
  10841. catBack: {
  10842. height: math.unit(6, "feet"),
  10843. weight: math.unit(120, "lb"),
  10844. name: "Back (Cat Side)",
  10845. image: {
  10846. source: "./media/characters/axel-lycan/cat-back.svg",
  10847. extra: 447 / 419,
  10848. bottom: 23.3 / 469
  10849. }
  10850. },
  10851. wolfFront: {
  10852. height: math.unit(6, "feet"),
  10853. weight: math.unit(120, "lb"),
  10854. name: "Front (Wolf Side)",
  10855. image: {
  10856. source: "./media/characters/axel-lycan/wolf-front.svg",
  10857. extra: 485 / 456,
  10858. bottom: 19 / 504
  10859. }
  10860. },
  10861. wolfBack: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(120, "lb"),
  10864. name: "Back (Wolf Side)",
  10865. image: {
  10866. source: "./media/characters/axel-lycan/wolf-back.svg",
  10867. extra: 475 / 438,
  10868. bottom: 39.2 / 514
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Macro",
  10875. height: math.unit(1, "km"),
  10876. default: true
  10877. },
  10878. ]
  10879. ))
  10880. characterMakers.push(() => makeCharacter(
  10881. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10882. {
  10883. front: {
  10884. height: math.unit(5 + 9 / 12, "feet"),
  10885. weight: math.unit(175, "lb"),
  10886. name: "Front",
  10887. image: {
  10888. source: "./media/characters/vanrel-hyena/front.svg",
  10889. extra: 1086 / 1010,
  10890. bottom: 0.04
  10891. }
  10892. },
  10893. },
  10894. [
  10895. {
  10896. name: "Normal",
  10897. height: math.unit(5 + 9 / 12, "feet"),
  10898. default: true
  10899. },
  10900. ]
  10901. ))
  10902. characterMakers.push(() => makeCharacter(
  10903. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10904. {
  10905. front: {
  10906. height: math.unit(6, "feet"),
  10907. weight: math.unit(103, "lb"),
  10908. name: "Front",
  10909. image: {
  10910. source: "./media/characters/abbott-absol/front.svg",
  10911. extra: 765/694,
  10912. bottom: 47/812
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Megamicro",
  10919. height: math.unit(0.1, "mm")
  10920. },
  10921. {
  10922. name: "Micro",
  10923. height: math.unit(1, "inch")
  10924. },
  10925. {
  10926. name: "Normal",
  10927. height: math.unit(6, "feet"),
  10928. default: true
  10929. },
  10930. ]
  10931. ))
  10932. characterMakers.push(() => makeCharacter(
  10933. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10934. {
  10935. front: {
  10936. height: math.unit(6, "feet"),
  10937. weight: math.unit(264, "lb"),
  10938. name: "Front",
  10939. image: {
  10940. source: "./media/characters/hector/front.svg",
  10941. extra: 2280 / 2130,
  10942. bottom: 0.07
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(12.25, "foot"),
  10950. default: true
  10951. },
  10952. {
  10953. name: "Macro",
  10954. height: math.unit(160, "feet")
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(150, "lb"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/sal/front.svg",
  10967. extra: 1846 / 1699,
  10968. bottom: 0.04
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Megamacro",
  10975. height: math.unit(10, "miles"),
  10976. default: true
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10982. {
  10983. front: {
  10984. height: math.unit(3, "meters"),
  10985. weight: math.unit(450, "kg"),
  10986. name: "front",
  10987. image: {
  10988. source: "./media/characters/ranger/front.svg",
  10989. extra: 2401 / 2243,
  10990. bottom: 0.05
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(3, "meters"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(14, "feet"),
  11007. weight: math.unit(800, "kg"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/theresa/front.svg",
  11011. extra: 3575 / 3346,
  11012. bottom: 0.03
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(14, "feet"),
  11020. default: true
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(3, "kg"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/ine/front.svg",
  11033. extra: 678 / 539,
  11034. bottom: 0.023
  11035. }
  11036. },
  11037. },
  11038. [
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(2.265, "feet"),
  11042. default: true
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(5, "feet"),
  11051. weight: math.unit(30, "kg"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/vial/front.svg",
  11055. extra: 1365 / 1277,
  11056. bottom: 0.04
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(5, "feet"),
  11064. default: true
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11070. {
  11071. side: {
  11072. height: math.unit(3.4, "meters"),
  11073. weight: math.unit(1000, "lb"),
  11074. name: "Side",
  11075. image: {
  11076. source: "./media/characters/rovoska/side.svg",
  11077. extra: 4403 / 1515
  11078. }
  11079. },
  11080. },
  11081. [
  11082. {
  11083. name: "Normal",
  11084. height: math.unit(3.4, "meters"),
  11085. default: true
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(8, "feet"),
  11094. weight: math.unit(315, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/gunner-rotthbauer/front.svg"
  11098. }
  11099. },
  11100. back: {
  11101. height: math.unit(8, "feet"),
  11102. weight: math.unit(315, "lb"),
  11103. name: "Back",
  11104. image: {
  11105. source: "./media/characters/gunner-rotthbauer/back.svg"
  11106. }
  11107. },
  11108. },
  11109. [
  11110. {
  11111. name: "Micro",
  11112. height: math.unit(3.5, "inches")
  11113. },
  11114. {
  11115. name: "Normal",
  11116. height: math.unit(8, "feet"),
  11117. default: true
  11118. },
  11119. {
  11120. name: "Macro",
  11121. height: math.unit(250, "feet")
  11122. },
  11123. {
  11124. name: "Megamacro",
  11125. height: math.unit(1, "AU")
  11126. },
  11127. ]
  11128. ))
  11129. characterMakers.push(() => makeCharacter(
  11130. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11131. {
  11132. front: {
  11133. height: math.unit(5 + 5 / 12, "feet"),
  11134. weight: math.unit(140, "lb"),
  11135. name: "Front",
  11136. image: {
  11137. source: "./media/characters/allatia/front.svg",
  11138. extra: 1227 / 1180,
  11139. bottom: 0.027
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Normal",
  11146. height: math.unit(5 + 5 / 12, "feet")
  11147. },
  11148. {
  11149. name: "Macro",
  11150. height: math.unit(250, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Megamacro",
  11155. height: math.unit(8, "miles")
  11156. }
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11161. {
  11162. front: {
  11163. height: math.unit(6, "feet"),
  11164. weight: math.unit(120, "lb"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/tene/front.svg",
  11168. extra: 814/750,
  11169. bottom: 36/850
  11170. }
  11171. },
  11172. stomping: {
  11173. height: math.unit(2.025, "meters"),
  11174. weight: math.unit(120, "lb"),
  11175. name: "Stomping",
  11176. image: {
  11177. source: "./media/characters/tene/stomping.svg",
  11178. extra: 885/821,
  11179. bottom: 15/900
  11180. }
  11181. },
  11182. sitting: {
  11183. height: math.unit(1, "meter"),
  11184. weight: math.unit(120, "lb"),
  11185. name: "Sitting",
  11186. image: {
  11187. source: "./media/characters/tene/sitting.svg",
  11188. extra: 396/366,
  11189. bottom: 79/475
  11190. }
  11191. },
  11192. smiling: {
  11193. height: math.unit(1.2, "feet"),
  11194. name: "Smiling",
  11195. image: {
  11196. source: "./media/characters/tene/smiling.svg",
  11197. extra: 1364/1071,
  11198. bottom: 0/1364
  11199. }
  11200. },
  11201. smug: {
  11202. height: math.unit(1.3, "feet"),
  11203. name: "Smug",
  11204. image: {
  11205. source: "./media/characters/tene/smug.svg",
  11206. extra: 1323/1082,
  11207. bottom: 0/1323
  11208. }
  11209. },
  11210. feral: {
  11211. height: math.unit(3.9, "feet"),
  11212. weight: math.unit(250, "lb"),
  11213. name: "Feral",
  11214. image: {
  11215. source: "./media/characters/tene/feral.svg",
  11216. extra: 717 / 458,
  11217. bottom: 0.179
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(6, "feet")
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(300, "feet"),
  11229. default: true
  11230. },
  11231. {
  11232. name: "Megamacro",
  11233. height: math.unit(5, "miles")
  11234. },
  11235. ]
  11236. ))
  11237. characterMakers.push(() => makeCharacter(
  11238. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11239. {
  11240. side: {
  11241. height: math.unit(6, "feet"),
  11242. name: "Side",
  11243. image: {
  11244. source: "./media/characters/evander/side.svg",
  11245. extra: 877 / 477
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(0.83, "meters"),
  11253. default: true
  11254. },
  11255. ]
  11256. ))
  11257. characterMakers.push(() => makeCharacter(
  11258. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11259. {
  11260. front: {
  11261. height: math.unit(12, "feet"),
  11262. weight: math.unit(1000, "lb"),
  11263. name: "Front",
  11264. image: {
  11265. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11266. extra: 1762 / 1611
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(12, "feet"),
  11271. weight: math.unit(1000, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11275. extra: 1762 / 1611
  11276. }
  11277. },
  11278. },
  11279. [
  11280. {
  11281. name: "Normal",
  11282. height: math.unit(12, "feet"),
  11283. default: true
  11284. },
  11285. {
  11286. name: "Kaiju",
  11287. height: math.unit(150, "feet")
  11288. },
  11289. ]
  11290. ))
  11291. characterMakers.push(() => makeCharacter(
  11292. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11293. {
  11294. front: {
  11295. height: math.unit(6, "feet"),
  11296. weight: math.unit(150, "lb"),
  11297. name: "Front",
  11298. image: {
  11299. source: "./media/characters/zero-alurus/front.svg"
  11300. }
  11301. },
  11302. back: {
  11303. height: math.unit(6, "feet"),
  11304. weight: math.unit(150, "lb"),
  11305. name: "Back",
  11306. image: {
  11307. source: "./media/characters/zero-alurus/back.svg"
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Normal",
  11314. height: math.unit(5 + 10 / 12, "feet")
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(60, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro+",
  11323. height: math.unit(450, "feet")
  11324. },
  11325. ]
  11326. ))
  11327. characterMakers.push(() => makeCharacter(
  11328. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11329. {
  11330. front: {
  11331. height: math.unit(6, "feet"),
  11332. weight: math.unit(200, "lb"),
  11333. name: "Front",
  11334. image: {
  11335. source: "./media/characters/mega-shi/front.svg",
  11336. extra: 1279 / 1250,
  11337. bottom: 0.02
  11338. }
  11339. },
  11340. back: {
  11341. height: math.unit(6, "feet"),
  11342. weight: math.unit(200, "lb"),
  11343. name: "Back",
  11344. image: {
  11345. source: "./media/characters/mega-shi/back.svg",
  11346. extra: 1279 / 1250,
  11347. bottom: 0.02
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Micro",
  11354. height: math.unit(16 + 6 / 12, "feet")
  11355. },
  11356. {
  11357. name: "Third Dimension",
  11358. height: math.unit(40, "meters")
  11359. },
  11360. {
  11361. name: "Normal",
  11362. height: math.unit(660, "feet"),
  11363. default: true
  11364. },
  11365. {
  11366. name: "Megamacro",
  11367. height: math.unit(10, "miles")
  11368. },
  11369. {
  11370. name: "Planetary Launch",
  11371. height: math.unit(500, "miles")
  11372. },
  11373. {
  11374. name: "Interstellar",
  11375. height: math.unit(1e9, "miles")
  11376. },
  11377. {
  11378. name: "Leaving the Universe",
  11379. height: math.unit(1, "gigaparsec")
  11380. },
  11381. {
  11382. name: "Travelling Universes",
  11383. height: math.unit(30e15, "parsecs")
  11384. },
  11385. ]
  11386. ))
  11387. characterMakers.push(() => makeCharacter(
  11388. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11389. {
  11390. front: {
  11391. height: math.unit(5 + 4/12, "feet"),
  11392. weight: math.unit(120, "lb"),
  11393. name: "Front",
  11394. image: {
  11395. source: "./media/characters/odyssey/front.svg",
  11396. extra: 1747/1571,
  11397. bottom: 47/1794
  11398. }
  11399. },
  11400. side: {
  11401. height: math.unit(5.1, "feet"),
  11402. weight: math.unit(120, "lb"),
  11403. name: "Side",
  11404. image: {
  11405. source: "./media/characters/odyssey/side.svg",
  11406. extra: 1847/1619,
  11407. bottom: 47/1894
  11408. }
  11409. },
  11410. lounging: {
  11411. height: math.unit(1.464, "feet"),
  11412. weight: math.unit(120, "lb"),
  11413. name: "Lounging",
  11414. image: {
  11415. source: "./media/characters/odyssey/lounging.svg",
  11416. extra: 1235/837,
  11417. bottom: 551/1786
  11418. }
  11419. },
  11420. },
  11421. [
  11422. {
  11423. name: "Normal",
  11424. height: math.unit(5 + 4 / 12, "feet")
  11425. },
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(1, "km")
  11429. },
  11430. {
  11431. name: "Megamacro",
  11432. height: math.unit(3000, "km")
  11433. },
  11434. {
  11435. name: "Gigamacro",
  11436. height: math.unit(1, "AU"),
  11437. default: true
  11438. },
  11439. {
  11440. name: "Omniversal",
  11441. height: math.unit(100e14, "lightyears")
  11442. },
  11443. ]
  11444. ))
  11445. characterMakers.push(() => makeCharacter(
  11446. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11447. {
  11448. front: {
  11449. height: math.unit(5 + 10/12, "feet"),
  11450. name: "Front",
  11451. image: {
  11452. source: "./media/characters/mekuto/front.svg",
  11453. extra: 875/835,
  11454. bottom: 46/921
  11455. }
  11456. },
  11457. },
  11458. [
  11459. {
  11460. name: "Minimicro",
  11461. height: math.unit(0.2, "inches")
  11462. },
  11463. {
  11464. name: "Micro",
  11465. height: math.unit(1.5, "inches")
  11466. },
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(5 + 10 / 12, "feet"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Minimacro",
  11474. height: math.unit(17 + 9 / 12, "feet")
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(177.5, "feet")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(152, "miles")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(6.5, "inches"),
  11491. weight: math.unit(13, "oz"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/dafydd-tomos/front.svg",
  11495. extra: 2990 / 2603,
  11496. bottom: 0.03
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Micro",
  11503. height: math.unit(6.5, "inches"),
  11504. default: true
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11510. {
  11511. front: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(150, "lb"),
  11514. name: "Front",
  11515. image: {
  11516. source: "./media/characters/splinter/front.svg",
  11517. extra: 2990 / 2882,
  11518. bottom: 0.04
  11519. }
  11520. },
  11521. back: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(150, "lb"),
  11524. name: "Back",
  11525. image: {
  11526. source: "./media/characters/splinter/back.svg",
  11527. extra: 2990 / 2882,
  11528. bottom: 0.04
  11529. }
  11530. },
  11531. },
  11532. [
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(6, "feet")
  11536. },
  11537. {
  11538. name: "Macro",
  11539. height: math.unit(230, "meters"),
  11540. default: true
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(4 + 10 / 12, "feet"),
  11549. weight: math.unit(480, "lb"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/snow-gabumon/front.svg",
  11553. extra: 1140 / 963,
  11554. bottom: 0.058
  11555. }
  11556. },
  11557. back: {
  11558. height: math.unit(4 + 10 / 12, "feet"),
  11559. weight: math.unit(480, "lb"),
  11560. name: "Back",
  11561. image: {
  11562. source: "./media/characters/snow-gabumon/back.svg",
  11563. extra: 1115 / 962,
  11564. bottom: 0.041
  11565. }
  11566. },
  11567. frontUndresed: {
  11568. height: math.unit(4 + 10 / 12, "feet"),
  11569. weight: math.unit(480, "lb"),
  11570. name: "Front (Undressed)",
  11571. image: {
  11572. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11573. extra: 1061 / 960,
  11574. bottom: 0.045
  11575. }
  11576. },
  11577. },
  11578. [
  11579. {
  11580. name: "Micro",
  11581. height: math.unit(1, "inch")
  11582. },
  11583. {
  11584. name: "Normal",
  11585. height: math.unit(4 + 10 / 12, "feet"),
  11586. default: true
  11587. },
  11588. {
  11589. name: "Macro",
  11590. height: math.unit(200, "feet")
  11591. },
  11592. {
  11593. name: "Megamacro",
  11594. height: math.unit(120, "miles")
  11595. },
  11596. {
  11597. name: "Gigamacro",
  11598. height: math.unit(9800, "miles")
  11599. },
  11600. ]
  11601. ))
  11602. characterMakers.push(() => makeCharacter(
  11603. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11604. {
  11605. front: {
  11606. height: math.unit(1.7, "meters"),
  11607. weight: math.unit(140, "lb"),
  11608. name: "Front",
  11609. image: {
  11610. source: "./media/characters/moody/front.svg",
  11611. extra: 3226 / 3007,
  11612. bottom: 0.087
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Micro",
  11619. height: math.unit(1, "mm")
  11620. },
  11621. {
  11622. name: "Normal",
  11623. height: math.unit(1.7, "meters"),
  11624. default: true
  11625. },
  11626. {
  11627. name: "Macro",
  11628. height: math.unit(80, "meters")
  11629. },
  11630. {
  11631. name: "Macro+",
  11632. height: math.unit(500, "meters")
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11638. {
  11639. front: {
  11640. height: math.unit(6, "feet"),
  11641. weight: math.unit(150, "lb"),
  11642. name: "Front",
  11643. image: {
  11644. source: "./media/characters/zyas/front.svg",
  11645. extra: 1180 / 1120,
  11646. bottom: 0.045
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Normal",
  11653. height: math.unit(10, "feet"),
  11654. default: true
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(500, "feet")
  11659. },
  11660. {
  11661. name: "Megamacro",
  11662. height: math.unit(5, "miles")
  11663. },
  11664. {
  11665. name: "Teramacro",
  11666. height: math.unit(150000, "miles")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(150, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/cuon/front.svg",
  11679. extra: 1390 / 1320,
  11680. bottom: 0.008
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Micro",
  11687. height: math.unit(3, "inches")
  11688. },
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(18 + 9 / 12, "feet"),
  11692. default: true
  11693. },
  11694. {
  11695. name: "Macro",
  11696. height: math.unit(360, "feet")
  11697. },
  11698. {
  11699. name: "Megamacro",
  11700. height: math.unit(360, "miles")
  11701. },
  11702. ]
  11703. ))
  11704. characterMakers.push(() => makeCharacter(
  11705. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11706. {
  11707. front: {
  11708. height: math.unit(2.4, "meters"),
  11709. weight: math.unit(70, "kg"),
  11710. name: "Front",
  11711. image: {
  11712. source: "./media/characters/nyanuxk/front.svg",
  11713. extra: 1172 / 1084,
  11714. bottom: 0.065
  11715. }
  11716. },
  11717. side: {
  11718. height: math.unit(2.4, "meters"),
  11719. weight: math.unit(70, "kg"),
  11720. name: "Side",
  11721. image: {
  11722. source: "./media/characters/nyanuxk/side.svg",
  11723. extra: 1190 / 1132,
  11724. bottom: 0.007
  11725. }
  11726. },
  11727. back: {
  11728. height: math.unit(2.4, "meters"),
  11729. weight: math.unit(70, "kg"),
  11730. name: "Back",
  11731. image: {
  11732. source: "./media/characters/nyanuxk/back.svg",
  11733. extra: 1200 / 1141,
  11734. bottom: 0.015
  11735. }
  11736. },
  11737. foot: {
  11738. height: math.unit(0.52, "meters"),
  11739. name: "Foot",
  11740. image: {
  11741. source: "./media/characters/nyanuxk/foot.svg"
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Micro",
  11748. height: math.unit(2, "cm")
  11749. },
  11750. {
  11751. name: "Normal",
  11752. height: math.unit(2.4, "meters"),
  11753. default: true
  11754. },
  11755. {
  11756. name: "Smaller Macro",
  11757. height: math.unit(120, "meters")
  11758. },
  11759. {
  11760. name: "Bigger Macro",
  11761. height: math.unit(1.2, "km")
  11762. },
  11763. {
  11764. name: "Megamacro",
  11765. height: math.unit(15, "kilometers")
  11766. },
  11767. {
  11768. name: "Gigamacro",
  11769. height: math.unit(2000, "km")
  11770. },
  11771. {
  11772. name: "Teramacro",
  11773. height: math.unit(500000, "km")
  11774. },
  11775. ]
  11776. ))
  11777. characterMakers.push(() => makeCharacter(
  11778. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11779. {
  11780. side: {
  11781. height: math.unit(6, "feet"),
  11782. name: "Side",
  11783. image: {
  11784. source: "./media/characters/ailbhe/side.svg",
  11785. extra: 757 / 464,
  11786. bottom: 0.041
  11787. }
  11788. },
  11789. },
  11790. [
  11791. {
  11792. name: "Normal",
  11793. height: math.unit(1.07, "meters"),
  11794. default: true
  11795. },
  11796. ]
  11797. ))
  11798. characterMakers.push(() => makeCharacter(
  11799. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11800. {
  11801. front: {
  11802. height: math.unit(6, "feet"),
  11803. weight: math.unit(120, "kg"),
  11804. name: "Front",
  11805. image: {
  11806. source: "./media/characters/zevulfius/front.svg",
  11807. extra: 965 / 903
  11808. }
  11809. },
  11810. side: {
  11811. height: math.unit(6, "feet"),
  11812. weight: math.unit(120, "kg"),
  11813. name: "Side",
  11814. image: {
  11815. source: "./media/characters/zevulfius/side.svg",
  11816. extra: 939 / 900
  11817. }
  11818. },
  11819. back: {
  11820. height: math.unit(6, "feet"),
  11821. weight: math.unit(120, "kg"),
  11822. name: "Back",
  11823. image: {
  11824. source: "./media/characters/zevulfius/back.svg",
  11825. extra: 918 / 854,
  11826. bottom: 0.005
  11827. }
  11828. },
  11829. foot: {
  11830. height: math.unit(6 / 3.72, "feet"),
  11831. name: "Foot",
  11832. image: {
  11833. source: "./media/characters/zevulfius/foot.svg"
  11834. }
  11835. },
  11836. },
  11837. [
  11838. {
  11839. name: "Macro",
  11840. height: math.unit(750, "meters")
  11841. },
  11842. {
  11843. name: "Megamacro",
  11844. height: math.unit(20, "km"),
  11845. default: true
  11846. },
  11847. {
  11848. name: "Gigamacro",
  11849. height: math.unit(2000, "km")
  11850. },
  11851. {
  11852. name: "Teramacro",
  11853. height: math.unit(250000, "km")
  11854. },
  11855. ]
  11856. ))
  11857. characterMakers.push(() => makeCharacter(
  11858. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11859. {
  11860. front: {
  11861. height: math.unit(100, "feet"),
  11862. weight: math.unit(350, "kg"),
  11863. name: "Front",
  11864. image: {
  11865. source: "./media/characters/rikes/front.svg",
  11866. extra: 1565 / 1483,
  11867. bottom: 0.017
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Macro",
  11874. height: math.unit(100, "feet"),
  11875. default: true
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(8, "feet"),
  11884. weight: math.unit(356, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/adam-silver-mane/front.svg",
  11888. extra: 1036/937,
  11889. bottom: 63/1099
  11890. }
  11891. },
  11892. side: {
  11893. height: math.unit(8, "feet"),
  11894. weight: math.unit(356, "lb"),
  11895. name: "Side",
  11896. image: {
  11897. source: "./media/characters/adam-silver-mane/side.svg",
  11898. extra: 997/901,
  11899. bottom: 59/1056
  11900. }
  11901. },
  11902. frontNsfw: {
  11903. height: math.unit(8, "feet"),
  11904. weight: math.unit(356, "lb"),
  11905. name: "Front (NSFW)",
  11906. image: {
  11907. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11908. extra: 1036/937,
  11909. bottom: 63/1099
  11910. }
  11911. },
  11912. sideNsfw: {
  11913. height: math.unit(8, "feet"),
  11914. weight: math.unit(356, "lb"),
  11915. name: "Side (NSFW)",
  11916. image: {
  11917. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11918. extra: 997/901,
  11919. bottom: 59/1056
  11920. }
  11921. },
  11922. dick: {
  11923. height: math.unit(2.1, "feet"),
  11924. name: "Dick",
  11925. image: {
  11926. source: "./media/characters/adam-silver-mane/dick.svg"
  11927. }
  11928. },
  11929. taur: {
  11930. height: math.unit(16, "feet"),
  11931. weight: math.unit(1500, "kg"),
  11932. name: "Taur",
  11933. image: {
  11934. source: "./media/characters/adam-silver-mane/taur.svg",
  11935. extra: 1713 / 1571,
  11936. bottom: 0.01
  11937. }
  11938. },
  11939. },
  11940. [
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(8, "feet")
  11944. },
  11945. {
  11946. name: "Minimacro",
  11947. height: math.unit(80, "feet")
  11948. },
  11949. {
  11950. name: "MDA",
  11951. height: math.unit(80, "meters")
  11952. },
  11953. {
  11954. name: "Macro",
  11955. height: math.unit(800, "feet"),
  11956. default: true
  11957. },
  11958. {
  11959. name: "Megamacro",
  11960. height: math.unit(8000, "feet")
  11961. },
  11962. {
  11963. name: "Gigamacro",
  11964. height: math.unit(800, "miles")
  11965. },
  11966. {
  11967. name: "Teramacro",
  11968. height: math.unit(80000, "miles")
  11969. },
  11970. {
  11971. name: "Celestial",
  11972. height: math.unit(8e6, "miles")
  11973. },
  11974. {
  11975. name: "Star Dragon",
  11976. height: math.unit(800000, "parsecs")
  11977. },
  11978. {
  11979. name: "Godly",
  11980. height: math.unit(800, "teraparsecs")
  11981. },
  11982. ]
  11983. ))
  11984. characterMakers.push(() => makeCharacter(
  11985. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11986. {
  11987. front: {
  11988. height: math.unit(6, "feet"),
  11989. weight: math.unit(150, "lb"),
  11990. name: "Front",
  11991. image: {
  11992. source: "./media/characters/ky'owin/front.svg",
  11993. extra: 3862/3053,
  11994. bottom: 74/3936
  11995. }
  11996. },
  11997. },
  11998. [
  11999. {
  12000. name: "Normal",
  12001. height: math.unit(6 + 8 / 12, "feet")
  12002. },
  12003. {
  12004. name: "Large",
  12005. height: math.unit(68, "feet")
  12006. },
  12007. {
  12008. name: "Macro",
  12009. height: math.unit(132, "feet")
  12010. },
  12011. {
  12012. name: "Macro+",
  12013. height: math.unit(340, "feet")
  12014. },
  12015. {
  12016. name: "Macro++",
  12017. height: math.unit(680, "feet"),
  12018. default: true
  12019. },
  12020. {
  12021. name: "Megamacro",
  12022. height: math.unit(1, "mile")
  12023. },
  12024. {
  12025. name: "Megamacro+",
  12026. height: math.unit(10, "miles")
  12027. },
  12028. ]
  12029. ))
  12030. characterMakers.push(() => makeCharacter(
  12031. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12032. {
  12033. front: {
  12034. height: math.unit(4, "feet"),
  12035. weight: math.unit(50, "lb"),
  12036. name: "Front",
  12037. image: {
  12038. source: "./media/characters/mal/front.svg",
  12039. extra: 785 / 724,
  12040. bottom: 0.07
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Micro",
  12047. height: math.unit(4, "inches")
  12048. },
  12049. {
  12050. name: "Normal",
  12051. height: math.unit(4, "feet"),
  12052. default: true
  12053. },
  12054. {
  12055. name: "Macro",
  12056. height: math.unit(200, "feet")
  12057. },
  12058. ]
  12059. ))
  12060. characterMakers.push(() => makeCharacter(
  12061. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12062. {
  12063. front: {
  12064. height: math.unit(6, "feet"),
  12065. weight: math.unit(150, "lb"),
  12066. name: "Front",
  12067. image: {
  12068. source: "./media/characters/jordan-deware/front.svg",
  12069. extra: 1191 / 1012
  12070. }
  12071. },
  12072. },
  12073. [
  12074. {
  12075. name: "Nano",
  12076. height: math.unit(0.01, "mm")
  12077. },
  12078. {
  12079. name: "Minimicro",
  12080. height: math.unit(1, "mm")
  12081. },
  12082. {
  12083. name: "Micro",
  12084. height: math.unit(0.5, "inches")
  12085. },
  12086. {
  12087. name: "Normal",
  12088. height: math.unit(4, "feet"),
  12089. default: true
  12090. },
  12091. {
  12092. name: "Minimacro",
  12093. height: math.unit(40, "meters")
  12094. },
  12095. {
  12096. name: "Small Macro",
  12097. height: math.unit(400, "meters")
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(4, "miles")
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(40, "miles")
  12106. },
  12107. {
  12108. name: "Megamacro+",
  12109. height: math.unit(400, "miles")
  12110. },
  12111. {
  12112. name: "Gigamacro",
  12113. height: math.unit(400000, "miles")
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12119. {
  12120. side: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Side",
  12124. image: {
  12125. source: "./media/characters/kimiko/side.svg",
  12126. extra: 600 / 358
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(15, "feet"),
  12134. default: true
  12135. },
  12136. {
  12137. name: "Macro",
  12138. height: math.unit(220, "feet")
  12139. },
  12140. {
  12141. name: "Macro+",
  12142. height: math.unit(1450, "feet")
  12143. },
  12144. {
  12145. name: "Megamacro",
  12146. height: math.unit(11500, "feet")
  12147. },
  12148. {
  12149. name: "Gigamacro",
  12150. height: math.unit(9500, "miles")
  12151. },
  12152. {
  12153. name: "Teramacro",
  12154. height: math.unit(2208005005, "miles")
  12155. },
  12156. {
  12157. name: "Examacro",
  12158. height: math.unit(2750, "parsecs")
  12159. },
  12160. {
  12161. name: "Zettamacro",
  12162. height: math.unit(101500, "parsecs")
  12163. },
  12164. ]
  12165. ))
  12166. characterMakers.push(() => makeCharacter(
  12167. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12168. {
  12169. front: {
  12170. height: math.unit(6, "feet"),
  12171. weight: math.unit(70, "kg"),
  12172. name: "Front",
  12173. image: {
  12174. source: "./media/characters/andrew-sleepy/front.svg"
  12175. }
  12176. },
  12177. side: {
  12178. height: math.unit(6, "feet"),
  12179. weight: math.unit(70, "kg"),
  12180. name: "Side",
  12181. image: {
  12182. source: "./media/characters/andrew-sleepy/side.svg"
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Micro",
  12189. height: math.unit(1, "mm"),
  12190. default: true
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12196. {
  12197. front: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(150, "lb"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/judio/front.svg",
  12203. extra: 1258 / 1110
  12204. }
  12205. },
  12206. },
  12207. [
  12208. {
  12209. name: "Normal",
  12210. height: math.unit(5 + 6 / 12, "feet")
  12211. },
  12212. {
  12213. name: "Macro",
  12214. height: math.unit(1000, "feet"),
  12215. default: true
  12216. },
  12217. {
  12218. name: "Megamacro",
  12219. height: math.unit(10, "miles")
  12220. },
  12221. ]
  12222. ))
  12223. characterMakers.push(() => makeCharacter(
  12224. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12225. {
  12226. frontDressed: {
  12227. height: math.unit(6, "feet"),
  12228. weight: math.unit(68, "kg"),
  12229. name: "Front (Dressed)",
  12230. image: {
  12231. source: "./media/characters/nomaxice/front-dressed.svg",
  12232. extra: 1137/824,
  12233. bottom: 74/1211
  12234. }
  12235. },
  12236. frontShorts: {
  12237. height: math.unit(6, "feet"),
  12238. weight: math.unit(68, "kg"),
  12239. name: "Front (Shorts)",
  12240. image: {
  12241. source: "./media/characters/nomaxice/front-shorts.svg",
  12242. extra: 1137/824,
  12243. bottom: 74/1211
  12244. }
  12245. },
  12246. back: {
  12247. height: math.unit(6, "feet"),
  12248. weight: math.unit(68, "kg"),
  12249. name: "Back",
  12250. image: {
  12251. source: "./media/characters/nomaxice/back.svg",
  12252. extra: 822/786,
  12253. bottom: 39/861
  12254. }
  12255. },
  12256. hand: {
  12257. height: math.unit(0.565, "feet"),
  12258. name: "Hand",
  12259. image: {
  12260. source: "./media/characters/nomaxice/hand.svg"
  12261. }
  12262. },
  12263. foot: {
  12264. height: math.unit(1, "feet"),
  12265. name: "Foot",
  12266. image: {
  12267. source: "./media/characters/nomaxice/foot.svg"
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Micro",
  12274. height: math.unit(8, "cm")
  12275. },
  12276. {
  12277. name: "Norm",
  12278. height: math.unit(1.82, "m")
  12279. },
  12280. {
  12281. name: "Norm+",
  12282. height: math.unit(8.8, "feet"),
  12283. default: true
  12284. },
  12285. {
  12286. name: "Big",
  12287. height: math.unit(8, "meters")
  12288. },
  12289. {
  12290. name: "Macro",
  12291. height: math.unit(18, "meters")
  12292. },
  12293. {
  12294. name: "Macro+",
  12295. height: math.unit(88, "meters")
  12296. },
  12297. ]
  12298. ))
  12299. characterMakers.push(() => makeCharacter(
  12300. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12301. {
  12302. front: {
  12303. height: math.unit(12, "feet"),
  12304. weight: math.unit(1.5, "tons"),
  12305. name: "Front",
  12306. image: {
  12307. source: "./media/characters/dydros/front.svg",
  12308. extra: 863 / 800,
  12309. bottom: 0.015
  12310. }
  12311. },
  12312. back: {
  12313. height: math.unit(12, "feet"),
  12314. weight: math.unit(1.5, "tons"),
  12315. name: "Back",
  12316. image: {
  12317. source: "./media/characters/dydros/back.svg",
  12318. extra: 900 / 843,
  12319. bottom: 0.005
  12320. }
  12321. },
  12322. },
  12323. [
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(12, "feet"),
  12327. default: true
  12328. },
  12329. ]
  12330. ))
  12331. characterMakers.push(() => makeCharacter(
  12332. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12333. {
  12334. front: {
  12335. height: math.unit(6, "feet"),
  12336. weight: math.unit(100, "kg"),
  12337. name: "Front",
  12338. image: {
  12339. source: "./media/characters/riggi/front.svg",
  12340. extra: 5787 / 5303
  12341. }
  12342. },
  12343. hyper: {
  12344. height: math.unit(6 * 5 / 3, "feet"),
  12345. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12346. name: "Hyper",
  12347. image: {
  12348. source: "./media/characters/riggi/hyper.svg",
  12349. extra: 3595 / 3485
  12350. }
  12351. },
  12352. },
  12353. [
  12354. {
  12355. name: "Small Macro",
  12356. height: math.unit(50, "feet")
  12357. },
  12358. {
  12359. name: "Default",
  12360. height: math.unit(200, "feet"),
  12361. default: true
  12362. },
  12363. {
  12364. name: "Loom",
  12365. height: math.unit(10000, "feet")
  12366. },
  12367. {
  12368. name: "Cruising Altitude",
  12369. height: math.unit(30000, "feet")
  12370. },
  12371. {
  12372. name: "Megamacro",
  12373. height: math.unit(100, "miles")
  12374. },
  12375. {
  12376. name: "Continent Sized",
  12377. height: math.unit(2800, "miles")
  12378. },
  12379. {
  12380. name: "Earth Sized",
  12381. height: math.unit(8000, "miles")
  12382. },
  12383. ]
  12384. ))
  12385. characterMakers.push(() => makeCharacter(
  12386. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12387. {
  12388. front: {
  12389. height: math.unit(6, "feet"),
  12390. weight: math.unit(250, "lb"),
  12391. name: "Front",
  12392. image: {
  12393. source: "./media/characters/alexi/front.svg",
  12394. extra: 3483 / 3291,
  12395. bottom: 0.04
  12396. }
  12397. },
  12398. back: {
  12399. height: math.unit(6, "feet"),
  12400. weight: math.unit(250, "lb"),
  12401. name: "Back",
  12402. image: {
  12403. source: "./media/characters/alexi/back.svg",
  12404. extra: 3533 / 3356,
  12405. bottom: 0.021
  12406. }
  12407. },
  12408. frontTransforming: {
  12409. height: math.unit(8.58, "feet"),
  12410. weight: math.unit(1300, "lb"),
  12411. name: "Transforming",
  12412. image: {
  12413. source: "./media/characters/alexi/front-transforming.svg",
  12414. extra: 437 / 409,
  12415. bottom: 19 / 458.66
  12416. }
  12417. },
  12418. frontTransformed: {
  12419. height: math.unit(12.5, "feet"),
  12420. weight: math.unit(4000, "lb"),
  12421. name: "Transformed",
  12422. image: {
  12423. source: "./media/characters/alexi/front-transformed.svg",
  12424. extra: 639 / 614,
  12425. bottom: 30.55 / 671
  12426. }
  12427. },
  12428. },
  12429. [
  12430. {
  12431. name: "Normal",
  12432. height: math.unit(14, "feet"),
  12433. default: true
  12434. },
  12435. {
  12436. name: "Minimacro",
  12437. height: math.unit(30, "meters")
  12438. },
  12439. {
  12440. name: "Macro",
  12441. height: math.unit(500, "meters")
  12442. },
  12443. {
  12444. name: "Megamacro",
  12445. height: math.unit(9000, "km")
  12446. },
  12447. {
  12448. name: "Teramacro",
  12449. height: math.unit(384000, "km")
  12450. },
  12451. ]
  12452. ))
  12453. characterMakers.push(() => makeCharacter(
  12454. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12455. {
  12456. front: {
  12457. height: math.unit(6, "feet"),
  12458. weight: math.unit(150, "lb"),
  12459. name: "Front",
  12460. image: {
  12461. source: "./media/characters/kayroo/front.svg",
  12462. extra: 1153 / 1038,
  12463. bottom: 0.06
  12464. }
  12465. },
  12466. foot: {
  12467. height: math.unit(6, "feet"),
  12468. weight: math.unit(150, "lb"),
  12469. name: "Foot",
  12470. image: {
  12471. source: "./media/characters/kayroo/foot.svg"
  12472. }
  12473. },
  12474. },
  12475. [
  12476. {
  12477. name: "Normal",
  12478. height: math.unit(8, "feet"),
  12479. default: true
  12480. },
  12481. {
  12482. name: "Minimacro",
  12483. height: math.unit(250, "feet")
  12484. },
  12485. {
  12486. name: "Macro",
  12487. height: math.unit(2800, "feet")
  12488. },
  12489. {
  12490. name: "Megamacro",
  12491. height: math.unit(5200, "feet")
  12492. },
  12493. {
  12494. name: "Gigamacro",
  12495. height: math.unit(27000, "feet")
  12496. },
  12497. {
  12498. name: "Omega",
  12499. height: math.unit(45000, "feet")
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12505. {
  12506. front: {
  12507. height: math.unit(18, "feet"),
  12508. weight: math.unit(5800, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/rhys/front.svg",
  12512. extra: 3386 / 3090,
  12513. bottom: 0.07
  12514. }
  12515. },
  12516. },
  12517. [
  12518. {
  12519. name: "Normal",
  12520. height: math.unit(18, "feet"),
  12521. default: true
  12522. },
  12523. {
  12524. name: "Working Size",
  12525. height: math.unit(200, "feet")
  12526. },
  12527. {
  12528. name: "Demolition Size",
  12529. height: math.unit(2000, "feet")
  12530. },
  12531. {
  12532. name: "Maximum Licensed Size",
  12533. height: math.unit(5, "miles")
  12534. },
  12535. {
  12536. name: "Maximum Observed Size",
  12537. height: math.unit(10, "yottameters")
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12543. {
  12544. front: {
  12545. height: math.unit(6, "feet"),
  12546. weight: math.unit(250, "lb"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/toto/front.svg",
  12550. extra: 527 / 479,
  12551. bottom: 0.05
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Micro",
  12558. height: math.unit(3, "feet")
  12559. },
  12560. {
  12561. name: "Normal",
  12562. height: math.unit(10, "feet")
  12563. },
  12564. {
  12565. name: "Macro",
  12566. height: math.unit(150, "feet"),
  12567. default: true
  12568. },
  12569. {
  12570. name: "Megamacro",
  12571. height: math.unit(1200, "feet")
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "King", species: ["lion"], tags: ["anthro"] },
  12577. {
  12578. back: {
  12579. height: math.unit(6, "feet"),
  12580. weight: math.unit(150, "lb"),
  12581. name: "Back",
  12582. image: {
  12583. source: "./media/characters/king/back.svg"
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Micro",
  12590. height: math.unit(2, "inches")
  12591. },
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(8, "feet")
  12595. },
  12596. {
  12597. name: "Macro",
  12598. height: math.unit(200, "feet"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Megamacro",
  12603. height: math.unit(50, "miles")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(11, "feet"),
  12612. weight: math.unit(1400, "lb"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/cordite/front.svg",
  12616. extra: 1919/1827,
  12617. bottom: 40/1959
  12618. }
  12619. },
  12620. side: {
  12621. height: math.unit(11, "feet"),
  12622. weight: math.unit(1400, "lb"),
  12623. name: "Side",
  12624. image: {
  12625. source: "./media/characters/cordite/side.svg",
  12626. extra: 1908/1793,
  12627. bottom: 38/1946
  12628. }
  12629. },
  12630. back: {
  12631. height: math.unit(11, "feet"),
  12632. weight: math.unit(1400, "lb"),
  12633. name: "Back",
  12634. image: {
  12635. source: "./media/characters/cordite/back.svg",
  12636. extra: 1938/1837,
  12637. bottom: 10/1948
  12638. }
  12639. },
  12640. feral: {
  12641. height: math.unit(2, "feet"),
  12642. weight: math.unit(90, "lb"),
  12643. name: "Feral",
  12644. image: {
  12645. source: "./media/characters/cordite/feral.svg",
  12646. extra: 1260 / 755,
  12647. bottom: 0.05
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(11, "feet"),
  12655. default: true
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(6, "feet"),
  12664. weight: math.unit(150, "lb"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/pianostrong/front.svg",
  12668. extra: 6577 / 6254,
  12669. bottom: 0.02
  12670. }
  12671. },
  12672. side: {
  12673. height: math.unit(6, "feet"),
  12674. weight: math.unit(150, "lb"),
  12675. name: "Side",
  12676. image: {
  12677. source: "./media/characters/pianostrong/side.svg",
  12678. extra: 6106 / 5730
  12679. }
  12680. },
  12681. back: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(150, "lb"),
  12684. name: "Back",
  12685. image: {
  12686. source: "./media/characters/pianostrong/back.svg",
  12687. extra: 6085 / 5733,
  12688. bottom: 0.01
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Macro",
  12695. height: math.unit(100, "feet")
  12696. },
  12697. {
  12698. name: "Macro+",
  12699. height: math.unit(300, "feet"),
  12700. default: true
  12701. },
  12702. {
  12703. name: "Macro++",
  12704. height: math.unit(1000, "feet")
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(6, "feet"),
  12713. weight: math.unit(150, "lb"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/kona/front.svg",
  12717. extra: 2960 / 2629,
  12718. bottom: 0.005
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Normal",
  12725. height: math.unit(11 + 8 / 12, "feet")
  12726. },
  12727. {
  12728. name: "Macro",
  12729. height: math.unit(850, "feet"),
  12730. default: true
  12731. },
  12732. {
  12733. name: "Macro+",
  12734. height: math.unit(1.5, "km"),
  12735. default: true
  12736. },
  12737. {
  12738. name: "Megamacro",
  12739. height: math.unit(80, "miles")
  12740. },
  12741. {
  12742. name: "Gigamacro",
  12743. height: math.unit(3500, "miles")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12749. {
  12750. side: {
  12751. height: math.unit(1.9, "meters"),
  12752. weight: math.unit(326, "kg"),
  12753. name: "Side",
  12754. image: {
  12755. source: "./media/characters/levi/side.svg",
  12756. extra: 1704 / 1334,
  12757. bottom: 0.02
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Normal",
  12764. height: math.unit(1.9, "meters"),
  12765. default: true
  12766. },
  12767. {
  12768. name: "Macro",
  12769. height: math.unit(20, "meters")
  12770. },
  12771. {
  12772. name: "Macro+",
  12773. height: math.unit(200, "meters")
  12774. },
  12775. {
  12776. name: "Megamacro",
  12777. height: math.unit(2, "km")
  12778. },
  12779. {
  12780. name: "Megamacro+",
  12781. height: math.unit(20, "km")
  12782. },
  12783. {
  12784. name: "Gigamacro",
  12785. height: math.unit(2500, "km")
  12786. },
  12787. {
  12788. name: "Gigamacro+",
  12789. height: math.unit(120000, "km")
  12790. },
  12791. {
  12792. name: "Teramacro",
  12793. height: math.unit(7.77e6, "km")
  12794. },
  12795. ]
  12796. ))
  12797. characterMakers.push(() => makeCharacter(
  12798. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12799. {
  12800. front: {
  12801. height: math.unit(6 + 4/12, "feet"),
  12802. weight: math.unit(190, "lb"),
  12803. name: "Front",
  12804. image: {
  12805. source: "./media/characters/bmc/front.svg",
  12806. extra: 1626/1472,
  12807. bottom: 79/1705
  12808. }
  12809. },
  12810. back: {
  12811. height: math.unit(6 + 4/12, "feet"),
  12812. weight: math.unit(190, "lb"),
  12813. name: "Back",
  12814. image: {
  12815. source: "./media/characters/bmc/back.svg",
  12816. extra: 1640/1479,
  12817. bottom: 45/1685
  12818. }
  12819. },
  12820. frontArmor: {
  12821. height: math.unit(6 + 4/12, "feet"),
  12822. weight: math.unit(190, "lb"),
  12823. name: "Front-armor",
  12824. image: {
  12825. source: "./media/characters/bmc/front-armor.svg",
  12826. extra: 1538/1468,
  12827. bottom: 79/1617
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Human-sized",
  12834. height: math.unit(6 + 4 / 12, "feet")
  12835. },
  12836. {
  12837. name: "Interactive Size",
  12838. height: math.unit(25, "feet")
  12839. },
  12840. {
  12841. name: "Small",
  12842. height: math.unit(250, "feet")
  12843. },
  12844. {
  12845. name: "Normal",
  12846. height: math.unit(1250, "feet"),
  12847. default: true
  12848. },
  12849. {
  12850. name: "Good Day",
  12851. height: math.unit(88, "miles")
  12852. },
  12853. {
  12854. name: "Largest Measured Size",
  12855. height: math.unit(105.960, "galaxies")
  12856. },
  12857. ]
  12858. ))
  12859. characterMakers.push(() => makeCharacter(
  12860. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12861. {
  12862. front: {
  12863. height: math.unit(20, "feet"),
  12864. weight: math.unit(2016, "kg"),
  12865. name: "Front",
  12866. image: {
  12867. source: "./media/characters/sven-the-kaiju/front.svg",
  12868. extra: 1277/1250,
  12869. bottom: 35/1312
  12870. }
  12871. },
  12872. mouth: {
  12873. height: math.unit(1.85, "feet"),
  12874. name: "Mouth",
  12875. image: {
  12876. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12877. }
  12878. },
  12879. },
  12880. [
  12881. {
  12882. name: "Fairy",
  12883. height: math.unit(6, "inches")
  12884. },
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(20, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Rampage",
  12892. height: math.unit(200, "feet")
  12893. },
  12894. {
  12895. name: "Archfey Forest Guardian",
  12896. height: math.unit(1, "mile")
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12902. {
  12903. front: {
  12904. height: math.unit(4, "meters"),
  12905. weight: math.unit(2, "tons"),
  12906. name: "Front",
  12907. image: {
  12908. source: "./media/characters/marik/front.svg",
  12909. extra: 1057 / 1003,
  12910. bottom: 0.08
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(4, "meters"),
  12918. default: true
  12919. },
  12920. {
  12921. name: "Macro",
  12922. height: math.unit(20, "meters")
  12923. },
  12924. {
  12925. name: "Megamacro",
  12926. height: math.unit(50, "km")
  12927. },
  12928. {
  12929. name: "Gigamacro",
  12930. height: math.unit(100, "km")
  12931. },
  12932. {
  12933. name: "Alpha Macro",
  12934. height: math.unit(7.88e7, "yottameters")
  12935. },
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12940. {
  12941. front: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(110, "lb"),
  12944. name: "Front",
  12945. image: {
  12946. source: "./media/characters/mel/front.svg",
  12947. extra: 736 / 617,
  12948. bottom: 0.017
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Pico",
  12955. height: math.unit(3, "pm")
  12956. },
  12957. {
  12958. name: "Nano",
  12959. height: math.unit(3, "nm")
  12960. },
  12961. {
  12962. name: "Micro",
  12963. height: math.unit(0.3, "mm"),
  12964. default: true
  12965. },
  12966. {
  12967. name: "Micro+",
  12968. height: math.unit(3, "mm")
  12969. },
  12970. {
  12971. name: "Normal",
  12972. height: math.unit(5 + 10.5 / 12, "feet")
  12973. },
  12974. ]
  12975. ))
  12976. characterMakers.push(() => makeCharacter(
  12977. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12978. {
  12979. kaiju: {
  12980. height: math.unit(1.75, "meters"),
  12981. weight: math.unit(55, "kg"),
  12982. name: "Kaiju",
  12983. image: {
  12984. source: "./media/characters/lykonous/kaiju.svg",
  12985. extra: 1055 / 946,
  12986. bottom: 0.135
  12987. }
  12988. },
  12989. },
  12990. [
  12991. {
  12992. name: "Normal",
  12993. height: math.unit(2.5, "meters"),
  12994. default: true
  12995. },
  12996. {
  12997. name: "Kaiju Dragon",
  12998. height: math.unit(60, "meters")
  12999. },
  13000. {
  13001. name: "Mega Kaiju",
  13002. height: math.unit(120, "km")
  13003. },
  13004. {
  13005. name: "Giga Kaiju",
  13006. height: math.unit(200, "megameters")
  13007. },
  13008. {
  13009. name: "Terra Kaiju",
  13010. height: math.unit(400, "gigameters")
  13011. },
  13012. {
  13013. name: "Kaiju Dragon God",
  13014. height: math.unit(13000, "exaparsecs")
  13015. },
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13020. {
  13021. front: {
  13022. height: math.unit(6, "feet"),
  13023. weight: math.unit(150, "lb"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/blü/front.svg",
  13027. extra: 1883 / 1564,
  13028. bottom: 0.031
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Normal",
  13035. height: math.unit(13, "feet"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Big Boi",
  13040. height: math.unit(150, "meters")
  13041. },
  13042. {
  13043. name: "Mini Stomper",
  13044. height: math.unit(300, "meters")
  13045. },
  13046. {
  13047. name: "Macro",
  13048. height: math.unit(1000, "meters")
  13049. },
  13050. {
  13051. name: "Megamacro",
  13052. height: math.unit(11000, "meters")
  13053. },
  13054. {
  13055. name: "Gigamacro",
  13056. height: math.unit(11000, "km")
  13057. },
  13058. {
  13059. name: "Teramacro",
  13060. height: math.unit(420000, "km")
  13061. },
  13062. {
  13063. name: "Examacro",
  13064. height: math.unit(120, "parsecs")
  13065. },
  13066. {
  13067. name: "God Tho",
  13068. height: math.unit(98000000000, "parsecs")
  13069. },
  13070. ]
  13071. ))
  13072. characterMakers.push(() => makeCharacter(
  13073. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13074. {
  13075. taurFront: {
  13076. height: math.unit(6, "feet"),
  13077. weight: math.unit(200, "lb"),
  13078. name: "Taur (Front)",
  13079. image: {
  13080. source: "./media/characters/scales/taur-front.svg",
  13081. extra: 1,
  13082. bottom: 0.05
  13083. }
  13084. },
  13085. taurBack: {
  13086. height: math.unit(6, "feet"),
  13087. weight: math.unit(200, "lb"),
  13088. name: "Taur (Back)",
  13089. image: {
  13090. source: "./media/characters/scales/taur-back.svg",
  13091. extra: 1,
  13092. bottom: 0.08
  13093. }
  13094. },
  13095. anthro: {
  13096. height: math.unit(6 * 7 / 12, "feet"),
  13097. weight: math.unit(100, "lb"),
  13098. name: "Anthro",
  13099. image: {
  13100. source: "./media/characters/scales/anthro.svg",
  13101. extra: 1,
  13102. bottom: 0.06
  13103. }
  13104. },
  13105. },
  13106. [
  13107. {
  13108. name: "Normal",
  13109. height: math.unit(12, "feet"),
  13110. default: true
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13116. {
  13117. front: {
  13118. height: math.unit(6, "feet"),
  13119. weight: math.unit(150, "lb"),
  13120. name: "Front",
  13121. image: {
  13122. source: "./media/characters/koragos/front.svg",
  13123. extra: 841 / 794,
  13124. bottom: 0.035
  13125. }
  13126. },
  13127. back: {
  13128. height: math.unit(6, "feet"),
  13129. weight: math.unit(150, "lb"),
  13130. name: "Back",
  13131. image: {
  13132. source: "./media/characters/koragos/back.svg",
  13133. extra: 841 / 810,
  13134. bottom: 0.022
  13135. }
  13136. },
  13137. },
  13138. [
  13139. {
  13140. name: "Normal",
  13141. height: math.unit(6 + 11 / 12, "feet"),
  13142. default: true
  13143. },
  13144. {
  13145. name: "Macro",
  13146. height: math.unit(490, "feet")
  13147. },
  13148. {
  13149. name: "Megamacro",
  13150. height: math.unit(10, "miles")
  13151. },
  13152. {
  13153. name: "Gigamacro",
  13154. height: math.unit(50, "miles")
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13160. {
  13161. front: {
  13162. height: math.unit(6, "feet"),
  13163. weight: math.unit(250, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/xylrem/front.svg",
  13167. extra: 3323 / 3050,
  13168. bottom: 0.065
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Micro",
  13175. height: math.unit(4, "feet")
  13176. },
  13177. {
  13178. name: "Normal",
  13179. height: math.unit(16, "feet"),
  13180. default: true
  13181. },
  13182. {
  13183. name: "Macro",
  13184. height: math.unit(2720, "feet")
  13185. },
  13186. {
  13187. name: "Megamacro",
  13188. height: math.unit(25000, "miles")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(8, "feet"),
  13197. weight: math.unit(250, "kg"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/ikideru/front.svg",
  13201. extra: 930 / 870,
  13202. bottom: 0.087
  13203. }
  13204. },
  13205. back: {
  13206. height: math.unit(8, "feet"),
  13207. weight: math.unit(250, "kg"),
  13208. name: "Back",
  13209. image: {
  13210. source: "./media/characters/ikideru/back.svg",
  13211. extra: 919 / 852,
  13212. bottom: 0.055
  13213. }
  13214. },
  13215. },
  13216. [
  13217. {
  13218. name: "Rare",
  13219. height: math.unit(8, "feet"),
  13220. default: true
  13221. },
  13222. {
  13223. name: "Playful Loom",
  13224. height: math.unit(80, "feet")
  13225. },
  13226. {
  13227. name: "City Leaner",
  13228. height: math.unit(230, "feet")
  13229. },
  13230. {
  13231. name: "Megamacro",
  13232. height: math.unit(2500, "feet")
  13233. },
  13234. {
  13235. name: "Gigamacro",
  13236. height: math.unit(26400, "feet")
  13237. },
  13238. {
  13239. name: "Tectonic Shifter",
  13240. height: math.unit(1.7, "megameters")
  13241. },
  13242. {
  13243. name: "Planet Carer",
  13244. height: math.unit(21, "megameters")
  13245. },
  13246. {
  13247. name: "God",
  13248. height: math.unit(11157.22, "parsecs")
  13249. },
  13250. ]
  13251. ))
  13252. characterMakers.push(() => makeCharacter(
  13253. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13254. {
  13255. front: {
  13256. height: math.unit(6, "feet"),
  13257. weight: math.unit(120, "lb"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/neo/front.svg"
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Micro",
  13267. height: math.unit(2, "inches"),
  13268. default: true
  13269. },
  13270. {
  13271. name: "Human Size",
  13272. height: math.unit(5 + 8 / 12, "feet")
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13278. {
  13279. front: {
  13280. height: math.unit(13 + 10 / 12, "feet"),
  13281. weight: math.unit(5320, "lb"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/chauncey-chantz/front.svg",
  13285. extra: 1587 / 1435,
  13286. bottom: 0.02
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Normal",
  13293. height: math.unit(13 + 10 / 12, "feet"),
  13294. default: true
  13295. },
  13296. {
  13297. name: "Macro",
  13298. height: math.unit(45, "feet")
  13299. },
  13300. {
  13301. name: "Megamacro",
  13302. height: math.unit(250, "miles")
  13303. },
  13304. {
  13305. name: "Planetary",
  13306. height: math.unit(10000, "miles")
  13307. },
  13308. {
  13309. name: "Galactic",
  13310. height: math.unit(40000, "parsecs")
  13311. },
  13312. {
  13313. name: "Universal",
  13314. height: math.unit(1, "yottameter")
  13315. },
  13316. ]
  13317. ))
  13318. characterMakers.push(() => makeCharacter(
  13319. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13320. {
  13321. front: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(150, "lb"),
  13324. name: "Front",
  13325. image: {
  13326. source: "./media/characters/epifox/front.svg",
  13327. extra: 1,
  13328. bottom: 0.075
  13329. }
  13330. },
  13331. },
  13332. [
  13333. {
  13334. name: "Micro",
  13335. height: math.unit(6, "inches")
  13336. },
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(12, "feet"),
  13340. default: true
  13341. },
  13342. {
  13343. name: "Macro",
  13344. height: math.unit(3810, "feet")
  13345. },
  13346. {
  13347. name: "Megamacro",
  13348. height: math.unit(500, "miles")
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13354. {
  13355. front: {
  13356. height: math.unit(1.8796, "m"),
  13357. weight: math.unit(230, "lb"),
  13358. name: "Front",
  13359. image: {
  13360. source: "./media/characters/colin-t/front.svg",
  13361. extra: 1272 / 1193,
  13362. bottom: 0.07
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Micro",
  13369. height: math.unit(0.571, "meters")
  13370. },
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(1.8796, "meters"),
  13374. default: true
  13375. },
  13376. {
  13377. name: "Tall",
  13378. height: math.unit(4, "meters")
  13379. },
  13380. {
  13381. name: "Macro",
  13382. height: math.unit(67.241, "meters")
  13383. },
  13384. {
  13385. name: "Megamacro",
  13386. height: math.unit(371.856, "meters")
  13387. },
  13388. {
  13389. name: "Planetary",
  13390. height: math.unit(12631.5689, "km")
  13391. },
  13392. ]
  13393. ))
  13394. characterMakers.push(() => makeCharacter(
  13395. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13396. {
  13397. front: {
  13398. height: math.unit(1.85, "meters"),
  13399. weight: math.unit(80, "kg"),
  13400. name: "Front",
  13401. image: {
  13402. source: "./media/characters/matvei/front.svg",
  13403. extra: 456/447,
  13404. bottom: 8/464
  13405. }
  13406. },
  13407. back: {
  13408. height: math.unit(1.85, "meters"),
  13409. weight: math.unit(80, "kg"),
  13410. name: "Back",
  13411. image: {
  13412. source: "./media/characters/matvei/back.svg",
  13413. extra: 434/427,
  13414. bottom: 11/445
  13415. }
  13416. },
  13417. },
  13418. [
  13419. {
  13420. name: "Normal",
  13421. height: math.unit(1.85, "meters"),
  13422. default: true
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(5 + 9 / 12, "feet"),
  13431. weight: math.unit(70, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/quincy/front.svg",
  13435. extra: 3041 / 2751
  13436. }
  13437. },
  13438. back: {
  13439. height: math.unit(5 + 9 / 12, "feet"),
  13440. weight: math.unit(70, "lb"),
  13441. name: "Back",
  13442. image: {
  13443. source: "./media/characters/quincy/back.svg",
  13444. extra: 3041 / 2751
  13445. }
  13446. },
  13447. flying: {
  13448. height: math.unit(5 + 4 / 12, "feet"),
  13449. weight: math.unit(70, "lb"),
  13450. name: "Flying",
  13451. image: {
  13452. source: "./media/characters/quincy/flying.svg",
  13453. extra: 1044 / 930
  13454. }
  13455. },
  13456. },
  13457. [
  13458. {
  13459. name: "Micro",
  13460. height: math.unit(3, "cm")
  13461. },
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(5 + 9 / 12, "feet")
  13465. },
  13466. {
  13467. name: "Macro",
  13468. height: math.unit(200, "meters"),
  13469. default: true
  13470. },
  13471. {
  13472. name: "Megamacro",
  13473. height: math.unit(1000, "meters")
  13474. },
  13475. ]
  13476. ))
  13477. characterMakers.push(() => makeCharacter(
  13478. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13479. {
  13480. front: {
  13481. height: math.unit(3 + 11/12, "feet"),
  13482. weight: math.unit(50, "lb"),
  13483. name: "Front",
  13484. image: {
  13485. source: "./media/characters/vanrel/front.svg",
  13486. extra: 1104/949,
  13487. bottom: 52/1156
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(3 + 11/12, "feet"),
  13492. weight: math.unit(50, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/vanrel/back.svg",
  13496. extra: 1119/976,
  13497. bottom: 37/1156
  13498. }
  13499. },
  13500. tome: {
  13501. height: math.unit(1.35, "feet"),
  13502. weight: math.unit(10, "lb"),
  13503. name: "Vanrel's Tome",
  13504. rename: true,
  13505. image: {
  13506. source: "./media/characters/vanrel/tome.svg"
  13507. }
  13508. },
  13509. beans: {
  13510. height: math.unit(0.89, "feet"),
  13511. name: "Beans",
  13512. image: {
  13513. source: "./media/characters/vanrel/beans.svg"
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Normal",
  13520. height: math.unit(3 + 11/12, "feet"),
  13521. default: true
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(7 + 5 / 12, "feet"),
  13530. name: "Front",
  13531. image: {
  13532. source: "./media/characters/kuiper-vanrel/front.svg",
  13533. extra: 1219/1169,
  13534. bottom: 69/1288
  13535. }
  13536. },
  13537. back: {
  13538. height: math.unit(7 + 5 / 12, "feet"),
  13539. name: "Back",
  13540. image: {
  13541. source: "./media/characters/kuiper-vanrel/back.svg",
  13542. extra: 1236/1193,
  13543. bottom: 27/1263
  13544. }
  13545. },
  13546. foot: {
  13547. height: math.unit(0.55, "meters"),
  13548. name: "Foot",
  13549. image: {
  13550. source: "./media/characters/kuiper-vanrel/foot.svg",
  13551. }
  13552. },
  13553. battle: {
  13554. height: math.unit(6.824, "feet"),
  13555. name: "Battle",
  13556. image: {
  13557. source: "./media/characters/kuiper-vanrel/battle.svg",
  13558. extra: 1466 / 1327,
  13559. bottom: 29 / 1492.5
  13560. }
  13561. },
  13562. meerkui: {
  13563. height: math.unit(18, "inches"),
  13564. name: "Meerkui",
  13565. image: {
  13566. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13567. extra: 1354/1289,
  13568. bottom: 69/1423
  13569. }
  13570. },
  13571. },
  13572. [
  13573. {
  13574. name: "Normal",
  13575. height: math.unit(7 + 5 / 12, "feet"),
  13576. default: true
  13577. },
  13578. ]
  13579. ))
  13580. characterMakers.push(() => makeCharacter(
  13581. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13582. {
  13583. front: {
  13584. height: math.unit(8 + 5 / 12, "feet"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/keset-vanrel/front.svg",
  13588. extra: 1231/1148,
  13589. bottom: 82/1313
  13590. }
  13591. },
  13592. back: {
  13593. height: math.unit(8 + 5 / 12, "feet"),
  13594. name: "Back",
  13595. image: {
  13596. source: "./media/characters/keset-vanrel/back.svg",
  13597. extra: 1240/1174,
  13598. bottom: 33/1273
  13599. }
  13600. },
  13601. hand: {
  13602. height: math.unit(0.6, "meters"),
  13603. name: "Hand",
  13604. image: {
  13605. source: "./media/characters/keset-vanrel/hand.svg"
  13606. }
  13607. },
  13608. foot: {
  13609. height: math.unit(0.94978, "meters"),
  13610. name: "Foot",
  13611. image: {
  13612. source: "./media/characters/keset-vanrel/foot.svg"
  13613. }
  13614. },
  13615. battle: {
  13616. height: math.unit(7.408, "feet"),
  13617. name: "Battle",
  13618. image: {
  13619. source: "./media/characters/keset-vanrel/battle.svg",
  13620. extra: 1890 / 1386,
  13621. bottom: 73.28 / 1970
  13622. }
  13623. },
  13624. },
  13625. [
  13626. {
  13627. name: "Normal",
  13628. height: math.unit(8 + 5 / 12, "feet"),
  13629. default: true
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(6, "feet"),
  13638. weight: math.unit(150, "lb"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/neos/front.svg",
  13642. extra: 1696 / 992,
  13643. bottom: 0.14
  13644. }
  13645. },
  13646. },
  13647. [
  13648. {
  13649. name: "Normal",
  13650. height: math.unit(54, "cm"),
  13651. default: true
  13652. },
  13653. {
  13654. name: "Macro",
  13655. height: math.unit(100, "m")
  13656. },
  13657. {
  13658. name: "Megamacro",
  13659. height: math.unit(10, "km")
  13660. },
  13661. {
  13662. name: "Megamacro+",
  13663. height: math.unit(100, "km")
  13664. },
  13665. {
  13666. name: "Gigamacro",
  13667. height: math.unit(100, "Mm")
  13668. },
  13669. {
  13670. name: "Teramacro",
  13671. height: math.unit(100, "Gm")
  13672. },
  13673. {
  13674. name: "Examacro",
  13675. height: math.unit(100, "Em")
  13676. },
  13677. {
  13678. name: "Godly",
  13679. height: math.unit(10000, "Ym")
  13680. },
  13681. {
  13682. name: "Beyond Godly",
  13683. height: math.unit(25, "multiverses")
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13689. {
  13690. feminine: {
  13691. height: math.unit(5, "feet"),
  13692. weight: math.unit(100, "lb"),
  13693. name: "Feminine",
  13694. image: {
  13695. source: "./media/characters/sammy-mouse/feminine.svg",
  13696. extra: 2526 / 2425,
  13697. bottom: 0.123
  13698. }
  13699. },
  13700. masculine: {
  13701. height: math.unit(5, "feet"),
  13702. weight: math.unit(100, "lb"),
  13703. name: "Masculine",
  13704. image: {
  13705. source: "./media/characters/sammy-mouse/masculine.svg",
  13706. extra: 2526 / 2425,
  13707. bottom: 0.123
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "Micro",
  13714. height: math.unit(5, "inches")
  13715. },
  13716. {
  13717. name: "Normal",
  13718. height: math.unit(5, "feet"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Macro",
  13723. height: math.unit(60, "feet")
  13724. },
  13725. ]
  13726. ))
  13727. characterMakers.push(() => makeCharacter(
  13728. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13729. {
  13730. front: {
  13731. height: math.unit(4, "feet"),
  13732. weight: math.unit(50, "lb"),
  13733. name: "Front",
  13734. image: {
  13735. source: "./media/characters/kole/front.svg",
  13736. extra: 1423 / 1303,
  13737. bottom: 0.025
  13738. }
  13739. },
  13740. back: {
  13741. height: math.unit(4, "feet"),
  13742. weight: math.unit(50, "lb"),
  13743. name: "Back",
  13744. image: {
  13745. source: "./media/characters/kole/back.svg",
  13746. extra: 1426 / 1280,
  13747. bottom: 0.02
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Normal",
  13754. height: math.unit(4, "feet"),
  13755. default: true
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13761. {
  13762. front: {
  13763. height: math.unit(2.5, "feet"),
  13764. weight: math.unit(32, "lb"),
  13765. name: "Front",
  13766. image: {
  13767. source: "./media/characters/rufran/front.svg",
  13768. extra: 1313/885,
  13769. bottom: 94/1407
  13770. }
  13771. },
  13772. side: {
  13773. height: math.unit(2.5, "feet"),
  13774. weight: math.unit(32, "lb"),
  13775. name: "Side",
  13776. image: {
  13777. source: "./media/characters/rufran/side.svg",
  13778. extra: 1109/852,
  13779. bottom: 118/1227
  13780. }
  13781. },
  13782. back: {
  13783. height: math.unit(2.5, "feet"),
  13784. weight: math.unit(32, "lb"),
  13785. name: "Back",
  13786. image: {
  13787. source: "./media/characters/rufran/back.svg",
  13788. extra: 1280/878,
  13789. bottom: 131/1411
  13790. }
  13791. },
  13792. mouth: {
  13793. height: math.unit(1.13, "feet"),
  13794. name: "Mouth",
  13795. image: {
  13796. source: "./media/characters/rufran/mouth.svg"
  13797. }
  13798. },
  13799. foot: {
  13800. height: math.unit(1.33, "feet"),
  13801. name: "Foot",
  13802. image: {
  13803. source: "./media/characters/rufran/foot.svg"
  13804. }
  13805. },
  13806. koboldFront: {
  13807. height: math.unit(2 + 6 / 12, "feet"),
  13808. weight: math.unit(20, "lb"),
  13809. name: "Front (Kobold)",
  13810. image: {
  13811. source: "./media/characters/rufran/kobold-front.svg",
  13812. extra: 2041 / 1839,
  13813. bottom: 0.055
  13814. }
  13815. },
  13816. koboldBack: {
  13817. height: math.unit(2 + 6 / 12, "feet"),
  13818. weight: math.unit(20, "lb"),
  13819. name: "Back (Kobold)",
  13820. image: {
  13821. source: "./media/characters/rufran/kobold-back.svg",
  13822. extra: 2054 / 1839,
  13823. bottom: 0.01
  13824. }
  13825. },
  13826. koboldHand: {
  13827. height: math.unit(0.2166, "meters"),
  13828. name: "Hand (Kobold)",
  13829. image: {
  13830. source: "./media/characters/rufran/kobold-hand.svg"
  13831. }
  13832. },
  13833. koboldFoot: {
  13834. height: math.unit(0.185, "meters"),
  13835. name: "Foot (Kobold)",
  13836. image: {
  13837. source: "./media/characters/rufran/kobold-foot.svg"
  13838. }
  13839. },
  13840. },
  13841. [
  13842. {
  13843. name: "Micro",
  13844. height: math.unit(1, "inch")
  13845. },
  13846. {
  13847. name: "Normal",
  13848. height: math.unit(2 + 6 / 12, "feet"),
  13849. default: true
  13850. },
  13851. {
  13852. name: "Big",
  13853. height: math.unit(60, "feet")
  13854. },
  13855. {
  13856. name: "Macro",
  13857. height: math.unit(325, "feet")
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13863. {
  13864. front: {
  13865. height: math.unit(0.3, "meters"),
  13866. weight: math.unit(3.5, "kg"),
  13867. name: "Front",
  13868. image: {
  13869. source: "./media/characters/chip/front.svg",
  13870. extra: 748 / 674
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Micro",
  13877. height: math.unit(1, "inch"),
  13878. default: true
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13884. {
  13885. side: {
  13886. height: math.unit(2.3, "meters"),
  13887. weight: math.unit(3500, "lb"),
  13888. name: "Side",
  13889. image: {
  13890. source: "./media/characters/torvid/side.svg",
  13891. extra: 1972 / 722,
  13892. bottom: 0.035
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Normal",
  13899. height: math.unit(2.3, "meters"),
  13900. default: true
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13906. {
  13907. front: {
  13908. height: math.unit(2, "meters"),
  13909. weight: math.unit(150.5, "kg"),
  13910. name: "Front",
  13911. image: {
  13912. source: "./media/characters/susan/front.svg",
  13913. extra: 693 / 635,
  13914. bottom: 0.05
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Megamacro",
  13921. height: math.unit(505, "miles"),
  13922. default: true
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(150, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/raindrops/front.svg",
  13935. extra: 2655 / 2461,
  13936. bottom: 49 / 2705
  13937. }
  13938. },
  13939. back: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(150, "lb"),
  13942. name: "Back",
  13943. image: {
  13944. source: "./media/characters/raindrops/back.svg",
  13945. extra: 2574 / 2400,
  13946. bottom: 65 / 2634
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Micro",
  13953. height: math.unit(6, "inches")
  13954. },
  13955. {
  13956. name: "Normal",
  13957. height: math.unit(6 + 2 / 12, "feet")
  13958. },
  13959. {
  13960. name: "Macro",
  13961. height: math.unit(131, "feet"),
  13962. default: true
  13963. },
  13964. {
  13965. name: "Megamacro",
  13966. height: math.unit(15, "miles")
  13967. },
  13968. {
  13969. name: "Gigamacro",
  13970. height: math.unit(4000, "miles")
  13971. },
  13972. {
  13973. name: "Teramacro",
  13974. height: math.unit(315000, "miles")
  13975. },
  13976. ]
  13977. ))
  13978. characterMakers.push(() => makeCharacter(
  13979. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13980. {
  13981. front: {
  13982. height: math.unit(2.794, "meters"),
  13983. weight: math.unit(325, "kg"),
  13984. name: "Front",
  13985. image: {
  13986. source: "./media/characters/tezwa/front.svg",
  13987. extra: 2083 / 1906,
  13988. bottom: 0.031
  13989. }
  13990. },
  13991. foot: {
  13992. height: math.unit(0.687, "meters"),
  13993. name: "Foot",
  13994. image: {
  13995. source: "./media/characters/tezwa/foot.svg"
  13996. }
  13997. },
  13998. },
  13999. [
  14000. {
  14001. name: "Normal",
  14002. height: math.unit(9 + 2 / 12, "feet"),
  14003. default: true
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(58, "feet"),
  14012. weight: math.unit(89000, "lb"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/typhus/front.svg",
  14016. extra: 816 / 800,
  14017. bottom: 0.065
  14018. }
  14019. },
  14020. },
  14021. [
  14022. {
  14023. name: "Macro",
  14024. height: math.unit(58, "feet"),
  14025. default: true
  14026. },
  14027. ]
  14028. ))
  14029. characterMakers.push(() => makeCharacter(
  14030. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14031. {
  14032. front: {
  14033. height: math.unit(12, "feet"),
  14034. weight: math.unit(6, "tonnes"),
  14035. name: "Front",
  14036. image: {
  14037. source: "./media/characters/lyra-von-wulf/front.svg",
  14038. extra: 1,
  14039. bottom: 0.10
  14040. }
  14041. },
  14042. frontMecha: {
  14043. height: math.unit(12, "feet"),
  14044. weight: math.unit(12, "tonnes"),
  14045. name: "Front (Mecha)",
  14046. image: {
  14047. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14048. extra: 1,
  14049. bottom: 0.042
  14050. }
  14051. },
  14052. maw: {
  14053. height: math.unit(2.2, "feet"),
  14054. name: "Maw",
  14055. image: {
  14056. source: "./media/characters/lyra-von-wulf/maw.svg"
  14057. }
  14058. },
  14059. },
  14060. [
  14061. {
  14062. name: "Normal",
  14063. height: math.unit(12, "feet"),
  14064. default: true
  14065. },
  14066. {
  14067. name: "Classic",
  14068. height: math.unit(50, "feet")
  14069. },
  14070. {
  14071. name: "Macro",
  14072. height: math.unit(500, "feet")
  14073. },
  14074. {
  14075. name: "Megamacro",
  14076. height: math.unit(1, "mile")
  14077. },
  14078. {
  14079. name: "Gigamacro",
  14080. height: math.unit(400, "miles")
  14081. },
  14082. {
  14083. name: "Teramacro",
  14084. height: math.unit(22000, "miles")
  14085. },
  14086. {
  14087. name: "Solarmacro",
  14088. height: math.unit(8600000, "miles")
  14089. },
  14090. {
  14091. name: "Galactic",
  14092. height: math.unit(1057000, "lightyears")
  14093. },
  14094. ]
  14095. ))
  14096. characterMakers.push(() => makeCharacter(
  14097. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14098. {
  14099. front: {
  14100. height: math.unit(6 + 10 / 12, "feet"),
  14101. weight: math.unit(150, "lb"),
  14102. name: "Front",
  14103. image: {
  14104. source: "./media/characters/dixon/front.svg",
  14105. extra: 3361 / 3209,
  14106. bottom: 0.01
  14107. }
  14108. },
  14109. },
  14110. [
  14111. {
  14112. name: "Normal",
  14113. height: math.unit(6 + 10 / 12, "feet"),
  14114. default: true
  14115. },
  14116. {
  14117. name: "Big",
  14118. height: math.unit(12, "meters")
  14119. },
  14120. {
  14121. name: "Macro",
  14122. height: math.unit(500, "meters")
  14123. },
  14124. {
  14125. name: "Megamacro",
  14126. height: math.unit(2, "km")
  14127. },
  14128. ]
  14129. ))
  14130. characterMakers.push(() => makeCharacter(
  14131. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14132. {
  14133. front: {
  14134. height: math.unit(185, "cm"),
  14135. weight: math.unit(68, "kg"),
  14136. name: "Front",
  14137. image: {
  14138. source: "./media/characters/kauko/front.svg",
  14139. extra: 1455 / 1421,
  14140. bottom: 0.03
  14141. }
  14142. },
  14143. back: {
  14144. height: math.unit(185, "cm"),
  14145. weight: math.unit(68, "kg"),
  14146. name: "Back",
  14147. image: {
  14148. source: "./media/characters/kauko/back.svg",
  14149. extra: 1455 / 1421,
  14150. bottom: 0.004
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Normal",
  14157. height: math.unit(185, "cm"),
  14158. default: true
  14159. },
  14160. ]
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14164. {
  14165. frontSfw: {
  14166. height: math.unit(5, "meters"),
  14167. weight: math.unit(4250, "lb"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/varg/front-sfw.svg",
  14171. extra: 1103/1010,
  14172. bottom: 50/1153
  14173. },
  14174. form: "anthro",
  14175. default: true
  14176. },
  14177. backSfw: {
  14178. height: math.unit(5, "meters"),
  14179. weight: math.unit(4250, "lb"),
  14180. name: "Back",
  14181. image: {
  14182. source: "./media/characters/varg/back-sfw.svg",
  14183. extra: 1038/1022,
  14184. bottom: 36/1074
  14185. },
  14186. form: "anthro"
  14187. },
  14188. frontNsfw: {
  14189. height: math.unit(5, "meters"),
  14190. weight: math.unit(4250, "lb"),
  14191. name: "Front (NSFW)",
  14192. image: {
  14193. source: "./media/characters/varg/front-nsfw.svg",
  14194. extra: 1103/1010,
  14195. bottom: 50/1153
  14196. },
  14197. form: "anthro"
  14198. },
  14199. sheath: {
  14200. height: math.unit(3.8, "feet"),
  14201. weight: math.unit(90, "kilograms"),
  14202. name: "Sheath",
  14203. image: {
  14204. source: "./media/characters/varg/sheath.svg"
  14205. },
  14206. form: "anthro"
  14207. },
  14208. dick: {
  14209. height: math.unit(4.6, "feet"),
  14210. weight: math.unit(451, "kilograms"),
  14211. name: "Dick",
  14212. image: {
  14213. source: "./media/characters/varg/dick.svg"
  14214. },
  14215. form: "anthro"
  14216. },
  14217. feralSfw: {
  14218. height: math.unit(5, "meters"),
  14219. weight: math.unit(100000, "lb"),
  14220. name: "Side",
  14221. image: {
  14222. source: "./media/characters/varg/feral-sfw.svg",
  14223. extra: 1065/511,
  14224. bottom: 211/1276
  14225. },
  14226. form: "feral",
  14227. default: true
  14228. },
  14229. feralNsfw: {
  14230. height: math.unit(5, "meters"),
  14231. weight: math.unit(100000, "lb"),
  14232. name: "Side (NSFW)",
  14233. image: {
  14234. source: "./media/characters/varg/feral-nsfw.svg",
  14235. extra: 1065/511,
  14236. bottom: 211/1276
  14237. },
  14238. form: "feral",
  14239. },
  14240. feralSheath: {
  14241. height: math.unit(9.8, "feet"),
  14242. weight: math.unit(2000, "kilograms"),
  14243. name: "Sheath",
  14244. image: {
  14245. source: "./media/characters/varg/sheath.svg"
  14246. },
  14247. form: "feral"
  14248. },
  14249. feralDick: {
  14250. height: math.unit(13.11, "feet"),
  14251. weight: math.unit(10440, "kilograms"),
  14252. name: "Dick",
  14253. image: {
  14254. source: "./media/characters/varg/dick.svg"
  14255. },
  14256. form: "feral"
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(5, "meters"),
  14263. form: "anthro"
  14264. },
  14265. {
  14266. name: "Macro",
  14267. height: math.unit(200, "meters"),
  14268. form: "anthro"
  14269. },
  14270. {
  14271. name: "Megamacro",
  14272. height: math.unit(20, "kilometers"),
  14273. form: "anthro"
  14274. },
  14275. {
  14276. name: "True Size",
  14277. height: math.unit(211, "km"),
  14278. form: "anthro",
  14279. default: true
  14280. },
  14281. {
  14282. name: "Gigamacro",
  14283. height: math.unit(1000, "km"),
  14284. form: "anthro"
  14285. },
  14286. {
  14287. name: "Gigamacro+",
  14288. height: math.unit(8000, "km"),
  14289. form: "anthro"
  14290. },
  14291. {
  14292. name: "Teramacro",
  14293. height: math.unit(1000000, "km"),
  14294. form: "anthro"
  14295. },
  14296. {
  14297. name: "Normal",
  14298. height: math.unit(5, "meters"),
  14299. form: "feral"
  14300. },
  14301. {
  14302. name: "Macro",
  14303. height: math.unit(200, "meters"),
  14304. form: "feral"
  14305. },
  14306. {
  14307. name: "Megamacro",
  14308. height: math.unit(20, "kilometers"),
  14309. form: "feral"
  14310. },
  14311. {
  14312. name: "True Size",
  14313. height: math.unit(211, "km"),
  14314. form: "feral",
  14315. default: true
  14316. },
  14317. {
  14318. name: "Gigamacro",
  14319. height: math.unit(1000, "km"),
  14320. form: "feral"
  14321. },
  14322. {
  14323. name: "Gigamacro+",
  14324. height: math.unit(8000, "km"),
  14325. form: "feral"
  14326. },
  14327. {
  14328. name: "Teramacro",
  14329. height: math.unit(1000000, "km"),
  14330. form: "feral"
  14331. },
  14332. ],
  14333. {
  14334. "anthro": {
  14335. name: "Anthro",
  14336. default: true
  14337. },
  14338. "feral": {
  14339. name: "Feral",
  14340. },
  14341. }
  14342. ))
  14343. characterMakers.push(() => makeCharacter(
  14344. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14345. {
  14346. front: {
  14347. height: math.unit(7 + 7 / 12, "feet"),
  14348. weight: math.unit(267, "lb"),
  14349. name: "Front",
  14350. image: {
  14351. source: "./media/characters/dayza/front.svg",
  14352. extra: 1262 / 1200,
  14353. bottom: 0.035
  14354. }
  14355. },
  14356. side: {
  14357. height: math.unit(7 + 7 / 12, "feet"),
  14358. weight: math.unit(267, "lb"),
  14359. name: "Side",
  14360. image: {
  14361. source: "./media/characters/dayza/side.svg",
  14362. extra: 1295 / 1245,
  14363. bottom: 0.05
  14364. }
  14365. },
  14366. back: {
  14367. height: math.unit(7 + 7 / 12, "feet"),
  14368. weight: math.unit(267, "lb"),
  14369. name: "Back",
  14370. image: {
  14371. source: "./media/characters/dayza/back.svg",
  14372. extra: 1241 / 1170
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Normal",
  14379. height: math.unit(7 + 7 / 12, "feet"),
  14380. default: true
  14381. },
  14382. {
  14383. name: "Macro",
  14384. height: math.unit(155, "feet")
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14390. {
  14391. front: {
  14392. height: math.unit(6 + 5 / 12, "feet"),
  14393. weight: math.unit(160, "lb"),
  14394. name: "Front",
  14395. image: {
  14396. source: "./media/characters/xanthos/front.svg",
  14397. extra: 1,
  14398. bottom: 0.04
  14399. }
  14400. },
  14401. back: {
  14402. height: math.unit(6 + 5 / 12, "feet"),
  14403. weight: math.unit(160, "lb"),
  14404. name: "Back",
  14405. image: {
  14406. source: "./media/characters/xanthos/back.svg",
  14407. extra: 1,
  14408. bottom: 0.03
  14409. }
  14410. },
  14411. hand: {
  14412. height: math.unit(0.928, "feet"),
  14413. name: "Hand",
  14414. image: {
  14415. source: "./media/characters/xanthos/hand.svg"
  14416. }
  14417. },
  14418. foot: {
  14419. height: math.unit(1.286, "feet"),
  14420. name: "Foot",
  14421. image: {
  14422. source: "./media/characters/xanthos/foot.svg"
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(6 + 5 / 12, "feet"),
  14430. default: true
  14431. },
  14432. {
  14433. name: "Normal+",
  14434. height: math.unit(6, "meters")
  14435. },
  14436. {
  14437. name: "Macro",
  14438. height: math.unit(40, "feet")
  14439. },
  14440. {
  14441. name: "Macro+",
  14442. height: math.unit(200, "meters")
  14443. },
  14444. {
  14445. name: "Megamacro",
  14446. height: math.unit(20, "km")
  14447. },
  14448. {
  14449. name: "Megamacro+",
  14450. height: math.unit(100, "km")
  14451. },
  14452. {
  14453. name: "Gigamacro",
  14454. height: math.unit(200, "megameters")
  14455. },
  14456. {
  14457. name: "Gigamacro+",
  14458. height: math.unit(1.5, "gigameters")
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14464. {
  14465. front: {
  14466. height: math.unit(6 + 3 / 12, "feet"),
  14467. weight: math.unit(215, "lb"),
  14468. name: "Front",
  14469. image: {
  14470. source: "./media/characters/grynn/front.svg",
  14471. extra: 4627 / 4209,
  14472. bottom: 0.047
  14473. }
  14474. },
  14475. },
  14476. [
  14477. {
  14478. name: "Micro",
  14479. height: math.unit(6, "inches")
  14480. },
  14481. {
  14482. name: "Normal",
  14483. height: math.unit(6 + 3 / 12, "feet"),
  14484. default: true
  14485. },
  14486. {
  14487. name: "Big",
  14488. height: math.unit(104, "feet")
  14489. },
  14490. {
  14491. name: "Macro",
  14492. height: math.unit(944, "feet")
  14493. },
  14494. {
  14495. name: "Macro+",
  14496. height: math.unit(9480, "feet")
  14497. },
  14498. {
  14499. name: "Megamacro",
  14500. height: math.unit(78752, "feet")
  14501. },
  14502. {
  14503. name: "Megamacro+",
  14504. height: math.unit(630128, "feet")
  14505. },
  14506. {
  14507. name: "Megamacro++",
  14508. height: math.unit(3150695, "feet")
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(7 + 5 / 12, "feet"),
  14517. weight: math.unit(450, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/mocha-aura/front.svg",
  14521. extra: 1907 / 1817,
  14522. bottom: 0.04
  14523. }
  14524. },
  14525. back: {
  14526. height: math.unit(7 + 5 / 12, "feet"),
  14527. weight: math.unit(450, "lb"),
  14528. name: "Back",
  14529. image: {
  14530. source: "./media/characters/mocha-aura/back.svg",
  14531. extra: 1900 / 1825,
  14532. bottom: 0.045
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Nano",
  14539. height: math.unit(1, "nm")
  14540. },
  14541. {
  14542. name: "Megamicro",
  14543. height: math.unit(1, "mm")
  14544. },
  14545. {
  14546. name: "Micro",
  14547. height: math.unit(3, "inches")
  14548. },
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(7 + 5 / 12, "feet"),
  14552. default: true
  14553. },
  14554. {
  14555. name: "Macro",
  14556. height: math.unit(30, "feet")
  14557. },
  14558. {
  14559. name: "Megamacro",
  14560. height: math.unit(3500, "feet")
  14561. },
  14562. {
  14563. name: "Teramacro",
  14564. height: math.unit(500000, "miles")
  14565. },
  14566. {
  14567. name: "Petamacro",
  14568. height: math.unit(50000000000000000, "parsecs")
  14569. },
  14570. ]
  14571. ))
  14572. characterMakers.push(() => makeCharacter(
  14573. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14574. {
  14575. front: {
  14576. height: math.unit(6, "feet"),
  14577. weight: math.unit(150, "lb"),
  14578. name: "Front",
  14579. image: {
  14580. source: "./media/characters/ilisha-devya/front.svg",
  14581. extra: 1053/1049,
  14582. bottom: 270/1323
  14583. }
  14584. },
  14585. back: {
  14586. height: math.unit(6, "feet"),
  14587. weight: math.unit(150, "lb"),
  14588. name: "Back",
  14589. image: {
  14590. source: "./media/characters/ilisha-devya/back.svg",
  14591. extra: 1131/1128,
  14592. bottom: 39/1170
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Macro",
  14599. height: math.unit(500, "feet"),
  14600. default: true
  14601. },
  14602. {
  14603. name: "Megamacro",
  14604. height: math.unit(10, "miles")
  14605. },
  14606. {
  14607. name: "Gigamacro",
  14608. height: math.unit(100000, "miles")
  14609. },
  14610. {
  14611. name: "Examacro",
  14612. height: math.unit(1e9, "lightyears")
  14613. },
  14614. {
  14615. name: "Omniversal",
  14616. height: math.unit(1e33, "lightyears")
  14617. },
  14618. {
  14619. name: "Beyond Infinite",
  14620. height: math.unit(1e100, "lightyears")
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14626. {
  14627. Side: {
  14628. height: math.unit(6, "feet"),
  14629. weight: math.unit(150, "lb"),
  14630. name: "Side",
  14631. image: {
  14632. source: "./media/characters/mira/side.svg",
  14633. extra: 900 / 799,
  14634. bottom: 0.02
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Human Size",
  14641. height: math.unit(6, "feet")
  14642. },
  14643. {
  14644. name: "Macro",
  14645. height: math.unit(100, "feet"),
  14646. default: true
  14647. },
  14648. {
  14649. name: "Megamacro",
  14650. height: math.unit(10, "miles")
  14651. },
  14652. {
  14653. name: "Gigamacro",
  14654. height: math.unit(25000, "miles")
  14655. },
  14656. {
  14657. name: "Teramacro",
  14658. height: math.unit(300, "AU")
  14659. },
  14660. {
  14661. name: "Full Size",
  14662. height: math.unit(4.5e10, "lightyears")
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(150, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/holly/front.svg",
  14675. extra: 639 / 606
  14676. }
  14677. },
  14678. back: {
  14679. height: math.unit(6, "feet"),
  14680. weight: math.unit(150, "lb"),
  14681. name: "Back",
  14682. image: {
  14683. source: "./media/characters/holly/back.svg",
  14684. extra: 623 / 598
  14685. }
  14686. },
  14687. frontWorking: {
  14688. height: math.unit(6, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Front (Working)",
  14691. image: {
  14692. source: "./media/characters/holly/front-working.svg",
  14693. extra: 607 / 577,
  14694. bottom: 0.048
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Normal",
  14701. height: math.unit(12 + 3 / 12, "feet"),
  14702. default: true
  14703. },
  14704. ]
  14705. ))
  14706. characterMakers.push(() => makeCharacter(
  14707. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14708. {
  14709. front: {
  14710. height: math.unit(6, "feet"),
  14711. weight: math.unit(150, "lb"),
  14712. name: "Front",
  14713. image: {
  14714. source: "./media/characters/porter/front.svg",
  14715. extra: 1,
  14716. bottom: 0.01
  14717. }
  14718. },
  14719. frontRobes: {
  14720. height: math.unit(6, "feet"),
  14721. weight: math.unit(150, "lb"),
  14722. name: "Front (Robes)",
  14723. image: {
  14724. source: "./media/characters/porter/front-robes.svg",
  14725. extra: 1.01,
  14726. bottom: 0.01
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Normal",
  14733. height: math.unit(11 + 9 / 12, "feet"),
  14734. default: true
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14740. {
  14741. legendary: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Legendary",
  14745. image: {
  14746. source: "./media/characters/lucy/legendary.svg",
  14747. extra: 1355 / 1100,
  14748. bottom: 0.045
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Legendary",
  14755. height: math.unit(86882 * 2, "miles"),
  14756. default: true
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14762. {
  14763. front: {
  14764. height: math.unit(6, "feet"),
  14765. weight: math.unit(150, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/drusilla/front.svg",
  14769. extra: 678 / 635,
  14770. bottom: 0.03
  14771. }
  14772. },
  14773. back: {
  14774. height: math.unit(6, "feet"),
  14775. weight: math.unit(150, "lb"),
  14776. name: "Back",
  14777. image: {
  14778. source: "./media/characters/drusilla/back.svg",
  14779. extra: 678 / 635,
  14780. bottom: 0.005
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Macro",
  14787. height: math.unit(100, "feet")
  14788. },
  14789. {
  14790. name: "Canon Height",
  14791. height: math.unit(2000, "feet"),
  14792. default: true
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(6, "feet"),
  14801. weight: math.unit(180, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/renard-thatch/front.svg",
  14805. extra: 2411 / 2275,
  14806. bottom: 0.01
  14807. }
  14808. },
  14809. frontPosing: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(180, "lb"),
  14812. name: "Front (Posing)",
  14813. image: {
  14814. source: "./media/characters/renard-thatch/front-posing.svg",
  14815. extra: 2381 / 2261,
  14816. bottom: 0.01
  14817. }
  14818. },
  14819. back: {
  14820. height: math.unit(6, "feet"),
  14821. weight: math.unit(180, "lb"),
  14822. name: "Back",
  14823. image: {
  14824. source: "./media/characters/renard-thatch/back.svg",
  14825. extra: 2428 / 2288
  14826. }
  14827. },
  14828. },
  14829. [
  14830. {
  14831. name: "Micro",
  14832. height: math.unit(3, "inches")
  14833. },
  14834. {
  14835. name: "Default",
  14836. height: math.unit(6, "feet"),
  14837. default: true
  14838. },
  14839. {
  14840. name: "Macro",
  14841. height: math.unit(75, "feet")
  14842. },
  14843. ]
  14844. ))
  14845. characterMakers.push(() => makeCharacter(
  14846. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14847. {
  14848. front: {
  14849. height: math.unit(1450, "feet"),
  14850. weight: math.unit(1.21e6, "tons"),
  14851. name: "Front",
  14852. image: {
  14853. source: "./media/characters/sekvra/front.svg",
  14854. extra: 1193/1190,
  14855. bottom: 78/1271
  14856. }
  14857. },
  14858. side: {
  14859. height: math.unit(1450, "feet"),
  14860. weight: math.unit(1.21e6, "tons"),
  14861. name: "Side",
  14862. image: {
  14863. source: "./media/characters/sekvra/side.svg",
  14864. extra: 1193/1190,
  14865. bottom: 52/1245
  14866. }
  14867. },
  14868. back: {
  14869. height: math.unit(1450, "feet"),
  14870. weight: math.unit(1.21e6, "tons"),
  14871. name: "Back",
  14872. image: {
  14873. source: "./media/characters/sekvra/back.svg",
  14874. extra: 1219/1216,
  14875. bottom: 21/1240
  14876. }
  14877. },
  14878. frontClothed: {
  14879. height: math.unit(1450, "feet"),
  14880. weight: math.unit(1.21e6, "tons"),
  14881. name: "Front (Clothed)",
  14882. image: {
  14883. source: "./media/characters/sekvra/front-clothed.svg",
  14884. extra: 1192/1189,
  14885. bottom: 79/1271
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Macro",
  14892. height: math.unit(1450, "feet"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Megamacro",
  14897. height: math.unit(15000, "feet")
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14903. {
  14904. front: {
  14905. height: math.unit(6, "feet"),
  14906. weight: math.unit(150, "lb"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/carmine/front.svg",
  14910. extra: 1557/1538,
  14911. bottom: 68/1625
  14912. }
  14913. },
  14914. frontArmor: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(150, "lb"),
  14917. name: "Front (Armor)",
  14918. image: {
  14919. source: "./media/characters/carmine/front-armor.svg",
  14920. extra: 1549/1530,
  14921. bottom: 82/1631
  14922. }
  14923. },
  14924. mouth: {
  14925. height: math.unit(0.55, "feet"),
  14926. name: "Mouth",
  14927. image: {
  14928. source: "./media/characters/carmine/mouth.svg"
  14929. }
  14930. },
  14931. hand: {
  14932. height: math.unit(1.05, "feet"),
  14933. name: "Hand",
  14934. image: {
  14935. source: "./media/characters/carmine/hand.svg"
  14936. }
  14937. },
  14938. foot: {
  14939. height: math.unit(0.6, "feet"),
  14940. name: "Foot",
  14941. image: {
  14942. source: "./media/characters/carmine/foot.svg"
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Large",
  14949. height: math.unit(1, "mile")
  14950. },
  14951. {
  14952. name: "Huge",
  14953. height: math.unit(40, "miles"),
  14954. default: true
  14955. },
  14956. {
  14957. name: "Colossal",
  14958. height: math.unit(2500, "miles")
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14964. {
  14965. front: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(150, "lb"),
  14968. name: "Front",
  14969. image: {
  14970. source: "./media/characters/elyssia/front.svg",
  14971. extra: 2201 / 2035,
  14972. bottom: 0.05
  14973. }
  14974. },
  14975. frontClothed: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(150, "lb"),
  14978. name: "Front (Clothed)",
  14979. image: {
  14980. source: "./media/characters/elyssia/front-clothed.svg",
  14981. extra: 2201 / 2035,
  14982. bottom: 0.05
  14983. }
  14984. },
  14985. back: {
  14986. height: math.unit(6, "feet"),
  14987. weight: math.unit(150, "lb"),
  14988. name: "Back",
  14989. image: {
  14990. source: "./media/characters/elyssia/back.svg",
  14991. extra: 2201 / 2035,
  14992. bottom: 0.013
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Smaller",
  14999. height: math.unit(150, "feet")
  15000. },
  15001. {
  15002. name: "Standard",
  15003. height: math.unit(1400, "feet"),
  15004. default: true
  15005. },
  15006. {
  15007. name: "Distracted",
  15008. height: math.unit(15000, "feet")
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15014. {
  15015. front: {
  15016. height: math.unit(7 + 4/12, "feet"),
  15017. weight: math.unit(690, "lb"),
  15018. name: "Front",
  15019. image: {
  15020. source: "./media/characters/geno-maxwell/front.svg",
  15021. extra: 984/856,
  15022. bottom: 87/1071
  15023. }
  15024. },
  15025. back: {
  15026. height: math.unit(7 + 4/12, "feet"),
  15027. weight: math.unit(690, "lb"),
  15028. name: "Back",
  15029. image: {
  15030. source: "./media/characters/geno-maxwell/back.svg",
  15031. extra: 981/854,
  15032. bottom: 57/1038
  15033. }
  15034. },
  15035. frontCostume: {
  15036. height: math.unit(7 + 4/12, "feet"),
  15037. weight: math.unit(690, "lb"),
  15038. name: "Front (Costume)",
  15039. image: {
  15040. source: "./media/characters/geno-maxwell/front-costume.svg",
  15041. extra: 984/856,
  15042. bottom: 87/1071
  15043. }
  15044. },
  15045. backcostume: {
  15046. height: math.unit(7 + 4/12, "feet"),
  15047. weight: math.unit(690, "lb"),
  15048. name: "Back (Costume)",
  15049. image: {
  15050. source: "./media/characters/geno-maxwell/back-costume.svg",
  15051. extra: 981/854,
  15052. bottom: 57/1038
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Micro",
  15059. height: math.unit(3, "inches")
  15060. },
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(7 + 4 / 12, "feet"),
  15064. default: true
  15065. },
  15066. {
  15067. name: "Macro",
  15068. height: math.unit(220, "feet")
  15069. },
  15070. {
  15071. name: "Megamacro",
  15072. height: math.unit(11, "miles")
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(7 + 4/12, "feet"),
  15081. weight: math.unit(750, "lb"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/regena-maxwell/front.svg",
  15085. extra: 984/856,
  15086. bottom: 87/1071
  15087. }
  15088. },
  15089. back: {
  15090. height: math.unit(7 + 4/12, "feet"),
  15091. weight: math.unit(750, "lb"),
  15092. name: "Back",
  15093. image: {
  15094. source: "./media/characters/regena-maxwell/back.svg",
  15095. extra: 981/854,
  15096. bottom: 57/1038
  15097. }
  15098. },
  15099. frontCostume: {
  15100. height: math.unit(7 + 4/12, "feet"),
  15101. weight: math.unit(750, "lb"),
  15102. name: "Front (Costume)",
  15103. image: {
  15104. source: "./media/characters/regena-maxwell/front-costume.svg",
  15105. extra: 984/856,
  15106. bottom: 87/1071
  15107. }
  15108. },
  15109. backcostume: {
  15110. height: math.unit(7 + 4/12, "feet"),
  15111. weight: math.unit(750, "lb"),
  15112. name: "Back (Costume)",
  15113. image: {
  15114. source: "./media/characters/regena-maxwell/back-costume.svg",
  15115. extra: 981/854,
  15116. bottom: 57/1038
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(7 + 4 / 12, "feet"),
  15124. default: true
  15125. },
  15126. {
  15127. name: "Macro",
  15128. height: math.unit(220, "feet")
  15129. },
  15130. {
  15131. name: "Megamacro",
  15132. height: math.unit(11, "miles")
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15138. {
  15139. front: {
  15140. height: math.unit(6, "feet"),
  15141. weight: math.unit(150, "lb"),
  15142. name: "Front",
  15143. image: {
  15144. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15145. extra: 860 / 690,
  15146. bottom: 0.03
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(1.7, "meters"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15160. {
  15161. front: {
  15162. height: math.unit(6, "feet"),
  15163. weight: math.unit(150, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/quilly/front.svg",
  15167. extra: 890 / 776
  15168. }
  15169. },
  15170. },
  15171. [
  15172. {
  15173. name: "Gigamacro",
  15174. height: math.unit(404090, "miles"),
  15175. default: true
  15176. },
  15177. ]
  15178. ))
  15179. characterMakers.push(() => makeCharacter(
  15180. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15181. {
  15182. front: {
  15183. height: math.unit(7 + 8 / 12, "feet"),
  15184. weight: math.unit(350, "lb"),
  15185. name: "Front",
  15186. image: {
  15187. source: "./media/characters/tempest/front.svg",
  15188. extra: 1175 / 1086,
  15189. bottom: 0.02
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(7 + 8 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15203. {
  15204. side: {
  15205. height: math.unit(4 + 5 / 12, "feet"),
  15206. weight: math.unit(80, "lb"),
  15207. name: "Side",
  15208. image: {
  15209. source: "./media/characters/rodger/side.svg",
  15210. extra: 1235 / 1118
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Micro",
  15217. height: math.unit(1, "inch")
  15218. },
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(4 + 5 / 12, "feet"),
  15222. default: true
  15223. },
  15224. {
  15225. name: "Macro",
  15226. height: math.unit(120, "feet")
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/danyel/front.svg",
  15239. extra: 1185 / 1123,
  15240. bottom: 0.05
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Shrunken",
  15247. height: math.unit(0.5, "mm")
  15248. },
  15249. {
  15250. name: "Micro",
  15251. height: math.unit(1, "mm"),
  15252. default: true
  15253. },
  15254. {
  15255. name: "Upsized",
  15256. height: math.unit(5 + 5 / 12, "feet")
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15262. {
  15263. front: {
  15264. height: math.unit(5 + 6 / 12, "feet"),
  15265. weight: math.unit(200, "lb"),
  15266. name: "Front",
  15267. image: {
  15268. source: "./media/characters/vivian-bijoux/front.svg",
  15269. extra: 1217/1209,
  15270. bottom: 76/1293
  15271. }
  15272. },
  15273. back: {
  15274. height: math.unit(5 + 6 / 12, "feet"),
  15275. weight: math.unit(200, "lb"),
  15276. name: "Back",
  15277. image: {
  15278. source: "./media/characters/vivian-bijoux/back.svg",
  15279. extra: 1214/1208,
  15280. bottom: 51/1265
  15281. }
  15282. },
  15283. dressed: {
  15284. height: math.unit(5 + 6 / 12, "feet"),
  15285. weight: math.unit(200, "lb"),
  15286. name: "Dressed",
  15287. image: {
  15288. source: "./media/characters/vivian-bijoux/dressed.svg",
  15289. extra: 1217/1209,
  15290. bottom: 76/1293
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Normal",
  15297. height: math.unit(5 + 6 / 12, "feet"),
  15298. default: true
  15299. },
  15300. {
  15301. name: "Bad Dream",
  15302. height: math.unit(500, "feet")
  15303. },
  15304. {
  15305. name: "Nightmare",
  15306. height: math.unit(500, "miles")
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15312. {
  15313. front: {
  15314. height: math.unit(6 + 1 / 12, "feet"),
  15315. weight: math.unit(260, "lb"),
  15316. name: "Front",
  15317. image: {
  15318. source: "./media/characters/zeta/front.svg",
  15319. extra: 1968 / 1889,
  15320. bottom: 0.06
  15321. }
  15322. },
  15323. back: {
  15324. height: math.unit(6 + 1 / 12, "feet"),
  15325. weight: math.unit(260, "lb"),
  15326. name: "Back",
  15327. image: {
  15328. source: "./media/characters/zeta/back.svg",
  15329. extra: 1944 / 1858,
  15330. bottom: 0.03
  15331. }
  15332. },
  15333. hand: {
  15334. height: math.unit(1.112, "feet"),
  15335. name: "Hand",
  15336. image: {
  15337. source: "./media/characters/zeta/hand.svg"
  15338. }
  15339. },
  15340. foot: {
  15341. height: math.unit(1.48, "feet"),
  15342. name: "Foot",
  15343. image: {
  15344. source: "./media/characters/zeta/foot.svg"
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Micro",
  15351. height: math.unit(6, "inches")
  15352. },
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(6 + 1 / 12, "feet"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "Macro",
  15360. height: math.unit(20, "feet")
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(6, "feet"),
  15369. weight: math.unit(150, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/jamie-larsen/front.svg",
  15373. extra: 962 / 933,
  15374. bottom: 0.02
  15375. }
  15376. },
  15377. back: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(150, "lb"),
  15380. name: "Back",
  15381. image: {
  15382. source: "./media/characters/jamie-larsen/back.svg",
  15383. extra: 997 / 946
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Macro",
  15390. height: math.unit(28 + 7 / 12, "feet"),
  15391. default: true
  15392. },
  15393. {
  15394. name: "Macro+",
  15395. height: math.unit(180, "feet")
  15396. },
  15397. {
  15398. name: "Megamacro",
  15399. height: math.unit(10, "miles")
  15400. },
  15401. {
  15402. name: "Gigamacro",
  15403. height: math.unit(200000, "miles")
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(6, "feet"),
  15412. weight: math.unit(120, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/vance/front.svg",
  15416. extra: 1980 / 1890,
  15417. bottom: 0.09
  15418. }
  15419. },
  15420. back: {
  15421. height: math.unit(6, "feet"),
  15422. weight: math.unit(120, "lb"),
  15423. name: "Back",
  15424. image: {
  15425. source: "./media/characters/vance/back.svg",
  15426. extra: 2081 / 1994,
  15427. bottom: 0.014
  15428. }
  15429. },
  15430. hand: {
  15431. height: math.unit(0.88, "feet"),
  15432. name: "Hand",
  15433. image: {
  15434. source: "./media/characters/vance/hand.svg"
  15435. }
  15436. },
  15437. foot: {
  15438. height: math.unit(0.64, "feet"),
  15439. name: "Foot",
  15440. image: {
  15441. source: "./media/characters/vance/foot.svg"
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Small",
  15448. height: math.unit(90, "feet"),
  15449. default: true
  15450. },
  15451. {
  15452. name: "Macro",
  15453. height: math.unit(100, "meters")
  15454. },
  15455. {
  15456. name: "Megamacro",
  15457. height: math.unit(15, "miles")
  15458. },
  15459. ]
  15460. ))
  15461. characterMakers.push(() => makeCharacter(
  15462. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15463. {
  15464. front: {
  15465. height: math.unit(6, "feet"),
  15466. weight: math.unit(180, "lb"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/xochitl/front.svg",
  15470. extra: 2297 / 2261,
  15471. bottom: 0.065
  15472. }
  15473. },
  15474. back: {
  15475. height: math.unit(6, "feet"),
  15476. weight: math.unit(180, "lb"),
  15477. name: "Back",
  15478. image: {
  15479. source: "./media/characters/xochitl/back.svg",
  15480. extra: 2386 / 2354,
  15481. bottom: 0.01
  15482. }
  15483. },
  15484. foot: {
  15485. height: math.unit(6 / 5 * 1.15, "feet"),
  15486. weight: math.unit(150, "lb"),
  15487. name: "Foot",
  15488. image: {
  15489. source: "./media/characters/xochitl/foot.svg"
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Macro",
  15496. height: math.unit(80, "feet")
  15497. },
  15498. {
  15499. name: "Macro+",
  15500. height: math.unit(400, "feet"),
  15501. default: true
  15502. },
  15503. {
  15504. name: "Gigamacro",
  15505. height: math.unit(80000, "miles")
  15506. },
  15507. {
  15508. name: "Gigamacro+",
  15509. height: math.unit(400000, "miles")
  15510. },
  15511. {
  15512. name: "Teramacro",
  15513. height: math.unit(300, "AU")
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15519. {
  15520. front: {
  15521. height: math.unit(6, "feet"),
  15522. weight: math.unit(150, "lb"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/vincent/front.svg",
  15526. extra: 1130 / 1080,
  15527. bottom: 0.055
  15528. }
  15529. },
  15530. beak: {
  15531. height: math.unit(6 * 0.1, "feet"),
  15532. name: "Beak",
  15533. image: {
  15534. source: "./media/characters/vincent/beak.svg"
  15535. }
  15536. },
  15537. hand: {
  15538. height: math.unit(6 * 0.85, "feet"),
  15539. weight: math.unit(150, "lb"),
  15540. name: "Hand",
  15541. image: {
  15542. source: "./media/characters/vincent/hand.svg"
  15543. }
  15544. },
  15545. foot: {
  15546. height: math.unit(6 * 0.19, "feet"),
  15547. weight: math.unit(150, "lb"),
  15548. name: "Foot",
  15549. image: {
  15550. source: "./media/characters/vincent/foot.svg"
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Base",
  15557. height: math.unit(6 + 5 / 12, "feet"),
  15558. default: true
  15559. },
  15560. {
  15561. name: "Macro",
  15562. height: math.unit(300, "feet")
  15563. },
  15564. {
  15565. name: "Megamacro",
  15566. height: math.unit(2, "miles")
  15567. },
  15568. {
  15569. name: "Gigamacro",
  15570. height: math.unit(1000, "miles")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(2, "meters"),
  15579. weight: math.unit(500, "kg"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/coatl/front.svg",
  15583. extra: 3948 / 3500,
  15584. bottom: 0.082
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(4, "meters")
  15592. },
  15593. {
  15594. name: "Macro",
  15595. height: math.unit(100, "meters"),
  15596. default: true
  15597. },
  15598. {
  15599. name: "Macro+",
  15600. height: math.unit(300, "meters")
  15601. },
  15602. {
  15603. name: "Megamacro",
  15604. height: math.unit(3, "gigameters")
  15605. },
  15606. {
  15607. name: "Megamacro+",
  15608. height: math.unit(300, "terameters")
  15609. },
  15610. {
  15611. name: "Megamacro++",
  15612. height: math.unit(3, "lightyears")
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15618. {
  15619. front: {
  15620. height: math.unit(6, "feet"),
  15621. weight: math.unit(50, "kg"),
  15622. name: "front",
  15623. image: {
  15624. source: "./media/characters/shiroryu/front.svg",
  15625. extra: 1990 / 1935
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Mortal Mingling",
  15632. height: math.unit(3, "meters")
  15633. },
  15634. {
  15635. name: "Kaiju-ish",
  15636. height: math.unit(250, "meters")
  15637. },
  15638. {
  15639. name: "Somewhat Godly",
  15640. height: math.unit(400, "km"),
  15641. default: true
  15642. },
  15643. {
  15644. name: "Planetary",
  15645. height: math.unit(300, "megameters")
  15646. },
  15647. {
  15648. name: "Galaxy-dwarfing",
  15649. height: math.unit(450, "kiloparsecs")
  15650. },
  15651. {
  15652. name: "Universe Eater",
  15653. height: math.unit(150, "gigaparsecs")
  15654. },
  15655. {
  15656. name: "Almost Immeasurable",
  15657. height: math.unit(1.3e266, "yottaparsecs")
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(6, "feet"),
  15666. weight: math.unit(150, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/umeko/front.svg",
  15670. extra: 1,
  15671. bottom: 0.019
  15672. }
  15673. },
  15674. frontArmored: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(150, "lb"),
  15677. name: "Front (Armored)",
  15678. image: {
  15679. source: "./media/characters/umeko/front-armored.svg",
  15680. extra: 1,
  15681. bottom: 0.021
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Macro",
  15688. height: math.unit(220, "feet"),
  15689. default: true
  15690. },
  15691. {
  15692. name: "Guardian Dragon",
  15693. height: math.unit(50, "miles")
  15694. },
  15695. {
  15696. name: "Cosmic",
  15697. height: math.unit(800000, "miles")
  15698. },
  15699. ]
  15700. ))
  15701. characterMakers.push(() => makeCharacter(
  15702. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15703. {
  15704. front: {
  15705. height: math.unit(6, "feet"),
  15706. weight: math.unit(150, "lb"),
  15707. name: "Front",
  15708. image: {
  15709. source: "./media/characters/cassidy/front.svg",
  15710. extra: 810/808,
  15711. bottom: 41/851
  15712. }
  15713. },
  15714. },
  15715. [
  15716. {
  15717. name: "Canon Height",
  15718. height: math.unit(120, "feet"),
  15719. default: true
  15720. },
  15721. {
  15722. name: "Macro+",
  15723. height: math.unit(400, "feet")
  15724. },
  15725. {
  15726. name: "Macro++",
  15727. height: math.unit(4000, "feet")
  15728. },
  15729. {
  15730. name: "Megamacro",
  15731. height: math.unit(3, "miles")
  15732. },
  15733. ]
  15734. ))
  15735. characterMakers.push(() => makeCharacter(
  15736. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15737. {
  15738. front: {
  15739. height: math.unit(6, "feet"),
  15740. weight: math.unit(150, "lb"),
  15741. name: "Front",
  15742. image: {
  15743. source: "./media/characters/isaac/front.svg",
  15744. extra: 896 / 815,
  15745. bottom: 0.11
  15746. }
  15747. },
  15748. },
  15749. [
  15750. {
  15751. name: "Human Size",
  15752. height: math.unit(8, "feet"),
  15753. default: true
  15754. },
  15755. {
  15756. name: "Macro",
  15757. height: math.unit(400, "feet")
  15758. },
  15759. {
  15760. name: "Megamacro",
  15761. height: math.unit(50, "miles")
  15762. },
  15763. {
  15764. name: "Canon Height",
  15765. height: math.unit(200, "AU")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15771. {
  15772. front: {
  15773. height: math.unit(6, "feet"),
  15774. weight: math.unit(72, "kg"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/sleekit/front.svg",
  15778. extra: 4693 / 4487,
  15779. bottom: 0.012
  15780. }
  15781. },
  15782. },
  15783. [
  15784. {
  15785. name: "Minimum Height",
  15786. height: math.unit(10, "meters")
  15787. },
  15788. {
  15789. name: "Smaller",
  15790. height: math.unit(25, "meters")
  15791. },
  15792. {
  15793. name: "Larger",
  15794. height: math.unit(38, "meters"),
  15795. default: true
  15796. },
  15797. {
  15798. name: "Maximum height",
  15799. height: math.unit(100, "meters")
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15805. {
  15806. front: {
  15807. height: math.unit(6, "feet"),
  15808. weight: math.unit(150, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/nillia/front.svg",
  15812. extra: 719/665,
  15813. bottom: 6/725
  15814. }
  15815. },
  15816. back: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(150, "lb"),
  15819. name: "Back",
  15820. image: {
  15821. source: "./media/characters/nillia/back.svg",
  15822. extra: 705/651,
  15823. bottom: 5/710
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Canon Height",
  15830. height: math.unit(489, "feet"),
  15831. default: true
  15832. }
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(6, "feet"),
  15840. weight: math.unit(150, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/mesmyriza/front.svg",
  15844. extra: 1541/1291,
  15845. bottom: 87/1628
  15846. }
  15847. },
  15848. foot: {
  15849. height: math.unit(6 / (250 / 35), "feet"),
  15850. name: "Foot",
  15851. image: {
  15852. source: "./media/characters/mesmyriza/foot.svg"
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Macro",
  15859. height: math.unit(457, "meters"),
  15860. default: true
  15861. },
  15862. {
  15863. name: "Megamacro",
  15864. height: math.unit(8, "megameters")
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15870. {
  15871. front: {
  15872. height: math.unit(6, "feet"),
  15873. weight: math.unit(250, "lb"),
  15874. name: "Front",
  15875. image: {
  15876. source: "./media/characters/saudade/front.svg",
  15877. extra: 1172 / 1139,
  15878. bottom: 0.035
  15879. }
  15880. },
  15881. },
  15882. [
  15883. {
  15884. name: "Micro",
  15885. height: math.unit(3, "inches")
  15886. },
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(6, "feet"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Macro",
  15894. height: math.unit(50, "feet")
  15895. },
  15896. {
  15897. name: "Megamacro",
  15898. height: math.unit(2800, "feet")
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15904. {
  15905. front: {
  15906. height: math.unit(5 + 4 / 12, "feet"),
  15907. weight: math.unit(100, "lb"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/keireer/front.svg",
  15911. extra: 716 / 666,
  15912. bottom: 0.05
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Normal",
  15919. height: math.unit(5 + 4 / 12, "feet"),
  15920. default: true
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(5.5, "feet"),
  15929. weight: math.unit(90, "kg"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/mirja/front.svg",
  15933. extra: 1452/1262,
  15934. bottom: 67/1519
  15935. }
  15936. },
  15937. frontDressed: {
  15938. height: math.unit(5.5, "feet"),
  15939. weight: math.unit(90, "lb"),
  15940. name: "Front (Dressed)",
  15941. image: {
  15942. source: "./media/characters/mirja/dressed.svg",
  15943. extra: 1452/1262,
  15944. bottom: 67/1519
  15945. }
  15946. },
  15947. back: {
  15948. height: math.unit(6, "feet"),
  15949. weight: math.unit(90, "lb"),
  15950. name: "Back",
  15951. image: {
  15952. source: "./media/characters/mirja/back.svg",
  15953. extra: 1892/1795,
  15954. bottom: 48/1940
  15955. }
  15956. },
  15957. maw: {
  15958. height: math.unit(1.312, "feet"),
  15959. name: "Maw",
  15960. image: {
  15961. source: "./media/characters/mirja/maw.svg"
  15962. }
  15963. },
  15964. paw: {
  15965. height: math.unit(1.15, "feet"),
  15966. name: "Paw",
  15967. image: {
  15968. source: "./media/characters/mirja/paw.svg"
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "\"Incognito\"",
  15975. height: math.unit(3, "meters")
  15976. },
  15977. {
  15978. name: "Strolling Size",
  15979. height: math.unit(15, "km")
  15980. },
  15981. {
  15982. name: "Larger Strolling Size",
  15983. height: math.unit(400, "km")
  15984. },
  15985. {
  15986. name: "Preferred Size",
  15987. height: math.unit(5000, "km"),
  15988. default: true
  15989. },
  15990. {
  15991. name: "True Size",
  15992. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(15, "feet"),
  16001. weight: math.unit(880, "kg"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/nightraver/front.svg",
  16005. extra: 2444 / 2160,
  16006. bottom: 0.027
  16007. }
  16008. },
  16009. back: {
  16010. height: math.unit(15, "feet"),
  16011. weight: math.unit(880, "kg"),
  16012. name: "Back",
  16013. image: {
  16014. source: "./media/characters/nightraver/back.svg",
  16015. extra: 2309 / 2180,
  16016. bottom: 0.005
  16017. }
  16018. },
  16019. sole: {
  16020. height: math.unit(2.878, "feet"),
  16021. name: "Sole",
  16022. image: {
  16023. source: "./media/characters/nightraver/sole.svg"
  16024. }
  16025. },
  16026. foot: {
  16027. height: math.unit(2.285, "feet"),
  16028. name: "Foot",
  16029. image: {
  16030. source: "./media/characters/nightraver/foot.svg"
  16031. }
  16032. },
  16033. maw: {
  16034. height: math.unit(2.67, "feet"),
  16035. name: "Maw",
  16036. image: {
  16037. source: "./media/characters/nightraver/maw.svg"
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Micro",
  16044. height: math.unit(1, "cm")
  16045. },
  16046. {
  16047. name: "Normal",
  16048. height: math.unit(15, "feet"),
  16049. default: true
  16050. },
  16051. {
  16052. name: "Macro",
  16053. height: math.unit(300, "feet")
  16054. },
  16055. {
  16056. name: "Megamacro",
  16057. height: math.unit(300, "miles")
  16058. },
  16059. {
  16060. name: "Gigamacro",
  16061. height: math.unit(10000, "miles")
  16062. },
  16063. ]
  16064. ))
  16065. characterMakers.push(() => makeCharacter(
  16066. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16067. {
  16068. side: {
  16069. height: math.unit(2, "inches"),
  16070. weight: math.unit(5, "grams"),
  16071. name: "Side",
  16072. image: {
  16073. source: "./media/characters/arc/side.svg"
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Micro",
  16080. height: math.unit(2, "inches"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16087. {
  16088. front: {
  16089. height: math.unit(1.1938, "meters"),
  16090. weight: math.unit(54, "kg"),
  16091. name: "Front",
  16092. image: {
  16093. source: "./media/characters/nebula-shahar/front.svg",
  16094. extra: 1642 / 1436,
  16095. bottom: 0.06
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Megamicro",
  16102. height: math.unit(0.3, "mm")
  16103. },
  16104. {
  16105. name: "Micro",
  16106. height: math.unit(3, "cm")
  16107. },
  16108. {
  16109. name: "Normal",
  16110. height: math.unit(138, "cm"),
  16111. default: true
  16112. },
  16113. {
  16114. name: "Macro",
  16115. height: math.unit(30, "m")
  16116. },
  16117. ]
  16118. ))
  16119. characterMakers.push(() => makeCharacter(
  16120. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16121. {
  16122. front: {
  16123. height: math.unit(5.24, "feet"),
  16124. weight: math.unit(150, "lb"),
  16125. name: "Front",
  16126. image: {
  16127. source: "./media/characters/shayla/front.svg",
  16128. extra: 1512 / 1414,
  16129. bottom: 0.01
  16130. }
  16131. },
  16132. back: {
  16133. height: math.unit(5.24, "feet"),
  16134. weight: math.unit(150, "lb"),
  16135. name: "Back",
  16136. image: {
  16137. source: "./media/characters/shayla/back.svg",
  16138. extra: 1512 / 1414
  16139. }
  16140. },
  16141. hand: {
  16142. height: math.unit(0.7781496062992126, "feet"),
  16143. name: "Hand",
  16144. image: {
  16145. source: "./media/characters/shayla/hand.svg"
  16146. }
  16147. },
  16148. foot: {
  16149. height: math.unit(1.4206036745406823, "feet"),
  16150. name: "Foot",
  16151. image: {
  16152. source: "./media/characters/shayla/foot.svg"
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Micro",
  16159. height: math.unit(0.32, "feet")
  16160. },
  16161. {
  16162. name: "Normal",
  16163. height: math.unit(5.24, "feet"),
  16164. default: true
  16165. },
  16166. {
  16167. name: "Macro",
  16168. height: math.unit(492.12, "feet")
  16169. },
  16170. {
  16171. name: "Megamacro",
  16172. height: math.unit(186.41, "miles")
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(2.2, "m"),
  16181. weight: math.unit(120, "kg"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/pia-jr/front.svg",
  16185. extra: 1000 / 970,
  16186. bottom: 0.035
  16187. }
  16188. },
  16189. hand: {
  16190. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16191. name: "Hand",
  16192. image: {
  16193. source: "./media/characters/pia-jr/hand.svg"
  16194. }
  16195. },
  16196. paw: {
  16197. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16198. name: "Paw",
  16199. image: {
  16200. source: "./media/characters/pia-jr/paw.svg"
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Micro",
  16207. height: math.unit(1.2, "cm")
  16208. },
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(2.2, "m"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Macro",
  16216. height: math.unit(180, "m")
  16217. },
  16218. {
  16219. name: "Megamacro",
  16220. height: math.unit(420, "km")
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16226. {
  16227. front: {
  16228. height: math.unit(2, "m"),
  16229. weight: math.unit(115, "kg"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/pia-sr/front.svg",
  16233. extra: 760 / 730,
  16234. bottom: 0.015
  16235. }
  16236. },
  16237. back: {
  16238. height: math.unit(2, "m"),
  16239. weight: math.unit(115, "kg"),
  16240. name: "Back",
  16241. image: {
  16242. source: "./media/characters/pia-sr/back.svg",
  16243. extra: 760 / 730,
  16244. bottom: 0.01
  16245. }
  16246. },
  16247. hand: {
  16248. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16249. name: "Hand",
  16250. image: {
  16251. source: "./media/characters/pia-sr/hand.svg"
  16252. }
  16253. },
  16254. foot: {
  16255. height: math.unit(1.83, "feet"),
  16256. name: "Foot",
  16257. image: {
  16258. source: "./media/characters/pia-sr/foot.svg"
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Micro",
  16265. height: math.unit(88, "mm")
  16266. },
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(2, "m"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Macro",
  16274. height: math.unit(200, "m")
  16275. },
  16276. {
  16277. name: "Megamacro",
  16278. height: math.unit(420, "km")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(8 + 2 / 12, "feet"),
  16287. weight: math.unit(300, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/kibibyte/front.svg",
  16291. extra: 2221 / 2098,
  16292. bottom: 0.04
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(8 + 2 / 12, "feet"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Socialable Macro",
  16304. height: math.unit(50, "feet")
  16305. },
  16306. {
  16307. name: "Macro",
  16308. height: math.unit(300, "feet")
  16309. },
  16310. {
  16311. name: "Megamacro",
  16312. height: math.unit(500, "miles")
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(6, "feet"),
  16321. weight: math.unit(150, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/felix/front.svg",
  16325. extra: 762 / 722,
  16326. bottom: 0.02
  16327. }
  16328. },
  16329. frontClothed: {
  16330. height: math.unit(6, "feet"),
  16331. weight: math.unit(150, "lb"),
  16332. name: "Front (Clothed)",
  16333. image: {
  16334. source: "./media/characters/felix/front-clothed.svg",
  16335. extra: 762 / 722,
  16336. bottom: 0.02
  16337. }
  16338. },
  16339. },
  16340. [
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(6 + 8 / 12, "feet"),
  16344. default: true
  16345. },
  16346. {
  16347. name: "Macro",
  16348. height: math.unit(2600, "feet")
  16349. },
  16350. {
  16351. name: "Megamacro",
  16352. height: math.unit(450, "miles")
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16358. {
  16359. front: {
  16360. height: math.unit(6 + 1 / 12, "feet"),
  16361. weight: math.unit(250, "lb"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/tobo/front.svg",
  16365. extra: 608 / 586,
  16366. bottom: 0.023
  16367. }
  16368. },
  16369. back: {
  16370. height: math.unit(6 + 1 / 12, "feet"),
  16371. weight: math.unit(250, "lb"),
  16372. name: "Back",
  16373. image: {
  16374. source: "./media/characters/tobo/back.svg",
  16375. extra: 608 / 586
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Nano",
  16382. height: math.unit(2, "nm")
  16383. },
  16384. {
  16385. name: "Megamicro",
  16386. height: math.unit(0.1, "mm")
  16387. },
  16388. {
  16389. name: "Micro",
  16390. height: math.unit(1, "inch"),
  16391. default: true
  16392. },
  16393. {
  16394. name: "Human-sized",
  16395. height: math.unit(6 + 1 / 12, "feet")
  16396. },
  16397. {
  16398. name: "Macro",
  16399. height: math.unit(250, "feet")
  16400. },
  16401. {
  16402. name: "Megamacro",
  16403. height: math.unit(75, "miles")
  16404. },
  16405. {
  16406. name: "Texas-sized",
  16407. height: math.unit(750, "miles")
  16408. },
  16409. {
  16410. name: "Teramacro",
  16411. height: math.unit(50000, "miles")
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(6, "feet"),
  16420. weight: math.unit(269, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/danny-kapowsky/front.svg",
  16424. extra: 766 / 736,
  16425. bottom: 0.044
  16426. }
  16427. },
  16428. back: {
  16429. height: math.unit(6, "feet"),
  16430. weight: math.unit(269, "lb"),
  16431. name: "Back",
  16432. image: {
  16433. source: "./media/characters/danny-kapowsky/back.svg",
  16434. extra: 797 / 760,
  16435. bottom: 0.025
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "Macro",
  16442. height: math.unit(150, "feet"),
  16443. default: true
  16444. },
  16445. {
  16446. name: "Macro+",
  16447. height: math.unit(200, "feet")
  16448. },
  16449. {
  16450. name: "Macro++",
  16451. height: math.unit(300, "feet")
  16452. },
  16453. {
  16454. name: "Macro+++",
  16455. height: math.unit(400, "feet")
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16461. {
  16462. side: {
  16463. height: math.unit(6, "feet"),
  16464. weight: math.unit(170, "lb"),
  16465. name: "Side",
  16466. image: {
  16467. source: "./media/characters/finn/side.svg",
  16468. extra: 1953 / 1807,
  16469. bottom: 0.057
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Megamacro",
  16476. height: math.unit(14445, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16483. {
  16484. front: {
  16485. height: math.unit(5 + 6 / 12, "feet"),
  16486. weight: math.unit(125, "lb"),
  16487. name: "Front",
  16488. image: {
  16489. source: "./media/characters/roy/front.svg",
  16490. extra: 1,
  16491. bottom: 0.11
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Micro",
  16498. height: math.unit(3, "inches"),
  16499. default: true
  16500. },
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(5 + 6 / 12, "feet")
  16504. },
  16505. {
  16506. name: "Lesser Macro",
  16507. height: math.unit(60, "feet")
  16508. },
  16509. {
  16510. name: "Greater Macro",
  16511. height: math.unit(120, "feet")
  16512. },
  16513. ]
  16514. ))
  16515. characterMakers.push(() => makeCharacter(
  16516. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16517. {
  16518. front: {
  16519. height: math.unit(6, "feet"),
  16520. weight: math.unit(100, "lb"),
  16521. name: "Front",
  16522. image: {
  16523. source: "./media/characters/aevsivs/front.svg",
  16524. extra: 1,
  16525. bottom: 0.03
  16526. }
  16527. },
  16528. back: {
  16529. height: math.unit(6, "feet"),
  16530. weight: math.unit(100, "lb"),
  16531. name: "Back",
  16532. image: {
  16533. source: "./media/characters/aevsivs/back.svg"
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Micro",
  16540. height: math.unit(2, "inches"),
  16541. default: true
  16542. },
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(5, "feet")
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(5 + 7 / 12, "feet"),
  16554. weight: math.unit(159, "lb"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/hildegard/front.svg",
  16558. extra: 289 / 269,
  16559. bottom: 7.63 / 297.8
  16560. }
  16561. },
  16562. back: {
  16563. height: math.unit(5 + 7 / 12, "feet"),
  16564. weight: math.unit(159, "lb"),
  16565. name: "Back",
  16566. image: {
  16567. source: "./media/characters/hildegard/back.svg",
  16568. extra: 280 / 260,
  16569. bottom: 2.3 / 282
  16570. }
  16571. },
  16572. },
  16573. [
  16574. {
  16575. name: "Normal",
  16576. height: math.unit(5 + 7 / 12, "feet"),
  16577. default: true
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16583. {
  16584. bernard: {
  16585. height: math.unit(2 + 7 / 12, "feet"),
  16586. weight: math.unit(66, "lb"),
  16587. name: "Bernard",
  16588. rename: true,
  16589. image: {
  16590. source: "./media/characters/bernard-wilder/bernard.svg",
  16591. extra: 192 / 128,
  16592. bottom: 0.05
  16593. }
  16594. },
  16595. wilder: {
  16596. height: math.unit(5 + 8 / 12, "feet"),
  16597. weight: math.unit(143, "lb"),
  16598. name: "Wilder",
  16599. rename: true,
  16600. image: {
  16601. source: "./media/characters/bernard-wilder/wilder.svg",
  16602. extra: 361 / 312,
  16603. bottom: 0.02
  16604. }
  16605. },
  16606. },
  16607. [
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(2 + 7 / 12, "feet"),
  16611. default: true
  16612. },
  16613. ]
  16614. ))
  16615. characterMakers.push(() => makeCharacter(
  16616. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16617. {
  16618. anthro: {
  16619. height: math.unit(6 + 1 / 12, "feet"),
  16620. weight: math.unit(155, "lb"),
  16621. name: "Anthro",
  16622. image: {
  16623. source: "./media/characters/hearth/anthro.svg",
  16624. extra: 1178/1136,
  16625. bottom: 28/1206
  16626. }
  16627. },
  16628. feral: {
  16629. height: math.unit(3.78, "feet"),
  16630. weight: math.unit(35, "kg"),
  16631. name: "Feral",
  16632. image: {
  16633. source: "./media/characters/hearth/feral.svg",
  16634. extra: 153 / 135,
  16635. bottom: 0.03
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(6 + 1 / 12, "feet"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16649. {
  16650. front: {
  16651. height: math.unit(6, "feet"),
  16652. weight: math.unit(182, "lb"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/ingrid/front.svg",
  16656. extra: 294 / 268,
  16657. bottom: 0.027
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(6, "feet"),
  16665. default: true
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16671. {
  16672. eevee: {
  16673. height: math.unit(2 + 10 / 12, "feet"),
  16674. weight: math.unit(86, "lb"),
  16675. name: "Malgam",
  16676. image: {
  16677. source: "./media/characters/malgam/eevee.svg",
  16678. extra: 952/784,
  16679. bottom: 38/990
  16680. }
  16681. },
  16682. sylveon: {
  16683. height: math.unit(4, "feet"),
  16684. weight: math.unit(101, "lb"),
  16685. name: "Future Malgam",
  16686. rename: true,
  16687. image: {
  16688. source: "./media/characters/malgam/sylveon.svg",
  16689. extra: 371 / 325,
  16690. bottom: 0.015
  16691. }
  16692. },
  16693. gigantamax: {
  16694. height: math.unit(50, "feet"),
  16695. name: "Gigantamax Malgam",
  16696. rename: true,
  16697. image: {
  16698. source: "./media/characters/malgam/gigantamax.svg"
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(2 + 10 / 12, "feet"),
  16706. default: true
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16712. {
  16713. front: {
  16714. height: math.unit(5 + 11 / 12, "feet"),
  16715. weight: math.unit(188, "lb"),
  16716. name: "Front",
  16717. image: {
  16718. source: "./media/characters/fleur/front.svg",
  16719. extra: 309 / 283,
  16720. bottom: 0.007
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(5 + 11 / 12, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(5 + 4 / 12, "feet"),
  16737. weight: math.unit(122, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/jude/front.svg",
  16741. extra: 288 / 273,
  16742. bottom: 0.03
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Normal",
  16749. height: math.unit(5 + 4 / 12, "feet"),
  16750. default: true
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16756. {
  16757. front: {
  16758. height: math.unit(5 + 11 / 12, "feet"),
  16759. weight: math.unit(190, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/seara/front.svg",
  16763. extra: 1,
  16764. bottom: 0.05
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(5 + 11 / 12, "feet"),
  16772. default: true
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16778. {
  16779. front: {
  16780. height: math.unit(16 + 5 / 12, "feet"),
  16781. weight: math.unit(524, "lb"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/caspian-lugia/front.svg",
  16785. extra: 1,
  16786. bottom: 0.04
  16787. }
  16788. },
  16789. },
  16790. [
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(16 + 5 / 12, "feet"),
  16794. default: true
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16800. {
  16801. front: {
  16802. height: math.unit(5 + 7 / 12, "feet"),
  16803. weight: math.unit(170, "lb"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/mika/front.svg",
  16807. extra: 1,
  16808. bottom: 0.016
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(5 + 7 / 12, "feet"),
  16816. default: true
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16822. {
  16823. front: {
  16824. height: math.unit(6 + 2 / 12, "feet"),
  16825. weight: math.unit(268, "lb"),
  16826. name: "Front",
  16827. image: {
  16828. source: "./media/characters/sol/front.svg",
  16829. extra: 247 / 231,
  16830. bottom: 0.05
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(6 + 2 / 12, "feet"),
  16838. default: true
  16839. },
  16840. ]
  16841. ))
  16842. characterMakers.push(() => makeCharacter(
  16843. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16844. {
  16845. buizel: {
  16846. height: math.unit(2 + 5 / 12, "feet"),
  16847. weight: math.unit(87, "lb"),
  16848. name: "Front",
  16849. image: {
  16850. source: "./media/characters/umiko/buizel.svg",
  16851. extra: 172 / 157,
  16852. bottom: 0.01
  16853. },
  16854. form: "buizel",
  16855. default: true
  16856. },
  16857. floatzel: {
  16858. height: math.unit(5 + 9 / 12, "feet"),
  16859. weight: math.unit(250, "lb"),
  16860. name: "Front",
  16861. image: {
  16862. source: "./media/characters/umiko/floatzel.svg",
  16863. extra: 1076/1006,
  16864. bottom: 15/1091
  16865. },
  16866. form: "floatzel",
  16867. default: true
  16868. },
  16869. },
  16870. [
  16871. {
  16872. name: "Normal",
  16873. height: math.unit(2 + 5 / 12, "feet"),
  16874. form: "buizel",
  16875. default: true
  16876. },
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(5 + 9 / 12, "feet"),
  16880. form: "floatzel",
  16881. default: true
  16882. },
  16883. ],
  16884. {
  16885. "buizel": {
  16886. name: "Buizel"
  16887. },
  16888. "floatzel": {
  16889. name: "Floatzel",
  16890. default: true
  16891. }
  16892. }
  16893. ))
  16894. characterMakers.push(() => makeCharacter(
  16895. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16896. {
  16897. front: {
  16898. height: math.unit(6 + 2 / 12, "feet"),
  16899. weight: math.unit(146, "lb"),
  16900. name: "Front",
  16901. image: {
  16902. source: "./media/characters/iliac/front.svg",
  16903. extra: 389 / 365,
  16904. bottom: 0.035
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Normal",
  16911. height: math.unit(6 + 2 / 12, "feet"),
  16912. default: true
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(6, "feet"),
  16921. weight: math.unit(170, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/topaz/front.svg",
  16925. extra: 317 / 303,
  16926. bottom: 0.055
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(6, "feet"),
  16934. default: true
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16940. {
  16941. front: {
  16942. height: math.unit(5 + 11 / 12, "feet"),
  16943. weight: math.unit(144, "lb"),
  16944. name: "Front",
  16945. image: {
  16946. source: "./media/characters/gabriel/front.svg",
  16947. extra: 285 / 262,
  16948. bottom: 0.004
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Normal",
  16955. height: math.unit(5 + 11 / 12, "feet"),
  16956. default: true
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16962. {
  16963. side: {
  16964. height: math.unit(6 + 5 / 12, "feet"),
  16965. weight: math.unit(300, "lb"),
  16966. name: "Side",
  16967. image: {
  16968. source: "./media/characters/tempest-suicune/side.svg",
  16969. extra: 195 / 154,
  16970. bottom: 0.04
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(6 + 5 / 12, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16984. {
  16985. front: {
  16986. height: math.unit(7 + 2 / 12, "feet"),
  16987. weight: math.unit(322, "lb"),
  16988. name: "Front",
  16989. image: {
  16990. source: "./media/characters/vulcan/front.svg",
  16991. extra: 154 / 147,
  16992. bottom: 0.04
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(7 + 2 / 12, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(5 + 10 / 12, "feet"),
  17009. weight: math.unit(264, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/gault/front.svg",
  17013. extra: 161 / 140,
  17014. bottom: 0.028
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Normal",
  17021. height: math.unit(5 + 10 / 12, "feet"),
  17022. default: true
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17028. {
  17029. front: {
  17030. height: math.unit(6, "feet"),
  17031. weight: math.unit(150, "lb"),
  17032. name: "Front",
  17033. image: {
  17034. source: "./media/characters/shard/front.svg",
  17035. extra: 273 / 238,
  17036. bottom: 0.02
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(3 + 6 / 12, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(5 + 11 / 12, "feet"),
  17053. weight: math.unit(146, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/ashe/front.svg",
  17057. extra: 400 / 373,
  17058. bottom: 0.01
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Normal",
  17065. height: math.unit(5 + 11 / 12, "feet"),
  17066. default: true
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17072. {
  17073. front: {
  17074. height: math.unit(5 + 5 / 12, "feet"),
  17075. weight: math.unit(135, "lb"),
  17076. name: "Front",
  17077. image: {
  17078. source: "./media/characters/beatrix/front.svg",
  17079. extra: 392 / 379,
  17080. bottom: 0.01
  17081. }
  17082. },
  17083. },
  17084. [
  17085. {
  17086. name: "Normal",
  17087. height: math.unit(6, "feet"),
  17088. default: true
  17089. },
  17090. ]
  17091. ))
  17092. characterMakers.push(() => makeCharacter(
  17093. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17094. {
  17095. front: {
  17096. height: math.unit(6 + 2/12, "feet"),
  17097. weight: math.unit(135, "lb"),
  17098. name: "Front",
  17099. image: {
  17100. source: "./media/characters/ignatius/front.svg",
  17101. extra: 1380/1259,
  17102. bottom: 27/1407
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(6 + 2/12, "feet"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(6 + 2 / 12, "feet"),
  17119. weight: math.unit(138, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/mei-li/front.svg",
  17123. extra: 237 / 229,
  17124. bottom: 0.03
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(6 + 2 / 12, "feet"),
  17132. default: true
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17138. {
  17139. front: {
  17140. height: math.unit(2 + 4 / 12, "feet"),
  17141. weight: math.unit(62, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/puru/front.svg",
  17145. extra: 206 / 149,
  17146. bottom: 0.06
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Normal",
  17153. height: math.unit(2 + 4 / 12, "feet"),
  17154. default: true
  17155. },
  17156. ]
  17157. ))
  17158. characterMakers.push(() => makeCharacter(
  17159. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17160. {
  17161. anthro: {
  17162. height: math.unit(5 + 8/12, "feet"),
  17163. weight: math.unit(200, "lb"),
  17164. energyNeed: math.unit(2000, "kcal"),
  17165. name: "Anthro",
  17166. image: {
  17167. source: "./media/characters/kee/anthro.svg",
  17168. extra: 3251/3184,
  17169. bottom: 250/3501
  17170. }
  17171. },
  17172. taur: {
  17173. height: math.unit(11, "feet"),
  17174. weight: math.unit(500, "lb"),
  17175. energyNeed: math.unit(5000, "kcal"),
  17176. name: "Taur",
  17177. image: {
  17178. source: "./media/characters/kee/taur.svg",
  17179. extra: 1362/1320,
  17180. bottom: 83/1445
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(5 + 8/12, "feet"),
  17188. default: true
  17189. },
  17190. {
  17191. name: "Macro",
  17192. height: math.unit(35, "feet")
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17198. {
  17199. anthro: {
  17200. height: math.unit(7, "feet"),
  17201. weight: math.unit(190, "lb"),
  17202. name: "Anthro",
  17203. image: {
  17204. source: "./media/characters/cobalt-dracha/anthro.svg",
  17205. extra: 231 / 225,
  17206. bottom: 0.04
  17207. }
  17208. },
  17209. feral: {
  17210. height: math.unit(9 + 7 / 12, "feet"),
  17211. weight: math.unit(294, "lb"),
  17212. name: "Feral",
  17213. image: {
  17214. source: "./media/characters/cobalt-dracha/feral.svg",
  17215. extra: 692 / 633,
  17216. bottom: 0.05
  17217. }
  17218. },
  17219. },
  17220. [
  17221. {
  17222. name: "Normal",
  17223. height: math.unit(7, "feet"),
  17224. default: true
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17230. {
  17231. fallen: {
  17232. height: math.unit(11 + 8 / 12, "feet"),
  17233. weight: math.unit(485, "lb"),
  17234. name: "Java (Fallen)",
  17235. rename: true,
  17236. image: {
  17237. source: "./media/characters/java/fallen.svg",
  17238. extra: 226 / 208,
  17239. bottom: 0.005
  17240. }
  17241. },
  17242. godkin: {
  17243. height: math.unit(10 + 6 / 12, "feet"),
  17244. weight: math.unit(328, "lb"),
  17245. name: "Java (Godkin)",
  17246. rename: true,
  17247. image: {
  17248. source: "./media/characters/java/godkin.svg",
  17249. extra: 1104/1068,
  17250. bottom: 36/1140
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(11 + 8 / 12, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17264. {
  17265. front: {
  17266. height: math.unit(5 + 9 / 12, "feet"),
  17267. weight: math.unit(170, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/purna/front.svg",
  17271. extra: 239 / 229,
  17272. bottom: 0.01
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(5 + 9 / 12, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(5 + 9 / 12, "feet"),
  17289. weight: math.unit(142, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/kuva/front.svg",
  17293. extra: 281 / 271,
  17294. bottom: 0.006
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(5 + 9 / 12, "feet"),
  17302. default: true
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17308. {
  17309. anthro: {
  17310. height: math.unit(9 + 2 / 12, "feet"),
  17311. weight: math.unit(270, "lb"),
  17312. name: "Anthro",
  17313. image: {
  17314. source: "./media/characters/embra/anthro.svg",
  17315. extra: 200 / 187,
  17316. bottom: 0.02
  17317. }
  17318. },
  17319. feral: {
  17320. height: math.unit(18 + 8 / 12, "feet"),
  17321. weight: math.unit(576, "lb"),
  17322. name: "Feral",
  17323. image: {
  17324. source: "./media/characters/embra/feral.svg",
  17325. extra: 152 / 137,
  17326. bottom: 0.037
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(9 + 2 / 12, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17340. {
  17341. anthro: {
  17342. height: math.unit(10 + 9 / 12, "feet"),
  17343. weight: math.unit(224, "lb"),
  17344. name: "Anthro",
  17345. image: {
  17346. source: "./media/characters/grottos/anthro.svg",
  17347. extra: 350 / 332,
  17348. bottom: 0.045
  17349. }
  17350. },
  17351. feral: {
  17352. height: math.unit(20 + 7 / 12, "feet"),
  17353. weight: math.unit(629, "lb"),
  17354. name: "Feral",
  17355. image: {
  17356. source: "./media/characters/grottos/feral.svg",
  17357. extra: 207 / 190,
  17358. bottom: 0.05
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Normal",
  17365. height: math.unit(10 + 9 / 12, "feet"),
  17366. default: true
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17372. {
  17373. anthro: {
  17374. height: math.unit(9 + 6 / 12, "feet"),
  17375. weight: math.unit(298, "lb"),
  17376. name: "Anthro",
  17377. image: {
  17378. source: "./media/characters/frifna/anthro.svg",
  17379. extra: 282 / 269,
  17380. bottom: 0.015
  17381. }
  17382. },
  17383. feral: {
  17384. height: math.unit(16 + 2 / 12, "feet"),
  17385. weight: math.unit(624, "lb"),
  17386. name: "Feral",
  17387. image: {
  17388. source: "./media/characters/frifna/feral.svg"
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(9 + 6 / 12, "feet"),
  17396. default: true
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17402. {
  17403. front: {
  17404. height: math.unit(6 + 2 / 12, "feet"),
  17405. weight: math.unit(168, "lb"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/elise/front.svg",
  17409. extra: 276 / 271
  17410. }
  17411. },
  17412. },
  17413. [
  17414. {
  17415. name: "Normal",
  17416. height: math.unit(6 + 2 / 12, "feet"),
  17417. default: true
  17418. },
  17419. ]
  17420. ))
  17421. characterMakers.push(() => makeCharacter(
  17422. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17423. {
  17424. front: {
  17425. height: math.unit(5 + 10 / 12, "feet"),
  17426. weight: math.unit(210, "lb"),
  17427. name: "Front",
  17428. image: {
  17429. source: "./media/characters/glade/front.svg",
  17430. extra: 258 / 247,
  17431. bottom: 0.008
  17432. }
  17433. },
  17434. },
  17435. [
  17436. {
  17437. name: "Normal",
  17438. height: math.unit(5 + 10 / 12, "feet"),
  17439. default: true
  17440. },
  17441. ]
  17442. ))
  17443. characterMakers.push(() => makeCharacter(
  17444. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17445. {
  17446. front: {
  17447. height: math.unit(5 + 10 / 12, "feet"),
  17448. weight: math.unit(129, "lb"),
  17449. name: "Front",
  17450. image: {
  17451. source: "./media/characters/rina/front.svg",
  17452. extra: 266 / 255,
  17453. bottom: 0.005
  17454. }
  17455. },
  17456. },
  17457. [
  17458. {
  17459. name: "Normal",
  17460. height: math.unit(5 + 10 / 12, "feet"),
  17461. default: true
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17467. {
  17468. front: {
  17469. height: math.unit(6 + 1 / 12, "feet"),
  17470. weight: math.unit(192, "lb"),
  17471. name: "Front",
  17472. image: {
  17473. source: "./media/characters/veronica/front.svg",
  17474. extra: 319 / 309,
  17475. bottom: 0.005
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(6 + 1 / 12, "feet"),
  17483. default: true
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17489. {
  17490. front: {
  17491. height: math.unit(9 + 3 / 12, "feet"),
  17492. weight: math.unit(1100, "lb"),
  17493. name: "Front",
  17494. image: {
  17495. source: "./media/characters/braxton/front.svg",
  17496. extra: 1057 / 984,
  17497. bottom: 0.05
  17498. }
  17499. },
  17500. },
  17501. [
  17502. {
  17503. name: "Normal",
  17504. height: math.unit(9 + 3 / 12, "feet")
  17505. },
  17506. {
  17507. name: "Giant",
  17508. height: math.unit(300, "feet"),
  17509. default: true
  17510. },
  17511. {
  17512. name: "Macro",
  17513. height: math.unit(700, "feet")
  17514. },
  17515. {
  17516. name: "Megamacro",
  17517. height: math.unit(6000, "feet")
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(6 + 7 / 12, "feet"),
  17526. weight: math.unit(150, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/blue-feyonics/front.svg",
  17530. extra: 1403 / 1306,
  17531. bottom: 0.047
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(6 + 7 / 12, "feet"),
  17539. default: true
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17545. {
  17546. front: {
  17547. height: math.unit(1.8, "meters"),
  17548. weight: math.unit(60, "kg"),
  17549. name: "Front",
  17550. image: {
  17551. source: "./media/characters/maxwell/front.svg",
  17552. extra: 2060 / 1873
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Micro",
  17559. height: math.unit(1, "mm")
  17560. },
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(1.8, "meter"),
  17564. default: true
  17565. },
  17566. {
  17567. name: "Macro",
  17568. height: math.unit(30, "meters")
  17569. },
  17570. {
  17571. name: "Megamacro",
  17572. height: math.unit(10, "km")
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17578. {
  17579. front: {
  17580. height: math.unit(6, "feet"),
  17581. weight: math.unit(150, "lb"),
  17582. name: "Front",
  17583. image: {
  17584. source: "./media/characters/jack/front.svg",
  17585. extra: 1754 / 1640,
  17586. bottom: 0.01
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(80000, "feet"),
  17594. default: true
  17595. },
  17596. {
  17597. name: "Max size",
  17598. height: math.unit(10, "lightyears")
  17599. },
  17600. ]
  17601. ))
  17602. characterMakers.push(() => makeCharacter(
  17603. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17604. {
  17605. urban: {
  17606. height: math.unit(5, "feet"),
  17607. weight: math.unit(240, "lb"),
  17608. name: "Urban",
  17609. image: {
  17610. source: "./media/characters/cafat/urban.svg",
  17611. extra: 1223/1126,
  17612. bottom: 205/1428
  17613. }
  17614. },
  17615. summer: {
  17616. height: math.unit(5, "feet"),
  17617. weight: math.unit(240, "lb"),
  17618. name: "Summer",
  17619. image: {
  17620. source: "./media/characters/cafat/summer.svg",
  17621. extra: 1223/1126,
  17622. bottom: 205/1428
  17623. }
  17624. },
  17625. winter: {
  17626. height: math.unit(5, "feet"),
  17627. weight: math.unit(240, "lb"),
  17628. name: "Winter",
  17629. image: {
  17630. source: "./media/characters/cafat/winter.svg",
  17631. extra: 1223/1126,
  17632. bottom: 205/1428
  17633. }
  17634. },
  17635. lingerie: {
  17636. height: math.unit(5, "feet"),
  17637. weight: math.unit(240, "lb"),
  17638. name: "Lingerie",
  17639. image: {
  17640. source: "./media/characters/cafat/lingerie.svg",
  17641. extra: 1223/1126,
  17642. bottom: 205/1428
  17643. }
  17644. },
  17645. upright: {
  17646. height: math.unit(6.3, "feet"),
  17647. weight: math.unit(240, "lb"),
  17648. name: "Upright",
  17649. image: {
  17650. source: "./media/characters/cafat/upright.svg",
  17651. bottom: 0.01
  17652. }
  17653. },
  17654. uprightFull: {
  17655. height: math.unit(6.3, "feet"),
  17656. weight: math.unit(240, "lb"),
  17657. name: "Upright (Full)",
  17658. image: {
  17659. source: "./media/characters/cafat/upright-full.svg",
  17660. bottom: 0.01
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Small",
  17667. height: math.unit(5, "feet"),
  17668. default: true
  17669. },
  17670. {
  17671. name: "Large",
  17672. height: math.unit(13, "feet")
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17678. {
  17679. front: {
  17680. height: math.unit(6, "feet"),
  17681. weight: math.unit(150, "lb"),
  17682. name: "Front",
  17683. image: {
  17684. source: "./media/characters/verin-raharra/front.svg",
  17685. extra: 5019 / 4835,
  17686. bottom: 0.023
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(7 + 5 / 12, "feet"),
  17694. default: true
  17695. },
  17696. {
  17697. name: "Upsized",
  17698. height: math.unit(20, "feet")
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(7, "feet"),
  17707. weight: math.unit(230, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/nakata/front.svg",
  17711. extra: 1.005,
  17712. bottom: 0.01
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(7, "feet"),
  17720. default: true
  17721. },
  17722. {
  17723. name: "Big",
  17724. height: math.unit(14, "feet")
  17725. },
  17726. {
  17727. name: "Macro",
  17728. height: math.unit(400, "feet")
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17734. {
  17735. front: {
  17736. height: math.unit(4.91, "feet"),
  17737. weight: math.unit(100, "lb"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/lily/front.svg",
  17741. extra: 1585 / 1415,
  17742. bottom: 0.02
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(4.91, "feet"),
  17750. default: true
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17756. {
  17757. laying: {
  17758. height: math.unit(4 + 4 / 12, "feet"),
  17759. weight: math.unit(600, "lb"),
  17760. name: "Laying",
  17761. image: {
  17762. source: "./media/characters/sheila/laying.svg",
  17763. extra: 1333 / 1265,
  17764. bottom: 0.16
  17765. }
  17766. },
  17767. },
  17768. [
  17769. {
  17770. name: "Normal",
  17771. height: math.unit(4 + 4 / 12, "feet"),
  17772. default: true
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17778. {
  17779. front: {
  17780. height: math.unit(6, "feet"),
  17781. weight: math.unit(190, "lb"),
  17782. name: "Front",
  17783. image: {
  17784. source: "./media/characters/sax/front.svg",
  17785. extra: 1187 / 973,
  17786. bottom: 0.042
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Micro",
  17793. height: math.unit(4, "inches"),
  17794. default: true
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(6, "feet"),
  17803. weight: math.unit(150, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/pandora/front.svg",
  17807. extra: 2720 / 2556,
  17808. bottom: 0.015
  17809. }
  17810. },
  17811. back: {
  17812. height: math.unit(6, "feet"),
  17813. weight: math.unit(150, "lb"),
  17814. name: "Back",
  17815. image: {
  17816. source: "./media/characters/pandora/back.svg",
  17817. extra: 2720 / 2556,
  17818. bottom: 0.01
  17819. }
  17820. },
  17821. beans: {
  17822. height: math.unit(6 / 8, "feet"),
  17823. name: "Beans",
  17824. image: {
  17825. source: "./media/characters/pandora/beans.svg"
  17826. }
  17827. },
  17828. collar: {
  17829. height: math.unit(0.31, "feet"),
  17830. name: "Collar",
  17831. image: {
  17832. source: "./media/characters/pandora/collar.svg"
  17833. }
  17834. },
  17835. skirt: {
  17836. height: math.unit(6, "feet"),
  17837. weight: math.unit(150, "lb"),
  17838. name: "Skirt",
  17839. image: {
  17840. source: "./media/characters/pandora/skirt.svg",
  17841. extra: 1622 / 1525,
  17842. bottom: 0.015
  17843. }
  17844. },
  17845. hoodie: {
  17846. height: math.unit(6, "feet"),
  17847. weight: math.unit(150, "lb"),
  17848. name: "Hoodie",
  17849. image: {
  17850. source: "./media/characters/pandora/hoodie.svg",
  17851. extra: 1622 / 1525,
  17852. bottom: 0.015
  17853. }
  17854. },
  17855. casual: {
  17856. height: math.unit(6, "feet"),
  17857. weight: math.unit(150, "lb"),
  17858. name: "Casual",
  17859. image: {
  17860. source: "./media/characters/pandora/casual.svg",
  17861. extra: 1622 / 1525,
  17862. bottom: 0.015
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(6, "feet")
  17870. },
  17871. {
  17872. name: "Big Steppy",
  17873. height: math.unit(1, "km"),
  17874. default: true
  17875. },
  17876. {
  17877. name: "Galactic Steppy",
  17878. height: math.unit(2, "gigameters")
  17879. },
  17880. ]
  17881. ))
  17882. characterMakers.push(() => makeCharacter(
  17883. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17884. {
  17885. side: {
  17886. height: math.unit(10, "feet"),
  17887. weight: math.unit(800, "kg"),
  17888. name: "Side",
  17889. image: {
  17890. source: "./media/characters/venio-darcony/side.svg",
  17891. extra: 1373 / 1003,
  17892. bottom: 0.037
  17893. }
  17894. },
  17895. front: {
  17896. height: math.unit(19, "feet"),
  17897. weight: math.unit(800, "kg"),
  17898. name: "Front",
  17899. image: {
  17900. source: "./media/characters/venio-darcony/front.svg"
  17901. }
  17902. },
  17903. back: {
  17904. height: math.unit(19, "feet"),
  17905. weight: math.unit(800, "kg"),
  17906. name: "Back",
  17907. image: {
  17908. source: "./media/characters/venio-darcony/back.svg"
  17909. }
  17910. },
  17911. sideNsfw: {
  17912. height: math.unit(10, "feet"),
  17913. weight: math.unit(800, "kg"),
  17914. name: "Side (NSFW)",
  17915. image: {
  17916. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17917. extra: 1373 / 1003,
  17918. bottom: 0.037
  17919. }
  17920. },
  17921. frontNsfw: {
  17922. height: math.unit(19, "feet"),
  17923. weight: math.unit(800, "kg"),
  17924. name: "Front (NSFW)",
  17925. image: {
  17926. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17927. }
  17928. },
  17929. backNsfw: {
  17930. height: math.unit(19, "feet"),
  17931. weight: math.unit(800, "kg"),
  17932. name: "Back (NSFW)",
  17933. image: {
  17934. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17935. }
  17936. },
  17937. sideArmored: {
  17938. height: math.unit(10, "feet"),
  17939. weight: math.unit(800, "kg"),
  17940. name: "Side (Armored)",
  17941. image: {
  17942. source: "./media/characters/venio-darcony/side-armored.svg",
  17943. extra: 1373 / 1003,
  17944. bottom: 0.037
  17945. }
  17946. },
  17947. frontArmored: {
  17948. height: math.unit(19, "feet"),
  17949. weight: math.unit(900, "kg"),
  17950. name: "Front (Armored)",
  17951. image: {
  17952. source: "./media/characters/venio-darcony/front-armored.svg"
  17953. }
  17954. },
  17955. backArmored: {
  17956. height: math.unit(19, "feet"),
  17957. weight: math.unit(900, "kg"),
  17958. name: "Back (Armored)",
  17959. image: {
  17960. source: "./media/characters/venio-darcony/back-armored.svg"
  17961. }
  17962. },
  17963. sword: {
  17964. height: math.unit(10, "feet"),
  17965. weight: math.unit(50, "lb"),
  17966. name: "Sword",
  17967. image: {
  17968. source: "./media/characters/venio-darcony/sword.svg"
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(10, "feet")
  17976. },
  17977. {
  17978. name: "Macro",
  17979. height: math.unit(130, "feet"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Macro+",
  17984. height: math.unit(240, "feet")
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17990. {
  17991. front: {
  17992. height: math.unit(6, "feet"),
  17993. weight: math.unit(150, "lb"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/veski/front.svg",
  17997. extra: 1299 / 1225,
  17998. bottom: 0.04
  17999. }
  18000. },
  18001. back: {
  18002. height: math.unit(6, "feet"),
  18003. weight: math.unit(150, "lb"),
  18004. name: "Back",
  18005. image: {
  18006. source: "./media/characters/veski/back.svg",
  18007. extra: 1299 / 1225,
  18008. bottom: 0.008
  18009. }
  18010. },
  18011. maw: {
  18012. height: math.unit(1.5 * 1.21, "feet"),
  18013. name: "Maw",
  18014. image: {
  18015. source: "./media/characters/veski/maw.svg"
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Macro",
  18022. height: math.unit(2, "km"),
  18023. default: true
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18029. {
  18030. front: {
  18031. height: math.unit(5 + 7 / 12, "feet"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/isabelle/front.svg",
  18035. extra: 2130 / 1976,
  18036. bottom: 0.05
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Supermicro",
  18043. height: math.unit(10, "micrometers")
  18044. },
  18045. {
  18046. name: "Micro",
  18047. height: math.unit(1, "inch")
  18048. },
  18049. {
  18050. name: "Tiny",
  18051. height: math.unit(5, "inches")
  18052. },
  18053. {
  18054. name: "Standard",
  18055. height: math.unit(5 + 7 / 12, "inches")
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(80, "meters"),
  18060. default: true
  18061. },
  18062. {
  18063. name: "Megamacro",
  18064. height: math.unit(250, "meters")
  18065. },
  18066. {
  18067. name: "Gigamacro",
  18068. height: math.unit(5, "km")
  18069. },
  18070. {
  18071. name: "Cosmic",
  18072. height: math.unit(2.5e6, "miles")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(6, "feet"),
  18081. weight: math.unit(150, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/hanzo/front.svg",
  18085. extra: 374 / 344,
  18086. bottom: 0.02
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(8, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(7, "feet"),
  18103. weight: math.unit(130, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/anna/front.svg",
  18107. extra: 169 / 145,
  18108. bottom: 0.06
  18109. }
  18110. },
  18111. full: {
  18112. height: math.unit(4.96, "feet"),
  18113. weight: math.unit(220, "lb"),
  18114. name: "Full",
  18115. image: {
  18116. source: "./media/characters/anna/full.svg",
  18117. extra: 138 / 114,
  18118. bottom: 0.15
  18119. }
  18120. },
  18121. tongue: {
  18122. height: math.unit(2.53, "feet"),
  18123. name: "Tongue",
  18124. image: {
  18125. source: "./media/characters/anna/tongue.svg"
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(7, "feet"),
  18133. default: true
  18134. },
  18135. ]
  18136. ))
  18137. characterMakers.push(() => makeCharacter(
  18138. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18139. {
  18140. front: {
  18141. height: math.unit(7, "feet"),
  18142. weight: math.unit(150, "lb"),
  18143. name: "Front",
  18144. image: {
  18145. source: "./media/characters/ian-corvid/front.svg",
  18146. extra: 150 / 142,
  18147. bottom: 0.02
  18148. }
  18149. },
  18150. back: {
  18151. height: math.unit(7, "feet"),
  18152. weight: math.unit(150, "lb"),
  18153. name: "Back",
  18154. image: {
  18155. source: "./media/characters/ian-corvid/back.svg",
  18156. extra: 150 / 143,
  18157. bottom: 0.01
  18158. }
  18159. },
  18160. stomping: {
  18161. height: math.unit(7, "feet"),
  18162. weight: math.unit(150, "lb"),
  18163. name: "Stomping",
  18164. image: {
  18165. source: "./media/characters/ian-corvid/stomping.svg",
  18166. extra: 76 / 72
  18167. }
  18168. },
  18169. sitting: {
  18170. height: math.unit(7 / 1.8, "feet"),
  18171. weight: math.unit(150, "lb"),
  18172. name: "Sitting",
  18173. image: {
  18174. source: "./media/characters/ian-corvid/sitting.svg",
  18175. extra: 1400 / 1269,
  18176. bottom: 0.15
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Tiny Microw",
  18183. height: math.unit(1, "inch")
  18184. },
  18185. {
  18186. name: "Microw",
  18187. height: math.unit(6, "inches")
  18188. },
  18189. {
  18190. name: "Crow",
  18191. height: math.unit(7 + 1 / 12, "feet"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Macrow",
  18196. height: math.unit(176, "feet")
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(5 + 7 / 12, "feet"),
  18205. weight: math.unit(147, "lb"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/natalie-kellon/front.svg",
  18209. extra: 1214 / 1141,
  18210. bottom: 0.02
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Micro",
  18217. height: math.unit(1 / 16, "inch")
  18218. },
  18219. {
  18220. name: "Tiny",
  18221. height: math.unit(4, "inches")
  18222. },
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(5 + 7 / 12, "feet"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Amazon",
  18230. height: math.unit(12, "feet")
  18231. },
  18232. {
  18233. name: "Giantess",
  18234. height: math.unit(160, "meters")
  18235. },
  18236. {
  18237. name: "Titaness",
  18238. height: math.unit(800, "meters")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6, "feet"),
  18247. weight: math.unit(150, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/alluria/front.svg",
  18251. extra: 806 / 738,
  18252. bottom: 0.01
  18253. }
  18254. },
  18255. side: {
  18256. height: math.unit(6, "feet"),
  18257. weight: math.unit(150, "lb"),
  18258. name: "Side",
  18259. image: {
  18260. source: "./media/characters/alluria/side.svg",
  18261. extra: 800 / 750,
  18262. }
  18263. },
  18264. back: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Back",
  18268. image: {
  18269. source: "./media/characters/alluria/back.svg",
  18270. extra: 806 / 738,
  18271. }
  18272. },
  18273. frontMaid: {
  18274. height: math.unit(6, "feet"),
  18275. weight: math.unit(150, "lb"),
  18276. name: "Front (Maid)",
  18277. image: {
  18278. source: "./media/characters/alluria/front-maid.svg",
  18279. extra: 806 / 738,
  18280. bottom: 0.01
  18281. }
  18282. },
  18283. sideMaid: {
  18284. height: math.unit(6, "feet"),
  18285. weight: math.unit(150, "lb"),
  18286. name: "Side (Maid)",
  18287. image: {
  18288. source: "./media/characters/alluria/side-maid.svg",
  18289. extra: 800 / 750,
  18290. bottom: 0.005
  18291. }
  18292. },
  18293. backMaid: {
  18294. height: math.unit(6, "feet"),
  18295. weight: math.unit(150, "lb"),
  18296. name: "Back (Maid)",
  18297. image: {
  18298. source: "./media/characters/alluria/back-maid.svg",
  18299. extra: 806 / 738,
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Micro",
  18306. height: math.unit(6, "inches"),
  18307. default: true
  18308. },
  18309. ]
  18310. ))
  18311. characterMakers.push(() => makeCharacter(
  18312. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18313. {
  18314. front: {
  18315. height: math.unit(6, "feet"),
  18316. weight: math.unit(150, "lb"),
  18317. name: "Front",
  18318. image: {
  18319. source: "./media/characters/kyle/front.svg",
  18320. extra: 1069 / 962,
  18321. bottom: 77.228 / 1727.45
  18322. }
  18323. },
  18324. },
  18325. [
  18326. {
  18327. name: "Macro",
  18328. height: math.unit(150, "feet"),
  18329. default: true
  18330. },
  18331. ]
  18332. ))
  18333. characterMakers.push(() => makeCharacter(
  18334. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18335. {
  18336. front: {
  18337. height: math.unit(6, "feet"),
  18338. weight: math.unit(300, "lb"),
  18339. name: "Front",
  18340. image: {
  18341. source: "./media/characters/duncan/front.svg",
  18342. extra: 1650 / 1482,
  18343. bottom: 0.05
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Macro",
  18350. height: math.unit(100, "feet"),
  18351. default: true
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18357. {
  18358. front: {
  18359. height: math.unit(5 + 4 / 12, "feet"),
  18360. weight: math.unit(220, "lb"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/memory/front.svg",
  18364. extra: 3641 / 3545,
  18365. bottom: 0.03
  18366. }
  18367. },
  18368. back: {
  18369. height: math.unit(5 + 4 / 12, "feet"),
  18370. weight: math.unit(220, "lb"),
  18371. name: "Back",
  18372. image: {
  18373. source: "./media/characters/memory/back.svg",
  18374. extra: 3641 / 3545,
  18375. bottom: 0.025
  18376. }
  18377. },
  18378. frontSkirt: {
  18379. height: math.unit(5 + 4 / 12, "feet"),
  18380. weight: math.unit(220, "lb"),
  18381. name: "Front (Skirt)",
  18382. image: {
  18383. source: "./media/characters/memory/front-skirt.svg",
  18384. extra: 3641 / 3545,
  18385. bottom: 0.03
  18386. }
  18387. },
  18388. frontDress: {
  18389. height: math.unit(5 + 4 / 12, "feet"),
  18390. weight: math.unit(220, "lb"),
  18391. name: "Front (Dress)",
  18392. image: {
  18393. source: "./media/characters/memory/front-dress.svg",
  18394. extra: 3641 / 3545,
  18395. bottom: 0.03
  18396. }
  18397. },
  18398. },
  18399. [
  18400. {
  18401. name: "Micro",
  18402. height: math.unit(6, "inches"),
  18403. default: true
  18404. },
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(5 + 4 / 12, "feet")
  18408. },
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18413. {
  18414. front: {
  18415. height: math.unit(4 + 11 / 12, "feet"),
  18416. weight: math.unit(100, "lb"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/luno/front.svg",
  18420. extra: 1535 / 1487,
  18421. bottom: 0.03
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Micro",
  18428. height: math.unit(3, "inches")
  18429. },
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(4 + 11 / 12, "feet"),
  18433. default: true
  18434. },
  18435. {
  18436. name: "Macro",
  18437. height: math.unit(300, "feet")
  18438. },
  18439. {
  18440. name: "Megamacro",
  18441. height: math.unit(700, "miles")
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18447. {
  18448. front: {
  18449. height: math.unit(6 + 2 / 12, "feet"),
  18450. weight: math.unit(170, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/jamesy/front.svg",
  18454. extra: 440 / 382,
  18455. bottom: 0.005
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Micro",
  18462. height: math.unit(3, "inches")
  18463. },
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(6 + 2 / 12, "feet"),
  18467. default: true
  18468. },
  18469. {
  18470. name: "Macro",
  18471. height: math.unit(300, "feet")
  18472. },
  18473. {
  18474. name: "Megamacro",
  18475. height: math.unit(700, "miles")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(6, "feet"),
  18484. weight: math.unit(160, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/mark/front.svg",
  18488. extra: 3300 / 3100,
  18489. bottom: 136.42 / 3440.47
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Macro",
  18496. height: math.unit(120, "meters")
  18497. },
  18498. {
  18499. name: "Bigger Macro",
  18500. height: math.unit(350, "meters")
  18501. },
  18502. {
  18503. name: "Megamacro",
  18504. height: math.unit(8, "km"),
  18505. default: true
  18506. },
  18507. {
  18508. name: "Continental",
  18509. height: math.unit(4550, "km")
  18510. },
  18511. {
  18512. name: "Planetary",
  18513. height: math.unit(65000, "km")
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18519. {
  18520. front: {
  18521. height: math.unit(6, "feet"),
  18522. weight: math.unit(400, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/mac/front.svg",
  18526. extra: 1048 / 987.7,
  18527. bottom: 60 / 1107.6,
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Macro",
  18534. height: math.unit(500, "feet"),
  18535. default: true
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(5 + 2 / 12, "feet"),
  18544. weight: math.unit(190, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/bari/front.svg",
  18548. extra: 3156 / 2880,
  18549. bottom: 0.03
  18550. }
  18551. },
  18552. back: {
  18553. height: math.unit(5 + 2 / 12, "feet"),
  18554. weight: math.unit(190, "lb"),
  18555. name: "Back",
  18556. image: {
  18557. source: "./media/characters/bari/back.svg",
  18558. extra: 3260 / 2834,
  18559. bottom: 0.025
  18560. }
  18561. },
  18562. frontPlush: {
  18563. height: math.unit(5 + 2 / 12, "feet"),
  18564. weight: math.unit(190, "lb"),
  18565. name: "Front (Plush)",
  18566. image: {
  18567. source: "./media/characters/bari/front-plush.svg",
  18568. extra: 1112 / 1061,
  18569. bottom: 0.002
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Micro",
  18576. height: math.unit(3, "inches")
  18577. },
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(5 + 2 / 12, "feet"),
  18581. default: true
  18582. },
  18583. {
  18584. name: "Macro",
  18585. height: math.unit(20, "feet")
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(6 + 1 / 12, "feet"),
  18594. weight: math.unit(275, "lb"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/hunter-misha-raven/front.svg"
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Mortal",
  18604. height: math.unit(6 + 1 / 12, "feet")
  18605. },
  18606. {
  18607. name: "Divine",
  18608. height: math.unit(1.12134e34, "parsecs"),
  18609. default: true
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(6 + 3 / 12, "feet"),
  18618. weight: math.unit(220, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/max-calore/front.svg",
  18622. extra: 1700 / 1648,
  18623. bottom: 0.01
  18624. }
  18625. },
  18626. back: {
  18627. height: math.unit(6 + 3 / 12, "feet"),
  18628. weight: math.unit(220, "lb"),
  18629. name: "Back",
  18630. image: {
  18631. source: "./media/characters/max-calore/back.svg",
  18632. extra: 1700 / 1648,
  18633. bottom: 0.01
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(6 + 3 / 12, "feet"),
  18641. default: true
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18647. {
  18648. side: {
  18649. height: math.unit(2 + 8 / 12, "feet"),
  18650. weight: math.unit(99, "lb"),
  18651. name: "Side",
  18652. image: {
  18653. source: "./media/characters/aspen/side.svg",
  18654. extra: 152 / 138,
  18655. bottom: 0.032
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(2 + 8 / 12, "feet"),
  18663. default: true
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18669. {
  18670. side: {
  18671. height: math.unit(3 + 2 / 12, "feet"),
  18672. weight: math.unit(224, "lb"),
  18673. name: "Side",
  18674. image: {
  18675. source: "./media/characters/sheila-feral-wolf/side.svg",
  18676. extra: 179 / 166,
  18677. bottom: 0.03
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(3 + 2 / 12, "feet"),
  18685. default: true
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18691. {
  18692. side: {
  18693. height: math.unit(1 + 9 / 12, "feet"),
  18694. weight: math.unit(38, "lb"),
  18695. name: "Side",
  18696. image: {
  18697. source: "./media/characters/michelle/side.svg",
  18698. extra: 147 / 136.7,
  18699. bottom: 0.03
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(1 + 9 / 12, "feet"),
  18707. default: true
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18713. {
  18714. front: {
  18715. height: math.unit(1.54, "feet"),
  18716. weight: math.unit(50, "lb"),
  18717. name: "Front",
  18718. image: {
  18719. source: "./media/characters/nino/front.svg"
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Normal",
  18726. height: math.unit(1.54, "feet"),
  18727. default: true
  18728. },
  18729. ]
  18730. ))
  18731. characterMakers.push(() => makeCharacter(
  18732. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18733. {
  18734. front: {
  18735. height: math.unit(1.49, "feet"),
  18736. weight: math.unit(45, "lb"),
  18737. name: "Front",
  18738. image: {
  18739. source: "./media/characters/viola/front.svg"
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Normal",
  18746. height: math.unit(1.49, "feet"),
  18747. default: true
  18748. },
  18749. ]
  18750. ))
  18751. characterMakers.push(() => makeCharacter(
  18752. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18753. {
  18754. front: {
  18755. height: math.unit(6 + 5 / 12, "feet"),
  18756. weight: math.unit(580, "lb"),
  18757. name: "Front",
  18758. image: {
  18759. source: "./media/characters/atlas/front.svg",
  18760. extra: 298.5 / 290,
  18761. bottom: 0.015
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(6 + 5 / 12, "feet"),
  18769. default: true
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18775. {
  18776. side: {
  18777. height: math.unit(15.6, "inches"),
  18778. weight: math.unit(10, "lb"),
  18779. name: "Side",
  18780. image: {
  18781. source: "./media/characters/davy/side.svg",
  18782. extra: 200 / 170,
  18783. bottom: 0.01
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Normal",
  18790. height: math.unit(15.6, "inches"),
  18791. default: true
  18792. },
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18797. {
  18798. side: {
  18799. height: math.unit(4 + 8 / 12, "feet"),
  18800. weight: math.unit(166, "lb"),
  18801. name: "Side",
  18802. image: {
  18803. source: "./media/characters/fiona/side.svg",
  18804. extra: 232 / 220,
  18805. bottom: 0.03
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(4 + 8 / 12, "feet"),
  18813. default: true
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18819. {
  18820. front: {
  18821. height: math.unit(26, "inches"),
  18822. weight: math.unit(35, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/lyla/front.svg",
  18826. bottom: 0.1
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Normal",
  18833. height: math.unit(3, "feet"),
  18834. default: true
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18840. {
  18841. side: {
  18842. height: math.unit(1.8, "feet"),
  18843. weight: math.unit(44, "lb"),
  18844. name: "Side",
  18845. image: {
  18846. source: "./media/characters/perseus/side.svg",
  18847. bottom: 0.21
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Normal",
  18854. height: math.unit(1.8, "feet"),
  18855. default: true
  18856. },
  18857. ]
  18858. ))
  18859. characterMakers.push(() => makeCharacter(
  18860. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18861. {
  18862. side: {
  18863. height: math.unit(4 + 2 / 12, "feet"),
  18864. weight: math.unit(20, "lb"),
  18865. name: "Side",
  18866. image: {
  18867. source: "./media/characters/remus/side.svg"
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(4 + 2 / 12, "feet"),
  18875. default: true
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(4 + 11 / 12, "feet"),
  18884. weight: math.unit(114, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/raf/front.svg",
  18888. extra: 1504/1339,
  18889. bottom: 26/1530
  18890. }
  18891. },
  18892. side: {
  18893. height: math.unit(4 + 11 / 12, "feet"),
  18894. weight: math.unit(114, "lb"),
  18895. name: "Side",
  18896. image: {
  18897. source: "./media/characters/raf/side.svg",
  18898. extra: 1466/1316,
  18899. bottom: 29/1495
  18900. }
  18901. },
  18902. paw: {
  18903. height: math.unit(1.45, "feet"),
  18904. name: "Paw",
  18905. image: {
  18906. source: "./media/characters/raf/paw.svg"
  18907. },
  18908. extraAttributes: {
  18909. "toeSize": {
  18910. name: "Toe Size",
  18911. power: 2,
  18912. type: "area",
  18913. base: math.unit(0.004, "m^2")
  18914. },
  18915. "padSize": {
  18916. name: "Pad Size",
  18917. power: 2,
  18918. type: "area",
  18919. base: math.unit(0.04, "m^2")
  18920. },
  18921. "footSize": {
  18922. name: "Foot Size",
  18923. power: 2,
  18924. type: "area",
  18925. base: math.unit(0.08, "m^2")
  18926. },
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Micro",
  18933. height: math.unit(2, "inches")
  18934. },
  18935. {
  18936. name: "Normal",
  18937. height: math.unit(4 + 11 / 12, "feet"),
  18938. default: true
  18939. },
  18940. {
  18941. name: "Macro",
  18942. height: math.unit(70, "feet")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(1.5, "meters"),
  18951. weight: math.unit(68, "kg"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/liam-einarr/front.svg",
  18955. extra: 2822 / 2666
  18956. }
  18957. },
  18958. back: {
  18959. height: math.unit(1.5, "meters"),
  18960. weight: math.unit(68, "kg"),
  18961. name: "Back",
  18962. image: {
  18963. source: "./media/characters/liam-einarr/back.svg",
  18964. extra: 2822 / 2666,
  18965. bottom: 0.015
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Normal",
  18972. height: math.unit(1.5, "meters"),
  18973. default: true
  18974. },
  18975. {
  18976. name: "Macro",
  18977. height: math.unit(150, "meters")
  18978. },
  18979. {
  18980. name: "Megamacro",
  18981. height: math.unit(35, "km")
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(6, "feet"),
  18990. weight: math.unit(75, "kg"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/linda/front.svg",
  18994. extra: 930 / 874,
  18995. bottom: 0.004
  18996. }
  18997. },
  18998. },
  18999. [
  19000. {
  19001. name: "Normal",
  19002. height: math.unit(6, "feet"),
  19003. default: true
  19004. },
  19005. ]
  19006. ))
  19007. characterMakers.push(() => makeCharacter(
  19008. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19009. {
  19010. front: {
  19011. height: math.unit(6 + 8 / 12, "feet"),
  19012. weight: math.unit(220, "lb"),
  19013. name: "Front",
  19014. image: {
  19015. source: "./media/characters/caylex/front.svg",
  19016. extra: 821 / 772,
  19017. bottom: 0.07
  19018. }
  19019. },
  19020. back: {
  19021. height: math.unit(6 + 8 / 12, "feet"),
  19022. weight: math.unit(220, "lb"),
  19023. name: "Back",
  19024. image: {
  19025. source: "./media/characters/caylex/back.svg",
  19026. extra: 821 / 772,
  19027. bottom: 0.022
  19028. }
  19029. },
  19030. hand: {
  19031. height: math.unit(1.25, "feet"),
  19032. name: "Hand",
  19033. image: {
  19034. source: "./media/characters/caylex/hand.svg"
  19035. }
  19036. },
  19037. foot: {
  19038. height: math.unit(1.6, "feet"),
  19039. name: "Foot",
  19040. image: {
  19041. source: "./media/characters/caylex/foot.svg"
  19042. }
  19043. },
  19044. armored: {
  19045. height: math.unit(6 + 8 / 12, "feet"),
  19046. weight: math.unit(250, "lb"),
  19047. name: "Armored",
  19048. image: {
  19049. source: "./media/characters/caylex/armored.svg",
  19050. extra: 1420 / 1310,
  19051. bottom: 0.045
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(6 + 8 / 12, "feet"),
  19059. default: true
  19060. },
  19061. {
  19062. name: "Normal+",
  19063. height: math.unit(12, "feet")
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19069. {
  19070. front: {
  19071. height: math.unit(7 + 6 / 12, "feet"),
  19072. weight: math.unit(288, "lb"),
  19073. name: "Front",
  19074. image: {
  19075. source: "./media/characters/alana/front.svg",
  19076. extra: 679 / 653,
  19077. bottom: 22.5 / 701
  19078. }
  19079. },
  19080. },
  19081. [
  19082. {
  19083. name: "Normal",
  19084. height: math.unit(7 + 6 / 12, "feet")
  19085. },
  19086. {
  19087. name: "Large",
  19088. height: math.unit(50, "feet")
  19089. },
  19090. {
  19091. name: "Macro",
  19092. height: math.unit(100, "feet"),
  19093. default: true
  19094. },
  19095. {
  19096. name: "Macro+",
  19097. height: math.unit(200, "feet")
  19098. },
  19099. ]
  19100. ))
  19101. characterMakers.push(() => makeCharacter(
  19102. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19103. {
  19104. front: {
  19105. height: math.unit(6 + 1 / 12, "feet"),
  19106. weight: math.unit(210, "lb"),
  19107. name: "Front",
  19108. image: {
  19109. source: "./media/characters/hasani/front.svg",
  19110. extra: 244 / 232,
  19111. bottom: 0.01
  19112. }
  19113. },
  19114. back: {
  19115. height: math.unit(6 + 1 / 12, "feet"),
  19116. weight: math.unit(210, "lb"),
  19117. name: "Back",
  19118. image: {
  19119. source: "./media/characters/hasani/back.svg",
  19120. extra: 244 / 232,
  19121. bottom: 0.01
  19122. }
  19123. },
  19124. },
  19125. [
  19126. {
  19127. name: "Normal",
  19128. height: math.unit(6 + 1 / 12, "feet")
  19129. },
  19130. {
  19131. name: "Macro",
  19132. height: math.unit(175, "feet"),
  19133. default: true
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19139. {
  19140. front: {
  19141. height: math.unit(1.82, "meters"),
  19142. weight: math.unit(140, "lb"),
  19143. name: "Front",
  19144. image: {
  19145. source: "./media/characters/nita/front.svg",
  19146. extra: 2473 / 2363,
  19147. bottom: 0.01
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(1.82, "m")
  19155. },
  19156. {
  19157. name: "Macro",
  19158. height: math.unit(300, "m")
  19159. },
  19160. {
  19161. name: "Mistake Canon",
  19162. height: math.unit(0.5, "miles"),
  19163. default: true
  19164. },
  19165. {
  19166. name: "Big Mistake",
  19167. height: math.unit(13, "miles")
  19168. },
  19169. {
  19170. name: "Playing God",
  19171. height: math.unit(2450, "miles")
  19172. },
  19173. ]
  19174. ))
  19175. characterMakers.push(() => makeCharacter(
  19176. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19177. {
  19178. front: {
  19179. height: math.unit(4, "feet"),
  19180. weight: math.unit(120, "lb"),
  19181. name: "Front",
  19182. image: {
  19183. source: "./media/characters/shiriko/front.svg",
  19184. extra: 970/934,
  19185. bottom: 5/975
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(4, "feet"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(6, "feet"),
  19202. name: "front",
  19203. image: {
  19204. source: "./media/characters/deja/front.svg",
  19205. extra: 926 / 840,
  19206. bottom: 0.07
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Planck Length",
  19213. height: math.unit(1.6e-35, "meters")
  19214. },
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(30.48, "meters"),
  19218. default: true
  19219. },
  19220. {
  19221. name: "Universal",
  19222. height: math.unit(8.8e26, "meters")
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19228. {
  19229. side: {
  19230. height: math.unit(8, "feet"),
  19231. weight: math.unit(6300, "lb"),
  19232. name: "Side",
  19233. image: {
  19234. source: "./media/characters/anima/side.svg",
  19235. bottom: 0.035
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(8, "feet"),
  19243. default: true
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(8, "feet"),
  19252. weight: math.unit(350, "lb"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/bianca/front.svg",
  19256. extra: 234 / 225,
  19257. bottom: 0.03
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(8, "feet"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(11 + 5/12, "feet"),
  19274. weight: math.unit(1200, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/adinia/front.svg",
  19278. extra: 1767/1641,
  19279. bottom: 44/1811
  19280. },
  19281. extraAttributes: {
  19282. "energyIntake": {
  19283. name: "Energy Intake",
  19284. power: 3,
  19285. type: "energy",
  19286. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19287. },
  19288. }
  19289. },
  19290. back: {
  19291. height: math.unit(11 + 5/12, "feet"),
  19292. weight: math.unit(1200, "lb"),
  19293. name: "Back",
  19294. image: {
  19295. source: "./media/characters/adinia/back.svg",
  19296. extra: 1834/1684,
  19297. bottom: 14/1848
  19298. },
  19299. extraAttributes: {
  19300. "energyIntake": {
  19301. name: "Energy Intake",
  19302. power: 3,
  19303. type: "energy",
  19304. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19305. },
  19306. }
  19307. },
  19308. maw: {
  19309. height: math.unit(3.79, "feet"),
  19310. name: "Maw",
  19311. image: {
  19312. source: "./media/characters/adinia/maw.svg"
  19313. }
  19314. },
  19315. rump: {
  19316. height: math.unit(4.6, "feet"),
  19317. name: "Rump",
  19318. image: {
  19319. source: "./media/characters/adinia/rump.svg"
  19320. }
  19321. },
  19322. },
  19323. [
  19324. {
  19325. name: "Normal",
  19326. height: math.unit(11 + 5 / 12, "feet"),
  19327. default: true
  19328. },
  19329. ]
  19330. ))
  19331. characterMakers.push(() => makeCharacter(
  19332. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19333. {
  19334. front: {
  19335. height: math.unit(3, "meters"),
  19336. weight: math.unit(200, "kg"),
  19337. name: "Front",
  19338. image: {
  19339. source: "./media/characters/lykasa/front.svg",
  19340. extra: 1076 / 976,
  19341. bottom: 0.06
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Normal",
  19348. height: math.unit(3, "meters")
  19349. },
  19350. {
  19351. name: "Kaiju",
  19352. height: math.unit(120, "meters"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Mega Kaiju",
  19357. height: math.unit(240, "km")
  19358. },
  19359. {
  19360. name: "Giga Kaiju",
  19361. height: math.unit(400, "megameters")
  19362. },
  19363. {
  19364. name: "Tera Kaiju",
  19365. height: math.unit(800, "gigameters")
  19366. },
  19367. {
  19368. name: "Kaiju Dragon Goddess",
  19369. height: math.unit(26, "zettaparsecs")
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19375. {
  19376. side: {
  19377. height: math.unit(283 / 124 * 6, "feet"),
  19378. weight: math.unit(35000, "lb"),
  19379. name: "Side",
  19380. image: {
  19381. source: "./media/characters/malfaren/side.svg",
  19382. extra: 1310/529,
  19383. bottom: 24/1334
  19384. }
  19385. },
  19386. front: {
  19387. height: math.unit(22.36, "feet"),
  19388. weight: math.unit(35000, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/malfaren/front.svg",
  19392. extra: 1237/1115,
  19393. bottom: 32/1269
  19394. }
  19395. },
  19396. maw: {
  19397. height: math.unit(6.9, "feet"),
  19398. name: "Maw",
  19399. image: {
  19400. source: "./media/characters/malfaren/maw.svg"
  19401. }
  19402. },
  19403. dick: {
  19404. height: math.unit(6.19, "feet"),
  19405. name: "Dick",
  19406. image: {
  19407. source: "./media/characters/malfaren/dick.svg"
  19408. }
  19409. },
  19410. eye: {
  19411. height: math.unit(0.69, "feet"),
  19412. name: "Eye",
  19413. image: {
  19414. source: "./media/characters/malfaren/eye.svg"
  19415. }
  19416. },
  19417. },
  19418. [
  19419. {
  19420. name: "Big",
  19421. height: math.unit(283 / 162 * 6, "feet"),
  19422. },
  19423. {
  19424. name: "Bigger",
  19425. height: math.unit(283 / 124 * 6, "feet")
  19426. },
  19427. {
  19428. name: "Massive",
  19429. height: math.unit(283 / 92 * 6, "feet"),
  19430. default: true
  19431. },
  19432. {
  19433. name: "👀💦",
  19434. height: math.unit(283 / 73 * 6, "feet"),
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19440. {
  19441. front: {
  19442. height: math.unit(1.7, "m"),
  19443. weight: math.unit(70, "kg"),
  19444. name: "Front",
  19445. image: {
  19446. source: "./media/characters/kernel/front.svg",
  19447. extra: 222 / 210,
  19448. bottom: 0.007
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Nano",
  19455. height: math.unit(17, "micrometers")
  19456. },
  19457. {
  19458. name: "Micro",
  19459. height: math.unit(1.7, "mm")
  19460. },
  19461. {
  19462. name: "Small",
  19463. height: math.unit(1.7, "cm")
  19464. },
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(1.7, "m"),
  19468. default: true
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19474. {
  19475. front: {
  19476. height: math.unit(1.75, "meters"),
  19477. weight: math.unit(65, "kg"),
  19478. name: "Front",
  19479. image: {
  19480. source: "./media/characters/jayne-folest/front.svg",
  19481. extra: 2115 / 2007,
  19482. bottom: 0.02
  19483. }
  19484. },
  19485. back: {
  19486. height: math.unit(1.75, "meters"),
  19487. weight: math.unit(65, "kg"),
  19488. name: "Back",
  19489. image: {
  19490. source: "./media/characters/jayne-folest/back.svg",
  19491. extra: 2115 / 2007,
  19492. bottom: 0.005
  19493. }
  19494. },
  19495. frontClothed: {
  19496. height: math.unit(1.75, "meters"),
  19497. weight: math.unit(65, "kg"),
  19498. name: "Front (Clothed)",
  19499. image: {
  19500. source: "./media/characters/jayne-folest/front-clothed.svg",
  19501. extra: 2115 / 2007,
  19502. bottom: 0.035
  19503. }
  19504. },
  19505. hand: {
  19506. height: math.unit(1 / 1.260, "feet"),
  19507. name: "Hand",
  19508. image: {
  19509. source: "./media/characters/jayne-folest/hand.svg"
  19510. }
  19511. },
  19512. foot: {
  19513. height: math.unit(1 / 0.918, "feet"),
  19514. name: "Foot",
  19515. image: {
  19516. source: "./media/characters/jayne-folest/foot.svg"
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Micro",
  19523. height: math.unit(4, "cm")
  19524. },
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(1.75, "meters")
  19528. },
  19529. {
  19530. name: "Macro",
  19531. height: math.unit(47.5, "meters"),
  19532. default: true
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19538. {
  19539. front: {
  19540. height: math.unit(180, "cm"),
  19541. weight: math.unit(70, "kg"),
  19542. name: "Front",
  19543. image: {
  19544. source: "./media/characters/algier/front.svg",
  19545. extra: 596 / 572,
  19546. bottom: 0.04
  19547. }
  19548. },
  19549. back: {
  19550. height: math.unit(180, "cm"),
  19551. weight: math.unit(70, "kg"),
  19552. name: "Back",
  19553. image: {
  19554. source: "./media/characters/algier/back.svg",
  19555. extra: 596 / 572,
  19556. bottom: 0.025
  19557. }
  19558. },
  19559. frontdressed: {
  19560. height: math.unit(180, "cm"),
  19561. weight: math.unit(150, "kg"),
  19562. name: "Front-dressed",
  19563. image: {
  19564. source: "./media/characters/algier/front-dressed.svg",
  19565. extra: 596 / 572,
  19566. bottom: 0.038
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Micro",
  19573. height: math.unit(5, "cm")
  19574. },
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(180, "cm"),
  19578. default: true
  19579. },
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(64, "m")
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19588. {
  19589. upright: {
  19590. height: math.unit(7, "feet"),
  19591. weight: math.unit(300, "lb"),
  19592. name: "Upright",
  19593. image: {
  19594. source: "./media/characters/pretzel/upright.svg",
  19595. extra: 534 / 522,
  19596. bottom: 0.065
  19597. }
  19598. },
  19599. sprawling: {
  19600. height: math.unit(3.75, "feet"),
  19601. weight: math.unit(300, "lb"),
  19602. name: "Sprawling",
  19603. image: {
  19604. source: "./media/characters/pretzel/sprawling.svg",
  19605. extra: 314 / 281,
  19606. bottom: 0.1
  19607. }
  19608. },
  19609. tongue: {
  19610. height: math.unit(2, "feet"),
  19611. name: "Tongue",
  19612. image: {
  19613. source: "./media/characters/pretzel/tongue.svg"
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Normal",
  19620. height: math.unit(7, "feet"),
  19621. default: true
  19622. },
  19623. {
  19624. name: "Oversized",
  19625. height: math.unit(15, "feet")
  19626. },
  19627. {
  19628. name: "Huge",
  19629. height: math.unit(30, "feet")
  19630. },
  19631. {
  19632. name: "Macro",
  19633. height: math.unit(250, "feet")
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19639. {
  19640. sideFront: {
  19641. height: math.unit(5 + 2 / 12, "feet"),
  19642. weight: math.unit(120, "lb"),
  19643. name: "Front Side",
  19644. image: {
  19645. source: "./media/characters/roxi/side-front.svg",
  19646. extra: 2924 / 2717,
  19647. bottom: 0.08
  19648. }
  19649. },
  19650. sideBack: {
  19651. height: math.unit(5 + 2 / 12, "feet"),
  19652. weight: math.unit(120, "lb"),
  19653. name: "Back Side",
  19654. image: {
  19655. source: "./media/characters/roxi/side-back.svg",
  19656. extra: 2904 / 2693,
  19657. bottom: 0.06
  19658. }
  19659. },
  19660. front: {
  19661. height: math.unit(5 + 2 / 12, "feet"),
  19662. weight: math.unit(120, "lb"),
  19663. name: "Front",
  19664. image: {
  19665. source: "./media/characters/roxi/front.svg",
  19666. extra: 2028 / 1907,
  19667. bottom: 0.01
  19668. }
  19669. },
  19670. frontAlt: {
  19671. height: math.unit(5 + 2 / 12, "feet"),
  19672. weight: math.unit(120, "lb"),
  19673. name: "Front (Alt)",
  19674. image: {
  19675. source: "./media/characters/roxi/front-alt.svg",
  19676. extra: 1828 / 1798,
  19677. bottom: 0.01
  19678. }
  19679. },
  19680. sitting: {
  19681. height: math.unit(2.8, "feet"),
  19682. weight: math.unit(120, "lb"),
  19683. name: "Sitting",
  19684. image: {
  19685. source: "./media/characters/roxi/sitting.svg",
  19686. extra: 2660 / 2462,
  19687. bottom: 0.1
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(5 + 2 / 12, "feet"),
  19695. default: true
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19701. {
  19702. side: {
  19703. height: math.unit(55, "feet"),
  19704. weight: math.unit(153, "tons"),
  19705. name: "Side",
  19706. image: {
  19707. source: "./media/characters/shadow/side.svg",
  19708. extra: 701 / 628,
  19709. bottom: 0.02
  19710. }
  19711. },
  19712. flying: {
  19713. height: math.unit(145, "feet"),
  19714. weight: math.unit(153, "tons"),
  19715. name: "Flying",
  19716. image: {
  19717. source: "./media/characters/shadow/flying.svg"
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(55, "feet"),
  19725. default: true
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19731. {
  19732. front: {
  19733. height: math.unit(6, "feet"),
  19734. weight: math.unit(200, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/marcie/front.svg",
  19738. extra: 960 / 876,
  19739. bottom: 58 / 1017.87
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Macro",
  19746. height: math.unit(1, "mile"),
  19747. default: true
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19753. {
  19754. front: {
  19755. height: math.unit(7, "feet"),
  19756. weight: math.unit(200, "lb"),
  19757. name: "Front",
  19758. image: {
  19759. source: "./media/characters/kachina/front.svg",
  19760. extra: 1290.68 / 1119,
  19761. bottom: 36.5 / 1327.18
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Normal",
  19768. height: math.unit(7, "feet"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19775. {
  19776. looking: {
  19777. height: math.unit(2, "meters"),
  19778. weight: math.unit(300, "kg"),
  19779. name: "Looking",
  19780. image: {
  19781. source: "./media/characters/kash/looking.svg",
  19782. extra: 474 / 344,
  19783. bottom: 0.03
  19784. }
  19785. },
  19786. side: {
  19787. height: math.unit(2, "meters"),
  19788. weight: math.unit(300, "kg"),
  19789. name: "Side",
  19790. image: {
  19791. source: "./media/characters/kash/side.svg",
  19792. extra: 302 / 251,
  19793. bottom: 0.03
  19794. }
  19795. },
  19796. front: {
  19797. height: math.unit(2, "meters"),
  19798. weight: math.unit(300, "kg"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/kash/front.svg",
  19802. extra: 495 / 360,
  19803. bottom: 0.015
  19804. }
  19805. },
  19806. },
  19807. [
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(2, "meters"),
  19811. default: true
  19812. },
  19813. {
  19814. name: "Big",
  19815. height: math.unit(3, "meters")
  19816. },
  19817. {
  19818. name: "Large",
  19819. height: math.unit(5, "meters")
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19825. {
  19826. feeding: {
  19827. height: math.unit(6.7, "feet"),
  19828. weight: math.unit(350, "lb"),
  19829. name: "Feeding",
  19830. image: {
  19831. source: "./media/characters/lalim/feeding.svg",
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(6.7, "feet"),
  19839. default: true
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19845. {
  19846. front: {
  19847. height: math.unit(9.5, "feet"),
  19848. weight: math.unit(600, "lb"),
  19849. name: "Front",
  19850. image: {
  19851. source: "./media/characters/de'vout/front.svg",
  19852. extra: 1443 / 1328,
  19853. bottom: 0.025
  19854. }
  19855. },
  19856. back: {
  19857. height: math.unit(9.5, "feet"),
  19858. weight: math.unit(600, "lb"),
  19859. name: "Back",
  19860. image: {
  19861. source: "./media/characters/de'vout/back.svg",
  19862. extra: 1443 / 1328
  19863. }
  19864. },
  19865. frontDressed: {
  19866. height: math.unit(9.5, "feet"),
  19867. weight: math.unit(600, "lb"),
  19868. name: "Front (Dressed",
  19869. image: {
  19870. source: "./media/characters/de'vout/front-dressed.svg",
  19871. extra: 1443 / 1328,
  19872. bottom: 0.025
  19873. }
  19874. },
  19875. backDressed: {
  19876. height: math.unit(9.5, "feet"),
  19877. weight: math.unit(600, "lb"),
  19878. name: "Back (Dressed",
  19879. image: {
  19880. source: "./media/characters/de'vout/back-dressed.svg",
  19881. extra: 1443 / 1328
  19882. }
  19883. },
  19884. },
  19885. [
  19886. {
  19887. name: "Normal",
  19888. height: math.unit(9.5, "feet"),
  19889. default: true
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(8, "feet"),
  19898. weight: math.unit(225, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/talana/front.svg",
  19902. extra: 1410 / 1300,
  19903. bottom: 0.015
  19904. }
  19905. },
  19906. frontDressed: {
  19907. height: math.unit(8, "feet"),
  19908. weight: math.unit(225, "lb"),
  19909. name: "Front (Dressed",
  19910. image: {
  19911. source: "./media/characters/talana/front-dressed.svg",
  19912. extra: 1410 / 1300,
  19913. bottom: 0.015
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(8, "feet"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19927. {
  19928. side: {
  19929. height: math.unit(7.2, "feet"),
  19930. weight: math.unit(150, "lb"),
  19931. name: "Side",
  19932. image: {
  19933. source: "./media/characters/xeauvok/side.svg",
  19934. extra: 1975 / 1523,
  19935. bottom: 0.07
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(7.2, "feet"),
  19943. default: true
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19949. {
  19950. side: {
  19951. height: math.unit(4, "meters"),
  19952. weight: math.unit(2200, "kg"),
  19953. name: "Side",
  19954. image: {
  19955. source: "./media/characters/zara/side.svg",
  19956. extra: 765/744,
  19957. bottom: 156/921
  19958. }
  19959. },
  19960. },
  19961. [
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(4, "meters"),
  19965. default: true
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19971. {
  19972. side: {
  19973. height: math.unit(6, "feet"),
  19974. weight: math.unit(150, "lb"),
  19975. name: "Side",
  19976. image: {
  19977. source: "./media/characters/richard-dragon/side.svg",
  19978. extra: 845 / 340,
  19979. bottom: 0.017
  19980. }
  19981. },
  19982. maw: {
  19983. height: math.unit(2.97, "feet"),
  19984. name: "Maw",
  19985. image: {
  19986. source: "./media/characters/richard-dragon/maw.svg"
  19987. }
  19988. },
  19989. },
  19990. [
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19995. {
  19996. front: {
  19997. height: math.unit(4, "feet"),
  19998. weight: math.unit(100, "lb"),
  19999. name: "Front",
  20000. image: {
  20001. source: "./media/characters/richard-smeargle/front.svg",
  20002. extra: 2952 / 2820,
  20003. bottom: 0.028
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(4, "feet"),
  20011. default: true
  20012. },
  20013. {
  20014. name: "Dynamax",
  20015. height: math.unit(20, "meters")
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20021. {
  20022. front: {
  20023. height: math.unit(6, "feet"),
  20024. weight: math.unit(110, "lb"),
  20025. name: "Front",
  20026. image: {
  20027. source: "./media/characters/klay/front.svg",
  20028. extra: 962 / 883,
  20029. bottom: 0.04
  20030. }
  20031. },
  20032. back: {
  20033. height: math.unit(6, "feet"),
  20034. weight: math.unit(110, "lb"),
  20035. name: "Back",
  20036. image: {
  20037. source: "./media/characters/klay/back.svg",
  20038. extra: 962 / 883
  20039. }
  20040. },
  20041. beans: {
  20042. height: math.unit(1.15, "feet"),
  20043. name: "Beans",
  20044. image: {
  20045. source: "./media/characters/klay/beans.svg"
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Micro",
  20052. height: math.unit(6, "inches")
  20053. },
  20054. {
  20055. name: "Mini",
  20056. height: math.unit(3, "feet")
  20057. },
  20058. {
  20059. name: "Normal",
  20060. height: math.unit(6, "feet"),
  20061. default: true
  20062. },
  20063. {
  20064. name: "Big",
  20065. height: math.unit(25, "feet")
  20066. },
  20067. {
  20068. name: "Macro",
  20069. height: math.unit(100, "feet")
  20070. },
  20071. {
  20072. name: "Megamacro",
  20073. height: math.unit(400, "feet")
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(6, "feet"),
  20082. weight: math.unit(160, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/marcus/front.svg",
  20086. extra: 734 / 676,
  20087. bottom: 0.03
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Little",
  20094. height: math.unit(6, "feet")
  20095. },
  20096. {
  20097. name: "Normal",
  20098. height: math.unit(110, "feet"),
  20099. default: true
  20100. },
  20101. {
  20102. name: "Macro",
  20103. height: math.unit(250, "feet")
  20104. },
  20105. {
  20106. name: "Megamacro",
  20107. height: math.unit(1000, "feet")
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(7, "feet"),
  20116. weight: math.unit(275, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/claude-delroute/front.svg",
  20120. extra: 902/827,
  20121. bottom: 26/928
  20122. }
  20123. },
  20124. side: {
  20125. height: math.unit(7, "feet"),
  20126. weight: math.unit(275, "lb"),
  20127. name: "Side",
  20128. image: {
  20129. source: "./media/characters/claude-delroute/side.svg",
  20130. extra: 908/853,
  20131. bottom: 16/924
  20132. }
  20133. },
  20134. back: {
  20135. height: math.unit(7, "feet"),
  20136. weight: math.unit(275, "lb"),
  20137. name: "Back",
  20138. image: {
  20139. source: "./media/characters/claude-delroute/back.svg",
  20140. extra: 911/829,
  20141. bottom: 18/929
  20142. }
  20143. },
  20144. maw: {
  20145. height: math.unit(0.6407, "meters"),
  20146. name: "Maw",
  20147. image: {
  20148. source: "./media/characters/claude-delroute/maw.svg"
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(7, "feet"),
  20156. default: true
  20157. },
  20158. {
  20159. name: "Lorge",
  20160. height: math.unit(20, "feet")
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20166. {
  20167. front: {
  20168. height: math.unit(8 + 4 / 12, "feet"),
  20169. weight: math.unit(600, "lb"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/dragonien/front.svg",
  20173. extra: 100 / 94,
  20174. bottom: 3.3 / 103.3445
  20175. }
  20176. },
  20177. back: {
  20178. height: math.unit(8 + 4 / 12, "feet"),
  20179. weight: math.unit(600, "lb"),
  20180. name: "Back",
  20181. image: {
  20182. source: "./media/characters/dragonien/back.svg",
  20183. extra: 776 / 746,
  20184. bottom: 6.4 / 782.0616
  20185. }
  20186. },
  20187. foot: {
  20188. height: math.unit(1.54, "feet"),
  20189. name: "Foot",
  20190. image: {
  20191. source: "./media/characters/dragonien/foot.svg",
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(8 + 4 / 12, "feet"),
  20199. default: true
  20200. },
  20201. {
  20202. name: "Macro",
  20203. height: math.unit(200, "feet")
  20204. },
  20205. {
  20206. name: "Megamacro",
  20207. height: math.unit(1, "mile")
  20208. },
  20209. {
  20210. name: "Gigamacro",
  20211. height: math.unit(1000, "miles")
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20217. {
  20218. front: {
  20219. height: math.unit(5 + 2 / 12, "feet"),
  20220. weight: math.unit(110, "lb"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/desta/front.svg",
  20224. extra: 767 / 726,
  20225. bottom: 11.7 / 779
  20226. }
  20227. },
  20228. back: {
  20229. height: math.unit(5 + 2 / 12, "feet"),
  20230. weight: math.unit(110, "lb"),
  20231. name: "Back",
  20232. image: {
  20233. source: "./media/characters/desta/back.svg",
  20234. extra: 777 / 728,
  20235. bottom: 6 / 784
  20236. }
  20237. },
  20238. frontAlt: {
  20239. height: math.unit(5 + 2 / 12, "feet"),
  20240. weight: math.unit(110, "lb"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/desta/front-alt.svg",
  20244. extra: 1482 / 1417
  20245. }
  20246. },
  20247. side: {
  20248. height: math.unit(5 + 2 / 12, "feet"),
  20249. weight: math.unit(110, "lb"),
  20250. name: "Side",
  20251. image: {
  20252. source: "./media/characters/desta/side.svg",
  20253. extra: 2579 / 2491,
  20254. bottom: 0.053
  20255. }
  20256. },
  20257. },
  20258. [
  20259. {
  20260. name: "Micro",
  20261. height: math.unit(6, "inches")
  20262. },
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(5 + 2 / 12, "feet"),
  20266. default: true
  20267. },
  20268. {
  20269. name: "Macro",
  20270. height: math.unit(62, "feet")
  20271. },
  20272. {
  20273. name: "Megamacro",
  20274. height: math.unit(1800, "feet")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(10, "feet"),
  20283. weight: math.unit(700, "lb"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/storm-alystar/front.svg",
  20287. extra: 2112 / 1898,
  20288. bottom: 0.034
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Micro",
  20295. height: math.unit(3.5, "inches")
  20296. },
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(10, "feet"),
  20300. default: true
  20301. },
  20302. {
  20303. name: "Macro",
  20304. height: math.unit(400, "feet")
  20305. },
  20306. {
  20307. name: "Deific",
  20308. height: math.unit(60, "miles")
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20314. {
  20315. front: {
  20316. height: math.unit(2.35, "meters"),
  20317. weight: math.unit(119, "kg"),
  20318. name: "Front",
  20319. image: {
  20320. source: "./media/characters/ilia/front.svg",
  20321. extra: 1285 / 1255,
  20322. bottom: 0.06
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(2.35, "meters")
  20330. },
  20331. {
  20332. name: "Macro",
  20333. height: math.unit(140, "meters"),
  20334. default: true
  20335. },
  20336. {
  20337. name: "Megamacro",
  20338. height: math.unit(100, "miles")
  20339. },
  20340. ]
  20341. ))
  20342. characterMakers.push(() => makeCharacter(
  20343. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20344. {
  20345. front: {
  20346. height: math.unit(6 + 5 / 12, "feet"),
  20347. weight: math.unit(190, "lb"),
  20348. name: "Front",
  20349. image: {
  20350. source: "./media/characters/kingdead/front.svg",
  20351. extra: 1228 / 1177
  20352. }
  20353. },
  20354. },
  20355. [
  20356. {
  20357. name: "Micro",
  20358. height: math.unit(7, "inches")
  20359. },
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(6 + 5 / 12, "feet")
  20363. },
  20364. {
  20365. name: "Macro",
  20366. height: math.unit(150, "feet"),
  20367. default: true
  20368. },
  20369. {
  20370. name: "Megamacro",
  20371. height: math.unit(200, "miles")
  20372. },
  20373. ]
  20374. ))
  20375. characterMakers.push(() => makeCharacter(
  20376. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20377. {
  20378. front: {
  20379. height: math.unit(8, "feet"),
  20380. weight: math.unit(600, "lb"),
  20381. name: "Front",
  20382. image: {
  20383. source: "./media/characters/kyrehx/front.svg",
  20384. extra: 1195 / 1095,
  20385. bottom: 0.034
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Micro",
  20392. height: math.unit(2, "inches")
  20393. },
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(8, "feet"),
  20397. default: true
  20398. },
  20399. {
  20400. name: "Macro",
  20401. height: math.unit(255, "feet")
  20402. },
  20403. ]
  20404. ))
  20405. characterMakers.push(() => makeCharacter(
  20406. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20407. {
  20408. front: {
  20409. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20410. weight: math.unit(184, "lb"),
  20411. name: "Front",
  20412. image: {
  20413. source: "./media/characters/xang/front.svg",
  20414. extra: 845 / 755
  20415. }
  20416. },
  20417. },
  20418. [
  20419. {
  20420. name: "Normal",
  20421. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20422. default: true
  20423. },
  20424. {
  20425. name: "Macro",
  20426. height: math.unit(0.935 * 146, "feet")
  20427. },
  20428. {
  20429. name: "Megamacro",
  20430. height: math.unit(0.935 * 3, "miles")
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20436. {
  20437. frontDressed: {
  20438. height: math.unit(5 + 7 / 12, "feet"),
  20439. weight: math.unit(140, "lb"),
  20440. name: "Front (Dressed)",
  20441. image: {
  20442. source: "./media/characters/doc-weardno/front-dressed.svg",
  20443. extra: 263 / 234
  20444. }
  20445. },
  20446. backDressed: {
  20447. height: math.unit(5 + 7 / 12, "feet"),
  20448. weight: math.unit(140, "lb"),
  20449. name: "Back (Dressed)",
  20450. image: {
  20451. source: "./media/characters/doc-weardno/back-dressed.svg",
  20452. extra: 266 / 238
  20453. }
  20454. },
  20455. front: {
  20456. height: math.unit(5 + 7 / 12, "feet"),
  20457. weight: math.unit(140, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/doc-weardno/front.svg",
  20461. extra: 254 / 233
  20462. }
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Micro",
  20468. height: math.unit(3, "inches")
  20469. },
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(5 + 7 / 12, "feet"),
  20473. default: true
  20474. },
  20475. {
  20476. name: "Macro",
  20477. height: math.unit(25, "feet")
  20478. },
  20479. {
  20480. name: "Megamacro",
  20481. height: math.unit(2, "miles")
  20482. },
  20483. ]
  20484. ))
  20485. characterMakers.push(() => makeCharacter(
  20486. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20487. {
  20488. front: {
  20489. height: math.unit(6 + 2 / 12, "feet"),
  20490. weight: math.unit(153, "lb"),
  20491. name: "Front",
  20492. image: {
  20493. source: "./media/characters/seth-whilst/front.svg",
  20494. bottom: 0.07
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Micro",
  20501. height: math.unit(5, "inches")
  20502. },
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(6 + 2 / 12, "feet"),
  20506. default: true
  20507. },
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20512. {
  20513. front: {
  20514. height: math.unit(3, "inches"),
  20515. weight: math.unit(8, "grams"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/pocket-jabari/front.svg",
  20519. extra: 1024 / 974,
  20520. bottom: 0.039
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Minimicro",
  20527. height: math.unit(8, "mm")
  20528. },
  20529. {
  20530. name: "Micro",
  20531. height: math.unit(3, "inches"),
  20532. default: true
  20533. },
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(3, "feet")
  20537. },
  20538. ]
  20539. ))
  20540. characterMakers.push(() => makeCharacter(
  20541. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20542. {
  20543. frontDressed: {
  20544. height: math.unit(15, "feet"),
  20545. weight: math.unit(3280, "lb"),
  20546. name: "Front (Dressed)",
  20547. image: {
  20548. source: "./media/characters/sapphy/front-dressed.svg",
  20549. extra: 1951/1654,
  20550. bottom: 194/2145
  20551. },
  20552. form: "anthro",
  20553. default: true
  20554. },
  20555. backDressed: {
  20556. height: math.unit(15, "feet"),
  20557. weight: math.unit(3280, "lb"),
  20558. name: "Back (Dressed)",
  20559. image: {
  20560. source: "./media/characters/sapphy/back-dressed.svg",
  20561. extra: 2058/1918,
  20562. bottom: 125/2183
  20563. },
  20564. form: "anthro"
  20565. },
  20566. frontNude: {
  20567. height: math.unit(15, "feet"),
  20568. weight: math.unit(3280, "lb"),
  20569. name: "Front (Nude)",
  20570. image: {
  20571. source: "./media/characters/sapphy/front-nude.svg",
  20572. extra: 1951/1654,
  20573. bottom: 194/2145
  20574. },
  20575. form: "anthro"
  20576. },
  20577. backNude: {
  20578. height: math.unit(15, "feet"),
  20579. weight: math.unit(3280, "lb"),
  20580. name: "Back (Nude)",
  20581. image: {
  20582. source: "./media/characters/sapphy/back-nude.svg",
  20583. extra: 2058/1918,
  20584. bottom: 125/2183
  20585. },
  20586. form: "anthro"
  20587. },
  20588. full: {
  20589. height: math.unit(15, "feet"),
  20590. weight: math.unit(3280, "lb"),
  20591. name: "Full",
  20592. image: {
  20593. source: "./media/characters/sapphy/full.svg",
  20594. extra: 1396/1317,
  20595. bottom: 44/1440
  20596. },
  20597. form: "anthro"
  20598. },
  20599. dick: {
  20600. height: math.unit(3.8, "feet"),
  20601. name: "Dick",
  20602. image: {
  20603. source: "./media/characters/sapphy/dick.svg"
  20604. },
  20605. form: "anthro"
  20606. },
  20607. feral: {
  20608. height: math.unit(35, "feet"),
  20609. weight: math.unit(160, "tons"),
  20610. name: "Feral",
  20611. image: {
  20612. source: "./media/characters/sapphy/feral.svg",
  20613. extra: 1050/573,
  20614. bottom: 60/1110
  20615. },
  20616. form: "feral",
  20617. default: true
  20618. },
  20619. },
  20620. [
  20621. {
  20622. name: "Normal",
  20623. height: math.unit(15, "feet"),
  20624. form: "anthro"
  20625. },
  20626. {
  20627. name: "Casual Macro",
  20628. height: math.unit(120, "feet"),
  20629. form: "anthro"
  20630. },
  20631. {
  20632. name: "Macro",
  20633. height: math.unit(2150, "feet"),
  20634. default: true,
  20635. form: "anthro"
  20636. },
  20637. {
  20638. name: "Megamacro",
  20639. height: math.unit(8, "miles"),
  20640. form: "anthro"
  20641. },
  20642. {
  20643. name: "Galaxy Mom",
  20644. height: math.unit(6, "megalightyears"),
  20645. form: "anthro"
  20646. },
  20647. {
  20648. name: "Normal",
  20649. height: math.unit(35, "feet"),
  20650. form: "feral",
  20651. default: true
  20652. },
  20653. {
  20654. name: "Macro",
  20655. height: math.unit(300, "feet"),
  20656. form: "feral"
  20657. },
  20658. {
  20659. name: "Galaxy Mom",
  20660. height: math.unit(10, "megalightyears"),
  20661. form: "feral"
  20662. },
  20663. ],
  20664. {
  20665. "anthro": {
  20666. name: "Anthro",
  20667. default: true
  20668. },
  20669. "feral": {
  20670. name: "Feral"
  20671. }
  20672. }
  20673. ))
  20674. characterMakers.push(() => makeCharacter(
  20675. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20676. {
  20677. hyenaFront: {
  20678. height: math.unit(6, "feet"),
  20679. weight: math.unit(190, "lb"),
  20680. name: "Front",
  20681. image: {
  20682. source: "./media/characters/kiro/hyena-front.svg",
  20683. extra: 927/839,
  20684. bottom: 91/1018
  20685. },
  20686. form: "hyena",
  20687. default: true
  20688. },
  20689. front: {
  20690. height: math.unit(6, "feet"),
  20691. weight: math.unit(170, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/kiro/front.svg",
  20695. extra: 1064 / 1012,
  20696. bottom: 0.052
  20697. },
  20698. form: "folf",
  20699. default: true
  20700. },
  20701. },
  20702. [
  20703. {
  20704. name: "Micro",
  20705. height: math.unit(6, "inches"),
  20706. form: "folf"
  20707. },
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(6, "feet"),
  20711. form: "folf",
  20712. default: true
  20713. },
  20714. {
  20715. name: "Macro",
  20716. height: math.unit(72, "feet"),
  20717. form: "folf"
  20718. },
  20719. {
  20720. name: "Micro",
  20721. height: math.unit(6, "inches"),
  20722. form: "hyena"
  20723. },
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(6, "feet"),
  20727. form: "hyena",
  20728. default: true
  20729. },
  20730. {
  20731. name: "Macro",
  20732. height: math.unit(72, "feet"),
  20733. form: "hyena"
  20734. },
  20735. ],
  20736. {
  20737. "hyena": {
  20738. name: "Hyena",
  20739. default: true
  20740. },
  20741. "folf": {
  20742. name: "Folf",
  20743. },
  20744. }
  20745. ))
  20746. characterMakers.push(() => makeCharacter(
  20747. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20748. {
  20749. front: {
  20750. height: math.unit(5 + 9 / 12, "feet"),
  20751. weight: math.unit(175, "lb"),
  20752. name: "Front",
  20753. image: {
  20754. source: "./media/characters/irishfox/front.svg",
  20755. extra: 1912 / 1680,
  20756. bottom: 0.02
  20757. }
  20758. },
  20759. },
  20760. [
  20761. {
  20762. name: "Nano",
  20763. height: math.unit(1, "mm")
  20764. },
  20765. {
  20766. name: "Micro",
  20767. height: math.unit(2, "inches")
  20768. },
  20769. {
  20770. name: "Normal",
  20771. height: math.unit(5 + 9 / 12, "feet"),
  20772. default: true
  20773. },
  20774. {
  20775. name: "Macro",
  20776. height: math.unit(45, "feet")
  20777. },
  20778. ]
  20779. ))
  20780. characterMakers.push(() => makeCharacter(
  20781. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20782. {
  20783. front: {
  20784. height: math.unit(6 + 1 / 12, "feet"),
  20785. weight: math.unit(75, "lb"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/aronai-sieyes/front.svg",
  20789. extra: 1532/1450,
  20790. bottom: 42/1574
  20791. }
  20792. },
  20793. side: {
  20794. height: math.unit(6 + 1 / 12, "feet"),
  20795. weight: math.unit(75, "lb"),
  20796. name: "Side",
  20797. image: {
  20798. source: "./media/characters/aronai-sieyes/side.svg",
  20799. extra: 1422/1365,
  20800. bottom: 148/1570
  20801. }
  20802. },
  20803. back: {
  20804. height: math.unit(6 + 1 / 12, "feet"),
  20805. weight: math.unit(75, "lb"),
  20806. name: "Back",
  20807. image: {
  20808. source: "./media/characters/aronai-sieyes/back.svg",
  20809. extra: 1526/1464,
  20810. bottom: 51/1577
  20811. }
  20812. },
  20813. dressed: {
  20814. height: math.unit(6 + 1 / 12, "feet"),
  20815. weight: math.unit(75, "lb"),
  20816. name: "Dressed",
  20817. image: {
  20818. source: "./media/characters/aronai-sieyes/dressed.svg",
  20819. extra: 1559/1483,
  20820. bottom: 39/1598
  20821. }
  20822. },
  20823. slit: {
  20824. height: math.unit(1.3, "feet"),
  20825. name: "Slit",
  20826. image: {
  20827. source: "./media/characters/aronai-sieyes/slit.svg"
  20828. }
  20829. },
  20830. slitSpread: {
  20831. height: math.unit(0.9, "feet"),
  20832. name: "Slit (Spread)",
  20833. image: {
  20834. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20835. }
  20836. },
  20837. rump: {
  20838. height: math.unit(1.3, "feet"),
  20839. name: "Rump",
  20840. image: {
  20841. source: "./media/characters/aronai-sieyes/rump.svg"
  20842. }
  20843. },
  20844. maw: {
  20845. height: math.unit(1.25, "feet"),
  20846. name: "Maw",
  20847. image: {
  20848. source: "./media/characters/aronai-sieyes/maw.svg"
  20849. }
  20850. },
  20851. feral: {
  20852. height: math.unit(18, "feet"),
  20853. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20854. name: "Feral",
  20855. image: {
  20856. source: "./media/characters/aronai-sieyes/feral.svg",
  20857. extra: 1530 / 1240,
  20858. bottom: 0.035
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Micro",
  20865. height: math.unit(2, "inches")
  20866. },
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(6 + 1 / 12, "feet"),
  20870. default: true
  20871. }
  20872. ]
  20873. ))
  20874. characterMakers.push(() => makeCharacter(
  20875. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20876. {
  20877. front: {
  20878. height: math.unit(12, "feet"),
  20879. weight: math.unit(410, "kg"),
  20880. name: "Front",
  20881. image: {
  20882. source: "./media/characters/xuna/front.svg",
  20883. extra: 2184 / 1980
  20884. }
  20885. },
  20886. side: {
  20887. height: math.unit(12, "feet"),
  20888. weight: math.unit(410, "kg"),
  20889. name: "Side",
  20890. image: {
  20891. source: "./media/characters/xuna/side.svg",
  20892. extra: 2184 / 1980
  20893. }
  20894. },
  20895. back: {
  20896. height: math.unit(12, "feet"),
  20897. weight: math.unit(410, "kg"),
  20898. name: "Back",
  20899. image: {
  20900. source: "./media/characters/xuna/back.svg",
  20901. extra: 2184 / 1980
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Nano glow",
  20908. height: math.unit(10, "nm")
  20909. },
  20910. {
  20911. name: "Micro floof",
  20912. height: math.unit(0.3, "m")
  20913. },
  20914. {
  20915. name: "Huggable softy boi",
  20916. height: math.unit(3.6576, "m"),
  20917. default: true
  20918. },
  20919. {
  20920. name: "Admirable floof",
  20921. height: math.unit(80, "meters")
  20922. },
  20923. {
  20924. name: "Gentle macro",
  20925. height: math.unit(300, "meters")
  20926. },
  20927. {
  20928. name: "Very careful floof",
  20929. height: math.unit(3200, "meters")
  20930. },
  20931. {
  20932. name: "The mega floof",
  20933. height: math.unit(36000, "meters")
  20934. },
  20935. {
  20936. name: "Giga-fur-Wicker",
  20937. height: math.unit(4800000, "meters")
  20938. },
  20939. {
  20940. name: "Licky world",
  20941. height: math.unit(20000000, "meters")
  20942. },
  20943. {
  20944. name: "Floofy cyan sun",
  20945. height: math.unit(1500000000, "meters")
  20946. },
  20947. {
  20948. name: "Milky Wicker",
  20949. height: math.unit(1000000000000000000000, "meters")
  20950. },
  20951. {
  20952. name: "The observing Wicker",
  20953. height: math.unit(999999999999999999999999999, "meters")
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(5 + 9 / 12, "feet"),
  20962. weight: math.unit(150, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/arokha-sieyes/front.svg",
  20966. extra: 1425 / 1284,
  20967. bottom: 0.05
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(5 + 9 / 12, "feet")
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(30, "meters"),
  20979. default: true
  20980. },
  20981. ]
  20982. ))
  20983. characterMakers.push(() => makeCharacter(
  20984. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20985. {
  20986. front: {
  20987. height: math.unit(6, "feet"),
  20988. weight: math.unit(180, "lb"),
  20989. name: "Front",
  20990. image: {
  20991. source: "./media/characters/arokh-sieyes/front.svg",
  20992. extra: 1830 / 1769,
  20993. bottom: 0.01
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Normal",
  21000. height: math.unit(6, "feet")
  21001. },
  21002. {
  21003. name: "Macro",
  21004. height: math.unit(30, "meters"),
  21005. default: true
  21006. },
  21007. ]
  21008. ))
  21009. characterMakers.push(() => makeCharacter(
  21010. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21011. {
  21012. side: {
  21013. height: math.unit(13 + 1 / 12, "feet"),
  21014. weight: math.unit(8.5, "tonnes"),
  21015. preyCapacity: math.unit(36, "people"),
  21016. name: "Side",
  21017. image: {
  21018. source: "./media/characters/goldeneye/side.svg",
  21019. extra: 1139/741,
  21020. bottom: 98/1237
  21021. }
  21022. },
  21023. front: {
  21024. height: math.unit(5.1, "feet"),
  21025. weight: math.unit(8.5, "tonnes"),
  21026. preyCapacity: math.unit(36, "people"),
  21027. name: "Front",
  21028. image: {
  21029. source: "./media/characters/goldeneye/front.svg",
  21030. extra: 635/365,
  21031. bottom: 598/1233
  21032. }
  21033. },
  21034. maw: {
  21035. height: math.unit(6.6, "feet"),
  21036. name: "Maw",
  21037. image: {
  21038. source: "./media/characters/goldeneye/maw.svg"
  21039. }
  21040. },
  21041. headFront: {
  21042. height: math.unit(8, "feet"),
  21043. name: "Head (Front)",
  21044. image: {
  21045. source: "./media/characters/goldeneye/head-front.svg"
  21046. }
  21047. },
  21048. headSide: {
  21049. height: math.unit(6, "feet"),
  21050. name: "Head (Side)",
  21051. image: {
  21052. source: "./media/characters/goldeneye/head-side.svg"
  21053. }
  21054. },
  21055. headBack: {
  21056. height: math.unit(8, "feet"),
  21057. name: "Head (Back)",
  21058. image: {
  21059. source: "./media/characters/goldeneye/head-back.svg"
  21060. }
  21061. },
  21062. paw: {
  21063. height: math.unit(3.4, "feet"),
  21064. name: "Paw",
  21065. image: {
  21066. source: "./media/characters/goldeneye/paw.svg"
  21067. }
  21068. },
  21069. toering: {
  21070. height: math.unit(0.45, "feet"),
  21071. name: "Toering",
  21072. image: {
  21073. source: "./media/characters/goldeneye/toering.svg"
  21074. }
  21075. },
  21076. eyes: {
  21077. height: math.unit(0.5, "feet"),
  21078. name: "Eyes",
  21079. image: {
  21080. source: "./media/characters/goldeneye/eyes.svg"
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(13 + 1 / 12, "feet"),
  21088. default: true
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21094. {
  21095. front: {
  21096. height: math.unit(6 + 1 / 12, "feet"),
  21097. weight: math.unit(210, "lb"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/leonardo-lycheborne/front.svg",
  21101. extra: 776/723,
  21102. bottom: 34/810
  21103. }
  21104. },
  21105. side: {
  21106. height: math.unit(6 + 1 / 12, "feet"),
  21107. weight: math.unit(210, "lb"),
  21108. name: "Side",
  21109. image: {
  21110. source: "./media/characters/leonardo-lycheborne/side.svg",
  21111. extra: 780/728,
  21112. bottom: 12/792
  21113. }
  21114. },
  21115. back: {
  21116. height: math.unit(6 + 1 / 12, "feet"),
  21117. weight: math.unit(210, "lb"),
  21118. name: "Back",
  21119. image: {
  21120. source: "./media/characters/leonardo-lycheborne/back.svg",
  21121. extra: 775/721,
  21122. bottom: 17/792
  21123. }
  21124. },
  21125. hand: {
  21126. height: math.unit(1.08, "feet"),
  21127. name: "Hand",
  21128. image: {
  21129. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21130. }
  21131. },
  21132. foot: {
  21133. height: math.unit(1.32, "feet"),
  21134. name: "Foot",
  21135. image: {
  21136. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21137. }
  21138. },
  21139. maw: {
  21140. height: math.unit(1, "feet"),
  21141. name: "Maw",
  21142. image: {
  21143. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21144. }
  21145. },
  21146. were: {
  21147. height: math.unit(20, "feet"),
  21148. weight: math.unit(7800, "lb"),
  21149. name: "Were",
  21150. image: {
  21151. source: "./media/characters/leonardo-lycheborne/were.svg",
  21152. extra: 1224/1165,
  21153. bottom: 72/1296
  21154. }
  21155. },
  21156. feral: {
  21157. height: math.unit(7.5, "feet"),
  21158. weight: math.unit(600, "lb"),
  21159. name: "Feral",
  21160. image: {
  21161. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21162. extra: 797/702,
  21163. bottom: 139/936
  21164. }
  21165. },
  21166. taur: {
  21167. height: math.unit(11, "feet"),
  21168. weight: math.unit(3300, "lb"),
  21169. name: "Taur",
  21170. image: {
  21171. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21172. extra: 1271/1197,
  21173. bottom: 47/1318
  21174. }
  21175. },
  21176. barghest: {
  21177. height: math.unit(11, "feet"),
  21178. weight: math.unit(1300, "lb"),
  21179. name: "Barghest",
  21180. image: {
  21181. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21182. extra: 1291/1204,
  21183. bottom: 37/1328
  21184. }
  21185. },
  21186. dick: {
  21187. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21188. name: "Dick",
  21189. image: {
  21190. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21191. }
  21192. },
  21193. dickWere: {
  21194. height: math.unit((20) / 3.8, "feet"),
  21195. name: "Dick (Were)",
  21196. image: {
  21197. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(6 + 1 / 12, "feet"),
  21205. default: true
  21206. },
  21207. ]
  21208. ))
  21209. characterMakers.push(() => makeCharacter(
  21210. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21211. {
  21212. front: {
  21213. height: math.unit(10, "feet"),
  21214. weight: math.unit(350, "lb"),
  21215. name: "Front",
  21216. image: {
  21217. source: "./media/characters/jet/front.svg",
  21218. extra: 2050 / 1980,
  21219. bottom: 0.013
  21220. }
  21221. },
  21222. back: {
  21223. height: math.unit(10, "feet"),
  21224. weight: math.unit(350, "lb"),
  21225. name: "Back",
  21226. image: {
  21227. source: "./media/characters/jet/back.svg",
  21228. extra: 2050 / 1980,
  21229. bottom: 0.013
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Micro",
  21236. height: math.unit(6, "inches")
  21237. },
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(10, "feet"),
  21241. default: true
  21242. },
  21243. {
  21244. name: "Macro",
  21245. height: math.unit(100, "feet")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(15, "feet"),
  21254. weight: math.unit(2800, "lb"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/tanarath/front.svg",
  21258. extra: 2392 / 2220,
  21259. bottom: 0.03
  21260. }
  21261. },
  21262. back: {
  21263. height: math.unit(15, "feet"),
  21264. weight: math.unit(2800, "lb"),
  21265. name: "Back",
  21266. image: {
  21267. source: "./media/characters/tanarath/back.svg",
  21268. extra: 2392 / 2220,
  21269. bottom: 0.03
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(15, "feet"),
  21277. default: true
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(7 + 1 / 12, "feet"),
  21286. weight: math.unit(175, "lb"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/patty-cattybatty/front.svg",
  21290. extra: 908 / 874,
  21291. bottom: 0.025
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Micro",
  21298. height: math.unit(1, "inch")
  21299. },
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(7 + 1 / 12, "feet")
  21303. },
  21304. {
  21305. name: "Mini Macro",
  21306. height: math.unit(155, "feet")
  21307. },
  21308. {
  21309. name: "Macro",
  21310. height: math.unit(1077, "feet")
  21311. },
  21312. {
  21313. name: "Mega Macro",
  21314. height: math.unit(47650, "feet"),
  21315. default: true
  21316. },
  21317. {
  21318. name: "Giga Macro",
  21319. height: math.unit(440, "miles")
  21320. },
  21321. {
  21322. name: "Tera Macro",
  21323. height: math.unit(8700, "miles")
  21324. },
  21325. {
  21326. name: "Planetary Macro",
  21327. height: math.unit(32700, "miles")
  21328. },
  21329. {
  21330. name: "Solar Macro",
  21331. height: math.unit(550000, "miles")
  21332. },
  21333. {
  21334. name: "Celestial Macro",
  21335. height: math.unit(2.5, "AU")
  21336. },
  21337. ]
  21338. ))
  21339. characterMakers.push(() => makeCharacter(
  21340. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21341. {
  21342. front: {
  21343. height: math.unit(4 + 5 / 12, "feet"),
  21344. weight: math.unit(90, "lb"),
  21345. name: "Front",
  21346. image: {
  21347. source: "./media/characters/cappu/front.svg",
  21348. extra: 1247 / 1152,
  21349. bottom: 0.012
  21350. }
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Normal",
  21356. height: math.unit(4 + 5 / 12, "feet"),
  21357. default: true
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21363. {
  21364. frontDressed: {
  21365. height: math.unit(70, "cm"),
  21366. weight: math.unit(6, "kg"),
  21367. name: "Front (Dressed)",
  21368. image: {
  21369. source: "./media/characters/sebi/front-dressed.svg",
  21370. extra: 713.5 / 686.5,
  21371. bottom: 0.003
  21372. }
  21373. },
  21374. front: {
  21375. height: math.unit(70, "cm"),
  21376. weight: math.unit(5, "kg"),
  21377. name: "Front",
  21378. image: {
  21379. source: "./media/characters/sebi/front.svg",
  21380. extra: 713.5 / 686.5,
  21381. bottom: 0.003
  21382. }
  21383. }
  21384. },
  21385. [
  21386. {
  21387. name: "Normal",
  21388. height: math.unit(70, "cm"),
  21389. default: true
  21390. },
  21391. {
  21392. name: "Macro",
  21393. height: math.unit(8, "meters")
  21394. },
  21395. ]
  21396. ))
  21397. characterMakers.push(() => makeCharacter(
  21398. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21399. {
  21400. front: {
  21401. height: math.unit(6, "feet"),
  21402. weight: math.unit(150, "lb"),
  21403. name: "Front",
  21404. image: {
  21405. source: "./media/characters/typhek/front.svg",
  21406. extra: 1948 / 1929,
  21407. bottom: 0.025
  21408. }
  21409. },
  21410. side: {
  21411. height: math.unit(6, "feet"),
  21412. weight: math.unit(150, "lb"),
  21413. name: "Side",
  21414. image: {
  21415. source: "./media/characters/typhek/side.svg",
  21416. extra: 2034 / 2010,
  21417. bottom: 0.003
  21418. }
  21419. },
  21420. back: {
  21421. height: math.unit(6, "feet"),
  21422. weight: math.unit(150, "lb"),
  21423. name: "Back",
  21424. image: {
  21425. source: "./media/characters/typhek/back.svg",
  21426. extra: 2005 / 1978,
  21427. bottom: 0.004
  21428. }
  21429. },
  21430. palm: {
  21431. height: math.unit(1.2, "feet"),
  21432. name: "Palm",
  21433. image: {
  21434. source: "./media/characters/typhek/palm.svg"
  21435. }
  21436. },
  21437. fist: {
  21438. height: math.unit(1.1, "feet"),
  21439. name: "Fist",
  21440. image: {
  21441. source: "./media/characters/typhek/fist.svg"
  21442. }
  21443. },
  21444. foot: {
  21445. height: math.unit(1.57, "feet"),
  21446. name: "Foot",
  21447. image: {
  21448. source: "./media/characters/typhek/foot.svg"
  21449. }
  21450. },
  21451. sole: {
  21452. height: math.unit(2.05, "feet"),
  21453. name: "Sole",
  21454. image: {
  21455. source: "./media/characters/typhek/sole.svg"
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Macro",
  21462. height: math.unit(40, "stories"),
  21463. default: true
  21464. },
  21465. {
  21466. name: "Megamacro",
  21467. height: math.unit(1, "mile")
  21468. },
  21469. {
  21470. name: "Gigamacro",
  21471. height: math.unit(4000, "solarradii")
  21472. },
  21473. {
  21474. name: "Universal",
  21475. height: math.unit(1.1, "universes")
  21476. }
  21477. ]
  21478. ))
  21479. characterMakers.push(() => makeCharacter(
  21480. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21481. {
  21482. side: {
  21483. height: math.unit(5 + 7 / 12, "feet"),
  21484. weight: math.unit(150, "lb"),
  21485. name: "Side",
  21486. image: {
  21487. source: "./media/characters/kassy/side.svg",
  21488. extra: 1280 / 1225,
  21489. bottom: 0.002
  21490. }
  21491. },
  21492. front: {
  21493. height: math.unit(5 + 7 / 12, "feet"),
  21494. weight: math.unit(150, "lb"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/kassy/front.svg",
  21498. extra: 1280 / 1225,
  21499. bottom: 0.025
  21500. }
  21501. },
  21502. back: {
  21503. height: math.unit(5 + 7 / 12, "feet"),
  21504. weight: math.unit(150, "lb"),
  21505. name: "Back",
  21506. image: {
  21507. source: "./media/characters/kassy/back.svg",
  21508. extra: 1280 / 1225,
  21509. bottom: 0.002
  21510. }
  21511. },
  21512. foot: {
  21513. height: math.unit(1.266, "feet"),
  21514. name: "Foot",
  21515. image: {
  21516. source: "./media/characters/kassy/foot.svg"
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Normal",
  21523. height: math.unit(5 + 7 / 12, "feet")
  21524. },
  21525. {
  21526. name: "Macro",
  21527. height: math.unit(137, "feet"),
  21528. default: true
  21529. },
  21530. {
  21531. name: "Megamacro",
  21532. height: math.unit(1, "mile")
  21533. },
  21534. ]
  21535. ))
  21536. characterMakers.push(() => makeCharacter(
  21537. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21538. {
  21539. front: {
  21540. height: math.unit(6 + 1 / 12, "feet"),
  21541. weight: math.unit(200, "lb"),
  21542. name: "Front",
  21543. image: {
  21544. source: "./media/characters/neil/front.svg",
  21545. extra: 1326 / 1250,
  21546. bottom: 0.023
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Normal",
  21553. height: math.unit(6 + 1 / 12, "feet"),
  21554. default: true
  21555. },
  21556. {
  21557. name: "Macro",
  21558. height: math.unit(200, "feet")
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21564. {
  21565. front: {
  21566. height: math.unit(5 + 9 / 12, "feet"),
  21567. weight: math.unit(190, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/atticus/front.svg",
  21571. extra: 2934 / 2785,
  21572. bottom: 0.025
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Normal",
  21579. height: math.unit(5 + 9 / 12, "feet"),
  21580. default: true
  21581. },
  21582. {
  21583. name: "Macro",
  21584. height: math.unit(180, "feet")
  21585. },
  21586. ]
  21587. ))
  21588. characterMakers.push(() => makeCharacter(
  21589. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21590. {
  21591. side: {
  21592. height: math.unit(9, "feet"),
  21593. weight: math.unit(650, "lb"),
  21594. name: "Side",
  21595. image: {
  21596. source: "./media/characters/milo/side.svg",
  21597. extra: 2644 / 2310,
  21598. bottom: 0.032
  21599. }
  21600. },
  21601. },
  21602. [
  21603. {
  21604. name: "Normal",
  21605. height: math.unit(9, "feet"),
  21606. default: true
  21607. },
  21608. {
  21609. name: "Macro",
  21610. height: math.unit(300, "feet")
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21616. {
  21617. side: {
  21618. height: math.unit(8, "meters"),
  21619. weight: math.unit(90000, "kg"),
  21620. name: "Side",
  21621. image: {
  21622. source: "./media/characters/ijzer/side.svg",
  21623. extra: 2756 / 1600,
  21624. bottom: 0.01
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Small",
  21631. height: math.unit(3, "meters")
  21632. },
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(8, "meters"),
  21636. default: true
  21637. },
  21638. {
  21639. name: "Normal+",
  21640. height: math.unit(10, "meters")
  21641. },
  21642. {
  21643. name: "Bigger",
  21644. height: math.unit(24, "meters")
  21645. },
  21646. {
  21647. name: "Huge",
  21648. height: math.unit(80, "meters")
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21654. {
  21655. front: {
  21656. height: math.unit(6 + 2 / 12, "feet"),
  21657. weight: math.unit(153, "lb"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/luca-cervicum/front.svg",
  21661. extra: 370 / 327,
  21662. bottom: 0.015
  21663. }
  21664. },
  21665. back: {
  21666. height: math.unit(6 + 2 / 12, "feet"),
  21667. weight: math.unit(153, "lb"),
  21668. name: "Back",
  21669. image: {
  21670. source: "./media/characters/luca-cervicum/back.svg",
  21671. extra: 367 / 333,
  21672. bottom: 0.005
  21673. }
  21674. },
  21675. frontGear: {
  21676. height: math.unit(6 + 2 / 12, "feet"),
  21677. weight: math.unit(173, "lb"),
  21678. name: "Front (Gear)",
  21679. image: {
  21680. source: "./media/characters/luca-cervicum/front-gear.svg",
  21681. extra: 377 / 333,
  21682. bottom: 0.006
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(6 + 2 / 12, "feet"),
  21690. default: true
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21696. {
  21697. front: {
  21698. height: math.unit(6 + 1 / 12, "feet"),
  21699. weight: math.unit(304, "lb"),
  21700. name: "Front",
  21701. image: {
  21702. source: "./media/characters/oliver/front.svg",
  21703. extra: 157 / 143,
  21704. bottom: 0.08
  21705. }
  21706. },
  21707. },
  21708. [
  21709. {
  21710. name: "Normal",
  21711. height: math.unit(6 + 1 / 12, "feet"),
  21712. default: true
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21718. {
  21719. front: {
  21720. height: math.unit(5 + 7 / 12, "feet"),
  21721. weight: math.unit(140, "lb"),
  21722. name: "Front",
  21723. image: {
  21724. source: "./media/characters/shane/front.svg",
  21725. extra: 304 / 289,
  21726. bottom: 0.005
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Normal",
  21733. height: math.unit(5 + 7 / 12, "feet"),
  21734. default: true
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21740. {
  21741. front: {
  21742. height: math.unit(5 + 9 / 12, "feet"),
  21743. weight: math.unit(178, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/shin/front.svg",
  21747. extra: 159 / 151,
  21748. bottom: 0.015
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(5 + 9 / 12, "feet"),
  21756. default: true
  21757. },
  21758. ]
  21759. ))
  21760. characterMakers.push(() => makeCharacter(
  21761. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21762. {
  21763. front: {
  21764. height: math.unit(5 + 10 / 12, "feet"),
  21765. weight: math.unit(168, "lb"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/xerxes/front.svg",
  21769. extra: 282 / 260,
  21770. bottom: 0.045
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(5 + 10 / 12, "feet"),
  21778. default: true
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21784. {
  21785. front: {
  21786. height: math.unit(6 + 7 / 12, "feet"),
  21787. weight: math.unit(208, "lb"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/chaska/front.svg",
  21791. extra: 332 / 319,
  21792. bottom: 0.015
  21793. }
  21794. },
  21795. },
  21796. [
  21797. {
  21798. name: "Normal",
  21799. height: math.unit(6 + 7 / 12, "feet"),
  21800. default: true
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21806. {
  21807. front: {
  21808. height: math.unit(5 + 8 / 12, "feet"),
  21809. weight: math.unit(208, "lb"),
  21810. name: "Front",
  21811. image: {
  21812. source: "./media/characters/enuk/front.svg",
  21813. extra: 437 / 406,
  21814. bottom: 0.02
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(5 + 8 / 12, "feet"),
  21822. default: true
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(5 + 10 / 12, "feet"),
  21831. weight: math.unit(252, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/bruun/front.svg",
  21835. extra: 197 / 187,
  21836. bottom: 0.012
  21837. }
  21838. },
  21839. },
  21840. [
  21841. {
  21842. name: "Normal",
  21843. height: math.unit(5 + 10 / 12, "feet"),
  21844. default: true
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21850. {
  21851. front: {
  21852. height: math.unit(6 + 10 / 12, "feet"),
  21853. weight: math.unit(255, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/alexeev/front.svg",
  21857. extra: 213 / 200,
  21858. bottom: 0.05
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(6 + 10 / 12, "feet"),
  21866. default: true
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(2 + 8 / 12, "feet"),
  21875. weight: math.unit(22, "lb"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/evelyn/front.svg",
  21879. extra: 208 / 180
  21880. }
  21881. },
  21882. },
  21883. [
  21884. {
  21885. name: "Normal",
  21886. height: math.unit(2 + 8 / 12, "feet"),
  21887. default: true
  21888. },
  21889. ]
  21890. ))
  21891. characterMakers.push(() => makeCharacter(
  21892. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21893. {
  21894. front: {
  21895. height: math.unit(5 + 9 / 12, "feet"),
  21896. weight: math.unit(139, "lb"),
  21897. name: "Front",
  21898. image: {
  21899. source: "./media/characters/inca/front.svg",
  21900. extra: 294 / 291,
  21901. bottom: 0.03
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(5 + 9 / 12, "feet"),
  21909. default: true
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21915. {
  21916. front: {
  21917. height: math.unit(6 + 3 / 12, "feet"),
  21918. weight: math.unit(185, "lb"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/mera/front.svg",
  21922. extra: 291 / 277,
  21923. bottom: 0.03
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Normal",
  21930. height: math.unit(6 + 3 / 12, "feet"),
  21931. default: true
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21937. {
  21938. front: {
  21939. height: math.unit(6 + 7 / 12, "feet"),
  21940. weight: math.unit(160, "lb"),
  21941. name: "Front",
  21942. image: {
  21943. source: "./media/characters/ceres/front.svg",
  21944. extra: 1023 / 950,
  21945. bottom: 0.027
  21946. }
  21947. },
  21948. back: {
  21949. height: math.unit(6 + 7 / 12, "feet"),
  21950. weight: math.unit(160, "lb"),
  21951. name: "Back",
  21952. image: {
  21953. source: "./media/characters/ceres/back.svg",
  21954. extra: 1023 / 950
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(6 + 7 / 12, "feet"),
  21962. default: true
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21968. {
  21969. front: {
  21970. height: math.unit(5 + 10 / 12, "feet"),
  21971. weight: math.unit(150, "lb"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/kris/front.svg",
  21975. extra: 885 / 803,
  21976. bottom: 0.03
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Normal",
  21983. height: math.unit(5 + 10 / 12, "feet"),
  21984. default: true
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21990. {
  21991. dragon_front: {
  21992. height: math.unit(5, "feet"),
  21993. name: "Front",
  21994. image: {
  21995. source: "./media/characters/taluthus/dragon-front.svg",
  21996. extra: 1203/1098,
  21997. bottom: 46/1249
  21998. },
  21999. form: "dragon",
  22000. default: true
  22001. },
  22002. dragon_maw: {
  22003. height: math.unit(2.35, "feet"),
  22004. name: "Maw",
  22005. image: {
  22006. source: "./media/characters/taluthus/dragon-maw.svg"
  22007. },
  22008. form: "dragon",
  22009. },
  22010. kitsune_front: {
  22011. height: math.unit(7, "feet"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/taluthus/kitsune-front.svg",
  22015. extra: 900/841,
  22016. bottom: 65/965
  22017. },
  22018. form: "kitsune",
  22019. default: true
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(5, "feet"),
  22026. form: "dragon",
  22027. default: true,
  22028. },
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(7, "feet"),
  22032. form: "kitsune",
  22033. default: true
  22034. },
  22035. {
  22036. name: "Macro",
  22037. height: math.unit(300, "feet"),
  22038. allForms: true
  22039. },
  22040. ],
  22041. {
  22042. "dragon": {
  22043. name: "Dragon",
  22044. default: true
  22045. },
  22046. "kitsune": {
  22047. name: "Kitsune",
  22048. },
  22049. }
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22053. {
  22054. front: {
  22055. height: math.unit(5 + 9 / 12, "feet"),
  22056. weight: math.unit(145, "lb"),
  22057. name: "Front",
  22058. image: {
  22059. source: "./media/characters/dawn/front.svg",
  22060. extra: 2094 / 2016,
  22061. bottom: 0.025
  22062. }
  22063. },
  22064. back: {
  22065. height: math.unit(5 + 9 / 12, "feet"),
  22066. weight: math.unit(160, "lb"),
  22067. name: "Back",
  22068. image: {
  22069. source: "./media/characters/dawn/back.svg",
  22070. extra: 2112 / 2080,
  22071. bottom: 0.005
  22072. }
  22073. },
  22074. },
  22075. [
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(6 + 7 / 12, "feet"),
  22079. default: true
  22080. },
  22081. ]
  22082. ))
  22083. characterMakers.push(() => makeCharacter(
  22084. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22085. {
  22086. anthro: {
  22087. height: math.unit(8 + 3 / 12, "feet"),
  22088. weight: math.unit(450, "lb"),
  22089. name: "Anthro",
  22090. image: {
  22091. source: "./media/characters/arador/anthro.svg",
  22092. extra: 1835 / 1718,
  22093. bottom: 0.025
  22094. }
  22095. },
  22096. feral: {
  22097. height: math.unit(4, "feet"),
  22098. weight: math.unit(200, "lb"),
  22099. name: "Feral",
  22100. image: {
  22101. source: "./media/characters/arador/feral.svg",
  22102. extra: 1683 / 1514,
  22103. bottom: 0.07
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(8 + 3 / 12, "feet")
  22111. },
  22112. {
  22113. name: "Macro",
  22114. height: math.unit(82.5, "feet"),
  22115. default: true
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22121. {
  22122. front: {
  22123. height: math.unit(5 + 10 / 12, "feet"),
  22124. weight: math.unit(125, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/dharsi/front.svg",
  22128. extra: 716 / 630,
  22129. bottom: 0.035
  22130. }
  22131. },
  22132. },
  22133. [
  22134. {
  22135. name: "Nano",
  22136. height: math.unit(100, "nm")
  22137. },
  22138. {
  22139. name: "Micro",
  22140. height: math.unit(2, "inches")
  22141. },
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(5 + 10 / 12, "feet"),
  22145. default: true
  22146. },
  22147. {
  22148. name: "Macro",
  22149. height: math.unit(1000, "feet")
  22150. },
  22151. {
  22152. name: "Megamacro",
  22153. height: math.unit(10, "miles")
  22154. },
  22155. {
  22156. name: "Gigamacro",
  22157. height: math.unit(3000, "miles")
  22158. },
  22159. {
  22160. name: "Teramacro",
  22161. height: math.unit(500000, "miles")
  22162. },
  22163. {
  22164. name: "Teramacro+",
  22165. height: math.unit(30, "galaxies")
  22166. },
  22167. ]
  22168. ))
  22169. characterMakers.push(() => makeCharacter(
  22170. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22171. {
  22172. front: {
  22173. height: math.unit(6, "feet"),
  22174. weight: math.unit(150, "lb"),
  22175. name: "Front",
  22176. image: {
  22177. source: "./media/characters/deathy/front.svg",
  22178. extra: 1552 / 1463,
  22179. bottom: 0.025
  22180. }
  22181. },
  22182. side: {
  22183. height: math.unit(6, "feet"),
  22184. weight: math.unit(150, "lb"),
  22185. name: "Side",
  22186. image: {
  22187. source: "./media/characters/deathy/side.svg",
  22188. extra: 1604 / 1455,
  22189. bottom: 0.025
  22190. }
  22191. },
  22192. back: {
  22193. height: math.unit(6, "feet"),
  22194. weight: math.unit(150, "lb"),
  22195. name: "Back",
  22196. image: {
  22197. source: "./media/characters/deathy/back.svg",
  22198. extra: 1580 / 1463,
  22199. bottom: 0.005
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Micro",
  22206. height: math.unit(5, "millimeters")
  22207. },
  22208. {
  22209. name: "Normal",
  22210. height: math.unit(6 + 5 / 12, "feet"),
  22211. default: true
  22212. },
  22213. ]
  22214. ))
  22215. characterMakers.push(() => makeCharacter(
  22216. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22217. {
  22218. front: {
  22219. height: math.unit(16, "feet"),
  22220. weight: math.unit(4000, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/juniper/front.svg",
  22224. bottom: 0.04
  22225. }
  22226. },
  22227. },
  22228. [
  22229. {
  22230. name: "Normal",
  22231. height: math.unit(16, "feet"),
  22232. default: true
  22233. },
  22234. ]
  22235. ))
  22236. characterMakers.push(() => makeCharacter(
  22237. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22238. {
  22239. front: {
  22240. height: math.unit(6, "feet"),
  22241. weight: math.unit(150, "lb"),
  22242. name: "Front",
  22243. image: {
  22244. source: "./media/characters/hipster/front.svg",
  22245. extra: 1312 / 1209,
  22246. bottom: 0.025
  22247. }
  22248. },
  22249. back: {
  22250. height: math.unit(6, "feet"),
  22251. weight: math.unit(150, "lb"),
  22252. name: "Back",
  22253. image: {
  22254. source: "./media/characters/hipster/back.svg",
  22255. extra: 1281 / 1196,
  22256. bottom: 0.01
  22257. }
  22258. },
  22259. },
  22260. [
  22261. {
  22262. name: "Micro",
  22263. height: math.unit(1, "mm")
  22264. },
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(4, "inches"),
  22268. default: true
  22269. },
  22270. {
  22271. name: "Macro",
  22272. height: math.unit(500, "feet")
  22273. },
  22274. {
  22275. name: "Megamacro",
  22276. height: math.unit(1000, "miles")
  22277. },
  22278. ]
  22279. ))
  22280. characterMakers.push(() => makeCharacter(
  22281. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22282. {
  22283. front: {
  22284. height: math.unit(6, "feet"),
  22285. weight: math.unit(150, "lb"),
  22286. name: "Front",
  22287. image: {
  22288. source: "./media/characters/tendirmuldr/front.svg",
  22289. extra: 1878 / 1772,
  22290. bottom: 0.015
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Megamacro",
  22297. height: math.unit(1500, "miles"),
  22298. default: true
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22304. {
  22305. front: {
  22306. height: math.unit(14, "feet"),
  22307. weight: math.unit(12000, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/mort/front.svg",
  22311. extra: 365 / 318,
  22312. bottom: 0.01
  22313. }
  22314. },
  22315. side: {
  22316. height: math.unit(14, "feet"),
  22317. weight: math.unit(12000, "lb"),
  22318. name: "Side",
  22319. image: {
  22320. source: "./media/characters/mort/side.svg",
  22321. extra: 365 / 318,
  22322. bottom: 0.052
  22323. },
  22324. default: true
  22325. },
  22326. back: {
  22327. height: math.unit(14, "feet"),
  22328. weight: math.unit(12000, "lb"),
  22329. name: "Back",
  22330. image: {
  22331. source: "./media/characters/mort/back.svg",
  22332. extra: 371 / 332,
  22333. bottom: 0.18
  22334. }
  22335. },
  22336. },
  22337. [
  22338. {
  22339. name: "Normal",
  22340. height: math.unit(14, "feet"),
  22341. default: true
  22342. },
  22343. ]
  22344. ))
  22345. characterMakers.push(() => makeCharacter(
  22346. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22347. {
  22348. front: {
  22349. height: math.unit(8, "feet"),
  22350. weight: math.unit(1, "ton"),
  22351. name: "Front",
  22352. image: {
  22353. source: "./media/characters/lycoa/front.svg",
  22354. extra: 1836/1728,
  22355. bottom: 81/1917
  22356. }
  22357. },
  22358. back: {
  22359. height: math.unit(8, "feet"),
  22360. weight: math.unit(1, "ton"),
  22361. name: "Back",
  22362. image: {
  22363. source: "./media/characters/lycoa/back.svg",
  22364. extra: 1785/1720,
  22365. bottom: 91/1876
  22366. }
  22367. },
  22368. head: {
  22369. height: math.unit(1.6243, "feet"),
  22370. name: "Head",
  22371. image: {
  22372. source: "./media/characters/lycoa/head.svg",
  22373. extra: 1011/782,
  22374. bottom: 0/1011
  22375. }
  22376. },
  22377. tailmaw: {
  22378. height: math.unit(1.9, "feet"),
  22379. name: "Tailmaw",
  22380. image: {
  22381. source: "./media/characters/lycoa/tailmaw.svg"
  22382. }
  22383. },
  22384. tentacles: {
  22385. height: math.unit(2.1, "feet"),
  22386. name: "Tentacles",
  22387. image: {
  22388. source: "./media/characters/lycoa/tentacles.svg"
  22389. }
  22390. },
  22391. dick: {
  22392. height: math.unit(1.73, "feet"),
  22393. name: "Dick",
  22394. image: {
  22395. source: "./media/characters/lycoa/dick.svg"
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(8, "feet"),
  22403. default: true
  22404. },
  22405. {
  22406. name: "Macro",
  22407. height: math.unit(30, "feet")
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22413. {
  22414. front: {
  22415. height: math.unit(4 + 2 / 12, "feet"),
  22416. weight: math.unit(70, "lb"),
  22417. name: "Front",
  22418. image: {
  22419. source: "./media/characters/naldara/front.svg",
  22420. extra: 1664/1387,
  22421. bottom: 81/1745
  22422. },
  22423. form: "anthro",
  22424. default: true
  22425. },
  22426. naga: {
  22427. height: math.unit(20, "feet"),
  22428. weight: math.unit(15000, "kg"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/naldara/naga.svg",
  22432. extra: 1590/1396,
  22433. bottom: 285/1875
  22434. },
  22435. form: "naga",
  22436. default: true
  22437. },
  22438. },
  22439. [
  22440. {
  22441. name: "Normal",
  22442. height: math.unit(4 + 2 / 12, "feet"),
  22443. form: "anthro",
  22444. default: true
  22445. },
  22446. {
  22447. name: "Normal",
  22448. height: math.unit(20, "feet"),
  22449. form: "naga",
  22450. default: true
  22451. },
  22452. ],
  22453. {
  22454. "anthro": {
  22455. name: "Anthro",
  22456. default: true
  22457. },
  22458. "naga": {
  22459. name: "Naga"
  22460. }
  22461. }
  22462. ))
  22463. characterMakers.push(() => makeCharacter(
  22464. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22465. {
  22466. front: {
  22467. height: math.unit(13 + 7 / 12, "feet"),
  22468. weight: math.unit(1500, "lb"),
  22469. name: "Front",
  22470. image: {
  22471. source: "./media/characters/briar/front.svg",
  22472. extra: 1223/1157,
  22473. bottom: 123/1346
  22474. }
  22475. },
  22476. },
  22477. [
  22478. {
  22479. name: "Normal",
  22480. height: math.unit(13 + 7 / 12, "feet"),
  22481. default: true
  22482. },
  22483. ]
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22487. {
  22488. side: {
  22489. height: math.unit(16, "feet"),
  22490. weight: math.unit(500, "lb"),
  22491. name: "Side",
  22492. image: {
  22493. source: "./media/characters/vanguard/side.svg",
  22494. extra: 1022/914,
  22495. bottom: 30/1052
  22496. }
  22497. },
  22498. sideAlt: {
  22499. height: math.unit(10, "feet"),
  22500. weight: math.unit(500, "lb"),
  22501. name: "Side (Alt)",
  22502. image: {
  22503. source: "./media/characters/vanguard/side-alt.svg",
  22504. extra: 502 / 425,
  22505. bottom: 0.087
  22506. }
  22507. },
  22508. },
  22509. [
  22510. {
  22511. name: "Normal",
  22512. height: math.unit(17.71, "feet"),
  22513. default: true
  22514. },
  22515. ]
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22519. {
  22520. front: {
  22521. height: math.unit(7.5, "feet"),
  22522. weight: math.unit(2, "lb"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/artemis/work-safe-front.svg",
  22526. extra: 1192 / 1075,
  22527. bottom: 0.07
  22528. },
  22529. form: "work-safe",
  22530. default: true
  22531. },
  22532. frontNsfw: {
  22533. height: math.unit(7.5, "feet"),
  22534. weight: math.unit(2, "lb"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/artemis/calibrating-front.svg",
  22538. extra: 1192 / 1075,
  22539. bottom: 0.07
  22540. },
  22541. form: "calibrating",
  22542. default: true
  22543. },
  22544. frontNsfwer: {
  22545. height: math.unit(7.5, "feet"),
  22546. weight: math.unit(2, "lb"),
  22547. name: "Front",
  22548. image: {
  22549. source: "./media/characters/artemis/oversize-load-front.svg",
  22550. extra: 1192 / 1075,
  22551. bottom: 0.07
  22552. },
  22553. form: "oversize-load",
  22554. default: true
  22555. },
  22556. side: {
  22557. height: math.unit(7.5, "feet"),
  22558. weight: math.unit(2, "lb"),
  22559. name: "Side",
  22560. image: {
  22561. source: "./media/characters/artemis/work-safe-side.svg",
  22562. extra: 1192 / 1075,
  22563. bottom: 0.07
  22564. },
  22565. form: "work-safe"
  22566. },
  22567. sideNsfw: {
  22568. height: math.unit(7.5, "feet"),
  22569. weight: math.unit(2, "lb"),
  22570. name: "Side",
  22571. image: {
  22572. source: "./media/characters/artemis/calibrating-side.svg",
  22573. extra: 1192 / 1075,
  22574. bottom: 0.07
  22575. },
  22576. form: "calibrating"
  22577. },
  22578. sideNsfwer: {
  22579. height: math.unit(7.5, "feet"),
  22580. weight: math.unit(2, "lb"),
  22581. name: "Side",
  22582. image: {
  22583. source: "./media/characters/artemis/oversize-load-side.svg",
  22584. extra: 1192 / 1075,
  22585. bottom: 0.07
  22586. },
  22587. form: "oversize-load"
  22588. },
  22589. maw: {
  22590. height: math.unit(1.1, "feet"),
  22591. name: "Maw",
  22592. image: {
  22593. source: "./media/characters/artemis/maw.svg"
  22594. },
  22595. form: "work-safe"
  22596. },
  22597. stomach: {
  22598. height: math.unit(0.95, "feet"),
  22599. name: "Stomach",
  22600. image: {
  22601. source: "./media/characters/artemis/stomach.svg"
  22602. },
  22603. form: "work-safe"
  22604. },
  22605. dickCanine: {
  22606. height: math.unit(1, "feet"),
  22607. name: "Dick (Canine)",
  22608. image: {
  22609. source: "./media/characters/artemis/dick-canine.svg"
  22610. },
  22611. form: "calibrating"
  22612. },
  22613. dickEquine: {
  22614. height: math.unit(0.85, "feet"),
  22615. name: "Dick (Equine)",
  22616. image: {
  22617. source: "./media/characters/artemis/dick-equine.svg"
  22618. },
  22619. form: "calibrating"
  22620. },
  22621. dickExotic: {
  22622. height: math.unit(0.85, "feet"),
  22623. name: "Dick (Exotic)",
  22624. image: {
  22625. source: "./media/characters/artemis/dick-exotic.svg"
  22626. },
  22627. form: "calibrating"
  22628. },
  22629. dickCanineBigger: {
  22630. height: math.unit(1 * 1.33, "feet"),
  22631. name: "Dick (Canine)",
  22632. image: {
  22633. source: "./media/characters/artemis/dick-canine.svg"
  22634. },
  22635. form: "oversize-load"
  22636. },
  22637. dickEquineBigger: {
  22638. height: math.unit(0.85 * 1.33, "feet"),
  22639. name: "Dick (Equine)",
  22640. image: {
  22641. source: "./media/characters/artemis/dick-equine.svg"
  22642. },
  22643. form: "oversize-load"
  22644. },
  22645. dickExoticBigger: {
  22646. height: math.unit(0.85 * 1.33, "feet"),
  22647. name: "Dick (Exotic)",
  22648. image: {
  22649. source: "./media/characters/artemis/dick-exotic.svg"
  22650. },
  22651. form: "oversize-load"
  22652. },
  22653. },
  22654. [
  22655. {
  22656. name: "Normal",
  22657. height: math.unit(7.5, "feet"),
  22658. form: "work-safe",
  22659. default: true
  22660. },
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(7.5, "feet"),
  22664. form: "calibrating",
  22665. default: true
  22666. },
  22667. {
  22668. name: "Normal",
  22669. height: math.unit(7.5, "feet"),
  22670. form: "oversize-load",
  22671. default: true
  22672. },
  22673. {
  22674. name: "Enlarged",
  22675. height: math.unit(12, "feet"),
  22676. form: "work-safe",
  22677. },
  22678. {
  22679. name: "Enlarged",
  22680. height: math.unit(12, "feet"),
  22681. form: "calibrating",
  22682. },
  22683. {
  22684. name: "Enlarged",
  22685. height: math.unit(12, "feet"),
  22686. form: "oversize-load",
  22687. },
  22688. ],
  22689. {
  22690. "work-safe": {
  22691. name: "Work-Safe",
  22692. default: true
  22693. },
  22694. "calibrating": {
  22695. name: "Calibrating"
  22696. },
  22697. "oversize-load": {
  22698. name: "Oversize Load"
  22699. }
  22700. }
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(5 + 3 / 12, "feet"),
  22707. weight: math.unit(160, "lb"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/kira/front.svg",
  22711. extra: 906 / 786,
  22712. bottom: 0.01
  22713. }
  22714. },
  22715. back: {
  22716. height: math.unit(5 + 3 / 12, "feet"),
  22717. weight: math.unit(160, "lb"),
  22718. name: "Back",
  22719. image: {
  22720. source: "./media/characters/kira/back.svg",
  22721. extra: 882 / 757,
  22722. bottom: 0.005
  22723. }
  22724. },
  22725. frontDressed: {
  22726. height: math.unit(5 + 3 / 12, "feet"),
  22727. weight: math.unit(160, "lb"),
  22728. name: "Front (Dressed)",
  22729. image: {
  22730. source: "./media/characters/kira/front-dressed.svg",
  22731. extra: 906 / 786,
  22732. bottom: 0.01
  22733. }
  22734. },
  22735. beans: {
  22736. height: math.unit(0.92, "feet"),
  22737. name: "Beans",
  22738. image: {
  22739. source: "./media/characters/kira/beans.svg"
  22740. }
  22741. },
  22742. },
  22743. [
  22744. {
  22745. name: "Normal",
  22746. height: math.unit(5 + 3 / 12, "feet"),
  22747. default: true
  22748. },
  22749. ]
  22750. ))
  22751. characterMakers.push(() => makeCharacter(
  22752. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22753. {
  22754. front: {
  22755. height: math.unit(5 + 4 / 12, "feet"),
  22756. weight: math.unit(145, "lb"),
  22757. name: "Front",
  22758. image: {
  22759. source: "./media/characters/scramble/front.svg",
  22760. extra: 763 / 727,
  22761. bottom: 0.05
  22762. }
  22763. },
  22764. back: {
  22765. height: math.unit(5 + 4 / 12, "feet"),
  22766. weight: math.unit(145, "lb"),
  22767. name: "Back",
  22768. image: {
  22769. source: "./media/characters/scramble/back.svg",
  22770. extra: 826 / 737,
  22771. bottom: 0.002
  22772. }
  22773. },
  22774. },
  22775. [
  22776. {
  22777. name: "Normal",
  22778. height: math.unit(5 + 4 / 12, "feet"),
  22779. default: true
  22780. },
  22781. ]
  22782. ))
  22783. characterMakers.push(() => makeCharacter(
  22784. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22785. {
  22786. side: {
  22787. height: math.unit(6 + 2 / 12, "feet"),
  22788. weight: math.unit(190, "lb"),
  22789. name: "Side",
  22790. image: {
  22791. source: "./media/characters/biscuit/side.svg",
  22792. extra: 858 / 791,
  22793. bottom: 0.044
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(6 + 2 / 12, "feet"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(5 + 2 / 12, "feet"),
  22810. weight: math.unit(120, "lb"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/poffin/front.svg",
  22814. extra: 786 / 680,
  22815. bottom: 0.005
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Normal",
  22822. height: math.unit(5 + 2 / 12, "feet"),
  22823. default: true
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22829. {
  22830. front: {
  22831. height: math.unit(6 + 3 / 12, "feet"),
  22832. weight: math.unit(519, "lb"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/dhari/front.svg",
  22836. extra: 1048 / 946,
  22837. bottom: 0.015
  22838. }
  22839. },
  22840. back: {
  22841. height: math.unit(6 + 3 / 12, "feet"),
  22842. weight: math.unit(519, "lb"),
  22843. name: "Back",
  22844. image: {
  22845. source: "./media/characters/dhari/back.svg",
  22846. extra: 1048 / 931,
  22847. bottom: 0.005
  22848. }
  22849. },
  22850. frontDressed: {
  22851. height: math.unit(6 + 3 / 12, "feet"),
  22852. weight: math.unit(519, "lb"),
  22853. name: "Front (Dressed)",
  22854. image: {
  22855. source: "./media/characters/dhari/front-dressed.svg",
  22856. extra: 1713 / 1546,
  22857. bottom: 0.02
  22858. }
  22859. },
  22860. backDressed: {
  22861. height: math.unit(6 + 3 / 12, "feet"),
  22862. weight: math.unit(519, "lb"),
  22863. name: "Back (Dressed)",
  22864. image: {
  22865. source: "./media/characters/dhari/back-dressed.svg",
  22866. extra: 1699 / 1537,
  22867. bottom: 0.01
  22868. }
  22869. },
  22870. maw: {
  22871. height: math.unit(0.95, "feet"),
  22872. name: "Maw",
  22873. image: {
  22874. source: "./media/characters/dhari/maw.svg"
  22875. }
  22876. },
  22877. wereFront: {
  22878. height: math.unit(12 + 8 / 12, "feet"),
  22879. weight: math.unit(4000, "lb"),
  22880. name: "Front (Were)",
  22881. image: {
  22882. source: "./media/characters/dhari/were-front.svg",
  22883. extra: 1065 / 969,
  22884. bottom: 0.015
  22885. }
  22886. },
  22887. wereBack: {
  22888. height: math.unit(12 + 8 / 12, "feet"),
  22889. weight: math.unit(4000, "lb"),
  22890. name: "Back (Were)",
  22891. image: {
  22892. source: "./media/characters/dhari/were-back.svg",
  22893. extra: 1065 / 969,
  22894. bottom: 0.012
  22895. }
  22896. },
  22897. wereMaw: {
  22898. height: math.unit(0.625, "meters"),
  22899. name: "Maw (Were)",
  22900. image: {
  22901. source: "./media/characters/dhari/were-maw.svg"
  22902. }
  22903. },
  22904. },
  22905. [
  22906. {
  22907. name: "Normal",
  22908. height: math.unit(6 + 3 / 12, "feet"),
  22909. default: true
  22910. },
  22911. ]
  22912. ))
  22913. characterMakers.push(() => makeCharacter(
  22914. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22915. {
  22916. anthro: {
  22917. height: math.unit(5 + 7 / 12, "feet"),
  22918. weight: math.unit(175, "lb"),
  22919. name: "Anthro",
  22920. image: {
  22921. source: "./media/characters/rena-dyne/anthro.svg",
  22922. extra: 1849 / 1785,
  22923. bottom: 0.005
  22924. }
  22925. },
  22926. taur: {
  22927. height: math.unit(15 + 6 / 12, "feet"),
  22928. weight: math.unit(8000, "lb"),
  22929. name: "Taur",
  22930. image: {
  22931. source: "./media/characters/rena-dyne/taur.svg",
  22932. extra: 2315 / 2234,
  22933. bottom: 0.033
  22934. }
  22935. },
  22936. },
  22937. [
  22938. {
  22939. name: "Normal",
  22940. height: math.unit(5 + 7 / 12, "feet"),
  22941. default: true
  22942. },
  22943. ]
  22944. ))
  22945. characterMakers.push(() => makeCharacter(
  22946. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22947. {
  22948. front: {
  22949. height: math.unit(8, "feet"),
  22950. weight: math.unit(600, "lb"),
  22951. name: "Front",
  22952. image: {
  22953. source: "./media/characters/weremeep/front.svg",
  22954. extra: 970/849,
  22955. bottom: 7/977
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(8, "feet"),
  22963. default: true
  22964. },
  22965. {
  22966. name: "Lorg",
  22967. height: math.unit(12, "feet")
  22968. },
  22969. {
  22970. name: "Oh Lawd She Comin'",
  22971. height: math.unit(20, "feet")
  22972. },
  22973. ]
  22974. ))
  22975. characterMakers.push(() => makeCharacter(
  22976. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22977. {
  22978. front: {
  22979. height: math.unit(4, "feet"),
  22980. weight: math.unit(90, "lb"),
  22981. name: "Front",
  22982. image: {
  22983. source: "./media/characters/reza/front.svg",
  22984. extra: 1183 / 1111,
  22985. bottom: 0.017
  22986. }
  22987. },
  22988. back: {
  22989. height: math.unit(4, "feet"),
  22990. weight: math.unit(90, "lb"),
  22991. name: "Back",
  22992. image: {
  22993. source: "./media/characters/reza/back.svg",
  22994. extra: 1183 / 1111,
  22995. bottom: 0.01
  22996. }
  22997. },
  22998. drake: {
  22999. height: math.unit(30, "feet"),
  23000. weight: math.unit(246960, "lb"),
  23001. name: "Drake",
  23002. image: {
  23003. source: "./media/characters/reza/drake.svg",
  23004. extra: 2350 / 2024,
  23005. bottom: 60.7 / 2403
  23006. }
  23007. },
  23008. },
  23009. [
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(4, "feet"),
  23013. default: true
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23019. {
  23020. side: {
  23021. height: math.unit(15, "feet"),
  23022. weight: math.unit(14, "tons"),
  23023. name: "Side",
  23024. image: {
  23025. source: "./media/characters/athea/side.svg",
  23026. extra: 960 / 540,
  23027. bottom: 0.003
  23028. }
  23029. },
  23030. sitting: {
  23031. height: math.unit(6 * 2.85, "feet"),
  23032. weight: math.unit(14, "tons"),
  23033. name: "Sitting",
  23034. image: {
  23035. source: "./media/characters/athea/sitting.svg",
  23036. extra: 621 / 581,
  23037. bottom: 0.075
  23038. }
  23039. },
  23040. maw: {
  23041. height: math.unit(7.59498031496063, "feet"),
  23042. name: "Maw",
  23043. image: {
  23044. source: "./media/characters/athea/maw.svg"
  23045. }
  23046. },
  23047. },
  23048. [
  23049. {
  23050. name: "Lap Cat",
  23051. height: math.unit(2.5, "feet")
  23052. },
  23053. {
  23054. name: "Minimacro",
  23055. height: math.unit(15, "feet"),
  23056. default: true
  23057. },
  23058. {
  23059. name: "Macro",
  23060. height: math.unit(120, "feet")
  23061. },
  23062. {
  23063. name: "Macro+",
  23064. height: math.unit(640, "feet")
  23065. },
  23066. {
  23067. name: "Colossus",
  23068. height: math.unit(2.2, "miles")
  23069. },
  23070. ]
  23071. ))
  23072. characterMakers.push(() => makeCharacter(
  23073. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23074. {
  23075. front: {
  23076. height: math.unit(8 + 8 / 12, "feet"),
  23077. weight: math.unit(130, "kg"),
  23078. name: "Front",
  23079. image: {
  23080. source: "./media/characters/seroko/front.svg",
  23081. extra: 1385 / 1280,
  23082. bottom: 0.025
  23083. }
  23084. },
  23085. back: {
  23086. height: math.unit(8 + 8 / 12, "feet"),
  23087. weight: math.unit(130, "kg"),
  23088. name: "Back",
  23089. image: {
  23090. source: "./media/characters/seroko/back.svg",
  23091. extra: 1369 / 1238,
  23092. bottom: 0.018
  23093. }
  23094. },
  23095. frontDressed: {
  23096. height: math.unit(8 + 8 / 12, "feet"),
  23097. weight: math.unit(130, "kg"),
  23098. name: "Front (Dressed)",
  23099. image: {
  23100. source: "./media/characters/seroko/front-dressed.svg",
  23101. extra: 1366 / 1275,
  23102. bottom: 0.03
  23103. }
  23104. },
  23105. },
  23106. [
  23107. {
  23108. name: "Normal",
  23109. height: math.unit(8 + 8 / 12, "feet"),
  23110. default: true
  23111. },
  23112. ]
  23113. ))
  23114. characterMakers.push(() => makeCharacter(
  23115. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23116. {
  23117. front: {
  23118. height: math.unit(5.5, "feet"),
  23119. weight: math.unit(160, "lb"),
  23120. name: "Front",
  23121. image: {
  23122. source: "./media/characters/quatzi/front.svg",
  23123. extra: 2346 / 2242,
  23124. bottom: 0.015
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(5.5, "feet"),
  23132. default: true
  23133. },
  23134. {
  23135. name: "Big",
  23136. height: math.unit(7.7, "feet")
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(5 + 11 / 12, "feet"),
  23145. weight: math.unit(180, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/sen/front.svg",
  23149. extra: 1321 / 1254,
  23150. bottom: 0.015
  23151. }
  23152. },
  23153. side: {
  23154. height: math.unit(5 + 11 / 12, "feet"),
  23155. weight: math.unit(180, "lb"),
  23156. name: "Side",
  23157. image: {
  23158. source: "./media/characters/sen/side.svg",
  23159. extra: 1321 / 1254,
  23160. bottom: 0.007
  23161. }
  23162. },
  23163. back: {
  23164. height: math.unit(5 + 11 / 12, "feet"),
  23165. weight: math.unit(180, "lb"),
  23166. name: "Back",
  23167. image: {
  23168. source: "./media/characters/sen/back.svg",
  23169. extra: 1321 / 1254
  23170. }
  23171. },
  23172. },
  23173. [
  23174. {
  23175. name: "Normal",
  23176. height: math.unit(5 + 11 / 12, "feet"),
  23177. default: true
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(166.6, "cm"),
  23186. weight: math.unit(66.6, "kg"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/fruity/front.svg",
  23190. extra: 1510 / 1386,
  23191. bottom: 0.04
  23192. }
  23193. },
  23194. back: {
  23195. height: math.unit(166.6, "cm"),
  23196. weight: math.unit(66.6, "lb"),
  23197. name: "Back",
  23198. image: {
  23199. source: "./media/characters/fruity/back.svg",
  23200. extra: 1563 / 1435,
  23201. bottom: 0.005
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(166.6, "cm"),
  23209. default: true
  23210. },
  23211. {
  23212. name: "Demonic",
  23213. height: math.unit(166.6, "feet")
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23219. {
  23220. side: {
  23221. height: math.unit(10, "feet"),
  23222. weight: math.unit(500, "lb"),
  23223. name: "Side",
  23224. image: {
  23225. source: "./media/characters/zost/side.svg",
  23226. extra: 2870/2533,
  23227. bottom: 252/3122
  23228. }
  23229. },
  23230. mawFront: {
  23231. height: math.unit(1.08, "meters"),
  23232. name: "Maw (Front)",
  23233. image: {
  23234. source: "./media/characters/zost/maw-front.svg"
  23235. }
  23236. },
  23237. mawSide: {
  23238. height: math.unit(2.66, "feet"),
  23239. name: "Maw (Side)",
  23240. image: {
  23241. source: "./media/characters/zost/maw-side.svg"
  23242. }
  23243. },
  23244. wingspan: {
  23245. height: math.unit(7.4, "feet"),
  23246. name: "Wingspan",
  23247. image: {
  23248. source: "./media/characters/zost/wingspan.svg"
  23249. }
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(10, "feet"),
  23256. default: true
  23257. },
  23258. ]
  23259. ))
  23260. characterMakers.push(() => makeCharacter(
  23261. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23262. {
  23263. front: {
  23264. height: math.unit(5 + 4 / 12, "feet"),
  23265. weight: math.unit(120, "lb"),
  23266. name: "Front",
  23267. image: {
  23268. source: "./media/characters/luci/front.svg",
  23269. extra: 1985 / 1884,
  23270. bottom: 0.04
  23271. }
  23272. },
  23273. back: {
  23274. height: math.unit(5 + 4 / 12, "feet"),
  23275. weight: math.unit(120, "lb"),
  23276. name: "Back",
  23277. image: {
  23278. source: "./media/characters/luci/back.svg",
  23279. extra: 1892 / 1791,
  23280. bottom: 0.002
  23281. }
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Normal",
  23287. height: math.unit(5 + 4 / 12, "feet"),
  23288. default: true
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23294. {
  23295. front: {
  23296. height: math.unit(1500, "feet"),
  23297. weight: math.unit(3.8e6, "tons"),
  23298. name: "Front",
  23299. image: {
  23300. source: "./media/characters/2th/front.svg",
  23301. extra: 3489 / 3350,
  23302. bottom: 0.1
  23303. }
  23304. },
  23305. foot: {
  23306. height: math.unit(461, "feet"),
  23307. name: "Foot",
  23308. image: {
  23309. source: "./media/characters/2th/foot.svg"
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "\"Micro\"",
  23316. height: math.unit(15 + 7 / 12, "feet")
  23317. },
  23318. {
  23319. name: "Normal",
  23320. height: math.unit(1500, "feet"),
  23321. default: true
  23322. },
  23323. {
  23324. name: "Macro",
  23325. height: math.unit(5000, "feet")
  23326. },
  23327. {
  23328. name: "Megamacro",
  23329. height: math.unit(15, "miles")
  23330. },
  23331. {
  23332. name: "Gigamacro",
  23333. height: math.unit(4000, "miles")
  23334. },
  23335. {
  23336. name: "Galactic",
  23337. height: math.unit(50, "AU")
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(5 + 6 / 12, "feet"),
  23346. weight: math.unit(220, "lb"),
  23347. name: "Front",
  23348. image: {
  23349. source: "./media/characters/amethyst/front.svg",
  23350. extra: 2078 / 2040,
  23351. bottom: 0.045
  23352. }
  23353. },
  23354. back: {
  23355. height: math.unit(5 + 6 / 12, "feet"),
  23356. weight: math.unit(220, "lb"),
  23357. name: "Back",
  23358. image: {
  23359. source: "./media/characters/amethyst/back.svg",
  23360. extra: 2021 / 1989,
  23361. bottom: 0.02
  23362. }
  23363. },
  23364. },
  23365. [
  23366. {
  23367. name: "Normal",
  23368. height: math.unit(5 + 6 / 12, "feet"),
  23369. default: true
  23370. },
  23371. ]
  23372. ))
  23373. characterMakers.push(() => makeCharacter(
  23374. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23375. {
  23376. front: {
  23377. height: math.unit(4 + 11 / 12, "feet"),
  23378. weight: math.unit(120, "lb"),
  23379. name: "Front",
  23380. image: {
  23381. source: "./media/characters/yumi-akiyama/front.svg",
  23382. extra: 1327 / 1235,
  23383. bottom: 0.02
  23384. }
  23385. },
  23386. back: {
  23387. height: math.unit(4 + 11 / 12, "feet"),
  23388. weight: math.unit(120, "lb"),
  23389. name: "Back",
  23390. image: {
  23391. source: "./media/characters/yumi-akiyama/back.svg",
  23392. extra: 1287 / 1245,
  23393. bottom: 0.002
  23394. }
  23395. },
  23396. },
  23397. [
  23398. {
  23399. name: "Galactic",
  23400. height: math.unit(50, "galaxies"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Universal",
  23405. height: math.unit(100, "universes")
  23406. },
  23407. ]
  23408. ))
  23409. characterMakers.push(() => makeCharacter(
  23410. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23411. {
  23412. front: {
  23413. height: math.unit(8, "feet"),
  23414. weight: math.unit(500, "lb"),
  23415. name: "Front",
  23416. image: {
  23417. source: "./media/characters/rifter-yrmori/front.svg",
  23418. extra: 1180 / 1125,
  23419. bottom: 0.02
  23420. }
  23421. },
  23422. back: {
  23423. height: math.unit(8, "feet"),
  23424. weight: math.unit(500, "lb"),
  23425. name: "Back",
  23426. image: {
  23427. source: "./media/characters/rifter-yrmori/back.svg",
  23428. extra: 1190 / 1145,
  23429. bottom: 0.001
  23430. }
  23431. },
  23432. wings: {
  23433. height: math.unit(7.75, "feet"),
  23434. weight: math.unit(500, "lb"),
  23435. name: "Wings",
  23436. image: {
  23437. source: "./media/characters/rifter-yrmori/wings.svg",
  23438. extra: 1357 / 1285
  23439. }
  23440. },
  23441. maw: {
  23442. height: math.unit(0.8, "feet"),
  23443. name: "Maw",
  23444. image: {
  23445. source: "./media/characters/rifter-yrmori/maw.svg"
  23446. }
  23447. },
  23448. mawfront: {
  23449. height: math.unit(1.45, "feet"),
  23450. name: "Maw (Front)",
  23451. image: {
  23452. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23453. }
  23454. },
  23455. },
  23456. [
  23457. {
  23458. name: "Normal",
  23459. height: math.unit(8, "feet"),
  23460. default: true
  23461. },
  23462. {
  23463. name: "Macro",
  23464. height: math.unit(42, "meters")
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23470. {
  23471. were: {
  23472. height: math.unit(25 + 6 / 12, "feet"),
  23473. weight: math.unit(10000, "lb"),
  23474. name: "Were",
  23475. image: {
  23476. source: "./media/characters/tahajin/were.svg",
  23477. extra: 801 / 770,
  23478. bottom: 0.042
  23479. }
  23480. },
  23481. aquatic: {
  23482. height: math.unit(6 + 4 / 12, "feet"),
  23483. weight: math.unit(160, "lb"),
  23484. name: "Aquatic",
  23485. image: {
  23486. source: "./media/characters/tahajin/aquatic.svg",
  23487. extra: 572 / 542,
  23488. bottom: 0.04
  23489. }
  23490. },
  23491. chow: {
  23492. height: math.unit(8 + 11 / 12, "feet"),
  23493. weight: math.unit(450, "lb"),
  23494. name: "Chow",
  23495. image: {
  23496. source: "./media/characters/tahajin/chow.svg",
  23497. extra: 660 / 640,
  23498. bottom: 0.015
  23499. }
  23500. },
  23501. demiNaga: {
  23502. height: math.unit(6 + 8 / 12, "feet"),
  23503. weight: math.unit(300, "lb"),
  23504. name: "Demi Naga",
  23505. image: {
  23506. source: "./media/characters/tahajin/demi-naga.svg",
  23507. extra: 643 / 615,
  23508. bottom: 0.1
  23509. }
  23510. },
  23511. data: {
  23512. height: math.unit(5, "inches"),
  23513. weight: math.unit(0.1, "lb"),
  23514. name: "Data",
  23515. image: {
  23516. source: "./media/characters/tahajin/data.svg"
  23517. }
  23518. },
  23519. fluu: {
  23520. height: math.unit(5 + 7 / 12, "feet"),
  23521. weight: math.unit(140, "lb"),
  23522. name: "Fluu",
  23523. image: {
  23524. source: "./media/characters/tahajin/fluu.svg",
  23525. extra: 628 / 592,
  23526. bottom: 0.02
  23527. }
  23528. },
  23529. starWarrior: {
  23530. height: math.unit(4 + 5 / 12, "feet"),
  23531. weight: math.unit(50, "lb"),
  23532. name: "Star Warrior",
  23533. image: {
  23534. source: "./media/characters/tahajin/star-warrior.svg"
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Normal",
  23541. height: math.unit(25 + 6 / 12, "feet"),
  23542. default: true
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(8, "feet"),
  23551. weight: math.unit(350, "lb"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/gabira/front.svg",
  23555. extra: 1261/1154,
  23556. bottom: 51/1312
  23557. }
  23558. },
  23559. back: {
  23560. height: math.unit(8, "feet"),
  23561. weight: math.unit(350, "lb"),
  23562. name: "Back",
  23563. image: {
  23564. source: "./media/characters/gabira/back.svg",
  23565. extra: 1265/1163,
  23566. bottom: 46/1311
  23567. }
  23568. },
  23569. head: {
  23570. height: math.unit(2.85, "feet"),
  23571. name: "Head",
  23572. image: {
  23573. source: "./media/characters/gabira/head.svg"
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Normal",
  23580. height: math.unit(8, "feet"),
  23581. default: true
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23587. {
  23588. front: {
  23589. height: math.unit(5 + 3 / 12, "feet"),
  23590. weight: math.unit(137, "lb"),
  23591. name: "Front",
  23592. image: {
  23593. source: "./media/characters/sasha-katraine/front.svg",
  23594. extra: 1745/1694,
  23595. bottom: 37/1782
  23596. }
  23597. },
  23598. back: {
  23599. height: math.unit(5 + 3 / 12, "feet"),
  23600. weight: math.unit(137, "lb"),
  23601. name: "Back",
  23602. image: {
  23603. source: "./media/characters/sasha-katraine/back.svg",
  23604. extra: 1776/1699,
  23605. bottom: 26/1802
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "Micro",
  23612. height: math.unit(5, "inches")
  23613. },
  23614. {
  23615. name: "Normal",
  23616. height: math.unit(5 + 3 / 12, "feet"),
  23617. default: true
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23623. {
  23624. side: {
  23625. height: math.unit(4, "inches"),
  23626. weight: math.unit(200, "grams"),
  23627. name: "Side",
  23628. image: {
  23629. source: "./media/characters/der/side.svg",
  23630. extra: 719 / 400,
  23631. bottom: 30.6 / 749.9187
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Micro",
  23638. height: math.unit(4, "inches"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23645. {
  23646. side: {
  23647. height: math.unit(30, "meters"),
  23648. weight: math.unit(700, "tonnes"),
  23649. name: "Side",
  23650. image: {
  23651. source: "./media/characters/fixerdragon/side.svg",
  23652. extra: (1293.0514 - 116.03) / 1106.86,
  23653. bottom: 116.03 / 1293.0514
  23654. }
  23655. },
  23656. },
  23657. [
  23658. {
  23659. name: "Planck",
  23660. height: math.unit(1.6e-35, "meters")
  23661. },
  23662. {
  23663. name: "Micro",
  23664. height: math.unit(0.4, "meters")
  23665. },
  23666. {
  23667. name: "Normal",
  23668. height: math.unit(30, "meters"),
  23669. default: true
  23670. },
  23671. {
  23672. name: "Megamacro",
  23673. height: math.unit(1.2, "megameters")
  23674. },
  23675. {
  23676. name: "Teramacro",
  23677. height: math.unit(130, "terameters")
  23678. },
  23679. {
  23680. name: "Yottamacro",
  23681. height: math.unit(6200, "yottameters")
  23682. },
  23683. ]
  23684. ));
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23687. {
  23688. front: {
  23689. height: math.unit(8, "feet"),
  23690. weight: math.unit(250, "lb"),
  23691. name: "Front",
  23692. image: {
  23693. source: "./media/characters/kite/front.svg",
  23694. extra: 2796 / 2659,
  23695. bottom: 0.002
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(8, "feet"),
  23703. default: true
  23704. },
  23705. {
  23706. name: "Macro",
  23707. height: math.unit(360, "feet")
  23708. },
  23709. {
  23710. name: "Megamacro",
  23711. height: math.unit(1500, "feet")
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23717. {
  23718. front: {
  23719. height: math.unit(5 + 11/12, "feet"),
  23720. weight: math.unit(170, "lb"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/poojawa-vynar/front.svg",
  23724. extra: 1735/1585,
  23725. bottom: 96/1831
  23726. }
  23727. },
  23728. back: {
  23729. height: math.unit(5 + 11/12, "feet"),
  23730. weight: math.unit(170, "lb"),
  23731. name: "Back",
  23732. image: {
  23733. source: "./media/characters/poojawa-vynar/back.svg",
  23734. extra: 1749/1607,
  23735. bottom: 28/1777
  23736. }
  23737. },
  23738. male: {
  23739. height: math.unit(5 + 11/12, "feet"),
  23740. weight: math.unit(170, "lb"),
  23741. name: "Male",
  23742. image: {
  23743. source: "./media/characters/poojawa-vynar/male.svg",
  23744. extra: 1855/1713,
  23745. bottom: 63/1918
  23746. }
  23747. },
  23748. taur: {
  23749. height: math.unit(5 + 11/12, "feet"),
  23750. weight: math.unit(170, "lb"),
  23751. name: "Taur",
  23752. image: {
  23753. source: "./media/characters/poojawa-vynar/taur.svg",
  23754. extra: 1151/1059,
  23755. bottom: 356/1507
  23756. }
  23757. },
  23758. frontDressed: {
  23759. height: math.unit(5 + 11/12, "feet"),
  23760. weight: math.unit(170, "lb"),
  23761. name: "Front (Dressed)",
  23762. image: {
  23763. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23764. extra: 1735/1585,
  23765. bottom: 96/1831
  23766. }
  23767. },
  23768. backDressed: {
  23769. height: math.unit(5 + 11/12, "feet"),
  23770. weight: math.unit(170, "lb"),
  23771. name: "Back (Dressed)",
  23772. image: {
  23773. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23774. extra: 1749/1607,
  23775. bottom: 28/1777
  23776. }
  23777. },
  23778. maleDressed: {
  23779. height: math.unit(5 + 11/12, "feet"),
  23780. weight: math.unit(170, "lb"),
  23781. name: "Male (Dressed)",
  23782. image: {
  23783. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23784. extra: 1855/1713,
  23785. bottom: 63/1918
  23786. }
  23787. },
  23788. taurDressed: {
  23789. height: math.unit(5 + 11/12, "feet"),
  23790. weight: math.unit(170, "lb"),
  23791. name: "Taur (Dressed)",
  23792. image: {
  23793. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23794. extra: 1151/1059,
  23795. bottom: 356/1507
  23796. }
  23797. },
  23798. maw: {
  23799. height: math.unit(1.46, "feet"),
  23800. name: "Maw",
  23801. image: {
  23802. source: "./media/characters/poojawa-vynar/maw.svg"
  23803. }
  23804. },
  23805. head: {
  23806. height: math.unit(2.34, "feet"),
  23807. name: "Head",
  23808. image: {
  23809. source: "./media/characters/poojawa-vynar/head.svg"
  23810. }
  23811. },
  23812. paw: {
  23813. height: math.unit(1.61, "feet"),
  23814. name: "Paw",
  23815. image: {
  23816. source: "./media/characters/poojawa-vynar/paw.svg"
  23817. }
  23818. },
  23819. pawToering: {
  23820. height: math.unit(1.72, "feet"),
  23821. name: "Paw (Toering)",
  23822. image: {
  23823. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23824. }
  23825. },
  23826. toering: {
  23827. height: math.unit(2.9, "inches"),
  23828. name: "Toering",
  23829. image: {
  23830. source: "./media/characters/poojawa-vynar/toering.svg"
  23831. }
  23832. },
  23833. shaft: {
  23834. height: math.unit(0.625, "feet"),
  23835. name: "Shaft",
  23836. image: {
  23837. source: "./media/characters/poojawa-vynar/shaft.svg"
  23838. }
  23839. },
  23840. spade: {
  23841. height: math.unit(0.42, "feet"),
  23842. name: "Spade",
  23843. image: {
  23844. source: "./media/characters/poojawa-vynar/spade.svg"
  23845. }
  23846. },
  23847. },
  23848. [
  23849. {
  23850. name: "Shortstack",
  23851. height: math.unit(4, "feet")
  23852. },
  23853. {
  23854. name: "Normal",
  23855. height: math.unit(5 + 11 / 12, "feet"),
  23856. default: true
  23857. },
  23858. {
  23859. name: "Tauric",
  23860. height: math.unit(4, "meters")
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23866. {
  23867. front: {
  23868. height: math.unit(293, "meters"),
  23869. weight: math.unit(70400, "tons"),
  23870. name: "Front",
  23871. image: {
  23872. source: "./media/characters/violette/front.svg",
  23873. extra: 1227 / 1180,
  23874. bottom: 0.005
  23875. }
  23876. },
  23877. back: {
  23878. height: math.unit(293, "meters"),
  23879. weight: math.unit(70400, "tons"),
  23880. name: "Back",
  23881. image: {
  23882. source: "./media/characters/violette/back.svg",
  23883. extra: 1227 / 1180,
  23884. bottom: 0.005
  23885. }
  23886. },
  23887. },
  23888. [
  23889. {
  23890. name: "Macro",
  23891. height: math.unit(293, "meters"),
  23892. default: true
  23893. },
  23894. ]
  23895. ))
  23896. characterMakers.push(() => makeCharacter(
  23897. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23898. {
  23899. front: {
  23900. height: math.unit(1050, "feet"),
  23901. weight: math.unit(200000, "tons"),
  23902. name: "Front",
  23903. image: {
  23904. source: "./media/characters/alessandra/front.svg",
  23905. extra: 960 / 912,
  23906. bottom: 0.06
  23907. }
  23908. },
  23909. },
  23910. [
  23911. {
  23912. name: "Macro",
  23913. height: math.unit(1050, "feet")
  23914. },
  23915. {
  23916. name: "Macro+",
  23917. height: math.unit(900, "meters"),
  23918. default: true
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23924. {
  23925. front: {
  23926. height: math.unit(5, "feet"),
  23927. weight: math.unit(187, "lb"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/person/front.svg",
  23931. extra: 3087 / 2945,
  23932. bottom: 91 / 3181
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Micro",
  23939. height: math.unit(3, "inches")
  23940. },
  23941. {
  23942. name: "Normal",
  23943. height: math.unit(5, "feet"),
  23944. default: true
  23945. },
  23946. {
  23947. name: "Macro",
  23948. height: math.unit(90, "feet")
  23949. },
  23950. {
  23951. name: "Max Size",
  23952. height: math.unit(280, "feet")
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23958. {
  23959. front: {
  23960. height: math.unit(4.5, "meters"),
  23961. weight: math.unit(3200, "lb"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/ty/front.svg",
  23965. extra: 1038 / 960,
  23966. bottom: 31.156 / 1068
  23967. }
  23968. },
  23969. back: {
  23970. height: math.unit(4.5, "meters"),
  23971. weight: math.unit(3200, "lb"),
  23972. name: "Back",
  23973. image: {
  23974. source: "./media/characters/ty/back.svg",
  23975. extra: 1044 / 966,
  23976. bottom: 7.48 / 1049
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Normal",
  23983. height: math.unit(4.5, "meters"),
  23984. default: true
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(5 + 4 / 12, "feet"),
  23993. weight: math.unit(115, "lb"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/rocky/front.svg",
  23997. extra: 1012 / 975,
  23998. bottom: 54 / 1066
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Normal",
  24005. height: math.unit(5 + 4 / 12, "feet"),
  24006. default: true
  24007. },
  24008. ]
  24009. ))
  24010. characterMakers.push(() => makeCharacter(
  24011. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24012. {
  24013. upright: {
  24014. height: math.unit(6, "meters"),
  24015. weight: math.unit(4000, "kg"),
  24016. name: "Upright",
  24017. image: {
  24018. source: "./media/characters/ruin/upright.svg",
  24019. extra: 668 / 661,
  24020. bottom: 42 / 799.8396
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(6, "meters"),
  24028. default: true
  24029. },
  24030. ]
  24031. ))
  24032. characterMakers.push(() => makeCharacter(
  24033. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24034. {
  24035. front: {
  24036. height: math.unit(5, "feet"),
  24037. weight: math.unit(106, "lb"),
  24038. name: "Front",
  24039. image: {
  24040. source: "./media/characters/robin/front.svg",
  24041. extra: 862 / 799,
  24042. bottom: 42.4 / 914.8856
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(5, "feet"),
  24050. default: true
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24056. {
  24057. side: {
  24058. height: math.unit(3, "feet"),
  24059. weight: math.unit(225, "lb"),
  24060. name: "Side",
  24061. image: {
  24062. source: "./media/characters/saian/side.svg",
  24063. extra: 566 / 356,
  24064. bottom: 79.7 / 643
  24065. }
  24066. },
  24067. maw: {
  24068. height: math.unit(2.85, "feet"),
  24069. name: "Maw",
  24070. image: {
  24071. source: "./media/characters/saian/maw.svg"
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Normal",
  24078. height: math.unit(3, "feet"),
  24079. default: true
  24080. },
  24081. ]
  24082. ))
  24083. characterMakers.push(() => makeCharacter(
  24084. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24085. {
  24086. side: {
  24087. height: math.unit(8, "feet"),
  24088. weight: math.unit(300, "lb"),
  24089. name: "Side",
  24090. image: {
  24091. source: "./media/characters/equus-silvermane/side.svg",
  24092. extra: 2176 / 2050,
  24093. bottom: 65.7 / 2245
  24094. }
  24095. },
  24096. front: {
  24097. height: math.unit(8, "feet"),
  24098. weight: math.unit(300, "lb"),
  24099. name: "Front",
  24100. image: {
  24101. source: "./media/characters/equus-silvermane/front.svg",
  24102. extra: 4633 / 4400,
  24103. bottom: 71.3 / 4706.915
  24104. }
  24105. },
  24106. sideStepping: {
  24107. height: math.unit(8, "feet"),
  24108. weight: math.unit(300, "lb"),
  24109. name: "Side (Stepping)",
  24110. image: {
  24111. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24112. extra: 1968 / 1860,
  24113. bottom: 16.4 / 1989
  24114. }
  24115. },
  24116. },
  24117. [
  24118. {
  24119. name: "Normal",
  24120. height: math.unit(8, "feet")
  24121. },
  24122. {
  24123. name: "Minimacro",
  24124. height: math.unit(75, "feet"),
  24125. default: true
  24126. },
  24127. {
  24128. name: "Macro",
  24129. height: math.unit(150, "feet")
  24130. },
  24131. {
  24132. name: "Macro+",
  24133. height: math.unit(1000, "feet")
  24134. },
  24135. {
  24136. name: "Megamacro",
  24137. height: math.unit(1, "mile")
  24138. },
  24139. ]
  24140. ))
  24141. characterMakers.push(() => makeCharacter(
  24142. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24143. {
  24144. side: {
  24145. height: math.unit(20, "feet"),
  24146. weight: math.unit(30000, "kg"),
  24147. name: "Side",
  24148. image: {
  24149. source: "./media/characters/windar/side.svg",
  24150. extra: 1491 / 1248,
  24151. bottom: 82.56 / 1568
  24152. }
  24153. },
  24154. },
  24155. [
  24156. {
  24157. name: "Normal",
  24158. height: math.unit(20, "feet"),
  24159. default: true
  24160. },
  24161. ]
  24162. ))
  24163. characterMakers.push(() => makeCharacter(
  24164. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24165. {
  24166. side: {
  24167. height: math.unit(15.66, "feet"),
  24168. weight: math.unit(150, "lb"),
  24169. name: "Side",
  24170. image: {
  24171. source: "./media/characters/melody/side.svg",
  24172. extra: 1097 / 944,
  24173. bottom: 11.8 / 1109
  24174. }
  24175. },
  24176. sideOutfit: {
  24177. height: math.unit(15.66, "feet"),
  24178. weight: math.unit(150, "lb"),
  24179. name: "Side (Outfit)",
  24180. image: {
  24181. source: "./media/characters/melody/side-outfit.svg",
  24182. extra: 1097 / 944,
  24183. bottom: 11.8 / 1109
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Normal",
  24190. height: math.unit(15.66, "feet"),
  24191. default: true
  24192. },
  24193. ]
  24194. ))
  24195. characterMakers.push(() => makeCharacter(
  24196. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24197. {
  24198. armoredFront: {
  24199. height: math.unit(8, "feet"),
  24200. weight: math.unit(325, "lb"),
  24201. name: "Front",
  24202. image: {
  24203. source: "./media/characters/windera/armored-front.svg",
  24204. extra: 1830/1598,
  24205. bottom: 151/1981
  24206. },
  24207. form: "armored",
  24208. default: true
  24209. },
  24210. macroFront: {
  24211. height: math.unit(70, "feet"),
  24212. weight: math.unit(315453, "lb"),
  24213. name: "Front",
  24214. image: {
  24215. source: "./media/characters/windera/macro-front.svg",
  24216. extra: 963/883,
  24217. bottom: 23/986
  24218. },
  24219. form: "macro",
  24220. default: true
  24221. },
  24222. },
  24223. [
  24224. {
  24225. name: "Normal",
  24226. height: math.unit(8, "feet"),
  24227. default: true,
  24228. form: "armored"
  24229. },
  24230. {
  24231. name: "Normal",
  24232. height: math.unit(70, "feet"),
  24233. default: true,
  24234. form: "macro"
  24235. },
  24236. ],
  24237. {
  24238. "armored": {
  24239. name: "Armored",
  24240. default: true
  24241. },
  24242. "macro": {
  24243. name: "Macro",
  24244. },
  24245. }
  24246. ))
  24247. characterMakers.push(() => makeCharacter(
  24248. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24249. {
  24250. front: {
  24251. height: math.unit(28.75, "feet"),
  24252. weight: math.unit(2000, "kg"),
  24253. name: "Front",
  24254. image: {
  24255. source: "./media/characters/sonear/front.svg",
  24256. extra: 1041.1 / 964.9,
  24257. bottom: 53.7 / 1096.6
  24258. }
  24259. },
  24260. },
  24261. [
  24262. {
  24263. name: "Normal",
  24264. height: math.unit(28.75, "feet"),
  24265. default: true
  24266. },
  24267. ]
  24268. ))
  24269. characterMakers.push(() => makeCharacter(
  24270. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24271. {
  24272. side: {
  24273. height: math.unit(25.5, "feet"),
  24274. weight: math.unit(23000, "kg"),
  24275. name: "Side",
  24276. image: {
  24277. source: "./media/characters/kanara/side.svg"
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(25.5, "feet"),
  24285. default: true
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24291. {
  24292. side: {
  24293. height: math.unit(10, "feet"),
  24294. weight: math.unit(1000, "kg"),
  24295. name: "Side",
  24296. image: {
  24297. source: "./media/characters/ereus/side.svg",
  24298. extra: 1157 / 959,
  24299. bottom: 153 / 1312.5
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Normal",
  24306. height: math.unit(10, "feet"),
  24307. default: true
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24313. {
  24314. side: {
  24315. height: math.unit(4.5, "feet"),
  24316. weight: math.unit(500, "lb"),
  24317. name: "Side",
  24318. image: {
  24319. source: "./media/characters/e-ter/side.svg",
  24320. extra: 1550 / 1248,
  24321. bottom: 146 / 1694
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(4.5, "feet"),
  24329. default: true
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24335. {
  24336. side: {
  24337. height: math.unit(9.7, "feet"),
  24338. weight: math.unit(4000, "kg"),
  24339. name: "Side",
  24340. image: {
  24341. source: "./media/characters/yamie/side.svg"
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Normal",
  24348. height: math.unit(9.7, "feet"),
  24349. default: true
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(50, "feet"),
  24358. weight: math.unit(50000, "kg"),
  24359. name: "Front",
  24360. image: {
  24361. source: "./media/characters/anders/front.svg",
  24362. extra: 570 / 539,
  24363. bottom: 14.7 / 586.7
  24364. }
  24365. },
  24366. },
  24367. [
  24368. {
  24369. name: "Large",
  24370. height: math.unit(50, "feet")
  24371. },
  24372. {
  24373. name: "Macro",
  24374. height: math.unit(2000, "feet"),
  24375. default: true
  24376. },
  24377. {
  24378. name: "Megamacro",
  24379. height: math.unit(12, "miles")
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24385. {
  24386. front: {
  24387. height: math.unit(7 + 2 / 12, "feet"),
  24388. weight: math.unit(300, "lb"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/reban/front.svg",
  24392. extra: 1287/1212,
  24393. bottom: 148/1435
  24394. }
  24395. },
  24396. head: {
  24397. height: math.unit(1.95, "feet"),
  24398. name: "Head",
  24399. image: {
  24400. source: "./media/characters/reban/head.svg"
  24401. }
  24402. },
  24403. maw: {
  24404. height: math.unit(0.95, "feet"),
  24405. name: "Maw",
  24406. image: {
  24407. source: "./media/characters/reban/maw.svg"
  24408. }
  24409. },
  24410. foot: {
  24411. height: math.unit(1.65, "feet"),
  24412. name: "Foot",
  24413. image: {
  24414. source: "./media/characters/reban/foot.svg"
  24415. }
  24416. },
  24417. dick: {
  24418. height: math.unit(7 / 5, "feet"),
  24419. name: "Dick",
  24420. image: {
  24421. source: "./media/characters/reban/dick.svg"
  24422. }
  24423. },
  24424. },
  24425. [
  24426. {
  24427. name: "Natural Height",
  24428. height: math.unit(7 + 2 / 12, "feet")
  24429. },
  24430. {
  24431. name: "Macro",
  24432. height: math.unit(500, "feet"),
  24433. default: true
  24434. },
  24435. {
  24436. name: "Canon Height",
  24437. height: math.unit(50, "AU")
  24438. },
  24439. ]
  24440. ))
  24441. characterMakers.push(() => makeCharacter(
  24442. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24443. {
  24444. front: {
  24445. height: math.unit(6, "feet"),
  24446. weight: math.unit(150, "lb"),
  24447. name: "Front",
  24448. image: {
  24449. source: "./media/characters/terrance-keayes/front.svg",
  24450. extra: 1.005,
  24451. bottom: 151 / 1615
  24452. }
  24453. },
  24454. side: {
  24455. height: math.unit(6, "feet"),
  24456. weight: math.unit(150, "lb"),
  24457. name: "Side",
  24458. image: {
  24459. source: "./media/characters/terrance-keayes/side.svg",
  24460. extra: 1.005,
  24461. bottom: 129.4 / 1544
  24462. }
  24463. },
  24464. back: {
  24465. height: math.unit(6, "feet"),
  24466. weight: math.unit(150, "lb"),
  24467. name: "Back",
  24468. image: {
  24469. source: "./media/characters/terrance-keayes/back.svg",
  24470. extra: 1.005,
  24471. bottom: 58.4 / 1557.3
  24472. }
  24473. },
  24474. dick: {
  24475. height: math.unit(6 * 0.208, "feet"),
  24476. name: "Dick",
  24477. image: {
  24478. source: "./media/characters/terrance-keayes/dick.svg"
  24479. }
  24480. },
  24481. },
  24482. [
  24483. {
  24484. name: "Canon Height",
  24485. height: math.unit(35, "miles"),
  24486. default: true
  24487. },
  24488. ]
  24489. ))
  24490. characterMakers.push(() => makeCharacter(
  24491. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24492. {
  24493. front: {
  24494. height: math.unit(6, "feet"),
  24495. weight: math.unit(150, "lb"),
  24496. name: "Front",
  24497. image: {
  24498. source: "./media/characters/ofelia/front.svg",
  24499. extra: 1130/1117,
  24500. bottom: 91/1221
  24501. }
  24502. },
  24503. back: {
  24504. height: math.unit(6, "feet"),
  24505. weight: math.unit(150, "lb"),
  24506. name: "Back",
  24507. image: {
  24508. source: "./media/characters/ofelia/back.svg",
  24509. extra: 1172/1159,
  24510. bottom: 28/1200
  24511. }
  24512. },
  24513. maw: {
  24514. height: math.unit(1, "feet"),
  24515. name: "Maw",
  24516. image: {
  24517. source: "./media/characters/ofelia/maw.svg"
  24518. }
  24519. },
  24520. foot: {
  24521. height: math.unit(1.949, "feet"),
  24522. name: "Foot",
  24523. image: {
  24524. source: "./media/characters/ofelia/foot.svg"
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Canon Height",
  24531. height: math.unit(2000, "miles"),
  24532. default: true
  24533. },
  24534. ]
  24535. ))
  24536. characterMakers.push(() => makeCharacter(
  24537. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24538. {
  24539. front: {
  24540. height: math.unit(6, "feet"),
  24541. weight: math.unit(150, "lb"),
  24542. name: "Front",
  24543. image: {
  24544. source: "./media/characters/samuel/front.svg",
  24545. extra: 265 / 258,
  24546. bottom: 2 / 266.1566
  24547. }
  24548. },
  24549. },
  24550. [
  24551. {
  24552. name: "Macro",
  24553. height: math.unit(100, "feet"),
  24554. default: true
  24555. },
  24556. {
  24557. name: "Full Size",
  24558. height: math.unit(1000, "miles")
  24559. },
  24560. ]
  24561. ))
  24562. characterMakers.push(() => makeCharacter(
  24563. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24564. {
  24565. front: {
  24566. height: math.unit(6, "feet"),
  24567. weight: math.unit(300, "lb"),
  24568. name: "Front",
  24569. image: {
  24570. source: "./media/characters/beishir-kiel/front.svg",
  24571. extra: 569 / 547,
  24572. bottom: 41.9 / 609
  24573. }
  24574. },
  24575. maw: {
  24576. height: math.unit(6 * 0.202, "feet"),
  24577. name: "Maw",
  24578. image: {
  24579. source: "./media/characters/beishir-kiel/maw.svg"
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Macro",
  24586. height: math.unit(300, "feet"),
  24587. default: true
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(5 + 7/12, "feet"),
  24596. weight: math.unit(120, "lb"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/logan-grey/front.svg",
  24600. extra: 1836/1738,
  24601. bottom: 108/1944
  24602. }
  24603. },
  24604. back: {
  24605. height: math.unit(5 + 7/12, "feet"),
  24606. weight: math.unit(120, "lb"),
  24607. name: "Back",
  24608. image: {
  24609. source: "./media/characters/logan-grey/back.svg",
  24610. extra: 1880/1794,
  24611. bottom: 24/1904
  24612. }
  24613. },
  24614. frontSfw: {
  24615. height: math.unit(5 + 7/12, "feet"),
  24616. weight: math.unit(120, "lb"),
  24617. name: "Front (SFW)",
  24618. image: {
  24619. source: "./media/characters/logan-grey/front-sfw.svg",
  24620. extra: 1836/1738,
  24621. bottom: 108/1944
  24622. }
  24623. },
  24624. backSfw: {
  24625. height: math.unit(5 + 7/12, "feet"),
  24626. weight: math.unit(120, "lb"),
  24627. name: "Back (SFW)",
  24628. image: {
  24629. source: "./media/characters/logan-grey/back-sfw.svg",
  24630. extra: 1880/1794,
  24631. bottom: 24/1904
  24632. }
  24633. },
  24634. hands: {
  24635. height: math.unit(0.84, "feet"),
  24636. name: "Hands",
  24637. image: {
  24638. source: "./media/characters/logan-grey/hands.svg"
  24639. }
  24640. },
  24641. paws: {
  24642. height: math.unit(0.72, "feet"),
  24643. name: "Paws",
  24644. image: {
  24645. source: "./media/characters/logan-grey/paws.svg"
  24646. }
  24647. },
  24648. cock: {
  24649. height: math.unit(1.45, "feet"),
  24650. name: "Cock",
  24651. image: {
  24652. source: "./media/characters/logan-grey/cock.svg"
  24653. }
  24654. },
  24655. cockAlt: {
  24656. height: math.unit(1.437, "feet"),
  24657. name: "Cock (alt)",
  24658. image: {
  24659. source: "./media/characters/logan-grey/cock-alt.svg"
  24660. }
  24661. },
  24662. },
  24663. [
  24664. {
  24665. name: "Normal",
  24666. height: math.unit(5 + 8 / 12, "feet")
  24667. },
  24668. {
  24669. name: "The 500 Foot Femboy",
  24670. height: math.unit(500, "feet"),
  24671. default: true
  24672. },
  24673. {
  24674. name: "Megmacro",
  24675. height: math.unit(20, "miles")
  24676. },
  24677. ]
  24678. ))
  24679. characterMakers.push(() => makeCharacter(
  24680. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24681. {
  24682. front: {
  24683. height: math.unit(8 + 2 / 12, "feet"),
  24684. weight: math.unit(275, "lb"),
  24685. name: "Front",
  24686. image: {
  24687. source: "./media/characters/draganta/front.svg",
  24688. extra: 1177 / 1135,
  24689. bottom: 33.46 / 1212.1
  24690. }
  24691. },
  24692. },
  24693. [
  24694. {
  24695. name: "Normal",
  24696. height: math.unit(8 + 6 / 12, "feet"),
  24697. default: true
  24698. },
  24699. {
  24700. name: "Macro",
  24701. height: math.unit(150, "feet")
  24702. },
  24703. {
  24704. name: "Megamacro",
  24705. height: math.unit(1000, "miles")
  24706. },
  24707. ]
  24708. ))
  24709. characterMakers.push(() => makeCharacter(
  24710. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24711. {
  24712. front: {
  24713. height: math.unit(1.72, "m"),
  24714. weight: math.unit(80, "lb"),
  24715. name: "Front",
  24716. image: {
  24717. source: "./media/characters/voski/front.svg",
  24718. extra: 2076.22 / 2022.4,
  24719. bottom: 102.7 / 2177.3866
  24720. }
  24721. },
  24722. frontFlaccid: {
  24723. height: math.unit(1.72, "m"),
  24724. weight: math.unit(80, "lb"),
  24725. name: "Front (Flaccid)",
  24726. image: {
  24727. source: "./media/characters/voski/front-flaccid.svg",
  24728. extra: 2076.22 / 2022.4,
  24729. bottom: 102.7 / 2177.3866
  24730. }
  24731. },
  24732. frontErect: {
  24733. height: math.unit(1.72, "m"),
  24734. weight: math.unit(80, "lb"),
  24735. name: "Front (Erect)",
  24736. image: {
  24737. source: "./media/characters/voski/front-erect.svg",
  24738. extra: 2076.22 / 2022.4,
  24739. bottom: 102.7 / 2177.3866
  24740. }
  24741. },
  24742. back: {
  24743. height: math.unit(1.72, "m"),
  24744. weight: math.unit(80, "lb"),
  24745. name: "Back",
  24746. image: {
  24747. source: "./media/characters/voski/back.svg",
  24748. extra: 2104 / 2051,
  24749. bottom: 10.45 / 2113.63
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Normal",
  24756. height: math.unit(1.72, "m")
  24757. },
  24758. {
  24759. name: "Macro",
  24760. height: math.unit(55, "m"),
  24761. default: true
  24762. },
  24763. {
  24764. name: "Macro+",
  24765. height: math.unit(300, "m")
  24766. },
  24767. {
  24768. name: "Macro++",
  24769. height: math.unit(700, "m")
  24770. },
  24771. {
  24772. name: "Macro+++",
  24773. height: math.unit(4500, "m")
  24774. },
  24775. {
  24776. name: "Macro++++",
  24777. height: math.unit(45, "km")
  24778. },
  24779. {
  24780. name: "Macro+++++",
  24781. height: math.unit(1220, "km")
  24782. },
  24783. ]
  24784. ))
  24785. characterMakers.push(() => makeCharacter(
  24786. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24787. {
  24788. front: {
  24789. height: math.unit(2.3, "m"),
  24790. weight: math.unit(304, "kg"),
  24791. name: "Front",
  24792. image: {
  24793. source: "./media/characters/icowom-lee/front.svg",
  24794. extra: 985 / 955,
  24795. bottom: 25.4 / 1012
  24796. }
  24797. },
  24798. fronttentacles: {
  24799. height: math.unit(2.3, "m"),
  24800. weight: math.unit(304, "kg"),
  24801. name: "Front-tentacles",
  24802. image: {
  24803. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24804. extra: 985 / 955,
  24805. bottom: 25.4 / 1012
  24806. }
  24807. },
  24808. back: {
  24809. height: math.unit(2.3, "m"),
  24810. weight: math.unit(304, "kg"),
  24811. name: "Back",
  24812. image: {
  24813. source: "./media/characters/icowom-lee/back.svg",
  24814. extra: 975 / 954,
  24815. bottom: 9.5 / 985
  24816. }
  24817. },
  24818. backtentacles: {
  24819. height: math.unit(2.3, "m"),
  24820. weight: math.unit(304, "kg"),
  24821. name: "Back-tentacles",
  24822. image: {
  24823. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24824. extra: 975 / 954,
  24825. bottom: 9.5 / 985
  24826. }
  24827. },
  24828. frontDressed: {
  24829. height: math.unit(2.3, "m"),
  24830. weight: math.unit(304, "kg"),
  24831. name: "Front (Dressed)",
  24832. image: {
  24833. source: "./media/characters/icowom-lee/front-dressed.svg",
  24834. extra: 3076 / 2933,
  24835. bottom: 51.4 / 3125.1889
  24836. }
  24837. },
  24838. rump: {
  24839. height: math.unit(0.776, "meters"),
  24840. name: "Rump",
  24841. image: {
  24842. source: "./media/characters/icowom-lee/rump.svg"
  24843. }
  24844. },
  24845. genitals: {
  24846. height: math.unit(0.78, "meters"),
  24847. name: "Genitals",
  24848. image: {
  24849. source: "./media/characters/icowom-lee/genitals.svg"
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Normal",
  24856. height: math.unit(2.3, "meters"),
  24857. default: true
  24858. },
  24859. {
  24860. name: "Macro",
  24861. height: math.unit(94, "meters"),
  24862. default: true
  24863. },
  24864. ]
  24865. ))
  24866. characterMakers.push(() => makeCharacter(
  24867. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24868. {
  24869. front: {
  24870. height: math.unit(22, "meters"),
  24871. weight: math.unit(21000, "kg"),
  24872. name: "Front",
  24873. image: {
  24874. source: "./media/characters/shock-diamond/front.svg",
  24875. extra: 2204 / 2053,
  24876. bottom: 65 / 2239.47
  24877. }
  24878. },
  24879. frontNude: {
  24880. height: math.unit(22, "meters"),
  24881. weight: math.unit(21000, "kg"),
  24882. name: "Front (Nude)",
  24883. image: {
  24884. source: "./media/characters/shock-diamond/front-nude.svg",
  24885. extra: 2514 / 2285,
  24886. bottom: 13 / 2527.56
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(3, "meters")
  24894. },
  24895. {
  24896. name: "Macro",
  24897. height: math.unit(22, "meters"),
  24898. default: true
  24899. },
  24900. ]
  24901. ))
  24902. characterMakers.push(() => makeCharacter(
  24903. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24904. {
  24905. front: {
  24906. height: math.unit(5 + 4/12, "feet"),
  24907. weight: math.unit(125, "lb"),
  24908. name: "Front",
  24909. image: {
  24910. source: "./media/characters/rory/front.svg",
  24911. extra: 1790/1681,
  24912. bottom: 66/1856
  24913. },
  24914. form: "normal",
  24915. default: true
  24916. },
  24917. back: {
  24918. height: math.unit(5 + 4/12, "feet"),
  24919. weight: math.unit(125, "lb"),
  24920. name: "Back",
  24921. image: {
  24922. source: "./media/characters/rory/back.svg",
  24923. extra: 1805/1690,
  24924. bottom: 56/1861
  24925. },
  24926. form: "normal"
  24927. },
  24928. frontDressed: {
  24929. height: math.unit(5 + 4/12, "feet"),
  24930. weight: math.unit(125, "lb"),
  24931. name: "Front (Dressed)",
  24932. image: {
  24933. source: "./media/characters/rory/front-dressed.svg",
  24934. extra: 1790/1681,
  24935. bottom: 66/1856
  24936. },
  24937. form: "normal"
  24938. },
  24939. backDressed: {
  24940. height: math.unit(5 + 4/12, "feet"),
  24941. weight: math.unit(125, "lb"),
  24942. name: "Back (Dressed)",
  24943. image: {
  24944. source: "./media/characters/rory/back-dressed.svg",
  24945. extra: 1805/1690,
  24946. bottom: 56/1861
  24947. },
  24948. form: "normal"
  24949. },
  24950. frontNsfw: {
  24951. height: math.unit(5 + 4/12, "feet"),
  24952. weight: math.unit(125, "lb"),
  24953. name: "Front (NSFW)",
  24954. image: {
  24955. source: "./media/characters/rory/front-nsfw.svg",
  24956. extra: 1790/1681,
  24957. bottom: 66/1856
  24958. },
  24959. form: "normal"
  24960. },
  24961. backNsfw: {
  24962. height: math.unit(5 + 4/12, "feet"),
  24963. weight: math.unit(125, "lb"),
  24964. name: "Back (NSFW)",
  24965. image: {
  24966. source: "./media/characters/rory/back-nsfw.svg",
  24967. extra: 1805/1690,
  24968. bottom: 56/1861
  24969. },
  24970. form: "normal"
  24971. },
  24972. dick: {
  24973. height: math.unit(0.8, "feet"),
  24974. name: "Dick",
  24975. image: {
  24976. source: "./media/characters/rory/dick.svg"
  24977. },
  24978. form: "normal"
  24979. },
  24980. thicc_front: {
  24981. height: math.unit(5 + 4/12, "feet"),
  24982. weight: math.unit(195, "lb"),
  24983. name: "Front",
  24984. image: {
  24985. source: "./media/characters/rory/thicc-front.svg",
  24986. extra: 1220/1100,
  24987. bottom: 103/1323
  24988. },
  24989. form: "thicc",
  24990. default: true
  24991. },
  24992. thicc_back: {
  24993. height: math.unit(5 + 4/12, "feet"),
  24994. weight: math.unit(195, "lb"),
  24995. name: "Back",
  24996. image: {
  24997. source: "./media/characters/rory/thicc-back.svg",
  24998. extra: 1166/1086,
  24999. bottom: 35/1201
  25000. },
  25001. form: "thicc"
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Micro",
  25007. height: math.unit(3, "inches"),
  25008. allForms: true
  25009. },
  25010. {
  25011. name: "Normal",
  25012. height: math.unit(5 + 4/12, "feet"),
  25013. allForms: true,
  25014. default: true
  25015. },
  25016. {
  25017. name: "Macro",
  25018. height: math.unit(90, "feet"),
  25019. allForms: true
  25020. },
  25021. {
  25022. name: "Supercharged",
  25023. height: math.unit(270, "feet"),
  25024. allForms: true
  25025. },
  25026. ],
  25027. {
  25028. "normal": {
  25029. name: "Normal",
  25030. default: true
  25031. },
  25032. "thicc": {
  25033. name: "Thicc",
  25034. },
  25035. }
  25036. ))
  25037. characterMakers.push(() => makeCharacter(
  25038. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25039. {
  25040. front: {
  25041. height: math.unit(5 + 9 / 12, "feet"),
  25042. weight: math.unit(190, "lb"),
  25043. name: "Front",
  25044. image: {
  25045. source: "./media/characters/sprisk/front.svg",
  25046. extra: 1225 / 1180,
  25047. bottom: 42.7 / 1266.4
  25048. }
  25049. },
  25050. frontNsfw: {
  25051. height: math.unit(5 + 9 / 12, "feet"),
  25052. weight: math.unit(190, "lb"),
  25053. name: "Front (NSFW)",
  25054. image: {
  25055. source: "./media/characters/sprisk/front-nsfw.svg",
  25056. extra: 1225 / 1180,
  25057. bottom: 42.7 / 1266.4
  25058. }
  25059. },
  25060. back: {
  25061. height: math.unit(5 + 9 / 12, "feet"),
  25062. weight: math.unit(190, "lb"),
  25063. name: "Back",
  25064. image: {
  25065. source: "./media/characters/sprisk/back.svg",
  25066. extra: 1247 / 1200,
  25067. bottom: 5.6 / 1253.04
  25068. }
  25069. },
  25070. },
  25071. [
  25072. {
  25073. name: "Tiny",
  25074. height: math.unit(2, "inches")
  25075. },
  25076. {
  25077. name: "Normal",
  25078. height: math.unit(5 + 9 / 12, "feet"),
  25079. default: true
  25080. },
  25081. {
  25082. name: "Mini Macro",
  25083. height: math.unit(18, "feet")
  25084. },
  25085. {
  25086. name: "Macro",
  25087. height: math.unit(100, "feet")
  25088. },
  25089. {
  25090. name: "MACRO",
  25091. height: math.unit(50, "miles")
  25092. },
  25093. {
  25094. name: "M A C R O",
  25095. height: math.unit(300, "miles")
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25101. {
  25102. side: {
  25103. height: math.unit(15.6, "meters"),
  25104. weight: math.unit(700000, "kg"),
  25105. name: "Side",
  25106. image: {
  25107. source: "./media/characters/bunsen/side.svg",
  25108. extra: 1644 / 358
  25109. }
  25110. },
  25111. foot: {
  25112. height: math.unit(1.611 * 1644 / 358, "meter"),
  25113. name: "Foot",
  25114. image: {
  25115. source: "./media/characters/bunsen/foot.svg"
  25116. }
  25117. },
  25118. },
  25119. [
  25120. {
  25121. name: "Small",
  25122. height: math.unit(10, "feet")
  25123. },
  25124. {
  25125. name: "Normal",
  25126. height: math.unit(15.6, "meters"),
  25127. default: true
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25133. {
  25134. front: {
  25135. height: math.unit(4 + 11 / 12, "feet"),
  25136. weight: math.unit(140, "lb"),
  25137. name: "Front",
  25138. image: {
  25139. source: "./media/characters/sesh/front.svg",
  25140. extra: 3420 / 3231,
  25141. bottom: 72 / 3949.5
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Normal",
  25148. height: math.unit(4 + 11 / 12, "feet")
  25149. },
  25150. {
  25151. name: "Grown",
  25152. height: math.unit(15, "feet"),
  25153. default: true
  25154. },
  25155. {
  25156. name: "Macro",
  25157. height: math.unit(1500, "feet")
  25158. },
  25159. {
  25160. name: "Megamacro",
  25161. height: math.unit(30, "miles")
  25162. },
  25163. {
  25164. name: "Continental",
  25165. height: math.unit(3000, "miles")
  25166. },
  25167. {
  25168. name: "Gravity Mass",
  25169. height: math.unit(300000, "miles")
  25170. },
  25171. {
  25172. name: "Planet Buster",
  25173. height: math.unit(30000000, "miles")
  25174. },
  25175. {
  25176. name: "Big",
  25177. height: math.unit(3000000000, "miles")
  25178. },
  25179. ]
  25180. ))
  25181. characterMakers.push(() => makeCharacter(
  25182. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25183. {
  25184. front: {
  25185. height: math.unit(9, "feet"),
  25186. weight: math.unit(350, "lb"),
  25187. name: "Front",
  25188. image: {
  25189. source: "./media/characters/pepper/front.svg",
  25190. extra: 1448 / 1312,
  25191. bottom: 9.4 / 1457.88
  25192. }
  25193. },
  25194. back: {
  25195. height: math.unit(9, "feet"),
  25196. weight: math.unit(350, "lb"),
  25197. name: "Back",
  25198. image: {
  25199. source: "./media/characters/pepper/back.svg",
  25200. extra: 1423 / 1300,
  25201. bottom: 4.6 / 1429
  25202. }
  25203. },
  25204. maw: {
  25205. height: math.unit(0.932, "feet"),
  25206. name: "Maw",
  25207. image: {
  25208. source: "./media/characters/pepper/maw.svg"
  25209. }
  25210. },
  25211. },
  25212. [
  25213. {
  25214. name: "Normal",
  25215. height: math.unit(9, "feet"),
  25216. default: true
  25217. },
  25218. ]
  25219. ))
  25220. characterMakers.push(() => makeCharacter(
  25221. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25222. {
  25223. front: {
  25224. height: math.unit(6, "feet"),
  25225. weight: math.unit(150, "lb"),
  25226. name: "Front",
  25227. image: {
  25228. source: "./media/characters/maelstrom/front.svg",
  25229. extra: 2100 / 1883,
  25230. bottom: 94 / 2196.7
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Less Kaiju",
  25237. height: math.unit(200, "feet")
  25238. },
  25239. {
  25240. name: "Kaiju",
  25241. height: math.unit(400, "feet"),
  25242. default: true
  25243. },
  25244. {
  25245. name: "Kaiju-er",
  25246. height: math.unit(600, "feet")
  25247. },
  25248. ]
  25249. ))
  25250. characterMakers.push(() => makeCharacter(
  25251. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25252. {
  25253. front: {
  25254. height: math.unit(6 + 5 / 12, "feet"),
  25255. weight: math.unit(180, "lb"),
  25256. name: "Front",
  25257. image: {
  25258. source: "./media/characters/lexir/front.svg",
  25259. extra: 180 / 172,
  25260. bottom: 12 / 192
  25261. }
  25262. },
  25263. back: {
  25264. height: math.unit(6 + 5 / 12, "feet"),
  25265. weight: math.unit(180, "lb"),
  25266. name: "Back",
  25267. image: {
  25268. source: "./media/characters/lexir/back.svg",
  25269. extra: 1273/1201,
  25270. bottom: 39/1312
  25271. }
  25272. },
  25273. },
  25274. [
  25275. {
  25276. name: "Very Smal",
  25277. height: math.unit(1, "nm")
  25278. },
  25279. {
  25280. name: "Normal",
  25281. height: math.unit(6 + 5 / 12, "feet"),
  25282. default: true
  25283. },
  25284. {
  25285. name: "Macro",
  25286. height: math.unit(1, "mile")
  25287. },
  25288. {
  25289. name: "Megamacro",
  25290. height: math.unit(50, "miles")
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25296. {
  25297. front: {
  25298. height: math.unit(1.5, "meters"),
  25299. weight: math.unit(100, "lb"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/maksio/front.svg",
  25303. extra: 1549 / 1531,
  25304. bottom: 123.7 / 1674.5429
  25305. }
  25306. },
  25307. back: {
  25308. height: math.unit(1.5, "meters"),
  25309. weight: math.unit(100, "lb"),
  25310. name: "Back",
  25311. image: {
  25312. source: "./media/characters/maksio/back.svg",
  25313. extra: 1541 / 1509,
  25314. bottom: 97 / 1639
  25315. }
  25316. },
  25317. hand: {
  25318. height: math.unit(0.621, "feet"),
  25319. name: "Hand",
  25320. image: {
  25321. source: "./media/characters/maksio/hand.svg"
  25322. }
  25323. },
  25324. foot: {
  25325. height: math.unit(1.611, "feet"),
  25326. name: "Foot",
  25327. image: {
  25328. source: "./media/characters/maksio/foot.svg"
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Shrunken",
  25335. height: math.unit(10, "cm")
  25336. },
  25337. {
  25338. name: "Normal",
  25339. height: math.unit(150, "cm"),
  25340. default: true
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(100, "feet"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/erza-bear/front.svg",
  25352. extra: 2449 / 2390,
  25353. bottom: 46 / 2494
  25354. }
  25355. },
  25356. back: {
  25357. height: math.unit(100, "feet"),
  25358. name: "Back",
  25359. image: {
  25360. source: "./media/characters/erza-bear/back.svg",
  25361. extra: 2489 / 2430,
  25362. bottom: 85.4 / 2480
  25363. }
  25364. },
  25365. tail: {
  25366. height: math.unit(42, "feet"),
  25367. name: "Tail",
  25368. image: {
  25369. source: "./media/characters/erza-bear/tail.svg"
  25370. }
  25371. },
  25372. tongue: {
  25373. height: math.unit(8, "feet"),
  25374. name: "Tongue",
  25375. image: {
  25376. source: "./media/characters/erza-bear/tongue.svg"
  25377. }
  25378. },
  25379. dick: {
  25380. height: math.unit(10.5, "feet"),
  25381. name: "Dick",
  25382. image: {
  25383. source: "./media/characters/erza-bear/dick.svg"
  25384. }
  25385. },
  25386. dickVertical: {
  25387. height: math.unit(16.9, "feet"),
  25388. name: "Dick (Vertical)",
  25389. image: {
  25390. source: "./media/characters/erza-bear/dick-vertical.svg"
  25391. }
  25392. },
  25393. },
  25394. [
  25395. {
  25396. name: "Macro",
  25397. height: math.unit(100, "feet"),
  25398. default: true
  25399. },
  25400. ]
  25401. ))
  25402. characterMakers.push(() => makeCharacter(
  25403. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25404. {
  25405. front: {
  25406. height: math.unit(172, "cm"),
  25407. weight: math.unit(73, "kg"),
  25408. name: "Front",
  25409. image: {
  25410. source: "./media/characters/violet-flor/front.svg",
  25411. extra: 1530 / 1442,
  25412. bottom: 61.9 / 1588.8
  25413. }
  25414. },
  25415. back: {
  25416. height: math.unit(180, "cm"),
  25417. weight: math.unit(73, "kg"),
  25418. name: "Back",
  25419. image: {
  25420. source: "./media/characters/violet-flor/back.svg",
  25421. extra: 1692 / 1630,
  25422. bottom: 20 / 1712
  25423. }
  25424. },
  25425. },
  25426. [
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(172, "cm"),
  25430. default: true
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(6, "feet"),
  25439. weight: math.unit(220, "lb"),
  25440. name: "Front",
  25441. image: {
  25442. source: "./media/characters/lynn-rhea/front.svg",
  25443. extra: 310 / 273
  25444. }
  25445. },
  25446. back: {
  25447. height: math.unit(6, "feet"),
  25448. weight: math.unit(220, "lb"),
  25449. name: "Back",
  25450. image: {
  25451. source: "./media/characters/lynn-rhea/back.svg",
  25452. extra: 310 / 273
  25453. }
  25454. },
  25455. dicks: {
  25456. height: math.unit(0.9, "feet"),
  25457. name: "Dicks",
  25458. image: {
  25459. source: "./media/characters/lynn-rhea/dicks.svg"
  25460. }
  25461. },
  25462. slit: {
  25463. height: math.unit(0.4, "feet"),
  25464. name: "Slit",
  25465. image: {
  25466. source: "./media/characters/lynn-rhea/slit.svg"
  25467. }
  25468. },
  25469. },
  25470. [
  25471. {
  25472. name: "Micro",
  25473. height: math.unit(1, "inch")
  25474. },
  25475. {
  25476. name: "Macro",
  25477. height: math.unit(60, "feet"),
  25478. default: true
  25479. },
  25480. {
  25481. name: "Megamacro",
  25482. height: math.unit(2, "miles")
  25483. },
  25484. {
  25485. name: "Gigamacro",
  25486. height: math.unit(3, "earths")
  25487. },
  25488. {
  25489. name: "Galactic",
  25490. height: math.unit(0.8, "galaxies")
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25496. {
  25497. front: {
  25498. height: math.unit(1600, "feet"),
  25499. weight: math.unit(85758785169, "kg"),
  25500. name: "Front",
  25501. image: {
  25502. source: "./media/characters/valathos/front.svg",
  25503. extra: 1451 / 1339
  25504. }
  25505. },
  25506. },
  25507. [
  25508. {
  25509. name: "Macro",
  25510. height: math.unit(1600, "feet"),
  25511. default: true
  25512. },
  25513. ]
  25514. ))
  25515. characterMakers.push(() => makeCharacter(
  25516. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25517. {
  25518. front: {
  25519. height: math.unit(7 + 5 / 12, "feet"),
  25520. weight: math.unit(300, "lb"),
  25521. name: "Front",
  25522. image: {
  25523. source: "./media/characters/azula/front.svg",
  25524. extra: 3208 / 2880,
  25525. bottom: 80.2 / 3277
  25526. }
  25527. },
  25528. back: {
  25529. height: math.unit(7 + 5 / 12, "feet"),
  25530. weight: math.unit(300, "lb"),
  25531. name: "Back",
  25532. image: {
  25533. source: "./media/characters/azula/back.svg",
  25534. extra: 3169 / 2822,
  25535. bottom: 150.6 / 3321
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Normal",
  25542. height: math.unit(7 + 5 / 12, "feet"),
  25543. default: true
  25544. },
  25545. {
  25546. name: "Big",
  25547. height: math.unit(20, "feet")
  25548. },
  25549. ]
  25550. ))
  25551. characterMakers.push(() => makeCharacter(
  25552. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25553. {
  25554. front: {
  25555. height: math.unit(5 + 1 / 12, "feet"),
  25556. weight: math.unit(110, "lb"),
  25557. name: "Front",
  25558. image: {
  25559. source: "./media/characters/rupert/front.svg",
  25560. extra: 1549 / 1495,
  25561. bottom: 54.2 / 1604.4
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "Normal",
  25568. height: math.unit(5 + 1 / 12, "feet"),
  25569. default: true
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25575. {
  25576. front: {
  25577. height: math.unit(8 + 4 / 12, "feet"),
  25578. weight: math.unit(350, "lb"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/sheera-castellar/front.svg",
  25582. extra: 1957 / 1894,
  25583. bottom: 26.97 / 1975.017
  25584. }
  25585. },
  25586. side: {
  25587. height: math.unit(8 + 4 / 12, "feet"),
  25588. weight: math.unit(350, "lb"),
  25589. name: "Side",
  25590. image: {
  25591. source: "./media/characters/sheera-castellar/side.svg",
  25592. extra: 1957 / 1894
  25593. }
  25594. },
  25595. back: {
  25596. height: math.unit(8 + 4 / 12, "feet"),
  25597. weight: math.unit(350, "lb"),
  25598. name: "Back",
  25599. image: {
  25600. source: "./media/characters/sheera-castellar/back.svg",
  25601. extra: 1957 / 1894
  25602. }
  25603. },
  25604. angled: {
  25605. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25606. weight: math.unit(350, "lb"),
  25607. name: "Angled",
  25608. image: {
  25609. source: "./media/characters/sheera-castellar/angled.svg",
  25610. extra: 1807 / 1707,
  25611. bottom: 68 / 1875
  25612. }
  25613. },
  25614. genitals: {
  25615. height: math.unit(2.2, "feet"),
  25616. name: "Genitals",
  25617. image: {
  25618. source: "./media/characters/sheera-castellar/genitals.svg"
  25619. }
  25620. },
  25621. taur: {
  25622. height: math.unit(10 + 6/12, "feet"),
  25623. name: "Taur",
  25624. image: {
  25625. source: "./media/characters/sheera-castellar/taur.svg",
  25626. extra: 2017/1909,
  25627. bottom: 185/2202
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(8 + 4 / 12, "feet")
  25635. },
  25636. {
  25637. name: "Macro",
  25638. height: math.unit(150, "feet"),
  25639. default: true
  25640. },
  25641. {
  25642. name: "Macro+",
  25643. height: math.unit(800, "feet")
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25649. {
  25650. front: {
  25651. height: math.unit(6, "feet"),
  25652. weight: math.unit(150, "lb"),
  25653. name: "Front",
  25654. image: {
  25655. source: "./media/characters/jaipur/front.svg",
  25656. extra: 3860 / 3731,
  25657. bottom: 287 / 4140
  25658. }
  25659. },
  25660. back: {
  25661. height: math.unit(6, "feet"),
  25662. weight: math.unit(150, "lb"),
  25663. name: "Back",
  25664. image: {
  25665. source: "./media/characters/jaipur/back.svg",
  25666. extra: 1637/1561,
  25667. bottom: 154/1791
  25668. }
  25669. },
  25670. },
  25671. [
  25672. {
  25673. name: "Normal",
  25674. height: math.unit(1.85, "meters"),
  25675. default: true
  25676. },
  25677. {
  25678. name: "Macro",
  25679. height: math.unit(150, "meters")
  25680. },
  25681. {
  25682. name: "Macro+",
  25683. height: math.unit(0.5, "miles")
  25684. },
  25685. {
  25686. name: "Macro++",
  25687. height: math.unit(2.5, "miles")
  25688. },
  25689. {
  25690. name: "Macro+++",
  25691. height: math.unit(12, "miles")
  25692. },
  25693. {
  25694. name: "Macro++++",
  25695. height: math.unit(120, "miles")
  25696. },
  25697. {
  25698. name: "Macro+++++",
  25699. height: math.unit(1200, "miles")
  25700. },
  25701. ]
  25702. ))
  25703. characterMakers.push(() => makeCharacter(
  25704. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25705. {
  25706. front: {
  25707. height: math.unit(6, "feet"),
  25708. weight: math.unit(150, "lb"),
  25709. name: "Front",
  25710. image: {
  25711. source: "./media/characters/sheila-wolf/front.svg",
  25712. extra: 1931 / 1808,
  25713. bottom: 29.5 / 1960
  25714. }
  25715. },
  25716. dick: {
  25717. height: math.unit(1.464, "feet"),
  25718. name: "Dick",
  25719. image: {
  25720. source: "./media/characters/sheila-wolf/dick.svg"
  25721. }
  25722. },
  25723. muzzle: {
  25724. height: math.unit(0.513, "feet"),
  25725. name: "Muzzle",
  25726. image: {
  25727. source: "./media/characters/sheila-wolf/muzzle.svg"
  25728. }
  25729. },
  25730. },
  25731. [
  25732. {
  25733. name: "Macro",
  25734. height: math.unit(70, "feet"),
  25735. default: true
  25736. },
  25737. ]
  25738. ))
  25739. characterMakers.push(() => makeCharacter(
  25740. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25741. {
  25742. front: {
  25743. height: math.unit(32, "meters"),
  25744. weight: math.unit(300000, "kg"),
  25745. name: "Front",
  25746. image: {
  25747. source: "./media/characters/almor/front.svg",
  25748. extra: 1408 / 1322,
  25749. bottom: 94.6 / 1506.5
  25750. }
  25751. },
  25752. },
  25753. [
  25754. {
  25755. name: "Macro",
  25756. height: math.unit(32, "meters"),
  25757. default: true
  25758. },
  25759. ]
  25760. ))
  25761. characterMakers.push(() => makeCharacter(
  25762. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25763. {
  25764. front: {
  25765. height: math.unit(7, "feet"),
  25766. weight: math.unit(200, "lb"),
  25767. name: "Front",
  25768. image: {
  25769. source: "./media/characters/silver/front.svg",
  25770. extra: 472.1 / 450.5,
  25771. bottom: 26.5 / 499.424
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Normal",
  25778. height: math.unit(7, "feet"),
  25779. default: true
  25780. },
  25781. {
  25782. name: "Macro",
  25783. height: math.unit(800, "feet")
  25784. },
  25785. {
  25786. name: "Megamacro",
  25787. height: math.unit(250, "miles")
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(6, "feet"),
  25796. weight: math.unit(150, "lb"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/pliskin/front.svg",
  25800. extra: 1469 / 1359,
  25801. bottom: 70 / 1540
  25802. }
  25803. },
  25804. },
  25805. [
  25806. {
  25807. name: "Micro",
  25808. height: math.unit(3, "inches")
  25809. },
  25810. {
  25811. name: "Normal",
  25812. height: math.unit(5 + 11 / 12, "feet"),
  25813. default: true
  25814. },
  25815. {
  25816. name: "Macro",
  25817. height: math.unit(120, "feet")
  25818. },
  25819. ]
  25820. ))
  25821. characterMakers.push(() => makeCharacter(
  25822. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25823. {
  25824. front: {
  25825. height: math.unit(6, "feet"),
  25826. weight: math.unit(150, "lb"),
  25827. name: "Front",
  25828. image: {
  25829. source: "./media/characters/sammy/front.svg",
  25830. extra: 1193 / 1089,
  25831. bottom: 30.5 / 1226
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Macro",
  25838. height: math.unit(1700, "feet"),
  25839. default: true
  25840. },
  25841. {
  25842. name: "Examacro",
  25843. height: math.unit(2.5e9, "lightyears")
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(21, "meters"),
  25852. weight: math.unit(12, "tonnes"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/kuru/front.svg",
  25856. extra: 4301 / 3785,
  25857. bottom: 371.3 / 4691
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Macro",
  25864. height: math.unit(21, "meters"),
  25865. default: true
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(23, "meters"),
  25874. weight: math.unit(12.2, "tonnes"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/rakka/front.svg",
  25878. extra: 4670 / 4169,
  25879. bottom: 301 / 4968.7
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Macro",
  25886. height: math.unit(23, "meters"),
  25887. default: true
  25888. },
  25889. ]
  25890. ))
  25891. characterMakers.push(() => makeCharacter(
  25892. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25893. {
  25894. front: {
  25895. height: math.unit(6, "feet"),
  25896. weight: math.unit(150, "lb"),
  25897. name: "Front",
  25898. image: {
  25899. source: "./media/characters/rhys-feline/front.svg",
  25900. extra: 2488 / 2308,
  25901. bottom: 35.67 / 2519.19
  25902. }
  25903. },
  25904. },
  25905. [
  25906. {
  25907. name: "Really Small",
  25908. height: math.unit(1, "nm")
  25909. },
  25910. {
  25911. name: "Micro",
  25912. height: math.unit(4, "inches")
  25913. },
  25914. {
  25915. name: "Normal",
  25916. height: math.unit(4 + 10 / 12, "feet"),
  25917. default: true
  25918. },
  25919. {
  25920. name: "Macro",
  25921. height: math.unit(100, "feet")
  25922. },
  25923. {
  25924. name: "Megamacto",
  25925. height: math.unit(50, "miles")
  25926. },
  25927. ]
  25928. ))
  25929. characterMakers.push(() => makeCharacter(
  25930. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25931. {
  25932. side: {
  25933. height: math.unit(30, "feet"),
  25934. weight: math.unit(35000, "kg"),
  25935. name: "Side",
  25936. image: {
  25937. source: "./media/characters/alydar/side.svg",
  25938. extra: 234 / 222,
  25939. bottom: 6.5 / 241
  25940. }
  25941. },
  25942. front: {
  25943. height: math.unit(30, "feet"),
  25944. weight: math.unit(35000, "kg"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/alydar/front.svg",
  25948. extra: 223.37 / 210.2,
  25949. bottom: 22.3 / 246.76
  25950. }
  25951. },
  25952. top: {
  25953. height: math.unit(64.54, "feet"),
  25954. weight: math.unit(35000, "kg"),
  25955. name: "Top",
  25956. image: {
  25957. source: "./media/characters/alydar/top.svg"
  25958. }
  25959. },
  25960. anthro: {
  25961. height: math.unit(30, "feet"),
  25962. weight: math.unit(9000, "kg"),
  25963. name: "Anthro",
  25964. image: {
  25965. source: "./media/characters/alydar/anthro.svg",
  25966. extra: 432 / 421,
  25967. bottom: 7.18 / 440
  25968. }
  25969. },
  25970. maw: {
  25971. height: math.unit(11.693, "feet"),
  25972. name: "Maw",
  25973. image: {
  25974. source: "./media/characters/alydar/maw.svg"
  25975. }
  25976. },
  25977. head: {
  25978. height: math.unit(11.693, "feet"),
  25979. name: "Head",
  25980. image: {
  25981. source: "./media/characters/alydar/head.svg"
  25982. }
  25983. },
  25984. headAlt: {
  25985. height: math.unit(12.861, "feet"),
  25986. name: "Head (Alt)",
  25987. image: {
  25988. source: "./media/characters/alydar/head-alt.svg"
  25989. }
  25990. },
  25991. wing: {
  25992. height: math.unit(20.712, "feet"),
  25993. name: "Wing",
  25994. image: {
  25995. source: "./media/characters/alydar/wing.svg"
  25996. }
  25997. },
  25998. wingFeather: {
  25999. height: math.unit(9.662, "feet"),
  26000. name: "Wing Feather",
  26001. image: {
  26002. source: "./media/characters/alydar/wing-feather.svg"
  26003. }
  26004. },
  26005. countourFeather: {
  26006. height: math.unit(4.154, "feet"),
  26007. name: "Contour Feather",
  26008. image: {
  26009. source: "./media/characters/alydar/contour-feather.svg"
  26010. }
  26011. },
  26012. },
  26013. [
  26014. {
  26015. name: "Diplomatic",
  26016. height: math.unit(13, "feet"),
  26017. default: true
  26018. },
  26019. {
  26020. name: "Small",
  26021. height: math.unit(30, "feet")
  26022. },
  26023. {
  26024. name: "Normal",
  26025. height: math.unit(95, "feet"),
  26026. default: true
  26027. },
  26028. {
  26029. name: "Large",
  26030. height: math.unit(285, "feet")
  26031. },
  26032. {
  26033. name: "Incomprehensible",
  26034. height: math.unit(450, "megameters")
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26040. {
  26041. side: {
  26042. height: math.unit(11, "feet"),
  26043. weight: math.unit(1750, "kg"),
  26044. name: "Side",
  26045. image: {
  26046. source: "./media/characters/selicia/side.svg",
  26047. extra: 440 / 396,
  26048. bottom: 24.8 / 465.979
  26049. }
  26050. },
  26051. maw: {
  26052. height: math.unit(4.665, "feet"),
  26053. name: "Maw",
  26054. image: {
  26055. source: "./media/characters/selicia/maw.svg"
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(11, "feet"),
  26063. default: true
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26069. {
  26070. side: {
  26071. height: math.unit(2 + 6 / 12, "feet"),
  26072. weight: math.unit(30, "lb"),
  26073. name: "Side",
  26074. image: {
  26075. source: "./media/characters/layla/side.svg",
  26076. extra: 244 / 188,
  26077. bottom: 18.2 / 262.1
  26078. }
  26079. },
  26080. back: {
  26081. height: math.unit(2 + 6 / 12, "feet"),
  26082. weight: math.unit(30, "lb"),
  26083. name: "Back",
  26084. image: {
  26085. source: "./media/characters/layla/back.svg",
  26086. extra: 308 / 241.5,
  26087. bottom: 8.9 / 316.8
  26088. }
  26089. },
  26090. cumming: {
  26091. height: math.unit(2 + 6 / 12, "feet"),
  26092. weight: math.unit(30, "lb"),
  26093. name: "Cumming",
  26094. image: {
  26095. source: "./media/characters/layla/cumming.svg",
  26096. extra: 342 / 279,
  26097. bottom: 595 / 938
  26098. }
  26099. },
  26100. dickFlaccid: {
  26101. height: math.unit(2.595, "feet"),
  26102. name: "Flaccid Genitals",
  26103. image: {
  26104. source: "./media/characters/layla/dick-flaccid.svg"
  26105. }
  26106. },
  26107. dickErect: {
  26108. height: math.unit(2.359, "feet"),
  26109. name: "Erect Genitals",
  26110. image: {
  26111. source: "./media/characters/layla/dick-erect.svg"
  26112. }
  26113. },
  26114. dragon: {
  26115. height: math.unit(40, "feet"),
  26116. name: "Dragon",
  26117. image: {
  26118. source: "./media/characters/layla/dragon.svg",
  26119. extra: 610/535,
  26120. bottom: 367/977
  26121. }
  26122. },
  26123. taur: {
  26124. height: math.unit(30, "feet"),
  26125. name: "Taur",
  26126. image: {
  26127. source: "./media/characters/layla/taur.svg",
  26128. extra: 1268/1199,
  26129. bottom: 112/1380
  26130. }
  26131. },
  26132. },
  26133. [
  26134. {
  26135. name: "Micro",
  26136. height: math.unit(1, "inch")
  26137. },
  26138. {
  26139. name: "Small",
  26140. height: math.unit(1, "foot")
  26141. },
  26142. {
  26143. name: "Normal",
  26144. height: math.unit(2 + 6 / 12, "feet"),
  26145. default: true
  26146. },
  26147. {
  26148. name: "Macro",
  26149. height: math.unit(200, "feet")
  26150. },
  26151. {
  26152. name: "Megamacro",
  26153. height: math.unit(1000, "miles")
  26154. },
  26155. {
  26156. name: "Planetary",
  26157. height: math.unit(8000, "miles")
  26158. },
  26159. {
  26160. name: "True Layla",
  26161. height: math.unit(200000 * 7, "multiverses")
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26167. {
  26168. back: {
  26169. height: math.unit(10.5, "feet"),
  26170. weight: math.unit(800, "lb"),
  26171. name: "Back",
  26172. image: {
  26173. source: "./media/characters/knox/back.svg",
  26174. extra: 1486 / 1089,
  26175. bottom: 107 / 1601.4
  26176. }
  26177. },
  26178. side: {
  26179. height: math.unit(10.5, "feet"),
  26180. weight: math.unit(800, "lb"),
  26181. name: "Side",
  26182. image: {
  26183. source: "./media/characters/knox/side.svg",
  26184. extra: 244 / 218,
  26185. bottom: 14 / 260
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Compact",
  26192. height: math.unit(10.5, "feet"),
  26193. default: true
  26194. },
  26195. {
  26196. name: "Dynamax",
  26197. height: math.unit(210, "feet")
  26198. },
  26199. {
  26200. name: "Full Macro",
  26201. height: math.unit(850, "feet")
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26207. {
  26208. front: {
  26209. height: math.unit(28, "feet"),
  26210. weight: math.unit(10500, "lb"),
  26211. name: "Front",
  26212. image: {
  26213. source: "./media/characters/kayda/front.svg",
  26214. extra: 1536 / 1428,
  26215. bottom: 68.7 / 1603
  26216. }
  26217. },
  26218. back: {
  26219. height: math.unit(28, "feet"),
  26220. weight: math.unit(10500, "lb"),
  26221. name: "Back",
  26222. image: {
  26223. source: "./media/characters/kayda/back.svg",
  26224. extra: 1557 / 1464,
  26225. bottom: 39.5 / 1597.49
  26226. }
  26227. },
  26228. dick: {
  26229. height: math.unit(3.858, "feet"),
  26230. name: "Dick",
  26231. image: {
  26232. source: "./media/characters/kayda/dick.svg"
  26233. }
  26234. },
  26235. },
  26236. [
  26237. {
  26238. name: "Macro",
  26239. height: math.unit(28, "feet"),
  26240. default: true
  26241. },
  26242. ]
  26243. ))
  26244. characterMakers.push(() => makeCharacter(
  26245. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26246. {
  26247. front: {
  26248. height: math.unit(10 + 11 / 12, "feet"),
  26249. weight: math.unit(1400, "lb"),
  26250. name: "Front",
  26251. image: {
  26252. source: "./media/characters/brian/front.svg",
  26253. extra: 737 / 692,
  26254. bottom: 55.4 / 785
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(10 + 11 / 12, "feet"),
  26262. default: true
  26263. },
  26264. ]
  26265. ))
  26266. characterMakers.push(() => makeCharacter(
  26267. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26268. {
  26269. front: {
  26270. height: math.unit(5 + 8 / 12, "feet"),
  26271. weight: math.unit(140, "lb"),
  26272. name: "Front",
  26273. image: {
  26274. source: "./media/characters/khemri/front.svg",
  26275. extra: 4780 / 4059,
  26276. bottom: 80.1 / 4859.25
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Micro",
  26283. height: math.unit(6, "inches")
  26284. },
  26285. {
  26286. name: "Normal",
  26287. height: math.unit(5 + 8 / 12, "feet"),
  26288. default: true
  26289. },
  26290. ]
  26291. ))
  26292. characterMakers.push(() => makeCharacter(
  26293. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26294. {
  26295. front: {
  26296. height: math.unit(13, "feet"),
  26297. weight: math.unit(1700, "lb"),
  26298. name: "Front",
  26299. image: {
  26300. source: "./media/characters/felix-braveheart/front.svg",
  26301. extra: 1222 / 1157,
  26302. bottom: 53.2 / 1280
  26303. }
  26304. },
  26305. back: {
  26306. height: math.unit(13, "feet"),
  26307. weight: math.unit(1700, "lb"),
  26308. name: "Back",
  26309. image: {
  26310. source: "./media/characters/felix-braveheart/back.svg",
  26311. extra: 1277 / 1203,
  26312. bottom: 50.2 / 1327
  26313. }
  26314. },
  26315. feral: {
  26316. height: math.unit(6, "feet"),
  26317. weight: math.unit(400, "lb"),
  26318. name: "Feral",
  26319. image: {
  26320. source: "./media/characters/felix-braveheart/feral.svg",
  26321. extra: 682 / 625,
  26322. bottom: 6.9 / 688
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(13, "feet"),
  26330. default: true
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26336. {
  26337. side: {
  26338. height: math.unit(5 + 11 / 12, "feet"),
  26339. weight: math.unit(1400, "lb"),
  26340. name: "Side",
  26341. image: {
  26342. source: "./media/characters/shadow-blade/side.svg",
  26343. extra: 1726 / 1267,
  26344. bottom: 58.4 / 1785
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Normal",
  26351. height: math.unit(5 + 11 / 12, "feet"),
  26352. default: true
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(1 + 6 / 12, "feet"),
  26361. weight: math.unit(25, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/karla-halldor/front.svg",
  26365. extra: 1459 / 1383,
  26366. bottom: 12 / 1472
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(1 + 6 / 12, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(6 + 2 / 12, "feet"),
  26383. weight: math.unit(160, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/ariam/front.svg",
  26387. extra: 1073/976,
  26388. bottom: 52/1125
  26389. }
  26390. },
  26391. back: {
  26392. height: math.unit(6 + 2/12, "feet"),
  26393. weight: math.unit(160, "lb"),
  26394. name: "Back",
  26395. image: {
  26396. source: "./media/characters/ariam/back.svg",
  26397. extra: 1103/1023,
  26398. bottom: 9/1112
  26399. }
  26400. },
  26401. dressed: {
  26402. height: math.unit(6 + 2/12, "feet"),
  26403. weight: math.unit(160, "lb"),
  26404. name: "Dressed",
  26405. image: {
  26406. source: "./media/characters/ariam/dressed.svg",
  26407. extra: 1099/1009,
  26408. bottom: 25/1124
  26409. }
  26410. },
  26411. squatting: {
  26412. height: math.unit(4.1, "feet"),
  26413. weight: math.unit(160, "lb"),
  26414. name: "Squatting",
  26415. image: {
  26416. source: "./media/characters/ariam/squatting.svg",
  26417. extra: 2617 / 2112,
  26418. bottom: 61.2 / 2681,
  26419. }
  26420. },
  26421. },
  26422. [
  26423. {
  26424. name: "Normal",
  26425. height: math.unit(6 + 2 / 12, "feet"),
  26426. default: true
  26427. },
  26428. {
  26429. name: "Normal+",
  26430. height: math.unit(4, "meters")
  26431. },
  26432. {
  26433. name: "Macro",
  26434. height: math.unit(50, "meters")
  26435. },
  26436. {
  26437. name: "Macro+",
  26438. height: math.unit(100, "meters")
  26439. },
  26440. {
  26441. name: "Megamacro",
  26442. height: math.unit(20, "km")
  26443. },
  26444. {
  26445. name: "Caretaker",
  26446. height: math.unit(444, "megameters")
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(1.67, "meters"),
  26455. weight: math.unit(140, "lb"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26459. extra: 438 / 410,
  26460. bottom: 0.75 / 439
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Shrunken",
  26467. height: math.unit(7.6, "cm")
  26468. },
  26469. {
  26470. name: "Human Scale",
  26471. height: math.unit(1.67, "meters")
  26472. },
  26473. {
  26474. name: "Wolxi Scale",
  26475. height: math.unit(36.7, "meters"),
  26476. default: true
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26482. {
  26483. front: {
  26484. height: math.unit(1.73, "meters"),
  26485. weight: math.unit(240, "lb"),
  26486. name: "Front",
  26487. image: {
  26488. source: "./media/characters/izue-two-mothers/front.svg",
  26489. extra: 469 / 437,
  26490. bottom: 1.24 / 470.6
  26491. }
  26492. },
  26493. },
  26494. [
  26495. {
  26496. name: "Shrunken",
  26497. height: math.unit(7.86, "cm")
  26498. },
  26499. {
  26500. name: "Human Scale",
  26501. height: math.unit(1.73, "meters")
  26502. },
  26503. {
  26504. name: "Wolxi Scale",
  26505. height: math.unit(38, "meters"),
  26506. default: true
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(1.55, "meters"),
  26515. weight: math.unit(120, "lb"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/teeku-love-shack/front.svg",
  26519. extra: 387 / 362,
  26520. bottom: 1.51 / 388
  26521. }
  26522. },
  26523. },
  26524. [
  26525. {
  26526. name: "Shrunken",
  26527. height: math.unit(7, "cm")
  26528. },
  26529. {
  26530. name: "Human Scale",
  26531. height: math.unit(1.55, "meters")
  26532. },
  26533. {
  26534. name: "Wolxi Scale",
  26535. height: math.unit(34.1, "meters"),
  26536. default: true
  26537. },
  26538. ]
  26539. ))
  26540. characterMakers.push(() => makeCharacter(
  26541. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26542. {
  26543. front: {
  26544. height: math.unit(1.83, "meters"),
  26545. weight: math.unit(135, "lb"),
  26546. name: "Front",
  26547. image: {
  26548. source: "./media/characters/dejma-the-red/front.svg",
  26549. extra: 480 / 458,
  26550. bottom: 1.8 / 482
  26551. }
  26552. },
  26553. },
  26554. [
  26555. {
  26556. name: "Shrunken",
  26557. height: math.unit(8.3, "cm")
  26558. },
  26559. {
  26560. name: "Human Scale",
  26561. height: math.unit(1.83, "meters")
  26562. },
  26563. {
  26564. name: "Wolxi Scale",
  26565. height: math.unit(40, "meters"),
  26566. default: true
  26567. },
  26568. ]
  26569. ))
  26570. characterMakers.push(() => makeCharacter(
  26571. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26572. {
  26573. front: {
  26574. height: math.unit(1.78, "meters"),
  26575. weight: math.unit(65, "kg"),
  26576. name: "Front",
  26577. image: {
  26578. source: "./media/characters/aki/front.svg",
  26579. extra: 452 / 415
  26580. }
  26581. },
  26582. frontNsfw: {
  26583. height: math.unit(1.78, "meters"),
  26584. weight: math.unit(65, "kg"),
  26585. name: "Front (NSFW)",
  26586. image: {
  26587. source: "./media/characters/aki/front-nsfw.svg",
  26588. extra: 452 / 415
  26589. }
  26590. },
  26591. back: {
  26592. height: math.unit(1.78, "meters"),
  26593. weight: math.unit(65, "kg"),
  26594. name: "Back",
  26595. image: {
  26596. source: "./media/characters/aki/back.svg",
  26597. extra: 452 / 415
  26598. }
  26599. },
  26600. rump: {
  26601. height: math.unit(2.05, "feet"),
  26602. name: "Rump",
  26603. image: {
  26604. source: "./media/characters/aki/rump.svg"
  26605. }
  26606. },
  26607. dick: {
  26608. height: math.unit(0.95, "feet"),
  26609. name: "Dick",
  26610. image: {
  26611. source: "./media/characters/aki/dick.svg"
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Micro",
  26618. height: math.unit(15, "cm")
  26619. },
  26620. {
  26621. name: "Normal",
  26622. height: math.unit(178, "cm"),
  26623. default: true
  26624. },
  26625. {
  26626. name: "Macro",
  26627. height: math.unit(214, "m")
  26628. },
  26629. {
  26630. name: "Macro+",
  26631. height: math.unit(534, "m")
  26632. },
  26633. ]
  26634. ))
  26635. characterMakers.push(() => makeCharacter(
  26636. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26637. {
  26638. front: {
  26639. height: math.unit(5 + 5 / 12, "feet"),
  26640. weight: math.unit(120, "lb"),
  26641. name: "Front",
  26642. image: {
  26643. source: "./media/characters/ari/front.svg",
  26644. extra: 1550/1471,
  26645. bottom: 39/1589
  26646. }
  26647. },
  26648. },
  26649. [
  26650. {
  26651. name: "Normal",
  26652. height: math.unit(5 + 5 / 12, "feet")
  26653. },
  26654. {
  26655. name: "Macro",
  26656. height: math.unit(100, "feet"),
  26657. default: true
  26658. },
  26659. {
  26660. name: "Megamacro",
  26661. height: math.unit(100, "miles")
  26662. },
  26663. {
  26664. name: "Gigamacro",
  26665. height: math.unit(80000, "miles")
  26666. },
  26667. ]
  26668. ))
  26669. characterMakers.push(() => makeCharacter(
  26670. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26671. {
  26672. side: {
  26673. height: math.unit(9, "feet"),
  26674. weight: math.unit(400, "kg"),
  26675. name: "Side",
  26676. image: {
  26677. source: "./media/characters/bolt/side.svg",
  26678. extra: 1126 / 896,
  26679. bottom: 60 / 1187.3,
  26680. }
  26681. },
  26682. },
  26683. [
  26684. {
  26685. name: "Micro",
  26686. height: math.unit(5, "inches")
  26687. },
  26688. {
  26689. name: "Normal",
  26690. height: math.unit(9, "feet"),
  26691. default: true
  26692. },
  26693. {
  26694. name: "Macro",
  26695. height: math.unit(700, "feet")
  26696. },
  26697. {
  26698. name: "Max Size",
  26699. height: math.unit(1.52e22, "yottameters")
  26700. },
  26701. ]
  26702. ))
  26703. characterMakers.push(() => makeCharacter(
  26704. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26705. {
  26706. front: {
  26707. height: math.unit(4.3, "meters"),
  26708. weight: math.unit(3, "tons"),
  26709. name: "Front",
  26710. image: {
  26711. source: "./media/characters/draekon-sylviar/front.svg",
  26712. extra: 2072/1512,
  26713. bottom: 74/2146
  26714. }
  26715. },
  26716. back: {
  26717. height: math.unit(4.3, "meters"),
  26718. weight: math.unit(3, "tons"),
  26719. name: "Back",
  26720. image: {
  26721. source: "./media/characters/draekon-sylviar/back.svg",
  26722. extra: 1639/1483,
  26723. bottom: 41/1680
  26724. }
  26725. },
  26726. feral: {
  26727. height: math.unit(1.15, "meters"),
  26728. weight: math.unit(3, "tons"),
  26729. name: "Feral",
  26730. image: {
  26731. source: "./media/characters/draekon-sylviar/feral.svg",
  26732. extra: 1033/395,
  26733. bottom: 130/1163
  26734. }
  26735. },
  26736. maw: {
  26737. height: math.unit(1.3, "meters"),
  26738. name: "Maw",
  26739. image: {
  26740. source: "./media/characters/draekon-sylviar/maw.svg"
  26741. }
  26742. },
  26743. mawSeparated: {
  26744. height: math.unit(1.53, "meters"),
  26745. name: "Separated Maw",
  26746. image: {
  26747. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26748. }
  26749. },
  26750. tail: {
  26751. height: math.unit(1.15, "meters"),
  26752. name: "Tail",
  26753. image: {
  26754. source: "./media/characters/draekon-sylviar/tail.svg"
  26755. }
  26756. },
  26757. tailDick: {
  26758. height: math.unit(1.15, "meters"),
  26759. name: "Tail (Dick)",
  26760. image: {
  26761. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26762. }
  26763. },
  26764. tailDickSeparated: {
  26765. height: math.unit(1.19, "meters"),
  26766. name: "Tail (Separated Dick)",
  26767. image: {
  26768. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26769. }
  26770. },
  26771. slit: {
  26772. height: math.unit(1, "meters"),
  26773. name: "Slit",
  26774. image: {
  26775. source: "./media/characters/draekon-sylviar/slit.svg"
  26776. }
  26777. },
  26778. dick: {
  26779. height: math.unit(1.15, "meters"),
  26780. name: "Dick",
  26781. image: {
  26782. source: "./media/characters/draekon-sylviar/dick.svg"
  26783. }
  26784. },
  26785. dickSeparated: {
  26786. height: math.unit(1.1, "meters"),
  26787. name: "Separated Dick",
  26788. image: {
  26789. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26790. }
  26791. },
  26792. sheath: {
  26793. height: math.unit(1.15, "meters"),
  26794. name: "Sheath",
  26795. image: {
  26796. source: "./media/characters/draekon-sylviar/sheath.svg"
  26797. }
  26798. },
  26799. },
  26800. [
  26801. {
  26802. name: "Small",
  26803. height: math.unit(4.53 / 2, "meters"),
  26804. default: true
  26805. },
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(4.53, "meters"),
  26809. default: true
  26810. },
  26811. {
  26812. name: "Large",
  26813. height: math.unit(4.53 * 2, "meters"),
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(6 + 2 / 12, "feet"),
  26822. weight: math.unit(180, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/brawler/front.svg",
  26826. extra: 3301 / 3027,
  26827. bottom: 138 / 3439
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Normal",
  26834. height: math.unit(6 + 2 / 12, "feet"),
  26835. default: true
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(11, "feet"),
  26844. weight: math.unit(1000, "lb"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/alex/front.svg",
  26848. bottom: 44.5 / 620
  26849. }
  26850. },
  26851. },
  26852. [
  26853. {
  26854. name: "Micro",
  26855. height: math.unit(5, "inches")
  26856. },
  26857. {
  26858. name: "Normal",
  26859. height: math.unit(11, "feet"),
  26860. default: true
  26861. },
  26862. {
  26863. name: "Macro",
  26864. height: math.unit(9.5e9, "feet")
  26865. },
  26866. {
  26867. name: "Max Size",
  26868. height: math.unit(1.4e283, "yottameters")
  26869. },
  26870. ]
  26871. ))
  26872. characterMakers.push(() => makeCharacter(
  26873. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26874. {
  26875. female: {
  26876. height: math.unit(29.9, "m"),
  26877. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26878. name: "Female",
  26879. image: {
  26880. source: "./media/characters/zenari/female.svg",
  26881. extra: 3281.6 / 3217,
  26882. bottom: 72.2 / 3353
  26883. }
  26884. },
  26885. male: {
  26886. height: math.unit(27.7, "m"),
  26887. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26888. name: "Male",
  26889. image: {
  26890. source: "./media/characters/zenari/male.svg",
  26891. extra: 3008 / 2991,
  26892. bottom: 54.6 / 3069
  26893. }
  26894. },
  26895. },
  26896. [
  26897. {
  26898. name: "Macro",
  26899. height: math.unit(29.7, "meters"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26906. {
  26907. female: {
  26908. height: math.unit(23.8, "m"),
  26909. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26910. name: "Female",
  26911. image: {
  26912. source: "./media/characters/mactarian/female.svg",
  26913. extra: 2662 / 2569,
  26914. bottom: 73 / 2736
  26915. }
  26916. },
  26917. male: {
  26918. height: math.unit(23.8, "m"),
  26919. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26920. name: "Male",
  26921. image: {
  26922. source: "./media/characters/mactarian/male.svg",
  26923. extra: 2673 / 2600,
  26924. bottom: 76 / 2750
  26925. }
  26926. },
  26927. },
  26928. [
  26929. {
  26930. name: "Macro",
  26931. height: math.unit(23.8, "meters"),
  26932. default: true
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26938. {
  26939. female: {
  26940. height: math.unit(19.3, "m"),
  26941. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26942. name: "Female",
  26943. image: {
  26944. source: "./media/characters/umok/female.svg",
  26945. extra: 2186 / 2078,
  26946. bottom: 87 / 2277
  26947. }
  26948. },
  26949. male: {
  26950. height: math.unit(19.5, "m"),
  26951. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26952. name: "Male",
  26953. image: {
  26954. source: "./media/characters/umok/male.svg",
  26955. extra: 2233 / 2140,
  26956. bottom: 24.4 / 2258
  26957. }
  26958. },
  26959. },
  26960. [
  26961. {
  26962. name: "Macro",
  26963. height: math.unit(19.3, "meters"),
  26964. default: true
  26965. },
  26966. ]
  26967. ))
  26968. characterMakers.push(() => makeCharacter(
  26969. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26970. {
  26971. female: {
  26972. height: math.unit(26.15, "m"),
  26973. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26974. name: "Female",
  26975. image: {
  26976. source: "./media/characters/joraxian/female.svg",
  26977. extra: 2912 / 2824,
  26978. bottom: 36 / 2956
  26979. }
  26980. },
  26981. male: {
  26982. height: math.unit(25.4, "m"),
  26983. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26984. name: "Male",
  26985. image: {
  26986. source: "./media/characters/joraxian/male.svg",
  26987. extra: 2877 / 2721,
  26988. bottom: 82 / 2967
  26989. }
  26990. },
  26991. },
  26992. [
  26993. {
  26994. name: "Macro",
  26995. height: math.unit(26.15, "meters"),
  26996. default: true
  26997. },
  26998. ]
  26999. ))
  27000. characterMakers.push(() => makeCharacter(
  27001. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27002. {
  27003. female: {
  27004. height: math.unit(21.6, "m"),
  27005. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27006. name: "Female",
  27007. image: {
  27008. source: "./media/characters/sthara/female.svg",
  27009. extra: 2516 / 2347,
  27010. bottom: 21.5 / 2537
  27011. }
  27012. },
  27013. male: {
  27014. height: math.unit(24, "m"),
  27015. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27016. name: "Male",
  27017. image: {
  27018. source: "./media/characters/sthara/male.svg",
  27019. extra: 2732 / 2607,
  27020. bottom: 23 / 2732
  27021. }
  27022. },
  27023. },
  27024. [
  27025. {
  27026. name: "Macro",
  27027. height: math.unit(21.6, "meters"),
  27028. default: true
  27029. },
  27030. ]
  27031. ))
  27032. characterMakers.push(() => makeCharacter(
  27033. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27034. {
  27035. front: {
  27036. height: math.unit(6 + 4 / 12, "feet"),
  27037. weight: math.unit(175, "lb"),
  27038. name: "Front",
  27039. image: {
  27040. source: "./media/characters/luka-bryzant/front.svg",
  27041. extra: 311 / 289,
  27042. bottom: 4 / 315
  27043. }
  27044. },
  27045. back: {
  27046. height: math.unit(6 + 4 / 12, "feet"),
  27047. weight: math.unit(175, "lb"),
  27048. name: "Back",
  27049. image: {
  27050. source: "./media/characters/luka-bryzant/back.svg",
  27051. extra: 311 / 289,
  27052. bottom: 3.8 / 313.7
  27053. }
  27054. },
  27055. },
  27056. [
  27057. {
  27058. name: "Micro",
  27059. height: math.unit(10, "inches")
  27060. },
  27061. {
  27062. name: "Normal",
  27063. height: math.unit(6 + 4 / 12, "feet"),
  27064. default: true
  27065. },
  27066. {
  27067. name: "Large",
  27068. height: math.unit(12, "feet")
  27069. },
  27070. ]
  27071. ))
  27072. characterMakers.push(() => makeCharacter(
  27073. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27074. {
  27075. front: {
  27076. height: math.unit(5 + 7 / 12, "feet"),
  27077. weight: math.unit(185, "lb"),
  27078. name: "Front",
  27079. image: {
  27080. source: "./media/characters/aman-aquila/front.svg",
  27081. extra: 1013 / 976,
  27082. bottom: 45.6 / 1057
  27083. }
  27084. },
  27085. side: {
  27086. height: math.unit(5 + 7 / 12, "feet"),
  27087. weight: math.unit(185, "lb"),
  27088. name: "Side",
  27089. image: {
  27090. source: "./media/characters/aman-aquila/side.svg",
  27091. extra: 1054 / 1011,
  27092. bottom: 15 / 1070
  27093. }
  27094. },
  27095. back: {
  27096. height: math.unit(5 + 7 / 12, "feet"),
  27097. weight: math.unit(185, "lb"),
  27098. name: "Back",
  27099. image: {
  27100. source: "./media/characters/aman-aquila/back.svg",
  27101. extra: 1026 / 970,
  27102. bottom: 12 / 1039
  27103. }
  27104. },
  27105. head: {
  27106. height: math.unit(1.211, "feet"),
  27107. name: "Head",
  27108. image: {
  27109. source: "./media/characters/aman-aquila/head.svg",
  27110. }
  27111. },
  27112. },
  27113. [
  27114. {
  27115. name: "Minimicro",
  27116. height: math.unit(0.057, "inches")
  27117. },
  27118. {
  27119. name: "Micro",
  27120. height: math.unit(7, "inches")
  27121. },
  27122. {
  27123. name: "Mini",
  27124. height: math.unit(3 + 7 / 12, "feet")
  27125. },
  27126. {
  27127. name: "Normal",
  27128. height: math.unit(5 + 7 / 12, "feet"),
  27129. default: true
  27130. },
  27131. {
  27132. name: "Macro",
  27133. height: math.unit(157 + 7 / 12, "feet")
  27134. },
  27135. {
  27136. name: "Megamacro",
  27137. height: math.unit(1557 + 7 / 12, "feet")
  27138. },
  27139. {
  27140. name: "Gigamacro",
  27141. height: math.unit(15557 + 7 / 12, "feet")
  27142. },
  27143. ]
  27144. ))
  27145. characterMakers.push(() => makeCharacter(
  27146. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27147. {
  27148. front: {
  27149. height: math.unit(3 + 2 / 12, "inches"),
  27150. weight: math.unit(0.3, "ounces"),
  27151. name: "Front",
  27152. image: {
  27153. source: "./media/characters/hiphae/front.svg",
  27154. extra: 1931 / 1683,
  27155. bottom: 24 / 1955
  27156. }
  27157. },
  27158. },
  27159. [
  27160. {
  27161. name: "Normal",
  27162. height: math.unit(3 + 1 / 2, "inches"),
  27163. default: true
  27164. },
  27165. ]
  27166. ))
  27167. characterMakers.push(() => makeCharacter(
  27168. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27169. {
  27170. front: {
  27171. height: math.unit(5 + 10 / 12, "feet"),
  27172. weight: math.unit(165, "lb"),
  27173. name: "Front",
  27174. image: {
  27175. source: "./media/characters/nicky/front.svg",
  27176. extra: 3144 / 2886,
  27177. bottom: 45.6 / 3192
  27178. }
  27179. },
  27180. back: {
  27181. height: math.unit(5 + 10 / 12, "feet"),
  27182. weight: math.unit(165, "lb"),
  27183. name: "Back",
  27184. image: {
  27185. source: "./media/characters/nicky/back.svg",
  27186. extra: 3055 / 2804,
  27187. bottom: 28.4 / 3087
  27188. }
  27189. },
  27190. frontclothed: {
  27191. height: math.unit(5 + 10 / 12, "feet"),
  27192. weight: math.unit(165, "lb"),
  27193. name: "Front-clothed",
  27194. image: {
  27195. source: "./media/characters/nicky/front-clothed.svg",
  27196. extra: 3184.9 / 2926.9,
  27197. bottom: 86.5 / 3239.9
  27198. }
  27199. },
  27200. foot: {
  27201. height: math.unit(1.16, "feet"),
  27202. name: "Foot",
  27203. image: {
  27204. source: "./media/characters/nicky/foot.svg"
  27205. }
  27206. },
  27207. feet: {
  27208. height: math.unit(1.34, "feet"),
  27209. name: "Feet",
  27210. image: {
  27211. source: "./media/characters/nicky/feet.svg"
  27212. }
  27213. },
  27214. maw: {
  27215. height: math.unit(0.9, "feet"),
  27216. name: "Maw",
  27217. image: {
  27218. source: "./media/characters/nicky/maw.svg"
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(5 + 10 / 12, "feet"),
  27226. default: true
  27227. },
  27228. {
  27229. name: "Macro",
  27230. height: math.unit(60, "feet")
  27231. },
  27232. {
  27233. name: "Megamacro",
  27234. height: math.unit(1, "mile")
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27240. {
  27241. side: {
  27242. height: math.unit(10, "feet"),
  27243. weight: math.unit(600, "lb"),
  27244. name: "Side",
  27245. image: {
  27246. source: "./media/characters/blair/side.svg",
  27247. bottom: 16.6 / 475,
  27248. extra: 458 / 431
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Micro",
  27255. height: math.unit(8, "inches")
  27256. },
  27257. {
  27258. name: "Normal",
  27259. height: math.unit(10, "feet"),
  27260. default: true
  27261. },
  27262. {
  27263. name: "Macro",
  27264. height: math.unit(180, "feet")
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(5 + 4 / 12, "feet"),
  27273. weight: math.unit(125, "lb"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/fisher/front.svg",
  27277. extra: 444 / 390,
  27278. bottom: 2 / 444.8
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Micro",
  27285. height: math.unit(4, "inches")
  27286. },
  27287. {
  27288. name: "Normal",
  27289. height: math.unit(5 + 4 / 12, "feet"),
  27290. default: true
  27291. },
  27292. {
  27293. name: "Macro",
  27294. height: math.unit(100, "feet")
  27295. },
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27300. {
  27301. front: {
  27302. height: math.unit(6.71, "feet"),
  27303. weight: math.unit(200, "lb"),
  27304. preyCapacity: math.unit(1000000, "people"),
  27305. name: "Front",
  27306. image: {
  27307. source: "./media/characters/gliss/front.svg",
  27308. extra: 2347 / 2231,
  27309. bottom: 113 / 2462
  27310. }
  27311. },
  27312. hammerspaceSize: {
  27313. height: math.unit(6.71 * 717, "feet"),
  27314. weight: math.unit(200, "lb"),
  27315. preyCapacity: math.unit(1000000, "people"),
  27316. name: "Hammerspace Size",
  27317. image: {
  27318. source: "./media/characters/gliss/front.svg",
  27319. extra: 2347 / 2231,
  27320. bottom: 113 / 2462
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(6.71, "feet"),
  27328. default: true
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27334. {
  27335. side: {
  27336. height: math.unit(1.44, "m"),
  27337. weight: math.unit(80, "kg"),
  27338. name: "Side",
  27339. image: {
  27340. source: "./media/characters/dune-anderson/side.svg",
  27341. bottom: 49 / 1426
  27342. }
  27343. },
  27344. },
  27345. [
  27346. {
  27347. name: "Wolf-sized",
  27348. height: math.unit(1.44, "meters")
  27349. },
  27350. {
  27351. name: "Normal",
  27352. height: math.unit(5.05, "meters"),
  27353. default: true
  27354. },
  27355. {
  27356. name: "Big",
  27357. height: math.unit(14.4, "meters")
  27358. },
  27359. {
  27360. name: "Huge",
  27361. height: math.unit(144, "meters")
  27362. },
  27363. ]
  27364. ))
  27365. characterMakers.push(() => makeCharacter(
  27366. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27367. {
  27368. front: {
  27369. height: math.unit(7, "feet"),
  27370. weight: math.unit(425, "lb"),
  27371. name: "Front",
  27372. image: {
  27373. source: "./media/characters/hind/front.svg",
  27374. extra: 2091 / 1860,
  27375. bottom: 129 / 2220
  27376. }
  27377. },
  27378. back: {
  27379. height: math.unit(7, "feet"),
  27380. weight: math.unit(425, "lb"),
  27381. name: "Back",
  27382. image: {
  27383. source: "./media/characters/hind/back.svg",
  27384. extra: 2091 / 1860,
  27385. bottom: 24.6 / 2309
  27386. }
  27387. },
  27388. tail: {
  27389. height: math.unit(2.8, "feet"),
  27390. name: "Tail",
  27391. image: {
  27392. source: "./media/characters/hind/tail.svg"
  27393. }
  27394. },
  27395. head: {
  27396. height: math.unit(2.55, "feet"),
  27397. name: "Head",
  27398. image: {
  27399. source: "./media/characters/hind/head.svg"
  27400. }
  27401. },
  27402. },
  27403. [
  27404. {
  27405. name: "XS",
  27406. height: math.unit(0.7, "feet")
  27407. },
  27408. {
  27409. name: "Normal",
  27410. height: math.unit(7, "feet"),
  27411. default: true
  27412. },
  27413. {
  27414. name: "XL",
  27415. height: math.unit(70, "feet")
  27416. },
  27417. ]
  27418. ))
  27419. characterMakers.push(() => makeCharacter(
  27420. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27421. {
  27422. front: {
  27423. height: math.unit(2.1, "meters"),
  27424. weight: math.unit(150, "lb"),
  27425. name: "Front",
  27426. image: {
  27427. source: "./media/characters/tharquench-sizestealer/front.svg",
  27428. extra: 1605/1470,
  27429. bottom: 36/1641
  27430. }
  27431. },
  27432. frontAlt: {
  27433. height: math.unit(2.1, "meters"),
  27434. weight: math.unit(150, "lb"),
  27435. name: "Front (Alt)",
  27436. image: {
  27437. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27438. extra: 2318 / 2063,
  27439. bottom: 93.4 / 2410
  27440. }
  27441. },
  27442. },
  27443. [
  27444. {
  27445. name: "Nano",
  27446. height: math.unit(1, "mm")
  27447. },
  27448. {
  27449. name: "Micro",
  27450. height: math.unit(1, "cm")
  27451. },
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(2.1, "meters"),
  27455. default: true
  27456. },
  27457. ]
  27458. ))
  27459. characterMakers.push(() => makeCharacter(
  27460. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27461. {
  27462. front: {
  27463. height: math.unit(7 + 5 / 12, "feet"),
  27464. weight: math.unit(357, "lb"),
  27465. name: "Front",
  27466. image: {
  27467. source: "./media/characters/solex-draconov/front.svg",
  27468. extra: 1993 / 1865,
  27469. bottom: 117 / 2111
  27470. }
  27471. },
  27472. },
  27473. [
  27474. {
  27475. name: "Natural Height",
  27476. height: math.unit(7 + 5 / 12, "feet"),
  27477. default: true
  27478. },
  27479. {
  27480. name: "Macro",
  27481. height: math.unit(350, "feet")
  27482. },
  27483. {
  27484. name: "Macro+",
  27485. height: math.unit(1000, "feet")
  27486. },
  27487. {
  27488. name: "Megamacro",
  27489. height: math.unit(20, "km")
  27490. },
  27491. {
  27492. name: "Megamacro+",
  27493. height: math.unit(1000, "km")
  27494. },
  27495. {
  27496. name: "Gigamacro",
  27497. height: math.unit(2.5, "Gm")
  27498. },
  27499. {
  27500. name: "Teramacro",
  27501. height: math.unit(15, "Tm")
  27502. },
  27503. {
  27504. name: "Galactic",
  27505. height: math.unit(30, "Zm")
  27506. },
  27507. {
  27508. name: "Universal",
  27509. height: math.unit(21000, "Ym")
  27510. },
  27511. {
  27512. name: "Omniversal",
  27513. height: math.unit(9.861e50, "Ym")
  27514. },
  27515. {
  27516. name: "Existential",
  27517. height: math.unit(1e300, "meters")
  27518. },
  27519. ]
  27520. ))
  27521. characterMakers.push(() => makeCharacter(
  27522. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27523. {
  27524. side: {
  27525. height: math.unit(25, "feet"),
  27526. weight: math.unit(90000, "lb"),
  27527. name: "Side",
  27528. image: {
  27529. source: "./media/characters/mandarax/side.svg",
  27530. extra: 614 / 332,
  27531. bottom: 55 / 630
  27532. }
  27533. },
  27534. lounging: {
  27535. height: math.unit(15.4, "feet"),
  27536. weight: math.unit(90000, "lb"),
  27537. name: "Lounging",
  27538. image: {
  27539. source: "./media/characters/mandarax/lounging.svg",
  27540. extra: 817/609,
  27541. bottom: 685/1502
  27542. }
  27543. },
  27544. head: {
  27545. height: math.unit(11.4, "feet"),
  27546. name: "Head",
  27547. image: {
  27548. source: "./media/characters/mandarax/head.svg"
  27549. }
  27550. },
  27551. belly: {
  27552. height: math.unit(33, "feet"),
  27553. name: "Belly",
  27554. preyCapacity: math.unit(500, "people"),
  27555. image: {
  27556. source: "./media/characters/mandarax/belly.svg"
  27557. }
  27558. },
  27559. dick: {
  27560. height: math.unit(8.46, "feet"),
  27561. name: "Dick",
  27562. image: {
  27563. source: "./media/characters/mandarax/dick.svg"
  27564. }
  27565. },
  27566. top: {
  27567. height: math.unit(28, "meters"),
  27568. name: "Top",
  27569. image: {
  27570. source: "./media/characters/mandarax/top.svg"
  27571. }
  27572. },
  27573. },
  27574. [
  27575. {
  27576. name: "Normal",
  27577. height: math.unit(25, "feet"),
  27578. default: true
  27579. },
  27580. ]
  27581. ))
  27582. characterMakers.push(() => makeCharacter(
  27583. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27584. {
  27585. front: {
  27586. height: math.unit(5, "feet"),
  27587. weight: math.unit(90, "lb"),
  27588. name: "Front",
  27589. image: {
  27590. source: "./media/characters/pixil/front.svg",
  27591. extra: 2000 / 1618,
  27592. bottom: 12.3 / 2011
  27593. }
  27594. },
  27595. },
  27596. [
  27597. {
  27598. name: "Normal",
  27599. height: math.unit(5, "feet"),
  27600. default: true
  27601. },
  27602. {
  27603. name: "Megamacro",
  27604. height: math.unit(10, "miles"),
  27605. },
  27606. ]
  27607. ))
  27608. characterMakers.push(() => makeCharacter(
  27609. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27610. {
  27611. front: {
  27612. height: math.unit(7 + 2 / 12, "feet"),
  27613. weight: math.unit(200, "lb"),
  27614. name: "Front",
  27615. image: {
  27616. source: "./media/characters/angel/front.svg",
  27617. extra: 1830 / 1737,
  27618. bottom: 22.6 / 1854,
  27619. }
  27620. },
  27621. },
  27622. [
  27623. {
  27624. name: "Normal",
  27625. height: math.unit(7 + 2 / 12, "feet"),
  27626. default: true
  27627. },
  27628. {
  27629. name: "Macro",
  27630. height: math.unit(1000, "feet")
  27631. },
  27632. {
  27633. name: "Megamacro",
  27634. height: math.unit(2, "miles")
  27635. },
  27636. {
  27637. name: "Gigamacro",
  27638. height: math.unit(20, "earths")
  27639. },
  27640. ]
  27641. ))
  27642. characterMakers.push(() => makeCharacter(
  27643. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27644. {
  27645. front: {
  27646. height: math.unit(5, "feet"),
  27647. weight: math.unit(180, "lb"),
  27648. name: "Front",
  27649. image: {
  27650. source: "./media/characters/mekana/front.svg",
  27651. extra: 1671 / 1605,
  27652. bottom: 3.5 / 1691
  27653. }
  27654. },
  27655. side: {
  27656. height: math.unit(5, "feet"),
  27657. weight: math.unit(180, "lb"),
  27658. name: "Side",
  27659. image: {
  27660. source: "./media/characters/mekana/side.svg",
  27661. extra: 1671 / 1605,
  27662. bottom: 3.5 / 1691
  27663. }
  27664. },
  27665. back: {
  27666. height: math.unit(5, "feet"),
  27667. weight: math.unit(180, "lb"),
  27668. name: "Back",
  27669. image: {
  27670. source: "./media/characters/mekana/back.svg",
  27671. extra: 1671 / 1605,
  27672. bottom: 3.5 / 1691
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(5, "feet"),
  27680. default: true
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(4 + 6 / 12, "feet"),
  27689. weight: math.unit(80, "lb"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/pixie/front.svg",
  27693. extra: 1924 / 1825,
  27694. bottom: 22.4 / 1946
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Normal",
  27701. height: math.unit(4 + 6 / 12, "feet"),
  27702. default: true
  27703. },
  27704. {
  27705. name: "Macro",
  27706. height: math.unit(40, "feet")
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(2.1, "meters"),
  27715. weight: math.unit(200, "lb"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/the-lascivious/front.svg",
  27719. extra: 1 / 0.893,
  27720. bottom: 3.5 / 573.7
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Human Scale",
  27727. height: math.unit(2.1, "meters")
  27728. },
  27729. {
  27730. name: "Wolxi Scale",
  27731. height: math.unit(46.2, "m"),
  27732. default: true
  27733. },
  27734. {
  27735. name: "Boinker of Buildings",
  27736. height: math.unit(10, "km")
  27737. },
  27738. {
  27739. name: "Shagger of Skyscrapers",
  27740. height: math.unit(40, "km")
  27741. },
  27742. {
  27743. name: "Banger of Boroughs",
  27744. height: math.unit(4000, "km")
  27745. },
  27746. {
  27747. name: "Screwer of States",
  27748. height: math.unit(100000, "km")
  27749. },
  27750. {
  27751. name: "Pounder of Planets",
  27752. height: math.unit(2000000, "km")
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(6, "feet"),
  27761. weight: math.unit(150, "lb"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/aj/front.svg",
  27765. extra: 2039 / 1562,
  27766. bottom: 40 / 2079
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Normal",
  27773. height: math.unit(11 + 6 / 12, "feet"),
  27774. default: true
  27775. },
  27776. {
  27777. name: "Megamacro",
  27778. height: math.unit(60, "megameters")
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27784. {
  27785. side: {
  27786. height: math.unit(31 + 8 / 12, "feet"),
  27787. weight: math.unit(75000, "kg"),
  27788. name: "Side",
  27789. image: {
  27790. source: "./media/characters/koros/side.svg",
  27791. extra: 1442 / 1297,
  27792. bottom: 122.7 / 1562
  27793. }
  27794. },
  27795. dicksKingsCrown: {
  27796. height: math.unit(6, "feet"),
  27797. name: "Dicks (King's Crown)",
  27798. image: {
  27799. source: "./media/characters/koros/dicks-kings-crown.svg"
  27800. }
  27801. },
  27802. dicksTailSet: {
  27803. height: math.unit(3, "feet"),
  27804. name: "Dicks (Tail Set)",
  27805. image: {
  27806. source: "./media/characters/koros/dicks-tail-set.svg"
  27807. }
  27808. },
  27809. dickCumming: {
  27810. height: math.unit(7.98, "feet"),
  27811. name: "Dick (Cumming)",
  27812. image: {
  27813. source: "./media/characters/koros/dick-cumming.svg"
  27814. }
  27815. },
  27816. dicksBack: {
  27817. height: math.unit(5.9, "feet"),
  27818. name: "Dicks (Back)",
  27819. image: {
  27820. source: "./media/characters/koros/dicks-back.svg"
  27821. }
  27822. },
  27823. dicksFront: {
  27824. height: math.unit(3.72, "feet"),
  27825. name: "Dicks (Front)",
  27826. image: {
  27827. source: "./media/characters/koros/dicks-front.svg"
  27828. }
  27829. },
  27830. dicksPeeking: {
  27831. height: math.unit(3.0, "feet"),
  27832. name: "Dicks (Peeking)",
  27833. image: {
  27834. source: "./media/characters/koros/dicks-peeking.svg"
  27835. }
  27836. },
  27837. eye: {
  27838. height: math.unit(1.7, "feet"),
  27839. name: "Eye",
  27840. image: {
  27841. source: "./media/characters/koros/eye.svg"
  27842. }
  27843. },
  27844. headFront: {
  27845. height: math.unit(11.69, "feet"),
  27846. name: "Head (Front)",
  27847. image: {
  27848. source: "./media/characters/koros/head-front.svg"
  27849. }
  27850. },
  27851. headSide: {
  27852. height: math.unit(14, "feet"),
  27853. name: "Head (Side)",
  27854. image: {
  27855. source: "./media/characters/koros/head-side.svg"
  27856. }
  27857. },
  27858. leg: {
  27859. height: math.unit(17, "feet"),
  27860. name: "Leg",
  27861. image: {
  27862. source: "./media/characters/koros/leg.svg"
  27863. }
  27864. },
  27865. mawSide: {
  27866. height: math.unit(12.8, "feet"),
  27867. name: "Maw (Side)",
  27868. image: {
  27869. source: "./media/characters/koros/maw-side.svg"
  27870. }
  27871. },
  27872. mawSpitting: {
  27873. height: math.unit(17, "feet"),
  27874. name: "Maw (Spitting)",
  27875. image: {
  27876. source: "./media/characters/koros/maw-spitting.svg"
  27877. }
  27878. },
  27879. slit: {
  27880. height: math.unit(2.8, "feet"),
  27881. name: "Slit",
  27882. image: {
  27883. source: "./media/characters/koros/slit.svg"
  27884. }
  27885. },
  27886. stomach: {
  27887. height: math.unit(6.8, "feet"),
  27888. preyCapacity: math.unit(20, "people"),
  27889. name: "Stomach",
  27890. image: {
  27891. source: "./media/characters/koros/stomach.svg"
  27892. }
  27893. },
  27894. wingspanBottom: {
  27895. height: math.unit(114, "feet"),
  27896. name: "Wingspan (Bottom)",
  27897. image: {
  27898. source: "./media/characters/koros/wingspan-bottom.svg"
  27899. }
  27900. },
  27901. wingspanTop: {
  27902. height: math.unit(104, "feet"),
  27903. name: "Wingspan (Top)",
  27904. image: {
  27905. source: "./media/characters/koros/wingspan-top.svg"
  27906. }
  27907. },
  27908. },
  27909. [
  27910. {
  27911. name: "Normal",
  27912. height: math.unit(31 + 8 / 12, "feet"),
  27913. default: true
  27914. },
  27915. ]
  27916. ))
  27917. characterMakers.push(() => makeCharacter(
  27918. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27919. {
  27920. front: {
  27921. height: math.unit(18 + 5 / 12, "feet"),
  27922. weight: math.unit(3750, "kg"),
  27923. name: "Front",
  27924. image: {
  27925. source: "./media/characters/vexx/front.svg",
  27926. extra: 426 / 396,
  27927. bottom: 31.5 / 458
  27928. }
  27929. },
  27930. maw: {
  27931. height: math.unit(6, "feet"),
  27932. name: "Maw",
  27933. image: {
  27934. source: "./media/characters/vexx/maw.svg"
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Normal",
  27941. height: math.unit(18 + 5 / 12, "feet"),
  27942. default: true
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27948. {
  27949. front: {
  27950. height: math.unit(17 + 6 / 12, "feet"),
  27951. weight: math.unit(150, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/baadra/front.svg",
  27955. extra: 1694/1553,
  27956. bottom: 179/1873
  27957. }
  27958. },
  27959. frontAlt: {
  27960. height: math.unit(17 + 6 / 12, "feet"),
  27961. weight: math.unit(150, "lb"),
  27962. name: "Front (Alt)",
  27963. image: {
  27964. source: "./media/characters/baadra/front-alt.svg",
  27965. extra: 3137 / 2890,
  27966. bottom: 168.4 / 3305
  27967. }
  27968. },
  27969. back: {
  27970. height: math.unit(17 + 6 / 12, "feet"),
  27971. weight: math.unit(150, "lb"),
  27972. name: "Back",
  27973. image: {
  27974. source: "./media/characters/baadra/back.svg",
  27975. extra: 3142 / 2890,
  27976. bottom: 220 / 3371
  27977. }
  27978. },
  27979. head: {
  27980. height: math.unit(5.45, "feet"),
  27981. name: "Head",
  27982. image: {
  27983. source: "./media/characters/baadra/head.svg"
  27984. }
  27985. },
  27986. headAngry: {
  27987. height: math.unit(4.95, "feet"),
  27988. name: "Head (Angry)",
  27989. image: {
  27990. source: "./media/characters/baadra/head-angry.svg"
  27991. }
  27992. },
  27993. headOpen: {
  27994. height: math.unit(6, "feet"),
  27995. name: "Head (Open)",
  27996. image: {
  27997. source: "./media/characters/baadra/head-open.svg"
  27998. }
  27999. },
  28000. },
  28001. [
  28002. {
  28003. name: "Normal",
  28004. height: math.unit(17 + 6 / 12, "feet"),
  28005. default: true
  28006. },
  28007. ]
  28008. ))
  28009. characterMakers.push(() => makeCharacter(
  28010. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28011. {
  28012. front: {
  28013. height: math.unit(7 + 3 / 12, "feet"),
  28014. weight: math.unit(180, "lb"),
  28015. name: "Front",
  28016. image: {
  28017. source: "./media/characters/juri/front.svg",
  28018. extra: 1401 / 1237,
  28019. bottom: 18.5 / 1418
  28020. }
  28021. },
  28022. side: {
  28023. height: math.unit(7 + 3 / 12, "feet"),
  28024. weight: math.unit(180, "lb"),
  28025. name: "Side",
  28026. image: {
  28027. source: "./media/characters/juri/side.svg",
  28028. extra: 1424 / 1242,
  28029. bottom: 18.5 / 1447
  28030. }
  28031. },
  28032. sitting: {
  28033. height: math.unit(6, "feet"),
  28034. weight: math.unit(180, "lb"),
  28035. name: "Sitting",
  28036. image: {
  28037. source: "./media/characters/juri/sitting.svg",
  28038. extra: 1270 / 1143,
  28039. bottom: 100 / 1343
  28040. }
  28041. },
  28042. back: {
  28043. height: math.unit(7 + 3 / 12, "feet"),
  28044. weight: math.unit(180, "lb"),
  28045. name: "Back",
  28046. image: {
  28047. source: "./media/characters/juri/back.svg",
  28048. extra: 1377 / 1240,
  28049. bottom: 23.7 / 1405
  28050. }
  28051. },
  28052. maw: {
  28053. height: math.unit(2.8, "feet"),
  28054. name: "Maw",
  28055. image: {
  28056. source: "./media/characters/juri/maw.svg"
  28057. }
  28058. },
  28059. stomach: {
  28060. height: math.unit(0.89, "feet"),
  28061. preyCapacity: math.unit(4, "liters"),
  28062. name: "Stomach",
  28063. image: {
  28064. source: "./media/characters/juri/stomach.svg"
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(7 + 3 / 12, "feet"),
  28072. default: true
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28078. {
  28079. fox: {
  28080. height: math.unit(5 + 6 / 12, "feet"),
  28081. weight: math.unit(140, "lb"),
  28082. name: "Fox",
  28083. image: {
  28084. source: "./media/characters/maxene-sita/fox.svg",
  28085. extra: 146 / 138,
  28086. bottom: 2.1 / 148.19
  28087. }
  28088. },
  28089. foxLaying: {
  28090. height: math.unit(1.70, "feet"),
  28091. weight: math.unit(140, "lb"),
  28092. name: "Fox (Laying)",
  28093. image: {
  28094. source: "./media/characters/maxene-sita/fox-laying.svg",
  28095. extra: 910 / 572,
  28096. bottom: 71 / 981
  28097. }
  28098. },
  28099. kitsune: {
  28100. height: math.unit(10, "feet"),
  28101. weight: math.unit(800, "lb"),
  28102. name: "Kitsune",
  28103. image: {
  28104. source: "./media/characters/maxene-sita/kitsune.svg",
  28105. extra: 185 / 176,
  28106. bottom: 4.7 / 189.9
  28107. }
  28108. },
  28109. hellhound: {
  28110. height: math.unit(10, "feet"),
  28111. weight: math.unit(700, "lb"),
  28112. name: "Hellhound",
  28113. image: {
  28114. source: "./media/characters/maxene-sita/hellhound.svg",
  28115. extra: 1600 / 1545,
  28116. bottom: 81 / 1681
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(5 + 6 / 12, "feet"),
  28124. default: true
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28130. {
  28131. front: {
  28132. height: math.unit(3 + 4 / 12, "feet"),
  28133. weight: math.unit(70, "lb"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/maia/front.svg",
  28137. extra: 227 / 219.5,
  28138. bottom: 40 / 267
  28139. }
  28140. },
  28141. back: {
  28142. height: math.unit(3 + 4 / 12, "feet"),
  28143. weight: math.unit(70, "lb"),
  28144. name: "Back",
  28145. image: {
  28146. source: "./media/characters/maia/back.svg",
  28147. extra: 237 / 225
  28148. }
  28149. },
  28150. },
  28151. [
  28152. {
  28153. name: "Normal",
  28154. height: math.unit(3 + 4 / 12, "feet"),
  28155. default: true
  28156. },
  28157. ]
  28158. ))
  28159. characterMakers.push(() => makeCharacter(
  28160. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28161. {
  28162. front: {
  28163. height: math.unit(5 + 10 / 12, "feet"),
  28164. weight: math.unit(197, "lb"),
  28165. name: "Front",
  28166. image: {
  28167. source: "./media/characters/jabaro/front.svg",
  28168. extra: 225 / 216,
  28169. bottom: 5.06 / 230
  28170. }
  28171. },
  28172. back: {
  28173. height: math.unit(5 + 10 / 12, "feet"),
  28174. weight: math.unit(197, "lb"),
  28175. name: "Back",
  28176. image: {
  28177. source: "./media/characters/jabaro/back.svg",
  28178. extra: 225 / 219,
  28179. bottom: 1.9 / 227
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Normal",
  28186. height: math.unit(5 + 10 / 12, "feet"),
  28187. default: true
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(5 + 8 / 12, "feet"),
  28196. weight: math.unit(139, "lb"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/risa/front.svg",
  28200. extra: 270 / 260,
  28201. bottom: 11.2 / 282
  28202. }
  28203. },
  28204. back: {
  28205. height: math.unit(5 + 8 / 12, "feet"),
  28206. weight: math.unit(139, "lb"),
  28207. name: "Back",
  28208. image: {
  28209. source: "./media/characters/risa/back.svg",
  28210. extra: 264 / 255,
  28211. bottom: 4 / 268
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Normal",
  28218. height: math.unit(5 + 8 / 12, "feet"),
  28219. default: true
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(2 + 11 / 12, "feet"),
  28228. weight: math.unit(30, "lb"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/weatley/front.svg",
  28232. bottom: 10.7 / 414,
  28233. extra: 403.5 / 362
  28234. }
  28235. },
  28236. back: {
  28237. height: math.unit(2 + 11 / 12, "feet"),
  28238. weight: math.unit(30, "lb"),
  28239. name: "Back",
  28240. image: {
  28241. source: "./media/characters/weatley/back.svg",
  28242. bottom: 10.7 / 414,
  28243. extra: 403.5 / 362
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(2 + 11 / 12, "feet"),
  28251. default: true
  28252. },
  28253. ]
  28254. ))
  28255. characterMakers.push(() => makeCharacter(
  28256. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28257. {
  28258. front: {
  28259. height: math.unit(5 + 2 / 12, "feet"),
  28260. weight: math.unit(50, "kg"),
  28261. name: "Front",
  28262. image: {
  28263. source: "./media/characters/mercury-crescent/front.svg",
  28264. extra: 1088 / 1033,
  28265. bottom: 18.9 / 1109
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(5 + 2 / 12, "feet"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(2, "feet"),
  28282. weight: math.unit(15, "kg"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/diamond-jones/front.svg",
  28286. extra: 727/723,
  28287. bottom: 46/773
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Normal",
  28294. height: math.unit(2, "feet"),
  28295. default: true
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(3, "feet"),
  28304. weight: math.unit(30, "kg"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/sweet-bit/front.svg",
  28308. extra: 675 / 567,
  28309. bottom: 27.7 / 703
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(3, "feet"),
  28317. default: true
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28323. {
  28324. side: {
  28325. height: math.unit(9.178, "feet"),
  28326. weight: math.unit(500, "lb"),
  28327. name: "Side",
  28328. image: {
  28329. source: "./media/characters/umbrazen/side.svg",
  28330. extra: 1730 / 1473,
  28331. bottom: 34.6 / 1765
  28332. }
  28333. },
  28334. },
  28335. [
  28336. {
  28337. name: "Normal",
  28338. height: math.unit(9.178, "feet"),
  28339. default: true
  28340. },
  28341. ]
  28342. ))
  28343. characterMakers.push(() => makeCharacter(
  28344. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28345. {
  28346. front: {
  28347. height: math.unit(10, "feet"),
  28348. weight: math.unit(750, "lb"),
  28349. name: "Front",
  28350. image: {
  28351. source: "./media/characters/arlist/front.svg",
  28352. extra: 961 / 778,
  28353. bottom: 6.2 / 986
  28354. }
  28355. },
  28356. },
  28357. [
  28358. {
  28359. name: "Normal",
  28360. height: math.unit(10, "feet"),
  28361. default: true
  28362. },
  28363. ]
  28364. ))
  28365. characterMakers.push(() => makeCharacter(
  28366. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28367. {
  28368. front: {
  28369. height: math.unit(5 + 1 / 12, "feet"),
  28370. weight: math.unit(110, "lb"),
  28371. name: "Front",
  28372. image: {
  28373. source: "./media/characters/aradel/front.svg",
  28374. extra: 324 / 303,
  28375. bottom: 3.6 / 329.4
  28376. }
  28377. },
  28378. },
  28379. [
  28380. {
  28381. name: "Normal",
  28382. height: math.unit(5 + 1 / 12, "feet"),
  28383. default: true
  28384. },
  28385. ]
  28386. ))
  28387. characterMakers.push(() => makeCharacter(
  28388. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28389. {
  28390. dressed: {
  28391. height: math.unit(3 + 8 / 12, "feet"),
  28392. weight: math.unit(50, "lb"),
  28393. name: "Dressed",
  28394. image: {
  28395. source: "./media/characters/serryn/dressed.svg",
  28396. extra: 1792 / 1656,
  28397. bottom: 43.5 / 1840
  28398. }
  28399. },
  28400. nude: {
  28401. height: math.unit(3 + 8 / 12, "feet"),
  28402. weight: math.unit(50, "lb"),
  28403. name: "Nude",
  28404. image: {
  28405. source: "./media/characters/serryn/nude.svg",
  28406. extra: 1792 / 1656,
  28407. bottom: 43.5 / 1840
  28408. }
  28409. },
  28410. },
  28411. [
  28412. {
  28413. name: "Normal",
  28414. height: math.unit(3 + 8 / 12, "feet"),
  28415. default: true
  28416. },
  28417. ]
  28418. ))
  28419. characterMakers.push(() => makeCharacter(
  28420. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28421. {
  28422. front: {
  28423. height: math.unit(7 + 10 / 12, "feet"),
  28424. weight: math.unit(255, "lb"),
  28425. name: "Front",
  28426. image: {
  28427. source: "./media/characters/xavier-thyme/front.svg",
  28428. extra: 3733 / 3642,
  28429. bottom: 131 / 3869
  28430. }
  28431. },
  28432. frontRaven: {
  28433. height: math.unit(7 + 10 / 12, "feet"),
  28434. weight: math.unit(255, "lb"),
  28435. name: "Front (Raven)",
  28436. image: {
  28437. source: "./media/characters/xavier-thyme/front-raven.svg",
  28438. extra: 4385 / 3642,
  28439. bottom: 131 / 4517
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Normal",
  28446. height: math.unit(7 + 10 / 12, "feet"),
  28447. default: true
  28448. },
  28449. ]
  28450. ))
  28451. characterMakers.push(() => makeCharacter(
  28452. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28453. {
  28454. front: {
  28455. height: math.unit(1.6, "m"),
  28456. weight: math.unit(50, "kg"),
  28457. name: "Front",
  28458. image: {
  28459. source: "./media/characters/kiki/front.svg",
  28460. extra: 4682 / 3610,
  28461. bottom: 115 / 4777
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Normal",
  28468. height: math.unit(1.6, "meters"),
  28469. default: true
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28475. {
  28476. front: {
  28477. height: math.unit(50, "m"),
  28478. weight: math.unit(500, "tonnes"),
  28479. name: "Front",
  28480. image: {
  28481. source: "./media/characters/ryoko/front.svg",
  28482. extra: 4632 / 3926,
  28483. bottom: 193 / 4823
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Normal",
  28490. height: math.unit(50, "meters"),
  28491. default: true
  28492. },
  28493. ]
  28494. ))
  28495. characterMakers.push(() => makeCharacter(
  28496. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28497. {
  28498. front: {
  28499. height: math.unit(30, "m"),
  28500. weight: math.unit(22, "tonnes"),
  28501. name: "Front",
  28502. image: {
  28503. source: "./media/characters/elio/front.svg",
  28504. extra: 4582 / 3720,
  28505. bottom: 236 / 4828
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(30, "meters"),
  28513. default: true
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(6 + 3 / 12, "feet"),
  28522. weight: math.unit(120, "lb"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/azura/front.svg",
  28526. extra: 1149 / 1135,
  28527. bottom: 45 / 1194
  28528. }
  28529. },
  28530. frontClothed: {
  28531. height: math.unit(6 + 3 / 12, "feet"),
  28532. weight: math.unit(120, "lb"),
  28533. name: "Front (Clothed)",
  28534. image: {
  28535. source: "./media/characters/azura/front-clothed.svg",
  28536. extra: 1149 / 1135,
  28537. bottom: 45 / 1194
  28538. }
  28539. },
  28540. },
  28541. [
  28542. {
  28543. name: "Normal",
  28544. height: math.unit(6 + 3 / 12, "feet"),
  28545. default: true
  28546. },
  28547. {
  28548. name: "Macro",
  28549. height: math.unit(20 + 6 / 12, "feet")
  28550. },
  28551. {
  28552. name: "Megamacro",
  28553. height: math.unit(12, "miles")
  28554. },
  28555. {
  28556. name: "Gigamacro",
  28557. height: math.unit(10000, "miles")
  28558. },
  28559. {
  28560. name: "Teramacro",
  28561. height: math.unit(900000, "miles")
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28567. {
  28568. front: {
  28569. height: math.unit(12, "feet"),
  28570. weight: math.unit(1, "ton"),
  28571. capacity: math.unit(660000, "gallons"),
  28572. name: "Front",
  28573. image: {
  28574. source: "./media/characters/zeus/front.svg",
  28575. extra: 5005 / 4717,
  28576. bottom: 363 / 5388
  28577. }
  28578. },
  28579. },
  28580. [
  28581. {
  28582. name: "Normal",
  28583. height: math.unit(12, "feet")
  28584. },
  28585. {
  28586. name: "Preferred Size",
  28587. height: math.unit(0.5, "miles"),
  28588. default: true
  28589. },
  28590. {
  28591. name: "Giga Horse",
  28592. height: math.unit(300, "miles")
  28593. },
  28594. {
  28595. name: "Riding Planets",
  28596. height: math.unit(30, "megameters")
  28597. },
  28598. {
  28599. name: "Cosmic Giant",
  28600. height: math.unit(3, "zettameters")
  28601. },
  28602. {
  28603. name: "Breeding God",
  28604. height: math.unit(9.92e22, "yottameters")
  28605. },
  28606. ]
  28607. ))
  28608. characterMakers.push(() => makeCharacter(
  28609. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28610. {
  28611. side: {
  28612. height: math.unit(9, "feet"),
  28613. weight: math.unit(1500, "kg"),
  28614. name: "Side",
  28615. image: {
  28616. source: "./media/characters/fang/side.svg",
  28617. extra: 924 / 866,
  28618. bottom: 47.5 / 972.3
  28619. }
  28620. },
  28621. },
  28622. [
  28623. {
  28624. name: "Normal",
  28625. height: math.unit(9, "feet"),
  28626. default: true
  28627. },
  28628. {
  28629. name: "Macro",
  28630. height: math.unit(75 + 6 / 12, "feet")
  28631. },
  28632. {
  28633. name: "Teramacro",
  28634. height: math.unit(50000, "miles")
  28635. },
  28636. ]
  28637. ))
  28638. characterMakers.push(() => makeCharacter(
  28639. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28640. {
  28641. front: {
  28642. height: math.unit(10, "feet"),
  28643. weight: math.unit(2, "tons"),
  28644. name: "Front",
  28645. image: {
  28646. source: "./media/characters/rekhit/front.svg",
  28647. extra: 2796 / 2590,
  28648. bottom: 225 / 3022
  28649. }
  28650. },
  28651. },
  28652. [
  28653. {
  28654. name: "Normal",
  28655. height: math.unit(10, "feet"),
  28656. default: true
  28657. },
  28658. {
  28659. name: "Macro",
  28660. height: math.unit(500, "feet")
  28661. },
  28662. ]
  28663. ))
  28664. characterMakers.push(() => makeCharacter(
  28665. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28666. {
  28667. front: {
  28668. height: math.unit(7 + 6.451 / 12, "feet"),
  28669. weight: math.unit(310, "lb"),
  28670. name: "Front",
  28671. image: {
  28672. source: "./media/characters/dahlia-verrick/front.svg",
  28673. extra: 1488 / 1365,
  28674. bottom: 6.2 / 1495
  28675. }
  28676. },
  28677. back: {
  28678. height: math.unit(7 + 6.451 / 12, "feet"),
  28679. weight: math.unit(310, "lb"),
  28680. name: "Back",
  28681. image: {
  28682. source: "./media/characters/dahlia-verrick/back.svg",
  28683. extra: 1472 / 1351,
  28684. bottom: 5.28 / 1477
  28685. }
  28686. },
  28687. frontBusiness: {
  28688. height: math.unit(7 + 6.451 / 12, "feet"),
  28689. weight: math.unit(200, "lb"),
  28690. name: "Front (Business)",
  28691. image: {
  28692. source: "./media/characters/dahlia-verrick/front-business.svg",
  28693. extra: 1478 / 1381,
  28694. bottom: 5.5 / 1484
  28695. }
  28696. },
  28697. frontCasual: {
  28698. height: math.unit(7 + 6.451 / 12, "feet"),
  28699. weight: math.unit(200, "lb"),
  28700. name: "Front (Casual)",
  28701. image: {
  28702. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28703. extra: 1478 / 1381,
  28704. bottom: 5.5 / 1484
  28705. }
  28706. },
  28707. },
  28708. [
  28709. {
  28710. name: "Travel-Sized",
  28711. height: math.unit(7.45, "inches")
  28712. },
  28713. {
  28714. name: "Normal",
  28715. height: math.unit(7 + 6.451 / 12, "feet"),
  28716. default: true
  28717. },
  28718. {
  28719. name: "Hitting the Town",
  28720. height: math.unit(37 + 8 / 12, "feet")
  28721. },
  28722. {
  28723. name: "Stomp in the Suburbs",
  28724. height: math.unit(964 + 9.728 / 12, "feet")
  28725. },
  28726. {
  28727. name: "Sit on the City",
  28728. height: math.unit(61747 + 10.592 / 12, "feet")
  28729. },
  28730. {
  28731. name: "Glomp the Globe",
  28732. height: math.unit(252919327 + 4.832 / 12, "feet")
  28733. },
  28734. ]
  28735. ))
  28736. characterMakers.push(() => makeCharacter(
  28737. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28738. {
  28739. front: {
  28740. height: math.unit(6 + 4 / 12, "feet"),
  28741. weight: math.unit(320, "lb"),
  28742. name: "Front",
  28743. image: {
  28744. source: "./media/characters/balina-mahigan/front.svg",
  28745. extra: 447 / 428,
  28746. bottom: 18 / 466
  28747. }
  28748. },
  28749. back: {
  28750. height: math.unit(6 + 4 / 12, "feet"),
  28751. weight: math.unit(320, "lb"),
  28752. name: "Back",
  28753. image: {
  28754. source: "./media/characters/balina-mahigan/back.svg",
  28755. extra: 445 / 428,
  28756. bottom: 4.07 / 448
  28757. }
  28758. },
  28759. arm: {
  28760. height: math.unit(1.88, "feet"),
  28761. name: "Arm",
  28762. image: {
  28763. source: "./media/characters/balina-mahigan/arm.svg"
  28764. }
  28765. },
  28766. backPort: {
  28767. height: math.unit(0.685, "feet"),
  28768. name: "Back Port",
  28769. image: {
  28770. source: "./media/characters/balina-mahigan/back-port.svg"
  28771. }
  28772. },
  28773. hoofpaw: {
  28774. height: math.unit(1.41, "feet"),
  28775. name: "Hoofpaw",
  28776. image: {
  28777. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28778. }
  28779. },
  28780. leftHandBack: {
  28781. height: math.unit(0.938, "feet"),
  28782. name: "Left Hand (Back)",
  28783. image: {
  28784. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28785. }
  28786. },
  28787. leftHandFront: {
  28788. height: math.unit(0.938, "feet"),
  28789. name: "Left Hand (Front)",
  28790. image: {
  28791. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28792. }
  28793. },
  28794. rightHandBack: {
  28795. height: math.unit(0.95, "feet"),
  28796. name: "Right Hand (Back)",
  28797. image: {
  28798. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28799. }
  28800. },
  28801. rightHandFront: {
  28802. height: math.unit(0.95, "feet"),
  28803. name: "Right Hand (Front)",
  28804. image: {
  28805. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28806. }
  28807. },
  28808. },
  28809. [
  28810. {
  28811. name: "Normal",
  28812. height: math.unit(6 + 4 / 12, "feet"),
  28813. default: true
  28814. },
  28815. ]
  28816. ))
  28817. characterMakers.push(() => makeCharacter(
  28818. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28819. {
  28820. front: {
  28821. height: math.unit(6, "feet"),
  28822. weight: math.unit(320, "lb"),
  28823. name: "Front",
  28824. image: {
  28825. source: "./media/characters/balina-mejeri/front.svg",
  28826. extra: 517 / 488,
  28827. bottom: 44.2 / 561
  28828. }
  28829. },
  28830. },
  28831. [
  28832. {
  28833. name: "Normal",
  28834. height: math.unit(6 + 4 / 12, "feet")
  28835. },
  28836. {
  28837. name: "Business",
  28838. height: math.unit(155, "feet"),
  28839. default: true
  28840. },
  28841. ]
  28842. ))
  28843. characterMakers.push(() => makeCharacter(
  28844. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28845. {
  28846. kneeling: {
  28847. height: math.unit(6 + 4 / 12, "feet"),
  28848. weight: math.unit(300 * 20, "lb"),
  28849. name: "Kneeling",
  28850. image: {
  28851. source: "./media/characters/balbarian/kneeling.svg",
  28852. extra: 922 / 862,
  28853. bottom: 42.4 / 965
  28854. }
  28855. },
  28856. },
  28857. [
  28858. {
  28859. name: "Normal",
  28860. height: math.unit(6 + 4 / 12, "feet")
  28861. },
  28862. {
  28863. name: "Treasured",
  28864. height: math.unit(18 + 9 / 12, "feet"),
  28865. default: true
  28866. },
  28867. {
  28868. name: "Macro",
  28869. height: math.unit(900, "feet")
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28875. {
  28876. front: {
  28877. height: math.unit(6 + 4 / 12, "feet"),
  28878. weight: math.unit(325, "lb"),
  28879. name: "Front",
  28880. image: {
  28881. source: "./media/characters/balina-amarini/front.svg",
  28882. extra: 415 / 403,
  28883. bottom: 19 / 433.4
  28884. }
  28885. },
  28886. back: {
  28887. height: math.unit(6 + 4 / 12, "feet"),
  28888. weight: math.unit(325, "lb"),
  28889. name: "Back",
  28890. image: {
  28891. source: "./media/characters/balina-amarini/back.svg",
  28892. extra: 415 / 403,
  28893. bottom: 13.5 / 432
  28894. }
  28895. },
  28896. overdrive: {
  28897. height: math.unit(6 + 4 / 12, "feet"),
  28898. weight: math.unit(400, "lb"),
  28899. name: "Overdrive",
  28900. image: {
  28901. source: "./media/characters/balina-amarini/overdrive.svg",
  28902. extra: 269 / 259,
  28903. bottom: 12 / 282
  28904. }
  28905. },
  28906. },
  28907. [
  28908. {
  28909. name: "Boom",
  28910. height: math.unit(9 + 10 / 12, "feet"),
  28911. default: true
  28912. },
  28913. {
  28914. name: "Macro",
  28915. height: math.unit(280, "feet")
  28916. },
  28917. ]
  28918. ))
  28919. characterMakers.push(() => makeCharacter(
  28920. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28921. {
  28922. goddess: {
  28923. height: math.unit(600, "feet"),
  28924. weight: math.unit(2000000, "tons"),
  28925. name: "Goddess",
  28926. image: {
  28927. source: "./media/characters/lady-kubwa/goddess.svg",
  28928. extra: 1240.5 / 1223,
  28929. bottom: 22 / 1263
  28930. }
  28931. },
  28932. goddesser: {
  28933. height: math.unit(900, "feet"),
  28934. weight: math.unit(20000000, "lb"),
  28935. name: "Goddess-er",
  28936. image: {
  28937. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28938. extra: 899 / 888,
  28939. bottom: 12.6 / 912
  28940. }
  28941. },
  28942. },
  28943. [
  28944. {
  28945. name: "Macro",
  28946. height: math.unit(600, "feet"),
  28947. default: true
  28948. },
  28949. {
  28950. name: "Megamacro",
  28951. height: math.unit(250, "miles")
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(7 + 7 / 12, "feet"),
  28960. weight: math.unit(250, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/tala-grovehorn/front.svg",
  28964. extra: 2636 / 2525,
  28965. bottom: 147 / 2781
  28966. }
  28967. },
  28968. back: {
  28969. height: math.unit(7 + 7 / 12, "feet"),
  28970. weight: math.unit(250, "lb"),
  28971. name: "Back",
  28972. image: {
  28973. source: "./media/characters/tala-grovehorn/back.svg",
  28974. extra: 2635 / 2539,
  28975. bottom: 100 / 2732.8
  28976. }
  28977. },
  28978. mouth: {
  28979. height: math.unit(1.15, "feet"),
  28980. name: "Mouth",
  28981. image: {
  28982. source: "./media/characters/tala-grovehorn/mouth.svg"
  28983. }
  28984. },
  28985. dick: {
  28986. height: math.unit(2.36, "feet"),
  28987. name: "Dick",
  28988. image: {
  28989. source: "./media/characters/tala-grovehorn/dick.svg"
  28990. }
  28991. },
  28992. slit: {
  28993. height: math.unit(0.61, "feet"),
  28994. name: "Slit",
  28995. image: {
  28996. source: "./media/characters/tala-grovehorn/slit.svg"
  28997. }
  28998. },
  28999. },
  29000. [
  29001. ]
  29002. ))
  29003. characterMakers.push(() => makeCharacter(
  29004. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29005. {
  29006. front: {
  29007. height: math.unit(7 + 7 / 12, "feet"),
  29008. weight: math.unit(225, "lb"),
  29009. name: "Front",
  29010. image: {
  29011. source: "./media/characters/epona/front.svg",
  29012. extra: 2445 / 2290,
  29013. bottom: 251 / 2696
  29014. }
  29015. },
  29016. back: {
  29017. height: math.unit(7 + 7 / 12, "feet"),
  29018. weight: math.unit(225, "lb"),
  29019. name: "Back",
  29020. image: {
  29021. source: "./media/characters/epona/back.svg",
  29022. extra: 2546 / 2408,
  29023. bottom: 44 / 2589
  29024. }
  29025. },
  29026. genitals: {
  29027. height: math.unit(1.5, "feet"),
  29028. name: "Genitals",
  29029. image: {
  29030. source: "./media/characters/epona/genitals.svg"
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Normal",
  29037. height: math.unit(7 + 7 / 12, "feet"),
  29038. default: true
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(7, "feet"),
  29047. weight: math.unit(518, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/avia-bloodbourn/front.svg",
  29051. extra: 1466 / 1350,
  29052. bottom: 65 / 1527
  29053. }
  29054. },
  29055. },
  29056. [
  29057. ]
  29058. ))
  29059. characterMakers.push(() => makeCharacter(
  29060. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29061. {
  29062. front: {
  29063. height: math.unit(9.35, "feet"),
  29064. weight: math.unit(600, "lb"),
  29065. name: "Front",
  29066. image: {
  29067. source: "./media/characters/amera/front.svg",
  29068. extra: 891 / 818,
  29069. bottom: 30 / 922.7
  29070. }
  29071. },
  29072. back: {
  29073. height: math.unit(9.35, "feet"),
  29074. weight: math.unit(600, "lb"),
  29075. name: "Back",
  29076. image: {
  29077. source: "./media/characters/amera/back.svg",
  29078. extra: 876 / 824,
  29079. bottom: 6.8 / 884
  29080. }
  29081. },
  29082. dick: {
  29083. height: math.unit(2.14, "feet"),
  29084. name: "Dick",
  29085. image: {
  29086. source: "./media/characters/amera/dick.svg"
  29087. }
  29088. },
  29089. },
  29090. [
  29091. {
  29092. name: "Normal",
  29093. height: math.unit(9.35, "feet"),
  29094. default: true
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29100. {
  29101. kneeling: {
  29102. height: math.unit(3 + 4 / 12, "feet"),
  29103. weight: math.unit(90, "lb"),
  29104. name: "Kneeling",
  29105. image: {
  29106. source: "./media/characters/rosewen/kneeling.svg",
  29107. extra: 1835 / 1571,
  29108. bottom: 27.7 / 1862
  29109. }
  29110. },
  29111. },
  29112. [
  29113. {
  29114. name: "Normal",
  29115. height: math.unit(3 + 4 / 12, "feet"),
  29116. default: true
  29117. },
  29118. ]
  29119. ))
  29120. characterMakers.push(() => makeCharacter(
  29121. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29122. {
  29123. front: {
  29124. height: math.unit(5 + 10 / 12, "feet"),
  29125. weight: math.unit(200, "lb"),
  29126. name: "Front",
  29127. image: {
  29128. source: "./media/characters/sabah/front.svg",
  29129. extra: 849 / 763,
  29130. bottom: 33.9 / 881
  29131. }
  29132. },
  29133. },
  29134. [
  29135. {
  29136. name: "Normal",
  29137. height: math.unit(5 + 10 / 12, "feet"),
  29138. default: true
  29139. },
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29144. {
  29145. front: {
  29146. height: math.unit(3 + 5 / 12, "feet"),
  29147. weight: math.unit(40, "kg"),
  29148. name: "Front",
  29149. image: {
  29150. source: "./media/characters/purple-flame/front.svg",
  29151. extra: 1577 / 1412,
  29152. bottom: 97 / 1694
  29153. }
  29154. },
  29155. frontDressed: {
  29156. height: math.unit(3 + 5 / 12, "feet"),
  29157. weight: math.unit(40, "kg"),
  29158. name: "Front (Dressed)",
  29159. image: {
  29160. source: "./media/characters/purple-flame/front-dressed.svg",
  29161. extra: 1577 / 1412,
  29162. bottom: 97 / 1694
  29163. }
  29164. },
  29165. headphones: {
  29166. height: math.unit(0.85, "feet"),
  29167. name: "Headphones",
  29168. image: {
  29169. source: "./media/characters/purple-flame/headphones.svg"
  29170. }
  29171. },
  29172. },
  29173. [
  29174. {
  29175. name: "Really Small",
  29176. height: math.unit(5, "cm")
  29177. },
  29178. {
  29179. name: "Micro",
  29180. height: math.unit(1 + 5 / 12, "feet")
  29181. },
  29182. {
  29183. name: "Normal",
  29184. height: math.unit(3 + 5 / 12, "feet"),
  29185. default: true
  29186. },
  29187. {
  29188. name: "Minimacro",
  29189. height: math.unit(125, "feet")
  29190. },
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(0.5, "miles")
  29194. },
  29195. {
  29196. name: "Megamacro",
  29197. height: math.unit(50, "miles")
  29198. },
  29199. {
  29200. name: "Gigantic",
  29201. height: math.unit(750, "miles")
  29202. },
  29203. {
  29204. name: "Planetary",
  29205. height: math.unit(15000, "miles")
  29206. },
  29207. ]
  29208. ))
  29209. characterMakers.push(() => makeCharacter(
  29210. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29211. {
  29212. front: {
  29213. height: math.unit(14, "feet"),
  29214. weight: math.unit(959, "lb"),
  29215. name: "Front",
  29216. image: {
  29217. source: "./media/characters/arsenal/front.svg",
  29218. extra: 2357 / 2157,
  29219. bottom: 93 / 2458
  29220. }
  29221. },
  29222. },
  29223. [
  29224. {
  29225. name: "Normal",
  29226. height: math.unit(14, "feet"),
  29227. default: true
  29228. },
  29229. ]
  29230. ))
  29231. characterMakers.push(() => makeCharacter(
  29232. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29233. {
  29234. front: {
  29235. height: math.unit(6, "feet"),
  29236. weight: math.unit(150, "lb"),
  29237. name: "Front",
  29238. image: {
  29239. source: "./media/characters/adira/front.svg",
  29240. extra: 1078 / 1029,
  29241. bottom: 87 / 1166
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Micro",
  29248. height: math.unit(4, "inches"),
  29249. default: true
  29250. },
  29251. {
  29252. name: "Macro",
  29253. height: math.unit(50, "feet")
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(16, "feet"),
  29262. weight: math.unit(1000, "lb"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/grim/front.svg",
  29266. extra: 622 / 614,
  29267. bottom: 18.1 / 642
  29268. }
  29269. },
  29270. back: {
  29271. height: math.unit(16, "feet"),
  29272. weight: math.unit(1000, "lb"),
  29273. name: "Back",
  29274. image: {
  29275. source: "./media/characters/grim/back.svg",
  29276. extra: 610.6 / 602,
  29277. bottom: 40.8 / 652
  29278. }
  29279. },
  29280. hunched: {
  29281. height: math.unit(9.75, "feet"),
  29282. weight: math.unit(1000, "lb"),
  29283. name: "Hunched",
  29284. image: {
  29285. source: "./media/characters/grim/hunched.svg",
  29286. extra: 304 / 297,
  29287. bottom: 35.4 / 394
  29288. }
  29289. },
  29290. },
  29291. [
  29292. {
  29293. name: "Normal",
  29294. height: math.unit(16, "feet"),
  29295. default: true
  29296. },
  29297. ]
  29298. ))
  29299. characterMakers.push(() => makeCharacter(
  29300. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29301. {
  29302. front: {
  29303. height: math.unit(2.3, "meters"),
  29304. weight: math.unit(300, "lb"),
  29305. name: "Front",
  29306. image: {
  29307. source: "./media/characters/sinja/front-sfw.svg",
  29308. extra: 1393 / 1294,
  29309. bottom: 70 / 1463
  29310. }
  29311. },
  29312. frontNsfw: {
  29313. height: math.unit(2.3, "meters"),
  29314. weight: math.unit(300, "lb"),
  29315. name: "Front (NSFW)",
  29316. image: {
  29317. source: "./media/characters/sinja/front-nsfw.svg",
  29318. extra: 1393 / 1294,
  29319. bottom: 70 / 1463
  29320. }
  29321. },
  29322. back: {
  29323. height: math.unit(2.3, "meters"),
  29324. weight: math.unit(300, "lb"),
  29325. name: "Back",
  29326. image: {
  29327. source: "./media/characters/sinja/back.svg",
  29328. extra: 1393 / 1294,
  29329. bottom: 70 / 1463
  29330. }
  29331. },
  29332. head: {
  29333. height: math.unit(1.771, "feet"),
  29334. name: "Head",
  29335. image: {
  29336. source: "./media/characters/sinja/head.svg"
  29337. }
  29338. },
  29339. slit: {
  29340. height: math.unit(0.8, "feet"),
  29341. name: "Slit",
  29342. image: {
  29343. source: "./media/characters/sinja/slit.svg"
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Normal",
  29350. height: math.unit(2.3, "meters")
  29351. },
  29352. {
  29353. name: "Macro",
  29354. height: math.unit(91, "meters"),
  29355. default: true
  29356. },
  29357. {
  29358. name: "Megamacro",
  29359. height: math.unit(91440, "meters")
  29360. },
  29361. {
  29362. name: "Gigamacro",
  29363. height: math.unit(60960000, "meters")
  29364. },
  29365. {
  29366. name: "Teramacro",
  29367. height: math.unit(9144000000, "meters")
  29368. },
  29369. ]
  29370. ))
  29371. characterMakers.push(() => makeCharacter(
  29372. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29373. {
  29374. front: {
  29375. height: math.unit(1.7, "meters"),
  29376. weight: math.unit(130, "lb"),
  29377. name: "Front",
  29378. image: {
  29379. source: "./media/characters/kyu/front.svg",
  29380. extra: 415 / 395,
  29381. bottom: 5 / 420
  29382. }
  29383. },
  29384. head: {
  29385. height: math.unit(1.75, "feet"),
  29386. name: "Head",
  29387. image: {
  29388. source: "./media/characters/kyu/head.svg"
  29389. }
  29390. },
  29391. foot: {
  29392. height: math.unit(0.81, "feet"),
  29393. name: "Foot",
  29394. image: {
  29395. source: "./media/characters/kyu/foot.svg"
  29396. }
  29397. },
  29398. },
  29399. [
  29400. {
  29401. name: "Normal",
  29402. height: math.unit(1.7, "meters")
  29403. },
  29404. {
  29405. name: "Macro",
  29406. height: math.unit(131, "feet"),
  29407. default: true
  29408. },
  29409. {
  29410. name: "Megamacro",
  29411. height: math.unit(91440, "meters")
  29412. },
  29413. {
  29414. name: "Gigamacro",
  29415. height: math.unit(60960000, "meters")
  29416. },
  29417. {
  29418. name: "Teramacro",
  29419. height: math.unit(9144000000, "meters")
  29420. },
  29421. ]
  29422. ))
  29423. characterMakers.push(() => makeCharacter(
  29424. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29425. {
  29426. front: {
  29427. height: math.unit(7 + 1 / 12, "feet"),
  29428. weight: math.unit(250, "lb"),
  29429. name: "Front",
  29430. image: {
  29431. source: "./media/characters/joey/front.svg",
  29432. extra: 1791 / 1537,
  29433. bottom: 28 / 1816
  29434. }
  29435. },
  29436. },
  29437. [
  29438. {
  29439. name: "Micro",
  29440. height: math.unit(3, "inches")
  29441. },
  29442. {
  29443. name: "Normal",
  29444. height: math.unit(7 + 1 / 12, "feet"),
  29445. default: true
  29446. },
  29447. ]
  29448. ))
  29449. characterMakers.push(() => makeCharacter(
  29450. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29451. {
  29452. front: {
  29453. height: math.unit(165, "cm"),
  29454. weight: math.unit(140, "lb"),
  29455. name: "Front",
  29456. image: {
  29457. source: "./media/characters/sam-evans/front.svg",
  29458. extra: 3417 / 3230,
  29459. bottom: 41.3 / 3417
  29460. }
  29461. },
  29462. frontSixTails: {
  29463. height: math.unit(165, "cm"),
  29464. weight: math.unit(140, "lb"),
  29465. name: "Front-six-tails",
  29466. image: {
  29467. source: "./media/characters/sam-evans/front-six-tails.svg",
  29468. extra: 3417 / 3230,
  29469. bottom: 41.3 / 3417
  29470. }
  29471. },
  29472. back: {
  29473. height: math.unit(165, "cm"),
  29474. weight: math.unit(140, "lb"),
  29475. name: "Back",
  29476. image: {
  29477. source: "./media/characters/sam-evans/back.svg",
  29478. extra: 3227 / 3032,
  29479. bottom: 6.8 / 3234
  29480. }
  29481. },
  29482. face: {
  29483. height: math.unit(0.68, "feet"),
  29484. name: "Face",
  29485. image: {
  29486. source: "./media/characters/sam-evans/face.svg"
  29487. }
  29488. },
  29489. },
  29490. [
  29491. {
  29492. name: "Normal",
  29493. height: math.unit(165, "cm"),
  29494. default: true
  29495. },
  29496. {
  29497. name: "Macro",
  29498. height: math.unit(100, "meters")
  29499. },
  29500. {
  29501. name: "Macro+",
  29502. height: math.unit(800, "meters")
  29503. },
  29504. {
  29505. name: "Macro++",
  29506. height: math.unit(3, "km")
  29507. },
  29508. {
  29509. name: "Macro+++",
  29510. height: math.unit(30, "km")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(10, "feet"),
  29519. weight: math.unit(750, "lb"),
  29520. name: "Front",
  29521. image: {
  29522. source: "./media/characters/juliet-a/front.svg",
  29523. extra: 1766 / 1720,
  29524. bottom: 43 / 1809
  29525. }
  29526. },
  29527. back: {
  29528. height: math.unit(10, "feet"),
  29529. weight: math.unit(750, "lb"),
  29530. name: "Back",
  29531. image: {
  29532. source: "./media/characters/juliet-a/back.svg",
  29533. extra: 1781 / 1734,
  29534. bottom: 35 / 1810,
  29535. }
  29536. },
  29537. },
  29538. [
  29539. {
  29540. name: "Normal",
  29541. height: math.unit(10, "feet"),
  29542. default: true
  29543. },
  29544. {
  29545. name: "Dragon Form",
  29546. height: math.unit(250, "feet")
  29547. },
  29548. {
  29549. name: "Macro",
  29550. height: math.unit(1000, "feet")
  29551. },
  29552. {
  29553. name: "Megamacro",
  29554. height: math.unit(10000, "feet")
  29555. }
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29560. {
  29561. regular: {
  29562. height: math.unit(7 + 3 / 12, "feet"),
  29563. weight: math.unit(260, "lb"),
  29564. name: "Regular",
  29565. image: {
  29566. source: "./media/characters/wild/regular.svg",
  29567. extra: 97.45 / 92,
  29568. bottom: 6.8 / 104.3
  29569. }
  29570. },
  29571. biggums: {
  29572. height: math.unit(8 + 6 / 12, "feet"),
  29573. weight: math.unit(425, "lb"),
  29574. name: "Biggums",
  29575. image: {
  29576. source: "./media/characters/wild/biggums.svg",
  29577. extra: 97.45 / 92,
  29578. bottom: 7.5 / 132.34
  29579. }
  29580. },
  29581. mawRegular: {
  29582. height: math.unit(1.24, "feet"),
  29583. name: "Maw (Regular)",
  29584. image: {
  29585. source: "./media/characters/wild/maw.svg"
  29586. }
  29587. },
  29588. mawBiggums: {
  29589. height: math.unit(1.47, "feet"),
  29590. name: "Maw (Biggums)",
  29591. image: {
  29592. source: "./media/characters/wild/maw.svg"
  29593. }
  29594. },
  29595. },
  29596. [
  29597. {
  29598. name: "Normal",
  29599. height: math.unit(7 + 3 / 12, "feet"),
  29600. default: true
  29601. },
  29602. ]
  29603. ))
  29604. characterMakers.push(() => makeCharacter(
  29605. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29606. {
  29607. front: {
  29608. height: math.unit(2.5, "meters"),
  29609. weight: math.unit(200, "kg"),
  29610. name: "Front",
  29611. image: {
  29612. source: "./media/characters/vidar/front.svg",
  29613. extra: 2994 / 2795,
  29614. bottom: 56 / 3061
  29615. }
  29616. },
  29617. back: {
  29618. height: math.unit(2.5, "meters"),
  29619. weight: math.unit(200, "kg"),
  29620. name: "Back",
  29621. image: {
  29622. source: "./media/characters/vidar/back.svg",
  29623. extra: 3131 / 2928,
  29624. bottom: 13.5 / 3141.5
  29625. }
  29626. },
  29627. feral: {
  29628. height: math.unit(2.5, "meters"),
  29629. weight: math.unit(2000, "kg"),
  29630. name: "Feral",
  29631. image: {
  29632. source: "./media/characters/vidar/feral.svg",
  29633. extra: 2790 / 1765,
  29634. bottom: 6 / 2796
  29635. }
  29636. },
  29637. },
  29638. [
  29639. {
  29640. name: "Normal",
  29641. height: math.unit(2.5, "meters"),
  29642. default: true
  29643. },
  29644. {
  29645. name: "Macro",
  29646. height: math.unit(100, "meters")
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29652. {
  29653. front: {
  29654. height: math.unit(5 + 9 / 12, "feet"),
  29655. weight: math.unit(120, "lb"),
  29656. name: "Front",
  29657. image: {
  29658. source: "./media/characters/ash/front.svg",
  29659. extra: 2189 / 1961,
  29660. bottom: 5.2 / 2194
  29661. }
  29662. },
  29663. },
  29664. [
  29665. {
  29666. name: "Normal",
  29667. height: math.unit(5 + 9 / 12, "feet"),
  29668. default: true
  29669. },
  29670. ]
  29671. ))
  29672. characterMakers.push(() => makeCharacter(
  29673. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29674. {
  29675. front: {
  29676. height: math.unit(9, "feet"),
  29677. weight: math.unit(10000, "lb"),
  29678. name: "Front",
  29679. image: {
  29680. source: "./media/characters/gygabite/front.svg",
  29681. bottom: 31.7 / 537.8,
  29682. extra: 505 / 370
  29683. }
  29684. },
  29685. },
  29686. [
  29687. {
  29688. name: "Normal",
  29689. height: math.unit(9, "feet"),
  29690. default: true
  29691. },
  29692. ]
  29693. ))
  29694. characterMakers.push(() => makeCharacter(
  29695. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29696. {
  29697. front: {
  29698. height: math.unit(12, "feet"),
  29699. weight: math.unit(4000, "lb"),
  29700. name: "Front",
  29701. image: {
  29702. source: "./media/characters/p0tat0/front.svg",
  29703. extra: 1065 / 921,
  29704. bottom: 55.7 / 1121.25
  29705. }
  29706. },
  29707. },
  29708. [
  29709. {
  29710. name: "Normal",
  29711. height: math.unit(12, "feet"),
  29712. default: true
  29713. },
  29714. ]
  29715. ))
  29716. characterMakers.push(() => makeCharacter(
  29717. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29718. {
  29719. side: {
  29720. height: math.unit(6.5, "feet"),
  29721. weight: math.unit(800, "lb"),
  29722. name: "Side",
  29723. image: {
  29724. source: "./media/characters/dusk/side.svg",
  29725. extra: 615 / 373,
  29726. bottom: 53 / 664
  29727. }
  29728. },
  29729. sitting: {
  29730. height: math.unit(7, "feet"),
  29731. weight: math.unit(800, "lb"),
  29732. name: "Sitting",
  29733. image: {
  29734. source: "./media/characters/dusk/sitting.svg",
  29735. extra: 753 / 425,
  29736. bottom: 33 / 774
  29737. }
  29738. },
  29739. head: {
  29740. height: math.unit(6.1, "feet"),
  29741. name: "Head",
  29742. image: {
  29743. source: "./media/characters/dusk/head.svg"
  29744. }
  29745. },
  29746. },
  29747. [
  29748. {
  29749. name: "Normal",
  29750. height: math.unit(7, "feet"),
  29751. default: true
  29752. },
  29753. ]
  29754. ))
  29755. characterMakers.push(() => makeCharacter(
  29756. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29757. {
  29758. front: {
  29759. height: math.unit(15, "feet"),
  29760. weight: math.unit(7000, "lb"),
  29761. name: "Front",
  29762. image: {
  29763. source: "./media/characters/jay-direwolf/front.svg",
  29764. extra: 1810 / 1732,
  29765. bottom: 66 / 1892
  29766. }
  29767. },
  29768. },
  29769. [
  29770. {
  29771. name: "Normal",
  29772. height: math.unit(15, "feet"),
  29773. default: true
  29774. },
  29775. ]
  29776. ))
  29777. characterMakers.push(() => makeCharacter(
  29778. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29779. {
  29780. front: {
  29781. height: math.unit(4 + 9 / 12, "feet"),
  29782. weight: math.unit(130, "lb"),
  29783. name: "Front",
  29784. image: {
  29785. source: "./media/characters/anchovie/front.svg",
  29786. extra: 382 / 350,
  29787. bottom: 25 / 409
  29788. }
  29789. },
  29790. back: {
  29791. height: math.unit(4 + 9 / 12, "feet"),
  29792. weight: math.unit(130, "lb"),
  29793. name: "Back",
  29794. image: {
  29795. source: "./media/characters/anchovie/back.svg",
  29796. extra: 385 / 352,
  29797. bottom: 16.6 / 402
  29798. }
  29799. },
  29800. frontDressed: {
  29801. height: math.unit(4 + 9 / 12, "feet"),
  29802. weight: math.unit(130, "lb"),
  29803. name: "Front (Dressed)",
  29804. image: {
  29805. source: "./media/characters/anchovie/front-dressed.svg",
  29806. extra: 382 / 350,
  29807. bottom: 25 / 409
  29808. }
  29809. },
  29810. backDressed: {
  29811. height: math.unit(4 + 9 / 12, "feet"),
  29812. weight: math.unit(130, "lb"),
  29813. name: "Back (Dressed)",
  29814. image: {
  29815. source: "./media/characters/anchovie/back-dressed.svg",
  29816. extra: 385 / 352,
  29817. bottom: 16.6 / 402
  29818. }
  29819. },
  29820. },
  29821. [
  29822. {
  29823. name: "Micro",
  29824. height: math.unit(6.4, "inches")
  29825. },
  29826. {
  29827. name: "Normal",
  29828. height: math.unit(4 + 9 / 12, "feet"),
  29829. default: true
  29830. },
  29831. ]
  29832. ))
  29833. characterMakers.push(() => makeCharacter(
  29834. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29835. {
  29836. front: {
  29837. height: math.unit(2, "meters"),
  29838. weight: math.unit(180, "lb"),
  29839. name: "Front",
  29840. image: {
  29841. source: "./media/characters/acidrenamon/front.svg",
  29842. extra: 987 / 890,
  29843. bottom: 22.8 / 1009
  29844. }
  29845. },
  29846. back: {
  29847. height: math.unit(2, "meters"),
  29848. weight: math.unit(180, "lb"),
  29849. name: "Back",
  29850. image: {
  29851. source: "./media/characters/acidrenamon/back.svg",
  29852. extra: 983 / 891,
  29853. bottom: 8.4 / 992
  29854. }
  29855. },
  29856. head: {
  29857. height: math.unit(1.92, "feet"),
  29858. name: "Head",
  29859. image: {
  29860. source: "./media/characters/acidrenamon/head.svg"
  29861. }
  29862. },
  29863. rump: {
  29864. height: math.unit(1.72, "feet"),
  29865. name: "Rump",
  29866. image: {
  29867. source: "./media/characters/acidrenamon/rump.svg"
  29868. }
  29869. },
  29870. tail: {
  29871. height: math.unit(4.2, "feet"),
  29872. name: "Tail",
  29873. image: {
  29874. source: "./media/characters/acidrenamon/tail.svg"
  29875. }
  29876. },
  29877. },
  29878. [
  29879. {
  29880. name: "Normal",
  29881. height: math.unit(2, "meters"),
  29882. default: true
  29883. },
  29884. {
  29885. name: "Minimacro",
  29886. height: math.unit(7, "meters")
  29887. },
  29888. {
  29889. name: "Macro",
  29890. height: math.unit(200, "meters")
  29891. },
  29892. {
  29893. name: "Gigamacro",
  29894. height: math.unit(0.2, "earths")
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29900. {
  29901. front: {
  29902. height: math.unit(152, "feet"),
  29903. name: "Front",
  29904. image: {
  29905. source: "./media/characters/kenzie-lee/front.svg",
  29906. extra: 1869/1774,
  29907. bottom: 128/1997
  29908. }
  29909. },
  29910. side: {
  29911. height: math.unit(86, "feet"),
  29912. name: "Side",
  29913. image: {
  29914. source: "./media/characters/kenzie-lee/side.svg",
  29915. extra: 930/815,
  29916. bottom: 177/1107
  29917. }
  29918. },
  29919. paw: {
  29920. height: math.unit(15, "feet"),
  29921. name: "Paw",
  29922. image: {
  29923. source: "./media/characters/kenzie-lee/paw.svg"
  29924. }
  29925. },
  29926. },
  29927. [
  29928. {
  29929. name: "Kenzie Flea",
  29930. height: math.unit(2, "mm"),
  29931. default: true
  29932. },
  29933. {
  29934. name: "Micro",
  29935. height: math.unit(2, "inches")
  29936. },
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(152, "feet")
  29940. },
  29941. {
  29942. name: "Megamacro",
  29943. height: math.unit(7, "miles")
  29944. },
  29945. {
  29946. name: "Gigamacro",
  29947. height: math.unit(8000, "miles")
  29948. },
  29949. ]
  29950. ))
  29951. characterMakers.push(() => makeCharacter(
  29952. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29953. {
  29954. front: {
  29955. height: math.unit(6, "feet"),
  29956. name: "Front",
  29957. image: {
  29958. source: "./media/characters/withers/front.svg",
  29959. extra: 1935/1760,
  29960. bottom: 72/2007
  29961. }
  29962. },
  29963. back: {
  29964. height: math.unit(6, "feet"),
  29965. name: "Back",
  29966. image: {
  29967. source: "./media/characters/withers/back.svg",
  29968. extra: 1944/1792,
  29969. bottom: 12/1956
  29970. }
  29971. },
  29972. dressed: {
  29973. height: math.unit(6, "feet"),
  29974. name: "Dressed",
  29975. image: {
  29976. source: "./media/characters/withers/dressed.svg",
  29977. extra: 1937/1765,
  29978. bottom: 73/2010
  29979. }
  29980. },
  29981. phase1: {
  29982. height: math.unit(1.1, "feet"),
  29983. name: "Phase 1",
  29984. image: {
  29985. source: "./media/characters/withers/phase-1.svg",
  29986. extra: 1885/1232,
  29987. bottom: 0/1885
  29988. }
  29989. },
  29990. phase2: {
  29991. height: math.unit(1.05, "feet"),
  29992. name: "Phase 2",
  29993. image: {
  29994. source: "./media/characters/withers/phase-2.svg",
  29995. extra: 1792/1090,
  29996. bottom: 0/1792
  29997. }
  29998. },
  29999. partyWipe: {
  30000. height: math.unit(1.1, "feet"),
  30001. name: "Party Wipe",
  30002. image: {
  30003. source: "./media/characters/withers/party-wipe.svg",
  30004. extra: 1864/1207,
  30005. bottom: 0/1864
  30006. }
  30007. },
  30008. },
  30009. [
  30010. {
  30011. name: "Macro",
  30012. height: math.unit(167, "feet"),
  30013. default: true
  30014. },
  30015. {
  30016. name: "Megamacro",
  30017. height: math.unit(15, "miles")
  30018. }
  30019. ]
  30020. ))
  30021. characterMakers.push(() => makeCharacter(
  30022. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30023. {
  30024. front: {
  30025. height: math.unit(6 + 7 / 12, "feet"),
  30026. weight: math.unit(250, "lb"),
  30027. name: "Front",
  30028. image: {
  30029. source: "./media/characters/nemoskii/front.svg",
  30030. extra: 2270 / 1734,
  30031. bottom: 86 / 2354
  30032. }
  30033. },
  30034. back: {
  30035. height: math.unit(6 + 7 / 12, "feet"),
  30036. weight: math.unit(250, "lb"),
  30037. name: "Back",
  30038. image: {
  30039. source: "./media/characters/nemoskii/back.svg",
  30040. extra: 1845 / 1788,
  30041. bottom: 10.5 / 1852
  30042. }
  30043. },
  30044. head: {
  30045. height: math.unit(1.31, "feet"),
  30046. name: "Head",
  30047. image: {
  30048. source: "./media/characters/nemoskii/head.svg"
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Micro",
  30055. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30056. },
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(6 + 7 / 12, "feet"),
  30060. default: true
  30061. },
  30062. {
  30063. name: "Macro",
  30064. height: math.unit((6 + 7 / 12) * 150, "feet")
  30065. },
  30066. {
  30067. name: "Macro+",
  30068. height: math.unit((6 + 7 / 12) * 500, "feet")
  30069. },
  30070. {
  30071. name: "Megamacro",
  30072. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30073. },
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30078. {
  30079. front: {
  30080. height: math.unit(1, "mile"),
  30081. weight: math.unit(265261.9, "lb"),
  30082. name: "Front",
  30083. image: {
  30084. source: "./media/characters/shui/front.svg",
  30085. extra: 1633 / 1564,
  30086. bottom: 91.5 / 1726
  30087. }
  30088. },
  30089. },
  30090. [
  30091. {
  30092. name: "Macro",
  30093. height: math.unit(1, "mile"),
  30094. default: true
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30100. {
  30101. front: {
  30102. height: math.unit(12 + 6 / 12, "feet"),
  30103. weight: math.unit(1342, "lb"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/arokh-takakura/front.svg",
  30107. extra: 1089 / 1043,
  30108. bottom: 77.4 / 1176.7
  30109. }
  30110. },
  30111. back: {
  30112. height: math.unit(12 + 6 / 12, "feet"),
  30113. weight: math.unit(1342, "lb"),
  30114. name: "Back",
  30115. image: {
  30116. source: "./media/characters/arokh-takakura/back.svg",
  30117. extra: 1046 / 1019,
  30118. bottom: 102 / 1150
  30119. }
  30120. },
  30121. },
  30122. [
  30123. {
  30124. name: "Big",
  30125. height: math.unit(12 + 6 / 12, "feet"),
  30126. default: true
  30127. },
  30128. ]
  30129. ))
  30130. characterMakers.push(() => makeCharacter(
  30131. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30132. {
  30133. front: {
  30134. height: math.unit(5 + 6 / 12, "feet"),
  30135. weight: math.unit(150, "lb"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/theo/front.svg",
  30139. extra: 1184 / 1131,
  30140. bottom: 7.4 / 1191
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Micro",
  30147. height: math.unit(5, "inches")
  30148. },
  30149. {
  30150. name: "Normal",
  30151. height: math.unit(5 + 6 / 12, "feet"),
  30152. default: true
  30153. },
  30154. ]
  30155. ))
  30156. characterMakers.push(() => makeCharacter(
  30157. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30158. {
  30159. front: {
  30160. height: math.unit(5 + 9 / 12, "feet"),
  30161. weight: math.unit(130, "lb"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/cecelia-swift/front.svg",
  30165. extra: 502 / 484,
  30166. bottom: 23 / 523
  30167. }
  30168. },
  30169. back: {
  30170. height: math.unit(5 + 9 / 12, "feet"),
  30171. weight: math.unit(130, "lb"),
  30172. name: "Back",
  30173. image: {
  30174. source: "./media/characters/cecelia-swift/back.svg",
  30175. extra: 499 / 485,
  30176. bottom: 12 / 511
  30177. }
  30178. },
  30179. head: {
  30180. height: math.unit(0.90, "feet"),
  30181. name: "Head",
  30182. image: {
  30183. source: "./media/characters/cecelia-swift/head.svg"
  30184. }
  30185. },
  30186. rump: {
  30187. height: math.unit(1.75, "feet"),
  30188. name: "Rump",
  30189. image: {
  30190. source: "./media/characters/cecelia-swift/rump.svg"
  30191. }
  30192. },
  30193. },
  30194. [
  30195. {
  30196. name: "Normal",
  30197. height: math.unit(5 + 9 / 12, "feet"),
  30198. default: true
  30199. },
  30200. {
  30201. name: "Big",
  30202. height: math.unit(50, "feet")
  30203. },
  30204. {
  30205. name: "Macro",
  30206. height: math.unit(100, "feet")
  30207. },
  30208. {
  30209. name: "Macro+",
  30210. height: math.unit(500, "feet")
  30211. },
  30212. {
  30213. name: "Macro++",
  30214. height: math.unit(1000, "feet")
  30215. },
  30216. ]
  30217. ))
  30218. characterMakers.push(() => makeCharacter(
  30219. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30220. {
  30221. front: {
  30222. height: math.unit(6, "feet"),
  30223. weight: math.unit(150, "lb"),
  30224. name: "Front",
  30225. image: {
  30226. source: "./media/characters/kaunan/front.svg",
  30227. extra: 2890 / 2523,
  30228. bottom: 49 / 2939
  30229. }
  30230. },
  30231. },
  30232. [
  30233. {
  30234. name: "Macro",
  30235. height: math.unit(150, "feet"),
  30236. default: true
  30237. },
  30238. ]
  30239. ))
  30240. characterMakers.push(() => makeCharacter(
  30241. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30242. {
  30243. dressed: {
  30244. height: math.unit(175, "cm"),
  30245. weight: math.unit(60, "kg"),
  30246. name: "Dressed",
  30247. image: {
  30248. source: "./media/characters/fei/dressed.svg",
  30249. extra: 1402/1278,
  30250. bottom: 27/1429
  30251. }
  30252. },
  30253. nude: {
  30254. height: math.unit(175, "cm"),
  30255. weight: math.unit(60, "kg"),
  30256. name: "Nude",
  30257. image: {
  30258. source: "./media/characters/fei/nude.svg",
  30259. extra: 1402/1278,
  30260. bottom: 27/1429
  30261. }
  30262. },
  30263. heels: {
  30264. height: math.unit(0.466, "feet"),
  30265. name: "Heels",
  30266. image: {
  30267. source: "./media/characters/fei/heels.svg",
  30268. extra: 156/152,
  30269. bottom: 28/184
  30270. }
  30271. },
  30272. },
  30273. [
  30274. {
  30275. name: "Mortal",
  30276. height: math.unit(175, "cm")
  30277. },
  30278. {
  30279. name: "Normal",
  30280. height: math.unit(3500, "m")
  30281. },
  30282. {
  30283. name: "Stroll",
  30284. height: math.unit(18.4, "km"),
  30285. default: true
  30286. },
  30287. {
  30288. name: "Showoff",
  30289. height: math.unit(175, "km")
  30290. },
  30291. ]
  30292. ))
  30293. characterMakers.push(() => makeCharacter(
  30294. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30295. {
  30296. front: {
  30297. height: math.unit(7, "feet"),
  30298. weight: math.unit(1000, "kg"),
  30299. name: "Front",
  30300. image: {
  30301. source: "./media/characters/edrax/front.svg",
  30302. extra: 2838 / 2550,
  30303. bottom: 130 / 2968
  30304. }
  30305. },
  30306. },
  30307. [
  30308. {
  30309. name: "Small",
  30310. height: math.unit(7, "feet")
  30311. },
  30312. {
  30313. name: "Normal",
  30314. height: math.unit(1500, "meters")
  30315. },
  30316. {
  30317. name: "Mega",
  30318. height: math.unit(12000000, "km"),
  30319. default: true
  30320. },
  30321. {
  30322. name: "Megamacro",
  30323. height: math.unit(10600000, "lightyears")
  30324. },
  30325. {
  30326. name: "Hypermacro",
  30327. height: math.unit(256, "yottameters")
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30333. {
  30334. front: {
  30335. height: math.unit(10, "feet"),
  30336. weight: math.unit(750, "lb"),
  30337. name: "Front",
  30338. image: {
  30339. source: "./media/characters/clove/front.svg",
  30340. extra: 1918/1751,
  30341. bottom: 52/1970
  30342. }
  30343. },
  30344. back: {
  30345. height: math.unit(10, "feet"),
  30346. weight: math.unit(750, "lb"),
  30347. name: "Back",
  30348. image: {
  30349. source: "./media/characters/clove/back.svg",
  30350. extra: 1912/1747,
  30351. bottom: 50/1962
  30352. }
  30353. },
  30354. },
  30355. [
  30356. {
  30357. name: "Normal",
  30358. height: math.unit(10, "feet"),
  30359. default: true
  30360. },
  30361. ]
  30362. ))
  30363. characterMakers.push(() => makeCharacter(
  30364. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30365. {
  30366. front: {
  30367. height: math.unit(4, "feet"),
  30368. weight: math.unit(50, "lb"),
  30369. name: "Front",
  30370. image: {
  30371. source: "./media/characters/alex-rabbit/front.svg",
  30372. extra: 507 / 458,
  30373. bottom: 18.5 / 527
  30374. }
  30375. },
  30376. back: {
  30377. height: math.unit(4, "feet"),
  30378. weight: math.unit(50, "lb"),
  30379. name: "Back",
  30380. image: {
  30381. source: "./media/characters/alex-rabbit/back.svg",
  30382. extra: 502 / 460,
  30383. bottom: 18.9 / 521
  30384. }
  30385. },
  30386. },
  30387. [
  30388. {
  30389. name: "Normal",
  30390. height: math.unit(4, "feet"),
  30391. default: true
  30392. },
  30393. ]
  30394. ))
  30395. characterMakers.push(() => makeCharacter(
  30396. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30397. {
  30398. front: {
  30399. height: math.unit(1 + 3 / 12, "feet"),
  30400. weight: math.unit(80, "lb"),
  30401. name: "Front",
  30402. image: {
  30403. source: "./media/characters/zander-rose/front.svg",
  30404. extra: 916 / 797,
  30405. bottom: 17 / 933
  30406. }
  30407. },
  30408. back: {
  30409. height: math.unit(1 + 3 / 12, "feet"),
  30410. weight: math.unit(80, "lb"),
  30411. name: "Back",
  30412. image: {
  30413. source: "./media/characters/zander-rose/back.svg",
  30414. extra: 903 / 779,
  30415. bottom: 31 / 934
  30416. }
  30417. },
  30418. },
  30419. [
  30420. {
  30421. name: "Normal",
  30422. height: math.unit(1 + 3 / 12, "feet"),
  30423. default: true
  30424. },
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30429. {
  30430. anthro: {
  30431. height: math.unit(6, "feet"),
  30432. weight: math.unit(150, "lb"),
  30433. name: "Anthro",
  30434. image: {
  30435. source: "./media/characters/razz/anthro.svg",
  30436. extra: 1437 / 1343,
  30437. bottom: 48 / 1485
  30438. }
  30439. },
  30440. feral: {
  30441. height: math.unit(6, "feet"),
  30442. weight: math.unit(150, "lb"),
  30443. name: "Feral",
  30444. image: {
  30445. source: "./media/characters/razz/feral.svg",
  30446. extra: 2569 / 1385,
  30447. bottom: 95 / 2664
  30448. }
  30449. },
  30450. },
  30451. [
  30452. {
  30453. name: "Normal",
  30454. height: math.unit(6, "feet"),
  30455. default: true
  30456. },
  30457. ]
  30458. ))
  30459. characterMakers.push(() => makeCharacter(
  30460. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30461. {
  30462. front: {
  30463. height: math.unit(9 + 4 / 12, "feet"),
  30464. weight: math.unit(500, "lb"),
  30465. name: "Front",
  30466. image: {
  30467. source: "./media/characters/morrigan/front.svg",
  30468. extra: 2707 / 2579,
  30469. bottom: 156 / 2863
  30470. }
  30471. },
  30472. },
  30473. [
  30474. {
  30475. name: "Normal",
  30476. height: math.unit(9 + 4 / 12, "feet"),
  30477. default: true
  30478. },
  30479. ]
  30480. ))
  30481. characterMakers.push(() => makeCharacter(
  30482. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30483. {
  30484. front: {
  30485. height: math.unit(5, "stories"),
  30486. weight: math.unit(4000, "lb"),
  30487. name: "Front",
  30488. image: {
  30489. source: "./media/characters/jenene/front.svg",
  30490. extra: 1780 / 1710,
  30491. bottom: 57 / 1837
  30492. }
  30493. },
  30494. },
  30495. [
  30496. {
  30497. name: "Normal",
  30498. height: math.unit(5, "stories"),
  30499. default: true
  30500. },
  30501. ]
  30502. ))
  30503. characterMakers.push(() => makeCharacter(
  30504. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30505. {
  30506. taurSfw: {
  30507. height: math.unit(10, "meters"),
  30508. weight: math.unit(17500, "kg"),
  30509. name: "Taur",
  30510. image: {
  30511. source: "./media/characters/faey/taur-sfw.svg",
  30512. extra: 1200 / 968,
  30513. bottom: 41 / 1241
  30514. }
  30515. },
  30516. chestmaw: {
  30517. height: math.unit(2.01, "meters"),
  30518. name: "Chestmaw",
  30519. image: {
  30520. source: "./media/characters/faey/chestmaw.svg"
  30521. }
  30522. },
  30523. foot: {
  30524. height: math.unit(2.43, "meters"),
  30525. name: "Foot",
  30526. image: {
  30527. source: "./media/characters/faey/foot.svg"
  30528. }
  30529. },
  30530. jaws: {
  30531. height: math.unit(1.66, "meters"),
  30532. name: "Jaws",
  30533. image: {
  30534. source: "./media/characters/faey/jaws.svg"
  30535. }
  30536. },
  30537. tongues: {
  30538. height: math.unit(2.01, "meters"),
  30539. name: "Tongues",
  30540. image: {
  30541. source: "./media/characters/faey/tongues.svg"
  30542. }
  30543. },
  30544. },
  30545. [
  30546. {
  30547. name: "Small",
  30548. height: math.unit(10, "meters"),
  30549. default: true
  30550. },
  30551. {
  30552. name: "Big",
  30553. height: math.unit(500000, "km")
  30554. },
  30555. ]
  30556. ))
  30557. characterMakers.push(() => makeCharacter(
  30558. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30559. {
  30560. front: {
  30561. height: math.unit(7, "feet"),
  30562. weight: math.unit(275, "lb"),
  30563. name: "Front",
  30564. image: {
  30565. source: "./media/characters/roku/front.svg",
  30566. extra: 903 / 878,
  30567. bottom: 37 / 940
  30568. }
  30569. },
  30570. },
  30571. [
  30572. {
  30573. name: "Normal",
  30574. height: math.unit(7, "feet"),
  30575. default: true
  30576. },
  30577. {
  30578. name: "Macro",
  30579. height: math.unit(500, "feet")
  30580. },
  30581. {
  30582. name: "Megamacro",
  30583. height: math.unit(200, "miles")
  30584. },
  30585. ]
  30586. ))
  30587. characterMakers.push(() => makeCharacter(
  30588. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30589. {
  30590. front: {
  30591. height: math.unit(6 + 2 / 12, "feet"),
  30592. weight: math.unit(150, "lb"),
  30593. name: "Front",
  30594. image: {
  30595. source: "./media/characters/lira/front.svg",
  30596. extra: 1727 / 1605,
  30597. bottom: 26 / 1753
  30598. }
  30599. },
  30600. back: {
  30601. height: math.unit(6 + 2 / 12, "feet"),
  30602. weight: math.unit(150, "lb"),
  30603. name: "Back",
  30604. image: {
  30605. source: "./media/characters/lira/back.svg",
  30606. extra: 1713/1621,
  30607. bottom: 20/1733
  30608. }
  30609. },
  30610. hand: {
  30611. height: math.unit(0.75, "feet"),
  30612. name: "Hand",
  30613. image: {
  30614. source: "./media/characters/lira/hand.svg"
  30615. }
  30616. },
  30617. maw: {
  30618. height: math.unit(0.65, "feet"),
  30619. name: "Maw",
  30620. image: {
  30621. source: "./media/characters/lira/maw.svg"
  30622. }
  30623. },
  30624. pawDigi: {
  30625. height: math.unit(1.6, "feet"),
  30626. name: "Paw Digi",
  30627. image: {
  30628. source: "./media/characters/lira/paw-digi.svg"
  30629. }
  30630. },
  30631. pawPlanti: {
  30632. height: math.unit(1.4, "feet"),
  30633. name: "Paw Planti",
  30634. image: {
  30635. source: "./media/characters/lira/paw-planti.svg"
  30636. }
  30637. },
  30638. },
  30639. [
  30640. {
  30641. name: "Normal",
  30642. height: math.unit(6 + 2 / 12, "feet"),
  30643. default: true
  30644. },
  30645. {
  30646. name: "Macro",
  30647. height: math.unit(100, "feet")
  30648. },
  30649. {
  30650. name: "Macro²",
  30651. height: math.unit(1600, "feet")
  30652. },
  30653. {
  30654. name: "Planetary",
  30655. height: math.unit(20, "earths")
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30661. {
  30662. front: {
  30663. height: math.unit(6, "feet"),
  30664. weight: math.unit(150, "lb"),
  30665. name: "Front",
  30666. image: {
  30667. source: "./media/characters/hadjet/front.svg",
  30668. extra: 1480 / 1346,
  30669. bottom: 26 / 1506
  30670. }
  30671. },
  30672. frontNsfw: {
  30673. height: math.unit(6, "feet"),
  30674. weight: math.unit(150, "lb"),
  30675. name: "Front (NSFW)",
  30676. image: {
  30677. source: "./media/characters/hadjet/front-nsfw.svg",
  30678. extra: 1440 / 1358,
  30679. bottom: 52 / 1492
  30680. }
  30681. },
  30682. },
  30683. [
  30684. {
  30685. name: "Macro",
  30686. height: math.unit(10, "stories"),
  30687. default: true
  30688. },
  30689. {
  30690. name: "Megamacro",
  30691. height: math.unit(1.5, "miles")
  30692. },
  30693. {
  30694. name: "Megamacro+",
  30695. height: math.unit(5, "miles")
  30696. },
  30697. ]
  30698. ))
  30699. characterMakers.push(() => makeCharacter(
  30700. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30701. {
  30702. side: {
  30703. height: math.unit(106, "feet"),
  30704. weight: math.unit(500, "tonnes"),
  30705. name: "Side",
  30706. image: {
  30707. source: "./media/characters/kodran/side.svg",
  30708. extra: 553 / 480,
  30709. bottom: 33 / 586
  30710. }
  30711. },
  30712. front: {
  30713. height: math.unit(132, "feet"),
  30714. weight: math.unit(500, "tonnes"),
  30715. name: "Front",
  30716. image: {
  30717. source: "./media/characters/kodran/front.svg",
  30718. extra: 667 / 643,
  30719. bottom: 42 / 709
  30720. }
  30721. },
  30722. flying: {
  30723. height: math.unit(350, "feet"),
  30724. weight: math.unit(500, "tonnes"),
  30725. name: "Flying",
  30726. image: {
  30727. source: "./media/characters/kodran/flying.svg"
  30728. }
  30729. },
  30730. foot: {
  30731. height: math.unit(33, "feet"),
  30732. name: "Foot",
  30733. image: {
  30734. source: "./media/characters/kodran/foot.svg"
  30735. }
  30736. },
  30737. footFront: {
  30738. height: math.unit(19, "feet"),
  30739. name: "Foot (Front)",
  30740. image: {
  30741. source: "./media/characters/kodran/foot-front.svg",
  30742. extra: 261 / 261,
  30743. bottom: 91 / 352
  30744. }
  30745. },
  30746. headFront: {
  30747. height: math.unit(53, "feet"),
  30748. name: "Head (Front)",
  30749. image: {
  30750. source: "./media/characters/kodran/head-front.svg"
  30751. }
  30752. },
  30753. headSide: {
  30754. height: math.unit(65, "feet"),
  30755. name: "Head (Side)",
  30756. image: {
  30757. source: "./media/characters/kodran/head-side.svg"
  30758. }
  30759. },
  30760. throat: {
  30761. height: math.unit(79, "feet"),
  30762. name: "Throat",
  30763. image: {
  30764. source: "./media/characters/kodran/throat.svg"
  30765. }
  30766. },
  30767. },
  30768. [
  30769. {
  30770. name: "Large",
  30771. height: math.unit(106, "feet"),
  30772. default: true
  30773. },
  30774. ]
  30775. ))
  30776. characterMakers.push(() => makeCharacter(
  30777. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30778. {
  30779. side: {
  30780. height: math.unit(11, "feet"),
  30781. weight: math.unit(150, "lb"),
  30782. name: "Side",
  30783. image: {
  30784. source: "./media/characters/pyxaron/side.svg",
  30785. extra: 305 / 195,
  30786. bottom: 17 / 322
  30787. }
  30788. },
  30789. },
  30790. [
  30791. {
  30792. name: "Normal",
  30793. height: math.unit(11, "feet"),
  30794. default: true
  30795. },
  30796. ]
  30797. ))
  30798. characterMakers.push(() => makeCharacter(
  30799. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30800. {
  30801. front: {
  30802. height: math.unit(6, "feet"),
  30803. weight: math.unit(150, "lb"),
  30804. name: "Front",
  30805. image: {
  30806. source: "./media/characters/meep/front.svg",
  30807. extra: 88 / 80,
  30808. bottom: 6 / 94
  30809. }
  30810. },
  30811. },
  30812. [
  30813. {
  30814. name: "Fun Sized",
  30815. height: math.unit(2, "inches"),
  30816. default: true
  30817. },
  30818. {
  30819. name: "Friend Sized",
  30820. height: math.unit(8, "inches")
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30826. {
  30827. front: {
  30828. height: math.unit(15, "feet"),
  30829. weight: math.unit(2500, "lb"),
  30830. name: "Front",
  30831. image: {
  30832. source: "./media/characters/holly-rabbit/front.svg",
  30833. extra: 1433 / 1233,
  30834. bottom: 125 / 1558
  30835. }
  30836. },
  30837. dick: {
  30838. height: math.unit(4.6, "feet"),
  30839. name: "Dick",
  30840. image: {
  30841. source: "./media/characters/holly-rabbit/dick.svg"
  30842. }
  30843. },
  30844. },
  30845. [
  30846. {
  30847. name: "Normal",
  30848. height: math.unit(15, "feet"),
  30849. default: true
  30850. },
  30851. {
  30852. name: "Macro",
  30853. height: math.unit(250, "feet")
  30854. },
  30855. {
  30856. name: "Macro+",
  30857. height: math.unit(2500, "feet")
  30858. },
  30859. ]
  30860. ))
  30861. characterMakers.push(() => makeCharacter(
  30862. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30863. {
  30864. front: {
  30865. height: math.unit(3.02, "meters"),
  30866. weight: math.unit(500, "kg"),
  30867. name: "Front",
  30868. image: {
  30869. source: "./media/characters/drena/front.svg",
  30870. extra: 282 / 243,
  30871. bottom: 8 / 290
  30872. }
  30873. },
  30874. side: {
  30875. height: math.unit(3.02, "meters"),
  30876. weight: math.unit(500, "kg"),
  30877. name: "Side",
  30878. image: {
  30879. source: "./media/characters/drena/side.svg",
  30880. extra: 280 / 245,
  30881. bottom: 10 / 290
  30882. }
  30883. },
  30884. back: {
  30885. height: math.unit(3.02, "meters"),
  30886. weight: math.unit(500, "kg"),
  30887. name: "Back",
  30888. image: {
  30889. source: "./media/characters/drena/back.svg",
  30890. extra: 278 / 243,
  30891. bottom: 2 / 280
  30892. }
  30893. },
  30894. foot: {
  30895. height: math.unit(0.75, "meters"),
  30896. name: "Foot",
  30897. image: {
  30898. source: "./media/characters/drena/foot.svg"
  30899. }
  30900. },
  30901. maw: {
  30902. height: math.unit(0.82, "meters"),
  30903. name: "Maw",
  30904. image: {
  30905. source: "./media/characters/drena/maw.svg"
  30906. }
  30907. },
  30908. eating: {
  30909. height: math.unit(0.75, "meters"),
  30910. name: "Eating",
  30911. image: {
  30912. source: "./media/characters/drena/eating.svg"
  30913. }
  30914. },
  30915. rump: {
  30916. height: math.unit(0.93, "meters"),
  30917. name: "Rump",
  30918. image: {
  30919. source: "./media/characters/drena/rump.svg"
  30920. }
  30921. },
  30922. },
  30923. [
  30924. {
  30925. name: "Normal",
  30926. height: math.unit(3.02, "meters"),
  30927. default: true
  30928. },
  30929. ]
  30930. ))
  30931. characterMakers.push(() => makeCharacter(
  30932. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30933. {
  30934. front: {
  30935. height: math.unit(6 + 4 / 12, "feet"),
  30936. weight: math.unit(250, "lb"),
  30937. name: "Front",
  30938. image: {
  30939. source: "./media/characters/remmyzilla/front.svg",
  30940. extra: 4033 / 3588,
  30941. bottom: 123 / 4156
  30942. }
  30943. },
  30944. back: {
  30945. height: math.unit(6 + 4 / 12, "feet"),
  30946. weight: math.unit(250, "lb"),
  30947. name: "Back",
  30948. image: {
  30949. source: "./media/characters/remmyzilla/back.svg",
  30950. extra: 2687 / 2555,
  30951. bottom: 48 / 2735
  30952. }
  30953. },
  30954. paw: {
  30955. height: math.unit(1.73, "feet"),
  30956. name: "Paw",
  30957. image: {
  30958. source: "./media/characters/remmyzilla/paw.svg"
  30959. },
  30960. extraAttributes: {
  30961. "toeSize": {
  30962. name: "Toe Size",
  30963. power: 2,
  30964. type: "area",
  30965. base: math.unit(0.0035, "m^2")
  30966. },
  30967. "padSize": {
  30968. name: "Pad Size",
  30969. power: 2,
  30970. type: "area",
  30971. base: math.unit(0.015, "m^2")
  30972. },
  30973. "pawsize": {
  30974. name: "Paw Size",
  30975. power: 2,
  30976. type: "area",
  30977. base: math.unit(0.072, "m^2")
  30978. },
  30979. }
  30980. },
  30981. maw: {
  30982. height: math.unit(1.73, "feet"),
  30983. name: "Maw",
  30984. image: {
  30985. source: "./media/characters/remmyzilla/maw.svg"
  30986. }
  30987. },
  30988. },
  30989. [
  30990. {
  30991. name: "Normal",
  30992. height: math.unit(6 + 4 / 12, "feet")
  30993. },
  30994. {
  30995. name: "Minimacro",
  30996. height: math.unit(12 + 8 / 12, "feet")
  30997. },
  30998. {
  30999. name: "Normal",
  31000. height: math.unit(640, "feet"),
  31001. default: true
  31002. },
  31003. {
  31004. name: "Megamacro",
  31005. height: math.unit(6400, "feet")
  31006. },
  31007. {
  31008. name: "Gigamacro",
  31009. height: math.unit(64000, "miles")
  31010. },
  31011. ]
  31012. ))
  31013. characterMakers.push(() => makeCharacter(
  31014. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31015. {
  31016. front: {
  31017. height: math.unit(2.5, "meters"),
  31018. weight: math.unit(300, "lb"),
  31019. name: "Front",
  31020. image: {
  31021. source: "./media/characters/lawrence/front.svg",
  31022. extra: 357 / 335,
  31023. bottom: 30 / 387
  31024. }
  31025. },
  31026. back: {
  31027. height: math.unit(2.5, "meters"),
  31028. weight: math.unit(300, "lb"),
  31029. name: "Back",
  31030. image: {
  31031. source: "./media/characters/lawrence/back.svg",
  31032. extra: 357 / 338,
  31033. bottom: 16 / 373
  31034. }
  31035. },
  31036. head: {
  31037. height: math.unit(0.9, "meter"),
  31038. name: "Head",
  31039. image: {
  31040. source: "./media/characters/lawrence/head.svg"
  31041. }
  31042. },
  31043. maw: {
  31044. height: math.unit(0.7, "meter"),
  31045. name: "Maw",
  31046. image: {
  31047. source: "./media/characters/lawrence/maw.svg"
  31048. }
  31049. },
  31050. footBottom: {
  31051. height: math.unit(0.5, "meter"),
  31052. name: "Foot (Bottom)",
  31053. image: {
  31054. source: "./media/characters/lawrence/foot-bottom.svg"
  31055. }
  31056. },
  31057. footTop: {
  31058. height: math.unit(0.5, "meter"),
  31059. name: "Foot (Top)",
  31060. image: {
  31061. source: "./media/characters/lawrence/foot-top.svg"
  31062. }
  31063. },
  31064. },
  31065. [
  31066. {
  31067. name: "Normal",
  31068. height: math.unit(2.5, "meters"),
  31069. default: true
  31070. },
  31071. {
  31072. name: "Macro",
  31073. height: math.unit(95, "meters")
  31074. },
  31075. {
  31076. name: "Megamacro",
  31077. height: math.unit(150, "km")
  31078. },
  31079. ]
  31080. ))
  31081. characterMakers.push(() => makeCharacter(
  31082. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31083. {
  31084. front: {
  31085. height: math.unit(4.2, "meters"),
  31086. preyCapacity: math.unit(50, "m^3"),
  31087. weight: math.unit(30, "tonnes"),
  31088. name: "Front",
  31089. image: {
  31090. source: "./media/characters/sydney/front.svg",
  31091. extra: 1177/1129,
  31092. bottom: 197/1374
  31093. },
  31094. extraAttributes: {
  31095. "length": {
  31096. name: "Length",
  31097. power: 1,
  31098. type: "length",
  31099. base: math.unit(21, "meters")
  31100. },
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Normal",
  31107. height: math.unit(4.2, "meters"),
  31108. default: true
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31114. {
  31115. back: {
  31116. height: math.unit(201, "feet"),
  31117. name: "Back",
  31118. image: {
  31119. source: "./media/characters/jessica/back.svg",
  31120. extra: 273 / 259,
  31121. bottom: 7 / 280
  31122. }
  31123. },
  31124. },
  31125. [
  31126. {
  31127. name: "Normal",
  31128. height: math.unit(201, "feet"),
  31129. default: true
  31130. },
  31131. {
  31132. name: "Megamacro",
  31133. height: math.unit(8, "miles")
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31139. {
  31140. side: {
  31141. height: math.unit(5.6, "m"),
  31142. weight: math.unit(8000, "kg"),
  31143. name: "Side",
  31144. image: {
  31145. source: "./media/characters/victoria/side.svg",
  31146. extra: 1542/1229,
  31147. bottom: 124/1666
  31148. }
  31149. },
  31150. maw: {
  31151. height: math.unit(7.14, "feet"),
  31152. name: "Maw",
  31153. image: {
  31154. source: "./media/characters/victoria/maw.svg"
  31155. }
  31156. },
  31157. },
  31158. [
  31159. {
  31160. name: "Normal",
  31161. height: math.unit(5.6, "m"),
  31162. default: true
  31163. },
  31164. ]
  31165. ))
  31166. characterMakers.push(() => makeCharacter(
  31167. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31168. {
  31169. front: {
  31170. height: math.unit(5 + 6 / 12, "feet"),
  31171. name: "Front",
  31172. image: {
  31173. source: "./media/characters/cat/front.svg",
  31174. extra: 1449/1295,
  31175. bottom: 34/1483
  31176. },
  31177. form: "cat",
  31178. default: true
  31179. },
  31180. back: {
  31181. height: math.unit(5 + 6 / 12, "feet"),
  31182. name: "Back",
  31183. image: {
  31184. source: "./media/characters/cat/back.svg",
  31185. extra: 1466/1301,
  31186. bottom: 19/1485
  31187. },
  31188. form: "cat"
  31189. },
  31190. taur: {
  31191. height: math.unit(7, "feet"),
  31192. name: "Taur",
  31193. image: {
  31194. source: "./media/characters/cat/taur.svg",
  31195. extra: 1389/1233,
  31196. bottom: 83/1472
  31197. },
  31198. form: "taur",
  31199. default: true
  31200. },
  31201. lucarioFront: {
  31202. height: math.unit(4, "feet"),
  31203. name: "Lucario (Front)",
  31204. image: {
  31205. source: "./media/characters/cat/lucario-front.svg",
  31206. extra: 1149/1019,
  31207. bottom: 84/1233
  31208. },
  31209. form: "lucario",
  31210. default: true
  31211. },
  31212. lucarioBack: {
  31213. height: math.unit(4, "feet"),
  31214. name: "Lucario (Back)",
  31215. image: {
  31216. source: "./media/characters/cat/lucario-back.svg",
  31217. extra: 1190/1059,
  31218. bottom: 33/1223
  31219. },
  31220. form: "lucario"
  31221. },
  31222. megaLucario: {
  31223. height: math.unit(4, "feet"),
  31224. name: "Mega Lucario",
  31225. image: {
  31226. source: "./media/characters/cat/mega-lucario.svg",
  31227. extra: 1515 / 1319,
  31228. bottom: 63 / 1578
  31229. },
  31230. form: "lucario"
  31231. },
  31232. nickit: {
  31233. height: math.unit(2, "feet"),
  31234. name: "Nickit",
  31235. image: {
  31236. source: "./media/characters/cat/nickit.svg",
  31237. extra: 1980 / 1585,
  31238. bottom: 102 / 2082
  31239. },
  31240. form: "nickit",
  31241. default: true
  31242. },
  31243. lopunnyFront: {
  31244. height: math.unit(5, "feet"),
  31245. name: "Lopunny (Front)",
  31246. image: {
  31247. source: "./media/characters/cat/lopunny-front.svg",
  31248. extra: 1782 / 1469,
  31249. bottom: 38 / 1820
  31250. },
  31251. form: "lopunny",
  31252. default: true
  31253. },
  31254. lopunnyBack: {
  31255. height: math.unit(5, "feet"),
  31256. name: "Lopunny (Back)",
  31257. image: {
  31258. source: "./media/characters/cat/lopunny-back.svg",
  31259. extra: 1660 / 1490,
  31260. bottom: 25 / 1685
  31261. },
  31262. form: "lopunny"
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Really small",
  31268. height: math.unit(1, "nm")
  31269. },
  31270. {
  31271. name: "Micro",
  31272. height: math.unit(5, "inches")
  31273. },
  31274. {
  31275. name: "Normal",
  31276. height: math.unit(5 + 6 / 12, "feet"),
  31277. default: true
  31278. },
  31279. {
  31280. name: "Macro",
  31281. height: math.unit(50, "feet")
  31282. },
  31283. {
  31284. name: "Macro+",
  31285. height: math.unit(150, "feet")
  31286. },
  31287. {
  31288. name: "Megamacro",
  31289. height: math.unit(100, "miles")
  31290. },
  31291. ]
  31292. ))
  31293. characterMakers.push(() => makeCharacter(
  31294. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31295. {
  31296. front: {
  31297. height: math.unit(63.4, "meters"),
  31298. weight: math.unit(3.28349e+6, "kilograms"),
  31299. name: "Front",
  31300. image: {
  31301. source: "./media/characters/kirina-violet/front.svg",
  31302. extra: 2812 / 2725,
  31303. bottom: 0 / 2812
  31304. }
  31305. },
  31306. back: {
  31307. height: math.unit(63.4, "meters"),
  31308. weight: math.unit(3.28349e+6, "kilograms"),
  31309. name: "Back",
  31310. image: {
  31311. source: "./media/characters/kirina-violet/back.svg",
  31312. extra: 2812 / 2725,
  31313. bottom: 0 / 2812
  31314. }
  31315. },
  31316. mouth: {
  31317. height: math.unit(4.35, "meters"),
  31318. name: "Mouth",
  31319. image: {
  31320. source: "./media/characters/kirina-violet/mouth.svg"
  31321. }
  31322. },
  31323. paw: {
  31324. height: math.unit(5.6, "meters"),
  31325. name: "Paw",
  31326. image: {
  31327. source: "./media/characters/kirina-violet/paw.svg"
  31328. }
  31329. },
  31330. tail: {
  31331. height: math.unit(18, "meters"),
  31332. name: "Tail",
  31333. image: {
  31334. source: "./media/characters/kirina-violet/tail.svg"
  31335. }
  31336. },
  31337. },
  31338. [
  31339. {
  31340. name: "Macro",
  31341. height: math.unit(63.4, "meters"),
  31342. default: true
  31343. },
  31344. ]
  31345. ))
  31346. characterMakers.push(() => makeCharacter(
  31347. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31348. {
  31349. front: {
  31350. height: math.unit(75, "feet"),
  31351. name: "Front",
  31352. image: {
  31353. source: "./media/characters/cat-gigachu/front.svg",
  31354. extra: 1239/1027,
  31355. bottom: 32/1271
  31356. }
  31357. },
  31358. back: {
  31359. height: math.unit(75, "feet"),
  31360. name: "Back",
  31361. image: {
  31362. source: "./media/characters/cat-gigachu/back.svg",
  31363. extra: 1229/1030,
  31364. bottom: 9/1238
  31365. }
  31366. },
  31367. },
  31368. [
  31369. {
  31370. name: "Dynamax",
  31371. height: math.unit(75, "feet"),
  31372. default: true
  31373. },
  31374. ]
  31375. ))
  31376. characterMakers.push(() => makeCharacter(
  31377. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31378. {
  31379. front: {
  31380. height: math.unit(6, "feet"),
  31381. weight: math.unit(150, "lb"),
  31382. name: "Front",
  31383. image: {
  31384. source: "./media/characters/sfaiyan/front.svg",
  31385. extra: 999 / 978,
  31386. bottom: 5 / 1004
  31387. }
  31388. },
  31389. },
  31390. [
  31391. {
  31392. name: "Normal",
  31393. height: math.unit(1.82, "meters")
  31394. },
  31395. {
  31396. name: "Giant",
  31397. height: math.unit(2.27, "km"),
  31398. default: true
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(179, "cm"),
  31407. weight: math.unit(100, "kg"),
  31408. name: "Front",
  31409. image: {
  31410. source: "./media/characters/raunehkeli/front.svg",
  31411. extra: 1934 / 1926,
  31412. bottom: 0 / 1934
  31413. }
  31414. },
  31415. },
  31416. [
  31417. {
  31418. name: "Normal",
  31419. height: math.unit(179, "cm")
  31420. },
  31421. {
  31422. name: "Maximum",
  31423. height: math.unit(575, "meters"),
  31424. default: true
  31425. },
  31426. ]
  31427. ))
  31428. characterMakers.push(() => makeCharacter(
  31429. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31430. {
  31431. front: {
  31432. height: math.unit(6, "feet"),
  31433. weight: math.unit(150, "lb"),
  31434. name: "Front",
  31435. image: {
  31436. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31437. extra: 2625 / 2518,
  31438. bottom: 60 / 2685
  31439. }
  31440. },
  31441. },
  31442. [
  31443. {
  31444. name: "Normal",
  31445. height: math.unit(6 + 2 / 12, "feet")
  31446. },
  31447. {
  31448. name: "Macro",
  31449. height: math.unit(1180, "feet"),
  31450. default: true
  31451. },
  31452. ]
  31453. ))
  31454. characterMakers.push(() => makeCharacter(
  31455. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31456. {
  31457. front: {
  31458. height: math.unit(5 + 6 / 12, "feet"),
  31459. weight: math.unit(108, "lb"),
  31460. name: "Front",
  31461. image: {
  31462. source: "./media/characters/lilith-zott/front.svg",
  31463. extra: 2510 / 2238,
  31464. bottom: 100 / 2610
  31465. }
  31466. },
  31467. frontDressed: {
  31468. height: math.unit(5 + 6 / 12, "feet"),
  31469. weight: math.unit(108, "lb"),
  31470. name: "Front (Dressed)",
  31471. image: {
  31472. source: "./media/characters/lilith-zott/front-dressed.svg",
  31473. extra: 2510 / 2238,
  31474. bottom: 100 / 2610
  31475. }
  31476. },
  31477. },
  31478. [
  31479. {
  31480. name: "Normal",
  31481. height: math.unit(5 + 6 / 12, "feet")
  31482. },
  31483. {
  31484. name: "Macro",
  31485. height: math.unit(1030, "feet"),
  31486. default: true
  31487. },
  31488. ]
  31489. ))
  31490. characterMakers.push(() => makeCharacter(
  31491. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31492. {
  31493. front: {
  31494. height: math.unit(6, "feet"),
  31495. weight: math.unit(150, "lb"),
  31496. name: "Front",
  31497. image: {
  31498. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31499. extra: 2567 / 2435,
  31500. bottom: 39 / 2606
  31501. }
  31502. },
  31503. frontSuper: {
  31504. height: math.unit(6, "feet"),
  31505. name: "Front (Super)",
  31506. image: {
  31507. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31508. extra: 2567 / 2435,
  31509. bottom: 39 / 2606
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Normal",
  31516. height: math.unit(5 + 10 / 12, "feet")
  31517. },
  31518. {
  31519. name: "Macro",
  31520. height: math.unit(1100, "feet"),
  31521. default: true
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31527. {
  31528. front: {
  31529. height: math.unit(100, "miles"),
  31530. name: "Front",
  31531. image: {
  31532. source: "./media/characters/sona/front.svg",
  31533. extra: 2433 / 2201,
  31534. bottom: 53 / 2486
  31535. }
  31536. },
  31537. foot: {
  31538. height: math.unit(16.1, "miles"),
  31539. name: "Foot",
  31540. image: {
  31541. source: "./media/characters/sona/foot.svg"
  31542. }
  31543. },
  31544. },
  31545. [
  31546. {
  31547. name: "Macro",
  31548. height: math.unit(100, "miles"),
  31549. default: true
  31550. },
  31551. ]
  31552. ))
  31553. characterMakers.push(() => makeCharacter(
  31554. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31555. {
  31556. front: {
  31557. height: math.unit(6, "feet"),
  31558. weight: math.unit(150, "lb"),
  31559. name: "Front",
  31560. image: {
  31561. source: "./media/characters/bailey/front.svg",
  31562. extra: 1778 / 1724,
  31563. bottom: 30 / 1808
  31564. }
  31565. },
  31566. },
  31567. [
  31568. {
  31569. name: "Micro",
  31570. height: math.unit(4, "inches")
  31571. },
  31572. {
  31573. name: "Normal",
  31574. height: math.unit(5 + 5 / 12, "feet"),
  31575. default: true
  31576. },
  31577. {
  31578. name: "Macro",
  31579. height: math.unit(250, "feet")
  31580. },
  31581. {
  31582. name: "Megamacro",
  31583. height: math.unit(100, "miles")
  31584. },
  31585. ]
  31586. ))
  31587. characterMakers.push(() => makeCharacter(
  31588. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31589. {
  31590. front: {
  31591. height: math.unit(5 + 2 / 12, "feet"),
  31592. weight: math.unit(120, "lb"),
  31593. name: "Front",
  31594. image: {
  31595. source: "./media/characters/snaps/front.svg",
  31596. extra: 2370 / 2177,
  31597. bottom: 48 / 2418
  31598. }
  31599. },
  31600. back: {
  31601. height: math.unit(5 + 2 / 12, "feet"),
  31602. weight: math.unit(120, "lb"),
  31603. name: "Back",
  31604. image: {
  31605. source: "./media/characters/snaps/back.svg",
  31606. extra: 2408 / 2258,
  31607. bottom: 15 / 2423
  31608. }
  31609. },
  31610. },
  31611. [
  31612. {
  31613. name: "Micro",
  31614. height: math.unit(9, "inches")
  31615. },
  31616. {
  31617. name: "Normal",
  31618. height: math.unit(5 + 2 / 12, "feet"),
  31619. default: true
  31620. },
  31621. {
  31622. name: "Mini Macro",
  31623. height: math.unit(10, "feet")
  31624. },
  31625. ]
  31626. ))
  31627. characterMakers.push(() => makeCharacter(
  31628. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31629. {
  31630. front: {
  31631. height: math.unit(1.8, "meters"),
  31632. weight: math.unit(85, "kg"),
  31633. name: "Front",
  31634. image: {
  31635. source: "./media/characters/azteck/front.svg",
  31636. extra: 2815 / 2625,
  31637. bottom: 89 / 2904
  31638. }
  31639. },
  31640. back: {
  31641. height: math.unit(1.8, "meters"),
  31642. weight: math.unit(85, "kg"),
  31643. name: "Back",
  31644. image: {
  31645. source: "./media/characters/azteck/back.svg",
  31646. extra: 2856 / 2648,
  31647. bottom: 85 / 2941
  31648. }
  31649. },
  31650. frontDressed: {
  31651. height: math.unit(1.8, "meters"),
  31652. weight: math.unit(85, "kg"),
  31653. name: "Front (Dressed)",
  31654. image: {
  31655. source: "./media/characters/azteck/front-dressed.svg",
  31656. extra: 2147 / 2003,
  31657. bottom: 68 / 2215
  31658. }
  31659. },
  31660. head: {
  31661. height: math.unit(0.47, "meters"),
  31662. weight: math.unit(85, "kg"),
  31663. name: "Head",
  31664. image: {
  31665. source: "./media/characters/azteck/head.svg"
  31666. }
  31667. },
  31668. },
  31669. [
  31670. {
  31671. name: "Bite sized",
  31672. height: math.unit(16, "cm")
  31673. },
  31674. {
  31675. name: "Normal",
  31676. height: math.unit(1.8, "meters"),
  31677. default: true
  31678. },
  31679. ]
  31680. ))
  31681. characterMakers.push(() => makeCharacter(
  31682. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31683. {
  31684. front: {
  31685. height: math.unit(6, "feet"),
  31686. weight: math.unit(150, "lb"),
  31687. name: "Front",
  31688. image: {
  31689. source: "./media/characters/pidge/front.svg",
  31690. extra: 1936/1820,
  31691. bottom: 0/1936
  31692. }
  31693. },
  31694. back: {
  31695. height: math.unit(6, "feet"),
  31696. weight: math.unit(150, "lb"),
  31697. name: "Back",
  31698. image: {
  31699. source: "./media/characters/pidge/back.svg",
  31700. extra: 1938/1843,
  31701. bottom: 0/1938
  31702. }
  31703. },
  31704. casual: {
  31705. height: math.unit(6, "feet"),
  31706. weight: math.unit(150, "lb"),
  31707. name: "Casual",
  31708. image: {
  31709. source: "./media/characters/pidge/casual.svg",
  31710. extra: 1936/1820,
  31711. bottom: 0/1936
  31712. }
  31713. },
  31714. tech: {
  31715. height: math.unit(6, "feet"),
  31716. weight: math.unit(150, "lb"),
  31717. name: "Tech",
  31718. image: {
  31719. source: "./media/characters/pidge/tech.svg",
  31720. extra: 1802/1682,
  31721. bottom: 0/1802
  31722. }
  31723. },
  31724. head: {
  31725. height: math.unit(1.61, "feet"),
  31726. name: "Head",
  31727. image: {
  31728. source: "./media/characters/pidge/head.svg"
  31729. }
  31730. },
  31731. collar: {
  31732. height: math.unit(0.82, "feet"),
  31733. name: "Collar",
  31734. image: {
  31735. source: "./media/characters/pidge/collar.svg"
  31736. }
  31737. },
  31738. },
  31739. [
  31740. {
  31741. name: "Macro",
  31742. height: math.unit(2, "mile"),
  31743. default: true
  31744. },
  31745. {
  31746. name: "PUPPY",
  31747. height: math.unit(20, "miles")
  31748. },
  31749. ]
  31750. ))
  31751. characterMakers.push(() => makeCharacter(
  31752. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31753. {
  31754. front: {
  31755. height: math.unit(6, "feet"),
  31756. weight: math.unit(150, "lb"),
  31757. name: "Front",
  31758. image: {
  31759. source: "./media/characters/en/front.svg",
  31760. extra: 1697 / 1563,
  31761. bottom: 103 / 1800
  31762. }
  31763. },
  31764. back: {
  31765. height: math.unit(6, "feet"),
  31766. weight: math.unit(150, "lb"),
  31767. name: "Back",
  31768. image: {
  31769. source: "./media/characters/en/back.svg",
  31770. extra: 1700 / 1570,
  31771. bottom: 51 / 1751
  31772. }
  31773. },
  31774. frontDressed: {
  31775. height: math.unit(6, "feet"),
  31776. weight: math.unit(150, "lb"),
  31777. name: "Front (Dressed)",
  31778. image: {
  31779. source: "./media/characters/en/front-dressed.svg",
  31780. extra: 1697 / 1563,
  31781. bottom: 103 / 1800
  31782. }
  31783. },
  31784. backDressed: {
  31785. height: math.unit(6, "feet"),
  31786. weight: math.unit(150, "lb"),
  31787. name: "Back (Dressed)",
  31788. image: {
  31789. source: "./media/characters/en/back-dressed.svg",
  31790. extra: 1700 / 1570,
  31791. bottom: 51 / 1751
  31792. }
  31793. },
  31794. },
  31795. [
  31796. {
  31797. name: "Macro",
  31798. height: math.unit(210, "feet"),
  31799. default: true
  31800. },
  31801. ]
  31802. ))
  31803. characterMakers.push(() => makeCharacter(
  31804. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31805. {
  31806. front: {
  31807. height: math.unit(6, "feet"),
  31808. weight: math.unit(150, "lb"),
  31809. name: "Front",
  31810. image: {
  31811. source: "./media/characters/haze-orris/front.svg",
  31812. extra: 3975 / 3525,
  31813. bottom: 137 / 4112
  31814. }
  31815. },
  31816. },
  31817. [
  31818. {
  31819. name: "Micro",
  31820. height: math.unit(150, "mm"),
  31821. default: true
  31822. },
  31823. ]
  31824. ))
  31825. characterMakers.push(() => makeCharacter(
  31826. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31827. {
  31828. front: {
  31829. height: math.unit(6, "feet"),
  31830. weight: math.unit(150, "lb"),
  31831. name: "Front",
  31832. image: {
  31833. source: "./media/characters/casselene-yaro/front.svg",
  31834. extra: 4721 / 4541,
  31835. bottom: 82 / 4803
  31836. }
  31837. },
  31838. back: {
  31839. height: math.unit(6, "feet"),
  31840. weight: math.unit(150, "lb"),
  31841. name: "Back",
  31842. image: {
  31843. source: "./media/characters/casselene-yaro/back.svg",
  31844. extra: 4569 / 4377,
  31845. bottom: 69 / 4638
  31846. }
  31847. },
  31848. dressed: {
  31849. height: math.unit(6, "feet"),
  31850. weight: math.unit(150, "lb"),
  31851. name: "Dressed",
  31852. image: {
  31853. source: "./media/characters/casselene-yaro/dressed.svg",
  31854. extra: 4721 / 4541,
  31855. bottom: 82 / 4803
  31856. }
  31857. },
  31858. maw: {
  31859. height: math.unit(1, "feet"),
  31860. name: "Maw",
  31861. image: {
  31862. source: "./media/characters/casselene-yaro/maw.svg"
  31863. }
  31864. },
  31865. },
  31866. [
  31867. {
  31868. name: "Macro",
  31869. height: math.unit(190, "feet"),
  31870. default: true
  31871. },
  31872. ]
  31873. ))
  31874. characterMakers.push(() => makeCharacter(
  31875. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31876. {
  31877. front: {
  31878. height: math.unit(10, "feet"),
  31879. weight: math.unit(15015, "lb"),
  31880. name: "Front",
  31881. image: {
  31882. source: "./media/characters/platine/front.svg",
  31883. extra: 1741/1650,
  31884. bottom: 84/1825
  31885. }
  31886. },
  31887. side: {
  31888. height: math.unit(10, "feet"),
  31889. weight: math.unit(15015, "lb"),
  31890. name: "Side",
  31891. image: {
  31892. source: "./media/characters/platine/side.svg",
  31893. extra: 1790/1705,
  31894. bottom: 29/1819
  31895. }
  31896. },
  31897. },
  31898. [
  31899. {
  31900. name: "Normal",
  31901. height: math.unit(10, "feet"),
  31902. default: true
  31903. },
  31904. {
  31905. name: "Macro",
  31906. height: math.unit(100, "feet")
  31907. },
  31908. {
  31909. name: "Megamacro",
  31910. height: math.unit(1000, "feet")
  31911. },
  31912. ]
  31913. ))
  31914. characterMakers.push(() => makeCharacter(
  31915. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31916. {
  31917. front: {
  31918. height: math.unit(15 + 5 / 12, "feet"),
  31919. weight: math.unit(4600, "lb"),
  31920. name: "Front",
  31921. image: {
  31922. source: "./media/characters/neapolitan-ananassa/front.svg",
  31923. extra: 2903 / 2736,
  31924. bottom: 0 / 2903
  31925. }
  31926. },
  31927. side: {
  31928. height: math.unit(15 + 5 / 12, "feet"),
  31929. weight: math.unit(4600, "lb"),
  31930. name: "Side",
  31931. image: {
  31932. source: "./media/characters/neapolitan-ananassa/side.svg",
  31933. extra: 2925 / 2719,
  31934. bottom: 0 / 2925
  31935. }
  31936. },
  31937. back: {
  31938. height: math.unit(15 + 5 / 12, "feet"),
  31939. weight: math.unit(4600, "lb"),
  31940. name: "Back",
  31941. image: {
  31942. source: "./media/characters/neapolitan-ananassa/back.svg",
  31943. extra: 2903 / 2736,
  31944. bottom: 0 / 2903
  31945. }
  31946. },
  31947. },
  31948. [
  31949. {
  31950. name: "Normal",
  31951. height: math.unit(15 + 5 / 12, "feet"),
  31952. default: true
  31953. },
  31954. {
  31955. name: "Post-Millenium",
  31956. height: math.unit(35 + 5 / 12, "feet")
  31957. },
  31958. {
  31959. name: "Post-Era",
  31960. height: math.unit(450 + 5 / 12, "feet")
  31961. },
  31962. ]
  31963. ))
  31964. characterMakers.push(() => makeCharacter(
  31965. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31966. {
  31967. front: {
  31968. height: math.unit(300, "meters"),
  31969. weight: math.unit(125000, "tonnes"),
  31970. name: "Front",
  31971. image: {
  31972. source: "./media/characters/pazuzu/front.svg",
  31973. extra: 877 / 794,
  31974. bottom: 47 / 924
  31975. }
  31976. },
  31977. },
  31978. [
  31979. {
  31980. name: "Macro",
  31981. height: math.unit(300, "meters"),
  31982. default: true
  31983. },
  31984. ]
  31985. ))
  31986. characterMakers.push(() => makeCharacter(
  31987. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31988. {
  31989. side: {
  31990. height: math.unit(10 + 7 / 12, "feet"),
  31991. weight: math.unit(2.5, "tons"),
  31992. name: "Side",
  31993. image: {
  31994. source: "./media/characters/aasha/side.svg",
  31995. extra: 1345 / 1245,
  31996. bottom: 111 / 1456
  31997. }
  31998. },
  31999. back: {
  32000. height: math.unit(10 + 7 / 12, "feet"),
  32001. weight: math.unit(2.5, "tons"),
  32002. name: "Back",
  32003. image: {
  32004. source: "./media/characters/aasha/back.svg",
  32005. extra: 1133 / 1057,
  32006. bottom: 257 / 1390
  32007. }
  32008. },
  32009. },
  32010. [
  32011. {
  32012. name: "Normal",
  32013. height: math.unit(10 + 7 / 12, "feet"),
  32014. default: true
  32015. },
  32016. ]
  32017. ))
  32018. characterMakers.push(() => makeCharacter(
  32019. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32020. {
  32021. front: {
  32022. height: math.unit(6 + 3 / 12, "feet"),
  32023. name: "Front",
  32024. image: {
  32025. source: "./media/characters/nevan/front.svg",
  32026. extra: 704 / 704,
  32027. bottom: 28 / 732
  32028. }
  32029. },
  32030. back: {
  32031. height: math.unit(6 + 3 / 12, "feet"),
  32032. name: "Back",
  32033. image: {
  32034. source: "./media/characters/nevan/back.svg",
  32035. extra: 714 / 714,
  32036. bottom: 21 / 735
  32037. }
  32038. },
  32039. frontFlaccid: {
  32040. height: math.unit(6 + 3 / 12, "feet"),
  32041. name: "Front (Flaccid)",
  32042. image: {
  32043. source: "./media/characters/nevan/front-flaccid.svg",
  32044. extra: 704 / 704,
  32045. bottom: 28 / 732
  32046. }
  32047. },
  32048. frontErect: {
  32049. height: math.unit(6 + 3 / 12, "feet"),
  32050. name: "Front (Erect)",
  32051. image: {
  32052. source: "./media/characters/nevan/front-erect.svg",
  32053. extra: 704 / 704,
  32054. bottom: 28 / 732
  32055. }
  32056. },
  32057. backFlaccid: {
  32058. height: math.unit(6 + 3 / 12, "feet"),
  32059. name: "Back (Flaccid)",
  32060. image: {
  32061. source: "./media/characters/nevan/back-flaccid.svg",
  32062. extra: 714 / 714,
  32063. bottom: 21 / 735
  32064. }
  32065. },
  32066. },
  32067. [
  32068. {
  32069. name: "Normal",
  32070. height: math.unit(6 + 3 / 12, "feet"),
  32071. default: true
  32072. },
  32073. ]
  32074. ))
  32075. characterMakers.push(() => makeCharacter(
  32076. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32077. {
  32078. front: {
  32079. height: math.unit(4, "feet"),
  32080. name: "Front",
  32081. image: {
  32082. source: "./media/characters/arhan/front.svg",
  32083. extra: 3368 / 3133,
  32084. bottom: 0 / 3368
  32085. }
  32086. },
  32087. side: {
  32088. height: math.unit(4, "feet"),
  32089. name: "Side",
  32090. image: {
  32091. source: "./media/characters/arhan/side.svg",
  32092. extra: 3347 / 3105,
  32093. bottom: 0 / 3347
  32094. }
  32095. },
  32096. tongue: {
  32097. height: math.unit(1.42, "feet"),
  32098. name: "Tongue",
  32099. image: {
  32100. source: "./media/characters/arhan/tongue.svg"
  32101. }
  32102. },
  32103. head: {
  32104. height: math.unit(0.85, "feet"),
  32105. name: "Head",
  32106. image: {
  32107. source: "./media/characters/arhan/head.svg"
  32108. }
  32109. },
  32110. },
  32111. [
  32112. {
  32113. name: "Normal",
  32114. height: math.unit(4, "feet"),
  32115. default: true
  32116. },
  32117. ]
  32118. ))
  32119. characterMakers.push(() => makeCharacter(
  32120. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32121. {
  32122. front: {
  32123. height: math.unit(5 + 7.5 / 12, "feet"),
  32124. weight: math.unit(120, "lb"),
  32125. name: "Front",
  32126. image: {
  32127. source: "./media/characters/digi-duncan/front.svg",
  32128. extra: 330 / 326,
  32129. bottom: 16 / 346
  32130. }
  32131. },
  32132. side: {
  32133. height: math.unit(5 + 7.5 / 12, "feet"),
  32134. weight: math.unit(120, "lb"),
  32135. name: "Side",
  32136. image: {
  32137. source: "./media/characters/digi-duncan/side.svg",
  32138. extra: 341 / 337,
  32139. bottom: 1 / 342
  32140. }
  32141. },
  32142. back: {
  32143. height: math.unit(5 + 7.5 / 12, "feet"),
  32144. weight: math.unit(120, "lb"),
  32145. name: "Back",
  32146. image: {
  32147. source: "./media/characters/digi-duncan/back.svg",
  32148. extra: 330 / 326,
  32149. bottom: 12 / 342
  32150. }
  32151. },
  32152. },
  32153. [
  32154. {
  32155. name: "Speck",
  32156. height: math.unit(0.25, "mm")
  32157. },
  32158. {
  32159. name: "Micro",
  32160. height: math.unit(5, "mm")
  32161. },
  32162. {
  32163. name: "Tiny",
  32164. height: math.unit(0.5, "inches"),
  32165. default: true
  32166. },
  32167. {
  32168. name: "Human",
  32169. height: math.unit(5 + 7.5 / 12, "feet")
  32170. },
  32171. {
  32172. name: "Minigiant",
  32173. height: math.unit(8 + 5.25, "feet")
  32174. },
  32175. {
  32176. name: "Giant",
  32177. height: math.unit(2000, "feet")
  32178. },
  32179. {
  32180. name: "Mega",
  32181. height: math.unit(371.1, "miles")
  32182. },
  32183. ]
  32184. ))
  32185. characterMakers.push(() => makeCharacter(
  32186. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32187. {
  32188. front: {
  32189. height: math.unit(2, "meters"),
  32190. weight: math.unit(350, "kg"),
  32191. name: "Front",
  32192. image: {
  32193. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32194. extra: 898 / 838,
  32195. bottom: 9 / 907
  32196. }
  32197. },
  32198. },
  32199. [
  32200. {
  32201. name: "Micro",
  32202. height: math.unit(8, "meters")
  32203. },
  32204. {
  32205. name: "Normal",
  32206. height: math.unit(50, "meters"),
  32207. default: true
  32208. },
  32209. {
  32210. name: "Macro",
  32211. height: math.unit(500, "meters")
  32212. },
  32213. ]
  32214. ))
  32215. characterMakers.push(() => makeCharacter(
  32216. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32217. {
  32218. front: {
  32219. height: math.unit(6 + 6 / 12, "feet"),
  32220. name: "Front",
  32221. image: {
  32222. source: "./media/characters/khardesh/front.svg",
  32223. extra: 1788/1596,
  32224. bottom: 66/1854
  32225. }
  32226. },
  32227. back: {
  32228. height: math.unit(6 + 6 / 12, "feet"),
  32229. name: "Back",
  32230. image: {
  32231. source: "./media/characters/khardesh/back.svg",
  32232. extra: 1781/1584,
  32233. bottom: 68/1849
  32234. }
  32235. },
  32236. },
  32237. [
  32238. {
  32239. name: "Normal",
  32240. height: math.unit(6 + 6 / 12, "feet"),
  32241. default: true
  32242. },
  32243. {
  32244. name: "Normal+",
  32245. height: math.unit(4, "meters")
  32246. },
  32247. {
  32248. name: "Macro",
  32249. height: math.unit(50, "meters")
  32250. },
  32251. {
  32252. name: "Macro+",
  32253. height: math.unit(100, "meters")
  32254. },
  32255. {
  32256. name: "Megamacro",
  32257. height: math.unit(20, "km")
  32258. },
  32259. ]
  32260. ))
  32261. characterMakers.push(() => makeCharacter(
  32262. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32263. {
  32264. front: {
  32265. height: math.unit(6, "feet"),
  32266. weight: math.unit(150, "lb"),
  32267. name: "Front",
  32268. image: {
  32269. source: "./media/characters/kosho/front.svg",
  32270. extra: 1847 / 1847,
  32271. bottom: 86 / 1933
  32272. }
  32273. },
  32274. },
  32275. [
  32276. {
  32277. name: "Second-stage micro",
  32278. height: math.unit(0.5, "inches")
  32279. },
  32280. {
  32281. name: "First-stage micro",
  32282. height: math.unit(6, "inches")
  32283. },
  32284. {
  32285. name: "Normal",
  32286. height: math.unit(6, "feet"),
  32287. default: true
  32288. },
  32289. {
  32290. name: "First-stage macro",
  32291. height: math.unit(72, "feet")
  32292. },
  32293. {
  32294. name: "Second-stage macro",
  32295. height: math.unit(864, "feet")
  32296. },
  32297. ]
  32298. ))
  32299. characterMakers.push(() => makeCharacter(
  32300. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32301. {
  32302. normal: {
  32303. height: math.unit(4 + 6 / 12, "feet"),
  32304. name: "Normal",
  32305. image: {
  32306. source: "./media/characters/hydra/normal.svg",
  32307. extra: 2833 / 2634,
  32308. bottom: 68 / 2901
  32309. }
  32310. },
  32311. smol: {
  32312. height: math.unit(0.705, "inches"),
  32313. name: "Smol",
  32314. image: {
  32315. source: "./media/characters/hydra/smol.svg",
  32316. extra: 2715 / 2540,
  32317. bottom: 0 / 2715
  32318. }
  32319. },
  32320. },
  32321. [
  32322. {
  32323. name: "Normal",
  32324. height: math.unit(4 + 6 / 12, "feet"),
  32325. default: true
  32326. }
  32327. ]
  32328. ))
  32329. characterMakers.push(() => makeCharacter(
  32330. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32331. {
  32332. front: {
  32333. height: math.unit(0.6, "cm"),
  32334. name: "Front",
  32335. image: {
  32336. source: "./media/characters/daz/front.svg",
  32337. extra: 1682 / 1164,
  32338. bottom: 42 / 1724
  32339. }
  32340. },
  32341. },
  32342. [
  32343. {
  32344. name: "Normal",
  32345. height: math.unit(0.6, "cm"),
  32346. default: true
  32347. },
  32348. ]
  32349. ))
  32350. characterMakers.push(() => makeCharacter(
  32351. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32352. {
  32353. front: {
  32354. height: math.unit(6, "feet"),
  32355. weight: math.unit(235, "lb"),
  32356. name: "Front",
  32357. image: {
  32358. source: "./media/characters/theo-pangolin/front.svg",
  32359. extra: 1996 / 1969,
  32360. bottom: 115 / 2111
  32361. }
  32362. },
  32363. back: {
  32364. height: math.unit(6, "feet"),
  32365. weight: math.unit(235, "lb"),
  32366. name: "Back",
  32367. image: {
  32368. source: "./media/characters/theo-pangolin/back.svg",
  32369. extra: 1979 / 1979,
  32370. bottom: 40 / 2019
  32371. }
  32372. },
  32373. feral: {
  32374. height: math.unit(2, "feet"),
  32375. weight: math.unit(30, "lb"),
  32376. name: "Feral",
  32377. image: {
  32378. source: "./media/characters/theo-pangolin/feral.svg",
  32379. extra: 803 / 791,
  32380. bottom: 181 / 984
  32381. }
  32382. },
  32383. footFive: {
  32384. height: math.unit(1.43, "feet"),
  32385. name: "Foot (Five Toes)",
  32386. image: {
  32387. source: "./media/characters/theo-pangolin/foot-five.svg"
  32388. }
  32389. },
  32390. footFour: {
  32391. height: math.unit(1.43, "feet"),
  32392. name: "Foot (Four Toes)",
  32393. image: {
  32394. source: "./media/characters/theo-pangolin/foot-four.svg"
  32395. }
  32396. },
  32397. handFour: {
  32398. height: math.unit(0.81, "feet"),
  32399. name: "Hand (Four Fingers)",
  32400. image: {
  32401. source: "./media/characters/theo-pangolin/hand-four.svg"
  32402. }
  32403. },
  32404. handThree: {
  32405. height: math.unit(0.81, "feet"),
  32406. name: "Hand (Three Fingers)",
  32407. image: {
  32408. source: "./media/characters/theo-pangolin/hand-three.svg"
  32409. }
  32410. },
  32411. headFront: {
  32412. height: math.unit(1.37, "feet"),
  32413. name: "Head (Front)",
  32414. image: {
  32415. source: "./media/characters/theo-pangolin/head-front.svg"
  32416. }
  32417. },
  32418. headSide: {
  32419. height: math.unit(1.43, "feet"),
  32420. name: "Head (Side)",
  32421. image: {
  32422. source: "./media/characters/theo-pangolin/head-side.svg"
  32423. }
  32424. },
  32425. tongue: {
  32426. height: math.unit(2.29, "feet"),
  32427. name: "Tongue",
  32428. image: {
  32429. source: "./media/characters/theo-pangolin/tongue.svg"
  32430. }
  32431. },
  32432. },
  32433. [
  32434. {
  32435. name: "Normal",
  32436. height: math.unit(6, "feet")
  32437. },
  32438. {
  32439. name: "Macro",
  32440. height: math.unit(400, "feet"),
  32441. default: true
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32447. {
  32448. front: {
  32449. height: math.unit(6, "inches"),
  32450. weight: math.unit(0.036, "kg"),
  32451. name: "Front",
  32452. image: {
  32453. source: "./media/characters/renée/front.svg",
  32454. extra: 900 / 886,
  32455. bottom: 8 / 908
  32456. }
  32457. },
  32458. },
  32459. [
  32460. {
  32461. name: "Nano",
  32462. height: math.unit(1, "nm")
  32463. },
  32464. {
  32465. name: "Micro",
  32466. height: math.unit(1, "mm")
  32467. },
  32468. {
  32469. name: "Normal",
  32470. height: math.unit(6, "inches")
  32471. },
  32472. {
  32473. name: "Macro",
  32474. height: math.unit(2000, "feet"),
  32475. default: true
  32476. },
  32477. {
  32478. name: "Megamacro",
  32479. height: math.unit(2, "km")
  32480. },
  32481. {
  32482. name: "Gigamacro",
  32483. height: math.unit(2000, "km")
  32484. },
  32485. {
  32486. name: "Teramacro",
  32487. height: math.unit(250000, "km")
  32488. },
  32489. ]
  32490. ))
  32491. characterMakers.push(() => makeCharacter(
  32492. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32493. {
  32494. front: {
  32495. height: math.unit(4, "meters"),
  32496. weight: math.unit(150, "kg"),
  32497. name: "Front",
  32498. image: {
  32499. source: "./media/characters/caledvwlch/front.svg",
  32500. extra: 1757/1537,
  32501. bottom: 31/1788
  32502. }
  32503. },
  32504. side: {
  32505. height: math.unit(4, "meters"),
  32506. weight: math.unit(150, "kg"),
  32507. name: "Side",
  32508. image: {
  32509. source: "./media/characters/caledvwlch/side.svg",
  32510. extra: 1605 / 1536,
  32511. bottom: 31 / 1636
  32512. }
  32513. },
  32514. back: {
  32515. height: math.unit(4, "meters"),
  32516. weight: math.unit(150, "kg"),
  32517. name: "Back",
  32518. image: {
  32519. source: "./media/characters/caledvwlch/back.svg",
  32520. extra: 1635 / 1565,
  32521. bottom: 27 / 1662
  32522. }
  32523. },
  32524. },
  32525. [
  32526. {
  32527. name: "\"Incognito\"",
  32528. height: math.unit(4, "meters")
  32529. },
  32530. {
  32531. name: "Small rampage",
  32532. height: math.unit(600, "meters")
  32533. },
  32534. {
  32535. name: "Mega",
  32536. height: math.unit(30, "km")
  32537. },
  32538. {
  32539. name: "Home-size",
  32540. height: math.unit(50, "km"),
  32541. default: true
  32542. },
  32543. {
  32544. name: "Giga",
  32545. height: math.unit(300, "km")
  32546. },
  32547. {
  32548. name: "Lounging",
  32549. height: math.unit(11000, "km")
  32550. },
  32551. {
  32552. name: "Planet snacking",
  32553. height: math.unit(2000000, "km")
  32554. },
  32555. ]
  32556. ))
  32557. characterMakers.push(() => makeCharacter(
  32558. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32559. {
  32560. front: {
  32561. height: math.unit(6, "feet"),
  32562. weight: math.unit(215, "lb"),
  32563. name: "Front",
  32564. image: {
  32565. source: "./media/characters/sapphire-svell/front.svg",
  32566. extra: 495 / 455,
  32567. bottom: 20 / 515
  32568. }
  32569. },
  32570. back: {
  32571. height: math.unit(6, "feet"),
  32572. weight: math.unit(216, "lb"),
  32573. name: "Back",
  32574. image: {
  32575. source: "./media/characters/sapphire-svell/back.svg",
  32576. extra: 497 / 477,
  32577. bottom: 7 / 504
  32578. }
  32579. },
  32580. maw: {
  32581. height: math.unit(1.57, "feet"),
  32582. name: "Maw",
  32583. image: {
  32584. source: "./media/characters/sapphire-svell/maw.svg"
  32585. }
  32586. },
  32587. foot: {
  32588. height: math.unit(1.07, "feet"),
  32589. name: "Foot",
  32590. image: {
  32591. source: "./media/characters/sapphire-svell/foot.svg"
  32592. }
  32593. },
  32594. toering: {
  32595. height: math.unit(1.7, "inch"),
  32596. name: "Toering",
  32597. image: {
  32598. source: "./media/characters/sapphire-svell/toering.svg"
  32599. }
  32600. },
  32601. },
  32602. [
  32603. {
  32604. name: "Normal",
  32605. height: math.unit(300, "feet"),
  32606. default: true
  32607. },
  32608. {
  32609. name: "Augmented",
  32610. height: math.unit(1250, "feet")
  32611. },
  32612. {
  32613. name: "Unleashed",
  32614. height: math.unit(3000, "feet")
  32615. },
  32616. ]
  32617. ))
  32618. characterMakers.push(() => makeCharacter(
  32619. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32620. {
  32621. side: {
  32622. height: math.unit(2 + 3 / 12, "feet"),
  32623. weight: math.unit(110, "lb"),
  32624. name: "Side",
  32625. image: {
  32626. source: "./media/characters/glitch-flux/side.svg",
  32627. extra: 997 / 805,
  32628. bottom: 20 / 1017
  32629. }
  32630. },
  32631. },
  32632. [
  32633. {
  32634. name: "Normal",
  32635. height: math.unit(2 + 3 / 12, "feet"),
  32636. default: true
  32637. },
  32638. ]
  32639. ))
  32640. characterMakers.push(() => makeCharacter(
  32641. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32642. {
  32643. front: {
  32644. height: math.unit(4, "meters"),
  32645. name: "Front",
  32646. image: {
  32647. source: "./media/characters/mid/front.svg",
  32648. extra: 507 / 476,
  32649. bottom: 17 / 524
  32650. }
  32651. },
  32652. back: {
  32653. height: math.unit(4, "meters"),
  32654. name: "Back",
  32655. image: {
  32656. source: "./media/characters/mid/back.svg",
  32657. extra: 519 / 487,
  32658. bottom: 7 / 526
  32659. }
  32660. },
  32661. stuck: {
  32662. height: math.unit(2.2, "meters"),
  32663. name: "Stuck",
  32664. image: {
  32665. source: "./media/characters/mid/stuck.svg",
  32666. extra: 1951 / 1869,
  32667. bottom: 88 / 2039
  32668. }
  32669. }
  32670. },
  32671. [
  32672. {
  32673. name: "Normal",
  32674. height: math.unit(4, "meters"),
  32675. default: true
  32676. },
  32677. {
  32678. name: "Big",
  32679. height: math.unit(10, "meters")
  32680. },
  32681. {
  32682. name: "Macro",
  32683. height: math.unit(800, "meters")
  32684. },
  32685. {
  32686. name: "Megamacro",
  32687. height: math.unit(100, "km")
  32688. },
  32689. {
  32690. name: "Overgrown",
  32691. height: math.unit(1, "parsec")
  32692. },
  32693. ]
  32694. ))
  32695. characterMakers.push(() => makeCharacter(
  32696. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32697. {
  32698. front: {
  32699. height: math.unit(2.5, "meters"),
  32700. weight: math.unit(225, "kg"),
  32701. name: "Front",
  32702. image: {
  32703. source: "./media/characters/iris/front.svg",
  32704. extra: 3348 / 3251,
  32705. bottom: 205 / 3553
  32706. }
  32707. },
  32708. maw: {
  32709. height: math.unit(0.56, "meter"),
  32710. name: "Maw",
  32711. image: {
  32712. source: "./media/characters/iris/maw.svg"
  32713. }
  32714. },
  32715. },
  32716. [
  32717. {
  32718. name: "Mewter cat",
  32719. height: math.unit(1.2, "meters")
  32720. },
  32721. {
  32722. name: "Normal",
  32723. height: math.unit(2.5, "meters"),
  32724. default: true
  32725. },
  32726. {
  32727. name: "Minimacro",
  32728. height: math.unit(18, "feet")
  32729. },
  32730. {
  32731. name: "Macro",
  32732. height: math.unit(140, "feet")
  32733. },
  32734. {
  32735. name: "Macro+",
  32736. height: math.unit(180, "meters")
  32737. },
  32738. {
  32739. name: "Megamacro",
  32740. height: math.unit(2746, "meters")
  32741. },
  32742. ]
  32743. ))
  32744. characterMakers.push(() => makeCharacter(
  32745. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32746. {
  32747. front: {
  32748. height: math.unit(6, "feet"),
  32749. weight: math.unit(135, "lb"),
  32750. name: "Front",
  32751. image: {
  32752. source: "./media/characters/axel/front.svg",
  32753. extra: 908 / 908,
  32754. bottom: 58 / 966
  32755. }
  32756. },
  32757. side: {
  32758. height: math.unit(6, "feet"),
  32759. weight: math.unit(135, "lb"),
  32760. name: "Side",
  32761. image: {
  32762. source: "./media/characters/axel/side.svg",
  32763. extra: 958 / 958,
  32764. bottom: 11 / 969
  32765. }
  32766. },
  32767. back: {
  32768. height: math.unit(6, "feet"),
  32769. weight: math.unit(135, "lb"),
  32770. name: "Back",
  32771. image: {
  32772. source: "./media/characters/axel/back.svg",
  32773. extra: 887 / 887,
  32774. bottom: 34 / 921
  32775. }
  32776. },
  32777. head: {
  32778. height: math.unit(1.07, "feet"),
  32779. name: "Head",
  32780. image: {
  32781. source: "./media/characters/axel/head.svg"
  32782. }
  32783. },
  32784. beak: {
  32785. height: math.unit(1.4, "feet"),
  32786. name: "Beak",
  32787. image: {
  32788. source: "./media/characters/axel/beak.svg"
  32789. }
  32790. },
  32791. beakSide: {
  32792. height: math.unit(1.4, "feet"),
  32793. name: "Beak Side",
  32794. image: {
  32795. source: "./media/characters/axel/beak-side.svg"
  32796. }
  32797. },
  32798. sheath: {
  32799. height: math.unit(0.5, "feet"),
  32800. name: "Sheath",
  32801. image: {
  32802. source: "./media/characters/axel/sheath.svg"
  32803. }
  32804. },
  32805. dick: {
  32806. height: math.unit(0.98, "feet"),
  32807. name: "Dick",
  32808. image: {
  32809. source: "./media/characters/axel/dick.svg"
  32810. }
  32811. },
  32812. },
  32813. [
  32814. {
  32815. name: "Macro",
  32816. height: math.unit(68, "meters"),
  32817. default: true
  32818. },
  32819. ]
  32820. ))
  32821. characterMakers.push(() => makeCharacter(
  32822. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32823. {
  32824. front: {
  32825. height: math.unit(3.5, "meters"),
  32826. weight: math.unit(1200, "kg"),
  32827. name: "Front",
  32828. image: {
  32829. source: "./media/characters/joanna/front.svg",
  32830. extra: 1596 / 1488,
  32831. bottom: 29 / 1625
  32832. }
  32833. },
  32834. back: {
  32835. height: math.unit(3.5, "meters"),
  32836. weight: math.unit(1200, "kg"),
  32837. name: "Back",
  32838. image: {
  32839. source: "./media/characters/joanna/back.svg",
  32840. extra: 1594 / 1495,
  32841. bottom: 26 / 1620
  32842. }
  32843. },
  32844. frontShorts: {
  32845. height: math.unit(3.5, "meters"),
  32846. weight: math.unit(1200, "kg"),
  32847. name: "Front (Shorts)",
  32848. image: {
  32849. source: "./media/characters/joanna/front-shorts.svg",
  32850. extra: 1596 / 1488,
  32851. bottom: 29 / 1625
  32852. }
  32853. },
  32854. frontBiker: {
  32855. height: math.unit(3.5, "meters"),
  32856. weight: math.unit(1200, "kg"),
  32857. name: "Front (Biker)",
  32858. image: {
  32859. source: "./media/characters/joanna/front-biker.svg",
  32860. extra: 1596 / 1488,
  32861. bottom: 29 / 1625
  32862. }
  32863. },
  32864. backBiker: {
  32865. height: math.unit(3.5, "meters"),
  32866. weight: math.unit(1200, "kg"),
  32867. name: "Back (Biker)",
  32868. image: {
  32869. source: "./media/characters/joanna/back-biker.svg",
  32870. extra: 1594 / 1495,
  32871. bottom: 88 / 1682
  32872. }
  32873. },
  32874. bikeLeft: {
  32875. height: math.unit(2.4, "meters"),
  32876. weight: math.unit(1600, "kg"),
  32877. name: "Bike (Left)",
  32878. image: {
  32879. source: "./media/characters/joanna/bike-left.svg",
  32880. extra: 720 / 720,
  32881. bottom: 8 / 728
  32882. }
  32883. },
  32884. bikeRight: {
  32885. height: math.unit(2.4, "meters"),
  32886. weight: math.unit(1600, "kg"),
  32887. name: "Bike (Right)",
  32888. image: {
  32889. source: "./media/characters/joanna/bike-right.svg",
  32890. extra: 720 / 720,
  32891. bottom: 8 / 728
  32892. }
  32893. },
  32894. },
  32895. [
  32896. {
  32897. name: "Incognito",
  32898. height: math.unit(3.5, "meters")
  32899. },
  32900. {
  32901. name: "Casual Big",
  32902. height: math.unit(200, "meters")
  32903. },
  32904. {
  32905. name: "Macro",
  32906. height: math.unit(600, "meters")
  32907. },
  32908. {
  32909. name: "Original",
  32910. height: math.unit(20, "km"),
  32911. default: true
  32912. },
  32913. {
  32914. name: "Giga",
  32915. height: math.unit(400, "km")
  32916. },
  32917. {
  32918. name: "Lounging",
  32919. height: math.unit(1500, "km")
  32920. },
  32921. {
  32922. name: "Planetary",
  32923. height: math.unit(200000, "km")
  32924. },
  32925. ]
  32926. ))
  32927. characterMakers.push(() => makeCharacter(
  32928. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32929. {
  32930. front: {
  32931. height: math.unit(6, "feet"),
  32932. weight: math.unit(150, "lb"),
  32933. name: "Front",
  32934. image: {
  32935. source: "./media/characters/hugo-sigil/front.svg",
  32936. extra: 522 / 500,
  32937. bottom: 2 / 524
  32938. }
  32939. },
  32940. back: {
  32941. height: math.unit(6, "feet"),
  32942. weight: math.unit(150, "lb"),
  32943. name: "Back",
  32944. image: {
  32945. source: "./media/characters/hugo-sigil/back.svg",
  32946. extra: 519 / 495,
  32947. bottom: 5 / 524
  32948. }
  32949. },
  32950. maw: {
  32951. height: math.unit(1.4, "feet"),
  32952. weight: math.unit(150, "lb"),
  32953. name: "Maw",
  32954. image: {
  32955. source: "./media/characters/hugo-sigil/maw.svg"
  32956. }
  32957. },
  32958. feet: {
  32959. height: math.unit(1.56, "feet"),
  32960. weight: math.unit(150, "lb"),
  32961. name: "Feet",
  32962. image: {
  32963. source: "./media/characters/hugo-sigil/feet.svg",
  32964. extra: 177 / 177,
  32965. bottom: 12 / 189
  32966. }
  32967. },
  32968. },
  32969. [
  32970. {
  32971. name: "Normal",
  32972. height: math.unit(6, "feet")
  32973. },
  32974. {
  32975. name: "Macro",
  32976. height: math.unit(200, "feet"),
  32977. default: true
  32978. },
  32979. ]
  32980. ))
  32981. characterMakers.push(() => makeCharacter(
  32982. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32983. {
  32984. front: {
  32985. height: math.unit(6, "feet"),
  32986. weight: math.unit(150, "lb"),
  32987. name: "Front",
  32988. image: {
  32989. source: "./media/characters/peri/front.svg",
  32990. extra: 2354 / 2233,
  32991. bottom: 49 / 2403
  32992. }
  32993. },
  32994. },
  32995. [
  32996. {
  32997. name: "Really Small",
  32998. height: math.unit(1, "nm")
  32999. },
  33000. {
  33001. name: "Micro",
  33002. height: math.unit(4, "inches")
  33003. },
  33004. {
  33005. name: "Normal",
  33006. height: math.unit(7, "inches"),
  33007. default: true
  33008. },
  33009. {
  33010. name: "Macro",
  33011. height: math.unit(400, "feet")
  33012. },
  33013. {
  33014. name: "Megamacro",
  33015. height: math.unit(100, "miles")
  33016. },
  33017. ]
  33018. ))
  33019. characterMakers.push(() => makeCharacter(
  33020. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33021. {
  33022. frontSlim: {
  33023. height: math.unit(7, "feet"),
  33024. name: "Front (Slim)",
  33025. image: {
  33026. source: "./media/characters/issilora/front-slim.svg",
  33027. extra: 529 / 449,
  33028. bottom: 53 / 582
  33029. }
  33030. },
  33031. sideSlim: {
  33032. height: math.unit(7, "feet"),
  33033. name: "Side (Slim)",
  33034. image: {
  33035. source: "./media/characters/issilora/side-slim.svg",
  33036. extra: 570 / 480,
  33037. bottom: 30 / 600
  33038. }
  33039. },
  33040. backSlim: {
  33041. height: math.unit(7, "feet"),
  33042. name: "Back (Slim)",
  33043. image: {
  33044. source: "./media/characters/issilora/back-slim.svg",
  33045. extra: 537 / 455,
  33046. bottom: 46 / 583
  33047. }
  33048. },
  33049. frontBuff: {
  33050. height: math.unit(7, "feet"),
  33051. name: "Front (Buff)",
  33052. image: {
  33053. source: "./media/characters/issilora/front-buff.svg",
  33054. extra: 2310 / 2035,
  33055. bottom: 335 / 2645
  33056. }
  33057. },
  33058. head: {
  33059. height: math.unit(1.94, "feet"),
  33060. name: "Head",
  33061. image: {
  33062. source: "./media/characters/issilora/head.svg"
  33063. }
  33064. },
  33065. },
  33066. [
  33067. {
  33068. name: "Minimum",
  33069. height: math.unit(7, "feet")
  33070. },
  33071. {
  33072. name: "Comfortable",
  33073. height: math.unit(17, "feet")
  33074. },
  33075. {
  33076. name: "Fun Size",
  33077. height: math.unit(47, "feet")
  33078. },
  33079. {
  33080. name: "Natural Macro",
  33081. height: math.unit(137, "feet"),
  33082. default: true
  33083. },
  33084. {
  33085. name: "Maximum Kaiju",
  33086. height: math.unit(397, "feet")
  33087. },
  33088. ]
  33089. ))
  33090. characterMakers.push(() => makeCharacter(
  33091. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33092. {
  33093. front: {
  33094. height: math.unit(50 + 9/12, "feet"),
  33095. weight: math.unit(32.8, "tons"),
  33096. name: "Front",
  33097. image: {
  33098. source: "./media/characters/irb'iiritaahn/front.svg",
  33099. extra: 1878/1826,
  33100. bottom: 326/2204
  33101. }
  33102. },
  33103. back: {
  33104. height: math.unit(50 + 9/12, "feet"),
  33105. weight: math.unit(32.8, "tons"),
  33106. name: "Back",
  33107. image: {
  33108. source: "./media/characters/irb'iiritaahn/back.svg",
  33109. extra: 2052/2018,
  33110. bottom: 152/2204
  33111. }
  33112. },
  33113. head: {
  33114. height: math.unit(12.86, "feet"),
  33115. name: "Head",
  33116. image: {
  33117. source: "./media/characters/irb'iiritaahn/head.svg"
  33118. }
  33119. },
  33120. maw: {
  33121. height: math.unit(9.66, "feet"),
  33122. name: "Maw",
  33123. image: {
  33124. source: "./media/characters/irb'iiritaahn/maw.svg"
  33125. }
  33126. },
  33127. frontDick: {
  33128. height: math.unit(8.78461, "feet"),
  33129. name: "Front Dick",
  33130. image: {
  33131. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33132. }
  33133. },
  33134. rearDick: {
  33135. height: math.unit(8.78461, "feet"),
  33136. name: "Rear Dick",
  33137. image: {
  33138. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33139. }
  33140. },
  33141. rearDickUnfolded: {
  33142. height: math.unit(8.78, "feet"),
  33143. name: "Rear Dick (Unfolded)",
  33144. image: {
  33145. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33146. }
  33147. },
  33148. wings: {
  33149. height: math.unit(43, "feet"),
  33150. name: "Wings",
  33151. image: {
  33152. source: "./media/characters/irb'iiritaahn/wings.svg"
  33153. }
  33154. },
  33155. },
  33156. [
  33157. {
  33158. name: "Macro",
  33159. height: math.unit(50 + 9/12, "feet"),
  33160. default: true
  33161. },
  33162. ]
  33163. ))
  33164. characterMakers.push(() => makeCharacter(
  33165. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33166. {
  33167. front: {
  33168. height: math.unit(205, "cm"),
  33169. weight: math.unit(102, "kg"),
  33170. name: "Front",
  33171. image: {
  33172. source: "./media/characters/irbisgreif/front.svg",
  33173. extra: 785/706,
  33174. bottom: 13/798
  33175. }
  33176. },
  33177. back: {
  33178. height: math.unit(205, "cm"),
  33179. weight: math.unit(102, "kg"),
  33180. name: "Back",
  33181. image: {
  33182. source: "./media/characters/irbisgreif/back.svg",
  33183. extra: 713/701,
  33184. bottom: 26/739
  33185. }
  33186. },
  33187. frontDressed: {
  33188. height: math.unit(216, "cm"),
  33189. weight: math.unit(102, "kg"),
  33190. name: "Front-dressed",
  33191. image: {
  33192. source: "./media/characters/irbisgreif/front-dressed.svg",
  33193. extra: 902/776,
  33194. bottom: 14/916
  33195. }
  33196. },
  33197. sideDressed: {
  33198. height: math.unit(195, "cm"),
  33199. weight: math.unit(102, "kg"),
  33200. name: "Side-dressed",
  33201. image: {
  33202. source: "./media/characters/irbisgreif/side-dressed.svg",
  33203. extra: 788/688,
  33204. bottom: 21/809
  33205. }
  33206. },
  33207. backDressed: {
  33208. height: math.unit(216, "cm"),
  33209. weight: math.unit(102, "kg"),
  33210. name: "Back-dressed",
  33211. image: {
  33212. source: "./media/characters/irbisgreif/back-dressed.svg",
  33213. extra: 901/783,
  33214. bottom: 10/911
  33215. }
  33216. },
  33217. dick: {
  33218. height: math.unit(0.49, "feet"),
  33219. name: "Dick",
  33220. image: {
  33221. source: "./media/characters/irbisgreif/dick.svg"
  33222. }
  33223. },
  33224. wingTop: {
  33225. height: math.unit(1.93 , "feet"),
  33226. name: "Wing-top",
  33227. image: {
  33228. source: "./media/characters/irbisgreif/wing-top.svg"
  33229. }
  33230. },
  33231. wingBottom: {
  33232. height: math.unit(1.93 , "feet"),
  33233. name: "Wing-bottom",
  33234. image: {
  33235. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33236. }
  33237. },
  33238. },
  33239. [
  33240. {
  33241. name: "Normal",
  33242. height: math.unit(216, "cm"),
  33243. default: true
  33244. },
  33245. ]
  33246. ))
  33247. characterMakers.push(() => makeCharacter(
  33248. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33249. {
  33250. front: {
  33251. height: math.unit(6, "feet"),
  33252. weight: math.unit(150, "lb"),
  33253. name: "Front",
  33254. image: {
  33255. source: "./media/characters/pride/front.svg",
  33256. extra: 1299/1230,
  33257. bottom: 18/1317
  33258. }
  33259. },
  33260. },
  33261. [
  33262. {
  33263. name: "Normal",
  33264. height: math.unit(7, "feet")
  33265. },
  33266. {
  33267. name: "Mini-macro",
  33268. height: math.unit(11, "feet")
  33269. },
  33270. {
  33271. name: "Macro",
  33272. height: math.unit(15, "meters"),
  33273. default: true
  33274. },
  33275. {
  33276. name: "Macro+",
  33277. height: math.unit(40, "meters")
  33278. },
  33279. ]
  33280. ))
  33281. characterMakers.push(() => makeCharacter(
  33282. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33283. {
  33284. front: {
  33285. height: math.unit(4 + 2 / 12, "feet"),
  33286. weight: math.unit(95, "lb"),
  33287. name: "Front",
  33288. image: {
  33289. source: "./media/characters/vaelophis-nyx/front.svg",
  33290. extra: 2532/2330,
  33291. bottom: 0/2532
  33292. }
  33293. },
  33294. back: {
  33295. height: math.unit(4 + 2 / 12, "feet"),
  33296. weight: math.unit(95, "lb"),
  33297. name: "Back",
  33298. image: {
  33299. source: "./media/characters/vaelophis-nyx/back.svg",
  33300. extra: 2484/2361,
  33301. bottom: 0/2484
  33302. }
  33303. },
  33304. feralSide: {
  33305. height: math.unit(2 + 1/12, "feet"),
  33306. weight: math.unit(20, "lb"),
  33307. name: "Feral (Side)",
  33308. image: {
  33309. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33310. extra: 1721/1581,
  33311. bottom: 70/1791
  33312. }
  33313. },
  33314. feralLazing: {
  33315. height: math.unit(1.08, "feet"),
  33316. weight: math.unit(20, "lb"),
  33317. name: "Feral (Lazing)",
  33318. image: {
  33319. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33320. extra: 822/822,
  33321. bottom: 248/1070
  33322. }
  33323. },
  33324. ear: {
  33325. height: math.unit(0.416, "feet"),
  33326. name: "Ear",
  33327. image: {
  33328. source: "./media/characters/vaelophis-nyx/ear.svg"
  33329. }
  33330. },
  33331. eye: {
  33332. height: math.unit(0.0748, "feet"),
  33333. name: "Eye",
  33334. image: {
  33335. source: "./media/characters/vaelophis-nyx/eye.svg"
  33336. }
  33337. },
  33338. mouth: {
  33339. height: math.unit(0.378, "feet"),
  33340. name: "Mouth",
  33341. image: {
  33342. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33343. }
  33344. },
  33345. spade: {
  33346. height: math.unit(0.55, "feet"),
  33347. name: "Spade",
  33348. image: {
  33349. source: "./media/characters/vaelophis-nyx/spade.svg"
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Normal",
  33356. height: math.unit(4 + 2/12, "feet"),
  33357. default: true
  33358. },
  33359. ]
  33360. ))
  33361. characterMakers.push(() => makeCharacter(
  33362. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33363. {
  33364. front: {
  33365. height: math.unit(7, "feet"),
  33366. weight: math.unit(231, "lb"),
  33367. name: "Front",
  33368. image: {
  33369. source: "./media/characters/flux/front.svg",
  33370. extra: 919/871,
  33371. bottom: 0/919
  33372. }
  33373. },
  33374. back: {
  33375. height: math.unit(7, "feet"),
  33376. weight: math.unit(231, "lb"),
  33377. name: "Back",
  33378. image: {
  33379. source: "./media/characters/flux/back.svg",
  33380. extra: 1040/992,
  33381. bottom: 0/1040
  33382. }
  33383. },
  33384. frontDressed: {
  33385. height: math.unit(7, "feet"),
  33386. weight: math.unit(231, "lb"),
  33387. name: "Front (Dressed)",
  33388. image: {
  33389. source: "./media/characters/flux/front-dressed.svg",
  33390. extra: 919/871,
  33391. bottom: 0/919
  33392. }
  33393. },
  33394. feralSide: {
  33395. height: math.unit(5, "feet"),
  33396. weight: math.unit(150, "lb"),
  33397. name: "Feral (Side)",
  33398. image: {
  33399. source: "./media/characters/flux/feral-side.svg",
  33400. extra: 598/528,
  33401. bottom: 28/626
  33402. }
  33403. },
  33404. head: {
  33405. height: math.unit(1.585, "feet"),
  33406. name: "Head",
  33407. image: {
  33408. source: "./media/characters/flux/head.svg"
  33409. }
  33410. },
  33411. headSide: {
  33412. height: math.unit(1.74, "feet"),
  33413. name: "Head (Side)",
  33414. image: {
  33415. source: "./media/characters/flux/head-side.svg"
  33416. }
  33417. },
  33418. headSideFire: {
  33419. height: math.unit(1.76, "feet"),
  33420. name: "Head (Side, Fire)",
  33421. image: {
  33422. source: "./media/characters/flux/head-side-fire.svg"
  33423. }
  33424. },
  33425. },
  33426. [
  33427. {
  33428. name: "Normal",
  33429. height: math.unit(7, "feet"),
  33430. default: true
  33431. },
  33432. ]
  33433. ))
  33434. characterMakers.push(() => makeCharacter(
  33435. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33436. {
  33437. front: {
  33438. height: math.unit(9, "feet"),
  33439. weight: math.unit(1012, "lb"),
  33440. name: "Front",
  33441. image: {
  33442. source: "./media/characters/ulfra-lupae/front.svg",
  33443. extra: 1083/1011,
  33444. bottom: 67/1150
  33445. }
  33446. },
  33447. },
  33448. [
  33449. {
  33450. name: "Micro",
  33451. height: math.unit(6, "inches")
  33452. },
  33453. {
  33454. name: "Socializing",
  33455. height: math.unit(6 + 5/12, "feet")
  33456. },
  33457. {
  33458. name: "Normal",
  33459. height: math.unit(9, "feet"),
  33460. default: true
  33461. },
  33462. {
  33463. name: "Macro",
  33464. height: math.unit(150, "feet")
  33465. },
  33466. ]
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(5 + 2/12, "feet"),
  33473. weight: math.unit(120, "lb"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/timber/front.svg",
  33477. extra: 2814/2705,
  33478. bottom: 181/2995
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(5 + 2/12, "feet"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(9, "feet"),
  33495. name: "Front",
  33496. image: {
  33497. source: "./media/characters/nicki/front.svg",
  33498. extra: 1240/990,
  33499. bottom: 45/1285
  33500. },
  33501. form: "anthro",
  33502. default: true
  33503. },
  33504. side: {
  33505. height: math.unit(9, "feet"),
  33506. name: "Side",
  33507. image: {
  33508. source: "./media/characters/nicki/side.svg",
  33509. extra: 1047/973,
  33510. bottom: 61/1108
  33511. },
  33512. form: "anthro"
  33513. },
  33514. back: {
  33515. height: math.unit(9, "feet"),
  33516. name: "Back",
  33517. image: {
  33518. source: "./media/characters/nicki/back.svg",
  33519. extra: 1006/965,
  33520. bottom: 39/1045
  33521. },
  33522. form: "anthro"
  33523. },
  33524. taur: {
  33525. height: math.unit(15, "feet"),
  33526. name: "Taur",
  33527. image: {
  33528. source: "./media/characters/nicki/taur.svg",
  33529. extra: 1592/1347,
  33530. bottom: 0/1592
  33531. },
  33532. form: "taur",
  33533. default: true
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Normal",
  33539. height: math.unit(9, "feet"),
  33540. form: "anthro",
  33541. default: true
  33542. },
  33543. {
  33544. name: "Normal",
  33545. height: math.unit(15, "feet"),
  33546. form: "taur",
  33547. default: true
  33548. }
  33549. ],
  33550. {
  33551. "anthro": {
  33552. name: "Anthro",
  33553. default: true
  33554. },
  33555. "taur": {
  33556. name: "Taur"
  33557. }
  33558. }
  33559. ))
  33560. characterMakers.push(() => makeCharacter(
  33561. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33562. {
  33563. front: {
  33564. height: math.unit(7 + 10/12, "feet"),
  33565. weight: math.unit(3.5, "tons"),
  33566. name: "Front",
  33567. image: {
  33568. source: "./media/characters/lee/front.svg",
  33569. extra: 1773/1615,
  33570. bottom: 86/1859
  33571. }
  33572. },
  33573. hand: {
  33574. height: math.unit(1.78, "feet"),
  33575. name: "Hand",
  33576. image: {
  33577. source: "./media/characters/lee/hand.svg"
  33578. }
  33579. },
  33580. maw: {
  33581. height: math.unit(1.18, "feet"),
  33582. name: "Maw",
  33583. image: {
  33584. source: "./media/characters/lee/maw.svg"
  33585. }
  33586. },
  33587. },
  33588. [
  33589. {
  33590. name: "Normal",
  33591. height: math.unit(7 + 10/12, "feet"),
  33592. default: true
  33593. },
  33594. ]
  33595. ))
  33596. characterMakers.push(() => makeCharacter(
  33597. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33598. {
  33599. front: {
  33600. height: math.unit(9, "feet"),
  33601. name: "Front",
  33602. image: {
  33603. source: "./media/characters/guti/front.svg",
  33604. extra: 4551/4355,
  33605. bottom: 123/4674
  33606. }
  33607. },
  33608. tongue: {
  33609. height: math.unit(1, "feet"),
  33610. name: "Tongue",
  33611. image: {
  33612. source: "./media/characters/guti/tongue.svg"
  33613. }
  33614. },
  33615. paw: {
  33616. height: math.unit(1.18, "feet"),
  33617. name: "Paw",
  33618. image: {
  33619. source: "./media/characters/guti/paw.svg"
  33620. }
  33621. },
  33622. },
  33623. [
  33624. {
  33625. name: "Normal",
  33626. height: math.unit(9, "feet"),
  33627. default: true
  33628. },
  33629. ]
  33630. ))
  33631. characterMakers.push(() => makeCharacter(
  33632. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33633. {
  33634. side: {
  33635. height: math.unit(5, "meters"),
  33636. name: "Side",
  33637. image: {
  33638. source: "./media/characters/vesper/side.svg",
  33639. extra: 1605/1518,
  33640. bottom: 0/1605
  33641. }
  33642. },
  33643. },
  33644. [
  33645. {
  33646. name: "Small",
  33647. height: math.unit(5, "meters")
  33648. },
  33649. {
  33650. name: "Sage",
  33651. height: math.unit(100, "meters"),
  33652. default: true
  33653. },
  33654. {
  33655. name: "Fun Size",
  33656. height: math.unit(600, "meters")
  33657. },
  33658. {
  33659. name: "Goddess",
  33660. height: math.unit(20000, "km")
  33661. },
  33662. {
  33663. name: "Maximum",
  33664. height: math.unit(5, "galaxies")
  33665. },
  33666. ]
  33667. ))
  33668. characterMakers.push(() => makeCharacter(
  33669. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33670. {
  33671. front: {
  33672. height: math.unit(6 + 3/12, "feet"),
  33673. weight: math.unit(190, "lb"),
  33674. name: "Front",
  33675. image: {
  33676. source: "./media/characters/gawain/front.svg",
  33677. extra: 2222/2139,
  33678. bottom: 90/2312
  33679. }
  33680. },
  33681. back: {
  33682. height: math.unit(6 + 3/12, "feet"),
  33683. weight: math.unit(190, "lb"),
  33684. name: "Back",
  33685. image: {
  33686. source: "./media/characters/gawain/back.svg",
  33687. extra: 2199/2111,
  33688. bottom: 73/2272
  33689. }
  33690. },
  33691. },
  33692. [
  33693. {
  33694. name: "Normal",
  33695. height: math.unit(6 + 3/12, "feet"),
  33696. default: true
  33697. },
  33698. ]
  33699. ))
  33700. characterMakers.push(() => makeCharacter(
  33701. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33702. {
  33703. side: {
  33704. height: math.unit(3.5, "meters"),
  33705. weight: math.unit(16000, "lb"),
  33706. name: "Side",
  33707. image: {
  33708. source: "./media/characters/dascalti/side.svg",
  33709. extra: 392/273,
  33710. bottom: 47/439
  33711. }
  33712. },
  33713. breath: {
  33714. height: math.unit(7.4, "feet"),
  33715. name: "Breath",
  33716. image: {
  33717. source: "./media/characters/dascalti/breath.svg"
  33718. }
  33719. },
  33720. fed: {
  33721. height: math.unit(3.6, "meters"),
  33722. weight: math.unit(16000, "lb"),
  33723. name: "Fed",
  33724. image: {
  33725. source: "./media/characters/dascalti/fed.svg",
  33726. extra: 1419/820,
  33727. bottom: 95/1514
  33728. }
  33729. },
  33730. },
  33731. [
  33732. {
  33733. name: "Normal",
  33734. height: math.unit(3.5, "meters"),
  33735. default: true
  33736. },
  33737. ]
  33738. ))
  33739. characterMakers.push(() => makeCharacter(
  33740. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33741. {
  33742. front: {
  33743. height: math.unit(3 + 5/12, "feet"),
  33744. name: "Front",
  33745. image: {
  33746. source: "./media/characters/mauve/front.svg",
  33747. extra: 1126/1033,
  33748. bottom: 65/1191
  33749. }
  33750. },
  33751. side: {
  33752. height: math.unit(3 + 5/12, "feet"),
  33753. name: "Side",
  33754. image: {
  33755. source: "./media/characters/mauve/side.svg",
  33756. extra: 1089/1001,
  33757. bottom: 29/1118
  33758. }
  33759. },
  33760. back: {
  33761. height: math.unit(3 + 5/12, "feet"),
  33762. name: "Back",
  33763. image: {
  33764. source: "./media/characters/mauve/back.svg",
  33765. extra: 1173/1053,
  33766. bottom: 109/1282
  33767. }
  33768. },
  33769. },
  33770. [
  33771. {
  33772. name: "Normal",
  33773. height: math.unit(3 + 5/12, "feet"),
  33774. default: true
  33775. },
  33776. ]
  33777. ))
  33778. characterMakers.push(() => makeCharacter(
  33779. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33780. {
  33781. front: {
  33782. height: math.unit(6 + 3/12, "feet"),
  33783. weight: math.unit(430, "lb"),
  33784. name: "Front",
  33785. image: {
  33786. source: "./media/characters/carlos/front.svg",
  33787. extra: 1964/1913,
  33788. bottom: 70/2034
  33789. }
  33790. },
  33791. },
  33792. [
  33793. {
  33794. name: "Normal",
  33795. height: math.unit(6 + 3/12, "feet"),
  33796. default: true
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33802. {
  33803. back: {
  33804. height: math.unit(5 + 10/12, "feet"),
  33805. weight: math.unit(200, "lb"),
  33806. name: "Back",
  33807. image: {
  33808. source: "./media/characters/jax/back.svg",
  33809. extra: 764/739,
  33810. bottom: 25/789
  33811. }
  33812. },
  33813. },
  33814. [
  33815. {
  33816. name: "Normal",
  33817. height: math.unit(5 + 10/12, "feet"),
  33818. default: true
  33819. },
  33820. ]
  33821. ))
  33822. characterMakers.push(() => makeCharacter(
  33823. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33824. {
  33825. front: {
  33826. height: math.unit(8, "feet"),
  33827. weight: math.unit(250, "lb"),
  33828. name: "Front",
  33829. image: {
  33830. source: "./media/characters/eikthynir/front.svg",
  33831. extra: 1332/1166,
  33832. bottom: 82/1414
  33833. }
  33834. },
  33835. back: {
  33836. height: math.unit(8, "feet"),
  33837. weight: math.unit(250, "lb"),
  33838. name: "Back",
  33839. image: {
  33840. source: "./media/characters/eikthynir/back.svg",
  33841. extra: 1342/1190,
  33842. bottom: 19/1361
  33843. }
  33844. },
  33845. dick: {
  33846. height: math.unit(2.35, "feet"),
  33847. name: "Dick",
  33848. image: {
  33849. source: "./media/characters/eikthynir/dick.svg"
  33850. }
  33851. },
  33852. },
  33853. [
  33854. {
  33855. name: "Normal",
  33856. height: math.unit(8, "feet"),
  33857. default: true
  33858. },
  33859. ]
  33860. ))
  33861. characterMakers.push(() => makeCharacter(
  33862. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33863. {
  33864. front: {
  33865. height: math.unit(99, "meters"),
  33866. weight: math.unit(13000, "tons"),
  33867. name: "Front",
  33868. image: {
  33869. source: "./media/characters/zlmos/front.svg",
  33870. extra: 2202/1992,
  33871. bottom: 315/2517
  33872. }
  33873. },
  33874. },
  33875. [
  33876. {
  33877. name: "Macro",
  33878. height: math.unit(99, "meters"),
  33879. default: true
  33880. },
  33881. ]
  33882. ))
  33883. characterMakers.push(() => makeCharacter(
  33884. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33885. {
  33886. front: {
  33887. height: math.unit(6 + 5/12, "feet"),
  33888. name: "Front",
  33889. image: {
  33890. source: "./media/characters/purri/front.svg",
  33891. extra: 1698/1610,
  33892. bottom: 32/1730
  33893. }
  33894. },
  33895. frontAlt: {
  33896. height: math.unit(6 + 5/12, "feet"),
  33897. name: "Front (Alt)",
  33898. image: {
  33899. source: "./media/characters/purri/front-alt.svg",
  33900. extra: 450/420,
  33901. bottom: 26/476
  33902. }
  33903. },
  33904. boots: {
  33905. height: math.unit(5.5, "feet"),
  33906. name: "Boots",
  33907. image: {
  33908. source: "./media/characters/purri/boots.svg",
  33909. extra: 905/853,
  33910. bottom: 18/923
  33911. },
  33912. extraAttributes: {
  33913. "shoeSize": {
  33914. name: "Shoe Size",
  33915. power: 1,
  33916. type: "length",
  33917. base: math.unit(12, "ShoeSizeMensUS")
  33918. },
  33919. "platformHeight": {
  33920. name: "Platform Height",
  33921. power: 1,
  33922. type: "length",
  33923. base: math.unit(2, "inches")
  33924. },
  33925. }
  33926. },
  33927. lying: {
  33928. height: math.unit(2, "feet"),
  33929. name: "Lying",
  33930. image: {
  33931. source: "./media/characters/purri/lying.svg",
  33932. extra: 940/843,
  33933. bottom: 146/1086
  33934. }
  33935. },
  33936. devious: {
  33937. height: math.unit(1.77, "feet"),
  33938. name: "Devious",
  33939. image: {
  33940. source: "./media/characters/purri/devious.svg",
  33941. extra: 1440/1155,
  33942. bottom: 147/1587
  33943. }
  33944. },
  33945. bean: {
  33946. height: math.unit(1.94, "feet"),
  33947. name: "Bean",
  33948. image: {
  33949. source: "./media/characters/purri/bean.svg"
  33950. }
  33951. },
  33952. },
  33953. [
  33954. {
  33955. name: "Micro",
  33956. height: math.unit(1, "mm")
  33957. },
  33958. {
  33959. name: "Normal",
  33960. height: math.unit(6 + 5/12, "feet"),
  33961. default: true
  33962. },
  33963. {
  33964. name: "Macro :3c",
  33965. height: math.unit(2, "miles")
  33966. },
  33967. ]
  33968. ))
  33969. characterMakers.push(() => makeCharacter(
  33970. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33971. {
  33972. front: {
  33973. height: math.unit(6 + 2/12, "feet"),
  33974. weight: math.unit(250, "lb"),
  33975. name: "Front",
  33976. image: {
  33977. source: "./media/characters/moonlight/front.svg",
  33978. extra: 1044/908,
  33979. bottom: 56/1100
  33980. }
  33981. },
  33982. feral: {
  33983. height: math.unit(3 + 1/12, "feet"),
  33984. weight: math.unit(50, "kg"),
  33985. name: "Feral",
  33986. image: {
  33987. source: "./media/characters/moonlight/feral.svg",
  33988. extra: 3705/2791,
  33989. bottom: 145/3850
  33990. }
  33991. },
  33992. paw: {
  33993. height: math.unit(1, "feet"),
  33994. name: "Paw",
  33995. image: {
  33996. source: "./media/characters/moonlight/paw.svg"
  33997. }
  33998. },
  33999. paws: {
  34000. height: math.unit(0.98, "feet"),
  34001. name: "Paws",
  34002. image: {
  34003. source: "./media/characters/moonlight/paws.svg",
  34004. extra: 939/939,
  34005. bottom: 50/989
  34006. }
  34007. },
  34008. mouth: {
  34009. height: math.unit(0.48, "feet"),
  34010. name: "Mouth",
  34011. image: {
  34012. source: "./media/characters/moonlight/mouth.svg"
  34013. }
  34014. },
  34015. dick: {
  34016. height: math.unit(1.46, "feet"),
  34017. name: "Dick",
  34018. image: {
  34019. source: "./media/characters/moonlight/dick.svg"
  34020. }
  34021. },
  34022. },
  34023. [
  34024. {
  34025. name: "Normal",
  34026. height: math.unit(6 + 2/12, "feet"),
  34027. default: true
  34028. },
  34029. {
  34030. name: "Macro",
  34031. height: math.unit(300, "feet")
  34032. },
  34033. {
  34034. name: "Macro+",
  34035. height: math.unit(1, "mile")
  34036. },
  34037. {
  34038. name: "Mt. Moon",
  34039. height: math.unit(5, "miles")
  34040. },
  34041. {
  34042. name: "Megamacro",
  34043. height: math.unit(15, "miles")
  34044. },
  34045. ]
  34046. ))
  34047. characterMakers.push(() => makeCharacter(
  34048. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34049. {
  34050. back: {
  34051. height: math.unit(6, "feet"),
  34052. weight: math.unit(150, "lb"),
  34053. name: "Back",
  34054. image: {
  34055. source: "./media/characters/sylen/back.svg",
  34056. extra: 1335/1273,
  34057. bottom: 107/1442
  34058. }
  34059. },
  34060. },
  34061. [
  34062. {
  34063. name: "Normal",
  34064. height: math.unit(5 + 5/12, "feet")
  34065. },
  34066. {
  34067. name: "Megamacro",
  34068. height: math.unit(3, "miles"),
  34069. default: true
  34070. },
  34071. ]
  34072. ))
  34073. characterMakers.push(() => makeCharacter(
  34074. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34075. {
  34076. front: {
  34077. height: math.unit(6, "feet"),
  34078. weight: math.unit(190, "lb"),
  34079. name: "Front",
  34080. image: {
  34081. source: "./media/characters/huttser/front.svg",
  34082. extra: 1152/1058,
  34083. bottom: 23/1175
  34084. }
  34085. },
  34086. side: {
  34087. height: math.unit(6, "feet"),
  34088. weight: math.unit(190, "lb"),
  34089. name: "Side",
  34090. image: {
  34091. source: "./media/characters/huttser/side.svg",
  34092. extra: 1174/1065,
  34093. bottom: 18/1192
  34094. }
  34095. },
  34096. back: {
  34097. height: math.unit(6, "feet"),
  34098. weight: math.unit(190, "lb"),
  34099. name: "Back",
  34100. image: {
  34101. source: "./media/characters/huttser/back.svg",
  34102. extra: 1158/1056,
  34103. bottom: 12/1170
  34104. }
  34105. },
  34106. },
  34107. [
  34108. ]
  34109. ))
  34110. characterMakers.push(() => makeCharacter(
  34111. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34112. {
  34113. side: {
  34114. height: math.unit(12 + 9/12, "feet"),
  34115. weight: math.unit(15000, "lb"),
  34116. name: "Side",
  34117. image: {
  34118. source: "./media/characters/faan/side.svg",
  34119. extra: 2747/2697,
  34120. bottom: 0/2747
  34121. }
  34122. },
  34123. front: {
  34124. height: math.unit(12 + 9/12, "feet"),
  34125. weight: math.unit(15000, "lb"),
  34126. name: "Front",
  34127. image: {
  34128. source: "./media/characters/faan/front.svg",
  34129. extra: 607/571,
  34130. bottom: 24/631
  34131. }
  34132. },
  34133. head: {
  34134. height: math.unit(2.85, "feet"),
  34135. name: "Head",
  34136. image: {
  34137. source: "./media/characters/faan/head.svg"
  34138. }
  34139. },
  34140. headAlt: {
  34141. height: math.unit(3.13, "feet"),
  34142. name: "Head-alt",
  34143. image: {
  34144. source: "./media/characters/faan/head-alt.svg"
  34145. }
  34146. },
  34147. },
  34148. [
  34149. {
  34150. name: "Normal",
  34151. height: math.unit(12 + 9/12, "feet"),
  34152. default: true
  34153. },
  34154. ]
  34155. ))
  34156. characterMakers.push(() => makeCharacter(
  34157. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34158. {
  34159. front: {
  34160. height: math.unit(6, "feet"),
  34161. weight: math.unit(300, "lb"),
  34162. name: "Front",
  34163. image: {
  34164. source: "./media/characters/tanio/front.svg",
  34165. extra: 711/673,
  34166. bottom: 25/736
  34167. }
  34168. },
  34169. },
  34170. [
  34171. {
  34172. name: "Normal",
  34173. height: math.unit(6, "feet"),
  34174. default: true
  34175. },
  34176. ]
  34177. ))
  34178. characterMakers.push(() => makeCharacter(
  34179. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34180. {
  34181. front: {
  34182. height: math.unit(3, "inches"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/noboru/front.svg",
  34186. extra: 1039/932,
  34187. bottom: 18/1057
  34188. }
  34189. },
  34190. },
  34191. [
  34192. {
  34193. name: "Micro",
  34194. height: math.unit(3, "inches"),
  34195. default: true
  34196. },
  34197. ]
  34198. ))
  34199. characterMakers.push(() => makeCharacter(
  34200. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34201. {
  34202. front: {
  34203. height: math.unit(1.85, "meters"),
  34204. weight: math.unit(80, "kg"),
  34205. name: "Front",
  34206. image: {
  34207. source: "./media/characters/daniel-barrett/front.svg",
  34208. extra: 355/337,
  34209. bottom: 9/364
  34210. }
  34211. },
  34212. },
  34213. [
  34214. {
  34215. name: "Pico",
  34216. height: math.unit(0.0433, "mm")
  34217. },
  34218. {
  34219. name: "Nano",
  34220. height: math.unit(1.5, "mm")
  34221. },
  34222. {
  34223. name: "Micro",
  34224. height: math.unit(5.3, "cm"),
  34225. default: true
  34226. },
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(1.85, "meters")
  34230. },
  34231. {
  34232. name: "Macro",
  34233. height: math.unit(64.7, "meters")
  34234. },
  34235. {
  34236. name: "Megamacro",
  34237. height: math.unit(2.26, "km")
  34238. },
  34239. {
  34240. name: "Gigamacro",
  34241. height: math.unit(79, "km")
  34242. },
  34243. {
  34244. name: "Teramacro",
  34245. height: math.unit(2765, "km")
  34246. },
  34247. {
  34248. name: "Petamacro",
  34249. height: math.unit(96678, "km")
  34250. },
  34251. ]
  34252. ))
  34253. characterMakers.push(() => makeCharacter(
  34254. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34255. {
  34256. front: {
  34257. height: math.unit(30, "meters"),
  34258. weight: math.unit(400, "tons"),
  34259. name: "Front",
  34260. image: {
  34261. source: "./media/characters/zeel/front.svg",
  34262. extra: 2599/2599,
  34263. bottom: 226/2825
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Macro",
  34270. height: math.unit(30, "meters"),
  34271. default: true
  34272. },
  34273. ]
  34274. ))
  34275. characterMakers.push(() => makeCharacter(
  34276. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34277. {
  34278. front: {
  34279. height: math.unit(6 + 7/12, "feet"),
  34280. weight: math.unit(210, "lb"),
  34281. name: "Front",
  34282. image: {
  34283. source: "./media/characters/tarn/front.svg",
  34284. extra: 3517/3220,
  34285. bottom: 91/3608
  34286. }
  34287. },
  34288. back: {
  34289. height: math.unit(6 + 7/12, "feet"),
  34290. weight: math.unit(210, "lb"),
  34291. name: "Back",
  34292. image: {
  34293. source: "./media/characters/tarn/back.svg",
  34294. extra: 3566/3241,
  34295. bottom: 34/3600
  34296. }
  34297. },
  34298. dick: {
  34299. height: math.unit(1.65, "feet"),
  34300. name: "Dick",
  34301. image: {
  34302. source: "./media/characters/tarn/dick.svg"
  34303. }
  34304. },
  34305. paw: {
  34306. height: math.unit(1.80, "feet"),
  34307. name: "Paw",
  34308. image: {
  34309. source: "./media/characters/tarn/paw.svg"
  34310. }
  34311. },
  34312. tongue: {
  34313. height: math.unit(0.97, "feet"),
  34314. name: "Tongue",
  34315. image: {
  34316. source: "./media/characters/tarn/tongue.svg"
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Micro",
  34323. height: math.unit(4, "inches")
  34324. },
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(6 + 7/12, "feet"),
  34328. default: true
  34329. },
  34330. {
  34331. name: "Macro",
  34332. height: math.unit(300, "feet")
  34333. },
  34334. ]
  34335. ))
  34336. characterMakers.push(() => makeCharacter(
  34337. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34338. {
  34339. front: {
  34340. height: math.unit(5 + 7/12, "feet"),
  34341. weight: math.unit(80, "kg"),
  34342. name: "Front",
  34343. image: {
  34344. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34345. extra: 3023/2865,
  34346. bottom: 33/3056
  34347. }
  34348. },
  34349. back: {
  34350. height: math.unit(5 + 7/12, "feet"),
  34351. weight: math.unit(80, "kg"),
  34352. name: "Back",
  34353. image: {
  34354. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34355. extra: 3020/2886,
  34356. bottom: 30/3050
  34357. }
  34358. },
  34359. dick: {
  34360. height: math.unit(0.98, "feet"),
  34361. name: "Dick",
  34362. image: {
  34363. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34364. }
  34365. },
  34366. anatomy: {
  34367. height: math.unit(2.86, "feet"),
  34368. name: "Anatomy",
  34369. image: {
  34370. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34371. }
  34372. },
  34373. },
  34374. [
  34375. {
  34376. name: "Really Small",
  34377. height: math.unit(2, "inches")
  34378. },
  34379. {
  34380. name: "Micro",
  34381. height: math.unit(5.583, "inches")
  34382. },
  34383. {
  34384. name: "Normal",
  34385. height: math.unit(5 + 7/12, "feet"),
  34386. default: true
  34387. },
  34388. {
  34389. name: "Macro",
  34390. height: math.unit(67, "feet")
  34391. },
  34392. {
  34393. name: "Megamacro",
  34394. height: math.unit(134, "feet")
  34395. },
  34396. ]
  34397. ))
  34398. characterMakers.push(() => makeCharacter(
  34399. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34400. {
  34401. front: {
  34402. height: math.unit(9, "feet"),
  34403. weight: math.unit(120, "lb"),
  34404. name: "Front",
  34405. image: {
  34406. source: "./media/characters/sally/front.svg",
  34407. extra: 1506/1349,
  34408. bottom: 66/1572
  34409. }
  34410. },
  34411. },
  34412. [
  34413. {
  34414. name: "Normal",
  34415. height: math.unit(9, "feet"),
  34416. default: true
  34417. },
  34418. ]
  34419. ))
  34420. characterMakers.push(() => makeCharacter(
  34421. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34422. {
  34423. front: {
  34424. height: math.unit(8, "feet"),
  34425. weight: math.unit(900, "lb"),
  34426. name: "Front",
  34427. image: {
  34428. source: "./media/characters/owen/front.svg",
  34429. extra: 1761/1657,
  34430. bottom: 74/1835
  34431. }
  34432. },
  34433. side: {
  34434. height: math.unit(8, "feet"),
  34435. weight: math.unit(900, "lb"),
  34436. name: "Side",
  34437. image: {
  34438. source: "./media/characters/owen/side.svg",
  34439. extra: 1797/1734,
  34440. bottom: 30/1827
  34441. }
  34442. },
  34443. back: {
  34444. height: math.unit(8, "feet"),
  34445. weight: math.unit(900, "lb"),
  34446. name: "Back",
  34447. image: {
  34448. source: "./media/characters/owen/back.svg",
  34449. extra: 1796/1706,
  34450. bottom: 59/1855
  34451. }
  34452. },
  34453. maw: {
  34454. height: math.unit(1.76, "feet"),
  34455. name: "Maw",
  34456. image: {
  34457. source: "./media/characters/owen/maw.svg"
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(8, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34471. {
  34472. front: {
  34473. height: math.unit(4, "feet"),
  34474. weight: math.unit(400, "lb"),
  34475. name: "Front",
  34476. image: {
  34477. source: "./media/characters/ryth/front.svg",
  34478. extra: 1920/1748,
  34479. bottom: 42/1962
  34480. }
  34481. },
  34482. back: {
  34483. height: math.unit(4, "feet"),
  34484. weight: math.unit(400, "lb"),
  34485. name: "Back",
  34486. image: {
  34487. source: "./media/characters/ryth/back.svg",
  34488. extra: 1897/1690,
  34489. bottom: 89/1986
  34490. }
  34491. },
  34492. mouth: {
  34493. height: math.unit(1.39, "feet"),
  34494. name: "Mouth",
  34495. image: {
  34496. source: "./media/characters/ryth/mouth.svg"
  34497. }
  34498. },
  34499. tailmaw: {
  34500. height: math.unit(1.23, "feet"),
  34501. name: "Tailmaw",
  34502. image: {
  34503. source: "./media/characters/ryth/tailmaw.svg"
  34504. }
  34505. },
  34506. goia: {
  34507. height: math.unit(4, "meters"),
  34508. weight: math.unit(10800, "lb"),
  34509. name: "Goia",
  34510. image: {
  34511. source: "./media/characters/ryth/goia.svg",
  34512. extra: 745/640,
  34513. bottom: 107/852
  34514. }
  34515. },
  34516. goiaFront: {
  34517. height: math.unit(4, "meters"),
  34518. weight: math.unit(10800, "lb"),
  34519. name: "Goia (Front)",
  34520. image: {
  34521. source: "./media/characters/ryth/goia-front.svg",
  34522. extra: 750/586,
  34523. bottom: 114/864
  34524. }
  34525. },
  34526. goiaMaw: {
  34527. height: math.unit(5.55, "feet"),
  34528. name: "Goia Maw",
  34529. image: {
  34530. source: "./media/characters/ryth/goia-maw.svg"
  34531. }
  34532. },
  34533. goiaForepaw: {
  34534. height: math.unit(3.5, "feet"),
  34535. name: "Goia Forepaw",
  34536. image: {
  34537. source: "./media/characters/ryth/goia-forepaw.svg"
  34538. }
  34539. },
  34540. goiaHindpaw: {
  34541. height: math.unit(5.55, "feet"),
  34542. name: "Goia Hindpaw",
  34543. image: {
  34544. source: "./media/characters/ryth/goia-hindpaw.svg"
  34545. }
  34546. },
  34547. },
  34548. [
  34549. {
  34550. name: "Normal",
  34551. height: math.unit(4, "feet"),
  34552. default: true
  34553. },
  34554. ]
  34555. ))
  34556. characterMakers.push(() => makeCharacter(
  34557. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34558. {
  34559. front: {
  34560. height: math.unit(7, "feet"),
  34561. weight: math.unit(180, "lb"),
  34562. name: "Front",
  34563. image: {
  34564. source: "./media/characters/necrolance/front.svg",
  34565. extra: 1062/947,
  34566. bottom: 41/1103
  34567. }
  34568. },
  34569. back: {
  34570. height: math.unit(7, "feet"),
  34571. weight: math.unit(180, "lb"),
  34572. name: "Back",
  34573. image: {
  34574. source: "./media/characters/necrolance/back.svg",
  34575. extra: 1045/984,
  34576. bottom: 14/1059
  34577. }
  34578. },
  34579. wing: {
  34580. height: math.unit(2.67, "feet"),
  34581. name: "Wing",
  34582. image: {
  34583. source: "./media/characters/necrolance/wing.svg"
  34584. }
  34585. },
  34586. },
  34587. [
  34588. {
  34589. name: "Normal",
  34590. height: math.unit(7, "feet"),
  34591. default: true
  34592. },
  34593. ]
  34594. ))
  34595. characterMakers.push(() => makeCharacter(
  34596. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34597. {
  34598. front: {
  34599. height: math.unit(76, "meters"),
  34600. weight: math.unit(30000, "tons"),
  34601. name: "Front",
  34602. image: {
  34603. source: "./media/characters/tyler/front.svg",
  34604. extra: 1640/1640,
  34605. bottom: 114/1754
  34606. }
  34607. },
  34608. },
  34609. [
  34610. {
  34611. name: "Macro",
  34612. height: math.unit(76, "meters"),
  34613. default: true
  34614. },
  34615. ]
  34616. ))
  34617. characterMakers.push(() => makeCharacter(
  34618. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34619. {
  34620. front: {
  34621. height: math.unit(4 + 11/12, "feet"),
  34622. weight: math.unit(132, "lb"),
  34623. name: "Front",
  34624. image: {
  34625. source: "./media/characters/icey/front.svg",
  34626. extra: 2750/2550,
  34627. bottom: 33/2783
  34628. }
  34629. },
  34630. back: {
  34631. height: math.unit(4 + 11/12, "feet"),
  34632. weight: math.unit(132, "lb"),
  34633. name: "Back",
  34634. image: {
  34635. source: "./media/characters/icey/back.svg",
  34636. extra: 2624/2481,
  34637. bottom: 35/2659
  34638. }
  34639. },
  34640. },
  34641. [
  34642. {
  34643. name: "Normal",
  34644. height: math.unit(4 + 11/12, "feet"),
  34645. default: true
  34646. },
  34647. ]
  34648. ))
  34649. characterMakers.push(() => makeCharacter(
  34650. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34651. {
  34652. front: {
  34653. height: math.unit(100, "feet"),
  34654. weight: math.unit(0, "lb"),
  34655. name: "Front",
  34656. image: {
  34657. source: "./media/characters/smile/front.svg",
  34658. extra: 2983/2912,
  34659. bottom: 162/3145
  34660. }
  34661. },
  34662. back: {
  34663. height: math.unit(100, "feet"),
  34664. weight: math.unit(0, "lb"),
  34665. name: "Back",
  34666. image: {
  34667. source: "./media/characters/smile/back.svg",
  34668. extra: 3143/3031,
  34669. bottom: 91/3234
  34670. }
  34671. },
  34672. head: {
  34673. height: math.unit(26.3, "feet"),
  34674. weight: math.unit(0, "lb"),
  34675. name: "Head",
  34676. image: {
  34677. source: "./media/characters/smile/head.svg"
  34678. }
  34679. },
  34680. collar: {
  34681. height: math.unit(5.3, "feet"),
  34682. weight: math.unit(0, "lb"),
  34683. name: "Collar",
  34684. image: {
  34685. source: "./media/characters/smile/collar.svg"
  34686. }
  34687. },
  34688. },
  34689. [
  34690. {
  34691. name: "Macro",
  34692. height: math.unit(100, "feet"),
  34693. default: true
  34694. },
  34695. ]
  34696. ))
  34697. characterMakers.push(() => makeCharacter(
  34698. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34699. {
  34700. dragon: {
  34701. height: math.unit(26, "feet"),
  34702. weight: math.unit(36, "tons"),
  34703. name: "Dragon",
  34704. image: {
  34705. source: "./media/characters/arimphae/dragon.svg",
  34706. extra: 1574/983,
  34707. bottom: 357/1931
  34708. }
  34709. },
  34710. drake: {
  34711. height: math.unit(9, "feet"),
  34712. weight: math.unit(1.5, "tons"),
  34713. name: "Drake",
  34714. image: {
  34715. source: "./media/characters/arimphae/drake.svg",
  34716. extra: 1120/925,
  34717. bottom: 435/1555
  34718. }
  34719. },
  34720. },
  34721. [
  34722. {
  34723. name: "Small",
  34724. height: math.unit(26*5/9, "feet")
  34725. },
  34726. {
  34727. name: "Normal",
  34728. height: math.unit(26, "feet"),
  34729. default: true
  34730. },
  34731. ]
  34732. ))
  34733. characterMakers.push(() => makeCharacter(
  34734. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34735. {
  34736. front: {
  34737. height: math.unit(8 + 9/12, "feet"),
  34738. name: "Front",
  34739. image: {
  34740. source: "./media/characters/xander/front.svg",
  34741. extra: 1237/974,
  34742. bottom: 94/1331
  34743. }
  34744. },
  34745. },
  34746. [
  34747. {
  34748. name: "Normal",
  34749. height: math.unit(8 + 9/12, "feet"),
  34750. default: true
  34751. },
  34752. {
  34753. name: "Gaze Grabber",
  34754. height: math.unit(13 + 8/12, "feet")
  34755. },
  34756. {
  34757. name: "Jaw Dropper",
  34758. height: math.unit(27, "feet")
  34759. },
  34760. {
  34761. name: "Show Stopper",
  34762. height: math.unit(136, "feet")
  34763. },
  34764. {
  34765. name: "Superstar",
  34766. height: math.unit(1.9e6, "miles")
  34767. },
  34768. ]
  34769. ))
  34770. characterMakers.push(() => makeCharacter(
  34771. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34772. {
  34773. side: {
  34774. height: math.unit(2100, "feet"),
  34775. name: "Side",
  34776. image: {
  34777. source: "./media/characters/osiris/side.svg",
  34778. extra: 1105/939,
  34779. bottom: 167/1272
  34780. }
  34781. },
  34782. },
  34783. [
  34784. {
  34785. name: "Macro",
  34786. height: math.unit(2100, "feet"),
  34787. default: true
  34788. },
  34789. ]
  34790. ))
  34791. characterMakers.push(() => makeCharacter(
  34792. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34793. {
  34794. front: {
  34795. height: math.unit(6 + 8/12, "feet"),
  34796. weight: math.unit(225, "lb"),
  34797. name: "Front",
  34798. image: {
  34799. source: "./media/characters/rhys-londe/front.svg",
  34800. extra: 2258/2141,
  34801. bottom: 188/2446
  34802. }
  34803. },
  34804. back: {
  34805. height: math.unit(6 + 8/12, "feet"),
  34806. weight: math.unit(225, "lb"),
  34807. name: "Back",
  34808. image: {
  34809. source: "./media/characters/rhys-londe/back.svg",
  34810. extra: 2237/2137,
  34811. bottom: 63/2300
  34812. }
  34813. },
  34814. frontNsfw: {
  34815. height: math.unit(6 + 8/12, "feet"),
  34816. weight: math.unit(225, "lb"),
  34817. name: "Front (NSFW)",
  34818. image: {
  34819. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34820. extra: 2258/2141,
  34821. bottom: 188/2446
  34822. }
  34823. },
  34824. backNsfw: {
  34825. height: math.unit(6 + 8/12, "feet"),
  34826. weight: math.unit(225, "lb"),
  34827. name: "Back (NSFW)",
  34828. image: {
  34829. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34830. extra: 2237/2137,
  34831. bottom: 63/2300
  34832. }
  34833. },
  34834. dick: {
  34835. height: math.unit(30, "inches"),
  34836. name: "Dick",
  34837. image: {
  34838. source: "./media/characters/rhys-londe/dick.svg"
  34839. }
  34840. },
  34841. maw: {
  34842. height: math.unit(1.6, "feet"),
  34843. name: "Maw",
  34844. image: {
  34845. source: "./media/characters/rhys-londe/maw.svg"
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(6 + 8/12, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(3 + 10/12, "feet"),
  34862. weight: math.unit(90, "lb"),
  34863. name: "Front",
  34864. image: {
  34865. source: "./media/characters/taivas-ensim/front.svg",
  34866. extra: 1327/1216,
  34867. bottom: 96/1423
  34868. }
  34869. },
  34870. back: {
  34871. height: math.unit(3 + 10/12, "feet"),
  34872. weight: math.unit(90, "lb"),
  34873. name: "Back",
  34874. image: {
  34875. source: "./media/characters/taivas-ensim/back.svg",
  34876. extra: 1355/1247,
  34877. bottom: 11/1366
  34878. }
  34879. },
  34880. frontNsfw: {
  34881. height: math.unit(3 + 10/12, "feet"),
  34882. weight: math.unit(90, "lb"),
  34883. name: "Front (NSFW)",
  34884. image: {
  34885. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34886. extra: 1327/1216,
  34887. bottom: 96/1423
  34888. }
  34889. },
  34890. backNsfw: {
  34891. height: math.unit(3 + 10/12, "feet"),
  34892. weight: math.unit(90, "lb"),
  34893. name: "Back (NSFW)",
  34894. image: {
  34895. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34896. extra: 1355/1247,
  34897. bottom: 11/1366
  34898. }
  34899. },
  34900. },
  34901. [
  34902. {
  34903. name: "Normal",
  34904. height: math.unit(3 + 10/12, "feet"),
  34905. default: true
  34906. },
  34907. ]
  34908. ))
  34909. characterMakers.push(() => makeCharacter(
  34910. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34911. {
  34912. front: {
  34913. height: math.unit(9 + 6/12, "feet"),
  34914. weight: math.unit(940, "lb"),
  34915. name: "Front",
  34916. image: {
  34917. source: "./media/characters/byliss/front.svg",
  34918. extra: 1327/1290,
  34919. bottom: 82/1409
  34920. }
  34921. },
  34922. back: {
  34923. height: math.unit(9 + 6/12, "feet"),
  34924. weight: math.unit(940, "lb"),
  34925. name: "Back",
  34926. image: {
  34927. source: "./media/characters/byliss/back.svg",
  34928. extra: 1376/1349,
  34929. bottom: 9/1385
  34930. }
  34931. },
  34932. frontNsfw: {
  34933. height: math.unit(9 + 6/12, "feet"),
  34934. weight: math.unit(940, "lb"),
  34935. name: "Front (NSFW)",
  34936. image: {
  34937. source: "./media/characters/byliss/front-nsfw.svg",
  34938. extra: 1327/1290,
  34939. bottom: 82/1409
  34940. }
  34941. },
  34942. backNsfw: {
  34943. height: math.unit(9 + 6/12, "feet"),
  34944. weight: math.unit(940, "lb"),
  34945. name: "Back (NSFW)",
  34946. image: {
  34947. source: "./media/characters/byliss/back-nsfw.svg",
  34948. extra: 1376/1349,
  34949. bottom: 9/1385
  34950. }
  34951. },
  34952. },
  34953. [
  34954. {
  34955. name: "Normal",
  34956. height: math.unit(9 + 6/12, "feet"),
  34957. default: true
  34958. },
  34959. ]
  34960. ))
  34961. characterMakers.push(() => makeCharacter(
  34962. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34963. {
  34964. front: {
  34965. height: math.unit(5 + 2/12, "feet"),
  34966. weight: math.unit(200, "lb"),
  34967. name: "Front",
  34968. image: {
  34969. source: "./media/characters/noraly/front.svg",
  34970. extra: 4985/4773,
  34971. bottom: 150/5135
  34972. }
  34973. },
  34974. full: {
  34975. height: math.unit(5 + 2/12, "feet"),
  34976. weight: math.unit(164, "lb"),
  34977. name: "Full",
  34978. image: {
  34979. source: "./media/characters/noraly/full.svg",
  34980. extra: 1114/1059,
  34981. bottom: 35/1149
  34982. }
  34983. },
  34984. fuller: {
  34985. height: math.unit(5 + 2/12, "feet"),
  34986. weight: math.unit(230, "lb"),
  34987. name: "Fuller",
  34988. image: {
  34989. source: "./media/characters/noraly/fuller.svg",
  34990. extra: 1114/1059,
  34991. bottom: 35/1149
  34992. }
  34993. },
  34994. fullest: {
  34995. height: math.unit(5 + 2/12, "feet"),
  34996. weight: math.unit(300, "lb"),
  34997. name: "Fullest",
  34998. image: {
  34999. source: "./media/characters/noraly/fullest.svg",
  35000. extra: 1114/1059,
  35001. bottom: 35/1149
  35002. }
  35003. },
  35004. },
  35005. [
  35006. {
  35007. name: "Normal",
  35008. height: math.unit(5 + 2/12, "feet"),
  35009. default: true
  35010. },
  35011. ]
  35012. ))
  35013. characterMakers.push(() => makeCharacter(
  35014. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35015. {
  35016. front: {
  35017. height: math.unit(5 + 2/12, "feet"),
  35018. weight: math.unit(210, "lb"),
  35019. name: "Front",
  35020. image: {
  35021. source: "./media/characters/pera/front.svg",
  35022. extra: 1560/1531,
  35023. bottom: 165/1725
  35024. }
  35025. },
  35026. back: {
  35027. height: math.unit(5 + 2/12, "feet"),
  35028. weight: math.unit(210, "lb"),
  35029. name: "Back",
  35030. image: {
  35031. source: "./media/characters/pera/back.svg",
  35032. extra: 1523/1493,
  35033. bottom: 152/1675
  35034. }
  35035. },
  35036. dick: {
  35037. height: math.unit(2.4, "feet"),
  35038. name: "Dick",
  35039. image: {
  35040. source: "./media/characters/pera/dick.svg"
  35041. }
  35042. },
  35043. },
  35044. [
  35045. {
  35046. name: "Normal",
  35047. height: math.unit(5 + 2/12, "feet"),
  35048. default: true
  35049. },
  35050. ]
  35051. ))
  35052. characterMakers.push(() => makeCharacter(
  35053. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35054. {
  35055. front: {
  35056. height: math.unit(12, "feet"),
  35057. weight: math.unit(3200, "lb"),
  35058. name: "Front",
  35059. image: {
  35060. source: "./media/characters/julian/front.svg",
  35061. extra: 2962/2701,
  35062. bottom: 184/3146
  35063. }
  35064. },
  35065. maw: {
  35066. height: math.unit(5.35, "feet"),
  35067. name: "Maw",
  35068. image: {
  35069. source: "./media/characters/julian/maw.svg"
  35070. }
  35071. },
  35072. paw: {
  35073. height: math.unit(3.07, "feet"),
  35074. name: "Paw",
  35075. image: {
  35076. source: "./media/characters/julian/paw.svg"
  35077. }
  35078. },
  35079. },
  35080. [
  35081. {
  35082. name: "Default",
  35083. height: math.unit(12, "feet"),
  35084. default: true
  35085. },
  35086. {
  35087. name: "Big",
  35088. height: math.unit(50, "feet")
  35089. },
  35090. {
  35091. name: "Really Big",
  35092. height: math.unit(1, "mile")
  35093. },
  35094. {
  35095. name: "Extremely Big",
  35096. height: math.unit(100, "miles")
  35097. },
  35098. {
  35099. name: "Planet Hugger",
  35100. height: math.unit(200, "megameters")
  35101. },
  35102. {
  35103. name: "Unreasonably Big",
  35104. height: math.unit(1e300, "meters")
  35105. },
  35106. ]
  35107. ))
  35108. characterMakers.push(() => makeCharacter(
  35109. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35110. {
  35111. solgooleo: {
  35112. height: math.unit(4, "meters"),
  35113. weight: math.unit(6000*1.5, "kg"),
  35114. volume: math.unit(6000, "liters"),
  35115. name: "Solgooleo",
  35116. image: {
  35117. source: "./media/characters/pi/solgooleo.svg",
  35118. extra: 388/331,
  35119. bottom: 29/417
  35120. }
  35121. },
  35122. },
  35123. [
  35124. {
  35125. name: "Normal",
  35126. height: math.unit(4, "meters"),
  35127. default: true
  35128. },
  35129. ]
  35130. ))
  35131. characterMakers.push(() => makeCharacter(
  35132. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35133. {
  35134. front: {
  35135. height: math.unit(8, "feet"),
  35136. weight: math.unit(4, "tons"),
  35137. name: "Front",
  35138. image: {
  35139. source: "./media/characters/shaun/front.svg",
  35140. extra: 503/495,
  35141. bottom: 20/523
  35142. }
  35143. },
  35144. back: {
  35145. height: math.unit(8, "feet"),
  35146. weight: math.unit(4, "tons"),
  35147. name: "Back",
  35148. image: {
  35149. source: "./media/characters/shaun/back.svg",
  35150. extra: 487/480,
  35151. bottom: 20/507
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Lorg",
  35158. height: math.unit(8, "feet"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35165. {
  35166. frontAnthro: {
  35167. height: math.unit(7, "feet"),
  35168. name: "Front",
  35169. image: {
  35170. source: "./media/characters/sini/front-anthro.svg",
  35171. extra: 726/678,
  35172. bottom: 35/761
  35173. },
  35174. form: "anthro",
  35175. default: true
  35176. },
  35177. backAnthro: {
  35178. height: math.unit(7, "feet"),
  35179. name: "Back",
  35180. image: {
  35181. source: "./media/characters/sini/back-anthro.svg",
  35182. extra: 743/701,
  35183. bottom: 12/755
  35184. },
  35185. form: "anthro",
  35186. },
  35187. frontAnthroNsfw: {
  35188. height: math.unit(7, "feet"),
  35189. name: "Front (NSFW)",
  35190. image: {
  35191. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35192. extra: 726/678,
  35193. bottom: 35/761
  35194. },
  35195. form: "anthro"
  35196. },
  35197. backAnthroNsfw: {
  35198. height: math.unit(7, "feet"),
  35199. name: "Back (NSFW)",
  35200. image: {
  35201. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35202. extra: 743/701,
  35203. bottom: 12/755
  35204. },
  35205. form: "anthro",
  35206. },
  35207. mawAnthro: {
  35208. height: math.unit(2.14, "feet"),
  35209. name: "Maw",
  35210. image: {
  35211. source: "./media/characters/sini/maw-anthro.svg"
  35212. },
  35213. form: "anthro"
  35214. },
  35215. dick: {
  35216. height: math.unit(1.45, "feet"),
  35217. name: "Dick",
  35218. image: {
  35219. source: "./media/characters/sini/dick-anthro.svg"
  35220. },
  35221. form: "anthro"
  35222. },
  35223. feral: {
  35224. height: math.unit(16, "feet"),
  35225. name: "Feral",
  35226. image: {
  35227. source: "./media/characters/sini/feral.svg",
  35228. extra: 814/605,
  35229. bottom: 11/825
  35230. },
  35231. form: "feral",
  35232. default: true
  35233. },
  35234. feralNsfw: {
  35235. height: math.unit(16, "feet"),
  35236. name: "Feral (NSFW)",
  35237. image: {
  35238. source: "./media/characters/sini/feral-nsfw.svg",
  35239. extra: 814/605,
  35240. bottom: 11/825
  35241. },
  35242. form: "feral"
  35243. },
  35244. mawFeral: {
  35245. height: math.unit(5.66, "feet"),
  35246. name: "Maw",
  35247. image: {
  35248. source: "./media/characters/sini/maw-feral.svg"
  35249. },
  35250. form: "feral",
  35251. },
  35252. pawFeral: {
  35253. height: math.unit(5.17, "feet"),
  35254. name: "Paw",
  35255. image: {
  35256. source: "./media/characters/sini/paw-feral.svg"
  35257. },
  35258. form: "feral",
  35259. },
  35260. rumpFeral: {
  35261. height: math.unit(13.11, "feet"),
  35262. name: "Rump",
  35263. image: {
  35264. source: "./media/characters/sini/rump-feral.svg"
  35265. },
  35266. form: "feral",
  35267. },
  35268. dickFeral: {
  35269. height: math.unit(1, "feet"),
  35270. name: "Dick",
  35271. image: {
  35272. source: "./media/characters/sini/dick-feral.svg"
  35273. },
  35274. form: "feral",
  35275. },
  35276. eyeFeral: {
  35277. height: math.unit(1.23, "feet"),
  35278. name: "Eye",
  35279. image: {
  35280. source: "./media/characters/sini/eye-feral.svg"
  35281. },
  35282. form: "feral",
  35283. },
  35284. },
  35285. [
  35286. {
  35287. name: "Normal",
  35288. height: math.unit(7, "feet"),
  35289. default: true,
  35290. form: "anthro"
  35291. },
  35292. {
  35293. name: "Normal",
  35294. height: math.unit(16, "feet"),
  35295. default: true,
  35296. form: "feral"
  35297. },
  35298. ],
  35299. {
  35300. "anthro": {
  35301. name: "Anthro",
  35302. default: true
  35303. },
  35304. "feral": {
  35305. name: "Feral",
  35306. }
  35307. }
  35308. ))
  35309. characterMakers.push(() => makeCharacter(
  35310. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35311. {
  35312. side: {
  35313. height: math.unit(47.2, "meters"),
  35314. weight: math.unit(10000, "tons"),
  35315. name: "Side",
  35316. image: {
  35317. source: "./media/characters/raylldo/side.svg",
  35318. extra: 2363/642,
  35319. bottom: 221/2584
  35320. }
  35321. },
  35322. top: {
  35323. height: math.unit(240, "meters"),
  35324. weight: math.unit(10000, "tons"),
  35325. name: "Top",
  35326. image: {
  35327. source: "./media/characters/raylldo/top.svg"
  35328. }
  35329. },
  35330. bottom: {
  35331. height: math.unit(240, "meters"),
  35332. weight: math.unit(10000, "tons"),
  35333. name: "Bottom",
  35334. image: {
  35335. source: "./media/characters/raylldo/bottom.svg"
  35336. }
  35337. },
  35338. head: {
  35339. height: math.unit(38.6, "meters"),
  35340. name: "Head",
  35341. image: {
  35342. source: "./media/characters/raylldo/head.svg",
  35343. extra: 1335/1112,
  35344. bottom: 0/1335
  35345. }
  35346. },
  35347. maw: {
  35348. height: math.unit(16.37, "meters"),
  35349. name: "Maw",
  35350. image: {
  35351. source: "./media/characters/raylldo/maw.svg",
  35352. extra: 883/660,
  35353. bottom: 0/883
  35354. },
  35355. extraAttributes: {
  35356. preyCapacity: {
  35357. name: "Capacity",
  35358. power: 3,
  35359. type: "volume",
  35360. base: math.unit(1000, "people")
  35361. },
  35362. tongueSize: {
  35363. name: "Tongue Size",
  35364. power: 2,
  35365. type: "area",
  35366. base: math.unit(21, "m^2")
  35367. }
  35368. }
  35369. },
  35370. forepaw: {
  35371. height: math.unit(18, "meters"),
  35372. name: "Forepaw",
  35373. image: {
  35374. source: "./media/characters/raylldo/forepaw.svg"
  35375. }
  35376. },
  35377. hindpaw: {
  35378. height: math.unit(23, "meters"),
  35379. name: "Hindpaw",
  35380. image: {
  35381. source: "./media/characters/raylldo/hindpaw.svg"
  35382. }
  35383. },
  35384. genitals: {
  35385. height: math.unit(42, "meters"),
  35386. name: "Genitals",
  35387. image: {
  35388. source: "./media/characters/raylldo/genitals.svg"
  35389. }
  35390. },
  35391. },
  35392. [
  35393. {
  35394. name: "Normal",
  35395. height: math.unit(47.2, "meters"),
  35396. default: true
  35397. },
  35398. ]
  35399. ))
  35400. characterMakers.push(() => makeCharacter(
  35401. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35402. {
  35403. anthroFront: {
  35404. height: math.unit(9, "feet"),
  35405. weight: math.unit(600, "lb"),
  35406. name: "Anthro (Front)",
  35407. image: {
  35408. source: "./media/characters/glint/anthro-front.svg",
  35409. extra: 1097/1018,
  35410. bottom: 28/1125
  35411. }
  35412. },
  35413. anthroBack: {
  35414. height: math.unit(9, "feet"),
  35415. weight: math.unit(600, "lb"),
  35416. name: "Anthro (Back)",
  35417. image: {
  35418. source: "./media/characters/glint/anthro-back.svg",
  35419. extra: 1154/997,
  35420. bottom: 36/1190
  35421. }
  35422. },
  35423. feral: {
  35424. height: math.unit(11, "feet"),
  35425. weight: math.unit(50000, "lb"),
  35426. name: "Feral",
  35427. image: {
  35428. source: "./media/characters/glint/feral.svg",
  35429. extra: 3035/1585,
  35430. bottom: 1169/4204
  35431. }
  35432. },
  35433. dickAnthro: {
  35434. height: math.unit(0.7, "meters"),
  35435. name: "Dick (Anthro)",
  35436. image: {
  35437. source: "./media/characters/glint/dick-anthro.svg"
  35438. }
  35439. },
  35440. dickFeral: {
  35441. height: math.unit(2.65, "meters"),
  35442. name: "Dick (Feral)",
  35443. image: {
  35444. source: "./media/characters/glint/dick-feral.svg"
  35445. }
  35446. },
  35447. slitHidden: {
  35448. height: math.unit(5.85, "meters"),
  35449. name: "Slit (Hidden)",
  35450. image: {
  35451. source: "./media/characters/glint/slit-hidden.svg"
  35452. }
  35453. },
  35454. slitErect: {
  35455. height: math.unit(5.85, "meters"),
  35456. name: "Slit (Erect)",
  35457. image: {
  35458. source: "./media/characters/glint/slit-erect.svg"
  35459. }
  35460. },
  35461. mawAnthro: {
  35462. height: math.unit(0.63, "meters"),
  35463. name: "Maw (Anthro)",
  35464. image: {
  35465. source: "./media/characters/glint/maw.svg"
  35466. }
  35467. },
  35468. mawFeral: {
  35469. height: math.unit(2.89, "meters"),
  35470. name: "Maw (Feral)",
  35471. image: {
  35472. source: "./media/characters/glint/maw.svg"
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(9, "feet"),
  35480. default: true
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35486. {
  35487. side: {
  35488. height: math.unit(15, "feet"),
  35489. weight: math.unit(5000, "kg"),
  35490. name: "Side",
  35491. image: {
  35492. source: "./media/characters/kairne/side.svg",
  35493. extra: 979/811,
  35494. bottom: 13/992
  35495. }
  35496. },
  35497. front: {
  35498. height: math.unit(15, "feet"),
  35499. weight: math.unit(5000, "kg"),
  35500. name: "Front",
  35501. image: {
  35502. source: "./media/characters/kairne/front.svg",
  35503. extra: 908/814,
  35504. bottom: 26/934
  35505. }
  35506. },
  35507. sideNsfw: {
  35508. height: math.unit(15, "feet"),
  35509. weight: math.unit(5000, "kg"),
  35510. name: "Side (NSFW)",
  35511. image: {
  35512. source: "./media/characters/kairne/side-nsfw.svg",
  35513. extra: 979/811,
  35514. bottom: 13/992
  35515. }
  35516. },
  35517. frontNsfw: {
  35518. height: math.unit(15, "feet"),
  35519. weight: math.unit(5000, "kg"),
  35520. name: "Front (NSFW)",
  35521. image: {
  35522. source: "./media/characters/kairne/front-nsfw.svg",
  35523. extra: 908/814,
  35524. bottom: 26/934
  35525. }
  35526. },
  35527. dickCaged: {
  35528. height: math.unit(0.65, "meters"),
  35529. name: "Dick-caged",
  35530. image: {
  35531. source: "./media/characters/kairne/dick-caged.svg"
  35532. }
  35533. },
  35534. dick: {
  35535. height: math.unit(0.79, "meters"),
  35536. name: "Dick",
  35537. image: {
  35538. source: "./media/characters/kairne/dick.svg"
  35539. }
  35540. },
  35541. genitals: {
  35542. height: math.unit(1.29, "meters"),
  35543. name: "Genitals",
  35544. image: {
  35545. source: "./media/characters/kairne/genitals.svg"
  35546. }
  35547. },
  35548. maw: {
  35549. height: math.unit(1.73, "meters"),
  35550. name: "Maw",
  35551. image: {
  35552. source: "./media/characters/kairne/maw.svg"
  35553. }
  35554. },
  35555. },
  35556. [
  35557. {
  35558. name: "Normal",
  35559. height: math.unit(15, "feet"),
  35560. default: true
  35561. },
  35562. ]
  35563. ))
  35564. characterMakers.push(() => makeCharacter(
  35565. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35566. {
  35567. front: {
  35568. height: math.unit(5 + 8/12, "feet"),
  35569. weight: math.unit(139, "lb"),
  35570. name: "Front",
  35571. image: {
  35572. source: "./media/characters/biscuit-jackal/front.svg",
  35573. extra: 2106/1961,
  35574. bottom: 58/2164
  35575. }
  35576. },
  35577. back: {
  35578. height: math.unit(5 + 8/12, "feet"),
  35579. weight: math.unit(139, "lb"),
  35580. name: "Back",
  35581. image: {
  35582. source: "./media/characters/biscuit-jackal/back.svg",
  35583. extra: 2132/1976,
  35584. bottom: 57/2189
  35585. }
  35586. },
  35587. werejackal: {
  35588. height: math.unit(6 + 3/12, "feet"),
  35589. weight: math.unit(188, "lb"),
  35590. name: "Werejackal",
  35591. image: {
  35592. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35593. extra: 2373/2178,
  35594. bottom: 53/2426
  35595. }
  35596. },
  35597. },
  35598. [
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(5 + 8/12, "feet"),
  35602. default: true
  35603. },
  35604. ]
  35605. ))
  35606. characterMakers.push(() => makeCharacter(
  35607. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35608. {
  35609. front: {
  35610. height: math.unit(140, "cm"),
  35611. weight: math.unit(45, "kg"),
  35612. name: "Front",
  35613. image: {
  35614. source: "./media/characters/tayra-white/front.svg",
  35615. extra: 2229/2192,
  35616. bottom: 75/2304
  35617. }
  35618. },
  35619. },
  35620. [
  35621. {
  35622. name: "Normal",
  35623. height: math.unit(140, "cm"),
  35624. default: true
  35625. },
  35626. ]
  35627. ))
  35628. characterMakers.push(() => makeCharacter(
  35629. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35630. {
  35631. front: {
  35632. height: math.unit(4 + 5/12, "feet"),
  35633. name: "Front",
  35634. image: {
  35635. source: "./media/characters/scoop/front.svg",
  35636. extra: 1257/1136,
  35637. bottom: 69/1326
  35638. }
  35639. },
  35640. back: {
  35641. height: math.unit(4 + 5/12, "feet"),
  35642. name: "Back",
  35643. image: {
  35644. source: "./media/characters/scoop/back.svg",
  35645. extra: 1321/1152,
  35646. bottom: 32/1353
  35647. }
  35648. },
  35649. maw: {
  35650. height: math.unit(0.68, "feet"),
  35651. name: "Maw",
  35652. image: {
  35653. source: "./media/characters/scoop/maw.svg"
  35654. }
  35655. },
  35656. },
  35657. [
  35658. {
  35659. name: "Really Small",
  35660. height: math.unit(1, "mm")
  35661. },
  35662. {
  35663. name: "Micro",
  35664. height: math.unit(1, "inch")
  35665. },
  35666. {
  35667. name: "Normal",
  35668. height: math.unit(4 + 5/12, "feet"),
  35669. default: true
  35670. },
  35671. {
  35672. name: "Macro",
  35673. height: math.unit(200, "feet")
  35674. },
  35675. {
  35676. name: "Megamacro",
  35677. height: math.unit(3240, "feet")
  35678. },
  35679. {
  35680. name: "Teramacro",
  35681. height: math.unit(2500, "miles")
  35682. },
  35683. ]
  35684. ))
  35685. characterMakers.push(() => makeCharacter(
  35686. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35687. {
  35688. front: {
  35689. height: math.unit(15 + 7/12, "feet"),
  35690. weight: math.unit(1150, "tons"),
  35691. name: "Front",
  35692. image: {
  35693. source: "./media/characters/saphinara/front.svg",
  35694. extra: 1837/1643,
  35695. bottom: 84/1921
  35696. },
  35697. form: "normal",
  35698. default: true
  35699. },
  35700. side: {
  35701. height: math.unit(15 + 7/12, "feet"),
  35702. weight: math.unit(1150, "tons"),
  35703. name: "Side",
  35704. image: {
  35705. source: "./media/characters/saphinara/side.svg",
  35706. extra: 605/547,
  35707. bottom: 6/611
  35708. },
  35709. form: "normal"
  35710. },
  35711. back: {
  35712. height: math.unit(15 + 7/12, "feet"),
  35713. weight: math.unit(1150, "tons"),
  35714. name: "Back",
  35715. image: {
  35716. source: "./media/characters/saphinara/back.svg",
  35717. extra: 591/531,
  35718. bottom: 13/604
  35719. },
  35720. form: "normal"
  35721. },
  35722. frontTail: {
  35723. height: math.unit(15 + 7/12, "feet"),
  35724. weight: math.unit(1150, "tons"),
  35725. name: "Front (Full Tail)",
  35726. image: {
  35727. source: "./media/characters/saphinara/front-tail.svg",
  35728. extra: 2256/1630,
  35729. bottom: 261/2517
  35730. },
  35731. form: "normal"
  35732. },
  35733. insides: {
  35734. height: math.unit(11.92, "feet"),
  35735. name: "Insides",
  35736. image: {
  35737. source: "./media/characters/saphinara/insides.svg"
  35738. },
  35739. form: "normal"
  35740. },
  35741. head: {
  35742. height: math.unit(4.17, "feet"),
  35743. name: "Head",
  35744. image: {
  35745. source: "./media/characters/saphinara/head.svg"
  35746. },
  35747. form: "normal"
  35748. },
  35749. tongue: {
  35750. height: math.unit(4.60, "feet"),
  35751. name: "Tongue",
  35752. image: {
  35753. source: "./media/characters/saphinara/tongue.svg"
  35754. },
  35755. form: "normal"
  35756. },
  35757. headEnraged: {
  35758. height: math.unit(5.55, "feet"),
  35759. name: "Head (Enraged)",
  35760. image: {
  35761. source: "./media/characters/saphinara/head-enraged.svg"
  35762. },
  35763. form: "normal"
  35764. },
  35765. wings: {
  35766. height: math.unit(11.95, "feet"),
  35767. name: "Wings",
  35768. image: {
  35769. source: "./media/characters/saphinara/wings.svg"
  35770. },
  35771. form: "normal"
  35772. },
  35773. feathers: {
  35774. height: math.unit(8.92, "feet"),
  35775. name: "Feathers",
  35776. image: {
  35777. source: "./media/characters/saphinara/feathers.svg"
  35778. },
  35779. form: "normal"
  35780. },
  35781. shackles: {
  35782. height: math.unit(2, "feet"),
  35783. name: "Shackles",
  35784. image: {
  35785. source: "./media/characters/saphinara/shackles.svg"
  35786. },
  35787. form: "normal"
  35788. },
  35789. eyes: {
  35790. height: math.unit(1.331, "feet"),
  35791. name: "Eyes",
  35792. image: {
  35793. source: "./media/characters/saphinara/eyes.svg"
  35794. },
  35795. form: "normal"
  35796. },
  35797. eyesEnraged: {
  35798. height: math.unit(1.331, "feet"),
  35799. name: "Eyes (Enraged)",
  35800. image: {
  35801. source: "./media/characters/saphinara/eyes-enraged.svg"
  35802. },
  35803. form: "normal"
  35804. },
  35805. trueFormSide: {
  35806. height: math.unit(200, "feet"),
  35807. weight: math.unit(1e7, "tons"),
  35808. name: "Side",
  35809. image: {
  35810. source: "./media/characters/saphinara/true-form-side.svg",
  35811. extra: 1399/770,
  35812. bottom: 97/1496
  35813. },
  35814. form: "true-form",
  35815. default: true
  35816. },
  35817. trueFormMaw: {
  35818. height: math.unit(71.5, "feet"),
  35819. name: "Maw",
  35820. image: {
  35821. source: "./media/characters/saphinara/true-form-maw.svg",
  35822. extra: 2302/1453,
  35823. bottom: 0/2302
  35824. },
  35825. form: "true-form"
  35826. },
  35827. meowberusSide: {
  35828. height: math.unit(75, "feet"),
  35829. weight: math.unit(180000, "kg"),
  35830. preyCapacity: math.unit(50000, "people"),
  35831. name: "Side",
  35832. image: {
  35833. source: "./media/characters/saphinara/meowberus-side.svg",
  35834. extra: 1400/711,
  35835. bottom: 126/1526
  35836. },
  35837. form: "meowberus",
  35838. extraAttributes: {
  35839. "pawArea": {
  35840. name: "Paw Size",
  35841. power: 2,
  35842. type: "area",
  35843. base: math.unit(35, "m^2")
  35844. }
  35845. }
  35846. },
  35847. },
  35848. [
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(15 + 7/12, "feet"),
  35852. default: true,
  35853. form: "normal"
  35854. },
  35855. {
  35856. name: "Angry",
  35857. height: math.unit(30 + 6/12, "feet"),
  35858. form: "normal"
  35859. },
  35860. {
  35861. name: "Enraged",
  35862. height: math.unit(102 + 1/12, "feet"),
  35863. form: "normal"
  35864. },
  35865. {
  35866. name: "True",
  35867. height: math.unit(200, "feet"),
  35868. default: true,
  35869. form: "true-form"
  35870. },
  35871. {
  35872. name: "Normal",
  35873. height: math.unit(75, "feet"),
  35874. default: true,
  35875. form: "meowberus"
  35876. },
  35877. ],
  35878. {
  35879. "normal": {
  35880. name: "Normal",
  35881. default: true
  35882. },
  35883. "true-form": {
  35884. name: "True Form"
  35885. },
  35886. "meowberus": {
  35887. name: "Meowberus",
  35888. },
  35889. }
  35890. ))
  35891. characterMakers.push(() => makeCharacter(
  35892. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35893. {
  35894. front: {
  35895. height: math.unit(6 + 8/12, "feet"),
  35896. weight: math.unit(300, "lb"),
  35897. name: "Front",
  35898. image: {
  35899. source: "./media/characters/jrain/front.svg",
  35900. extra: 3039/2865,
  35901. bottom: 399/3438
  35902. }
  35903. },
  35904. back: {
  35905. height: math.unit(6 + 8/12, "feet"),
  35906. weight: math.unit(300, "lb"),
  35907. name: "Back",
  35908. image: {
  35909. source: "./media/characters/jrain/back.svg",
  35910. extra: 3089/2938,
  35911. bottom: 172/3261
  35912. }
  35913. },
  35914. head: {
  35915. height: math.unit(2.14, "feet"),
  35916. name: "Head",
  35917. image: {
  35918. source: "./media/characters/jrain/head.svg"
  35919. }
  35920. },
  35921. maw: {
  35922. height: math.unit(1.77, "feet"),
  35923. name: "Maw",
  35924. image: {
  35925. source: "./media/characters/jrain/maw.svg"
  35926. }
  35927. },
  35928. leftHand: {
  35929. height: math.unit(1.1, "feet"),
  35930. name: "Left Hand",
  35931. image: {
  35932. source: "./media/characters/jrain/left-hand.svg"
  35933. }
  35934. },
  35935. rightHand: {
  35936. height: math.unit(1.1, "feet"),
  35937. name: "Right Hand",
  35938. image: {
  35939. source: "./media/characters/jrain/right-hand.svg"
  35940. }
  35941. },
  35942. eye: {
  35943. height: math.unit(0.35, "feet"),
  35944. name: "Eye",
  35945. image: {
  35946. source: "./media/characters/jrain/eye.svg"
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Normal",
  35953. height: math.unit(6 + 8/12, "feet"),
  35954. default: true
  35955. },
  35956. {
  35957. name: "Casually Large",
  35958. height: math.unit(25, "feet")
  35959. },
  35960. {
  35961. name: "Giant",
  35962. height: math.unit(100, "feet")
  35963. },
  35964. {
  35965. name: "Kaiju",
  35966. height: math.unit(300, "feet")
  35967. },
  35968. ]
  35969. ))
  35970. characterMakers.push(() => makeCharacter(
  35971. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35972. {
  35973. dragon: {
  35974. height: math.unit(5, "meters"),
  35975. name: "Dragon",
  35976. image: {
  35977. source: "./media/characters/sabrina/dragon.svg",
  35978. extra: 3670 / 2365,
  35979. bottom: 333 / 4003
  35980. }
  35981. },
  35982. gryphon: {
  35983. height: math.unit(3, "meters"),
  35984. name: "Gryphon",
  35985. image: {
  35986. source: "./media/characters/sabrina/gryphon.svg",
  35987. extra: 1576 / 945,
  35988. bottom: 71 / 1647
  35989. }
  35990. },
  35991. snake: {
  35992. height: math.unit(12, "meters"),
  35993. name: "Snake",
  35994. image: {
  35995. source: "./media/characters/sabrina/snake.svg",
  35996. extra: 1758 / 1320,
  35997. bottom: 186 / 1944
  35998. }
  35999. },
  36000. collar: {
  36001. height: math.unit(1.86, "meters"),
  36002. name: "Collar",
  36003. image: {
  36004. source: "./media/characters/sabrina/collar.svg"
  36005. }
  36006. },
  36007. eye: {
  36008. height: math.unit(0.53, "meters"),
  36009. name: "Eye",
  36010. image: {
  36011. source: "./media/characters/sabrina/eye.svg"
  36012. }
  36013. },
  36014. foot: {
  36015. height: math.unit(1.86, "meters"),
  36016. name: "Foot",
  36017. image: {
  36018. source: "./media/characters/sabrina/foot.svg"
  36019. }
  36020. },
  36021. hand: {
  36022. height: math.unit(1.32, "meters"),
  36023. name: "Hand",
  36024. image: {
  36025. source: "./media/characters/sabrina/hand.svg"
  36026. }
  36027. },
  36028. head: {
  36029. height: math.unit(2.44, "meters"),
  36030. name: "Head",
  36031. image: {
  36032. source: "./media/characters/sabrina/head.svg"
  36033. }
  36034. },
  36035. headAngry: {
  36036. height: math.unit(2.44, "meters"),
  36037. name: "Head (Angry))",
  36038. image: {
  36039. source: "./media/characters/sabrina/head-angry.svg"
  36040. }
  36041. },
  36042. maw: {
  36043. height: math.unit(1.65, "meters"),
  36044. name: "Maw",
  36045. image: {
  36046. source: "./media/characters/sabrina/maw.svg"
  36047. }
  36048. },
  36049. spikes: {
  36050. height: math.unit(1.69, "meters"),
  36051. name: "Spikes",
  36052. image: {
  36053. source: "./media/characters/sabrina/spikes.svg"
  36054. }
  36055. },
  36056. stomach: {
  36057. height: math.unit(1.15, "meters"),
  36058. name: "Stomach",
  36059. image: {
  36060. source: "./media/characters/sabrina/stomach.svg"
  36061. }
  36062. },
  36063. tongue: {
  36064. height: math.unit(1.27, "meters"),
  36065. name: "Tongue",
  36066. image: {
  36067. source: "./media/characters/sabrina/tongue.svg"
  36068. }
  36069. },
  36070. wingDorsal: {
  36071. height: math.unit(4.85, "meters"),
  36072. name: "Wing (Dorsal)",
  36073. image: {
  36074. source: "./media/characters/sabrina/wing-dorsal.svg"
  36075. }
  36076. },
  36077. wingVentral: {
  36078. height: math.unit(4.85, "meters"),
  36079. name: "Wing (Ventral)",
  36080. image: {
  36081. source: "./media/characters/sabrina/wing-ventral.svg"
  36082. }
  36083. },
  36084. },
  36085. [
  36086. {
  36087. name: "Normal",
  36088. height: math.unit(5, "meters"),
  36089. default: true
  36090. },
  36091. ]
  36092. ))
  36093. characterMakers.push(() => makeCharacter(
  36094. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36095. {
  36096. frontMaid: {
  36097. height: math.unit(5 + 5/12, "feet"),
  36098. weight: math.unit(130, "lb"),
  36099. name: "Front (Maid)",
  36100. image: {
  36101. source: "./media/characters/midnight-tales/front-maid.svg",
  36102. extra: 489/454,
  36103. bottom: 61/550
  36104. }
  36105. },
  36106. frontFormal: {
  36107. height: math.unit(5 + 5/12, "feet"),
  36108. weight: math.unit(130, "lb"),
  36109. name: "Front (Formal)",
  36110. image: {
  36111. source: "./media/characters/midnight-tales/front-formal.svg",
  36112. extra: 489/454,
  36113. bottom: 61/550
  36114. }
  36115. },
  36116. back: {
  36117. height: math.unit(5 + 5/12, "feet"),
  36118. weight: math.unit(130, "lb"),
  36119. name: "Back",
  36120. image: {
  36121. source: "./media/characters/midnight-tales/back.svg",
  36122. extra: 498/456,
  36123. bottom: 33/531
  36124. }
  36125. },
  36126. frontBeast: {
  36127. height: math.unit(40, "feet"),
  36128. weight: math.unit(64000, "lb"),
  36129. name: "Front (Beast)",
  36130. image: {
  36131. source: "./media/characters/midnight-tales/front-beast.svg",
  36132. extra: 927/860,
  36133. bottom: 53/980
  36134. }
  36135. },
  36136. backBeast: {
  36137. height: math.unit(40, "feet"),
  36138. weight: math.unit(64000, "lb"),
  36139. name: "Back (Beast)",
  36140. image: {
  36141. source: "./media/characters/midnight-tales/back-beast.svg",
  36142. extra: 929/855,
  36143. bottom: 16/945
  36144. }
  36145. },
  36146. footBeast: {
  36147. height: math.unit(6.7, "feet"),
  36148. name: "Foot (Beast)",
  36149. image: {
  36150. source: "./media/characters/midnight-tales/foot-beast.svg"
  36151. }
  36152. },
  36153. headBeast: {
  36154. height: math.unit(8, "feet"),
  36155. name: "Head (Beast)",
  36156. image: {
  36157. source: "./media/characters/midnight-tales/head-beast.svg"
  36158. }
  36159. },
  36160. },
  36161. [
  36162. {
  36163. name: "Normal",
  36164. height: math.unit(5 + 5 / 12, "feet"),
  36165. default: true
  36166. },
  36167. {
  36168. name: "Macro",
  36169. height: math.unit(25, "feet")
  36170. },
  36171. ]
  36172. ))
  36173. characterMakers.push(() => makeCharacter(
  36174. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36175. {
  36176. front: {
  36177. height: math.unit(5 + 10/12, "feet"),
  36178. name: "Front",
  36179. image: {
  36180. source: "./media/characters/argon/front.svg",
  36181. extra: 2009/1935,
  36182. bottom: 118/2127
  36183. }
  36184. },
  36185. back: {
  36186. height: math.unit(5 + 10/12, "feet"),
  36187. name: "Back",
  36188. image: {
  36189. source: "./media/characters/argon/back.svg",
  36190. extra: 2047/1992,
  36191. bottom: 20/2067
  36192. }
  36193. },
  36194. frontDressed: {
  36195. height: math.unit(5 + 10/12, "feet"),
  36196. name: "Front (Dressed)",
  36197. image: {
  36198. source: "./media/characters/argon/front-dressed.svg",
  36199. extra: 2009/1935,
  36200. bottom: 118/2127
  36201. }
  36202. },
  36203. },
  36204. [
  36205. {
  36206. name: "Normal",
  36207. height: math.unit(5 + 10/12, "feet"),
  36208. default: true
  36209. },
  36210. ]
  36211. ))
  36212. characterMakers.push(() => makeCharacter(
  36213. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36214. {
  36215. front: {
  36216. height: math.unit(8 + 6/12, "feet"),
  36217. weight: math.unit(1150, "lb"),
  36218. name: "Front",
  36219. image: {
  36220. source: "./media/characters/kichi/front.svg",
  36221. extra: 1267/1164,
  36222. bottom: 61/1328
  36223. }
  36224. },
  36225. back: {
  36226. height: math.unit(8 + 6/12, "feet"),
  36227. weight: math.unit(1150, "lb"),
  36228. name: "Back",
  36229. image: {
  36230. source: "./media/characters/kichi/back.svg",
  36231. extra: 1273/1166,
  36232. bottom: 33/1306
  36233. }
  36234. },
  36235. },
  36236. [
  36237. {
  36238. name: "Normal",
  36239. height: math.unit(8 + 6/12, "feet"),
  36240. default: true
  36241. },
  36242. ]
  36243. ))
  36244. characterMakers.push(() => makeCharacter(
  36245. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36246. {
  36247. front: {
  36248. height: math.unit(6, "feet"),
  36249. weight: math.unit(210, "lb"),
  36250. name: "Front",
  36251. image: {
  36252. source: "./media/characters/manetel-greyscale/front.svg",
  36253. extra: 350/312,
  36254. bottom: 8/358
  36255. }
  36256. },
  36257. },
  36258. [
  36259. {
  36260. name: "Micro",
  36261. height: math.unit(2, "inches")
  36262. },
  36263. {
  36264. name: "Normal",
  36265. height: math.unit(6, "feet"),
  36266. default: true
  36267. },
  36268. {
  36269. name: "Minimacro",
  36270. height: math.unit(17, "feet")
  36271. },
  36272. {
  36273. name: "Macro",
  36274. height: math.unit(117, "feet")
  36275. },
  36276. ]
  36277. ))
  36278. characterMakers.push(() => makeCharacter(
  36279. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36280. {
  36281. side: {
  36282. height: math.unit(5 + 1/12, "feet"),
  36283. weight: math.unit(418, "lb"),
  36284. name: "Side",
  36285. image: {
  36286. source: "./media/characters/softpurr/side.svg",
  36287. extra: 1993/1945,
  36288. bottom: 134/2127
  36289. }
  36290. },
  36291. front: {
  36292. height: math.unit(5 + 1/12, "feet"),
  36293. weight: math.unit(418, "lb"),
  36294. name: "Front",
  36295. image: {
  36296. source: "./media/characters/softpurr/front.svg",
  36297. extra: 1950/1856,
  36298. bottom: 174/2124
  36299. }
  36300. },
  36301. paw: {
  36302. height: math.unit(1, "feet"),
  36303. name: "Paw",
  36304. image: {
  36305. source: "./media/characters/softpurr/paw.svg"
  36306. }
  36307. },
  36308. },
  36309. [
  36310. {
  36311. name: "Normal",
  36312. height: math.unit(5 + 1/12, "feet"),
  36313. default: true
  36314. },
  36315. ]
  36316. ))
  36317. characterMakers.push(() => makeCharacter(
  36318. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36319. {
  36320. front: {
  36321. height: math.unit(260, "meters"),
  36322. name: "Front",
  36323. image: {
  36324. source: "./media/characters/anahita/front.svg",
  36325. extra: 665/635,
  36326. bottom: 89/754
  36327. }
  36328. },
  36329. },
  36330. [
  36331. {
  36332. name: "Macro",
  36333. height: math.unit(260, "meters"),
  36334. default: true
  36335. },
  36336. ]
  36337. ))
  36338. characterMakers.push(() => makeCharacter(
  36339. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36340. {
  36341. front: {
  36342. height: math.unit(4 + 10/12, "feet"),
  36343. weight: math.unit(160, "lb"),
  36344. name: "Front",
  36345. image: {
  36346. source: "./media/characters/chip-mouse/front.svg",
  36347. extra: 3528/3408,
  36348. bottom: 0/3528
  36349. }
  36350. },
  36351. frontNsfw: {
  36352. height: math.unit(4 + 10/12, "feet"),
  36353. weight: math.unit(160, "lb"),
  36354. name: "Front (NSFW)",
  36355. image: {
  36356. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36357. extra: 3528/3408,
  36358. bottom: 0/3528
  36359. }
  36360. },
  36361. },
  36362. [
  36363. {
  36364. name: "Normal",
  36365. height: math.unit(4 + 10/12, "feet"),
  36366. default: true
  36367. },
  36368. ]
  36369. ))
  36370. characterMakers.push(() => makeCharacter(
  36371. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36372. {
  36373. side: {
  36374. height: math.unit(10, "feet"),
  36375. weight: math.unit(14000, "lb"),
  36376. name: "Side",
  36377. image: {
  36378. source: "./media/characters/kremm/side.svg",
  36379. extra: 1390/1053,
  36380. bottom: 90/1480
  36381. }
  36382. },
  36383. gut: {
  36384. height: math.unit(5.8, "feet"),
  36385. name: "Gut",
  36386. image: {
  36387. source: "./media/characters/kremm/gut.svg"
  36388. }
  36389. },
  36390. ass: {
  36391. height: math.unit(6.1, "feet"),
  36392. name: "Ass",
  36393. image: {
  36394. source: "./media/characters/kremm/ass.svg"
  36395. }
  36396. },
  36397. jaws: {
  36398. height: math.unit(2.2, "feet"),
  36399. name: "Jaws",
  36400. image: {
  36401. source: "./media/characters/kremm/jaws.svg"
  36402. }
  36403. },
  36404. dick: {
  36405. height: math.unit(4.26, "feet"),
  36406. name: "Dick",
  36407. image: {
  36408. source: "./media/characters/kremm/dick.svg"
  36409. }
  36410. },
  36411. },
  36412. [
  36413. {
  36414. name: "Normal",
  36415. height: math.unit(10, "feet"),
  36416. default: true
  36417. },
  36418. ]
  36419. ))
  36420. characterMakers.push(() => makeCharacter(
  36421. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36422. {
  36423. front: {
  36424. height: math.unit(30, "stories"),
  36425. name: "Front",
  36426. image: {
  36427. source: "./media/characters/kai/front.svg",
  36428. extra: 1892/1718,
  36429. bottom: 162/2054
  36430. }
  36431. },
  36432. },
  36433. [
  36434. {
  36435. name: "Macro",
  36436. height: math.unit(30, "stories"),
  36437. default: true
  36438. },
  36439. ]
  36440. ))
  36441. characterMakers.push(() => makeCharacter(
  36442. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36443. {
  36444. front: {
  36445. height: math.unit(6 + 4/12, "feet"),
  36446. weight: math.unit(145, "lb"),
  36447. name: "Front",
  36448. image: {
  36449. source: "./media/characters/sykes/front.svg",
  36450. extra: 1321 / 1187,
  36451. bottom: 66 / 1387
  36452. }
  36453. },
  36454. back: {
  36455. height: math.unit(6 + 4/12, "feet"),
  36456. weight: math.unit(145, "lb"),
  36457. name: "Back",
  36458. image: {
  36459. source: "./media/characters/sykes/back.svg",
  36460. extra: 1326/1181,
  36461. bottom: 31/1357
  36462. }
  36463. },
  36464. traditionalOutfit: {
  36465. height: math.unit(6 + 4/12, "feet"),
  36466. weight: math.unit(145, "lb"),
  36467. name: "Traditional Outfit",
  36468. image: {
  36469. source: "./media/characters/sykes/traditional-outfit.svg",
  36470. extra: 1321 / 1187,
  36471. bottom: 66 / 1387
  36472. }
  36473. },
  36474. adventureOutfit: {
  36475. height: math.unit(6 + 4/12, "feet"),
  36476. weight: math.unit(145, "lb"),
  36477. name: "Adventure Outfit",
  36478. image: {
  36479. source: "./media/characters/sykes/adventure-outfit.svg",
  36480. extra: 1321 / 1187,
  36481. bottom: 66 / 1387
  36482. }
  36483. },
  36484. handLeft: {
  36485. height: math.unit(0.9, "feet"),
  36486. name: "Hand (Left)",
  36487. image: {
  36488. source: "./media/characters/sykes/hand-left.svg"
  36489. }
  36490. },
  36491. handRight: {
  36492. height: math.unit(0.839, "feet"),
  36493. name: "Hand (Right)",
  36494. image: {
  36495. source: "./media/characters/sykes/hand-right.svg"
  36496. }
  36497. },
  36498. leftFoot: {
  36499. height: math.unit(1.2, "feet"),
  36500. name: "Foot (Left)",
  36501. image: {
  36502. source: "./media/characters/sykes/foot-left.svg"
  36503. }
  36504. },
  36505. rightFoot: {
  36506. height: math.unit(1.2, "feet"),
  36507. name: "Foot (Right)",
  36508. image: {
  36509. source: "./media/characters/sykes/foot-right.svg"
  36510. }
  36511. },
  36512. maw: {
  36513. height: math.unit(1.93, "feet"),
  36514. name: "Maw",
  36515. image: {
  36516. source: "./media/characters/sykes/maw.svg"
  36517. }
  36518. },
  36519. teeth: {
  36520. height: math.unit(0.51, "feet"),
  36521. name: "Teeth",
  36522. image: {
  36523. source: "./media/characters/sykes/teeth.svg"
  36524. }
  36525. },
  36526. tongue: {
  36527. height: math.unit(2.13, "feet"),
  36528. name: "Tongue",
  36529. image: {
  36530. source: "./media/characters/sykes/tongue.svg"
  36531. }
  36532. },
  36533. uvula: {
  36534. height: math.unit(0.16, "feet"),
  36535. name: "Uvula",
  36536. image: {
  36537. source: "./media/characters/sykes/uvula.svg"
  36538. }
  36539. },
  36540. collar: {
  36541. height: math.unit(0.287, "feet"),
  36542. name: "Collar",
  36543. image: {
  36544. source: "./media/characters/sykes/collar.svg"
  36545. }
  36546. },
  36547. tail: {
  36548. height: math.unit(3.8, "feet"),
  36549. name: "Tail",
  36550. image: {
  36551. source: "./media/characters/sykes/tail.svg"
  36552. }
  36553. },
  36554. },
  36555. [
  36556. {
  36557. name: "Shrunken",
  36558. height: math.unit(5, "inches")
  36559. },
  36560. {
  36561. name: "Normal",
  36562. height: math.unit(6 + 4 / 12, "feet"),
  36563. default: true
  36564. },
  36565. {
  36566. name: "Big",
  36567. height: math.unit(15, "feet")
  36568. },
  36569. ]
  36570. ))
  36571. characterMakers.push(() => makeCharacter(
  36572. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36573. {
  36574. front: {
  36575. height: math.unit(5 + 8/12, "feet"),
  36576. weight: math.unit(190, "lb"),
  36577. name: "Front",
  36578. image: {
  36579. source: "./media/characters/oven-otter/front.svg",
  36580. extra: 1809/1740,
  36581. bottom: 181/1990
  36582. }
  36583. },
  36584. back: {
  36585. height: math.unit(5 + 8/12, "feet"),
  36586. weight: math.unit(190, "lb"),
  36587. name: "Back",
  36588. image: {
  36589. source: "./media/characters/oven-otter/back.svg",
  36590. extra: 1709/1635,
  36591. bottom: 118/1827
  36592. }
  36593. },
  36594. hand: {
  36595. height: math.unit(1.07, "feet"),
  36596. name: "Hand",
  36597. image: {
  36598. source: "./media/characters/oven-otter/hand.svg"
  36599. }
  36600. },
  36601. beans: {
  36602. height: math.unit(1.74, "feet"),
  36603. name: "Beans",
  36604. image: {
  36605. source: "./media/characters/oven-otter/beans.svg"
  36606. }
  36607. },
  36608. },
  36609. [
  36610. {
  36611. name: "Micro",
  36612. height: math.unit(0.5, "inches")
  36613. },
  36614. {
  36615. name: "Normal",
  36616. height: math.unit(5 + 8/12, "feet"),
  36617. default: true
  36618. },
  36619. {
  36620. name: "Macro",
  36621. height: math.unit(250, "feet")
  36622. },
  36623. {
  36624. name: "Really High",
  36625. height: math.unit(420, "feet")
  36626. },
  36627. ]
  36628. ))
  36629. characterMakers.push(() => makeCharacter(
  36630. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36631. {
  36632. front: {
  36633. height: math.unit(5, "meters"),
  36634. weight: math.unit(292000000000000, "kg"),
  36635. name: "Front",
  36636. image: {
  36637. source: "./media/characters/devourer/front.svg",
  36638. extra: 1800/1733,
  36639. bottom: 211/2011
  36640. }
  36641. },
  36642. maw: {
  36643. height: math.unit(1.1, "meter"),
  36644. name: "Maw",
  36645. image: {
  36646. source: "./media/characters/devourer/maw.svg"
  36647. }
  36648. },
  36649. },
  36650. [
  36651. {
  36652. name: "Small",
  36653. height: math.unit(3, "meters")
  36654. },
  36655. {
  36656. name: "Large",
  36657. height: math.unit(5, "meters"),
  36658. default: true
  36659. },
  36660. ]
  36661. ))
  36662. characterMakers.push(() => makeCharacter(
  36663. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36664. {
  36665. front: {
  36666. height: math.unit(6, "feet"),
  36667. weight: math.unit(400, "lb"),
  36668. name: "Front",
  36669. image: {
  36670. source: "./media/characters/ellarby/front.svg",
  36671. extra: 1909/1763,
  36672. bottom: 80/1989
  36673. }
  36674. },
  36675. back: {
  36676. height: math.unit(6, "feet"),
  36677. weight: math.unit(400, "lb"),
  36678. name: "Back",
  36679. image: {
  36680. source: "./media/characters/ellarby/back.svg",
  36681. extra: 1914/1784,
  36682. bottom: 172/2086
  36683. }
  36684. },
  36685. },
  36686. [
  36687. {
  36688. name: "Mischief",
  36689. height: math.unit(18, "inches")
  36690. },
  36691. {
  36692. name: "Trouble",
  36693. height: math.unit(12, "feet")
  36694. },
  36695. {
  36696. name: "Havoc",
  36697. height: math.unit(200, "feet"),
  36698. default: true
  36699. },
  36700. {
  36701. name: "Pandemonium",
  36702. height: math.unit(1, "mile")
  36703. },
  36704. {
  36705. name: "Catastrophe",
  36706. height: math.unit(100, "miles")
  36707. },
  36708. ]
  36709. ))
  36710. characterMakers.push(() => makeCharacter(
  36711. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36712. {
  36713. front: {
  36714. height: math.unit(4.7, "meters"),
  36715. weight: math.unit(6500, "kg"),
  36716. name: "Front",
  36717. image: {
  36718. source: "./media/characters/vex/front.svg",
  36719. extra: 1288/1140,
  36720. bottom: 100/1388
  36721. }
  36722. },
  36723. },
  36724. [
  36725. {
  36726. name: "Normal",
  36727. height: math.unit(4.7, "meters"),
  36728. default: true
  36729. },
  36730. ]
  36731. ))
  36732. characterMakers.push(() => makeCharacter(
  36733. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36734. {
  36735. normal: {
  36736. height: math.unit(6, "feet"),
  36737. weight: math.unit(350, "lb"),
  36738. name: "Normal",
  36739. image: {
  36740. source: "./media/characters/teshy/normal.svg",
  36741. extra: 1795/1735,
  36742. bottom: 16/1811
  36743. }
  36744. },
  36745. monsterFront: {
  36746. height: math.unit(12, "feet"),
  36747. weight: math.unit(4700, "lb"),
  36748. name: "Monster (Front)",
  36749. image: {
  36750. source: "./media/characters/teshy/monster-front.svg",
  36751. extra: 2042/2034,
  36752. bottom: 128/2170
  36753. }
  36754. },
  36755. monsterSide: {
  36756. height: math.unit(12, "feet"),
  36757. weight: math.unit(4700, "lb"),
  36758. name: "Monster (Side)",
  36759. image: {
  36760. source: "./media/characters/teshy/monster-side.svg",
  36761. extra: 2067/2056,
  36762. bottom: 70/2137
  36763. }
  36764. },
  36765. monsterBack: {
  36766. height: math.unit(12, "feet"),
  36767. weight: math.unit(4700, "lb"),
  36768. name: "Monster (Back)",
  36769. image: {
  36770. source: "./media/characters/teshy/monster-back.svg",
  36771. extra: 1921/1914,
  36772. bottom: 171/2092
  36773. }
  36774. },
  36775. },
  36776. [
  36777. {
  36778. name: "Normal",
  36779. height: math.unit(6, "feet"),
  36780. default: true
  36781. },
  36782. ]
  36783. ))
  36784. characterMakers.push(() => makeCharacter(
  36785. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36786. {
  36787. front: {
  36788. height: math.unit(6, "feet"),
  36789. name: "Front",
  36790. image: {
  36791. source: "./media/characters/ramey/front.svg",
  36792. extra: 790/787,
  36793. bottom: 27/817
  36794. }
  36795. },
  36796. },
  36797. [
  36798. {
  36799. name: "Normal",
  36800. height: math.unit(6, "feet"),
  36801. default: true
  36802. },
  36803. ]
  36804. ))
  36805. characterMakers.push(() => makeCharacter(
  36806. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36807. {
  36808. front: {
  36809. height: math.unit(5 + 5/12, "feet"),
  36810. weight: math.unit(120, "lb"),
  36811. name: "Front",
  36812. image: {
  36813. source: "./media/characters/phirae/front.svg",
  36814. extra: 2491/2436,
  36815. bottom: 38/2529
  36816. }
  36817. },
  36818. },
  36819. [
  36820. {
  36821. name: "Normal",
  36822. height: math.unit(5 + 5/12, "feet"),
  36823. default: true
  36824. },
  36825. ]
  36826. ))
  36827. characterMakers.push(() => makeCharacter(
  36828. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36829. {
  36830. front: {
  36831. height: math.unit(5 + 3/12, "feet"),
  36832. name: "Front",
  36833. image: {
  36834. source: "./media/characters/stagglas/front.svg",
  36835. extra: 962/882,
  36836. bottom: 53/1015
  36837. }
  36838. },
  36839. feral: {
  36840. height: math.unit(335, "cm"),
  36841. name: "Feral",
  36842. image: {
  36843. source: "./media/characters/stagglas/feral.svg",
  36844. extra: 1732/1090,
  36845. bottom: 48/1780
  36846. }
  36847. },
  36848. },
  36849. [
  36850. {
  36851. name: "Normal",
  36852. height: math.unit(5 + 3/12, "feet"),
  36853. default: true
  36854. },
  36855. ]
  36856. ))
  36857. characterMakers.push(() => makeCharacter(
  36858. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36859. {
  36860. front: {
  36861. height: math.unit(5 + 4/12, "feet"),
  36862. weight: math.unit(145, "lb"),
  36863. name: "Front",
  36864. image: {
  36865. source: "./media/characters/starra/front.svg",
  36866. extra: 1790/1691,
  36867. bottom: 91/1881
  36868. }
  36869. },
  36870. },
  36871. [
  36872. {
  36873. name: "Normal",
  36874. height: math.unit(5 + 4/12, "feet"),
  36875. default: true
  36876. },
  36877. ]
  36878. ))
  36879. characterMakers.push(() => makeCharacter(
  36880. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36881. {
  36882. front: {
  36883. height: math.unit(3.5, "meters"),
  36884. name: "Front",
  36885. image: {
  36886. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36887. extra: 1248/972,
  36888. bottom: 38/1286
  36889. }
  36890. },
  36891. },
  36892. [
  36893. {
  36894. name: "Normal",
  36895. height: math.unit(3.5, "meters"),
  36896. default: true
  36897. },
  36898. ]
  36899. ))
  36900. characterMakers.push(() => makeCharacter(
  36901. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36902. {
  36903. side: {
  36904. height: math.unit(8 + 2/12, "feet"),
  36905. weight: math.unit(1240, "lb"),
  36906. name: "Side",
  36907. image: {
  36908. source: "./media/characters/mika-valentine/side.svg",
  36909. extra: 2670/2501,
  36910. bottom: 250/2920
  36911. }
  36912. },
  36913. },
  36914. [
  36915. {
  36916. name: "Normal",
  36917. height: math.unit(8 + 2/12, "feet"),
  36918. default: true
  36919. },
  36920. ]
  36921. ))
  36922. characterMakers.push(() => makeCharacter(
  36923. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36924. {
  36925. front: {
  36926. height: math.unit(7 + 2/12, "feet"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/xoltol/front.svg",
  36930. extra: 2212/2124,
  36931. bottom: 84/2296
  36932. }
  36933. },
  36934. side: {
  36935. height: math.unit(7 + 2/12, "feet"),
  36936. name: "Side",
  36937. image: {
  36938. source: "./media/characters/xoltol/side.svg",
  36939. extra: 2273/2197,
  36940. bottom: 26/2299
  36941. }
  36942. },
  36943. hand: {
  36944. height: math.unit(2.5, "feet"),
  36945. name: "Hand",
  36946. image: {
  36947. source: "./media/characters/xoltol/hand.svg"
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Small-ish",
  36954. height: math.unit(5 + 11/12, "feet")
  36955. },
  36956. {
  36957. name: "Normal",
  36958. height: math.unit(7 + 2/12, "feet")
  36959. },
  36960. {
  36961. name: "\"Macro\"",
  36962. height: math.unit(14 + 9/12, "feet"),
  36963. default: true
  36964. },
  36965. {
  36966. name: "Alternate Height",
  36967. height: math.unit(20, "feet")
  36968. },
  36969. {
  36970. name: "Actually Macro",
  36971. height: math.unit(100, "feet")
  36972. },
  36973. ]
  36974. ))
  36975. characterMakers.push(() => makeCharacter(
  36976. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36977. {
  36978. front: {
  36979. height: math.unit(5 + 2/12, "feet"),
  36980. weight: math.unit(75, "kg"),
  36981. name: "Front",
  36982. image: {
  36983. source: "./media/characters/kotetsu-redwood/front.svg",
  36984. extra: 1053/942,
  36985. bottom: 60/1113
  36986. }
  36987. },
  36988. },
  36989. [
  36990. {
  36991. name: "Normal",
  36992. height: math.unit(5 + 2/12, "feet"),
  36993. default: true
  36994. },
  36995. ]
  36996. ))
  36997. characterMakers.push(() => makeCharacter(
  36998. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36999. {
  37000. front: {
  37001. height: math.unit(2.4, "meters"),
  37002. weight: math.unit(125, "kg"),
  37003. name: "Front",
  37004. image: {
  37005. source: "./media/characters/lilith/front.svg",
  37006. extra: 1590/1513,
  37007. bottom: 203/1793
  37008. }
  37009. },
  37010. },
  37011. [
  37012. {
  37013. name: "Humanoid",
  37014. height: math.unit(2.4, "meters")
  37015. },
  37016. {
  37017. name: "Normal",
  37018. height: math.unit(6, "meters"),
  37019. default: true
  37020. },
  37021. {
  37022. name: "Largest",
  37023. height: math.unit(55, "meters")
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(8 + 4/12, "feet"),
  37032. weight: math.unit(535, "lb"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/beh'kah-bolger/front.svg",
  37036. extra: 1660/1603,
  37037. bottom: 37/1697
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(8 + 4/12, "feet"),
  37045. default: true
  37046. },
  37047. {
  37048. name: "Kaiju",
  37049. height: math.unit(250, "feet")
  37050. },
  37051. {
  37052. name: "Still Growing",
  37053. height: math.unit(10, "miles")
  37054. },
  37055. {
  37056. name: "Continental",
  37057. height: math.unit(5000, "miles")
  37058. },
  37059. {
  37060. name: "Final Form",
  37061. height: math.unit(2500000, "miles")
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37067. {
  37068. front: {
  37069. height: math.unit(7 + 2/12, "feet"),
  37070. weight: math.unit(230, "kg"),
  37071. name: "Front",
  37072. image: {
  37073. source: "./media/characters/tatyana-milewska/front.svg",
  37074. extra: 1199/1150,
  37075. bottom: 86/1285
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Normal",
  37082. height: math.unit(7 + 2/12, "feet"),
  37083. default: true
  37084. },
  37085. {
  37086. name: "Big",
  37087. height: math.unit(12, "feet")
  37088. },
  37089. {
  37090. name: "Minimacro",
  37091. height: math.unit(20, "feet")
  37092. },
  37093. {
  37094. name: "Macro",
  37095. height: math.unit(120, "feet")
  37096. },
  37097. ]
  37098. ))
  37099. characterMakers.push(() => makeCharacter(
  37100. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37101. {
  37102. front: {
  37103. height: math.unit(7 + 8/12, "feet"),
  37104. weight: math.unit(152, "kg"),
  37105. name: "Front",
  37106. image: {
  37107. source: "./media/characters/helen-arri/front.svg",
  37108. extra: 440/423,
  37109. bottom: 14/454
  37110. }
  37111. },
  37112. back: {
  37113. height: math.unit(7 + 8/12, "feet"),
  37114. weight: math.unit(152, "kg"),
  37115. name: "Back",
  37116. image: {
  37117. source: "./media/characters/helen-arri/back.svg",
  37118. extra: 443/426,
  37119. bottom: 8/451
  37120. }
  37121. },
  37122. },
  37123. [
  37124. {
  37125. name: "Normal",
  37126. height: math.unit(7 + 8/12, "feet"),
  37127. default: true
  37128. },
  37129. {
  37130. name: "Big",
  37131. height: math.unit(14, "feet")
  37132. },
  37133. {
  37134. name: "Minimacro",
  37135. height: math.unit(24, "feet")
  37136. },
  37137. {
  37138. name: "Macro",
  37139. height: math.unit(140, "feet")
  37140. },
  37141. ]
  37142. ))
  37143. characterMakers.push(() => makeCharacter(
  37144. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37145. {
  37146. front: {
  37147. height: math.unit(6, "meters"),
  37148. name: "Front",
  37149. image: {
  37150. source: "./media/characters/ehanu-rehu/front.svg",
  37151. extra: 1800/1800,
  37152. bottom: 59/1859
  37153. }
  37154. },
  37155. },
  37156. [
  37157. {
  37158. name: "Normal",
  37159. height: math.unit(6, "meters"),
  37160. default: true
  37161. },
  37162. ]
  37163. ))
  37164. characterMakers.push(() => makeCharacter(
  37165. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37166. {
  37167. front: {
  37168. height: math.unit(7 + 3/12, "feet"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/renholder/front.svg",
  37172. extra: 3096/2960,
  37173. bottom: 250/3346
  37174. }
  37175. },
  37176. },
  37177. [
  37178. {
  37179. name: "Normal Bat",
  37180. height: math.unit(7 + 3/12, "feet"),
  37181. default: true
  37182. },
  37183. {
  37184. name: "Slightly Tall Bat",
  37185. height: math.unit(100, "feet")
  37186. },
  37187. {
  37188. name: "Big Bat",
  37189. height: math.unit(1000, "feet")
  37190. },
  37191. {
  37192. name: "City-Sized Bat",
  37193. height: math.unit(200000, "feet")
  37194. },
  37195. {
  37196. name: "Bigger Bat",
  37197. height: math.unit(10000, "miles")
  37198. },
  37199. {
  37200. name: "Solar Sized Bat",
  37201. height: math.unit(100, "AU")
  37202. },
  37203. {
  37204. name: "Galactic Bat",
  37205. height: math.unit(200000, "lightyears")
  37206. },
  37207. {
  37208. name: "Universally Known Bat",
  37209. height: math.unit(1, "universe")
  37210. },
  37211. ]
  37212. ))
  37213. characterMakers.push(() => makeCharacter(
  37214. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37215. {
  37216. front: {
  37217. height: math.unit(6 + 11/12, "feet"),
  37218. weight: math.unit(250, "lb"),
  37219. name: "Front",
  37220. image: {
  37221. source: "./media/characters/cookiecat/front.svg",
  37222. extra: 893/827,
  37223. bottom: 14/907
  37224. }
  37225. },
  37226. },
  37227. [
  37228. {
  37229. name: "Micro",
  37230. height: math.unit(3, "inches")
  37231. },
  37232. {
  37233. name: "Normal",
  37234. height: math.unit(6 + 11/12, "feet"),
  37235. default: true
  37236. },
  37237. {
  37238. name: "Macro",
  37239. height: math.unit(100, "feet")
  37240. },
  37241. {
  37242. name: "Macro+",
  37243. height: math.unit(404, "feet")
  37244. },
  37245. {
  37246. name: "Megamacro",
  37247. height: math.unit(165, "miles")
  37248. },
  37249. {
  37250. name: "Planetary",
  37251. height: math.unit(4600, "miles")
  37252. },
  37253. ]
  37254. ))
  37255. characterMakers.push(() => makeCharacter(
  37256. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37257. {
  37258. front: {
  37259. height: math.unit(10 + 3/12, "feet"),
  37260. weight: math.unit(1500, "lb"),
  37261. name: "Front",
  37262. image: {
  37263. source: "./media/characters/tux-kusanagi/front.svg",
  37264. extra: 944/840,
  37265. bottom: 39/983
  37266. }
  37267. },
  37268. back: {
  37269. height: math.unit(10 + 3/12, "feet"),
  37270. weight: math.unit(1500, "lb"),
  37271. name: "Back",
  37272. image: {
  37273. source: "./media/characters/tux-kusanagi/back.svg",
  37274. extra: 941/842,
  37275. bottom: 28/969
  37276. }
  37277. },
  37278. rump: {
  37279. height: math.unit(5.25, "feet"),
  37280. name: "Rump",
  37281. image: {
  37282. source: "./media/characters/tux-kusanagi/rump.svg"
  37283. }
  37284. },
  37285. beak: {
  37286. height: math.unit(1.54, "feet"),
  37287. name: "Beak",
  37288. image: {
  37289. source: "./media/characters/tux-kusanagi/beak.svg"
  37290. }
  37291. },
  37292. },
  37293. [
  37294. {
  37295. name: "Normal",
  37296. height: math.unit(10 + 3/12, "feet"),
  37297. default: true
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(58, "feet"),
  37306. weight: math.unit(200, "tons"),
  37307. name: "Front",
  37308. image: {
  37309. source: "./media/characters/uzarmazari/front.svg",
  37310. extra: 1575/1455,
  37311. bottom: 152/1727
  37312. }
  37313. },
  37314. back: {
  37315. height: math.unit(58, "feet"),
  37316. weight: math.unit(200, "tons"),
  37317. name: "Back",
  37318. image: {
  37319. source: "./media/characters/uzarmazari/back.svg",
  37320. extra: 1585/1510,
  37321. bottom: 157/1742
  37322. }
  37323. },
  37324. head: {
  37325. height: math.unit(26, "feet"),
  37326. name: "Head",
  37327. image: {
  37328. source: "./media/characters/uzarmazari/head.svg"
  37329. }
  37330. },
  37331. },
  37332. [
  37333. {
  37334. name: "Normal",
  37335. height: math.unit(58, "feet"),
  37336. default: true
  37337. },
  37338. ]
  37339. ))
  37340. characterMakers.push(() => makeCharacter(
  37341. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37342. {
  37343. side: {
  37344. height: math.unit(15, "feet"),
  37345. name: "Side",
  37346. image: {
  37347. source: "./media/characters/akitu/side.svg",
  37348. extra: 1421/1321,
  37349. bottom: 157/1578
  37350. }
  37351. },
  37352. front: {
  37353. height: math.unit(15, "feet"),
  37354. name: "Front",
  37355. image: {
  37356. source: "./media/characters/akitu/front.svg",
  37357. extra: 1435/1326,
  37358. bottom: 232/1667
  37359. }
  37360. },
  37361. },
  37362. [
  37363. {
  37364. name: "Normal",
  37365. height: math.unit(15, "feet"),
  37366. default: true
  37367. },
  37368. ]
  37369. ))
  37370. characterMakers.push(() => makeCharacter(
  37371. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37372. {
  37373. front: {
  37374. height: math.unit(10 + 8/12, "feet"),
  37375. name: "Front",
  37376. image: {
  37377. source: "./media/characters/azalie-croixland/front.svg",
  37378. extra: 1972/1856,
  37379. bottom: 31/2003
  37380. }
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "Original Height",
  37386. height: math.unit(5 + 4/12, "feet")
  37387. },
  37388. {
  37389. name: "Normal Height",
  37390. height: math.unit(10 + 8/12, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37397. {
  37398. side: {
  37399. height: math.unit(7 + 1/12, "feet"),
  37400. weight: math.unit(245, "lb"),
  37401. name: "Side",
  37402. image: {
  37403. source: "./media/characters/kavus-kazian/side.svg",
  37404. extra: 349/342,
  37405. bottom: 15/364
  37406. }
  37407. },
  37408. },
  37409. [
  37410. {
  37411. name: "Normal",
  37412. height: math.unit(7 + 1/12, "feet"),
  37413. default: true
  37414. },
  37415. ]
  37416. ))
  37417. characterMakers.push(() => makeCharacter(
  37418. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37419. {
  37420. normalFront: {
  37421. height: math.unit(5 + 11/12, "feet"),
  37422. name: "Front",
  37423. image: {
  37424. source: "./media/characters/moonlight-rose/normal-front.svg",
  37425. extra: 1980/1825,
  37426. bottom: 18/1998
  37427. },
  37428. form: "normal",
  37429. default: true
  37430. },
  37431. normalBack: {
  37432. height: math.unit(5 + 11/12, "feet"),
  37433. name: "Back",
  37434. image: {
  37435. source: "./media/characters/moonlight-rose/normal-back.svg",
  37436. extra: 2010/1839,
  37437. bottom: 10/2020
  37438. },
  37439. form: "normal"
  37440. },
  37441. demonFront: {
  37442. height: math.unit(1.5, "earths"),
  37443. name: "Front",
  37444. image: {
  37445. source: "./media/characters/moonlight-rose/demon.svg",
  37446. extra: 1400/1294,
  37447. bottom: 45/1445
  37448. },
  37449. form: "demon",
  37450. default: true
  37451. },
  37452. terraFront: {
  37453. height: math.unit(1.5, "earths"),
  37454. name: "Front",
  37455. image: {
  37456. source: "./media/characters/moonlight-rose/terra.svg"
  37457. },
  37458. form: "terra",
  37459. default: true
  37460. },
  37461. jupiterFront: {
  37462. height: math.unit(69911*2, "km"),
  37463. name: "Front",
  37464. image: {
  37465. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37466. extra: 1367/1286,
  37467. bottom: 55/1422
  37468. },
  37469. form: "jupiter",
  37470. default: true
  37471. },
  37472. neptuneFront: {
  37473. height: math.unit(24622*2, "feet"),
  37474. name: "Front",
  37475. image: {
  37476. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37477. extra: 1851/1712,
  37478. bottom: 0/1851
  37479. },
  37480. form: "neptune",
  37481. default: true
  37482. },
  37483. },
  37484. [
  37485. {
  37486. name: "\"Natural\" Height",
  37487. height: math.unit(5 + 11/12, "feet"),
  37488. form: "normal"
  37489. },
  37490. {
  37491. name: "Smallest comfortable size",
  37492. height: math.unit(40, "meters"),
  37493. form: "normal"
  37494. },
  37495. {
  37496. name: "Common size",
  37497. height: math.unit(50, "km"),
  37498. form: "normal",
  37499. default: true
  37500. },
  37501. {
  37502. name: "Normal",
  37503. height: math.unit(1.5, "earths"),
  37504. form: "demon",
  37505. default: true
  37506. },
  37507. {
  37508. name: "Universal",
  37509. height: math.unit(15, "universes"),
  37510. form: "demon"
  37511. },
  37512. {
  37513. name: "Earth",
  37514. height: math.unit(1.5, "earths"),
  37515. form: "terra",
  37516. default: true
  37517. },
  37518. {
  37519. name: "Super Earth",
  37520. height: math.unit(67.5, "earths"),
  37521. form: "terra"
  37522. },
  37523. {
  37524. name: "Doesn't fit in a solar system...",
  37525. height: math.unit(1, "galaxy"),
  37526. form: "terra"
  37527. },
  37528. {
  37529. name: "Saturn",
  37530. height: math.unit(58232*2, "km"),
  37531. form: "jupiter"
  37532. },
  37533. {
  37534. name: "Jupiter",
  37535. height: math.unit(69911*2, "km"),
  37536. form: "jupiter",
  37537. default: true
  37538. },
  37539. {
  37540. name: "HD 100546 b",
  37541. height: math.unit(482938, "km"),
  37542. form: "jupiter"
  37543. },
  37544. {
  37545. name: "Enceladus",
  37546. height: math.unit(513*2, "km"),
  37547. form: "neptune"
  37548. },
  37549. {
  37550. name: "Europe",
  37551. height: math.unit(1560*2, "km"),
  37552. form: "neptune"
  37553. },
  37554. {
  37555. name: "Neptune",
  37556. height: math.unit(24622*2, "km"),
  37557. form: "neptune",
  37558. default: true
  37559. },
  37560. {
  37561. name: "CoRoT-9b",
  37562. height: math.unit(75067*2, "km"),
  37563. form: "neptune"
  37564. },
  37565. ],
  37566. {
  37567. "normal": {
  37568. name: "Normal",
  37569. default: true
  37570. },
  37571. "demon": {
  37572. name: "Demon"
  37573. },
  37574. "terra": {
  37575. name: "Terra"
  37576. },
  37577. "jupiter": {
  37578. name: "Jupiter"
  37579. },
  37580. "neptune": {
  37581. name: "Neptune"
  37582. }
  37583. }
  37584. ))
  37585. characterMakers.push(() => makeCharacter(
  37586. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37587. {
  37588. front: {
  37589. height: math.unit(16, "feet"),
  37590. weight: math.unit(610, "kg"),
  37591. name: "Front",
  37592. image: {
  37593. source: "./media/characters/huckle/front.svg",
  37594. extra: 1731/1625,
  37595. bottom: 33/1764
  37596. }
  37597. },
  37598. back: {
  37599. height: math.unit(16, "feet"),
  37600. weight: math.unit(610, "kg"),
  37601. name: "Back",
  37602. image: {
  37603. source: "./media/characters/huckle/back.svg",
  37604. extra: 1738/1651,
  37605. bottom: 37/1775
  37606. }
  37607. },
  37608. laughing: {
  37609. height: math.unit(3.75, "feet"),
  37610. name: "Laughing",
  37611. image: {
  37612. source: "./media/characters/huckle/laughing.svg"
  37613. }
  37614. },
  37615. angry: {
  37616. height: math.unit(4.15, "feet"),
  37617. name: "Angry",
  37618. image: {
  37619. source: "./media/characters/huckle/angry.svg"
  37620. }
  37621. },
  37622. },
  37623. [
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(16, "feet"),
  37627. default: true
  37628. },
  37629. {
  37630. name: "Mini Macro",
  37631. height: math.unit(463, "feet")
  37632. },
  37633. {
  37634. name: "Macro",
  37635. height: math.unit(1680, "meters")
  37636. },
  37637. {
  37638. name: "Mega Macro",
  37639. height: math.unit(175, "km")
  37640. },
  37641. {
  37642. name: "Terra Macro",
  37643. height: math.unit(32, "gigameters")
  37644. },
  37645. {
  37646. name: "Multiverse+",
  37647. height: math.unit(2.56e23, "yottameters")
  37648. },
  37649. ]
  37650. ))
  37651. characterMakers.push(() => makeCharacter(
  37652. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37653. {
  37654. front: {
  37655. height: math.unit(6 + 9/12, "feet"),
  37656. weight: math.unit(280, "lb"),
  37657. name: "Front",
  37658. image: {
  37659. source: "./media/characters/candy/front.svg",
  37660. extra: 234/217,
  37661. bottom: 11/245
  37662. }
  37663. },
  37664. },
  37665. [
  37666. {
  37667. name: "Really Small",
  37668. height: math.unit(0.1, "nm")
  37669. },
  37670. {
  37671. name: "Micro",
  37672. height: math.unit(2, "inches")
  37673. },
  37674. {
  37675. name: "Normal",
  37676. height: math.unit(6 + 9/12, "feet"),
  37677. default: true
  37678. },
  37679. {
  37680. name: "Small Macro",
  37681. height: math.unit(69, "feet")
  37682. },
  37683. {
  37684. name: "Macro",
  37685. height: math.unit(160, "feet")
  37686. },
  37687. {
  37688. name: "Megamacro",
  37689. height: math.unit(22000, "miles")
  37690. },
  37691. {
  37692. name: "Gigamacro",
  37693. height: math.unit(50000, "miles")
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37699. {
  37700. front: {
  37701. height: math.unit(4, "feet"),
  37702. weight: math.unit(90, "lb"),
  37703. name: "Front",
  37704. image: {
  37705. source: "./media/characters/joey-mcdonald/front.svg",
  37706. extra: 1059/852,
  37707. bottom: 33/1092
  37708. }
  37709. },
  37710. back: {
  37711. height: math.unit(4, "feet"),
  37712. weight: math.unit(90, "lb"),
  37713. name: "Back",
  37714. image: {
  37715. source: "./media/characters/joey-mcdonald/back.svg",
  37716. extra: 1077/879,
  37717. bottom: 5/1082
  37718. }
  37719. },
  37720. frontKobold: {
  37721. height: math.unit(4, "feet"),
  37722. weight: math.unit(100, "lb"),
  37723. name: "Front-kobold",
  37724. image: {
  37725. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37726. extra: 1480/1367,
  37727. bottom: 0/1480
  37728. }
  37729. },
  37730. backKobold: {
  37731. height: math.unit(4, "feet"),
  37732. weight: math.unit(100, "lb"),
  37733. name: "Back-kobold",
  37734. image: {
  37735. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37736. extra: 1449/1361,
  37737. bottom: 0/1449
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(4, "feet"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(12 + 6/12, "feet"),
  37754. name: "Front",
  37755. image: {
  37756. source: "./media/characters/kass-lockheed/front.svg",
  37757. extra: 354/343,
  37758. bottom: 9/363
  37759. }
  37760. },
  37761. back: {
  37762. height: math.unit(12 + 6/12, "feet"),
  37763. name: "Back",
  37764. image: {
  37765. source: "./media/characters/kass-lockheed/back.svg",
  37766. extra: 364/352,
  37767. bottom: 3/367
  37768. }
  37769. },
  37770. dick: {
  37771. height: math.unit(3.12, "feet"),
  37772. name: "Dick",
  37773. image: {
  37774. source: "./media/characters/kass-lockheed/dick.svg"
  37775. }
  37776. },
  37777. head: {
  37778. height: math.unit(2.6, "feet"),
  37779. name: "Head",
  37780. image: {
  37781. source: "./media/characters/kass-lockheed/head.svg"
  37782. }
  37783. },
  37784. bleh: {
  37785. height: math.unit(2.85, "feet"),
  37786. name: "Bleh",
  37787. image: {
  37788. source: "./media/characters/kass-lockheed/bleh.svg"
  37789. }
  37790. },
  37791. smug: {
  37792. height: math.unit(2.85, "feet"),
  37793. name: "Smug",
  37794. image: {
  37795. source: "./media/characters/kass-lockheed/smug.svg"
  37796. }
  37797. },
  37798. },
  37799. [
  37800. {
  37801. name: "Normal",
  37802. height: math.unit(12 + 6/12, "feet"),
  37803. default: true
  37804. },
  37805. ]
  37806. ))
  37807. characterMakers.push(() => makeCharacter(
  37808. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37809. {
  37810. front: {
  37811. height: math.unit(6 + 2/12, "feet"),
  37812. name: "Front",
  37813. image: {
  37814. source: "./media/characters/taylor/front.svg",
  37815. extra: 639/495,
  37816. bottom: 12/651
  37817. }
  37818. },
  37819. },
  37820. [
  37821. {
  37822. name: "Normal",
  37823. height: math.unit(6 + 2/12, "feet"),
  37824. default: true
  37825. },
  37826. {
  37827. name: "Big",
  37828. height: math.unit(15, "feet")
  37829. },
  37830. {
  37831. name: "Lorg",
  37832. height: math.unit(80, "feet")
  37833. },
  37834. {
  37835. name: "Too Lorg",
  37836. height: math.unit(120, "feet")
  37837. },
  37838. ]
  37839. ))
  37840. characterMakers.push(() => makeCharacter(
  37841. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37842. {
  37843. front: {
  37844. height: math.unit(15, "feet"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/kaizer/front.svg",
  37848. extra: 1612/1436,
  37849. bottom: 43/1655
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(15, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(2, "feet"),
  37866. weight: math.unit(30, "lb"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/sandy/front.svg",
  37870. extra: 1439/1307,
  37871. bottom: 194/1633
  37872. }
  37873. },
  37874. },
  37875. [
  37876. {
  37877. name: "Normal",
  37878. height: math.unit(2, "feet"),
  37879. default: true
  37880. },
  37881. ]
  37882. ))
  37883. characterMakers.push(() => makeCharacter(
  37884. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37885. {
  37886. front: {
  37887. height: math.unit(3, "feet"),
  37888. name: "Front",
  37889. image: {
  37890. source: "./media/characters/mellvi/front.svg",
  37891. extra: 1831/1630,
  37892. bottom: 58/1889
  37893. }
  37894. },
  37895. },
  37896. [
  37897. {
  37898. name: "Normal",
  37899. height: math.unit(3, "feet"),
  37900. default: true
  37901. },
  37902. ]
  37903. ))
  37904. characterMakers.push(() => makeCharacter(
  37905. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37906. {
  37907. front: {
  37908. height: math.unit(5 + 11/12, "feet"),
  37909. weight: math.unit(200, "lb"),
  37910. name: "Front",
  37911. image: {
  37912. source: "./media/characters/shirou/front.svg",
  37913. extra: 2491/2383,
  37914. bottom: 189/2680
  37915. }
  37916. },
  37917. back: {
  37918. height: math.unit(5 + 11/12, "feet"),
  37919. weight: math.unit(200, "lb"),
  37920. name: "Back",
  37921. image: {
  37922. source: "./media/characters/shirou/back.svg",
  37923. extra: 2554/2450,
  37924. bottom: 76/2630
  37925. }
  37926. },
  37927. },
  37928. [
  37929. {
  37930. name: "Normal",
  37931. height: math.unit(5 + 11/12, "feet"),
  37932. default: true
  37933. },
  37934. ]
  37935. ))
  37936. characterMakers.push(() => makeCharacter(
  37937. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37938. {
  37939. front: {
  37940. height: math.unit(6 + 3/12, "feet"),
  37941. weight: math.unit(177, "lb"),
  37942. name: "Front",
  37943. image: {
  37944. source: "./media/characters/noryu/front.svg",
  37945. extra: 973/885,
  37946. bottom: 10/983
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(6 + 3/12, "feet"),
  37954. default: true
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37960. {
  37961. front: {
  37962. height: math.unit(5 + 6/12, "feet"),
  37963. weight: math.unit(170, "lb"),
  37964. name: "Front",
  37965. image: {
  37966. source: "./media/characters/mevolas-rubenido/front.svg",
  37967. extra: 2109/1901,
  37968. bottom: 96/2205
  37969. }
  37970. },
  37971. },
  37972. [
  37973. {
  37974. name: "Normal",
  37975. height: math.unit(5 + 6/12, "feet"),
  37976. default: true
  37977. },
  37978. ]
  37979. ))
  37980. characterMakers.push(() => makeCharacter(
  37981. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37982. {
  37983. front: {
  37984. height: math.unit(100, "feet"),
  37985. name: "Front",
  37986. image: {
  37987. source: "./media/characters/dee/front.svg",
  37988. extra: 2153/2036,
  37989. bottom: 59/2212
  37990. }
  37991. },
  37992. back: {
  37993. height: math.unit(100, "feet"),
  37994. name: "Back",
  37995. image: {
  37996. source: "./media/characters/dee/back.svg",
  37997. extra: 2183/2058,
  37998. bottom: 75/2258
  37999. }
  38000. },
  38001. foot: {
  38002. height: math.unit(19.43, "feet"),
  38003. name: "Foot",
  38004. image: {
  38005. source: "./media/characters/dee/foot.svg"
  38006. }
  38007. },
  38008. hoof: {
  38009. height: math.unit(20.6, "feet"),
  38010. name: "Hoof",
  38011. image: {
  38012. source: "./media/characters/dee/hoof.svg"
  38013. }
  38014. },
  38015. },
  38016. [
  38017. {
  38018. name: "Macro",
  38019. height: math.unit(100, "feet"),
  38020. default: true
  38021. },
  38022. ]
  38023. ))
  38024. characterMakers.push(() => makeCharacter(
  38025. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38026. {
  38027. front: {
  38028. height: math.unit(5 + 6/12, "feet"),
  38029. name: "Front",
  38030. image: {
  38031. source: "./media/characters/teh/front.svg",
  38032. extra: 1002/847,
  38033. bottom: 62/1064
  38034. }
  38035. },
  38036. },
  38037. [
  38038. {
  38039. name: "Normal",
  38040. height: math.unit(5 + 6/12, "feet"),
  38041. default: true
  38042. },
  38043. ]
  38044. ))
  38045. characterMakers.push(() => makeCharacter(
  38046. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38047. {
  38048. side: {
  38049. height: math.unit(6 + 1/12, "feet"),
  38050. weight: math.unit(204, "lb"),
  38051. name: "Side",
  38052. image: {
  38053. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38054. extra: 974/775,
  38055. bottom: 169/1143
  38056. }
  38057. },
  38058. sitting: {
  38059. height: math.unit(6 + 2/12, "feet"),
  38060. weight: math.unit(204, "lb"),
  38061. name: "Sitting",
  38062. image: {
  38063. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38064. extra: 1175/964,
  38065. bottom: 378/1553
  38066. }
  38067. },
  38068. },
  38069. [
  38070. {
  38071. name: "Normal",
  38072. height: math.unit(6 + 1/12, "feet"),
  38073. default: true
  38074. },
  38075. ]
  38076. ))
  38077. characterMakers.push(() => makeCharacter(
  38078. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38079. {
  38080. front: {
  38081. height: math.unit(6, "inches"),
  38082. name: "Front",
  38083. image: {
  38084. source: "./media/characters/tululi/front.svg",
  38085. extra: 1997/1876,
  38086. bottom: 20/2017
  38087. }
  38088. },
  38089. },
  38090. [
  38091. {
  38092. name: "Normal",
  38093. height: math.unit(6, "inches"),
  38094. default: true
  38095. },
  38096. ]
  38097. ))
  38098. characterMakers.push(() => makeCharacter(
  38099. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38100. {
  38101. front: {
  38102. height: math.unit(4 + 1/12, "feet"),
  38103. name: "Front",
  38104. image: {
  38105. source: "./media/characters/star/front.svg",
  38106. extra: 1493/1189,
  38107. bottom: 48/1541
  38108. }
  38109. },
  38110. },
  38111. [
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(4 + 1/12, "feet"),
  38115. default: true
  38116. },
  38117. ]
  38118. ))
  38119. characterMakers.push(() => makeCharacter(
  38120. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38121. {
  38122. front: {
  38123. height: math.unit(6 + 3/12, "feet"),
  38124. name: "Front",
  38125. image: {
  38126. source: "./media/characters/comet/front.svg",
  38127. extra: 1681/1462,
  38128. bottom: 26/1707
  38129. }
  38130. },
  38131. },
  38132. [
  38133. {
  38134. name: "Normal",
  38135. height: math.unit(6 + 3/12, "feet"),
  38136. default: true
  38137. },
  38138. ]
  38139. ))
  38140. characterMakers.push(() => makeCharacter(
  38141. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38142. {
  38143. front: {
  38144. height: math.unit(950, "feet"),
  38145. name: "Front",
  38146. image: {
  38147. source: "./media/characters/vortex/front.svg",
  38148. extra: 1497/1434,
  38149. bottom: 56/1553
  38150. }
  38151. },
  38152. maw: {
  38153. height: math.unit(285, "feet"),
  38154. name: "Maw",
  38155. image: {
  38156. source: "./media/characters/vortex/maw.svg"
  38157. }
  38158. },
  38159. },
  38160. [
  38161. {
  38162. name: "Macro",
  38163. height: math.unit(950, "feet"),
  38164. default: true
  38165. },
  38166. ]
  38167. ))
  38168. characterMakers.push(() => makeCharacter(
  38169. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38170. {
  38171. front: {
  38172. height: math.unit(600, "feet"),
  38173. weight: math.unit(0.02, "grams"),
  38174. name: "Front",
  38175. image: {
  38176. source: "./media/characters/doodle/front.svg",
  38177. extra: 1578/1413,
  38178. bottom: 37/1615
  38179. }
  38180. },
  38181. },
  38182. [
  38183. {
  38184. name: "Macro",
  38185. height: math.unit(600, "feet"),
  38186. default: true
  38187. },
  38188. ]
  38189. ))
  38190. characterMakers.push(() => makeCharacter(
  38191. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38192. {
  38193. front: {
  38194. height: math.unit(6 + 6/12, "feet"),
  38195. name: "Front",
  38196. image: {
  38197. source: "./media/characters/jai/front.svg",
  38198. extra: 1645/1534,
  38199. bottom: 115/1760
  38200. }
  38201. },
  38202. },
  38203. [
  38204. {
  38205. name: "Normal",
  38206. height: math.unit(6 + 6/12, "feet"),
  38207. default: true
  38208. },
  38209. ]
  38210. ))
  38211. characterMakers.push(() => makeCharacter(
  38212. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38213. {
  38214. front: {
  38215. height: math.unit(6 + 8/12, "feet"),
  38216. name: "Front",
  38217. image: {
  38218. source: "./media/characters/pixel/front.svg",
  38219. extra: 1900/1735,
  38220. bottom: 63/1963
  38221. }
  38222. },
  38223. },
  38224. [
  38225. {
  38226. name: "Normal",
  38227. height: math.unit(6 + 8/12, "feet"),
  38228. default: true
  38229. },
  38230. ]
  38231. ))
  38232. characterMakers.push(() => makeCharacter(
  38233. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38234. {
  38235. back: {
  38236. height: math.unit(4 + 1/12, "feet"),
  38237. weight: math.unit(75, "lb"),
  38238. name: "Back",
  38239. image: {
  38240. source: "./media/characters/rhett/back.svg",
  38241. extra: 930/878,
  38242. bottom: 25/955
  38243. }
  38244. },
  38245. front: {
  38246. height: math.unit(4 + 1/12, "feet"),
  38247. weight: math.unit(75, "lb"),
  38248. name: "Front",
  38249. image: {
  38250. source: "./media/characters/rhett/front.svg",
  38251. extra: 1682/1586,
  38252. bottom: 92/1774
  38253. }
  38254. },
  38255. },
  38256. [
  38257. {
  38258. name: "Micro",
  38259. height: math.unit(8, "inches")
  38260. },
  38261. {
  38262. name: "Tiny",
  38263. height: math.unit(2, "feet")
  38264. },
  38265. {
  38266. name: "Normal",
  38267. height: math.unit(4 + 1/12, "feet"),
  38268. default: true
  38269. },
  38270. ]
  38271. ))
  38272. characterMakers.push(() => makeCharacter(
  38273. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38274. {
  38275. front: {
  38276. height: math.unit(3 + 3/12, "feet"),
  38277. name: "Front",
  38278. image: {
  38279. source: "./media/characters/penny/front.svg",
  38280. extra: 1406/1311,
  38281. bottom: 26/1432
  38282. }
  38283. },
  38284. },
  38285. [
  38286. {
  38287. name: "Normal",
  38288. height: math.unit(3 + 3/12, "feet"),
  38289. default: true
  38290. },
  38291. ]
  38292. ))
  38293. characterMakers.push(() => makeCharacter(
  38294. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38295. {
  38296. front: {
  38297. height: math.unit(4 + 11/12, "feet"),
  38298. name: "Front",
  38299. image: {
  38300. source: "./media/characters/monty/front.svg",
  38301. extra: 1479/1209,
  38302. bottom: 0/1479
  38303. }
  38304. },
  38305. },
  38306. [
  38307. {
  38308. name: "Normal",
  38309. height: math.unit(4 + 11/12, "feet"),
  38310. default: true
  38311. },
  38312. ]
  38313. ))
  38314. characterMakers.push(() => makeCharacter(
  38315. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38316. {
  38317. front: {
  38318. height: math.unit(8 + 4/12, "feet"),
  38319. name: "Front",
  38320. image: {
  38321. source: "./media/characters/sterling/front.svg",
  38322. extra: 1420/1236,
  38323. bottom: 27/1447
  38324. }
  38325. },
  38326. },
  38327. [
  38328. {
  38329. name: "Normal",
  38330. height: math.unit(8 + 4/12, "feet"),
  38331. default: true
  38332. },
  38333. ]
  38334. ))
  38335. characterMakers.push(() => makeCharacter(
  38336. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38337. {
  38338. front: {
  38339. height: math.unit(15, "feet"),
  38340. name: "Front",
  38341. image: {
  38342. source: "./media/characters/marble/front.svg",
  38343. extra: 973/937,
  38344. bottom: 32/1005
  38345. }
  38346. },
  38347. },
  38348. [
  38349. {
  38350. name: "Normal",
  38351. height: math.unit(15, "feet"),
  38352. default: true
  38353. },
  38354. ]
  38355. ))
  38356. characterMakers.push(() => makeCharacter(
  38357. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38358. {
  38359. front: {
  38360. height: math.unit(3, "inches"),
  38361. name: "Front",
  38362. image: {
  38363. source: "./media/characters/powder/front.svg",
  38364. extra: 1504/1334,
  38365. bottom: 518/2022
  38366. }
  38367. },
  38368. },
  38369. [
  38370. {
  38371. name: "Normal",
  38372. height: math.unit(3, "inches"),
  38373. default: true
  38374. },
  38375. ]
  38376. ))
  38377. characterMakers.push(() => makeCharacter(
  38378. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38379. {
  38380. front: {
  38381. height: math.unit(4 + 5/12, "feet"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/joey-raccoon/front.svg",
  38385. extra: 1273/1197,
  38386. bottom: 0/1273
  38387. }
  38388. },
  38389. },
  38390. [
  38391. {
  38392. name: "Normal",
  38393. height: math.unit(4 + 5/12, "feet"),
  38394. default: true
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(8 + 4/12, "feet"),
  38403. name: "Front",
  38404. image: {
  38405. source: "./media/characters/vick/front.svg",
  38406. extra: 2187/2118,
  38407. bottom: 47/2234
  38408. }
  38409. },
  38410. },
  38411. [
  38412. {
  38413. name: "Normal",
  38414. height: math.unit(8 + 4/12, "feet"),
  38415. default: true
  38416. },
  38417. ]
  38418. ))
  38419. characterMakers.push(() => makeCharacter(
  38420. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38421. {
  38422. front: {
  38423. height: math.unit(5 + 5/12, "feet"),
  38424. name: "Front",
  38425. image: {
  38426. source: "./media/characters/mitsy/front.svg",
  38427. extra: 1842/1695,
  38428. bottom: 0/1842
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(5 + 5/12, "feet"),
  38436. default: true
  38437. },
  38438. ]
  38439. ))
  38440. characterMakers.push(() => makeCharacter(
  38441. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38442. {
  38443. front: {
  38444. height: math.unit(6 + 3/12, "feet"),
  38445. name: "Front",
  38446. image: {
  38447. source: "./media/characters/silvy/front.svg",
  38448. extra: 1995/1836,
  38449. bottom: 225/2220
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Normal",
  38456. height: math.unit(6 + 3/12, "feet"),
  38457. default: true
  38458. },
  38459. ]
  38460. ))
  38461. characterMakers.push(() => makeCharacter(
  38462. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38463. {
  38464. front: {
  38465. height: math.unit(3 + 8/12, "feet"),
  38466. name: "Front",
  38467. image: {
  38468. source: "./media/characters/rodney/front.svg",
  38469. extra: 1956/1747,
  38470. bottom: 31/1987
  38471. }
  38472. },
  38473. frontDressed: {
  38474. height: math.unit(2.9, "feet"),
  38475. name: "Front (Dressed)",
  38476. image: {
  38477. source: "./media/characters/rodney/front-dressed.svg",
  38478. extra: 1382/1241,
  38479. bottom: 385/1767
  38480. }
  38481. },
  38482. },
  38483. [
  38484. {
  38485. name: "Normal",
  38486. height: math.unit(3 + 8/12, "feet"),
  38487. default: true
  38488. },
  38489. ]
  38490. ))
  38491. characterMakers.push(() => makeCharacter(
  38492. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38493. {
  38494. front: {
  38495. height: math.unit(5 + 9/12, "feet"),
  38496. weight: math.unit(194, "lbs"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/zakail-sudekai/front.svg",
  38500. extra: 2696/2533,
  38501. bottom: 248/2944
  38502. }
  38503. },
  38504. maw: {
  38505. height: math.unit(1.35, "feet"),
  38506. name: "Maw",
  38507. image: {
  38508. source: "./media/characters/zakail-sudekai/maw.svg"
  38509. }
  38510. },
  38511. },
  38512. [
  38513. {
  38514. name: "Normal",
  38515. height: math.unit(5 + 9/12, "feet"),
  38516. default: true
  38517. },
  38518. ]
  38519. ))
  38520. characterMakers.push(() => makeCharacter(
  38521. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38522. {
  38523. front: {
  38524. height: math.unit(8 + 4/12, "feet"),
  38525. weight: math.unit(1200, "lb"),
  38526. name: "Front",
  38527. image: {
  38528. source: "./media/characters/eleanor/front.svg",
  38529. extra: 1226/1192,
  38530. bottom: 52/1278
  38531. }
  38532. },
  38533. back: {
  38534. height: math.unit(8 + 4/12, "feet"),
  38535. weight: math.unit(1200, "lb"),
  38536. name: "Back",
  38537. image: {
  38538. source: "./media/characters/eleanor/back.svg",
  38539. extra: 1242/1184,
  38540. bottom: 60/1302
  38541. }
  38542. },
  38543. head: {
  38544. height: math.unit(2.62, "feet"),
  38545. name: "Head",
  38546. image: {
  38547. source: "./media/characters/eleanor/head.svg"
  38548. }
  38549. },
  38550. },
  38551. [
  38552. {
  38553. name: "Normal",
  38554. height: math.unit(8 + 4/12, "feet"),
  38555. default: true
  38556. },
  38557. ]
  38558. ))
  38559. characterMakers.push(() => makeCharacter(
  38560. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38561. {
  38562. front: {
  38563. height: math.unit(8 + 4/12, "feet"),
  38564. weight: math.unit(750, "lb"),
  38565. name: "Front",
  38566. image: {
  38567. source: "./media/characters/tanya/front.svg",
  38568. extra: 1749/1615,
  38569. bottom: 33/1782
  38570. }
  38571. },
  38572. },
  38573. [
  38574. {
  38575. name: "Normal",
  38576. height: math.unit(8 + 4/12, "feet"),
  38577. default: true
  38578. },
  38579. ]
  38580. ))
  38581. characterMakers.push(() => makeCharacter(
  38582. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38583. {
  38584. front: {
  38585. height: math.unit(5, "feet"),
  38586. weight: math.unit(225, "lb"),
  38587. name: "Front",
  38588. image: {
  38589. source: "./media/characters/cindy/front.svg",
  38590. extra: 1320/1250,
  38591. bottom: 42/1362
  38592. }
  38593. },
  38594. frontDressed: {
  38595. height: math.unit(5, "feet"),
  38596. weight: math.unit(225, "lb"),
  38597. name: "Front (Dressed)",
  38598. image: {
  38599. source: "./media/characters/cindy/front-dressed.svg",
  38600. extra: 1320/1250,
  38601. bottom: 42/1362
  38602. }
  38603. },
  38604. back: {
  38605. height: math.unit(5, "feet"),
  38606. weight: math.unit(225, "lb"),
  38607. name: "Back",
  38608. image: {
  38609. source: "./media/characters/cindy/back.svg",
  38610. extra: 1384/1346,
  38611. bottom: 14/1398
  38612. }
  38613. },
  38614. },
  38615. [
  38616. {
  38617. name: "Normal",
  38618. height: math.unit(5, "feet"),
  38619. default: true
  38620. },
  38621. ]
  38622. ))
  38623. characterMakers.push(() => makeCharacter(
  38624. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38625. {
  38626. front: {
  38627. height: math.unit(6 + 9/12, "feet"),
  38628. weight: math.unit(440, "lb"),
  38629. name: "Front",
  38630. image: {
  38631. source: "./media/characters/wilbur-owen/front.svg",
  38632. extra: 1575/1448,
  38633. bottom: 72/1647
  38634. }
  38635. },
  38636. back: {
  38637. height: math.unit(6 + 9/12, "feet"),
  38638. weight: math.unit(440, "lb"),
  38639. name: "Back",
  38640. image: {
  38641. source: "./media/characters/wilbur-owen/back.svg",
  38642. extra: 1578/1445,
  38643. bottom: 36/1614
  38644. }
  38645. },
  38646. },
  38647. [
  38648. {
  38649. name: "Normal",
  38650. height: math.unit(6 + 9/12, "feet"),
  38651. default: true
  38652. },
  38653. ]
  38654. ))
  38655. characterMakers.push(() => makeCharacter(
  38656. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38657. {
  38658. front: {
  38659. height: math.unit(6 + 5/12, "feet"),
  38660. weight: math.unit(650, "lb"),
  38661. name: "Front",
  38662. image: {
  38663. source: "./media/characters/keegan/front.svg",
  38664. extra: 2387/2198,
  38665. bottom: 33/2420
  38666. }
  38667. },
  38668. side: {
  38669. height: math.unit(6 + 5/12, "feet"),
  38670. weight: math.unit(650, "lb"),
  38671. name: "Side",
  38672. image: {
  38673. source: "./media/characters/keegan/side.svg",
  38674. extra: 2390/2202,
  38675. bottom: 47/2437
  38676. }
  38677. },
  38678. back: {
  38679. height: math.unit(6 + 5/12, "feet"),
  38680. weight: math.unit(650, "lb"),
  38681. name: "Back",
  38682. image: {
  38683. source: "./media/characters/keegan/back.svg",
  38684. extra: 2418/2268,
  38685. bottom: 15/2433
  38686. }
  38687. },
  38688. frontSfw: {
  38689. height: math.unit(6 + 5/12, "feet"),
  38690. weight: math.unit(650, "lb"),
  38691. name: "Front (SFW)",
  38692. image: {
  38693. source: "./media/characters/keegan/front-sfw.svg",
  38694. extra: 2387/2198,
  38695. bottom: 33/2420
  38696. }
  38697. },
  38698. beans: {
  38699. height: math.unit(1.85, "feet"),
  38700. name: "Beans",
  38701. image: {
  38702. source: "./media/characters/keegan/beans.svg"
  38703. }
  38704. },
  38705. },
  38706. [
  38707. {
  38708. name: "Normal",
  38709. height: math.unit(6 + 5/12, "feet"),
  38710. default: true
  38711. },
  38712. ]
  38713. ))
  38714. characterMakers.push(() => makeCharacter(
  38715. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38716. {
  38717. front: {
  38718. height: math.unit(9, "feet"),
  38719. name: "Front",
  38720. image: {
  38721. source: "./media/characters/colton/front.svg",
  38722. extra: 1589/1326,
  38723. bottom: 139/1728
  38724. }
  38725. },
  38726. },
  38727. [
  38728. {
  38729. name: "Normal",
  38730. height: math.unit(9, "feet"),
  38731. default: true
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38737. {
  38738. front: {
  38739. height: math.unit(2 + 9/12, "feet"),
  38740. name: "Front",
  38741. image: {
  38742. source: "./media/characters/bora/front.svg",
  38743. extra: 1265/1250,
  38744. bottom: 24/1289
  38745. }
  38746. },
  38747. },
  38748. [
  38749. {
  38750. name: "Normal",
  38751. height: math.unit(2 + 9/12, "feet"),
  38752. default: true
  38753. },
  38754. ]
  38755. ))
  38756. characterMakers.push(() => makeCharacter(
  38757. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38758. {
  38759. front: {
  38760. height: math.unit(8, "feet"),
  38761. name: "Front",
  38762. image: {
  38763. source: "./media/characters/myu-myu/front.svg",
  38764. extra: 1949/1857,
  38765. bottom: 90/2039
  38766. }
  38767. },
  38768. },
  38769. [
  38770. {
  38771. name: "Normal",
  38772. height: math.unit(8, "feet"),
  38773. default: true
  38774. },
  38775. {
  38776. name: "Big",
  38777. height: math.unit(15, "feet")
  38778. },
  38779. {
  38780. name: "BIG",
  38781. height: math.unit(25, "feet")
  38782. },
  38783. ]
  38784. ))
  38785. characterMakers.push(() => makeCharacter(
  38786. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38787. {
  38788. side: {
  38789. height: math.unit(7 + 5/12, "feet"),
  38790. weight: math.unit(2800, "lb"),
  38791. name: "Side",
  38792. image: {
  38793. source: "./media/characters/haloren/side.svg",
  38794. extra: 1793/409,
  38795. bottom: 59/1852
  38796. }
  38797. },
  38798. frontPaw: {
  38799. height: math.unit(2.36, "feet"),
  38800. name: "Front paw",
  38801. image: {
  38802. source: "./media/characters/haloren/front-paw.svg"
  38803. }
  38804. },
  38805. hindPaw: {
  38806. height: math.unit(3.18, "feet"),
  38807. name: "Hind paw",
  38808. image: {
  38809. source: "./media/characters/haloren/hind-paw.svg"
  38810. }
  38811. },
  38812. maw: {
  38813. height: math.unit(5.05, "feet"),
  38814. name: "Maw",
  38815. image: {
  38816. source: "./media/characters/haloren/maw.svg"
  38817. }
  38818. },
  38819. dick: {
  38820. height: math.unit(2.90, "feet"),
  38821. name: "Dick",
  38822. image: {
  38823. source: "./media/characters/haloren/dick.svg"
  38824. }
  38825. },
  38826. },
  38827. [
  38828. {
  38829. name: "Normal",
  38830. height: math.unit(7 + 5/12, "feet"),
  38831. default: true
  38832. },
  38833. {
  38834. name: "Enhanced",
  38835. height: math.unit(14 + 3/12, "feet")
  38836. },
  38837. ]
  38838. ))
  38839. characterMakers.push(() => makeCharacter(
  38840. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38841. {
  38842. front: {
  38843. height: math.unit(171, "cm"),
  38844. name: "Front",
  38845. image: {
  38846. source: "./media/characters/kimmy/front.svg",
  38847. extra: 1491/1435,
  38848. bottom: 53/1544
  38849. }
  38850. },
  38851. },
  38852. [
  38853. {
  38854. name: "Small",
  38855. height: math.unit(9, "cm")
  38856. },
  38857. {
  38858. name: "Normal",
  38859. height: math.unit(171, "cm"),
  38860. default: true
  38861. },
  38862. ]
  38863. ))
  38864. characterMakers.push(() => makeCharacter(
  38865. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38866. {
  38867. front: {
  38868. height: math.unit(8, "feet"),
  38869. weight: math.unit(300, "lb"),
  38870. name: "Front",
  38871. image: {
  38872. source: "./media/characters/galeboomer/front.svg",
  38873. extra: 4651/4415,
  38874. bottom: 162/4813
  38875. }
  38876. },
  38877. back: {
  38878. height: math.unit(8, "feet"),
  38879. weight: math.unit(300, "lb"),
  38880. name: "Back",
  38881. image: {
  38882. source: "./media/characters/galeboomer/back.svg",
  38883. extra: 4544/4314,
  38884. bottom: 16/4560
  38885. }
  38886. },
  38887. frontAlt: {
  38888. height: math.unit(8, "feet"),
  38889. weight: math.unit(300, "lb"),
  38890. name: "Front (Alt)",
  38891. image: {
  38892. source: "./media/characters/galeboomer/front-alt.svg",
  38893. extra: 4458/4228,
  38894. bottom: 68/4526
  38895. }
  38896. },
  38897. maw: {
  38898. height: math.unit(1.2, "feet"),
  38899. name: "Maw",
  38900. image: {
  38901. source: "./media/characters/galeboomer/maw.svg"
  38902. }
  38903. },
  38904. },
  38905. [
  38906. {
  38907. name: "Normal",
  38908. height: math.unit(8, "feet"),
  38909. default: true
  38910. },
  38911. ]
  38912. ))
  38913. characterMakers.push(() => makeCharacter(
  38914. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38915. {
  38916. front: {
  38917. height: math.unit(5 + 9/12, "feet"),
  38918. weight: math.unit(120, "lb"),
  38919. name: "Front",
  38920. image: {
  38921. source: "./media/characters/chyr/front.svg",
  38922. extra: 1323/1254,
  38923. bottom: 63/1386
  38924. }
  38925. },
  38926. back: {
  38927. height: math.unit(5 + 9/12, "feet"),
  38928. weight: math.unit(120, "lb"),
  38929. name: "Back",
  38930. image: {
  38931. source: "./media/characters/chyr/back.svg",
  38932. extra: 1323/1252,
  38933. bottom: 48/1371
  38934. }
  38935. },
  38936. },
  38937. [
  38938. {
  38939. name: "Normal",
  38940. height: math.unit(5 + 9/12, "feet"),
  38941. default: true
  38942. },
  38943. ]
  38944. ))
  38945. characterMakers.push(() => makeCharacter(
  38946. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38947. {
  38948. front: {
  38949. height: math.unit(7, "feet"),
  38950. weight: math.unit(310, "lb"),
  38951. name: "Front",
  38952. image: {
  38953. source: "./media/characters/solarus/front.svg",
  38954. extra: 2415/2021,
  38955. bottom: 103/2518
  38956. }
  38957. },
  38958. back: {
  38959. height: math.unit(7, "feet"),
  38960. weight: math.unit(310, "lb"),
  38961. name: "Back",
  38962. image: {
  38963. source: "./media/characters/solarus/back.svg",
  38964. extra: 2463/2089,
  38965. bottom: 79/2542
  38966. }
  38967. },
  38968. },
  38969. [
  38970. {
  38971. name: "Normal",
  38972. height: math.unit(7, "feet"),
  38973. default: true
  38974. },
  38975. ]
  38976. ))
  38977. characterMakers.push(() => makeCharacter(
  38978. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38979. {
  38980. front: {
  38981. height: math.unit(16, "feet"),
  38982. name: "Front",
  38983. image: {
  38984. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38985. extra: 1844/1780,
  38986. bottom: 58/1902
  38987. }
  38988. },
  38989. winterCoat: {
  38990. height: math.unit(16, "feet"),
  38991. name: "Winter Coat",
  38992. image: {
  38993. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38994. extra: 1807/1775,
  38995. bottom: 69/1876
  38996. }
  38997. },
  38998. },
  38999. [
  39000. {
  39001. name: "Normal",
  39002. height: math.unit(16, "feet"),
  39003. default: true
  39004. },
  39005. {
  39006. name: "Chicago Size",
  39007. height: math.unit(560, "feet")
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39013. {
  39014. front: {
  39015. height: math.unit(11 + 6/12, "feet"),
  39016. weight: math.unit(1366, "lb"),
  39017. name: "Front",
  39018. image: {
  39019. source: "./media/characters/lexor/front.svg",
  39020. extra: 1560/1481,
  39021. bottom: 211/1771
  39022. }
  39023. },
  39024. back: {
  39025. height: math.unit(11 + 6/12, "feet"),
  39026. weight: math.unit(1366, "lb"),
  39027. name: "Back",
  39028. image: {
  39029. source: "./media/characters/lexor/back.svg",
  39030. extra: 1614/1533,
  39031. bottom: 76/1690
  39032. }
  39033. },
  39034. maw: {
  39035. height: math.unit(3, "feet"),
  39036. name: "Maw",
  39037. image: {
  39038. source: "./media/characters/lexor/maw.svg"
  39039. }
  39040. },
  39041. dick: {
  39042. height: math.unit(2.59, "feet"),
  39043. name: "Dick",
  39044. image: {
  39045. source: "./media/characters/lexor/dick.svg"
  39046. }
  39047. },
  39048. },
  39049. [
  39050. {
  39051. name: "Normal",
  39052. height: math.unit(11 + 6/12, "feet"),
  39053. default: true
  39054. },
  39055. ]
  39056. ))
  39057. characterMakers.push(() => makeCharacter(
  39058. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39059. {
  39060. front: {
  39061. height: math.unit(5 + 8/12, "feet"),
  39062. name: "Front",
  39063. image: {
  39064. source: "./media/characters/magnum/front.svg",
  39065. extra: 942/855,
  39066. bottom: 26/968
  39067. }
  39068. },
  39069. },
  39070. [
  39071. {
  39072. name: "Normal",
  39073. height: math.unit(5 + 8/12, "feet"),
  39074. default: true
  39075. },
  39076. ]
  39077. ))
  39078. characterMakers.push(() => makeCharacter(
  39079. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39080. {
  39081. front: {
  39082. height: math.unit(18 + 4/12, "feet"),
  39083. weight: math.unit(1500, "kg"),
  39084. name: "Front",
  39085. image: {
  39086. source: "./media/characters/solas-sharpsman/front.svg",
  39087. extra: 1698/1589,
  39088. bottom: 0/1698
  39089. }
  39090. },
  39091. },
  39092. [
  39093. {
  39094. name: "Normal",
  39095. height: math.unit(18 + 4/12, "feet"),
  39096. default: true
  39097. },
  39098. ]
  39099. ))
  39100. characterMakers.push(() => makeCharacter(
  39101. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39102. {
  39103. front: {
  39104. height: math.unit(5 + 5/12, "feet"),
  39105. weight: math.unit(180, "lb"),
  39106. name: "Front",
  39107. image: {
  39108. source: "./media/characters/october/front.svg",
  39109. extra: 1800/1650,
  39110. bottom: 0/1800
  39111. }
  39112. },
  39113. frontNsfw: {
  39114. height: math.unit(5 + 5/12, "feet"),
  39115. weight: math.unit(180, "lb"),
  39116. name: "Front (NSFW)",
  39117. image: {
  39118. source: "./media/characters/october/front-nsfw.svg",
  39119. extra: 1392/1307,
  39120. bottom: 42/1434
  39121. }
  39122. },
  39123. },
  39124. [
  39125. {
  39126. name: "Normal",
  39127. height: math.unit(5 + 5/12, "feet"),
  39128. default: true
  39129. },
  39130. ]
  39131. ))
  39132. characterMakers.push(() => makeCharacter(
  39133. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39134. {
  39135. front: {
  39136. height: math.unit(8 + 6/12, "feet"),
  39137. name: "Front",
  39138. image: {
  39139. source: "./media/characters/essynkardi/front.svg",
  39140. extra: 1541/1457,
  39141. bottom: 47/1588
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Normal",
  39148. height: math.unit(8 + 6/12, "feet"),
  39149. default: true
  39150. },
  39151. ]
  39152. ))
  39153. characterMakers.push(() => makeCharacter(
  39154. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39155. {
  39156. front: {
  39157. height: math.unit(6 + 6/12, "feet"),
  39158. weight: math.unit(7, "lb"),
  39159. name: "Front",
  39160. image: {
  39161. source: "./media/characters/icky/front.svg",
  39162. extra: 813/782,
  39163. bottom: 66/879
  39164. }
  39165. },
  39166. back: {
  39167. height: math.unit(6 + 6/12, "feet"),
  39168. weight: math.unit(7, "lb"),
  39169. name: "Back",
  39170. image: {
  39171. source: "./media/characters/icky/back.svg",
  39172. extra: 754/735,
  39173. bottom: 56/810
  39174. }
  39175. },
  39176. },
  39177. [
  39178. {
  39179. name: "Normal",
  39180. height: math.unit(6 + 6/12, "feet"),
  39181. default: true
  39182. },
  39183. ]
  39184. ))
  39185. characterMakers.push(() => makeCharacter(
  39186. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39187. {
  39188. front: {
  39189. height: math.unit(15, "feet"),
  39190. name: "Front",
  39191. image: {
  39192. source: "./media/characters/rojas/front.svg",
  39193. extra: 1462/1408,
  39194. bottom: 95/1557
  39195. }
  39196. },
  39197. back: {
  39198. height: math.unit(15, "feet"),
  39199. name: "Back",
  39200. image: {
  39201. source: "./media/characters/rojas/back.svg",
  39202. extra: 1023/954,
  39203. bottom: 28/1051
  39204. }
  39205. },
  39206. },
  39207. [
  39208. {
  39209. name: "Normal",
  39210. height: math.unit(15, "feet"),
  39211. default: true
  39212. },
  39213. ]
  39214. ))
  39215. characterMakers.push(() => makeCharacter(
  39216. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39217. {
  39218. frontHuman: {
  39219. height: math.unit(5 + 7/12, "feet"),
  39220. name: "Front (Human)",
  39221. image: {
  39222. source: "./media/characters/alek-dryagan/front-human.svg",
  39223. extra: 1687/1667,
  39224. bottom: 69/1756
  39225. }
  39226. },
  39227. backHuman: {
  39228. height: math.unit(5 + 7/12, "feet"),
  39229. name: "Back (Human)",
  39230. image: {
  39231. source: "./media/characters/alek-dryagan/back-human.svg",
  39232. extra: 1670/1649,
  39233. bottom: 65/1735
  39234. }
  39235. },
  39236. frontDemi: {
  39237. height: math.unit(65, "feet"),
  39238. name: "Front (Demi)",
  39239. image: {
  39240. source: "./media/characters/alek-dryagan/front-demi.svg",
  39241. extra: 1669/1642,
  39242. bottom: 49/1718
  39243. }
  39244. },
  39245. backDemi: {
  39246. height: math.unit(65, "feet"),
  39247. name: "Back (Demi)",
  39248. image: {
  39249. source: "./media/characters/alek-dryagan/back-demi.svg",
  39250. extra: 1658/1637,
  39251. bottom: 40/1698
  39252. }
  39253. },
  39254. mawHuman: {
  39255. height: math.unit(0.3, "feet"),
  39256. name: "Maw (Human)",
  39257. image: {
  39258. source: "./media/characters/alek-dryagan/maw-human.svg"
  39259. }
  39260. },
  39261. mawDemi: {
  39262. height: math.unit(3.8, "feet"),
  39263. name: "Maw (Demi)",
  39264. image: {
  39265. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Normal",
  39272. height: math.unit(5 + 7/12, "feet"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39279. {
  39280. frontHuman: {
  39281. height: math.unit(5 + 2/12, "feet"),
  39282. name: "Front (Human)",
  39283. image: {
  39284. source: "./media/characters/gen/front-human.svg",
  39285. extra: 1627/1538,
  39286. bottom: 71/1698
  39287. }
  39288. },
  39289. backHuman: {
  39290. height: math.unit(5 + 2/12, "feet"),
  39291. name: "Back (Human)",
  39292. image: {
  39293. source: "./media/characters/gen/back-human.svg",
  39294. extra: 1638/1548,
  39295. bottom: 69/1707
  39296. }
  39297. },
  39298. frontDemi: {
  39299. height: math.unit(5 + 2/12, "feet"),
  39300. name: "Front (Demi)",
  39301. image: {
  39302. source: "./media/characters/gen/front-demi.svg",
  39303. extra: 1627/1538,
  39304. bottom: 71/1698
  39305. }
  39306. },
  39307. backDemi: {
  39308. height: math.unit(5 + 2/12, "feet"),
  39309. name: "Back (Demi)",
  39310. image: {
  39311. source: "./media/characters/gen/back-demi.svg",
  39312. extra: 1638/1548,
  39313. bottom: 69/1707
  39314. }
  39315. },
  39316. },
  39317. [
  39318. {
  39319. name: "Normal",
  39320. height: math.unit(5 + 2/12, "feet"),
  39321. default: true
  39322. },
  39323. ]
  39324. ))
  39325. characterMakers.push(() => makeCharacter(
  39326. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39327. {
  39328. frontImp: {
  39329. height: math.unit(1 + 11/12, "feet"),
  39330. name: "Front (Imp)",
  39331. image: {
  39332. source: "./media/characters/max-kobold/front-imp.svg",
  39333. extra: 1238/1134,
  39334. bottom: 81/1319
  39335. }
  39336. },
  39337. backImp: {
  39338. height: math.unit(1 + 11/12, "feet"),
  39339. name: "Back (Imp)",
  39340. image: {
  39341. source: "./media/characters/max-kobold/back-imp.svg",
  39342. extra: 1334/1175,
  39343. bottom: 34/1368
  39344. }
  39345. },
  39346. frontDemi: {
  39347. height: math.unit(5 + 9/12, "feet"),
  39348. name: "Front (Demi)",
  39349. image: {
  39350. source: "./media/characters/max-kobold/front-demi.svg",
  39351. extra: 1715/1685,
  39352. bottom: 54/1769
  39353. }
  39354. },
  39355. backDemi: {
  39356. height: math.unit(5 + 9/12, "feet"),
  39357. name: "Back (Demi)",
  39358. image: {
  39359. source: "./media/characters/max-kobold/back-demi.svg",
  39360. extra: 1752/1729,
  39361. bottom: 41/1793
  39362. }
  39363. },
  39364. handImp: {
  39365. height: math.unit(0.45, "feet"),
  39366. name: "Hand (Imp)",
  39367. image: {
  39368. source: "./media/characters/max-kobold/hand.svg"
  39369. }
  39370. },
  39371. pawImp: {
  39372. height: math.unit(0.46, "feet"),
  39373. name: "Paw (Imp)",
  39374. image: {
  39375. source: "./media/characters/max-kobold/paw.svg"
  39376. }
  39377. },
  39378. handDemi: {
  39379. height: math.unit(0.80, "feet"),
  39380. name: "Hand (Demi)",
  39381. image: {
  39382. source: "./media/characters/max-kobold/hand.svg"
  39383. }
  39384. },
  39385. pawDemi: {
  39386. height: math.unit(1.1, "feet"),
  39387. name: "Paw (Demi)",
  39388. image: {
  39389. source: "./media/characters/max-kobold/paw.svg"
  39390. }
  39391. },
  39392. headImp: {
  39393. height: math.unit(1.33, "feet"),
  39394. name: "Head (Imp)",
  39395. image: {
  39396. source: "./media/characters/max-kobold/head-imp.svg"
  39397. }
  39398. },
  39399. mawImp: {
  39400. height: math.unit(0.75, "feet"),
  39401. name: "Maw (Imp)",
  39402. image: {
  39403. source: "./media/characters/max-kobold/maw-imp.svg"
  39404. }
  39405. },
  39406. mawDemi: {
  39407. height: math.unit(0.42, "feet"),
  39408. name: "Maw (Demi)",
  39409. image: {
  39410. source: "./media/characters/max-kobold/maw-demi.svg"
  39411. }
  39412. },
  39413. },
  39414. [
  39415. {
  39416. name: "Normal",
  39417. height: math.unit(1 + 11/12, "feet"),
  39418. default: true
  39419. },
  39420. ]
  39421. ))
  39422. characterMakers.push(() => makeCharacter(
  39423. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39424. {
  39425. front: {
  39426. height: math.unit(7 + 5/12, "feet"),
  39427. name: "Front",
  39428. image: {
  39429. source: "./media/characters/carbon/front.svg",
  39430. extra: 1754/1689,
  39431. bottom: 65/1819
  39432. }
  39433. },
  39434. back: {
  39435. height: math.unit(7 + 5/12, "feet"),
  39436. name: "Back",
  39437. image: {
  39438. source: "./media/characters/carbon/back.svg",
  39439. extra: 1762/1695,
  39440. bottom: 24/1786
  39441. }
  39442. },
  39443. frontGigantamax: {
  39444. height: math.unit(150, "feet"),
  39445. name: "Front (Gigantamax)",
  39446. image: {
  39447. source: "./media/characters/carbon/front-gigantamax.svg",
  39448. extra: 1826/1669,
  39449. bottom: 59/1885
  39450. }
  39451. },
  39452. backGigantamax: {
  39453. height: math.unit(150, "feet"),
  39454. name: "Back (Gigantamax)",
  39455. image: {
  39456. source: "./media/characters/carbon/back-gigantamax.svg",
  39457. extra: 1796/1653,
  39458. bottom: 53/1849
  39459. }
  39460. },
  39461. maw: {
  39462. height: math.unit(0.48, "feet"),
  39463. name: "Maw",
  39464. image: {
  39465. source: "./media/characters/carbon/maw.svg"
  39466. }
  39467. },
  39468. mawGigantamax: {
  39469. height: math.unit(7.5, "feet"),
  39470. name: "Maw (Gigantamax)",
  39471. image: {
  39472. source: "./media/characters/carbon/maw-gigantamax.svg"
  39473. }
  39474. },
  39475. },
  39476. [
  39477. {
  39478. name: "Normal",
  39479. height: math.unit(7 + 5/12, "feet"),
  39480. default: true
  39481. },
  39482. ]
  39483. ))
  39484. characterMakers.push(() => makeCharacter(
  39485. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39486. {
  39487. front: {
  39488. height: math.unit(6, "feet"),
  39489. name: "Front",
  39490. image: {
  39491. source: "./media/characters/maverick/front.svg",
  39492. extra: 1672/1661,
  39493. bottom: 85/1757
  39494. }
  39495. },
  39496. back: {
  39497. height: math.unit(6, "feet"),
  39498. name: "Back",
  39499. image: {
  39500. source: "./media/characters/maverick/back.svg",
  39501. extra: 1642/1631,
  39502. bottom: 38/1680
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Normal",
  39509. height: math.unit(6, "feet"),
  39510. default: true
  39511. },
  39512. ]
  39513. ))
  39514. characterMakers.push(() => makeCharacter(
  39515. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39516. {
  39517. front: {
  39518. height: math.unit(15, "feet"),
  39519. weight: math.unit(615, "lb"),
  39520. name: "Front",
  39521. image: {
  39522. source: "./media/characters/grockle/front.svg",
  39523. extra: 1535/1427,
  39524. bottom: 56/1591
  39525. }
  39526. },
  39527. },
  39528. [
  39529. {
  39530. name: "Normal",
  39531. height: math.unit(15, "feet"),
  39532. default: true
  39533. },
  39534. {
  39535. name: "Large",
  39536. height: math.unit(150, "feet")
  39537. },
  39538. {
  39539. name: "Macro",
  39540. height: math.unit(1876, "feet")
  39541. },
  39542. {
  39543. name: "Mega Macro",
  39544. height: math.unit(121940, "feet")
  39545. },
  39546. {
  39547. name: "Giga Macro",
  39548. height: math.unit(750, "km")
  39549. },
  39550. {
  39551. name: "Tera Macro",
  39552. height: math.unit(750000, "km")
  39553. },
  39554. {
  39555. name: "Galactic",
  39556. height: math.unit(1.4e5, "km")
  39557. },
  39558. {
  39559. name: "Godlike",
  39560. height: math.unit(9.8e280, "galaxies")
  39561. },
  39562. ]
  39563. ))
  39564. characterMakers.push(() => makeCharacter(
  39565. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39566. {
  39567. front: {
  39568. height: math.unit(11, "meters"),
  39569. weight: math.unit(20, "tonnes"),
  39570. name: "Front",
  39571. image: {
  39572. source: "./media/characters/alistair/front.svg",
  39573. extra: 1265/1009,
  39574. bottom: 93/1358
  39575. }
  39576. },
  39577. },
  39578. [
  39579. {
  39580. name: "Normal",
  39581. height: math.unit(11, "meters"),
  39582. default: true
  39583. },
  39584. ]
  39585. ))
  39586. characterMakers.push(() => makeCharacter(
  39587. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39588. {
  39589. front: {
  39590. height: math.unit(5 + 8/12, "feet"),
  39591. name: "Front",
  39592. image: {
  39593. source: "./media/characters/haruka/front.svg",
  39594. extra: 2012/1952,
  39595. bottom: 0/2012
  39596. }
  39597. },
  39598. },
  39599. [
  39600. {
  39601. name: "Normal",
  39602. height: math.unit(5 + 8/12, "feet"),
  39603. default: true
  39604. },
  39605. ]
  39606. ))
  39607. characterMakers.push(() => makeCharacter(
  39608. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39609. {
  39610. back: {
  39611. height: math.unit(9, "feet"),
  39612. name: "Back",
  39613. image: {
  39614. source: "./media/characters/vivian-sylveon/back.svg",
  39615. extra: 1853/1714,
  39616. bottom: 0/1853
  39617. }
  39618. },
  39619. },
  39620. [
  39621. {
  39622. name: "Normal",
  39623. height: math.unit(9, "feet"),
  39624. default: true
  39625. },
  39626. {
  39627. name: "Macro",
  39628. height: math.unit(500, "feet")
  39629. },
  39630. {
  39631. name: "Megamacro",
  39632. height: math.unit(600, "miles")
  39633. },
  39634. {
  39635. name: "Gigamacro",
  39636. height: math.unit(30000, "miles")
  39637. },
  39638. ]
  39639. ))
  39640. characterMakers.push(() => makeCharacter(
  39641. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39642. {
  39643. anthro: {
  39644. height: math.unit(5 + 10/12, "feet"),
  39645. weight: math.unit(100, "lb"),
  39646. name: "Anthro",
  39647. image: {
  39648. source: "./media/characters/daiki/anthro.svg",
  39649. extra: 1115/1027,
  39650. bottom: 69/1184
  39651. }
  39652. },
  39653. feral: {
  39654. height: math.unit(200, "feet"),
  39655. name: "Feral",
  39656. image: {
  39657. source: "./media/characters/daiki/feral.svg",
  39658. extra: 1256/313,
  39659. bottom: 39/1295
  39660. }
  39661. },
  39662. feralHead: {
  39663. height: math.unit(171, "feet"),
  39664. name: "Feral Head",
  39665. image: {
  39666. source: "./media/characters/daiki/feral-head.svg"
  39667. }
  39668. },
  39669. manaDragon: {
  39670. height: math.unit(170, "meters"),
  39671. name: "Mana-dragon",
  39672. image: {
  39673. source: "./media/characters/daiki/mana-dragon.svg",
  39674. extra: 763/420,
  39675. bottom: 97/860
  39676. }
  39677. },
  39678. },
  39679. [
  39680. {
  39681. name: "Normal",
  39682. height: math.unit(5 + 10/12, "feet"),
  39683. default: true
  39684. },
  39685. ]
  39686. ))
  39687. characterMakers.push(() => makeCharacter(
  39688. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39689. {
  39690. fullyEquippedFront: {
  39691. height: math.unit(3 + 1/12, "feet"),
  39692. weight: math.unit(24, "lb"),
  39693. name: "Fully Equipped (Front)",
  39694. image: {
  39695. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39696. extra: 687/605,
  39697. bottom: 18/705
  39698. }
  39699. },
  39700. fullyEquippedBack: {
  39701. height: math.unit(3 + 1/12, "feet"),
  39702. weight: math.unit(24, "lb"),
  39703. name: "Fully Equipped (Back)",
  39704. image: {
  39705. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39706. extra: 689/590,
  39707. bottom: 18/707
  39708. }
  39709. },
  39710. dailyWear: {
  39711. height: math.unit(3 + 1/12, "feet"),
  39712. weight: math.unit(24, "lb"),
  39713. name: "Daily Wear",
  39714. image: {
  39715. source: "./media/characters/tea-spot/daily-wear.svg",
  39716. extra: 701/620,
  39717. bottom: 21/722
  39718. }
  39719. },
  39720. maidWork: {
  39721. height: math.unit(3 + 1/12, "feet"),
  39722. weight: math.unit(24, "lb"),
  39723. name: "Maid Work",
  39724. image: {
  39725. source: "./media/characters/tea-spot/maid-work.svg",
  39726. extra: 693/609,
  39727. bottom: 15/708
  39728. }
  39729. },
  39730. },
  39731. [
  39732. {
  39733. name: "Normal",
  39734. height: math.unit(3 + 1/12, "feet"),
  39735. default: true
  39736. },
  39737. ]
  39738. ))
  39739. characterMakers.push(() => makeCharacter(
  39740. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39741. {
  39742. front: {
  39743. height: math.unit(175, "cm"),
  39744. weight: math.unit(75, "kg"),
  39745. name: "Front",
  39746. image: {
  39747. source: "./media/characters/chee/front.svg",
  39748. extra: 1796/1740,
  39749. bottom: 40/1836
  39750. }
  39751. },
  39752. },
  39753. [
  39754. {
  39755. name: "Micro-Micro",
  39756. height: math.unit(1, "nm")
  39757. },
  39758. {
  39759. name: "Micro-erst",
  39760. height: math.unit(1, "micrometer")
  39761. },
  39762. {
  39763. name: "Micro-er",
  39764. height: math.unit(1, "cm")
  39765. },
  39766. {
  39767. name: "Normal",
  39768. height: math.unit(175, "cm"),
  39769. default: true
  39770. },
  39771. {
  39772. name: "Macro",
  39773. height: math.unit(100, "m")
  39774. },
  39775. {
  39776. name: "Macro-er",
  39777. height: math.unit(1, "km")
  39778. },
  39779. {
  39780. name: "Macro-erst",
  39781. height: math.unit(10, "km")
  39782. },
  39783. {
  39784. name: "Macro-Macro",
  39785. height: math.unit(100, "km")
  39786. },
  39787. ]
  39788. ))
  39789. characterMakers.push(() => makeCharacter(
  39790. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39791. {
  39792. front: {
  39793. height: math.unit(11 + 9/12, "feet"),
  39794. weight: math.unit(935, "lb"),
  39795. name: "Front",
  39796. image: {
  39797. source: "./media/characters/kingsley/front.svg",
  39798. extra: 1803/1674,
  39799. bottom: 127/1930
  39800. }
  39801. },
  39802. frontNude: {
  39803. height: math.unit(11 + 9/12, "feet"),
  39804. weight: math.unit(935, "lb"),
  39805. name: "Front (Nude)",
  39806. image: {
  39807. source: "./media/characters/kingsley/front-nude.svg",
  39808. extra: 1803/1674,
  39809. bottom: 127/1930
  39810. }
  39811. },
  39812. },
  39813. [
  39814. {
  39815. name: "Normal",
  39816. height: math.unit(11 + 9/12, "feet"),
  39817. default: true
  39818. },
  39819. ]
  39820. ))
  39821. characterMakers.push(() => makeCharacter(
  39822. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39823. {
  39824. side: {
  39825. height: math.unit(9, "feet"),
  39826. name: "Side",
  39827. image: {
  39828. source: "./media/characters/rymel/side.svg",
  39829. extra: 792/469,
  39830. bottom: 121/913
  39831. }
  39832. },
  39833. maw: {
  39834. height: math.unit(2.4, "meters"),
  39835. name: "Maw",
  39836. image: {
  39837. source: "./media/characters/rymel/maw.svg"
  39838. }
  39839. },
  39840. },
  39841. [
  39842. {
  39843. name: "House Drake",
  39844. height: math.unit(2, "feet")
  39845. },
  39846. {
  39847. name: "Reduced",
  39848. height: math.unit(4.5, "feet")
  39849. },
  39850. {
  39851. name: "Normal",
  39852. height: math.unit(9, "feet"),
  39853. default: true
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39859. {
  39860. front: {
  39861. height: math.unit(1.74, "meters"),
  39862. weight: math.unit(55, "kg"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/rubus/front.svg",
  39866. extra: 1894/1742,
  39867. bottom: 44/1938
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Normal",
  39874. height: math.unit(1.74, "meters"),
  39875. default: true
  39876. },
  39877. ]
  39878. ))
  39879. characterMakers.push(() => makeCharacter(
  39880. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39881. {
  39882. front: {
  39883. height: math.unit(5 + 2/12, "feet"),
  39884. weight: math.unit(112, "lb"),
  39885. name: "Front",
  39886. image: {
  39887. source: "./media/characters/cassie-kingston/front.svg",
  39888. extra: 1438/1390,
  39889. bottom: 47/1485
  39890. }
  39891. },
  39892. },
  39893. [
  39894. {
  39895. name: "Normal",
  39896. height: math.unit(5 + 2/12, "feet"),
  39897. default: true
  39898. },
  39899. {
  39900. name: "Macro",
  39901. height: math.unit(128, "feet")
  39902. },
  39903. {
  39904. name: "Megamacro",
  39905. height: math.unit(2.56, "miles")
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39911. {
  39912. front: {
  39913. height: math.unit(7, "feet"),
  39914. name: "Front",
  39915. image: {
  39916. source: "./media/characters/fox/front.svg",
  39917. extra: 1798/1703,
  39918. bottom: 55/1853
  39919. }
  39920. },
  39921. back: {
  39922. height: math.unit(7, "feet"),
  39923. name: "Back",
  39924. image: {
  39925. source: "./media/characters/fox/back.svg",
  39926. extra: 1748/1649,
  39927. bottom: 32/1780
  39928. }
  39929. },
  39930. head: {
  39931. height: math.unit(1.95, "feet"),
  39932. name: "Head",
  39933. image: {
  39934. source: "./media/characters/fox/head.svg"
  39935. }
  39936. },
  39937. dick: {
  39938. height: math.unit(1.33, "feet"),
  39939. name: "Dick",
  39940. image: {
  39941. source: "./media/characters/fox/dick.svg"
  39942. }
  39943. },
  39944. foot: {
  39945. height: math.unit(1, "feet"),
  39946. name: "Foot",
  39947. image: {
  39948. source: "./media/characters/fox/foot.svg"
  39949. }
  39950. },
  39951. paw: {
  39952. height: math.unit(0.92, "feet"),
  39953. name: "Paw",
  39954. image: {
  39955. source: "./media/characters/fox/paw.svg"
  39956. }
  39957. },
  39958. },
  39959. [
  39960. {
  39961. name: "Small",
  39962. height: math.unit(3, "inches")
  39963. },
  39964. {
  39965. name: "\"Realistic\"",
  39966. height: math.unit(7, "feet")
  39967. },
  39968. {
  39969. name: "Normal",
  39970. height: math.unit(150, "feet"),
  39971. default: true
  39972. },
  39973. {
  39974. name: "BIG",
  39975. height: math.unit(1200, "feet")
  39976. },
  39977. {
  39978. name: "👀",
  39979. height: math.unit(5, "miles")
  39980. },
  39981. {
  39982. name: "👀👀👀",
  39983. height: math.unit(64, "miles")
  39984. },
  39985. ]
  39986. ))
  39987. characterMakers.push(() => makeCharacter(
  39988. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39989. {
  39990. front: {
  39991. height: math.unit(625, "feet"),
  39992. name: "Front",
  39993. image: {
  39994. source: "./media/characters/asonja-rossa/front.svg",
  39995. extra: 1833/1686,
  39996. bottom: 24/1857
  39997. }
  39998. },
  39999. back: {
  40000. height: math.unit(625, "feet"),
  40001. name: "Back",
  40002. image: {
  40003. source: "./media/characters/asonja-rossa/back.svg",
  40004. extra: 1852/1753,
  40005. bottom: 26/1878
  40006. }
  40007. },
  40008. },
  40009. [
  40010. {
  40011. name: "Macro",
  40012. height: math.unit(625, "feet"),
  40013. default: true
  40014. },
  40015. ]
  40016. ))
  40017. characterMakers.push(() => makeCharacter(
  40018. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40019. {
  40020. side: {
  40021. height: math.unit(8, "feet"),
  40022. name: "Side",
  40023. image: {
  40024. source: "./media/characters/rezukii/side.svg",
  40025. extra: 979/542,
  40026. bottom: 87/1066
  40027. }
  40028. },
  40029. sitting: {
  40030. height: math.unit(14.6, "feet"),
  40031. name: "Sitting",
  40032. image: {
  40033. source: "./media/characters/rezukii/sitting.svg",
  40034. extra: 1023/813,
  40035. bottom: 45/1068
  40036. }
  40037. },
  40038. },
  40039. [
  40040. {
  40041. name: "Tiny",
  40042. height: math.unit(2, "feet")
  40043. },
  40044. {
  40045. name: "Smol",
  40046. height: math.unit(4, "feet")
  40047. },
  40048. {
  40049. name: "Normal",
  40050. height: math.unit(8, "feet"),
  40051. default: true
  40052. },
  40053. {
  40054. name: "Big",
  40055. height: math.unit(12, "feet")
  40056. },
  40057. {
  40058. name: "Macro",
  40059. height: math.unit(30, "feet")
  40060. },
  40061. ]
  40062. ))
  40063. characterMakers.push(() => makeCharacter(
  40064. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40065. {
  40066. front: {
  40067. height: math.unit(14, "feet"),
  40068. weight: math.unit(9.5, "tonnes"),
  40069. name: "Front",
  40070. image: {
  40071. source: "./media/characters/dawnheart/front.svg",
  40072. extra: 2792/2675,
  40073. bottom: 64/2856
  40074. }
  40075. },
  40076. },
  40077. [
  40078. {
  40079. name: "Normal",
  40080. height: math.unit(14, "feet"),
  40081. default: true
  40082. },
  40083. ]
  40084. ))
  40085. characterMakers.push(() => makeCharacter(
  40086. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40087. {
  40088. front: {
  40089. height: math.unit(1.7, "m"),
  40090. name: "Front",
  40091. image: {
  40092. source: "./media/characters/gladi/front.svg",
  40093. extra: 1460/1362,
  40094. bottom: 19/1479
  40095. }
  40096. },
  40097. back: {
  40098. height: math.unit(1.7, "m"),
  40099. name: "Back",
  40100. image: {
  40101. source: "./media/characters/gladi/back.svg",
  40102. extra: 1459/1357,
  40103. bottom: 12/1471
  40104. }
  40105. },
  40106. feral: {
  40107. height: math.unit(2.05, "m"),
  40108. name: "Feral",
  40109. image: {
  40110. source: "./media/characters/gladi/feral.svg",
  40111. extra: 821/557,
  40112. bottom: 91/912
  40113. }
  40114. },
  40115. },
  40116. [
  40117. {
  40118. name: "Shortest",
  40119. height: math.unit(70, "cm")
  40120. },
  40121. {
  40122. name: "Normal",
  40123. height: math.unit(1.7, "m")
  40124. },
  40125. {
  40126. name: "Macro",
  40127. height: math.unit(10, "m"),
  40128. default: true
  40129. },
  40130. {
  40131. name: "Tallest",
  40132. height: math.unit(200, "m")
  40133. },
  40134. ]
  40135. ))
  40136. characterMakers.push(() => makeCharacter(
  40137. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40138. {
  40139. front: {
  40140. height: math.unit(5 + 7/12, "feet"),
  40141. weight: math.unit(2, "tons"),
  40142. name: "Front",
  40143. image: {
  40144. source: "./media/characters/erdno/front.svg",
  40145. extra: 1234/1129,
  40146. bottom: 35/1269
  40147. }
  40148. },
  40149. angled: {
  40150. height: math.unit(5 + 7/12, "feet"),
  40151. weight: math.unit(2, "tons"),
  40152. name: "Angled",
  40153. image: {
  40154. source: "./media/characters/erdno/angled.svg",
  40155. extra: 1185/1139,
  40156. bottom: 36/1221
  40157. }
  40158. },
  40159. side: {
  40160. height: math.unit(5 + 7/12, "feet"),
  40161. weight: math.unit(2, "tons"),
  40162. name: "Side",
  40163. image: {
  40164. source: "./media/characters/erdno/side.svg",
  40165. extra: 1191/1144,
  40166. bottom: 40/1231
  40167. }
  40168. },
  40169. back: {
  40170. height: math.unit(5 + 7/12, "feet"),
  40171. weight: math.unit(2, "tons"),
  40172. name: "Back",
  40173. image: {
  40174. source: "./media/characters/erdno/back.svg",
  40175. extra: 1202/1146,
  40176. bottom: 17/1219
  40177. }
  40178. },
  40179. frontNsfw: {
  40180. height: math.unit(5 + 7/12, "feet"),
  40181. weight: math.unit(2, "tons"),
  40182. name: "Front (NSFW)",
  40183. image: {
  40184. source: "./media/characters/erdno/front-nsfw.svg",
  40185. extra: 1234/1129,
  40186. bottom: 35/1269
  40187. }
  40188. },
  40189. angledNsfw: {
  40190. height: math.unit(5 + 7/12, "feet"),
  40191. weight: math.unit(2, "tons"),
  40192. name: "Angled (NSFW)",
  40193. image: {
  40194. source: "./media/characters/erdno/angled-nsfw.svg",
  40195. extra: 1185/1139,
  40196. bottom: 36/1221
  40197. }
  40198. },
  40199. sideNsfw: {
  40200. height: math.unit(5 + 7/12, "feet"),
  40201. weight: math.unit(2, "tons"),
  40202. name: "Side (NSFW)",
  40203. image: {
  40204. source: "./media/characters/erdno/side-nsfw.svg",
  40205. extra: 1191/1144,
  40206. bottom: 40/1231
  40207. }
  40208. },
  40209. backNsfw: {
  40210. height: math.unit(5 + 7/12, "feet"),
  40211. weight: math.unit(2, "tons"),
  40212. name: "Back (NSFW)",
  40213. image: {
  40214. source: "./media/characters/erdno/back-nsfw.svg",
  40215. extra: 1202/1146,
  40216. bottom: 17/1219
  40217. }
  40218. },
  40219. frontHyper: {
  40220. height: math.unit(5 + 7/12, "feet"),
  40221. weight: math.unit(2, "tons"),
  40222. name: "Front (Hyper)",
  40223. image: {
  40224. source: "./media/characters/erdno/front-hyper.svg",
  40225. extra: 1298/1136,
  40226. bottom: 35/1333
  40227. }
  40228. },
  40229. },
  40230. [
  40231. {
  40232. name: "Normal",
  40233. height: math.unit(5 + 7/12, "feet"),
  40234. default: true
  40235. },
  40236. {
  40237. name: "Big",
  40238. height: math.unit(5.7, "meters")
  40239. },
  40240. {
  40241. name: "Macro",
  40242. height: math.unit(5.7, "kilometers")
  40243. },
  40244. {
  40245. name: "Megamacro",
  40246. height: math.unit(5.7, "earths")
  40247. },
  40248. ]
  40249. ))
  40250. characterMakers.push(() => makeCharacter(
  40251. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40252. {
  40253. front: {
  40254. height: math.unit(5 + 10/12, "feet"),
  40255. weight: math.unit(150, "lb"),
  40256. name: "Front",
  40257. image: {
  40258. source: "./media/characters/jamie/front.svg",
  40259. extra: 1908/1768,
  40260. bottom: 19/1927
  40261. }
  40262. },
  40263. },
  40264. [
  40265. {
  40266. name: "Minimum",
  40267. height: math.unit(2, "cm")
  40268. },
  40269. {
  40270. name: "Micro",
  40271. height: math.unit(3, "inches")
  40272. },
  40273. {
  40274. name: "Normal",
  40275. height: math.unit(5 + 10/12, "feet"),
  40276. default: true
  40277. },
  40278. {
  40279. name: "Macro",
  40280. height: math.unit(150, "feet")
  40281. },
  40282. {
  40283. name: "Megamacro",
  40284. height: math.unit(10000, "m")
  40285. },
  40286. ]
  40287. ))
  40288. characterMakers.push(() => makeCharacter(
  40289. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40290. {
  40291. front: {
  40292. height: math.unit(2, "meters"),
  40293. weight: math.unit(100, "kg"),
  40294. name: "Front",
  40295. image: {
  40296. source: "./media/characters/shiron/front.svg",
  40297. extra: 2103/1985,
  40298. bottom: 98/2201
  40299. }
  40300. },
  40301. back: {
  40302. height: math.unit(2, "meters"),
  40303. weight: math.unit(100, "kg"),
  40304. name: "Back",
  40305. image: {
  40306. source: "./media/characters/shiron/back.svg",
  40307. extra: 2110/2015,
  40308. bottom: 89/2199
  40309. }
  40310. },
  40311. hand: {
  40312. height: math.unit(0.96, "feet"),
  40313. name: "Hand",
  40314. image: {
  40315. source: "./media/characters/shiron/hand.svg"
  40316. }
  40317. },
  40318. foot: {
  40319. height: math.unit(1.464, "feet"),
  40320. name: "Foot",
  40321. image: {
  40322. source: "./media/characters/shiron/foot.svg"
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Normal",
  40329. height: math.unit(2, "meters")
  40330. },
  40331. {
  40332. name: "Macro",
  40333. height: math.unit(500, "meters"),
  40334. default: true
  40335. },
  40336. {
  40337. name: "Megamacro",
  40338. height: math.unit(20, "km")
  40339. },
  40340. ]
  40341. ))
  40342. characterMakers.push(() => makeCharacter(
  40343. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40344. {
  40345. front: {
  40346. height: math.unit(6, "feet"),
  40347. name: "Front",
  40348. image: {
  40349. source: "./media/characters/sam/front.svg",
  40350. extra: 849/826,
  40351. bottom: 19/868
  40352. }
  40353. },
  40354. },
  40355. [
  40356. {
  40357. name: "Normal",
  40358. height: math.unit(6, "feet"),
  40359. default: true
  40360. },
  40361. ]
  40362. ))
  40363. characterMakers.push(() => makeCharacter(
  40364. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40365. {
  40366. front: {
  40367. height: math.unit(8 + 4/12, "feet"),
  40368. weight: math.unit(122, "kg"),
  40369. name: "Front",
  40370. image: {
  40371. source: "./media/characters/namori-kurogawa/front.svg",
  40372. extra: 1894/1576,
  40373. bottom: 34/1928
  40374. }
  40375. },
  40376. },
  40377. [
  40378. {
  40379. name: "Normal",
  40380. height: math.unit(8 + 4/12, "feet"),
  40381. default: true
  40382. },
  40383. ]
  40384. ))
  40385. characterMakers.push(() => makeCharacter(
  40386. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40387. {
  40388. front: {
  40389. height: math.unit(9, "feet"),
  40390. weight: math.unit(621, "lb"),
  40391. name: "Front",
  40392. image: {
  40393. source: "./media/characters/unmru/front.svg",
  40394. extra: 1853/1747,
  40395. bottom: 73/1926
  40396. }
  40397. },
  40398. side: {
  40399. height: math.unit(9, "feet"),
  40400. weight: math.unit(621, "lb"),
  40401. name: "Side",
  40402. image: {
  40403. source: "./media/characters/unmru/side.svg",
  40404. extra: 1781/1671,
  40405. bottom: 127/1908
  40406. }
  40407. },
  40408. back: {
  40409. height: math.unit(9, "feet"),
  40410. weight: math.unit(621, "lb"),
  40411. name: "Back",
  40412. image: {
  40413. source: "./media/characters/unmru/back.svg",
  40414. extra: 1894/1765,
  40415. bottom: 75/1969
  40416. }
  40417. },
  40418. dick: {
  40419. height: math.unit(3, "feet"),
  40420. weight: math.unit(35, "lb"),
  40421. name: "Dick",
  40422. image: {
  40423. source: "./media/characters/unmru/dick.svg"
  40424. }
  40425. },
  40426. },
  40427. [
  40428. {
  40429. name: "Normal",
  40430. height: math.unit(9, "feet")
  40431. },
  40432. {
  40433. name: "Natural",
  40434. height: math.unit(27, "feet"),
  40435. default: true
  40436. },
  40437. {
  40438. name: "Giant",
  40439. height: math.unit(90, "feet")
  40440. },
  40441. {
  40442. name: "Kaiju",
  40443. height: math.unit(270, "feet")
  40444. },
  40445. {
  40446. name: "Macro",
  40447. height: math.unit(900, "feet")
  40448. },
  40449. {
  40450. name: "Macro+",
  40451. height: math.unit(2700, "feet")
  40452. },
  40453. {
  40454. name: "Megamacro",
  40455. height: math.unit(9000, "feet")
  40456. },
  40457. {
  40458. name: "City-Crushing",
  40459. height: math.unit(27000, "feet")
  40460. },
  40461. {
  40462. name: "Mountain-Mashing",
  40463. height: math.unit(90000, "feet")
  40464. },
  40465. {
  40466. name: "Earth-Eclipsing",
  40467. height: math.unit(2.7e8, "feet")
  40468. },
  40469. {
  40470. name: "Sol-Swallowing",
  40471. height: math.unit(9e10, "feet")
  40472. },
  40473. {
  40474. name: "Majoris-Munching",
  40475. height: math.unit(2.7e13, "feet")
  40476. },
  40477. ]
  40478. ))
  40479. characterMakers.push(() => makeCharacter(
  40480. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40481. {
  40482. front: {
  40483. height: math.unit(1, "inch"),
  40484. name: "Front",
  40485. image: {
  40486. source: "./media/characters/squeaks-mouse/front.svg",
  40487. extra: 352/308,
  40488. bottom: 25/377
  40489. }
  40490. },
  40491. },
  40492. [
  40493. {
  40494. name: "Micro",
  40495. height: math.unit(1, "inch"),
  40496. default: true
  40497. },
  40498. ]
  40499. ))
  40500. characterMakers.push(() => makeCharacter(
  40501. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40502. {
  40503. side: {
  40504. height: math.unit(35, "feet"),
  40505. name: "Side",
  40506. image: {
  40507. source: "./media/characters/sayko/side.svg",
  40508. extra: 1697/1021,
  40509. bottom: 82/1779
  40510. }
  40511. },
  40512. head: {
  40513. height: math.unit(16, "feet"),
  40514. name: "Head",
  40515. image: {
  40516. source: "./media/characters/sayko/head.svg"
  40517. }
  40518. },
  40519. forepaw: {
  40520. height: math.unit(7.85, "feet"),
  40521. name: "Forepaw",
  40522. image: {
  40523. source: "./media/characters/sayko/forepaw.svg"
  40524. }
  40525. },
  40526. hindpaw: {
  40527. height: math.unit(8.8, "feet"),
  40528. name: "Hindpaw",
  40529. image: {
  40530. source: "./media/characters/sayko/hindpaw.svg"
  40531. }
  40532. },
  40533. },
  40534. [
  40535. {
  40536. name: "Normal",
  40537. height: math.unit(35, "feet"),
  40538. default: true
  40539. },
  40540. {
  40541. name: "Colossus",
  40542. height: math.unit(100, "meters")
  40543. },
  40544. {
  40545. name: "\"Small\" Deity",
  40546. height: math.unit(1, "km")
  40547. },
  40548. {
  40549. name: "\"Large\" Deity",
  40550. height: math.unit(15, "km")
  40551. },
  40552. ]
  40553. ))
  40554. characterMakers.push(() => makeCharacter(
  40555. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40556. {
  40557. front: {
  40558. height: math.unit(6, "feet"),
  40559. weight: math.unit(250, "lb"),
  40560. name: "Front",
  40561. image: {
  40562. source: "./media/characters/mukiro/front.svg",
  40563. extra: 1368/1310,
  40564. bottom: 34/1402
  40565. }
  40566. },
  40567. },
  40568. [
  40569. {
  40570. name: "Normal",
  40571. height: math.unit(6, "feet"),
  40572. default: true
  40573. },
  40574. ]
  40575. ))
  40576. characterMakers.push(() => makeCharacter(
  40577. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40578. {
  40579. front: {
  40580. height: math.unit(12 + 4/12, "feet"),
  40581. name: "Front",
  40582. image: {
  40583. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40584. extra: 1346/1311,
  40585. bottom: 65/1411
  40586. }
  40587. },
  40588. },
  40589. [
  40590. {
  40591. name: "Base",
  40592. height: math.unit(12 + 4/12, "feet"),
  40593. default: true
  40594. },
  40595. {
  40596. name: "Macro",
  40597. height: math.unit(150, "feet")
  40598. },
  40599. {
  40600. name: "Mega",
  40601. height: math.unit(2, "miles")
  40602. },
  40603. {
  40604. name: "Demi God",
  40605. height: math.unit(4, "AU")
  40606. },
  40607. {
  40608. name: "God Size",
  40609. height: math.unit(1, "universe")
  40610. },
  40611. ]
  40612. ))
  40613. characterMakers.push(() => makeCharacter(
  40614. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40615. {
  40616. front: {
  40617. height: math.unit(3 + 3/12, "feet"),
  40618. weight: math.unit(88, "lb"),
  40619. name: "Front",
  40620. image: {
  40621. source: "./media/characters/trey/front.svg",
  40622. extra: 1815/1509,
  40623. bottom: 60/1875
  40624. }
  40625. },
  40626. },
  40627. [
  40628. {
  40629. name: "Normal",
  40630. height: math.unit(3 + 3/12, "feet"),
  40631. default: true
  40632. },
  40633. ]
  40634. ))
  40635. characterMakers.push(() => makeCharacter(
  40636. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40637. {
  40638. front: {
  40639. height: math.unit(4, "meters"),
  40640. name: "Front",
  40641. image: {
  40642. source: "./media/characters/adelonda/front.svg",
  40643. extra: 1077/982,
  40644. bottom: 39/1116
  40645. }
  40646. },
  40647. back: {
  40648. height: math.unit(4, "meters"),
  40649. name: "Back",
  40650. image: {
  40651. source: "./media/characters/adelonda/back.svg",
  40652. extra: 1105/1003,
  40653. bottom: 25/1130
  40654. }
  40655. },
  40656. feral: {
  40657. height: math.unit(40/1.5, "meters"),
  40658. name: "Feral",
  40659. image: {
  40660. source: "./media/characters/adelonda/feral.svg",
  40661. extra: 597/271,
  40662. bottom: 387/984
  40663. }
  40664. },
  40665. },
  40666. [
  40667. {
  40668. name: "Normal",
  40669. height: math.unit(4, "meters"),
  40670. default: true
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40676. {
  40677. front: {
  40678. height: math.unit(8 + 4/12, "feet"),
  40679. weight: math.unit(670, "lb"),
  40680. name: "Front",
  40681. image: {
  40682. source: "./media/characters/acadiel/front.svg",
  40683. extra: 1901/1595,
  40684. bottom: 142/2043
  40685. }
  40686. },
  40687. },
  40688. [
  40689. {
  40690. name: "Normal",
  40691. height: math.unit(8 + 4/12, "feet"),
  40692. default: true
  40693. },
  40694. {
  40695. name: "Macro",
  40696. height: math.unit(200, "feet")
  40697. },
  40698. ]
  40699. ))
  40700. characterMakers.push(() => makeCharacter(
  40701. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40702. {
  40703. front: {
  40704. height: math.unit(6 + 2/12, "feet"),
  40705. weight: math.unit(185, "lb"),
  40706. name: "Front",
  40707. image: {
  40708. source: "./media/characters/kayne-ein/front.svg",
  40709. extra: 1780/1560,
  40710. bottom: 81/1861
  40711. }
  40712. },
  40713. },
  40714. [
  40715. {
  40716. name: "Normal",
  40717. height: math.unit(6 + 2/12, "feet"),
  40718. default: true
  40719. },
  40720. {
  40721. name: "Transformation Stage",
  40722. height: math.unit(15, "feet")
  40723. },
  40724. {
  40725. name: "Macro",
  40726. height: math.unit(150, "feet")
  40727. },
  40728. {
  40729. name: "Earth's Shadow",
  40730. height: math.unit(6200, "miles")
  40731. },
  40732. {
  40733. name: "Universal Demon",
  40734. height: math.unit(28e9, "parsecs")
  40735. },
  40736. {
  40737. name: "Multiverse God",
  40738. height: math.unit(3, "multiverses")
  40739. },
  40740. ]
  40741. ))
  40742. characterMakers.push(() => makeCharacter(
  40743. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40744. {
  40745. front: {
  40746. height: math.unit(5 + 5/12, "feet"),
  40747. name: "Front",
  40748. image: {
  40749. source: "./media/characters/fawn/front.svg",
  40750. extra: 1873/1731,
  40751. bottom: 95/1968
  40752. }
  40753. },
  40754. back: {
  40755. height: math.unit(5 + 5/12, "feet"),
  40756. name: "Back",
  40757. image: {
  40758. source: "./media/characters/fawn/back.svg",
  40759. extra: 1813/1700,
  40760. bottom: 14/1827
  40761. }
  40762. },
  40763. hoof: {
  40764. height: math.unit(1.45, "feet"),
  40765. name: "Hoof",
  40766. image: {
  40767. source: "./media/characters/fawn/hoof.svg"
  40768. }
  40769. },
  40770. },
  40771. [
  40772. {
  40773. name: "Normal",
  40774. height: math.unit(5 + 5/12, "feet"),
  40775. default: true
  40776. },
  40777. ]
  40778. ))
  40779. characterMakers.push(() => makeCharacter(
  40780. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40781. {
  40782. front: {
  40783. height: math.unit(2 + 5/12, "feet"),
  40784. name: "Front",
  40785. image: {
  40786. source: "./media/characters/orion/front.svg",
  40787. extra: 1366/1304,
  40788. bottom: 43/1409
  40789. }
  40790. },
  40791. paw: {
  40792. height: math.unit(0.52, "feet"),
  40793. name: "Paw",
  40794. image: {
  40795. source: "./media/characters/orion/paw.svg"
  40796. }
  40797. },
  40798. },
  40799. [
  40800. {
  40801. name: "Normal",
  40802. height: math.unit(2 + 5/12, "feet"),
  40803. default: true
  40804. },
  40805. ]
  40806. ))
  40807. characterMakers.push(() => makeCharacter(
  40808. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40809. {
  40810. front: {
  40811. height: math.unit(5 + 10/12, "feet"),
  40812. name: "Front",
  40813. image: {
  40814. source: "./media/characters/vera/front.svg",
  40815. extra: 1680/1575,
  40816. bottom: 49/1729
  40817. }
  40818. },
  40819. back: {
  40820. height: math.unit(5 + 10/12, "feet"),
  40821. name: "Back",
  40822. image: {
  40823. source: "./media/characters/vera/back.svg",
  40824. extra: 1700/1588,
  40825. bottom: 18/1718
  40826. }
  40827. },
  40828. arcanine: {
  40829. height: math.unit(6 + 8/12, "feet"),
  40830. name: "Arcanine",
  40831. image: {
  40832. source: "./media/characters/vera/arcanine.svg",
  40833. extra: 1590/1511,
  40834. bottom: 71/1661
  40835. }
  40836. },
  40837. maw: {
  40838. height: math.unit(0.82, "feet"),
  40839. name: "Maw",
  40840. image: {
  40841. source: "./media/characters/vera/maw.svg"
  40842. }
  40843. },
  40844. mawArcanine: {
  40845. height: math.unit(0.97, "feet"),
  40846. name: "Maw (Arcanine)",
  40847. image: {
  40848. source: "./media/characters/vera/maw-arcanine.svg"
  40849. }
  40850. },
  40851. paw: {
  40852. height: math.unit(0.75, "feet"),
  40853. name: "Paw",
  40854. image: {
  40855. source: "./media/characters/vera/paw.svg"
  40856. }
  40857. },
  40858. pawprint: {
  40859. height: math.unit(0.52, "feet"),
  40860. name: "Pawprint",
  40861. image: {
  40862. source: "./media/characters/vera/pawprint.svg"
  40863. }
  40864. },
  40865. },
  40866. [
  40867. {
  40868. name: "Normal",
  40869. height: math.unit(5 + 10/12, "feet"),
  40870. default: true
  40871. },
  40872. {
  40873. name: "Macro",
  40874. height: math.unit(75, "feet")
  40875. },
  40876. ]
  40877. ))
  40878. characterMakers.push(() => makeCharacter(
  40879. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40880. {
  40881. front: {
  40882. height: math.unit(4, "feet"),
  40883. weight: math.unit(40, "lb"),
  40884. name: "Front",
  40885. image: {
  40886. source: "./media/characters/orvan-rabbit/front.svg",
  40887. extra: 1896/1642,
  40888. bottom: 29/1925
  40889. }
  40890. },
  40891. },
  40892. [
  40893. {
  40894. name: "Normal",
  40895. height: math.unit(4, "feet"),
  40896. default: true
  40897. },
  40898. ]
  40899. ))
  40900. characterMakers.push(() => makeCharacter(
  40901. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40902. {
  40903. front: {
  40904. height: math.unit(6, "feet"),
  40905. weight: math.unit(168, "lb"),
  40906. name: "Front",
  40907. image: {
  40908. source: "./media/characters/lisa/front.svg",
  40909. extra: 2065/1867,
  40910. bottom: 46/2111
  40911. }
  40912. },
  40913. back: {
  40914. height: math.unit(6, "feet"),
  40915. weight: math.unit(168, "lb"),
  40916. name: "Back",
  40917. image: {
  40918. source: "./media/characters/lisa/back.svg",
  40919. extra: 1982/1838,
  40920. bottom: 29/2011
  40921. }
  40922. },
  40923. maw: {
  40924. height: math.unit(0.81, "feet"),
  40925. name: "Maw",
  40926. image: {
  40927. source: "./media/characters/lisa/maw.svg"
  40928. }
  40929. },
  40930. paw: {
  40931. height: math.unit(0.9, "feet"),
  40932. name: "Paw",
  40933. image: {
  40934. source: "./media/characters/lisa/paw.svg"
  40935. }
  40936. },
  40937. caribousune: {
  40938. height: math.unit(7 + 2/12, "feet"),
  40939. weight: math.unit(268, "lb"),
  40940. name: "Caribousune",
  40941. image: {
  40942. source: "./media/characters/lisa/caribousune.svg",
  40943. extra: 1843/1633,
  40944. bottom: 29/1872
  40945. }
  40946. },
  40947. frontCaribousune: {
  40948. height: math.unit(7 + 2/12, "feet"),
  40949. weight: math.unit(268, "lb"),
  40950. name: "Front (Caribousune)",
  40951. image: {
  40952. source: "./media/characters/lisa/front-caribousune.svg",
  40953. extra: 1818/1638,
  40954. bottom: 52/1870
  40955. }
  40956. },
  40957. sideCaribousune: {
  40958. height: math.unit(7 + 2/12, "feet"),
  40959. weight: math.unit(268, "lb"),
  40960. name: "Side (Caribousune)",
  40961. image: {
  40962. source: "./media/characters/lisa/side-caribousune.svg",
  40963. extra: 1851/1635,
  40964. bottom: 16/1867
  40965. }
  40966. },
  40967. backCaribousune: {
  40968. height: math.unit(7 + 2/12, "feet"),
  40969. weight: math.unit(268, "lb"),
  40970. name: "Back (Caribousune)",
  40971. image: {
  40972. source: "./media/characters/lisa/back-caribousune.svg",
  40973. extra: 1801/1604,
  40974. bottom: 44/1845
  40975. }
  40976. },
  40977. caribou: {
  40978. height: math.unit(7 + 2/12, "feet"),
  40979. weight: math.unit(268, "lb"),
  40980. name: "Caribou",
  40981. image: {
  40982. source: "./media/characters/lisa/caribou.svg",
  40983. extra: 1843/1633,
  40984. bottom: 29/1872
  40985. }
  40986. },
  40987. frontCaribou: {
  40988. height: math.unit(7 + 2/12, "feet"),
  40989. weight: math.unit(268, "lb"),
  40990. name: "Front (Caribou)",
  40991. image: {
  40992. source: "./media/characters/lisa/front-caribou.svg",
  40993. extra: 1818/1638,
  40994. bottom: 52/1870
  40995. }
  40996. },
  40997. sideCaribou: {
  40998. height: math.unit(7 + 2/12, "feet"),
  40999. weight: math.unit(268, "lb"),
  41000. name: "Side (Caribou)",
  41001. image: {
  41002. source: "./media/characters/lisa/side-caribou.svg",
  41003. extra: 1851/1635,
  41004. bottom: 16/1867
  41005. }
  41006. },
  41007. backCaribou: {
  41008. height: math.unit(7 + 2/12, "feet"),
  41009. weight: math.unit(268, "lb"),
  41010. name: "Back (Caribou)",
  41011. image: {
  41012. source: "./media/characters/lisa/back-caribou.svg",
  41013. extra: 1801/1604,
  41014. bottom: 44/1845
  41015. }
  41016. },
  41017. mawCaribou: {
  41018. height: math.unit(1.45, "feet"),
  41019. name: "Maw (Caribou)",
  41020. image: {
  41021. source: "./media/characters/lisa/maw-caribou.svg"
  41022. }
  41023. },
  41024. mawCaribousune: {
  41025. height: math.unit(1.45, "feet"),
  41026. name: "Maw (Caribousune)",
  41027. image: {
  41028. source: "./media/characters/lisa/maw-caribousune.svg"
  41029. }
  41030. },
  41031. pawCaribousune: {
  41032. height: math.unit(1.61, "feet"),
  41033. name: "Paw (Caribou)",
  41034. image: {
  41035. source: "./media/characters/lisa/paw-caribousune.svg"
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Normal",
  41042. height: math.unit(6, "feet")
  41043. },
  41044. {
  41045. name: "God Size",
  41046. height: math.unit(72, "feet"),
  41047. default: true
  41048. },
  41049. {
  41050. name: "Towering",
  41051. height: math.unit(288, "feet")
  41052. },
  41053. {
  41054. name: "City Size",
  41055. height: math.unit(48384, "feet")
  41056. },
  41057. {
  41058. name: "Continental",
  41059. height: math.unit(4200, "miles")
  41060. },
  41061. {
  41062. name: "Planet Eater",
  41063. height: math.unit(42, "earths")
  41064. },
  41065. {
  41066. name: "Star Swallower",
  41067. height: math.unit(42, "solarradii")
  41068. },
  41069. {
  41070. name: "System Swallower",
  41071. height: math.unit(84000, "AU")
  41072. },
  41073. {
  41074. name: "Galaxy Gobbler",
  41075. height: math.unit(42, "galaxies")
  41076. },
  41077. {
  41078. name: "Universe Devourer",
  41079. height: math.unit(42, "universes")
  41080. },
  41081. {
  41082. name: "Multiverse Muncher",
  41083. height: math.unit(42, "multiverses")
  41084. },
  41085. ]
  41086. ))
  41087. characterMakers.push(() => makeCharacter(
  41088. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41089. {
  41090. front: {
  41091. height: math.unit(36, "feet"),
  41092. name: "Front",
  41093. image: {
  41094. source: "./media/characters/shadow-rat/front.svg",
  41095. extra: 1845/1758,
  41096. bottom: 83/1928
  41097. }
  41098. },
  41099. },
  41100. [
  41101. {
  41102. name: "Macro",
  41103. height: math.unit(36, "feet"),
  41104. default: true
  41105. },
  41106. ]
  41107. ))
  41108. characterMakers.push(() => makeCharacter(
  41109. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41110. {
  41111. side: {
  41112. height: math.unit(8, "feet"),
  41113. weight: math.unit(2630, "lb"),
  41114. name: "Side",
  41115. image: {
  41116. source: "./media/characters/torallia/side.svg",
  41117. extra: 2164/2021,
  41118. bottom: 371/2535
  41119. }
  41120. },
  41121. },
  41122. [
  41123. {
  41124. name: "Mortal Interaction",
  41125. height: math.unit(8, "feet")
  41126. },
  41127. {
  41128. name: "Natural",
  41129. height: math.unit(24, "feet"),
  41130. default: true
  41131. },
  41132. {
  41133. name: "Giant",
  41134. height: math.unit(80, "feet")
  41135. },
  41136. {
  41137. name: "Kaiju",
  41138. height: math.unit(240, "feet")
  41139. },
  41140. {
  41141. name: "Macro",
  41142. height: math.unit(800, "feet")
  41143. },
  41144. {
  41145. name: "Macro+",
  41146. height: math.unit(2400, "feet")
  41147. },
  41148. {
  41149. name: "Macro++",
  41150. height: math.unit(8000, "feet")
  41151. },
  41152. {
  41153. name: "City-Crushing",
  41154. height: math.unit(24000, "feet")
  41155. },
  41156. {
  41157. name: "Mountain-Mashing",
  41158. height: math.unit(80000, "feet")
  41159. },
  41160. {
  41161. name: "District Demolisher",
  41162. height: math.unit(240000, "feet")
  41163. },
  41164. {
  41165. name: "Tri-County Terror",
  41166. height: math.unit(800000, "feet")
  41167. },
  41168. {
  41169. name: "State Smasher",
  41170. height: math.unit(2.4e6, "feet")
  41171. },
  41172. {
  41173. name: "Nation Nemesis",
  41174. height: math.unit(8e6, "feet")
  41175. },
  41176. {
  41177. name: "Continent Cracker",
  41178. height: math.unit(2.4e7, "feet")
  41179. },
  41180. {
  41181. name: "Planet-Pillaging",
  41182. height: math.unit(8e7, "feet")
  41183. },
  41184. {
  41185. name: "Earth-Eclipsing",
  41186. height: math.unit(2.4e8, "feet")
  41187. },
  41188. {
  41189. name: "Jovian-Jostling",
  41190. height: math.unit(8e8, "feet")
  41191. },
  41192. {
  41193. name: "Gas Giant Gulper",
  41194. height: math.unit(2.4e9, "feet")
  41195. },
  41196. {
  41197. name: "Astral Annihilator",
  41198. height: math.unit(8e9, "feet")
  41199. },
  41200. {
  41201. name: "Celestial Conqueror",
  41202. height: math.unit(2.4e10, "feet")
  41203. },
  41204. {
  41205. name: "Sol-Swallowing",
  41206. height: math.unit(8e10, "feet")
  41207. },
  41208. {
  41209. name: "Hunter of the Heavens",
  41210. height: math.unit(2.4e13, "feet")
  41211. },
  41212. ]
  41213. ))
  41214. characterMakers.push(() => makeCharacter(
  41215. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41216. {
  41217. front: {
  41218. height: math.unit(6 + 8/12, "feet"),
  41219. weight: math.unit(250, "kilograms"),
  41220. volume: math.unit(28, "liters"),
  41221. name: "Front",
  41222. image: {
  41223. source: "./media/characters/rebecca-pawlson/front.svg",
  41224. extra: 1737/1596,
  41225. bottom: 107/1844
  41226. }
  41227. },
  41228. back: {
  41229. height: math.unit(6 + 8/12, "feet"),
  41230. weight: math.unit(250, "kilograms"),
  41231. volume: math.unit(28, "liters"),
  41232. name: "Back",
  41233. image: {
  41234. source: "./media/characters/rebecca-pawlson/back.svg",
  41235. extra: 1702/1523,
  41236. bottom: 86/1788
  41237. }
  41238. },
  41239. },
  41240. [
  41241. {
  41242. name: "Normal",
  41243. height: math.unit(6 + 8/12, "feet")
  41244. },
  41245. {
  41246. name: "Mini Macro",
  41247. height: math.unit(10, "feet"),
  41248. default: true
  41249. },
  41250. {
  41251. name: "Macro",
  41252. height: math.unit(100, "feet")
  41253. },
  41254. {
  41255. name: "Mega Macro",
  41256. height: math.unit(2500, "feet")
  41257. },
  41258. {
  41259. name: "Giga Macro",
  41260. height: math.unit(50, "miles")
  41261. },
  41262. ]
  41263. ))
  41264. characterMakers.push(() => makeCharacter(
  41265. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41266. {
  41267. front: {
  41268. height: math.unit(7 + 6/12, "feet"),
  41269. weight: math.unit(600, "lb"),
  41270. name: "Front",
  41271. image: {
  41272. source: "./media/characters/moxie-nova/front.svg",
  41273. extra: 1734/1652,
  41274. bottom: 41/1775
  41275. }
  41276. },
  41277. },
  41278. [
  41279. {
  41280. name: "Normal",
  41281. height: math.unit(7 + 6/12, "feet"),
  41282. default: true
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41288. {
  41289. goat: {
  41290. height: math.unit(4, "feet"),
  41291. weight: math.unit(180, "lb"),
  41292. name: "Goat",
  41293. image: {
  41294. source: "./media/characters/tiffany/goat.svg",
  41295. extra: 1845/1595,
  41296. bottom: 106/1951
  41297. }
  41298. },
  41299. front: {
  41300. height: math.unit(5, "feet"),
  41301. weight: math.unit(150, "lb"),
  41302. name: "Foxcoon",
  41303. image: {
  41304. source: "./media/characters/tiffany/foxcoon.svg",
  41305. extra: 1941/1845,
  41306. bottom: 58/1999
  41307. }
  41308. },
  41309. },
  41310. [
  41311. {
  41312. name: "Normal",
  41313. height: math.unit(5, "feet"),
  41314. default: true
  41315. },
  41316. ]
  41317. ))
  41318. characterMakers.push(() => makeCharacter(
  41319. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41320. {
  41321. front: {
  41322. height: math.unit(8, "feet"),
  41323. weight: math.unit(300, "lb"),
  41324. name: "Front",
  41325. image: {
  41326. source: "./media/characters/raxinath/front.svg",
  41327. extra: 1407/1309,
  41328. bottom: 39/1446
  41329. }
  41330. },
  41331. back: {
  41332. height: math.unit(8, "feet"),
  41333. weight: math.unit(300, "lb"),
  41334. name: "Back",
  41335. image: {
  41336. source: "./media/characters/raxinath/back.svg",
  41337. extra: 1405/1315,
  41338. bottom: 9/1414
  41339. }
  41340. },
  41341. },
  41342. [
  41343. {
  41344. name: "Speck",
  41345. height: math.unit(0.5, "nm")
  41346. },
  41347. {
  41348. name: "Micro",
  41349. height: math.unit(3, "inches")
  41350. },
  41351. {
  41352. name: "Kobold",
  41353. height: math.unit(3, "feet")
  41354. },
  41355. {
  41356. name: "Normal",
  41357. height: math.unit(8, "feet"),
  41358. default: true
  41359. },
  41360. {
  41361. name: "Giant",
  41362. height: math.unit(50, "feet")
  41363. },
  41364. {
  41365. name: "Macro",
  41366. height: math.unit(1000, "feet")
  41367. },
  41368. {
  41369. name: "Megamacro",
  41370. height: math.unit(1, "mile")
  41371. },
  41372. ]
  41373. ))
  41374. characterMakers.push(() => makeCharacter(
  41375. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41376. {
  41377. front: {
  41378. height: math.unit(10, "feet"),
  41379. weight: math.unit(1442, "lb"),
  41380. name: "Front",
  41381. image: {
  41382. source: "./media/characters/mal-dragon/front.svg",
  41383. extra: 1515/1444,
  41384. bottom: 113/1628
  41385. }
  41386. },
  41387. back: {
  41388. height: math.unit(10, "feet"),
  41389. weight: math.unit(1442, "lb"),
  41390. name: "Back",
  41391. image: {
  41392. source: "./media/characters/mal-dragon/back.svg",
  41393. extra: 1527/1434,
  41394. bottom: 25/1552
  41395. }
  41396. },
  41397. },
  41398. [
  41399. {
  41400. name: "Mortal Interaction",
  41401. height: math.unit(10, "feet"),
  41402. default: true
  41403. },
  41404. {
  41405. name: "Large",
  41406. height: math.unit(30, "feet")
  41407. },
  41408. {
  41409. name: "Kaiju",
  41410. height: math.unit(300, "feet")
  41411. },
  41412. {
  41413. name: "Megamacro",
  41414. height: math.unit(10000, "feet")
  41415. },
  41416. {
  41417. name: "Continent Cracker",
  41418. height: math.unit(30000000, "feet")
  41419. },
  41420. {
  41421. name: "Sol-Swallowing",
  41422. height: math.unit(1e11, "feet")
  41423. },
  41424. {
  41425. name: "Light Universal",
  41426. height: math.unit(5, "universes")
  41427. },
  41428. {
  41429. name: "Universe Atoms",
  41430. height: math.unit(1.829e9, "universes")
  41431. },
  41432. {
  41433. name: "Light Multiversal",
  41434. height: math.unit(5, "multiverses")
  41435. },
  41436. {
  41437. name: "Multiverse Atoms",
  41438. height: math.unit(1.829e9, "multiverses")
  41439. },
  41440. {
  41441. name: "Fabric of Time",
  41442. height: math.unit(1e262, "multiverses")
  41443. },
  41444. ]
  41445. ))
  41446. characterMakers.push(() => makeCharacter(
  41447. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41448. {
  41449. front: {
  41450. height: math.unit(9, "feet"),
  41451. weight: math.unit(1050, "lb"),
  41452. name: "Front",
  41453. image: {
  41454. source: "./media/characters/tabitha/front.svg",
  41455. extra: 2083/1994,
  41456. bottom: 68/2151
  41457. }
  41458. },
  41459. },
  41460. [
  41461. {
  41462. name: "Baseline",
  41463. height: math.unit(9, "feet"),
  41464. default: true
  41465. },
  41466. {
  41467. name: "Giant",
  41468. height: math.unit(90, "feet")
  41469. },
  41470. {
  41471. name: "Macro",
  41472. height: math.unit(900, "feet")
  41473. },
  41474. {
  41475. name: "Megamacro",
  41476. height: math.unit(9000, "feet")
  41477. },
  41478. {
  41479. name: "City-Crushing",
  41480. height: math.unit(27000, "feet")
  41481. },
  41482. {
  41483. name: "Mountain-Mashing",
  41484. height: math.unit(90000, "feet")
  41485. },
  41486. {
  41487. name: "Nation Nemesis",
  41488. height: math.unit(9e6, "feet")
  41489. },
  41490. {
  41491. name: "Continent Cracker",
  41492. height: math.unit(27e6, "feet")
  41493. },
  41494. {
  41495. name: "Earth-Eclipsing",
  41496. height: math.unit(2.7e8, "feet")
  41497. },
  41498. {
  41499. name: "Gas Giant Gulper",
  41500. height: math.unit(2.7e9, "feet")
  41501. },
  41502. {
  41503. name: "Sol-Swallowing",
  41504. height: math.unit(9e10, "feet")
  41505. },
  41506. {
  41507. name: "Galaxy Gulper",
  41508. height: math.unit(9, "galaxies")
  41509. },
  41510. {
  41511. name: "Cosmos Churner",
  41512. height: math.unit(9, "universes")
  41513. },
  41514. ]
  41515. ))
  41516. characterMakers.push(() => makeCharacter(
  41517. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41518. {
  41519. front: {
  41520. height: math.unit(160, "cm"),
  41521. weight: math.unit(55, "kg"),
  41522. name: "Front",
  41523. image: {
  41524. source: "./media/characters/tow/front.svg",
  41525. extra: 1751/1722,
  41526. bottom: 74/1825
  41527. }
  41528. },
  41529. },
  41530. [
  41531. {
  41532. name: "Norm",
  41533. height: math.unit(160, "cm")
  41534. },
  41535. {
  41536. name: "Casual",
  41537. height: math.unit(3200, "m"),
  41538. default: true
  41539. },
  41540. {
  41541. name: "Show-Off",
  41542. height: math.unit(160, "km")
  41543. },
  41544. ]
  41545. ))
  41546. characterMakers.push(() => makeCharacter(
  41547. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41548. {
  41549. front: {
  41550. height: math.unit(7 + 11/12, "feet"),
  41551. weight: math.unit(342.8, "lb"),
  41552. name: "Front",
  41553. image: {
  41554. source: "./media/characters/vivian-orca-dragon/front.svg",
  41555. extra: 1890/1865,
  41556. bottom: 28/1918
  41557. }
  41558. },
  41559. },
  41560. [
  41561. {
  41562. name: "Micro",
  41563. height: math.unit(5, "inches")
  41564. },
  41565. {
  41566. name: "Normal",
  41567. height: math.unit(7 + 11/12, "feet"),
  41568. default: true
  41569. },
  41570. {
  41571. name: "Macro",
  41572. height: math.unit(395 + 7/12, "feet")
  41573. },
  41574. ]
  41575. ))
  41576. characterMakers.push(() => makeCharacter(
  41577. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41578. {
  41579. side: {
  41580. height: math.unit(10, "feet"),
  41581. weight: math.unit(1442, "lb"),
  41582. name: "Side",
  41583. image: {
  41584. source: "./media/characters/lotherakon/side.svg",
  41585. extra: 1604/1497,
  41586. bottom: 89/1693
  41587. }
  41588. },
  41589. },
  41590. [
  41591. {
  41592. name: "Mortal Interaction",
  41593. height: math.unit(10, "feet")
  41594. },
  41595. {
  41596. name: "Large",
  41597. height: math.unit(30, "feet"),
  41598. default: true
  41599. },
  41600. {
  41601. name: "Giant",
  41602. height: math.unit(100, "feet")
  41603. },
  41604. {
  41605. name: "Kaiju",
  41606. height: math.unit(300, "feet")
  41607. },
  41608. {
  41609. name: "Macro",
  41610. height: math.unit(1000, "feet")
  41611. },
  41612. {
  41613. name: "Macro+",
  41614. height: math.unit(3000, "feet")
  41615. },
  41616. {
  41617. name: "Megamacro",
  41618. height: math.unit(10000, "feet")
  41619. },
  41620. {
  41621. name: "City-Crushing",
  41622. height: math.unit(30000, "feet")
  41623. },
  41624. {
  41625. name: "Continent Cracker",
  41626. height: math.unit(30e6, "feet")
  41627. },
  41628. {
  41629. name: "Earth Eclipsing",
  41630. height: math.unit(3e8, "feet")
  41631. },
  41632. {
  41633. name: "Gas Giant Gulper",
  41634. height: math.unit(3e9, "feet")
  41635. },
  41636. {
  41637. name: "Sol-Swallowing",
  41638. height: math.unit(1e11, "feet")
  41639. },
  41640. {
  41641. name: "System Swallower",
  41642. height: math.unit(3e14, "feet")
  41643. },
  41644. {
  41645. name: "Galaxy Gulper",
  41646. height: math.unit(10, "galaxies")
  41647. },
  41648. {
  41649. name: "Light Universal",
  41650. height: math.unit(5, "universes")
  41651. },
  41652. {
  41653. name: "Universe Palm",
  41654. height: math.unit(20, "universes")
  41655. },
  41656. {
  41657. name: "Light Multiversal",
  41658. height: math.unit(5, "multiverses")
  41659. },
  41660. {
  41661. name: "Multiverse Palm",
  41662. height: math.unit(20, "multiverses")
  41663. },
  41664. {
  41665. name: "Inferno Incarnate",
  41666. height: math.unit(1e7, "multiverses")
  41667. },
  41668. ]
  41669. ))
  41670. characterMakers.push(() => makeCharacter(
  41671. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41672. {
  41673. front: {
  41674. height: math.unit(8, "feet"),
  41675. weight: math.unit(1200, "lb"),
  41676. name: "Front",
  41677. image: {
  41678. source: "./media/characters/malithee/front.svg",
  41679. extra: 1675/1640,
  41680. bottom: 162/1837
  41681. }
  41682. },
  41683. },
  41684. [
  41685. {
  41686. name: "Mortal Interaction",
  41687. height: math.unit(8, "feet"),
  41688. default: true
  41689. },
  41690. {
  41691. name: "Large",
  41692. height: math.unit(24, "feet")
  41693. },
  41694. {
  41695. name: "Kaiju",
  41696. height: math.unit(240, "feet")
  41697. },
  41698. {
  41699. name: "Megamacro",
  41700. height: math.unit(8000, "feet")
  41701. },
  41702. {
  41703. name: "Continent Cracker",
  41704. height: math.unit(24e6, "feet")
  41705. },
  41706. {
  41707. name: "Earth-Eclipsing",
  41708. height: math.unit(2.4e8, "feet")
  41709. },
  41710. {
  41711. name: "Sol-Swallowing",
  41712. height: math.unit(8e10, "feet")
  41713. },
  41714. {
  41715. name: "Galaxy Gulper",
  41716. height: math.unit(8, "galaxies")
  41717. },
  41718. {
  41719. name: "Light Universal",
  41720. height: math.unit(4, "universes")
  41721. },
  41722. {
  41723. name: "Universe Atoms",
  41724. height: math.unit(1.829e9, "universes")
  41725. },
  41726. {
  41727. name: "Light Multiversal",
  41728. height: math.unit(4, "multiverses")
  41729. },
  41730. {
  41731. name: "Multiverse Atoms",
  41732. height: math.unit(1.829e9, "multiverses")
  41733. },
  41734. {
  41735. name: "Nigh-Omnipresence",
  41736. height: math.unit(8e261, "multiverses")
  41737. },
  41738. ]
  41739. ))
  41740. characterMakers.push(() => makeCharacter(
  41741. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41742. {
  41743. front: {
  41744. height: math.unit(10, "feet"),
  41745. weight: math.unit(1500, "lb"),
  41746. name: "Front",
  41747. image: {
  41748. source: "./media/characters/miles-thestia/front.svg",
  41749. extra: 1812/1727,
  41750. bottom: 86/1898
  41751. }
  41752. },
  41753. back: {
  41754. height: math.unit(10, "feet"),
  41755. weight: math.unit(1500, "lb"),
  41756. name: "Back",
  41757. image: {
  41758. source: "./media/characters/miles-thestia/back.svg",
  41759. extra: 1799/1690,
  41760. bottom: 47/1846
  41761. }
  41762. },
  41763. frontNsfw: {
  41764. height: math.unit(10, "feet"),
  41765. weight: math.unit(1500, "lb"),
  41766. name: "Front (NSFW)",
  41767. image: {
  41768. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41769. extra: 1812/1727,
  41770. bottom: 86/1898
  41771. }
  41772. },
  41773. },
  41774. [
  41775. {
  41776. name: "Mini-Macro",
  41777. height: math.unit(10, "feet"),
  41778. default: true
  41779. },
  41780. ]
  41781. ))
  41782. characterMakers.push(() => makeCharacter(
  41783. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41784. {
  41785. front: {
  41786. height: math.unit(25, "feet"),
  41787. name: "Front",
  41788. image: {
  41789. source: "./media/characters/titan-s-wulf/front.svg",
  41790. extra: 1560/1484,
  41791. bottom: 76/1636
  41792. }
  41793. },
  41794. },
  41795. [
  41796. {
  41797. name: "Smallest",
  41798. height: math.unit(25, "feet"),
  41799. default: true
  41800. },
  41801. {
  41802. name: "Normal",
  41803. height: math.unit(200, "feet")
  41804. },
  41805. {
  41806. name: "Macro",
  41807. height: math.unit(200000, "feet")
  41808. },
  41809. {
  41810. name: "Multiversal Original",
  41811. height: math.unit(10000, "multiverses")
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41817. {
  41818. front: {
  41819. height: math.unit(8, "feet"),
  41820. weight: math.unit(553, "lb"),
  41821. name: "Front",
  41822. image: {
  41823. source: "./media/characters/tawendeh/front.svg",
  41824. extra: 2365/2268,
  41825. bottom: 83/2448
  41826. }
  41827. },
  41828. frontClothed: {
  41829. height: math.unit(8, "feet"),
  41830. weight: math.unit(553, "lb"),
  41831. name: "Front (Clothed)",
  41832. image: {
  41833. source: "./media/characters/tawendeh/front-clothed.svg",
  41834. extra: 2365/2268,
  41835. bottom: 83/2448
  41836. }
  41837. },
  41838. back: {
  41839. height: math.unit(8, "feet"),
  41840. weight: math.unit(553, "lb"),
  41841. name: "Back",
  41842. image: {
  41843. source: "./media/characters/tawendeh/back.svg",
  41844. extra: 2397/2294,
  41845. bottom: 42/2439
  41846. }
  41847. },
  41848. },
  41849. [
  41850. {
  41851. name: "Mortal Interaction",
  41852. height: math.unit(8, "feet"),
  41853. default: true
  41854. },
  41855. {
  41856. name: "Giant",
  41857. height: math.unit(80, "feet")
  41858. },
  41859. {
  41860. name: "Macro",
  41861. height: math.unit(800, "feet")
  41862. },
  41863. {
  41864. name: "Megamacro",
  41865. height: math.unit(8000, "feet")
  41866. },
  41867. {
  41868. name: "City-Crushing",
  41869. height: math.unit(24000, "feet")
  41870. },
  41871. {
  41872. name: "Mountain-Mashing",
  41873. height: math.unit(80000, "feet")
  41874. },
  41875. {
  41876. name: "Nation Nemesis",
  41877. height: math.unit(8e6, "feet")
  41878. },
  41879. {
  41880. name: "Continent Cracker",
  41881. height: math.unit(24e6, "feet")
  41882. },
  41883. {
  41884. name: "Earth-Eclipsing",
  41885. height: math.unit(2.4e8, "feet")
  41886. },
  41887. {
  41888. name: "Gas Giant Gulper",
  41889. height: math.unit(2.4e9, "feet")
  41890. },
  41891. {
  41892. name: "Sol-Swallowing",
  41893. height: math.unit(8e10, "feet")
  41894. },
  41895. {
  41896. name: "Galaxy Gulper",
  41897. height: math.unit(8, "galaxies")
  41898. },
  41899. {
  41900. name: "Cosmos Churner",
  41901. height: math.unit(8, "universes")
  41902. },
  41903. {
  41904. name: "Omnipotent Otter",
  41905. height: math.unit(80, "universes")
  41906. },
  41907. ]
  41908. ))
  41909. characterMakers.push(() => makeCharacter(
  41910. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41911. {
  41912. front: {
  41913. height: math.unit(2.6, "meters"),
  41914. weight: math.unit(900, "kg"),
  41915. name: "Front",
  41916. image: {
  41917. source: "./media/characters/neesha/front.svg",
  41918. extra: 1803/1653,
  41919. bottom: 128/1931
  41920. }
  41921. },
  41922. },
  41923. [
  41924. {
  41925. name: "Normal",
  41926. height: math.unit(2.6, "meters"),
  41927. default: true
  41928. },
  41929. {
  41930. name: "Macro",
  41931. height: math.unit(50, "meters")
  41932. },
  41933. ]
  41934. ))
  41935. characterMakers.push(() => makeCharacter(
  41936. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41937. {
  41938. front: {
  41939. height: math.unit(5, "feet"),
  41940. weight: math.unit(185, "lb"),
  41941. name: "Front",
  41942. image: {
  41943. source: "./media/characters/kyera/front.svg",
  41944. extra: 1875/1790,
  41945. bottom: 96/1971
  41946. }
  41947. },
  41948. },
  41949. [
  41950. {
  41951. name: "Normal",
  41952. height: math.unit(5, "feet"),
  41953. default: true
  41954. },
  41955. ]
  41956. ))
  41957. characterMakers.push(() => makeCharacter(
  41958. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41959. {
  41960. front: {
  41961. height: math.unit(7 + 6/12, "feet"),
  41962. weight: math.unit(540, "lb"),
  41963. name: "Front",
  41964. image: {
  41965. source: "./media/characters/yuko/front.svg",
  41966. extra: 1282/1222,
  41967. bottom: 101/1383
  41968. }
  41969. },
  41970. frontClothed: {
  41971. height: math.unit(7 + 6/12, "feet"),
  41972. weight: math.unit(540, "lb"),
  41973. name: "Front (Clothed)",
  41974. image: {
  41975. source: "./media/characters/yuko/front-clothed.svg",
  41976. extra: 1282/1222,
  41977. bottom: 101/1383
  41978. }
  41979. },
  41980. },
  41981. [
  41982. {
  41983. name: "Normal",
  41984. height: math.unit(7 + 6/12, "feet"),
  41985. default: true
  41986. },
  41987. {
  41988. name: "Macro",
  41989. height: math.unit(26 + 9/12, "feet")
  41990. },
  41991. {
  41992. name: "Megamacro",
  41993. height: math.unit(300, "feet")
  41994. },
  41995. {
  41996. name: "Gigamacro",
  41997. height: math.unit(5000, "feet")
  41998. },
  41999. {
  42000. name: "Planetary",
  42001. height: math.unit(10000, "miles")
  42002. },
  42003. ]
  42004. ))
  42005. characterMakers.push(() => makeCharacter(
  42006. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42007. {
  42008. front: {
  42009. height: math.unit(8 + 2/12, "feet"),
  42010. weight: math.unit(600, "lb"),
  42011. name: "Front",
  42012. image: {
  42013. source: "./media/characters/deam-nitrel/front.svg",
  42014. extra: 1308/1234,
  42015. bottom: 125/1433
  42016. }
  42017. },
  42018. },
  42019. [
  42020. {
  42021. name: "Normal",
  42022. height: math.unit(8 + 2/12, "feet"),
  42023. default: true
  42024. },
  42025. ]
  42026. ))
  42027. characterMakers.push(() => makeCharacter(
  42028. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42029. {
  42030. front: {
  42031. height: math.unit(6.1, "feet"),
  42032. weight: math.unit(180, "lb"),
  42033. name: "Front",
  42034. image: {
  42035. source: "./media/characters/skyress/front.svg",
  42036. extra: 1045/915,
  42037. bottom: 28/1073
  42038. }
  42039. },
  42040. maw: {
  42041. height: math.unit(1, "feet"),
  42042. name: "Maw",
  42043. image: {
  42044. source: "./media/characters/skyress/maw.svg"
  42045. }
  42046. },
  42047. },
  42048. [
  42049. {
  42050. name: "Normal",
  42051. height: math.unit(6.1, "feet"),
  42052. default: true
  42053. },
  42054. {
  42055. name: "Macro",
  42056. height: math.unit(200, "feet")
  42057. },
  42058. ]
  42059. ))
  42060. characterMakers.push(() => makeCharacter(
  42061. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42062. {
  42063. front: {
  42064. height: math.unit(4 + 2/12, "feet"),
  42065. weight: math.unit(40, "kg"),
  42066. name: "Front",
  42067. image: {
  42068. source: "./media/characters/amethyst-jones/front.svg",
  42069. extra: 1220/1150,
  42070. bottom: 101/1321
  42071. }
  42072. },
  42073. },
  42074. [
  42075. {
  42076. name: "Normal",
  42077. height: math.unit(4 + 2/12, "feet"),
  42078. default: true
  42079. },
  42080. ]
  42081. ))
  42082. characterMakers.push(() => makeCharacter(
  42083. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42084. {
  42085. front: {
  42086. height: math.unit(1.7, "m"),
  42087. weight: math.unit(135, "lb"),
  42088. name: "Front",
  42089. image: {
  42090. source: "./media/characters/jade/front.svg",
  42091. extra: 1818/1767,
  42092. bottom: 32/1850
  42093. }
  42094. },
  42095. back: {
  42096. height: math.unit(1.7, "m"),
  42097. weight: math.unit(135, "lb"),
  42098. name: "Back",
  42099. image: {
  42100. source: "./media/characters/jade/back.svg",
  42101. extra: 1869/1809,
  42102. bottom: 35/1904
  42103. }
  42104. },
  42105. hand: {
  42106. height: math.unit(0.24, "m"),
  42107. name: "Hand",
  42108. image: {
  42109. source: "./media/characters/jade/hand.svg"
  42110. }
  42111. },
  42112. foot: {
  42113. height: math.unit(0.263, "m"),
  42114. name: "Foot",
  42115. image: {
  42116. source: "./media/characters/jade/foot.svg"
  42117. }
  42118. },
  42119. dick: {
  42120. height: math.unit(0.47, "m"),
  42121. name: "Dick",
  42122. image: {
  42123. source: "./media/characters/jade/dick.svg"
  42124. }
  42125. },
  42126. },
  42127. [
  42128. {
  42129. name: "Micro",
  42130. height: math.unit(22, "cm")
  42131. },
  42132. {
  42133. name: "Normal",
  42134. height: math.unit(1.7, "m"),
  42135. default: true
  42136. },
  42137. {
  42138. name: "Macro",
  42139. height: math.unit(152, "m")
  42140. },
  42141. ]
  42142. ))
  42143. characterMakers.push(() => makeCharacter(
  42144. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42145. {
  42146. front: {
  42147. height: math.unit(100, "miles"),
  42148. weight: math.unit(20000, "tons"),
  42149. name: "Front",
  42150. image: {
  42151. source: "./media/characters/cookie/front.svg",
  42152. extra: 1125/1070,
  42153. bottom: 30/1155
  42154. }
  42155. },
  42156. },
  42157. [
  42158. {
  42159. name: "Big",
  42160. height: math.unit(50, "feet")
  42161. },
  42162. {
  42163. name: "Macro",
  42164. height: math.unit(100, "miles"),
  42165. default: true
  42166. },
  42167. {
  42168. name: "Megamacro",
  42169. height: math.unit(90000, "miles")
  42170. },
  42171. ]
  42172. ))
  42173. characterMakers.push(() => makeCharacter(
  42174. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42175. {
  42176. front: {
  42177. height: math.unit(6, "feet"),
  42178. weight: math.unit(145, "lb"),
  42179. name: "Front",
  42180. image: {
  42181. source: "./media/characters/farzian/front.svg",
  42182. extra: 1902/1693,
  42183. bottom: 108/2010
  42184. }
  42185. },
  42186. },
  42187. [
  42188. {
  42189. name: "Macro",
  42190. height: math.unit(500, "feet"),
  42191. default: true
  42192. },
  42193. ]
  42194. ))
  42195. characterMakers.push(() => makeCharacter(
  42196. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42197. {
  42198. front: {
  42199. height: math.unit(3 + 6/12, "feet"),
  42200. weight: math.unit(50, "lb"),
  42201. name: "Front",
  42202. image: {
  42203. source: "./media/characters/kimberly-tilson/front.svg",
  42204. extra: 1400/1322,
  42205. bottom: 36/1436
  42206. }
  42207. },
  42208. back: {
  42209. height: math.unit(3 + 6/12, "feet"),
  42210. weight: math.unit(50, "lb"),
  42211. name: "Back",
  42212. image: {
  42213. source: "./media/characters/kimberly-tilson/back.svg",
  42214. extra: 1370/1307,
  42215. bottom: 20/1390
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Normal",
  42222. height: math.unit(3 + 6/12, "feet"),
  42223. default: true
  42224. },
  42225. ]
  42226. ))
  42227. characterMakers.push(() => makeCharacter(
  42228. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42229. {
  42230. front: {
  42231. height: math.unit(1148, "feet"),
  42232. weight: math.unit(34057, "lb"),
  42233. name: "Front",
  42234. image: {
  42235. source: "./media/characters/harthos/front.svg",
  42236. extra: 1391/1339,
  42237. bottom: 13/1404
  42238. }
  42239. },
  42240. },
  42241. [
  42242. {
  42243. name: "Macro",
  42244. height: math.unit(1148, "feet"),
  42245. default: true
  42246. },
  42247. ]
  42248. ))
  42249. characterMakers.push(() => makeCharacter(
  42250. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42251. {
  42252. front: {
  42253. height: math.unit(15, "feet"),
  42254. name: "Front",
  42255. image: {
  42256. source: "./media/characters/hypatia/front.svg",
  42257. extra: 1653/1591,
  42258. bottom: 79/1732
  42259. }
  42260. },
  42261. },
  42262. [
  42263. {
  42264. name: "Normal",
  42265. height: math.unit(15, "feet")
  42266. },
  42267. {
  42268. name: "Small",
  42269. height: math.unit(300, "feet")
  42270. },
  42271. {
  42272. name: "Macro",
  42273. height: math.unit(2500, "feet"),
  42274. default: true
  42275. },
  42276. {
  42277. name: "Mega Macro",
  42278. height: math.unit(1500, "miles")
  42279. },
  42280. {
  42281. name: "Giga Macro",
  42282. height: math.unit(1.5e6, "miles")
  42283. },
  42284. ]
  42285. ))
  42286. characterMakers.push(() => makeCharacter(
  42287. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42288. {
  42289. front: {
  42290. height: math.unit(6, "feet"),
  42291. weight: math.unit(200, "lb"),
  42292. name: "Front",
  42293. image: {
  42294. source: "./media/characters/wulver/front.svg",
  42295. extra: 1724/1632,
  42296. bottom: 130/1854
  42297. }
  42298. },
  42299. frontNsfw: {
  42300. height: math.unit(6, "feet"),
  42301. weight: math.unit(200, "lb"),
  42302. name: "Front (NSFW)",
  42303. image: {
  42304. source: "./media/characters/wulver/front-nsfw.svg",
  42305. extra: 1724/1632,
  42306. bottom: 130/1854
  42307. }
  42308. },
  42309. },
  42310. [
  42311. {
  42312. name: "Human-Sized",
  42313. height: math.unit(6, "feet")
  42314. },
  42315. {
  42316. name: "Normal",
  42317. height: math.unit(4, "meters"),
  42318. default: true
  42319. },
  42320. {
  42321. name: "Large",
  42322. height: math.unit(6, "m")
  42323. },
  42324. ]
  42325. ))
  42326. characterMakers.push(() => makeCharacter(
  42327. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42328. {
  42329. front: {
  42330. height: math.unit(7, "feet"),
  42331. name: "Front",
  42332. image: {
  42333. source: "./media/characters/maru/front.svg",
  42334. extra: 1595/1570,
  42335. bottom: 0/1595
  42336. }
  42337. },
  42338. },
  42339. [
  42340. {
  42341. name: "Normal",
  42342. height: math.unit(7, "feet"),
  42343. default: true
  42344. },
  42345. {
  42346. name: "Macro",
  42347. height: math.unit(700, "feet")
  42348. },
  42349. {
  42350. name: "Mega Macro",
  42351. height: math.unit(25, "miles")
  42352. },
  42353. ]
  42354. ))
  42355. characterMakers.push(() => makeCharacter(
  42356. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42357. {
  42358. front: {
  42359. height: math.unit(6, "feet"),
  42360. weight: math.unit(170, "lb"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/xenon/front.svg",
  42364. extra: 1376/1305,
  42365. bottom: 56/1432
  42366. }
  42367. },
  42368. back: {
  42369. height: math.unit(6, "feet"),
  42370. weight: math.unit(170, "lb"),
  42371. name: "Back",
  42372. image: {
  42373. source: "./media/characters/xenon/back.svg",
  42374. extra: 1328/1259,
  42375. bottom: 95/1423
  42376. }
  42377. },
  42378. maw: {
  42379. height: math.unit(0.52, "feet"),
  42380. name: "Maw",
  42381. image: {
  42382. source: "./media/characters/xenon/maw.svg"
  42383. }
  42384. },
  42385. handLeft: {
  42386. height: math.unit(0.82 * 169 / 153, "feet"),
  42387. name: "Hand (Left)",
  42388. image: {
  42389. source: "./media/characters/xenon/hand-left.svg"
  42390. }
  42391. },
  42392. handRight: {
  42393. height: math.unit(0.82, "feet"),
  42394. name: "Hand (Right)",
  42395. image: {
  42396. source: "./media/characters/xenon/hand-right.svg"
  42397. }
  42398. },
  42399. footLeft: {
  42400. height: math.unit(1.13, "feet"),
  42401. name: "Foot (Left)",
  42402. image: {
  42403. source: "./media/characters/xenon/foot-left.svg"
  42404. }
  42405. },
  42406. footRight: {
  42407. height: math.unit(1.13 * 194 / 196, "feet"),
  42408. name: "Foot (Right)",
  42409. image: {
  42410. source: "./media/characters/xenon/foot-right.svg"
  42411. }
  42412. },
  42413. },
  42414. [
  42415. {
  42416. name: "Micro",
  42417. height: math.unit(0.8, "inches")
  42418. },
  42419. {
  42420. name: "Normal",
  42421. height: math.unit(6, "feet")
  42422. },
  42423. {
  42424. name: "Macro",
  42425. height: math.unit(50, "feet"),
  42426. default: true
  42427. },
  42428. {
  42429. name: "Macro+",
  42430. height: math.unit(250, "feet")
  42431. },
  42432. {
  42433. name: "Megamacro",
  42434. height: math.unit(1500, "feet")
  42435. },
  42436. ]
  42437. ))
  42438. characterMakers.push(() => makeCharacter(
  42439. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42440. {
  42441. front: {
  42442. height: math.unit(7 + 5/12, "feet"),
  42443. name: "Front",
  42444. image: {
  42445. source: "./media/characters/zane/front.svg",
  42446. extra: 1260/1203,
  42447. bottom: 94/1354
  42448. }
  42449. },
  42450. back: {
  42451. height: math.unit(5.05, "feet"),
  42452. name: "Back",
  42453. image: {
  42454. source: "./media/characters/zane/back.svg",
  42455. extra: 893/829,
  42456. bottom: 30/923
  42457. }
  42458. },
  42459. werewolf: {
  42460. height: math.unit(11, "feet"),
  42461. name: "Werewolf",
  42462. image: {
  42463. source: "./media/characters/zane/werewolf.svg",
  42464. extra: 1383/1323,
  42465. bottom: 89/1472
  42466. }
  42467. },
  42468. foot: {
  42469. height: math.unit(1.46, "feet"),
  42470. name: "Foot",
  42471. image: {
  42472. source: "./media/characters/zane/foot.svg"
  42473. }
  42474. },
  42475. footFront: {
  42476. height: math.unit(0.784, "feet"),
  42477. name: "Foot (Front)",
  42478. image: {
  42479. source: "./media/characters/zane/foot-front.svg"
  42480. }
  42481. },
  42482. dick: {
  42483. height: math.unit(1.95, "feet"),
  42484. name: "Dick",
  42485. image: {
  42486. source: "./media/characters/zane/dick.svg"
  42487. }
  42488. },
  42489. dickWerewolf: {
  42490. height: math.unit(3.77, "feet"),
  42491. name: "Dick (Werewolf)",
  42492. image: {
  42493. source: "./media/characters/zane/dick.svg"
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Normal",
  42500. height: math.unit(7 + 5/12, "feet"),
  42501. default: true
  42502. },
  42503. ]
  42504. ))
  42505. characterMakers.push(() => makeCharacter(
  42506. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42507. {
  42508. front: {
  42509. height: math.unit(6 + 2/12, "feet"),
  42510. weight: math.unit(284, "lb"),
  42511. name: "Front",
  42512. image: {
  42513. source: "./media/characters/benni-desparque/front.svg",
  42514. extra: 1353/1126,
  42515. bottom: 69/1422
  42516. }
  42517. },
  42518. },
  42519. [
  42520. {
  42521. name: "Civilian",
  42522. height: math.unit(6 + 2/12, "feet")
  42523. },
  42524. {
  42525. name: "Normal",
  42526. height: math.unit(98, "feet"),
  42527. default: true
  42528. },
  42529. {
  42530. name: "Kaiju Fighter",
  42531. height: math.unit(268, "feet")
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42537. {
  42538. front: {
  42539. height: math.unit(5, "feet"),
  42540. weight: math.unit(105, "lb"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/maxine/front.svg",
  42544. extra: 1386/1250,
  42545. bottom: 71/1457
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(5, "feet"),
  42553. default: true
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42559. {
  42560. front: {
  42561. height: math.unit(11 + 7/12, "feet"),
  42562. weight: math.unit(9576, "lb"),
  42563. name: "Front",
  42564. image: {
  42565. source: "./media/characters/scaly/front.svg",
  42566. extra: 888/867,
  42567. bottom: 36/924
  42568. }
  42569. },
  42570. },
  42571. [
  42572. {
  42573. name: "Normal",
  42574. height: math.unit(11 + 7/12, "feet"),
  42575. default: true
  42576. },
  42577. ]
  42578. ))
  42579. characterMakers.push(() => makeCharacter(
  42580. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42581. {
  42582. front: {
  42583. height: math.unit(6 + 3/12, "feet"),
  42584. name: "Front",
  42585. image: {
  42586. source: "./media/characters/saelria/front.svg",
  42587. extra: 1243/1138,
  42588. bottom: 46/1289
  42589. }
  42590. },
  42591. },
  42592. [
  42593. {
  42594. name: "Micro",
  42595. height: math.unit(6, "inches"),
  42596. },
  42597. {
  42598. name: "Normal",
  42599. height: math.unit(6 + 3/12, "feet"),
  42600. default: true
  42601. },
  42602. {
  42603. name: "Macro",
  42604. height: math.unit(25, "feet")
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42610. {
  42611. front: {
  42612. height: math.unit(80, "meters"),
  42613. weight: math.unit(7000, "tonnes"),
  42614. name: "Front",
  42615. image: {
  42616. source: "./media/characters/tef/front.svg",
  42617. extra: 2036/1991,
  42618. bottom: 54/2090
  42619. }
  42620. },
  42621. back: {
  42622. height: math.unit(80, "meters"),
  42623. weight: math.unit(7000, "tonnes"),
  42624. name: "Back",
  42625. image: {
  42626. source: "./media/characters/tef/back.svg",
  42627. extra: 2036/1991,
  42628. bottom: 54/2090
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Macro",
  42635. height: math.unit(80, "meters"),
  42636. default: true
  42637. },
  42638. ]
  42639. ))
  42640. characterMakers.push(() => makeCharacter(
  42641. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42642. {
  42643. front: {
  42644. height: math.unit(13, "feet"),
  42645. weight: math.unit(6, "tons"),
  42646. name: "Front",
  42647. image: {
  42648. source: "./media/characters/rover/front.svg",
  42649. extra: 1233/1156,
  42650. bottom: 50/1283
  42651. }
  42652. },
  42653. back: {
  42654. height: math.unit(13, "feet"),
  42655. weight: math.unit(6, "tons"),
  42656. name: "Back",
  42657. image: {
  42658. source: "./media/characters/rover/back.svg",
  42659. extra: 1327/1258,
  42660. bottom: 39/1366
  42661. }
  42662. },
  42663. },
  42664. [
  42665. {
  42666. name: "Normal",
  42667. height: math.unit(13, "feet"),
  42668. default: true
  42669. },
  42670. {
  42671. name: "Macro",
  42672. height: math.unit(1300, "feet")
  42673. },
  42674. {
  42675. name: "Megamacro",
  42676. height: math.unit(1300, "miles")
  42677. },
  42678. {
  42679. name: "Gigamacro",
  42680. height: math.unit(1300000, "miles")
  42681. },
  42682. ]
  42683. ))
  42684. characterMakers.push(() => makeCharacter(
  42685. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42686. {
  42687. front: {
  42688. height: math.unit(6, "feet"),
  42689. weight: math.unit(150, "lb"),
  42690. name: "Front",
  42691. image: {
  42692. source: "./media/characters/ariz/front.svg",
  42693. extra: 1401/1346,
  42694. bottom: 5/1406
  42695. }
  42696. },
  42697. },
  42698. [
  42699. {
  42700. name: "Normal",
  42701. height: math.unit(10, "feet"),
  42702. default: true
  42703. },
  42704. ]
  42705. ))
  42706. characterMakers.push(() => makeCharacter(
  42707. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42708. {
  42709. front: {
  42710. height: math.unit(6, "feet"),
  42711. weight: math.unit(140, "lb"),
  42712. name: "Front",
  42713. image: {
  42714. source: "./media/characters/sigrun/front.svg",
  42715. extra: 1418/1359,
  42716. bottom: 27/1445
  42717. }
  42718. },
  42719. },
  42720. [
  42721. {
  42722. name: "Macro",
  42723. height: math.unit(35, "feet"),
  42724. default: true
  42725. },
  42726. ]
  42727. ))
  42728. characterMakers.push(() => makeCharacter(
  42729. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42730. {
  42731. front: {
  42732. height: math.unit(6, "feet"),
  42733. weight: math.unit(150, "lb"),
  42734. name: "Front",
  42735. image: {
  42736. source: "./media/characters/numin/front.svg",
  42737. extra: 1433/1388,
  42738. bottom: 12/1445
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Macro",
  42745. height: math.unit(21.5, "km"),
  42746. default: true
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42752. {
  42753. front: {
  42754. height: math.unit(6, "feet"),
  42755. weight: math.unit(463, "lb"),
  42756. name: "Front",
  42757. image: {
  42758. source: "./media/characters/melwa/front.svg",
  42759. extra: 1307/1248,
  42760. bottom: 93/1400
  42761. }
  42762. },
  42763. },
  42764. [
  42765. {
  42766. name: "Macro",
  42767. height: math.unit(50, "meters"),
  42768. default: true
  42769. },
  42770. ]
  42771. ))
  42772. characterMakers.push(() => makeCharacter(
  42773. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42774. {
  42775. front: {
  42776. height: math.unit(325, "feet"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/zorkaiju/front.svg",
  42780. extra: 1955/1814,
  42781. bottom: 40/1995
  42782. }
  42783. },
  42784. frontExtended: {
  42785. height: math.unit(325, "feet"),
  42786. name: "Front (Extended)",
  42787. image: {
  42788. source: "./media/characters/zorkaiju/front-extended.svg",
  42789. extra: 1955/1814,
  42790. bottom: 40/1995
  42791. }
  42792. },
  42793. side: {
  42794. height: math.unit(325, "feet"),
  42795. name: "Side",
  42796. image: {
  42797. source: "./media/characters/zorkaiju/side.svg",
  42798. extra: 1495/1396,
  42799. bottom: 17/1512
  42800. }
  42801. },
  42802. sideExtended: {
  42803. height: math.unit(325, "feet"),
  42804. name: "Side (Extended)",
  42805. image: {
  42806. source: "./media/characters/zorkaiju/side-extended.svg",
  42807. extra: 1495/1396,
  42808. bottom: 17/1512
  42809. }
  42810. },
  42811. back: {
  42812. height: math.unit(325, "feet"),
  42813. name: "Back",
  42814. image: {
  42815. source: "./media/characters/zorkaiju/back.svg",
  42816. extra: 1959/1821,
  42817. bottom: 31/1990
  42818. }
  42819. },
  42820. backExtended: {
  42821. height: math.unit(325, "feet"),
  42822. name: "Back (Extended)",
  42823. image: {
  42824. source: "./media/characters/zorkaiju/back-extended.svg",
  42825. extra: 1959/1821,
  42826. bottom: 31/1990
  42827. }
  42828. },
  42829. hand: {
  42830. height: math.unit(58.4, "feet"),
  42831. name: "Hand",
  42832. image: {
  42833. source: "./media/characters/zorkaiju/hand.svg"
  42834. }
  42835. },
  42836. handExtended: {
  42837. height: math.unit(61.4, "feet"),
  42838. name: "Hand (Extended)",
  42839. image: {
  42840. source: "./media/characters/zorkaiju/hand-extended.svg"
  42841. }
  42842. },
  42843. foot: {
  42844. height: math.unit(95, "feet"),
  42845. name: "Foot",
  42846. image: {
  42847. source: "./media/characters/zorkaiju/foot.svg"
  42848. }
  42849. },
  42850. leftArm: {
  42851. height: math.unit(59, "feet"),
  42852. name: "Left Arm",
  42853. image: {
  42854. source: "./media/characters/zorkaiju/left-arm.svg"
  42855. }
  42856. },
  42857. rightArm: {
  42858. height: math.unit(59, "feet"),
  42859. name: "Right Arm",
  42860. image: {
  42861. source: "./media/characters/zorkaiju/right-arm.svg"
  42862. }
  42863. },
  42864. leftArmExtended: {
  42865. height: math.unit(59 * 1.033546, "feet"),
  42866. name: "Left Arm (Extended)",
  42867. image: {
  42868. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42869. }
  42870. },
  42871. rightArmExtended: {
  42872. height: math.unit(59 * 1.0496, "feet"),
  42873. name: "Right Arm (Extended)",
  42874. image: {
  42875. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42876. }
  42877. },
  42878. tail: {
  42879. height: math.unit(104, "feet"),
  42880. name: "Tail",
  42881. image: {
  42882. source: "./media/characters/zorkaiju/tail.svg"
  42883. }
  42884. },
  42885. tailExtended: {
  42886. height: math.unit(104, "feet"),
  42887. name: "Tail (Extended)",
  42888. image: {
  42889. source: "./media/characters/zorkaiju/tail-extended.svg"
  42890. }
  42891. },
  42892. tailBottom: {
  42893. height: math.unit(104, "feet"),
  42894. name: "Tail Bottom",
  42895. image: {
  42896. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42897. }
  42898. },
  42899. crystal: {
  42900. height: math.unit(27.54, "feet"),
  42901. name: "Crystal",
  42902. image: {
  42903. source: "./media/characters/zorkaiju/crystal.svg"
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Kaiju",
  42910. height: math.unit(325, "feet"),
  42911. default: true
  42912. },
  42913. ]
  42914. ))
  42915. characterMakers.push(() => makeCharacter(
  42916. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42917. {
  42918. front: {
  42919. height: math.unit(6 + 1/12, "feet"),
  42920. weight: math.unit(115, "lb"),
  42921. name: "Front",
  42922. image: {
  42923. source: "./media/characters/bailey-belfry/front.svg",
  42924. extra: 1240/1121,
  42925. bottom: 101/1341
  42926. }
  42927. },
  42928. },
  42929. [
  42930. {
  42931. name: "Normal",
  42932. height: math.unit(6 + 1/12, "feet"),
  42933. default: true
  42934. },
  42935. ]
  42936. ))
  42937. characterMakers.push(() => makeCharacter(
  42938. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42939. {
  42940. side: {
  42941. height: math.unit(4, "meters"),
  42942. weight: math.unit(250, "kg"),
  42943. name: "Side",
  42944. image: {
  42945. source: "./media/characters/blacky/side.svg",
  42946. extra: 1027/919,
  42947. bottom: 43/1070
  42948. }
  42949. },
  42950. maw: {
  42951. height: math.unit(1, "meters"),
  42952. name: "Maw",
  42953. image: {
  42954. source: "./media/characters/blacky/maw.svg"
  42955. }
  42956. },
  42957. paw: {
  42958. height: math.unit(1, "meters"),
  42959. name: "Paw",
  42960. image: {
  42961. source: "./media/characters/blacky/paw.svg"
  42962. }
  42963. },
  42964. },
  42965. [
  42966. {
  42967. name: "Normal",
  42968. height: math.unit(4, "meters"),
  42969. default: true
  42970. },
  42971. ]
  42972. ))
  42973. characterMakers.push(() => makeCharacter(
  42974. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42975. {
  42976. front: {
  42977. height: math.unit(170, "cm"),
  42978. weight: math.unit(66, "kg"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/thux-ei/front.svg",
  42982. extra: 1109/1011,
  42983. bottom: 8/1117
  42984. }
  42985. },
  42986. },
  42987. [
  42988. {
  42989. name: "Normal",
  42990. height: math.unit(170, "cm"),
  42991. default: true
  42992. },
  42993. ]
  42994. ))
  42995. characterMakers.push(() => makeCharacter(
  42996. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42997. {
  42998. front: {
  42999. height: math.unit(5, "feet"),
  43000. weight: math.unit(120, "lb"),
  43001. name: "Front",
  43002. image: {
  43003. source: "./media/characters/roxanne-voltaire/front.svg",
  43004. extra: 1901/1779,
  43005. bottom: 53/1954
  43006. }
  43007. },
  43008. },
  43009. [
  43010. {
  43011. name: "Normal",
  43012. height: math.unit(5, "feet"),
  43013. default: true
  43014. },
  43015. {
  43016. name: "Giant",
  43017. height: math.unit(50, "feet")
  43018. },
  43019. {
  43020. name: "Titan",
  43021. height: math.unit(500, "feet")
  43022. },
  43023. {
  43024. name: "Macro",
  43025. height: math.unit(5000, "feet")
  43026. },
  43027. {
  43028. name: "Megamacro",
  43029. height: math.unit(50000, "feet")
  43030. },
  43031. {
  43032. name: "Gigamacro",
  43033. height: math.unit(500000, "feet")
  43034. },
  43035. {
  43036. name: "Teramacro",
  43037. height: math.unit(5e6, "feet")
  43038. },
  43039. ]
  43040. ))
  43041. characterMakers.push(() => makeCharacter(
  43042. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43043. {
  43044. front: {
  43045. height: math.unit(6 + 2/12, "feet"),
  43046. name: "Front",
  43047. image: {
  43048. source: "./media/characters/squeaks/front.svg",
  43049. extra: 1823/1768,
  43050. bottom: 138/1961
  43051. }
  43052. },
  43053. },
  43054. [
  43055. {
  43056. name: "Micro",
  43057. height: math.unit(0.5, "inches")
  43058. },
  43059. {
  43060. name: "Normal",
  43061. height: math.unit(6 + 2/12, "feet"),
  43062. default: true
  43063. },
  43064. {
  43065. name: "Macro",
  43066. height: math.unit(600, "feet")
  43067. },
  43068. ]
  43069. ))
  43070. characterMakers.push(() => makeCharacter(
  43071. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43072. {
  43073. front: {
  43074. height: math.unit(1.72, "meters"),
  43075. name: "Front",
  43076. image: {
  43077. source: "./media/characters/archinger/front.svg",
  43078. extra: 1861/1675,
  43079. bottom: 125/1986
  43080. }
  43081. },
  43082. back: {
  43083. height: math.unit(1.72, "meters"),
  43084. name: "Back",
  43085. image: {
  43086. source: "./media/characters/archinger/back.svg",
  43087. extra: 1844/1701,
  43088. bottom: 104/1948
  43089. }
  43090. },
  43091. cock: {
  43092. height: math.unit(0.59, "feet"),
  43093. name: "Cock",
  43094. image: {
  43095. source: "./media/characters/archinger/cock.svg"
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Normal",
  43102. height: math.unit(1.72, "meters"),
  43103. default: true
  43104. },
  43105. {
  43106. name: "Macro",
  43107. height: math.unit(84, "meters")
  43108. },
  43109. {
  43110. name: "Macro+",
  43111. height: math.unit(112, "meters")
  43112. },
  43113. {
  43114. name: "Macro++",
  43115. height: math.unit(960, "meters")
  43116. },
  43117. {
  43118. name: "Macro+++",
  43119. height: math.unit(4, "km")
  43120. },
  43121. {
  43122. name: "Macro++++",
  43123. height: math.unit(48, "km")
  43124. },
  43125. {
  43126. name: "Macro+++++",
  43127. height: math.unit(4500, "km")
  43128. },
  43129. ]
  43130. ))
  43131. characterMakers.push(() => makeCharacter(
  43132. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43133. {
  43134. front: {
  43135. height: math.unit(5 + 5/12, "feet"),
  43136. name: "Front",
  43137. image: {
  43138. source: "./media/characters/alsnapz/front.svg",
  43139. extra: 1157/1065,
  43140. bottom: 42/1199
  43141. }
  43142. },
  43143. },
  43144. [
  43145. {
  43146. name: "Normal",
  43147. height: math.unit(5 + 5/12, "feet"),
  43148. default: true
  43149. },
  43150. ]
  43151. ))
  43152. characterMakers.push(() => makeCharacter(
  43153. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43154. {
  43155. side: {
  43156. height: math.unit(3.2, "earths"),
  43157. name: "Side",
  43158. image: {
  43159. source: "./media/characters/mag/side.svg",
  43160. extra: 1331/1008,
  43161. bottom: 52/1383
  43162. }
  43163. },
  43164. wing: {
  43165. height: math.unit(1.94, "earths"),
  43166. name: "Wing",
  43167. image: {
  43168. source: "./media/characters/mag/wing.svg"
  43169. }
  43170. },
  43171. dick: {
  43172. height: math.unit(1.8, "earths"),
  43173. name: "Dick",
  43174. image: {
  43175. source: "./media/characters/mag/dick.svg"
  43176. }
  43177. },
  43178. ass: {
  43179. height: math.unit(1.33, "earths"),
  43180. name: "Ass",
  43181. image: {
  43182. source: "./media/characters/mag/ass.svg"
  43183. }
  43184. },
  43185. head: {
  43186. height: math.unit(1.1, "earths"),
  43187. name: "Head",
  43188. image: {
  43189. source: "./media/characters/mag/head.svg"
  43190. }
  43191. },
  43192. maw: {
  43193. height: math.unit(1.62, "earths"),
  43194. name: "Maw",
  43195. image: {
  43196. source: "./media/characters/mag/maw.svg"
  43197. }
  43198. },
  43199. },
  43200. [
  43201. {
  43202. name: "Small",
  43203. height: math.unit(162, "feet")
  43204. },
  43205. {
  43206. name: "Normal",
  43207. height: math.unit(3.2, "earths"),
  43208. default: true
  43209. },
  43210. ]
  43211. ))
  43212. characterMakers.push(() => makeCharacter(
  43213. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43214. {
  43215. front: {
  43216. height: math.unit(512, "feet"),
  43217. weight: math.unit(63509, "tonnes"),
  43218. name: "Front",
  43219. image: {
  43220. source: "./media/characters/vorrel-harroc/front.svg",
  43221. extra: 1075/1063,
  43222. bottom: 62/1137
  43223. }
  43224. },
  43225. },
  43226. [
  43227. {
  43228. name: "Normal",
  43229. height: math.unit(10, "feet")
  43230. },
  43231. {
  43232. name: "Macro",
  43233. height: math.unit(512, "feet"),
  43234. default: true
  43235. },
  43236. {
  43237. name: "Megamacro",
  43238. height: math.unit(256, "miles")
  43239. },
  43240. {
  43241. name: "Gigamacro",
  43242. height: math.unit(4096, "miles")
  43243. },
  43244. ]
  43245. ))
  43246. characterMakers.push(() => makeCharacter(
  43247. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43248. {
  43249. side: {
  43250. height: math.unit(50, "feet"),
  43251. name: "Side",
  43252. image: {
  43253. source: "./media/characters/froimar/side.svg",
  43254. extra: 855/638,
  43255. bottom: 99/954
  43256. }
  43257. },
  43258. },
  43259. [
  43260. {
  43261. name: "Macro",
  43262. height: math.unit(50, "feet"),
  43263. default: true
  43264. },
  43265. ]
  43266. ))
  43267. characterMakers.push(() => makeCharacter(
  43268. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43269. {
  43270. front: {
  43271. height: math.unit(210, "miles"),
  43272. name: "Front",
  43273. image: {
  43274. source: "./media/characters/timothy/front.svg",
  43275. extra: 1007/943,
  43276. bottom: 62/1069
  43277. }
  43278. },
  43279. frontSkirt: {
  43280. height: math.unit(210, "miles"),
  43281. name: "Front (Skirt)",
  43282. image: {
  43283. source: "./media/characters/timothy/front-skirt.svg",
  43284. extra: 1007/943,
  43285. bottom: 62/1069
  43286. }
  43287. },
  43288. frontCoat: {
  43289. height: math.unit(210, "miles"),
  43290. name: "Front (Coat)",
  43291. image: {
  43292. source: "./media/characters/timothy/front-coat.svg",
  43293. extra: 1007/943,
  43294. bottom: 62/1069
  43295. }
  43296. },
  43297. },
  43298. [
  43299. {
  43300. name: "Macro",
  43301. height: math.unit(210, "miles"),
  43302. default: true
  43303. },
  43304. {
  43305. name: "Megamacro",
  43306. height: math.unit(210000, "miles")
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43312. {
  43313. front: {
  43314. height: math.unit(188, "feet"),
  43315. name: "Front",
  43316. image: {
  43317. source: "./media/characters/pyotr/front.svg",
  43318. extra: 1912/1826,
  43319. bottom: 18/1930
  43320. }
  43321. },
  43322. },
  43323. [
  43324. {
  43325. name: "Macro",
  43326. height: math.unit(188, "feet"),
  43327. default: true
  43328. },
  43329. {
  43330. name: "Megamacro",
  43331. height: math.unit(8, "miles")
  43332. },
  43333. ]
  43334. ))
  43335. characterMakers.push(() => makeCharacter(
  43336. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43337. {
  43338. side: {
  43339. height: math.unit(10, "feet"),
  43340. weight: math.unit(4500, "lb"),
  43341. name: "Side",
  43342. image: {
  43343. source: "./media/characters/ackart/side.svg",
  43344. extra: 1776/1668,
  43345. bottom: 116/1892
  43346. }
  43347. },
  43348. },
  43349. [
  43350. {
  43351. name: "Normal",
  43352. height: math.unit(10, "feet"),
  43353. default: true
  43354. },
  43355. ]
  43356. ))
  43357. characterMakers.push(() => makeCharacter(
  43358. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43359. {
  43360. side: {
  43361. height: math.unit(21, "feet"),
  43362. name: "Side",
  43363. image: {
  43364. source: "./media/characters/nolow/side.svg",
  43365. extra: 1484/1434,
  43366. bottom: 85/1569
  43367. }
  43368. },
  43369. sideErect: {
  43370. height: math.unit(21, "feet"),
  43371. name: "Side-erect",
  43372. image: {
  43373. source: "./media/characters/nolow/side-erect.svg",
  43374. extra: 1484/1434,
  43375. bottom: 85/1569
  43376. }
  43377. },
  43378. },
  43379. [
  43380. {
  43381. name: "Regular",
  43382. height: math.unit(12, "feet")
  43383. },
  43384. {
  43385. name: "Big Chee",
  43386. height: math.unit(21, "feet"),
  43387. default: true
  43388. },
  43389. ]
  43390. ))
  43391. characterMakers.push(() => makeCharacter(
  43392. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43393. {
  43394. front: {
  43395. height: math.unit(7, "feet"),
  43396. weight: math.unit(250, "lb"),
  43397. name: "Front",
  43398. image: {
  43399. source: "./media/characters/nines/front.svg",
  43400. extra: 1741/1607,
  43401. bottom: 41/1782
  43402. }
  43403. },
  43404. side: {
  43405. height: math.unit(7, "feet"),
  43406. weight: math.unit(250, "lb"),
  43407. name: "Side",
  43408. image: {
  43409. source: "./media/characters/nines/side.svg",
  43410. extra: 1854/1735,
  43411. bottom: 93/1947
  43412. }
  43413. },
  43414. back: {
  43415. height: math.unit(7, "feet"),
  43416. weight: math.unit(250, "lb"),
  43417. name: "Back",
  43418. image: {
  43419. source: "./media/characters/nines/back.svg",
  43420. extra: 1748/1615,
  43421. bottom: 20/1768
  43422. }
  43423. },
  43424. },
  43425. [
  43426. {
  43427. name: "Megamacro",
  43428. height: math.unit(99, "km"),
  43429. default: true
  43430. },
  43431. ]
  43432. ))
  43433. characterMakers.push(() => makeCharacter(
  43434. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43435. {
  43436. front: {
  43437. height: math.unit(5 + 10/12, "feet"),
  43438. weight: math.unit(210, "lb"),
  43439. name: "Front",
  43440. image: {
  43441. source: "./media/characters/zenith/front.svg",
  43442. extra: 1531/1452,
  43443. bottom: 198/1729
  43444. }
  43445. },
  43446. back: {
  43447. height: math.unit(5 + 10/12, "feet"),
  43448. weight: math.unit(210, "lb"),
  43449. name: "Back",
  43450. image: {
  43451. source: "./media/characters/zenith/back.svg",
  43452. extra: 1571/1487,
  43453. bottom: 75/1646
  43454. }
  43455. },
  43456. },
  43457. [
  43458. {
  43459. name: "Normal",
  43460. height: math.unit(5 + 10/12, "feet"),
  43461. default: true
  43462. }
  43463. ]
  43464. ))
  43465. characterMakers.push(() => makeCharacter(
  43466. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43467. {
  43468. front: {
  43469. height: math.unit(4, "feet"),
  43470. weight: math.unit(60, "lb"),
  43471. name: "Front",
  43472. image: {
  43473. source: "./media/characters/jasper/front.svg",
  43474. extra: 1450/1379,
  43475. bottom: 19/1469
  43476. }
  43477. },
  43478. },
  43479. [
  43480. {
  43481. name: "Normal",
  43482. height: math.unit(4, "feet"),
  43483. default: true
  43484. },
  43485. ]
  43486. ))
  43487. characterMakers.push(() => makeCharacter(
  43488. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43489. {
  43490. front: {
  43491. height: math.unit(6 + 5/12, "feet"),
  43492. weight: math.unit(290, "lb"),
  43493. name: "Front",
  43494. image: {
  43495. source: "./media/characters/tiberius-thyben/front.svg",
  43496. extra: 757/739,
  43497. bottom: 39/796
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Micro",
  43504. height: math.unit(1.5, "inches")
  43505. },
  43506. {
  43507. name: "Normal",
  43508. height: math.unit(6 + 5/12, "feet"),
  43509. default: true
  43510. },
  43511. {
  43512. name: "Macro",
  43513. height: math.unit(300, "feet")
  43514. },
  43515. ]
  43516. ))
  43517. characterMakers.push(() => makeCharacter(
  43518. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43519. {
  43520. front: {
  43521. height: math.unit(5 + 6/12, "feet"),
  43522. weight: math.unit(60, "kg"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/sabre/front.svg",
  43526. extra: 738/671,
  43527. bottom: 27/765
  43528. }
  43529. },
  43530. },
  43531. [
  43532. {
  43533. name: "Teeny",
  43534. height: math.unit(2, "inches")
  43535. },
  43536. {
  43537. name: "Smol",
  43538. height: math.unit(8, "inches")
  43539. },
  43540. {
  43541. name: "Normal",
  43542. height: math.unit(5 + 6/12, "feet"),
  43543. default: true
  43544. },
  43545. {
  43546. name: "Mini-Macro",
  43547. height: math.unit(15, "feet")
  43548. },
  43549. {
  43550. name: "Macro",
  43551. height: math.unit(50, "feet")
  43552. },
  43553. ]
  43554. ))
  43555. characterMakers.push(() => makeCharacter(
  43556. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43557. {
  43558. front: {
  43559. height: math.unit(6 + 4/12, "feet"),
  43560. weight: math.unit(170, "lb"),
  43561. name: "Front",
  43562. image: {
  43563. source: "./media/characters/charlie/front.svg",
  43564. extra: 1348/1228,
  43565. bottom: 15/1363
  43566. }
  43567. },
  43568. },
  43569. [
  43570. {
  43571. name: "Macro",
  43572. height: math.unit(1700, "meters"),
  43573. default: true
  43574. },
  43575. {
  43576. name: "MegaMacro",
  43577. height: math.unit(20400, "meters")
  43578. },
  43579. ]
  43580. ))
  43581. characterMakers.push(() => makeCharacter(
  43582. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43583. {
  43584. front: {
  43585. height: math.unit(6 + 3/12, "feet"),
  43586. weight: math.unit(185, "lb"),
  43587. name: "Front",
  43588. image: {
  43589. source: "./media/characters/susan-grant/front.svg",
  43590. extra: 1351/1327,
  43591. bottom: 26/1377
  43592. }
  43593. },
  43594. },
  43595. [
  43596. {
  43597. name: "Normal",
  43598. height: math.unit(6 + 3/12, "feet"),
  43599. default: true
  43600. },
  43601. {
  43602. name: "Macro",
  43603. height: math.unit(225, "feet")
  43604. },
  43605. {
  43606. name: "Macro+",
  43607. height: math.unit(900, "feet")
  43608. },
  43609. {
  43610. name: "MegaMacro",
  43611. height: math.unit(14400, "feet")
  43612. },
  43613. ]
  43614. ))
  43615. characterMakers.push(() => makeCharacter(
  43616. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43617. {
  43618. front: {
  43619. height: math.unit(5 + 4/12, "feet"),
  43620. weight: math.unit(110, "lb"),
  43621. name: "Front",
  43622. image: {
  43623. source: "./media/characters/axel-isanov/front.svg",
  43624. extra: 1096/1065,
  43625. bottom: 13/1109
  43626. }
  43627. },
  43628. },
  43629. [
  43630. {
  43631. name: "Normal",
  43632. height: math.unit(5 + 4/12, "feet"),
  43633. default: true
  43634. },
  43635. ]
  43636. ))
  43637. characterMakers.push(() => makeCharacter(
  43638. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43639. {
  43640. front: {
  43641. height: math.unit(9, "feet"),
  43642. weight: math.unit(467, "lb"),
  43643. name: "Front",
  43644. image: {
  43645. source: "./media/characters/necahual/front.svg",
  43646. extra: 920/873,
  43647. bottom: 26/946
  43648. }
  43649. },
  43650. back: {
  43651. height: math.unit(9, "feet"),
  43652. weight: math.unit(467, "lb"),
  43653. name: "Back",
  43654. image: {
  43655. source: "./media/characters/necahual/back.svg",
  43656. extra: 930/884,
  43657. bottom: 16/946
  43658. }
  43659. },
  43660. frontUnderwear: {
  43661. height: math.unit(9, "feet"),
  43662. weight: math.unit(467, "lb"),
  43663. name: "Front (Underwear)",
  43664. image: {
  43665. source: "./media/characters/necahual/front-underwear.svg",
  43666. extra: 920/873,
  43667. bottom: 26/946
  43668. }
  43669. },
  43670. frontDressed: {
  43671. height: math.unit(9, "feet"),
  43672. weight: math.unit(467, "lb"),
  43673. name: "Front (Dressed)",
  43674. image: {
  43675. source: "./media/characters/necahual/front-dressed.svg",
  43676. extra: 920/873,
  43677. bottom: 26/946
  43678. }
  43679. },
  43680. },
  43681. [
  43682. {
  43683. name: "Comprsesed",
  43684. height: math.unit(9, "feet")
  43685. },
  43686. {
  43687. name: "Natural",
  43688. height: math.unit(15, "feet"),
  43689. default: true
  43690. },
  43691. {
  43692. name: "Boosted",
  43693. height: math.unit(50, "feet")
  43694. },
  43695. {
  43696. name: "Boosted+",
  43697. height: math.unit(150, "feet")
  43698. },
  43699. {
  43700. name: "Max",
  43701. height: math.unit(500, "feet")
  43702. },
  43703. ]
  43704. ))
  43705. characterMakers.push(() => makeCharacter(
  43706. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43707. {
  43708. front: {
  43709. height: math.unit(22 + 1/12, "feet"),
  43710. weight: math.unit(3200, "lb"),
  43711. name: "Front",
  43712. image: {
  43713. source: "./media/characters/theo-acacia/front.svg",
  43714. extra: 1796/1741,
  43715. bottom: 83/1879
  43716. }
  43717. },
  43718. frontUnderwear: {
  43719. height: math.unit(22 + 1/12, "feet"),
  43720. weight: math.unit(3200, "lb"),
  43721. name: "Front (Underwear)",
  43722. image: {
  43723. source: "./media/characters/theo-acacia/front-underwear.svg",
  43724. extra: 1796/1741,
  43725. bottom: 83/1879
  43726. }
  43727. },
  43728. frontNude: {
  43729. height: math.unit(22 + 1/12, "feet"),
  43730. weight: math.unit(3200, "lb"),
  43731. name: "Front (Nude)",
  43732. image: {
  43733. source: "./media/characters/theo-acacia/front-nude.svg",
  43734. extra: 1796/1741,
  43735. bottom: 83/1879
  43736. }
  43737. },
  43738. },
  43739. [
  43740. {
  43741. name: "Normal",
  43742. height: math.unit(22 + 1/12, "feet"),
  43743. default: true
  43744. },
  43745. ]
  43746. ))
  43747. characterMakers.push(() => makeCharacter(
  43748. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43749. {
  43750. front: {
  43751. height: math.unit(20, "feet"),
  43752. name: "Front",
  43753. image: {
  43754. source: "./media/characters/astra/front.svg",
  43755. extra: 1850/1714,
  43756. bottom: 106/1956
  43757. }
  43758. },
  43759. frontUndressed: {
  43760. height: math.unit(20, "feet"),
  43761. name: "Front (Undressed)",
  43762. image: {
  43763. source: "./media/characters/astra/front-undressed.svg",
  43764. extra: 1926/1749,
  43765. bottom: 0/1926
  43766. }
  43767. },
  43768. hand: {
  43769. height: math.unit(1.53, "feet"),
  43770. name: "Hand",
  43771. image: {
  43772. source: "./media/characters/astra/hand.svg"
  43773. }
  43774. },
  43775. paw: {
  43776. height: math.unit(1.53, "feet"),
  43777. name: "Paw",
  43778. image: {
  43779. source: "./media/characters/astra/paw.svg"
  43780. }
  43781. },
  43782. },
  43783. [
  43784. {
  43785. name: "Smallest",
  43786. height: math.unit(20, "feet")
  43787. },
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(1e9, "miles"),
  43791. default: true
  43792. },
  43793. {
  43794. name: "Larger",
  43795. height: math.unit(5, "multiverses")
  43796. },
  43797. {
  43798. name: "Largest",
  43799. height: math.unit(1e9, "multiverses")
  43800. },
  43801. ]
  43802. ))
  43803. characterMakers.push(() => makeCharacter(
  43804. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43805. {
  43806. front: {
  43807. height: math.unit(8, "feet"),
  43808. name: "Front",
  43809. image: {
  43810. source: "./media/characters/breanna/front.svg",
  43811. extra: 1912/1632,
  43812. bottom: 33/1945
  43813. }
  43814. },
  43815. },
  43816. [
  43817. {
  43818. name: "Smallest",
  43819. height: math.unit(8, "feet")
  43820. },
  43821. {
  43822. name: "Normal",
  43823. height: math.unit(1, "mile"),
  43824. default: true
  43825. },
  43826. {
  43827. name: "Maximum",
  43828. height: math.unit(1500000000000, "lightyears")
  43829. },
  43830. ]
  43831. ))
  43832. characterMakers.push(() => makeCharacter(
  43833. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43834. {
  43835. front: {
  43836. height: math.unit(5 + 11/12, "feet"),
  43837. weight: math.unit(155, "lb"),
  43838. name: "Front",
  43839. image: {
  43840. source: "./media/characters/cai/front.svg",
  43841. extra: 1823/1702,
  43842. bottom: 32/1855
  43843. }
  43844. },
  43845. back: {
  43846. height: math.unit(5 + 11/12, "feet"),
  43847. weight: math.unit(155, "lb"),
  43848. name: "Back",
  43849. image: {
  43850. source: "./media/characters/cai/back.svg",
  43851. extra: 1809/1708,
  43852. bottom: 31/1840
  43853. }
  43854. },
  43855. },
  43856. [
  43857. {
  43858. name: "Normal",
  43859. height: math.unit(5 + 11/12, "feet"),
  43860. default: true
  43861. },
  43862. {
  43863. name: "Big",
  43864. height: math.unit(15, "feet")
  43865. },
  43866. {
  43867. name: "Macro",
  43868. height: math.unit(200, "feet")
  43869. },
  43870. ]
  43871. ))
  43872. characterMakers.push(() => makeCharacter(
  43873. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43874. {
  43875. front: {
  43876. height: math.unit(5 + 6/12, "feet"),
  43877. weight: math.unit(160, "lb"),
  43878. name: "Front",
  43879. image: {
  43880. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43881. extra: 1227/1174,
  43882. bottom: 37/1264
  43883. }
  43884. },
  43885. },
  43886. [
  43887. {
  43888. name: "Macro",
  43889. height: math.unit(444, "meters"),
  43890. default: true
  43891. },
  43892. ]
  43893. ))
  43894. characterMakers.push(() => makeCharacter(
  43895. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43896. {
  43897. front: {
  43898. height: math.unit(18 + 7/12, "feet"),
  43899. name: "Front",
  43900. image: {
  43901. source: "./media/characters/rex/front.svg",
  43902. extra: 1941/1807,
  43903. bottom: 66/2007
  43904. }
  43905. },
  43906. back: {
  43907. height: math.unit(18 + 7/12, "feet"),
  43908. name: "Back",
  43909. image: {
  43910. source: "./media/characters/rex/back.svg",
  43911. extra: 1937/1822,
  43912. bottom: 42/1979
  43913. }
  43914. },
  43915. boot: {
  43916. height: math.unit(3.45, "feet"),
  43917. name: "Boot",
  43918. image: {
  43919. source: "./media/characters/rex/boot.svg"
  43920. }
  43921. },
  43922. paw: {
  43923. height: math.unit(4.17, "feet"),
  43924. name: "Paw",
  43925. image: {
  43926. source: "./media/characters/rex/paw.svg"
  43927. }
  43928. },
  43929. head: {
  43930. height: math.unit(6.728, "feet"),
  43931. name: "Head",
  43932. image: {
  43933. source: "./media/characters/rex/head.svg"
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Nano",
  43940. height: math.unit(18 + 7/12, "feet")
  43941. },
  43942. {
  43943. name: "Micro",
  43944. height: math.unit(1.5, "megameters")
  43945. },
  43946. {
  43947. name: "Normal",
  43948. height: math.unit(440, "megameters"),
  43949. default: true
  43950. },
  43951. {
  43952. name: "Macro",
  43953. height: math.unit(2.5, "gigameters")
  43954. },
  43955. {
  43956. name: "Gigamacro",
  43957. height: math.unit(2, "galaxies")
  43958. },
  43959. ]
  43960. ))
  43961. characterMakers.push(() => makeCharacter(
  43962. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43963. {
  43964. side: {
  43965. height: math.unit(32, "feet"),
  43966. weight: math.unit(250000, "lb"),
  43967. name: "Side",
  43968. image: {
  43969. source: "./media/characters/silverwing/side.svg",
  43970. extra: 1100/1019,
  43971. bottom: 204/1304
  43972. }
  43973. },
  43974. },
  43975. [
  43976. {
  43977. name: "Normal",
  43978. height: math.unit(32, "feet"),
  43979. default: true
  43980. },
  43981. ]
  43982. ))
  43983. characterMakers.push(() => makeCharacter(
  43984. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43985. {
  43986. front: {
  43987. height: math.unit(6 + 6/12, "feet"),
  43988. weight: math.unit(350, "lb"),
  43989. name: "Front",
  43990. image: {
  43991. source: "./media/characters/tristan-hawthorne/front.svg",
  43992. extra: 1159/1124,
  43993. bottom: 37/1196
  43994. },
  43995. form: "labrador",
  43996. default: true
  43997. },
  43998. skunkFront: {
  43999. height: math.unit(4 + 6/12, "feet"),
  44000. weight: math.unit(120, "lb"),
  44001. name: "Front",
  44002. image: {
  44003. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44004. extra: 1609/1551,
  44005. bottom: 169/1778
  44006. },
  44007. form: "skunk",
  44008. default: true
  44009. },
  44010. },
  44011. [
  44012. {
  44013. name: "Normal",
  44014. height: math.unit(6 + 6/12, "feet"),
  44015. form: "labrador",
  44016. default: true
  44017. },
  44018. {
  44019. name: "Normal",
  44020. height: math.unit(4 + 6/12, "feet"),
  44021. form: "skunk",
  44022. default: true
  44023. },
  44024. ],
  44025. {
  44026. "labrador": {
  44027. name: "Labrador",
  44028. default: true
  44029. },
  44030. "skunk": {
  44031. name: "Skunk"
  44032. }
  44033. }
  44034. ))
  44035. characterMakers.push(() => makeCharacter(
  44036. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44037. {
  44038. front: {
  44039. height: math.unit(5 + 11/12, "feet"),
  44040. weight: math.unit(190, "lb"),
  44041. name: "Front",
  44042. image: {
  44043. source: "./media/characters/mizu/front.svg",
  44044. extra: 1988/1788,
  44045. bottom: 14/2002
  44046. }
  44047. },
  44048. },
  44049. [
  44050. {
  44051. name: "Normal",
  44052. height: math.unit(5 + 11/12, "feet"),
  44053. default: true
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44059. {
  44060. front: {
  44061. height: math.unit(1.7, "feet"),
  44062. weight: math.unit(50, "lb"),
  44063. name: "Front",
  44064. image: {
  44065. source: "./media/characters/dechroma/front.svg",
  44066. extra: 1095/859,
  44067. bottom: 64/1159
  44068. }
  44069. },
  44070. },
  44071. [
  44072. {
  44073. name: "Normal",
  44074. height: math.unit(1.7, "feet"),
  44075. default: true
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44081. {
  44082. side: {
  44083. height: math.unit(30, "feet"),
  44084. name: "Side",
  44085. image: {
  44086. source: "./media/characters/veluren-thanazel/side.svg",
  44087. extra: 1611/633,
  44088. bottom: 118/1729
  44089. }
  44090. },
  44091. front: {
  44092. height: math.unit(30, "feet"),
  44093. name: "Front",
  44094. image: {
  44095. source: "./media/characters/veluren-thanazel/front.svg",
  44096. extra: 1486/636,
  44097. bottom: 238/1724
  44098. }
  44099. },
  44100. head: {
  44101. height: math.unit(21.4, "feet"),
  44102. name: "Head",
  44103. image: {
  44104. source: "./media/characters/veluren-thanazel/head.svg"
  44105. }
  44106. },
  44107. genitals: {
  44108. height: math.unit(19.4, "feet"),
  44109. name: "Genitals",
  44110. image: {
  44111. source: "./media/characters/veluren-thanazel/genitals.svg"
  44112. }
  44113. },
  44114. },
  44115. [
  44116. {
  44117. name: "Social",
  44118. height: math.unit(6, "feet")
  44119. },
  44120. {
  44121. name: "Play",
  44122. height: math.unit(12, "feet")
  44123. },
  44124. {
  44125. name: "True",
  44126. height: math.unit(30, "feet"),
  44127. default: true
  44128. },
  44129. ]
  44130. ))
  44131. characterMakers.push(() => makeCharacter(
  44132. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44133. {
  44134. front: {
  44135. height: math.unit(7 + 6/12, "feet"),
  44136. weight: math.unit(500, "kg"),
  44137. name: "Front",
  44138. image: {
  44139. source: "./media/characters/arcturas/front.svg",
  44140. extra: 1700/1500,
  44141. bottom: 145/1845
  44142. }
  44143. },
  44144. },
  44145. [
  44146. {
  44147. name: "Normal",
  44148. height: math.unit(7 + 6/12, "feet"),
  44149. default: true
  44150. },
  44151. ]
  44152. ))
  44153. characterMakers.push(() => makeCharacter(
  44154. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44155. {
  44156. side: {
  44157. height: math.unit(6, "feet"),
  44158. weight: math.unit(2, "tons"),
  44159. name: "Side",
  44160. image: {
  44161. source: "./media/characters/vitaen/side.svg",
  44162. extra: 1157/617,
  44163. bottom: 122/1279
  44164. }
  44165. },
  44166. },
  44167. [
  44168. {
  44169. name: "Normal",
  44170. height: math.unit(6, "feet"),
  44171. default: true
  44172. },
  44173. ]
  44174. ))
  44175. characterMakers.push(() => makeCharacter(
  44176. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44177. {
  44178. front: {
  44179. height: math.unit(19, "feet"),
  44180. name: "Front",
  44181. image: {
  44182. source: "./media/characters/fia-dreamweaver/front.svg",
  44183. extra: 1630/1504,
  44184. bottom: 25/1655
  44185. }
  44186. },
  44187. },
  44188. [
  44189. {
  44190. name: "Normal",
  44191. height: math.unit(19, "feet"),
  44192. default: true
  44193. },
  44194. ]
  44195. ))
  44196. characterMakers.push(() => makeCharacter(
  44197. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44198. {
  44199. front: {
  44200. height: math.unit(5 + 4/12, "feet"),
  44201. name: "Front",
  44202. image: {
  44203. source: "./media/characters/artan/front.svg",
  44204. extra: 1618/1535,
  44205. bottom: 46/1664
  44206. }
  44207. },
  44208. back: {
  44209. height: math.unit(5 + 4/12, "feet"),
  44210. name: "Back",
  44211. image: {
  44212. source: "./media/characters/artan/back.svg",
  44213. extra: 1618/1543,
  44214. bottom: 31/1649
  44215. }
  44216. },
  44217. },
  44218. [
  44219. {
  44220. name: "Normal",
  44221. height: math.unit(5 + 4/12, "feet"),
  44222. default: true
  44223. },
  44224. ]
  44225. ))
  44226. characterMakers.push(() => makeCharacter(
  44227. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44228. {
  44229. side: {
  44230. height: math.unit(182, "cm"),
  44231. weight: math.unit(1000, "lb"),
  44232. name: "Side",
  44233. image: {
  44234. source: "./media/characters/silver-dragon/side.svg",
  44235. extra: 710/287,
  44236. bottom: 88/798
  44237. }
  44238. },
  44239. },
  44240. [
  44241. {
  44242. name: "Normal",
  44243. height: math.unit(182, "cm"),
  44244. default: true
  44245. },
  44246. ]
  44247. ))
  44248. characterMakers.push(() => makeCharacter(
  44249. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44250. {
  44251. side: {
  44252. height: math.unit(6 + 6/12, "feet"),
  44253. weight: math.unit(1.5, "tons"),
  44254. name: "Side",
  44255. image: {
  44256. source: "./media/characters/zephyr/side.svg",
  44257. extra: 1433/586,
  44258. bottom: 109/1542
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Normal",
  44265. height: math.unit(6 + 6/12, "feet"),
  44266. default: true
  44267. },
  44268. ]
  44269. ))
  44270. characterMakers.push(() => makeCharacter(
  44271. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44272. {
  44273. side: {
  44274. height: math.unit(1, "feet"),
  44275. name: "Side",
  44276. image: {
  44277. source: "./media/characters/vixye/side.svg",
  44278. extra: 632/541,
  44279. bottom: 0/632
  44280. }
  44281. },
  44282. },
  44283. [
  44284. {
  44285. name: "Normal",
  44286. height: math.unit(1, "feet"),
  44287. default: true
  44288. },
  44289. {
  44290. name: "True",
  44291. height: math.unit(1e15, "multiverses")
  44292. },
  44293. ]
  44294. ))
  44295. characterMakers.push(() => makeCharacter(
  44296. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44297. {
  44298. front: {
  44299. height: math.unit(8 + 2/12, "feet"),
  44300. weight: math.unit(650, "lb"),
  44301. name: "Front",
  44302. image: {
  44303. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44304. extra: 1174/1137,
  44305. bottom: 82/1256
  44306. }
  44307. },
  44308. back: {
  44309. height: math.unit(8 + 2/12, "feet"),
  44310. weight: math.unit(650, "lb"),
  44311. name: "Back",
  44312. image: {
  44313. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44314. extra: 1204/1157,
  44315. bottom: 46/1250
  44316. }
  44317. },
  44318. },
  44319. [
  44320. {
  44321. name: "Wildform",
  44322. height: math.unit(8 + 2/12, "feet"),
  44323. default: true
  44324. },
  44325. ]
  44326. ))
  44327. characterMakers.push(() => makeCharacter(
  44328. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44329. {
  44330. front: {
  44331. height: math.unit(18, "feet"),
  44332. name: "Front",
  44333. image: {
  44334. source: "./media/characters/cyphin/front.svg",
  44335. extra: 970/886,
  44336. bottom: 42/1012
  44337. }
  44338. },
  44339. back: {
  44340. height: math.unit(18, "feet"),
  44341. name: "Back",
  44342. image: {
  44343. source: "./media/characters/cyphin/back.svg",
  44344. extra: 1009/894,
  44345. bottom: 24/1033
  44346. }
  44347. },
  44348. head: {
  44349. height: math.unit(5.05, "feet"),
  44350. name: "Head",
  44351. image: {
  44352. source: "./media/characters/cyphin/head.svg"
  44353. }
  44354. },
  44355. tailbud: {
  44356. height: math.unit(5, "feet"),
  44357. name: "Tailbud",
  44358. image: {
  44359. source: "./media/characters/cyphin/tailbud.svg"
  44360. }
  44361. },
  44362. },
  44363. [
  44364. ]
  44365. ))
  44366. characterMakers.push(() => makeCharacter(
  44367. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44368. {
  44369. side: {
  44370. height: math.unit(10, "feet"),
  44371. weight: math.unit(6, "tons"),
  44372. name: "Side",
  44373. image: {
  44374. source: "./media/characters/raijin/side.svg",
  44375. extra: 1529/613,
  44376. bottom: 337/1866
  44377. }
  44378. },
  44379. },
  44380. [
  44381. {
  44382. name: "Normal",
  44383. height: math.unit(10, "feet"),
  44384. default: true
  44385. },
  44386. ]
  44387. ))
  44388. characterMakers.push(() => makeCharacter(
  44389. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44390. {
  44391. side: {
  44392. height: math.unit(9, "feet"),
  44393. name: "Side",
  44394. image: {
  44395. source: "./media/characters/nilghais/side.svg",
  44396. extra: 1047/744,
  44397. bottom: 91/1138
  44398. }
  44399. },
  44400. head: {
  44401. height: math.unit(3.14, "feet"),
  44402. name: "Head",
  44403. image: {
  44404. source: "./media/characters/nilghais/head.svg"
  44405. }
  44406. },
  44407. mouth: {
  44408. height: math.unit(4.6, "feet"),
  44409. name: "Mouth",
  44410. image: {
  44411. source: "./media/characters/nilghais/mouth.svg"
  44412. }
  44413. },
  44414. wings: {
  44415. height: math.unit(24, "feet"),
  44416. name: "Wings",
  44417. image: {
  44418. source: "./media/characters/nilghais/wings.svg"
  44419. }
  44420. },
  44421. ass: {
  44422. height: math.unit(6.12, "feet"),
  44423. name: "Ass",
  44424. image: {
  44425. source: "./media/characters/nilghais/ass.svg"
  44426. }
  44427. },
  44428. },
  44429. [
  44430. {
  44431. name: "Normal",
  44432. height: math.unit(9, "feet"),
  44433. default: true
  44434. },
  44435. ]
  44436. ))
  44437. characterMakers.push(() => makeCharacter(
  44438. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44439. {
  44440. regular: {
  44441. height: math.unit(16 + 2/12, "feet"),
  44442. weight: math.unit(2300, "lb"),
  44443. name: "Regular",
  44444. image: {
  44445. source: "./media/characters/zolgar/regular.svg",
  44446. extra: 1246/1004,
  44447. bottom: 124/1370
  44448. }
  44449. },
  44450. boxers: {
  44451. height: math.unit(16 + 2/12, "feet"),
  44452. weight: math.unit(2300, "lb"),
  44453. name: "Boxers",
  44454. image: {
  44455. source: "./media/characters/zolgar/boxers.svg",
  44456. extra: 1246/1004,
  44457. bottom: 124/1370
  44458. }
  44459. },
  44460. armored: {
  44461. height: math.unit(16 + 2/12, "feet"),
  44462. weight: math.unit(2300, "lb"),
  44463. name: "Armored",
  44464. image: {
  44465. source: "./media/characters/zolgar/armored.svg",
  44466. extra: 1246/1004,
  44467. bottom: 124/1370
  44468. }
  44469. },
  44470. goth: {
  44471. height: math.unit(16 + 2/12, "feet"),
  44472. weight: math.unit(2300, "lb"),
  44473. name: "Goth",
  44474. image: {
  44475. source: "./media/characters/zolgar/goth.svg",
  44476. extra: 1246/1004,
  44477. bottom: 124/1370
  44478. }
  44479. },
  44480. },
  44481. [
  44482. {
  44483. name: "Shrunken Down",
  44484. height: math.unit(9 + 2/12, "feet")
  44485. },
  44486. {
  44487. name: "Normal",
  44488. height: math.unit(16 + 2/12, "feet"),
  44489. default: true
  44490. },
  44491. ]
  44492. ))
  44493. characterMakers.push(() => makeCharacter(
  44494. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44495. {
  44496. front: {
  44497. height: math.unit(6, "feet"),
  44498. weight: math.unit(168, "lb"),
  44499. name: "Front",
  44500. image: {
  44501. source: "./media/characters/luca/front.svg",
  44502. extra: 841/667,
  44503. bottom: 102/943
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Normal",
  44510. height: math.unit(6, "feet"),
  44511. default: true
  44512. },
  44513. ]
  44514. ))
  44515. characterMakers.push(() => makeCharacter(
  44516. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44517. {
  44518. side: {
  44519. height: math.unit(7 + 3/12, "feet"),
  44520. weight: math.unit(312, "lb"),
  44521. name: "Side",
  44522. image: {
  44523. source: "./media/characters/zezo/side.svg",
  44524. extra: 1192/1067,
  44525. bottom: 63/1255
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Normal",
  44532. height: math.unit(7 + 3/12, "feet"),
  44533. default: true
  44534. },
  44535. ]
  44536. ))
  44537. characterMakers.push(() => makeCharacter(
  44538. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44539. {
  44540. front: {
  44541. height: math.unit(5 + 5/12, "feet"),
  44542. weight: math.unit(170, "lb"),
  44543. name: "Front",
  44544. image: {
  44545. source: "./media/characters/mayso/front.svg",
  44546. extra: 1215/1108,
  44547. bottom: 16/1231
  44548. }
  44549. },
  44550. },
  44551. [
  44552. {
  44553. name: "Normal",
  44554. height: math.unit(5 + 5/12, "feet"),
  44555. default: true
  44556. },
  44557. ]
  44558. ))
  44559. characterMakers.push(() => makeCharacter(
  44560. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44561. {
  44562. front: {
  44563. height: math.unit(4 + 3/12, "feet"),
  44564. weight: math.unit(80, "lb"),
  44565. name: "Front",
  44566. image: {
  44567. source: "./media/characters/hess/front.svg",
  44568. extra: 1200/1123,
  44569. bottom: 16/1216
  44570. }
  44571. },
  44572. },
  44573. [
  44574. {
  44575. name: "Normal",
  44576. height: math.unit(4 + 3/12, "feet"),
  44577. default: true
  44578. },
  44579. ]
  44580. ))
  44581. characterMakers.push(() => makeCharacter(
  44582. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44583. {
  44584. front: {
  44585. height: math.unit(1.9, "meters"),
  44586. name: "Front",
  44587. image: {
  44588. source: "./media/characters/ashgar/front.svg",
  44589. extra: 1177/1146,
  44590. bottom: 99/1276
  44591. }
  44592. },
  44593. back: {
  44594. height: math.unit(1.9, "meters"),
  44595. name: "Back",
  44596. image: {
  44597. source: "./media/characters/ashgar/back.svg",
  44598. extra: 1201/1183,
  44599. bottom: 53/1254
  44600. }
  44601. },
  44602. feral: {
  44603. height: math.unit(1.4, "meters"),
  44604. name: "Feral",
  44605. image: {
  44606. source: "./media/characters/ashgar/feral.svg",
  44607. extra: 370/345,
  44608. bottom: 45/415
  44609. }
  44610. },
  44611. },
  44612. [
  44613. {
  44614. name: "Normal",
  44615. height: math.unit(1.9, "meters"),
  44616. default: true
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44622. {
  44623. regular: {
  44624. height: math.unit(6, "feet"),
  44625. weight: math.unit(220, "lb"),
  44626. name: "Regular",
  44627. image: {
  44628. source: "./media/characters/phillip/regular.svg",
  44629. extra: 1373/1277,
  44630. bottom: 75/1448
  44631. }
  44632. },
  44633. dressed: {
  44634. height: math.unit(6, "feet"),
  44635. weight: math.unit(220, "lb"),
  44636. name: "Dressed",
  44637. image: {
  44638. source: "./media/characters/phillip/dressed.svg",
  44639. extra: 1373/1277,
  44640. bottom: 75/1448
  44641. }
  44642. },
  44643. paw: {
  44644. height: math.unit(1.44, "feet"),
  44645. name: "Paw",
  44646. image: {
  44647. source: "./media/characters/phillip/paw.svg"
  44648. }
  44649. },
  44650. },
  44651. [
  44652. {
  44653. name: "Normal",
  44654. height: math.unit(6, "feet"),
  44655. default: true
  44656. },
  44657. ]
  44658. ))
  44659. characterMakers.push(() => makeCharacter(
  44660. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44661. {
  44662. side: {
  44663. height: math.unit(42, "feet"),
  44664. name: "Side",
  44665. image: {
  44666. source: "./media/characters/uvula/side.svg",
  44667. extra: 683/586,
  44668. bottom: 60/743
  44669. }
  44670. },
  44671. front: {
  44672. height: math.unit(42, "feet"),
  44673. name: "Front",
  44674. image: {
  44675. source: "./media/characters/uvula/front.svg",
  44676. extra: 705/613,
  44677. bottom: 54/759
  44678. }
  44679. },
  44680. maw: {
  44681. height: math.unit(23.5, "feet"),
  44682. name: "Maw",
  44683. image: {
  44684. source: "./media/characters/uvula/maw.svg"
  44685. }
  44686. },
  44687. },
  44688. [
  44689. {
  44690. name: "Original Size",
  44691. height: math.unit(14, "inches")
  44692. },
  44693. {
  44694. name: "Human Size",
  44695. height: math.unit(6, "feet")
  44696. },
  44697. {
  44698. name: "Big",
  44699. height: math.unit(42, "feet"),
  44700. default: true
  44701. },
  44702. {
  44703. name: "Bigger",
  44704. height: math.unit(100, "feet")
  44705. },
  44706. ]
  44707. ))
  44708. characterMakers.push(() => makeCharacter(
  44709. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44710. {
  44711. front: {
  44712. height: math.unit(5 + 11/12, "feet"),
  44713. name: "Front",
  44714. image: {
  44715. source: "./media/characters/lannah/front.svg",
  44716. extra: 1208/1113,
  44717. bottom: 97/1305
  44718. }
  44719. },
  44720. },
  44721. [
  44722. {
  44723. name: "Normal",
  44724. height: math.unit(5 + 11/12, "feet"),
  44725. default: true
  44726. },
  44727. ]
  44728. ))
  44729. characterMakers.push(() => makeCharacter(
  44730. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44731. {
  44732. front: {
  44733. height: math.unit(6 + 3/12, "feet"),
  44734. weight: math.unit(3.5, "tons"),
  44735. name: "Front",
  44736. image: {
  44737. source: "./media/characters/emberflame/front.svg",
  44738. extra: 1198/672,
  44739. bottom: 82/1280
  44740. }
  44741. },
  44742. side: {
  44743. height: math.unit(6 + 3/12, "feet"),
  44744. weight: math.unit(3.5, "tons"),
  44745. name: "Side",
  44746. image: {
  44747. source: "./media/characters/emberflame/side.svg",
  44748. extra: 938/527,
  44749. bottom: 56/994
  44750. }
  44751. },
  44752. },
  44753. [
  44754. {
  44755. name: "Normal",
  44756. height: math.unit(6 + 3/12, "feet"),
  44757. default: true
  44758. },
  44759. ]
  44760. ))
  44761. characterMakers.push(() => makeCharacter(
  44762. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44763. {
  44764. side: {
  44765. height: math.unit(17.5, "feet"),
  44766. weight: math.unit(35, "tons"),
  44767. name: "Side",
  44768. image: {
  44769. source: "./media/characters/sophie-ambrose/side.svg",
  44770. extra: 1573/1242,
  44771. bottom: 71/1644
  44772. }
  44773. },
  44774. maw: {
  44775. height: math.unit(7.4, "feet"),
  44776. name: "Maw",
  44777. image: {
  44778. source: "./media/characters/sophie-ambrose/maw.svg"
  44779. }
  44780. },
  44781. },
  44782. [
  44783. {
  44784. name: "Normal",
  44785. height: math.unit(17.5, "feet"),
  44786. default: true
  44787. },
  44788. ]
  44789. ))
  44790. characterMakers.push(() => makeCharacter(
  44791. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44792. {
  44793. front: {
  44794. height: math.unit(280, "feet"),
  44795. weight: math.unit(550, "tons"),
  44796. name: "Front",
  44797. image: {
  44798. source: "./media/characters/king-mugi/front.svg",
  44799. extra: 1102/947,
  44800. bottom: 104/1206
  44801. }
  44802. },
  44803. },
  44804. [
  44805. {
  44806. name: "King Mugi",
  44807. height: math.unit(280, "feet"),
  44808. default: true
  44809. },
  44810. ]
  44811. ))
  44812. characterMakers.push(() => makeCharacter(
  44813. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44814. {
  44815. front: {
  44816. height: math.unit(64, "meters"),
  44817. name: "Front",
  44818. image: {
  44819. source: "./media/characters/nova-fox/front.svg",
  44820. extra: 1310/1246,
  44821. bottom: 65/1375
  44822. }
  44823. },
  44824. },
  44825. [
  44826. {
  44827. name: "Macro",
  44828. height: math.unit(64, "meters"),
  44829. default: true
  44830. },
  44831. ]
  44832. ))
  44833. characterMakers.push(() => makeCharacter(
  44834. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44835. {
  44836. front: {
  44837. height: math.unit(6 + 3/12, "feet"),
  44838. weight: math.unit(170, "lb"),
  44839. name: "Front",
  44840. image: {
  44841. source: "./media/characters/sam-bat/front.svg",
  44842. extra: 1601/1411,
  44843. bottom: 125/1726
  44844. }
  44845. },
  44846. back: {
  44847. height: math.unit(6 + 3/12, "feet"),
  44848. weight: math.unit(170, "lb"),
  44849. name: "Back",
  44850. image: {
  44851. source: "./media/characters/sam-bat/back.svg",
  44852. extra: 1577/1405,
  44853. bottom: 58/1635
  44854. }
  44855. },
  44856. },
  44857. [
  44858. {
  44859. name: "Normal",
  44860. height: math.unit(6 + 3/12, "feet"),
  44861. default: true
  44862. },
  44863. ]
  44864. ))
  44865. characterMakers.push(() => makeCharacter(
  44866. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44867. {
  44868. front: {
  44869. height: math.unit(59, "feet"),
  44870. weight: math.unit(40000, "lb"),
  44871. name: "Front",
  44872. image: {
  44873. source: "./media/characters/inari/front.svg",
  44874. extra: 1884/1350,
  44875. bottom: 95/1979
  44876. }
  44877. },
  44878. },
  44879. [
  44880. {
  44881. name: "Gigantamax",
  44882. height: math.unit(59, "feet"),
  44883. default: true
  44884. },
  44885. ]
  44886. ))
  44887. characterMakers.push(() => makeCharacter(
  44888. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44889. {
  44890. front: {
  44891. height: math.unit(5 + 8/12, "feet"),
  44892. name: "Front",
  44893. image: {
  44894. source: "./media/characters/elizabeth/front.svg",
  44895. extra: 1395/1298,
  44896. bottom: 54/1449
  44897. }
  44898. },
  44899. mouth: {
  44900. height: math.unit(1.97, "feet"),
  44901. name: "Mouth",
  44902. image: {
  44903. source: "./media/characters/elizabeth/mouth.svg"
  44904. }
  44905. },
  44906. foot: {
  44907. height: math.unit(1.17, "feet"),
  44908. name: "Foot",
  44909. image: {
  44910. source: "./media/characters/elizabeth/foot.svg"
  44911. }
  44912. },
  44913. },
  44914. [
  44915. {
  44916. name: "Normal",
  44917. height: math.unit(5 + 8/12, "feet"),
  44918. default: true
  44919. },
  44920. {
  44921. name: "Minimacro",
  44922. height: math.unit(18, "feet")
  44923. },
  44924. {
  44925. name: "Macro",
  44926. height: math.unit(180, "feet")
  44927. },
  44928. ]
  44929. ))
  44930. characterMakers.push(() => makeCharacter(
  44931. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44932. {
  44933. front: {
  44934. height: math.unit(5 + 2/12, "feet"),
  44935. name: "Front",
  44936. image: {
  44937. source: "./media/characters/october-gossamer/front.svg",
  44938. extra: 505/454,
  44939. bottom: 7/512
  44940. }
  44941. },
  44942. back: {
  44943. height: math.unit(5 + 2/12, "feet"),
  44944. name: "Back",
  44945. image: {
  44946. source: "./media/characters/october-gossamer/back.svg",
  44947. extra: 501/454,
  44948. bottom: 11/512
  44949. }
  44950. },
  44951. },
  44952. [
  44953. {
  44954. name: "Normal",
  44955. height: math.unit(5 + 2/12, "feet"),
  44956. default: true
  44957. },
  44958. ]
  44959. ))
  44960. characterMakers.push(() => makeCharacter(
  44961. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44962. {
  44963. front: {
  44964. height: math.unit(5, "feet"),
  44965. name: "Front",
  44966. image: {
  44967. source: "./media/characters/epiglottis/front.svg",
  44968. extra: 923/849,
  44969. bottom: 17/940
  44970. }
  44971. },
  44972. },
  44973. [
  44974. {
  44975. name: "Original Size",
  44976. height: math.unit(10, "inches")
  44977. },
  44978. {
  44979. name: "Human Size",
  44980. height: math.unit(5, "feet"),
  44981. default: true
  44982. },
  44983. {
  44984. name: "Big",
  44985. height: math.unit(25, "feet")
  44986. },
  44987. {
  44988. name: "Bigger",
  44989. height: math.unit(50, "feet")
  44990. },
  44991. {
  44992. name: "oh lawd",
  44993. height: math.unit(75, "feet")
  44994. },
  44995. ]
  44996. ))
  44997. characterMakers.push(() => makeCharacter(
  44998. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44999. {
  45000. front: {
  45001. height: math.unit(2 + 4/12, "feet"),
  45002. weight: math.unit(60, "lb"),
  45003. name: "Front",
  45004. image: {
  45005. source: "./media/characters/lerm/front.svg",
  45006. extra: 796/790,
  45007. bottom: 79/875
  45008. }
  45009. },
  45010. },
  45011. [
  45012. {
  45013. name: "Normal",
  45014. height: math.unit(2 + 4/12, "feet"),
  45015. default: true
  45016. },
  45017. ]
  45018. ))
  45019. characterMakers.push(() => makeCharacter(
  45020. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45021. {
  45022. front: {
  45023. height: math.unit(5.5, "feet"),
  45024. weight: math.unit(130, "lb"),
  45025. name: "Front",
  45026. image: {
  45027. source: "./media/characters/xena-nebadon/front.svg",
  45028. extra: 1828/1730,
  45029. bottom: 79/1907
  45030. }
  45031. },
  45032. },
  45033. [
  45034. {
  45035. name: "Tiny Puppy",
  45036. height: math.unit(3, "inches")
  45037. },
  45038. {
  45039. name: "Normal",
  45040. height: math.unit(5.5, "feet"),
  45041. default: true
  45042. },
  45043. {
  45044. name: "Lotta Lady",
  45045. height: math.unit(12, "feet")
  45046. },
  45047. {
  45048. name: "Pretty Big",
  45049. height: math.unit(100, "feet")
  45050. },
  45051. {
  45052. name: "Big",
  45053. height: math.unit(500, "feet")
  45054. },
  45055. {
  45056. name: "Skyscraper Toys",
  45057. height: math.unit(2500, "feet")
  45058. },
  45059. {
  45060. name: "Plane Catcher",
  45061. height: math.unit(8, "miles")
  45062. },
  45063. {
  45064. name: "Planet Toys",
  45065. height: math.unit(15, "earths")
  45066. },
  45067. {
  45068. name: "Stardust",
  45069. height: math.unit(0.25, "galaxies")
  45070. },
  45071. {
  45072. name: "Snacks",
  45073. height: math.unit(70, "universes")
  45074. },
  45075. ]
  45076. ))
  45077. characterMakers.push(() => makeCharacter(
  45078. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45079. {
  45080. front: {
  45081. height: math.unit(1.6, "meters"),
  45082. weight: math.unit(60, "kg"),
  45083. name: "Front",
  45084. image: {
  45085. source: "./media/characters/bounty/front.svg",
  45086. extra: 1426/1308,
  45087. bottom: 15/1441
  45088. }
  45089. },
  45090. back: {
  45091. height: math.unit(1.6, "meters"),
  45092. weight: math.unit(60, "kg"),
  45093. name: "Back",
  45094. image: {
  45095. source: "./media/characters/bounty/back.svg",
  45096. extra: 1417/1307,
  45097. bottom: 8/1425
  45098. }
  45099. },
  45100. },
  45101. [
  45102. {
  45103. name: "Normal",
  45104. height: math.unit(1.6, "meters"),
  45105. default: true
  45106. },
  45107. {
  45108. name: "Macro",
  45109. height: math.unit(300, "meters")
  45110. },
  45111. ]
  45112. ))
  45113. characterMakers.push(() => makeCharacter(
  45114. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45115. {
  45116. front: {
  45117. height: math.unit(2 + 8/12, "feet"),
  45118. weight: math.unit(15, "lb"),
  45119. name: "Front",
  45120. image: {
  45121. source: "./media/characters/mochi/front.svg",
  45122. extra: 1022/852,
  45123. bottom: 435/1457
  45124. }
  45125. },
  45126. back: {
  45127. height: math.unit(2 + 8/12, "feet"),
  45128. weight: math.unit(15, "lb"),
  45129. name: "Back",
  45130. image: {
  45131. source: "./media/characters/mochi/back.svg",
  45132. extra: 1335/1119,
  45133. bottom: 39/1374
  45134. }
  45135. },
  45136. bird: {
  45137. height: math.unit(2 + 8/12, "feet"),
  45138. weight: math.unit(15, "lb"),
  45139. name: "Bird",
  45140. image: {
  45141. source: "./media/characters/mochi/bird.svg",
  45142. extra: 1251/1113,
  45143. bottom: 178/1429
  45144. }
  45145. },
  45146. kaiju: {
  45147. height: math.unit(154, "feet"),
  45148. weight: math.unit(1e7, "lb"),
  45149. name: "Kaiju",
  45150. image: {
  45151. source: "./media/characters/mochi/kaiju.svg",
  45152. extra: 460/324,
  45153. bottom: 40/500
  45154. }
  45155. },
  45156. head: {
  45157. height: math.unit(1.21, "feet"),
  45158. name: "Head",
  45159. image: {
  45160. source: "./media/characters/mochi/head.svg"
  45161. }
  45162. },
  45163. alternateTail: {
  45164. height: math.unit(2 + 8/12, "feet"),
  45165. weight: math.unit(45, "lb"),
  45166. name: "Alternate Tail",
  45167. image: {
  45168. source: "./media/characters/mochi/alternate-tail.svg",
  45169. extra: 139/76,
  45170. bottom: 45/184
  45171. }
  45172. },
  45173. },
  45174. [
  45175. {
  45176. name: "Micro",
  45177. height: math.unit(2, "inches")
  45178. },
  45179. {
  45180. name: "Normal",
  45181. height: math.unit(2 + 8/12, "feet"),
  45182. default: true
  45183. },
  45184. {
  45185. name: "Macro",
  45186. height: math.unit(106, "feet")
  45187. },
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45192. {
  45193. front: {
  45194. height: math.unit(5.67, "feet"),
  45195. weight: math.unit(135, "lb"),
  45196. name: "Front",
  45197. image: {
  45198. source: "./media/characters/sarel/front.svg",
  45199. extra: 865/788,
  45200. bottom: 97/962
  45201. }
  45202. },
  45203. back: {
  45204. height: math.unit(5.67, "feet"),
  45205. weight: math.unit(135, "lb"),
  45206. name: "Back",
  45207. image: {
  45208. source: "./media/characters/sarel/back.svg",
  45209. extra: 857/777,
  45210. bottom: 32/889
  45211. }
  45212. },
  45213. chozoan: {
  45214. height: math.unit(5.67, "feet"),
  45215. weight: math.unit(135, "lb"),
  45216. name: "Chozoan",
  45217. image: {
  45218. source: "./media/characters/sarel/chozoan.svg",
  45219. extra: 865/788,
  45220. bottom: 97/962
  45221. }
  45222. },
  45223. current: {
  45224. height: math.unit(5.67, "feet"),
  45225. weight: math.unit(135, "lb"),
  45226. name: "Current",
  45227. image: {
  45228. source: "./media/characters/sarel/current.svg",
  45229. extra: 865/788,
  45230. bottom: 97/962
  45231. }
  45232. },
  45233. head: {
  45234. height: math.unit(1.77, "feet"),
  45235. name: "Head",
  45236. image: {
  45237. source: "./media/characters/sarel/head.svg"
  45238. }
  45239. },
  45240. claws: {
  45241. height: math.unit(1.8, "feet"),
  45242. name: "Claws",
  45243. image: {
  45244. source: "./media/characters/sarel/claws.svg"
  45245. }
  45246. },
  45247. clawsAlt: {
  45248. height: math.unit(1.8, "feet"),
  45249. name: "Claws-alt",
  45250. image: {
  45251. source: "./media/characters/sarel/claws-alt.svg"
  45252. }
  45253. },
  45254. },
  45255. [
  45256. {
  45257. name: "Normal",
  45258. height: math.unit(5.67, "feet"),
  45259. default: true
  45260. },
  45261. ]
  45262. ))
  45263. characterMakers.push(() => makeCharacter(
  45264. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45265. {
  45266. front: {
  45267. height: math.unit(5500, "feet"),
  45268. name: "Front",
  45269. image: {
  45270. source: "./media/characters/alyonia/front.svg",
  45271. extra: 1200/1135,
  45272. bottom: 29/1229
  45273. }
  45274. },
  45275. back: {
  45276. height: math.unit(5500, "feet"),
  45277. name: "Back",
  45278. image: {
  45279. source: "./media/characters/alyonia/back.svg",
  45280. extra: 1205/1138,
  45281. bottom: 10/1215
  45282. }
  45283. },
  45284. },
  45285. [
  45286. {
  45287. name: "Small",
  45288. height: math.unit(10, "feet")
  45289. },
  45290. {
  45291. name: "Macro",
  45292. height: math.unit(500, "feet")
  45293. },
  45294. {
  45295. name: "Mega Macro",
  45296. height: math.unit(5500, "feet"),
  45297. default: true
  45298. },
  45299. {
  45300. name: "Mega Macro+",
  45301. height: math.unit(500000, "feet")
  45302. },
  45303. {
  45304. name: "Giga Macro",
  45305. height: math.unit(3000, "miles")
  45306. },
  45307. {
  45308. name: "Tera Macro",
  45309. height: math.unit(2.8e6, "miles")
  45310. },
  45311. {
  45312. name: "Galactic",
  45313. height: math.unit(120000, "lightyears")
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45319. {
  45320. werewolf: {
  45321. height: math.unit(8, "feet"),
  45322. weight: math.unit(425, "lb"),
  45323. name: "Werewolf",
  45324. image: {
  45325. source: "./media/characters/autumn/werewolf.svg",
  45326. extra: 2154/2031,
  45327. bottom: 160/2314
  45328. }
  45329. },
  45330. human: {
  45331. height: math.unit(5 + 8/12, "feet"),
  45332. weight: math.unit(150, "lb"),
  45333. name: "Human",
  45334. image: {
  45335. source: "./media/characters/autumn/human.svg",
  45336. extra: 1200/1149,
  45337. bottom: 30/1230
  45338. }
  45339. },
  45340. },
  45341. [
  45342. {
  45343. name: "Normal",
  45344. height: math.unit(8, "feet"),
  45345. default: true
  45346. },
  45347. ]
  45348. ))
  45349. characterMakers.push(() => makeCharacter(
  45350. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45351. {
  45352. front: {
  45353. height: math.unit(8 + 5/12, "feet"),
  45354. weight: math.unit(825, "lb"),
  45355. name: "Front",
  45356. image: {
  45357. source: "./media/characters/cobalt-charizard/front.svg",
  45358. extra: 1268/1155,
  45359. bottom: 122/1390
  45360. }
  45361. },
  45362. side: {
  45363. height: math.unit(8 + 5/12, "feet"),
  45364. weight: math.unit(825, "lb"),
  45365. name: "Side",
  45366. image: {
  45367. source: "./media/characters/cobalt-charizard/side.svg",
  45368. extra: 1348/1257,
  45369. bottom: 58/1406
  45370. }
  45371. },
  45372. gMax: {
  45373. height: math.unit(134 + 11/12, "feet"),
  45374. name: "G-Max",
  45375. image: {
  45376. source: "./media/characters/cobalt-charizard/g-max.svg",
  45377. extra: 1835/1541,
  45378. bottom: 151/1986
  45379. }
  45380. },
  45381. },
  45382. [
  45383. {
  45384. name: "Normal",
  45385. height: math.unit(8 + 5/12, "feet"),
  45386. default: true
  45387. },
  45388. ]
  45389. ))
  45390. characterMakers.push(() => makeCharacter(
  45391. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45392. {
  45393. front: {
  45394. height: math.unit(6 + 3/12, "feet"),
  45395. weight: math.unit(210, "lb"),
  45396. name: "Front",
  45397. image: {
  45398. source: "./media/characters/stella/front.svg",
  45399. extra: 3549/3335,
  45400. bottom: 51/3600
  45401. }
  45402. },
  45403. },
  45404. [
  45405. {
  45406. name: "Normal",
  45407. height: math.unit(6 + 3/12, "feet"),
  45408. default: true
  45409. },
  45410. ]
  45411. ))
  45412. characterMakers.push(() => makeCharacter(
  45413. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45414. {
  45415. front: {
  45416. height: math.unit(5, "feet"),
  45417. weight: math.unit(90, "lb"),
  45418. name: "Front",
  45419. image: {
  45420. source: "./media/characters/riley-bishop/front.svg",
  45421. extra: 1450/1428,
  45422. bottom: 152/1602
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(5, "feet"),
  45430. default: true
  45431. },
  45432. ]
  45433. ))
  45434. characterMakers.push(() => makeCharacter(
  45435. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45436. {
  45437. side: {
  45438. height: math.unit(8 + 2/12, "feet"),
  45439. weight: math.unit(500, "kg"),
  45440. name: "Side",
  45441. image: {
  45442. source: "./media/characters/theo-arcanine/side.svg",
  45443. extra: 1342/1074,
  45444. bottom: 111/1453
  45445. }
  45446. },
  45447. },
  45448. [
  45449. {
  45450. name: "Normal",
  45451. height: math.unit(8 + 2/12, "feet"),
  45452. default: true
  45453. },
  45454. ]
  45455. ))
  45456. characterMakers.push(() => makeCharacter(
  45457. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45458. {
  45459. front: {
  45460. height: math.unit(4, "feet"),
  45461. name: "Front",
  45462. image: {
  45463. source: "./media/characters/kali/front.svg",
  45464. extra: 1074/867,
  45465. bottom: 34/1108
  45466. }
  45467. },
  45468. back: {
  45469. height: math.unit(4, "feet"),
  45470. name: "Back",
  45471. image: {
  45472. source: "./media/characters/kali/back.svg",
  45473. extra: 1068/863,
  45474. bottom: 26/1094
  45475. }
  45476. },
  45477. frontAlt: {
  45478. height: math.unit(4, "feet"),
  45479. name: "Front (Alt)",
  45480. image: {
  45481. source: "./media/characters/kali/front-alt.svg",
  45482. extra: 1921/1357,
  45483. bottom: 70/1991
  45484. }
  45485. },
  45486. },
  45487. [
  45488. {
  45489. name: "Normal",
  45490. height: math.unit(4, "feet"),
  45491. default: true
  45492. },
  45493. {
  45494. name: "Big'vali",
  45495. height: math.unit(11, "feet")
  45496. },
  45497. {
  45498. name: "Macro",
  45499. height: math.unit(32, "meters")
  45500. },
  45501. {
  45502. name: "Macro+",
  45503. height: math.unit(150, "meters")
  45504. },
  45505. {
  45506. name: "Megamacro",
  45507. height: math.unit(7500, "meters")
  45508. },
  45509. {
  45510. name: "Megamacro+",
  45511. height: math.unit(80, "kilometers")
  45512. },
  45513. ]
  45514. ))
  45515. characterMakers.push(() => makeCharacter(
  45516. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45517. {
  45518. side: {
  45519. height: math.unit(5 + 11/12, "feet"),
  45520. weight: math.unit(236, "lb"),
  45521. name: "Side",
  45522. image: {
  45523. source: "./media/characters/gapp/side.svg",
  45524. extra: 775/340,
  45525. bottom: 58/833
  45526. }
  45527. },
  45528. mouth: {
  45529. height: math.unit(2.98, "feet"),
  45530. name: "Mouth",
  45531. image: {
  45532. source: "./media/characters/gapp/mouth.svg"
  45533. }
  45534. },
  45535. },
  45536. [
  45537. {
  45538. name: "Normal",
  45539. height: math.unit(5 + 1/12, "feet"),
  45540. default: true
  45541. },
  45542. ]
  45543. ))
  45544. characterMakers.push(() => makeCharacter(
  45545. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45546. {
  45547. front: {
  45548. height: math.unit(6, "feet"),
  45549. name: "Front",
  45550. image: {
  45551. source: "./media/characters/persephone/front.svg",
  45552. extra: 1895/1717,
  45553. bottom: 96/1991
  45554. }
  45555. },
  45556. back: {
  45557. height: math.unit(6, "feet"),
  45558. name: "Back",
  45559. image: {
  45560. source: "./media/characters/persephone/back.svg",
  45561. extra: 1868/1679,
  45562. bottom: 26/1894
  45563. }
  45564. },
  45565. casual: {
  45566. height: math.unit(6, "feet"),
  45567. name: "Casual",
  45568. image: {
  45569. source: "./media/characters/persephone/casual.svg",
  45570. extra: 1713/1541,
  45571. bottom: 76/1789
  45572. }
  45573. },
  45574. gaming: {
  45575. height: math.unit(3.55, "feet"),
  45576. name: "Gaming",
  45577. image: {
  45578. source: "./media/characters/persephone/gaming.svg",
  45579. extra: 1242/1038,
  45580. bottom: 66/1308
  45581. }
  45582. },
  45583. head: {
  45584. height: math.unit(2.15, "feet"),
  45585. name: "😐",
  45586. image: {
  45587. source: "./media/characters/persephone/head.svg"
  45588. }
  45589. },
  45590. talking: {
  45591. height: math.unit(2.5, "feet"),
  45592. name: "💬",
  45593. image: {
  45594. source: "./media/characters/persephone/talking.svg"
  45595. }
  45596. },
  45597. hmm: {
  45598. height: math.unit(2.28, "feet"),
  45599. name: "🤨",
  45600. image: {
  45601. source: "./media/characters/persephone/hmm.svg"
  45602. }
  45603. },
  45604. },
  45605. [
  45606. {
  45607. name: "Human Size",
  45608. height: math.unit(6, "feet")
  45609. },
  45610. {
  45611. name: "Big Steppy",
  45612. height: math.unit(600, "meters"),
  45613. default: true
  45614. },
  45615. {
  45616. name: "Galaxy Brain",
  45617. height: math.unit(1, "zettameter")
  45618. },
  45619. ]
  45620. ))
  45621. characterMakers.push(() => makeCharacter(
  45622. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45623. {
  45624. front: {
  45625. height: math.unit(1.85, "meters"),
  45626. name: "Front",
  45627. image: {
  45628. source: "./media/characters/riley-foxthing/front.svg",
  45629. extra: 1495/1354,
  45630. bottom: 122/1617
  45631. }
  45632. },
  45633. frontAlt: {
  45634. height: math.unit(1.85, "meters"),
  45635. name: "Front (Alt)",
  45636. image: {
  45637. source: "./media/characters/riley-foxthing/front-alt.svg",
  45638. extra: 1572/1389,
  45639. bottom: 116/1688
  45640. }
  45641. },
  45642. },
  45643. [
  45644. {
  45645. name: "Normal Sized",
  45646. height: math.unit(1.85, "meters"),
  45647. default: true
  45648. },
  45649. {
  45650. name: "Quite Sizable",
  45651. height: math.unit(5, "meters")
  45652. },
  45653. {
  45654. name: "Rather Large",
  45655. height: math.unit(20, "meters")
  45656. },
  45657. {
  45658. name: "Macro",
  45659. height: math.unit(450, "meters")
  45660. },
  45661. {
  45662. name: "Giga",
  45663. height: math.unit(5, "km")
  45664. },
  45665. ]
  45666. ))
  45667. characterMakers.push(() => makeCharacter(
  45668. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45669. {
  45670. front: {
  45671. height: math.unit(6, "feet"),
  45672. weight: math.unit(200, "lb"),
  45673. name: "Front",
  45674. image: {
  45675. source: "./media/characters/blizzard/front.svg",
  45676. extra: 1136/990,
  45677. bottom: 136/1272
  45678. }
  45679. },
  45680. back: {
  45681. height: math.unit(6, "feet"),
  45682. weight: math.unit(200, "lb"),
  45683. name: "Back",
  45684. image: {
  45685. source: "./media/characters/blizzard/back.svg",
  45686. extra: 1175/1034,
  45687. bottom: 97/1272
  45688. }
  45689. },
  45690. sitting: {
  45691. height: math.unit(3.725, "feet"),
  45692. weight: math.unit(200, "lb"),
  45693. name: "Sitting",
  45694. image: {
  45695. source: "./media/characters/blizzard/sitting.svg",
  45696. extra: 581/485,
  45697. bottom: 90/671
  45698. }
  45699. },
  45700. frontWizard: {
  45701. height: math.unit(7.9, "feet"),
  45702. weight: math.unit(200, "lb"),
  45703. name: "Front (Wizard)",
  45704. image: {
  45705. source: "./media/characters/blizzard/front-wizard.svg"
  45706. }
  45707. },
  45708. backWizard: {
  45709. height: math.unit(7.9, "feet"),
  45710. weight: math.unit(200, "lb"),
  45711. name: "Back (Wizard)",
  45712. image: {
  45713. source: "./media/characters/blizzard/back-wizard.svg"
  45714. }
  45715. },
  45716. frontNsfw: {
  45717. height: math.unit(6, "feet"),
  45718. weight: math.unit(200, "lb"),
  45719. name: "Front (NSFW)",
  45720. image: {
  45721. source: "./media/characters/blizzard/front-nsfw.svg",
  45722. extra: 1136/990,
  45723. bottom: 136/1272
  45724. }
  45725. },
  45726. backNsfw: {
  45727. height: math.unit(6, "feet"),
  45728. weight: math.unit(200, "lb"),
  45729. name: "Back (NSFW)",
  45730. image: {
  45731. source: "./media/characters/blizzard/back-nsfw.svg",
  45732. extra: 1175/1034,
  45733. bottom: 97/1272
  45734. }
  45735. },
  45736. sittingNsfw: {
  45737. height: math.unit(3.725, "feet"),
  45738. weight: math.unit(200, "lb"),
  45739. name: "Sitting (NSFW)",
  45740. image: {
  45741. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45742. extra: 581/485,
  45743. bottom: 90/671
  45744. }
  45745. },
  45746. wizardFrontNsfw: {
  45747. height: math.unit(7.9, "feet"),
  45748. weight: math.unit(200, "lb"),
  45749. name: "Wizard (Front, NSFW)",
  45750. image: {
  45751. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45752. }
  45753. },
  45754. },
  45755. [
  45756. {
  45757. name: "Normal",
  45758. height: math.unit(6, "feet"),
  45759. default: true
  45760. },
  45761. ]
  45762. ))
  45763. characterMakers.push(() => makeCharacter(
  45764. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45765. {
  45766. front: {
  45767. height: math.unit(5 + 2/12, "feet"),
  45768. name: "Front",
  45769. image: {
  45770. source: "./media/characters/lumi/front.svg",
  45771. extra: 1328/1268,
  45772. bottom: 103/1431
  45773. }
  45774. },
  45775. back: {
  45776. height: math.unit(5 + 2/12, "feet"),
  45777. name: "Back",
  45778. image: {
  45779. source: "./media/characters/lumi/back.svg",
  45780. extra: 1381/1327,
  45781. bottom: 43/1424
  45782. }
  45783. },
  45784. },
  45785. [
  45786. {
  45787. name: "Normal",
  45788. height: math.unit(5 + 2/12, "feet"),
  45789. default: true
  45790. },
  45791. ]
  45792. ))
  45793. characterMakers.push(() => makeCharacter(
  45794. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45795. {
  45796. front: {
  45797. height: math.unit(5 + 9/12, "feet"),
  45798. name: "Front",
  45799. image: {
  45800. source: "./media/characters/aliya-cotton/front.svg",
  45801. extra: 577/564,
  45802. bottom: 29/606
  45803. }
  45804. },
  45805. },
  45806. [
  45807. {
  45808. name: "Normal",
  45809. height: math.unit(5 + 9/12, "feet"),
  45810. default: true
  45811. },
  45812. ]
  45813. ))
  45814. characterMakers.push(() => makeCharacter(
  45815. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45816. {
  45817. front: {
  45818. height: math.unit(2.7, "meters"),
  45819. weight: math.unit(25000, "lb"),
  45820. name: "Front",
  45821. image: {
  45822. source: "./media/characters/noah-luxray/front.svg",
  45823. extra: 1644/825,
  45824. bottom: 339/1983
  45825. }
  45826. },
  45827. side: {
  45828. height: math.unit(2.97, "meters"),
  45829. weight: math.unit(25000, "lb"),
  45830. name: "Side",
  45831. image: {
  45832. source: "./media/characters/noah-luxray/side.svg",
  45833. extra: 1319/650,
  45834. bottom: 163/1482
  45835. }
  45836. },
  45837. dick: {
  45838. height: math.unit(7.4, "feet"),
  45839. weight: math.unit(2500, "lb"),
  45840. name: "Dick",
  45841. image: {
  45842. source: "./media/characters/noah-luxray/dick.svg"
  45843. }
  45844. },
  45845. dickAlt: {
  45846. height: math.unit(10.83, "feet"),
  45847. weight: math.unit(2500, "lb"),
  45848. name: "Dick-alt",
  45849. image: {
  45850. source: "./media/characters/noah-luxray/dick-alt.svg"
  45851. }
  45852. },
  45853. },
  45854. [
  45855. {
  45856. name: "BIG",
  45857. height: math.unit(2.7, "meters"),
  45858. default: true
  45859. },
  45860. ]
  45861. ))
  45862. characterMakers.push(() => makeCharacter(
  45863. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45864. {
  45865. standing: {
  45866. height: math.unit(183, "cm"),
  45867. weight: math.unit(68, "kg"),
  45868. name: "Standing",
  45869. image: {
  45870. source: "./media/characters/arion/standing.svg",
  45871. extra: 1869/1807,
  45872. bottom: 93/1962
  45873. }
  45874. },
  45875. reclining: {
  45876. height: math.unit(70.5, "cm"),
  45877. weight: math.unit(68, "lb"),
  45878. name: "Reclining",
  45879. image: {
  45880. source: "./media/characters/arion/reclining.svg",
  45881. extra: 937/870,
  45882. bottom: 63/1000
  45883. }
  45884. },
  45885. },
  45886. [
  45887. {
  45888. name: "Colossus Size, Low",
  45889. height: math.unit(33, "meters"),
  45890. default: true
  45891. },
  45892. {
  45893. name: "Colossus Size, Mid",
  45894. height: math.unit(52, "meters")
  45895. },
  45896. {
  45897. name: "Colossus Size, High",
  45898. height: math.unit(60, "meters")
  45899. },
  45900. {
  45901. name: "Titan Size, Low",
  45902. height: math.unit(91, "meters"),
  45903. },
  45904. {
  45905. name: "Titan Size, Mid",
  45906. height: math.unit(122, "meters")
  45907. },
  45908. {
  45909. name: "Titan Size, High",
  45910. height: math.unit(162, "meters")
  45911. },
  45912. ]
  45913. ))
  45914. characterMakers.push(() => makeCharacter(
  45915. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45916. {
  45917. front: {
  45918. height: math.unit(53, "meters"),
  45919. name: "Front",
  45920. image: {
  45921. source: "./media/characters/stellar-marbey/front.svg",
  45922. extra: 1913/1805,
  45923. bottom: 92/2005
  45924. }
  45925. },
  45926. back: {
  45927. height: math.unit(53, "meters"),
  45928. name: "Back",
  45929. image: {
  45930. source: "./media/characters/stellar-marbey/back.svg",
  45931. extra: 1960/1851,
  45932. bottom: 28/1988
  45933. }
  45934. },
  45935. mouth: {
  45936. height: math.unit(3.5, "meters"),
  45937. name: "Mouth",
  45938. image: {
  45939. source: "./media/characters/stellar-marbey/mouth.svg"
  45940. }
  45941. },
  45942. },
  45943. [
  45944. {
  45945. name: "Macro",
  45946. height: math.unit(53, "meters"),
  45947. default: true
  45948. },
  45949. ]
  45950. ))
  45951. characterMakers.push(() => makeCharacter(
  45952. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45953. {
  45954. front: {
  45955. height: math.unit(8 + 1/12, "feet"),
  45956. weight: math.unit(233, "lb"),
  45957. name: "Front",
  45958. image: {
  45959. source: "./media/characters/matsu/front.svg",
  45960. extra: 832/772,
  45961. bottom: 40/872
  45962. }
  45963. },
  45964. back: {
  45965. height: math.unit(8 + 1/12, "feet"),
  45966. weight: math.unit(233, "lb"),
  45967. name: "Back",
  45968. image: {
  45969. source: "./media/characters/matsu/back.svg",
  45970. extra: 839/780,
  45971. bottom: 47/886
  45972. }
  45973. },
  45974. },
  45975. [
  45976. {
  45977. name: "Normal",
  45978. height: math.unit(8 + 1/12, "feet"),
  45979. default: true
  45980. },
  45981. ]
  45982. ))
  45983. characterMakers.push(() => makeCharacter(
  45984. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45985. {
  45986. front: {
  45987. height: math.unit(4, "feet"),
  45988. weight: math.unit(148, "lb"),
  45989. name: "Front",
  45990. image: {
  45991. source: "./media/characters/thiz/front.svg",
  45992. extra: 1913/1748,
  45993. bottom: 62/1975
  45994. }
  45995. },
  45996. },
  45997. [
  45998. {
  45999. name: "Normal",
  46000. height: math.unit(4, "feet"),
  46001. default: true
  46002. },
  46003. ]
  46004. ))
  46005. characterMakers.push(() => makeCharacter(
  46006. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46007. {
  46008. front: {
  46009. height: math.unit(7 + 6/12, "feet"),
  46010. weight: math.unit(267, "lb"),
  46011. name: "Front",
  46012. image: {
  46013. source: "./media/characters/marcel/front.svg",
  46014. extra: 1221/1096,
  46015. bottom: 76/1297
  46016. }
  46017. },
  46018. },
  46019. [
  46020. {
  46021. name: "Normal",
  46022. height: math.unit(7 + 6/12, "feet"),
  46023. default: true
  46024. },
  46025. ]
  46026. ))
  46027. characterMakers.push(() => makeCharacter(
  46028. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46029. {
  46030. side: {
  46031. height: math.unit(42, "meters"),
  46032. name: "Side",
  46033. image: {
  46034. source: "./media/characters/flake/side.svg",
  46035. extra: 1525/1306,
  46036. bottom: 209/1734
  46037. }
  46038. },
  46039. },
  46040. [
  46041. {
  46042. name: "Normal",
  46043. height: math.unit(42, "meters"),
  46044. default: true
  46045. },
  46046. ]
  46047. ))
  46048. characterMakers.push(() => makeCharacter(
  46049. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46050. {
  46051. dressed: {
  46052. height: math.unit(6 + 4/12, "feet"),
  46053. weight: math.unit(520, "lb"),
  46054. name: "Dressed",
  46055. image: {
  46056. source: "./media/characters/someonne/dressed.svg",
  46057. extra: 1020/1010,
  46058. bottom: 178/1198
  46059. }
  46060. },
  46061. undressed: {
  46062. height: math.unit(6 + 4/12, "feet"),
  46063. weight: math.unit(520, "lb"),
  46064. name: "Undressed",
  46065. image: {
  46066. source: "./media/characters/someonne/undressed.svg",
  46067. extra: 1019/1014,
  46068. bottom: 169/1188
  46069. }
  46070. },
  46071. },
  46072. [
  46073. {
  46074. name: "Normal",
  46075. height: math.unit(6 + 4/12, "feet"),
  46076. default: true
  46077. },
  46078. ]
  46079. ))
  46080. characterMakers.push(() => makeCharacter(
  46081. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46082. {
  46083. front: {
  46084. height: math.unit(3, "feet"),
  46085. weight: math.unit(30, "lb"),
  46086. name: "Front",
  46087. image: {
  46088. source: "./media/characters/till/front.svg",
  46089. extra: 892/823,
  46090. bottom: 55/947
  46091. }
  46092. },
  46093. },
  46094. [
  46095. {
  46096. name: "Normal",
  46097. height: math.unit(3, "feet"),
  46098. default: true
  46099. },
  46100. ]
  46101. ))
  46102. characterMakers.push(() => makeCharacter(
  46103. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46104. {
  46105. front: {
  46106. height: math.unit(9 + 8/12, "feet"),
  46107. weight: math.unit(800, "lb"),
  46108. name: "Front",
  46109. image: {
  46110. source: "./media/characters/sydney-heki/front.svg",
  46111. extra: 1360/1300,
  46112. bottom: 22/1382
  46113. }
  46114. },
  46115. back: {
  46116. height: math.unit(9 + 8/12, "feet"),
  46117. weight: math.unit(800, "lb"),
  46118. name: "Back",
  46119. image: {
  46120. source: "./media/characters/sydney-heki/back.svg",
  46121. extra: 1356/1293,
  46122. bottom: 12/1368
  46123. }
  46124. },
  46125. frontDressed: {
  46126. height: math.unit(9 + 8/12, "feet"),
  46127. weight: math.unit(800, "lb"),
  46128. name: "Front-dressed",
  46129. image: {
  46130. source: "./media/characters/sydney-heki/front-dressed.svg",
  46131. extra: 1360/1300,
  46132. bottom: 22/1382
  46133. }
  46134. },
  46135. },
  46136. [
  46137. {
  46138. name: "Normal",
  46139. height: math.unit(9 + 8/12, "feet"),
  46140. default: true
  46141. },
  46142. {
  46143. name: "Macro",
  46144. height: math.unit(500, "feet")
  46145. },
  46146. {
  46147. name: "Megamacro",
  46148. height: math.unit(3.6, "miles")
  46149. },
  46150. ]
  46151. ))
  46152. characterMakers.push(() => makeCharacter(
  46153. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46154. {
  46155. front: {
  46156. height: math.unit(200, "cm"),
  46157. weight: math.unit(250, "lb"),
  46158. name: "Front",
  46159. image: {
  46160. source: "./media/characters/fowler-karlsson/front.svg",
  46161. extra: 897/845,
  46162. bottom: 123/1020
  46163. }
  46164. },
  46165. back: {
  46166. height: math.unit(200, "cm"),
  46167. weight: math.unit(250, "lb"),
  46168. name: "Back",
  46169. image: {
  46170. source: "./media/characters/fowler-karlsson/back.svg",
  46171. extra: 999/944,
  46172. bottom: 26/1025
  46173. }
  46174. },
  46175. dick: {
  46176. height: math.unit(1.92, "feet"),
  46177. weight: math.unit(150, "lb"),
  46178. name: "Dick",
  46179. image: {
  46180. source: "./media/characters/fowler-karlsson/dick.svg"
  46181. }
  46182. },
  46183. },
  46184. [
  46185. {
  46186. name: "Normal",
  46187. height: math.unit(200, "cm"),
  46188. default: true
  46189. },
  46190. {
  46191. name: "Smaller Macro",
  46192. height: math.unit(90, "m")
  46193. },
  46194. {
  46195. name: "Macro",
  46196. height: math.unit(150, "m")
  46197. },
  46198. {
  46199. name: "Bigger Macro",
  46200. height: math.unit(300, "m")
  46201. },
  46202. ]
  46203. ))
  46204. characterMakers.push(() => makeCharacter(
  46205. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46206. {
  46207. side: {
  46208. height: math.unit(8 + 2/12, "feet"),
  46209. weight: math.unit(1, "tonne"),
  46210. name: "Side",
  46211. image: {
  46212. source: "./media/characters/rylide/side.svg",
  46213. extra: 1318/1034,
  46214. bottom: 106/1424
  46215. }
  46216. },
  46217. sitting: {
  46218. height: math.unit(303, "cm"),
  46219. weight: math.unit(1, "tonne"),
  46220. name: "Sitting",
  46221. image: {
  46222. source: "./media/characters/rylide/sitting.svg",
  46223. extra: 1303/1103,
  46224. bottom: 36/1339
  46225. }
  46226. },
  46227. },
  46228. [
  46229. {
  46230. name: "Normal",
  46231. height: math.unit(8 + 2/12, "feet"),
  46232. default: true
  46233. },
  46234. ]
  46235. ))
  46236. characterMakers.push(() => makeCharacter(
  46237. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46238. {
  46239. front: {
  46240. height: math.unit(5 + 10/12, "feet"),
  46241. weight: math.unit(160, "lb"),
  46242. name: "Front",
  46243. image: {
  46244. source: "./media/characters/pudask/front.svg",
  46245. extra: 1616/1590,
  46246. bottom: 161/1777
  46247. }
  46248. },
  46249. },
  46250. [
  46251. {
  46252. name: "Ferret Height",
  46253. height: math.unit(2 + 5/12, "feet")
  46254. },
  46255. {
  46256. name: "Canon Height",
  46257. height: math.unit(5 + 10/12, "feet"),
  46258. default: true
  46259. },
  46260. ]
  46261. ))
  46262. characterMakers.push(() => makeCharacter(
  46263. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46264. {
  46265. front: {
  46266. height: math.unit(3 + 6/12, "feet"),
  46267. weight: math.unit(60, "lb"),
  46268. name: "Front",
  46269. image: {
  46270. source: "./media/characters/ramita/front.svg",
  46271. extra: 1402/1232,
  46272. bottom: 62/1464
  46273. }
  46274. },
  46275. dressed: {
  46276. height: math.unit(3 + 6/12, "feet"),
  46277. weight: math.unit(60, "lb"),
  46278. name: "Dressed",
  46279. image: {
  46280. source: "./media/characters/ramita/dressed.svg",
  46281. extra: 1534/1249,
  46282. bottom: 50/1584
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Normal",
  46289. height: math.unit(3 + 6/12, "feet"),
  46290. default: true
  46291. },
  46292. ]
  46293. ))
  46294. characterMakers.push(() => makeCharacter(
  46295. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46296. {
  46297. front: {
  46298. height: math.unit(8, "feet"),
  46299. name: "Front",
  46300. image: {
  46301. source: "./media/characters/ark/front.svg",
  46302. extra: 772/693,
  46303. bottom: 45/817
  46304. }
  46305. },
  46306. },
  46307. [
  46308. {
  46309. name: "Normal",
  46310. height: math.unit(8, "feet"),
  46311. default: true
  46312. },
  46313. ]
  46314. ))
  46315. characterMakers.push(() => makeCharacter(
  46316. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46317. {
  46318. front: {
  46319. height: math.unit(6, "feet"),
  46320. weight: math.unit(250, "lb"),
  46321. volume: math.unit(5/8, "gallons"),
  46322. name: "Front",
  46323. image: {
  46324. source: "./media/characters/ludwig-horn/front.svg",
  46325. extra: 1782/1635,
  46326. bottom: 96/1878
  46327. }
  46328. },
  46329. back: {
  46330. height: math.unit(6, "feet"),
  46331. weight: math.unit(250, "lb"),
  46332. volume: math.unit(5/8, "gallons"),
  46333. name: "Back",
  46334. image: {
  46335. source: "./media/characters/ludwig-horn/back.svg",
  46336. extra: 1874/1729,
  46337. bottom: 27/1901
  46338. }
  46339. },
  46340. dick: {
  46341. height: math.unit(1.05, "feet"),
  46342. weight: math.unit(15, "lb"),
  46343. volume: math.unit(5/8, "gallons"),
  46344. name: "Dick",
  46345. image: {
  46346. source: "./media/characters/ludwig-horn/dick.svg"
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "Small",
  46353. height: math.unit(6, "feet")
  46354. },
  46355. {
  46356. name: "Typical",
  46357. height: math.unit(12, "feet"),
  46358. default: true
  46359. },
  46360. {
  46361. name: "Building",
  46362. height: math.unit(80, "feet")
  46363. },
  46364. {
  46365. name: "Town",
  46366. height: math.unit(800, "feet")
  46367. },
  46368. {
  46369. name: "Kingdom",
  46370. height: math.unit(80000, "feet")
  46371. },
  46372. {
  46373. name: "Planet",
  46374. height: math.unit(8000000, "feet")
  46375. },
  46376. {
  46377. name: "Universe",
  46378. height: math.unit(8000000000, "feet")
  46379. },
  46380. {
  46381. name: "Transcended",
  46382. height: math.unit(8e27, "feet")
  46383. },
  46384. ]
  46385. ))
  46386. characterMakers.push(() => makeCharacter(
  46387. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46388. {
  46389. front: {
  46390. height: math.unit(5, "feet"),
  46391. weight: math.unit(50, "kg"),
  46392. name: "Front",
  46393. image: {
  46394. source: "./media/characters/biot-avery/front.svg",
  46395. extra: 1295/1232,
  46396. bottom: 86/1381
  46397. }
  46398. },
  46399. },
  46400. [
  46401. {
  46402. name: "Normal",
  46403. height: math.unit(5, "feet"),
  46404. default: true
  46405. },
  46406. ]
  46407. ))
  46408. characterMakers.push(() => makeCharacter(
  46409. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46410. {
  46411. front: {
  46412. height: math.unit(6, "feet"),
  46413. name: "Front",
  46414. image: {
  46415. source: "./media/characters/kitsune-kiro/front.svg",
  46416. extra: 1270/1158,
  46417. bottom: 42/1312
  46418. }
  46419. },
  46420. frontAlt: {
  46421. height: math.unit(6, "feet"),
  46422. name: "Front-alt",
  46423. image: {
  46424. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46425. extra: 1130/1081,
  46426. bottom: 36/1166
  46427. }
  46428. },
  46429. },
  46430. [
  46431. {
  46432. name: "Smol",
  46433. height: math.unit(3, "feet")
  46434. },
  46435. {
  46436. name: "Normal",
  46437. height: math.unit(6, "feet"),
  46438. default: true
  46439. },
  46440. ]
  46441. ))
  46442. characterMakers.push(() => makeCharacter(
  46443. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46444. {
  46445. front: {
  46446. height: math.unit(6, "feet"),
  46447. weight: math.unit(125, "lb"),
  46448. name: "Front",
  46449. image: {
  46450. source: "./media/characters/jack-thatcher/front.svg",
  46451. extra: 1474/1370,
  46452. bottom: 26/1500
  46453. }
  46454. },
  46455. back: {
  46456. height: math.unit(6, "feet"),
  46457. weight: math.unit(125, "lb"),
  46458. name: "Back",
  46459. image: {
  46460. source: "./media/characters/jack-thatcher/back.svg",
  46461. extra: 1489/1384,
  46462. bottom: 18/1507
  46463. }
  46464. },
  46465. },
  46466. [
  46467. {
  46468. name: "Normal",
  46469. height: math.unit(6, "feet"),
  46470. default: true
  46471. },
  46472. {
  46473. name: "Macro",
  46474. height: math.unit(75, "feet")
  46475. },
  46476. {
  46477. name: "Macro-er",
  46478. height: math.unit(250, "feet")
  46479. },
  46480. ]
  46481. ))
  46482. characterMakers.push(() => makeCharacter(
  46483. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46484. {
  46485. front: {
  46486. height: math.unit(7, "feet"),
  46487. weight: math.unit(110, "kg"),
  46488. name: "Front",
  46489. image: {
  46490. source: "./media/characters/max-hyper/front.svg",
  46491. extra: 1969/1881,
  46492. bottom: 49/2018
  46493. }
  46494. },
  46495. },
  46496. [
  46497. {
  46498. name: "Normal",
  46499. height: math.unit(7, "feet"),
  46500. default: true
  46501. },
  46502. ]
  46503. ))
  46504. characterMakers.push(() => makeCharacter(
  46505. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46506. {
  46507. front: {
  46508. height: math.unit(5 + 5/12, "feet"),
  46509. weight: math.unit(160, "lb"),
  46510. name: "Front",
  46511. image: {
  46512. source: "./media/characters/spook/front.svg",
  46513. extra: 794/791,
  46514. bottom: 54/848
  46515. }
  46516. },
  46517. back: {
  46518. height: math.unit(5 + 5/12, "feet"),
  46519. weight: math.unit(160, "lb"),
  46520. name: "Back",
  46521. image: {
  46522. source: "./media/characters/spook/back.svg",
  46523. extra: 812/798,
  46524. bottom: 32/844
  46525. }
  46526. },
  46527. },
  46528. [
  46529. {
  46530. name: "Normal",
  46531. height: math.unit(5 + 5/12, "feet"),
  46532. default: true
  46533. },
  46534. ]
  46535. ))
  46536. characterMakers.push(() => makeCharacter(
  46537. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46538. {
  46539. front: {
  46540. height: math.unit(18, "feet"),
  46541. name: "Front",
  46542. image: {
  46543. source: "./media/characters/xeaduulix/front.svg",
  46544. extra: 1380/1166,
  46545. bottom: 110/1490
  46546. }
  46547. },
  46548. back: {
  46549. height: math.unit(18, "feet"),
  46550. name: "Back",
  46551. image: {
  46552. source: "./media/characters/xeaduulix/back.svg",
  46553. extra: 1592/1170,
  46554. bottom: 128/1720
  46555. }
  46556. },
  46557. frontNsfw: {
  46558. height: math.unit(18, "feet"),
  46559. name: "Front (NSFW)",
  46560. image: {
  46561. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46562. extra: 1380/1166,
  46563. bottom: 110/1490
  46564. }
  46565. },
  46566. backNsfw: {
  46567. height: math.unit(18, "feet"),
  46568. name: "Back (NSFW)",
  46569. image: {
  46570. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46571. extra: 1592/1170,
  46572. bottom: 128/1720
  46573. }
  46574. },
  46575. },
  46576. [
  46577. {
  46578. name: "Normal",
  46579. height: math.unit(18, "feet"),
  46580. default: true
  46581. },
  46582. ]
  46583. ))
  46584. characterMakers.push(() => makeCharacter(
  46585. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46586. {
  46587. spreadWings: {
  46588. height: math.unit(20, "feet"),
  46589. name: "Spread Wings",
  46590. image: {
  46591. source: "./media/characters/fledge/spread-wings.svg",
  46592. extra: 693/635,
  46593. bottom: 26/719
  46594. }
  46595. },
  46596. front: {
  46597. height: math.unit(20, "feet"),
  46598. name: "Front",
  46599. image: {
  46600. source: "./media/characters/fledge/front.svg",
  46601. extra: 684/637,
  46602. bottom: 18/702
  46603. }
  46604. },
  46605. frontAlt: {
  46606. height: math.unit(20, "feet"),
  46607. name: "Front (Alt)",
  46608. image: {
  46609. source: "./media/characters/fledge/front-alt.svg",
  46610. extra: 708/664,
  46611. bottom: 13/721
  46612. }
  46613. },
  46614. back: {
  46615. height: math.unit(20, "feet"),
  46616. name: "Back",
  46617. image: {
  46618. source: "./media/characters/fledge/back.svg",
  46619. extra: 718/634,
  46620. bottom: 22/740
  46621. }
  46622. },
  46623. head: {
  46624. height: math.unit(5.55, "feet"),
  46625. name: "Head",
  46626. image: {
  46627. source: "./media/characters/fledge/head.svg"
  46628. }
  46629. },
  46630. headAlt: {
  46631. height: math.unit(5.1, "feet"),
  46632. name: "Head (Alt)",
  46633. image: {
  46634. source: "./media/characters/fledge/head-alt.svg"
  46635. }
  46636. },
  46637. },
  46638. [
  46639. {
  46640. name: "Small",
  46641. height: math.unit(6 + 2/12, "feet")
  46642. },
  46643. {
  46644. name: "Big",
  46645. height: math.unit(20, "feet"),
  46646. default: true
  46647. },
  46648. {
  46649. name: "Giant",
  46650. height: math.unit(100, "feet")
  46651. },
  46652. {
  46653. name: "Macro",
  46654. height: math.unit(200, "feet")
  46655. },
  46656. ]
  46657. ))
  46658. characterMakers.push(() => makeCharacter(
  46659. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46660. {
  46661. front: {
  46662. height: math.unit(1, "meter"),
  46663. name: "Front",
  46664. image: {
  46665. source: "./media/characters/atlas-morenai/front.svg",
  46666. extra: 1275/1043,
  46667. bottom: 19/1294
  46668. }
  46669. },
  46670. back: {
  46671. height: math.unit(1, "meter"),
  46672. name: "Back",
  46673. image: {
  46674. source: "./media/characters/atlas-morenai/back.svg",
  46675. extra: 1141/1001,
  46676. bottom: 25/1166
  46677. }
  46678. },
  46679. },
  46680. [
  46681. {
  46682. name: "Normal",
  46683. height: math.unit(1, "meter"),
  46684. default: true
  46685. },
  46686. {
  46687. name: "Magic-Infused",
  46688. height: math.unit(5, "meters")
  46689. },
  46690. ]
  46691. ))
  46692. characterMakers.push(() => makeCharacter(
  46693. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46694. {
  46695. front: {
  46696. height: math.unit(5, "meters"),
  46697. name: "Front",
  46698. image: {
  46699. source: "./media/characters/cintia/front.svg",
  46700. extra: 1312/1228,
  46701. bottom: 38/1350
  46702. }
  46703. },
  46704. back: {
  46705. height: math.unit(5, "meters"),
  46706. name: "Back",
  46707. image: {
  46708. source: "./media/characters/cintia/back.svg",
  46709. extra: 1260/1166,
  46710. bottom: 98/1358
  46711. }
  46712. },
  46713. frontDick: {
  46714. height: math.unit(5, "meters"),
  46715. name: "Front (Dick)",
  46716. image: {
  46717. source: "./media/characters/cintia/front-dick.svg",
  46718. extra: 1312/1228,
  46719. bottom: 38/1350
  46720. }
  46721. },
  46722. backDick: {
  46723. height: math.unit(5, "meters"),
  46724. name: "Back (Dick)",
  46725. image: {
  46726. source: "./media/characters/cintia/back-dick.svg",
  46727. extra: 1260/1166,
  46728. bottom: 98/1358
  46729. }
  46730. },
  46731. bust: {
  46732. height: math.unit(1.97, "meters"),
  46733. name: "Bust",
  46734. image: {
  46735. source: "./media/characters/cintia/bust.svg",
  46736. extra: 617/565,
  46737. bottom: 0/617
  46738. }
  46739. },
  46740. },
  46741. [
  46742. {
  46743. name: "Normal",
  46744. height: math.unit(5, "meters"),
  46745. default: true
  46746. },
  46747. ]
  46748. ))
  46749. characterMakers.push(() => makeCharacter(
  46750. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46751. {
  46752. side: {
  46753. height: math.unit(100, "feet"),
  46754. name: "Side",
  46755. image: {
  46756. source: "./media/characters/denora/side.svg",
  46757. extra: 875/803,
  46758. bottom: 9/884
  46759. }
  46760. },
  46761. },
  46762. [
  46763. {
  46764. name: "Standard",
  46765. height: math.unit(100, "feet"),
  46766. default: true
  46767. },
  46768. {
  46769. name: "Grand",
  46770. height: math.unit(1000, "feet")
  46771. },
  46772. {
  46773. name: "Conquering",
  46774. height: math.unit(10000, "feet")
  46775. },
  46776. ]
  46777. ))
  46778. characterMakers.push(() => makeCharacter(
  46779. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46780. {
  46781. dressed: {
  46782. height: math.unit(8 + 5/12, "feet"),
  46783. weight: math.unit(700, "lb"),
  46784. name: "Dressed",
  46785. image: {
  46786. source: "./media/characters/kiva/dressed.svg",
  46787. extra: 1102/1055,
  46788. bottom: 60/1162
  46789. }
  46790. },
  46791. nude: {
  46792. height: math.unit(8 + 5/12, "feet"),
  46793. weight: math.unit(700, "lb"),
  46794. name: "Nude",
  46795. image: {
  46796. source: "./media/characters/kiva/nude.svg",
  46797. extra: 1102/1055,
  46798. bottom: 60/1162
  46799. }
  46800. },
  46801. },
  46802. [
  46803. {
  46804. name: "Base Height",
  46805. height: math.unit(8 + 5/12, "feet"),
  46806. default: true
  46807. },
  46808. {
  46809. name: "Macro",
  46810. height: math.unit(100, "feet")
  46811. },
  46812. {
  46813. name: "Max",
  46814. height: math.unit(3280, "feet")
  46815. },
  46816. ]
  46817. ))
  46818. characterMakers.push(() => makeCharacter(
  46819. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46820. {
  46821. front: {
  46822. height: math.unit(6 + 8/12, "feet"),
  46823. weight: math.unit(250, "lb"),
  46824. name: "Front",
  46825. image: {
  46826. source: "./media/characters/ztragon/front.svg",
  46827. extra: 1825/1684,
  46828. bottom: 98/1923
  46829. }
  46830. },
  46831. },
  46832. [
  46833. {
  46834. name: "Normal",
  46835. height: math.unit(6 + 8/12, "feet"),
  46836. default: true
  46837. },
  46838. {
  46839. name: "Macro",
  46840. height: math.unit(80, "feet")
  46841. },
  46842. ]
  46843. ))
  46844. characterMakers.push(() => makeCharacter(
  46845. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46846. {
  46847. front: {
  46848. height: math.unit(10.4, "feet"),
  46849. weight: math.unit(2, "tons"),
  46850. name: "Front",
  46851. image: {
  46852. source: "./media/characters/yesenia/front.svg",
  46853. extra: 1479/1474,
  46854. bottom: 233/1712
  46855. }
  46856. },
  46857. },
  46858. [
  46859. {
  46860. name: "Normal",
  46861. height: math.unit(10.4, "feet"),
  46862. default: true
  46863. },
  46864. ]
  46865. ))
  46866. characterMakers.push(() => makeCharacter(
  46867. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46868. {
  46869. normal: {
  46870. height: math.unit(6 + 1/12, "feet"),
  46871. weight: math.unit(180, "lb"),
  46872. name: "Normal",
  46873. image: {
  46874. source: "./media/characters/leanne-lycheborne/normal.svg",
  46875. extra: 1748/1660,
  46876. bottom: 98/1846
  46877. }
  46878. },
  46879. were: {
  46880. height: math.unit(12, "feet"),
  46881. weight: math.unit(1600, "lb"),
  46882. name: "Were",
  46883. image: {
  46884. source: "./media/characters/leanne-lycheborne/were.svg",
  46885. extra: 1485/1432,
  46886. bottom: 66/1551
  46887. }
  46888. },
  46889. },
  46890. [
  46891. {
  46892. name: "Normal",
  46893. height: math.unit(6 + 1/12, "feet"),
  46894. default: true
  46895. },
  46896. ]
  46897. ))
  46898. characterMakers.push(() => makeCharacter(
  46899. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46900. {
  46901. side: {
  46902. height: math.unit(13, "feet"),
  46903. name: "Side",
  46904. image: {
  46905. source: "./media/characters/kira-tyler/side.svg",
  46906. extra: 693/393,
  46907. bottom: 58/751
  46908. }
  46909. },
  46910. },
  46911. [
  46912. {
  46913. name: "Normal",
  46914. height: math.unit(13, "feet"),
  46915. default: true
  46916. },
  46917. ]
  46918. ))
  46919. characterMakers.push(() => makeCharacter(
  46920. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46921. {
  46922. front: {
  46923. height: math.unit(10.3, "feet"),
  46924. weight: math.unit(150, "lb"),
  46925. name: "Front",
  46926. image: {
  46927. source: "./media/characters/blaze/front.svg",
  46928. extra: 1378/1286,
  46929. bottom: 172/1550
  46930. }
  46931. },
  46932. },
  46933. [
  46934. {
  46935. name: "Normal",
  46936. height: math.unit(10.3, "feet"),
  46937. default: true
  46938. },
  46939. ]
  46940. ))
  46941. characterMakers.push(() => makeCharacter(
  46942. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46943. {
  46944. side: {
  46945. height: math.unit(2, "meters"),
  46946. weight: math.unit(400, "kg"),
  46947. name: "Side",
  46948. image: {
  46949. source: "./media/characters/anu/side.svg",
  46950. extra: 506/394,
  46951. bottom: 18/524
  46952. }
  46953. },
  46954. },
  46955. [
  46956. {
  46957. name: "Humanoid",
  46958. height: math.unit(2, "meters")
  46959. },
  46960. {
  46961. name: "Normal",
  46962. height: math.unit(5, "meters"),
  46963. default: true
  46964. },
  46965. ]
  46966. ))
  46967. characterMakers.push(() => makeCharacter(
  46968. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46969. {
  46970. front: {
  46971. height: math.unit(5 + 5/12, "feet"),
  46972. weight: math.unit(170, "lb"),
  46973. name: "Front",
  46974. image: {
  46975. source: "./media/characters/synx-the-lynx/front.svg",
  46976. extra: 1893/1745,
  46977. bottom: 17/1910
  46978. }
  46979. },
  46980. side: {
  46981. height: math.unit(5 + 5/12, "feet"),
  46982. weight: math.unit(170, "lb"),
  46983. name: "Side",
  46984. image: {
  46985. source: "./media/characters/synx-the-lynx/side.svg",
  46986. extra: 1884/1740,
  46987. bottom: 39/1923
  46988. }
  46989. },
  46990. back: {
  46991. height: math.unit(5 + 5/12, "feet"),
  46992. weight: math.unit(170, "lb"),
  46993. name: "Back",
  46994. image: {
  46995. source: "./media/characters/synx-the-lynx/back.svg",
  46996. extra: 1903/1755,
  46997. bottom: 14/1917
  46998. }
  46999. },
  47000. },
  47001. [
  47002. {
  47003. name: "Normal",
  47004. height: math.unit(5 + 5/12, "feet"),
  47005. default: true
  47006. },
  47007. ]
  47008. ))
  47009. characterMakers.push(() => makeCharacter(
  47010. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47011. {
  47012. back: {
  47013. height: math.unit(15, "feet"),
  47014. name: "Back",
  47015. image: {
  47016. source: "./media/characters/nadezda-fex/back.svg",
  47017. extra: 1695/1481,
  47018. bottom: 25/1720
  47019. }
  47020. },
  47021. },
  47022. [
  47023. {
  47024. name: "Normal",
  47025. height: math.unit(15, "feet"),
  47026. default: true
  47027. },
  47028. {
  47029. name: "Macro",
  47030. height: math.unit(2.5, "miles")
  47031. },
  47032. {
  47033. name: "Goddess",
  47034. height: math.unit(2, "multiverses")
  47035. },
  47036. ]
  47037. ))
  47038. characterMakers.push(() => makeCharacter(
  47039. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47040. {
  47041. front: {
  47042. height: math.unit(216, "cm"),
  47043. name: "Front",
  47044. image: {
  47045. source: "./media/characters/lev/front.svg",
  47046. extra: 1728/1670,
  47047. bottom: 82/1810
  47048. }
  47049. },
  47050. back: {
  47051. height: math.unit(216, "cm"),
  47052. name: "Back",
  47053. image: {
  47054. source: "./media/characters/lev/back.svg",
  47055. extra: 1738/1675,
  47056. bottom: 24/1762
  47057. }
  47058. },
  47059. dressed: {
  47060. height: math.unit(216, "cm"),
  47061. name: "Dressed",
  47062. image: {
  47063. source: "./media/characters/lev/dressed.svg",
  47064. extra: 1397/1351,
  47065. bottom: 73/1470
  47066. }
  47067. },
  47068. head: {
  47069. height: math.unit(0.51, "meter"),
  47070. name: "Head",
  47071. image: {
  47072. source: "./media/characters/lev/head.svg"
  47073. }
  47074. },
  47075. },
  47076. [
  47077. {
  47078. name: "Normal",
  47079. height: math.unit(216, "cm"),
  47080. default: true
  47081. },
  47082. {
  47083. name: "Relatively Macro",
  47084. height: math.unit(80, "meters")
  47085. },
  47086. {
  47087. name: "Megamacro",
  47088. height: math.unit(21600, "meters")
  47089. },
  47090. {
  47091. name: "Megamacro+",
  47092. height: math.unit(64800, "meters")
  47093. },
  47094. ]
  47095. ))
  47096. characterMakers.push(() => makeCharacter(
  47097. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47098. {
  47099. front: {
  47100. height: math.unit(2, "meters"),
  47101. weight: math.unit(80, "kg"),
  47102. name: "Front",
  47103. image: {
  47104. source: "./media/characters/moka/front.svg",
  47105. extra: 1337/1255,
  47106. bottom: 58/1395
  47107. }
  47108. },
  47109. },
  47110. [
  47111. {
  47112. name: "Micro",
  47113. height: math.unit(15, "cm")
  47114. },
  47115. {
  47116. name: "Normal",
  47117. height: math.unit(2, "meters"),
  47118. default: true
  47119. },
  47120. {
  47121. name: "Macro",
  47122. height: math.unit(20, "meters"),
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(9, "feet"),
  47131. weight: math.unit(240, "lb"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/kuzco/front.svg",
  47135. extra: 1593/1487,
  47136. bottom: 32/1625
  47137. }
  47138. },
  47139. side: {
  47140. height: math.unit(9, "feet"),
  47141. weight: math.unit(240, "lb"),
  47142. name: "Side",
  47143. image: {
  47144. source: "./media/characters/kuzco/side.svg",
  47145. extra: 1575/1485,
  47146. bottom: 30/1605
  47147. }
  47148. },
  47149. back: {
  47150. height: math.unit(9, "feet"),
  47151. weight: math.unit(240, "lb"),
  47152. name: "Back",
  47153. image: {
  47154. source: "./media/characters/kuzco/back.svg",
  47155. extra: 1603/1514,
  47156. bottom: 14/1617
  47157. }
  47158. },
  47159. },
  47160. [
  47161. {
  47162. name: "Normal",
  47163. height: math.unit(9, "feet"),
  47164. default: true
  47165. },
  47166. ]
  47167. ))
  47168. characterMakers.push(() => makeCharacter(
  47169. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47170. {
  47171. side: {
  47172. height: math.unit(2, "meters"),
  47173. weight: math.unit(300, "kg"),
  47174. name: "Side",
  47175. image: {
  47176. source: "./media/characters/ceruleus/side.svg",
  47177. extra: 1068/974,
  47178. bottom: 126/1194
  47179. }
  47180. },
  47181. maw: {
  47182. height: math.unit(0.8125, "meter"),
  47183. name: "Maw",
  47184. image: {
  47185. source: "./media/characters/ceruleus/maw.svg"
  47186. }
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(16, "meters"),
  47193. default: true
  47194. },
  47195. ]
  47196. ))
  47197. characterMakers.push(() => makeCharacter(
  47198. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47199. {
  47200. front: {
  47201. height: math.unit(9, "feet"),
  47202. weight: math.unit(500, "kg"),
  47203. name: "Front",
  47204. image: {
  47205. source: "./media/characters/acouya/front.svg",
  47206. extra: 1660/1473,
  47207. bottom: 28/1688
  47208. }
  47209. },
  47210. },
  47211. [
  47212. {
  47213. name: "Normal",
  47214. height: math.unit(9, "feet"),
  47215. default: true
  47216. },
  47217. ]
  47218. ))
  47219. characterMakers.push(() => makeCharacter(
  47220. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47221. {
  47222. front: {
  47223. height: math.unit(5 + 6/12, "feet"),
  47224. weight: math.unit(195, "lb"),
  47225. name: "Front",
  47226. image: {
  47227. source: "./media/characters/vant/front.svg",
  47228. extra: 1396/1320,
  47229. bottom: 20/1416
  47230. }
  47231. },
  47232. back: {
  47233. height: math.unit(5 + 6/12, "feet"),
  47234. weight: math.unit(195, "lb"),
  47235. name: "Back",
  47236. image: {
  47237. source: "./media/characters/vant/back.svg",
  47238. extra: 1396/1320,
  47239. bottom: 20/1416
  47240. }
  47241. },
  47242. maw: {
  47243. height: math.unit(0.75, "feet"),
  47244. name: "Maw",
  47245. image: {
  47246. source: "./media/characters/vant/maw.svg"
  47247. }
  47248. },
  47249. paw: {
  47250. height: math.unit(1.07, "feet"),
  47251. name: "Paw",
  47252. image: {
  47253. source: "./media/characters/vant/paw.svg"
  47254. }
  47255. },
  47256. },
  47257. [
  47258. {
  47259. name: "Micro",
  47260. height: math.unit(0.25, "inches")
  47261. },
  47262. {
  47263. name: "Normal",
  47264. height: math.unit(5 + 6/12, "feet"),
  47265. default: true
  47266. },
  47267. {
  47268. name: "Macro",
  47269. height: math.unit(75, "feet")
  47270. },
  47271. ]
  47272. ))
  47273. characterMakers.push(() => makeCharacter(
  47274. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47275. {
  47276. front: {
  47277. height: math.unit(30, "meters"),
  47278. weight: math.unit(363, "tons"),
  47279. name: "Front",
  47280. image: {
  47281. source: "./media/characters/ahra/front.svg",
  47282. extra: 1914/1814,
  47283. bottom: 46/1960
  47284. }
  47285. },
  47286. },
  47287. [
  47288. {
  47289. name: "Macro",
  47290. height: math.unit(30, "meters"),
  47291. default: true
  47292. },
  47293. ]
  47294. ))
  47295. characterMakers.push(() => makeCharacter(
  47296. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47297. {
  47298. undressed: {
  47299. height: math.unit(2, "m"),
  47300. weight: math.unit(250, "kg"),
  47301. name: "Undressed",
  47302. image: {
  47303. source: "./media/characters/coriander/undressed.svg",
  47304. extra: 1757/1606,
  47305. bottom: 107/1864
  47306. }
  47307. },
  47308. dressed: {
  47309. height: math.unit(2, "m"),
  47310. weight: math.unit(250, "kg"),
  47311. name: "Dressed",
  47312. image: {
  47313. source: "./media/characters/coriander/dressed.svg",
  47314. extra: 1757/1606,
  47315. bottom: 107/1864
  47316. }
  47317. },
  47318. },
  47319. [
  47320. {
  47321. name: "Normal",
  47322. height: math.unit(4, "meters"),
  47323. default: true
  47324. },
  47325. {
  47326. name: "XL",
  47327. height: math.unit(6, "meters")
  47328. },
  47329. {
  47330. name: "XXL",
  47331. height: math.unit(8, "meters")
  47332. },
  47333. ]
  47334. ))
  47335. characterMakers.push(() => makeCharacter(
  47336. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47337. {
  47338. front: {
  47339. height: math.unit(6, "feet"),
  47340. name: "Front",
  47341. image: {
  47342. source: "./media/characters/syrinx/front.svg",
  47343. extra: 1557/1259,
  47344. bottom: 171/1728
  47345. }
  47346. },
  47347. },
  47348. [
  47349. {
  47350. name: "Normal",
  47351. height: math.unit(6 + 3/12, "feet"),
  47352. default: true
  47353. },
  47354. ]
  47355. ))
  47356. characterMakers.push(() => makeCharacter(
  47357. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47358. {
  47359. front: {
  47360. height: math.unit(11 + 6/12, "feet"),
  47361. weight: math.unit(1.5, "tons"),
  47362. name: "Front",
  47363. image: {
  47364. source: "./media/characters/bor/front.svg",
  47365. extra: 1189/1109,
  47366. bottom: 170/1359
  47367. }
  47368. },
  47369. },
  47370. [
  47371. {
  47372. name: "Normal",
  47373. height: math.unit(11 + 6/12, "feet"),
  47374. default: true
  47375. },
  47376. {
  47377. name: "Macro",
  47378. height: math.unit(32 + 9/12, "feet")
  47379. },
  47380. ]
  47381. ))
  47382. characterMakers.push(() => makeCharacter(
  47383. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47384. {
  47385. anthro: {
  47386. height: math.unit(9, "feet"),
  47387. weight: math.unit(2076, "lb"),
  47388. name: "Anthro",
  47389. image: {
  47390. source: "./media/characters/abacus/anthro.svg",
  47391. extra: 1540/1494,
  47392. bottom: 233/1773
  47393. }
  47394. },
  47395. pigeon: {
  47396. height: math.unit(1, "feet"),
  47397. name: "Pigeon",
  47398. image: {
  47399. source: "./media/characters/abacus/pigeon.svg",
  47400. extra: 528/525,
  47401. bottom: 46/574
  47402. }
  47403. },
  47404. },
  47405. [
  47406. {
  47407. name: "Normal",
  47408. height: math.unit(9, "feet"),
  47409. default: true
  47410. },
  47411. ]
  47412. ))
  47413. characterMakers.push(() => makeCharacter(
  47414. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47415. {
  47416. side: {
  47417. height: math.unit(6, "feet"),
  47418. name: "Side",
  47419. image: {
  47420. source: "./media/characters/delkhan/side.svg",
  47421. extra: 1884/1786,
  47422. bottom: 308/2192
  47423. }
  47424. },
  47425. head: {
  47426. height: math.unit(3.38, "feet"),
  47427. name: "Head",
  47428. image: {
  47429. source: "./media/characters/delkhan/head.svg"
  47430. }
  47431. },
  47432. },
  47433. [
  47434. {
  47435. name: "Normal",
  47436. height: math.unit(72, "feet"),
  47437. default: true
  47438. },
  47439. {
  47440. name: "Giant",
  47441. height: math.unit(172, "feet")
  47442. },
  47443. ]
  47444. ))
  47445. characterMakers.push(() => makeCharacter(
  47446. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47447. {
  47448. standing: {
  47449. height: math.unit(6, "feet"),
  47450. name: "Standing",
  47451. image: {
  47452. source: "./media/characters/euchidat/standing.svg",
  47453. extra: 1612/1553,
  47454. bottom: 116/1728
  47455. }
  47456. },
  47457. leaning: {
  47458. height: math.unit(6, "feet"),
  47459. name: "Leaning",
  47460. image: {
  47461. source: "./media/characters/euchidat/leaning.svg",
  47462. extra: 1719/1674,
  47463. bottom: 27/1746
  47464. }
  47465. },
  47466. },
  47467. [
  47468. {
  47469. name: "Normal",
  47470. height: math.unit(175, "feet"),
  47471. default: true
  47472. },
  47473. {
  47474. name: "Megamacro",
  47475. height: math.unit(190, "miles")
  47476. },
  47477. {
  47478. name: "Gigamacro",
  47479. height: math.unit(190000, "miles")
  47480. },
  47481. ]
  47482. ))
  47483. characterMakers.push(() => makeCharacter(
  47484. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47485. {
  47486. front: {
  47487. height: math.unit(6, "feet"),
  47488. weight: math.unit(150, "lb"),
  47489. name: "Front",
  47490. image: {
  47491. source: "./media/characters/rebecca-stack/front.svg",
  47492. extra: 1256/1201,
  47493. bottom: 18/1274
  47494. }
  47495. },
  47496. },
  47497. [
  47498. {
  47499. name: "Normal",
  47500. height: math.unit(5 + 8/12, "feet"),
  47501. default: true
  47502. },
  47503. {
  47504. name: "Demolitionist",
  47505. height: math.unit(200, "feet")
  47506. },
  47507. {
  47508. name: "Out of Control",
  47509. height: math.unit(2, "miles")
  47510. },
  47511. {
  47512. name: "Giga",
  47513. height: math.unit(7200, "miles")
  47514. },
  47515. ]
  47516. ))
  47517. characterMakers.push(() => makeCharacter(
  47518. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47519. {
  47520. front: {
  47521. height: math.unit(6, "feet"),
  47522. weight: math.unit(150, "lb"),
  47523. name: "Front",
  47524. image: {
  47525. source: "./media/characters/jenny-cartwright/front.svg",
  47526. extra: 1384/1376,
  47527. bottom: 58/1442
  47528. }
  47529. },
  47530. },
  47531. [
  47532. {
  47533. name: "Normal",
  47534. height: math.unit(6 + 7/12, "feet"),
  47535. default: true
  47536. },
  47537. {
  47538. name: "Librarian",
  47539. height: math.unit(55, "feet")
  47540. },
  47541. {
  47542. name: "Sightseer",
  47543. height: math.unit(50, "miles")
  47544. },
  47545. {
  47546. name: "Giga",
  47547. height: math.unit(30000, "miles")
  47548. },
  47549. ]
  47550. ))
  47551. characterMakers.push(() => makeCharacter(
  47552. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47553. {
  47554. nude: {
  47555. height: math.unit(8, "feet"),
  47556. weight: math.unit(225, "lb"),
  47557. name: "Nude",
  47558. image: {
  47559. source: "./media/characters/marvy/nude.svg",
  47560. extra: 1900/1683,
  47561. bottom: 89/1989
  47562. }
  47563. },
  47564. dressed: {
  47565. height: math.unit(8, "feet"),
  47566. weight: math.unit(225, "lb"),
  47567. name: "Dressed",
  47568. image: {
  47569. source: "./media/characters/marvy/dressed.svg",
  47570. extra: 1900/1683,
  47571. bottom: 89/1989
  47572. }
  47573. },
  47574. head: {
  47575. height: math.unit(2.85, "feet"),
  47576. name: "Head",
  47577. image: {
  47578. source: "./media/characters/marvy/head.svg"
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Normal",
  47585. height: math.unit(8, "feet"),
  47586. default: true
  47587. },
  47588. ]
  47589. ))
  47590. characterMakers.push(() => makeCharacter(
  47591. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47592. {
  47593. front: {
  47594. height: math.unit(8, "feet"),
  47595. weight: math.unit(250, "lb"),
  47596. name: "Front",
  47597. image: {
  47598. source: "./media/characters/leah/front.svg",
  47599. extra: 1257/1149,
  47600. bottom: 109/1366
  47601. }
  47602. },
  47603. },
  47604. [
  47605. {
  47606. name: "Normal",
  47607. height: math.unit(8, "feet"),
  47608. default: true
  47609. },
  47610. {
  47611. name: "Minimacro",
  47612. height: math.unit(40, "feet")
  47613. },
  47614. {
  47615. name: "Macro",
  47616. height: math.unit(124, "feet")
  47617. },
  47618. {
  47619. name: "Megamacro",
  47620. height: math.unit(850, "feet")
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47626. {
  47627. side: {
  47628. height: math.unit(13 + 6/12, "feet"),
  47629. weight: math.unit(3200, "lb"),
  47630. name: "Side",
  47631. image: {
  47632. source: "./media/characters/alvir/side.svg",
  47633. extra: 896/589,
  47634. bottom: 26/922
  47635. }
  47636. },
  47637. },
  47638. [
  47639. {
  47640. name: "Normal",
  47641. height: math.unit(13 + 6/12, "feet"),
  47642. default: true
  47643. },
  47644. ]
  47645. ))
  47646. characterMakers.push(() => makeCharacter(
  47647. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47648. {
  47649. front: {
  47650. height: math.unit(5 + 4/12, "feet"),
  47651. weight: math.unit(236, "lb"),
  47652. name: "Front",
  47653. image: {
  47654. source: "./media/characters/zaina-khalil/front.svg",
  47655. extra: 1533/1485,
  47656. bottom: 94/1627
  47657. }
  47658. },
  47659. side: {
  47660. height: math.unit(5 + 4/12, "feet"),
  47661. weight: math.unit(236, "lb"),
  47662. name: "Side",
  47663. image: {
  47664. source: "./media/characters/zaina-khalil/side.svg",
  47665. extra: 1537/1498,
  47666. bottom: 66/1603
  47667. }
  47668. },
  47669. back: {
  47670. height: math.unit(5 + 4/12, "feet"),
  47671. weight: math.unit(236, "lb"),
  47672. name: "Back",
  47673. image: {
  47674. source: "./media/characters/zaina-khalil/back.svg",
  47675. extra: 1546/1494,
  47676. bottom: 89/1635
  47677. }
  47678. },
  47679. },
  47680. [
  47681. {
  47682. name: "Normal",
  47683. height: math.unit(5 + 4/12, "feet"),
  47684. default: true
  47685. },
  47686. ]
  47687. ))
  47688. characterMakers.push(() => makeCharacter(
  47689. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47690. {
  47691. side: {
  47692. height: math.unit(12, "feet"),
  47693. weight: math.unit(4000, "lb"),
  47694. name: "Side",
  47695. image: {
  47696. source: "./media/characters/terry/side.svg",
  47697. extra: 1518/1439,
  47698. bottom: 149/1667
  47699. }
  47700. },
  47701. },
  47702. [
  47703. {
  47704. name: "Normal",
  47705. height: math.unit(12, "feet"),
  47706. default: true
  47707. },
  47708. ]
  47709. ))
  47710. characterMakers.push(() => makeCharacter(
  47711. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47712. {
  47713. front: {
  47714. height: math.unit(12, "feet"),
  47715. weight: math.unit(1500, "lb"),
  47716. name: "Front",
  47717. image: {
  47718. source: "./media/characters/kahea/front.svg",
  47719. extra: 1722/1617,
  47720. bottom: 179/1901
  47721. }
  47722. },
  47723. },
  47724. [
  47725. {
  47726. name: "Normal",
  47727. height: math.unit(12, "feet"),
  47728. default: true
  47729. },
  47730. ]
  47731. ))
  47732. characterMakers.push(() => makeCharacter(
  47733. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47734. {
  47735. demonFront: {
  47736. height: math.unit(36, "feet"),
  47737. name: "Front",
  47738. image: {
  47739. source: "./media/characters/alex-xuria/demon-front.svg",
  47740. extra: 1705/1673,
  47741. bottom: 198/1903
  47742. },
  47743. form: "demon",
  47744. default: true
  47745. },
  47746. demonBack: {
  47747. height: math.unit(36, "feet"),
  47748. name: "Back",
  47749. image: {
  47750. source: "./media/characters/alex-xuria/demon-back.svg",
  47751. extra: 1725/1693,
  47752. bottom: 70/1795
  47753. },
  47754. form: "demon"
  47755. },
  47756. demonHead: {
  47757. height: math.unit(2.14, "meters"),
  47758. name: "Head",
  47759. image: {
  47760. source: "./media/characters/alex-xuria/demon-head.svg"
  47761. },
  47762. form: "demon"
  47763. },
  47764. demonHand: {
  47765. height: math.unit(1.61, "meters"),
  47766. name: "Hand",
  47767. image: {
  47768. source: "./media/characters/alex-xuria/demon-hand.svg"
  47769. },
  47770. form: "demon"
  47771. },
  47772. demonPaw: {
  47773. height: math.unit(1.35, "meters"),
  47774. name: "Paw",
  47775. image: {
  47776. source: "./media/characters/alex-xuria/demon-paw.svg"
  47777. },
  47778. form: "demon"
  47779. },
  47780. demonFoot: {
  47781. height: math.unit(2.2, "meters"),
  47782. name: "Foot",
  47783. image: {
  47784. source: "./media/characters/alex-xuria/demon-foot.svg"
  47785. },
  47786. form: "demon"
  47787. },
  47788. demonCock: {
  47789. height: math.unit(1.74, "meters"),
  47790. name: "Cock",
  47791. image: {
  47792. source: "./media/characters/alex-xuria/demon-cock.svg"
  47793. },
  47794. form: "demon"
  47795. },
  47796. demonTailClosed: {
  47797. height: math.unit(1.47, "meters"),
  47798. name: "Tail (Closed)",
  47799. image: {
  47800. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47801. },
  47802. form: "demon"
  47803. },
  47804. demonTailOpen: {
  47805. height: math.unit(2.85, "meters"),
  47806. name: "Tail (Open)",
  47807. image: {
  47808. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47809. },
  47810. form: "demon"
  47811. },
  47812. incubusFront: {
  47813. height: math.unit(12, "feet"),
  47814. name: "Front",
  47815. image: {
  47816. source: "./media/characters/alex-xuria/incubus-front.svg",
  47817. extra: 1754/1677,
  47818. bottom: 125/1879
  47819. },
  47820. form: "incubus",
  47821. default: true
  47822. },
  47823. incubusBack: {
  47824. height: math.unit(12, "feet"),
  47825. name: "Back",
  47826. image: {
  47827. source: "./media/characters/alex-xuria/incubus-back.svg",
  47828. extra: 1702/1647,
  47829. bottom: 30/1732
  47830. },
  47831. form: "incubus"
  47832. },
  47833. incubusHead: {
  47834. height: math.unit(3.45, "feet"),
  47835. name: "Head",
  47836. image: {
  47837. source: "./media/characters/alex-xuria/incubus-head.svg"
  47838. },
  47839. form: "incubus"
  47840. },
  47841. rabbitFront: {
  47842. height: math.unit(6, "feet"),
  47843. name: "Front",
  47844. image: {
  47845. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47846. extra: 1369/1349,
  47847. bottom: 45/1414
  47848. },
  47849. form: "rabbit",
  47850. default: true
  47851. },
  47852. rabbitSide: {
  47853. height: math.unit(6, "feet"),
  47854. name: "Side",
  47855. image: {
  47856. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47857. extra: 1370/1356,
  47858. bottom: 37/1407
  47859. },
  47860. form: "rabbit"
  47861. },
  47862. rabbitBack: {
  47863. height: math.unit(6, "feet"),
  47864. name: "Back",
  47865. image: {
  47866. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47867. extra: 1375/1358,
  47868. bottom: 43/1418
  47869. },
  47870. form: "rabbit"
  47871. },
  47872. },
  47873. [
  47874. {
  47875. name: "Normal",
  47876. height: math.unit(6, "feet"),
  47877. default: true,
  47878. form: "rabbit"
  47879. },
  47880. {
  47881. name: "Incubus",
  47882. height: math.unit(12, "feet"),
  47883. default: true,
  47884. form: "incubus"
  47885. },
  47886. {
  47887. name: "Demon",
  47888. height: math.unit(36, "feet"),
  47889. default: true,
  47890. form: "demon"
  47891. }
  47892. ],
  47893. {
  47894. "demon": {
  47895. name: "Demon",
  47896. default: true
  47897. },
  47898. "incubus": {
  47899. name: "Incubus",
  47900. },
  47901. "rabbit": {
  47902. name: "Rabbit"
  47903. }
  47904. }
  47905. ))
  47906. characterMakers.push(() => makeCharacter(
  47907. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47908. {
  47909. front: {
  47910. height: math.unit(7 + 5/12, "feet"),
  47911. weight: math.unit(510, "lb"),
  47912. name: "Front",
  47913. image: {
  47914. source: "./media/characters/syrup/front.svg",
  47915. extra: 932/916,
  47916. bottom: 26/958
  47917. }
  47918. },
  47919. },
  47920. [
  47921. {
  47922. name: "Normal",
  47923. height: math.unit(7 + 5/12, "feet"),
  47924. default: true
  47925. },
  47926. {
  47927. name: "Big",
  47928. height: math.unit(50, "feet")
  47929. },
  47930. {
  47931. name: "Macro",
  47932. height: math.unit(300, "feet")
  47933. },
  47934. {
  47935. name: "Megamacro",
  47936. height: math.unit(1, "mile")
  47937. },
  47938. ]
  47939. ))
  47940. characterMakers.push(() => makeCharacter(
  47941. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47942. {
  47943. front: {
  47944. height: math.unit(6 + 9/12, "feet"),
  47945. name: "Front",
  47946. image: {
  47947. source: "./media/characters/zeimne/front.svg",
  47948. extra: 1969/1806,
  47949. bottom: 53/2022
  47950. }
  47951. },
  47952. },
  47953. [
  47954. {
  47955. name: "Normal",
  47956. height: math.unit(6 + 9/12, "feet"),
  47957. default: true
  47958. },
  47959. {
  47960. name: "Giant",
  47961. height: math.unit(550, "feet")
  47962. },
  47963. {
  47964. name: "Mega",
  47965. height: math.unit(3, "miles")
  47966. },
  47967. {
  47968. name: "Giga",
  47969. height: math.unit(250, "miles")
  47970. },
  47971. {
  47972. name: "Tera",
  47973. height: math.unit(1, "AU")
  47974. },
  47975. ]
  47976. ))
  47977. characterMakers.push(() => makeCharacter(
  47978. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47979. {
  47980. front: {
  47981. height: math.unit(5 + 2/12, "feet"),
  47982. name: "Front",
  47983. image: {
  47984. source: "./media/characters/grar/front.svg",
  47985. extra: 1331/1119,
  47986. bottom: 60/1391
  47987. }
  47988. },
  47989. back: {
  47990. height: math.unit(5 + 2/12, "feet"),
  47991. name: "Back",
  47992. image: {
  47993. source: "./media/characters/grar/back.svg",
  47994. extra: 1385/1169,
  47995. bottom: 23/1408
  47996. }
  47997. },
  47998. },
  47999. [
  48000. {
  48001. name: "Normal",
  48002. height: math.unit(5 + 2/12, "feet"),
  48003. default: true
  48004. },
  48005. ]
  48006. ))
  48007. characterMakers.push(() => makeCharacter(
  48008. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48009. {
  48010. front: {
  48011. height: math.unit(13 + 7/12, "feet"),
  48012. weight: math.unit(2200, "lb"),
  48013. name: "Front",
  48014. image: {
  48015. source: "./media/characters/endraya/front.svg",
  48016. extra: 1289/1215,
  48017. bottom: 50/1339
  48018. }
  48019. },
  48020. nude: {
  48021. height: math.unit(13 + 7/12, "feet"),
  48022. weight: math.unit(2200, "lb"),
  48023. name: "Nude",
  48024. image: {
  48025. source: "./media/characters/endraya/nude.svg",
  48026. extra: 1247/1171,
  48027. bottom: 40/1287
  48028. }
  48029. },
  48030. head: {
  48031. height: math.unit(2.6, "feet"),
  48032. name: "Head",
  48033. image: {
  48034. source: "./media/characters/endraya/head.svg"
  48035. }
  48036. },
  48037. slit: {
  48038. height: math.unit(3.4, "feet"),
  48039. name: "Slit",
  48040. image: {
  48041. source: "./media/characters/endraya/slit.svg"
  48042. }
  48043. },
  48044. },
  48045. [
  48046. {
  48047. name: "Normal",
  48048. height: math.unit(13 + 7/12, "feet"),
  48049. default: true
  48050. },
  48051. {
  48052. name: "Macro",
  48053. height: math.unit(200, "feet")
  48054. },
  48055. ]
  48056. ))
  48057. characterMakers.push(() => makeCharacter(
  48058. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48059. {
  48060. front: {
  48061. height: math.unit(1.81, "meters"),
  48062. weight: math.unit(69, "kg"),
  48063. name: "Front",
  48064. image: {
  48065. source: "./media/characters/rodryana/front.svg",
  48066. extra: 2002/1921,
  48067. bottom: 53/2055
  48068. }
  48069. },
  48070. back: {
  48071. height: math.unit(1.81, "meters"),
  48072. weight: math.unit(69, "kg"),
  48073. name: "Back",
  48074. image: {
  48075. source: "./media/characters/rodryana/back.svg",
  48076. extra: 1993/1926,
  48077. bottom: 48/2041
  48078. }
  48079. },
  48080. maw: {
  48081. height: math.unit(0.19769417475, "meters"),
  48082. name: "Maw",
  48083. image: {
  48084. source: "./media/characters/rodryana/maw.svg"
  48085. }
  48086. },
  48087. slit: {
  48088. height: math.unit(0.31631067961, "meters"),
  48089. name: "Slit",
  48090. image: {
  48091. source: "./media/characters/rodryana/slit.svg"
  48092. }
  48093. },
  48094. },
  48095. [
  48096. {
  48097. name: "Normal",
  48098. height: math.unit(1.81, "meters")
  48099. },
  48100. {
  48101. name: "Mini Macro",
  48102. height: math.unit(181, "meters")
  48103. },
  48104. {
  48105. name: "Macro",
  48106. height: math.unit(452, "meters"),
  48107. default: true
  48108. },
  48109. {
  48110. name: "Mega Macro",
  48111. height: math.unit(1.375, "km")
  48112. },
  48113. {
  48114. name: "Giga Macro",
  48115. height: math.unit(13.575, "km")
  48116. },
  48117. ]
  48118. ))
  48119. characterMakers.push(() => makeCharacter(
  48120. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48121. {
  48122. front: {
  48123. height: math.unit(6, "feet"),
  48124. weight: math.unit(1000, "lb"),
  48125. name: "Front",
  48126. image: {
  48127. source: "./media/characters/asaya/front.svg",
  48128. extra: 1460/1200,
  48129. bottom: 71/1531
  48130. }
  48131. },
  48132. },
  48133. [
  48134. {
  48135. name: "Normal",
  48136. height: math.unit(8, "km"),
  48137. default: true
  48138. },
  48139. ]
  48140. ))
  48141. characterMakers.push(() => makeCharacter(
  48142. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48143. {
  48144. front: {
  48145. height: math.unit(3.5, "meters"),
  48146. name: "Front",
  48147. image: {
  48148. source: "./media/characters/sarzu-and-israz/front.svg",
  48149. extra: 1570/1558,
  48150. bottom: 150/1720
  48151. },
  48152. },
  48153. back: {
  48154. height: math.unit(3.5, "meters"),
  48155. name: "Back",
  48156. image: {
  48157. source: "./media/characters/sarzu-and-israz/back.svg",
  48158. extra: 1523/1509,
  48159. bottom: 132/1655
  48160. },
  48161. },
  48162. frontFemale: {
  48163. height: math.unit(3.5, "meters"),
  48164. name: "Front (Female)",
  48165. image: {
  48166. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48167. extra: 1570/1558,
  48168. bottom: 150/1720
  48169. },
  48170. },
  48171. frontHerm: {
  48172. height: math.unit(3.5, "meters"),
  48173. name: "Front (Herm)",
  48174. image: {
  48175. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48176. extra: 1570/1558,
  48177. bottom: 150/1720
  48178. },
  48179. },
  48180. },
  48181. [
  48182. {
  48183. name: "Normal",
  48184. height: math.unit(3.5, "meters"),
  48185. default: true,
  48186. },
  48187. {
  48188. name: "Macro",
  48189. height: math.unit(65.5, "meters"),
  48190. },
  48191. ],
  48192. ))
  48193. characterMakers.push(() => makeCharacter(
  48194. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48195. {
  48196. front: {
  48197. height: math.unit(6, "feet"),
  48198. weight: math.unit(250, "lb"),
  48199. name: "Front",
  48200. image: {
  48201. source: "./media/characters/zenimma/front.svg",
  48202. extra: 1346/1320,
  48203. bottom: 58/1404
  48204. }
  48205. },
  48206. back: {
  48207. height: math.unit(6, "feet"),
  48208. weight: math.unit(250, "lb"),
  48209. name: "Back",
  48210. image: {
  48211. source: "./media/characters/zenimma/back.svg",
  48212. extra: 1324/1308,
  48213. bottom: 44/1368
  48214. }
  48215. },
  48216. dick: {
  48217. height: math.unit(1.44, "feet"),
  48218. name: "Dick",
  48219. image: {
  48220. source: "./media/characters/zenimma/dick.svg"
  48221. }
  48222. },
  48223. },
  48224. [
  48225. {
  48226. name: "Canon Height",
  48227. height: math.unit(66, "miles"),
  48228. default: true
  48229. },
  48230. ]
  48231. ))
  48232. characterMakers.push(() => makeCharacter(
  48233. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48234. {
  48235. nude: {
  48236. height: math.unit(6, "feet"),
  48237. weight: math.unit(150, "lb"),
  48238. name: "Nude",
  48239. image: {
  48240. source: "./media/characters/shavon/nude.svg",
  48241. extra: 1242/1096,
  48242. bottom: 98/1340
  48243. }
  48244. },
  48245. dressed: {
  48246. height: math.unit(6, "feet"),
  48247. weight: math.unit(150, "lb"),
  48248. name: "Dressed",
  48249. image: {
  48250. source: "./media/characters/shavon/dressed.svg",
  48251. extra: 1242/1096,
  48252. bottom: 98/1340
  48253. }
  48254. },
  48255. },
  48256. [
  48257. {
  48258. name: "Macro",
  48259. height: math.unit(255, "feet"),
  48260. default: true
  48261. },
  48262. ]
  48263. ))
  48264. characterMakers.push(() => makeCharacter(
  48265. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48266. {
  48267. front: {
  48268. height: math.unit(6, "feet"),
  48269. name: "Front",
  48270. image: {
  48271. source: "./media/characters/steph/front.svg",
  48272. extra: 1430/1330,
  48273. bottom: 54/1484
  48274. }
  48275. },
  48276. },
  48277. [
  48278. {
  48279. name: "Normal",
  48280. height: math.unit(6, "feet"),
  48281. default: true
  48282. },
  48283. ]
  48284. ))
  48285. characterMakers.push(() => makeCharacter(
  48286. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48287. {
  48288. front: {
  48289. height: math.unit(9, "feet"),
  48290. weight: math.unit(400, "lb"),
  48291. name: "Front",
  48292. image: {
  48293. source: "./media/characters/kil'aman/front.svg",
  48294. extra: 1210/1159,
  48295. bottom: 109/1319
  48296. }
  48297. },
  48298. head: {
  48299. height: math.unit(2.14, "feet"),
  48300. name: "Head",
  48301. image: {
  48302. source: "./media/characters/kil'aman/head.svg"
  48303. }
  48304. },
  48305. maw: {
  48306. height: math.unit(1.21, "feet"),
  48307. name: "Maw",
  48308. image: {
  48309. source: "./media/characters/kil'aman/maw.svg"
  48310. }
  48311. },
  48312. foot: {
  48313. height: math.unit(1.7, "feet"),
  48314. name: "Foot",
  48315. image: {
  48316. source: "./media/characters/kil'aman/foot.svg"
  48317. }
  48318. },
  48319. dick: {
  48320. height: math.unit(2.1, "feet"),
  48321. name: "Dick",
  48322. image: {
  48323. source: "./media/characters/kil'aman/dick.svg"
  48324. }
  48325. },
  48326. },
  48327. [
  48328. {
  48329. name: "Normal",
  48330. height: math.unit(9, "feet")
  48331. },
  48332. {
  48333. name: "Canon Height",
  48334. height: math.unit(10, "miles"),
  48335. default: true
  48336. },
  48337. {
  48338. name: "Maximum",
  48339. height: math.unit(6e9, "miles")
  48340. },
  48341. ]
  48342. ))
  48343. characterMakers.push(() => makeCharacter(
  48344. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48345. {
  48346. front: {
  48347. height: math.unit(90, "feet"),
  48348. weight: math.unit(675000, "lb"),
  48349. name: "Front",
  48350. image: {
  48351. source: "./media/characters/qadan/front.svg",
  48352. extra: 1012/1004,
  48353. bottom: 78/1090
  48354. }
  48355. },
  48356. back: {
  48357. height: math.unit(90, "feet"),
  48358. weight: math.unit(675000, "lb"),
  48359. name: "Back",
  48360. image: {
  48361. source: "./media/characters/qadan/back.svg",
  48362. extra: 1042/1031,
  48363. bottom: 55/1097
  48364. }
  48365. },
  48366. armored: {
  48367. height: math.unit(90, "feet"),
  48368. weight: math.unit(675000, "lb"),
  48369. name: "Armored",
  48370. image: {
  48371. source: "./media/characters/qadan/armored.svg",
  48372. extra: 1047/1037,
  48373. bottom: 48/1095
  48374. }
  48375. },
  48376. },
  48377. [
  48378. {
  48379. name: "Normal",
  48380. height: math.unit(90, "feet"),
  48381. default: true
  48382. },
  48383. ]
  48384. ))
  48385. characterMakers.push(() => makeCharacter(
  48386. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48387. {
  48388. front: {
  48389. height: math.unit(6, "feet"),
  48390. weight: math.unit(225, "lb"),
  48391. name: "Front",
  48392. image: {
  48393. source: "./media/characters/brooke/front.svg",
  48394. extra: 1050/1010,
  48395. bottom: 66/1116
  48396. }
  48397. },
  48398. back: {
  48399. height: math.unit(6, "feet"),
  48400. weight: math.unit(225, "lb"),
  48401. name: "Back",
  48402. image: {
  48403. source: "./media/characters/brooke/back.svg",
  48404. extra: 1053/1013,
  48405. bottom: 41/1094
  48406. }
  48407. },
  48408. dressed: {
  48409. height: math.unit(6, "feet"),
  48410. weight: math.unit(225, "lb"),
  48411. name: "Dressed",
  48412. image: {
  48413. source: "./media/characters/brooke/dressed.svg",
  48414. extra: 1050/1010,
  48415. bottom: 66/1116
  48416. }
  48417. },
  48418. },
  48419. [
  48420. {
  48421. name: "Canon Height",
  48422. height: math.unit(500, "miles"),
  48423. default: true
  48424. },
  48425. ]
  48426. ))
  48427. characterMakers.push(() => makeCharacter(
  48428. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48429. {
  48430. front: {
  48431. height: math.unit(6 + 2/12, "feet"),
  48432. weight: math.unit(210, "lb"),
  48433. name: "Front",
  48434. image: {
  48435. source: "./media/characters/wubs/front.svg",
  48436. extra: 1345/1325,
  48437. bottom: 70/1415
  48438. }
  48439. },
  48440. back: {
  48441. height: math.unit(6 + 2/12, "feet"),
  48442. weight: math.unit(210, "lb"),
  48443. name: "Back",
  48444. image: {
  48445. source: "./media/characters/wubs/back.svg",
  48446. extra: 1296/1275,
  48447. bottom: 58/1354
  48448. }
  48449. },
  48450. },
  48451. [
  48452. {
  48453. name: "Normal",
  48454. height: math.unit(6 + 2/12, "feet"),
  48455. default: true
  48456. },
  48457. {
  48458. name: "Macro",
  48459. height: math.unit(1000, "feet")
  48460. },
  48461. {
  48462. name: "Megamacro",
  48463. height: math.unit(1, "mile")
  48464. },
  48465. ]
  48466. ))
  48467. characterMakers.push(() => makeCharacter(
  48468. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48469. {
  48470. front: {
  48471. height: math.unit(4, "feet"),
  48472. weight: math.unit(120, "lb"),
  48473. name: "Front",
  48474. image: {
  48475. source: "./media/characters/blue/front.svg",
  48476. extra: 1636/1525,
  48477. bottom: 43/1679
  48478. }
  48479. },
  48480. back: {
  48481. height: math.unit(4, "feet"),
  48482. weight: math.unit(120, "lb"),
  48483. name: "Back",
  48484. image: {
  48485. source: "./media/characters/blue/back.svg",
  48486. extra: 1660/1560,
  48487. bottom: 57/1717
  48488. }
  48489. },
  48490. paws: {
  48491. height: math.unit(0.826, "feet"),
  48492. name: "Paws",
  48493. image: {
  48494. source: "./media/characters/blue/paws.svg"
  48495. }
  48496. },
  48497. },
  48498. [
  48499. {
  48500. name: "Micro",
  48501. height: math.unit(3, "inches")
  48502. },
  48503. {
  48504. name: "Normal",
  48505. height: math.unit(4, "feet"),
  48506. default: true
  48507. },
  48508. {
  48509. name: "Femenine Form",
  48510. height: math.unit(14, "feet")
  48511. },
  48512. {
  48513. name: "Werebat Form",
  48514. height: math.unit(18, "feet")
  48515. },
  48516. ]
  48517. ))
  48518. characterMakers.push(() => makeCharacter(
  48519. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48520. {
  48521. female: {
  48522. height: math.unit(7 + 4/12, "feet"),
  48523. weight: math.unit(243, "lb"),
  48524. name: "Female",
  48525. image: {
  48526. source: "./media/characters/kaya/female.svg",
  48527. extra: 975/898,
  48528. bottom: 34/1009
  48529. }
  48530. },
  48531. herm: {
  48532. height: math.unit(7 + 4/12, "feet"),
  48533. weight: math.unit(243, "lb"),
  48534. name: "Herm",
  48535. image: {
  48536. source: "./media/characters/kaya/herm.svg",
  48537. extra: 975/898,
  48538. bottom: 34/1009
  48539. }
  48540. },
  48541. },
  48542. [
  48543. {
  48544. name: "Normal",
  48545. height: math.unit(7 + 4/12, "feet"),
  48546. default: true
  48547. },
  48548. ]
  48549. ))
  48550. characterMakers.push(() => makeCharacter(
  48551. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48552. {
  48553. female: {
  48554. height: math.unit(9 + 4/12, "feet"),
  48555. weight: math.unit(398, "lb"),
  48556. name: "Female",
  48557. image: {
  48558. source: "./media/characters/kassandra/female.svg",
  48559. extra: 908/839,
  48560. bottom: 61/969
  48561. }
  48562. },
  48563. intersex: {
  48564. height: math.unit(9 + 4/12, "feet"),
  48565. weight: math.unit(398, "lb"),
  48566. name: "Intersex",
  48567. image: {
  48568. source: "./media/characters/kassandra/intersex.svg",
  48569. extra: 908/839,
  48570. bottom: 61/969
  48571. }
  48572. },
  48573. },
  48574. [
  48575. {
  48576. name: "Normal",
  48577. height: math.unit(9 + 4/12, "feet"),
  48578. default: true
  48579. },
  48580. ]
  48581. ))
  48582. characterMakers.push(() => makeCharacter(
  48583. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48584. {
  48585. front: {
  48586. height: math.unit(3, "meters"),
  48587. name: "Front",
  48588. image: {
  48589. source: "./media/characters/amy/front.svg",
  48590. extra: 1380/1343,
  48591. bottom: 70/1450
  48592. }
  48593. },
  48594. back: {
  48595. height: math.unit(3, "meters"),
  48596. name: "Back",
  48597. image: {
  48598. source: "./media/characters/amy/back.svg",
  48599. extra: 1380/1347,
  48600. bottom: 66/1446
  48601. }
  48602. },
  48603. },
  48604. [
  48605. {
  48606. name: "Normal",
  48607. height: math.unit(3, "meters"),
  48608. default: true
  48609. },
  48610. ]
  48611. ))
  48612. characterMakers.push(() => makeCharacter(
  48613. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48614. {
  48615. side: {
  48616. height: math.unit(47, "cm"),
  48617. weight: math.unit(10.8, "kg"),
  48618. name: "Side",
  48619. image: {
  48620. source: "./media/characters/alphaschakal/side.svg",
  48621. extra: 1058/568,
  48622. bottom: 62/1120
  48623. }
  48624. },
  48625. back: {
  48626. height: math.unit(78, "cm"),
  48627. weight: math.unit(10.8, "kg"),
  48628. name: "Back",
  48629. image: {
  48630. source: "./media/characters/alphaschakal/back.svg",
  48631. extra: 1102/942,
  48632. bottom: 185/1287
  48633. }
  48634. },
  48635. head: {
  48636. height: math.unit(28, "cm"),
  48637. name: "Head",
  48638. image: {
  48639. source: "./media/characters/alphaschakal/head.svg",
  48640. extra: 696/508,
  48641. bottom: 0/696
  48642. }
  48643. },
  48644. paw: {
  48645. height: math.unit(16, "cm"),
  48646. name: "Paw",
  48647. image: {
  48648. source: "./media/characters/alphaschakal/paw.svg"
  48649. }
  48650. },
  48651. },
  48652. [
  48653. {
  48654. name: "Normal",
  48655. height: math.unit(47, "cm"),
  48656. default: true
  48657. },
  48658. {
  48659. name: "Macro",
  48660. height: math.unit(340, "cm")
  48661. },
  48662. ]
  48663. ))
  48664. characterMakers.push(() => makeCharacter(
  48665. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48666. {
  48667. front: {
  48668. height: math.unit(36, "earths"),
  48669. name: "Front",
  48670. image: {
  48671. source: "./media/characters/ecobyss/front.svg",
  48672. extra: 1282/1215,
  48673. bottom: 11/1293
  48674. }
  48675. },
  48676. back: {
  48677. height: math.unit(36, "earths"),
  48678. name: "Back",
  48679. image: {
  48680. source: "./media/characters/ecobyss/back.svg",
  48681. extra: 1291/1222,
  48682. bottom: 8/1299
  48683. }
  48684. },
  48685. },
  48686. [
  48687. {
  48688. name: "Normal",
  48689. height: math.unit(36, "earths"),
  48690. default: true
  48691. },
  48692. ]
  48693. ))
  48694. characterMakers.push(() => makeCharacter(
  48695. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48696. {
  48697. front: {
  48698. height: math.unit(12, "feet"),
  48699. name: "Front",
  48700. image: {
  48701. source: "./media/characters/vasuk/front.svg",
  48702. extra: 1326/1207,
  48703. bottom: 64/1390
  48704. }
  48705. },
  48706. },
  48707. [
  48708. {
  48709. name: "Normal",
  48710. height: math.unit(12, "feet"),
  48711. default: true
  48712. },
  48713. ]
  48714. ))
  48715. characterMakers.push(() => makeCharacter(
  48716. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48717. {
  48718. side: {
  48719. height: math.unit(100, "feet"),
  48720. name: "Side",
  48721. image: {
  48722. source: "./media/characters/linneaus/side.svg",
  48723. extra: 987/807,
  48724. bottom: 47/1034
  48725. }
  48726. },
  48727. },
  48728. [
  48729. {
  48730. name: "Macro",
  48731. height: math.unit(100, "feet"),
  48732. default: true
  48733. },
  48734. ]
  48735. ))
  48736. characterMakers.push(() => makeCharacter(
  48737. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48738. {
  48739. front: {
  48740. height: math.unit(8, "feet"),
  48741. weight: math.unit(1200, "lb"),
  48742. name: "Front",
  48743. image: {
  48744. source: "./media/characters/nyterious-daligdig/front.svg",
  48745. extra: 1284/1094,
  48746. bottom: 84/1368
  48747. }
  48748. },
  48749. back: {
  48750. height: math.unit(8, "feet"),
  48751. weight: math.unit(1200, "lb"),
  48752. name: "Back",
  48753. image: {
  48754. source: "./media/characters/nyterious-daligdig/back.svg",
  48755. extra: 1301/1121,
  48756. bottom: 129/1430
  48757. }
  48758. },
  48759. mouth: {
  48760. height: math.unit(1.464, "feet"),
  48761. name: "Mouth",
  48762. image: {
  48763. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48764. }
  48765. },
  48766. },
  48767. [
  48768. {
  48769. name: "Small",
  48770. height: math.unit(8, "feet"),
  48771. default: true
  48772. },
  48773. {
  48774. name: "Normal",
  48775. height: math.unit(15, "feet")
  48776. },
  48777. {
  48778. name: "Macro",
  48779. height: math.unit(90, "feet")
  48780. },
  48781. ]
  48782. ))
  48783. characterMakers.push(() => makeCharacter(
  48784. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48785. {
  48786. front: {
  48787. height: math.unit(7 + 4/12, "feet"),
  48788. weight: math.unit(252, "lb"),
  48789. name: "Front",
  48790. image: {
  48791. source: "./media/characters/bandel/front.svg",
  48792. extra: 1946/1775,
  48793. bottom: 26/1972
  48794. }
  48795. },
  48796. back: {
  48797. height: math.unit(7 + 4/12, "feet"),
  48798. weight: math.unit(252, "lb"),
  48799. name: "Back",
  48800. image: {
  48801. source: "./media/characters/bandel/back.svg",
  48802. extra: 1940/1770,
  48803. bottom: 25/1965
  48804. }
  48805. },
  48806. maw: {
  48807. height: math.unit(2.15, "feet"),
  48808. name: "Maw",
  48809. image: {
  48810. source: "./media/characters/bandel/maw.svg"
  48811. }
  48812. },
  48813. stomach: {
  48814. height: math.unit(1.95, "feet"),
  48815. name: "Stomach",
  48816. image: {
  48817. source: "./media/characters/bandel/stomach.svg"
  48818. }
  48819. },
  48820. },
  48821. [
  48822. {
  48823. name: "Normal",
  48824. height: math.unit(7 + 4/12, "feet"),
  48825. default: true
  48826. },
  48827. ]
  48828. ))
  48829. characterMakers.push(() => makeCharacter(
  48830. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48831. {
  48832. front: {
  48833. height: math.unit(10 + 5/12, "feet"),
  48834. weight: math.unit(773.5, "kg"),
  48835. name: "Front",
  48836. image: {
  48837. source: "./media/characters/zed/front.svg",
  48838. extra: 987/941,
  48839. bottom: 52/1039
  48840. }
  48841. },
  48842. },
  48843. [
  48844. {
  48845. name: "Short",
  48846. height: math.unit(5 + 4/12, "feet")
  48847. },
  48848. {
  48849. name: "Average",
  48850. height: math.unit(10 + 5/12, "feet"),
  48851. default: true
  48852. },
  48853. {
  48854. name: "Mini-Macro",
  48855. height: math.unit(24 + 9/12, "feet")
  48856. },
  48857. {
  48858. name: "Macro",
  48859. height: math.unit(249, "feet")
  48860. },
  48861. {
  48862. name: "Mega-Macro",
  48863. height: math.unit(12490, "feet")
  48864. },
  48865. {
  48866. name: "Giga-Macro",
  48867. height: math.unit(24.9, "miles")
  48868. },
  48869. {
  48870. name: "Tera-Macro",
  48871. height: math.unit(24900, "miles")
  48872. },
  48873. {
  48874. name: "Cosmic Scale",
  48875. height: math.unit(38.9, "lightyears")
  48876. },
  48877. {
  48878. name: "Universal Scale",
  48879. height: math.unit(138e12, "lightyears")
  48880. },
  48881. ]
  48882. ))
  48883. characterMakers.push(() => makeCharacter(
  48884. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48885. {
  48886. front: {
  48887. height: math.unit(1561, "inches"),
  48888. name: "Front",
  48889. image: {
  48890. source: "./media/characters/ivan/front.svg",
  48891. extra: 1126/1071,
  48892. bottom: 26/1152
  48893. }
  48894. },
  48895. back: {
  48896. height: math.unit(1561, "inches"),
  48897. name: "Back",
  48898. image: {
  48899. source: "./media/characters/ivan/back.svg",
  48900. extra: 1134/1079,
  48901. bottom: 30/1164
  48902. }
  48903. },
  48904. },
  48905. [
  48906. {
  48907. name: "Normal",
  48908. height: math.unit(1561, "inches"),
  48909. default: true
  48910. },
  48911. ]
  48912. ))
  48913. characterMakers.push(() => makeCharacter(
  48914. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48915. {
  48916. front: {
  48917. height: math.unit(5 + 7/12, "feet"),
  48918. weight: math.unit(150, "lb"),
  48919. name: "Front",
  48920. image: {
  48921. source: "./media/characters/robin-arctic-hare/front.svg",
  48922. extra: 1148/974,
  48923. bottom: 20/1168
  48924. }
  48925. },
  48926. },
  48927. [
  48928. {
  48929. name: "Normal",
  48930. height: math.unit(5 + 7/12, "feet"),
  48931. default: true
  48932. },
  48933. ]
  48934. ))
  48935. characterMakers.push(() => makeCharacter(
  48936. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48937. {
  48938. side: {
  48939. height: math.unit(5, "feet"),
  48940. name: "Side",
  48941. image: {
  48942. source: "./media/characters/birch/side.svg",
  48943. extra: 985/796,
  48944. bottom: 111/1096
  48945. }
  48946. },
  48947. },
  48948. [
  48949. {
  48950. name: "Normal",
  48951. height: math.unit(5, "feet"),
  48952. default: true
  48953. },
  48954. ]
  48955. ))
  48956. characterMakers.push(() => makeCharacter(
  48957. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48958. {
  48959. front: {
  48960. height: math.unit(4, "feet"),
  48961. name: "Front",
  48962. image: {
  48963. source: "./media/characters/rasp/front.svg",
  48964. extra: 561/478,
  48965. bottom: 74/635
  48966. }
  48967. },
  48968. },
  48969. [
  48970. {
  48971. name: "Normal",
  48972. height: math.unit(4, "feet"),
  48973. default: true
  48974. },
  48975. ]
  48976. ))
  48977. characterMakers.push(() => makeCharacter(
  48978. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48979. {
  48980. front: {
  48981. height: math.unit(4 + 6/12, "feet"),
  48982. name: "Front",
  48983. image: {
  48984. source: "./media/characters/agatha/front.svg",
  48985. extra: 947/933,
  48986. bottom: 42/989
  48987. }
  48988. },
  48989. back: {
  48990. height: math.unit(4 + 6/12, "feet"),
  48991. name: "Back",
  48992. image: {
  48993. source: "./media/characters/agatha/back.svg",
  48994. extra: 935/922,
  48995. bottom: 48/983
  48996. }
  48997. },
  48998. },
  48999. [
  49000. {
  49001. name: "Normal",
  49002. height: math.unit(4 + 6 /12, "feet"),
  49003. default: true
  49004. },
  49005. {
  49006. name: "Max Size",
  49007. height: math.unit(500, "feet")
  49008. },
  49009. ]
  49010. ))
  49011. characterMakers.push(() => makeCharacter(
  49012. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49013. {
  49014. side: {
  49015. height: math.unit(30, "feet"),
  49016. name: "Side",
  49017. image: {
  49018. source: "./media/characters/roggy/side.svg",
  49019. extra: 909/643,
  49020. bottom: 63/972
  49021. }
  49022. },
  49023. lounging: {
  49024. height: math.unit(20, "feet"),
  49025. name: "Lounging",
  49026. image: {
  49027. source: "./media/characters/roggy/lounging.svg",
  49028. extra: 643/479,
  49029. bottom: 145/788
  49030. }
  49031. },
  49032. handpaw: {
  49033. height: math.unit(13.1, "feet"),
  49034. name: "Handpaw",
  49035. image: {
  49036. source: "./media/characters/roggy/handpaw.svg"
  49037. }
  49038. },
  49039. footpaw: {
  49040. height: math.unit(15.8, "feet"),
  49041. name: "Footpaw",
  49042. image: {
  49043. source: "./media/characters/roggy/footpaw.svg"
  49044. }
  49045. },
  49046. },
  49047. [
  49048. {
  49049. name: "Menacing",
  49050. height: math.unit(30, "feet"),
  49051. default: true
  49052. },
  49053. ]
  49054. ))
  49055. characterMakers.push(() => makeCharacter(
  49056. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49057. {
  49058. front: {
  49059. height: math.unit(5 + 7/12, "feet"),
  49060. weight: math.unit(135, "lb"),
  49061. name: "Front",
  49062. image: {
  49063. source: "./media/characters/naomi/front.svg",
  49064. extra: 1209/1154,
  49065. bottom: 129/1338
  49066. }
  49067. },
  49068. back: {
  49069. height: math.unit(5 + 7/12, "feet"),
  49070. weight: math.unit(135, "lb"),
  49071. name: "Back",
  49072. image: {
  49073. source: "./media/characters/naomi/back.svg",
  49074. extra: 1252/1190,
  49075. bottom: 23/1275
  49076. }
  49077. },
  49078. },
  49079. [
  49080. {
  49081. name: "Normal",
  49082. height: math.unit(5 + 7 /12, "feet"),
  49083. default: true
  49084. },
  49085. ]
  49086. ))
  49087. characterMakers.push(() => makeCharacter(
  49088. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49089. {
  49090. side: {
  49091. height: math.unit(35, "meters"),
  49092. name: "Side",
  49093. image: {
  49094. source: "./media/characters/kimpi/side.svg",
  49095. extra: 419/382,
  49096. bottom: 63/482
  49097. }
  49098. },
  49099. hand: {
  49100. height: math.unit(8.96, "meters"),
  49101. name: "Hand",
  49102. image: {
  49103. source: "./media/characters/kimpi/hand.svg"
  49104. }
  49105. },
  49106. },
  49107. [
  49108. {
  49109. name: "Normal",
  49110. height: math.unit(35, "meters"),
  49111. default: true
  49112. },
  49113. ]
  49114. ))
  49115. characterMakers.push(() => makeCharacter(
  49116. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49117. {
  49118. front: {
  49119. height: math.unit(4 + 4/12, "feet"),
  49120. name: "Front",
  49121. image: {
  49122. source: "./media/characters/pepper-purrloin/front.svg",
  49123. extra: 1141/1024,
  49124. bottom: 21/1162
  49125. }
  49126. },
  49127. },
  49128. [
  49129. {
  49130. name: "Normal",
  49131. height: math.unit(4 + 4/12, "feet"),
  49132. default: true
  49133. },
  49134. ]
  49135. ))
  49136. characterMakers.push(() => makeCharacter(
  49137. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49138. {
  49139. front: {
  49140. height: math.unit(6 + 2/12, "feet"),
  49141. name: "Front",
  49142. image: {
  49143. source: "./media/characters/raphael/front.svg",
  49144. extra: 1101/962,
  49145. bottom: 59/1160
  49146. }
  49147. },
  49148. },
  49149. [
  49150. {
  49151. name: "Normal",
  49152. height: math.unit(6 + 2/12, "feet"),
  49153. default: true
  49154. },
  49155. ]
  49156. ))
  49157. characterMakers.push(() => makeCharacter(
  49158. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49159. {
  49160. front: {
  49161. height: math.unit(6, "feet"),
  49162. weight: math.unit(150, "lb"),
  49163. name: "Front",
  49164. image: {
  49165. source: "./media/characters/victor-williams/front.svg",
  49166. extra: 1894/1825,
  49167. bottom: 67/1961
  49168. }
  49169. },
  49170. },
  49171. [
  49172. {
  49173. name: "Normal",
  49174. height: math.unit(6, "feet"),
  49175. default: true
  49176. },
  49177. ]
  49178. ))
  49179. characterMakers.push(() => makeCharacter(
  49180. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49181. {
  49182. front: {
  49183. height: math.unit(5 + 8/12, "feet"),
  49184. weight: math.unit(150, "lb"),
  49185. name: "Front",
  49186. image: {
  49187. source: "./media/characters/rachel/front.svg",
  49188. extra: 1902/1787,
  49189. bottom: 46/1948
  49190. }
  49191. },
  49192. },
  49193. [
  49194. {
  49195. name: "Base Height",
  49196. height: math.unit(5 + 8/12, "feet"),
  49197. default: true
  49198. },
  49199. {
  49200. name: "Macro",
  49201. height: math.unit(200, "feet")
  49202. },
  49203. {
  49204. name: "Mega Macro",
  49205. height: math.unit(1, "mile")
  49206. },
  49207. {
  49208. name: "Giga Macro",
  49209. height: math.unit(1500, "miles")
  49210. },
  49211. {
  49212. name: "Tera Macro",
  49213. height: math.unit(8000, "miles")
  49214. },
  49215. {
  49216. name: "Tera Macro+",
  49217. height: math.unit(2e5, "miles")
  49218. },
  49219. ]
  49220. ))
  49221. characterMakers.push(() => makeCharacter(
  49222. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49223. {
  49224. front: {
  49225. height: math.unit(6.5, "feet"),
  49226. name: "Front",
  49227. image: {
  49228. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49229. extra: 860/819,
  49230. bottom: 307/1167
  49231. }
  49232. },
  49233. back: {
  49234. height: math.unit(6.5, "feet"),
  49235. name: "Back",
  49236. image: {
  49237. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49238. extra: 880/837,
  49239. bottom: 395/1275
  49240. }
  49241. },
  49242. sleeping: {
  49243. height: math.unit(2.79, "feet"),
  49244. name: "Sleeping",
  49245. image: {
  49246. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49247. extra: 465/383,
  49248. bottom: 263/728
  49249. }
  49250. },
  49251. maw: {
  49252. height: math.unit(2.52, "feet"),
  49253. name: "Maw",
  49254. image: {
  49255. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49256. }
  49257. },
  49258. },
  49259. [
  49260. {
  49261. name: "Normal",
  49262. height: math.unit(6.5, "feet"),
  49263. default: true
  49264. },
  49265. ]
  49266. ))
  49267. characterMakers.push(() => makeCharacter(
  49268. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49269. {
  49270. front: {
  49271. height: math.unit(5, "feet"),
  49272. name: "Front",
  49273. image: {
  49274. source: "./media/characters/nova-nerium/front.svg",
  49275. extra: 1548/1392,
  49276. bottom: 374/1922
  49277. }
  49278. },
  49279. back: {
  49280. height: math.unit(5, "feet"),
  49281. name: "Back",
  49282. image: {
  49283. source: "./media/characters/nova-nerium/back.svg",
  49284. extra: 1658/1468,
  49285. bottom: 257/1915
  49286. }
  49287. },
  49288. },
  49289. [
  49290. {
  49291. name: "Normal",
  49292. height: math.unit(5, "feet"),
  49293. default: true
  49294. },
  49295. ]
  49296. ))
  49297. characterMakers.push(() => makeCharacter(
  49298. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49299. {
  49300. front: {
  49301. height: math.unit(5 + 4/12, "feet"),
  49302. name: "Front",
  49303. image: {
  49304. source: "./media/characters/ashe-pyriph/front.svg",
  49305. extra: 1935/1747,
  49306. bottom: 60/1995
  49307. }
  49308. },
  49309. },
  49310. [
  49311. {
  49312. name: "Normal",
  49313. height: math.unit(5 + 4/12, "feet"),
  49314. default: true
  49315. },
  49316. ]
  49317. ))
  49318. characterMakers.push(() => makeCharacter(
  49319. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49320. {
  49321. front: {
  49322. height: math.unit(8.7, "feet"),
  49323. name: "Front",
  49324. image: {
  49325. source: "./media/characters/flicker-wisp/front.svg",
  49326. extra: 1835/1613,
  49327. bottom: 449/2284
  49328. }
  49329. },
  49330. side: {
  49331. height: math.unit(8.7, "feet"),
  49332. name: "Side",
  49333. image: {
  49334. source: "./media/characters/flicker-wisp/side.svg",
  49335. extra: 1841/1642,
  49336. bottom: 336/2177
  49337. },
  49338. default: true
  49339. },
  49340. maw: {
  49341. height: math.unit(3.35, "feet"),
  49342. name: "Maw",
  49343. image: {
  49344. source: "./media/characters/flicker-wisp/maw.svg",
  49345. extra: 2338/1506,
  49346. bottom: 0/2338
  49347. }
  49348. },
  49349. ovipositor: {
  49350. height: math.unit(4.95, "feet"),
  49351. name: "Ovipositor",
  49352. image: {
  49353. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49354. }
  49355. },
  49356. egg: {
  49357. height: math.unit(0.385, "feet"),
  49358. weight: math.unit(2, "lb"),
  49359. name: "Egg",
  49360. image: {
  49361. source: "./media/characters/flicker-wisp/egg.svg"
  49362. }
  49363. },
  49364. },
  49365. [
  49366. {
  49367. name: "Normal",
  49368. height: math.unit(8.7, "feet"),
  49369. default: true
  49370. },
  49371. ]
  49372. ))
  49373. characterMakers.push(() => makeCharacter(
  49374. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49375. {
  49376. side: {
  49377. height: math.unit(11, "feet"),
  49378. name: "Side",
  49379. image: {
  49380. source: "./media/characters/faefnul/side.svg",
  49381. extra: 1100/1007,
  49382. bottom: 0/1100
  49383. }
  49384. },
  49385. },
  49386. [
  49387. {
  49388. name: "Normal",
  49389. height: math.unit(11, "feet"),
  49390. default: true
  49391. },
  49392. ]
  49393. ))
  49394. characterMakers.push(() => makeCharacter(
  49395. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49396. {
  49397. front: {
  49398. height: math.unit(6 + 2/12, "feet"),
  49399. name: "Front",
  49400. image: {
  49401. source: "./media/characters/shady/front.svg",
  49402. extra: 502/461,
  49403. bottom: 9/511
  49404. }
  49405. },
  49406. kneeling: {
  49407. height: math.unit(4.6, "feet"),
  49408. name: "Kneeling",
  49409. image: {
  49410. source: "./media/characters/shady/kneeling.svg",
  49411. extra: 1328/1219,
  49412. bottom: 117/1445
  49413. }
  49414. },
  49415. maw: {
  49416. height: math.unit(2, "feet"),
  49417. name: "Maw",
  49418. image: {
  49419. source: "./media/characters/shady/maw.svg"
  49420. }
  49421. },
  49422. },
  49423. [
  49424. {
  49425. name: "Nano",
  49426. height: math.unit(1, "mm")
  49427. },
  49428. {
  49429. name: "Micro",
  49430. height: math.unit(12, "mm")
  49431. },
  49432. {
  49433. name: "Tiny",
  49434. height: math.unit(3, "inches")
  49435. },
  49436. {
  49437. name: "Normal",
  49438. height: math.unit(6 + 2/12, "feet"),
  49439. default: true
  49440. },
  49441. {
  49442. name: "Big",
  49443. height: math.unit(15, "feet")
  49444. },
  49445. {
  49446. name: "Macro",
  49447. height: math.unit(150, "feet")
  49448. },
  49449. {
  49450. name: "Titanic",
  49451. height: math.unit(500, "feet")
  49452. },
  49453. ]
  49454. ))
  49455. characterMakers.push(() => makeCharacter(
  49456. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49457. {
  49458. front: {
  49459. height: math.unit(12, "feet"),
  49460. name: "Front",
  49461. image: {
  49462. source: "./media/characters/fenrir/front.svg",
  49463. extra: 968/875,
  49464. bottom: 22/990
  49465. }
  49466. },
  49467. },
  49468. [
  49469. {
  49470. name: "Big",
  49471. height: math.unit(12, "feet"),
  49472. default: true
  49473. },
  49474. ]
  49475. ))
  49476. characterMakers.push(() => makeCharacter(
  49477. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49478. {
  49479. front: {
  49480. height: math.unit(5 + 4/12, "feet"),
  49481. name: "Front",
  49482. image: {
  49483. source: "./media/characters/makar/front.svg",
  49484. extra: 1181/1112,
  49485. bottom: 78/1259
  49486. }
  49487. },
  49488. },
  49489. [
  49490. {
  49491. name: "Normal",
  49492. height: math.unit(5 + 4/12, "feet"),
  49493. default: true
  49494. },
  49495. ]
  49496. ))
  49497. characterMakers.push(() => makeCharacter(
  49498. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49499. {
  49500. front: {
  49501. height: math.unit(5 + 7/12, "feet"),
  49502. name: "Front",
  49503. image: {
  49504. source: "./media/characters/callow/front.svg",
  49505. extra: 1482/1304,
  49506. bottom: 23/1505
  49507. }
  49508. },
  49509. back: {
  49510. height: math.unit(5 + 7/12, "feet"),
  49511. name: "Back",
  49512. image: {
  49513. source: "./media/characters/callow/back.svg",
  49514. extra: 1484/1296,
  49515. bottom: 25/1509
  49516. }
  49517. },
  49518. },
  49519. [
  49520. {
  49521. name: "Micro",
  49522. height: math.unit(3, "inches"),
  49523. default: true
  49524. },
  49525. {
  49526. name: "Normal",
  49527. height: math.unit(5 + 7/12, "feet")
  49528. },
  49529. ]
  49530. ))
  49531. characterMakers.push(() => makeCharacter(
  49532. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49533. {
  49534. front: {
  49535. height: math.unit(6 + 2/12, "feet"),
  49536. name: "Front",
  49537. image: {
  49538. source: "./media/characters/natel/front.svg",
  49539. extra: 1833/1692,
  49540. bottom: 166/1999
  49541. }
  49542. },
  49543. },
  49544. [
  49545. {
  49546. name: "Normal",
  49547. height: math.unit(6 + 2/12, "feet"),
  49548. default: true
  49549. },
  49550. ]
  49551. ))
  49552. characterMakers.push(() => makeCharacter(
  49553. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49554. {
  49555. front: {
  49556. height: math.unit(1.75, "meters"),
  49557. name: "Front",
  49558. image: {
  49559. source: "./media/characters/misu/front.svg",
  49560. extra: 1690/1558,
  49561. bottom: 234/1924
  49562. }
  49563. },
  49564. back: {
  49565. height: math.unit(1.75, "meters"),
  49566. name: "Back",
  49567. image: {
  49568. source: "./media/characters/misu/back.svg",
  49569. extra: 1762/1618,
  49570. bottom: 146/1908
  49571. }
  49572. },
  49573. frontNude: {
  49574. height: math.unit(1.75, "meters"),
  49575. name: "Front (Nude)",
  49576. image: {
  49577. source: "./media/characters/misu/front-nude.svg",
  49578. extra: 1690/1558,
  49579. bottom: 234/1924
  49580. }
  49581. },
  49582. backNude: {
  49583. height: math.unit(1.75, "meters"),
  49584. name: "Back (Nude)",
  49585. image: {
  49586. source: "./media/characters/misu/back-nude.svg",
  49587. extra: 1762/1618,
  49588. bottom: 146/1908
  49589. }
  49590. },
  49591. frontErect: {
  49592. height: math.unit(1.75, "meters"),
  49593. name: "Front (Erect)",
  49594. image: {
  49595. source: "./media/characters/misu/front-erect.svg",
  49596. extra: 1690/1558,
  49597. bottom: 234/1924
  49598. }
  49599. },
  49600. maw: {
  49601. height: math.unit(0.47, "meters"),
  49602. name: "Maw",
  49603. image: {
  49604. source: "./media/characters/misu/maw.svg"
  49605. }
  49606. },
  49607. head: {
  49608. height: math.unit(0.35, "meters"),
  49609. name: "Head",
  49610. image: {
  49611. source: "./media/characters/misu/head.svg"
  49612. }
  49613. },
  49614. rear: {
  49615. height: math.unit(0.47, "meters"),
  49616. name: "Rear",
  49617. image: {
  49618. source: "./media/characters/misu/rear.svg"
  49619. }
  49620. },
  49621. },
  49622. [
  49623. {
  49624. name: "Normal",
  49625. height: math.unit(1.75, "meters")
  49626. },
  49627. {
  49628. name: "Not good for the people",
  49629. height: math.unit(42, "meters")
  49630. },
  49631. {
  49632. name: "Not good for the neighborhood",
  49633. height: math.unit(135, "meters")
  49634. },
  49635. {
  49636. name: "Bit bigger problem",
  49637. height: math.unit(380, "meters"),
  49638. default: true
  49639. },
  49640. {
  49641. name: "Not good for the city",
  49642. height: math.unit(1.5, "km")
  49643. },
  49644. {
  49645. name: "Not good for the county",
  49646. height: math.unit(5.5, "km")
  49647. },
  49648. {
  49649. name: "Not good for the state",
  49650. height: math.unit(25, "km")
  49651. },
  49652. {
  49653. name: "Not good for the country",
  49654. height: math.unit(125, "km")
  49655. },
  49656. {
  49657. name: "Not good for the continent",
  49658. height: math.unit(2100, "km")
  49659. },
  49660. {
  49661. name: "Not good for the planet",
  49662. height: math.unit(35000, "km")
  49663. },
  49664. {
  49665. name: "Just no",
  49666. height: math.unit(8.5e18, "km")
  49667. },
  49668. ]
  49669. ))
  49670. characterMakers.push(() => makeCharacter(
  49671. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49672. {
  49673. front: {
  49674. height: math.unit(6.5, "feet"),
  49675. name: "Front",
  49676. image: {
  49677. source: "./media/characters/poppy/front.svg",
  49678. extra: 1878/1812,
  49679. bottom: 43/1921
  49680. }
  49681. },
  49682. feet: {
  49683. height: math.unit(1.06, "feet"),
  49684. name: "Feet",
  49685. image: {
  49686. source: "./media/characters/poppy/feet.svg",
  49687. extra: 1083/1083,
  49688. bottom: 87/1170
  49689. }
  49690. },
  49691. },
  49692. [
  49693. {
  49694. name: "Human",
  49695. height: math.unit(6.5, "feet")
  49696. },
  49697. {
  49698. name: "Default",
  49699. height: math.unit(300, "feet"),
  49700. default: true
  49701. },
  49702. {
  49703. name: "Huge",
  49704. height: math.unit(850, "feet")
  49705. },
  49706. {
  49707. name: "Mega",
  49708. height: math.unit(8000, "feet")
  49709. },
  49710. {
  49711. name: "Giga",
  49712. height: math.unit(300, "miles")
  49713. },
  49714. ]
  49715. ))
  49716. characterMakers.push(() => makeCharacter(
  49717. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49718. {
  49719. bipedal: {
  49720. height: math.unit(7, "feet"),
  49721. name: "Bipedal",
  49722. image: {
  49723. source: "./media/characters/zener/bipedal.svg",
  49724. extra: 874/805,
  49725. bottom: 109/983
  49726. }
  49727. },
  49728. quadrupedal: {
  49729. height: math.unit(4.64, "feet"),
  49730. name: "Quadrupedal",
  49731. image: {
  49732. source: "./media/characters/zener/quadrupedal.svg",
  49733. extra: 638/507,
  49734. bottom: 190/828
  49735. }
  49736. },
  49737. cock: {
  49738. height: math.unit(18, "inches"),
  49739. name: "Cock",
  49740. image: {
  49741. source: "./media/characters/zener/cock.svg"
  49742. }
  49743. },
  49744. },
  49745. [
  49746. {
  49747. name: "Normal",
  49748. height: math.unit(7, "feet"),
  49749. default: true
  49750. },
  49751. ]
  49752. ))
  49753. characterMakers.push(() => makeCharacter(
  49754. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49755. {
  49756. nude: {
  49757. height: math.unit(5 + 6/12, "feet"),
  49758. name: "Nude",
  49759. image: {
  49760. source: "./media/characters/charlie-dog/nude.svg",
  49761. extra: 768/734,
  49762. bottom: 26/794
  49763. }
  49764. },
  49765. dressed: {
  49766. height: math.unit(5 + 6/12, "feet"),
  49767. name: "Dressed",
  49768. image: {
  49769. source: "./media/characters/charlie-dog/dressed.svg",
  49770. extra: 768/734,
  49771. bottom: 26/794
  49772. }
  49773. },
  49774. },
  49775. [
  49776. {
  49777. name: "Normal",
  49778. height: math.unit(5 + 6/12, "feet"),
  49779. default: true
  49780. },
  49781. ]
  49782. ))
  49783. characterMakers.push(() => makeCharacter(
  49784. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49785. {
  49786. front: {
  49787. height: math.unit(6 + 4/12, "feet"),
  49788. name: "Front",
  49789. image: {
  49790. source: "./media/characters/ir'istrasz/front.svg",
  49791. extra: 1014/977,
  49792. bottom: 65/1079
  49793. }
  49794. },
  49795. back: {
  49796. height: math.unit(6 + 4/12, "feet"),
  49797. name: "Back",
  49798. image: {
  49799. source: "./media/characters/ir'istrasz/back.svg",
  49800. extra: 1024/992,
  49801. bottom: 34/1058
  49802. }
  49803. },
  49804. },
  49805. [
  49806. {
  49807. name: "Normal",
  49808. height: math.unit(6 + 4/12, "feet"),
  49809. default: true
  49810. },
  49811. ]
  49812. ))
  49813. characterMakers.push(() => makeCharacter(
  49814. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49815. {
  49816. front: {
  49817. height: math.unit(5 + 8/12, "feet"),
  49818. name: "Front",
  49819. image: {
  49820. source: "./media/characters/dee-ditto/front.svg",
  49821. extra: 1874/1785,
  49822. bottom: 68/1942
  49823. }
  49824. },
  49825. back: {
  49826. height: math.unit(5 + 8/12, "feet"),
  49827. name: "Back",
  49828. image: {
  49829. source: "./media/characters/dee-ditto/back.svg",
  49830. extra: 1870/1783,
  49831. bottom: 77/1947
  49832. }
  49833. },
  49834. },
  49835. [
  49836. {
  49837. name: "Normal",
  49838. height: math.unit(5 + 8/12, "feet"),
  49839. default: true
  49840. },
  49841. ]
  49842. ))
  49843. characterMakers.push(() => makeCharacter(
  49844. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49845. {
  49846. front: {
  49847. height: math.unit(7 + 6/12, "feet"),
  49848. name: "Front",
  49849. image: {
  49850. source: "./media/characters/fey/front.svg",
  49851. extra: 995/979,
  49852. bottom: 30/1025
  49853. }
  49854. },
  49855. back: {
  49856. height: math.unit(7 + 6/12, "feet"),
  49857. name: "Back",
  49858. image: {
  49859. source: "./media/characters/fey/back.svg",
  49860. extra: 1079/1008,
  49861. bottom: 5/1084
  49862. }
  49863. },
  49864. dressed: {
  49865. height: math.unit(7 + 6/12, "feet"),
  49866. name: "Dressed",
  49867. image: {
  49868. source: "./media/characters/fey/dressed.svg",
  49869. extra: 995/979,
  49870. bottom: 30/1025
  49871. }
  49872. },
  49873. },
  49874. [
  49875. {
  49876. name: "Normal",
  49877. height: math.unit(7 + 6/12, "feet"),
  49878. default: true
  49879. },
  49880. ]
  49881. ))
  49882. characterMakers.push(() => makeCharacter(
  49883. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49884. {
  49885. standing: {
  49886. height: math.unit(17, "feet"),
  49887. name: "Standing",
  49888. image: {
  49889. source: "./media/characters/aster/standing.svg",
  49890. extra: 1798/1598,
  49891. bottom: 117/1915
  49892. }
  49893. },
  49894. },
  49895. [
  49896. {
  49897. name: "Normal",
  49898. height: math.unit(17, "feet"),
  49899. default: true
  49900. },
  49901. {
  49902. name: "Homewrecker",
  49903. height: math.unit(95, "feet")
  49904. },
  49905. {
  49906. name: "Planet Devourer",
  49907. height: math.unit(1008000, "miles")
  49908. },
  49909. ]
  49910. ))
  49911. characterMakers.push(() => makeCharacter(
  49912. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49913. {
  49914. front: {
  49915. height: math.unit(6 + 5/12, "feet"),
  49916. weight: math.unit(265, "lb"),
  49917. name: "Front",
  49918. image: {
  49919. source: "./media/characters/devon-childs/front.svg",
  49920. extra: 1795/1721,
  49921. bottom: 41/1836
  49922. }
  49923. },
  49924. side: {
  49925. height: math.unit(6 + 5/12, "feet"),
  49926. weight: math.unit(265, "lb"),
  49927. name: "Side",
  49928. image: {
  49929. source: "./media/characters/devon-childs/side.svg",
  49930. extra: 1812/1738,
  49931. bottom: 30/1842
  49932. }
  49933. },
  49934. back: {
  49935. height: math.unit(6 + 5/12, "feet"),
  49936. weight: math.unit(265, "lb"),
  49937. name: "Back",
  49938. image: {
  49939. source: "./media/characters/devon-childs/back.svg",
  49940. extra: 1808/1735,
  49941. bottom: 23/1831
  49942. }
  49943. },
  49944. hand: {
  49945. height: math.unit(1.464, "feet"),
  49946. name: "Hand",
  49947. image: {
  49948. source: "./media/characters/devon-childs/hand.svg"
  49949. }
  49950. },
  49951. foot: {
  49952. height: math.unit(1.6, "feet"),
  49953. name: "Foot",
  49954. image: {
  49955. source: "./media/characters/devon-childs/foot.svg"
  49956. }
  49957. },
  49958. },
  49959. [
  49960. {
  49961. name: "Micro",
  49962. height: math.unit(7, "cm")
  49963. },
  49964. {
  49965. name: "Normal",
  49966. height: math.unit(6 + 5/12, "feet"),
  49967. default: true
  49968. },
  49969. {
  49970. name: "Macro",
  49971. height: math.unit(154, "feet")
  49972. },
  49973. ]
  49974. ))
  49975. characterMakers.push(() => makeCharacter(
  49976. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49977. {
  49978. front: {
  49979. height: math.unit(6, "feet"),
  49980. weight: math.unit(180, "lb"),
  49981. name: "Front",
  49982. image: {
  49983. source: "./media/characters/lydemox-vir/front.svg",
  49984. extra: 1632/1435,
  49985. bottom: 58/1690
  49986. }
  49987. },
  49988. frontSFW: {
  49989. height: math.unit(6, "feet"),
  49990. weight: math.unit(180, "lb"),
  49991. name: "Front (SFW)",
  49992. image: {
  49993. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49994. extra: 1632/1435,
  49995. bottom: 58/1690
  49996. }
  49997. },
  49998. back: {
  49999. height: math.unit(6, "feet"),
  50000. weight: math.unit(180, "lb"),
  50001. name: "Back",
  50002. image: {
  50003. source: "./media/characters/lydemox-vir/back.svg",
  50004. extra: 1593/1408,
  50005. bottom: 31/1624
  50006. }
  50007. },
  50008. paw: {
  50009. height: math.unit(1.85, "feet"),
  50010. name: "Paw",
  50011. image: {
  50012. source: "./media/characters/lydemox-vir/paw.svg"
  50013. }
  50014. },
  50015. dick: {
  50016. height: math.unit(1.8, "feet"),
  50017. name: "Dick",
  50018. image: {
  50019. source: "./media/characters/lydemox-vir/dick.svg"
  50020. }
  50021. },
  50022. },
  50023. [
  50024. {
  50025. name: "Macro",
  50026. height: math.unit(100, "feet"),
  50027. default: true
  50028. },
  50029. {
  50030. name: "Teramacro",
  50031. height: math.unit(1, "earth")
  50032. },
  50033. {
  50034. name: "Planetary",
  50035. height: math.unit(20, "earths")
  50036. },
  50037. ]
  50038. ))
  50039. characterMakers.push(() => makeCharacter(
  50040. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50041. {
  50042. front: {
  50043. height: math.unit(15 + 8/12, "feet"),
  50044. weight: math.unit(1237, "kg"),
  50045. name: "Front",
  50046. image: {
  50047. source: "./media/characters/mia/front.svg",
  50048. extra: 1573/1446,
  50049. bottom: 58/1631
  50050. }
  50051. },
  50052. },
  50053. [
  50054. {
  50055. name: "Small",
  50056. height: math.unit(9 + 5/12, "feet")
  50057. },
  50058. {
  50059. name: "Normal",
  50060. height: math.unit(15 + 8/12, "feet"),
  50061. default: true
  50062. },
  50063. ]
  50064. ))
  50065. characterMakers.push(() => makeCharacter(
  50066. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50067. {
  50068. front: {
  50069. height: math.unit(10 + 6/12, "feet"),
  50070. weight: math.unit(1.3, "tons"),
  50071. name: "Front",
  50072. image: {
  50073. source: "./media/characters/mr-graves/front.svg",
  50074. extra: 1779/1695,
  50075. bottom: 198/1977
  50076. }
  50077. },
  50078. },
  50079. [
  50080. {
  50081. name: "Normal",
  50082. height: math.unit(10 + 6 /12, "feet"),
  50083. default: true
  50084. },
  50085. ]
  50086. ))
  50087. characterMakers.push(() => makeCharacter(
  50088. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50089. {
  50090. dressedFront: {
  50091. height: math.unit(5 + 8/12, "feet"),
  50092. weight: math.unit(125, "lb"),
  50093. name: "Dressed (Front)",
  50094. image: {
  50095. source: "./media/characters/jess/dressed-front.svg",
  50096. extra: 1176/1152,
  50097. bottom: 42/1218
  50098. }
  50099. },
  50100. dressedSide: {
  50101. height: math.unit(5 + 8/12, "feet"),
  50102. weight: math.unit(125, "lb"),
  50103. name: "Dressed (Side)",
  50104. image: {
  50105. source: "./media/characters/jess/dressed-side.svg",
  50106. extra: 1204/1190,
  50107. bottom: 6/1210
  50108. }
  50109. },
  50110. nudeFront: {
  50111. height: math.unit(5 + 8/12, "feet"),
  50112. weight: math.unit(125, "lb"),
  50113. name: "Nude (Front)",
  50114. image: {
  50115. source: "./media/characters/jess/nude-front.svg",
  50116. extra: 1176/1152,
  50117. bottom: 42/1218
  50118. }
  50119. },
  50120. nudeSide: {
  50121. height: math.unit(5 + 8/12, "feet"),
  50122. weight: math.unit(125, "lb"),
  50123. name: "Nude (Side)",
  50124. image: {
  50125. source: "./media/characters/jess/nude-side.svg",
  50126. extra: 1204/1190,
  50127. bottom: 6/1210
  50128. }
  50129. },
  50130. organsFront: {
  50131. height: math.unit(2.83799342105, "feet"),
  50132. name: "Organs (Front)",
  50133. image: {
  50134. source: "./media/characters/jess/organs-front.svg"
  50135. }
  50136. },
  50137. organsSide: {
  50138. height: math.unit(2.64225290474, "feet"),
  50139. name: "Organs (Side)",
  50140. image: {
  50141. source: "./media/characters/jess/organs-side.svg"
  50142. }
  50143. },
  50144. digestiveTractFront: {
  50145. height: math.unit(2.8106580871, "feet"),
  50146. name: "Digestive Tract (Front)",
  50147. image: {
  50148. source: "./media/characters/jess/digestive-tract-front.svg"
  50149. }
  50150. },
  50151. digestiveTractSide: {
  50152. height: math.unit(2.54365045014, "feet"),
  50153. name: "Digestive Tract (Side)",
  50154. image: {
  50155. source: "./media/characters/jess/digestive-tract-side.svg"
  50156. }
  50157. },
  50158. respiratorySystemFront: {
  50159. height: math.unit(1.11196233456, "feet"),
  50160. name: "Respiratory System (Front)",
  50161. image: {
  50162. source: "./media/characters/jess/respiratory-system-front.svg"
  50163. }
  50164. },
  50165. respiratorySystemSide: {
  50166. height: math.unit(0.89327966297, "feet"),
  50167. name: "Respiratory System (Side)",
  50168. image: {
  50169. source: "./media/characters/jess/respiratory-system-side.svg"
  50170. }
  50171. },
  50172. urinaryTractFront: {
  50173. height: math.unit(1.16126356186, "feet"),
  50174. name: "Urinary Tract (Front)",
  50175. image: {
  50176. source: "./media/characters/jess/urinary-tract-front.svg"
  50177. }
  50178. },
  50179. urinaryTractSide: {
  50180. height: math.unit(1.20910039627, "feet"),
  50181. name: "Urinary Tract (Side)",
  50182. image: {
  50183. source: "./media/characters/jess/urinary-tract-side.svg"
  50184. }
  50185. },
  50186. reproductiveOrgansFront: {
  50187. height: math.unit(0.48422591566, "feet"),
  50188. name: "Reproductive Organs (Front)",
  50189. image: {
  50190. source: "./media/characters/jess/reproductive-organs-front.svg"
  50191. }
  50192. },
  50193. reproductiveOrgansSide: {
  50194. height: math.unit(0.61553314481, "feet"),
  50195. name: "Reproductive Organs (Side)",
  50196. image: {
  50197. source: "./media/characters/jess/reproductive-organs-side.svg"
  50198. }
  50199. },
  50200. breastsFront: {
  50201. height: math.unit(0.47690395121, "feet"),
  50202. name: "Breasts (Front)",
  50203. image: {
  50204. source: "./media/characters/jess/breasts-front.svg"
  50205. }
  50206. },
  50207. breastsSide: {
  50208. height: math.unit(0.30556998307, "feet"),
  50209. name: "Breasts (Side)",
  50210. image: {
  50211. source: "./media/characters/jess/breasts-side.svg"
  50212. }
  50213. },
  50214. heartFront: {
  50215. height: math.unit(0.53011022622, "feet"),
  50216. name: "Heart (Front)",
  50217. image: {
  50218. source: "./media/characters/jess/heart-front.svg"
  50219. }
  50220. },
  50221. heartSide: {
  50222. height: math.unit(0.51790695213, "feet"),
  50223. name: "Heart (Side)",
  50224. image: {
  50225. source: "./media/characters/jess/heart-side.svg"
  50226. }
  50227. },
  50228. earsAndNoseFront: {
  50229. height: math.unit(0.29385483995, "feet"),
  50230. name: "Ears and Nose (Front)",
  50231. image: {
  50232. source: "./media/characters/jess/ears-and-nose-front.svg"
  50233. }
  50234. },
  50235. earsAndNoseSide: {
  50236. height: math.unit(0.18109658741, "feet"),
  50237. name: "Ears and Nose (Side)",
  50238. image: {
  50239. source: "./media/characters/jess/ears-and-nose-side.svg"
  50240. }
  50241. },
  50242. },
  50243. [
  50244. {
  50245. name: "Normal",
  50246. height: math.unit(5 + 8/12, "feet"),
  50247. default: true
  50248. },
  50249. ]
  50250. ))
  50251. characterMakers.push(() => makeCharacter(
  50252. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50253. {
  50254. front: {
  50255. height: math.unit(6, "feet"),
  50256. weight: math.unit(6.64467e-7, "grams"),
  50257. name: "Front",
  50258. image: {
  50259. source: "./media/characters/wimpering/front.svg",
  50260. extra: 597/587,
  50261. bottom: 34/631
  50262. }
  50263. },
  50264. },
  50265. [
  50266. {
  50267. name: "Micro",
  50268. height: math.unit(0.4, "mm"),
  50269. default: true
  50270. },
  50271. ]
  50272. ))
  50273. characterMakers.push(() => makeCharacter(
  50274. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50275. {
  50276. front: {
  50277. height: math.unit(5 + 2/12, "feet"),
  50278. weight: math.unit(110, "lb"),
  50279. name: "Front",
  50280. image: {
  50281. source: "./media/characters/keltre/front.svg",
  50282. extra: 1099/1057,
  50283. bottom: 22/1121
  50284. }
  50285. },
  50286. back: {
  50287. height: math.unit(5 + 2/12, "feet"),
  50288. weight: math.unit(110, "lb"),
  50289. name: "Back",
  50290. image: {
  50291. source: "./media/characters/keltre/back.svg",
  50292. extra: 1095/1053,
  50293. bottom: 17/1112
  50294. }
  50295. },
  50296. dressed: {
  50297. height: math.unit(5 + 2/12, "feet"),
  50298. weight: math.unit(110, "lb"),
  50299. name: "Dressed",
  50300. image: {
  50301. source: "./media/characters/keltre/dressed.svg",
  50302. extra: 1099/1057,
  50303. bottom: 22/1121
  50304. }
  50305. },
  50306. winter: {
  50307. height: math.unit(5 + 2/12, "feet"),
  50308. weight: math.unit(110, "lb"),
  50309. name: "Winter",
  50310. image: {
  50311. source: "./media/characters/keltre/winter.svg",
  50312. extra: 1099/1057,
  50313. bottom: 22/1121
  50314. }
  50315. },
  50316. head: {
  50317. height: math.unit(1.61 * 0.86, "feet"),
  50318. name: "Head",
  50319. image: {
  50320. source: "./media/characters/keltre/head.svg",
  50321. extra: 534/421,
  50322. bottom: 0/534
  50323. }
  50324. },
  50325. hand: {
  50326. height: math.unit(1.3 * 0.86, "feet"),
  50327. name: "Hand",
  50328. image: {
  50329. source: "./media/characters/keltre/hand.svg"
  50330. }
  50331. },
  50332. foot: {
  50333. height: math.unit(1.8 * 0.86, "feet"),
  50334. name: "Foot",
  50335. image: {
  50336. source: "./media/characters/keltre/foot.svg"
  50337. }
  50338. },
  50339. },
  50340. [
  50341. {
  50342. name: "Fine",
  50343. height: math.unit(1, "inch")
  50344. },
  50345. {
  50346. name: "Dimnutive",
  50347. height: math.unit(4, "inches")
  50348. },
  50349. {
  50350. name: "Tiny",
  50351. height: math.unit(1, "foot")
  50352. },
  50353. {
  50354. name: "Small",
  50355. height: math.unit(3, "feet")
  50356. },
  50357. {
  50358. name: "Normal",
  50359. height: math.unit(5 + 2/12, "feet"),
  50360. default: true
  50361. },
  50362. ]
  50363. ))
  50364. characterMakers.push(() => makeCharacter(
  50365. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50366. {
  50367. front: {
  50368. height: math.unit(6 + 2/12, "feet"),
  50369. name: "Front",
  50370. image: {
  50371. source: "./media/characters/nox/front.svg",
  50372. extra: 1917/1830,
  50373. bottom: 74/1991
  50374. }
  50375. },
  50376. back: {
  50377. height: math.unit(6 + 2/12, "feet"),
  50378. name: "Back",
  50379. image: {
  50380. source: "./media/characters/nox/back.svg",
  50381. extra: 1896/1815,
  50382. bottom: 21/1917
  50383. }
  50384. },
  50385. head: {
  50386. height: math.unit(1.1, "feet"),
  50387. name: "Head",
  50388. image: {
  50389. source: "./media/characters/nox/head.svg",
  50390. extra: 874/704,
  50391. bottom: 0/874
  50392. }
  50393. },
  50394. tattoo: {
  50395. height: math.unit(0.729, "feet"),
  50396. name: "Tattoo",
  50397. image: {
  50398. source: "./media/characters/nox/tattoo.svg"
  50399. }
  50400. },
  50401. },
  50402. [
  50403. {
  50404. name: "Normal",
  50405. height: math.unit(6 + 2/12, "feet")
  50406. },
  50407. {
  50408. name: "Gigamacro",
  50409. height: math.unit(2, "earths"),
  50410. default: true
  50411. },
  50412. {
  50413. name: "Cosmic",
  50414. height: math.unit(867, "yottameters")
  50415. },
  50416. ]
  50417. ))
  50418. characterMakers.push(() => makeCharacter(
  50419. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50420. {
  50421. front: {
  50422. height: math.unit(6, "feet"),
  50423. weight: math.unit(150, "lb"),
  50424. name: "Front",
  50425. image: {
  50426. source: "./media/characters/caspian/front.svg",
  50427. extra: 1443/1359,
  50428. bottom: 0/1443
  50429. }
  50430. },
  50431. back: {
  50432. height: math.unit(6, "feet"),
  50433. weight: math.unit(150, "lb"),
  50434. name: "Back",
  50435. image: {
  50436. source: "./media/characters/caspian/back.svg",
  50437. extra: 1379/1309,
  50438. bottom: 0/1379
  50439. }
  50440. },
  50441. head: {
  50442. height: math.unit(0.9, "feet"),
  50443. name: "Head",
  50444. image: {
  50445. source: "./media/characters/caspian/head.svg",
  50446. extra: 692/492,
  50447. bottom: 0/692
  50448. }
  50449. },
  50450. headAlt: {
  50451. height: math.unit(0.95, "feet"),
  50452. name: "Head (Alt)",
  50453. image: {
  50454. source: "./media/characters/caspian/head-alt.svg",
  50455. extra: 668/508,
  50456. bottom: 0/668
  50457. }
  50458. },
  50459. hand: {
  50460. height: math.unit(0.8, "feet"),
  50461. name: "Hand",
  50462. image: {
  50463. source: "./media/characters/caspian/hand.svg"
  50464. }
  50465. },
  50466. paw: {
  50467. height: math.unit(0.95, "feet"),
  50468. name: "Paw",
  50469. image: {
  50470. source: "./media/characters/caspian/paw.svg"
  50471. }
  50472. },
  50473. },
  50474. [
  50475. {
  50476. name: "Normal",
  50477. height: math.unit(162, "feet"),
  50478. default: true
  50479. },
  50480. ]
  50481. ))
  50482. characterMakers.push(() => makeCharacter(
  50483. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50484. {
  50485. front: {
  50486. height: math.unit(6, "feet"),
  50487. name: "Front",
  50488. image: {
  50489. source: "./media/characters/myra-aisling/front.svg",
  50490. extra: 1268/1166,
  50491. bottom: 73/1341
  50492. }
  50493. },
  50494. back: {
  50495. height: math.unit(6, "feet"),
  50496. name: "Back",
  50497. image: {
  50498. source: "./media/characters/myra-aisling/back.svg",
  50499. extra: 1249/1149,
  50500. bottom: 79/1328
  50501. }
  50502. },
  50503. dressed: {
  50504. height: math.unit(6, "feet"),
  50505. name: "Dressed",
  50506. image: {
  50507. source: "./media/characters/myra-aisling/dressed.svg",
  50508. extra: 1290/1189,
  50509. bottom: 47/1337
  50510. }
  50511. },
  50512. hand: {
  50513. height: math.unit(1.1, "feet"),
  50514. name: "Hand",
  50515. image: {
  50516. source: "./media/characters/myra-aisling/hand.svg"
  50517. }
  50518. },
  50519. paw: {
  50520. height: math.unit(1.23, "feet"),
  50521. name: "Paw",
  50522. image: {
  50523. source: "./media/characters/myra-aisling/paw.svg"
  50524. }
  50525. },
  50526. },
  50527. [
  50528. {
  50529. name: "Normal",
  50530. height: math.unit(160, "feet"),
  50531. default: true
  50532. },
  50533. ]
  50534. ))
  50535. characterMakers.push(() => makeCharacter(
  50536. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50537. {
  50538. front: {
  50539. height: math.unit(6, "feet"),
  50540. name: "Front",
  50541. image: {
  50542. source: "./media/characters/tenley-sidero/front.svg",
  50543. extra: 1365/1276,
  50544. bottom: 47/1412
  50545. }
  50546. },
  50547. back: {
  50548. height: math.unit(6, "feet"),
  50549. name: "Back",
  50550. image: {
  50551. source: "./media/characters/tenley-sidero/back.svg",
  50552. extra: 1383/1283,
  50553. bottom: 35/1418
  50554. }
  50555. },
  50556. dressed: {
  50557. height: math.unit(6, "feet"),
  50558. name: "Dressed",
  50559. image: {
  50560. source: "./media/characters/tenley-sidero/dressed.svg",
  50561. extra: 1364/1275,
  50562. bottom: 42/1406
  50563. }
  50564. },
  50565. head: {
  50566. height: math.unit(1.47, "feet"),
  50567. name: "Head",
  50568. image: {
  50569. source: "./media/characters/tenley-sidero/head.svg",
  50570. extra: 610/490,
  50571. bottom: 0/610
  50572. }
  50573. },
  50574. },
  50575. [
  50576. {
  50577. name: "Normal",
  50578. height: math.unit(154, "feet"),
  50579. default: true
  50580. },
  50581. ]
  50582. ))
  50583. characterMakers.push(() => makeCharacter(
  50584. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50585. {
  50586. front: {
  50587. height: math.unit(5, "inches"),
  50588. name: "Front",
  50589. image: {
  50590. source: "./media/characters/mallory/front.svg",
  50591. extra: 1919/1678,
  50592. bottom: 29/1948
  50593. }
  50594. },
  50595. hand: {
  50596. height: math.unit(0.73, "inches"),
  50597. name: "Hand",
  50598. image: {
  50599. source: "./media/characters/mallory/hand.svg"
  50600. }
  50601. },
  50602. paw: {
  50603. height: math.unit(0.68, "inches"),
  50604. name: "Paw",
  50605. image: {
  50606. source: "./media/characters/mallory/paw.svg"
  50607. }
  50608. },
  50609. },
  50610. [
  50611. {
  50612. name: "Small",
  50613. height: math.unit(5, "inches"),
  50614. default: true
  50615. },
  50616. ]
  50617. ))
  50618. characterMakers.push(() => makeCharacter(
  50619. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50620. {
  50621. naked: {
  50622. height: math.unit(6, "feet"),
  50623. name: "Naked",
  50624. image: {
  50625. source: "./media/characters/mab/naked.svg",
  50626. extra: 1855/1757,
  50627. bottom: 208/2063
  50628. }
  50629. },
  50630. outside: {
  50631. height: math.unit(6, "feet"),
  50632. name: "Outside",
  50633. image: {
  50634. source: "./media/characters/mab/outside.svg",
  50635. extra: 1855/1757,
  50636. bottom: 208/2063
  50637. }
  50638. },
  50639. party: {
  50640. height: math.unit(6, "feet"),
  50641. name: "Party",
  50642. image: {
  50643. source: "./media/characters/mab/party.svg",
  50644. extra: 1855/1757,
  50645. bottom: 208/2063
  50646. }
  50647. },
  50648. },
  50649. [
  50650. {
  50651. name: "Normal",
  50652. height: math.unit(165, "feet"),
  50653. default: true
  50654. },
  50655. ]
  50656. ))
  50657. characterMakers.push(() => makeCharacter(
  50658. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50659. {
  50660. feral: {
  50661. height: math.unit(12, "feet"),
  50662. weight: math.unit(20000, "lb"),
  50663. name: "Side",
  50664. image: {
  50665. source: "./media/characters/winter/feral.svg",
  50666. extra: 1286/943,
  50667. bottom: 112/1398
  50668. },
  50669. form: "feral",
  50670. default: true
  50671. },
  50672. feralNsfw: {
  50673. height: math.unit(12, "feet"),
  50674. weight: math.unit(20000, "lb"),
  50675. name: "Side (NSFW)",
  50676. image: {
  50677. source: "./media/characters/winter/feral-nsfw.svg",
  50678. extra: 1286/943,
  50679. bottom: 112/1398
  50680. },
  50681. form: "feral"
  50682. },
  50683. dick: {
  50684. height: math.unit(3.79, "feet"),
  50685. name: "Dick",
  50686. image: {
  50687. source: "./media/characters/winter/dick.svg"
  50688. },
  50689. form: "feral"
  50690. },
  50691. anthro: {
  50692. height: math.unit(12, "feet"),
  50693. weight: math.unit(10, "tons"),
  50694. name: "Anthro",
  50695. image: {
  50696. source: "./media/characters/winter/anthro.svg",
  50697. extra: 1701/1553,
  50698. bottom: 64/1765
  50699. },
  50700. form: "anthro",
  50701. default: true
  50702. },
  50703. },
  50704. [
  50705. {
  50706. name: "Big",
  50707. height: math.unit(12, "feet"),
  50708. default: true,
  50709. form: "feral"
  50710. },
  50711. {
  50712. name: "Big",
  50713. height: math.unit(12, "feet"),
  50714. default: true,
  50715. form: "anthro"
  50716. },
  50717. ],
  50718. {
  50719. "feral": {
  50720. name: "Feral",
  50721. default: true
  50722. },
  50723. "anthro": {
  50724. name: "Anthro"
  50725. }
  50726. }
  50727. ))
  50728. characterMakers.push(() => makeCharacter(
  50729. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50730. {
  50731. front: {
  50732. height: math.unit(4.1, "inches"),
  50733. name: "Front",
  50734. image: {
  50735. source: "./media/characters/alto/front.svg",
  50736. extra: 736/627,
  50737. bottom: 90/826
  50738. }
  50739. },
  50740. },
  50741. [
  50742. {
  50743. name: "Normal",
  50744. height: math.unit(4.1, "inches"),
  50745. default: true
  50746. },
  50747. ]
  50748. ))
  50749. characterMakers.push(() => makeCharacter(
  50750. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50751. {
  50752. sitting: {
  50753. height: math.unit(3, "feet"),
  50754. name: "Sitting",
  50755. image: {
  50756. source: "./media/characters/ratstrid-v/sitting.svg",
  50757. extra: 355/310,
  50758. bottom: 136/491
  50759. }
  50760. },
  50761. },
  50762. [
  50763. {
  50764. name: "Normal",
  50765. height: math.unit(3, "feet"),
  50766. default: true
  50767. },
  50768. ]
  50769. ))
  50770. characterMakers.push(() => makeCharacter(
  50771. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50772. {
  50773. back: {
  50774. height: math.unit(6, "feet"),
  50775. weight: math.unit(450, "lb"),
  50776. name: "Back",
  50777. image: {
  50778. source: "./media/characters/siz/back.svg",
  50779. extra: 1449/1274,
  50780. bottom: 13/1462
  50781. }
  50782. },
  50783. },
  50784. [
  50785. {
  50786. name: "Smallest",
  50787. height: math.unit(18 + 3/12, "feet")
  50788. },
  50789. {
  50790. name: "Modest",
  50791. height: math.unit(56 + 8/12, "feet"),
  50792. default: true
  50793. },
  50794. {
  50795. name: "Largest",
  50796. height: math.unit(3590, "feet")
  50797. },
  50798. ]
  50799. ))
  50800. characterMakers.push(() => makeCharacter(
  50801. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50802. {
  50803. front: {
  50804. height: math.unit(5 + 9/12, "feet"),
  50805. weight: math.unit(150, "lb"),
  50806. name: "Front",
  50807. image: {
  50808. source: "./media/characters/ven/front.svg",
  50809. extra: 1372/1320,
  50810. bottom: 73/1445
  50811. }
  50812. },
  50813. side: {
  50814. height: math.unit(5 + 9/12, "feet"),
  50815. weight: math.unit(1150, "lb"),
  50816. name: "Side",
  50817. image: {
  50818. source: "./media/characters/ven/side.svg",
  50819. extra: 1119/1070,
  50820. bottom: 42/1161
  50821. },
  50822. default: true
  50823. },
  50824. },
  50825. [
  50826. {
  50827. name: "Normal",
  50828. height: math.unit(5 + 9/12, "feet"),
  50829. default: true
  50830. },
  50831. ]
  50832. ))
  50833. characterMakers.push(() => makeCharacter(
  50834. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50835. {
  50836. front: {
  50837. height: math.unit(12, "feet"),
  50838. weight: math.unit(1000, "kg"),
  50839. name: "Front",
  50840. image: {
  50841. source: "./media/characters/maple/front.svg",
  50842. extra: 1193/1081,
  50843. bottom: 22/1215
  50844. }
  50845. },
  50846. },
  50847. [
  50848. {
  50849. name: "Compressed",
  50850. height: math.unit(7, "feet")
  50851. },
  50852. {
  50853. name: "Normal",
  50854. height: math.unit(12, "feet"),
  50855. default: true
  50856. },
  50857. ]
  50858. ))
  50859. characterMakers.push(() => makeCharacter(
  50860. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50861. {
  50862. front: {
  50863. height: math.unit(9, "feet"),
  50864. weight: math.unit(1500, "lb"),
  50865. name: "Front",
  50866. image: {
  50867. source: "./media/characters/nora/front.svg",
  50868. extra: 1348/1286,
  50869. bottom: 218/1566
  50870. }
  50871. },
  50872. erect: {
  50873. height: math.unit(9, "feet"),
  50874. weight: math.unit(11500, "lb"),
  50875. name: "Erect",
  50876. image: {
  50877. source: "./media/characters/nora/erect.svg",
  50878. extra: 1488/1433,
  50879. bottom: 133/1621
  50880. }
  50881. },
  50882. },
  50883. [
  50884. {
  50885. name: "Normal",
  50886. height: math.unit(9, "feet"),
  50887. default: true
  50888. },
  50889. ]
  50890. ))
  50891. characterMakers.push(() => makeCharacter(
  50892. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50893. {
  50894. front: {
  50895. height: math.unit(25, "feet"),
  50896. weight: math.unit(27500, "lb"),
  50897. name: "Front",
  50898. image: {
  50899. source: "./media/characters/north-caudin/front.svg",
  50900. extra: 1184/1082,
  50901. bottom: 23/1207
  50902. }
  50903. },
  50904. },
  50905. [
  50906. {
  50907. name: "Compressed",
  50908. height: math.unit(10, "feet")
  50909. },
  50910. {
  50911. name: "Normal",
  50912. height: math.unit(25, "feet"),
  50913. default: true
  50914. },
  50915. ]
  50916. ))
  50917. characterMakers.push(() => makeCharacter(
  50918. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50919. {
  50920. front: {
  50921. height: math.unit(9, "feet"),
  50922. weight: math.unit(1250, "lb"),
  50923. name: "Front",
  50924. image: {
  50925. source: "./media/characters/merrian/front.svg",
  50926. extra: 2393/2304,
  50927. bottom: 40/2433
  50928. }
  50929. },
  50930. },
  50931. [
  50932. {
  50933. name: "Normal",
  50934. height: math.unit(9, "feet"),
  50935. default: true
  50936. },
  50937. ]
  50938. ))
  50939. characterMakers.push(() => makeCharacter(
  50940. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50941. {
  50942. front: {
  50943. height: math.unit(9, "feet"),
  50944. weight: math.unit(1000, "lb"),
  50945. name: "Front",
  50946. image: {
  50947. source: "./media/characters/hazel/front.svg",
  50948. extra: 2351/2298,
  50949. bottom: 38/2389
  50950. }
  50951. },
  50952. },
  50953. [
  50954. {
  50955. name: "Normal",
  50956. height: math.unit(9, "feet"),
  50957. default: true
  50958. },
  50959. ]
  50960. ))
  50961. characterMakers.push(() => makeCharacter(
  50962. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50963. {
  50964. front: {
  50965. height: math.unit(13, "feet"),
  50966. weight: math.unit(3200, "lb"),
  50967. name: "Front",
  50968. image: {
  50969. source: "./media/characters/emma/front.svg",
  50970. extra: 2263/2029,
  50971. bottom: 68/2331
  50972. }
  50973. },
  50974. },
  50975. [
  50976. {
  50977. name: "Normal",
  50978. height: math.unit(13, "feet"),
  50979. default: true
  50980. },
  50981. ]
  50982. ))
  50983. characterMakers.push(() => makeCharacter(
  50984. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50985. {
  50986. front: {
  50987. height: math.unit(11 + 9/12, "feet"),
  50988. weight: math.unit(2500, "lb"),
  50989. name: "Front",
  50990. image: {
  50991. source: "./media/characters/ilumina/front.svg",
  50992. extra: 2248/2209,
  50993. bottom: 164/2412
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Normal",
  51000. height: math.unit(11 + 9/12, "feet"),
  51001. default: true
  51002. },
  51003. ]
  51004. ))
  51005. characterMakers.push(() => makeCharacter(
  51006. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51007. {
  51008. front: {
  51009. height: math.unit(8 + 10/12, "feet"),
  51010. weight: math.unit(1350, "lb"),
  51011. name: "Front",
  51012. image: {
  51013. source: "./media/characters/moonshine/front.svg",
  51014. extra: 2395/2288,
  51015. bottom: 40/2435
  51016. }
  51017. },
  51018. },
  51019. [
  51020. {
  51021. name: "Normal",
  51022. height: math.unit(8 + 10/12, "feet"),
  51023. default: true
  51024. },
  51025. ]
  51026. ))
  51027. characterMakers.push(() => makeCharacter(
  51028. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51029. {
  51030. front: {
  51031. height: math.unit(14, "feet"),
  51032. weight: math.unit(3400, "lb"),
  51033. name: "Front",
  51034. image: {
  51035. source: "./media/characters/aletia/front.svg",
  51036. extra: 1185/1052,
  51037. bottom: 21/1206
  51038. }
  51039. },
  51040. },
  51041. [
  51042. {
  51043. name: "Compressed",
  51044. height: math.unit(8, "feet")
  51045. },
  51046. {
  51047. name: "Normal",
  51048. height: math.unit(14, "feet"),
  51049. default: true
  51050. },
  51051. ]
  51052. ))
  51053. characterMakers.push(() => makeCharacter(
  51054. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51055. {
  51056. front: {
  51057. height: math.unit(17, "feet"),
  51058. weight: math.unit(6500, "lb"),
  51059. name: "Front",
  51060. image: {
  51061. source: "./media/characters/deidra/front.svg",
  51062. extra: 1201/1081,
  51063. bottom: 16/1217
  51064. }
  51065. },
  51066. },
  51067. [
  51068. {
  51069. name: "Compressed",
  51070. height: math.unit(9 + 6/12, "feet")
  51071. },
  51072. {
  51073. name: "Normal",
  51074. height: math.unit(17, "feet"),
  51075. default: true
  51076. },
  51077. ]
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51081. {
  51082. front: {
  51083. height: math.unit(7 + 4/12, "feet"),
  51084. weight: math.unit(280, "lb"),
  51085. name: "Front",
  51086. image: {
  51087. source: "./media/characters/freki-yrmori/front.svg",
  51088. extra: 1286/1182,
  51089. bottom: 29/1315
  51090. }
  51091. },
  51092. maw: {
  51093. height: math.unit(0.9, "feet"),
  51094. name: "Maw",
  51095. image: {
  51096. source: "./media/characters/freki-yrmori/maw.svg"
  51097. }
  51098. },
  51099. },
  51100. [
  51101. {
  51102. name: "Normal",
  51103. height: math.unit(7 + 4/12, "feet"),
  51104. default: true
  51105. },
  51106. {
  51107. name: "Macro",
  51108. height: math.unit(38.5, "meters")
  51109. },
  51110. ]
  51111. ))
  51112. characterMakers.push(() => makeCharacter(
  51113. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51114. {
  51115. side: {
  51116. height: math.unit(47.2, "meters"),
  51117. weight: math.unit(10000, "tons"),
  51118. name: "Side",
  51119. image: {
  51120. source: "./media/characters/aetherios/side.svg",
  51121. extra: 2363/642,
  51122. bottom: 221/2584
  51123. }
  51124. },
  51125. top: {
  51126. height: math.unit(240, "meters"),
  51127. weight: math.unit(10000, "tons"),
  51128. name: "Top",
  51129. image: {
  51130. source: "./media/characters/aetherios/top.svg"
  51131. }
  51132. },
  51133. bottom: {
  51134. height: math.unit(240, "meters"),
  51135. weight: math.unit(10000, "tons"),
  51136. name: "Bottom",
  51137. image: {
  51138. source: "./media/characters/aetherios/bottom.svg"
  51139. }
  51140. },
  51141. head: {
  51142. height: math.unit(38.6, "meters"),
  51143. name: "Head",
  51144. image: {
  51145. source: "./media/characters/aetherios/head.svg",
  51146. extra: 1335/1112,
  51147. bottom: 0/1335
  51148. }
  51149. },
  51150. front: {
  51151. height: math.unit(29, "meters"),
  51152. name: "Front",
  51153. image: {
  51154. source: "./media/characters/aetherios/front.svg",
  51155. extra: 1266/953,
  51156. bottom: 158/1424
  51157. }
  51158. },
  51159. maw: {
  51160. height: math.unit(16.37, "meters"),
  51161. name: "Maw",
  51162. image: {
  51163. source: "./media/characters/aetherios/maw.svg",
  51164. extra: 748/637,
  51165. bottom: 0/748
  51166. },
  51167. extraAttributes: {
  51168. preyCapacity: {
  51169. name: "Capacity",
  51170. power: 3,
  51171. type: "volume",
  51172. base: math.unit(1000, "people")
  51173. },
  51174. tongueSize: {
  51175. name: "Tongue Size",
  51176. power: 2,
  51177. type: "area",
  51178. base: math.unit(21, "m^2")
  51179. }
  51180. }
  51181. },
  51182. forepaw: {
  51183. height: math.unit(18, "meters"),
  51184. name: "Forepaw",
  51185. image: {
  51186. source: "./media/characters/aetherios/forepaw.svg"
  51187. }
  51188. },
  51189. hindpaw: {
  51190. height: math.unit(23, "meters"),
  51191. name: "Hindpaw",
  51192. image: {
  51193. source: "./media/characters/aetherios/hindpaw.svg"
  51194. }
  51195. },
  51196. genitals: {
  51197. height: math.unit(42, "meters"),
  51198. name: "Genitals",
  51199. image: {
  51200. source: "./media/characters/aetherios/genitals.svg"
  51201. }
  51202. },
  51203. },
  51204. [
  51205. {
  51206. name: "Normal",
  51207. height: math.unit(47.2, "meters"),
  51208. default: true
  51209. },
  51210. {
  51211. name: "Macro",
  51212. height: math.unit(160, "meters")
  51213. },
  51214. {
  51215. name: "Mega",
  51216. height: math.unit(1.87, "km")
  51217. },
  51218. {
  51219. name: "Giga",
  51220. height: math.unit(40000, "km")
  51221. },
  51222. {
  51223. name: "Stellar",
  51224. height: math.unit(158000000, "km")
  51225. },
  51226. {
  51227. name: "Cosmic",
  51228. height: math.unit(9.46e12, "km")
  51229. },
  51230. ]
  51231. ))
  51232. characterMakers.push(() => makeCharacter(
  51233. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51234. {
  51235. front: {
  51236. height: math.unit(5 + 4/12, "feet"),
  51237. weight: math.unit(80, "lb"),
  51238. name: "Front",
  51239. image: {
  51240. source: "./media/characters/mizu-gieeg/front.svg",
  51241. extra: 850/709,
  51242. bottom: 52/902
  51243. }
  51244. },
  51245. back: {
  51246. height: math.unit(5 + 4/12, "feet"),
  51247. weight: math.unit(80, "lb"),
  51248. name: "Back",
  51249. image: {
  51250. source: "./media/characters/mizu-gieeg/back.svg",
  51251. extra: 882/745,
  51252. bottom: 25/907
  51253. }
  51254. },
  51255. },
  51256. [
  51257. {
  51258. name: "Normal",
  51259. height: math.unit(5 + 4/12, "feet"),
  51260. default: true
  51261. },
  51262. ]
  51263. ))
  51264. characterMakers.push(() => makeCharacter(
  51265. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51266. {
  51267. front: {
  51268. height: math.unit(6, "feet"),
  51269. name: "Front",
  51270. image: {
  51271. source: "./media/characters/roselle-st-papier/front.svg",
  51272. extra: 1430/1280,
  51273. bottom: 37/1467
  51274. }
  51275. },
  51276. back: {
  51277. height: math.unit(6, "feet"),
  51278. name: "Back",
  51279. image: {
  51280. source: "./media/characters/roselle-st-papier/back.svg",
  51281. extra: 1491/1296,
  51282. bottom: 23/1514
  51283. }
  51284. },
  51285. ear: {
  51286. height: math.unit(1.26, "feet"),
  51287. name: "Ear",
  51288. image: {
  51289. source: "./media/characters/roselle-st-papier/ear.svg"
  51290. }
  51291. },
  51292. },
  51293. [
  51294. {
  51295. name: "Normal",
  51296. height: math.unit(150, "feet"),
  51297. default: true
  51298. },
  51299. ]
  51300. ))
  51301. characterMakers.push(() => makeCharacter(
  51302. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51303. {
  51304. front: {
  51305. height: math.unit(1, "inches"),
  51306. name: "Front",
  51307. image: {
  51308. source: "./media/characters/valargent/front.svg",
  51309. extra: 1825/1694,
  51310. bottom: 62/1887
  51311. }
  51312. },
  51313. back: {
  51314. height: math.unit(1, "inches"),
  51315. name: "Back",
  51316. image: {
  51317. source: "./media/characters/valargent/back.svg",
  51318. extra: 1775/1682,
  51319. bottom: 88/1863
  51320. }
  51321. },
  51322. },
  51323. [
  51324. {
  51325. name: "Micro",
  51326. height: math.unit(1, "inch"),
  51327. default: true
  51328. },
  51329. ]
  51330. ))
  51331. characterMakers.push(() => makeCharacter(
  51332. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51333. {
  51334. front: {
  51335. height: math.unit(3.4, "meters"),
  51336. name: "Front",
  51337. image: {
  51338. source: "./media/characters/zarina/front.svg",
  51339. extra: 1733/1425,
  51340. bottom: 93/1826
  51341. }
  51342. },
  51343. squatting: {
  51344. height: math.unit(2.14, "meters"),
  51345. name: "Squatting",
  51346. image: {
  51347. source: "./media/characters/zarina/squatting.svg",
  51348. extra: 1073/788,
  51349. bottom: 63/1136
  51350. }
  51351. },
  51352. back: {
  51353. height: math.unit(2.14, "meters"),
  51354. name: "Back",
  51355. image: {
  51356. source: "./media/characters/zarina/back.svg",
  51357. extra: 1128/885,
  51358. bottom: 0/1128
  51359. }
  51360. },
  51361. },
  51362. [
  51363. {
  51364. name: "Normal",
  51365. height: math.unit(3.4, "meters"),
  51366. default: true
  51367. },
  51368. {
  51369. name: "Big",
  51370. height: math.unit(5, "meters")
  51371. },
  51372. {
  51373. name: "Macro",
  51374. height: math.unit(110, "meters")
  51375. },
  51376. ]
  51377. ))
  51378. characterMakers.push(() => makeCharacter(
  51379. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51380. {
  51381. front: {
  51382. height: math.unit(7, "feet"),
  51383. name: "Front",
  51384. image: {
  51385. source: "./media/characters/ventus-astro-fox/front.svg",
  51386. extra: 1792/1623,
  51387. bottom: 28/1820
  51388. }
  51389. },
  51390. back: {
  51391. height: math.unit(7, "feet"),
  51392. name: "Back",
  51393. image: {
  51394. source: "./media/characters/ventus-astro-fox/back.svg",
  51395. extra: 1789/1620,
  51396. bottom: 31/1820
  51397. }
  51398. },
  51399. outfit: {
  51400. height: math.unit(7, "feet"),
  51401. name: "Outfit",
  51402. image: {
  51403. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51404. extra: 1054/925,
  51405. bottom: 15/1069
  51406. }
  51407. },
  51408. head: {
  51409. height: math.unit(1.12, "feet"),
  51410. name: "Head",
  51411. image: {
  51412. source: "./media/characters/ventus-astro-fox/head.svg",
  51413. extra: 866/504,
  51414. bottom: 0/866
  51415. }
  51416. },
  51417. hand: {
  51418. height: math.unit(1, "feet"),
  51419. name: "Hand",
  51420. image: {
  51421. source: "./media/characters/ventus-astro-fox/hand.svg"
  51422. }
  51423. },
  51424. paw: {
  51425. height: math.unit(1.5, "feet"),
  51426. name: "Paw",
  51427. image: {
  51428. source: "./media/characters/ventus-astro-fox/paw.svg"
  51429. }
  51430. },
  51431. },
  51432. [
  51433. {
  51434. name: "Normal",
  51435. height: math.unit(7, "feet"),
  51436. default: true
  51437. },
  51438. {
  51439. name: "Macro",
  51440. height: math.unit(200, "feet")
  51441. },
  51442. {
  51443. name: "Cosmic",
  51444. height: math.unit(3, "universes")
  51445. },
  51446. ]
  51447. ))
  51448. characterMakers.push(() => makeCharacter(
  51449. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51450. {
  51451. front: {
  51452. height: math.unit(3, "meters"),
  51453. weight: math.unit(7000, "lb"),
  51454. name: "Front",
  51455. image: {
  51456. source: "./media/characters/core-t/front.svg",
  51457. extra: 5729/4941,
  51458. bottom: 1129/6858
  51459. }
  51460. },
  51461. },
  51462. [
  51463. {
  51464. name: "Big",
  51465. height: math.unit(3, "meters"),
  51466. default: true
  51467. },
  51468. ]
  51469. ))
  51470. characterMakers.push(() => makeCharacter(
  51471. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51472. {
  51473. normal: {
  51474. height: math.unit(6 + 6/12, "feet"),
  51475. weight: math.unit(275, "lb"),
  51476. name: "Front",
  51477. image: {
  51478. source: "./media/characters/cadbunny/normal.svg",
  51479. extra: 1129/947,
  51480. bottom: 93/1222
  51481. },
  51482. default: true,
  51483. form: "normal"
  51484. },
  51485. gigantamax: {
  51486. height: math.unit(26, "feet"),
  51487. weight: math.unit(16000, "lb"),
  51488. name: "Front",
  51489. image: {
  51490. source: "./media/characters/cadbunny/gigantamax.svg",
  51491. extra: 1133/944,
  51492. bottom: 90/1223
  51493. },
  51494. default: true,
  51495. form: "gigantamax"
  51496. },
  51497. },
  51498. [
  51499. {
  51500. name: "Normal",
  51501. height: math.unit(6 + 6/12, "feet"),
  51502. default: true,
  51503. form: "normal"
  51504. },
  51505. {
  51506. name: "Small",
  51507. height: math.unit(26, "feet"),
  51508. default: true,
  51509. form: "gigantamax"
  51510. },
  51511. {
  51512. name: "Large",
  51513. height: math.unit(78, "feet"),
  51514. form: "gigantamax"
  51515. },
  51516. ],
  51517. {
  51518. "normal": {
  51519. name: "Normal",
  51520. default: true
  51521. },
  51522. "gigantamax": {
  51523. name: "Gigantamax"
  51524. }
  51525. }
  51526. ))
  51527. characterMakers.push(() => makeCharacter(
  51528. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51529. {
  51530. anthroFront: {
  51531. height: math.unit(8, "feet"),
  51532. weight: math.unit(300, "lb"),
  51533. name: "Front",
  51534. image: {
  51535. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51536. extra: 1272/1176,
  51537. bottom: 53/1325
  51538. },
  51539. form: "anthro",
  51540. default: true
  51541. },
  51542. feralSide: {
  51543. height: math.unit(4, "feet"),
  51544. weight: math.unit(250, "lb"),
  51545. name: "Side",
  51546. image: {
  51547. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51548. extra: 731/621,
  51549. bottom: 0/731
  51550. },
  51551. form: "feral",
  51552. default: true
  51553. },
  51554. },
  51555. [
  51556. {
  51557. name: "Regular",
  51558. height: math.unit(8, "feet"),
  51559. form: "anthro"
  51560. },
  51561. {
  51562. name: "Macro",
  51563. height: math.unit(250, "feet"),
  51564. form: "anthro",
  51565. default: true
  51566. },
  51567. {
  51568. name: "Regular",
  51569. height: math.unit(4, "feet"),
  51570. form: "feral"
  51571. },
  51572. {
  51573. name: "Macro",
  51574. height: math.unit(125, "feet"),
  51575. form: "feral",
  51576. default: true
  51577. },
  51578. ],
  51579. {
  51580. "anthro": {
  51581. name: "Anthro",
  51582. default: true
  51583. },
  51584. "feral": {
  51585. name: "Feral",
  51586. },
  51587. }
  51588. ))
  51589. characterMakers.push(() => makeCharacter(
  51590. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51591. {
  51592. front: {
  51593. height: math.unit(11 + 10/12, "feet"),
  51594. weight: math.unit(1587, "kg"),
  51595. name: "Front",
  51596. image: {
  51597. source: "./media/characters/maple-javira-dragon/front.svg",
  51598. extra: 1136/744,
  51599. bottom: 73/1209
  51600. }
  51601. },
  51602. side: {
  51603. height: math.unit(11 + 10/12, "feet"),
  51604. weight: math.unit(1587, "kg"),
  51605. name: "Side",
  51606. image: {
  51607. source: "./media/characters/maple-javira-dragon/side.svg",
  51608. extra: 712/505,
  51609. bottom: 17/729
  51610. }
  51611. },
  51612. head: {
  51613. height: math.unit(8.05, "feet"),
  51614. name: "Head",
  51615. image: {
  51616. source: "./media/characters/maple-javira-dragon/head.svg",
  51617. extra: 1420/1344,
  51618. bottom: 0/1420
  51619. }
  51620. },
  51621. },
  51622. [
  51623. {
  51624. name: "Normal",
  51625. height: math.unit(11 + 10/12, "feet"),
  51626. default: true
  51627. },
  51628. ]
  51629. ))
  51630. characterMakers.push(() => makeCharacter(
  51631. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51632. {
  51633. front: {
  51634. height: math.unit(117, "cm"),
  51635. weight: math.unit(50, "kg"),
  51636. name: "Front",
  51637. image: {
  51638. source: "./media/characters/sonia-wyverntail/front.svg",
  51639. extra: 708/592,
  51640. bottom: 25/733
  51641. }
  51642. },
  51643. },
  51644. [
  51645. {
  51646. name: "Normal",
  51647. height: math.unit(117, "cm"),
  51648. default: true
  51649. },
  51650. ]
  51651. ))
  51652. characterMakers.push(() => makeCharacter(
  51653. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51654. {
  51655. front: {
  51656. height: math.unit(6 + 5/12, "feet"),
  51657. name: "Front",
  51658. image: {
  51659. source: "./media/characters/micah/front.svg",
  51660. extra: 1758/1546,
  51661. bottom: 214/1972
  51662. }
  51663. },
  51664. },
  51665. [
  51666. {
  51667. name: "Normal",
  51668. height: math.unit(6 + 5/12, "feet"),
  51669. default: true
  51670. },
  51671. ]
  51672. ))
  51673. characterMakers.push(() => makeCharacter(
  51674. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51675. {
  51676. front: {
  51677. height: math.unit(1.75, "meters"),
  51678. weight: math.unit(100, "kg"),
  51679. name: "Front",
  51680. image: {
  51681. source: "./media/characters/zarya/front.svg",
  51682. extra: 741/735,
  51683. bottom: 44/785
  51684. },
  51685. extraAttributes: {
  51686. "tailLength": {
  51687. name: "Tail Length",
  51688. power: 1,
  51689. type: "length",
  51690. base: math.unit(180, "cm")
  51691. },
  51692. "pawLength": {
  51693. name: "Paw Length",
  51694. power: 1,
  51695. type: "length",
  51696. base: math.unit(31, "cm")
  51697. },
  51698. }
  51699. },
  51700. side: {
  51701. height: math.unit(1.75, "meters"),
  51702. weight: math.unit(100, "kg"),
  51703. name: "Side",
  51704. image: {
  51705. source: "./media/characters/zarya/side.svg",
  51706. extra: 776/770,
  51707. bottom: 17/793
  51708. },
  51709. extraAttributes: {
  51710. "tailLength": {
  51711. name: "Tail Length",
  51712. power: 1,
  51713. type: "length",
  51714. base: math.unit(180, "cm")
  51715. },
  51716. "pawLength": {
  51717. name: "Paw Length",
  51718. power: 1,
  51719. type: "length",
  51720. base: math.unit(31, "cm")
  51721. },
  51722. }
  51723. },
  51724. back: {
  51725. height: math.unit(1.75, "meters"),
  51726. weight: math.unit(100, "kg"),
  51727. name: "Back",
  51728. image: {
  51729. source: "./media/characters/zarya/back.svg",
  51730. extra: 741/735,
  51731. bottom: 44/785
  51732. },
  51733. extraAttributes: {
  51734. "tailLength": {
  51735. name: "Tail Length",
  51736. power: 1,
  51737. type: "length",
  51738. base: math.unit(180, "cm")
  51739. },
  51740. "pawLength": {
  51741. name: "Paw Length",
  51742. power: 1,
  51743. type: "length",
  51744. base: math.unit(31, "cm")
  51745. },
  51746. }
  51747. },
  51748. frontNoTail: {
  51749. height: math.unit(1.75, "meters"),
  51750. weight: math.unit(100, "kg"),
  51751. name: "Front (No Tail)",
  51752. image: {
  51753. source: "./media/characters/zarya/front-no-tail.svg",
  51754. extra: 741/735,
  51755. bottom: 44/785
  51756. },
  51757. extraAttributes: {
  51758. "tailLength": {
  51759. name: "Tail Length",
  51760. power: 1,
  51761. type: "length",
  51762. base: math.unit(180, "cm")
  51763. },
  51764. "pawLength": {
  51765. name: "Paw Length",
  51766. power: 1,
  51767. type: "length",
  51768. base: math.unit(31, "cm")
  51769. },
  51770. }
  51771. },
  51772. dressed: {
  51773. height: math.unit(1.75, "meters"),
  51774. weight: math.unit(100, "kg"),
  51775. name: "Dressed",
  51776. image: {
  51777. source: "./media/characters/zarya/dressed.svg",
  51778. extra: 683/672,
  51779. bottom: 79/762
  51780. },
  51781. extraAttributes: {
  51782. "tailLength": {
  51783. name: "Tail Length",
  51784. power: 1,
  51785. type: "length",
  51786. base: math.unit(180, "cm")
  51787. },
  51788. "pawLength": {
  51789. name: "Paw Length",
  51790. power: 1,
  51791. type: "length",
  51792. base: math.unit(31, "cm")
  51793. },
  51794. }
  51795. },
  51796. },
  51797. [
  51798. {
  51799. name: "Micro",
  51800. height: math.unit(5, "cm")
  51801. },
  51802. {
  51803. name: "Normal",
  51804. height: math.unit(1.75, "meters"),
  51805. default: true
  51806. },
  51807. {
  51808. name: "Macro",
  51809. height: math.unit(122, "meters")
  51810. },
  51811. ]
  51812. ))
  51813. characterMakers.push(() => makeCharacter(
  51814. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51815. {
  51816. front: {
  51817. height: math.unit(7.5, "feet"),
  51818. name: "Front",
  51819. image: {
  51820. source: "./media/characters/sven-hatisson/front.svg",
  51821. extra: 917/857,
  51822. bottom: 42/959
  51823. }
  51824. },
  51825. back: {
  51826. height: math.unit(7.5, "feet"),
  51827. name: "Back",
  51828. image: {
  51829. source: "./media/characters/sven-hatisson/back.svg",
  51830. extra: 903/856,
  51831. bottom: 15/918
  51832. }
  51833. },
  51834. },
  51835. [
  51836. {
  51837. name: "Base Height",
  51838. height: math.unit(7.5, "feet")
  51839. },
  51840. {
  51841. name: "Usual Height",
  51842. height: math.unit(13.5, "feet"),
  51843. default: true
  51844. },
  51845. {
  51846. name: "Smaller Macro",
  51847. height: math.unit(85, "feet")
  51848. },
  51849. {
  51850. name: "Moderate Macro",
  51851. height: math.unit(320, "feet")
  51852. },
  51853. {
  51854. name: "Large Macro",
  51855. height: math.unit(1000, "feet")
  51856. },
  51857. {
  51858. name: "Largest Size",
  51859. height: math.unit(2, "miles")
  51860. },
  51861. ]
  51862. ))
  51863. characterMakers.push(() => makeCharacter(
  51864. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51865. {
  51866. side: {
  51867. height: math.unit(1.8, "meters"),
  51868. weight: math.unit(275, "kg"),
  51869. name: "Side",
  51870. image: {
  51871. source: "./media/characters/terra/side.svg",
  51872. extra: 1273/1147,
  51873. bottom: 0/1273
  51874. }
  51875. },
  51876. },
  51877. [
  51878. {
  51879. name: "Normal",
  51880. height: math.unit(16.2, "meters"),
  51881. default: true
  51882. },
  51883. ]
  51884. ))
  51885. characterMakers.push(() => makeCharacter(
  51886. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51887. {
  51888. borzoiFront: {
  51889. height: math.unit(6 + 9/12, "feet"),
  51890. name: "Front",
  51891. image: {
  51892. source: "./media/characters/rae/borzoi-front.svg",
  51893. extra: 1161/1098,
  51894. bottom: 31/1192
  51895. },
  51896. form: "borzoi",
  51897. default: true
  51898. },
  51899. werewolfFront: {
  51900. height: math.unit(8 + 7/12, "feet"),
  51901. name: "Front",
  51902. image: {
  51903. source: "./media/characters/rae/werewolf-front.svg",
  51904. extra: 1411/1334,
  51905. bottom: 127/1538
  51906. },
  51907. form: "werewolf",
  51908. default: true
  51909. },
  51910. },
  51911. [
  51912. {
  51913. name: "Normal",
  51914. height: math.unit(6 + 9/12, "feet"),
  51915. default: true,
  51916. form: "borzoi"
  51917. },
  51918. {
  51919. name: "Normal",
  51920. height: math.unit(8 + 7/12, "feet"),
  51921. default: true,
  51922. form: "werewolf"
  51923. },
  51924. ],
  51925. {
  51926. "borzoi": {
  51927. name: "Borzoi",
  51928. default: true
  51929. },
  51930. "werewolf": {
  51931. name: "Werewolf",
  51932. },
  51933. }
  51934. ))
  51935. characterMakers.push(() => makeCharacter(
  51936. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51937. {
  51938. front: {
  51939. height: math.unit(8 + 7/12, "feet"),
  51940. weight: math.unit(482, "lb"),
  51941. name: "Front",
  51942. image: {
  51943. source: "./media/characters/kit/front.svg",
  51944. extra: 1247/1103,
  51945. bottom: 41/1288
  51946. }
  51947. },
  51948. back: {
  51949. height: math.unit(8 + 7/12, "feet"),
  51950. weight: math.unit(482, "lb"),
  51951. name: "Back",
  51952. image: {
  51953. source: "./media/characters/kit/back.svg",
  51954. extra: 1252/1123,
  51955. bottom: 21/1273
  51956. }
  51957. },
  51958. paw: {
  51959. height: math.unit(1.46, "feet"),
  51960. name: "Paw",
  51961. image: {
  51962. source: "./media/characters/kit/paw.svg"
  51963. }
  51964. },
  51965. },
  51966. [
  51967. {
  51968. name: "Normal",
  51969. height: math.unit(2.61, "meters"),
  51970. default: true
  51971. },
  51972. {
  51973. name: "\"Tall\"",
  51974. height: math.unit(8.21, "meters")
  51975. },
  51976. {
  51977. name: "Tall",
  51978. height: math.unit(19.6, "meters")
  51979. },
  51980. {
  51981. name: "Very Tall",
  51982. height: math.unit(57.91, "meters")
  51983. },
  51984. {
  51985. name: "Semi-Macro",
  51986. height: math.unit(138.64, "meters")
  51987. },
  51988. {
  51989. name: "Macro",
  51990. height: math.unit(831.99, "meters")
  51991. },
  51992. {
  51993. name: "EX-Macro",
  51994. height: math.unit(96451121, "meters")
  51995. },
  51996. {
  51997. name: "S1-Omnipotent",
  51998. height: math.unit(4.42074e+9, "meters")
  51999. },
  52000. {
  52001. name: "S2-Omnipotent",
  52002. height: math.unit(9.42074e+17, "meters")
  52003. },
  52004. {
  52005. name: "Omnipotent",
  52006. height: math.unit(4.23112e+24, "meters")
  52007. },
  52008. {
  52009. name: "Hypergod",
  52010. height: math.unit(5.05176e+27, "meters")
  52011. },
  52012. {
  52013. name: "Hypergod-EX",
  52014. height: math.unit(9.45532e+49, "meters")
  52015. },
  52016. {
  52017. name: "Hypergod-SP",
  52018. height: math.unit(9.45532e+195, "meters")
  52019. },
  52020. ]
  52021. ))
  52022. characterMakers.push(() => makeCharacter(
  52023. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52024. {
  52025. side: {
  52026. height: math.unit(0.6, "meters"),
  52027. weight: math.unit(24, "kg"),
  52028. name: "Side",
  52029. image: {
  52030. source: "./media/characters/celeste/side.svg",
  52031. extra: 810/517,
  52032. bottom: 53/863
  52033. }
  52034. },
  52035. },
  52036. [
  52037. {
  52038. name: "Velociraptor",
  52039. height: math.unit(0.6, "meters"),
  52040. default: true
  52041. },
  52042. {
  52043. name: "Utahraptor",
  52044. height: math.unit(1.8, "meters")
  52045. },
  52046. {
  52047. name: "Gallimimus",
  52048. height: math.unit(4.0, "meters")
  52049. },
  52050. {
  52051. name: "Large",
  52052. height: math.unit(20, "meters")
  52053. },
  52054. {
  52055. name: "Planetary",
  52056. height: math.unit(50, "megameters")
  52057. },
  52058. {
  52059. name: "Stellar",
  52060. height: math.unit(1.5, "gigameters")
  52061. },
  52062. {
  52063. name: "Galactic",
  52064. height: math.unit(100, "exameters")
  52065. },
  52066. ]
  52067. ))
  52068. characterMakers.push(() => makeCharacter(
  52069. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52070. {
  52071. front: {
  52072. height: math.unit(6, "feet"),
  52073. weight: math.unit(210, "lb"),
  52074. name: "Front",
  52075. image: {
  52076. source: "./media/characters/glacia/front.svg",
  52077. extra: 958/901,
  52078. bottom: 45/1003
  52079. }
  52080. },
  52081. },
  52082. [
  52083. {
  52084. name: "Macro",
  52085. height: math.unit(1000, "meters"),
  52086. default: true
  52087. },
  52088. ]
  52089. ))
  52090. characterMakers.push(() => makeCharacter(
  52091. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52092. {
  52093. front: {
  52094. height: math.unit(4, "meters"),
  52095. name: "Front",
  52096. image: {
  52097. source: "./media/characters/giri/front.svg",
  52098. extra: 966/894,
  52099. bottom: 21/987
  52100. }
  52101. },
  52102. },
  52103. [
  52104. {
  52105. name: "Normal",
  52106. height: math.unit(4, "meters"),
  52107. default: true
  52108. },
  52109. ]
  52110. ))
  52111. characterMakers.push(() => makeCharacter(
  52112. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52113. {
  52114. back: {
  52115. height: math.unit(4, "feet"),
  52116. weight: math.unit(37, "lb"),
  52117. name: "Back",
  52118. image: {
  52119. source: "./media/characters/tin/back.svg",
  52120. extra: 845/780,
  52121. bottom: 28/873
  52122. }
  52123. },
  52124. },
  52125. [
  52126. {
  52127. name: "Normal",
  52128. height: math.unit(4, "feet"),
  52129. default: true
  52130. },
  52131. ]
  52132. ))
  52133. characterMakers.push(() => makeCharacter(
  52134. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52135. {
  52136. front: {
  52137. height: math.unit(25, "feet"),
  52138. name: "Front",
  52139. image: {
  52140. source: "./media/characters/cadenza-vivace/front.svg",
  52141. extra: 1842/1578,
  52142. bottom: 30/1872
  52143. }
  52144. },
  52145. },
  52146. [
  52147. {
  52148. name: "Macro",
  52149. height: math.unit(25, "feet"),
  52150. default: true
  52151. },
  52152. ]
  52153. ))
  52154. characterMakers.push(() => makeCharacter(
  52155. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52156. {
  52157. front: {
  52158. height: math.unit(10, "feet"),
  52159. weight: math.unit(625, "kg"),
  52160. name: "Front",
  52161. image: {
  52162. source: "./media/characters/zain/front.svg",
  52163. extra: 1682/1498,
  52164. bottom: 223/1905
  52165. }
  52166. },
  52167. back: {
  52168. height: math.unit(10, "feet"),
  52169. weight: math.unit(625, "kg"),
  52170. name: "Back",
  52171. image: {
  52172. source: "./media/characters/zain/back.svg",
  52173. extra: 1814/1657,
  52174. bottom: 152/1966
  52175. }
  52176. },
  52177. head: {
  52178. height: math.unit(10, "feet"),
  52179. weight: math.unit(625, "kg"),
  52180. name: "Head",
  52181. image: {
  52182. source: "./media/characters/zain/head.svg",
  52183. extra: 1059/762,
  52184. bottom: 0/1059
  52185. }
  52186. },
  52187. },
  52188. [
  52189. {
  52190. name: "Normal",
  52191. height: math.unit(10, "feet"),
  52192. default: true
  52193. },
  52194. ]
  52195. ))
  52196. characterMakers.push(() => makeCharacter(
  52197. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52198. {
  52199. front: {
  52200. height: math.unit(6 + 5/12, "feet"),
  52201. weight: math.unit(750, "lb"),
  52202. name: "Front",
  52203. image: {
  52204. source: "./media/characters/ruchex/front.svg",
  52205. extra: 877/820,
  52206. bottom: 17/894
  52207. },
  52208. extraAttributes: {
  52209. "width": {
  52210. name: "Width",
  52211. power: 1,
  52212. type: "length",
  52213. base: math.unit(4.757, "feet")
  52214. },
  52215. }
  52216. },
  52217. },
  52218. [
  52219. {
  52220. name: "Normal",
  52221. height: math.unit(6 + 5/12, "feet"),
  52222. default: true
  52223. },
  52224. ]
  52225. ))
  52226. characterMakers.push(() => makeCharacter(
  52227. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52228. {
  52229. dressedFront: {
  52230. height: math.unit(191, "cm"),
  52231. weight: math.unit(80, "kg"),
  52232. name: "Front",
  52233. image: {
  52234. source: "./media/characters/buster/dressed-front.svg",
  52235. extra: 1022/973,
  52236. bottom: 69/1091
  52237. }
  52238. },
  52239. dressedBack: {
  52240. height: math.unit(191, "cm"),
  52241. weight: math.unit(80, "kg"),
  52242. name: "Back",
  52243. image: {
  52244. source: "./media/characters/buster/dressed-back.svg",
  52245. extra: 1018/970,
  52246. bottom: 55/1073
  52247. }
  52248. },
  52249. nudeFront: {
  52250. height: math.unit(191, "cm"),
  52251. weight: math.unit(80, "kg"),
  52252. name: "Front (Nude)",
  52253. image: {
  52254. source: "./media/characters/buster/nude-front.svg",
  52255. extra: 1022/973,
  52256. bottom: 69/1091
  52257. }
  52258. },
  52259. nudeBack: {
  52260. height: math.unit(191, "cm"),
  52261. weight: math.unit(80, "kg"),
  52262. name: "Back (Nude)",
  52263. image: {
  52264. source: "./media/characters/buster/nude-back.svg",
  52265. extra: 1018/970,
  52266. bottom: 55/1073
  52267. }
  52268. },
  52269. dick: {
  52270. height: math.unit(2.59, "feet"),
  52271. name: "Dick",
  52272. image: {
  52273. source: "./media/characters/buster/dick.svg"
  52274. }
  52275. },
  52276. ass: {
  52277. height: math.unit(1.2, "feet"),
  52278. name: "Ass",
  52279. image: {
  52280. source: "./media/characters/buster/ass.svg"
  52281. }
  52282. },
  52283. },
  52284. [
  52285. {
  52286. name: "Normal",
  52287. height: math.unit(191, "cm"),
  52288. default: true
  52289. },
  52290. ]
  52291. ))
  52292. characterMakers.push(() => makeCharacter(
  52293. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52294. {
  52295. side: {
  52296. height: math.unit(8.1, "feet"),
  52297. weight: math.unit(3500, "lb"),
  52298. name: "Side",
  52299. image: {
  52300. source: "./media/characters/sonya/side.svg",
  52301. extra: 1730/1317,
  52302. bottom: 86/1816
  52303. }
  52304. },
  52305. },
  52306. [
  52307. {
  52308. name: "Normal",
  52309. height: math.unit(8.1, "feet"),
  52310. default: true
  52311. },
  52312. ]
  52313. ))
  52314. characterMakers.push(() => makeCharacter(
  52315. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52316. {
  52317. front: {
  52318. height: math.unit(6, "feet"),
  52319. weight: math.unit(150, "lb"),
  52320. name: "Front",
  52321. image: {
  52322. source: "./media/characters/cadence-andrysiak/front.svg",
  52323. extra: 1164/1121,
  52324. bottom: 60/1224
  52325. }
  52326. },
  52327. back: {
  52328. height: math.unit(6, "feet"),
  52329. weight: math.unit(150, "lb"),
  52330. name: "Back",
  52331. image: {
  52332. source: "./media/characters/cadence-andrysiak/back.svg",
  52333. extra: 1200/1165,
  52334. bottom: 9/1209
  52335. }
  52336. },
  52337. dressed: {
  52338. height: math.unit(6, "feet"),
  52339. weight: math.unit(150, "lb"),
  52340. name: "Dressed",
  52341. image: {
  52342. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52343. extra: 1164/1121,
  52344. bottom: 60/1224
  52345. }
  52346. },
  52347. },
  52348. [
  52349. {
  52350. name: "Micro",
  52351. height: math.unit(1, "mm")
  52352. },
  52353. {
  52354. name: "Normal",
  52355. height: math.unit(6, "feet"),
  52356. default: true
  52357. },
  52358. ]
  52359. ))
  52360. characterMakers.push(() => makeCharacter(
  52361. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52362. {
  52363. front: {
  52364. height: math.unit(60, "inches"),
  52365. weight: math.unit(16, "lb"),
  52366. preyCapacity: math.unit(80, "liters"),
  52367. name: "Front",
  52368. image: {
  52369. source: "./media/characters/penny-lynx/front.svg",
  52370. extra: 1959/1769,
  52371. bottom: 49/2008
  52372. }
  52373. },
  52374. },
  52375. [
  52376. {
  52377. name: "Nokia",
  52378. height: math.unit(2, "inches")
  52379. },
  52380. {
  52381. name: "Desktop",
  52382. height: math.unit(24, "inches")
  52383. },
  52384. {
  52385. name: "TV",
  52386. height: math.unit(60, "inches")
  52387. },
  52388. {
  52389. name: "Jumbotron",
  52390. height: math.unit(12, "feet")
  52391. },
  52392. {
  52393. name: "Billboard",
  52394. height: math.unit(48, "feet"),
  52395. default: true
  52396. },
  52397. {
  52398. name: "IMAX",
  52399. height: math.unit(96, "feet")
  52400. },
  52401. {
  52402. name: "SINGULARITY",
  52403. height: math.unit(864938, "miles")
  52404. },
  52405. ]
  52406. ))
  52407. characterMakers.push(() => makeCharacter(
  52408. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52409. {
  52410. front: {
  52411. height: math.unit(5 + 4/12, "feet"),
  52412. weight: math.unit(230, "lb"),
  52413. name: "Front",
  52414. image: {
  52415. source: "./media/characters/sukebe/front.svg",
  52416. extra: 2130/2038,
  52417. bottom: 90/2220
  52418. }
  52419. },
  52420. back: {
  52421. height: math.unit(3.48, "feet"),
  52422. weight: math.unit(230, "lb"),
  52423. name: "Back",
  52424. image: {
  52425. source: "./media/characters/sukebe/back.svg",
  52426. extra: 1670/1604,
  52427. bottom: 0/1670
  52428. }
  52429. },
  52430. },
  52431. [
  52432. {
  52433. name: "Normal",
  52434. height: math.unit(5 + 4/12, "feet"),
  52435. default: true
  52436. },
  52437. ]
  52438. ))
  52439. characterMakers.push(() => makeCharacter(
  52440. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52441. {
  52442. front: {
  52443. height: math.unit(6, "feet"),
  52444. name: "Front",
  52445. image: {
  52446. source: "./media/characters/nylla/front.svg",
  52447. extra: 1868/1699,
  52448. bottom: 97/1965
  52449. }
  52450. },
  52451. back: {
  52452. height: math.unit(6, "feet"),
  52453. name: "Back",
  52454. image: {
  52455. source: "./media/characters/nylla/back.svg",
  52456. extra: 1889/1712,
  52457. bottom: 93/1982
  52458. }
  52459. },
  52460. frontNsfw: {
  52461. height: math.unit(6, "feet"),
  52462. name: "Front (NSFW)",
  52463. image: {
  52464. source: "./media/characters/nylla/front-nsfw.svg",
  52465. extra: 1868/1699,
  52466. bottom: 97/1965
  52467. },
  52468. extraAttributes: {
  52469. "dickLength": {
  52470. name: "Dick Length",
  52471. power: 1,
  52472. type: "length",
  52473. base: math.unit(1.4, "feet")
  52474. },
  52475. "cumVolume": {
  52476. name: "Cum Volume",
  52477. power: 3,
  52478. type: "volume",
  52479. base: math.unit(100, "mL")
  52480. },
  52481. }
  52482. },
  52483. backNsfw: {
  52484. height: math.unit(6, "feet"),
  52485. name: "Back (NSFW)",
  52486. image: {
  52487. source: "./media/characters/nylla/back-nsfw.svg",
  52488. extra: 1889/1712,
  52489. bottom: 93/1982
  52490. }
  52491. },
  52492. maw: {
  52493. height: math.unit(2.10, "feet"),
  52494. name: "Maw",
  52495. image: {
  52496. source: "./media/characters/nylla/maw.svg"
  52497. }
  52498. },
  52499. paws: {
  52500. height: math.unit(2.06, "feet"),
  52501. name: "Paws",
  52502. image: {
  52503. source: "./media/characters/nylla/paws.svg"
  52504. }
  52505. },
  52506. muzzle: {
  52507. height: math.unit(0.61, "feet"),
  52508. name: "Muzzle",
  52509. image: {
  52510. source: "./media/characters/nylla/muzzle.svg"
  52511. }
  52512. },
  52513. sheath: {
  52514. height: math.unit(1.305, "feet"),
  52515. name: "Sheath",
  52516. image: {
  52517. source: "./media/characters/nylla/sheath.svg"
  52518. }
  52519. },
  52520. },
  52521. [
  52522. {
  52523. name: "Micro",
  52524. height: math.unit(7.5, "inches")
  52525. },
  52526. {
  52527. name: "Normal",
  52528. height: math.unit(7, "feet"),
  52529. default: true
  52530. },
  52531. {
  52532. name: "Macro",
  52533. height: math.unit(60, "feet")
  52534. },
  52535. {
  52536. name: "Mega",
  52537. height: math.unit(200, "feet")
  52538. },
  52539. ]
  52540. ))
  52541. characterMakers.push(() => makeCharacter(
  52542. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52543. {
  52544. front: {
  52545. height: math.unit(10, "feet"),
  52546. weight: math.unit(2300, "lb"),
  52547. name: "Front",
  52548. image: {
  52549. source: "./media/characters/hunt3r/front.svg",
  52550. extra: 1909/1742,
  52551. bottom: 46/1955
  52552. }
  52553. },
  52554. },
  52555. [
  52556. {
  52557. name: "Normal",
  52558. height: math.unit(10, "feet"),
  52559. default: true
  52560. },
  52561. ]
  52562. ))
  52563. characterMakers.push(() => makeCharacter(
  52564. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52565. {
  52566. dressed: {
  52567. height: math.unit(11, "feet"),
  52568. weight: math.unit(18500, "lb"),
  52569. preyCapacity: math.unit(9, "people"),
  52570. name: "Dressed",
  52571. image: {
  52572. source: "./media/characters/cylphis/dressed.svg",
  52573. extra: 1028/1003,
  52574. bottom: 75/1103
  52575. },
  52576. },
  52577. undressed: {
  52578. height: math.unit(11, "feet"),
  52579. weight: math.unit(18500, "lb"),
  52580. preyCapacity: math.unit(9, "people"),
  52581. name: "Undressed",
  52582. image: {
  52583. source: "./media/characters/cylphis/undressed.svg",
  52584. extra: 1028/1003,
  52585. bottom: 75/1103
  52586. }
  52587. },
  52588. full: {
  52589. height: math.unit(11, "feet"),
  52590. weight: math.unit(18500 + 150*9, "lb"),
  52591. preyCapacity: math.unit(9, "people"),
  52592. name: "Full",
  52593. image: {
  52594. source: "./media/characters/cylphis/full.svg",
  52595. extra: 1028/1003,
  52596. bottom: 75/1103
  52597. }
  52598. },
  52599. },
  52600. [
  52601. {
  52602. name: "Small",
  52603. height: math.unit(8, "feet")
  52604. },
  52605. {
  52606. name: "Normal",
  52607. height: math.unit(11, "feet"),
  52608. default: true
  52609. },
  52610. ]
  52611. ))
  52612. characterMakers.push(() => makeCharacter(
  52613. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52614. {
  52615. front: {
  52616. height: math.unit(2 + 7/12, "feet"),
  52617. name: "Front",
  52618. image: {
  52619. source: "./media/characters/orishan/front.svg",
  52620. extra: 1058/1023,
  52621. bottom: 23/1081
  52622. }
  52623. },
  52624. back: {
  52625. height: math.unit(2 + 7/12, "feet"),
  52626. name: "Back",
  52627. image: {
  52628. source: "./media/characters/orishan/back.svg",
  52629. extra: 1058/1023,
  52630. bottom: 23/1081
  52631. }
  52632. },
  52633. },
  52634. [
  52635. {
  52636. name: "Micro",
  52637. height: math.unit(2, "cm")
  52638. },
  52639. {
  52640. name: "Normal",
  52641. height: math.unit(2 + 7/12, "feet"),
  52642. default: true
  52643. },
  52644. ]
  52645. ))
  52646. characterMakers.push(() => makeCharacter(
  52647. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52648. {
  52649. front: {
  52650. height: math.unit(3, "meters"),
  52651. weight: math.unit(508, "kg"),
  52652. name: "Front",
  52653. image: {
  52654. source: "./media/characters/seranis/front.svg",
  52655. extra: 1478/1454,
  52656. bottom: 41/1519
  52657. }
  52658. },
  52659. },
  52660. [
  52661. {
  52662. name: "Normal",
  52663. height: math.unit(3, "meters"),
  52664. default: true
  52665. },
  52666. {
  52667. name: "Macro",
  52668. height: math.unit(108, "meters")
  52669. },
  52670. {
  52671. name: "Megamacro",
  52672. height: math.unit(1250, "meters")
  52673. },
  52674. ]
  52675. ))
  52676. characterMakers.push(() => makeCharacter(
  52677. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52678. {
  52679. undressed: {
  52680. height: math.unit(5 + 3/12, "feet"),
  52681. name: "Undressed",
  52682. image: {
  52683. source: "./media/characters/ankou/undressed.svg",
  52684. extra: 1301/1213,
  52685. bottom: 87/1388
  52686. }
  52687. },
  52688. dressed: {
  52689. height: math.unit(5 + 3/12, "feet"),
  52690. name: "Dressed",
  52691. image: {
  52692. source: "./media/characters/ankou/dressed.svg",
  52693. extra: 1301/1213,
  52694. bottom: 87/1388
  52695. }
  52696. },
  52697. head: {
  52698. height: math.unit(1.61, "feet"),
  52699. name: "Head",
  52700. image: {
  52701. source: "./media/characters/ankou/head.svg"
  52702. }
  52703. },
  52704. },
  52705. [
  52706. {
  52707. name: "Normal",
  52708. height: math.unit(5 + 3/12, "feet"),
  52709. default: true
  52710. },
  52711. ]
  52712. ))
  52713. characterMakers.push(() => makeCharacter(
  52714. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52715. {
  52716. side: {
  52717. height: math.unit(6 + 3/12, "feet"),
  52718. weight: math.unit(200, "kg"),
  52719. name: "Side",
  52720. image: {
  52721. source: "./media/characters/juniper-skunktaur/side.svg",
  52722. extra: 1574/1229,
  52723. bottom: 38/1612
  52724. }
  52725. },
  52726. front: {
  52727. height: math.unit(6 + 3/12, "feet"),
  52728. weight: math.unit(200, "kg"),
  52729. name: "Front",
  52730. image: {
  52731. source: "./media/characters/juniper-skunktaur/front.svg",
  52732. extra: 1337/1278,
  52733. bottom: 22/1359
  52734. }
  52735. },
  52736. back: {
  52737. height: math.unit(6 + 3/12, "feet"),
  52738. weight: math.unit(200, "kg"),
  52739. name: "Back",
  52740. image: {
  52741. source: "./media/characters/juniper-skunktaur/back.svg",
  52742. extra: 1618/1273,
  52743. bottom: 13/1631
  52744. }
  52745. },
  52746. top: {
  52747. height: math.unit(2.62, "feet"),
  52748. weight: math.unit(200, "kg"),
  52749. name: "Top",
  52750. image: {
  52751. source: "./media/characters/juniper-skunktaur/top.svg"
  52752. }
  52753. },
  52754. },
  52755. [
  52756. {
  52757. name: "Normal",
  52758. height: math.unit(6 + 3/12, "feet"),
  52759. default: true
  52760. },
  52761. ]
  52762. ))
  52763. characterMakers.push(() => makeCharacter(
  52764. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52765. {
  52766. front: {
  52767. height: math.unit(20.5, "feet"),
  52768. name: "Front",
  52769. image: {
  52770. source: "./media/characters/rei/front.svg",
  52771. extra: 1349/1195,
  52772. bottom: 31/1380
  52773. }
  52774. },
  52775. back: {
  52776. height: math.unit(20.5, "feet"),
  52777. name: "Back",
  52778. image: {
  52779. source: "./media/characters/rei/back.svg",
  52780. extra: 1358/1204,
  52781. bottom: 22/1380
  52782. }
  52783. },
  52784. pawsDigi: {
  52785. height: math.unit(3.45, "feet"),
  52786. name: "Paws (Digi)",
  52787. image: {
  52788. source: "./media/characters/rei/paws-digi.svg"
  52789. }
  52790. },
  52791. pawsPlanti: {
  52792. height: math.unit(3.45, "feet"),
  52793. name: "Paws (Planti)",
  52794. image: {
  52795. source: "./media/characters/rei/paws-planti.svg"
  52796. }
  52797. },
  52798. },
  52799. [
  52800. {
  52801. name: "Normal",
  52802. height: math.unit(20.5, "feet"),
  52803. default: true
  52804. },
  52805. ]
  52806. ))
  52807. characterMakers.push(() => makeCharacter(
  52808. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52809. {
  52810. front: {
  52811. height: math.unit(5 + 11/12, "feet"),
  52812. name: "Front",
  52813. image: {
  52814. source: "./media/characters/carina/front.svg",
  52815. extra: 1720/1449,
  52816. bottom: 14/1734
  52817. }
  52818. },
  52819. back: {
  52820. height: math.unit(5 + 11/12, "feet"),
  52821. name: "Back",
  52822. image: {
  52823. source: "./media/characters/carina/back.svg",
  52824. extra: 1493/1445,
  52825. bottom: 17/1510
  52826. }
  52827. },
  52828. paw: {
  52829. height: math.unit(0.92, "feet"),
  52830. name: "Paw",
  52831. image: {
  52832. source: "./media/characters/carina/paw.svg"
  52833. }
  52834. },
  52835. },
  52836. [
  52837. {
  52838. name: "Normal",
  52839. height: math.unit(5 + 11/12, "feet"),
  52840. default: true
  52841. },
  52842. ]
  52843. ))
  52844. characterMakers.push(() => makeCharacter(
  52845. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52846. {
  52847. normal_front: {
  52848. height: math.unit(4.88, "meters"),
  52849. name: "Front",
  52850. image: {
  52851. source: "./media/characters/maya/normal-front.svg",
  52852. extra: 1222/1145,
  52853. bottom: 57/1279
  52854. },
  52855. form: "normal",
  52856. default: true
  52857. },
  52858. monstrous_front: {
  52859. height: math.unit(10, "meters"),
  52860. name: "Front",
  52861. image: {
  52862. source: "./media/characters/maya/monstrous-front.svg",
  52863. extra: 1523/1109,
  52864. bottom: 113/1636
  52865. },
  52866. form: "monstrous",
  52867. extraAttributes: {
  52868. "swallowSize": {
  52869. name: "Tailmaw Bite Size",
  52870. power: 3,
  52871. type: "volume",
  52872. base: math.unit(43000, "liters")
  52873. },
  52874. }
  52875. },
  52876. taur_front: {
  52877. height: math.unit(10, "meters"),
  52878. name: "Front",
  52879. image: {
  52880. source: "./media/characters/maya/taur-front.svg",
  52881. extra: 743/506,
  52882. bottom: 101/844
  52883. },
  52884. form: "taur",
  52885. },
  52886. },
  52887. [
  52888. {
  52889. name: "Normal",
  52890. height: math.unit(4.88, "meters"),
  52891. default: true,
  52892. form: "normal"
  52893. },
  52894. {
  52895. name: "Macro",
  52896. height: math.unit(38.1, "meters"),
  52897. form: "normal"
  52898. },
  52899. {
  52900. name: "Macro+",
  52901. height: math.unit(152.4, "meters"),
  52902. form: "normal"
  52903. },
  52904. {
  52905. name: "Macro++",
  52906. height: math.unit(16.09, "km"),
  52907. form: "normal"
  52908. },
  52909. {
  52910. name: "Mega-macro",
  52911. height: math.unit(700, "megameters"),
  52912. form: "normal"
  52913. },
  52914. {
  52915. name: "Satiated",
  52916. height: math.unit(10, "meters"),
  52917. default: true,
  52918. form: "monstrous"
  52919. },
  52920. {
  52921. name: "Hungry",
  52922. height: math.unit(75, "meters"),
  52923. form: "monstrous"
  52924. },
  52925. {
  52926. name: "Ravenous",
  52927. height: math.unit(500, "meters"),
  52928. form: "monstrous"
  52929. },
  52930. {
  52931. name: "\"Normal\"",
  52932. height: math.unit(10, "meters"),
  52933. form: "taur"
  52934. },
  52935. {
  52936. name: "Macro",
  52937. height: math.unit(50, "meters"),
  52938. form: "taur"
  52939. },
  52940. ],
  52941. {
  52942. "normal": {
  52943. name: "Normal",
  52944. default: true
  52945. },
  52946. "monstrous": {
  52947. name: "Monstrous",
  52948. },
  52949. "taur": {
  52950. name: "Taur",
  52951. },
  52952. }
  52953. ))
  52954. characterMakers.push(() => makeCharacter(
  52955. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52956. {
  52957. front: {
  52958. height: math.unit(6 + 2/12, "feet"),
  52959. weight: math.unit(500, "lb"),
  52960. preyCapacity: math.unit(4, "people"),
  52961. name: "Front",
  52962. image: {
  52963. source: "./media/characters/yepir/front.svg"
  52964. }
  52965. },
  52966. side: {
  52967. height: math.unit(6 + 2/12, "feet"),
  52968. weight: math.unit(500, "lb"),
  52969. preyCapacity: math.unit(4, "people"),
  52970. name: "Side",
  52971. image: {
  52972. source: "./media/characters/yepir/side.svg"
  52973. }
  52974. },
  52975. paw: {
  52976. height: math.unit(1.05, "feet"),
  52977. name: "Paw",
  52978. image: {
  52979. source: "./media/characters/yepir/paw.svg"
  52980. }
  52981. },
  52982. },
  52983. [
  52984. {
  52985. name: "Normal",
  52986. height: math.unit(6 + 2/12, "feet"),
  52987. default: true
  52988. },
  52989. ]
  52990. ))
  52991. characterMakers.push(() => makeCharacter(
  52992. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52993. {
  52994. front: {
  52995. height: math.unit(5 + 4/12, "feet"),
  52996. name: "Front",
  52997. image: {
  52998. source: "./media/characters/russec/front.svg",
  52999. extra: 1926/1626,
  53000. bottom: 72/1998
  53001. }
  53002. },
  53003. back: {
  53004. height: math.unit(5 + 4/12, "feet"),
  53005. name: "Back",
  53006. image: {
  53007. source: "./media/characters/russec/back.svg",
  53008. extra: 1910/1591,
  53009. bottom: 48/1958
  53010. }
  53011. },
  53012. },
  53013. [
  53014. {
  53015. name: "Small",
  53016. height: math.unit(5 + 4/12, "feet")
  53017. },
  53018. {
  53019. name: "Normal",
  53020. height: math.unit(72, "feet"),
  53021. default: true
  53022. },
  53023. ]
  53024. ))
  53025. characterMakers.push(() => makeCharacter(
  53026. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53027. {
  53028. side: {
  53029. height: math.unit(12, "feet"),
  53030. name: "Side",
  53031. image: {
  53032. source: "./media/characters/cianus/side.svg",
  53033. extra: 808/526,
  53034. bottom: 61/869
  53035. }
  53036. },
  53037. },
  53038. [
  53039. {
  53040. name: "Normal",
  53041. height: math.unit(12, "feet"),
  53042. default: true
  53043. },
  53044. ]
  53045. ))
  53046. characterMakers.push(() => makeCharacter(
  53047. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53048. {
  53049. front: {
  53050. height: math.unit(9 + 6/12, "feet"),
  53051. weight: math.unit(300, "lb"),
  53052. name: "Front",
  53053. image: {
  53054. source: "./media/characters/ahab/front.svg",
  53055. extra: 1897/1868,
  53056. bottom: 121/2018
  53057. }
  53058. },
  53059. frontNsfw: {
  53060. height: math.unit(9 + 6/12, "feet"),
  53061. weight: math.unit(300, "lb"),
  53062. name: "Front-nsfw",
  53063. image: {
  53064. source: "./media/characters/ahab/front-nsfw.svg",
  53065. extra: 1897/1868,
  53066. bottom: 121/2018
  53067. }
  53068. },
  53069. },
  53070. [
  53071. {
  53072. name: "Normal",
  53073. height: math.unit(9 + 6/12, "feet")
  53074. },
  53075. {
  53076. name: "Macro",
  53077. height: math.unit(657, "feet"),
  53078. default: true
  53079. },
  53080. ]
  53081. ))
  53082. characterMakers.push(() => makeCharacter(
  53083. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53084. {
  53085. front: {
  53086. height: math.unit(2.69, "meters"),
  53087. weight: math.unit(132, "kg"),
  53088. name: "Front",
  53089. image: {
  53090. source: "./media/characters/aarkus/front.svg",
  53091. extra: 1400/1231,
  53092. bottom: 34/1434
  53093. }
  53094. },
  53095. back: {
  53096. height: math.unit(2.69, "meters"),
  53097. weight: math.unit(132, "kg"),
  53098. name: "Back",
  53099. image: {
  53100. source: "./media/characters/aarkus/back.svg",
  53101. extra: 1381/1218,
  53102. bottom: 30/1411
  53103. }
  53104. },
  53105. frontNsfw: {
  53106. height: math.unit(2.69, "meters"),
  53107. weight: math.unit(132, "kg"),
  53108. name: "Front (NSFW)",
  53109. image: {
  53110. source: "./media/characters/aarkus/front-nsfw.svg",
  53111. extra: 1400/1231,
  53112. bottom: 34/1434
  53113. }
  53114. },
  53115. foot: {
  53116. height: math.unit(1.45, "feet"),
  53117. name: "Foot",
  53118. image: {
  53119. source: "./media/characters/aarkus/foot.svg"
  53120. }
  53121. },
  53122. head: {
  53123. height: math.unit(2.85, "feet"),
  53124. name: "Head",
  53125. image: {
  53126. source: "./media/characters/aarkus/head.svg"
  53127. }
  53128. },
  53129. headAlt: {
  53130. height: math.unit(3.07, "feet"),
  53131. name: "Head (Alt)",
  53132. image: {
  53133. source: "./media/characters/aarkus/head-alt.svg"
  53134. }
  53135. },
  53136. mouth: {
  53137. height: math.unit(1.25, "feet"),
  53138. name: "Mouth",
  53139. image: {
  53140. source: "./media/characters/aarkus/mouth.svg"
  53141. }
  53142. },
  53143. dick: {
  53144. height: math.unit(1.77, "feet"),
  53145. name: "Dick",
  53146. image: {
  53147. source: "./media/characters/aarkus/dick.svg"
  53148. }
  53149. },
  53150. },
  53151. [
  53152. {
  53153. name: "Normal",
  53154. height: math.unit(2.69, "meters"),
  53155. default: true
  53156. },
  53157. {
  53158. name: "Macro",
  53159. height: math.unit(269, "meters")
  53160. },
  53161. {
  53162. name: "Macro+",
  53163. height: math.unit(672.5, "meters")
  53164. },
  53165. {
  53166. name: "Megamacro",
  53167. height: math.unit(2.017, "km")
  53168. },
  53169. ]
  53170. ))
  53171. characterMakers.push(() => makeCharacter(
  53172. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53173. {
  53174. front: {
  53175. height: math.unit(23.47, "cm"),
  53176. weight: math.unit(600, "grams"),
  53177. name: "Front",
  53178. image: {
  53179. source: "./media/characters/diode/front.svg",
  53180. extra: 1778/1396,
  53181. bottom: 95/1873
  53182. }
  53183. },
  53184. side: {
  53185. height: math.unit(23.47, "cm"),
  53186. weight: math.unit(600, "grams"),
  53187. name: "Side",
  53188. image: {
  53189. source: "./media/characters/diode/side.svg",
  53190. extra: 1831/1404,
  53191. bottom: 86/1917
  53192. }
  53193. },
  53194. wings: {
  53195. height: math.unit(0.683, "feet"),
  53196. name: "Wings",
  53197. image: {
  53198. source: "./media/characters/diode/wings.svg"
  53199. }
  53200. },
  53201. },
  53202. [
  53203. {
  53204. name: "Normal",
  53205. height: math.unit(23.47, "cm"),
  53206. default: true
  53207. },
  53208. ]
  53209. ))
  53210. characterMakers.push(() => makeCharacter(
  53211. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53212. {
  53213. front: {
  53214. height: math.unit(6 + 3/12, "feet"),
  53215. weight: math.unit(250, "lb"),
  53216. name: "Front",
  53217. image: {
  53218. source: "./media/characters/reika/front.svg",
  53219. extra: 1120/1078,
  53220. bottom: 86/1206
  53221. }
  53222. },
  53223. },
  53224. [
  53225. {
  53226. name: "Normal",
  53227. height: math.unit(6 + 3/12, "feet"),
  53228. default: true
  53229. },
  53230. ]
  53231. ))
  53232. characterMakers.push(() => makeCharacter(
  53233. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53234. {
  53235. front: {
  53236. height: math.unit(16 + 8/12, "feet"),
  53237. weight: math.unit(9000, "lb"),
  53238. name: "Front",
  53239. image: {
  53240. source: "./media/characters/lokuto-takama/front.svg",
  53241. extra: 1774/1632,
  53242. bottom: 147/1921
  53243. },
  53244. extraAttributes: {
  53245. "bustWidth": {
  53246. name: "Bust Width",
  53247. power: 1,
  53248. type: "length",
  53249. base: math.unit(2.4, "meters")
  53250. },
  53251. "breastWeight": {
  53252. name: "Breast Weight",
  53253. power: 3,
  53254. type: "mass",
  53255. base: math.unit(1000, "kg")
  53256. },
  53257. }
  53258. },
  53259. },
  53260. [
  53261. {
  53262. name: "Normal",
  53263. height: math.unit(16 + 8/12, "feet"),
  53264. default: true
  53265. },
  53266. ]
  53267. ))
  53268. characterMakers.push(() => makeCharacter(
  53269. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53270. {
  53271. front: {
  53272. height: math.unit(10, "cm"),
  53273. weight: math.unit(850, "grams"),
  53274. name: "Front",
  53275. image: {
  53276. source: "./media/characters/owak-bone/front.svg",
  53277. extra: 1965/1801,
  53278. bottom: 31/1996
  53279. }
  53280. },
  53281. },
  53282. [
  53283. {
  53284. name: "Normal",
  53285. height: math.unit(10, "cm"),
  53286. default: true
  53287. },
  53288. ]
  53289. ))
  53290. characterMakers.push(() => makeCharacter(
  53291. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53292. {
  53293. front: {
  53294. height: math.unit(2 + 6/12, "feet"),
  53295. weight: math.unit(9, "lb"),
  53296. name: "Front",
  53297. image: {
  53298. source: "./media/characters/muffin/front.svg",
  53299. extra: 1220/1195,
  53300. bottom: 84/1304
  53301. }
  53302. },
  53303. },
  53304. [
  53305. {
  53306. name: "Normal",
  53307. height: math.unit(2 + 6/12, "feet"),
  53308. default: true
  53309. },
  53310. ]
  53311. ))
  53312. characterMakers.push(() => makeCharacter(
  53313. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53314. {
  53315. front: {
  53316. height: math.unit(7, "feet"),
  53317. name: "Front",
  53318. image: {
  53319. source: "./media/characters/chimera/front.svg",
  53320. extra: 1752/1614,
  53321. bottom: 68/1820
  53322. }
  53323. },
  53324. },
  53325. [
  53326. {
  53327. name: "Normal",
  53328. height: math.unit(7, "feet")
  53329. },
  53330. {
  53331. name: "Gigamacro",
  53332. height: math.unit(2.9, "gigameters"),
  53333. default: true
  53334. },
  53335. {
  53336. name: "Universal",
  53337. height: math.unit(1.56e26, "yottameters")
  53338. },
  53339. ]
  53340. ))
  53341. characterMakers.push(() => makeCharacter(
  53342. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53343. {
  53344. front: {
  53345. height: math.unit(3, "feet"),
  53346. weight: math.unit(20, "lb"),
  53347. name: "Front",
  53348. image: {
  53349. source: "./media/characters/kit-fennec-fox/front.svg",
  53350. extra: 1027/932,
  53351. bottom: 16/1043
  53352. }
  53353. },
  53354. back: {
  53355. height: math.unit(3, "feet"),
  53356. weight: math.unit(20, "lb"),
  53357. name: "Back",
  53358. image: {
  53359. source: "./media/characters/kit-fennec-fox/back.svg",
  53360. extra: 1027/932,
  53361. bottom: 16/1043
  53362. }
  53363. },
  53364. },
  53365. [
  53366. {
  53367. name: "Normal",
  53368. height: math.unit(3, "feet"),
  53369. default: true
  53370. },
  53371. ]
  53372. ))
  53373. characterMakers.push(() => makeCharacter(
  53374. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53375. {
  53376. front: {
  53377. height: math.unit(167, "cm"),
  53378. name: "Front",
  53379. image: {
  53380. source: "./media/characters/blue-otter/front.svg",
  53381. extra: 1951/1920,
  53382. bottom: 31/1982
  53383. }
  53384. },
  53385. },
  53386. [
  53387. {
  53388. name: "Otter-Sized",
  53389. height: math.unit(100, "cm")
  53390. },
  53391. {
  53392. name: "Normal",
  53393. height: math.unit(167, "cm"),
  53394. default: true
  53395. },
  53396. ]
  53397. ))
  53398. characterMakers.push(() => makeCharacter(
  53399. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53400. {
  53401. front: {
  53402. height: math.unit(4 + 4/12, "feet"),
  53403. name: "Front",
  53404. image: {
  53405. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53406. extra: 1072/1067,
  53407. bottom: 117/1189
  53408. }
  53409. },
  53410. back: {
  53411. height: math.unit(4 + 4/12, "feet"),
  53412. name: "Back",
  53413. image: {
  53414. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53415. extra: 1135/1129,
  53416. bottom: 57/1192
  53417. }
  53418. },
  53419. head: {
  53420. height: math.unit(1.77, "feet"),
  53421. name: "Head",
  53422. image: {
  53423. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53424. }
  53425. },
  53426. },
  53427. [
  53428. {
  53429. name: "Normal",
  53430. height: math.unit(4 + 4/12, "feet"),
  53431. default: true
  53432. },
  53433. ]
  53434. ))
  53435. characterMakers.push(() => makeCharacter(
  53436. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53437. {
  53438. front: {
  53439. height: math.unit(2, "inches"),
  53440. name: "Front",
  53441. image: {
  53442. source: "./media/characters/carley-hartford/front.svg",
  53443. extra: 1035/988,
  53444. bottom: 23/1058
  53445. }
  53446. },
  53447. back: {
  53448. height: math.unit(2, "inches"),
  53449. name: "Back",
  53450. image: {
  53451. source: "./media/characters/carley-hartford/back.svg",
  53452. extra: 1035/988,
  53453. bottom: 23/1058
  53454. }
  53455. },
  53456. dressed: {
  53457. height: math.unit(2, "inches"),
  53458. name: "Dressed",
  53459. image: {
  53460. source: "./media/characters/carley-hartford/dressed.svg",
  53461. extra: 651/620,
  53462. bottom: 0/651
  53463. }
  53464. },
  53465. },
  53466. [
  53467. {
  53468. name: "Micro",
  53469. height: math.unit(2, "inches"),
  53470. default: true
  53471. },
  53472. {
  53473. name: "Macro",
  53474. height: math.unit(6 + 3/12, "feet")
  53475. },
  53476. ]
  53477. ))
  53478. characterMakers.push(() => makeCharacter(
  53479. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53480. {
  53481. front: {
  53482. height: math.unit(2 + 3/12, "feet"),
  53483. weight: math.unit(15 + 7/16, "lb"),
  53484. name: "Front",
  53485. image: {
  53486. source: "./media/characters/duke/front.svg",
  53487. extra: 910/815,
  53488. bottom: 30/940
  53489. }
  53490. },
  53491. },
  53492. [
  53493. {
  53494. name: "Normal",
  53495. height: math.unit(2 + 3/12, "feet"),
  53496. default: true
  53497. },
  53498. ]
  53499. ))
  53500. characterMakers.push(() => makeCharacter(
  53501. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53502. {
  53503. front: {
  53504. height: math.unit(5 + 4/12, "feet"),
  53505. weight: math.unit(156, "lb"),
  53506. name: "Front",
  53507. image: {
  53508. source: "./media/characters/dein/front.svg",
  53509. extra: 855/815,
  53510. bottom: 48/903
  53511. }
  53512. },
  53513. side: {
  53514. height: math.unit(5 + 4/12, "feet"),
  53515. weight: math.unit(156, "lb"),
  53516. name: "side",
  53517. image: {
  53518. source: "./media/characters/dein/side.svg",
  53519. extra: 846/803,
  53520. bottom: 25/871
  53521. }
  53522. },
  53523. maw: {
  53524. height: math.unit(1.45, "feet"),
  53525. name: "Maw",
  53526. image: {
  53527. source: "./media/characters/dein/maw.svg"
  53528. }
  53529. },
  53530. },
  53531. [
  53532. {
  53533. name: "Ferret Sized",
  53534. height: math.unit(2 + 5/12, "feet")
  53535. },
  53536. {
  53537. name: "Normal",
  53538. height: math.unit(5 + 4/12, "feet"),
  53539. default: true
  53540. },
  53541. ]
  53542. ))
  53543. characterMakers.push(() => makeCharacter(
  53544. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53545. {
  53546. front: {
  53547. height: math.unit(84 + 8/12, "feet"),
  53548. weight: math.unit(942180, "lb"),
  53549. name: "Front",
  53550. image: {
  53551. source: "./media/characters/daurine-arima/front.svg",
  53552. extra: 1989/1782,
  53553. bottom: 37/2026
  53554. }
  53555. },
  53556. side: {
  53557. height: math.unit(84 + 8/12, "feet"),
  53558. weight: math.unit(942180, "lb"),
  53559. name: "Side",
  53560. image: {
  53561. source: "./media/characters/daurine-arima/side.svg",
  53562. extra: 1997/1790,
  53563. bottom: 21/2018
  53564. }
  53565. },
  53566. back: {
  53567. height: math.unit(84 + 8/12, "feet"),
  53568. weight: math.unit(942180, "lb"),
  53569. name: "Back",
  53570. image: {
  53571. source: "./media/characters/daurine-arima/back.svg",
  53572. extra: 1992/1800,
  53573. bottom: 12/2004
  53574. }
  53575. },
  53576. head: {
  53577. height: math.unit(15.5, "feet"),
  53578. name: "Head",
  53579. image: {
  53580. source: "./media/characters/daurine-arima/head.svg"
  53581. }
  53582. },
  53583. headAlt: {
  53584. height: math.unit(19.19, "feet"),
  53585. name: "Head (Alt)",
  53586. image: {
  53587. source: "./media/characters/daurine-arima/head-alt.svg"
  53588. }
  53589. },
  53590. },
  53591. [
  53592. {
  53593. name: "Minimum height",
  53594. height: math.unit(8 + 10/12, "feet")
  53595. },
  53596. {
  53597. name: "Comfort height",
  53598. height: math.unit(19 + 6 /12, "feet")
  53599. },
  53600. {
  53601. name: "\"Normal\" height",
  53602. height: math.unit(28 + 10/12, "feet")
  53603. },
  53604. {
  53605. name: "Base height",
  53606. height: math.unit(84 + 8/12, "feet"),
  53607. default: true
  53608. },
  53609. {
  53610. name: "Mini-macro",
  53611. height: math.unit(2360, "feet")
  53612. },
  53613. {
  53614. name: "Macro",
  53615. height: math.unit(10, "miles")
  53616. },
  53617. {
  53618. name: "Goddess",
  53619. height: math.unit(9.99e40, "yottameters")
  53620. },
  53621. ]
  53622. ))
  53623. characterMakers.push(() => makeCharacter(
  53624. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53625. {
  53626. front: {
  53627. height: math.unit(2.3, "meters"),
  53628. name: "Front",
  53629. image: {
  53630. source: "./media/characters/cilenomon/front.svg",
  53631. extra: 1963/1778,
  53632. bottom: 54/2017
  53633. }
  53634. },
  53635. },
  53636. [
  53637. {
  53638. name: "Normal",
  53639. height: math.unit(2.3, "meters"),
  53640. default: true
  53641. },
  53642. {
  53643. name: "Big",
  53644. height: math.unit(5, "meters")
  53645. },
  53646. {
  53647. name: "Macro",
  53648. height: math.unit(30, "meters")
  53649. },
  53650. {
  53651. name: "True",
  53652. height: math.unit(1, "universe")
  53653. },
  53654. ]
  53655. ))
  53656. characterMakers.push(() => makeCharacter(
  53657. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53658. {
  53659. front: {
  53660. height: math.unit(5, "feet"),
  53661. name: "Front",
  53662. image: {
  53663. source: "./media/characters/sen-mink/front.svg",
  53664. extra: 1727/1675,
  53665. bottom: 35/1762
  53666. }
  53667. },
  53668. },
  53669. [
  53670. {
  53671. name: "Normal",
  53672. height: math.unit(5, "feet"),
  53673. default: true
  53674. },
  53675. ]
  53676. ))
  53677. characterMakers.push(() => makeCharacter(
  53678. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53679. {
  53680. front: {
  53681. height: math.unit(5.42999, "feet"),
  53682. weight: math.unit(100, "lb"),
  53683. name: "Front",
  53684. image: {
  53685. source: "./media/characters/ophois/front.svg",
  53686. extra: 1429/1286,
  53687. bottom: 60/1489
  53688. }
  53689. },
  53690. },
  53691. [
  53692. {
  53693. name: "Normal",
  53694. height: math.unit(5.42999, "feet"),
  53695. default: true
  53696. },
  53697. ]
  53698. ))
  53699. characterMakers.push(() => makeCharacter(
  53700. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53701. {
  53702. front: {
  53703. height: math.unit(2, "meters"),
  53704. name: "Front",
  53705. image: {
  53706. source: "./media/characters/riley/front.svg",
  53707. extra: 1779/1754,
  53708. bottom: 139/1918
  53709. }
  53710. },
  53711. },
  53712. [
  53713. {
  53714. name: "Normal",
  53715. height: math.unit(2, "meters"),
  53716. default: true
  53717. },
  53718. ]
  53719. ))
  53720. characterMakers.push(() => makeCharacter(
  53721. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53722. {
  53723. front: {
  53724. height: math.unit(6 + 2/12, "feet"),
  53725. weight: math.unit(195, "lb"),
  53726. preyCapacity: math.unit(6, "people"),
  53727. name: "Front",
  53728. image: {
  53729. source: "./media/characters/shuken-flash/front.svg",
  53730. extra: 1905/1739,
  53731. bottom: 65/1970
  53732. }
  53733. },
  53734. back: {
  53735. height: math.unit(6 + 2/12, "feet"),
  53736. weight: math.unit(195, "lb"),
  53737. preyCapacity: math.unit(6, "people"),
  53738. name: "Back",
  53739. image: {
  53740. source: "./media/characters/shuken-flash/back.svg",
  53741. extra: 1912/1751,
  53742. bottom: 13/1925
  53743. }
  53744. },
  53745. },
  53746. [
  53747. {
  53748. name: "Normal",
  53749. height: math.unit(6 + 2/12, "feet"),
  53750. default: true
  53751. },
  53752. ]
  53753. ))
  53754. characterMakers.push(() => makeCharacter(
  53755. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53756. {
  53757. front: {
  53758. height: math.unit(5 + 9/12, "feet"),
  53759. weight: math.unit(150, "lb"),
  53760. name: "Front",
  53761. image: {
  53762. source: "./media/characters/plat/front.svg",
  53763. extra: 1816/1703,
  53764. bottom: 43/1859
  53765. }
  53766. },
  53767. side: {
  53768. height: math.unit(5 + 9/12, "feet"),
  53769. weight: math.unit(300, "lb"),
  53770. name: "Side",
  53771. image: {
  53772. source: "./media/characters/plat/side.svg",
  53773. extra: 1824/1699,
  53774. bottom: 18/1842
  53775. }
  53776. },
  53777. },
  53778. [
  53779. {
  53780. name: "Normal",
  53781. height: math.unit(5 + 9/12, "feet"),
  53782. default: true
  53783. },
  53784. ]
  53785. ))
  53786. characterMakers.push(() => makeCharacter(
  53787. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53788. {
  53789. front: {
  53790. height: math.unit(9, "feet"),
  53791. weight: math.unit(1800, "lb"),
  53792. name: "Front",
  53793. image: {
  53794. source: "./media/characters/elaine/front.svg",
  53795. extra: 1833/1354,
  53796. bottom: 25/1858
  53797. }
  53798. },
  53799. back: {
  53800. height: math.unit(8.8, "feet"),
  53801. weight: math.unit(1800, "lb"),
  53802. name: "Back",
  53803. image: {
  53804. source: "./media/characters/elaine/back.svg",
  53805. extra: 1641/1233,
  53806. bottom: 53/1694
  53807. }
  53808. },
  53809. },
  53810. [
  53811. {
  53812. name: "Normal",
  53813. height: math.unit(9, "feet"),
  53814. default: true
  53815. },
  53816. ]
  53817. ))
  53818. characterMakers.push(() => makeCharacter(
  53819. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53820. {
  53821. front: {
  53822. height: math.unit(17 + 9/12, "feet"),
  53823. weight: math.unit(8000, "lb"),
  53824. name: "Front",
  53825. image: {
  53826. source: "./media/characters/vera-raven/front.svg",
  53827. extra: 1457/1412,
  53828. bottom: 121/1578
  53829. }
  53830. },
  53831. side: {
  53832. height: math.unit(17 + 9/12, "feet"),
  53833. weight: math.unit(8000, "lb"),
  53834. name: "Side",
  53835. image: {
  53836. source: "./media/characters/vera-raven/side.svg",
  53837. extra: 1510/1464,
  53838. bottom: 54/1564
  53839. }
  53840. },
  53841. },
  53842. [
  53843. {
  53844. name: "Normal",
  53845. height: math.unit(17 + 9/12, "feet"),
  53846. default: true
  53847. },
  53848. ]
  53849. ))
  53850. characterMakers.push(() => makeCharacter(
  53851. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53852. {
  53853. dressed: {
  53854. height: math.unit(6 + 9/12, "feet"),
  53855. name: "Dressed",
  53856. image: {
  53857. source: "./media/characters/nakisha/dressed.svg",
  53858. extra: 1909/1757,
  53859. bottom: 48/1957
  53860. }
  53861. },
  53862. nude: {
  53863. height: math.unit(6 + 9/12, "feet"),
  53864. name: "Nude",
  53865. image: {
  53866. source: "./media/characters/nakisha/nude.svg",
  53867. extra: 1917/1765,
  53868. bottom: 34/1951
  53869. }
  53870. },
  53871. },
  53872. [
  53873. {
  53874. name: "Normal",
  53875. height: math.unit(6 + 9/12, "feet"),
  53876. default: true
  53877. },
  53878. ]
  53879. ))
  53880. characterMakers.push(() => makeCharacter(
  53881. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53882. {
  53883. front: {
  53884. height: math.unit(87, "meters"),
  53885. name: "Front",
  53886. image: {
  53887. source: "./media/characters/serafin/front.svg",
  53888. extra: 1919/1776,
  53889. bottom: 65/1984
  53890. }
  53891. },
  53892. },
  53893. [
  53894. {
  53895. name: "Normal",
  53896. height: math.unit(87, "meters"),
  53897. default: true
  53898. },
  53899. ]
  53900. ))
  53901. characterMakers.push(() => makeCharacter(
  53902. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53903. {
  53904. front: {
  53905. height: math.unit(6, "feet"),
  53906. weight: math.unit(200, "lb"),
  53907. name: "Front",
  53908. image: {
  53909. source: "./media/characters/poptart/front.svg",
  53910. extra: 615/583,
  53911. bottom: 23/638
  53912. }
  53913. },
  53914. back: {
  53915. height: math.unit(6, "feet"),
  53916. weight: math.unit(200, "lb"),
  53917. name: "Back",
  53918. image: {
  53919. source: "./media/characters/poptart/back.svg",
  53920. extra: 617/584,
  53921. bottom: 22/639
  53922. }
  53923. },
  53924. frontNsfw: {
  53925. height: math.unit(6, "feet"),
  53926. weight: math.unit(200, "lb"),
  53927. name: "Front (NSFW)",
  53928. image: {
  53929. source: "./media/characters/poptart/front-nsfw.svg",
  53930. extra: 615/583,
  53931. bottom: 23/638
  53932. }
  53933. },
  53934. backNsfw: {
  53935. height: math.unit(6, "feet"),
  53936. weight: math.unit(200, "lb"),
  53937. name: "Back (NSFW)",
  53938. image: {
  53939. source: "./media/characters/poptart/back-nsfw.svg",
  53940. extra: 617/584,
  53941. bottom: 22/639
  53942. }
  53943. },
  53944. hand: {
  53945. height: math.unit(1.14, "feet"),
  53946. name: "Hand",
  53947. image: {
  53948. source: "./media/characters/poptart/hand.svg"
  53949. }
  53950. },
  53951. foot: {
  53952. height: math.unit(1.5, "feet"),
  53953. name: "Foot",
  53954. image: {
  53955. source: "./media/characters/poptart/foot.svg"
  53956. }
  53957. },
  53958. },
  53959. [
  53960. {
  53961. name: "Normal",
  53962. height: math.unit(6, "feet"),
  53963. default: true
  53964. },
  53965. {
  53966. name: "Grande",
  53967. height: math.unit(350, "feet")
  53968. },
  53969. {
  53970. name: "Massif",
  53971. height: math.unit(967, "feet")
  53972. },
  53973. ]
  53974. ))
  53975. characterMakers.push(() => makeCharacter(
  53976. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53977. {
  53978. hyenaSide: {
  53979. height: math.unit(120, "cm"),
  53980. weight: math.unit(120, "lb"),
  53981. name: "Side",
  53982. image: {
  53983. source: "./media/characters/trance/hyena-side.svg",
  53984. extra: 998/904,
  53985. bottom: 76/1074
  53986. }
  53987. },
  53988. },
  53989. [
  53990. {
  53991. name: "Normal",
  53992. height: math.unit(120, "cm"),
  53993. default: true
  53994. },
  53995. {
  53996. name: "Dire",
  53997. height: math.unit(230, "cm")
  53998. },
  53999. {
  54000. name: "Macro",
  54001. height: math.unit(37, "feet")
  54002. },
  54003. ]
  54004. ))
  54005. characterMakers.push(() => makeCharacter(
  54006. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54007. {
  54008. front: {
  54009. height: math.unit(6 + 3/12, "feet"),
  54010. name: "Front",
  54011. image: {
  54012. source: "./media/characters/michael-berretta/front.svg",
  54013. extra: 515/494,
  54014. bottom: 20/535
  54015. }
  54016. },
  54017. back: {
  54018. height: math.unit(6 + 3/12, "feet"),
  54019. name: "Back",
  54020. image: {
  54021. source: "./media/characters/michael-berretta/back.svg",
  54022. extra: 520/497,
  54023. bottom: 21/541
  54024. }
  54025. },
  54026. frontNsfw: {
  54027. height: math.unit(6 + 3/12, "feet"),
  54028. name: "Front (NSFW)",
  54029. image: {
  54030. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54031. extra: 515/494,
  54032. bottom: 20/535
  54033. }
  54034. },
  54035. dick: {
  54036. height: math.unit(1, "feet"),
  54037. name: "Dick",
  54038. image: {
  54039. source: "./media/characters/michael-berretta/dick.svg"
  54040. }
  54041. },
  54042. },
  54043. [
  54044. {
  54045. name: "Normal",
  54046. height: math.unit(6 + 3/12, "feet"),
  54047. default: true
  54048. },
  54049. {
  54050. name: "Big",
  54051. height: math.unit(12, "feet")
  54052. },
  54053. {
  54054. name: "Macro",
  54055. height: math.unit(187.5, "feet")
  54056. },
  54057. ]
  54058. ))
  54059. characterMakers.push(() => makeCharacter(
  54060. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54061. {
  54062. front: {
  54063. height: math.unit(9 + 9/12, "feet"),
  54064. weight: math.unit(1244, "lb"),
  54065. name: "Front",
  54066. image: {
  54067. source: "./media/characters/stella-edgecomb/front.svg",
  54068. extra: 1835/1706,
  54069. bottom: 49/1884
  54070. }
  54071. },
  54072. pen: {
  54073. height: math.unit(0.95, "feet"),
  54074. name: "Pen",
  54075. image: {
  54076. source: "./media/characters/stella-edgecomb/pen.svg"
  54077. }
  54078. },
  54079. },
  54080. [
  54081. {
  54082. name: "Cozy Bear",
  54083. height: math.unit(0.5, "inches")
  54084. },
  54085. {
  54086. name: "Normal",
  54087. height: math.unit(9 + 9/12, "feet"),
  54088. default: true
  54089. },
  54090. {
  54091. name: "Giga Bear",
  54092. height: math.unit(1, "mile")
  54093. },
  54094. {
  54095. name: "Great Bear",
  54096. height: math.unit(53, "miles")
  54097. },
  54098. {
  54099. name: "Goddess Bear",
  54100. height: math.unit(40000, "miles")
  54101. },
  54102. {
  54103. name: "Sun Bear",
  54104. height: math.unit(900000, "miles")
  54105. },
  54106. ]
  54107. ))
  54108. characterMakers.push(() => makeCharacter(
  54109. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54110. {
  54111. anthroFront: {
  54112. height: math.unit(556, "cm"),
  54113. weight: math.unit(2650, "kg"),
  54114. preyCapacity: math.unit(3, "people"),
  54115. name: "Front",
  54116. image: {
  54117. source: "./media/characters/ash´iika/front.svg",
  54118. extra: 710/673,
  54119. bottom: 15/725
  54120. },
  54121. form: "anthro",
  54122. default: true
  54123. },
  54124. anthroSide: {
  54125. height: math.unit(556, "cm"),
  54126. weight: math.unit(2650, "kg"),
  54127. preyCapacity: math.unit(3, "people"),
  54128. name: "Side",
  54129. image: {
  54130. source: "./media/characters/ash´iika/side.svg",
  54131. extra: 696/676,
  54132. bottom: 13/709
  54133. },
  54134. form: "anthro"
  54135. },
  54136. anthroDressed: {
  54137. height: math.unit(556, "cm"),
  54138. weight: math.unit(2650, "kg"),
  54139. preyCapacity: math.unit(3, "people"),
  54140. name: "Dressed",
  54141. image: {
  54142. source: "./media/characters/ash´iika/dressed.svg",
  54143. extra: 710/673,
  54144. bottom: 15/725
  54145. },
  54146. form: "anthro"
  54147. },
  54148. anthroHead: {
  54149. height: math.unit(3.5, "feet"),
  54150. name: "Head",
  54151. image: {
  54152. source: "./media/characters/ash´iika/head.svg",
  54153. extra: 348/291,
  54154. bottom: 45/393
  54155. },
  54156. form: "anthro"
  54157. },
  54158. feralSide: {
  54159. height: math.unit(870, "cm"),
  54160. weight: math.unit(17500, "kg"),
  54161. preyCapacity: math.unit(15, "people"),
  54162. name: "Side",
  54163. image: {
  54164. source: "./media/characters/ash´iika/feral.svg",
  54165. extra: 595/199,
  54166. bottom: 7/602
  54167. },
  54168. form: "feral",
  54169. default: true,
  54170. },
  54171. },
  54172. [
  54173. {
  54174. name: "Normal",
  54175. height: math.unit(556, "cm"),
  54176. default: true,
  54177. form: "anthro"
  54178. },
  54179. {
  54180. name: "Macro",
  54181. height: math.unit(88, "meters"),
  54182. form: "anthro"
  54183. },
  54184. {
  54185. name: "Normal",
  54186. height: math.unit(870, "cm"),
  54187. default: true,
  54188. form: "feral"
  54189. },
  54190. {
  54191. name: "Large",
  54192. height: math.unit(25, "meters"),
  54193. form: "feral"
  54194. },
  54195. ],
  54196. {
  54197. "anthro": {
  54198. name: "Anthro",
  54199. default: true
  54200. },
  54201. "feral": {
  54202. name: "Feral",
  54203. },
  54204. }
  54205. ))
  54206. characterMakers.push(() => makeCharacter(
  54207. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54208. {
  54209. front: {
  54210. height: math.unit(10, "feet"),
  54211. weight: math.unit(800, "lb"),
  54212. name: "Front",
  54213. image: {
  54214. source: "./media/characters/yen/front.svg",
  54215. extra: 443/411,
  54216. bottom: 6/449
  54217. }
  54218. },
  54219. sleeping: {
  54220. height: math.unit(10, "feet"),
  54221. weight: math.unit(800, "lb"),
  54222. name: "Sleeping",
  54223. image: {
  54224. source: "./media/characters/yen/sleeping.svg",
  54225. extra: 470/422,
  54226. bottom: 0/470
  54227. }
  54228. },
  54229. head: {
  54230. height: math.unit(2.2, "feet"),
  54231. name: "Head",
  54232. image: {
  54233. source: "./media/characters/yen/head.svg"
  54234. }
  54235. },
  54236. headAlt: {
  54237. height: math.unit(2.1, "feet"),
  54238. name: "Head (Alt)",
  54239. image: {
  54240. source: "./media/characters/yen/head-alt.svg"
  54241. }
  54242. },
  54243. },
  54244. [
  54245. {
  54246. name: "Normal",
  54247. height: math.unit(10, "feet"),
  54248. default: true
  54249. },
  54250. ]
  54251. ))
  54252. characterMakers.push(() => makeCharacter(
  54253. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54254. {
  54255. front: {
  54256. height: math.unit(12, "feet"),
  54257. name: "Front",
  54258. image: {
  54259. source: "./media/characters/citra/front.svg",
  54260. extra: 1950/1710,
  54261. bottom: 47/1997
  54262. }
  54263. },
  54264. },
  54265. [
  54266. {
  54267. name: "Normal",
  54268. height: math.unit(12, "feet"),
  54269. default: true
  54270. },
  54271. ]
  54272. ))
  54273. characterMakers.push(() => makeCharacter(
  54274. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54275. {
  54276. side: {
  54277. height: math.unit(7 + 10/12, "feet"),
  54278. name: "Side",
  54279. image: {
  54280. source: "./media/characters/sholstim/side.svg",
  54281. extra: 786/682,
  54282. bottom: 40/826
  54283. }
  54284. },
  54285. },
  54286. [
  54287. {
  54288. name: "Normal",
  54289. height: math.unit(7 + 10/12, "feet"),
  54290. default: true
  54291. },
  54292. ]
  54293. ))
  54294. characterMakers.push(() => makeCharacter(
  54295. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54296. {
  54297. front: {
  54298. height: math.unit(3.10, "meters"),
  54299. name: "Front",
  54300. image: {
  54301. source: "./media/characters/aggyn/front.svg",
  54302. extra: 1188/963,
  54303. bottom: 24/1212
  54304. }
  54305. },
  54306. },
  54307. [
  54308. {
  54309. name: "Normal",
  54310. height: math.unit(3.10, "meters"),
  54311. default: true
  54312. },
  54313. ]
  54314. ))
  54315. characterMakers.push(() => makeCharacter(
  54316. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54317. {
  54318. front: {
  54319. height: math.unit(7 + 5/12, "feet"),
  54320. weight: math.unit(687, "lb"),
  54321. name: "Front",
  54322. image: {
  54323. source: "./media/characters/alsandair-hergenroether/front.svg",
  54324. extra: 1251/1186,
  54325. bottom: 75/1326
  54326. }
  54327. },
  54328. back: {
  54329. height: math.unit(7 + 5/12, "feet"),
  54330. weight: math.unit(687, "lb"),
  54331. name: "Back",
  54332. image: {
  54333. source: "./media/characters/alsandair-hergenroether/back.svg",
  54334. extra: 1290/1229,
  54335. bottom: 17/1307
  54336. }
  54337. },
  54338. },
  54339. [
  54340. {
  54341. name: "Max Compression",
  54342. height: math.unit(7 + 5/12, "feet"),
  54343. default: true
  54344. },
  54345. {
  54346. name: "\"Normal\"",
  54347. height: math.unit(2, "universes")
  54348. },
  54349. ]
  54350. ))
  54351. characterMakers.push(() => makeCharacter(
  54352. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54353. {
  54354. front: {
  54355. height: math.unit(4 + 1/12, "feet"),
  54356. weight: math.unit(92, "lb"),
  54357. name: "Front",
  54358. image: {
  54359. source: "./media/characters/ie/front.svg",
  54360. extra: 1585/1352,
  54361. bottom: 91/1676
  54362. }
  54363. },
  54364. },
  54365. [
  54366. {
  54367. name: "Normal",
  54368. height: math.unit(4 + 1/12, "feet"),
  54369. default: true
  54370. },
  54371. ]
  54372. ))
  54373. characterMakers.push(() => makeCharacter(
  54374. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54375. {
  54376. anthro: {
  54377. height: math.unit(6, "feet"),
  54378. weight: math.unit(150, "lb"),
  54379. name: "Front",
  54380. image: {
  54381. source: "./media/characters/willow/anthro.svg",
  54382. extra: 1073/986,
  54383. bottom: 34/1107
  54384. },
  54385. form: "anthro",
  54386. default: true
  54387. },
  54388. taur: {
  54389. height: math.unit(6, "feet"),
  54390. weight: math.unit(150, "lb"),
  54391. name: "Side",
  54392. image: {
  54393. source: "./media/characters/willow/taur.svg",
  54394. extra: 647/512,
  54395. bottom: 136/783
  54396. },
  54397. form: "taur",
  54398. default: true
  54399. },
  54400. },
  54401. [
  54402. {
  54403. name: "Humanoid",
  54404. height: math.unit(2.7, "meters"),
  54405. form: "anthro"
  54406. },
  54407. {
  54408. name: "Normal",
  54409. height: math.unit(9, "meters"),
  54410. form: "anthro",
  54411. default: true
  54412. },
  54413. {
  54414. name: "Humanoid",
  54415. height: math.unit(2.1, "meters"),
  54416. form: "taur"
  54417. },
  54418. {
  54419. name: "Normal",
  54420. height: math.unit(7, "meters"),
  54421. form: "taur",
  54422. default: true
  54423. },
  54424. ],
  54425. {
  54426. "anthro": {
  54427. name: "Anthro",
  54428. default: true
  54429. },
  54430. "taur": {
  54431. name: "Taur",
  54432. },
  54433. }
  54434. ))
  54435. characterMakers.push(() => makeCharacter(
  54436. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54437. {
  54438. front: {
  54439. height: math.unit(2 + 5/12, "feet"),
  54440. name: "Front",
  54441. image: {
  54442. source: "./media/characters/kyan/front.svg",
  54443. extra: 460/334,
  54444. bottom: 23/483
  54445. },
  54446. extraAttributes: {
  54447. "toeLength": {
  54448. name: "Toe Length",
  54449. power: 1,
  54450. type: "length",
  54451. base: math.unit(7, "cm")
  54452. },
  54453. "toeclawLength": {
  54454. name: "Toeclaw Length",
  54455. power: 1,
  54456. type: "length",
  54457. base: math.unit(4.7, "cm")
  54458. },
  54459. "earHeight": {
  54460. name: "Ear Height",
  54461. power: 1,
  54462. type: "length",
  54463. base: math.unit(14.1, "cm")
  54464. },
  54465. }
  54466. },
  54467. paws: {
  54468. height: math.unit(0.45, "feet"),
  54469. name: "Paws",
  54470. image: {
  54471. source: "./media/characters/kyan/paws.svg",
  54472. extra: 581/581,
  54473. bottom: 114/695
  54474. }
  54475. },
  54476. },
  54477. [
  54478. {
  54479. name: "Normal",
  54480. height: math.unit(2 + 5/12, "feet"),
  54481. default: true
  54482. },
  54483. ]
  54484. ))
  54485. characterMakers.push(() => makeCharacter(
  54486. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54487. {
  54488. front: {
  54489. height: math.unit(2 + 2/3, "feet"),
  54490. name: "Front",
  54491. image: {
  54492. source: "./media/characters/xazzon/front.svg",
  54493. extra: 1109/984,
  54494. bottom: 42/1151
  54495. }
  54496. },
  54497. back: {
  54498. height: math.unit(2 + 2/3, "feet"),
  54499. name: "Back",
  54500. image: {
  54501. source: "./media/characters/xazzon/back.svg",
  54502. extra: 1095/971,
  54503. bottom: 23/1118
  54504. }
  54505. },
  54506. },
  54507. [
  54508. {
  54509. name: "Normal",
  54510. height: math.unit(2 + 2/3, "feet"),
  54511. default: true
  54512. },
  54513. ]
  54514. ))
  54515. characterMakers.push(() => makeCharacter(
  54516. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54517. {
  54518. dressed: {
  54519. height: math.unit(5 + 7/12, "feet"),
  54520. weight: math.unit(173, "lb"),
  54521. name: "Dressed",
  54522. image: {
  54523. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54524. extra: 3262/2862,
  54525. bottom: 188/3450
  54526. }
  54527. },
  54528. undressed: {
  54529. height: math.unit(5 + 7/12, "feet"),
  54530. weight: math.unit(173, "lb"),
  54531. name: "Undressed",
  54532. image: {
  54533. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54534. extra: 3262/2862,
  54535. bottom: 188/3450
  54536. }
  54537. },
  54538. },
  54539. [
  54540. {
  54541. name: "The void",
  54542. height: math.unit(7.29193e-34, "angstroms")
  54543. },
  54544. {
  54545. name: "Uh-Oh.",
  54546. height: math.unit(5.734e-7, "angstroms")
  54547. },
  54548. {
  54549. name: "Pico",
  54550. height: math.unit(0.876, "angstroms")
  54551. },
  54552. {
  54553. name: "Nano",
  54554. height: math.unit(0.000134200, "mm")
  54555. },
  54556. {
  54557. name: "Micro",
  54558. height: math.unit(0.0673020, "mm")
  54559. },
  54560. {
  54561. name: "Tiny",
  54562. height: math.unit(2.4, "mm")
  54563. },
  54564. {
  54565. name: "Actual Normal",
  54566. height: math.unit(3, "inches"),
  54567. default: true
  54568. },
  54569. {
  54570. name: "Normal",
  54571. height: math.unit(5 + 8/12, "feet")
  54572. },
  54573. {
  54574. name: "Giant",
  54575. height: math.unit(12, "feet")
  54576. },
  54577. {
  54578. name: "City Ruler",
  54579. height: math.unit(270, "meters")
  54580. },
  54581. {
  54582. name: "Giga",
  54583. height: math.unit(1117.6, "km")
  54584. },
  54585. {
  54586. name: "All-Powerful Queen",
  54587. height: math.unit(70.8, "gigameters")
  54588. },
  54589. {
  54590. name: "'Goddess'",
  54591. height: math.unit(600, "yottameters")
  54592. },
  54593. {
  54594. name: "Biggest!",
  54595. height: math.unit(4.23e5, "yottameters")
  54596. },
  54597. ]
  54598. ))
  54599. characterMakers.push(() => makeCharacter(
  54600. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54601. {
  54602. front: {
  54603. height: math.unit(8, "feet"),
  54604. weight: math.unit(300, "lb"),
  54605. name: "Front",
  54606. image: {
  54607. source: "./media/characters/khyla-shadowsong/front.svg",
  54608. extra: 861/798,
  54609. bottom: 32/893
  54610. }
  54611. },
  54612. side: {
  54613. height: math.unit(8, "feet"),
  54614. weight: math.unit(300, "lb"),
  54615. name: "Side",
  54616. image: {
  54617. source: "./media/characters/khyla-shadowsong/side.svg",
  54618. extra: 790/750,
  54619. bottom: 87/877
  54620. }
  54621. },
  54622. back: {
  54623. height: math.unit(8, "feet"),
  54624. weight: math.unit(300, "lb"),
  54625. name: "Back",
  54626. image: {
  54627. source: "./media/characters/khyla-shadowsong/back.svg",
  54628. extra: 855/808,
  54629. bottom: 14/869
  54630. }
  54631. },
  54632. head: {
  54633. height: math.unit(2.7, "feet"),
  54634. name: "Head",
  54635. image: {
  54636. source: "./media/characters/khyla-shadowsong/head.svg"
  54637. }
  54638. },
  54639. },
  54640. [
  54641. {
  54642. name: "Micro",
  54643. height: math.unit(6, "inches")
  54644. },
  54645. {
  54646. name: "Normal",
  54647. height: math.unit(8, "feet"),
  54648. default: true
  54649. },
  54650. ]
  54651. ))
  54652. characterMakers.push(() => makeCharacter(
  54653. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54654. {
  54655. hyperFront: {
  54656. height: math.unit(9 + 4/12, "feet"),
  54657. weight: math.unit(2000, "lb"),
  54658. name: "Front",
  54659. image: {
  54660. source: "./media/characters/tiden/hyper-front.svg",
  54661. extra: 400/382,
  54662. bottom: 6/406
  54663. },
  54664. form: "hyper",
  54665. },
  54666. regularFront: {
  54667. height: math.unit(7 + 10/12, "feet"),
  54668. weight: math.unit(470, "lb"),
  54669. name: "Front",
  54670. image: {
  54671. source: "./media/characters/tiden/regular-front.svg",
  54672. extra: 468/442,
  54673. bottom: 6/474
  54674. },
  54675. form: "regular",
  54676. },
  54677. },
  54678. [
  54679. {
  54680. name: "Normal",
  54681. height: math.unit(9 + 4/12, "feet"),
  54682. default: true,
  54683. form: "hyper"
  54684. },
  54685. {
  54686. name: "Normal",
  54687. height: math.unit(7 + 10/12, "feet"),
  54688. default: true,
  54689. form: "regular"
  54690. },
  54691. ],
  54692. {
  54693. "hyper": {
  54694. name: "Hyper",
  54695. default: true
  54696. },
  54697. "regular": {
  54698. name: "Regular",
  54699. },
  54700. }
  54701. ))
  54702. characterMakers.push(() => makeCharacter(
  54703. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54704. {
  54705. side: {
  54706. height: math.unit(6, "feet"),
  54707. weight: math.unit(150, "lb"),
  54708. name: "Side",
  54709. image: {
  54710. source: "./media/characters/jason-crowe/side.svg",
  54711. extra: 1771/766,
  54712. bottom: 219/1990
  54713. }
  54714. },
  54715. },
  54716. [
  54717. {
  54718. name: "Pocket Gryphon",
  54719. height: math.unit(6, "cm")
  54720. },
  54721. {
  54722. name: "Raven",
  54723. height: math.unit(60, "cm")
  54724. },
  54725. {
  54726. name: "Normal",
  54727. height: math.unit(1, "meter"),
  54728. default: true
  54729. },
  54730. ]
  54731. ))
  54732. characterMakers.push(() => makeCharacter(
  54733. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54734. {
  54735. front: {
  54736. height: math.unit(9 + 6/12, "feet"),
  54737. weight: math.unit(1100, "lb"),
  54738. name: "Front",
  54739. image: {
  54740. source: "./media/characters/django/front.svg",
  54741. extra: 1231/1136,
  54742. bottom: 34/1265
  54743. }
  54744. },
  54745. side: {
  54746. height: math.unit(9 + 6/12, "feet"),
  54747. weight: math.unit(1100, "lb"),
  54748. name: "Side",
  54749. image: {
  54750. source: "./media/characters/django/side.svg",
  54751. extra: 1267/1174,
  54752. bottom: 9/1276
  54753. }
  54754. },
  54755. },
  54756. [
  54757. {
  54758. name: "Normal",
  54759. height: math.unit(9 + 6/12, "feet"),
  54760. default: true
  54761. },
  54762. {
  54763. name: "Macro 1",
  54764. height: math.unit(50, "feet")
  54765. },
  54766. {
  54767. name: "Macro 2",
  54768. height: math.unit(500, "feet")
  54769. },
  54770. {
  54771. name: "Mega Macro",
  54772. height: math.unit(5300, "feet")
  54773. },
  54774. ]
  54775. ))
  54776. characterMakers.push(() => makeCharacter(
  54777. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54778. {
  54779. frontSfw: {
  54780. height: math.unit(120, "cm"),
  54781. weight: math.unit(15, "kg"),
  54782. name: "Front (SFW)",
  54783. image: {
  54784. source: "./media/characters/eri/front-sfw.svg",
  54785. extra: 1014/939,
  54786. bottom: 37/1051
  54787. },
  54788. form: "moth",
  54789. },
  54790. frontNsfw: {
  54791. height: math.unit(120, "cm"),
  54792. weight: math.unit(15, "kg"),
  54793. name: "Front (NSFW)",
  54794. image: {
  54795. source: "./media/characters/eri/front-nsfw.svg",
  54796. extra: 1014/939,
  54797. bottom: 37/1051
  54798. },
  54799. form: "moth",
  54800. default: true
  54801. },
  54802. egg: {
  54803. height: math.unit(10, "cm"),
  54804. name: "Egg",
  54805. image: {
  54806. source: "./media/characters/eri/egg.svg"
  54807. },
  54808. form: "egg",
  54809. default: true
  54810. },
  54811. },
  54812. [
  54813. {
  54814. name: "Normal",
  54815. height: math.unit(120, "cm"),
  54816. default: true,
  54817. form: "moth"
  54818. },
  54819. {
  54820. name: "Normal",
  54821. height: math.unit(10, "cm"),
  54822. default: true,
  54823. form: "egg"
  54824. },
  54825. ],
  54826. {
  54827. "moth": {
  54828. name: "Moth",
  54829. default: true
  54830. },
  54831. "egg": {
  54832. name: "Egg",
  54833. },
  54834. }
  54835. ))
  54836. characterMakers.push(() => makeCharacter(
  54837. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54838. {
  54839. front: {
  54840. height: math.unit(200, "feet"),
  54841. name: "Front",
  54842. image: {
  54843. source: "./media/characters/bishop-dowser/front.svg",
  54844. extra: 933/868,
  54845. bottom: 106/1039
  54846. }
  54847. },
  54848. },
  54849. [
  54850. {
  54851. name: "Giant",
  54852. height: math.unit(200, "feet"),
  54853. default: true
  54854. },
  54855. ]
  54856. ))
  54857. characterMakers.push(() => makeCharacter(
  54858. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54859. {
  54860. front: {
  54861. height: math.unit(2, "meters"),
  54862. preyCapacity: math.unit(3, "people"),
  54863. name: "Front",
  54864. image: {
  54865. source: "./media/characters/fryra/front.svg",
  54866. extra: 1025/948,
  54867. bottom: 30/1055
  54868. },
  54869. extraAttributes: {
  54870. "breastVolume": {
  54871. name: "Breast Volume",
  54872. power: 3,
  54873. type: "volume",
  54874. base: math.unit(8, "liters")
  54875. },
  54876. }
  54877. },
  54878. back: {
  54879. height: math.unit(2, "meters"),
  54880. preyCapacity: math.unit(3, "people"),
  54881. name: "Back",
  54882. image: {
  54883. source: "./media/characters/fryra/back.svg",
  54884. extra: 993/938,
  54885. bottom: 38/1031
  54886. },
  54887. extraAttributes: {
  54888. "breastVolume": {
  54889. name: "Breast Volume",
  54890. power: 3,
  54891. type: "volume",
  54892. base: math.unit(8, "liters")
  54893. },
  54894. }
  54895. },
  54896. head: {
  54897. height: math.unit(1.33, "feet"),
  54898. name: "Head",
  54899. image: {
  54900. source: "./media/characters/fryra/head.svg"
  54901. }
  54902. },
  54903. maw: {
  54904. height: math.unit(0.56, "feet"),
  54905. name: "Maw",
  54906. image: {
  54907. source: "./media/characters/fryra/maw.svg"
  54908. }
  54909. },
  54910. },
  54911. [
  54912. {
  54913. name: "Micro",
  54914. height: math.unit(5, "cm")
  54915. },
  54916. {
  54917. name: "Normal",
  54918. height: math.unit(2, "meters"),
  54919. default: true
  54920. },
  54921. {
  54922. name: "Small Macro",
  54923. height: math.unit(8, "meters")
  54924. },
  54925. {
  54926. name: "Macro",
  54927. height: math.unit(50, "meters")
  54928. },
  54929. {
  54930. name: "Megamacro",
  54931. height: math.unit(1, "km")
  54932. },
  54933. {
  54934. name: "Planetary",
  54935. height: math.unit(300000, "km")
  54936. },
  54937. {
  54938. name: "Universal",
  54939. height: math.unit(250, "lightyears")
  54940. },
  54941. {
  54942. name: "Fabric of Reality",
  54943. height: math.unit(1000, "multiverses")
  54944. },
  54945. ]
  54946. ))
  54947. characterMakers.push(() => makeCharacter(
  54948. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54949. {
  54950. frontDressed: {
  54951. height: math.unit(6 + 2/12, "feet"),
  54952. name: "Front (Dressed)",
  54953. image: {
  54954. source: "./media/characters/fiera/front-dressed.svg",
  54955. extra: 1883/1793,
  54956. bottom: 70/1953
  54957. }
  54958. },
  54959. backDressed: {
  54960. height: math.unit(6 + 2/12, "feet"),
  54961. name: "Back (Dressed)",
  54962. image: {
  54963. source: "./media/characters/fiera/back-dressed.svg",
  54964. extra: 1847/1780,
  54965. bottom: 70/1917
  54966. }
  54967. },
  54968. frontNude: {
  54969. height: math.unit(6 + 2/12, "feet"),
  54970. name: "Front (Nude)",
  54971. image: {
  54972. source: "./media/characters/fiera/front-nude.svg",
  54973. extra: 1875/1785,
  54974. bottom: 66/1941
  54975. }
  54976. },
  54977. backNude: {
  54978. height: math.unit(6 + 2/12, "feet"),
  54979. name: "Back (Nude)",
  54980. image: {
  54981. source: "./media/characters/fiera/back-nude.svg",
  54982. extra: 1855/1788,
  54983. bottom: 44/1899
  54984. }
  54985. },
  54986. maw: {
  54987. height: math.unit(1.3, "feet"),
  54988. name: "Maw",
  54989. image: {
  54990. source: "./media/characters/fiera/maw.svg"
  54991. }
  54992. },
  54993. paw: {
  54994. height: math.unit(1, "feet"),
  54995. name: "Paw",
  54996. image: {
  54997. source: "./media/characters/fiera/paw.svg"
  54998. }
  54999. },
  55000. shoe: {
  55001. height: math.unit(1.05, "feet"),
  55002. name: "Shoe",
  55003. image: {
  55004. source: "./media/characters/fiera/shoe.svg"
  55005. }
  55006. },
  55007. },
  55008. [
  55009. {
  55010. name: "Normal",
  55011. height: math.unit(6 + 2/12, "feet"),
  55012. default: true
  55013. },
  55014. {
  55015. name: "Size Difference",
  55016. height: math.unit(13, "feet")
  55017. },
  55018. {
  55019. name: "Macro",
  55020. height: math.unit(60, "feet")
  55021. },
  55022. {
  55023. name: "Mega Macro",
  55024. height: math.unit(200, "feet")
  55025. },
  55026. ]
  55027. ))
  55028. characterMakers.push(() => makeCharacter(
  55029. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55030. {
  55031. back: {
  55032. height: math.unit(6, "feet"),
  55033. name: "Back",
  55034. image: {
  55035. source: "./media/characters/flare/back.svg",
  55036. extra: 1883/1765,
  55037. bottom: 32/1915
  55038. }
  55039. },
  55040. },
  55041. [
  55042. {
  55043. name: "Normal",
  55044. height: math.unit(6 + 2/12, "feet"),
  55045. default: true
  55046. },
  55047. {
  55048. name: "Size Difference",
  55049. height: math.unit(13, "feet")
  55050. },
  55051. {
  55052. name: "Macro",
  55053. height: math.unit(60, "feet")
  55054. },
  55055. {
  55056. name: "Macro 2",
  55057. height: math.unit(100, "feet")
  55058. },
  55059. {
  55060. name: "Mega Macro",
  55061. height: math.unit(200, "feet")
  55062. },
  55063. ]
  55064. ))
  55065. characterMakers.push(() => makeCharacter(
  55066. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55067. {
  55068. front: {
  55069. height: math.unit(2.2, "m"),
  55070. weight: math.unit(300, "kg"),
  55071. name: "Front",
  55072. image: {
  55073. source: "./media/characters/hanna/front.svg",
  55074. extra: 1696/1502,
  55075. bottom: 206/1902
  55076. }
  55077. },
  55078. },
  55079. [
  55080. {
  55081. name: "Humanoid",
  55082. height: math.unit(2.2, "meters")
  55083. },
  55084. {
  55085. name: "Normal",
  55086. height: math.unit(4.8, "meters"),
  55087. default: true
  55088. },
  55089. ]
  55090. ))
  55091. characterMakers.push(() => makeCharacter(
  55092. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55093. {
  55094. front: {
  55095. height: math.unit(2.8, "meters"),
  55096. name: "Front",
  55097. image: {
  55098. source: "./media/characters/argo/front.svg",
  55099. extra: 731/518,
  55100. bottom: 84/815
  55101. }
  55102. },
  55103. },
  55104. [
  55105. {
  55106. name: "Normal",
  55107. height: math.unit(3, "meters"),
  55108. default: true
  55109. },
  55110. ]
  55111. ))
  55112. characterMakers.push(() => makeCharacter(
  55113. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55114. {
  55115. side: {
  55116. height: math.unit(3.8, "meters"),
  55117. name: "Side",
  55118. image: {
  55119. source: "./media/characters/sybil/side.svg",
  55120. extra: 382/361,
  55121. bottom: 25/407
  55122. }
  55123. },
  55124. },
  55125. [
  55126. {
  55127. name: "Normal",
  55128. height: math.unit(3.8, "meters"),
  55129. default: true
  55130. },
  55131. ]
  55132. ))
  55133. characterMakers.push(() => makeCharacter(
  55134. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55135. {
  55136. side: {
  55137. height: math.unit(6, "meters"),
  55138. name: "Side",
  55139. image: {
  55140. source: "./media/characters/plum/side.svg",
  55141. extra: 858/755,
  55142. bottom: 45/903
  55143. },
  55144. form: "taur",
  55145. default: true
  55146. },
  55147. back: {
  55148. height: math.unit(6.3, "meters"),
  55149. name: "Back",
  55150. image: {
  55151. source: "./media/characters/plum/back.svg",
  55152. extra: 887/813,
  55153. bottom: 32/919
  55154. },
  55155. form: "taur",
  55156. },
  55157. feral: {
  55158. height: math.unit(5.5, "meter"),
  55159. name: "Front",
  55160. image: {
  55161. source: "./media/characters/plum/feral.svg",
  55162. extra: 568/403,
  55163. bottom: 51/619
  55164. },
  55165. form: "feral",
  55166. default: true
  55167. },
  55168. head: {
  55169. height: math.unit(1.46, "meter"),
  55170. name: "Head",
  55171. image: {
  55172. source: "./media/characters/plum/head.svg"
  55173. },
  55174. form: "taur"
  55175. },
  55176. tailTop: {
  55177. height: math.unit(5.6, "meter"),
  55178. name: "Tail (Top)",
  55179. image: {
  55180. source: "./media/characters/plum/tail-top.svg"
  55181. },
  55182. form: "taur",
  55183. },
  55184. tailBottom: {
  55185. height: math.unit(5.6, "meter"),
  55186. name: "Tail (Bottom)",
  55187. image: {
  55188. source: "./media/characters/plum/tail-bottom.svg"
  55189. },
  55190. form: "taur",
  55191. },
  55192. feralHead: {
  55193. height: math.unit(2.56549521, "meter"),
  55194. name: "Head",
  55195. image: {
  55196. source: "./media/characters/plum/head.svg"
  55197. },
  55198. form: "feral"
  55199. },
  55200. feralTailTop: {
  55201. height: math.unit(5.44728435, "meter"),
  55202. name: "Tail (Top)",
  55203. image: {
  55204. source: "./media/characters/plum/tail-top.svg"
  55205. },
  55206. form: "feral",
  55207. },
  55208. feralTailBottom: {
  55209. height: math.unit(5.44728435, "meter"),
  55210. name: "Tail (Bottom)",
  55211. image: {
  55212. source: "./media/characters/plum/tail-bottom.svg"
  55213. },
  55214. form: "feral",
  55215. },
  55216. },
  55217. [
  55218. {
  55219. name: "Normal",
  55220. height: math.unit(6, "meters"),
  55221. default: true,
  55222. form: "taur"
  55223. },
  55224. {
  55225. name: "Normal",
  55226. height: math.unit(5.5, "meters"),
  55227. default: true,
  55228. form: "feral"
  55229. },
  55230. ],
  55231. {
  55232. "taur": {
  55233. name: "Taur",
  55234. default: true
  55235. },
  55236. "feral": {
  55237. name: "Feral",
  55238. },
  55239. }
  55240. ))
  55241. characterMakers.push(() => makeCharacter(
  55242. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55243. {
  55244. front: {
  55245. height: math.unit(6, "feet"),
  55246. weight: math.unit(115, "lb"),
  55247. name: "Front",
  55248. image: {
  55249. source: "./media/characters/celeste-kitsune/front.svg",
  55250. extra: 393/366,
  55251. bottom: 7/400
  55252. }
  55253. },
  55254. side: {
  55255. height: math.unit(6, "feet"),
  55256. weight: math.unit(115, "lb"),
  55257. name: "Side",
  55258. image: {
  55259. source: "./media/characters/celeste-kitsune/side.svg",
  55260. extra: 818/765,
  55261. bottom: 40/858
  55262. }
  55263. },
  55264. },
  55265. [
  55266. {
  55267. name: "Megamacro",
  55268. height: math.unit(1500, "miles"),
  55269. default: true
  55270. },
  55271. ]
  55272. ))
  55273. characterMakers.push(() => makeCharacter(
  55274. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55275. {
  55276. front: {
  55277. height: math.unit(8, "meters"),
  55278. name: "Front",
  55279. image: {
  55280. source: "./media/characters/io/front.svg",
  55281. extra: 865/722,
  55282. bottom: 58/923
  55283. }
  55284. },
  55285. back: {
  55286. height: math.unit(8, "meters"),
  55287. name: "Back",
  55288. image: {
  55289. source: "./media/characters/io/back.svg",
  55290. extra: 920/776,
  55291. bottom: 42/962
  55292. }
  55293. },
  55294. head: {
  55295. height: math.unit(5.09, "meters"),
  55296. name: "Head",
  55297. image: {
  55298. source: "./media/characters/io/head.svg"
  55299. }
  55300. },
  55301. hand: {
  55302. height: math.unit(1.6, "meters"),
  55303. name: "Hand",
  55304. image: {
  55305. source: "./media/characters/io/hand.svg"
  55306. }
  55307. },
  55308. foot: {
  55309. height: math.unit(2.4, "meters"),
  55310. name: "Foot",
  55311. image: {
  55312. source: "./media/characters/io/foot.svg"
  55313. }
  55314. },
  55315. },
  55316. [
  55317. {
  55318. name: "Normal",
  55319. height: math.unit(8, "meters"),
  55320. default: true
  55321. },
  55322. ]
  55323. ))
  55324. characterMakers.push(() => makeCharacter(
  55325. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55326. {
  55327. side: {
  55328. height: math.unit(6 + 3/12, "feet"),
  55329. weight: math.unit(225, "lb"),
  55330. name: "Side",
  55331. image: {
  55332. source: "./media/characters/silas/side.svg",
  55333. extra: 703/653,
  55334. bottom: 23/726
  55335. },
  55336. extraAttributes: {
  55337. "pawLength": {
  55338. name: "Paw Length",
  55339. power: 1,
  55340. type: "length",
  55341. base: math.unit(12, "inches")
  55342. },
  55343. "pawWidth": {
  55344. name: "Paw Width",
  55345. power: 1,
  55346. type: "length",
  55347. base: math.unit(4.5, "inches")
  55348. },
  55349. "pawArea": {
  55350. name: "Paw Area",
  55351. power: 2,
  55352. type: "area",
  55353. base: math.unit(12 * 4.5, "inches^2")
  55354. },
  55355. }
  55356. },
  55357. },
  55358. [
  55359. {
  55360. name: "Normal",
  55361. height: math.unit(6 + 3/12, "feet"),
  55362. default: true
  55363. },
  55364. ]
  55365. ))
  55366. characterMakers.push(() => makeCharacter(
  55367. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55368. {
  55369. back: {
  55370. height: math.unit(1.6, "meters"),
  55371. weight: math.unit(150, "lb"),
  55372. name: "Back",
  55373. image: {
  55374. source: "./media/characters/zari/back.svg",
  55375. extra: 424/411,
  55376. bottom: 32/456
  55377. },
  55378. extraAttributes: {
  55379. "bladderCapacity": {
  55380. name: "Bladder Size",
  55381. power: 3,
  55382. type: "volume",
  55383. base: math.unit(500, "mL")
  55384. },
  55385. "bladderFlow": {
  55386. name: "Flow Rate",
  55387. power: 3,
  55388. type: "volume",
  55389. base: math.unit(25, "mL")
  55390. },
  55391. }
  55392. },
  55393. },
  55394. [
  55395. {
  55396. name: "Normal",
  55397. height: math.unit(1.6, "meters"),
  55398. default: true
  55399. },
  55400. ]
  55401. ))
  55402. characterMakers.push(() => makeCharacter(
  55403. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55404. {
  55405. front: {
  55406. height: math.unit(25, "feet"),
  55407. weight: math.unit(5, "tons"),
  55408. name: "Front",
  55409. image: {
  55410. source: "./media/characters/charlie-human/front.svg",
  55411. extra: 1870/1740,
  55412. bottom: 102/1972
  55413. },
  55414. extraAttributes: {
  55415. "dickLength": {
  55416. name: "Dick Length",
  55417. power: 1,
  55418. type: "length",
  55419. base: math.unit(9, "feet")
  55420. },
  55421. }
  55422. },
  55423. back: {
  55424. height: math.unit(25, "feet"),
  55425. weight: math.unit(5, "tons"),
  55426. name: "Back",
  55427. image: {
  55428. source: "./media/characters/charlie-human/back.svg",
  55429. extra: 1858/1733,
  55430. bottom: 105/1963
  55431. },
  55432. extraAttributes: {
  55433. "dickLength": {
  55434. name: "Dick Length",
  55435. power: 1,
  55436. type: "length",
  55437. base: math.unit(9, "feet")
  55438. },
  55439. }
  55440. },
  55441. },
  55442. [
  55443. {
  55444. name: "\"Normal\"",
  55445. height: math.unit(6 + 4/12, "feet")
  55446. },
  55447. {
  55448. name: "Big",
  55449. height: math.unit(25, "feet"),
  55450. default: true
  55451. },
  55452. ]
  55453. ))
  55454. characterMakers.push(() => makeCharacter(
  55455. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55456. {
  55457. front: {
  55458. height: math.unit(6 + 4/12, "feet"),
  55459. weight: math.unit(320, "lb"),
  55460. name: "Front",
  55461. image: {
  55462. source: "./media/characters/ookitsu/front.svg",
  55463. extra: 1160/976,
  55464. bottom: 38/1198
  55465. }
  55466. },
  55467. frontNsfw: {
  55468. height: math.unit(6 + 4/12, "feet"),
  55469. weight: math.unit(320, "lb"),
  55470. name: "Front (NSFW)",
  55471. image: {
  55472. source: "./media/characters/ookitsu/front-nsfw.svg",
  55473. extra: 1160/976,
  55474. bottom: 38/1198
  55475. }
  55476. },
  55477. back: {
  55478. height: math.unit(6 + 4/12, "feet"),
  55479. weight: math.unit(320, "lb"),
  55480. name: "Back",
  55481. image: {
  55482. source: "./media/characters/ookitsu/back.svg",
  55483. extra: 1030/975,
  55484. bottom: 70/1100
  55485. }
  55486. },
  55487. head: {
  55488. height: math.unit(1.79, "feet"),
  55489. name: "Head",
  55490. image: {
  55491. source: "./media/characters/ookitsu/head.svg"
  55492. }
  55493. },
  55494. hand: {
  55495. height: math.unit(0.92, "feet"),
  55496. name: "Hand",
  55497. image: {
  55498. source: "./media/characters/ookitsu/hand.svg"
  55499. }
  55500. },
  55501. tails: {
  55502. height: math.unit(3.3, "feet"),
  55503. name: "Tails",
  55504. image: {
  55505. source: "./media/characters/ookitsu/tails.svg"
  55506. }
  55507. },
  55508. dick: {
  55509. height: math.unit(1.10833, "feet"),
  55510. name: "Dick",
  55511. image: {
  55512. source: "./media/characters/ookitsu/dick.svg"
  55513. }
  55514. },
  55515. },
  55516. [
  55517. {
  55518. name: "Normal",
  55519. height: math.unit(6 + 4/12, "feet"),
  55520. default: true
  55521. },
  55522. {
  55523. name: "Macro",
  55524. height: math.unit(30, "feet")
  55525. },
  55526. ]
  55527. ))
  55528. characterMakers.push(() => makeCharacter(
  55529. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55530. {
  55531. anthroFront: {
  55532. height: math.unit(6, "feet"),
  55533. weight: math.unit(250, "lb"),
  55534. name: "Front",
  55535. image: {
  55536. source: "./media/characters/jhusky/anthro-front.svg",
  55537. extra: 474/439,
  55538. bottom: 7/481
  55539. },
  55540. form: "anthro",
  55541. default: true
  55542. },
  55543. taurSideSfw: {
  55544. height: math.unit(6 + 4/12, "feet"),
  55545. weight: math.unit(500, "lb"),
  55546. name: "Side (SFW)",
  55547. image: {
  55548. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55549. extra: 1741/1629,
  55550. bottom: 196/1937
  55551. },
  55552. form: "taur",
  55553. default: true
  55554. },
  55555. taurSideNsfw: {
  55556. height: math.unit(6 + 4/12, "feet"),
  55557. weight: math.unit(500, "lb"),
  55558. name: "Taur (NSFW)",
  55559. image: {
  55560. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55561. extra: 1741/1629,
  55562. bottom: 196/1937
  55563. },
  55564. form: "taur",
  55565. },
  55566. },
  55567. [
  55568. {
  55569. name: "Huge",
  55570. height: math.unit(500, "feet"),
  55571. form: "anthro"
  55572. },
  55573. {
  55574. name: "Macro",
  55575. height: math.unit(1000, "feet"),
  55576. default: true,
  55577. form: "anthro"
  55578. },
  55579. {
  55580. name: "Megamacro",
  55581. height: math.unit(10000, "feet"),
  55582. form: "anthro"
  55583. },
  55584. {
  55585. name: "Huge",
  55586. height: math.unit(528, "feet"),
  55587. form: "taur"
  55588. },
  55589. {
  55590. name: "Macro",
  55591. height: math.unit(1056, "feet"),
  55592. default: true,
  55593. form: "taur"
  55594. },
  55595. {
  55596. name: "Megamacro",
  55597. height: math.unit(10556, "feet"),
  55598. form: "taur"
  55599. },
  55600. ],
  55601. {
  55602. "anthro": {
  55603. name: "Anthro",
  55604. default: true
  55605. },
  55606. "taur": {
  55607. name: "Taur",
  55608. },
  55609. }
  55610. ))
  55611. characterMakers.push(() => makeCharacter(
  55612. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55613. {
  55614. front: {
  55615. height: math.unit(8, "feet"),
  55616. weight: math.unit(500, "lb"),
  55617. name: "Front",
  55618. image: {
  55619. source: "./media/characters/armail/front.svg",
  55620. extra: 1753/1669,
  55621. bottom: 155/1908
  55622. }
  55623. },
  55624. back: {
  55625. height: math.unit(8, "feet"),
  55626. weight: math.unit(500, "lb"),
  55627. name: "Back",
  55628. image: {
  55629. source: "./media/characters/armail/back.svg",
  55630. extra: 1872/1803,
  55631. bottom: 63/1935
  55632. }
  55633. },
  55634. },
  55635. [
  55636. {
  55637. name: "Micro",
  55638. height: math.unit(0.25, "feet")
  55639. },
  55640. {
  55641. name: "Normal",
  55642. height: math.unit(8, "feet"),
  55643. default: true
  55644. },
  55645. {
  55646. name: "Mini-macro",
  55647. height: math.unit(30, "feet")
  55648. },
  55649. {
  55650. name: "Macro",
  55651. height: math.unit(400, "feet")
  55652. },
  55653. {
  55654. name: "Mega-macro",
  55655. height: math.unit(6000, "feet")
  55656. },
  55657. ]
  55658. ))
  55659. characterMakers.push(() => makeCharacter(
  55660. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55661. {
  55662. front: {
  55663. height: math.unit(6 + 7/12, "feet"),
  55664. weight: math.unit(210, "lb"),
  55665. name: "Front",
  55666. image: {
  55667. source: "./media/characters/wilfred-t-buxton/front.svg",
  55668. extra: 1068/882,
  55669. bottom: 28/1096
  55670. }
  55671. },
  55672. },
  55673. [
  55674. {
  55675. name: "Normal",
  55676. height: math.unit(6 + 7/12, "feet"),
  55677. default: true
  55678. },
  55679. ]
  55680. ))
  55681. characterMakers.push(() => makeCharacter(
  55682. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55683. {
  55684. front: {
  55685. height: math.unit(5 + 2/12, "feet"),
  55686. weight: math.unit(120, "lb"),
  55687. name: "Front",
  55688. image: {
  55689. source: "./media/characters/leighton-marrow/front.svg",
  55690. extra: 441/409,
  55691. bottom: 37/478
  55692. }
  55693. },
  55694. },
  55695. [
  55696. {
  55697. name: "Normal",
  55698. height: math.unit(5 + 2/12, "feet"),
  55699. default: true
  55700. },
  55701. ]
  55702. ))
  55703. characterMakers.push(() => makeCharacter(
  55704. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55705. {
  55706. front: {
  55707. height: math.unit(4, "meters"),
  55708. weight: math.unit(1200, "kg"),
  55709. name: "Front",
  55710. image: {
  55711. source: "./media/characters/licos/front.svg",
  55712. extra: 1727/1604,
  55713. bottom: 101/1828
  55714. },
  55715. form: "anthro",
  55716. default: true
  55717. },
  55718. taur_side: {
  55719. height: math.unit(20, "meters"),
  55720. weight: math.unit(1100000, "kg"),
  55721. name: "Side",
  55722. image: {
  55723. source: "./media/characters/licos/taur.svg",
  55724. extra: 1158/1091,
  55725. bottom: 80/1238
  55726. },
  55727. form: "taur",
  55728. default: true
  55729. },
  55730. },
  55731. [
  55732. {
  55733. name: "Normal",
  55734. height: math.unit(4, "meters"),
  55735. default: true,
  55736. form: "anthro"
  55737. },
  55738. {
  55739. name: "Normal",
  55740. height: math.unit(20, "meters"),
  55741. default: true,
  55742. form: "taur"
  55743. },
  55744. ],
  55745. {
  55746. "anthro": {
  55747. name: "Anthro",
  55748. default: true
  55749. },
  55750. "taur": {
  55751. name: "Taur",
  55752. },
  55753. }
  55754. ))
  55755. characterMakers.push(() => makeCharacter(
  55756. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55757. {
  55758. front: {
  55759. height: math.unit(10 + 3/12, "feet"),
  55760. name: "Front",
  55761. image: {
  55762. source: "./media/characters/theo-monkey/front.svg",
  55763. extra: 1735/1658,
  55764. bottom: 73/1808
  55765. }
  55766. },
  55767. back: {
  55768. height: math.unit(10 + 3/12, "feet"),
  55769. name: "Back",
  55770. image: {
  55771. source: "./media/characters/theo-monkey/back.svg",
  55772. extra: 1742/1664,
  55773. bottom: 33/1775
  55774. }
  55775. },
  55776. head: {
  55777. height: math.unit(2.29, "feet"),
  55778. name: "Head",
  55779. image: {
  55780. source: "./media/characters/theo-monkey/head.svg"
  55781. }
  55782. },
  55783. handPalm: {
  55784. height: math.unit(1.73, "feet"),
  55785. name: "Hand (Palm)",
  55786. image: {
  55787. source: "./media/characters/theo-monkey/hand-palm.svg"
  55788. }
  55789. },
  55790. handBack: {
  55791. height: math.unit(1.63, "feet"),
  55792. name: "Hand (Back)",
  55793. image: {
  55794. source: "./media/characters/theo-monkey/hand-back.svg"
  55795. }
  55796. },
  55797. footSole: {
  55798. height: math.unit(2.15, "feet"),
  55799. name: "Foot (Sole)",
  55800. image: {
  55801. source: "./media/characters/theo-monkey/foot-sole.svg"
  55802. }
  55803. },
  55804. footSide: {
  55805. height: math.unit(1.6, "feet"),
  55806. name: "Foot (Side)",
  55807. image: {
  55808. source: "./media/characters/theo-monkey/foot-side.svg"
  55809. }
  55810. },
  55811. },
  55812. [
  55813. {
  55814. name: "Normal",
  55815. height: math.unit(10 + 3/12, "feet"),
  55816. default: true
  55817. },
  55818. ]
  55819. ))
  55820. characterMakers.push(() => makeCharacter(
  55821. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55822. {
  55823. front: {
  55824. height: math.unit(11, "feet"),
  55825. weight: math.unit(3000, "lb"),
  55826. preyCapacity: math.unit(10, "people"),
  55827. name: "Front",
  55828. image: {
  55829. source: "./media/characters/brook/front.svg",
  55830. extra: 909/835,
  55831. bottom: 108/1017
  55832. }
  55833. },
  55834. back: {
  55835. height: math.unit(11, "feet"),
  55836. weight: math.unit(3000, "lb"),
  55837. preyCapacity: math.unit(10, "people"),
  55838. name: "Back",
  55839. image: {
  55840. source: "./media/characters/brook/back.svg",
  55841. extra: 976/916,
  55842. bottom: 34/1010
  55843. }
  55844. },
  55845. backAlt: {
  55846. height: math.unit(11, "feet"),
  55847. weight: math.unit(3000, "lb"),
  55848. preyCapacity: math.unit(10, "people"),
  55849. name: "Back (Alt)",
  55850. image: {
  55851. source: "./media/characters/brook/back-alt.svg",
  55852. extra: 1283/1213,
  55853. bottom: 35/1318
  55854. }
  55855. },
  55856. bust: {
  55857. height: math.unit(9.0859030837, "feet"),
  55858. weight: math.unit(3000, "lb"),
  55859. preyCapacity: math.unit(10, "people"),
  55860. name: "Bust",
  55861. image: {
  55862. source: "./media/characters/brook/bust.svg",
  55863. extra: 2043/1923,
  55864. bottom: 0/2043
  55865. }
  55866. },
  55867. },
  55868. [
  55869. {
  55870. name: "Small",
  55871. height: math.unit(11, "feet"),
  55872. default: true
  55873. },
  55874. {
  55875. name: "Towering",
  55876. height: math.unit(5, "km")
  55877. },
  55878. {
  55879. name: "Enormous",
  55880. height: math.unit(25, "earths")
  55881. },
  55882. ]
  55883. ))
  55884. characterMakers.push(() => makeCharacter(
  55885. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55886. {
  55887. front: {
  55888. height: math.unit(4, "feet"),
  55889. weight: math.unit(150, "lb"),
  55890. name: "Front",
  55891. image: {
  55892. source: "./media/characters/squishi/front.svg",
  55893. extra: 1428/1271,
  55894. bottom: 30/1458
  55895. },
  55896. extraAttributes: {
  55897. "pawSize": {
  55898. name: "Paw Size",
  55899. power: 1,
  55900. type: "length",
  55901. base: math.unit(14, "ShoeSizeMensUS"),
  55902. defaultUnit: "ShoeSizeMensUS"
  55903. },
  55904. }
  55905. },
  55906. side: {
  55907. height: math.unit(4, "feet"),
  55908. weight: math.unit(150, "lb"),
  55909. name: "Side",
  55910. image: {
  55911. source: "./media/characters/squishi/side.svg",
  55912. extra: 1428/1271,
  55913. bottom: 30/1458
  55914. },
  55915. extraAttributes: {
  55916. "pawSize": {
  55917. name: "Paw Size",
  55918. power: 1,
  55919. type: "length",
  55920. base: math.unit(14, "ShoeSizeMensUS"),
  55921. defaultUnit: "ShoeSizeMensUS"
  55922. },
  55923. }
  55924. },
  55925. back: {
  55926. height: math.unit(4, "feet"),
  55927. weight: math.unit(150, "lb"),
  55928. name: "Back",
  55929. image: {
  55930. source: "./media/characters/squishi/back.svg",
  55931. extra: 1428/1271,
  55932. bottom: 30/1458
  55933. },
  55934. extraAttributes: {
  55935. "pawSize": {
  55936. name: "Paw Size",
  55937. power: 1,
  55938. type: "length",
  55939. base: math.unit(14, "ShoeSizeMensUS"),
  55940. defaultUnit: "ShoeSizeMensUS"
  55941. },
  55942. }
  55943. },
  55944. },
  55945. [
  55946. {
  55947. name: "Normal",
  55948. height: math.unit(4, "feet"),
  55949. default: true
  55950. },
  55951. ]
  55952. ))
  55953. characterMakers.push(() => makeCharacter(
  55954. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55955. {
  55956. front: {
  55957. height: math.unit(7 + 8/12, "feet"),
  55958. weight: math.unit(333, "lb"),
  55959. name: "Front",
  55960. image: {
  55961. source: "./media/characters/vincent-vasroc/front.svg",
  55962. extra: 1962/1860,
  55963. bottom: 41/2003
  55964. }
  55965. },
  55966. back: {
  55967. height: math.unit(7 + 8/12, "feet"),
  55968. weight: math.unit(333, "lb"),
  55969. name: "Back",
  55970. image: {
  55971. source: "./media/characters/vincent-vasroc/back.svg",
  55972. extra: 1952/1815,
  55973. bottom: 33/1985
  55974. }
  55975. },
  55976. paw: {
  55977. height: math.unit(1.24, "feet"),
  55978. name: "Paw",
  55979. image: {
  55980. source: "./media/characters/vincent-vasroc/paw.svg"
  55981. }
  55982. },
  55983. ear: {
  55984. height: math.unit(0.75, "feet"),
  55985. name: "Ear",
  55986. image: {
  55987. source: "./media/characters/vincent-vasroc/ear.svg"
  55988. }
  55989. },
  55990. },
  55991. [
  55992. {
  55993. name: "Nano",
  55994. height: math.unit(92, "micrometers")
  55995. },
  55996. {
  55997. name: "Normal",
  55998. height: math.unit(7 + 8/12, "feet"),
  55999. default: true
  56000. },
  56001. ]
  56002. ))
  56003. characterMakers.push(() => makeCharacter(
  56004. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56005. {
  56006. frontNsfw: {
  56007. height: math.unit(40, "feet"),
  56008. weight: math.unit(58, "tons"),
  56009. name: "Front (NSFW)",
  56010. image: {
  56011. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56012. extra: 1265/965,
  56013. bottom: 155/1420
  56014. }
  56015. },
  56016. frontSfw: {
  56017. height: math.unit(40, "feet"),
  56018. weight: math.unit(58, "tons"),
  56019. name: "Front (SFW)",
  56020. image: {
  56021. source: "./media/characters/ru-kahn/front-sfw.svg",
  56022. extra: 1265/965,
  56023. bottom: 80/1345
  56024. }
  56025. },
  56026. },
  56027. [
  56028. {
  56029. name: "Small",
  56030. height: math.unit(4, "feet")
  56031. },
  56032. {
  56033. name: "Normal",
  56034. height: math.unit(40, "feet"),
  56035. default: true
  56036. },
  56037. {
  56038. name: "Macro",
  56039. height: math.unit(400, "feet")
  56040. },
  56041. ]
  56042. ))
  56043. characterMakers.push(() => makeCharacter(
  56044. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56045. {
  56046. frontNude: {
  56047. height: math.unit(6 + 5/12, "feet"),
  56048. name: "Front (Nude)",
  56049. image: {
  56050. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56051. extra: 1369/1366,
  56052. bottom: 68/1437
  56053. }
  56054. },
  56055. frontDressed: {
  56056. height: math.unit(6 + 5/12, "feet"),
  56057. name: "Front (Dressed)",
  56058. image: {
  56059. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56060. extra: 1369/1366,
  56061. bottom: 68/1437
  56062. }
  56063. },
  56064. },
  56065. [
  56066. {
  56067. name: "Normal",
  56068. height: math.unit(6 + 5/12, "feet"),
  56069. default: true
  56070. },
  56071. {
  56072. name: "Maximum",
  56073. height: math.unit(1930, "feet")
  56074. },
  56075. ]
  56076. ))
  56077. characterMakers.push(() => makeCharacter(
  56078. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56079. {
  56080. front: {
  56081. height: math.unit(5 + 6/12, "feet"),
  56082. name: "Front",
  56083. image: {
  56084. source: "./media/characters/kaja/front.svg",
  56085. extra: 1874/1514,
  56086. bottom: 117/1991
  56087. }
  56088. },
  56089. },
  56090. [
  56091. {
  56092. name: "Normal",
  56093. height: math.unit(5 + 6/12, "feet"),
  56094. default: true
  56095. },
  56096. ]
  56097. ))
  56098. characterMakers.push(() => makeCharacter(
  56099. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56100. {
  56101. front: {
  56102. height: math.unit(5 + 9/12, "feet"),
  56103. weight: math.unit(200, "lb"),
  56104. name: "Front",
  56105. image: {
  56106. source: "./media/characters/mark-smith/front.svg",
  56107. extra: 1004/943,
  56108. bottom: 58/1062
  56109. }
  56110. },
  56111. back: {
  56112. height: math.unit(5 + 9/12, "feet"),
  56113. weight: math.unit(200, "lb"),
  56114. name: "Back",
  56115. image: {
  56116. source: "./media/characters/mark-smith/back.svg",
  56117. extra: 1023/953,
  56118. bottom: 24/1047
  56119. }
  56120. },
  56121. head: {
  56122. height: math.unit(1.82, "feet"),
  56123. name: "Head",
  56124. image: {
  56125. source: "./media/characters/mark-smith/head.svg"
  56126. }
  56127. },
  56128. hand: {
  56129. height: math.unit(1.4, "feet"),
  56130. name: "Hand",
  56131. image: {
  56132. source: "./media/characters/mark-smith/hand.svg"
  56133. }
  56134. },
  56135. paw: {
  56136. height: math.unit(1.69, "feet"),
  56137. name: "Paw",
  56138. image: {
  56139. source: "./media/characters/mark-smith/paw.svg"
  56140. }
  56141. },
  56142. },
  56143. [
  56144. {
  56145. name: "Micro",
  56146. height: math.unit(0.25, "inches")
  56147. },
  56148. {
  56149. name: "Normal",
  56150. height: math.unit(5 + 9/12, "feet"),
  56151. default: true
  56152. },
  56153. {
  56154. name: "Macro",
  56155. height: math.unit(500, "feet")
  56156. },
  56157. ]
  56158. ))
  56159. characterMakers.push(() => makeCharacter(
  56160. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56161. {
  56162. frontNude: {
  56163. height: math.unit(6, "feet"),
  56164. name: "Front (Nude)",
  56165. image: {
  56166. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56167. extra: 1384/1321,
  56168. bottom: 57/1441
  56169. }
  56170. },
  56171. frontDressed: {
  56172. height: math.unit(6, "feet"),
  56173. name: "Front (Dressed)",
  56174. image: {
  56175. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56176. extra: 1384/1321,
  56177. bottom: 57/1441
  56178. }
  56179. },
  56180. },
  56181. [
  56182. {
  56183. name: "Normal",
  56184. height: math.unit(6, "feet"),
  56185. default: true
  56186. },
  56187. {
  56188. name: "Maximum",
  56189. height: math.unit(1776, "feet")
  56190. },
  56191. ]
  56192. ))
  56193. characterMakers.push(() => makeCharacter(
  56194. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56195. {
  56196. front: {
  56197. height: math.unit(2 + 4/12, "feet"),
  56198. weight: math.unit(350, "lb"),
  56199. name: "Front",
  56200. image: {
  56201. source: "./media/characters/devos/front.svg",
  56202. extra: 958/852,
  56203. bottom: 143/1101
  56204. }
  56205. },
  56206. },
  56207. [
  56208. {
  56209. name: "Base",
  56210. height: math.unit(2 + 4/12, "feet"),
  56211. default: true
  56212. },
  56213. ]
  56214. ))
  56215. characterMakers.push(() => makeCharacter(
  56216. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56217. {
  56218. front: {
  56219. height: math.unit(9 + 2/12, "feet"),
  56220. name: "Front",
  56221. image: {
  56222. source: "./media/characters/hiveheart/front.svg",
  56223. extra: 394/364,
  56224. bottom: 65/459
  56225. }
  56226. },
  56227. back: {
  56228. height: math.unit(9 + 2/12, "feet"),
  56229. name: "Back",
  56230. image: {
  56231. source: "./media/characters/hiveheart/back.svg",
  56232. extra: 374/357,
  56233. bottom: 63/437
  56234. }
  56235. },
  56236. },
  56237. [
  56238. {
  56239. name: "Base",
  56240. height: math.unit(9 + 2/12, "feet"),
  56241. default: true
  56242. },
  56243. ]
  56244. ))
  56245. characterMakers.push(() => makeCharacter(
  56246. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56247. {
  56248. front: {
  56249. height: math.unit(2.5, "inches"),
  56250. weight: math.unit(0.6, "oz"),
  56251. name: "Front",
  56252. image: {
  56253. source: "./media/characters/bryn/front.svg",
  56254. extra: 1480/1205,
  56255. bottom: 27/1507
  56256. }
  56257. },
  56258. back: {
  56259. height: math.unit(2.5, "inches"),
  56260. weight: math.unit(0.6, "oz"),
  56261. name: "Back",
  56262. image: {
  56263. source: "./media/characters/bryn/back.svg",
  56264. extra: 1475/1201,
  56265. bottom: 39/1514
  56266. }
  56267. },
  56268. foot: {
  56269. height: math.unit(0.4, "inches"),
  56270. name: "Foot",
  56271. image: {
  56272. source: "./media/characters/bryn/foot.svg"
  56273. }
  56274. },
  56275. },
  56276. [
  56277. {
  56278. name: "Normal",
  56279. height: math.unit(2.5, "inches"),
  56280. default: true
  56281. },
  56282. ]
  56283. ))
  56284. characterMakers.push(() => makeCharacter(
  56285. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56286. {
  56287. side: {
  56288. height: math.unit(7, "feet"),
  56289. weight: math.unit(657, "kg"),
  56290. name: "Side",
  56291. image: {
  56292. source: "./media/characters/delta/side.svg",
  56293. extra: 781/212,
  56294. bottom: 7/788
  56295. },
  56296. extraAttributes: {
  56297. "wingspan": {
  56298. name: "Wingspan",
  56299. power: 1,
  56300. type: "length",
  56301. base: math.unit(48, "feet")
  56302. },
  56303. "length": {
  56304. name: "Length",
  56305. power: 1,
  56306. type: "length",
  56307. base: math.unit(21, "feet")
  56308. },
  56309. "pawSize": {
  56310. name: "Paw Size",
  56311. power: 2,
  56312. type: "area",
  56313. base: math.unit(1.5*1.4, "feet^2")
  56314. },
  56315. }
  56316. },
  56317. },
  56318. [
  56319. {
  56320. name: "Normal",
  56321. height: math.unit(6, "feet"),
  56322. default: true
  56323. },
  56324. ]
  56325. ))
  56326. characterMakers.push(() => makeCharacter(
  56327. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56328. {
  56329. front: {
  56330. height: math.unit(6, "feet"),
  56331. name: "Front",
  56332. image: {
  56333. source: "./media/characters/pyrow/front.svg",
  56334. extra: 513/486,
  56335. bottom: 14/527
  56336. }
  56337. },
  56338. frontWing: {
  56339. height: math.unit(6, "feet"),
  56340. name: "Front (Wing)",
  56341. image: {
  56342. source: "./media/characters/pyrow/front-wing.svg",
  56343. extra: 539/383,
  56344. bottom: 20/559
  56345. }
  56346. },
  56347. back: {
  56348. height: math.unit(6, "feet"),
  56349. name: "Back",
  56350. image: {
  56351. source: "./media/characters/pyrow/back.svg",
  56352. extra: 500/473,
  56353. bottom: 9/509
  56354. }
  56355. },
  56356. },
  56357. [
  56358. {
  56359. name: "Normal",
  56360. height: math.unit(6, "feet"),
  56361. default: true
  56362. },
  56363. ]
  56364. ))
  56365. characterMakers.push(() => makeCharacter(
  56366. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56367. {
  56368. front: {
  56369. height: math.unit(5, "meters"),
  56370. weight: math.unit(3, "tonnes"),
  56371. name: "Front",
  56372. image: {
  56373. source: "./media/characters/velikan/front.svg",
  56374. extra: 867/744,
  56375. bottom: 71/938
  56376. },
  56377. extraAttributes: {
  56378. "shoeSize": {
  56379. name: "Shoe Size",
  56380. power: 1,
  56381. type: "length",
  56382. base: math.unit(135, "ShoeSizeUK"),
  56383. defaultUnit: "ShoeSizeUK"
  56384. },
  56385. }
  56386. },
  56387. },
  56388. [
  56389. {
  56390. name: "Normal",
  56391. height: math.unit(5, "meters"),
  56392. default: true
  56393. },
  56394. {
  56395. name: "Macro",
  56396. height: math.unit(1, "km")
  56397. },
  56398. {
  56399. name: "Mega Macro",
  56400. height: math.unit(100, "km")
  56401. },
  56402. {
  56403. name: "Giga Macro",
  56404. height: math.unit(2, "megameters")
  56405. },
  56406. {
  56407. name: "Planetary",
  56408. height: math.unit(22, "megameters")
  56409. },
  56410. {
  56411. name: "Solar",
  56412. height: math.unit(8, "gigameters")
  56413. },
  56414. {
  56415. name: "Cosmic",
  56416. height: math.unit(10, "zettameters")
  56417. },
  56418. {
  56419. name: "Omni",
  56420. height: math.unit(9e260, "multiverses")
  56421. },
  56422. ]
  56423. ))
  56424. characterMakers.push(() => makeCharacter(
  56425. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56426. {
  56427. front: {
  56428. height: math.unit(4 + 3/12, "feet"),
  56429. weight: math.unit(90, "lb"),
  56430. name: "Front",
  56431. image: {
  56432. source: "./media/characters/sabiki/front.svg",
  56433. extra: 1662/1423,
  56434. bottom: 65/1727
  56435. }
  56436. },
  56437. },
  56438. [
  56439. {
  56440. name: "Normal",
  56441. height: math.unit(4 + 3/12, "feet"),
  56442. default: true
  56443. },
  56444. ]
  56445. ))
  56446. characterMakers.push(() => makeCharacter(
  56447. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56448. {
  56449. frontSfw: {
  56450. height: math.unit(2, "mm"),
  56451. name: "Front (SFW)",
  56452. image: {
  56453. source: "./media/characters/carmel/front-sfw.svg",
  56454. extra: 1131/1006,
  56455. bottom: 66/1197
  56456. }
  56457. },
  56458. frontNsfw: {
  56459. height: math.unit(2, "mm"),
  56460. name: "Front (NSFW)",
  56461. image: {
  56462. source: "./media/characters/carmel/front-nsfw.svg",
  56463. extra: 1131/1006,
  56464. bottom: 66/1197
  56465. }
  56466. },
  56467. foot: {
  56468. height: math.unit(0.3, "mm"),
  56469. name: "Foot",
  56470. image: {
  56471. source: "./media/characters/carmel/foot.svg"
  56472. }
  56473. },
  56474. tongue: {
  56475. height: math.unit(0.71, "mm"),
  56476. name: "Tongue",
  56477. image: {
  56478. source: "./media/characters/carmel/tongue.svg"
  56479. }
  56480. },
  56481. dick: {
  56482. height: math.unit(0.085, "mm"),
  56483. name: "Dick",
  56484. image: {
  56485. source: "./media/characters/carmel/dick.svg"
  56486. }
  56487. },
  56488. },
  56489. [
  56490. {
  56491. name: "Micro",
  56492. height: math.unit(2, "mm"),
  56493. default: true
  56494. },
  56495. {
  56496. name: "Normal",
  56497. height: math.unit(4 + 8/12, "feet")
  56498. },
  56499. {
  56500. name: "Mega Macro",
  56501. height: math.unit(250, "feet")
  56502. },
  56503. {
  56504. name: "BIGGER",
  56505. height: math.unit(1000, "feet")
  56506. },
  56507. {
  56508. name: "BIGGEST",
  56509. height: math.unit(2, "miles")
  56510. },
  56511. ]
  56512. ))
  56513. characterMakers.push(() => makeCharacter(
  56514. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56515. {
  56516. front: {
  56517. height: math.unit(6.5, "feet"),
  56518. weight: math.unit(198, "lb"),
  56519. name: "Front",
  56520. image: {
  56521. source: "./media/characters/tamani/anthro.svg",
  56522. extra: 930/890,
  56523. bottom: 34/964
  56524. },
  56525. form: "anthro",
  56526. default: true
  56527. },
  56528. side: {
  56529. height: math.unit(6, "feet"),
  56530. weight: math.unit(198*2, "lb"),
  56531. name: "Side",
  56532. image: {
  56533. source: "./media/characters/tamani/feral.svg",
  56534. extra: 559/519,
  56535. bottom: 43/602
  56536. },
  56537. form: "feral"
  56538. },
  56539. },
  56540. [
  56541. {
  56542. name: "Normal",
  56543. height: math.unit(6.5, "feet"),
  56544. default: true,
  56545. form: "anthro"
  56546. },
  56547. {
  56548. name: "Normal",
  56549. height: math.unit(6, "feet"),
  56550. default: true,
  56551. form: "feral"
  56552. },
  56553. ],
  56554. {
  56555. "anthro": {
  56556. name: "Anthro",
  56557. default: true
  56558. },
  56559. "feral": {
  56560. name: "Feral",
  56561. },
  56562. }
  56563. ))
  56564. characterMakers.push(() => makeCharacter(
  56565. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56566. {
  56567. front: {
  56568. height: math.unit(4 + 1/12, "feet"),
  56569. weight: math.unit(114, "lb"),
  56570. name: "Front",
  56571. image: {
  56572. source: "./media/characters/dex/front.svg",
  56573. extra: 787/680,
  56574. bottom: 18/805
  56575. }
  56576. },
  56577. side: {
  56578. height: math.unit(4 + 1/12, "feet"),
  56579. weight: math.unit(114, "lb"),
  56580. name: "Side",
  56581. image: {
  56582. source: "./media/characters/dex/side.svg",
  56583. extra: 785/680,
  56584. bottom: 12/797
  56585. }
  56586. },
  56587. back: {
  56588. height: math.unit(4 + 1/12, "feet"),
  56589. weight: math.unit(114, "lb"),
  56590. name: "Back",
  56591. image: {
  56592. source: "./media/characters/dex/back.svg",
  56593. extra: 785/681,
  56594. bottom: 17/802
  56595. }
  56596. },
  56597. loungewear: {
  56598. height: math.unit(4 + 1/12, "feet"),
  56599. weight: math.unit(114, "lb"),
  56600. name: "Loungewear",
  56601. image: {
  56602. source: "./media/characters/dex/loungewear.svg",
  56603. extra: 787/680,
  56604. bottom: 18/805
  56605. }
  56606. },
  56607. workout: {
  56608. height: math.unit(4 + 1/12, "feet"),
  56609. weight: math.unit(114, "lb"),
  56610. name: "Workout",
  56611. image: {
  56612. source: "./media/characters/dex/workout.svg",
  56613. extra: 787/680,
  56614. bottom: 18/805
  56615. }
  56616. },
  56617. schoolUniform: {
  56618. height: math.unit(4 + 1/12, "feet"),
  56619. weight: math.unit(114, "lb"),
  56620. name: "School-uniform",
  56621. image: {
  56622. source: "./media/characters/dex/school-uniform.svg",
  56623. extra: 787/680,
  56624. bottom: 18/805
  56625. }
  56626. },
  56627. maw: {
  56628. height: math.unit(0.55, "feet"),
  56629. name: "Maw",
  56630. image: {
  56631. source: "./media/characters/dex/maw.svg"
  56632. }
  56633. },
  56634. paw: {
  56635. height: math.unit(0.87, "feet"),
  56636. name: "Paw",
  56637. image: {
  56638. source: "./media/characters/dex/paw.svg"
  56639. }
  56640. },
  56641. bust: {
  56642. height: math.unit(1.67, "feet"),
  56643. name: "Bust",
  56644. image: {
  56645. source: "./media/characters/dex/bust.svg"
  56646. }
  56647. },
  56648. },
  56649. [
  56650. {
  56651. name: "Normal",
  56652. height: math.unit(4 + 1/12, "feet"),
  56653. default: true
  56654. },
  56655. ]
  56656. ))
  56657. characterMakers.push(() => makeCharacter(
  56658. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56659. {
  56660. front: {
  56661. height: math.unit(4 + 3/12, "feet"),
  56662. weight: math.unit(60, "lb"),
  56663. name: "Front",
  56664. image: {
  56665. source: "./media/characters/silke/front.svg",
  56666. extra: 1334/1122,
  56667. bottom: 21/1355
  56668. }
  56669. },
  56670. back: {
  56671. height: math.unit(4 + 3/12, "feet"),
  56672. weight: math.unit(60, "lb"),
  56673. name: "Back",
  56674. image: {
  56675. source: "./media/characters/silke/back.svg",
  56676. extra: 1328/1092,
  56677. bottom: 16/1344
  56678. }
  56679. },
  56680. dressed: {
  56681. height: math.unit(4 + 3/12, "feet"),
  56682. weight: math.unit(60, "lb"),
  56683. name: "Dressed",
  56684. image: {
  56685. source: "./media/characters/silke/dressed.svg",
  56686. extra: 1334/1122,
  56687. bottom: 43/1377
  56688. }
  56689. },
  56690. },
  56691. [
  56692. {
  56693. name: "Normal",
  56694. height: math.unit(4 + 3/12, "feet"),
  56695. default: true
  56696. },
  56697. ]
  56698. ))
  56699. characterMakers.push(() => makeCharacter(
  56700. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56701. {
  56702. front: {
  56703. height: math.unit(1.58, "meters"),
  56704. weight: math.unit(47, "kg"),
  56705. name: "Front",
  56706. image: {
  56707. source: "./media/characters/wireshark/front.svg",
  56708. extra: 883/838,
  56709. bottom: 66/949
  56710. }
  56711. },
  56712. },
  56713. [
  56714. {
  56715. name: "Normal",
  56716. height: math.unit(1.58, "meters"),
  56717. default: true
  56718. },
  56719. ]
  56720. ))
  56721. characterMakers.push(() => makeCharacter(
  56722. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56723. {
  56724. front: {
  56725. height: math.unit(6, "meters"),
  56726. weight: math.unit(15000, "kg"),
  56727. name: "Front",
  56728. image: {
  56729. source: "./media/characters/gallagher/front.svg",
  56730. extra: 532/493,
  56731. bottom: 0/532
  56732. }
  56733. },
  56734. },
  56735. [
  56736. {
  56737. name: "Normal",
  56738. height: math.unit(6, "meters"),
  56739. default: true
  56740. },
  56741. ]
  56742. ))
  56743. characterMakers.push(() => makeCharacter(
  56744. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56745. {
  56746. front: {
  56747. height: math.unit(2.4, "meters"),
  56748. weight: math.unit(270, "kg"),
  56749. name: "Front",
  56750. image: {
  56751. source: "./media/characters/alice/front.svg",
  56752. extra: 950/900,
  56753. bottom: 36/986
  56754. }
  56755. },
  56756. side: {
  56757. height: math.unit(2.4, "meters"),
  56758. weight: math.unit(270, "kg"),
  56759. name: "Side",
  56760. image: {
  56761. source: "./media/characters/alice/side.svg",
  56762. extra: 921/876,
  56763. bottom: 19/940
  56764. }
  56765. },
  56766. dressed: {
  56767. height: math.unit(2.4, "meters"),
  56768. weight: math.unit(270, "kg"),
  56769. name: "Dressed",
  56770. image: {
  56771. source: "./media/characters/alice/dressed.svg",
  56772. extra: 905/850,
  56773. bottom: 81/986
  56774. }
  56775. },
  56776. fishnet: {
  56777. height: math.unit(2.4, "meters"),
  56778. weight: math.unit(270, "kg"),
  56779. name: "Fishnet",
  56780. image: {
  56781. source: "./media/characters/alice/fishnet.svg",
  56782. extra: 905/850,
  56783. bottom: 81/986
  56784. }
  56785. },
  56786. },
  56787. [
  56788. {
  56789. name: "Normal",
  56790. height: math.unit(2.4, "meters"),
  56791. default: true
  56792. },
  56793. ]
  56794. ))
  56795. characterMakers.push(() => makeCharacter(
  56796. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56797. {
  56798. front: {
  56799. height: math.unit(175.25, "feet"),
  56800. name: "Front",
  56801. image: {
  56802. source: "./media/characters/fio/front.svg",
  56803. extra: 1883/1591,
  56804. bottom: 34/1917
  56805. }
  56806. },
  56807. },
  56808. [
  56809. {
  56810. name: "Normal",
  56811. height: math.unit(175.25, "cm"),
  56812. default: true
  56813. },
  56814. ]
  56815. ))
  56816. characterMakers.push(() => makeCharacter(
  56817. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56818. {
  56819. side: {
  56820. height: math.unit(6, "meters"),
  56821. weight: math.unit(3400, "kg"),
  56822. preyCapacity: math.unit(1700, "liters"),
  56823. name: "Side",
  56824. image: {
  56825. source: "./media/characters/hass/side.svg",
  56826. extra: 1058/997,
  56827. bottom: 177/1235
  56828. }
  56829. },
  56830. feeding: {
  56831. height: math.unit(6*0.63, "meters"),
  56832. weight: math.unit(3400, "kg"),
  56833. preyCapacity: math.unit(1700, "liters"),
  56834. name: "Feeding",
  56835. image: {
  56836. source: "./media/characters/hass/feeding.svg",
  56837. extra: 689/579,
  56838. bottom: 146/835
  56839. }
  56840. },
  56841. guts: {
  56842. height: math.unit(6, "meters"),
  56843. weight: math.unit(3400, "kg"),
  56844. name: "Guts",
  56845. image: {
  56846. source: "./media/characters/hass/guts.svg",
  56847. extra: 1223/1198,
  56848. bottom: 182/1405
  56849. }
  56850. },
  56851. dickFront: {
  56852. height: math.unit(1.4, "meters"),
  56853. name: "Dick (Front)",
  56854. image: {
  56855. source: "./media/characters/hass/dick-front.svg"
  56856. }
  56857. },
  56858. dickSide: {
  56859. height: math.unit(1.3, "meters"),
  56860. name: "Dick (Side)",
  56861. image: {
  56862. source: "./media/characters/hass/dick-side.svg"
  56863. }
  56864. },
  56865. dickBack: {
  56866. height: math.unit(1.4, "meters"),
  56867. name: "Dick (Back)",
  56868. image: {
  56869. source: "./media/characters/hass/dick-back.svg"
  56870. }
  56871. },
  56872. },
  56873. [
  56874. {
  56875. name: "Normal",
  56876. height: math.unit(6, "meters"),
  56877. default: true
  56878. },
  56879. ]
  56880. ))
  56881. characterMakers.push(() => makeCharacter(
  56882. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56883. {
  56884. front: {
  56885. height: math.unit(4, "feet"),
  56886. weight: math.unit(60, "lb"),
  56887. name: "Front",
  56888. image: {
  56889. source: "./media/characters/hickory-finnegan/front.svg",
  56890. extra: 444/411,
  56891. bottom: 10/454
  56892. }
  56893. },
  56894. side: {
  56895. height: math.unit(4, "feet"),
  56896. weight: math.unit(60, "lb"),
  56897. name: "Side",
  56898. image: {
  56899. source: "./media/characters/hickory-finnegan/side.svg",
  56900. extra: 444/411,
  56901. bottom: 10/454
  56902. }
  56903. },
  56904. back: {
  56905. height: math.unit(4, "feet"),
  56906. weight: math.unit(60, "lb"),
  56907. name: "Back",
  56908. image: {
  56909. source: "./media/characters/hickory-finnegan/back.svg",
  56910. extra: 444/411,
  56911. bottom: 10/454
  56912. }
  56913. },
  56914. },
  56915. [
  56916. {
  56917. name: "Normal",
  56918. height: math.unit(4, "feet"),
  56919. default: true
  56920. },
  56921. ]
  56922. ))
  56923. characterMakers.push(() => makeCharacter(
  56924. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56925. {
  56926. snivy_front: {
  56927. height: math.unit(2, "feet"),
  56928. weight: math.unit(17.9, "lb"),
  56929. name: "Front",
  56930. image: {
  56931. source: "./media/characters/robin-phox/snivy-front.svg",
  56932. extra: 569/504,
  56933. bottom: 33/602
  56934. },
  56935. form: "snivy",
  56936. default: true
  56937. },
  56938. snivy_frontNsfw: {
  56939. height: math.unit(2, "feet"),
  56940. weight: math.unit(17.9, "lb"),
  56941. name: "Front (NSFW)",
  56942. image: {
  56943. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56944. extra: 569/504,
  56945. bottom: 33/602
  56946. },
  56947. form: "snivy",
  56948. },
  56949. snivy_back: {
  56950. height: math.unit(2, "feet"),
  56951. weight: math.unit(17.9, "lb"),
  56952. name: "Back",
  56953. image: {
  56954. source: "./media/characters/robin-phox/snivy-back.svg",
  56955. extra: 577/508,
  56956. bottom: 21/598
  56957. },
  56958. form: "snivy",
  56959. },
  56960. snivy_foot: {
  56961. height: math.unit(0.68, "feet"),
  56962. name: "Foot",
  56963. image: {
  56964. source: "./media/characters/robin-phox/snivy-foot.svg"
  56965. },
  56966. form: "snivy",
  56967. },
  56968. snivy_sole: {
  56969. height: math.unit(0.68, "feet"),
  56970. name: "Sole",
  56971. image: {
  56972. source: "./media/characters/robin-phox/snivy-sole.svg"
  56973. },
  56974. form: "snivy",
  56975. },
  56976. yoshi_front: {
  56977. height: math.unit(6, "feet"),
  56978. weight: math.unit(150, "lb"),
  56979. name: "Front",
  56980. image: {
  56981. source: "./media/characters/robin-phox/yoshi-front.svg",
  56982. extra: 890/792,
  56983. bottom: 29/919
  56984. },
  56985. form: "yoshi",
  56986. default: true
  56987. },
  56988. yoshi_frontNsfw: {
  56989. height: math.unit(6, "feet"),
  56990. weight: math.unit(150, "lb"),
  56991. name: "Front (NSFW)",
  56992. image: {
  56993. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56994. extra: 890/792,
  56995. bottom: 29/919
  56996. },
  56997. form: "yoshi",
  56998. },
  56999. yoshi_back: {
  57000. height: math.unit(6, "feet"),
  57001. weight: math.unit(150, "lb"),
  57002. name: "Back",
  57003. image: {
  57004. source: "./media/characters/robin-phox/yoshi-back.svg",
  57005. extra: 890/792,
  57006. bottom: 29/919
  57007. },
  57008. form: "yoshi",
  57009. },
  57010. yoshi_foot: {
  57011. height: math.unit(1.5, "feet"),
  57012. name: "Foot",
  57013. image: {
  57014. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57015. },
  57016. form: "yoshi",
  57017. },
  57018. delphox_front: {
  57019. height: math.unit(4 + 11/12, "feet"),
  57020. weight: math.unit(86, "lb"),
  57021. name: "Front",
  57022. image: {
  57023. source: "./media/characters/robin-phox/delphox-front.svg",
  57024. extra: 1266/1069,
  57025. bottom: 32/1298
  57026. },
  57027. form: "delphox",
  57028. default: true
  57029. },
  57030. delphox_frontNsfw: {
  57031. height: math.unit(4 + 11/12, "feet"),
  57032. weight: math.unit(86, "lb"),
  57033. name: "Front (NSFW)",
  57034. image: {
  57035. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57036. extra: 1266/1069,
  57037. bottom: 32/1298
  57038. },
  57039. form: "delphox",
  57040. },
  57041. delphox_back: {
  57042. height: math.unit(4 + 11/12, "feet"),
  57043. weight: math.unit(86, "lb"),
  57044. name: "Back",
  57045. image: {
  57046. source: "./media/characters/robin-phox/delphox-back.svg",
  57047. extra: 1269/1083,
  57048. bottom: 15/1284
  57049. },
  57050. form: "delphox",
  57051. },
  57052. mienshao_front: {
  57053. height: math.unit(4 + 7/12, "feet"),
  57054. weight: math.unit(78.3, "lb"),
  57055. name: "Front",
  57056. image: {
  57057. source: "./media/characters/robin-phox/mienshao-front.svg",
  57058. extra: 1052/970,
  57059. bottom: 108/1160
  57060. },
  57061. form: "mienshao",
  57062. default: true
  57063. },
  57064. mienshao_frontNsfw: {
  57065. height: math.unit(4 + 7/12, "feet"),
  57066. weight: math.unit(78.3, "lb"),
  57067. name: "Front (NSFW)",
  57068. image: {
  57069. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57070. extra: 1052/970,
  57071. bottom: 108/1160
  57072. },
  57073. form: "mienshao",
  57074. },
  57075. mienshao_back: {
  57076. height: math.unit(4 + 7/12, "feet"),
  57077. weight: math.unit(78.3, "lb"),
  57078. name: "Back",
  57079. image: {
  57080. source: "./media/characters/robin-phox/mienshao-back.svg",
  57081. extra: 1102/982,
  57082. bottom: 32/1134
  57083. },
  57084. form: "mienshao",
  57085. },
  57086. inteleon_front: {
  57087. height: math.unit(6 + 3/12, "feet"),
  57088. weight: math.unit(99.6, "lb"),
  57089. name: "Front",
  57090. image: {
  57091. source: "./media/characters/robin-phox/inteleon-front.svg",
  57092. extra: 910/799,
  57093. bottom: 76/986
  57094. },
  57095. form: "inteleon",
  57096. default: true
  57097. },
  57098. inteleon_frontNsfw: {
  57099. height: math.unit(6 + 3/12, "feet"),
  57100. weight: math.unit(99.6, "lb"),
  57101. name: "Front (NSFW)",
  57102. image: {
  57103. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57104. extra: 910/799,
  57105. bottom: 76/986
  57106. },
  57107. form: "inteleon",
  57108. },
  57109. inteleon_back: {
  57110. height: math.unit(6 + 3/12, "feet"),
  57111. weight: math.unit(99.6, "lb"),
  57112. name: "Back",
  57113. image: {
  57114. source: "./media/characters/robin-phox/inteleon-back.svg",
  57115. extra: 907/796,
  57116. bottom: 25/932
  57117. },
  57118. form: "inteleon",
  57119. },
  57120. reshiram_front: {
  57121. height: math.unit(10 + 6/12, "feet"),
  57122. weight: math.unit(727.5, "lb"),
  57123. name: "Front",
  57124. image: {
  57125. source: "./media/characters/robin-phox/reshiram-front.svg",
  57126. extra: 1198/940,
  57127. bottom: 123/1321
  57128. },
  57129. form: "reshiram",
  57130. },
  57131. reshiram_frontNsfw: {
  57132. height: math.unit(10 + 6/12, "feet"),
  57133. weight: math.unit(727.5, "lb"),
  57134. name: "Front-nsfw",
  57135. image: {
  57136. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57137. extra: 1198/940,
  57138. bottom: 123/1321
  57139. },
  57140. form: "reshiram",
  57141. },
  57142. reshiram_back: {
  57143. height: math.unit(10 + 6/12, "feet"),
  57144. weight: math.unit(727.5, "lb"),
  57145. name: "Back",
  57146. image: {
  57147. source: "./media/characters/robin-phox/reshiram-back.svg",
  57148. extra: 1024/904,
  57149. bottom: 85/1109
  57150. },
  57151. form: "reshiram",
  57152. },
  57153. samurott_front: {
  57154. height: math.unit(8, "feet"),
  57155. weight: math.unit(208.6, "lb"),
  57156. name: "Front",
  57157. image: {
  57158. source: "./media/characters/robin-phox/samurott-front.svg",
  57159. extra: 1048/984,
  57160. bottom: 100/1148
  57161. },
  57162. form: "samurott",
  57163. },
  57164. samurott_frontNsfw: {
  57165. height: math.unit(8, "feet"),
  57166. weight: math.unit(208.6, "lb"),
  57167. name: "Front-nsfw",
  57168. image: {
  57169. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57170. extra: 1048/984,
  57171. bottom: 100/1148
  57172. },
  57173. form: "samurott",
  57174. },
  57175. samurott_back: {
  57176. height: math.unit(8, "feet"),
  57177. weight: math.unit(208.6, "lb"),
  57178. name: "Back",
  57179. image: {
  57180. source: "./media/characters/robin-phox/samurott-back.svg",
  57181. extra: 1110/1042,
  57182. bottom: 12/1122
  57183. },
  57184. form: "samurott",
  57185. },
  57186. samurott_feral: {
  57187. height: math.unit(4 + 11/12, "feet"),
  57188. weight: math.unit(208.6, "lb"),
  57189. name: "Feral",
  57190. image: {
  57191. source: "./media/characters/robin-phox/samurott-feral.svg",
  57192. extra: 766/681,
  57193. bottom: 108/874
  57194. },
  57195. form: "samurott",
  57196. },
  57197. },
  57198. [
  57199. {
  57200. name: "Normal",
  57201. height: math.unit(2, "feet"),
  57202. default: true,
  57203. form: "snivy"
  57204. },
  57205. {
  57206. name: "Normal",
  57207. height: math.unit(6, "feet"),
  57208. default: true,
  57209. form: "yoshi"
  57210. },
  57211. {
  57212. name: "Normal",
  57213. height: math.unit(4 + 11/12, "feet"),
  57214. default: true,
  57215. form: "delphox"
  57216. },
  57217. {
  57218. name: "Normal",
  57219. height: math.unit(4 + 7/12, "feet"),
  57220. default: true,
  57221. form: "mienshao"
  57222. },
  57223. {
  57224. name: "Normal",
  57225. height: math.unit(6 + 3/12, "feet"),
  57226. default: true,
  57227. form: "inteleon"
  57228. },
  57229. {
  57230. name: "Normal",
  57231. height: math.unit(10 + 6/12, "feet"),
  57232. default: true,
  57233. form: "reshiram"
  57234. },
  57235. {
  57236. name: "Normal",
  57237. height: math.unit(8, "feet"),
  57238. default: true,
  57239. form: "samurott"
  57240. },
  57241. {
  57242. name: "Macro",
  57243. height: math.unit(500, "feet"),
  57244. allForms: true
  57245. },
  57246. {
  57247. name: "Mega Macro",
  57248. height: math.unit(10, "earths"),
  57249. allForms: true
  57250. },
  57251. {
  57252. name: "Giga Macro",
  57253. height: math.unit(1, "galaxy"),
  57254. allForms: true
  57255. },
  57256. {
  57257. name: "Godly Macro",
  57258. height: math.unit(1e10, "multiverses"),
  57259. allForms: true
  57260. },
  57261. ],
  57262. {
  57263. "snivy": {
  57264. name: "Snivy",
  57265. default: true
  57266. },
  57267. "yoshi": {
  57268. name: "Yoshi",
  57269. },
  57270. "delphox": {
  57271. name: "Delphox",
  57272. },
  57273. "mienshao": {
  57274. name: "Mienshao",
  57275. },
  57276. "inteleon": {
  57277. name: "Inteleon",
  57278. },
  57279. "reshiram": {
  57280. name: "Reshiram",
  57281. },
  57282. "samurott": {
  57283. name: "Samurott",
  57284. },
  57285. }
  57286. ))
  57287. characterMakers.push(() => makeCharacter(
  57288. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57289. {
  57290. front: {
  57291. height: math.unit(4, "feet"),
  57292. name: "Front",
  57293. image: {
  57294. source: "./media/characters/ash-leung/front.svg",
  57295. extra: 1916/1792,
  57296. bottom: 50/1966
  57297. }
  57298. },
  57299. },
  57300. [
  57301. {
  57302. name: "Atomic",
  57303. height: math.unit(1, "angstrom")
  57304. },
  57305. {
  57306. name: "Microscopic",
  57307. height: math.unit(4000, "angstroms")
  57308. },
  57309. {
  57310. name: "Speck",
  57311. height: math.unit(1, "mm")
  57312. },
  57313. {
  57314. name: "Small",
  57315. height: math.unit(1, "inch")
  57316. },
  57317. {
  57318. name: "Normal",
  57319. height: math.unit(4, "feet"),
  57320. default: true
  57321. },
  57322. ]
  57323. ))
  57324. characterMakers.push(() => makeCharacter(
  57325. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57326. {
  57327. frontDressed: {
  57328. height: math.unit(2.08, "meters"),
  57329. weight: math.unit(175, "lb"),
  57330. name: "Front (Dressed)",
  57331. image: {
  57332. source: "./media/characters/carie/front-dressed.svg",
  57333. extra: 456/417,
  57334. bottom: 7/463
  57335. }
  57336. },
  57337. backDressed: {
  57338. height: math.unit(2.08, "meters"),
  57339. weight: math.unit(175, "lb"),
  57340. name: "Back (Dressed)",
  57341. image: {
  57342. source: "./media/characters/carie/back-dressed.svg",
  57343. extra: 455/414,
  57344. bottom: 11/466
  57345. }
  57346. },
  57347. front: {
  57348. height: math.unit(2, "meters"),
  57349. weight: math.unit(175, "lb"),
  57350. name: "Front",
  57351. image: {
  57352. source: "./media/characters/carie/front.svg",
  57353. extra: 438/399,
  57354. bottom: 12/450
  57355. }
  57356. },
  57357. back: {
  57358. height: math.unit(2, "meters"),
  57359. weight: math.unit(175, "lb"),
  57360. name: "Back",
  57361. image: {
  57362. source: "./media/characters/carie/back.svg",
  57363. extra: 438/397,
  57364. bottom: 7/445
  57365. }
  57366. },
  57367. },
  57368. [
  57369. {
  57370. name: "Normal",
  57371. height: math.unit(2.08, "meters"),
  57372. default: true
  57373. },
  57374. {
  57375. name: "Macro",
  57376. height: math.unit(2.08e3, "meters")
  57377. },
  57378. {
  57379. name: "Mega Macro",
  57380. height: math.unit(2.08e6, "meters")
  57381. },
  57382. {
  57383. name: "Giga Macro",
  57384. height: math.unit(2.08e9, "meters")
  57385. },
  57386. {
  57387. name: "Tera Macro",
  57388. height: math.unit(2.08e12, "meters")
  57389. },
  57390. {
  57391. name: "Peta Macro",
  57392. height: math.unit(2.08e15, "meters")
  57393. },
  57394. {
  57395. name: "Exa Macro",
  57396. height: math.unit(2.08e18, "meters")
  57397. },
  57398. {
  57399. name: "Zetta Macro",
  57400. height: math.unit(2.08e21, "meters")
  57401. },
  57402. {
  57403. name: "Yotta Macro",
  57404. height: math.unit(2.08e24, "meters")
  57405. },
  57406. ]
  57407. ))
  57408. characterMakers.push(() => makeCharacter(
  57409. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57410. {
  57411. front: {
  57412. height: math.unit(5 + 2/12, "feet"),
  57413. weight: math.unit(120, "lb"),
  57414. name: "Front",
  57415. image: {
  57416. source: "./media/characters/sai-bree/front.svg",
  57417. extra: 1843/1702,
  57418. bottom: 91/1934
  57419. }
  57420. },
  57421. back: {
  57422. height: math.unit(5 + 2/12, "feet"),
  57423. weight: math.unit(120, "lb"),
  57424. name: "Back",
  57425. image: {
  57426. source: "./media/characters/sai-bree/back.svg",
  57427. extra: 1809/1637,
  57428. bottom: 56/1865
  57429. }
  57430. },
  57431. },
  57432. [
  57433. {
  57434. name: "Normal",
  57435. height: math.unit(5 + 2/12, "feet"),
  57436. default: true
  57437. },
  57438. {
  57439. name: "Macro",
  57440. height: math.unit(500, "feet")
  57441. },
  57442. ]
  57443. ))
  57444. characterMakers.push(() => makeCharacter(
  57445. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57446. {
  57447. side: {
  57448. height: math.unit(0.77, "meters"),
  57449. weight: math.unit(120, "lb"),
  57450. name: "Side",
  57451. image: {
  57452. source: "./media/characters/davwyn/side.svg",
  57453. extra: 1557/1225,
  57454. bottom: 131/1688
  57455. }
  57456. },
  57457. front: {
  57458. height: math.unit(0.835410, "meters"),
  57459. weight: math.unit(120, "lb"),
  57460. name: "Front",
  57461. image: {
  57462. source: "./media/characters/davwyn/front.svg",
  57463. extra: 870/843,
  57464. bottom: 175/1045
  57465. }
  57466. },
  57467. },
  57468. [
  57469. {
  57470. name: "Minidrake",
  57471. height: math.unit(0.77/4, "meters")
  57472. },
  57473. {
  57474. name: "Normal",
  57475. height: math.unit(0.77, "meters"),
  57476. default: true
  57477. },
  57478. ]
  57479. ))
  57480. characterMakers.push(() => makeCharacter(
  57481. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57482. {
  57483. front: {
  57484. height: math.unit(10 + 3/12, "feet"),
  57485. weight: math.unit(2857, "lb"),
  57486. name: "Front",
  57487. image: {
  57488. source: "./media/characters/balans/front.svg",
  57489. extra: 427/402,
  57490. bottom: 26/453
  57491. }
  57492. },
  57493. side: {
  57494. height: math.unit(10 + 3/12, "feet"),
  57495. weight: math.unit(2857, "lb"),
  57496. name: "Side",
  57497. image: {
  57498. source: "./media/characters/balans/side.svg",
  57499. extra: 397/371,
  57500. bottom: 17/414
  57501. }
  57502. },
  57503. back: {
  57504. height: math.unit(10 + 3/12, "feet"),
  57505. weight: math.unit(2857, "lb"),
  57506. name: "Back",
  57507. image: {
  57508. source: "./media/characters/balans/back.svg",
  57509. extra: 408/381,
  57510. bottom: 14/422
  57511. }
  57512. },
  57513. hand: {
  57514. height: math.unit(1.15, "feet"),
  57515. name: "Hand",
  57516. image: {
  57517. source: "./media/characters/balans/hand.svg"
  57518. }
  57519. },
  57520. footRest: {
  57521. height: math.unit(3.1, "feet"),
  57522. name: "Foot (Rest)",
  57523. image: {
  57524. source: "./media/characters/balans/foot-rest.svg"
  57525. }
  57526. },
  57527. footActive: {
  57528. height: math.unit(3.5, "feet"),
  57529. name: "Foot (Active)",
  57530. image: {
  57531. source: "./media/characters/balans/foot-active.svg"
  57532. }
  57533. },
  57534. },
  57535. [
  57536. {
  57537. name: "Normal",
  57538. height: math.unit(10 + 3/12, "feet"),
  57539. default: true
  57540. },
  57541. ]
  57542. ))
  57543. characterMakers.push(() => makeCharacter(
  57544. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57545. {
  57546. side: {
  57547. height: math.unit(9, "meters"),
  57548. weight: math.unit(114, "tonnes"),
  57549. name: "Side",
  57550. image: {
  57551. source: "./media/characters/eldkveikir/side.svg",
  57552. extra: 1927/338,
  57553. bottom: 42/1969
  57554. }
  57555. },
  57556. sitting: {
  57557. height: math.unit(13.4, "meters"),
  57558. weight: math.unit(114, "tonnes"),
  57559. name: "Sitting",
  57560. image: {
  57561. source: "./media/characters/eldkveikir/sitting.svg",
  57562. extra: 1108/963,
  57563. bottom: 610/1718
  57564. }
  57565. },
  57566. maw: {
  57567. height: math.unit(8.36, "meters"),
  57568. name: "Maw",
  57569. image: {
  57570. source: "./media/characters/eldkveikir/maw.svg"
  57571. }
  57572. },
  57573. hand: {
  57574. height: math.unit(4.84, "meters"),
  57575. name: "Hand",
  57576. image: {
  57577. source: "./media/characters/eldkveikir/hand.svg"
  57578. }
  57579. },
  57580. foot: {
  57581. height: math.unit(6.9, "meters"),
  57582. name: "Foot",
  57583. image: {
  57584. source: "./media/characters/eldkveikir/foot.svg"
  57585. }
  57586. },
  57587. genitals: {
  57588. height: math.unit(9.6, "meters"),
  57589. name: "Genitals",
  57590. image: {
  57591. source: "./media/characters/eldkveikir/genitals.svg"
  57592. }
  57593. },
  57594. },
  57595. [
  57596. {
  57597. name: "Normal",
  57598. height: math.unit(9, "meters"),
  57599. default: true
  57600. },
  57601. ]
  57602. ))
  57603. characterMakers.push(() => makeCharacter(
  57604. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57605. {
  57606. front: {
  57607. height: math.unit(14, "feet"),
  57608. weight: math.unit(4100, "lb"),
  57609. name: "Front",
  57610. image: {
  57611. source: "./media/characters/arrow/front.svg",
  57612. extra: 330/318,
  57613. bottom: 56/386
  57614. }
  57615. },
  57616. },
  57617. [
  57618. {
  57619. name: "Normal",
  57620. height: math.unit(14, "feet"),
  57621. default: true
  57622. },
  57623. {
  57624. name: "Minimacro",
  57625. height: math.unit(63, "feet")
  57626. },
  57627. {
  57628. name: "Macro",
  57629. height: math.unit(630, "feet")
  57630. },
  57631. {
  57632. name: "Megamacro",
  57633. height: math.unit(12600, "feet")
  57634. },
  57635. {
  57636. name: "Gigamacro",
  57637. height: math.unit(18000, "miles")
  57638. },
  57639. ]
  57640. ))
  57641. characterMakers.push(() => makeCharacter(
  57642. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57643. {
  57644. front: {
  57645. height: math.unit(10, "feet"),
  57646. weight: math.unit(2.4, "tons"),
  57647. name: "Front",
  57648. image: {
  57649. source: "./media/characters/3yk-k0-unit/front.svg",
  57650. extra: 573/561,
  57651. bottom: 33/606
  57652. }
  57653. },
  57654. back: {
  57655. height: math.unit(10, "feet"),
  57656. weight: math.unit(2.4, "tons"),
  57657. name: "Back",
  57658. image: {
  57659. source: "./media/characters/3yk-k0-unit/back.svg",
  57660. extra: 614/573,
  57661. bottom: 32/646
  57662. }
  57663. },
  57664. maw: {
  57665. height: math.unit(2.15, "feet"),
  57666. name: "Maw",
  57667. image: {
  57668. source: "./media/characters/3yk-k0-unit/maw.svg"
  57669. }
  57670. },
  57671. },
  57672. [
  57673. {
  57674. name: "Normal",
  57675. height: math.unit(10, "feet"),
  57676. default: true
  57677. },
  57678. ]
  57679. ))
  57680. characterMakers.push(() => makeCharacter(
  57681. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57682. {
  57683. front: {
  57684. height: math.unit(8 + 8/12, "feet"),
  57685. name: "Front",
  57686. image: {
  57687. source: "./media/characters/nemo/front.svg",
  57688. extra: 1308/1217,
  57689. bottom: 57/1365
  57690. }
  57691. },
  57692. },
  57693. [
  57694. {
  57695. name: "Normal",
  57696. height: math.unit(8 + 8/12, "feet"),
  57697. default: true
  57698. },
  57699. ]
  57700. ))
  57701. characterMakers.push(() => makeCharacter(
  57702. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57703. {
  57704. front: {
  57705. height: math.unit(8, "feet"),
  57706. weight: math.unit(760, "lb"),
  57707. name: "Front",
  57708. image: {
  57709. source: "./media/characters/rexx/front.svg",
  57710. extra: 786/750,
  57711. bottom: 17/803
  57712. },
  57713. extraAttributes: {
  57714. "pawLength": {
  57715. name: "Paw Length",
  57716. power: 1,
  57717. type: "length",
  57718. base: math.unit(27, "inches")
  57719. },
  57720. }
  57721. },
  57722. },
  57723. [
  57724. {
  57725. name: "Micro",
  57726. height: math.unit(2, "inches")
  57727. },
  57728. {
  57729. name: "Normal",
  57730. height: math.unit(8, "feet"),
  57731. default: true
  57732. },
  57733. {
  57734. name: "Macro",
  57735. height: math.unit(150, "feet")
  57736. },
  57737. ]
  57738. ))
  57739. characterMakers.push(() => makeCharacter(
  57740. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57741. {
  57742. front: {
  57743. height: math.unit(18, "feet"),
  57744. weight: math.unit(1975, "lb"),
  57745. name: "Front",
  57746. image: {
  57747. source: "./media/characters/draco/front.svg",
  57748. extra: 1325/1241,
  57749. bottom: 83/1408
  57750. }
  57751. },
  57752. back: {
  57753. height: math.unit(18, "feet"),
  57754. weight: math.unit(1975, "lb"),
  57755. name: "Back",
  57756. image: {
  57757. source: "./media/characters/draco/back.svg",
  57758. extra: 1332/1250,
  57759. bottom: 43/1375
  57760. }
  57761. },
  57762. dick: {
  57763. height: math.unit(7.5, "feet"),
  57764. name: "Dick",
  57765. image: {
  57766. source: "./media/characters/draco/dick.svg"
  57767. }
  57768. },
  57769. },
  57770. [
  57771. {
  57772. name: "Normal",
  57773. height: math.unit(18, "feet"),
  57774. default: true
  57775. },
  57776. ]
  57777. ))
  57778. characterMakers.push(() => makeCharacter(
  57779. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57780. {
  57781. front: {
  57782. height: math.unit(3.2, "meters"),
  57783. name: "Front",
  57784. image: {
  57785. source: "./media/characters/harriett/front.svg",
  57786. extra: 1966/1915,
  57787. bottom: 9/1975
  57788. }
  57789. },
  57790. },
  57791. [
  57792. {
  57793. name: "Normal",
  57794. height: math.unit(3.2, "meters"),
  57795. default: true
  57796. },
  57797. ]
  57798. ))
  57799. characterMakers.push(() => makeCharacter(
  57800. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57801. {
  57802. sitting: {
  57803. height: math.unit(0.8, "meter"),
  57804. name: "Sitting",
  57805. image: {
  57806. source: "./media/characters/serpentus/sitting.svg",
  57807. extra: 293/290,
  57808. bottom: 140/433
  57809. }
  57810. },
  57811. },
  57812. [
  57813. {
  57814. name: "Normal",
  57815. height: math.unit(0.8, "meter"),
  57816. default: true
  57817. },
  57818. ]
  57819. ))
  57820. characterMakers.push(() => makeCharacter(
  57821. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57822. {
  57823. front: {
  57824. height: math.unit(5.7174385736, "feet"),
  57825. name: "Front",
  57826. image: {
  57827. source: "./media/characters/nova-polecat/front.svg",
  57828. extra: 1317/1216,
  57829. bottom: 92/1409
  57830. }
  57831. },
  57832. },
  57833. [
  57834. {
  57835. name: "Normal",
  57836. height: math.unit(5.7174385736, "feet"),
  57837. default: true
  57838. },
  57839. ]
  57840. ))
  57841. characterMakers.push(() => makeCharacter(
  57842. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57843. {
  57844. front: {
  57845. height: math.unit(5 + 4/12, "feet"),
  57846. weight: math.unit(250, "lb"),
  57847. name: "Front",
  57848. image: {
  57849. source: "./media/characters/mook/front.svg",
  57850. extra: 1088/1037,
  57851. bottom: 132/1220
  57852. }
  57853. },
  57854. back: {
  57855. height: math.unit(5 + 1/12, "feet"),
  57856. weight: math.unit(250, "lb"),
  57857. name: "Back",
  57858. image: {
  57859. source: "./media/characters/mook/back.svg",
  57860. extra: 1184/905,
  57861. bottom: 96/1280
  57862. }
  57863. },
  57864. head: {
  57865. height: math.unit(1.85, "feet"),
  57866. name: "Head",
  57867. image: {
  57868. source: "./media/characters/mook/head.svg"
  57869. }
  57870. },
  57871. hand: {
  57872. height: math.unit(1.9, "feet"),
  57873. name: "Hand",
  57874. image: {
  57875. source: "./media/characters/mook/hand.svg"
  57876. }
  57877. },
  57878. palm: {
  57879. height: math.unit(1.84, "feet"),
  57880. name: "Palm",
  57881. image: {
  57882. source: "./media/characters/mook/palm.svg"
  57883. }
  57884. },
  57885. foot: {
  57886. height: math.unit(1.44, "feet"),
  57887. name: "Foot",
  57888. image: {
  57889. source: "./media/characters/mook/foot.svg"
  57890. }
  57891. },
  57892. sole: {
  57893. height: math.unit(1.44, "feet"),
  57894. name: "Sole",
  57895. image: {
  57896. source: "./media/characters/mook/sole.svg"
  57897. }
  57898. },
  57899. },
  57900. [
  57901. {
  57902. name: "Normal",
  57903. height: math.unit(5 + 4/12, "feet"),
  57904. default: true
  57905. },
  57906. {
  57907. name: "Big",
  57908. height: math.unit(12, "feet")
  57909. },
  57910. ]
  57911. ))
  57912. characterMakers.push(() => makeCharacter(
  57913. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57914. {
  57915. front: {
  57916. height: math.unit(6 + 10/12, "feet"),
  57917. weight: math.unit(233, "lb"),
  57918. name: "Front",
  57919. image: {
  57920. source: "./media/characters/kayla/front.svg",
  57921. extra: 1850/1775,
  57922. bottom: 65/1915
  57923. }
  57924. },
  57925. },
  57926. [
  57927. {
  57928. name: "Normal",
  57929. height: math.unit(6 + 10/12, "feet"),
  57930. default: true
  57931. },
  57932. {
  57933. name: "Amazonian",
  57934. height: math.unit(12 + 5/12, "feet")
  57935. },
  57936. {
  57937. name: "Mini Giantess",
  57938. height: math.unit(26, "feet")
  57939. },
  57940. {
  57941. name: "Giantess",
  57942. height: math.unit(200, "feet")
  57943. },
  57944. {
  57945. name: "Mega Giantess",
  57946. height: math.unit(2500, "feet")
  57947. },
  57948. {
  57949. name: "City Sized",
  57950. height: math.unit(50, "miles")
  57951. },
  57952. {
  57953. name: "Country Sized",
  57954. height: math.unit(500, "miles")
  57955. },
  57956. {
  57957. name: "Continent Sized",
  57958. height: math.unit(2500, "miles")
  57959. },
  57960. {
  57961. name: "Planet Sized",
  57962. height: math.unit(10000, "miles")
  57963. },
  57964. {
  57965. name: "Star Sized",
  57966. height: math.unit(5e6, "miles")
  57967. },
  57968. {
  57969. name: "Solar System Sized",
  57970. height: math.unit(125, "AU")
  57971. },
  57972. {
  57973. name: "Galaxy Sized",
  57974. height: math.unit(300e3, "lightyears")
  57975. },
  57976. {
  57977. name: "Universe Sized",
  57978. height: math.unit(200e9, "lightyears")
  57979. },
  57980. {
  57981. name: "Multiverse Sized",
  57982. height: math.unit(20, "exauniverses")
  57983. },
  57984. {
  57985. name: "Mother of Existence",
  57986. height: math.unit(1e6, "yottauniverses")
  57987. },
  57988. ]
  57989. ))
  57990. characterMakers.push(() => makeCharacter(
  57991. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57992. {
  57993. side: {
  57994. height: math.unit(9.5, "meters"),
  57995. name: "Side",
  57996. image: {
  57997. source: "./media/characters/kulve-ragnarok/side.svg",
  57998. extra: 364/326,
  57999. bottom: 50/414
  58000. }
  58001. },
  58002. },
  58003. [
  58004. {
  58005. name: "Normal",
  58006. height: math.unit(9.5, "meters"),
  58007. default: true
  58008. },
  58009. ]
  58010. ))
  58011. characterMakers.push(() => makeCharacter(
  58012. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58013. {
  58014. front: {
  58015. height: math.unit(8 + 9/12, "feet"),
  58016. name: "Front",
  58017. image: {
  58018. source: "./media/characters/atlas-goat/front.svg",
  58019. extra: 1462/1323,
  58020. bottom: 12/1474
  58021. }
  58022. },
  58023. },
  58024. [
  58025. {
  58026. name: "Normal",
  58027. height: math.unit(8 + 9/12, "feet"),
  58028. default: true
  58029. },
  58030. {
  58031. name: "Skyline",
  58032. height: math.unit(845, "feet")
  58033. },
  58034. {
  58035. name: "Orbital",
  58036. height: math.unit(93000, "miles")
  58037. },
  58038. {
  58039. name: "Constellation",
  58040. height: math.unit(27000, "lightyears")
  58041. },
  58042. ]
  58043. ))
  58044. characterMakers.push(() => makeCharacter(
  58045. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58046. {
  58047. side: {
  58048. height: math.unit(1.8, "meters"),
  58049. weight: math.unit(120, "kg"),
  58050. name: "Side",
  58051. image: {
  58052. source: "./media/characters/xie-ling/side.svg",
  58053. extra: 646/574,
  58054. bottom: 44/690
  58055. }
  58056. },
  58057. },
  58058. [
  58059. {
  58060. name: "Tiny",
  58061. height: math.unit(1.80, "meters")
  58062. },
  58063. {
  58064. name: "Small",
  58065. height: math.unit(6, "meters")
  58066. },
  58067. {
  58068. name: "Medium",
  58069. height: math.unit(15, "meters")
  58070. },
  58071. {
  58072. name: "Normal",
  58073. height: math.unit(30, "meters"),
  58074. default: true
  58075. },
  58076. {
  58077. name: "Above Normal",
  58078. height: math.unit(60, "meters")
  58079. },
  58080. {
  58081. name: "Big",
  58082. height: math.unit(220, "meters")
  58083. },
  58084. {
  58085. name: "Giant",
  58086. height: math.unit(2.2, "km")
  58087. },
  58088. {
  58089. name: "Macro",
  58090. height: math.unit(25, "km")
  58091. },
  58092. {
  58093. name: "Mega Macro",
  58094. height: math.unit(350, "km")
  58095. },
  58096. {
  58097. name: "Mega Macro+",
  58098. height: math.unit(5000, "km")
  58099. },
  58100. {
  58101. name: "Goddess",
  58102. height: math.unit(3, "multiverses")
  58103. },
  58104. ]
  58105. ))
  58106. characterMakers.push(() => makeCharacter(
  58107. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58108. {
  58109. frontSfw: {
  58110. height: math.unit(5 + 11/12, "feet"),
  58111. weight: math.unit(210, "lb"),
  58112. name: "Front",
  58113. image: {
  58114. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58115. extra: 1928/1821,
  58116. bottom: 45/1973
  58117. }
  58118. },
  58119. backSfw: {
  58120. height: math.unit(5 + 11/12, "feet"),
  58121. weight: math.unit(210, "lb"),
  58122. name: "Back",
  58123. image: {
  58124. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58125. extra: 1920/1813,
  58126. bottom: 34/1954
  58127. }
  58128. },
  58129. frontNsfw: {
  58130. height: math.unit(5 + 11/12, "feet"),
  58131. weight: math.unit(210, "lb"),
  58132. name: "Front (NSFW)",
  58133. image: {
  58134. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58135. extra: 1928/1821,
  58136. bottom: 45/1973
  58137. }
  58138. },
  58139. backNsfw: {
  58140. height: math.unit(5 + 11/12, "feet"),
  58141. weight: math.unit(210, "lb"),
  58142. name: "Back (NSFW)",
  58143. image: {
  58144. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58145. extra: 1920/1813,
  58146. bottom: 34/1954
  58147. }
  58148. },
  58149. },
  58150. [
  58151. {
  58152. name: "Normal",
  58153. height: math.unit(5 + 11/12, "feet"),
  58154. default: true
  58155. },
  58156. {
  58157. name: "Goddess",
  58158. height: math.unit(20 + 3/12, "feet")
  58159. },
  58160. {
  58161. name: "Breaker of Man",
  58162. height: math.unit(329 + 9/12, "feet")
  58163. },
  58164. {
  58165. name: "Solar Justice",
  58166. height: math.unit(0.6, "solarradii")
  58167. },
  58168. {
  58169. name: "She Who Judges",
  58170. height: math.unit(1, "universe")
  58171. },
  58172. ]
  58173. ))
  58174. characterMakers.push(() => makeCharacter(
  58175. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58176. {
  58177. casual_front: {
  58178. height: math.unit(6 + 1/12, "feet"),
  58179. weight: math.unit(190, "lb"),
  58180. preyCapacity: math.unit(1, "people"),
  58181. name: "Front",
  58182. image: {
  58183. source: "./media/characters/managarmr/casual-front.svg",
  58184. extra: 411/381,
  58185. bottom: 15/426
  58186. },
  58187. extraAttributes: {
  58188. "pawSize": {
  58189. name: "Paw Size",
  58190. power: 1,
  58191. type: "length",
  58192. base: math.unit(0.2, "meters")
  58193. },
  58194. },
  58195. form: "casual",
  58196. },
  58197. casual_back: {
  58198. height: math.unit(6 + 1/12, "feet"),
  58199. weight: math.unit(190, "lb"),
  58200. preyCapacity: math.unit(1, "people"),
  58201. name: "Back",
  58202. image: {
  58203. source: "./media/characters/managarmr/casual-back.svg",
  58204. extra: 413/383,
  58205. bottom: 13/426
  58206. },
  58207. extraAttributes: {
  58208. "pawSize": {
  58209. name: "Paw Size",
  58210. power: 1,
  58211. type: "length",
  58212. base: math.unit(0.2, "meters")
  58213. },
  58214. },
  58215. form: "casual",
  58216. },
  58217. base_front: {
  58218. height: math.unit(7, "feet"),
  58219. weight: math.unit(210, "lb"),
  58220. preyCapacity: math.unit(2, "people"),
  58221. name: "Front",
  58222. image: {
  58223. source: "./media/characters/managarmr/base-front.svg",
  58224. extra: 580/485,
  58225. bottom: 32/612
  58226. },
  58227. extraAttributes: {
  58228. "wingspan": {
  58229. name: "Wingspan",
  58230. power: 1,
  58231. type: "length",
  58232. base: math.unit(4, "meters")
  58233. },
  58234. "pawSize": {
  58235. name: "Paw Size",
  58236. power: 1,
  58237. type: "length",
  58238. base: math.unit(0.2, "meters")
  58239. },
  58240. },
  58241. form: "base",
  58242. },
  58243. "true-divine_front": {
  58244. height: math.unit(40, "feet"),
  58245. weight: math.unit(39000, "lb"),
  58246. preyCapacity: math.unit(375, "people"),
  58247. name: "Front",
  58248. image: {
  58249. source: "./media/characters/managarmr/true-divine-front.svg",
  58250. extra: 725/573,
  58251. bottom: 120/845
  58252. },
  58253. extraAttributes: {
  58254. "wingspan": {
  58255. name: "Wingspan",
  58256. power: 1,
  58257. type: "length",
  58258. base: math.unit(20, "meters")
  58259. },
  58260. "pawSize": {
  58261. name: "Paw Size",
  58262. power: 1,
  58263. type: "length",
  58264. base: math.unit(1.5, "meters")
  58265. },
  58266. },
  58267. form: "true-divine",
  58268. },
  58269. },
  58270. [
  58271. {
  58272. name: "Normal",
  58273. height: math.unit(6 + 1/12, "feet"),
  58274. form: "casual",
  58275. default: true
  58276. },
  58277. {
  58278. name: "Normal",
  58279. height: math.unit(7, "feet"),
  58280. form: "base",
  58281. default: true
  58282. },
  58283. ],
  58284. {
  58285. "casual": {
  58286. name: "Casual",
  58287. default: true
  58288. },
  58289. "base": {
  58290. name: "Base",
  58291. },
  58292. "true-divine": {
  58293. name: "True Divine",
  58294. },
  58295. }
  58296. ))
  58297. characterMakers.push(() => makeCharacter(
  58298. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58299. {
  58300. front: {
  58301. height: math.unit(1.8, "meters"),
  58302. weight: math.unit(110, "kg"),
  58303. name: "Front",
  58304. image: {
  58305. source: "./media/characters/mystra/front.svg",
  58306. extra: 529/442,
  58307. bottom: 31/560
  58308. }
  58309. },
  58310. frontLewd: {
  58311. height: math.unit(1.8, "meters"),
  58312. weight: math.unit(110, "kg"),
  58313. name: "Front (Lewd)",
  58314. image: {
  58315. source: "./media/characters/mystra/front-lewd.svg",
  58316. extra: 529/442,
  58317. bottom: 31/560
  58318. }
  58319. },
  58320. head: {
  58321. height: math.unit(1.63, "feet"),
  58322. name: "Head",
  58323. image: {
  58324. source: "./media/characters/mystra/head.svg"
  58325. }
  58326. },
  58327. paw: {
  58328. height: math.unit(1.9, "feet"),
  58329. name: "Paw",
  58330. image: {
  58331. source: "./media/characters/mystra/paw.svg"
  58332. }
  58333. },
  58334. },
  58335. [
  58336. {
  58337. name: "Incognito",
  58338. height: math.unit(2.3, "meters")
  58339. },
  58340. {
  58341. name: "Small Macro",
  58342. height: math.unit(300, "meters")
  58343. },
  58344. {
  58345. name: "Small Mega",
  58346. height: math.unit(2, "km")
  58347. },
  58348. {
  58349. name: "Mega",
  58350. height: math.unit(30, "km")
  58351. },
  58352. {
  58353. name: "Small Giga",
  58354. height: math.unit(100, "km")
  58355. },
  58356. {
  58357. name: "Giga",
  58358. height: math.unit(1000, "km"),
  58359. default: true
  58360. },
  58361. {
  58362. name: "Continental",
  58363. height: math.unit(5000, "km")
  58364. },
  58365. {
  58366. name: "Terra",
  58367. height: math.unit(20000, "km")
  58368. },
  58369. {
  58370. name: "Solar",
  58371. height: math.unit(2e6, "km")
  58372. },
  58373. {
  58374. name: "Galactic",
  58375. height: math.unit(528502, "lightyears")
  58376. },
  58377. {
  58378. name: "Universal",
  58379. height: math.unit(20, "universes")
  58380. },
  58381. ]
  58382. ))
  58383. characterMakers.push(() => makeCharacter(
  58384. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58385. {
  58386. front: {
  58387. height: math.unit(2, "meters"),
  58388. weight: math.unit(140, "kg"),
  58389. name: "Front",
  58390. image: {
  58391. source: "./media/characters/caleb/front.svg",
  58392. extra: 873/817,
  58393. bottom: 47/920
  58394. }
  58395. },
  58396. back: {
  58397. height: math.unit(2, "meters"),
  58398. weight: math.unit(140, "kg"),
  58399. name: "Back",
  58400. image: {
  58401. source: "./media/characters/caleb/back.svg",
  58402. extra: 877/828,
  58403. bottom: 24/901
  58404. }
  58405. },
  58406. snakeTail: {
  58407. height: math.unit(1.44, "feet"),
  58408. name: "Snake Tail",
  58409. image: {
  58410. source: "./media/characters/caleb/snake-tail.svg"
  58411. }
  58412. },
  58413. dick: {
  58414. height: math.unit(2.6, "feet"),
  58415. name: "Dick",
  58416. image: {
  58417. source: "./media/characters/caleb/dick.svg"
  58418. }
  58419. },
  58420. },
  58421. [
  58422. {
  58423. name: "Incognito",
  58424. height: math.unit(3, "meters")
  58425. },
  58426. {
  58427. name: "Home Size",
  58428. height: math.unit(200, "meters"),
  58429. default: true
  58430. },
  58431. {
  58432. name: "Macro",
  58433. height: math.unit(500, "meters")
  58434. },
  58435. {
  58436. name: "Big Macro",
  58437. height: math.unit(5, "km")
  58438. },
  58439. {
  58440. name: "Giga",
  58441. height: math.unit(250, "km")
  58442. },
  58443. {
  58444. name: "Giga+",
  58445. height: math.unit(5000, "km")
  58446. },
  58447. {
  58448. name: "Small Terra",
  58449. height: math.unit(35e3, "km")
  58450. },
  58451. {
  58452. name: "Terra",
  58453. height: math.unit(2e6, "km")
  58454. },
  58455. {
  58456. name: "Terra+",
  58457. height: math.unit(1.5e6, "km")
  58458. },
  58459. ]
  58460. ))
  58461. characterMakers.push(() => makeCharacter(
  58462. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58463. {
  58464. front: {
  58465. height: math.unit(2, "meters"),
  58466. weight: math.unit(120, "kg"),
  58467. name: "Front",
  58468. image: {
  58469. source: "./media/characters/gilirian/front.svg",
  58470. extra: 805/737,
  58471. bottom: 13/818
  58472. }
  58473. },
  58474. side: {
  58475. height: math.unit(2, "meters"),
  58476. weight: math.unit(120, "kg"),
  58477. name: "Side",
  58478. image: {
  58479. source: "./media/characters/gilirian/side.svg",
  58480. extra: 810/746,
  58481. bottom: 6/816
  58482. }
  58483. },
  58484. back: {
  58485. height: math.unit(2, "meters"),
  58486. weight: math.unit(120, "kg"),
  58487. name: "Back",
  58488. image: {
  58489. source: "./media/characters/gilirian/back.svg",
  58490. extra: 815/745,
  58491. bottom: 15/830
  58492. }
  58493. },
  58494. frontNsfw: {
  58495. height: math.unit(2, "meters"),
  58496. weight: math.unit(120, "kg"),
  58497. name: "Front (NSFW)",
  58498. image: {
  58499. source: "./media/characters/gilirian/front-nsfw.svg",
  58500. extra: 805/737,
  58501. bottom: 13/818
  58502. }
  58503. },
  58504. sideNsfw: {
  58505. height: math.unit(2, "meters"),
  58506. weight: math.unit(120, "kg"),
  58507. name: "Side (NSFW)",
  58508. image: {
  58509. source: "./media/characters/gilirian/side-nsfw.svg",
  58510. extra: 810/746,
  58511. bottom: 6/816
  58512. }
  58513. },
  58514. },
  58515. [
  58516. {
  58517. name: "Incognito",
  58518. height: math.unit(2, "meters"),
  58519. default: true
  58520. },
  58521. {
  58522. name: "Macro",
  58523. height: math.unit(250, "meters")
  58524. },
  58525. {
  58526. name: "Big Macro",
  58527. height: math.unit(1500, "meters")
  58528. },
  58529. {
  58530. name: "Mega",
  58531. height: math.unit(40, "km")
  58532. },
  58533. {
  58534. name: "Giga",
  58535. height: math.unit(300, "km")
  58536. },
  58537. {
  58538. name: "Extra Giga",
  58539. height: math.unit(5000, "km")
  58540. },
  58541. {
  58542. name: "Small Terra",
  58543. height: math.unit(10e3, "km")
  58544. },
  58545. {
  58546. name: "Terra",
  58547. height: math.unit(3e5, "km")
  58548. },
  58549. {
  58550. name: "Galactic",
  58551. height: math.unit(369950, "lightyears")
  58552. },
  58553. ]
  58554. ))
  58555. characterMakers.push(() => makeCharacter(
  58556. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58557. {
  58558. front: {
  58559. height: math.unit(2.5, "meters"),
  58560. weight: math.unit(230, "lb"),
  58561. name: "Front",
  58562. image: {
  58563. source: "./media/characters/tarken/front.svg",
  58564. extra: 764/720,
  58565. bottom: 49/813
  58566. }
  58567. },
  58568. back: {
  58569. height: math.unit(2.5, "meters"),
  58570. weight: math.unit(230, "lb"),
  58571. name: "Back",
  58572. image: {
  58573. source: "./media/characters/tarken/back.svg",
  58574. extra: 756/720,
  58575. bottom: 35/791
  58576. }
  58577. },
  58578. frontNsfw: {
  58579. height: math.unit(2.5, "meters"),
  58580. weight: math.unit(230, "lb"),
  58581. name: "Front (NSFW)",
  58582. image: {
  58583. source: "./media/characters/tarken/front-nsfw.svg",
  58584. extra: 764/720,
  58585. bottom: 49/813
  58586. }
  58587. },
  58588. backNsfw: {
  58589. height: math.unit(2.5, "meters"),
  58590. weight: math.unit(230, "lb"),
  58591. name: "Back (NSFW)",
  58592. image: {
  58593. source: "./media/characters/tarken/back-nsfw.svg",
  58594. extra: 756/720,
  58595. bottom: 35/791
  58596. }
  58597. },
  58598. head: {
  58599. height: math.unit(2.22, "feet"),
  58600. name: "Head",
  58601. image: {
  58602. source: "./media/characters/tarken/head.svg"
  58603. }
  58604. },
  58605. tail: {
  58606. height: math.unit(5.25, "feet"),
  58607. name: "Tail",
  58608. image: {
  58609. source: "./media/characters/tarken/tail.svg"
  58610. }
  58611. },
  58612. dick: {
  58613. height: math.unit(1.95, "feet"),
  58614. name: "Dick",
  58615. image: {
  58616. source: "./media/characters/tarken/dick.svg"
  58617. }
  58618. },
  58619. hand: {
  58620. height: math.unit(1.78, "feet"),
  58621. name: "Hand",
  58622. image: {
  58623. source: "./media/characters/tarken/hand.svg"
  58624. }
  58625. },
  58626. beam: {
  58627. height: math.unit(1.5, "feet"),
  58628. name: "Beam",
  58629. image: {
  58630. source: "./media/characters/tarken/beam.svg"
  58631. }
  58632. },
  58633. },
  58634. [
  58635. {
  58636. name: "Original Size",
  58637. height: math.unit(2.5, "meters")
  58638. },
  58639. {
  58640. name: "Macro",
  58641. height: math.unit(150, "meters"),
  58642. default: true
  58643. },
  58644. {
  58645. name: "Macro+",
  58646. height: math.unit(300, "meters")
  58647. },
  58648. {
  58649. name: "Mega",
  58650. height: math.unit(2, "km")
  58651. },
  58652. {
  58653. name: "Mega+",
  58654. height: math.unit(35, "km")
  58655. },
  58656.  {
  58657. name: "Mega++",
  58658. height: math.unit(60, "km")
  58659. },
  58660. {
  58661. name: "Giga",
  58662. height: math.unit(200, "km")
  58663. },
  58664. {
  58665. name: "Giga+",
  58666. height: math.unit(2500, "km")
  58667. },
  58668. {
  58669. name: "Giga++",
  58670. height: math.unit(6600, "km")
  58671. },
  58672. {
  58673. name: "Terra",
  58674. height: math.unit(20000, "km")
  58675. },
  58676. {
  58677. name: "Terra+",
  58678. height: math.unit(300000, "km")
  58679. },
  58680. ]
  58681. ))
  58682. characterMakers.push(() => makeCharacter(
  58683. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58684. {
  58685. magpie_dressed: {
  58686. height: math.unit(1.7, "meters"),
  58687. weight: math.unit(70, "kg"),
  58688. name: "Dressed",
  58689. image: {
  58690. source: "./media/characters/otreus/magpie-dressed.svg",
  58691. extra: 691/672,
  58692. bottom: 116/807
  58693. },
  58694. form: "magpie",
  58695. default: true
  58696. },
  58697. magpie_nude: {
  58698. height: math.unit(1.7, "meters"),
  58699. weight: math.unit(70, "kg"),
  58700. name: "Nude",
  58701. image: {
  58702. source: "./media/characters/otreus/magpie-nude.svg",
  58703. extra: 691/672,
  58704. bottom: 116/807
  58705. },
  58706. form: "magpie",
  58707. },
  58708. magpie_dressedLewd: {
  58709. height: math.unit(1.7, "meters"),
  58710. weight: math.unit(70, "kg"),
  58711. name: "Dressed (Lewd)",
  58712. image: {
  58713. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58714. extra: 691/672,
  58715. bottom: 116/807
  58716. },
  58717. form: "magpie",
  58718. },
  58719. magpie_nudeLewd: {
  58720. height: math.unit(1.7, "meters"),
  58721. weight: math.unit(70, "kg"),
  58722. name: "Nude (Lewd)",
  58723. image: {
  58724. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58725. extra: 691/672,
  58726. bottom: 116/807
  58727. },
  58728. form: "magpie",
  58729. },
  58730. magpie_leftFoot: {
  58731. height: math.unit(1.58, "feet"),
  58732. name: "Left Foot",
  58733. image: {
  58734. source: "./media/characters/otreus/magpie-left-foot.svg"
  58735. },
  58736. form: "magpie",
  58737. },
  58738. magpie_rightFoot: {
  58739. height: math.unit(1.58, "feet"),
  58740. name: "Right Foot",
  58741. image: {
  58742. source: "./media/characters/otreus/magpie-right-foot.svg"
  58743. },
  58744. form: "magpie",
  58745. },
  58746. magpie_wingspan: {
  58747. height: math.unit(2, "meters"),
  58748. weight: math.unit(70, "kg"),
  58749. name: "Wingspan",
  58750. image: {
  58751. source: "./media/characters/otreus/magpie-wingspan.svg"
  58752. },
  58753. extraAttributes: {
  58754. "wingspan": {
  58755. name: "Wingspan",
  58756. power: 1,
  58757. type: "length",
  58758. base: math.unit(3.35, "meters")
  58759. },
  58760. },
  58761. form: "magpie",
  58762. },
  58763. hippogriff_dressed: {
  58764. height: math.unit(1.7, "meters"),
  58765. weight: math.unit(70, "kg"),
  58766. name: "Dressed",
  58767. image: {
  58768. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58769. extra: 710/689,
  58770. bottom: 67/777
  58771. },
  58772. form: "hippogriff",
  58773. default: true
  58774. },
  58775. hippogriff_nude: {
  58776. height: math.unit(1.7, "meters"),
  58777. weight: math.unit(70, "kg"),
  58778. name: "Nude",
  58779. image: {
  58780. source: "./media/characters/otreus/hippogriff-nude.svg",
  58781. extra: 710/689,
  58782. bottom: 67/777
  58783. },
  58784. form: "hippogriff",
  58785. },
  58786. hippogriff_dressedLewd: {
  58787. height: math.unit(1.7, "meters"),
  58788. weight: math.unit(70, "kg"),
  58789. name: "Dressed (Lewd)",
  58790. image: {
  58791. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58792. extra: 710/689,
  58793. bottom: 67/777
  58794. },
  58795. form: "hippogriff",
  58796. },
  58797. hippogriff_nudeLewd: {
  58798. height: math.unit(1.7, "meters"),
  58799. weight: math.unit(70, "kg"),
  58800. name: "Nude (Lewd)",
  58801. image: {
  58802. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58803. extra: 710/689,
  58804. bottom: 67/777
  58805. },
  58806. form: "hippogriff",
  58807. },
  58808. },
  58809. [
  58810. {
  58811. name: "Original Size",
  58812. height: math.unit(1.7, "meters"),
  58813. allForms: true
  58814. },
  58815. {
  58816. name: "Incognito Size",
  58817. height: math.unit(2, "meters"),
  58818. allForms: true
  58819. },
  58820. {
  58821. name: "Mega",
  58822. height: math.unit(2, "km"),
  58823. allForms: true
  58824. },
  58825. {
  58826. name: "Mega+",
  58827. height: math.unit(40, "km"),
  58828. allForms: true
  58829. },
  58830. {
  58831. name: "Giga",
  58832. height: math.unit(250, "km"),
  58833. allForms: true
  58834. },
  58835. {
  58836. name: "Giga+",
  58837. height: math.unit(3000, "km"),
  58838. allForms: true
  58839. },
  58840. {
  58841. name: "Terra",
  58842. height: math.unit(20000, "km"),
  58843. allForms: true
  58844. },
  58845. {
  58846. name: "Solar (Home Size)",
  58847. height: math.unit(3e6, "km"),
  58848. allForms: true,
  58849. default: true
  58850. },
  58851. ],
  58852. {
  58853. "magpie": {
  58854. name: "Magpie",
  58855. default: true
  58856. },
  58857. "hippogriff": {
  58858. name: "Hippogriff",
  58859. },
  58860. }
  58861. ))
  58862. characterMakers.push(() => makeCharacter(
  58863. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58864. {
  58865. frontDressed: {
  58866. height: math.unit(1.8, "meters"),
  58867. weight: math.unit(90, "kg"),
  58868. name: "Front (Dressed)",
  58869. image: {
  58870. source: "./media/characters/thalia/front-dressed.svg",
  58871. extra: 478/402,
  58872. bottom: 55/533
  58873. }
  58874. },
  58875. backDressed: {
  58876. height: math.unit(1.8, "meters"),
  58877. weight: math.unit(90, "kg"),
  58878. name: "Back (Dressed)",
  58879. image: {
  58880. source: "./media/characters/thalia/back-dressed.svg",
  58881. extra: 500/424,
  58882. bottom: 15/515
  58883. }
  58884. },
  58885. frontNude: {
  58886. height: math.unit(1.8, "meters"),
  58887. weight: math.unit(90, "kg"),
  58888. name: "Front (Nude)",
  58889. image: {
  58890. source: "./media/characters/thalia/front-nude.svg",
  58891. extra: 478/402,
  58892. bottom: 55/533
  58893. }
  58894. },
  58895. backNude: {
  58896. height: math.unit(1.8, "meters"),
  58897. weight: math.unit(90, "kg"),
  58898. name: "Back (Nude)",
  58899. image: {
  58900. source: "./media/characters/thalia/back-nude.svg",
  58901. extra: 500/424,
  58902. bottom: 15/515
  58903. }
  58904. },
  58905. },
  58906. [
  58907. {
  58908. name: "Incognito",
  58909. height: math.unit(3, "meters")
  58910. },
  58911. {
  58912. name: "Macro",
  58913. height: math.unit(500, "meters")
  58914. },
  58915. {
  58916. name: "Mega",
  58917. height: math.unit(5, "km")
  58918. },
  58919. {
  58920. name: "Mega+",
  58921. height: math.unit(30, "km")
  58922. },
  58923. {
  58924. name: "Giga",
  58925. height: math.unit(350, "km")
  58926. },
  58927. {
  58928. name: "Giga+",
  58929. height: math.unit(4000, "km")
  58930. },
  58931. {
  58932. name: "Terra",
  58933. height: math.unit(35000, "km")
  58934. },
  58935. {
  58936. name: "Original Size",
  58937. height: math.unit(130000, "km")
  58938. },
  58939. {
  58940. name: "Solar (Home Size)",
  58941. height: math.unit(4e6, "km"),
  58942. default: true
  58943. },
  58944. ]
  58945. ))
  58946. characterMakers.push(() => makeCharacter(
  58947. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58948. {
  58949. front: {
  58950. height: math.unit(1.8, "meters"),
  58951. weight: math.unit(95, "kg"),
  58952. name: "Front",
  58953. image: {
  58954. source: "./media/characters/shango/front.svg",
  58955. extra: 1925/1774,
  58956. bottom: 67/1992
  58957. }
  58958. },
  58959. back: {
  58960. height: math.unit(1.8, "meters"),
  58961. weight: math.unit(95, "kg"),
  58962. name: "Back",
  58963. image: {
  58964. source: "./media/characters/shango/back.svg",
  58965. extra: 1915/1766,
  58966. bottom: 52/1967
  58967. }
  58968. },
  58969. frontLewd: {
  58970. height: math.unit(1.8, "meters"),
  58971. weight: math.unit(95, "kg"),
  58972. name: "Front (Lewd)",
  58973. image: {
  58974. source: "./media/characters/shango/front-lewd.svg",
  58975. extra: 1925/1774,
  58976. bottom: 67/1992
  58977. }
  58978. },
  58979. backLewd: {
  58980. height: math.unit(1.8, "meters"),
  58981. weight: math.unit(95, "kg"),
  58982. name: "Back (Lewd)",
  58983. image: {
  58984. source: "./media/characters/shango/back-lewd.svg",
  58985. extra: 1915/1766,
  58986. bottom: 52/1967
  58987. }
  58988. },
  58989. maw: {
  58990. height: math.unit(1.64, "feet"),
  58991. name: "Maw",
  58992. image: {
  58993. source: "./media/characters/shango/maw.svg"
  58994. }
  58995. },
  58996. dick: {
  58997. height: math.unit(2.14, "feet"),
  58998. name: "Dick",
  58999. image: {
  59000. source: "./media/characters/shango/dick.svg"
  59001. }
  59002. },
  59003. },
  59004. [
  59005. {
  59006. name: "Incognito",
  59007. height: math.unit(1.8, "meters")
  59008. },
  59009. {
  59010. name: "Home Size",
  59011. height: math.unit(60, "meters"),
  59012. default: true
  59013. },
  59014. {
  59015. name: "Macro",
  59016. height: math.unit(450, "meters")
  59017. },
  59018. {
  59019. name: "Mega",
  59020. height: math.unit(6, "km")
  59021. },
  59022. {
  59023. name: "Mega+",
  59024. height: math.unit(35, "km")
  59025. },
  59026. {
  59027. name: "Giga",
  59028. height: math.unit(500, "km")
  59029. },
  59030. {
  59031. name: "Giga+",
  59032. height: math.unit(5000, "km")
  59033. },
  59034. {
  59035. name: "Terra",
  59036. height: math.unit(60000, "km")
  59037. },
  59038. {
  59039. name: "Terra+",
  59040. height: math.unit(400000, "km")
  59041. },
  59042. ]
  59043. ))
  59044. characterMakers.push(() => makeCharacter(
  59045. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59046. {
  59047. front: {
  59048. height: math.unit(2, "meters"),
  59049. weight: math.unit(95, "kg"),
  59050. name: "Front",
  59051. image: {
  59052. source: "./media/characters/osiris-gryphon/front.svg",
  59053. extra: 1508/1313,
  59054. bottom: 87/1595
  59055. }
  59056. },
  59057. back: {
  59058. height: math.unit(2, "meters"),
  59059. weight: math.unit(95, "kg"),
  59060. name: "Back",
  59061. image: {
  59062. source: "./media/characters/osiris-gryphon/back.svg",
  59063. extra: 1436/1309,
  59064. bottom: 64/1500
  59065. }
  59066. },
  59067. frontLewd: {
  59068. height: math.unit(2, "meters"),
  59069. weight: math.unit(95, "kg"),
  59070. name: "Front-lewd",
  59071. image: {
  59072. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59073. extra: 1508/1313,
  59074. bottom: 87/1595
  59075. }
  59076. },
  59077. wing: {
  59078. height: math.unit(6.3333, "feet"),
  59079. name: "Wing",
  59080. image: {
  59081. source: "./media/characters/osiris-gryphon/wing.svg"
  59082. }
  59083. },
  59084. },
  59085. [
  59086. {
  59087. name: "Incognito",
  59088. height: math.unit(2, "meters")
  59089. },
  59090. {
  59091. name: "Home Size",
  59092. height: math.unit(30, "meters"),
  59093. default: true
  59094. },
  59095. {
  59096. name: "Macro",
  59097. height: math.unit(100, "meters")
  59098. },
  59099. {
  59100. name: "Macro+",
  59101. height: math.unit(350, "meters")
  59102. },
  59103. {
  59104. name: "Mega",
  59105. height: math.unit(40, "km")
  59106. },
  59107. {
  59108. name: "Giga",
  59109. height: math.unit(300, "km")
  59110. },
  59111. {
  59112. name: "Giga+",
  59113. height: math.unit(2000, "km")
  59114. },
  59115. {
  59116. name: "Terra",
  59117. height: math.unit(30000, "km")
  59118. },
  59119. ]
  59120. ))
  59121. characterMakers.push(() => makeCharacter(
  59122. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59123. {
  59124. front: {
  59125. height: math.unit(2.5, "meters"),
  59126. weight: math.unit(200, "kg"),
  59127. name: "Front",
  59128. image: {
  59129. source: "./media/characters/atlas-dragon/front.svg",
  59130. extra: 745/462,
  59131. bottom: 36/781
  59132. }
  59133. },
  59134. back: {
  59135. height: math.unit(2.5, "meters"),
  59136. weight: math.unit(200, "kg"),
  59137. name: "Back",
  59138. image: {
  59139. source: "./media/characters/atlas-dragon/back.svg",
  59140. extra: 848/822,
  59141. bottom: 57/905
  59142. }
  59143. },
  59144. frontLewd: {
  59145. height: math.unit(2.5, "meters"),
  59146. weight: math.unit(200, "kg"),
  59147. name: "Front (Lewd)",
  59148. image: {
  59149. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59150. extra: 745/462,
  59151. bottom: 36/781
  59152. }
  59153. },
  59154. backLewd: {
  59155. height: math.unit(2.5, "meters"),
  59156. weight: math.unit(200, "kg"),
  59157. name: "Back (Lewd)",
  59158. image: {
  59159. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59160. extra: 848/822,
  59161. bottom: 57/905
  59162. }
  59163. },
  59164. },
  59165. [
  59166. {
  59167. name: "Incognito",
  59168. height: math.unit(2.5, "meters")
  59169. },
  59170. {
  59171. name: "Small Macro",
  59172. height: math.unit(50, "meters")
  59173. },
  59174. {
  59175. name: "Macro",
  59176. height: math.unit(350, "meters")
  59177. },
  59178. {
  59179. name: "Mega",
  59180. height: math.unit(5.5, "kilometers")
  59181. },
  59182. {
  59183. name: "Mega+",
  59184. height: math.unit(50, "km")
  59185. },
  59186. {
  59187. name: "Giga",
  59188. height: math.unit(350, "km")
  59189. },
  59190. {
  59191. name: "Giga+",
  59192. height: math.unit(2000, "km")
  59193. },
  59194. {
  59195. name: "Giga++",
  59196. height: math.unit(6500, "km")
  59197. },
  59198. {
  59199. name: "Terra",
  59200. height: math.unit(30000, "km")
  59201. },
  59202. {
  59203. name: "Terra+",
  59204. height: math.unit(250000, "km")
  59205. },
  59206. {
  59207. name: "True Size",
  59208. height: math.unit(100, "multiverses"),
  59209. default: true
  59210. },
  59211. ]
  59212. ))
  59213. characterMakers.push(() => makeCharacter(
  59214. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59215. {
  59216. front: {
  59217. height: math.unit(1.8, "m"),
  59218. weight: math.unit(120, "kg"),
  59219. name: "Front",
  59220. image: {
  59221. source: "./media/characters/chey/front.svg",
  59222. extra: 1359/1270,
  59223. bottom: 18/1377
  59224. }
  59225. },
  59226. arm: {
  59227. height: math.unit(2.05, "feet"),
  59228. name: "Arm",
  59229. image: {
  59230. source: "./media/characters/chey/arm.svg"
  59231. }
  59232. },
  59233. head: {
  59234. height: math.unit(1.89, "feet"),
  59235. name: "Head",
  59236. image: {
  59237. source: "./media/characters/chey/head.svg"
  59238. }
  59239. },
  59240. },
  59241. [
  59242. {
  59243. name: "Original Size",
  59244. height: math.unit(5, "cm")
  59245. },
  59246. {
  59247. name: "Incognito Size",
  59248. height: math.unit(2.4, "m")
  59249. },
  59250. {
  59251. name: "Home Size",
  59252. height: math.unit(200, "meters"),
  59253. default: true
  59254. },
  59255. {
  59256. name: "Mega",
  59257. height: math.unit(2, "km")
  59258. },
  59259. {
  59260. name: "Giga (Preferred Size)",
  59261. height: math.unit(2000, "km")
  59262. },
  59263. {
  59264. name: "Giga+",
  59265. height: math.unit(6000, "km")
  59266. },
  59267. {
  59268. name: "Terra",
  59269. height: math.unit(17000, "km")
  59270. },
  59271. {
  59272. name: "Terra+",
  59273. height: math.unit(75000, "km")
  59274. },
  59275. {
  59276. name: "Terra++",
  59277. height: math.unit(225000, "km")
  59278. },
  59279. ]
  59280. ))
  59281. characterMakers.push(() => makeCharacter(
  59282. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59283. {
  59284. side: {
  59285. height: math.unit(7.8, "meters"),
  59286. name: "Side",
  59287. image: {
  59288. source: "./media/characters/ragnarok/side.svg",
  59289. extra: 725/621,
  59290. bottom: 72/797
  59291. }
  59292. },
  59293. },
  59294. [
  59295. {
  59296. name: "Normal",
  59297. height: math.unit(7.8, "meters"),
  59298. default: true
  59299. },
  59300. ]
  59301. ))
  59302. characterMakers.push(() => makeCharacter(
  59303. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59304. {
  59305. hyena_front: {
  59306. height: math.unit(2.1, "meters"),
  59307. weight: math.unit(110, "kg"),
  59308. name: "Front",
  59309. image: {
  59310. source: "./media/characters/nima/hyena-front.svg",
  59311. extra: 1904/1796,
  59312. bottom: 67/1971
  59313. },
  59314. form: "hyena",
  59315. },
  59316. hyena_back: {
  59317. height: math.unit(2.1, "meters"),
  59318. weight: math.unit(110, "kg"),
  59319. name: "Back",
  59320. image: {
  59321. source: "./media/characters/nima/hyena-back.svg",
  59322. extra: 1964/1884,
  59323. bottom: 35/1999
  59324. },
  59325. form: "hyena",
  59326. },
  59327. shark_front: {
  59328. height: math.unit(1.95, "meters"),
  59329. weight: math.unit(110, "kg"),
  59330. name: "Front",
  59331. image: {
  59332. source: "./media/characters/nima/shark-front.svg",
  59333. extra: 2238/2013,
  59334. bottom: 0/223
  59335. },
  59336. form: "shark",
  59337. },
  59338. paw: {
  59339. height: math.unit(1, "feet"),
  59340. name: "Paw",
  59341. image: {
  59342. source: "./media/characters/nima/paw.svg"
  59343. }
  59344. },
  59345. circlet: {
  59346. height: math.unit(0.3, "feet"),
  59347. name: "Circlet",
  59348. image: {
  59349. source: "./media/characters/nima/circlet.svg"
  59350. }
  59351. },
  59352. necklace: {
  59353. height: math.unit(1.2, "feet"),
  59354. name: "Necklace",
  59355. image: {
  59356. source: "./media/characters/nima/necklace.svg"
  59357. }
  59358. },
  59359. bracelet: {
  59360. height: math.unit(0.51, "feet"),
  59361. name: "Bracelet",
  59362. image: {
  59363. source: "./media/characters/nima/bracelet.svg"
  59364. }
  59365. },
  59366. armband: {
  59367. height: math.unit(1.3, "feet"),
  59368. name: "Armband",
  59369. image: {
  59370. source: "./media/characters/nima/armband.svg"
  59371. }
  59372. },
  59373. },
  59374. [
  59375. {
  59376. name: "Incognito",
  59377. height: math.unit(2.1, "meters"),
  59378. allForms: true
  59379. },
  59380. {
  59381. name: "Small Macro",
  59382. height: math.unit(50, "meters"),
  59383. allForms: true
  59384. },
  59385. {
  59386. name: "Macro",
  59387. height: math.unit(200, "meters"),
  59388. allForms: true
  59389. },
  59390. {
  59391. name: "Mega",
  59392. height: math.unit(2.5, "km"),
  59393. allForms: true
  59394. },
  59395. {
  59396. name: "Mega+",
  59397. height: math.unit(30, "km"),
  59398. allForms: true
  59399. },
  59400. {
  59401. name: "Giga (Home Size)",
  59402. height: math.unit(400, "km"),
  59403. allForms: true,
  59404. default: true
  59405. },
  59406. {
  59407. name: "Giga+",
  59408. height: math.unit(2500, "km"),
  59409. allForms: true
  59410. },
  59411. {
  59412. name: "Giga++",
  59413. height: math.unit(8000, "km"),
  59414. allForms: true
  59415. },
  59416. {
  59417. name: "Terra",
  59418. height: math.unit(20000, "km"),
  59419. allForms: true
  59420. },
  59421. {
  59422. name: "Terra+",
  59423. height: math.unit(70000, "km"),
  59424. allForms: true
  59425. },
  59426. {
  59427. name: "Terra++",
  59428. height: math.unit(600000, "km"),
  59429. allForms: true
  59430. },
  59431. {
  59432. name: "Galactic",
  59433. height: math.unit(40, "galaxies"),
  59434. allForms: true
  59435. },
  59436. {
  59437. name: "Universal",
  59438. height: math.unit(40, "universes"),
  59439. allForms: true
  59440. },
  59441. ],
  59442. {
  59443. "hyena": {
  59444. name: "Hyena",
  59445. default: true
  59446. },
  59447. "shark": {
  59448. name: "Shark",
  59449. },
  59450. }
  59451. ))
  59452. characterMakers.push(() => makeCharacter(
  59453. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59454. {
  59455. anthro_front: {
  59456. height: math.unit(1.5, "meters"),
  59457. name: "Front",
  59458. image: {
  59459. source: "./media/characters/adelaide/anthro-front.svg",
  59460. extra: 860/783,
  59461. bottom: 60/920
  59462. },
  59463. form: "anthro",
  59464. default: true
  59465. },
  59466. hand: {
  59467. height: math.unit(0.65, "feet"),
  59468. name: "Hand",
  59469. image: {
  59470. source: "./media/characters/adelaide/hand.svg"
  59471. },
  59472. form: "anthro"
  59473. },
  59474. foot: {
  59475. height: math.unit(1.38 * 259 / 314, "feet"),
  59476. name: "Foot",
  59477. image: {
  59478. source: "./media/characters/adelaide/foot.svg",
  59479. extra: 259/259,
  59480. bottom: 55/314
  59481. },
  59482. form: "anthro"
  59483. },
  59484. feather: {
  59485. height: math.unit(0.85, "feet"),
  59486. name: "Feather",
  59487. image: {
  59488. source: "./media/characters/adelaide/feather.svg"
  59489. },
  59490. form: "anthro"
  59491. },
  59492. feral_side: {
  59493. height: math.unit(1, "meters"),
  59494. name: "Side",
  59495. image: {
  59496. source: "./media/characters/adelaide/feral-side.svg",
  59497. extra: 550/467,
  59498. bottom: 37/587
  59499. },
  59500. form: "feral",
  59501. default: true
  59502. },
  59503. feral_hand: {
  59504. height: math.unit(0.58, "feet"),
  59505. name: "Hand",
  59506. image: {
  59507. source: "./media/characters/adelaide/hand.svg"
  59508. },
  59509. form: "feral"
  59510. },
  59511. feral_foot: {
  59512. height: math.unit(1.2 * 259 / 314, "feet"),
  59513. name: "Foot",
  59514. image: {
  59515. source: "./media/characters/adelaide/foot.svg",
  59516. extra: 259/259,
  59517. bottom: 55/314
  59518. },
  59519. form: "feral"
  59520. },
  59521. feral_feather: {
  59522. height: math.unit(0.63, "feet"),
  59523. name: "Feather",
  59524. image: {
  59525. source: "./media/characters/adelaide/feather.svg"
  59526. },
  59527. form: "feral"
  59528. },
  59529. },
  59530. [
  59531. {
  59532. name: "Normal",
  59533. height: math.unit(1.5, "meters"),
  59534. form: "anthro",
  59535. default: true
  59536. },
  59537. {
  59538. name: "Normal",
  59539. height: math.unit(1, "meters"),
  59540. form: "feral",
  59541. default: true
  59542. },
  59543. ],
  59544. {
  59545. "anthro": {
  59546. name: "Anthro",
  59547. default: true
  59548. },
  59549. "feral": {
  59550. name: "Feral",
  59551. },
  59552. }
  59553. ))
  59554. characterMakers.push(() => makeCharacter(
  59555. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59556. {
  59557. front: {
  59558. height: math.unit(2.5, "meters"),
  59559. name: "Front",
  59560. image: {
  59561. source: "./media/characters/goa/front.svg",
  59562. extra: 1109/1013,
  59563. bottom: 150/1259
  59564. }
  59565. },
  59566. },
  59567. [
  59568. {
  59569. name: "Normal",
  59570. height: math.unit(2.5, "meters"),
  59571. default: true
  59572. },
  59573. ]
  59574. ))
  59575. characterMakers.push(() => makeCharacter(
  59576. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59577. {
  59578. front: {
  59579. height: math.unit(2, "meters"),
  59580. weight: math.unit(100, "kg"),
  59581. name: "Front",
  59582. image: {
  59583. source: "./media/characters/kiki-weavile/front.svg",
  59584. extra: 357/332,
  59585. bottom: 60/417
  59586. }
  59587. },
  59588. },
  59589. [
  59590. {
  59591. name: "Normal",
  59592. height: math.unit(2, "meters"),
  59593. default: true
  59594. },
  59595. ]
  59596. ))
  59597. characterMakers.push(() => makeCharacter(
  59598. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59599. {
  59600. side: {
  59601. height: math.unit(1.6, "meters"),
  59602. name: "Side",
  59603. image: {
  59604. source: "./media/characters/liza/side.svg",
  59605. extra: 943/915,
  59606. bottom: 72/1015
  59607. }
  59608. },
  59609. },
  59610. [
  59611. {
  59612. name: "Normal",
  59613. height: math.unit(1.6, "meters"),
  59614. default: true
  59615. },
  59616. ]
  59617. ))
  59618. characterMakers.push(() => makeCharacter(
  59619. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59620. {
  59621. side: {
  59622. height: math.unit(2.5, "meters"),
  59623. preyCapacity: math.unit(1, "people"),
  59624. name: "Side",
  59625. image: {
  59626. source: "./media/characters/persephone-sweetbreath/side.svg",
  59627. extra: 796/700,
  59628. bottom: 44/840
  59629. }
  59630. },
  59631. sideVore: {
  59632. height: math.unit(2.5, "meters"),
  59633. preyCapacity: math.unit(1, "people"),
  59634. name: "Side (Full)",
  59635. image: {
  59636. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59637. extra: 796/700,
  59638. bottom: 44/840
  59639. }
  59640. },
  59641. },
  59642. [
  59643. {
  59644. name: "Normal",
  59645. height: math.unit(2.5, "meters"),
  59646. default: true
  59647. },
  59648. ]
  59649. ))
  59650. characterMakers.push(() => makeCharacter(
  59651. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59652. {
  59653. front: {
  59654. height: math.unit(32, "meters"),
  59655. name: "Front",
  59656. image: {
  59657. source: "./media/characters/pierce/front.svg",
  59658. extra: 1695/1475,
  59659. bottom: 185/1880
  59660. }
  59661. },
  59662. side: {
  59663. height: math.unit(32, "meters"),
  59664. name: "Side",
  59665. image: {
  59666. source: "./media/characters/pierce/side.svg",
  59667. extra: 974/859,
  59668. bottom: 43/1017
  59669. }
  59670. },
  59671. frontWingless: {
  59672. height: math.unit(32, "meters"),
  59673. name: "Front (Wingless)",
  59674. image: {
  59675. source: "./media/characters/pierce/front-wingless.svg",
  59676. extra: 1695/1475,
  59677. bottom: 185/1880
  59678. }
  59679. },
  59680. sideWingless: {
  59681. height: math.unit(32, "meters"),
  59682. name: "Side (Wingless)",
  59683. image: {
  59684. source: "./media/characters/pierce/side-wingless.svg",
  59685. extra: 974/859,
  59686. bottom: 43/1017
  59687. }
  59688. },
  59689. maw: {
  59690. height: math.unit(19.3, "meters"),
  59691. name: "Maw",
  59692. image: {
  59693. source: "./media/characters/pierce/maw.svg"
  59694. }
  59695. },
  59696. },
  59697. [
  59698. {
  59699. name: "Small",
  59700. height: math.unit(8.5, "meters")
  59701. },
  59702. {
  59703. name: "Normal",
  59704. height: math.unit(32, "meters"),
  59705. default: true
  59706. },
  59707. ]
  59708. ))
  59709. characterMakers.push(() => makeCharacter(
  59710. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59711. {
  59712. front: {
  59713. height: math.unit(2.3, "meters"),
  59714. weight: math.unit(165, "kg"),
  59715. name: "Front",
  59716. image: {
  59717. source: "./media/characters/shira/front.svg",
  59718. extra: 924/919,
  59719. bottom: 17/941
  59720. },
  59721. form: "cobra",
  59722. default: true
  59723. },
  59724. back: {
  59725. height: math.unit(2.3, "meters"),
  59726. weight: math.unit(165, "kg"),
  59727. name: "Back",
  59728. image: {
  59729. source: "./media/characters/shira/back.svg",
  59730. extra: 928/922,
  59731. bottom: 18/946
  59732. },
  59733. form: "cobra"
  59734. },
  59735. frontLewd: {
  59736. height: math.unit(2.3, "meters"),
  59737. weight: math.unit(165, "kg"),
  59738. name: "Front (Lewd)",
  59739. image: {
  59740. source: "./media/characters/shira/front-lewd.svg",
  59741. extra: 924/919,
  59742. bottom: 17/941
  59743. },
  59744. form: "cobra"
  59745. },
  59746. backLewd: {
  59747. height: math.unit(2.3, "meters"),
  59748. weight: math.unit(165, "kg"),
  59749. name: "Back (Lewd)",
  59750. image: {
  59751. source: "./media/characters/shira/back-lewd.svg",
  59752. extra: 928/922,
  59753. bottom: 18/946
  59754. },
  59755. form: "cobra"
  59756. },
  59757. maw: {
  59758. height: math.unit(1.14, "feet"),
  59759. name: "Maw",
  59760. image: {
  59761. source: "./media/characters/shira/maw.svg"
  59762. },
  59763. form: "cobra"
  59764. },
  59765. magma_front: {
  59766. height: math.unit(2.3, "meters"),
  59767. weight: math.unit(165, "kg"),
  59768. name: "Front",
  59769. image: {
  59770. source: "./media/characters/shira/magma-front.svg",
  59771. extra: 1870/1693,
  59772. bottom: 24/1894
  59773. },
  59774. form: "magma",
  59775. },
  59776. magma_back: {
  59777. height: math.unit(2.3, "meters"),
  59778. weight: math.unit(165, "kg"),
  59779. name: "Back",
  59780. image: {
  59781. source: "./media/characters/shira/magma-back.svg",
  59782. extra: 1918/1756,
  59783. bottom: 46/1964
  59784. },
  59785. form: "magma",
  59786. },
  59787. },
  59788. [
  59789. {
  59790. name: "Incognito",
  59791. height: math.unit(2.3, "meters"),
  59792. allForms: true
  59793. },
  59794. {
  59795. name: "Home Size",
  59796. height: math.unit(150, "meters"),
  59797. default: true,
  59798. allForms: true
  59799. },
  59800. {
  59801. name: "Macro",
  59802. height: math.unit(2, "km"),
  59803. allForms: true
  59804. },
  59805. {
  59806. name: "Mega",
  59807. height: math.unit(30, "km"),
  59808. allForms: true
  59809. },
  59810. {
  59811. name: "Giga",
  59812. height: math.unit(450, "km"),
  59813. allForms: true
  59814. },
  59815. {
  59816. name: "Giga+",
  59817. height: math.unit(3000, "km"),
  59818. allForms: true
  59819. },
  59820. {
  59821. name: "Giga++",
  59822. height: math.unit(6000, "km"),
  59823. allForms: true
  59824. },
  59825. {
  59826. name: "Terra",
  59827. height: math.unit(80000, "km"),
  59828. allForms: true
  59829. },
  59830. {
  59831. name: "Terra+",
  59832. height: math.unit(350000, "km"),
  59833. allForms: true
  59834. },
  59835. {
  59836. name: "Solar",
  59837. height: math.unit(1e6, "km"),
  59838. allForms: true
  59839. },
  59840. ],
  59841. {
  59842. "cobra": {
  59843. name: "Cobra",
  59844. default: true
  59845. },
  59846. "magma": {
  59847. name: "Magma Dragon",
  59848. },
  59849. }
  59850. ))
  59851. characterMakers.push(() => makeCharacter(
  59852. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59853. {
  59854. front: {
  59855. height: math.unit(2, "meters"),
  59856. weight: math.unit(160, "kg"),
  59857. name: "Front",
  59858. image: {
  59859. source: "./media/characters/daxerios/front.svg",
  59860. extra: 1334/1277,
  59861. bottom: 45/1379
  59862. }
  59863. },
  59864. frontLewd: {
  59865. height: math.unit(2, "meters"),
  59866. weight: math.unit(160, "kg"),
  59867. name: "Front (Lewd)",
  59868. image: {
  59869. source: "./media/characters/daxerios/front-lewd.svg",
  59870. extra: 1334/1277,
  59871. bottom: 45/1379
  59872. }
  59873. },
  59874. dick: {
  59875. height: math.unit(2.35, "feet"),
  59876. name: "Dick",
  59877. image: {
  59878. source: "./media/characters/daxerios/dick.svg"
  59879. }
  59880. },
  59881. },
  59882. [
  59883. {
  59884. name: "\"Small\"",
  59885. height: math.unit(5, "meters")
  59886. },
  59887. {
  59888. name: "Original Size",
  59889. height: math.unit(500, "meters"),
  59890. default: true
  59891. },
  59892. {
  59893. name: "Mega",
  59894. height: math.unit(2, "km")
  59895. },
  59896. {
  59897. name: "Mega+",
  59898. height: math.unit(35, "km")
  59899. },
  59900. {
  59901. name: "Giga",
  59902. height: math.unit(250, "km")
  59903. },
  59904. {
  59905. name: "Giga+",
  59906. height: math.unit(3000, "km")
  59907. },
  59908. {
  59909. name: "Terra",
  59910. height: math.unit(25000, "km")
  59911. },
  59912. {
  59913. name: "Terra+",
  59914. height: math.unit(300000, "km")
  59915. },
  59916. {
  59917. name: "Solar",
  59918. height: math.unit(1e6, "km")
  59919. },
  59920. ]
  59921. ))
  59922. characterMakers.push(() => makeCharacter(
  59923. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59924. {
  59925. front: {
  59926. height: math.unit(8 + 4/12, "feet"),
  59927. weight: math.unit(464, "lb"),
  59928. name: "Front",
  59929. image: {
  59930. source: "./media/characters/caveat/front.svg",
  59931. extra: 1861/1678,
  59932. bottom: 40/1901
  59933. }
  59934. },
  59935. },
  59936. [
  59937. {
  59938. name: "Normal",
  59939. height: math.unit(8 + 4/12, "feet"),
  59940. default: true
  59941. },
  59942. ]
  59943. ))
  59944. characterMakers.push(() => makeCharacter(
  59945. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59946. {
  59947. front: {
  59948. height: math.unit(12, "feet"),
  59949. weight: math.unit(1800, "lb"),
  59950. name: "Front",
  59951. image: {
  59952. source: "./media/characters/centbair/front.svg",
  59953. extra: 781/663,
  59954. bottom: 25/806
  59955. }
  59956. },
  59957. frontNsfw: {
  59958. height: math.unit(12, "feet"),
  59959. weight: math.unit(1800, "lb"),
  59960. name: "Front (NSFW)",
  59961. image: {
  59962. source: "./media/characters/centbair/front-nsfw.svg",
  59963. extra: 781/663,
  59964. bottom: 25/806
  59965. }
  59966. },
  59967. back: {
  59968. height: math.unit(12, "feet"),
  59969. weight: math.unit(1800, "lb"),
  59970. name: "Back",
  59971. image: {
  59972. source: "./media/characters/centbair/back.svg",
  59973. extra: 808/761,
  59974. bottom: 19/827
  59975. }
  59976. },
  59977. dick: {
  59978. height: math.unit(6.5, "feet"),
  59979. name: "Dick",
  59980. image: {
  59981. source: "./media/characters/centbair/dick.svg"
  59982. }
  59983. },
  59984. slit: {
  59985. height: math.unit(3.25, "feet"),
  59986. name: "Slit",
  59987. image: {
  59988. source: "./media/characters/centbair/slit.svg"
  59989. }
  59990. },
  59991. },
  59992. [
  59993. {
  59994. name: "Normal",
  59995. height: math.unit(12, "feet"),
  59996. default: true
  59997. },
  59998. ]
  59999. ))
  60000. characterMakers.push(() => makeCharacter(
  60001. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60002. {
  60003. front: {
  60004. height: math.unit(5 + 7/12, "feet"),
  60005. name: "Front",
  60006. image: {
  60007. source: "./media/characters/andy/front.svg",
  60008. extra: 634/588,
  60009. bottom: 36/670
  60010. },
  60011. extraAttributes: {
  60012. "pawLength": {
  60013. name: "Paw Length",
  60014. power: 1,
  60015. type: "length",
  60016. base: math.unit(1, "feet")
  60017. },
  60018. }
  60019. },
  60020. side: {
  60021. height: math.unit(5 + 7/12, "feet"),
  60022. name: "Side",
  60023. image: {
  60024. source: "./media/characters/andy/side.svg",
  60025. extra: 641/596,
  60026. bottom: 34/675
  60027. },
  60028. extraAttributes: {
  60029. "pawLength": {
  60030. name: "Paw Length",
  60031. power: 1,
  60032. type: "length",
  60033. base: math.unit(1, "feet")
  60034. },
  60035. }
  60036. },
  60037. back: {
  60038. height: math.unit(5 + 7/12, "feet"),
  60039. name: "Back",
  60040. image: {
  60041. source: "./media/characters/andy/back.svg",
  60042. extra: 618/583,
  60043. bottom: 39/657
  60044. },
  60045. extraAttributes: {
  60046. "pawLength": {
  60047. name: "Paw Length",
  60048. power: 1,
  60049. type: "length",
  60050. base: math.unit(1, "feet")
  60051. },
  60052. }
  60053. },
  60054. paw: {
  60055. height: math.unit(1.13, "feet"),
  60056. name: "Paw",
  60057. image: {
  60058. source: "./media/characters/andy/paw.svg"
  60059. }
  60060. },
  60061. },
  60062. [
  60063. {
  60064. name: "Micro",
  60065. height: math.unit(4, "inches")
  60066. },
  60067. {
  60068. name: "Normal",
  60069. height: math.unit(5 + 7/12, "feet"),
  60070. default: true
  60071. },
  60072. {
  60073. name: "Macro",
  60074. height: math.unit(390.42, "feet")
  60075. },
  60076. ]
  60077. ))
  60078. characterMakers.push(() => makeCharacter(
  60079. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60080. {
  60081. front: {
  60082. height: math.unit(7, "feet"),
  60083. weight: math.unit(250, "lb"),
  60084. name: "Front",
  60085. image: {
  60086. source: "./media/characters/vix-titan/front.svg",
  60087. extra: 460/428,
  60088. bottom: 15/475
  60089. },
  60090. extraAttributes: {
  60091. "pawWidth": {
  60092. name: "Paw Width",
  60093. power: 1,
  60094. type: "length",
  60095. base: math.unit(0.75, "feet")
  60096. },
  60097. }
  60098. },
  60099. },
  60100. [
  60101. {
  60102. name: "Normal",
  60103. height: math.unit(7, "feet"),
  60104. default: true
  60105. },
  60106. {
  60107. name: "Giant",
  60108. height: math.unit(1500, "feet")
  60109. },
  60110. {
  60111. name: "Mega",
  60112. height: math.unit(10, "miles")
  60113. },
  60114. {
  60115. name: "Giga",
  60116. height: math.unit(150, "miles")
  60117. },
  60118. {
  60119. name: "Tera",
  60120. height: math.unit(144000, "miles")
  60121. },
  60122. ]
  60123. ))
  60124. characterMakers.push(() => makeCharacter(
  60125. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60126. {
  60127. front: {
  60128. height: math.unit(6 + 2/12, "feet"),
  60129. name: "Front",
  60130. image: {
  60131. source: "./media/characters/reiku/front.svg",
  60132. extra: 1910/1757,
  60133. bottom: 103/2013
  60134. },
  60135. extraAttributes: {
  60136. "thighThickness": {
  60137. name: "Thigh Thickness",
  60138. power: 1,
  60139. type: "length",
  60140. base: math.unit(1.12, "feet")
  60141. },
  60142. "assThickness": {
  60143. name: "Ass Thickness",
  60144. power: 1,
  60145. type: "length",
  60146. base: math.unit(1.12*2, "feet")
  60147. },
  60148. }
  60149. },
  60150. side: {
  60151. height: math.unit(6 + 2/12, "feet"),
  60152. name: "Side",
  60153. image: {
  60154. source: "./media/characters/reiku/side.svg",
  60155. extra: 1846/1748,
  60156. bottom: 99/1945
  60157. },
  60158. extraAttributes: {
  60159. "thighThickness": {
  60160. name: "Thigh Thickness",
  60161. power: 1,
  60162. type: "length",
  60163. base: math.unit(1.12, "feet")
  60164. },
  60165. "assThickness": {
  60166. name: "Ass Thickness",
  60167. power: 1,
  60168. type: "length",
  60169. base: math.unit(1.12*2, "feet")
  60170. },
  60171. }
  60172. },
  60173. back: {
  60174. height: math.unit(6 + 2/12, "feet"),
  60175. name: "Back",
  60176. image: {
  60177. source: "./media/characters/reiku/back.svg",
  60178. extra: 1941/1786,
  60179. bottom: 34/1975
  60180. },
  60181. extraAttributes: {
  60182. "thighThickness": {
  60183. name: "Thigh Thickness",
  60184. power: 1,
  60185. type: "length",
  60186. base: math.unit(1.12, "feet")
  60187. },
  60188. "assThickness": {
  60189. name: "Ass Thickness",
  60190. power: 1,
  60191. type: "length",
  60192. base: math.unit(1.12*2, "feet")
  60193. },
  60194. }
  60195. },
  60196. head: {
  60197. height: math.unit(1.8, "feet"),
  60198. name: "Head",
  60199. image: {
  60200. source: "./media/characters/reiku/head.svg"
  60201. }
  60202. },
  60203. tailTop: {
  60204. height: math.unit(8.4, "feet"),
  60205. name: "Tail (Top)",
  60206. image: {
  60207. source: "./media/characters/reiku/tail-top.svg"
  60208. }
  60209. },
  60210. tailBottom: {
  60211. height: math.unit(8.4, "feet"),
  60212. name: "Tail (Bottom)",
  60213. image: {
  60214. source: "./media/characters/reiku/tail-bottom.svg"
  60215. }
  60216. },
  60217. foot: {
  60218. height: math.unit(2.6, "feet"),
  60219. name: "Foot",
  60220. image: {
  60221. source: "./media/characters/reiku/foot.svg"
  60222. }
  60223. },
  60224. footCurled: {
  60225. height: math.unit(2.3, "feet"),
  60226. name: "Foot (Curled)",
  60227. image: {
  60228. source: "./media/characters/reiku/foot-curled.svg"
  60229. }
  60230. },
  60231. footSide: {
  60232. height: math.unit(1.26, "feet"),
  60233. name: "Foot (Side)",
  60234. image: {
  60235. source: "./media/characters/reiku/foot-side.svg"
  60236. }
  60237. },
  60238. },
  60239. [
  60240. {
  60241. name: "Normal",
  60242. height: math.unit(6 + 2/12, "feet"),
  60243. default: true
  60244. },
  60245. ]
  60246. ))
  60247. characterMakers.push(() => makeCharacter(
  60248. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60249. {
  60250. front: {
  60251. height: math.unit(7, "feet"),
  60252. weight: math.unit(500, "kg"),
  60253. name: "Front",
  60254. image: {
  60255. source: "./media/characters/cialda/front.svg",
  60256. extra: 912/745,
  60257. bottom: 55/967
  60258. }
  60259. },
  60260. },
  60261. [
  60262. {
  60263. name: "Normal",
  60264. height: math.unit(7, "feet"),
  60265. default: true
  60266. },
  60267. ]
  60268. ))
  60269. characterMakers.push(() => makeCharacter(
  60270. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60271. {
  60272. side: {
  60273. height: math.unit(6, "feet"),
  60274. weight: math.unit(600, "lb"),
  60275. preyCapacity: math.unit(25, "liters"),
  60276. name: "Side",
  60277. image: {
  60278. source: "./media/characters/darkkin/side.svg",
  60279. extra: 1597/1447,
  60280. bottom: 101/1698
  60281. }
  60282. },
  60283. },
  60284. [
  60285. {
  60286. name: "Canon Height",
  60287. height: math.unit(568, "feet"),
  60288. default: true
  60289. },
  60290. ]
  60291. ))
  60292. characterMakers.push(() => makeCharacter(
  60293. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60294. {
  60295. front: {
  60296. height: math.unit(6, "feet"),
  60297. weight: math.unit(1500, "lb"),
  60298. preyCapacity: math.unit(3, "people"),
  60299. name: "Front",
  60300. image: {
  60301. source: "./media/characters/livnia/front.svg",
  60302. extra: 934/932,
  60303. bottom: 83/1017
  60304. }
  60305. },
  60306. back: {
  60307. height: math.unit(6, "feet"),
  60308. weight: math.unit(1500, "lb"),
  60309. preyCapacity: math.unit(3, "people"),
  60310. name: "Back",
  60311. image: {
  60312. source: "./media/characters/livnia/back.svg",
  60313. extra: 916/915,
  60314. bottom: 58/974
  60315. }
  60316. },
  60317. head: {
  60318. height: math.unit(1.53, "feet"),
  60319. name: "Head",
  60320. image: {
  60321. source: "./media/characters/livnia/head.svg"
  60322. }
  60323. },
  60324. maw: {
  60325. height: math.unit(0.78, "feet"),
  60326. name: "Maw",
  60327. image: {
  60328. source: "./media/characters/livnia/maw.svg"
  60329. }
  60330. },
  60331. genitals: {
  60332. height: math.unit(0.35, "feet"),
  60333. name: "Genitals",
  60334. image: {
  60335. source: "./media/characters/livnia/genitals.svg"
  60336. }
  60337. },
  60338. },
  60339. [
  60340. {
  60341. name: "Normal",
  60342. height: math.unit(1000, "feet"),
  60343. default: true
  60344. },
  60345. ]
  60346. ))
  60347. characterMakers.push(() => makeCharacter(
  60348. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60349. {
  60350. front: {
  60351. height: math.unit(4, "feet"),
  60352. weight: math.unit(73, "lb"),
  60353. name: "Front",
  60354. image: {
  60355. source: "./media/characters/hayaku/front.svg",
  60356. extra: 1011/888,
  60357. bottom: 33/1044
  60358. }
  60359. },
  60360. back: {
  60361. height: math.unit(4, "feet"),
  60362. weight: math.unit(73, "lb"),
  60363. name: "Back",
  60364. image: {
  60365. source: "./media/characters/hayaku/back.svg",
  60366. extra: 1040/930,
  60367. bottom: 20/1060
  60368. }
  60369. },
  60370. },
  60371. [
  60372. {
  60373. name: "Normal",
  60374. height: math.unit(4, "feet"),
  60375. default: true
  60376. },
  60377. ]
  60378. ))
  60379. characterMakers.push(() => makeCharacter(
  60380. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60381. {
  60382. front: {
  60383. height: math.unit(6 + 7/12, "feet"),
  60384. weight: math.unit(300, "lb"),
  60385. name: "Front",
  60386. image: {
  60387. source: "./media/characters/athena-bryzant/front.svg",
  60388. extra: 870/835,
  60389. bottom: 33/903
  60390. }
  60391. },
  60392. back: {
  60393. height: math.unit(6 + 7/12, "feet"),
  60394. weight: math.unit(300, "lb"),
  60395. name: "Back",
  60396. image: {
  60397. source: "./media/characters/athena-bryzant/back.svg",
  60398. extra: 858/823,
  60399. bottom: 30/888
  60400. }
  60401. },
  60402. head: {
  60403. height: math.unit(2.38, "feet"),
  60404. name: "Head",
  60405. image: {
  60406. source: "./media/characters/athena-bryzant/head.svg"
  60407. }
  60408. },
  60409. wings: {
  60410. height: math.unit(2.85, "feet"),
  60411. name: "Wings",
  60412. image: {
  60413. source: "./media/characters/athena-bryzant/wings.svg"
  60414. }
  60415. },
  60416. },
  60417. [
  60418. {
  60419. name: "Normal",
  60420. height: math.unit(6 + 7/12, "feet"),
  60421. default: true
  60422. },
  60423. {
  60424. name: "Big",
  60425. height: math.unit(8, "feet")
  60426. },
  60427. {
  60428. name: "Very Big",
  60429. height: math.unit(11, "feet")
  60430. },
  60431. ]
  60432. ))
  60433. characterMakers.push(() => makeCharacter(
  60434. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60435. {
  60436. side: {
  60437. height: math.unit(3, "meters"),
  60438. weight: math.unit(7500, "kg"),
  60439. preyCapacity: math.unit(1e12, "people"),
  60440. name: "Side",
  60441. image: {
  60442. source: "./media/characters/zel-kesh/side.svg",
  60443. extra: 910/407,
  60444. bottom: 147/1057
  60445. }
  60446. },
  60447. },
  60448. [
  60449. {
  60450. name: "Normal",
  60451. height: math.unit(3, "meters"),
  60452. default: true
  60453. },
  60454. ]
  60455. ))
  60456. characterMakers.push(() => makeCharacter(
  60457. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60458. {
  60459. front: {
  60460. height: math.unit(2, "meters"),
  60461. weight: math.unit(95, "kg"),
  60462. name: "Front",
  60463. image: {
  60464. source: "./media/characters/kane-fox/front.svg",
  60465. extra: 945/888,
  60466. bottom: 27/972
  60467. }
  60468. },
  60469. back: {
  60470. height: math.unit(2, "meters"),
  60471. weight: math.unit(95, "kg"),
  60472. name: "Back",
  60473. image: {
  60474. source: "./media/characters/kane-fox/back.svg",
  60475. extra: 959/914,
  60476. bottom: 15/974
  60477. }
  60478. },
  60479. frontLewd: {
  60480. height: math.unit(2, "meters"),
  60481. weight: math.unit(95, "kg"),
  60482. name: "Front (Lewd)",
  60483. image: {
  60484. source: "./media/characters/kane-fox/front-lewd.svg",
  60485. extra: 945/888,
  60486. bottom: 27/972
  60487. }
  60488. },
  60489. },
  60490. [
  60491. {
  60492. name: "Home Size",
  60493. height: math.unit(2, "meters"),
  60494. default: true
  60495. },
  60496. {
  60497. name: "Macro",
  60498. height: math.unit(200, "meters")
  60499. },
  60500. {
  60501. name: "Small Mega",
  60502. height: math.unit(3, "km")
  60503. },
  60504. {
  60505. name: "Mega",
  60506. height: math.unit(50, "km")
  60507. },
  60508. {
  60509. name: "Giga",
  60510. height: math.unit(200, "km")
  60511. },
  60512. {
  60513. name: "Giga+",
  60514. height: math.unit(2500, "km")
  60515. },
  60516. {
  60517. name: "Terra",
  60518. height: math.unit(70000, "km")
  60519. },
  60520. {
  60521. name: "Terra+",
  60522. height: math.unit(150000, "km")
  60523. },
  60524. {
  60525. name: "Terra++",
  60526. height: math.unit(400000, "km")
  60527. },
  60528. ]
  60529. ))
  60530. characterMakers.push(() => makeCharacter(
  60531. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60532. {
  60533. otter_front: {
  60534. height: math.unit(1.8, "meters"),
  60535. weight: math.unit(90, "kg"),
  60536. name: "Front",
  60537. image: {
  60538. source: "./media/characters/ayranus/otter-front.svg",
  60539. extra: 468/452,
  60540. bottom: 43/511
  60541. },
  60542. form: "otter",
  60543. },
  60544. otter_frontLewd: {
  60545. height: math.unit(1.8, "meters"),
  60546. weight: math.unit(90, "kg"),
  60547. name: "Front (Lewd)",
  60548. image: {
  60549. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60550. extra: 468/452,
  60551. bottom: 43/511
  60552. },
  60553. form: "otter",
  60554. },
  60555. lionbat_front: {
  60556. height: math.unit(1.8, "meters"),
  60557. weight: math.unit(90, "kg"),
  60558. name: "Front (Lewd)",
  60559. image: {
  60560. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60561. extra: 797/740,
  60562. bottom: 78/875
  60563. },
  60564. form: "lionbat",
  60565. },
  60566. paw: {
  60567. height: math.unit(1.5, "feet"),
  60568. name: "Paw",
  60569. image: {
  60570. source: "./media/characters/ayranus/paw.svg"
  60571. },
  60572. },
  60573. },
  60574. [
  60575. {
  60576. name: "Incognito",
  60577. height: math.unit(1.8, "meters"),
  60578. allForms: true
  60579. },
  60580. {
  60581. name: "Macro",
  60582. height: math.unit(60, "meters"),
  60583. allForms: true
  60584. },
  60585. {
  60586. name: "Macro+",
  60587. height: math.unit(200, "meters"),
  60588. allForms: true
  60589. },
  60590. {
  60591. name: "Mega",
  60592. height: math.unit(35, "km"),
  60593. allForms: true
  60594. },
  60595. {
  60596. name: "Giga",
  60597. height: math.unit(220, "km"),
  60598. allForms: true
  60599. },
  60600. {
  60601. name: "Giga+",
  60602. height: math.unit(1500, "km"),
  60603. allForms: true
  60604. },
  60605. {
  60606. name: "Terra",
  60607. height: math.unit(13000, "km"),
  60608. allForms: true
  60609. },
  60610. {
  60611. name: "Terra+",
  60612. height: math.unit(500000, "km"),
  60613. allForms: true
  60614. },
  60615. {
  60616. name: "Galactic",
  60617. height: math.unit(486080, "parsecs"),
  60618. default: true,
  60619. allForms: true
  60620. },
  60621. ],
  60622. {
  60623. "otter": {
  60624. name: "Otter",
  60625. default: true
  60626. },
  60627. "lionbat": {
  60628. name: "Lionbat",
  60629. },
  60630. }
  60631. ))
  60632. characterMakers.push(() => makeCharacter(
  60633. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60634. {
  60635. front: {
  60636. height: math.unit(7 + 4/12, "feet"),
  60637. weight: math.unit(400, "lb"),
  60638. name: "Front",
  60639. image: {
  60640. source: "./media/characters/proxy/front.svg",
  60641. extra: 1605/1542,
  60642. bottom: 55/1660
  60643. }
  60644. },
  60645. side: {
  60646. height: math.unit(7 + 4/12, "feet"),
  60647. weight: math.unit(400, "lb"),
  60648. name: "Side",
  60649. image: {
  60650. source: "./media/characters/proxy/side.svg",
  60651. extra: 794/759,
  60652. bottom: 6/800
  60653. }
  60654. },
  60655. hand: {
  60656. height: math.unit(1.54, "feet"),
  60657. name: "Hand",
  60658. image: {
  60659. source: "./media/characters/proxy/hand.svg"
  60660. }
  60661. },
  60662. paw: {
  60663. height: math.unit(1.53, "feet"),
  60664. name: "Paw",
  60665. image: {
  60666. source: "./media/characters/proxy/paw.svg"
  60667. }
  60668. },
  60669. maw: {
  60670. height: math.unit(1.9, "feet"),
  60671. name: "Maw",
  60672. image: {
  60673. source: "./media/characters/proxy/maw.svg"
  60674. }
  60675. },
  60676. },
  60677. [
  60678. {
  60679. name: "Normal",
  60680. height: math.unit(7 + 4/12, "feet"),
  60681. default: true
  60682. },
  60683. ]
  60684. ))
  60685. characterMakers.push(() => makeCharacter(
  60686. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60687. {
  60688. front: {
  60689. height: math.unit(4, "meters"),
  60690. name: "Front",
  60691. image: {
  60692. source: "./media/characters/crocozilla/front.svg",
  60693. extra: 1790/1742,
  60694. bottom: 78/1868
  60695. }
  60696. },
  60697. },
  60698. [
  60699. {
  60700. name: "Normal",
  60701. height: math.unit(4, "meters"),
  60702. default: true
  60703. },
  60704. ]
  60705. ))
  60706. characterMakers.push(() => makeCharacter(
  60707. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60708. {
  60709. front: {
  60710. height: math.unit(1.8, "meters"),
  60711. weight: math.unit(120, "kg"),
  60712. name: "Front",
  60713. image: {
  60714. source: "./media/characters/kurz/front.svg",
  60715. extra: 1960/1824,
  60716. bottom: 41/2001
  60717. }
  60718. },
  60719. back: {
  60720. height: math.unit(1.8, "meters"),
  60721. weight: math.unit(120, "kg"),
  60722. name: "Back",
  60723. image: {
  60724. source: "./media/characters/kurz/back.svg",
  60725. extra: 1906/1787,
  60726. bottom: 60/1966
  60727. }
  60728. },
  60729. frontLewd: {
  60730. height: math.unit(1.8, "meters"),
  60731. weight: math.unit(120, "kg"),
  60732. name: "Front (Lewd)",
  60733. image: {
  60734. source: "./media/characters/kurz/front-lewd.svg",
  60735. extra: 1960/1824,
  60736. bottom: 41/2001
  60737. }
  60738. },
  60739. maw: {
  60740. height: math.unit(0.69, "meters"),
  60741. name: "Maw",
  60742. image: {
  60743. source: "./media/characters/kurz/maw.svg"
  60744. }
  60745. },
  60746. },
  60747. [
  60748. {
  60749. name: "Original Size",
  60750. height: math.unit(1.8, "meters")
  60751. },
  60752. {
  60753. name: "Incognito Size",
  60754. height: math.unit(2.4, "meters"),
  60755. default: true
  60756. },
  60757. {
  60758. name: "Macro",
  60759. height: math.unit(30, "meters")
  60760. },
  60761. {
  60762. name: "Macro+",
  60763. height: math.unit(250, "meters")
  60764. },
  60765. {
  60766. name: "Mega",
  60767. height: math.unit(2, "km")
  60768. },
  60769. {
  60770. name: "Mega+",
  60771. height: math.unit(35, "km")
  60772. },
  60773. {
  60774. name: "Mega++",
  60775. height: math.unit(75, "km")
  60776. },
  60777. {
  60778. name: "Giga",
  60779. height: math.unit(250, "km")
  60780. },
  60781. {
  60782. name: "Terra",
  60783. height: math.unit(15000, "km")
  60784. },
  60785. {
  60786. name: "Terra+",
  60787. height: math.unit(2250000, "km")
  60788. },
  60789. ]
  60790. ))
  60791. characterMakers.push(() => makeCharacter(
  60792. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60793. {
  60794. front: {
  60795. height: math.unit(16 + 3/12, "feet"),
  60796. weight: math.unit(3575, "lb"),
  60797. name: "Front",
  60798. image: {
  60799. source: "./media/characters/nikita/front.svg",
  60800. extra: 1064/955,
  60801. bottom: 47/1111
  60802. }
  60803. },
  60804. },
  60805. [
  60806. {
  60807. name: "Normal",
  60808. height: math.unit(16 + 3/12, "feet"),
  60809. default: true
  60810. },
  60811. {
  60812. name: "Big",
  60813. height: math.unit(21, "feet")
  60814. },
  60815. {
  60816. name: "Biggest",
  60817. height: math.unit(50, "feet")
  60818. },
  60819. ]
  60820. ))
  60821. characterMakers.push(() => makeCharacter(
  60822. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60823. {
  60824. front: {
  60825. height: math.unit(1.92, "m"),
  60826. weight: math.unit(76, "kg"),
  60827. name: "Front",
  60828. image: {
  60829. source: "./media/characters/kyara/front.svg",
  60830. extra: 1550/1438,
  60831. bottom: 139/1689
  60832. }
  60833. },
  60834. back: {
  60835. height: math.unit(1.92, "m"),
  60836. weight: math.unit(76, "kg"),
  60837. name: "Back",
  60838. image: {
  60839. source: "./media/characters/kyara/back.svg",
  60840. extra: 1523/1427,
  60841. bottom: 83/1606
  60842. }
  60843. },
  60844. head: {
  60845. height: math.unit(1.22, "feet"),
  60846. name: "Head",
  60847. image: {
  60848. source: "./media/characters/kyara/head.svg"
  60849. }
  60850. },
  60851. maw: {
  60852. height: math.unit(0.73, "feet"),
  60853. name: "Maw",
  60854. image: {
  60855. source: "./media/characters/kyara/maw.svg"
  60856. }
  60857. },
  60858. paws: {
  60859. height: math.unit(0.95, "feet"),
  60860. name: "Paws",
  60861. image: {
  60862. source: "./media/characters/kyara/paws.svg"
  60863. }
  60864. },
  60865. },
  60866. [
  60867. {
  60868. name: "Normal",
  60869. height: math.unit(1.92, "meters"),
  60870. default: true
  60871. },
  60872. {
  60873. name: "Mini Macro",
  60874. height: math.unit(192, "meters")
  60875. },
  60876. {
  60877. name: "Macro",
  60878. height: math.unit(480, "meters")
  60879. },
  60880. {
  60881. name: "Mega Macro",
  60882. height: math.unit(1440, "meters")
  60883. },
  60884. ]
  60885. ))
  60886. characterMakers.push(() => makeCharacter(
  60887. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60888. {
  60889. front: {
  60890. height: math.unit(6, "feet"),
  60891. weight: math.unit(160, "lbs"),
  60892. preyCapacity: math.unit(0.05, "people"),
  60893. name: "Front",
  60894. image: {
  60895. source: "./media/characters/layla-amari/front.svg",
  60896. extra: 1922/1723,
  60897. bottom: 90/2012
  60898. }
  60899. },
  60900. back: {
  60901. height: math.unit(6, "feet"),
  60902. weight: math.unit(160, "lbs"),
  60903. preyCapacity: math.unit(0.05, "people"),
  60904. name: "Back",
  60905. image: {
  60906. source: "./media/characters/layla-amari/back.svg",
  60907. extra: 1917/1718,
  60908. bottom: 50/1967
  60909. }
  60910. },
  60911. frontDressed: {
  60912. height: math.unit(6, "feet"),
  60913. weight: math.unit(160, "lbs"),
  60914. preyCapacity: math.unit(0.05, "people"),
  60915. name: "Front (Dressed)",
  60916. image: {
  60917. source: "./media/characters/layla-amari/front-dressed.svg",
  60918. extra: 1922/1723,
  60919. bottom: 90/2012
  60920. }
  60921. },
  60922. face: {
  60923. height: math.unit(0.93, "feet"),
  60924. name: "Face",
  60925. image: {
  60926. source: "./media/characters/layla-amari/face.svg"
  60927. }
  60928. },
  60929. hand: {
  60930. height: math.unit(0.66 , "feet"),
  60931. name: "Hand",
  60932. image: {
  60933. source: "./media/characters/layla-amari/hand.svg"
  60934. }
  60935. },
  60936. foot: {
  60937. height: math.unit(1, "feet"),
  60938. name: "Foot",
  60939. image: {
  60940. source: "./media/characters/layla-amari/foot.svg"
  60941. }
  60942. },
  60943. necklace: {
  60944. height: math.unit(0.32, "feet"),
  60945. name: "Necklace",
  60946. image: {
  60947. source: "./media/characters/layla-amari/necklace.svg"
  60948. }
  60949. },
  60950. nipple: {
  60951. height: math.unit(0.2, "feet"),
  60952. name: "Nipple",
  60953. image: {
  60954. source: "./media/characters/layla-amari/nipple.svg"
  60955. }
  60956. },
  60957. slit: {
  60958. height: math.unit(0.26, "feet"),
  60959. name: "Slit",
  60960. image: {
  60961. source: "./media/characters/layla-amari/slit.svg"
  60962. }
  60963. },
  60964. },
  60965. [
  60966. {
  60967. name: "Natural",
  60968. height: math.unit(825, "feet"),
  60969. default: true
  60970. },
  60971. {
  60972. name: "Enhanced",
  60973. height: math.unit(8250, "feet")
  60974. },
  60975. {
  60976. name: "Apparent Size",
  60977. height: math.unit(9.04363e+8, "meters")
  60978. },
  60979. ]
  60980. ))
  60981. characterMakers.push(() => makeCharacter(
  60982. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  60983. {
  60984. front: {
  60985. height: math.unit(1.3, "meters"),
  60986. name: "Front",
  60987. image: {
  60988. source: "./media/characters/percy/front.svg",
  60989. extra: 1444/1289,
  60990. bottom: 54/1498
  60991. }
  60992. },
  60993. },
  60994. [
  60995. {
  60996. name: "Normal",
  60997. height: math.unit(1.3, "meters"),
  60998. default: true
  60999. },
  61000. ]
  61001. ))
  61002. characterMakers.push(() => makeCharacter(
  61003. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61004. {
  61005. side: {
  61006. height: math.unit(10, "meters"),
  61007. name: "Side",
  61008. image: {
  61009. source: "./media/characters/grev/side.svg",
  61010. extra: 653/266,
  61011. bottom: 77/730
  61012. }
  61013. },
  61014. head: {
  61015. height: math.unit(16.2, "m"),
  61016. name: "Head",
  61017. image: {
  61018. source: "./media/characters/grev/head.svg"
  61019. }
  61020. },
  61021. dick: {
  61022. height: math.unit(2.8135932034, "m"),
  61023. name: "Dick",
  61024. image: {
  61025. source: "./media/characters/grev/dick.svg"
  61026. }
  61027. },
  61028. },
  61029. [
  61030. {
  61031. name: "Friend-Sized",
  61032. height: math.unit(80, "cm")
  61033. },
  61034. {
  61035. name: "Normal",
  61036. height: math.unit(10, "meters"),
  61037. default: true
  61038. },
  61039. {
  61040. name: "Macro",
  61041. height: math.unit(200, "meters")
  61042. },
  61043. ]
  61044. ))
  61045. characterMakers.push(() => makeCharacter(
  61046. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61047. {
  61048. front: {
  61049. height: math.unit(19.75, "feet"),
  61050. weight: math.unit(20000, "lb"),
  61051. name: "Front",
  61052. image: {
  61053. source: "./media/characters/azuuca/front.svg",
  61054. extra: 1593/1511,
  61055. bottom: 55/1648
  61056. }
  61057. },
  61058. },
  61059. [
  61060. {
  61061. name: "Normal",
  61062. height: math.unit(19.75, "feet"),
  61063. default: true
  61064. },
  61065. ]
  61066. ))
  61067. characterMakers.push(() => makeCharacter(
  61068. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61069. {
  61070. front: {
  61071. height: math.unit(15, "feet"),
  61072. weight: math.unit(1500, "lb"),
  61073. name: "Front",
  61074. image: {
  61075. source: "./media/characters/valuria/front.svg",
  61076. extra: 1588/1486,
  61077. bottom: 31/1619
  61078. }
  61079. },
  61080. },
  61081. [
  61082. {
  61083. name: "Normal",
  61084. height: math.unit(15, "feet"),
  61085. default: true
  61086. },
  61087. {
  61088. name: "Small",
  61089. height: math.unit(500, "feet")
  61090. },
  61091. {
  61092. name: "Macro",
  61093. height: math.unit(4000, "feet")
  61094. },
  61095. {
  61096. name: "Mega Macro",
  61097. height: math.unit(2000, "miles")
  61098. },
  61099. {
  61100. name: "Giga Macro",
  61101. height: math.unit(3e6, "miles")
  61102. },
  61103. ]
  61104. ))
  61105. characterMakers.push(() => makeCharacter(
  61106. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61107. {
  61108. front: {
  61109. height: math.unit(3500, "solarradii"),
  61110. name: "Front",
  61111. image: {
  61112. source: "./media/characters/terigaia/front.svg",
  61113. extra: 1531/1451,
  61114. bottom: 98/1629
  61115. }
  61116. },
  61117. },
  61118. [
  61119. {
  61120. name: "Normal",
  61121. height: math.unit(3500, "solarradii"),
  61122. default: true
  61123. },
  61124. ]
  61125. ))
  61126. characterMakers.push(() => makeCharacter(
  61127. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61128. {
  61129. front: {
  61130. height: math.unit(9.34, "feet"),
  61131. weight: math.unit(600, "lb"),
  61132. name: "Front",
  61133. image: {
  61134. source: "./media/characters/blair-blaziken/front.svg",
  61135. extra: 1557/1462,
  61136. bottom: 55/1612
  61137. }
  61138. },
  61139. },
  61140. [
  61141. {
  61142. name: "Normal",
  61143. height: math.unit(9.34, "feet"),
  61144. default: true
  61145. },
  61146. ]
  61147. ))
  61148. characterMakers.push(() => makeCharacter(
  61149. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61150. {
  61151. pistrogre_front: {
  61152. height: math.unit(10, "feet"),
  61153. weight: math.unit(10, "tons"),
  61154. name: "Front",
  61155. image: {
  61156. source: "./media/characters/braxia/pistrogre-front.svg",
  61157. extra: 1531/1334,
  61158. bottom: 114/1645
  61159. },
  61160. form: "pistrogre",
  61161. default: true
  61162. },
  61163. human_front: {
  61164. height: math.unit(10, "feet"),
  61165. weight: math.unit(10, "tons"),
  61166. name: "Front",
  61167. image: {
  61168. source: "./media/characters/braxia/human-front.svg",
  61169. extra: 1574/1501,
  61170. bottom: 37/1611
  61171. },
  61172. form: "human",
  61173. default: true
  61174. },
  61175. },
  61176. [
  61177. {
  61178. name: "Normal",
  61179. height: math.unit(10, "feet"),
  61180. default: true,
  61181. allForms: true
  61182. },
  61183. {
  61184. name: "Macro",
  61185. height: math.unit(1000, "feet"),
  61186. allForms: true
  61187. },
  61188. {
  61189. name: "Mega Macro",
  61190. height: math.unit(100, "miles"),
  61191. allForms: true
  61192. },
  61193. {
  61194. name: "Cosmic",
  61195. height: math.unit(1000000, "lightyears"),
  61196. allForms: true
  61197. },
  61198. {
  61199. name: "ϐѮԆԬӁꭍϞԢ",
  61200. height: math.unit(1000, "multiverses"),
  61201. allForms: true
  61202. },
  61203. ],
  61204. {
  61205. "pistrogre": {
  61206. name: "Pistrogre",
  61207. default: true
  61208. },
  61209. "human": {
  61210. name: "Human",
  61211. },
  61212. }
  61213. ))
  61214. characterMakers.push(() => makeCharacter(
  61215. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61216. {
  61217. front: {
  61218. height: math.unit(6 + 1/12, "feet"),
  61219. weight: math.unit(280, "lb"),
  61220. name: "Front",
  61221. image: {
  61222. source: "./media/characters/kiriga-yato/front.svg",
  61223. extra: 445/394,
  61224. bottom: 11/456
  61225. }
  61226. },
  61227. },
  61228. [
  61229. {
  61230. name: "Descended",
  61231. height: math.unit(3, "feet")
  61232. },
  61233. {
  61234. name: "Average",
  61235. height: math.unit(6 + 1/12, "feet"),
  61236. default: true
  61237. },
  61238. {
  61239. name: "Ascended",
  61240. height: math.unit(9 + 2/12, "feet")
  61241. },
  61242. ]
  61243. ))
  61244. characterMakers.push(() => makeCharacter(
  61245. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61246. {
  61247. front: {
  61248. height: math.unit(6, "feet"),
  61249. weight: math.unit(150, "lb"),
  61250. name: "Front",
  61251. image: {
  61252. source: "./media/characters/kylie/front.svg",
  61253. extra: 1114/1046,
  61254. bottom: 65/1179
  61255. },
  61256. extraAttributes: {
  61257. "hoofSize": {
  61258. name: "Hoof Size",
  61259. power: 2,
  61260. type: "area",
  61261. base: math.unit(0.034, "m^2")
  61262. },
  61263. "footSize": {
  61264. name: "Foot Size",
  61265. power: 2,
  61266. type: "area",
  61267. base: math.unit(0.75, "m^2")
  61268. },
  61269. }
  61270. },
  61271. side: {
  61272. height: math.unit(6, "feet"),
  61273. weight: math.unit(150, "lb"),
  61274. name: "Side",
  61275. image: {
  61276. source: "./media/characters/kylie/side.svg",
  61277. extra: 1178/1110,
  61278. bottom: 21/1199
  61279. },
  61280. extraAttributes: {
  61281. "hoofSize": {
  61282. name: "Hoof Size",
  61283. power: 2,
  61284. type: "area",
  61285. base: math.unit(0.034, "m^2")
  61286. },
  61287. "footSize": {
  61288. name: "Foot Size",
  61289. power: 2,
  61290. type: "area",
  61291. base: math.unit(0.75, "m^2")
  61292. },
  61293. }
  61294. },
  61295. back: {
  61296. height: math.unit(6, "feet"),
  61297. weight: math.unit(150, "lb"),
  61298. name: "Back",
  61299. image: {
  61300. source: "./media/characters/kylie/back.svg",
  61301. extra: 1115/1047,
  61302. bottom: 66/1181
  61303. },
  61304. extraAttributes: {
  61305. "hoofSize": {
  61306. name: "Hoof Size",
  61307. power: 2,
  61308. type: "area",
  61309. base: math.unit(0.034, "m^2")
  61310. },
  61311. "footSize": {
  61312. name: "Foot Size",
  61313. power: 2,
  61314. type: "area",
  61315. base: math.unit(0.75, "m^2")
  61316. },
  61317. }
  61318. },
  61319. head: {
  61320. height: math.unit(1.85, "feet"),
  61321. name: "Head",
  61322. image: {
  61323. source: "./media/characters/kylie/head.svg"
  61324. }
  61325. },
  61326. },
  61327. [
  61328. {
  61329. name: "Normal",
  61330. height: math.unit(90, "meters"),
  61331. default: true
  61332. },
  61333. ]
  61334. ))
  61335. characterMakers.push(() => makeCharacter(
  61336. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61337. {
  61338. front: {
  61339. height: math.unit(245, "feet"),
  61340. weight: math.unit(400000, "lb"),
  61341. name: "Front",
  61342. image: {
  61343. source: "./media/characters/sabado/front.svg",
  61344. extra: 1309/1164,
  61345. bottom: 29/1338
  61346. }
  61347. },
  61348. },
  61349. [
  61350. {
  61351. name: "Normal",
  61352. height: math.unit(245, "feet"),
  61353. default: true
  61354. },
  61355. ]
  61356. ))
  61357. characterMakers.push(() => makeCharacter(
  61358. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61359. {
  61360. shark_front: {
  61361. height: math.unit(2, "meters"),
  61362. weight: math.unit(200, "kg"),
  61363. name: "Front",
  61364. image: {
  61365. source: "./media/characters/zechal/shark-front.svg",
  61366. extra: 969/925,
  61367. bottom: 74/1043
  61368. },
  61369. form: "shark",
  61370. },
  61371. shark_back: {
  61372. height: math.unit(2, "meters"),
  61373. weight: math.unit(200, "kg"),
  61374. name: "Back",
  61375. image: {
  61376. source: "./media/characters/zechal/shark-back.svg",
  61377. extra: 994/949,
  61378. bottom: 176/1170
  61379. },
  61380. form: "shark",
  61381. },
  61382. shark_frontLewd: {
  61383. height: math.unit(2, "meters"),
  61384. weight: math.unit(200, "kg"),
  61385. name: "Front (Lewd)",
  61386. image: {
  61387. source: "./media/characters/zechal/shark-front-lewd.svg",
  61388. extra: 969/925,
  61389. bottom: 74/1043
  61390. },
  61391. form: "shark",
  61392. },
  61393. shark_side: {
  61394. height: math.unit(1.56, "meters"),
  61395. weight: math.unit(200, "kg"),
  61396. name: "Side",
  61397. image: {
  61398. source: "./media/characters/zechal/shark-side.svg"
  61399. },
  61400. form: "shark",
  61401. },
  61402. dragon_front: {
  61403. height: math.unit(2, "meters"),
  61404. weight: math.unit(200, "kg"),
  61405. name: "Front",
  61406. image: {
  61407. source: "./media/characters/zechal/dragon-front.svg",
  61408. extra: 1041/925,
  61409. bottom: 74/1115
  61410. },
  61411. form: "dragon",
  61412. },
  61413. dragon_back: {
  61414. height: math.unit(2, "meters"),
  61415. weight: math.unit(200, "kg"),
  61416. name: "Back",
  61417. image: {
  61418. source: "./media/characters/zechal/dragon-back.svg",
  61419. extra: 1061/949,
  61420. bottom: 176/1237
  61421. },
  61422. form: "dragon",
  61423. },
  61424. dragon_frontLewd: {
  61425. height: math.unit(2, "meters"),
  61426. weight: math.unit(200, "kg"),
  61427. name: "Front (Lewd)",
  61428. image: {
  61429. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61430. extra: 1041/925,
  61431. bottom: 74/1115
  61432. },
  61433. form: "dragon",
  61434. },
  61435. dragon_side: {
  61436. height: math.unit(1.56, "meters"),
  61437. weight: math.unit(200, "kg"),
  61438. name: "Side",
  61439. image: {
  61440. source: "./media/characters/zechal/dragon-side.svg"
  61441. },
  61442. form: "dragon",
  61443. },
  61444. foot: {
  61445. height: math.unit(0.5, "meters"),
  61446. name: "Foot",
  61447. image: {
  61448. source: "./media/characters/zechal/foot.svg"
  61449. }
  61450. },
  61451. sheathFront: {
  61452. height: math.unit(0.45, "meters"),
  61453. name: "Sheath (Front)",
  61454. image: {
  61455. source: "./media/characters/zechal/sheath-front.svg"
  61456. }
  61457. },
  61458. sheathSide: {
  61459. height: math.unit(0.45, "meters"),
  61460. name: "Sheath (Side)",
  61461. image: {
  61462. source: "./media/characters/zechal/sheath-side.svg"
  61463. }
  61464. },
  61465. },
  61466. [
  61467. {
  61468. name: "Incognito",
  61469. height: math.unit(2, "meters"),
  61470. allForms: true
  61471. },
  61472. {
  61473. name: "Small Rampage",
  61474. height: math.unit(25, "meters"),
  61475. allForms: true
  61476. },
  61477. {
  61478. name: "Home Size",
  61479. height: math.unit(250, "meters"),
  61480. allForms: true,
  61481. default: true
  61482. },
  61483. {
  61484. name: "Macro+",
  61485. height: math.unit(700, "meters"),
  61486. allForms: true
  61487. },
  61488. {
  61489. name: "Small Mega",
  61490. height: math.unit(3, "km"),
  61491. allForms: true
  61492. },
  61493. {
  61494. name: "Mega",
  61495. height: math.unit(15, "km"),
  61496. allForms: true
  61497. },
  61498. {
  61499. name: "Giga",
  61500. height: math.unit(300, "km"),
  61501. allForms: true
  61502. },
  61503. {
  61504. name: "Giga+",
  61505. height: math.unit(1750, "km"),
  61506. allForms: true
  61507. },
  61508. {
  61509. name: "Continental",
  61510. height: math.unit(5000, "km"),
  61511. allForms: true
  61512. },
  61513. {
  61514. name: "Terra",
  61515. height: math.unit(20000, "km"),
  61516. allForms: true
  61517. },
  61518. {
  61519. name: "Terra+",
  61520. height: math.unit(300000, "km"),
  61521. allForms: true
  61522. },
  61523. {
  61524. name: "Solar",
  61525. height: math.unit(40000000, "km"),
  61526. allForms: true
  61527. },
  61528. {
  61529. name: "Galactic",
  61530. height: math.unit(810133, "parsecs"),
  61531. allForms: true
  61532. },
  61533. {
  61534. name: "Universal",
  61535. height: math.unit(25, "universes"),
  61536. allForms: true
  61537. },
  61538. ],
  61539. {
  61540. "shark": {
  61541. name: "Shark",
  61542. default: true
  61543. },
  61544. "dragon": {
  61545. name: "Dragon",
  61546. },
  61547. }
  61548. ))
  61549. characterMakers.push(() => makeCharacter(
  61550. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61551. {
  61552. front: {
  61553. height: math.unit(2.2, "meters"),
  61554. weight: math.unit(150, "kg"),
  61555. name: "Front",
  61556. image: {
  61557. source: "./media/characters/sergis/front.svg",
  61558. extra: 1314/1312,
  61559. bottom: 112/1426
  61560. }
  61561. },
  61562. back: {
  61563. height: math.unit(2.2, "meters"),
  61564. weight: math.unit(150, "kg"),
  61565. name: "Back",
  61566. image: {
  61567. source: "./media/characters/sergis/back.svg",
  61568. extra: 1335/1333,
  61569. bottom: 19/1354
  61570. }
  61571. },
  61572. frontLewd: {
  61573. height: math.unit(2.2, "meters"),
  61574. weight: math.unit(150, "kg"),
  61575. name: "Front (Lewd)",
  61576. image: {
  61577. source: "./media/characters/sergis/front-lewd.svg",
  61578. extra: 1314/1312,
  61579. bottom: 112/1426
  61580. }
  61581. },
  61582. frontDressed: {
  61583. height: math.unit(2.2, "meters"),
  61584. weight: math.unit(150, "kg"),
  61585. name: "Front (Dressed)",
  61586. image: {
  61587. source: "./media/characters/sergis/front-dressed.svg",
  61588. extra: 1330/1328,
  61589. bottom: 95/1425
  61590. }
  61591. },
  61592. frontDressedLewd: {
  61593. height: math.unit(2.2, "meters"),
  61594. weight: math.unit(150, "kg"),
  61595. name: "Front (Dressed, Lewd)",
  61596. image: {
  61597. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61598. extra: 1330/1328,
  61599. bottom: 95/1425
  61600. }
  61601. },
  61602. maw: {
  61603. height: math.unit(0.48, "meters"),
  61604. name: "Maw",
  61605. image: {
  61606. source: "./media/characters/sergis/maw.svg"
  61607. }
  61608. },
  61609. sheath: {
  61610. height: math.unit(0.38, "meters"),
  61611. name: "Sheath",
  61612. image: {
  61613. source: "./media/characters/sergis/sheath.svg"
  61614. }
  61615. },
  61616. },
  61617. [
  61618. {
  61619. name: "Incognito Size",
  61620. height: math.unit(2.2, "meters")
  61621. },
  61622. {
  61623. name: "Small Macro",
  61624. height: math.unit(40, "meters")
  61625. },
  61626. {
  61627. name: "Macro",
  61628. height: math.unit(150, "meters")
  61629. },
  61630. {
  61631. name: "Macro+",
  61632. height: math.unit(300, "meters")
  61633. },
  61634. {
  61635. name: "Mega",
  61636. height: math.unit(2.5, "km")
  61637. },
  61638. {
  61639. name: "Mega+",
  61640. height: math.unit(30, "km")
  61641. },
  61642. {
  61643. name: "Home Size",
  61644. height: math.unit(300, "km"),
  61645. default: true
  61646. },
  61647. {
  61648. name: "Giga+",
  61649. height: math.unit(1000, "km")
  61650. },
  61651. {
  61652. name: "Giga++",
  61653. height: math.unit(6000, "km")
  61654. },
  61655. {
  61656. name: "Terra",
  61657. height: math.unit(70000, "km")
  61658. },
  61659. {
  61660. name: "Terra+",
  61661. height: math.unit(200000, "km")
  61662. },
  61663. {
  61664. name: "Galactic",
  61665. height: math.unit(634200, "lightyears")
  61666. },
  61667. ]
  61668. ))
  61669. characterMakers.push(() => makeCharacter(
  61670. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61671. {
  61672. standard: {
  61673. height: math.unit(1 + 5/12, "feet"),
  61674. name: "Standard",
  61675. image: {
  61676. source: "./media/characters/spade/standard.svg",
  61677. extra: 1794/1703,
  61678. bottom: 115/1909
  61679. }
  61680. },
  61681. disguised: {
  61682. height: math.unit(1 + 5/12, "feet"),
  61683. name: "Disguised",
  61684. image: {
  61685. source: "./media/characters/spade/disguised.svg",
  61686. extra: 1794/1700,
  61687. bottom: 98/1892
  61688. }
  61689. },
  61690. },
  61691. [
  61692. {
  61693. name: "Normal",
  61694. height: math.unit(1 + 5/12, "feet"),
  61695. default: true
  61696. },
  61697. ]
  61698. ))
  61699. characterMakers.push(() => makeCharacter(
  61700. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61701. {
  61702. frontNsfw: {
  61703. height: math.unit(5, "meters"),
  61704. weight: math.unit(2000, "kg"),
  61705. preyCapacity: math.unit(5, "people"),
  61706. name: "Front (NSFW)",
  61707. image: {
  61708. source: "./media/characters/zeanlain/front-nsfw.svg",
  61709. extra: 1087/938,
  61710. bottom: 93/1180
  61711. },
  61712. extraAttributes: {
  61713. "wingspan": {
  61714. name: "Wingspan",
  61715. power: 1,
  61716. type: "length",
  61717. base: math.unit(10, "meters")
  61718. },
  61719. "footSize": {
  61720. name: "Foot Size",
  61721. power: 1,
  61722. type: "length",
  61723. base: math.unit(0.68, "meters")
  61724. },
  61725. "cockLength": {
  61726. name: "Cock Length",
  61727. power: 1,
  61728. type: "length",
  61729. base: math.unit(1.69, "meters")
  61730. },
  61731. "ballVolume": {
  61732. name: "Ball Volume",
  61733. power: 3,
  61734. type: "volume",
  61735. base: math.unit(0.028, "m^3")
  61736. },
  61737. }
  61738. },
  61739. front: {
  61740. height: math.unit(5, "meters"),
  61741. weight: math.unit(2000, "kg"),
  61742. preyCapacity: math.unit(3, "people"),
  61743. name: "Front",
  61744. image: {
  61745. source: "./media/characters/zeanlain/front.svg",
  61746. extra: 1087/938,
  61747. bottom: 93/1180
  61748. },
  61749. extraAttributes: {
  61750. "wingspan": {
  61751. name: "Wingspan",
  61752. power: 1,
  61753. type: "length",
  61754. base: math.unit(10, "meters")
  61755. },
  61756. "footSize": {
  61757. name: "Foot Size",
  61758. power: 1,
  61759. type: "length",
  61760. base: math.unit(0.68, "meters")
  61761. },
  61762. }
  61763. },
  61764. },
  61765. [
  61766. {
  61767. name: "Normal",
  61768. height: math.unit(5, "meters"),
  61769. default: true
  61770. },
  61771. ]
  61772. ))
  61773. characterMakers.push(() => makeCharacter(
  61774. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61775. {
  61776. front: {
  61777. height: math.unit(10, "meters"),
  61778. weight: math.unit(250000, "kg"),
  61779. name: "Front",
  61780. image: {
  61781. source: "./media/characters/airamis/front.svg",
  61782. extra: 865/835,
  61783. bottom: 13/878
  61784. }
  61785. },
  61786. },
  61787. [
  61788. {
  61789. name: "Normal",
  61790. height: math.unit(10, "meters"),
  61791. default: true
  61792. },
  61793. ]
  61794. ))
  61795. characterMakers.push(() => makeCharacter(
  61796. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61797. {
  61798. front: {
  61799. height: math.unit(3 + 3/12, "feet"),
  61800. weight: math.unit(75, "lb"),
  61801. name: "Front",
  61802. image: {
  61803. source: "./media/characters/corra-tourmaline/front.svg",
  61804. extra: 1037/864,
  61805. bottom: 39/1076
  61806. }
  61807. },
  61808. back: {
  61809. height: math.unit(3 + 3/12, "feet"),
  61810. weight: math.unit(75, "lb"),
  61811. name: "Back",
  61812. image: {
  61813. source: "./media/characters/corra-tourmaline/back.svg",
  61814. extra: 1022/849,
  61815. bottom: 26/1048
  61816. }
  61817. },
  61818. dressed: {
  61819. height: math.unit(3 + 3/12, "feet"),
  61820. weight: math.unit(75, "lb"),
  61821. name: "Dressed",
  61822. image: {
  61823. source: "./media/characters/corra-tourmaline/dressed.svg",
  61824. extra: 1037/864,
  61825. bottom: 39/1076
  61826. }
  61827. },
  61828. beans: {
  61829. height: math.unit(0.37, "feet"),
  61830. name: "Beans",
  61831. image: {
  61832. source: "./media/characters/corra-tourmaline/beans.svg"
  61833. }
  61834. },
  61835. },
  61836. [
  61837. {
  61838. name: "Normal",
  61839. height: math.unit(3 + 3/12, "feet"),
  61840. default: true
  61841. },
  61842. {
  61843. name: "Macro",
  61844. height: math.unit(32, "feet")
  61845. },
  61846. ]
  61847. ))
  61848. characterMakers.push(() => makeCharacter(
  61849. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61850. {
  61851. front: {
  61852. height: math.unit(6 + 2/12, "feet"),
  61853. weight: math.unit(203, "lb"),
  61854. name: "Front",
  61855. image: {
  61856. source: "./media/characters/maki-kawa/front.svg",
  61857. extra: 950/890,
  61858. bottom: 62/1012
  61859. }
  61860. },
  61861. back: {
  61862. height: math.unit(6 + 2/12, "feet"),
  61863. weight: math.unit(203, "lb"),
  61864. name: "Back",
  61865. image: {
  61866. source: "./media/characters/maki-kawa/back.svg",
  61867. extra: 953/878,
  61868. bottom: 49/1002
  61869. }
  61870. },
  61871. frontBarista: {
  61872. height: math.unit(6 + 2/12, "feet"),
  61873. weight: math.unit(203, "lb"),
  61874. name: "Front (Barista)",
  61875. image: {
  61876. source: "./media/characters/maki-kawa/front-barista.svg",
  61877. extra: 943/883,
  61878. bottom: 69/1012
  61879. }
  61880. },
  61881. backBarista: {
  61882. height: math.unit(6 + 2/12, "feet"),
  61883. weight: math.unit(203, "lb"),
  61884. name: "Back (Barista)",
  61885. image: {
  61886. source: "./media/characters/maki-kawa/back-barista.svg",
  61887. extra: 953/878,
  61888. bottom: 49/1002
  61889. }
  61890. },
  61891. frontWrestler: {
  61892. height: math.unit(6 + 2/12, "feet"),
  61893. weight: math.unit(203, "lb"),
  61894. name: "Front (Wrestler)",
  61895. image: {
  61896. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61897. extra: 950/890,
  61898. bottom: 62/1012
  61899. }
  61900. },
  61901. backWrestler: {
  61902. height: math.unit(6 + 2/12, "feet"),
  61903. weight: math.unit(203, "lb"),
  61904. name: "Back (Wrestler)",
  61905. image: {
  61906. source: "./media/characters/maki-kawa/back-wrestler.svg",
  61907. extra: 953/878,
  61908. bottom: 49/1002
  61909. }
  61910. },
  61911. headFront: {
  61912. height: math.unit(1.64, "feet"),
  61913. name: "Head (Front)",
  61914. image: {
  61915. source: "./media/characters/maki-kawa/head-front.svg"
  61916. }
  61917. },
  61918. headSide: {
  61919. height: math.unit(1.59, "feet"),
  61920. name: "Head (Side)",
  61921. image: {
  61922. source: "./media/characters/maki-kawa/head-side.svg"
  61923. }
  61924. },
  61925. paw: {
  61926. height: math.unit(0.9, "feet"),
  61927. name: "Paw",
  61928. image: {
  61929. source: "./media/characters/maki-kawa/paw.svg"
  61930. }
  61931. },
  61932. },
  61933. [
  61934. {
  61935. name: "Normal",
  61936. height: math.unit(6 + 2/12, "feet"),
  61937. default: true
  61938. },
  61939. {
  61940. name: "Macro",
  61941. height: math.unit(617, "feet")
  61942. },
  61943. ]
  61944. ))
  61945. characterMakers.push(() => makeCharacter(
  61946. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  61947. {
  61948. front: {
  61949. height: math.unit(10, "feet"),
  61950. weight: math.unit(1500, "lb"),
  61951. name: "Front",
  61952. image: {
  61953. source: "./media/characters/lennox/front.svg",
  61954. extra: 1623/1496,
  61955. bottom: 18/1641
  61956. }
  61957. },
  61958. back: {
  61959. height: math.unit(10, "feet"),
  61960. weight: math.unit(1500, "lb"),
  61961. name: "Back",
  61962. image: {
  61963. source: "./media/characters/lennox/back.svg",
  61964. extra: 1641/1481,
  61965. bottom: 13/1654
  61966. }
  61967. },
  61968. maw: {
  61969. height: math.unit(2.94, "feet"),
  61970. name: "Maw",
  61971. image: {
  61972. source: "./media/characters/lennox/maw.svg"
  61973. }
  61974. },
  61975. },
  61976. [
  61977. {
  61978. name: "Micro",
  61979. height: math.unit(1, "inch")
  61980. },
  61981. {
  61982. name: "Normal",
  61983. height: math.unit(10, "feet"),
  61984. default: true
  61985. },
  61986. {
  61987. name: "Macro",
  61988. height: math.unit(200, "feet")
  61989. },
  61990. ]
  61991. ))
  61992. characterMakers.push(() => makeCharacter(
  61993. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  61994. {
  61995. frontDressed: {
  61996. height: math.unit(15 + 7/12, "feet"),
  61997. weight: math.unit(5000, "lb"),
  61998. name: "Front (Dressed)",
  61999. image: {
  62000. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62001. extra: 1136/1023,
  62002. bottom: 51/1187
  62003. }
  62004. },
  62005. backDressed: {
  62006. height: math.unit(15 + 7/12, "feet"),
  62007. weight: math.unit(5000, "lb"),
  62008. name: "Back (Dressed)",
  62009. image: {
  62010. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62011. extra: 2359/2143,
  62012. bottom: 103/2462
  62013. }
  62014. },
  62015. front: {
  62016. height: math.unit(15 + 7/12, "feet"),
  62017. weight: math.unit(5000, "lb"),
  62018. name: "Front",
  62019. image: {
  62020. source: "./media/characters/vyse-iron-thunder/front.svg",
  62021. extra: 1136/1023,
  62022. bottom: 51/1187
  62023. }
  62024. },
  62025. hand: {
  62026. height: math.unit(2.36, "feet"),
  62027. name: "Hand",
  62028. image: {
  62029. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62030. }
  62031. },
  62032. foot: {
  62033. height: math.unit(1.72, "feet"),
  62034. name: "Foot",
  62035. image: {
  62036. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62037. }
  62038. },
  62039. mouth: {
  62040. height: math.unit(2, "feet"),
  62041. name: "Mouth",
  62042. image: {
  62043. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62044. }
  62045. },
  62046. eye: {
  62047. height: math.unit(0.58, "feet"),
  62048. name: "Eye",
  62049. image: {
  62050. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62051. }
  62052. },
  62053. },
  62054. [
  62055. {
  62056. name: "Normal",
  62057. height: math.unit(15 + 7/12, "feet"),
  62058. default: true
  62059. },
  62060. {
  62061. name: "Macro",
  62062. height: math.unit(157, "feet")
  62063. },
  62064. {
  62065. name: "Macro+",
  62066. height: math.unit(1570, "feet")
  62067. },
  62068. {
  62069. name: "Macro++",
  62070. height: math.unit(15700, "feet")
  62071. },
  62072. {
  62073. name: "Macro+++",
  62074. height: math.unit(157000, "feet")
  62075. },
  62076. {
  62077. name: "Macro++++",
  62078. height: math.unit(1570000, "feet")
  62079. },
  62080. ]
  62081. ))
  62082. characterMakers.push(() => makeCharacter(
  62083. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62084. {
  62085. side: {
  62086. height: math.unit(6, "feet"),
  62087. weight: math.unit(115, "lb"),
  62088. name: "Side",
  62089. image: {
  62090. source: "./media/characters/moonbeam/side.svg",
  62091. extra: 839/485,
  62092. bottom: 60/899
  62093. }
  62094. },
  62095. },
  62096. [
  62097. {
  62098. name: "Normal",
  62099. height: math.unit(6, "feet"),
  62100. default: true
  62101. },
  62102. ]
  62103. ))
  62104. //characters
  62105. function makeCharacters() {
  62106. const results = [];
  62107. characterMakers.forEach(character => {
  62108. results.push(character());
  62109. });
  62110. return results;
  62111. }