less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

49722 строки
1.2 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.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. }
  1908. //species
  1909. function getSpeciesInfo(speciesList) {
  1910. let result = new Set();
  1911. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1912. result.add(entry)
  1913. });
  1914. return Array.from(result);
  1915. };
  1916. function getSpeciesInfoHelper(species) {
  1917. if (!speciesData[species]) {
  1918. console.warn(species + " doesn't exist");
  1919. return [];
  1920. }
  1921. if (speciesData[species].parents) {
  1922. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1923. } else {
  1924. return [species];
  1925. }
  1926. }
  1927. characterMakers.push(() => makeCharacter(
  1928. {
  1929. name: "Fen",
  1930. species: ["crux"],
  1931. description: {
  1932. title: "Bio",
  1933. text: "Very furry. Sheds on everything."
  1934. },
  1935. tags: [
  1936. "anthro",
  1937. "goo"
  1938. ]
  1939. },
  1940. {
  1941. front: {
  1942. height: math.unit(12, "feet"),
  1943. weight: math.unit(2400, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/fen/front.svg",
  1947. extra: 1804/1562,
  1948. bottom: 205/2009
  1949. }
  1950. },
  1951. diving: {
  1952. height: math.unit(4.9, "meters"),
  1953. weight: math.unit(2400, "lb"),
  1954. name: "Diving",
  1955. image: {
  1956. source: "./media/characters/fen/diving.svg"
  1957. }
  1958. },
  1959. goo: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(3600, "lb"),
  1962. volume: math.unit(1000, "liters"),
  1963. capacity: math.unit(6, "people"),
  1964. name: "Goo",
  1965. image: {
  1966. source: "./media/characters/fen/goo.svg",
  1967. extra: 1307/1071,
  1968. bottom: 134/1441
  1969. }
  1970. },
  1971. maw: {
  1972. height: math.unit(5.03, "feet"),
  1973. name: "Maw",
  1974. image: {
  1975. source: "./media/characters/fen/maw.svg"
  1976. }
  1977. },
  1978. gooCeiling: {
  1979. height: math.unit(6.6, "feet"),
  1980. weight: math.unit(3000, "lb"),
  1981. volume: math.unit(1000, "liters"),
  1982. capacity: math.unit(6, "people"),
  1983. name: "Goo (Ceiling)",
  1984. image: {
  1985. source: "./media/characters/fen/goo-ceiling.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(12, "feet"),
  1990. weight: math.unit(2400, "lb"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/fen/back.svg",
  1994. },
  1995. info: {
  1996. description: {
  1997. mode: "append",
  1998. text: "\n\nHe is not currently looking at you."
  1999. }
  2000. }
  2001. },
  2002. full: {
  2003. height: math.unit(1.6, "meter"),
  2004. weight: math.unit(3200, "lb"),
  2005. name: "Full",
  2006. image: {
  2007. source: "./media/characters/fen/full.svg",
  2008. extra: 1133/859,
  2009. bottom: 145/1278
  2010. },
  2011. info: {
  2012. description: {
  2013. mode: "append",
  2014. text: "\n\nMunch."
  2015. }
  2016. }
  2017. },
  2018. gooLounging: {
  2019. height: math.unit(4.53, "feet"),
  2020. weight: math.unit(3000, "lb"),
  2021. capacity: math.unit(6, "people"),
  2022. name: "Goo (Lounging)",
  2023. image: {
  2024. source: "./media/characters/fen/goo-lounging.svg",
  2025. bottom: 116 / 613
  2026. }
  2027. },
  2028. lounging: {
  2029. height: math.unit(10.52, "feet"),
  2030. weight: math.unit(2400, "lb"),
  2031. name: "Lounging",
  2032. image: {
  2033. source: "./media/characters/fen/lounging.svg"
  2034. }
  2035. },
  2036. },
  2037. [
  2038. {
  2039. name: "Small",
  2040. height: math.unit(2.2428, "meter")
  2041. },
  2042. {
  2043. name: "Normal",
  2044. height: math.unit(12, "feet"),
  2045. default: true,
  2046. },
  2047. {
  2048. name: "Big",
  2049. height: math.unit(20, "feet")
  2050. },
  2051. {
  2052. name: "Minimacro",
  2053. height: math.unit(40, "feet"),
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nTOO DAMN BIG"
  2058. }
  2059. }
  2060. },
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(100, "feet"),
  2064. info: {
  2065. description: {
  2066. mode: "append",
  2067. text: "\n\nTOO DAMN BIG"
  2068. }
  2069. }
  2070. },
  2071. {
  2072. name: "Megamacro",
  2073. height: math.unit(2, "miles")
  2074. },
  2075. {
  2076. name: "Gigamacro",
  2077. height: math.unit(10, "earths")
  2078. },
  2079. ]
  2080. ))
  2081. characterMakers.push(() => makeCharacter(
  2082. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2083. {
  2084. front: {
  2085. height: math.unit(183, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Front",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/front.svg",
  2090. bottom: 0.01,
  2091. extra: 2154 / 2081
  2092. }
  2093. },
  2094. frontAlt: {
  2095. height: math.unit(183, "cm"),
  2096. weight: math.unit(80, "kg"),
  2097. name: "Front (alt)",
  2098. image: {
  2099. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2100. }
  2101. },
  2102. back: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Back",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/back.svg"
  2108. }
  2109. },
  2110. kneeling: {
  2111. height: math.unit(125, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Kneeling",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2116. extra: 1033 / 977,
  2117. bottom: 23.7 / 1057
  2118. }
  2119. },
  2120. maw: {
  2121. height: math.unit(183 / 5, "cm"),
  2122. name: "Maw",
  2123. image: {
  2124. source: "./media/characters/sofia-fluttertail/maw.svg"
  2125. }
  2126. },
  2127. mawcloseup: {
  2128. height: math.unit(183 / 5 * 0.41, "cm"),
  2129. name: "Maw (Closeup)",
  2130. image: {
  2131. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2132. }
  2133. },
  2134. paws: {
  2135. height: math.unit(1.17, "feet"),
  2136. name: "Paws",
  2137. image: {
  2138. source: "./media/characters/sofia-fluttertail/paws.svg",
  2139. extra: 851 / 851,
  2140. bottom: 17 / 868
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(1.83, "meter")
  2148. },
  2149. {
  2150. name: "Size Thief",
  2151. height: math.unit(18, "feet")
  2152. },
  2153. {
  2154. name: "50 Foot Collie",
  2155. height: math.unit(50, "feet")
  2156. },
  2157. {
  2158. name: "Macro",
  2159. height: math.unit(96, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Megamerger",
  2164. height: math.unit(650, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(7, "feet"),
  2173. weight: math.unit(100, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/march/front.svg",
  2177. extra: 1992/1851,
  2178. bottom: 39/2031
  2179. }
  2180. },
  2181. foot: {
  2182. height: math.unit(0.9, "feet"),
  2183. name: "Foot",
  2184. image: {
  2185. source: "./media/characters/march/foot.svg"
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7.9, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(220, "meters")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.98, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(15963, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2980000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(250, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(60, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/noir/front.svg",
  2226. extra: 1,
  2227. bottom: 0.032
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(6.6, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(500, "feet")
  2239. },
  2240. {
  2241. name: "Megamacro",
  2242. height: math.unit(2.5, "km"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Gigamacro",
  2247. height: math.unit(22500, "km")
  2248. },
  2249. {
  2250. name: "Teramacro",
  2251. height: math.unit(2500000000, "km")
  2252. },
  2253. {
  2254. name: "Examacro",
  2255. height: math.unit(200, "parsecs")
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/okuri/front.svg",
  2268. extra: 739/665,
  2269. bottom: 39/778
  2270. }
  2271. },
  2272. back: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Back",
  2276. image: {
  2277. source: "./media/characters/okuri/back.svg",
  2278. extra: 734/653,
  2279. bottom: 13/747
  2280. }
  2281. },
  2282. sitting: {
  2283. height: math.unit(2.95, "feet"),
  2284. weight: math.unit(100, "kg"),
  2285. name: "Sitting",
  2286. image: {
  2287. source: "./media/characters/okuri/sitting.svg",
  2288. extra: 370/318,
  2289. bottom: 99/469
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Smallest",
  2296. height: math.unit(5 + 2/12, "feet")
  2297. },
  2298. {
  2299. name: "Smaller",
  2300. height: math.unit(300, "feet")
  2301. },
  2302. {
  2303. name: "Small",
  2304. height: math.unit(1000, "feet")
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(1, "mile")
  2309. },
  2310. {
  2311. name: "Mega Macro (Small)",
  2312. height: math.unit(20, "km")
  2313. },
  2314. {
  2315. name: "Mega Macro (Large)",
  2316. height: math.unit(600, "km")
  2317. },
  2318. {
  2319. name: "Giga Macro",
  2320. height: math.unit(10000, "km")
  2321. },
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(577560, "km"),
  2325. default: true
  2326. },
  2327. {
  2328. name: "Large",
  2329. height: math.unit(4, "galaxies")
  2330. },
  2331. {
  2332. name: "Largest",
  2333. height: math.unit(15, "multiverses")
  2334. },
  2335. ]
  2336. ))
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(7, "feet"),
  2342. weight: math.unit(100, "kg"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/manny/front.svg",
  2346. extra: 1,
  2347. bottom: 0.06
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(7, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/manny/back.svg",
  2356. extra: 1,
  2357. bottom: 0.014
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7, "feet"),
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(78, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Macro+",
  2373. height: math.unit(300, "meters")
  2374. },
  2375. {
  2376. name: "Macro++",
  2377. height: math.unit(2400, "meters")
  2378. },
  2379. {
  2380. name: "Megamacro",
  2381. height: math.unit(5167, "meters")
  2382. },
  2383. {
  2384. name: "Gigamacro",
  2385. height: math.unit(41769, "miles")
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(7, "feet"),
  2394. weight: math.unit(100, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/adake/front-1.svg"
  2398. }
  2399. },
  2400. frontAlt: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(100, "kg"),
  2403. name: "Front (Alt)",
  2404. image: {
  2405. source: "./media/characters/adake/front-2.svg",
  2406. extra: 1,
  2407. bottom: 0.01
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/adake/back.svg",
  2416. }
  2417. },
  2418. kneel: {
  2419. height: math.unit(5.385, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Kneeling",
  2422. image: {
  2423. source: "./media/characters/adake/kneel.svg",
  2424. bottom: 0.052
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(7, "feet"),
  2432. },
  2433. {
  2434. name: "Macro",
  2435. height: math.unit(78, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro+",
  2440. height: math.unit(300, "meters")
  2441. },
  2442. {
  2443. name: "Macro++",
  2444. height: math.unit(2400, "meters")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(5167, "meters")
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(41769, "miles")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(1.65, "meters"),
  2461. weight: math.unit(50, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/elijah/front.svg",
  2465. extra: 858 / 830,
  2466. bottom: 95.5 / 953.8559
  2467. }
  2468. },
  2469. back: {
  2470. height: math.unit(1.65, "meters"),
  2471. weight: math.unit(50, "kg"),
  2472. name: "Back",
  2473. image: {
  2474. source: "./media/characters/elijah/back.svg",
  2475. extra: 895 / 850,
  2476. bottom: 5.3 / 897.956
  2477. }
  2478. },
  2479. frontNsfw: {
  2480. height: math.unit(1.65, "meters"),
  2481. weight: math.unit(50, "kg"),
  2482. name: "Front (NSFW)",
  2483. image: {
  2484. source: "./media/characters/elijah/front-nsfw.svg",
  2485. extra: 858 / 830,
  2486. bottom: 95.5 / 953.8559
  2487. }
  2488. },
  2489. backNsfw: {
  2490. height: math.unit(1.65, "meters"),
  2491. weight: math.unit(50, "kg"),
  2492. name: "Back (NSFW)",
  2493. image: {
  2494. source: "./media/characters/elijah/back-nsfw.svg",
  2495. extra: 895 / 850,
  2496. bottom: 5.3 / 897.956
  2497. }
  2498. },
  2499. dick: {
  2500. height: math.unit(1, "feet"),
  2501. name: "Dick",
  2502. image: {
  2503. source: "./media/characters/elijah/dick.svg"
  2504. }
  2505. },
  2506. beakOpen: {
  2507. height: math.unit(1.25, "feet"),
  2508. name: "Beak (Open)",
  2509. image: {
  2510. source: "./media/characters/elijah/beak-open.svg"
  2511. }
  2512. },
  2513. beakShut: {
  2514. height: math.unit(1.25, "feet"),
  2515. name: "Beak (Shut)",
  2516. image: {
  2517. source: "./media/characters/elijah/beak-shut.svg"
  2518. }
  2519. },
  2520. footFlexing: {
  2521. height: math.unit(1.61, "feet"),
  2522. name: "Foot (Flexing)",
  2523. image: {
  2524. source: "./media/characters/elijah/foot-flexing.svg"
  2525. }
  2526. },
  2527. footStepping: {
  2528. height: math.unit(1.44, "feet"),
  2529. name: "Foot (Stepping)",
  2530. image: {
  2531. source: "./media/characters/elijah/foot-stepping.svg"
  2532. }
  2533. },
  2534. plantigradeLeg: {
  2535. height: math.unit(2.34, "feet"),
  2536. name: "Plantigrade Leg",
  2537. image: {
  2538. source: "./media/characters/elijah/plantigrade-leg.svg"
  2539. }
  2540. },
  2541. plantigradeFootLeft: {
  2542. height: math.unit(0.9, "feet"),
  2543. name: "Plantigrade Foot (Left)",
  2544. image: {
  2545. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2546. }
  2547. },
  2548. plantigradeFootRight: {
  2549. height: math.unit(0.9, "feet"),
  2550. name: "Plantigrade Foot (Right)",
  2551. image: {
  2552. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(1.65, "meters")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(55, "meters"),
  2564. default: true
  2565. },
  2566. {
  2567. name: "Macro+",
  2568. height: math.unit(105, "meters")
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2574. {
  2575. front: {
  2576. height: math.unit(7 + 2/12, "feet"),
  2577. weight: math.unit(320, "kg"),
  2578. name: "Front",
  2579. image: {
  2580. source: "./media/characters/rai/front.svg",
  2581. extra: 1802/1696,
  2582. bottom: 68/1870
  2583. }
  2584. },
  2585. frontDressed: {
  2586. height: math.unit(7 + 2/12, "feet"),
  2587. weight: math.unit(320, "kg"),
  2588. name: "Front (Dressed)",
  2589. image: {
  2590. source: "./media/characters/rai/front-dressed.svg",
  2591. extra: 1802/1696,
  2592. bottom: 68/1870
  2593. }
  2594. },
  2595. side: {
  2596. height: math.unit(7 + 2/12, "feet"),
  2597. weight: math.unit(320, "kg"),
  2598. name: "Side",
  2599. image: {
  2600. source: "./media/characters/rai/side.svg",
  2601. extra: 1789/1710,
  2602. bottom: 115/1904
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(7 + 2/12, "feet"),
  2607. weight: math.unit(320, "kg"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/rai/back.svg",
  2611. extra: 1770/1707,
  2612. bottom: 28/1798
  2613. }
  2614. },
  2615. feral: {
  2616. height: math.unit(9.5, "feet"),
  2617. weight: math.unit(640, "kg"),
  2618. name: "Feral",
  2619. image: {
  2620. source: "./media/characters/rai/feral.svg",
  2621. extra: 945/553,
  2622. bottom: 176/1121
  2623. }
  2624. },
  2625. dragon: {
  2626. height: math.unit(23, "feet"),
  2627. weight: math.unit(50000, "lb"),
  2628. name: "Dragon",
  2629. image: {
  2630. source: "./media/characters/rai/dragon.svg",
  2631. extra: 2498 / 2030,
  2632. bottom: 85.2 / 2584
  2633. }
  2634. },
  2635. maw: {
  2636. height: math.unit(1.69, "feet"),
  2637. name: "Maw",
  2638. image: {
  2639. source: "./media/characters/rai/maw.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(7 + 2/12, "feet")
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(11, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(302, "feet"),
  2655. default: true
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2661. {
  2662. frontDressed: {
  2663. height: math.unit(216, "feet"),
  2664. weight: math.unit(7000000, "lb"),
  2665. name: "Front (Dressed)",
  2666. image: {
  2667. source: "./media/characters/jazzy/front-dressed.svg",
  2668. extra: 2738 / 2651,
  2669. bottom: 41.8 / 2786
  2670. }
  2671. },
  2672. backDressed: {
  2673. height: math.unit(216, "feet"),
  2674. weight: math.unit(7000000, "lb"),
  2675. name: "Back (Dressed)",
  2676. image: {
  2677. source: "./media/characters/jazzy/back-dressed.svg",
  2678. extra: 2775 / 2673,
  2679. bottom: 36.8 / 2817
  2680. }
  2681. },
  2682. front: {
  2683. height: math.unit(216, "feet"),
  2684. weight: math.unit(7000000, "lb"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/jazzy/front.svg",
  2688. extra: 2738 / 2651,
  2689. bottom: 41.8 / 2786
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(216, "feet"),
  2694. weight: math.unit(7000000, "lb"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/jazzy/back.svg",
  2698. extra: 2775 / 2673,
  2699. bottom: 36.8 / 2817
  2700. }
  2701. },
  2702. maw: {
  2703. height: math.unit(20, "feet"),
  2704. name: "Maw",
  2705. image: {
  2706. source: "./media/characters/jazzy/maw.svg"
  2707. }
  2708. },
  2709. paws: {
  2710. height: math.unit(27.5, "feet"),
  2711. name: "Paws",
  2712. image: {
  2713. source: "./media/characters/jazzy/paws.svg"
  2714. }
  2715. },
  2716. eye: {
  2717. height: math.unit(4.4, "feet"),
  2718. name: "Eye",
  2719. image: {
  2720. source: "./media/characters/jazzy/eye.svg"
  2721. }
  2722. },
  2723. droneOffense: {
  2724. height: math.unit(9.5, "inches"),
  2725. name: "Drone (Offense)",
  2726. image: {
  2727. source: "./media/characters/jazzy/drone-offense.svg"
  2728. }
  2729. },
  2730. droneRecon: {
  2731. height: math.unit(9.5, "inches"),
  2732. name: "Drone (Recon)",
  2733. image: {
  2734. source: "./media/characters/jazzy/drone-recon.svg"
  2735. }
  2736. },
  2737. droneDefense: {
  2738. height: math.unit(9.5, "inches"),
  2739. name: "Drone (Defense)",
  2740. image: {
  2741. source: "./media/characters/jazzy/drone-defense.svg"
  2742. }
  2743. },
  2744. },
  2745. [
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(216, "feet"),
  2749. default: true
  2750. },
  2751. ]
  2752. ))
  2753. characterMakers.push(() => makeCharacter(
  2754. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2755. {
  2756. front: {
  2757. height: math.unit(9 + 6/12, "feet"),
  2758. weight: math.unit(700, "lb"),
  2759. name: "Front",
  2760. image: {
  2761. source: "./media/characters/flamm/front.svg",
  2762. extra: 1751/1632,
  2763. bottom: 46/1797
  2764. }
  2765. },
  2766. buff: {
  2767. height: math.unit(9 + 6/12, "feet"),
  2768. weight: math.unit(950, "lb"),
  2769. name: "Buff",
  2770. image: {
  2771. source: "./media/characters/flamm/buff.svg",
  2772. extra: 3018/2874,
  2773. bottom: 221/3239
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Normal",
  2780. height: math.unit(9.5, "feet")
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(200, "feet"),
  2785. default: true
  2786. },
  2787. ]
  2788. ))
  2789. characterMakers.push(() => makeCharacter(
  2790. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2791. {
  2792. front: {
  2793. height: math.unit(5 + 3/12, "feet"),
  2794. weight: math.unit(60, "kg"),
  2795. name: "Front",
  2796. image: {
  2797. source: "./media/characters/zephiro/front.svg",
  2798. extra: 2309 / 2162,
  2799. bottom: 0.069
  2800. }
  2801. },
  2802. side: {
  2803. height: math.unit(5 + 3/12, "feet"),
  2804. weight: math.unit(60, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/zephiro/side.svg",
  2808. extra: 2403 / 2279,
  2809. bottom: 0.015
  2810. }
  2811. },
  2812. back: {
  2813. height: math.unit(5 + 3/12, "feet"),
  2814. weight: math.unit(60, "kg"),
  2815. name: "Back",
  2816. image: {
  2817. source: "./media/characters/zephiro/back.svg",
  2818. extra: 2373 / 2244,
  2819. bottom: 0.013
  2820. }
  2821. },
  2822. hand: {
  2823. height: math.unit(0.68, "feet"),
  2824. name: "Hand",
  2825. image: {
  2826. source: "./media/characters/zephiro/hand.svg"
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/zephiro/paw.svg"
  2834. }
  2835. },
  2836. beans: {
  2837. height: math.unit(0.93, "feet"),
  2838. name: "Beans",
  2839. image: {
  2840. source: "./media/characters/zephiro/beans.svg"
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Micro",
  2847. height: math.unit(3, "inches")
  2848. },
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(5 + 3 / 12, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(118, "feet")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(5, "feet"),
  2865. weight: math.unit(90, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/fory/front.svg",
  2869. extra: 2862 / 2674,
  2870. bottom: 180 / 3043.8
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(5, "feet"),
  2875. weight: math.unit(90, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/fory/back.svg",
  2879. extra: 2962 / 2791,
  2880. bottom: 106 / 3071.8
  2881. }
  2882. },
  2883. foot: {
  2884. height: math.unit(2.14, "feet"),
  2885. name: "Foot",
  2886. image: {
  2887. source: "./media/characters/fory/foot.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(5, "feet")
  2895. },
  2896. {
  2897. name: "Macro",
  2898. height: math.unit(50, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(10, "miles")
  2904. },
  2905. {
  2906. name: "Gigamacro",
  2907. height: math.unit(5, "earths")
  2908. },
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(7, "feet"),
  2916. weight: math.unit(90, "kg"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/kurrikage/front.svg",
  2920. extra: 1845/1733,
  2921. bottom: 119/1964
  2922. }
  2923. },
  2924. back: {
  2925. height: math.unit(7, "feet"),
  2926. weight: math.unit(90, "kg"),
  2927. name: "Back",
  2928. image: {
  2929. source: "./media/characters/kurrikage/back.svg",
  2930. extra: 1790/1677,
  2931. bottom: 61/1851
  2932. }
  2933. },
  2934. dressed: {
  2935. height: math.unit(7, "feet"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Dressed",
  2938. image: {
  2939. source: "./media/characters/kurrikage/dressed.svg",
  2940. extra: 1845/1733,
  2941. bottom: 119/1964
  2942. }
  2943. },
  2944. foot: {
  2945. height: math.unit(1.5, "feet"),
  2946. name: "Foot",
  2947. image: {
  2948. source: "./media/characters/kurrikage/foot.svg"
  2949. }
  2950. },
  2951. staff: {
  2952. height: math.unit(6.7, "feet"),
  2953. name: "Staff",
  2954. image: {
  2955. source: "./media/characters/kurrikage/staff.svg"
  2956. }
  2957. },
  2958. peek: {
  2959. height: math.unit(1.05, "feet"),
  2960. name: "Peeking",
  2961. image: {
  2962. source: "./media/characters/kurrikage/peek.svg",
  2963. bottom: 0.08
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(12, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Big",
  2975. height: math.unit(20, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(500, "feet")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(20, "miles")
  2984. },
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/shingo/front.svg",
  2996. extra: 1900/1825,
  2997. bottom: 82/1982
  2998. }
  2999. },
  3000. side: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Side",
  3004. image: {
  3005. source: "./media/characters/shingo/side.svg",
  3006. extra: 1930/1865,
  3007. bottom: 16/1946
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(6, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/shingo/back.svg",
  3016. extra: 1922/1852,
  3017. bottom: 16/1938
  3018. }
  3019. },
  3020. frontDressed: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(150, "lb"),
  3023. name: "Front-dressed",
  3024. image: {
  3025. source: "./media/characters/shingo/front-dressed.svg",
  3026. extra: 1900/1825,
  3027. bottom: 82/1982
  3028. }
  3029. },
  3030. paw: {
  3031. height: math.unit(1.29, "feet"),
  3032. name: "Paw",
  3033. image: {
  3034. source: "./media/characters/shingo/paw.svg"
  3035. }
  3036. },
  3037. hand: {
  3038. height: math.unit(1.07, "feet"),
  3039. name: "Hand",
  3040. image: {
  3041. source: "./media/characters/shingo/hand.svg"
  3042. }
  3043. },
  3044. frontAlt: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Front (Alt)",
  3048. image: {
  3049. source: "./media/characters/shingo/front-alt.svg",
  3050. extra: 3511 / 3338,
  3051. bottom: 0.005
  3052. }
  3053. },
  3054. frontAlt2: {
  3055. height: math.unit(6, "feet"),
  3056. weight: math.unit(75, "kg"),
  3057. name: "Front (Alt 2)",
  3058. image: {
  3059. source: "./media/characters/shingo/front-alt-2.svg",
  3060. extra: 706/681,
  3061. bottom: 11/717
  3062. }
  3063. },
  3064. pawAlt: {
  3065. height: math.unit(1, "feet"),
  3066. name: "Paw (Alt)",
  3067. image: {
  3068. source: "./media/characters/shingo/paw-alt.svg"
  3069. }
  3070. },
  3071. },
  3072. [
  3073. {
  3074. name: "Micro",
  3075. height: math.unit(4, "inches")
  3076. },
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(6, "feet"),
  3080. default: true
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(108, "feet")
  3085. },
  3086. {
  3087. name: "Macro+",
  3088. height: math.unit(1500, "feet")
  3089. },
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3094. {
  3095. side: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(75, "kg"),
  3098. name: "Side",
  3099. image: {
  3100. source: "./media/characters/aigey/side.svg"
  3101. }
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(200, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(100, "miles")
  3113. },
  3114. ]
  3115. )
  3116. )
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(5 + 5 / 12, "feet"),
  3122. weight: math.unit(75, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/natasha/front.svg",
  3126. extra: 859 / 824,
  3127. bottom: 23 / 879.6
  3128. }
  3129. },
  3130. frontNsfw: {
  3131. height: math.unit(5 + 5 / 12, "feet"),
  3132. weight: math.unit(75, "kg"),
  3133. name: "Front (NSFW)",
  3134. image: {
  3135. source: "./media/characters/natasha/front-nsfw.svg",
  3136. extra: 859 / 824,
  3137. bottom: 23 / 879.6
  3138. }
  3139. },
  3140. frontErect: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front (Erect)",
  3144. image: {
  3145. source: "./media/characters/natasha/front-erect.svg",
  3146. extra: 859 / 824,
  3147. bottom: 23 / 879.6
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(5 + 5 / 12, "feet"),
  3152. weight: math.unit(75, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/natasha/back.svg",
  3156. extra: 887.9 / 852.6,
  3157. bottom: 9.7 / 896.4
  3158. }
  3159. },
  3160. backAlt: {
  3161. height: math.unit(5 + 5 / 12, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Back (Alt)",
  3164. image: {
  3165. source: "./media/characters/natasha/back-alt.svg",
  3166. extra: 1236.7 / 1192,
  3167. bottom: 22.3 / 1258.2
  3168. }
  3169. },
  3170. dick: {
  3171. height: math.unit(1.772, "feet"),
  3172. name: "Dick",
  3173. image: {
  3174. source: "./media/characters/natasha/dick.svg"
  3175. }
  3176. },
  3177. paw: {
  3178. height: math.unit(0.250, "meters"),
  3179. name: "Paw",
  3180. image: {
  3181. source: "./media/characters/natasha/paw.svg"
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(5 + 5 / 12, "feet")
  3189. },
  3190. {
  3191. name: "Large",
  3192. height: math.unit(12, "feet")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(100, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro+",
  3201. height: math.unit(260, "feet")
  3202. },
  3203. {
  3204. name: "Macro++",
  3205. height: math.unit(1, "mile")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/malik/front.svg"
  3218. }
  3219. },
  3220. side: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Side",
  3224. image: {
  3225. source: "./media/characters/malik/side.svg",
  3226. extra: 1.1539
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(6, "feet"),
  3231. weight: math.unit(75, "kg"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/malik/back.svg"
  3235. }
  3236. },
  3237. },
  3238. [
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(156, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro+",
  3246. height: math.unit(1188, "feet")
  3247. },
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(6, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/sefer/front.svg",
  3259. extra: 848 / 659,
  3260. bottom: 28.3 / 876.442
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/sefer/back.svg",
  3269. extra: 864 / 695,
  3270. bottom: 10 / 871
  3271. }
  3272. },
  3273. frontDressed: {
  3274. height: math.unit(6, "feet"),
  3275. weight: math.unit(75, "kg"),
  3276. name: "Front (Dressed)",
  3277. image: {
  3278. source: "./media/characters/sefer/front-dressed.svg",
  3279. extra: 839 / 653,
  3280. bottom: 37.6 / 878
  3281. }
  3282. },
  3283. },
  3284. [
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(6, "feet"),
  3288. default: true
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3294. {
  3295. body: {
  3296. height: math.unit(2.2428, "meter"),
  3297. weight: math.unit(124.738, "kg"),
  3298. name: "Body",
  3299. image: {
  3300. extra: 1225 / 1050,
  3301. source: "./media/characters/north/front.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Micro",
  3308. height: math.unit(4, "inches")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(63, "meters")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(101, "miles"),
  3317. default: true
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3323. {
  3324. angled: {
  3325. height: math.unit(4, "meter"),
  3326. weight: math.unit(150, "kg"),
  3327. name: "Angled",
  3328. image: {
  3329. source: "./media/characters/talan/angled-sfw.svg",
  3330. bottom: 29 / 3734
  3331. }
  3332. },
  3333. angledNsfw: {
  3334. height: math.unit(4, "meter"),
  3335. weight: math.unit(150, "kg"),
  3336. name: "Angled (NSFW)",
  3337. image: {
  3338. source: "./media/characters/talan/angled-nsfw.svg",
  3339. bottom: 29 / 3734
  3340. }
  3341. },
  3342. frontNsfw: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Front (NSFW)",
  3346. image: {
  3347. source: "./media/characters/talan/front-nsfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. sideNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Side (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/side-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/talan/back.svg"
  3366. }
  3367. },
  3368. dickBottom: {
  3369. height: math.unit(0.621, "meter"),
  3370. name: "Dick (Bottom)",
  3371. image: {
  3372. source: "./media/characters/talan/dick-bottom.svg"
  3373. }
  3374. },
  3375. dickTop: {
  3376. height: math.unit(0.621, "meter"),
  3377. name: "Dick (Top)",
  3378. image: {
  3379. source: "./media/characters/talan/dick-top.svg"
  3380. }
  3381. },
  3382. dickSide: {
  3383. height: math.unit(0.305, "meter"),
  3384. name: "Dick (Side)",
  3385. image: {
  3386. source: "./media/characters/talan/dick-side.svg"
  3387. }
  3388. },
  3389. dickFront: {
  3390. height: math.unit(0.305, "meter"),
  3391. name: "Dick (Front)",
  3392. image: {
  3393. source: "./media/characters/talan/dick-front.svg"
  3394. }
  3395. },
  3396. },
  3397. [
  3398. {
  3399. name: "Normal",
  3400. height: math.unit(4, "meters")
  3401. },
  3402. {
  3403. name: "Macro",
  3404. height: math.unit(100, "meters")
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(2, "miles"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(5000, "miles")
  3414. },
  3415. {
  3416. name: "Teramacro",
  3417. height: math.unit(100, "parsecs")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(90, "kg"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/gael'rathus/front.svg"
  3430. }
  3431. },
  3432. frontAlt: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front (alt)",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front-alt.svg"
  3438. }
  3439. },
  3440. frontAlt2: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Front (alt 2)",
  3444. image: {
  3445. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3446. }
  3447. }
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(9, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Large",
  3457. height: math.unit(25, "feet")
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(0.25, "miles")
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3471. {
  3472. side: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(140, "kg"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/sosha/side.svg",
  3478. bottom: 0.042
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(12, "feet"),
  3486. default: true
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3492. {
  3493. side: {
  3494. height: math.unit(5 + 5 / 12, "feet"),
  3495. weight: math.unit(170, "kg"),
  3496. name: "Side",
  3497. image: {
  3498. source: "./media/characters/runnola/side.svg",
  3499. extra: 741 / 448,
  3500. bottom: 0.05
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Small",
  3507. height: math.unit(3, "feet")
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(5 + 5 / 12, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Big",
  3516. height: math.unit(10, "feet")
  3517. },
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(50, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/kurribird/front.svg",
  3529. bottom: 0.015
  3530. }
  3531. },
  3532. frontAlt: {
  3533. height: math.unit(1.5, "meter"),
  3534. weight: math.unit(50, "kg"),
  3535. name: "Front (Alt)",
  3536. image: {
  3537. source: "./media/characters/kurribird/front-alt.svg",
  3538. extra: 1.45
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(7, "feet")
  3546. },
  3547. {
  3548. name: "Big",
  3549. height: math.unit(12, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(1500, "feet")
  3555. },
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(2, "miles")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(80, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/elbial/front.svg",
  3571. extra: 1643 / 1556,
  3572. bottom: 60.2 / 1696
  3573. }
  3574. },
  3575. side: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/elbial/side.svg",
  3581. extra: 1601/1528,
  3582. bottom: 97/1698
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(80, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/elbial/back.svg",
  3591. extra: 1653/1569,
  3592. bottom: 20/1673
  3593. }
  3594. },
  3595. frontDressed: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front (Dressed)",
  3599. image: {
  3600. source: "./media/characters/elbial/front-dressed.svg",
  3601. extra: 1638/1569,
  3602. bottom: 70/1708
  3603. }
  3604. },
  3605. genitals: {
  3606. height: math.unit(2 / 3.367, "meter"),
  3607. name: "Genitals",
  3608. image: {
  3609. source: "./media/characters/elbial/genitals.svg"
  3610. }
  3611. },
  3612. },
  3613. [
  3614. {
  3615. name: "Large",
  3616. height: math.unit(100, "feet")
  3617. },
  3618. {
  3619. name: "Macro",
  3620. height: math.unit(500, "feet"),
  3621. default: true
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(10, "miles")
  3626. },
  3627. {
  3628. name: "Gigamacro",
  3629. height: math.unit(25000, "miles")
  3630. },
  3631. {
  3632. name: "Full-Size",
  3633. height: math.unit(8000000, "gigaparsecs")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(2, "meter"),
  3642. weight: math.unit(60, "kg"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/noah/front.svg"
  3646. }
  3647. },
  3648. talons: {
  3649. height: math.unit(0.315, "meter"),
  3650. name: "Talons",
  3651. image: {
  3652. source: "./media/characters/noah/talons.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Large",
  3659. height: math.unit(50, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(750, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(50, "miles")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(100000, "miles")
  3673. },
  3674. {
  3675. name: "Full-Size",
  3676. height: math.unit(3000000000, "miles")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(80, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/natalya/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(80, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/natalya/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(150, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(5, "miles")
  3709. },
  3710. {
  3711. name: "Full-Size",
  3712. height: math.unit(600, "kiloparsecs")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(50, "kg"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/erestrebah/front.svg",
  3725. extra: 1262/1162,
  3726. bottom: 96/1358
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(50, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/erestrebah/back.svg",
  3735. extra: 1257/1139,
  3736. bottom: 13/1270
  3737. }
  3738. },
  3739. wing: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(50, "kg"),
  3742. name: "Wing",
  3743. image: {
  3744. source: "./media/characters/erestrebah/wing.svg",
  3745. extra: 1262/1162,
  3746. bottom: 96/1358
  3747. }
  3748. },
  3749. mouth: {
  3750. height: math.unit(0.39, "feet"),
  3751. name: "Mouth",
  3752. image: {
  3753. source: "./media/characters/erestrebah/mouth.svg"
  3754. }
  3755. }
  3756. },
  3757. [
  3758. {
  3759. name: "Normal",
  3760. height: math.unit(10, "feet")
  3761. },
  3762. {
  3763. name: "Large",
  3764. height: math.unit(50, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Macro",
  3769. height: math.unit(300, "feet")
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(750, "feet")
  3774. },
  3775. {
  3776. name: "Megamacro",
  3777. height: math.unit(3, "miles")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(80, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/jennifer/front.svg",
  3790. bottom: 0.11,
  3791. extra: 1.16
  3792. }
  3793. },
  3794. frontAlt: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(80, "kg"),
  3797. name: "Front (Alt)",
  3798. image: {
  3799. source: "./media/characters/jennifer/front-alt.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Canon Height",
  3806. height: math.unit(120, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(300, "feet")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(20000, "feet")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/kalista/front.svg",
  3828. extra: 1314/1145,
  3829. bottom: 101/1415
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(50, "kg"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/kalista/back.svg",
  3838. extra: 1366 / 1156,
  3839. bottom: 33.9 / 1362.78
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Uncomfortably Small",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. {
  3849. name: "Small",
  3850. height: math.unit(30, "feet")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(100, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(2000, "feet")
  3860. },
  3861. {
  3862. name: "True Form",
  3863. height: math.unit(8924, "miles")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(120, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/ggv/front.svg"
  3876. }
  3877. },
  3878. side: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(120, "kg"),
  3881. name: "Side",
  3882. image: {
  3883. source: "./media/characters/ggv/side.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Extremely Puny",
  3890. height: math.unit(9 + 5 / 12, "feet")
  3891. },
  3892. {
  3893. name: "Horribly Small",
  3894. height: math.unit(47.7, "miles"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Reasonably Sized",
  3899. height: math.unit(25000, "parsecs")
  3900. },
  3901. {
  3902. name: "Slightly Uncompressed",
  3903. height: math.unit(7.77e31, "parsecs")
  3904. },
  3905. {
  3906. name: "Omniversal",
  3907. height: math.unit(1e300, "meters")
  3908. },
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(2, "meter"),
  3916. weight: math.unit(75, "lb"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/napalm/front.svg"
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(75, "lb"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/napalm/back.svg"
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Standard",
  3934. height: math.unit(55, "feet"),
  3935. default: true
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(7 + 5 / 6, "feet"),
  3944. weight: math.unit(325, "lb"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/asana/front.svg",
  3948. extra: 1133 / 1060,
  3949. bottom: 15.2 / 1148.6
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(7 + 5 / 6, "feet"),
  3954. weight: math.unit(325, "lb"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/asana/back.svg",
  3958. extra: 1114 / 1043,
  3959. bottom: 5 / 1120
  3960. }
  3961. },
  3962. dressedDark: {
  3963. height: math.unit(7 + 5 / 6, "feet"),
  3964. weight: math.unit(325, "lb"),
  3965. name: "Dressed (Dark)",
  3966. image: {
  3967. source: "./media/characters/asana/dressed-dark.svg",
  3968. extra: 1133 / 1060,
  3969. bottom: 15.2 / 1148.6
  3970. }
  3971. },
  3972. dressedLight: {
  3973. height: math.unit(7 + 5 / 6, "feet"),
  3974. weight: math.unit(325, "lb"),
  3975. name: "Dressed (Light)",
  3976. image: {
  3977. source: "./media/characters/asana/dressed-light.svg",
  3978. extra: 1133 / 1060,
  3979. bottom: 15.2 / 1148.6
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Standard",
  3986. height: math.unit(7 + 5 / 6, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Large",
  3991. height: math.unit(10, "meters")
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(2500, "meters")
  3996. },
  3997. {
  3998. name: "Megamacro",
  3999. height: math.unit(5e6, "meters")
  4000. },
  4001. {
  4002. name: "Examacro",
  4003. height: math.unit(5e12, "lightyears")
  4004. },
  4005. {
  4006. name: "Max Size",
  4007. height: math.unit(1e31, "lightyears")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(60, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ebony/front.svg",
  4020. bottom: 0.03,
  4021. extra: 1045 / 810 + 0.03
  4022. }
  4023. },
  4024. side: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(60, "kg"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/ebony/side.svg",
  4030. bottom: 0.03,
  4031. extra: 1045 / 810 + 0.03
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(2, "meter"),
  4036. weight: math.unit(60, "kg"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/ebony/back.svg",
  4040. bottom: 0.01,
  4041. extra: 1045 / 810 + 0.01
  4042. }
  4043. },
  4044. },
  4045. [
  4046. // TODO check why I did this lol
  4047. {
  4048. name: "Standard",
  4049. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(200, "feet")
  4055. },
  4056. {
  4057. name: "Gigamacro",
  4058. height: math.unit(13000, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/mountain/front.svg",
  4071. extra: 972 / 955,
  4072. bottom: 64 / 1036.6
  4073. }
  4074. },
  4075. back: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(175, "lb"),
  4078. name: "Back",
  4079. image: {
  4080. source: "./media/characters/mountain/back.svg",
  4081. extra: 970 / 950,
  4082. bottom: 28.25 / 999
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Large",
  4089. height: math.unit(20, "meters")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(300, "meters")
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(10000, "km"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Examacro",
  4102. height: math.unit(10e9, "lightyears")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(8, "feet"),
  4111. weight: math.unit(500, "lb"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/rick/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(8, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(5, "km")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(8, "feet"),
  4135. weight: math.unit(120, "lb"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/ona/front.svg"
  4139. }
  4140. },
  4141. frontAlt: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Front (Alt)",
  4145. image: {
  4146. source: "./media/characters/ona/front-alt.svg"
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(8, "feet"),
  4151. weight: math.unit(120, "lb"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/ona/back.svg"
  4155. }
  4156. },
  4157. foot: {
  4158. height: math.unit(1.1, "feet"),
  4159. name: "Foot",
  4160. image: {
  4161. source: "./media/characters/ona/foot.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(70, "km"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(681818, "miles")
  4174. },
  4175. {
  4176. name: "Examacro",
  4177. height: math.unit(3800000, "lightyears")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(12, "feet"),
  4186. weight: math.unit(3000, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/mech/front.svg",
  4190. extra: 2900 / 2770,
  4191. bottom: 110 / 3010
  4192. }
  4193. },
  4194. back: {
  4195. height: math.unit(12, "feet"),
  4196. weight: math.unit(3000, "lb"),
  4197. name: "Back",
  4198. image: {
  4199. source: "./media/characters/mech/back.svg",
  4200. extra: 3011 / 2890,
  4201. bottom: 94 / 3105
  4202. }
  4203. },
  4204. maw: {
  4205. height: math.unit(3.07, "feet"),
  4206. name: "Maw",
  4207. image: {
  4208. source: "./media/characters/mech/maw.svg"
  4209. }
  4210. },
  4211. head: {
  4212. height: math.unit(2.82, "feet"),
  4213. name: "Head",
  4214. image: {
  4215. source: "./media/characters/mech/head.svg"
  4216. }
  4217. },
  4218. dick: {
  4219. height: math.unit(1.43, "feet"),
  4220. name: "Dick",
  4221. image: {
  4222. source: "./media/characters/mech/dick.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(12, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(300, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Macro+",
  4238. height: math.unit(1500, "feet")
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(1.3, "meter"),
  4247. weight: math.unit(30, "kg"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/gregory/front.svg",
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(1.3, "meter"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(20, "meter")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2.8, "meter"),
  4271. weight: math.unit(200, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/elory/front.svg",
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(2.8, "meter"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(38, "meter")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(470, "feet"),
  4295. weight: math.unit(924, "tons"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/angelpatamon/front.svg",
  4299. }
  4300. }
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(470, "feet"),
  4306. default: true
  4307. },
  4308. {
  4309. name: "Deity Size I",
  4310. height: math.unit(28651.2, "km")
  4311. },
  4312. {
  4313. name: "Deity Size II",
  4314. height: math.unit(171907.2, "km")
  4315. }
  4316. ]
  4317. ))
  4318. characterMakers.push(() => makeCharacter(
  4319. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4320. {
  4321. side: {
  4322. height: math.unit(7.2, "meter"),
  4323. weight: math.unit(8.2, "tons"),
  4324. name: "Side",
  4325. image: {
  4326. source: "./media/characters/cryae/side.svg",
  4327. extra: 3500 / 1500
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(7.2, "meter"),
  4335. default: true
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/xera/front.svg",
  4348. extra: 2377 / 1972,
  4349. bottom: 75.5 / 2452
  4350. }
  4351. },
  4352. side: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(175, "lb"),
  4355. name: "Side",
  4356. image: {
  4357. source: "./media/characters/xera/side.svg",
  4358. extra: 2345 / 2019,
  4359. bottom: 39.7 / 2384
  4360. }
  4361. },
  4362. back: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(175, "lb"),
  4365. name: "Back",
  4366. image: {
  4367. source: "./media/characters/xera/back.svg",
  4368. extra: 2095 / 1984,
  4369. bottom: 67 / 2166
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Small",
  4376. height: math.unit(10, "feet")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(500, "meters"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro+",
  4385. height: math.unit(10, "km")
  4386. },
  4387. {
  4388. name: "Gigamacro",
  4389. height: math.unit(25000, "km")
  4390. },
  4391. {
  4392. name: "Teramacro",
  4393. height: math.unit(3e6, "km")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(175, "lb"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/nebula/front.svg",
  4406. extra: 2566 / 2362,
  4407. bottom: 81 / 2644
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Small",
  4414. height: math.unit(4.5, "meters")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(1500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Megamacro",
  4423. height: math.unit(150, "km")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(27000, "km")
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(6, "feet"),
  4436. weight: math.unit(225, "lb"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/abysgar/front.svg"
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Small",
  4446. height: math.unit(4.5, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(1250, "meters"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(125, "km")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(26000, "km")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(180, "lb"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/yakuz/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Small",
  4478. height: math.unit(5, "meters")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(1500, "meters"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Megamacro",
  4487. height: math.unit(200, "km")
  4488. },
  4489. {
  4490. name: "Gigamacro",
  4491. height: math.unit(100000, "km")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(175, "lb"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/mirova/front.svg",
  4504. extra: 3334 / 3071,
  4505. bottom: 42 / 3375.6
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Small",
  4512. height: math.unit(5, "meters")
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(900, "meters"),
  4517. default: true
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(135, "km")
  4522. },
  4523. {
  4524. name: "Gigamacro",
  4525. height: math.unit(20000, "km")
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4531. {
  4532. side: {
  4533. height: math.unit(28.35, "feet"),
  4534. weight: math.unit(99.75, "tons"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/asana-mech/side.svg",
  4538. extra: 923 / 699,
  4539. bottom: 50 / 975
  4540. }
  4541. },
  4542. chaingun: {
  4543. height: math.unit(7, "feet"),
  4544. weight: math.unit(2400, "lb"),
  4545. name: "Chaingun",
  4546. image: {
  4547. source: "./media/characters/asana-mech/chaingun.svg"
  4548. }
  4549. },
  4550. laser: {
  4551. height: math.unit(7.12, "feet"),
  4552. weight: math.unit(2000, "lb"),
  4553. name: "Laser",
  4554. image: {
  4555. source: "./media/characters/asana-mech/laser.svg"
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(28.35, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(2500, "feet")
  4568. },
  4569. {
  4570. name: "Megamacro",
  4571. height: math.unit(25, "miles")
  4572. },
  4573. {
  4574. name: "Examacro",
  4575. height: math.unit(6e8, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(5, "meters"),
  4584. weight: math.unit(1000, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/asche/front.svg",
  4588. extra: 1258 / 1190,
  4589. bottom: 47 / 1305
  4590. }
  4591. },
  4592. frontUnderwear: {
  4593. height: math.unit(5, "meters"),
  4594. weight: math.unit(1000, "kg"),
  4595. name: "Front (Underwear)",
  4596. image: {
  4597. source: "./media/characters/asche/front-underwear.svg",
  4598. extra: 1258 / 1190,
  4599. bottom: 47 / 1305
  4600. }
  4601. },
  4602. frontDressed: {
  4603. height: math.unit(5, "meters"),
  4604. weight: math.unit(1000, "kg"),
  4605. name: "Front (Dressed)",
  4606. image: {
  4607. source: "./media/characters/asche/front-dressed.svg",
  4608. extra: 1258 / 1190,
  4609. bottom: 47 / 1305
  4610. }
  4611. },
  4612. frontArmor: {
  4613. height: math.unit(5, "meters"),
  4614. weight: math.unit(1000, "kg"),
  4615. name: "Front (Armored)",
  4616. image: {
  4617. source: "./media/characters/asche/front-armored.svg",
  4618. extra: 1374 / 1308,
  4619. bottom: 23 / 1397
  4620. }
  4621. },
  4622. mp724: {
  4623. height: math.unit(0.96, "meters"),
  4624. weight: math.unit(38, "kg"),
  4625. name: "H&K MP724",
  4626. image: {
  4627. source: "./media/characters/asche/h&k-mp724.svg"
  4628. }
  4629. },
  4630. side: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/asche/side.svg",
  4636. extra: 1717 / 1609,
  4637. bottom: 0.005
  4638. }
  4639. },
  4640. back: {
  4641. height: math.unit(5, "meters"),
  4642. weight: math.unit(1000, "kg"),
  4643. name: "Back",
  4644. image: {
  4645. source: "./media/characters/asche/back.svg",
  4646. extra: 1570 / 1501
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "DEFCON 5",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "DEFCON 4",
  4657. height: math.unit(500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "DEFCON 3",
  4662. height: math.unit(5, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 2",
  4666. height: math.unit(500, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 1",
  4670. height: math.unit(500000, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 0",
  4674. height: math.unit(3, "gigaparsecs")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(76, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/gale/front.svg"
  4687. }
  4688. },
  4689. frontAlt1: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front (Alt 1)",
  4693. image: {
  4694. source: "./media/characters/gale/front-alt-1.svg"
  4695. }
  4696. },
  4697. frontAlt2: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(76, "kg"),
  4700. name: "Front (Alt 2)",
  4701. image: {
  4702. source: "./media/characters/gale/front-alt-2.svg"
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(7, "feet")
  4710. },
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(150, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(300, "feet")
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4724. {
  4725. front: {
  4726. height: math.unit(5 + 10/12, "feet"),
  4727. weight: math.unit(67, "kg"),
  4728. name: "Front",
  4729. image: {
  4730. source: "./media/characters/draylen/front.svg",
  4731. extra: 832/777,
  4732. bottom: 85/917
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(5 + 10/12, "feet")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(150, "feet"),
  4744. default: true
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(7 + 9 / 12, "feet"),
  4753. weight: math.unit(379, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/chez/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(7 + 9 / 12, "feet"),
  4761. weight: math.unit(379, "lbs"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/chez/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Normal",
  4771. height: math.unit(7 + 9 / 12, "feet"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "God King",
  4776. height: math.unit(9750000, "meters")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(275, "lbs"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/kaylum/front.svg",
  4789. bottom: 0.01,
  4790. extra: 1166 / 1031
  4791. }
  4792. },
  4793. frontWingless: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(275, "lbs"),
  4796. name: "Front (Wingless)",
  4797. image: {
  4798. source: "./media/characters/kaylum/front-wingless.svg",
  4799. bottom: 0.01,
  4800. extra: 1117 / 1031
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(3.05, "meters")
  4808. },
  4809. {
  4810. name: "Master",
  4811. height: math.unit(5.5, "meters")
  4812. },
  4813. {
  4814. name: "Rampage",
  4815. height: math.unit(19, "meters")
  4816. },
  4817. {
  4818. name: "Macro Lite",
  4819. height: math.unit(37, "meters")
  4820. },
  4821. {
  4822. name: "Hyper Predator",
  4823. height: math.unit(61, "meters")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(138, "meters"),
  4828. default: true
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(5 + 5 / 12, "feet"),
  4837. weight: math.unit(120, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/geta/front.svg",
  4841. extra: 1003/933,
  4842. bottom: 21/1024
  4843. }
  4844. },
  4845. paw: {
  4846. height: math.unit(0.35, "feet"),
  4847. name: "Paw",
  4848. image: {
  4849. source: "./media/characters/geta/paw.svg"
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Micro",
  4856. height: math.unit(3, "inches"),
  4857. default: true
  4858. },
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(5 + 5 / 12, "feet")
  4862. }
  4863. ]
  4864. ))
  4865. characterMakers.push(() => makeCharacter(
  4866. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4867. {
  4868. front: {
  4869. height: math.unit(6, "feet"),
  4870. weight: math.unit(300, "lbs"),
  4871. name: "Front",
  4872. image: {
  4873. source: "./media/characters/tyrnn/front.svg"
  4874. }
  4875. }
  4876. },
  4877. [
  4878. {
  4879. name: "Main Height",
  4880. height: math.unit(355, "feet"),
  4881. default: true
  4882. },
  4883. {
  4884. name: "Fave. Height",
  4885. height: math.unit(2400, "feet")
  4886. }
  4887. ]
  4888. ))
  4889. characterMakers.push(() => makeCharacter(
  4890. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4891. {
  4892. front: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(300, "lbs"),
  4895. name: "Front",
  4896. image: {
  4897. source: "./media/characters/appledectomy/front.svg"
  4898. }
  4899. }
  4900. },
  4901. [
  4902. {
  4903. name: "Macro",
  4904. height: math.unit(2500, "feet")
  4905. },
  4906. {
  4907. name: "Megamacro",
  4908. height: math.unit(50, "miles"),
  4909. default: true
  4910. },
  4911. {
  4912. name: "Gigamacro",
  4913. height: math.unit(5000, "miles")
  4914. },
  4915. {
  4916. name: "Teramacro",
  4917. height: math.unit(250000, "miles")
  4918. },
  4919. ]
  4920. ))
  4921. characterMakers.push(() => makeCharacter(
  4922. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4923. {
  4924. front: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(200, "lbs"),
  4927. name: "Front",
  4928. image: {
  4929. source: "./media/characters/vulpes/front.svg",
  4930. extra: 573 / 543,
  4931. bottom: 0.033
  4932. }
  4933. },
  4934. side: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(200, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/vulpes/side.svg",
  4940. extra: 577 / 549,
  4941. bottom: 11 / 588
  4942. }
  4943. },
  4944. back: {
  4945. height: math.unit(6, "feet"),
  4946. weight: math.unit(200, "lbs"),
  4947. name: "Back",
  4948. image: {
  4949. source: "./media/characters/vulpes/back.svg",
  4950. extra: 573 / 549,
  4951. bottom: 20 / 593
  4952. }
  4953. },
  4954. feet: {
  4955. height: math.unit(1.276, "feet"),
  4956. name: "Feet",
  4957. image: {
  4958. source: "./media/characters/vulpes/feet.svg"
  4959. }
  4960. },
  4961. maw: {
  4962. height: math.unit(1.18, "feet"),
  4963. name: "Maw",
  4964. image: {
  4965. source: "./media/characters/vulpes/maw.svg"
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Micro",
  4972. height: math.unit(2, "inches")
  4973. },
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(6.3, "feet")
  4977. },
  4978. {
  4979. name: "Macro",
  4980. height: math.unit(850, "feet")
  4981. },
  4982. {
  4983. name: "Megamacro",
  4984. height: math.unit(7500, "feet"),
  4985. default: true
  4986. },
  4987. {
  4988. name: "Gigamacro",
  4989. height: math.unit(570000, "miles")
  4990. }
  4991. ]
  4992. ))
  4993. characterMakers.push(() => makeCharacter(
  4994. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4995. {
  4996. front: {
  4997. height: math.unit(6, "feet"),
  4998. weight: math.unit(210, "lbs"),
  4999. name: "Front",
  5000. image: {
  5001. source: "./media/characters/rain-fallen/front.svg"
  5002. }
  5003. },
  5004. side: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(210, "lbs"),
  5007. name: "Side",
  5008. image: {
  5009. source: "./media/characters/rain-fallen/side.svg"
  5010. }
  5011. },
  5012. back: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(210, "lbs"),
  5015. name: "Back",
  5016. image: {
  5017. source: "./media/characters/rain-fallen/back.svg"
  5018. }
  5019. },
  5020. feral: {
  5021. height: math.unit(9, "feet"),
  5022. weight: math.unit(700, "lbs"),
  5023. name: "Feral",
  5024. image: {
  5025. source: "./media/characters/rain-fallen/feral.svg"
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Meddling with Mortals",
  5032. height: math.unit(8 + 8/12, "feet")
  5033. },
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(5, "meter")
  5037. },
  5038. {
  5039. name: "Macro",
  5040. height: math.unit(150, "meter"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Megamacro",
  5045. height: math.unit(278e6, "meter")
  5046. },
  5047. {
  5048. name: "Gigamacro",
  5049. height: math.unit(2e9, "meter")
  5050. },
  5051. {
  5052. name: "Teramacro",
  5053. height: math.unit(8e12, "meter")
  5054. },
  5055. {
  5056. name: "Devourer",
  5057. height: math.unit(14, "zettameters")
  5058. },
  5059. {
  5060. name: "Scarlet King",
  5061. height: math.unit(18, "yottameters")
  5062. },
  5063. {
  5064. name: "Void",
  5065. height: math.unit(1e88, "yottameters")
  5066. }
  5067. ]
  5068. ))
  5069. characterMakers.push(() => makeCharacter(
  5070. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5071. {
  5072. standing: {
  5073. height: math.unit(6, "feet"),
  5074. weight: math.unit(180, "lbs"),
  5075. name: "Standing",
  5076. image: {
  5077. source: "./media/characters/zaakira/standing.svg",
  5078. extra: 1599/1504,
  5079. bottom: 39/1638
  5080. }
  5081. },
  5082. laying: {
  5083. height: math.unit(3, "feet"),
  5084. weight: math.unit(180, "lbs"),
  5085. name: "Laying",
  5086. image: {
  5087. source: "./media/characters/zaakira/laying.svg"
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(12, "feet")
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(279, "feet"),
  5099. default: true
  5100. }
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5105. {
  5106. femSfw: {
  5107. height: math.unit(8, "feet"),
  5108. weight: math.unit(350, "lb"),
  5109. name: "Fem",
  5110. image: {
  5111. source: "./media/characters/sigvald/fem-sfw.svg",
  5112. extra: 182 / 164,
  5113. bottom: 8.7 / 190.5
  5114. }
  5115. },
  5116. femNsfw: {
  5117. height: math.unit(8, "feet"),
  5118. weight: math.unit(350, "lb"),
  5119. name: "Fem (NSFW)",
  5120. image: {
  5121. source: "./media/characters/sigvald/fem-nsfw.svg",
  5122. extra: 182 / 164,
  5123. bottom: 8.7 / 190.5
  5124. }
  5125. },
  5126. maleNsfw: {
  5127. height: math.unit(8, "feet"),
  5128. weight: math.unit(350, "lb"),
  5129. name: "Male (NSFW)",
  5130. image: {
  5131. source: "./media/characters/sigvald/male-nsfw.svg",
  5132. extra: 182 / 164,
  5133. bottom: 8.7 / 190.5
  5134. }
  5135. },
  5136. hermNsfw: {
  5137. height: math.unit(8, "feet"),
  5138. weight: math.unit(350, "lb"),
  5139. name: "Herm (NSFW)",
  5140. image: {
  5141. source: "./media/characters/sigvald/herm-nsfw.svg",
  5142. extra: 182 / 164,
  5143. bottom: 8.7 / 190.5
  5144. }
  5145. },
  5146. dick: {
  5147. height: math.unit(2.36, "feet"),
  5148. name: "Dick",
  5149. image: {
  5150. source: "./media/characters/sigvald/dick.svg"
  5151. }
  5152. },
  5153. eye: {
  5154. height: math.unit(0.31, "feet"),
  5155. name: "Eye",
  5156. image: {
  5157. source: "./media/characters/sigvald/eye.svg"
  5158. }
  5159. },
  5160. mouth: {
  5161. height: math.unit(0.92, "feet"),
  5162. name: "Mouth",
  5163. image: {
  5164. source: "./media/characters/sigvald/mouth.svg"
  5165. }
  5166. },
  5167. paws: {
  5168. height: math.unit(2.2, "feet"),
  5169. name: "Paws",
  5170. image: {
  5171. source: "./media/characters/sigvald/paws.svg"
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(8, "feet")
  5179. },
  5180. {
  5181. name: "Large",
  5182. height: math.unit(12, "feet")
  5183. },
  5184. {
  5185. name: "Larger",
  5186. height: math.unit(20, "feet")
  5187. },
  5188. {
  5189. name: "Macro",
  5190. height: math.unit(150, "feet")
  5191. },
  5192. {
  5193. name: "Macro+",
  5194. height: math.unit(200, "feet"),
  5195. default: true
  5196. },
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5201. {
  5202. side: {
  5203. height: math.unit(12, "feet"),
  5204. weight: math.unit(2000, "kg"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/scott/side.svg",
  5208. extra: 754 / 724,
  5209. bottom: 0.069
  5210. }
  5211. },
  5212. upright: {
  5213. height: math.unit(12, "feet"),
  5214. weight: math.unit(2000, "kg"),
  5215. name: "Upright",
  5216. image: {
  5217. source: "./media/characters/scott/upright.svg",
  5218. extra: 3881 / 3722,
  5219. bottom: 0.05
  5220. }
  5221. },
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(12, "feet"),
  5227. default: true
  5228. },
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5233. {
  5234. side: {
  5235. height: math.unit(8, "meters"),
  5236. weight: math.unit(84755, "lbs"),
  5237. name: "Side",
  5238. image: {
  5239. source: "./media/characters/tobias/side.svg",
  5240. extra: 1474 / 1096,
  5241. bottom: 38.9 / 1513.1235
  5242. }
  5243. },
  5244. },
  5245. [
  5246. {
  5247. name: "Normal",
  5248. height: math.unit(8, "meters"),
  5249. default: true
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5255. {
  5256. front: {
  5257. height: math.unit(5.5, "feet"),
  5258. weight: math.unit(400, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/kieran/front.svg",
  5262. extra: 2694 / 2364,
  5263. bottom: 217 / 2908
  5264. }
  5265. },
  5266. side: {
  5267. height: math.unit(5.5, "feet"),
  5268. weight: math.unit(400, "lbs"),
  5269. name: "Side",
  5270. image: {
  5271. source: "./media/characters/kieran/side.svg",
  5272. extra: 875 / 777,
  5273. bottom: 84.6 / 959
  5274. }
  5275. },
  5276. },
  5277. [
  5278. {
  5279. name: "Normal",
  5280. height: math.unit(5.5, "feet"),
  5281. default: true
  5282. },
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5287. {
  5288. side: {
  5289. height: math.unit(2, "meters"),
  5290. weight: math.unit(70, "kg"),
  5291. name: "Side",
  5292. image: {
  5293. source: "./media/characters/sanya/side.svg",
  5294. bottom: 0.02,
  5295. extra: 1.02
  5296. }
  5297. },
  5298. },
  5299. [
  5300. {
  5301. name: "Small",
  5302. height: math.unit(2, "meters")
  5303. },
  5304. {
  5305. name: "Normal",
  5306. height: math.unit(3, "meters")
  5307. },
  5308. {
  5309. name: "Macro",
  5310. height: math.unit(16, "meters"),
  5311. default: true
  5312. },
  5313. ]
  5314. ))
  5315. characterMakers.push(() => makeCharacter(
  5316. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5317. {
  5318. front: {
  5319. height: math.unit(2, "meters"),
  5320. weight: math.unit(120, "kg"),
  5321. name: "Front",
  5322. image: {
  5323. source: "./media/characters/miranda/front.svg",
  5324. extra: 195 / 185,
  5325. bottom: 10.9 / 206.5
  5326. }
  5327. },
  5328. back: {
  5329. height: math.unit(2, "meters"),
  5330. weight: math.unit(120, "kg"),
  5331. name: "Back",
  5332. image: {
  5333. source: "./media/characters/miranda/back.svg",
  5334. extra: 201 / 193,
  5335. bottom: 2.3 / 203.7
  5336. }
  5337. },
  5338. },
  5339. [
  5340. {
  5341. name: "Normal",
  5342. height: math.unit(10, "feet"),
  5343. default: true
  5344. }
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "James", species: ["deer"], tags: ["anthro"] },
  5349. {
  5350. side: {
  5351. height: math.unit(2, "meters"),
  5352. weight: math.unit(100, "kg"),
  5353. name: "Front",
  5354. image: {
  5355. source: "./media/characters/james/front.svg",
  5356. extra: 10 / 8.5
  5357. }
  5358. },
  5359. },
  5360. [
  5361. {
  5362. name: "Normal",
  5363. height: math.unit(8.5, "feet"),
  5364. default: true
  5365. }
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5370. {
  5371. side: {
  5372. height: math.unit(9.5, "feet"),
  5373. weight: math.unit(2500, "lbs"),
  5374. name: "Side",
  5375. image: {
  5376. source: "./media/characters/heather/side.svg"
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Normal",
  5383. height: math.unit(9.5, "feet"),
  5384. default: true
  5385. }
  5386. ]
  5387. ))
  5388. characterMakers.push(() => makeCharacter(
  5389. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5390. {
  5391. side: {
  5392. height: math.unit(6.5, "feet"),
  5393. weight: math.unit(400, "lbs"),
  5394. name: "Side",
  5395. image: {
  5396. source: "./media/characters/lukas/side.svg",
  5397. extra: 7.25 / 6.5
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(6.5, "feet"),
  5405. default: true
  5406. }
  5407. ]
  5408. ))
  5409. characterMakers.push(() => makeCharacter(
  5410. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5411. {
  5412. side: {
  5413. height: math.unit(5, "feet"),
  5414. weight: math.unit(3000, "lbs"),
  5415. name: "Side",
  5416. image: {
  5417. source: "./media/characters/louise/side.svg"
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(5, "feet"),
  5425. default: true
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5431. {
  5432. side: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(150, "lbs"),
  5435. name: "Side",
  5436. image: {
  5437. source: "./media/characters/ramona/side.svg",
  5438. extra: 871/854,
  5439. bottom: 41/912
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(5.3, "meters"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(20, "stories")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(50, "stories")
  5456. },
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5461. {
  5462. standing: {
  5463. height: math.unit(5.75, "feet"),
  5464. weight: math.unit(160, "lbs"),
  5465. name: "Standing",
  5466. image: {
  5467. source: "./media/characters/deerpuff/standing.svg",
  5468. extra: 682 / 624
  5469. }
  5470. },
  5471. sitting: {
  5472. height: math.unit(5.75 / 1.79, "feet"),
  5473. weight: math.unit(160, "lbs"),
  5474. name: "Sitting",
  5475. image: {
  5476. source: "./media/characters/deerpuff/sitting.svg",
  5477. bottom: 44 / 400,
  5478. extra: 1
  5479. }
  5480. },
  5481. taurLaying: {
  5482. height: math.unit(6, "feet"),
  5483. weight: math.unit(400, "lbs"),
  5484. name: "Taur (Laying)",
  5485. image: {
  5486. source: "./media/characters/deerpuff/taur-laying.svg"
  5487. }
  5488. },
  5489. },
  5490. [
  5491. {
  5492. name: "Puffball",
  5493. height: math.unit(6, "inches")
  5494. },
  5495. {
  5496. name: "Normalpuff",
  5497. height: math.unit(5.75, "feet")
  5498. },
  5499. {
  5500. name: "Macropuff",
  5501. height: math.unit(1500, "feet"),
  5502. default: true
  5503. },
  5504. {
  5505. name: "Megapuff",
  5506. height: math.unit(500, "miles")
  5507. },
  5508. {
  5509. name: "Gigapuff",
  5510. height: math.unit(250000, "miles")
  5511. },
  5512. {
  5513. name: "Omegapuff",
  5514. height: math.unit(1000, "lightyears")
  5515. },
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5520. {
  5521. stomping: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(170, "lbs"),
  5524. name: "Stomping",
  5525. image: {
  5526. source: "./media/characters/vivian/stomping.svg"
  5527. }
  5528. },
  5529. sitting: {
  5530. height: math.unit(6 / 1.75, "feet"),
  5531. weight: math.unit(170, "lbs"),
  5532. name: "Sitting",
  5533. image: {
  5534. source: "./media/characters/vivian/sitting.svg",
  5535. bottom: 1 / 6.4,
  5536. extra: 1,
  5537. }
  5538. },
  5539. },
  5540. [
  5541. {
  5542. name: "Normal",
  5543. height: math.unit(7, "feet"),
  5544. default: true
  5545. },
  5546. {
  5547. name: "Macro",
  5548. height: math.unit(10, "stories")
  5549. },
  5550. {
  5551. name: "Macro+",
  5552. height: math.unit(30, "stories")
  5553. },
  5554. {
  5555. name: "Megamacro",
  5556. height: math.unit(10, "miles")
  5557. },
  5558. {
  5559. name: "Megamacro+",
  5560. height: math.unit(2750000, "meters")
  5561. },
  5562. ]
  5563. ))
  5564. characterMakers.push(() => makeCharacter(
  5565. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5566. {
  5567. front: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(160, "lbs"),
  5570. name: "Front",
  5571. image: {
  5572. source: "./media/characters/prince/front.svg",
  5573. extra: 3400 / 3000
  5574. }
  5575. },
  5576. jumping: {
  5577. height: math.unit(6, "feet"),
  5578. weight: math.unit(160, "lbs"),
  5579. name: "Jumping",
  5580. image: {
  5581. source: "./media/characters/prince/jump.svg",
  5582. extra: 2555 / 2134
  5583. }
  5584. },
  5585. },
  5586. [
  5587. {
  5588. name: "Normal",
  5589. height: math.unit(7.75, "feet"),
  5590. default: true
  5591. },
  5592. {
  5593. name: "Not cute",
  5594. height: math.unit(17, "feet")
  5595. },
  5596. {
  5597. name: "I said NOT",
  5598. height: math.unit(91, "feet")
  5599. },
  5600. {
  5601. name: "Please stop",
  5602. height: math.unit(560, "feet")
  5603. },
  5604. {
  5605. name: "What have you done",
  5606. height: math.unit(2200, "feet")
  5607. },
  5608. {
  5609. name: "Deer God",
  5610. height: math.unit(3.6, "miles")
  5611. },
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5616. {
  5617. standing: {
  5618. height: math.unit(6, "feet"),
  5619. weight: math.unit(300, "lbs"),
  5620. name: "Standing",
  5621. image: {
  5622. source: "./media/characters/psymon/standing.svg",
  5623. extra: 1888 / 1810,
  5624. bottom: 0.05
  5625. }
  5626. },
  5627. slithering: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(300, "lbs"),
  5630. name: "Slithering",
  5631. image: {
  5632. source: "./media/characters/psymon/slithering.svg",
  5633. extra: 1330 / 1224
  5634. }
  5635. },
  5636. slitheringAlt: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(300, "lbs"),
  5639. name: "Slithering (Alt)",
  5640. image: {
  5641. source: "./media/characters/psymon/slithering-alt.svg",
  5642. extra: 1330 / 1224
  5643. }
  5644. },
  5645. },
  5646. [
  5647. {
  5648. name: "Normal",
  5649. height: math.unit(11.25, "feet"),
  5650. default: true
  5651. },
  5652. {
  5653. name: "Large",
  5654. height: math.unit(27, "feet")
  5655. },
  5656. {
  5657. name: "Giant",
  5658. height: math.unit(87, "feet")
  5659. },
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(365, "feet")
  5663. },
  5664. {
  5665. name: "Megamacro",
  5666. height: math.unit(3, "miles")
  5667. },
  5668. {
  5669. name: "World Serpent",
  5670. height: math.unit(8000, "miles")
  5671. },
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5676. {
  5677. front: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(180, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/daimos/front.svg",
  5683. extra: 4160 / 3897,
  5684. bottom: 0.021
  5685. }
  5686. }
  5687. },
  5688. [
  5689. {
  5690. name: "Normal",
  5691. height: math.unit(8, "feet"),
  5692. default: true
  5693. },
  5694. {
  5695. name: "Big Dog",
  5696. height: math.unit(22, "feet")
  5697. },
  5698. {
  5699. name: "Macro",
  5700. height: math.unit(127, "feet")
  5701. },
  5702. {
  5703. name: "Megamacro",
  5704. height: math.unit(3600, "feet")
  5705. },
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5710. {
  5711. side: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(180, "lbs"),
  5714. name: "Side",
  5715. image: {
  5716. source: "./media/characters/blake/side.svg",
  5717. extra: 1212 / 1120,
  5718. bottom: 0.05
  5719. }
  5720. },
  5721. crouched: {
  5722. height: math.unit(6 * 0.57, "feet"),
  5723. weight: math.unit(180, "lbs"),
  5724. name: "Crouched",
  5725. image: {
  5726. source: "./media/characters/blake/crouched.svg",
  5727. extra: 840 / 587,
  5728. bottom: 0.04
  5729. }
  5730. },
  5731. bent: {
  5732. height: math.unit(6 * 0.75, "feet"),
  5733. weight: math.unit(180, "lbs"),
  5734. name: "Bent",
  5735. image: {
  5736. source: "./media/characters/blake/bent.svg",
  5737. extra: 592 / 544,
  5738. bottom: 0.035
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(8 + 1 / 6, "feet"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Big Backside",
  5750. height: math.unit(37, "feet")
  5751. },
  5752. {
  5753. name: "Subway Shredder",
  5754. height: math.unit(72, "feet")
  5755. },
  5756. {
  5757. name: "City Carver",
  5758. height: math.unit(1675, "feet")
  5759. },
  5760. {
  5761. name: "Tectonic Tweaker",
  5762. height: math.unit(2300, "miles")
  5763. },
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(180, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/guisetto/front.svg",
  5775. extra: 856 / 817,
  5776. bottom: 0.06
  5777. }
  5778. },
  5779. airborne: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(180, "lbs"),
  5782. name: "Airborne",
  5783. image: {
  5784. source: "./media/characters/guisetto/airborne.svg",
  5785. extra: 584 / 525
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Normal",
  5792. height: math.unit(10 + 11 / 12, "feet"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Large",
  5797. height: math.unit(35, "feet")
  5798. },
  5799. {
  5800. name: "Macro",
  5801. height: math.unit(475, "feet")
  5802. },
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(180, "lbs"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/luxor/front.svg",
  5814. extra: 2940 / 2152
  5815. }
  5816. },
  5817. back: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(180, "lbs"),
  5820. name: "Back",
  5821. image: {
  5822. source: "./media/characters/luxor/back.svg",
  5823. extra: 1083 / 960
  5824. }
  5825. },
  5826. },
  5827. [
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(5 + 5 / 6, "feet"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Lamp",
  5835. height: math.unit(50, "feet")
  5836. },
  5837. {
  5838. name: "Lämp",
  5839. height: math.unit(300, "feet")
  5840. },
  5841. {
  5842. name: "The sun is a lamp",
  5843. height: math.unit(250000, "miles")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5849. {
  5850. front: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(50, "lbs"),
  5853. name: "Front",
  5854. image: {
  5855. source: "./media/characters/huoyan/front.svg"
  5856. }
  5857. },
  5858. side: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(180, "lbs"),
  5861. name: "Side",
  5862. image: {
  5863. source: "./media/characters/huoyan/side.svg"
  5864. }
  5865. },
  5866. },
  5867. [
  5868. {
  5869. name: "Chef",
  5870. height: math.unit(9, "feet")
  5871. },
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(65, "feet"),
  5875. default: true
  5876. },
  5877. {
  5878. name: "Macro",
  5879. height: math.unit(780, "feet")
  5880. },
  5881. {
  5882. name: "Flaming Mountain",
  5883. height: math.unit(4.8, "miles")
  5884. },
  5885. {
  5886. name: "Celestial",
  5887. height: math.unit(765000, "miles")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(5 + 3 / 4, "feet"),
  5896. weight: math.unit(120, "lbs"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/tails/front.svg"
  5900. }
  5901. }
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(5 + 3 / 4, "feet"),
  5907. default: true
  5908. }
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(4, "feet"),
  5916. weight: math.unit(50, "lbs"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/rainy/front.svg"
  5920. }
  5921. }
  5922. },
  5923. [
  5924. {
  5925. name: "Macro",
  5926. height: math.unit(800, "feet"),
  5927. default: true
  5928. }
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(150, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/rainier/front.svg"
  5940. }
  5941. }
  5942. },
  5943. [
  5944. {
  5945. name: "Micro",
  5946. height: math.unit(2, "mm"),
  5947. default: true
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(8 + 4/12, "feet"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/andy-renard/front.svg",
  5959. extra: 1839/1726,
  5960. bottom: 134/1973
  5961. }
  5962. },
  5963. back: {
  5964. height: math.unit(8 + 4/12, "feet"),
  5965. name: "Back",
  5966. image: {
  5967. source: "./media/characters/andy-renard/back.svg",
  5968. extra: 1838/1710,
  5969. bottom: 105/1943
  5970. }
  5971. },
  5972. },
  5973. [
  5974. {
  5975. name: "Tall",
  5976. height: math.unit(8 + 4/12, "feet")
  5977. },
  5978. {
  5979. name: "Mini Macro",
  5980. height: math.unit(15, "feet"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Macro",
  5985. height: math.unit(100, "feet")
  5986. },
  5987. {
  5988. name: "Mega Macro",
  5989. height: math.unit(1000, "feet")
  5990. },
  5991. {
  5992. name: "Giga Macro",
  5993. height: math.unit(10, "miles")
  5994. },
  5995. {
  5996. name: "God Macro",
  5997. height: math.unit(1, "multiverse")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(210, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/cimmaron/front-sfw.svg",
  6010. extra: 701 / 676,
  6011. bottom: 0.046
  6012. }
  6013. },
  6014. back: {
  6015. height: math.unit(6, "feet"),
  6016. weight: math.unit(210, "lbs"),
  6017. name: "Back",
  6018. image: {
  6019. source: "./media/characters/cimmaron/back-sfw.svg",
  6020. extra: 701 / 676,
  6021. bottom: 0.046
  6022. }
  6023. },
  6024. frontNsfw: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(210, "lbs"),
  6027. name: "Front (NSFW)",
  6028. image: {
  6029. source: "./media/characters/cimmaron/front-nsfw.svg",
  6030. extra: 701 / 676,
  6031. bottom: 0.046
  6032. }
  6033. },
  6034. backNsfw: {
  6035. height: math.unit(6, "feet"),
  6036. weight: math.unit(210, "lbs"),
  6037. name: "Back (NSFW)",
  6038. image: {
  6039. source: "./media/characters/cimmaron/back-nsfw.svg",
  6040. extra: 701 / 676,
  6041. bottom: 0.046
  6042. }
  6043. },
  6044. dick: {
  6045. height: math.unit(1.714, "feet"),
  6046. name: "Dick",
  6047. image: {
  6048. source: "./media/characters/cimmaron/dick.svg"
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(6, "feet"),
  6056. default: true
  6057. },
  6058. {
  6059. name: "Macro Mayor",
  6060. height: math.unit(350, "meters")
  6061. },
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6066. {
  6067. front: {
  6068. height: math.unit(6, "feet"),
  6069. weight: math.unit(200, "lbs"),
  6070. name: "Front",
  6071. image: {
  6072. source: "./media/characters/akari/front.svg",
  6073. extra: 962 / 901,
  6074. bottom: 0.04
  6075. }
  6076. }
  6077. },
  6078. [
  6079. {
  6080. name: "Micro",
  6081. height: math.unit(5, "inches"),
  6082. default: true
  6083. },
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(7, "feet")
  6087. },
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6092. {
  6093. front: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(140, "lbs"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/cynosura/front.svg",
  6099. extra: 896 / 847
  6100. }
  6101. },
  6102. back: {
  6103. height: math.unit(6, "feet"),
  6104. weight: math.unit(140, "lbs"),
  6105. name: "Back",
  6106. image: {
  6107. source: "./media/characters/cynosura/back.svg",
  6108. extra: 1365 / 1250
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Micro",
  6115. height: math.unit(4, "inches")
  6116. },
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(5.75, "feet"),
  6120. default: true
  6121. },
  6122. {
  6123. name: "Tall",
  6124. height: math.unit(10, "feet")
  6125. },
  6126. {
  6127. name: "Big",
  6128. height: math.unit(20, "feet")
  6129. },
  6130. {
  6131. name: "Macro",
  6132. height: math.unit(50, "feet")
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(13 + 2/12, "feet"),
  6141. weight: math.unit(800, "kg"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/gin/front.svg",
  6145. extra: 1312/1191,
  6146. bottom: 45/1357
  6147. }
  6148. },
  6149. mouth: {
  6150. height: math.unit(2.39 * 1.8, "feet"),
  6151. name: "Mouth",
  6152. image: {
  6153. source: "./media/characters/gin/mouth.svg"
  6154. }
  6155. },
  6156. hand: {
  6157. height: math.unit(1.57 * 2.19, "feet"),
  6158. name: "Hand",
  6159. image: {
  6160. source: "./media/characters/gin/hand.svg"
  6161. }
  6162. },
  6163. foot: {
  6164. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6165. name: "Foot",
  6166. image: {
  6167. source: "./media/characters/gin/foot.svg"
  6168. }
  6169. },
  6170. sole: {
  6171. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6172. name: "Sole",
  6173. image: {
  6174. source: "./media/characters/gin/sole.svg"
  6175. }
  6176. },
  6177. },
  6178. [
  6179. {
  6180. name: "Very Small",
  6181. height: math.unit(13 + 2 / 12, "feet")
  6182. },
  6183. {
  6184. name: "Micro",
  6185. height: math.unit(600, "miles")
  6186. },
  6187. {
  6188. name: "Regular",
  6189. height: math.unit(20, "earths"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Macro",
  6194. height: math.unit(2.2, "solarradii")
  6195. },
  6196. {
  6197. name: "Teramacro",
  6198. height: math.unit(1.2, "galaxies")
  6199. },
  6200. {
  6201. name: "Omegamacro",
  6202. height: math.unit(200, "universes")
  6203. },
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(6 + 1 / 6, "feet"),
  6211. weight: math.unit(178, "lbs"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/guy/front.svg"
  6215. }
  6216. }
  6217. },
  6218. [
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(6 + 1 / 6, "feet"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Large",
  6226. height: math.unit(25 + 7 / 12, "feet")
  6227. },
  6228. {
  6229. name: "Macro",
  6230. height: math.unit(60 + 9 / 12, "feet")
  6231. },
  6232. {
  6233. name: "Macro+",
  6234. height: math.unit(246, "feet")
  6235. },
  6236. {
  6237. name: "Macro++",
  6238. height: math.unit(878, "feet")
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(9, "feet"),
  6247. weight: math.unit(800, "lbs"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/tiberius/front.svg",
  6251. extra: 2295 / 2071
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(9, "feet"),
  6256. weight: math.unit(800, "lbs"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/tiberius/back.svg",
  6260. extra: 2373 / 2160
  6261. }
  6262. },
  6263. },
  6264. [
  6265. {
  6266. name: "Normal",
  6267. height: math.unit(9, "feet"),
  6268. default: true
  6269. }
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(600, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/surgo/front.svg",
  6281. extra: 3591 / 2227
  6282. }
  6283. },
  6284. back: {
  6285. height: math.unit(6, "feet"),
  6286. weight: math.unit(600, "lbs"),
  6287. name: "Back",
  6288. image: {
  6289. source: "./media/characters/surgo/back.svg",
  6290. extra: 3557 / 2228
  6291. }
  6292. },
  6293. laying: {
  6294. height: math.unit(6 * 0.85, "feet"),
  6295. weight: math.unit(600, "lbs"),
  6296. name: "Laying",
  6297. image: {
  6298. source: "./media/characters/surgo/laying.svg"
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(6, "feet"),
  6306. default: true
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6312. {
  6313. side: {
  6314. height: math.unit(6, "feet"),
  6315. weight: math.unit(150, "lbs"),
  6316. name: "Side",
  6317. image: {
  6318. source: "./media/characters/cibus/side.svg",
  6319. extra: 800 / 400
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Normal",
  6326. height: math.unit(6, "feet"),
  6327. default: true
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6333. {
  6334. front: {
  6335. height: math.unit(6, "feet"),
  6336. weight: math.unit(240, "lbs"),
  6337. name: "Front",
  6338. image: {
  6339. source: "./media/characters/nibbles/front.svg"
  6340. }
  6341. },
  6342. side: {
  6343. height: math.unit(6, "feet"),
  6344. weight: math.unit(240, "lbs"),
  6345. name: "Side",
  6346. image: {
  6347. source: "./media/characters/nibbles/side.svg"
  6348. }
  6349. },
  6350. },
  6351. [
  6352. {
  6353. name: "Normal",
  6354. height: math.unit(9, "feet"),
  6355. default: true
  6356. }
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6361. {
  6362. side: {
  6363. height: math.unit(5 + 1 / 6, "feet"),
  6364. weight: math.unit(130, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/rikky/side.svg",
  6368. extra: 851 / 801
  6369. }
  6370. },
  6371. },
  6372. [
  6373. {
  6374. name: "Normal",
  6375. height: math.unit(5 + 1 / 6, "feet")
  6376. },
  6377. {
  6378. name: "Macro",
  6379. height: math.unit(152, "feet"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Megamacro",
  6384. height: math.unit(7, "miles")
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6390. {
  6391. side: {
  6392. height: math.unit(370, "cm"),
  6393. weight: math.unit(350, "lbs"),
  6394. name: "Side",
  6395. image: {
  6396. source: "./media/characters/malfressa/side.svg"
  6397. }
  6398. },
  6399. walking: {
  6400. height: math.unit(370, "cm"),
  6401. weight: math.unit(350, "lbs"),
  6402. name: "Walking",
  6403. image: {
  6404. source: "./media/characters/malfressa/walking.svg"
  6405. }
  6406. },
  6407. feral: {
  6408. height: math.unit(2500, "cm"),
  6409. weight: math.unit(100000, "lbs"),
  6410. name: "Feral",
  6411. image: {
  6412. source: "./media/characters/malfressa/feral.svg",
  6413. extra: 2108 / 837,
  6414. bottom: 0.02
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(370, "cm")
  6422. },
  6423. {
  6424. name: "Macro",
  6425. height: math.unit(300, "meters"),
  6426. default: true
  6427. }
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(60, "kg"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/jaro/front.svg",
  6439. extra: 845/817,
  6440. bottom: 45/890
  6441. }
  6442. },
  6443. back: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(60, "kg"),
  6446. name: "Back",
  6447. image: {
  6448. source: "./media/characters/jaro/back.svg",
  6449. extra: 847/817,
  6450. bottom: 34/881
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Micro",
  6457. height: math.unit(7, "inches")
  6458. },
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(5.5, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Minimacro",
  6466. height: math.unit(20, "feet")
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(200, "meters")
  6471. }
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(195, "lb"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/rogue/front.svg"
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Macro",
  6489. height: math.unit(90, "feet"),
  6490. default: true
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(5 + 8 / 12, "feet"),
  6499. weight: math.unit(140, "lb"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/piper/front.svg",
  6503. extra: 3948/3655,
  6504. bottom: 0/3948
  6505. }
  6506. },
  6507. },
  6508. [
  6509. {
  6510. name: "Micro",
  6511. height: math.unit(2, "inches")
  6512. },
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(5 + 8 / 12, "feet")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(250, "feet"),
  6520. default: true
  6521. },
  6522. {
  6523. name: "Megamacro",
  6524. height: math.unit(7, "miles")
  6525. },
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6530. {
  6531. front: {
  6532. height: math.unit(6, "feet"),
  6533. weight: math.unit(220, "lb"),
  6534. name: "Front",
  6535. image: {
  6536. source: "./media/characters/gemini/front.svg"
  6537. }
  6538. },
  6539. back: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(220, "lb"),
  6542. name: "Back",
  6543. image: {
  6544. source: "./media/characters/gemini/back.svg"
  6545. }
  6546. },
  6547. kneeling: {
  6548. height: math.unit(6 / 1.5, "feet"),
  6549. weight: math.unit(220, "lb"),
  6550. name: "Kneeling",
  6551. image: {
  6552. source: "./media/characters/gemini/kneeling.svg",
  6553. bottom: 0.02
  6554. }
  6555. },
  6556. },
  6557. [
  6558. {
  6559. name: "Macro",
  6560. height: math.unit(300, "meters"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Megamacro",
  6565. height: math.unit(6900, "meters")
  6566. },
  6567. ]
  6568. ))
  6569. characterMakers.push(() => makeCharacter(
  6570. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6571. {
  6572. anthro: {
  6573. height: math.unit(2.35, "meters"),
  6574. weight: math.unit(73, "kg"),
  6575. name: "Anthro",
  6576. image: {
  6577. source: "./media/characters/alicia/anthro.svg",
  6578. extra: 2571 / 2385,
  6579. bottom: 75 / 2648
  6580. }
  6581. },
  6582. paw: {
  6583. height: math.unit(1.32, "feet"),
  6584. name: "Paw",
  6585. image: {
  6586. source: "./media/characters/alicia/paw.svg"
  6587. }
  6588. },
  6589. feral: {
  6590. height: math.unit(1.69, "meters"),
  6591. weight: math.unit(73, "kg"),
  6592. name: "Feral",
  6593. image: {
  6594. source: "./media/characters/alicia/feral.svg",
  6595. extra: 2123 / 1715,
  6596. bottom: 222 / 2349
  6597. }
  6598. },
  6599. },
  6600. [
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(2.35, "meters")
  6604. },
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(60, "meters"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Megamacro",
  6612. height: math.unit(10000, "kilometers")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(7, "feet"),
  6621. weight: math.unit(250, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/archy/front.svg"
  6625. }
  6626. }
  6627. },
  6628. [
  6629. {
  6630. name: "Micro",
  6631. height: math.unit(1, "inch")
  6632. },
  6633. {
  6634. name: "Shorty",
  6635. height: math.unit(5, "feet")
  6636. },
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(7, "feet")
  6640. },
  6641. {
  6642. name: "Macro",
  6643. height: math.unit(600, "meters"),
  6644. default: true
  6645. },
  6646. {
  6647. name: "Megamacro",
  6648. height: math.unit(1, "mile")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(1.65, "meters"),
  6657. weight: math.unit(74, "kg"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/berri/front.svg",
  6661. extra: 857 / 837,
  6662. bottom: 18 / 877
  6663. }
  6664. },
  6665. bum: {
  6666. height: math.unit(1.46, "feet"),
  6667. name: "Bum",
  6668. image: {
  6669. source: "./media/characters/berri/bum.svg"
  6670. }
  6671. },
  6672. mouth: {
  6673. height: math.unit(0.44, "feet"),
  6674. name: "Mouth",
  6675. image: {
  6676. source: "./media/characters/berri/mouth.svg"
  6677. }
  6678. },
  6679. paw: {
  6680. height: math.unit(0.826, "feet"),
  6681. name: "Paw",
  6682. image: {
  6683. source: "./media/characters/berri/paw.svg"
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(1.65, "meters")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(60, "m"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Megamacro",
  6699. height: math.unit(9.213, "km")
  6700. },
  6701. {
  6702. name: "Planet Eater",
  6703. height: math.unit(489, "megameters")
  6704. },
  6705. {
  6706. name: "Teramacro",
  6707. height: math.unit(2471635000000, "meters")
  6708. },
  6709. {
  6710. name: "Examacro",
  6711. height: math.unit(8.0624e+26, "meters")
  6712. }
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(1.72, "meters"),
  6720. weight: math.unit(68, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/lexi/front.svg"
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Very Smol",
  6730. height: math.unit(10, "mm")
  6731. },
  6732. {
  6733. name: "Micro",
  6734. height: math.unit(6.8, "cm"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(1.72, "m")
  6740. }
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(1.69, "meters"),
  6748. weight: math.unit(68, "kg"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/martin/front.svg",
  6752. extra: 596 / 581
  6753. }
  6754. }
  6755. },
  6756. [
  6757. {
  6758. name: "Micro",
  6759. height: math.unit(6.85, "cm"),
  6760. default: true
  6761. },
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(1.69, "m")
  6765. }
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6770. {
  6771. front: {
  6772. height: math.unit(1.69, "meters"),
  6773. weight: math.unit(68, "kg"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/juno/front.svg"
  6777. }
  6778. }
  6779. },
  6780. [
  6781. {
  6782. name: "Micro",
  6783. height: math.unit(7, "cm")
  6784. },
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(1.89, "m")
  6788. },
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(353, "meters"),
  6792. default: true
  6793. }
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6798. {
  6799. front: {
  6800. height: math.unit(1.93, "meters"),
  6801. weight: math.unit(83, "kg"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/samantha/front.svg"
  6805. }
  6806. },
  6807. frontClothed: {
  6808. height: math.unit(1.93, "meters"),
  6809. weight: math.unit(83, "kg"),
  6810. name: "Front (Clothed)",
  6811. image: {
  6812. source: "./media/characters/samantha/front-clothed.svg"
  6813. }
  6814. },
  6815. back: {
  6816. height: math.unit(1.93, "meters"),
  6817. weight: math.unit(83, "kg"),
  6818. name: "Back",
  6819. image: {
  6820. source: "./media/characters/samantha/back.svg"
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(1.93, "m")
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(74, "meters"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Macro+",
  6836. height: math.unit(223, "meters"),
  6837. },
  6838. {
  6839. name: "Megamacro",
  6840. height: math.unit(8381, "meters"),
  6841. },
  6842. {
  6843. name: "Megamacro+",
  6844. height: math.unit(12000, "kilometers")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(1.92, "meters"),
  6853. weight: math.unit(80, "kg"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/dr-clay/front.svg"
  6857. }
  6858. },
  6859. frontClothed: {
  6860. height: math.unit(1.92, "meters"),
  6861. weight: math.unit(80, "kg"),
  6862. name: "Front (Clothed)",
  6863. image: {
  6864. source: "./media/characters/dr-clay/front-clothed.svg"
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(1.92, "m")
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(214, "meters"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Macro+",
  6880. height: math.unit(12.237, "meters"),
  6881. },
  6882. {
  6883. name: "Megamacro",
  6884. height: math.unit(557, "megameters"),
  6885. },
  6886. {
  6887. name: "Unimaginable",
  6888. height: math.unit(120e9, "lightyears")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(2, "meters"),
  6897. weight: math.unit(80, "kg"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6901. }
  6902. }
  6903. },
  6904. [
  6905. {
  6906. name: "Teramacro",
  6907. height: math.unit(500000, "lightyears"),
  6908. default: true
  6909. },
  6910. ]
  6911. ))
  6912. characterMakers.push(() => makeCharacter(
  6913. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6914. {
  6915. crux: {
  6916. height: math.unit(2, "meters"),
  6917. weight: math.unit(150, "kg"),
  6918. name: "Crux",
  6919. image: {
  6920. source: "./media/characters/vemus/crux.svg",
  6921. extra: 1074/936,
  6922. bottom: 23/1097
  6923. }
  6924. },
  6925. skunkTanuki: {
  6926. height: math.unit(2, "meters"),
  6927. weight: math.unit(150, "kg"),
  6928. name: "Skunk-Tanuki",
  6929. image: {
  6930. source: "./media/characters/vemus/skunk-tanuki.svg",
  6931. extra: 926/893,
  6932. bottom: 20/946
  6933. }
  6934. },
  6935. },
  6936. [
  6937. {
  6938. name: "Normal",
  6939. height: math.unit(3.75, "meters"),
  6940. default: true
  6941. },
  6942. {
  6943. name: "Big",
  6944. height: math.unit(8, "meters")
  6945. },
  6946. {
  6947. name: "Macro",
  6948. height: math.unit(100, "meters")
  6949. },
  6950. {
  6951. name: "Macro+",
  6952. height: math.unit(1500, "meters")
  6953. },
  6954. {
  6955. name: "Stellar",
  6956. height: math.unit(14e8, "meters")
  6957. },
  6958. ]
  6959. ))
  6960. characterMakers.push(() => makeCharacter(
  6961. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6962. {
  6963. front: {
  6964. height: math.unit(2, "meters"),
  6965. weight: math.unit(70, "kg"),
  6966. name: "Front",
  6967. image: {
  6968. source: "./media/characters/beherit/front.svg",
  6969. extra: 1234/1109,
  6970. bottom: 55/1289
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(6, "feet")
  6978. },
  6979. {
  6980. name: "Lorg",
  6981. height: math.unit(25, "feet"),
  6982. default: true
  6983. },
  6984. {
  6985. name: "Lorger",
  6986. height: math.unit(75, "feet")
  6987. },
  6988. {
  6989. name: "Macro",
  6990. height: math.unit(200, "meters")
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(2, "meters"),
  6999. weight: math.unit(150, "kg"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/everett/front.svg",
  7003. extra: 1017/866,
  7004. bottom: 86/1103
  7005. }
  7006. },
  7007. paw: {
  7008. height: math.unit(2 / 3.6, "meters"),
  7009. name: "Paw",
  7010. image: {
  7011. source: "./media/characters/everett/paw.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(15, "feet"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Lorg",
  7023. height: math.unit(70, "feet"),
  7024. default: true
  7025. },
  7026. {
  7027. name: "Lorger",
  7028. height: math.unit(250, "feet")
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(500, "meters")
  7033. },
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(2, "meters"),
  7041. weight: math.unit(86, "kg"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/rose/front.svg",
  7045. extra: 1785/1636,
  7046. bottom: 30/1815
  7047. },
  7048. form: "liom",
  7049. default: true
  7050. },
  7051. frontSporty: {
  7052. height: math.unit(2, "meters"),
  7053. weight: math.unit(86, "kg"),
  7054. name: "Front (Sporty)",
  7055. image: {
  7056. source: "./media/characters/rose/front-sporty.svg",
  7057. extra: 350/335,
  7058. bottom: 10/360
  7059. },
  7060. form: "liom"
  7061. },
  7062. frontAlt: {
  7063. height: math.unit(1.6, "meters"),
  7064. weight: math.unit(86, "kg"),
  7065. name: "Front (Alt)",
  7066. image: {
  7067. source: "./media/characters/rose/front-alt.svg",
  7068. extra: 299/283,
  7069. bottom: 3/302
  7070. },
  7071. form: "liom"
  7072. },
  7073. plush: {
  7074. height: math.unit(2, "meters"),
  7075. weight: math.unit(86/3, "kg"),
  7076. name: "Plush",
  7077. image: {
  7078. source: "./media/characters/rose/plush.svg",
  7079. extra: 361/337,
  7080. bottom: 11/372
  7081. },
  7082. form: "plush",
  7083. default: true
  7084. },
  7085. fae: {
  7086. height: math.unit(4, "cm"),
  7087. weight: math.unit(10, "grams"),
  7088. name: "Fae",
  7089. image: {
  7090. source: "./media/characters/rose/fae.svg",
  7091. extra: 737/577,
  7092. bottom: 356/1093
  7093. },
  7094. form: "fae",
  7095. default: true
  7096. },
  7097. },
  7098. [
  7099. {
  7100. name: "True Micro",
  7101. height: math.unit(9, "cm"),
  7102. form: "liom"
  7103. },
  7104. {
  7105. name: "Micro",
  7106. height: math.unit(16, "cm"),
  7107. form: "liom"
  7108. },
  7109. {
  7110. name: "Normal",
  7111. height: math.unit(1.85, "meters"),
  7112. default: true,
  7113. form: "liom"
  7114. },
  7115. {
  7116. name: "Mini-Macro",
  7117. height: math.unit(5, "meters"),
  7118. form: "liom"
  7119. },
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(15, "meters"),
  7123. form: "liom"
  7124. },
  7125. {
  7126. name: "True Macro",
  7127. height: math.unit(40, "meters"),
  7128. form: "liom"
  7129. },
  7130. {
  7131. name: "City Scale",
  7132. height: math.unit(1, "km"),
  7133. form: "liom"
  7134. },
  7135. {
  7136. name: "Plushie",
  7137. height: math.unit(9, "cm"),
  7138. form: "plush",
  7139. default: true
  7140. },
  7141. {
  7142. name: "Fae",
  7143. height: math.unit(4, "cm"),
  7144. form: "fae",
  7145. default: true
  7146. },
  7147. ],
  7148. {
  7149. "liom": {
  7150. name: "Liom",
  7151. default: true
  7152. },
  7153. "plush": {
  7154. name: "Plush"
  7155. },
  7156. "fae": {
  7157. name: "Fae Fox"
  7158. }
  7159. }
  7160. ))
  7161. characterMakers.push(() => makeCharacter(
  7162. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7163. {
  7164. front: {
  7165. height: math.unit(2, "meters"),
  7166. weight: math.unit(350, "lbs"),
  7167. name: "Front",
  7168. image: {
  7169. source: "./media/characters/regal/front.svg"
  7170. }
  7171. },
  7172. back: {
  7173. height: math.unit(2, "meters"),
  7174. weight: math.unit(350, "lbs"),
  7175. name: "Back",
  7176. image: {
  7177. source: "./media/characters/regal/back.svg"
  7178. }
  7179. },
  7180. },
  7181. [
  7182. {
  7183. name: "Macro",
  7184. height: math.unit(350, "feet"),
  7185. default: true
  7186. }
  7187. ]
  7188. ))
  7189. characterMakers.push(() => makeCharacter(
  7190. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7191. {
  7192. front: {
  7193. height: math.unit(4 + 11 / 12, "feet"),
  7194. weight: math.unit(100, "lbs"),
  7195. name: "Front",
  7196. image: {
  7197. source: "./media/characters/opal/front.svg"
  7198. }
  7199. },
  7200. frontAlt: {
  7201. height: math.unit(4 + 11 / 12, "feet"),
  7202. weight: math.unit(100, "lbs"),
  7203. name: "Front (Alt)",
  7204. image: {
  7205. source: "./media/characters/opal/front-alt.svg"
  7206. }
  7207. },
  7208. },
  7209. [
  7210. {
  7211. name: "Small",
  7212. height: math.unit(4 + 11 / 12, "feet")
  7213. },
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(20, "feet"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(120, "feet")
  7222. },
  7223. {
  7224. name: "Megamacro",
  7225. height: math.unit(80, "miles")
  7226. },
  7227. {
  7228. name: "True Size",
  7229. height: math.unit(100000, "lightyears")
  7230. },
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7235. {
  7236. front: {
  7237. height: math.unit(6, "feet"),
  7238. weight: math.unit(200, "lbs"),
  7239. name: "Front",
  7240. image: {
  7241. source: "./media/characters/vector-wuff/front.svg"
  7242. }
  7243. }
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(2.8, "meters")
  7249. },
  7250. {
  7251. name: "Macro",
  7252. height: math.unit(450, "meters"),
  7253. default: true
  7254. },
  7255. {
  7256. name: "Megamacro",
  7257. height: math.unit(15, "kilometers")
  7258. }
  7259. ]
  7260. ))
  7261. characterMakers.push(() => makeCharacter(
  7262. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7263. {
  7264. front: {
  7265. height: math.unit(6, "feet"),
  7266. weight: math.unit(256, "lbs"),
  7267. name: "Front",
  7268. image: {
  7269. source: "./media/characters/dannik/front.svg"
  7270. }
  7271. }
  7272. },
  7273. [
  7274. {
  7275. name: "Macro",
  7276. height: math.unit(69.57, "meters"),
  7277. default: true
  7278. },
  7279. ]
  7280. ))
  7281. characterMakers.push(() => makeCharacter(
  7282. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7283. {
  7284. front: {
  7285. height: math.unit(6, "feet"),
  7286. weight: math.unit(120, "lbs"),
  7287. name: "Front",
  7288. image: {
  7289. source: "./media/characters/azura-saharah/front.svg"
  7290. }
  7291. },
  7292. back: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(120, "lbs"),
  7295. name: "Back",
  7296. image: {
  7297. source: "./media/characters/azura-saharah/back.svg"
  7298. }
  7299. },
  7300. },
  7301. [
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(100, "feet"),
  7305. default: true
  7306. },
  7307. ]
  7308. ))
  7309. characterMakers.push(() => makeCharacter(
  7310. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7311. {
  7312. side: {
  7313. height: math.unit(5 + 4 / 12, "feet"),
  7314. weight: math.unit(163, "lbs"),
  7315. name: "Side",
  7316. image: {
  7317. source: "./media/characters/kennedy/side.svg"
  7318. }
  7319. }
  7320. },
  7321. [
  7322. {
  7323. name: "Standard Doggo",
  7324. height: math.unit(5 + 4 / 12, "feet")
  7325. },
  7326. {
  7327. name: "Big Doggo",
  7328. height: math.unit(25 + 3 / 12, "feet"),
  7329. default: true
  7330. },
  7331. ]
  7332. ))
  7333. characterMakers.push(() => makeCharacter(
  7334. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7335. {
  7336. front: {
  7337. height: math.unit(5 + 5/12, "feet"),
  7338. weight: math.unit(100, "lbs"),
  7339. name: "Front",
  7340. image: {
  7341. source: "./media/characters/odios-de-lunar/front.svg",
  7342. extra: 1468/1323,
  7343. bottom: 22/1490
  7344. }
  7345. }
  7346. },
  7347. [
  7348. {
  7349. name: "Micro",
  7350. height: math.unit(3, "inches")
  7351. },
  7352. {
  7353. name: "Normal",
  7354. height: math.unit(5.5, "feet"),
  7355. default: true
  7356. },
  7357. {
  7358. name: "Macro",
  7359. height: math.unit(100, "feet")
  7360. },
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7365. {
  7366. back: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(220, "lbs"),
  7369. name: "Back",
  7370. image: {
  7371. source: "./media/characters/mandake/back.svg"
  7372. }
  7373. }
  7374. },
  7375. [
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(7, "feet"),
  7379. default: true
  7380. },
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(78, "feet")
  7384. },
  7385. {
  7386. name: "Macro+",
  7387. height: math.unit(300, "meters")
  7388. },
  7389. {
  7390. name: "Macro++",
  7391. height: math.unit(2400, "feet")
  7392. },
  7393. {
  7394. name: "Megamacro",
  7395. height: math.unit(5167, "meters")
  7396. },
  7397. {
  7398. name: "Gigamacro",
  7399. height: math.unit(41769, "miles")
  7400. },
  7401. ]
  7402. ))
  7403. characterMakers.push(() => makeCharacter(
  7404. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7405. {
  7406. front: {
  7407. height: math.unit(6, "feet"),
  7408. weight: math.unit(120, "lbs"),
  7409. name: "Front",
  7410. image: {
  7411. source: "./media/characters/yozey/front.svg"
  7412. }
  7413. },
  7414. frontAlt: {
  7415. height: math.unit(6, "feet"),
  7416. weight: math.unit(120, "lbs"),
  7417. name: "Front (Alt)",
  7418. image: {
  7419. source: "./media/characters/yozey/front-alt.svg"
  7420. }
  7421. },
  7422. side: {
  7423. height: math.unit(6, "feet"),
  7424. weight: math.unit(120, "lbs"),
  7425. name: "Side",
  7426. image: {
  7427. source: "./media/characters/yozey/side.svg"
  7428. }
  7429. },
  7430. },
  7431. [
  7432. {
  7433. name: "Micro",
  7434. height: math.unit(3, "inches"),
  7435. default: true
  7436. },
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(6, "feet")
  7440. }
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7445. {
  7446. front: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(103, "lbs"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/valeska-voss/front.svg"
  7452. }
  7453. }
  7454. },
  7455. [
  7456. {
  7457. name: "Mini-Sized Sub",
  7458. height: math.unit(3.1, "inches")
  7459. },
  7460. {
  7461. name: "Mid-Sized Sub",
  7462. height: math.unit(6.2, "inches")
  7463. },
  7464. {
  7465. name: "Full-Sized Sub",
  7466. height: math.unit(9.3, "inches")
  7467. },
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(5 + 2 / 12, "foot"),
  7471. default: true
  7472. },
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7477. {
  7478. front: {
  7479. height: math.unit(6, "feet"),
  7480. weight: math.unit(160, "lbs"),
  7481. name: "Front",
  7482. image: {
  7483. source: "./media/characters/gene-zeta/front.svg",
  7484. extra: 3006 / 2826,
  7485. bottom: 182 / 3188
  7486. }
  7487. }
  7488. },
  7489. [
  7490. {
  7491. name: "Micro",
  7492. height: math.unit(6, "inches")
  7493. },
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(5 + 11 / 12, "foot"),
  7497. default: true
  7498. },
  7499. {
  7500. name: "Macro",
  7501. height: math.unit(140, "feet")
  7502. },
  7503. {
  7504. name: "Supercharged",
  7505. height: math.unit(2500, "feet")
  7506. },
  7507. ]
  7508. ))
  7509. characterMakers.push(() => makeCharacter(
  7510. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7511. {
  7512. front: {
  7513. height: math.unit(6, "feet"),
  7514. weight: math.unit(350, "lbs"),
  7515. name: "Front",
  7516. image: {
  7517. source: "./media/characters/razinox/front.svg",
  7518. extra: 1686 / 1548,
  7519. bottom: 28.2 / 1868
  7520. }
  7521. },
  7522. back: {
  7523. height: math.unit(6, "feet"),
  7524. weight: math.unit(350, "lbs"),
  7525. name: "Back",
  7526. image: {
  7527. source: "./media/characters/razinox/back.svg",
  7528. extra: 1660 / 1590,
  7529. bottom: 15 / 1665
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(10 + 8 / 12, "foot")
  7537. },
  7538. {
  7539. name: "Minimacro",
  7540. height: math.unit(15, "foot")
  7541. },
  7542. {
  7543. name: "Macro",
  7544. height: math.unit(60, "foot"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Megamacro",
  7549. height: math.unit(5, "miles")
  7550. },
  7551. {
  7552. name: "Gigamacro",
  7553. height: math.unit(6000, "miles")
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(150, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/cobalt/front.svg"
  7566. }
  7567. }
  7568. },
  7569. [
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(8 + 1 / 12, "foot")
  7573. },
  7574. {
  7575. name: "Macro",
  7576. height: math.unit(111, "foot"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Supracosmic",
  7581. height: math.unit(1e42, "feet")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(5, "inches"),
  7590. name: "Front",
  7591. image: {
  7592. source: "./media/characters/amanda/front.svg",
  7593. extra: 926/791,
  7594. bottom: 38/964
  7595. }
  7596. },
  7597. back: {
  7598. height: math.unit(5, "inches"),
  7599. name: "Back",
  7600. image: {
  7601. source: "./media/characters/amanda/back.svg",
  7602. extra: 909/805,
  7603. bottom: 43/952
  7604. }
  7605. },
  7606. },
  7607. [
  7608. {
  7609. name: "Micro",
  7610. height: math.unit(5, "inches"),
  7611. default: true
  7612. },
  7613. ]
  7614. ))
  7615. characterMakers.push(() => makeCharacter(
  7616. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7617. {
  7618. front: {
  7619. height: math.unit(2.75, "meters"),
  7620. weight: math.unit(1200, "lb"),
  7621. name: "Front",
  7622. image: {
  7623. source: "./media/characters/teal/front.svg",
  7624. extra: 2463 / 2320,
  7625. bottom: 166 / 2629
  7626. }
  7627. },
  7628. back: {
  7629. height: math.unit(2.75, "meters"),
  7630. weight: math.unit(1200, "lb"),
  7631. name: "Back",
  7632. image: {
  7633. source: "./media/characters/teal/back.svg",
  7634. extra: 2580 / 2489,
  7635. bottom: 151 / 2731
  7636. }
  7637. },
  7638. sitting: {
  7639. height: math.unit(1.9, "meters"),
  7640. weight: math.unit(1200, "lb"),
  7641. name: "Sitting",
  7642. image: {
  7643. source: "./media/characters/teal/sitting.svg",
  7644. extra: 623 / 590,
  7645. bottom: 121 / 744
  7646. }
  7647. },
  7648. standing: {
  7649. height: math.unit(2.75, "meters"),
  7650. weight: math.unit(1200, "lb"),
  7651. name: "Standing",
  7652. image: {
  7653. source: "./media/characters/teal/standing.svg",
  7654. extra: 923 / 893,
  7655. bottom: 60 / 983
  7656. }
  7657. },
  7658. stretching: {
  7659. height: math.unit(3.65, "meters"),
  7660. weight: math.unit(1200, "lb"),
  7661. name: "Stretching",
  7662. image: {
  7663. source: "./media/characters/teal/stretching.svg",
  7664. extra: 1276 / 1244,
  7665. bottom: 0 / 1276
  7666. }
  7667. },
  7668. legged: {
  7669. height: math.unit(1.3, "meters"),
  7670. weight: math.unit(100, "lb"),
  7671. name: "Legged",
  7672. image: {
  7673. source: "./media/characters/teal/legged.svg",
  7674. extra: 462 / 437,
  7675. bottom: 24 / 486
  7676. }
  7677. },
  7678. naga: {
  7679. height: math.unit(5.4, "meters"),
  7680. weight: math.unit(4000, "lb"),
  7681. name: "Naga",
  7682. image: {
  7683. source: "./media/characters/teal/naga.svg",
  7684. extra: 1902 / 1858,
  7685. bottom: 0 / 1902
  7686. }
  7687. },
  7688. hand: {
  7689. height: math.unit(0.52, "meters"),
  7690. name: "Hand",
  7691. image: {
  7692. source: "./media/characters/teal/hand.svg"
  7693. }
  7694. },
  7695. maw: {
  7696. height: math.unit(0.43, "meters"),
  7697. name: "Maw",
  7698. image: {
  7699. source: "./media/characters/teal/maw.svg"
  7700. }
  7701. },
  7702. slit: {
  7703. height: math.unit(0.25, "meters"),
  7704. name: "Slit",
  7705. image: {
  7706. source: "./media/characters/teal/slit.svg"
  7707. }
  7708. },
  7709. },
  7710. [
  7711. {
  7712. name: "Normal",
  7713. height: math.unit(2.75, "meters"),
  7714. default: true
  7715. },
  7716. {
  7717. name: "Macro",
  7718. height: math.unit(300, "feet")
  7719. },
  7720. {
  7721. name: "Macro+",
  7722. height: math.unit(2000, "feet")
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7728. {
  7729. frontCat: {
  7730. height: math.unit(6, "feet"),
  7731. weight: math.unit(180, "lbs"),
  7732. name: "Front (Cat)",
  7733. image: {
  7734. source: "./media/characters/ravin-amulet/front-cat.svg"
  7735. }
  7736. },
  7737. frontCatAlt: {
  7738. height: math.unit(6, "feet"),
  7739. weight: math.unit(180, "lbs"),
  7740. name: "Front (Alt, Cat)",
  7741. image: {
  7742. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7743. }
  7744. },
  7745. frontWerewolf: {
  7746. height: math.unit(6 * 1.2, "feet"),
  7747. weight: math.unit(225, "lbs"),
  7748. name: "Front (Werewolf)",
  7749. image: {
  7750. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7751. }
  7752. },
  7753. backWerewolf: {
  7754. height: math.unit(6 * 1.2, "feet"),
  7755. weight: math.unit(225, "lbs"),
  7756. name: "Back (Werewolf)",
  7757. image: {
  7758. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7759. }
  7760. },
  7761. },
  7762. [
  7763. {
  7764. name: "Nano",
  7765. height: math.unit(1, "micrometer")
  7766. },
  7767. {
  7768. name: "Micro",
  7769. height: math.unit(1, "inch")
  7770. },
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(6, "feet"),
  7774. default: true
  7775. },
  7776. {
  7777. name: "Macro",
  7778. height: math.unit(60, "feet")
  7779. }
  7780. ]
  7781. ))
  7782. characterMakers.push(() => makeCharacter(
  7783. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7784. {
  7785. front: {
  7786. height: math.unit(6, "feet"),
  7787. weight: math.unit(165, "lbs"),
  7788. name: "Front",
  7789. image: {
  7790. source: "./media/characters/fluoresce/front.svg"
  7791. }
  7792. }
  7793. },
  7794. [
  7795. {
  7796. name: "Micro",
  7797. height: math.unit(6, "cm")
  7798. },
  7799. {
  7800. name: "Normal",
  7801. height: math.unit(5 + 7 / 12, "feet"),
  7802. default: true
  7803. },
  7804. {
  7805. name: "Macro",
  7806. height: math.unit(56, "feet")
  7807. },
  7808. {
  7809. name: "Megamacro",
  7810. height: math.unit(1.9, "miles")
  7811. },
  7812. ]
  7813. ))
  7814. characterMakers.push(() => makeCharacter(
  7815. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7816. {
  7817. front: {
  7818. height: math.unit(9 + 6 / 12, "feet"),
  7819. weight: math.unit(523, "lbs"),
  7820. name: "Side",
  7821. image: {
  7822. source: "./media/characters/aurora/side.svg"
  7823. }
  7824. }
  7825. },
  7826. [
  7827. {
  7828. name: "Normal",
  7829. height: math.unit(9 + 6 / 12, "feet")
  7830. },
  7831. {
  7832. name: "Macro",
  7833. height: math.unit(96, "feet"),
  7834. default: true
  7835. },
  7836. {
  7837. name: "Macro+",
  7838. height: math.unit(243, "feet")
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(194, "cm"),
  7847. weight: math.unit(90, "kg"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/ranek/front.svg",
  7851. extra: 1862/1791,
  7852. bottom: 80/1942
  7853. }
  7854. },
  7855. back: {
  7856. height: math.unit(194, "cm"),
  7857. weight: math.unit(90, "kg"),
  7858. name: "Back",
  7859. image: {
  7860. source: "./media/characters/ranek/back.svg",
  7861. extra: 1853/1787,
  7862. bottom: 74/1927
  7863. }
  7864. },
  7865. feral: {
  7866. height: math.unit(30, "cm"),
  7867. weight: math.unit(1.6, "lbs"),
  7868. name: "Feral",
  7869. image: {
  7870. source: "./media/characters/ranek/feral.svg",
  7871. extra: 990/631,
  7872. bottom: 29/1019
  7873. }
  7874. },
  7875. },
  7876. [
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(194, "cm"),
  7880. default: true
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(100, "meters")
  7885. },
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7890. {
  7891. front: {
  7892. height: math.unit(5 + 6 / 12, "feet"),
  7893. weight: math.unit(153, "lbs"),
  7894. name: "Front",
  7895. image: {
  7896. source: "./media/characters/andrew-cooper/front.svg"
  7897. }
  7898. },
  7899. },
  7900. [
  7901. {
  7902. name: "Nano",
  7903. height: math.unit(1, "mm")
  7904. },
  7905. {
  7906. name: "Micro",
  7907. height: math.unit(2, "inches")
  7908. },
  7909. {
  7910. name: "Normal",
  7911. height: math.unit(5 + 6 / 12, "feet"),
  7912. default: true
  7913. }
  7914. ]
  7915. ))
  7916. characterMakers.push(() => makeCharacter(
  7917. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7918. {
  7919. front: {
  7920. height: math.unit(6, "feet"),
  7921. weight: math.unit(180, "lbs"),
  7922. name: "Front",
  7923. image: {
  7924. source: "./media/characters/akane-sato/front.svg",
  7925. extra: 1219 / 1140
  7926. }
  7927. },
  7928. back: {
  7929. height: math.unit(6, "feet"),
  7930. weight: math.unit(180, "lbs"),
  7931. name: "Back",
  7932. image: {
  7933. source: "./media/characters/akane-sato/back.svg",
  7934. extra: 1219 / 1170
  7935. }
  7936. },
  7937. },
  7938. [
  7939. {
  7940. name: "Normal",
  7941. height: math.unit(2.5, "meters")
  7942. },
  7943. {
  7944. name: "Macro",
  7945. height: math.unit(250, "meters"),
  7946. default: true
  7947. },
  7948. {
  7949. name: "Megamacro",
  7950. height: math.unit(25, "km")
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(6, "feet"),
  7959. weight: math.unit(65, "kg"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/rook/front.svg",
  7963. extra: 960 / 950
  7964. }
  7965. }
  7966. },
  7967. [
  7968. {
  7969. name: "Normal",
  7970. height: math.unit(8.8, "feet")
  7971. },
  7972. {
  7973. name: "Macro",
  7974. height: math.unit(88, "feet"),
  7975. default: true
  7976. },
  7977. {
  7978. name: "Megamacro",
  7979. height: math.unit(8, "miles")
  7980. },
  7981. ]
  7982. ))
  7983. characterMakers.push(() => makeCharacter(
  7984. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7985. {
  7986. front: {
  7987. height: math.unit(12 + 2 / 12, "feet"),
  7988. weight: math.unit(808, "lbs"),
  7989. name: "Front",
  7990. image: {
  7991. source: "./media/characters/prodigy/front.svg"
  7992. }
  7993. }
  7994. },
  7995. [
  7996. {
  7997. name: "Normal",
  7998. height: math.unit(12 + 2 / 12, "feet"),
  7999. default: true
  8000. },
  8001. {
  8002. name: "Macro",
  8003. height: math.unit(143, "feet")
  8004. },
  8005. {
  8006. name: "Macro+",
  8007. height: math.unit(400, "feet")
  8008. },
  8009. ]
  8010. ))
  8011. characterMakers.push(() => makeCharacter(
  8012. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8013. {
  8014. front: {
  8015. height: math.unit(6, "feet"),
  8016. weight: math.unit(225, "lbs"),
  8017. name: "Front",
  8018. image: {
  8019. source: "./media/characters/daniel/front.svg"
  8020. }
  8021. },
  8022. leaning: {
  8023. height: math.unit(6, "feet"),
  8024. weight: math.unit(225, "lbs"),
  8025. name: "Leaning",
  8026. image: {
  8027. source: "./media/characters/daniel/leaning.svg"
  8028. }
  8029. },
  8030. },
  8031. [
  8032. {
  8033. name: "Macro",
  8034. height: math.unit(1000, "feet"),
  8035. default: true
  8036. },
  8037. ]
  8038. ))
  8039. characterMakers.push(() => makeCharacter(
  8040. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8041. {
  8042. front: {
  8043. height: math.unit(6, "feet"),
  8044. weight: math.unit(88, "lbs"),
  8045. name: "Front",
  8046. image: {
  8047. source: "./media/characters/chiros/front.svg",
  8048. extra: 306 / 226
  8049. }
  8050. },
  8051. side: {
  8052. height: math.unit(6, "feet"),
  8053. weight: math.unit(88, "lbs"),
  8054. name: "Side",
  8055. image: {
  8056. source: "./media/characters/chiros/side.svg",
  8057. extra: 306 / 226
  8058. }
  8059. },
  8060. },
  8061. [
  8062. {
  8063. name: "Normal",
  8064. height: math.unit(6, "cm"),
  8065. default: true
  8066. },
  8067. ]
  8068. ))
  8069. characterMakers.push(() => makeCharacter(
  8070. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8071. {
  8072. front: {
  8073. height: math.unit(6, "feet"),
  8074. weight: math.unit(100, "lbs"),
  8075. name: "Front",
  8076. image: {
  8077. source: "./media/characters/selka/front.svg",
  8078. extra: 947 / 887
  8079. }
  8080. }
  8081. },
  8082. [
  8083. {
  8084. name: "Normal",
  8085. height: math.unit(5, "cm"),
  8086. default: true
  8087. },
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(8 + 3 / 12, "feet"),
  8095. weight: math.unit(424, "lbs"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/verin/front.svg",
  8099. extra: 1845 / 1550
  8100. }
  8101. },
  8102. frontArmored: {
  8103. height: math.unit(8 + 3 / 12, "feet"),
  8104. weight: math.unit(424, "lbs"),
  8105. name: "Front (Armored)",
  8106. image: {
  8107. source: "./media/characters/verin/front-armor.svg",
  8108. extra: 1845 / 1550,
  8109. bottom: 0.01
  8110. }
  8111. },
  8112. back: {
  8113. height: math.unit(8 + 3 / 12, "feet"),
  8114. weight: math.unit(424, "lbs"),
  8115. name: "Back",
  8116. image: {
  8117. source: "./media/characters/verin/back.svg",
  8118. bottom: 0.1,
  8119. extra: 1
  8120. }
  8121. },
  8122. foot: {
  8123. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8124. name: "Foot",
  8125. image: {
  8126. source: "./media/characters/verin/foot.svg"
  8127. }
  8128. },
  8129. },
  8130. [
  8131. {
  8132. name: "Normal",
  8133. height: math.unit(8 + 3 / 12, "feet")
  8134. },
  8135. {
  8136. name: "Minimacro",
  8137. height: math.unit(21, "feet"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(626, "feet")
  8143. },
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(2.718, "meters"),
  8151. weight: math.unit(150, "lbs"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/sovrim-terraquian/front.svg",
  8155. extra: 1752/1689,
  8156. bottom: 36/1788
  8157. }
  8158. },
  8159. back: {
  8160. height: math.unit(2.718, "meters"),
  8161. weight: math.unit(150, "lbs"),
  8162. name: "Back",
  8163. image: {
  8164. source: "./media/characters/sovrim-terraquian/back.svg",
  8165. extra: 1698/1657,
  8166. bottom: 58/1756
  8167. }
  8168. },
  8169. tongue: {
  8170. height: math.unit(2.865, "feet"),
  8171. name: "Tongue",
  8172. image: {
  8173. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8174. }
  8175. },
  8176. hand: {
  8177. height: math.unit(1.61, "feet"),
  8178. name: "Hand",
  8179. image: {
  8180. source: "./media/characters/sovrim-terraquian/hand.svg"
  8181. }
  8182. },
  8183. foot: {
  8184. height: math.unit(1.05, "feet"),
  8185. name: "Foot",
  8186. image: {
  8187. source: "./media/characters/sovrim-terraquian/foot.svg"
  8188. }
  8189. },
  8190. footAlt: {
  8191. height: math.unit(0.88, "feet"),
  8192. name: "Foot (Alt)",
  8193. image: {
  8194. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8195. }
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "Micro",
  8201. height: math.unit(2, "inches")
  8202. },
  8203. {
  8204. name: "Small",
  8205. height: math.unit(1, "meter")
  8206. },
  8207. {
  8208. name: "Normal",
  8209. height: math.unit(Math.E, "meters"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(20, "meters")
  8215. },
  8216. {
  8217. name: "Macro+",
  8218. height: math.unit(400, "meters")
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(7, "feet"),
  8227. weight: math.unit(489, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/reece-silvermane/front.svg",
  8231. bottom: 0.02,
  8232. extra: 1
  8233. }
  8234. },
  8235. },
  8236. [
  8237. {
  8238. name: "Macro",
  8239. height: math.unit(1.5, "miles"),
  8240. default: true
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8246. {
  8247. front: {
  8248. height: math.unit(6, "feet"),
  8249. weight: math.unit(78, "kg"),
  8250. name: "Front",
  8251. image: {
  8252. source: "./media/characters/kane/front.svg",
  8253. extra: 978 / 899
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Normal",
  8260. height: math.unit(2.1, "m"),
  8261. },
  8262. {
  8263. name: "Macro",
  8264. height: math.unit(1, "km"),
  8265. default: true
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(6, "feet"),
  8274. weight: math.unit(200, "kg"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/tegon/front.svg",
  8278. bottom: 0.01,
  8279. extra: 1
  8280. }
  8281. },
  8282. },
  8283. [
  8284. {
  8285. name: "Micro",
  8286. height: math.unit(1, "inch")
  8287. },
  8288. {
  8289. name: "Normal",
  8290. height: math.unit(6 + 3 / 12, "feet"),
  8291. default: true
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(300, "feet")
  8296. },
  8297. {
  8298. name: "Megamacro",
  8299. height: math.unit(69, "miles")
  8300. },
  8301. ]
  8302. ))
  8303. characterMakers.push(() => makeCharacter(
  8304. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8305. {
  8306. side: {
  8307. height: math.unit(6, "feet"),
  8308. weight: math.unit(2304, "lbs"),
  8309. name: "Side",
  8310. image: {
  8311. source: "./media/characters/arcturax/side.svg",
  8312. extra: 790 / 376,
  8313. bottom: 0.01
  8314. }
  8315. },
  8316. },
  8317. [
  8318. {
  8319. name: "Micro",
  8320. height: math.unit(2, "inch")
  8321. },
  8322. {
  8323. name: "Normal",
  8324. height: math.unit(6, "feet")
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(39, "feet"),
  8329. default: true
  8330. },
  8331. {
  8332. name: "Megamacro",
  8333. height: math.unit(7, "miles")
  8334. },
  8335. ]
  8336. ))
  8337. characterMakers.push(() => makeCharacter(
  8338. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8339. {
  8340. front: {
  8341. height: math.unit(6, "feet"),
  8342. weight: math.unit(50, "lbs"),
  8343. name: "Front",
  8344. image: {
  8345. source: "./media/characters/sentri/front.svg",
  8346. extra: 1750 / 1570,
  8347. bottom: 0.025
  8348. }
  8349. },
  8350. frontAlt: {
  8351. height: math.unit(6, "feet"),
  8352. weight: math.unit(50, "lbs"),
  8353. name: "Front (Alt)",
  8354. image: {
  8355. source: "./media/characters/sentri/front-alt.svg",
  8356. extra: 1750 / 1570,
  8357. bottom: 0.025
  8358. }
  8359. },
  8360. },
  8361. [
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(15, "feet"),
  8365. default: true
  8366. },
  8367. {
  8368. name: "Macro",
  8369. height: math.unit(2500, "feet")
  8370. }
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8375. {
  8376. front: {
  8377. height: math.unit(5 + 8 / 12, "feet"),
  8378. weight: math.unit(130, "lbs"),
  8379. name: "Front",
  8380. image: {
  8381. source: "./media/characters/corvin/front.svg",
  8382. extra: 1803 / 1629
  8383. }
  8384. },
  8385. frontShirt: {
  8386. height: math.unit(5 + 8 / 12, "feet"),
  8387. weight: math.unit(130, "lbs"),
  8388. name: "Front (Shirt)",
  8389. image: {
  8390. source: "./media/characters/corvin/front-shirt.svg",
  8391. extra: 1803 / 1629
  8392. }
  8393. },
  8394. frontPoncho: {
  8395. height: math.unit(5 + 8 / 12, "feet"),
  8396. weight: math.unit(130, "lbs"),
  8397. name: "Front (Poncho)",
  8398. image: {
  8399. source: "./media/characters/corvin/front-poncho.svg",
  8400. extra: 1803 / 1629
  8401. }
  8402. },
  8403. side: {
  8404. height: math.unit(5 + 8 / 12, "feet"),
  8405. weight: math.unit(130, "lbs"),
  8406. name: "Side",
  8407. image: {
  8408. source: "./media/characters/corvin/side.svg",
  8409. extra: 1012 / 945
  8410. }
  8411. },
  8412. back: {
  8413. height: math.unit(5 + 8 / 12, "feet"),
  8414. weight: math.unit(130, "lbs"),
  8415. name: "Back",
  8416. image: {
  8417. source: "./media/characters/corvin/back.svg",
  8418. extra: 1803 / 1629
  8419. }
  8420. },
  8421. },
  8422. [
  8423. {
  8424. name: "Micro",
  8425. height: math.unit(3, "inches")
  8426. },
  8427. {
  8428. name: "Normal",
  8429. height: math.unit(5 + 8 / 12, "feet")
  8430. },
  8431. {
  8432. name: "Macro",
  8433. height: math.unit(300, "feet"),
  8434. default: true
  8435. },
  8436. {
  8437. name: "Megamacro",
  8438. height: math.unit(500, "miles")
  8439. }
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8444. {
  8445. front: {
  8446. height: math.unit(6, "feet"),
  8447. weight: math.unit(135, "lbs"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/q/front.svg",
  8451. extra: 854 / 752,
  8452. bottom: 0.005
  8453. }
  8454. },
  8455. back: {
  8456. height: math.unit(6, "feet"),
  8457. weight: math.unit(130, "lbs"),
  8458. name: "Back",
  8459. image: {
  8460. source: "./media/characters/q/back.svg",
  8461. extra: 854 / 752
  8462. }
  8463. },
  8464. },
  8465. [
  8466. {
  8467. name: "Macro",
  8468. height: math.unit(90, "feet"),
  8469. default: true
  8470. },
  8471. {
  8472. name: "Extra Macro",
  8473. height: math.unit(300, "feet"),
  8474. },
  8475. {
  8476. name: "BIG WALF",
  8477. height: math.unit(750, "feet"),
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(6, "feet"),
  8486. weight: math.unit(150, "lbs"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/carley/front.svg",
  8490. extra: 3927 / 3540,
  8491. bottom: 29.2 / 735
  8492. }
  8493. }
  8494. },
  8495. [
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(6 + 3 / 12, "feet")
  8499. },
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(185, "feet"),
  8503. default: true
  8504. },
  8505. {
  8506. name: "Megamacro",
  8507. height: math.unit(8, "miles"),
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(3, "feet"),
  8516. weight: math.unit(28, "lbs"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/citrine/front.svg"
  8520. }
  8521. }
  8522. },
  8523. [
  8524. {
  8525. name: "Normal",
  8526. height: math.unit(3, "feet"),
  8527. default: true
  8528. }
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8533. {
  8534. front: {
  8535. height: math.unit(14, "feet"),
  8536. weight: math.unit(1450, "kg"),
  8537. capacity: math.unit(15, "people"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/aura-starwind/front.svg",
  8541. extra: 1440/1327,
  8542. bottom: 11/1451
  8543. }
  8544. },
  8545. side: {
  8546. height: math.unit(14, "feet"),
  8547. weight: math.unit(1450, "kg"),
  8548. capacity: math.unit(15, "people"),
  8549. name: "Side",
  8550. image: {
  8551. source: "./media/characters/aura-starwind/side.svg",
  8552. extra: 1654 / 1497
  8553. }
  8554. },
  8555. taur: {
  8556. height: math.unit(18, "feet"),
  8557. weight: math.unit(5500, "kg"),
  8558. capacity: math.unit(50, "people"),
  8559. name: "Taur",
  8560. image: {
  8561. source: "./media/characters/aura-starwind/taur.svg",
  8562. extra: 1760 / 1650
  8563. }
  8564. },
  8565. feral: {
  8566. height: math.unit(46, "feet"),
  8567. weight: math.unit(25000, "kg"),
  8568. capacity: math.unit(120, "people"),
  8569. name: "Feral",
  8570. image: {
  8571. source: "./media/characters/aura-starwind/feral.svg"
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(14, "feet"),
  8579. default: true
  8580. },
  8581. {
  8582. name: "Macro",
  8583. height: math.unit(50, "meters")
  8584. },
  8585. {
  8586. name: "Megamacro",
  8587. height: math.unit(5000, "meters")
  8588. },
  8589. {
  8590. name: "Gigamacro",
  8591. height: math.unit(100000, "kilometers")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(2 + 7 / 12, "feet"),
  8600. weight: math.unit(32, "lbs"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/rivet/front.svg",
  8604. extra: 1716 / 1658,
  8605. bottom: 0.03
  8606. }
  8607. },
  8608. foot: {
  8609. height: math.unit(0.551, "feet"),
  8610. name: "Rivet's Foot",
  8611. image: {
  8612. source: "./media/characters/rivet/foot.svg"
  8613. },
  8614. rename: true
  8615. }
  8616. },
  8617. [
  8618. {
  8619. name: "Micro",
  8620. height: math.unit(1.5, "inches"),
  8621. },
  8622. {
  8623. name: "Normal",
  8624. height: math.unit(2 + 7 / 12, "feet"),
  8625. default: true
  8626. },
  8627. {
  8628. name: "Macro",
  8629. height: math.unit(85, "feet")
  8630. },
  8631. {
  8632. name: "Megamacro",
  8633. height: math.unit(2.2, "km")
  8634. }
  8635. ]
  8636. ))
  8637. characterMakers.push(() => makeCharacter(
  8638. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8639. {
  8640. front: {
  8641. height: math.unit(5 + 9 / 12, "feet"),
  8642. weight: math.unit(150, "lbs"),
  8643. name: "Front",
  8644. image: {
  8645. source: "./media/characters/coffee/front.svg",
  8646. extra: 3666 / 3032,
  8647. bottom: 0.04
  8648. }
  8649. },
  8650. foot: {
  8651. height: math.unit(1.29, "feet"),
  8652. name: "Foot",
  8653. image: {
  8654. source: "./media/characters/coffee/foot.svg"
  8655. }
  8656. },
  8657. },
  8658. [
  8659. {
  8660. name: "Micro",
  8661. height: math.unit(2, "inches"),
  8662. },
  8663. {
  8664. name: "Normal",
  8665. height: math.unit(5 + 9 / 12, "feet"),
  8666. default: true
  8667. },
  8668. {
  8669. name: "Macro",
  8670. height: math.unit(800, "feet")
  8671. },
  8672. {
  8673. name: "Megamacro",
  8674. height: math.unit(25, "miles")
  8675. }
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(6, "feet"),
  8683. weight: math.unit(200, "lbs"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/chari-gal/front.svg",
  8687. extra: 1568 / 1385,
  8688. bottom: 0.047
  8689. }
  8690. },
  8691. gigantamax: {
  8692. height: math.unit(6 * 16, "feet"),
  8693. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8694. name: "Gigantamax",
  8695. image: {
  8696. source: "./media/characters/chari-gal/gigantamax.svg",
  8697. extra: 1124 / 888,
  8698. bottom: 0.03
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Normal",
  8705. height: math.unit(5 + 7 / 12, "feet")
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(200, "feet"),
  8710. default: true
  8711. }
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(6, "feet"),
  8719. weight: math.unit(150, "lbs"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/nova/front.svg",
  8723. extra: 5000 / 4722,
  8724. bottom: 0.02
  8725. }
  8726. }
  8727. },
  8728. [
  8729. {
  8730. name: "Micro-",
  8731. height: math.unit(0.8, "inches")
  8732. },
  8733. {
  8734. name: "Micro",
  8735. height: math.unit(2, "inches"),
  8736. default: true
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8742. {
  8743. front: {
  8744. height: math.unit(3 + 1 / 12, "feet"),
  8745. weight: math.unit(21.7, "lbs"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/argent/front.svg",
  8749. extra: 1471 / 1331,
  8750. bottom: 100.8 / 1575.5
  8751. }
  8752. }
  8753. },
  8754. [
  8755. {
  8756. name: "Micro",
  8757. height: math.unit(2, "inches")
  8758. },
  8759. {
  8760. name: "Normal",
  8761. height: math.unit(3 + 1 / 12, "feet"),
  8762. default: true
  8763. },
  8764. {
  8765. name: "Macro",
  8766. height: math.unit(120, "feet")
  8767. },
  8768. ]
  8769. ))
  8770. characterMakers.push(() => makeCharacter(
  8771. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8772. {
  8773. lamp: {
  8774. height: math.unit(7 * 1559 / 989, "feet"),
  8775. name: "Magic Lamp",
  8776. image: {
  8777. source: "./media/characters/mira-al-cul/lamp.svg",
  8778. extra: 1617 / 1559
  8779. }
  8780. },
  8781. front: {
  8782. height: math.unit(7, "feet"),
  8783. name: "Front",
  8784. image: {
  8785. source: "./media/characters/mira-al-cul/front.svg",
  8786. extra: 1044 / 990
  8787. }
  8788. },
  8789. },
  8790. [
  8791. {
  8792. name: "Heavily Restricted",
  8793. height: math.unit(7 * 1559 / 989, "feet")
  8794. },
  8795. {
  8796. name: "Freshly Freed",
  8797. height: math.unit(50 * 1559 / 989, "feet")
  8798. },
  8799. {
  8800. name: "World Encompassing",
  8801. height: math.unit(10000 * 1559 / 989, "miles")
  8802. },
  8803. {
  8804. name: "Galactic",
  8805. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8806. },
  8807. {
  8808. name: "Palmed Universe",
  8809. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8810. default: true
  8811. },
  8812. {
  8813. name: "Multiversal Matriarch",
  8814. height: math.unit(8.87e10, "yottameters")
  8815. },
  8816. {
  8817. name: "Void Mother",
  8818. height: math.unit(3.14e110, "yottaparsecs")
  8819. },
  8820. {
  8821. name: "Toying with Transcendence",
  8822. height: math.unit(1e307, "meters")
  8823. },
  8824. ]
  8825. ))
  8826. characterMakers.push(() => makeCharacter(
  8827. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8828. {
  8829. front: {
  8830. height: math.unit(17 + 1 / 12, "feet"),
  8831. weight: math.unit(476.2 * 5, "lbs"),
  8832. name: "Front",
  8833. image: {
  8834. source: "./media/characters/kuro-shi-uchū/front.svg",
  8835. extra: 2329 / 1835,
  8836. bottom: 0.02
  8837. }
  8838. },
  8839. },
  8840. [
  8841. {
  8842. name: "Micro",
  8843. height: math.unit(2, "inches")
  8844. },
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(12, "meters")
  8848. },
  8849. {
  8850. name: "Planetary",
  8851. height: math.unit(0.00929, "AU"),
  8852. default: true
  8853. },
  8854. {
  8855. name: "Universal",
  8856. height: math.unit(20, "gigaparsecs")
  8857. },
  8858. ]
  8859. ))
  8860. characterMakers.push(() => makeCharacter(
  8861. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8862. {
  8863. front: {
  8864. height: math.unit(5 + 2 / 12, "feet"),
  8865. weight: math.unit(120, "lbs"),
  8866. name: "Front",
  8867. image: {
  8868. source: "./media/characters/katherine/front.svg",
  8869. extra: 2075 / 1969
  8870. }
  8871. },
  8872. dress: {
  8873. height: math.unit(5 + 2 / 12, "feet"),
  8874. weight: math.unit(120, "lbs"),
  8875. name: "Dress",
  8876. image: {
  8877. source: "./media/characters/katherine/dress.svg",
  8878. extra: 2258 / 2064
  8879. }
  8880. },
  8881. },
  8882. [
  8883. {
  8884. name: "Micro",
  8885. height: math.unit(1, "inches"),
  8886. default: true
  8887. },
  8888. {
  8889. name: "Normal",
  8890. height: math.unit(5 + 2 / 12, "feet")
  8891. },
  8892. {
  8893. name: "Macro",
  8894. height: math.unit(100, "meters")
  8895. },
  8896. {
  8897. name: "Megamacro",
  8898. height: math.unit(80, "miles")
  8899. },
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(7 + 8 / 12, "feet"),
  8907. weight: math.unit(250, "lbs"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/yevis/front.svg",
  8911. extra: 1938 / 1755
  8912. }
  8913. }
  8914. },
  8915. [
  8916. {
  8917. name: "Mortal",
  8918. height: math.unit(7 + 8 / 12, "feet")
  8919. },
  8920. {
  8921. name: "Battle",
  8922. height: math.unit(25 + 11 / 12, "feet")
  8923. },
  8924. {
  8925. name: "Wrath",
  8926. height: math.unit(1654 + 11 / 12, "feet")
  8927. },
  8928. {
  8929. name: "Planet Destroyer",
  8930. height: math.unit(12000, "miles")
  8931. },
  8932. {
  8933. name: "Galaxy Conqueror",
  8934. height: math.unit(1.45, "zettameters"),
  8935. default: true
  8936. },
  8937. {
  8938. name: "Universal War",
  8939. height: math.unit(184, "gigaparsecs")
  8940. },
  8941. {
  8942. name: "Eternity War",
  8943. height: math.unit(1.98e55, "yottaparsecs")
  8944. },
  8945. ]
  8946. ))
  8947. characterMakers.push(() => makeCharacter(
  8948. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8949. {
  8950. front: {
  8951. height: math.unit(5 + 8 / 12, "feet"),
  8952. weight: math.unit(63, "kg"),
  8953. name: "Front",
  8954. image: {
  8955. source: "./media/characters/xavier/front.svg",
  8956. extra: 944 / 883
  8957. }
  8958. },
  8959. frontStretch: {
  8960. height: math.unit(5 + 8 / 12, "feet"),
  8961. weight: math.unit(63, "kg"),
  8962. name: "Stretching",
  8963. image: {
  8964. source: "./media/characters/xavier/front-stretch.svg",
  8965. extra: 962 / 820
  8966. }
  8967. },
  8968. },
  8969. [
  8970. {
  8971. name: "Normal",
  8972. height: math.unit(5 + 8 / 12, "feet")
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(100, "meters"),
  8977. default: true
  8978. },
  8979. {
  8980. name: "McLargeHuge",
  8981. height: math.unit(10, "miles")
  8982. },
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(5 + 5 / 12, "feet"),
  8990. weight: math.unit(150, "lb"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/joshii/front.svg",
  8994. extra: 765 / 653,
  8995. bottom: 51 / 816
  8996. }
  8997. },
  8998. foot: {
  8999. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9000. name: "Foot",
  9001. image: {
  9002. source: "./media/characters/joshii/foot.svg"
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Micro",
  9009. height: math.unit(2, "inches"),
  9010. default: true
  9011. },
  9012. {
  9013. name: "Normal",
  9014. height: math.unit(5 + 5 / 12, "feet")
  9015. },
  9016. {
  9017. name: "Macro",
  9018. height: math.unit(785, "feet")
  9019. },
  9020. {
  9021. name: "Megamacro",
  9022. height: math.unit(24.5, "miles")
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9028. {
  9029. front: {
  9030. height: math.unit(6, "feet"),
  9031. weight: math.unit(150, "lb"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/goddess-elizabeth/front.svg",
  9035. extra: 1800 / 1525,
  9036. bottom: 0.005
  9037. }
  9038. },
  9039. foot: {
  9040. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9041. name: "Foot",
  9042. image: {
  9043. source: "./media/characters/goddess-elizabeth/foot.svg"
  9044. }
  9045. },
  9046. mouth: {
  9047. height: math.unit(6, "feet"),
  9048. name: "Mouth",
  9049. image: {
  9050. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9051. }
  9052. },
  9053. },
  9054. [
  9055. {
  9056. name: "Micro",
  9057. height: math.unit(12, "feet")
  9058. },
  9059. {
  9060. name: "Normal",
  9061. height: math.unit(80, "miles"),
  9062. default: true
  9063. },
  9064. {
  9065. name: "Macro",
  9066. height: math.unit(15000, "parsecs")
  9067. },
  9068. ]
  9069. ))
  9070. characterMakers.push(() => makeCharacter(
  9071. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9072. {
  9073. front: {
  9074. height: math.unit(5 + 9 / 12, "feet"),
  9075. weight: math.unit(144, "lb"),
  9076. name: "Front",
  9077. image: {
  9078. source: "./media/characters/kara/front.svg"
  9079. }
  9080. },
  9081. feet: {
  9082. height: math.unit(6 / 6.765, "feet"),
  9083. name: "Kara's Feet",
  9084. rename: true,
  9085. image: {
  9086. source: "./media/characters/kara/feet.svg"
  9087. }
  9088. },
  9089. },
  9090. [
  9091. {
  9092. name: "Normal",
  9093. height: math.unit(5 + 9 / 12, "feet")
  9094. },
  9095. {
  9096. name: "Macro",
  9097. height: math.unit(174, "feet"),
  9098. default: true
  9099. },
  9100. ]
  9101. ))
  9102. characterMakers.push(() => makeCharacter(
  9103. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9104. {
  9105. front: {
  9106. height: math.unit(18, "feet"),
  9107. weight: math.unit(4050, "lb"),
  9108. name: "Front",
  9109. image: {
  9110. source: "./media/characters/tyrone/front.svg",
  9111. extra: 2405 / 2270,
  9112. bottom: 182 / 2587
  9113. }
  9114. },
  9115. },
  9116. [
  9117. {
  9118. name: "Normal",
  9119. height: math.unit(18, "feet"),
  9120. default: true
  9121. },
  9122. {
  9123. name: "Macro",
  9124. height: math.unit(300, "feet")
  9125. },
  9126. {
  9127. name: "Megamacro",
  9128. height: math.unit(15, "km")
  9129. },
  9130. {
  9131. name: "Gigamacro",
  9132. height: math.unit(500, "km")
  9133. },
  9134. {
  9135. name: "Teramacro",
  9136. height: math.unit(0.5, "gigameters")
  9137. },
  9138. {
  9139. name: "Omnimacro",
  9140. height: math.unit(1e252, "yottauniverse")
  9141. },
  9142. ]
  9143. ))
  9144. characterMakers.push(() => makeCharacter(
  9145. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9146. {
  9147. front: {
  9148. height: math.unit(7 + 8 / 12, "feet"),
  9149. weight: math.unit(120, "lb"),
  9150. name: "Front",
  9151. image: {
  9152. source: "./media/characters/danny/front.svg",
  9153. extra: 1490 / 1350
  9154. }
  9155. },
  9156. back: {
  9157. height: math.unit(7 + 8 / 12, "feet"),
  9158. weight: math.unit(120, "lb"),
  9159. name: "Back",
  9160. image: {
  9161. source: "./media/characters/danny/back.svg",
  9162. extra: 1490 / 1350
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Normal",
  9169. height: math.unit(7 + 8 / 12, "feet"),
  9170. default: true
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(3.5, "inches"),
  9179. weight: math.unit(19, "grams"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/mallow/front.svg",
  9183. extra: 471 / 431
  9184. }
  9185. },
  9186. back: {
  9187. height: math.unit(3.5, "inches"),
  9188. weight: math.unit(19, "grams"),
  9189. name: "Back",
  9190. image: {
  9191. source: "./media/characters/mallow/back.svg",
  9192. extra: 471 / 431
  9193. }
  9194. },
  9195. },
  9196. [
  9197. {
  9198. name: "Normal",
  9199. height: math.unit(3.5, "inches"),
  9200. default: true
  9201. },
  9202. ]
  9203. ))
  9204. characterMakers.push(() => makeCharacter(
  9205. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9206. {
  9207. front: {
  9208. height: math.unit(9, "feet"),
  9209. weight: math.unit(230, "kg"),
  9210. name: "Front",
  9211. image: {
  9212. source: "./media/characters/starry-aqua/front.svg"
  9213. }
  9214. },
  9215. back: {
  9216. height: math.unit(9, "feet"),
  9217. weight: math.unit(230, "kg"),
  9218. name: "Back",
  9219. image: {
  9220. source: "./media/characters/starry-aqua/back.svg"
  9221. }
  9222. },
  9223. hand: {
  9224. height: math.unit(9 * 0.1168, "feet"),
  9225. name: "Hand",
  9226. image: {
  9227. source: "./media/characters/starry-aqua/hand.svg"
  9228. }
  9229. },
  9230. foot: {
  9231. height: math.unit(9 * 0.18, "feet"),
  9232. name: "Foot",
  9233. image: {
  9234. source: "./media/characters/starry-aqua/foot.svg"
  9235. }
  9236. }
  9237. },
  9238. [
  9239. {
  9240. name: "Micro",
  9241. height: math.unit(3, "inches")
  9242. },
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(9, "feet")
  9246. },
  9247. {
  9248. name: "Macro",
  9249. height: math.unit(300, "feet"),
  9250. default: true
  9251. },
  9252. {
  9253. name: "Megamacro",
  9254. height: math.unit(3200, "feet")
  9255. }
  9256. ]
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9260. {
  9261. front: {
  9262. height: math.unit(15, "feet"),
  9263. weight: math.unit(5026, "lb"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/luka-towers/front.svg",
  9267. extra: 1269/1133,
  9268. bottom: 51/1320
  9269. }
  9270. },
  9271. },
  9272. [
  9273. {
  9274. name: "Normal",
  9275. height: math.unit(15, "feet"),
  9276. default: true
  9277. },
  9278. {
  9279. name: "Minimacro",
  9280. height: math.unit(25, "feet")
  9281. },
  9282. {
  9283. name: "Macro",
  9284. height: math.unit(320, "feet")
  9285. },
  9286. {
  9287. name: "Megamacro",
  9288. height: math.unit(35000, "feet")
  9289. },
  9290. {
  9291. name: "Gigamacro",
  9292. height: math.unit(4000, "miles")
  9293. },
  9294. {
  9295. name: "Teramacro",
  9296. height: math.unit(15000, "miles")
  9297. },
  9298. ]
  9299. ))
  9300. characterMakers.push(() => makeCharacter(
  9301. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9302. {
  9303. front: {
  9304. height: math.unit(6, "feet"),
  9305. weight: math.unit(150, "lb"),
  9306. name: "Front",
  9307. image: {
  9308. source: "./media/characters/natalie-nightring/front.svg",
  9309. extra: 1,
  9310. bottom: 0.06
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Uh Oh",
  9317. height: math.unit(0.1, "mm")
  9318. },
  9319. {
  9320. name: "Small",
  9321. height: math.unit(3, "inches")
  9322. },
  9323. {
  9324. name: "Human Scale",
  9325. height: math.unit(6, "feet")
  9326. },
  9327. {
  9328. name: "Librarian",
  9329. height: math.unit(50, "feet"),
  9330. default: true
  9331. },
  9332. {
  9333. name: "Immense",
  9334. height: math.unit(200, "miles")
  9335. },
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(6, "feet"),
  9343. weight: math.unit(180, "lbs"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/danni-rosie/front.svg",
  9347. extra: 1260 / 1128,
  9348. bottom: 0.022
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Micro",
  9355. height: math.unit(2, "inches"),
  9356. default: true
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(5 + 9 / 12, "feet"),
  9365. weight: math.unit(220, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/samantha-kruse/front.svg",
  9369. extra: (985 / 935),
  9370. bottom: 0.03
  9371. }
  9372. },
  9373. frontUndressed: {
  9374. height: math.unit(5 + 9 / 12, "feet"),
  9375. weight: math.unit(220, "lb"),
  9376. name: "Front (Undressed)",
  9377. image: {
  9378. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9379. extra: (973 / 923),
  9380. bottom: 0.025
  9381. }
  9382. },
  9383. fat: {
  9384. height: math.unit(5 + 9 / 12, "feet"),
  9385. weight: math.unit(900, "lb"),
  9386. name: "Front (Fat)",
  9387. image: {
  9388. source: "./media/characters/samantha-kruse/fat.svg",
  9389. extra: 2688 / 2561
  9390. }
  9391. },
  9392. },
  9393. [
  9394. {
  9395. name: "Normal",
  9396. height: math.unit(5 + 9 / 12, "feet"),
  9397. default: true
  9398. }
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9403. {
  9404. back: {
  9405. height: math.unit(5 + 4 / 12, "feet"),
  9406. weight: math.unit(4963, "lb"),
  9407. name: "Back",
  9408. image: {
  9409. source: "./media/characters/amelia-rosie/back.svg",
  9410. extra: 1113 / 963,
  9411. bottom: 0.01
  9412. }
  9413. },
  9414. },
  9415. [
  9416. {
  9417. name: "Level 0",
  9418. height: math.unit(5 + 4 / 12, "feet")
  9419. },
  9420. {
  9421. name: "Level 1",
  9422. height: math.unit(164597, "feet"),
  9423. default: true
  9424. },
  9425. {
  9426. name: "Level 2",
  9427. height: math.unit(956243, "miles")
  9428. },
  9429. {
  9430. name: "Level 3",
  9431. height: math.unit(29421709423, "miles")
  9432. },
  9433. {
  9434. name: "Level 4",
  9435. height: math.unit(154, "lightyears")
  9436. },
  9437. {
  9438. name: "Level 5",
  9439. height: math.unit(4738272, "lightyears")
  9440. },
  9441. {
  9442. name: "Level 6",
  9443. height: math.unit(145787152896, "lightyears")
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9449. {
  9450. front: {
  9451. height: math.unit(5 + 11 / 12, "feet"),
  9452. weight: math.unit(65, "kg"),
  9453. name: "Front",
  9454. image: {
  9455. source: "./media/characters/rook-kitara/front.svg",
  9456. extra: 1347 / 1274,
  9457. bottom: 0.005
  9458. }
  9459. },
  9460. },
  9461. [
  9462. {
  9463. name: "Totally Unfair",
  9464. height: math.unit(1.8, "mm")
  9465. },
  9466. {
  9467. name: "Lap Rookie",
  9468. height: math.unit(1.4, "feet")
  9469. },
  9470. {
  9471. name: "Normal",
  9472. height: math.unit(5 + 11 / 12, "feet"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "How Did This Happen",
  9477. height: math.unit(80, "miles")
  9478. }
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(7, "feet"),
  9486. weight: math.unit(300, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/pisces/front.svg",
  9490. extra: 2255 / 2115,
  9491. bottom: 0.03
  9492. }
  9493. },
  9494. back: {
  9495. height: math.unit(7, "feet"),
  9496. weight: math.unit(300, "lb"),
  9497. name: "Back",
  9498. image: {
  9499. source: "./media/characters/pisces/back.svg",
  9500. extra: 2146 / 2055,
  9501. bottom: 0.04
  9502. }
  9503. },
  9504. },
  9505. [
  9506. {
  9507. name: "Normal",
  9508. height: math.unit(7, "feet"),
  9509. default: true
  9510. },
  9511. {
  9512. name: "Swimming Pool",
  9513. height: math.unit(12.2, "meters")
  9514. },
  9515. {
  9516. name: "Olympic Swimming Pool",
  9517. height: math.unit(56.3, "meters")
  9518. },
  9519. {
  9520. name: "Lake Superior",
  9521. height: math.unit(93900, "meters")
  9522. },
  9523. {
  9524. name: "Mediterranean Sea",
  9525. height: math.unit(644457, "meters")
  9526. },
  9527. {
  9528. name: "World's Oceans",
  9529. height: math.unit(4567491, "meters")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(2.3, "meters"),
  9538. weight: math.unit(120, "kg"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/zelas/front.svg"
  9542. }
  9543. },
  9544. side: {
  9545. height: math.unit(2.3, "meters"),
  9546. weight: math.unit(120, "kg"),
  9547. name: "Side",
  9548. image: {
  9549. source: "./media/characters/zelas/side.svg"
  9550. }
  9551. },
  9552. back: {
  9553. height: math.unit(2.3, "meters"),
  9554. weight: math.unit(120, "kg"),
  9555. name: "Back",
  9556. image: {
  9557. source: "./media/characters/zelas/back.svg"
  9558. }
  9559. },
  9560. foot: {
  9561. height: math.unit(1.116, "feet"),
  9562. name: "Foot",
  9563. image: {
  9564. source: "./media/characters/zelas/foot.svg"
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Normal",
  9571. height: math.unit(2.3, "meters")
  9572. },
  9573. {
  9574. name: "Macro",
  9575. height: math.unit(30, "meters"),
  9576. default: true
  9577. },
  9578. ]
  9579. ))
  9580. characterMakers.push(() => makeCharacter(
  9581. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9582. {
  9583. front: {
  9584. height: math.unit(1, "inch"),
  9585. weight: math.unit(0.21, "grams"),
  9586. name: "Front",
  9587. image: {
  9588. source: "./media/characters/talbot/front.svg",
  9589. extra: 594 / 544
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Micro",
  9596. height: math.unit(1, "inch"),
  9597. default: true
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9603. {
  9604. front: {
  9605. height: math.unit(3 + 3 / 12, "feet"),
  9606. weight: math.unit(51.8, "lb"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/fliss/front.svg",
  9610. extra: 840 / 640
  9611. }
  9612. },
  9613. },
  9614. [
  9615. {
  9616. name: "Teeny Tiny",
  9617. height: math.unit(1, "mm")
  9618. },
  9619. {
  9620. name: "Small",
  9621. height: math.unit(1, "inch"),
  9622. default: true
  9623. },
  9624. {
  9625. name: "Standard Sylveon",
  9626. height: math.unit(3 + 3 / 12, "feet")
  9627. },
  9628. {
  9629. name: "Large Nuisance",
  9630. height: math.unit(33, "feet")
  9631. },
  9632. {
  9633. name: "City Filler",
  9634. height: math.unit(3000, "feet")
  9635. },
  9636. {
  9637. name: "New Horizon",
  9638. height: math.unit(6000, "miles")
  9639. },
  9640. ]
  9641. ))
  9642. characterMakers.push(() => makeCharacter(
  9643. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9644. {
  9645. front: {
  9646. height: math.unit(5, "cm"),
  9647. weight: math.unit(1.94, "g"),
  9648. name: "Front",
  9649. image: {
  9650. source: "./media/characters/fleta/front.svg",
  9651. extra: 835 / 803
  9652. }
  9653. },
  9654. back: {
  9655. height: math.unit(5, "cm"),
  9656. weight: math.unit(1.94, "g"),
  9657. name: "Back",
  9658. image: {
  9659. source: "./media/characters/fleta/back.svg",
  9660. extra: 835 / 803
  9661. }
  9662. },
  9663. },
  9664. [
  9665. {
  9666. name: "Micro",
  9667. height: math.unit(5, "cm"),
  9668. default: true
  9669. },
  9670. ]
  9671. ))
  9672. characterMakers.push(() => makeCharacter(
  9673. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9674. {
  9675. front: {
  9676. height: math.unit(6, "feet"),
  9677. weight: math.unit(225, "lb"),
  9678. name: "Front",
  9679. image: {
  9680. source: "./media/characters/dominic/front.svg",
  9681. extra: 1770 / 1620,
  9682. bottom: 0.025
  9683. }
  9684. },
  9685. back: {
  9686. height: math.unit(6, "feet"),
  9687. weight: math.unit(225, "lb"),
  9688. name: "Back",
  9689. image: {
  9690. source: "./media/characters/dominic/back.svg",
  9691. extra: 1745 / 1620,
  9692. bottom: 0.065
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Nano",
  9699. height: math.unit(0.1, "mm")
  9700. },
  9701. {
  9702. name: "Micro-",
  9703. height: math.unit(1, "mm")
  9704. },
  9705. {
  9706. name: "Micro",
  9707. height: math.unit(4, "inches")
  9708. },
  9709. {
  9710. name: "Normal",
  9711. height: math.unit(6 + 4 / 12, "feet"),
  9712. default: true
  9713. },
  9714. {
  9715. name: "Macro",
  9716. height: math.unit(115, "feet")
  9717. },
  9718. {
  9719. name: "Macro+",
  9720. height: math.unit(955, "feet")
  9721. },
  9722. {
  9723. name: "Megamacro",
  9724. height: math.unit(8990, "feet")
  9725. },
  9726. {
  9727. name: "Gigmacro",
  9728. height: math.unit(9310, "miles")
  9729. },
  9730. {
  9731. name: "Teramacro",
  9732. height: math.unit(1567005010, "miles")
  9733. },
  9734. {
  9735. name: "Examacro",
  9736. height: math.unit(1425, "parsecs")
  9737. },
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9742. {
  9743. front: {
  9744. height: math.unit(400, "feet"),
  9745. weight: math.unit(44444444, "lb"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/major-colonel/front.svg"
  9749. }
  9750. },
  9751. back: {
  9752. height: math.unit(400, "feet"),
  9753. weight: math.unit(44444444, "lb"),
  9754. name: "Back",
  9755. image: {
  9756. source: "./media/characters/major-colonel/back.svg"
  9757. }
  9758. },
  9759. },
  9760. [
  9761. {
  9762. name: "Macro",
  9763. height: math.unit(400, "feet"),
  9764. default: true
  9765. },
  9766. ]
  9767. ))
  9768. characterMakers.push(() => makeCharacter(
  9769. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9770. {
  9771. catFront: {
  9772. height: math.unit(6, "feet"),
  9773. weight: math.unit(120, "lb"),
  9774. name: "Front (Cat Side)",
  9775. image: {
  9776. source: "./media/characters/axel-lycan/cat-front.svg",
  9777. extra: 430 / 402,
  9778. bottom: 43 / 472.35
  9779. }
  9780. },
  9781. catBack: {
  9782. height: math.unit(6, "feet"),
  9783. weight: math.unit(120, "lb"),
  9784. name: "Back (Cat Side)",
  9785. image: {
  9786. source: "./media/characters/axel-lycan/cat-back.svg",
  9787. extra: 447 / 419,
  9788. bottom: 23.3 / 469
  9789. }
  9790. },
  9791. wolfFront: {
  9792. height: math.unit(6, "feet"),
  9793. weight: math.unit(120, "lb"),
  9794. name: "Front (Wolf Side)",
  9795. image: {
  9796. source: "./media/characters/axel-lycan/wolf-front.svg",
  9797. extra: 485 / 456,
  9798. bottom: 19 / 504
  9799. }
  9800. },
  9801. wolfBack: {
  9802. height: math.unit(6, "feet"),
  9803. weight: math.unit(120, "lb"),
  9804. name: "Back (Wolf Side)",
  9805. image: {
  9806. source: "./media/characters/axel-lycan/wolf-back.svg",
  9807. extra: 475 / 438,
  9808. bottom: 39.2 / 514
  9809. }
  9810. },
  9811. },
  9812. [
  9813. {
  9814. name: "Macro",
  9815. height: math.unit(1, "km"),
  9816. default: true
  9817. },
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9822. {
  9823. front: {
  9824. height: math.unit(5 + 9 / 12, "feet"),
  9825. weight: math.unit(175, "lb"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/vanrel-hyena/front.svg",
  9829. extra: 1086 / 1010,
  9830. bottom: 0.04
  9831. }
  9832. },
  9833. },
  9834. [
  9835. {
  9836. name: "Normal",
  9837. height: math.unit(5 + 9 / 12, "feet"),
  9838. default: true
  9839. },
  9840. ]
  9841. ))
  9842. characterMakers.push(() => makeCharacter(
  9843. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9844. {
  9845. front: {
  9846. height: math.unit(6, "feet"),
  9847. weight: math.unit(103, "lb"),
  9848. name: "Front",
  9849. image: {
  9850. source: "./media/characters/abbott-absol/front.svg",
  9851. extra: 2010 / 1842
  9852. }
  9853. },
  9854. },
  9855. [
  9856. {
  9857. name: "Megamicro",
  9858. height: math.unit(0.1, "mm")
  9859. },
  9860. {
  9861. name: "Micro",
  9862. height: math.unit(1, "inch")
  9863. },
  9864. {
  9865. name: "Normal",
  9866. height: math.unit(6, "feet"),
  9867. default: true
  9868. },
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9873. {
  9874. front: {
  9875. height: math.unit(6, "feet"),
  9876. weight: math.unit(264, "lb"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/hector/front.svg",
  9880. extra: 2280 / 2130,
  9881. bottom: 0.07
  9882. }
  9883. },
  9884. },
  9885. [
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(12.25, "foot"),
  9889. default: true
  9890. },
  9891. {
  9892. name: "Macro",
  9893. height: math.unit(160, "feet")
  9894. },
  9895. ]
  9896. ))
  9897. characterMakers.push(() => makeCharacter(
  9898. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9899. {
  9900. front: {
  9901. height: math.unit(6, "feet"),
  9902. weight: math.unit(150, "lb"),
  9903. name: "Front",
  9904. image: {
  9905. source: "./media/characters/sal/front.svg",
  9906. extra: 1846 / 1699,
  9907. bottom: 0.04
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Megamacro",
  9914. height: math.unit(10, "miles"),
  9915. default: true
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9921. {
  9922. front: {
  9923. height: math.unit(3, "meters"),
  9924. weight: math.unit(450, "kg"),
  9925. name: "front",
  9926. image: {
  9927. source: "./media/characters/ranger/front.svg",
  9928. extra: 2401 / 2243,
  9929. bottom: 0.05
  9930. }
  9931. },
  9932. },
  9933. [
  9934. {
  9935. name: "Normal",
  9936. height: math.unit(3, "meters"),
  9937. default: true
  9938. },
  9939. ]
  9940. ))
  9941. characterMakers.push(() => makeCharacter(
  9942. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9943. {
  9944. front: {
  9945. height: math.unit(14, "feet"),
  9946. weight: math.unit(800, "kg"),
  9947. name: "Front",
  9948. image: {
  9949. source: "./media/characters/theresa/front.svg",
  9950. extra: 3575 / 3346,
  9951. bottom: 0.03
  9952. }
  9953. },
  9954. },
  9955. [
  9956. {
  9957. name: "Normal",
  9958. height: math.unit(14, "feet"),
  9959. default: true
  9960. },
  9961. ]
  9962. ))
  9963. characterMakers.push(() => makeCharacter(
  9964. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9965. {
  9966. front: {
  9967. height: math.unit(6, "feet"),
  9968. weight: math.unit(3, "kg"),
  9969. name: "Front",
  9970. image: {
  9971. source: "./media/characters/ine/front.svg",
  9972. extra: 678 / 539,
  9973. bottom: 0.023
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(2.265, "feet"),
  9981. default: true
  9982. },
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(5, "feet"),
  9990. weight: math.unit(30, "kg"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/vial/front.svg",
  9994. extra: 1365 / 1277,
  9995. bottom: 0.04
  9996. }
  9997. },
  9998. },
  9999. [
  10000. {
  10001. name: "Normal",
  10002. height: math.unit(5, "feet"),
  10003. default: true
  10004. },
  10005. ]
  10006. ))
  10007. characterMakers.push(() => makeCharacter(
  10008. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10009. {
  10010. side: {
  10011. height: math.unit(3.4, "meters"),
  10012. weight: math.unit(1000, "lb"),
  10013. name: "Side",
  10014. image: {
  10015. source: "./media/characters/rovoska/side.svg",
  10016. extra: 4403 / 1515
  10017. }
  10018. },
  10019. },
  10020. [
  10021. {
  10022. name: "Normal",
  10023. height: math.unit(3.4, "meters"),
  10024. default: true
  10025. },
  10026. ]
  10027. ))
  10028. characterMakers.push(() => makeCharacter(
  10029. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10030. {
  10031. front: {
  10032. height: math.unit(8, "feet"),
  10033. weight: math.unit(315, "lb"),
  10034. name: "Front",
  10035. image: {
  10036. source: "./media/characters/gunner-rotthbauer/front.svg"
  10037. }
  10038. },
  10039. back: {
  10040. height: math.unit(8, "feet"),
  10041. weight: math.unit(315, "lb"),
  10042. name: "Back",
  10043. image: {
  10044. source: "./media/characters/gunner-rotthbauer/back.svg"
  10045. }
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Micro",
  10051. height: math.unit(3.5, "inches")
  10052. },
  10053. {
  10054. name: "Normal",
  10055. height: math.unit(8, "feet"),
  10056. default: true
  10057. },
  10058. {
  10059. name: "Macro",
  10060. height: math.unit(250, "feet")
  10061. },
  10062. {
  10063. name: "Megamacro",
  10064. height: math.unit(1, "AU")
  10065. },
  10066. ]
  10067. ))
  10068. characterMakers.push(() => makeCharacter(
  10069. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10070. {
  10071. front: {
  10072. height: math.unit(5 + 5 / 12, "feet"),
  10073. weight: math.unit(140, "lb"),
  10074. name: "Front",
  10075. image: {
  10076. source: "./media/characters/allatia/front.svg",
  10077. extra: 1227 / 1180,
  10078. bottom: 0.027
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(5 + 5 / 12, "feet")
  10086. },
  10087. {
  10088. name: "Macro",
  10089. height: math.unit(250, "feet"),
  10090. default: true
  10091. },
  10092. {
  10093. name: "Megamacro",
  10094. height: math.unit(8, "miles")
  10095. }
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10100. {
  10101. front: {
  10102. height: math.unit(6, "feet"),
  10103. weight: math.unit(120, "lb"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/tene/front.svg",
  10107. extra: 814/750,
  10108. bottom: 36/850
  10109. }
  10110. },
  10111. stomping: {
  10112. height: math.unit(2.025, "meters"),
  10113. weight: math.unit(120, "lb"),
  10114. name: "Stomping",
  10115. image: {
  10116. source: "./media/characters/tene/stomping.svg",
  10117. extra: 885/821,
  10118. bottom: 15/900
  10119. }
  10120. },
  10121. sitting: {
  10122. height: math.unit(1, "meter"),
  10123. weight: math.unit(120, "lb"),
  10124. name: "Sitting",
  10125. image: {
  10126. source: "./media/characters/tene/sitting.svg",
  10127. extra: 396/366,
  10128. bottom: 79/475
  10129. }
  10130. },
  10131. smiling: {
  10132. height: math.unit(1.2, "feet"),
  10133. name: "Smiling",
  10134. image: {
  10135. source: "./media/characters/tene/smiling.svg",
  10136. extra: 1364/1071,
  10137. bottom: 0/1364
  10138. }
  10139. },
  10140. smug: {
  10141. height: math.unit(1.3, "feet"),
  10142. name: "Smug",
  10143. image: {
  10144. source: "./media/characters/tene/smug.svg",
  10145. extra: 1323/1082,
  10146. bottom: 0/1323
  10147. }
  10148. },
  10149. feral: {
  10150. height: math.unit(3.9, "feet"),
  10151. weight: math.unit(250, "lb"),
  10152. name: "Feral",
  10153. image: {
  10154. source: "./media/characters/tene/feral.svg",
  10155. extra: 717 / 458,
  10156. bottom: 0.179
  10157. }
  10158. },
  10159. },
  10160. [
  10161. {
  10162. name: "Normal",
  10163. height: math.unit(6, "feet")
  10164. },
  10165. {
  10166. name: "Macro",
  10167. height: math.unit(300, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(5, "miles")
  10173. },
  10174. ]
  10175. ))
  10176. characterMakers.push(() => makeCharacter(
  10177. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10178. {
  10179. side: {
  10180. height: math.unit(6, "feet"),
  10181. name: "Side",
  10182. image: {
  10183. source: "./media/characters/evander/side.svg",
  10184. extra: 877 / 477
  10185. }
  10186. },
  10187. },
  10188. [
  10189. {
  10190. name: "Normal",
  10191. height: math.unit(0.83, "meters"),
  10192. default: true
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(12, "feet"),
  10201. weight: math.unit(1000, "lb"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10205. extra: 1762 / 1611
  10206. }
  10207. },
  10208. back: {
  10209. height: math.unit(12, "feet"),
  10210. weight: math.unit(1000, "lb"),
  10211. name: "Back",
  10212. image: {
  10213. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10214. extra: 1762 / 1611
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(12, "feet"),
  10222. default: true
  10223. },
  10224. {
  10225. name: "Kaiju",
  10226. height: math.unit(150, "feet")
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(6, "feet"),
  10235. weight: math.unit(150, "lb"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/zero-alurus/front.svg"
  10239. }
  10240. },
  10241. back: {
  10242. height: math.unit(6, "feet"),
  10243. weight: math.unit(150, "lb"),
  10244. name: "Back",
  10245. image: {
  10246. source: "./media/characters/zero-alurus/back.svg"
  10247. }
  10248. },
  10249. },
  10250. [
  10251. {
  10252. name: "Normal",
  10253. height: math.unit(5 + 10 / 12, "feet")
  10254. },
  10255. {
  10256. name: "Macro",
  10257. height: math.unit(60, "feet"),
  10258. default: true
  10259. },
  10260. {
  10261. name: "Macro+",
  10262. height: math.unit(450, "feet")
  10263. },
  10264. ]
  10265. ))
  10266. characterMakers.push(() => makeCharacter(
  10267. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10268. {
  10269. front: {
  10270. height: math.unit(6, "feet"),
  10271. weight: math.unit(200, "lb"),
  10272. name: "Front",
  10273. image: {
  10274. source: "./media/characters/mega-shi/front.svg",
  10275. extra: 1279 / 1250,
  10276. bottom: 0.02
  10277. }
  10278. },
  10279. back: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(200, "lb"),
  10282. name: "Back",
  10283. image: {
  10284. source: "./media/characters/mega-shi/back.svg",
  10285. extra: 1279 / 1250,
  10286. bottom: 0.02
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Micro",
  10293. height: math.unit(16 + 6 / 12, "feet")
  10294. },
  10295. {
  10296. name: "Third Dimension",
  10297. height: math.unit(40, "meters")
  10298. },
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(660, "feet"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "Megamacro",
  10306. height: math.unit(10, "miles")
  10307. },
  10308. {
  10309. name: "Planetary Launch",
  10310. height: math.unit(500, "miles")
  10311. },
  10312. {
  10313. name: "Interstellar",
  10314. height: math.unit(1e9, "miles")
  10315. },
  10316. {
  10317. name: "Leaving the Universe",
  10318. height: math.unit(1, "gigaparsec")
  10319. },
  10320. {
  10321. name: "Travelling Universes",
  10322. height: math.unit(30e15, "parsecs")
  10323. },
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10328. {
  10329. front: {
  10330. height: math.unit(5 + 4/12, "feet"),
  10331. weight: math.unit(120, "lb"),
  10332. name: "Front",
  10333. image: {
  10334. source: "./media/characters/odyssey/front.svg",
  10335. extra: 1747/1571,
  10336. bottom: 47/1794
  10337. }
  10338. },
  10339. side: {
  10340. height: math.unit(5.1, "feet"),
  10341. weight: math.unit(120, "lb"),
  10342. name: "Side",
  10343. image: {
  10344. source: "./media/characters/odyssey/side.svg",
  10345. extra: 1847/1619,
  10346. bottom: 47/1894
  10347. }
  10348. },
  10349. lounging: {
  10350. height: math.unit(1.464, "feet"),
  10351. weight: math.unit(120, "lb"),
  10352. name: "Lounging",
  10353. image: {
  10354. source: "./media/characters/odyssey/lounging.svg",
  10355. extra: 1235/837,
  10356. bottom: 551/1786
  10357. }
  10358. },
  10359. },
  10360. [
  10361. {
  10362. name: "Normal",
  10363. height: math.unit(5 + 4 / 12, "feet")
  10364. },
  10365. {
  10366. name: "Macro",
  10367. height: math.unit(1, "km")
  10368. },
  10369. {
  10370. name: "Megamacro",
  10371. height: math.unit(3000, "km")
  10372. },
  10373. {
  10374. name: "Gigamacro",
  10375. height: math.unit(1, "AU"),
  10376. default: true
  10377. },
  10378. {
  10379. name: "Omniversal",
  10380. height: math.unit(100e14, "lightyears")
  10381. },
  10382. ]
  10383. ))
  10384. characterMakers.push(() => makeCharacter(
  10385. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10386. {
  10387. front: {
  10388. height: math.unit(6, "feet"),
  10389. weight: math.unit(300, "lb"),
  10390. name: "Front",
  10391. image: {
  10392. source: "./media/characters/mekuto/front.svg",
  10393. extra: 921 / 832,
  10394. bottom: 0.03
  10395. }
  10396. },
  10397. hand: {
  10398. height: math.unit(6 / 10.24, "feet"),
  10399. name: "Hand",
  10400. image: {
  10401. source: "./media/characters/mekuto/hand.svg"
  10402. }
  10403. },
  10404. foot: {
  10405. height: math.unit(6 / 5.05, "feet"),
  10406. name: "Foot",
  10407. image: {
  10408. source: "./media/characters/mekuto/foot.svg"
  10409. }
  10410. },
  10411. },
  10412. [
  10413. {
  10414. name: "Minimicro",
  10415. height: math.unit(0.2, "inches")
  10416. },
  10417. {
  10418. name: "Micro",
  10419. height: math.unit(1.5, "inches")
  10420. },
  10421. {
  10422. name: "Normal",
  10423. height: math.unit(5 + 11 / 12, "feet"),
  10424. default: true
  10425. },
  10426. {
  10427. name: "Minimacro",
  10428. height: math.unit(17 + 9 / 12, "feet")
  10429. },
  10430. {
  10431. name: "Macro",
  10432. height: math.unit(177.5, "feet")
  10433. },
  10434. {
  10435. name: "Megamacro",
  10436. height: math.unit(152, "miles")
  10437. },
  10438. ]
  10439. ))
  10440. characterMakers.push(() => makeCharacter(
  10441. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10442. {
  10443. front: {
  10444. height: math.unit(6.5, "inches"),
  10445. weight: math.unit(13, "oz"),
  10446. name: "Front",
  10447. image: {
  10448. source: "./media/characters/dafydd-tomos/front.svg",
  10449. extra: 2990 / 2603,
  10450. bottom: 0.03
  10451. }
  10452. },
  10453. },
  10454. [
  10455. {
  10456. name: "Micro",
  10457. height: math.unit(6.5, "inches"),
  10458. default: true
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10464. {
  10465. front: {
  10466. height: math.unit(6, "feet"),
  10467. weight: math.unit(150, "lb"),
  10468. name: "Front",
  10469. image: {
  10470. source: "./media/characters/splinter/front.svg",
  10471. extra: 2990 / 2882,
  10472. bottom: 0.04
  10473. }
  10474. },
  10475. back: {
  10476. height: math.unit(6, "feet"),
  10477. weight: math.unit(150, "lb"),
  10478. name: "Back",
  10479. image: {
  10480. source: "./media/characters/splinter/back.svg",
  10481. extra: 2990 / 2882,
  10482. bottom: 0.04
  10483. }
  10484. },
  10485. },
  10486. [
  10487. {
  10488. name: "Normal",
  10489. height: math.unit(6, "feet")
  10490. },
  10491. {
  10492. name: "Macro",
  10493. height: math.unit(230, "meters"),
  10494. default: true
  10495. },
  10496. ]
  10497. ))
  10498. characterMakers.push(() => makeCharacter(
  10499. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10500. {
  10501. front: {
  10502. height: math.unit(4 + 10 / 12, "feet"),
  10503. weight: math.unit(480, "lb"),
  10504. name: "Front",
  10505. image: {
  10506. source: "./media/characters/snow-gabumon/front.svg",
  10507. extra: 1140 / 963,
  10508. bottom: 0.058
  10509. }
  10510. },
  10511. back: {
  10512. height: math.unit(4 + 10 / 12, "feet"),
  10513. weight: math.unit(480, "lb"),
  10514. name: "Back",
  10515. image: {
  10516. source: "./media/characters/snow-gabumon/back.svg",
  10517. extra: 1115 / 962,
  10518. bottom: 0.041
  10519. }
  10520. },
  10521. frontUndresed: {
  10522. height: math.unit(4 + 10 / 12, "feet"),
  10523. weight: math.unit(480, "lb"),
  10524. name: "Front (Undressed)",
  10525. image: {
  10526. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10527. extra: 1061 / 960,
  10528. bottom: 0.045
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Micro",
  10535. height: math.unit(1, "inch")
  10536. },
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(4 + 10 / 12, "feet"),
  10540. default: true
  10541. },
  10542. {
  10543. name: "Macro",
  10544. height: math.unit(200, "feet")
  10545. },
  10546. {
  10547. name: "Megamacro",
  10548. height: math.unit(120, "miles")
  10549. },
  10550. {
  10551. name: "Gigamacro",
  10552. height: math.unit(9800, "miles")
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(1.7, "meters"),
  10561. weight: math.unit(140, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/moody/front.svg",
  10565. extra: 3226 / 3007,
  10566. bottom: 0.087
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(1, "mm")
  10574. },
  10575. {
  10576. name: "Normal",
  10577. height: math.unit(1.7, "meters"),
  10578. default: true
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(80, "meters")
  10583. },
  10584. {
  10585. name: "Macro+",
  10586. height: math.unit(500, "meters")
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(6, "feet"),
  10595. weight: math.unit(150, "lb"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/zyas/front.svg",
  10599. extra: 1180 / 1120,
  10600. bottom: 0.045
  10601. }
  10602. },
  10603. },
  10604. [
  10605. {
  10606. name: "Normal",
  10607. height: math.unit(10, "feet"),
  10608. default: true
  10609. },
  10610. {
  10611. name: "Macro",
  10612. height: math.unit(500, "feet")
  10613. },
  10614. {
  10615. name: "Megamacro",
  10616. height: math.unit(5, "miles")
  10617. },
  10618. {
  10619. name: "Teramacro",
  10620. height: math.unit(150000, "miles")
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10626. {
  10627. front: {
  10628. height: math.unit(6, "feet"),
  10629. weight: math.unit(150, "lb"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/cuon/front.svg",
  10633. extra: 1390 / 1320,
  10634. bottom: 0.008
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Micro",
  10641. height: math.unit(3, "inches")
  10642. },
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(18 + 9 / 12, "feet"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Macro",
  10650. height: math.unit(360, "feet")
  10651. },
  10652. {
  10653. name: "Megamacro",
  10654. height: math.unit(360, "miles")
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10660. {
  10661. front: {
  10662. height: math.unit(2.4, "meters"),
  10663. weight: math.unit(70, "kg"),
  10664. name: "Front",
  10665. image: {
  10666. source: "./media/characters/nyanuxk/front.svg",
  10667. extra: 1172 / 1084,
  10668. bottom: 0.065
  10669. }
  10670. },
  10671. side: {
  10672. height: math.unit(2.4, "meters"),
  10673. weight: math.unit(70, "kg"),
  10674. name: "Side",
  10675. image: {
  10676. source: "./media/characters/nyanuxk/side.svg",
  10677. extra: 1190 / 1132,
  10678. bottom: 0.007
  10679. }
  10680. },
  10681. back: {
  10682. height: math.unit(2.4, "meters"),
  10683. weight: math.unit(70, "kg"),
  10684. name: "Back",
  10685. image: {
  10686. source: "./media/characters/nyanuxk/back.svg",
  10687. extra: 1200 / 1141,
  10688. bottom: 0.015
  10689. }
  10690. },
  10691. foot: {
  10692. height: math.unit(0.52, "meters"),
  10693. name: "Foot",
  10694. image: {
  10695. source: "./media/characters/nyanuxk/foot.svg"
  10696. }
  10697. },
  10698. },
  10699. [
  10700. {
  10701. name: "Micro",
  10702. height: math.unit(2, "cm")
  10703. },
  10704. {
  10705. name: "Normal",
  10706. height: math.unit(2.4, "meters"),
  10707. default: true
  10708. },
  10709. {
  10710. name: "Smaller Macro",
  10711. height: math.unit(120, "meters")
  10712. },
  10713. {
  10714. name: "Bigger Macro",
  10715. height: math.unit(1.2, "km")
  10716. },
  10717. {
  10718. name: "Megamacro",
  10719. height: math.unit(15, "kilometers")
  10720. },
  10721. {
  10722. name: "Gigamacro",
  10723. height: math.unit(2000, "km")
  10724. },
  10725. {
  10726. name: "Teramacro",
  10727. height: math.unit(500000, "km")
  10728. },
  10729. ]
  10730. ))
  10731. characterMakers.push(() => makeCharacter(
  10732. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10733. {
  10734. side: {
  10735. height: math.unit(6, "feet"),
  10736. name: "Side",
  10737. image: {
  10738. source: "./media/characters/ailbhe/side.svg",
  10739. extra: 757 / 464,
  10740. bottom: 0.041
  10741. }
  10742. },
  10743. },
  10744. [
  10745. {
  10746. name: "Normal",
  10747. height: math.unit(1.07, "meters"),
  10748. default: true
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10754. {
  10755. front: {
  10756. height: math.unit(6, "feet"),
  10757. weight: math.unit(120, "kg"),
  10758. name: "Front",
  10759. image: {
  10760. source: "./media/characters/zevulfius/front.svg",
  10761. extra: 965 / 903
  10762. }
  10763. },
  10764. side: {
  10765. height: math.unit(6, "feet"),
  10766. weight: math.unit(120, "kg"),
  10767. name: "Side",
  10768. image: {
  10769. source: "./media/characters/zevulfius/side.svg",
  10770. extra: 939 / 900
  10771. }
  10772. },
  10773. back: {
  10774. height: math.unit(6, "feet"),
  10775. weight: math.unit(120, "kg"),
  10776. name: "Back",
  10777. image: {
  10778. source: "./media/characters/zevulfius/back.svg",
  10779. extra: 918 / 854,
  10780. bottom: 0.005
  10781. }
  10782. },
  10783. foot: {
  10784. height: math.unit(6 / 3.72, "feet"),
  10785. name: "Foot",
  10786. image: {
  10787. source: "./media/characters/zevulfius/foot.svg"
  10788. }
  10789. },
  10790. },
  10791. [
  10792. {
  10793. name: "Macro",
  10794. height: math.unit(750, "meters")
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(20, "km"),
  10799. default: true
  10800. },
  10801. {
  10802. name: "Gigamacro",
  10803. height: math.unit(2000, "km")
  10804. },
  10805. {
  10806. name: "Teramacro",
  10807. height: math.unit(250000, "km")
  10808. },
  10809. ]
  10810. ))
  10811. characterMakers.push(() => makeCharacter(
  10812. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10813. {
  10814. front: {
  10815. height: math.unit(100, "feet"),
  10816. weight: math.unit(350, "kg"),
  10817. name: "Front",
  10818. image: {
  10819. source: "./media/characters/rikes/front.svg",
  10820. extra: 1565 / 1483,
  10821. bottom: 0.017
  10822. }
  10823. },
  10824. },
  10825. [
  10826. {
  10827. name: "Macro",
  10828. height: math.unit(100, "feet"),
  10829. default: true
  10830. },
  10831. ]
  10832. ))
  10833. characterMakers.push(() => makeCharacter(
  10834. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10835. {
  10836. front: {
  10837. height: math.unit(8, "feet"),
  10838. weight: math.unit(356, "lb"),
  10839. name: "Front",
  10840. image: {
  10841. source: "./media/characters/adam-silver-mane/front.svg",
  10842. extra: 1036/937,
  10843. bottom: 63/1099
  10844. }
  10845. },
  10846. side: {
  10847. height: math.unit(8, "feet"),
  10848. weight: math.unit(356, "lb"),
  10849. name: "Side",
  10850. image: {
  10851. source: "./media/characters/adam-silver-mane/side.svg",
  10852. extra: 997/901,
  10853. bottom: 59/1056
  10854. }
  10855. },
  10856. frontNsfw: {
  10857. height: math.unit(8, "feet"),
  10858. weight: math.unit(356, "lb"),
  10859. name: "Front (NSFW)",
  10860. image: {
  10861. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10862. extra: 1036/937,
  10863. bottom: 63/1099
  10864. }
  10865. },
  10866. sideNsfw: {
  10867. height: math.unit(8, "feet"),
  10868. weight: math.unit(356, "lb"),
  10869. name: "Side (NSFW)",
  10870. image: {
  10871. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10872. extra: 997/901,
  10873. bottom: 59/1056
  10874. }
  10875. },
  10876. dick: {
  10877. height: math.unit(2.1, "feet"),
  10878. name: "Dick",
  10879. image: {
  10880. source: "./media/characters/adam-silver-mane/dick.svg"
  10881. }
  10882. },
  10883. taur: {
  10884. height: math.unit(16, "feet"),
  10885. weight: math.unit(1500, "kg"),
  10886. name: "Taur",
  10887. image: {
  10888. source: "./media/characters/adam-silver-mane/taur.svg",
  10889. extra: 1713 / 1571,
  10890. bottom: 0.01
  10891. }
  10892. },
  10893. },
  10894. [
  10895. {
  10896. name: "Normal",
  10897. height: math.unit(8, "feet")
  10898. },
  10899. {
  10900. name: "Minimacro",
  10901. height: math.unit(80, "feet")
  10902. },
  10903. {
  10904. name: "MDA",
  10905. height: math.unit(80, "meters")
  10906. },
  10907. {
  10908. name: "Macro",
  10909. height: math.unit(800, "feet"),
  10910. default: true
  10911. },
  10912. {
  10913. name: "Megamacro",
  10914. height: math.unit(8000, "feet")
  10915. },
  10916. {
  10917. name: "Gigamacro",
  10918. height: math.unit(800, "miles")
  10919. },
  10920. {
  10921. name: "Teramacro",
  10922. height: math.unit(80000, "miles")
  10923. },
  10924. {
  10925. name: "Celestial",
  10926. height: math.unit(8e6, "miles")
  10927. },
  10928. {
  10929. name: "Star Dragon",
  10930. height: math.unit(800000, "parsecs")
  10931. },
  10932. {
  10933. name: "Godly",
  10934. height: math.unit(800, "teraparsecs")
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(6, "feet"),
  10943. weight: math.unit(150, "lb"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/ky'owin/front.svg",
  10947. extra: 3888 / 3068,
  10948. bottom: 0.015
  10949. }
  10950. },
  10951. },
  10952. [
  10953. {
  10954. name: "Normal",
  10955. height: math.unit(6 + 8 / 12, "feet")
  10956. },
  10957. {
  10958. name: "Large",
  10959. height: math.unit(68, "feet")
  10960. },
  10961. {
  10962. name: "Macro",
  10963. height: math.unit(132, "feet")
  10964. },
  10965. {
  10966. name: "Macro+",
  10967. height: math.unit(340, "feet")
  10968. },
  10969. {
  10970. name: "Macro++",
  10971. height: math.unit(680, "feet"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Megamacro",
  10976. height: math.unit(1, "mile")
  10977. },
  10978. {
  10979. name: "Megamacro+",
  10980. height: math.unit(10, "miles")
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10986. {
  10987. front: {
  10988. height: math.unit(4, "feet"),
  10989. weight: math.unit(50, "lb"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/mal/front.svg",
  10993. extra: 785 / 724,
  10994. bottom: 0.07
  10995. }
  10996. },
  10997. },
  10998. [
  10999. {
  11000. name: "Micro",
  11001. height: math.unit(4, "inches")
  11002. },
  11003. {
  11004. name: "Normal",
  11005. height: math.unit(4, "feet"),
  11006. default: true
  11007. },
  11008. {
  11009. name: "Macro",
  11010. height: math.unit(200, "feet")
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11016. {
  11017. front: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(150, "lb"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/jordan-deware/front.svg",
  11023. extra: 1191 / 1012
  11024. }
  11025. },
  11026. },
  11027. [
  11028. {
  11029. name: "Nano",
  11030. height: math.unit(0.01, "mm")
  11031. },
  11032. {
  11033. name: "Minimicro",
  11034. height: math.unit(1, "mm")
  11035. },
  11036. {
  11037. name: "Micro",
  11038. height: math.unit(0.5, "inches")
  11039. },
  11040. {
  11041. name: "Normal",
  11042. height: math.unit(4, "feet"),
  11043. default: true
  11044. },
  11045. {
  11046. name: "Minimacro",
  11047. height: math.unit(40, "meters")
  11048. },
  11049. {
  11050. name: "Small Macro",
  11051. height: math.unit(400, "meters")
  11052. },
  11053. {
  11054. name: "Macro",
  11055. height: math.unit(4, "miles")
  11056. },
  11057. {
  11058. name: "Megamacro",
  11059. height: math.unit(40, "miles")
  11060. },
  11061. {
  11062. name: "Megamacro+",
  11063. height: math.unit(400, "miles")
  11064. },
  11065. {
  11066. name: "Gigamacro",
  11067. height: math.unit(400000, "miles")
  11068. },
  11069. ]
  11070. ))
  11071. characterMakers.push(() => makeCharacter(
  11072. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11073. {
  11074. side: {
  11075. height: math.unit(6, "feet"),
  11076. weight: math.unit(150, "lb"),
  11077. name: "Side",
  11078. image: {
  11079. source: "./media/characters/kimiko/side.svg",
  11080. extra: 600 / 358
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(15, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Macro",
  11092. height: math.unit(220, "feet")
  11093. },
  11094. {
  11095. name: "Macro+",
  11096. height: math.unit(1450, "feet")
  11097. },
  11098. {
  11099. name: "Megamacro",
  11100. height: math.unit(11500, "feet")
  11101. },
  11102. {
  11103. name: "Gigamacro",
  11104. height: math.unit(9500, "miles")
  11105. },
  11106. {
  11107. name: "Teramacro",
  11108. height: math.unit(2208005005, "miles")
  11109. },
  11110. {
  11111. name: "Examacro",
  11112. height: math.unit(2750, "parsecs")
  11113. },
  11114. {
  11115. name: "Zettamacro",
  11116. height: math.unit(101500, "parsecs")
  11117. },
  11118. ]
  11119. ))
  11120. characterMakers.push(() => makeCharacter(
  11121. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11122. {
  11123. front: {
  11124. height: math.unit(6, "feet"),
  11125. weight: math.unit(70, "kg"),
  11126. name: "Front",
  11127. image: {
  11128. source: "./media/characters/andrew-sleepy/front.svg"
  11129. }
  11130. },
  11131. side: {
  11132. height: math.unit(6, "feet"),
  11133. weight: math.unit(70, "kg"),
  11134. name: "Side",
  11135. image: {
  11136. source: "./media/characters/andrew-sleepy/side.svg"
  11137. }
  11138. },
  11139. },
  11140. [
  11141. {
  11142. name: "Micro",
  11143. height: math.unit(1, "mm"),
  11144. default: true
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(150, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/judio/front.svg",
  11157. extra: 1258 / 1110
  11158. }
  11159. },
  11160. },
  11161. [
  11162. {
  11163. name: "Normal",
  11164. height: math.unit(5 + 6 / 12, "feet")
  11165. },
  11166. {
  11167. name: "Macro",
  11168. height: math.unit(1000, "feet"),
  11169. default: true
  11170. },
  11171. {
  11172. name: "Megamacro",
  11173. height: math.unit(10, "miles")
  11174. },
  11175. ]
  11176. ))
  11177. characterMakers.push(() => makeCharacter(
  11178. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11179. {
  11180. frontDressed: {
  11181. height: math.unit(6, "feet"),
  11182. weight: math.unit(68, "kg"),
  11183. name: "Front (Dressed)",
  11184. image: {
  11185. source: "./media/characters/nomaxice/front-dressed.svg",
  11186. extra: 1137/824,
  11187. bottom: 74/1211
  11188. }
  11189. },
  11190. frontShorts: {
  11191. height: math.unit(6, "feet"),
  11192. weight: math.unit(68, "kg"),
  11193. name: "Front (Shorts)",
  11194. image: {
  11195. source: "./media/characters/nomaxice/front-shorts.svg",
  11196. extra: 1137/824,
  11197. bottom: 74/1211
  11198. }
  11199. },
  11200. back: {
  11201. height: math.unit(6, "feet"),
  11202. weight: math.unit(68, "kg"),
  11203. name: "Back",
  11204. image: {
  11205. source: "./media/characters/nomaxice/back.svg",
  11206. extra: 822/786,
  11207. bottom: 39/861
  11208. }
  11209. },
  11210. hand: {
  11211. height: math.unit(0.565, "feet"),
  11212. name: "Hand",
  11213. image: {
  11214. source: "./media/characters/nomaxice/hand.svg"
  11215. }
  11216. },
  11217. foot: {
  11218. height: math.unit(1, "feet"),
  11219. name: "Foot",
  11220. image: {
  11221. source: "./media/characters/nomaxice/foot.svg"
  11222. }
  11223. },
  11224. },
  11225. [
  11226. {
  11227. name: "Micro",
  11228. height: math.unit(8, "cm")
  11229. },
  11230. {
  11231. name: "Norm",
  11232. height: math.unit(1.82, "m")
  11233. },
  11234. {
  11235. name: "Norm+",
  11236. height: math.unit(8.8, "feet"),
  11237. default: true
  11238. },
  11239. {
  11240. name: "Big",
  11241. height: math.unit(8, "meters")
  11242. },
  11243. {
  11244. name: "Macro",
  11245. height: math.unit(18, "meters")
  11246. },
  11247. {
  11248. name: "Macro+",
  11249. height: math.unit(88, "meters")
  11250. },
  11251. ]
  11252. ))
  11253. characterMakers.push(() => makeCharacter(
  11254. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11255. {
  11256. front: {
  11257. height: math.unit(12, "feet"),
  11258. weight: math.unit(1.5, "tons"),
  11259. name: "Front",
  11260. image: {
  11261. source: "./media/characters/dydros/front.svg",
  11262. extra: 863 / 800,
  11263. bottom: 0.015
  11264. }
  11265. },
  11266. back: {
  11267. height: math.unit(12, "feet"),
  11268. weight: math.unit(1.5, "tons"),
  11269. name: "Back",
  11270. image: {
  11271. source: "./media/characters/dydros/back.svg",
  11272. extra: 900 / 843,
  11273. bottom: 0.005
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(12, "feet"),
  11281. default: true
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11287. {
  11288. front: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(100, "kg"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/riggi/front.svg",
  11294. extra: 5787 / 5303
  11295. }
  11296. },
  11297. hyper: {
  11298. height: math.unit(6 * 5 / 3, "feet"),
  11299. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11300. name: "Hyper",
  11301. image: {
  11302. source: "./media/characters/riggi/hyper.svg",
  11303. extra: 3595 / 3485
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Small Macro",
  11310. height: math.unit(50, "feet")
  11311. },
  11312. {
  11313. name: "Default",
  11314. height: math.unit(200, "feet"),
  11315. default: true
  11316. },
  11317. {
  11318. name: "Loom",
  11319. height: math.unit(10000, "feet")
  11320. },
  11321. {
  11322. name: "Cruising Altitude",
  11323. height: math.unit(30000, "feet")
  11324. },
  11325. {
  11326. name: "Megamacro",
  11327. height: math.unit(100, "miles")
  11328. },
  11329. {
  11330. name: "Continent Sized",
  11331. height: math.unit(2800, "miles")
  11332. },
  11333. {
  11334. name: "Earth Sized",
  11335. height: math.unit(8000, "miles")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(6, "feet"),
  11344. weight: math.unit(250, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/alexi/front.svg",
  11348. extra: 3483 / 3291,
  11349. bottom: 0.04
  11350. }
  11351. },
  11352. back: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(250, "lb"),
  11355. name: "Back",
  11356. image: {
  11357. source: "./media/characters/alexi/back.svg",
  11358. extra: 3533 / 3356,
  11359. bottom: 0.021
  11360. }
  11361. },
  11362. frontTransforming: {
  11363. height: math.unit(8.58, "feet"),
  11364. weight: math.unit(1300, "lb"),
  11365. name: "Transforming",
  11366. image: {
  11367. source: "./media/characters/alexi/front-transforming.svg",
  11368. extra: 437 / 409,
  11369. bottom: 19 / 458.66
  11370. }
  11371. },
  11372. frontTransformed: {
  11373. height: math.unit(12.5, "feet"),
  11374. weight: math.unit(4000, "lb"),
  11375. name: "Transformed",
  11376. image: {
  11377. source: "./media/characters/alexi/front-transformed.svg",
  11378. extra: 639 / 614,
  11379. bottom: 30.55 / 671
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Normal",
  11386. height: math.unit(14, "feet"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Minimacro",
  11391. height: math.unit(30, "meters")
  11392. },
  11393. {
  11394. name: "Macro",
  11395. height: math.unit(500, "meters")
  11396. },
  11397. {
  11398. name: "Megamacro",
  11399. height: math.unit(9000, "km")
  11400. },
  11401. {
  11402. name: "Teramacro",
  11403. height: math.unit(384000, "km")
  11404. },
  11405. ]
  11406. ))
  11407. characterMakers.push(() => makeCharacter(
  11408. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11409. {
  11410. front: {
  11411. height: math.unit(6, "feet"),
  11412. weight: math.unit(150, "lb"),
  11413. name: "Front",
  11414. image: {
  11415. source: "./media/characters/kayroo/front.svg",
  11416. extra: 1153 / 1038,
  11417. bottom: 0.06
  11418. }
  11419. },
  11420. foot: {
  11421. height: math.unit(6, "feet"),
  11422. weight: math.unit(150, "lb"),
  11423. name: "Foot",
  11424. image: {
  11425. source: "./media/characters/kayroo/foot.svg"
  11426. }
  11427. },
  11428. },
  11429. [
  11430. {
  11431. name: "Normal",
  11432. height: math.unit(8, "feet"),
  11433. default: true
  11434. },
  11435. {
  11436. name: "Minimacro",
  11437. height: math.unit(250, "feet")
  11438. },
  11439. {
  11440. name: "Macro",
  11441. height: math.unit(2800, "feet")
  11442. },
  11443. {
  11444. name: "Megamacro",
  11445. height: math.unit(5200, "feet")
  11446. },
  11447. {
  11448. name: "Gigamacro",
  11449. height: math.unit(27000, "feet")
  11450. },
  11451. {
  11452. name: "Omega",
  11453. height: math.unit(45000, "feet")
  11454. },
  11455. ]
  11456. ))
  11457. characterMakers.push(() => makeCharacter(
  11458. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11459. {
  11460. front: {
  11461. height: math.unit(18, "feet"),
  11462. weight: math.unit(5800, "lb"),
  11463. name: "Front",
  11464. image: {
  11465. source: "./media/characters/rhys/front.svg",
  11466. extra: 3386 / 3090,
  11467. bottom: 0.07
  11468. }
  11469. },
  11470. },
  11471. [
  11472. {
  11473. name: "Normal",
  11474. height: math.unit(18, "feet"),
  11475. default: true
  11476. },
  11477. {
  11478. name: "Working Size",
  11479. height: math.unit(200, "feet")
  11480. },
  11481. {
  11482. name: "Demolition Size",
  11483. height: math.unit(2000, "feet")
  11484. },
  11485. {
  11486. name: "Maximum Licensed Size",
  11487. height: math.unit(5, "miles")
  11488. },
  11489. {
  11490. name: "Maximum Observed Size",
  11491. height: math.unit(10, "yottameters")
  11492. },
  11493. ]
  11494. ))
  11495. characterMakers.push(() => makeCharacter(
  11496. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11497. {
  11498. front: {
  11499. height: math.unit(6, "feet"),
  11500. weight: math.unit(250, "lb"),
  11501. name: "Front",
  11502. image: {
  11503. source: "./media/characters/toto/front.svg",
  11504. extra: 527 / 479,
  11505. bottom: 0.05
  11506. }
  11507. },
  11508. },
  11509. [
  11510. {
  11511. name: "Micro",
  11512. height: math.unit(3, "feet")
  11513. },
  11514. {
  11515. name: "Normal",
  11516. height: math.unit(10, "feet")
  11517. },
  11518. {
  11519. name: "Macro",
  11520. height: math.unit(150, "feet"),
  11521. default: true
  11522. },
  11523. {
  11524. name: "Megamacro",
  11525. height: math.unit(1200, "feet")
  11526. },
  11527. ]
  11528. ))
  11529. characterMakers.push(() => makeCharacter(
  11530. { name: "King", species: ["lion"], tags: ["anthro"] },
  11531. {
  11532. back: {
  11533. height: math.unit(6, "feet"),
  11534. weight: math.unit(150, "lb"),
  11535. name: "Back",
  11536. image: {
  11537. source: "./media/characters/king/back.svg"
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(2, "inches")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(8, "feet")
  11549. },
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(200, "feet"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(50, "miles")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(11, "feet"),
  11566. weight: math.unit(1400, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/cordite/front.svg",
  11570. extra: 1919/1827,
  11571. bottom: 40/1959
  11572. }
  11573. },
  11574. side: {
  11575. height: math.unit(11, "feet"),
  11576. weight: math.unit(1400, "lb"),
  11577. name: "Side",
  11578. image: {
  11579. source: "./media/characters/cordite/side.svg",
  11580. extra: 1908/1793,
  11581. bottom: 38/1946
  11582. }
  11583. },
  11584. back: {
  11585. height: math.unit(11, "feet"),
  11586. weight: math.unit(1400, "lb"),
  11587. name: "Back",
  11588. image: {
  11589. source: "./media/characters/cordite/back.svg",
  11590. extra: 1938/1837,
  11591. bottom: 10/1948
  11592. }
  11593. },
  11594. feral: {
  11595. height: math.unit(2, "feet"),
  11596. weight: math.unit(90, "lb"),
  11597. name: "Feral",
  11598. image: {
  11599. source: "./media/characters/cordite/feral.svg",
  11600. extra: 1260 / 755,
  11601. bottom: 0.05
  11602. }
  11603. },
  11604. },
  11605. [
  11606. {
  11607. name: "Normal",
  11608. height: math.unit(11, "feet"),
  11609. default: true
  11610. },
  11611. ]
  11612. ))
  11613. characterMakers.push(() => makeCharacter(
  11614. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11615. {
  11616. front: {
  11617. height: math.unit(6, "feet"),
  11618. weight: math.unit(150, "lb"),
  11619. name: "Front",
  11620. image: {
  11621. source: "./media/characters/pianostrong/front.svg",
  11622. extra: 6577 / 6254,
  11623. bottom: 0.02
  11624. }
  11625. },
  11626. side: {
  11627. height: math.unit(6, "feet"),
  11628. weight: math.unit(150, "lb"),
  11629. name: "Side",
  11630. image: {
  11631. source: "./media/characters/pianostrong/side.svg",
  11632. extra: 6106 / 5730
  11633. }
  11634. },
  11635. back: {
  11636. height: math.unit(6, "feet"),
  11637. weight: math.unit(150, "lb"),
  11638. name: "Back",
  11639. image: {
  11640. source: "./media/characters/pianostrong/back.svg",
  11641. extra: 6085 / 5733,
  11642. bottom: 0.01
  11643. }
  11644. },
  11645. },
  11646. [
  11647. {
  11648. name: "Macro",
  11649. height: math.unit(100, "feet")
  11650. },
  11651. {
  11652. name: "Macro+",
  11653. height: math.unit(300, "feet"),
  11654. default: true
  11655. },
  11656. {
  11657. name: "Macro++",
  11658. height: math.unit(1000, "feet")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(150, "lb"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/kona/front.svg",
  11671. extra: 2960 / 2629,
  11672. bottom: 0.005
  11673. }
  11674. },
  11675. },
  11676. [
  11677. {
  11678. name: "Normal",
  11679. height: math.unit(11 + 8 / 12, "feet")
  11680. },
  11681. {
  11682. name: "Macro",
  11683. height: math.unit(850, "feet"),
  11684. default: true
  11685. },
  11686. {
  11687. name: "Macro+",
  11688. height: math.unit(1.5, "km"),
  11689. default: true
  11690. },
  11691. {
  11692. name: "Megamacro",
  11693. height: math.unit(80, "miles")
  11694. },
  11695. {
  11696. name: "Gigamacro",
  11697. height: math.unit(3500, "miles")
  11698. },
  11699. ]
  11700. ))
  11701. characterMakers.push(() => makeCharacter(
  11702. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11703. {
  11704. side: {
  11705. height: math.unit(1.9, "meters"),
  11706. weight: math.unit(326, "kg"),
  11707. name: "Side",
  11708. image: {
  11709. source: "./media/characters/levi/side.svg",
  11710. extra: 1704 / 1334,
  11711. bottom: 0.02
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Normal",
  11718. height: math.unit(1.9, "meters"),
  11719. default: true
  11720. },
  11721. {
  11722. name: "Macro",
  11723. height: math.unit(20, "meters")
  11724. },
  11725. {
  11726. name: "Macro+",
  11727. height: math.unit(200, "meters")
  11728. },
  11729. {
  11730. name: "Megamacro",
  11731. height: math.unit(2, "km")
  11732. },
  11733. {
  11734. name: "Megamacro+",
  11735. height: math.unit(20, "km")
  11736. },
  11737. {
  11738. name: "Gigamacro",
  11739. height: math.unit(2500, "km")
  11740. },
  11741. {
  11742. name: "Gigamacro+",
  11743. height: math.unit(120000, "km")
  11744. },
  11745. {
  11746. name: "Teramacro",
  11747. height: math.unit(7.77e6, "km")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11753. {
  11754. front: {
  11755. height: math.unit(6 + 4/12, "feet"),
  11756. weight: math.unit(190, "lb"),
  11757. name: "Front",
  11758. image: {
  11759. source: "./media/characters/bmc/front.svg",
  11760. extra: 1626/1472,
  11761. bottom: 79/1705
  11762. }
  11763. },
  11764. back: {
  11765. height: math.unit(6 + 4/12, "feet"),
  11766. weight: math.unit(190, "lb"),
  11767. name: "Back",
  11768. image: {
  11769. source: "./media/characters/bmc/back.svg",
  11770. extra: 1640/1479,
  11771. bottom: 45/1685
  11772. }
  11773. },
  11774. frontArmor: {
  11775. height: math.unit(6 + 4/12, "feet"),
  11776. weight: math.unit(190, "lb"),
  11777. name: "Front-armor",
  11778. image: {
  11779. source: "./media/characters/bmc/front-armor.svg",
  11780. extra: 1538/1468,
  11781. bottom: 79/1617
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Human-sized",
  11788. height: math.unit(6 + 4 / 12, "feet")
  11789. },
  11790. {
  11791. name: "Interactive Size",
  11792. height: math.unit(25, "feet")
  11793. },
  11794. {
  11795. name: "Small",
  11796. height: math.unit(250, "feet")
  11797. },
  11798. {
  11799. name: "Normal",
  11800. height: math.unit(1250, "feet"),
  11801. default: true
  11802. },
  11803. {
  11804. name: "Good Day",
  11805. height: math.unit(88, "miles")
  11806. },
  11807. {
  11808. name: "Largest Measured Size",
  11809. height: math.unit(105.960, "galaxies")
  11810. },
  11811. ]
  11812. ))
  11813. characterMakers.push(() => makeCharacter(
  11814. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11815. {
  11816. front: {
  11817. height: math.unit(20, "feet"),
  11818. weight: math.unit(2016, "kg"),
  11819. name: "Front",
  11820. image: {
  11821. source: "./media/characters/sven-the-kaiju/front.svg",
  11822. extra: 1277/1250,
  11823. bottom: 35/1312
  11824. }
  11825. },
  11826. mouth: {
  11827. height: math.unit(1.85, "feet"),
  11828. name: "Mouth",
  11829. image: {
  11830. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Fairy",
  11837. height: math.unit(6, "inches")
  11838. },
  11839. {
  11840. name: "Normal",
  11841. height: math.unit(20, "feet"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Rampage",
  11846. height: math.unit(200, "feet")
  11847. },
  11848. {
  11849. name: "Archfey Forest Guardian",
  11850. height: math.unit(1, "mile")
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11856. {
  11857. front: {
  11858. height: math.unit(4, "meters"),
  11859. weight: math.unit(2, "tons"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/marik/front.svg",
  11863. extra: 1057 / 1003,
  11864. bottom: 0.08
  11865. }
  11866. },
  11867. },
  11868. [
  11869. {
  11870. name: "Normal",
  11871. height: math.unit(4, "meters"),
  11872. default: true
  11873. },
  11874. {
  11875. name: "Macro",
  11876. height: math.unit(20, "meters")
  11877. },
  11878. {
  11879. name: "Megamacro",
  11880. height: math.unit(50, "km")
  11881. },
  11882. {
  11883. name: "Gigamacro",
  11884. height: math.unit(100, "km")
  11885. },
  11886. {
  11887. name: "Alpha Macro",
  11888. height: math.unit(7.88e7, "yottameters")
  11889. },
  11890. ]
  11891. ))
  11892. characterMakers.push(() => makeCharacter(
  11893. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11894. {
  11895. front: {
  11896. height: math.unit(6, "feet"),
  11897. weight: math.unit(110, "lb"),
  11898. name: "Front",
  11899. image: {
  11900. source: "./media/characters/mel/front.svg",
  11901. extra: 736 / 617,
  11902. bottom: 0.017
  11903. }
  11904. },
  11905. },
  11906. [
  11907. {
  11908. name: "Pico",
  11909. height: math.unit(3, "pm")
  11910. },
  11911. {
  11912. name: "Nano",
  11913. height: math.unit(3, "nm")
  11914. },
  11915. {
  11916. name: "Micro",
  11917. height: math.unit(0.3, "mm"),
  11918. default: true
  11919. },
  11920. {
  11921. name: "Micro+",
  11922. height: math.unit(3, "mm")
  11923. },
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(5 + 10.5 / 12, "feet")
  11927. },
  11928. ]
  11929. ))
  11930. characterMakers.push(() => makeCharacter(
  11931. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11932. {
  11933. kaiju: {
  11934. height: math.unit(1.75, "meters"),
  11935. weight: math.unit(55, "kg"),
  11936. name: "Kaiju",
  11937. image: {
  11938. source: "./media/characters/lykonous/kaiju.svg",
  11939. extra: 1055 / 946,
  11940. bottom: 0.135
  11941. }
  11942. },
  11943. },
  11944. [
  11945. {
  11946. name: "Normal",
  11947. height: math.unit(2.5, "meters"),
  11948. default: true
  11949. },
  11950. {
  11951. name: "Kaiju Dragon",
  11952. height: math.unit(60, "meters")
  11953. },
  11954. {
  11955. name: "Mega Kaiju",
  11956. height: math.unit(120, "km")
  11957. },
  11958. {
  11959. name: "Giga Kaiju",
  11960. height: math.unit(200, "megameters")
  11961. },
  11962. {
  11963. name: "Terra Kaiju",
  11964. height: math.unit(400, "gigameters")
  11965. },
  11966. {
  11967. name: "Kaiju Dragon God",
  11968. height: math.unit(13000, "exaparsecs")
  11969. },
  11970. ]
  11971. ))
  11972. characterMakers.push(() => makeCharacter(
  11973. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11974. {
  11975. front: {
  11976. height: math.unit(6, "feet"),
  11977. weight: math.unit(150, "lb"),
  11978. name: "Front",
  11979. image: {
  11980. source: "./media/characters/blü/front.svg",
  11981. extra: 1883 / 1564,
  11982. bottom: 0.031
  11983. }
  11984. },
  11985. },
  11986. [
  11987. {
  11988. name: "Normal",
  11989. height: math.unit(13, "feet"),
  11990. default: true
  11991. },
  11992. {
  11993. name: "Big Boi",
  11994. height: math.unit(150, "meters")
  11995. },
  11996. {
  11997. name: "Mini Stomper",
  11998. height: math.unit(300, "meters")
  11999. },
  12000. {
  12001. name: "Macro",
  12002. height: math.unit(1000, "meters")
  12003. },
  12004. {
  12005. name: "Megamacro",
  12006. height: math.unit(11000, "meters")
  12007. },
  12008. {
  12009. name: "Gigamacro",
  12010. height: math.unit(11000, "km")
  12011. },
  12012. {
  12013. name: "Teramacro",
  12014. height: math.unit(420000, "km")
  12015. },
  12016. {
  12017. name: "Examacro",
  12018. height: math.unit(120, "parsecs")
  12019. },
  12020. {
  12021. name: "God Tho",
  12022. height: math.unit(98000000000, "parsecs")
  12023. },
  12024. ]
  12025. ))
  12026. characterMakers.push(() => makeCharacter(
  12027. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12028. {
  12029. taurFront: {
  12030. height: math.unit(6, "feet"),
  12031. weight: math.unit(200, "lb"),
  12032. name: "Taur (Front)",
  12033. image: {
  12034. source: "./media/characters/scales/taur-front.svg",
  12035. extra: 1,
  12036. bottom: 0.05
  12037. }
  12038. },
  12039. taurBack: {
  12040. height: math.unit(6, "feet"),
  12041. weight: math.unit(200, "lb"),
  12042. name: "Taur (Back)",
  12043. image: {
  12044. source: "./media/characters/scales/taur-back.svg",
  12045. extra: 1,
  12046. bottom: 0.08
  12047. }
  12048. },
  12049. anthro: {
  12050. height: math.unit(6 * 7 / 12, "feet"),
  12051. weight: math.unit(100, "lb"),
  12052. name: "Anthro",
  12053. image: {
  12054. source: "./media/characters/scales/anthro.svg",
  12055. extra: 1,
  12056. bottom: 0.06
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Normal",
  12063. height: math.unit(12, "feet"),
  12064. default: true
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12070. {
  12071. front: {
  12072. height: math.unit(6, "feet"),
  12073. weight: math.unit(150, "lb"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/koragos/front.svg",
  12077. extra: 841 / 794,
  12078. bottom: 0.035
  12079. }
  12080. },
  12081. back: {
  12082. height: math.unit(6, "feet"),
  12083. weight: math.unit(150, "lb"),
  12084. name: "Back",
  12085. image: {
  12086. source: "./media/characters/koragos/back.svg",
  12087. extra: 841 / 810,
  12088. bottom: 0.022
  12089. }
  12090. },
  12091. },
  12092. [
  12093. {
  12094. name: "Normal",
  12095. height: math.unit(6 + 11 / 12, "feet"),
  12096. default: true
  12097. },
  12098. {
  12099. name: "Macro",
  12100. height: math.unit(490, "feet")
  12101. },
  12102. {
  12103. name: "Megamacro",
  12104. height: math.unit(10, "miles")
  12105. },
  12106. {
  12107. name: "Gigamacro",
  12108. height: math.unit(50, "miles")
  12109. },
  12110. ]
  12111. ))
  12112. characterMakers.push(() => makeCharacter(
  12113. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12114. {
  12115. front: {
  12116. height: math.unit(6, "feet"),
  12117. weight: math.unit(250, "lb"),
  12118. name: "Front",
  12119. image: {
  12120. source: "./media/characters/xylrem/front.svg",
  12121. extra: 3323 / 3050,
  12122. bottom: 0.065
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Micro",
  12129. height: math.unit(4, "feet")
  12130. },
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(16, "feet"),
  12134. default: true
  12135. },
  12136. {
  12137. name: "Macro",
  12138. height: math.unit(2720, "feet")
  12139. },
  12140. {
  12141. name: "Megamacro",
  12142. height: math.unit(25000, "miles")
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(8, "feet"),
  12151. weight: math.unit(250, "kg"),
  12152. name: "Front",
  12153. image: {
  12154. source: "./media/characters/ikideru/front.svg",
  12155. extra: 930 / 870,
  12156. bottom: 0.087
  12157. }
  12158. },
  12159. back: {
  12160. height: math.unit(8, "feet"),
  12161. weight: math.unit(250, "kg"),
  12162. name: "Back",
  12163. image: {
  12164. source: "./media/characters/ikideru/back.svg",
  12165. extra: 919 / 852,
  12166. bottom: 0.055
  12167. }
  12168. },
  12169. },
  12170. [
  12171. {
  12172. name: "Rare",
  12173. height: math.unit(8, "feet"),
  12174. default: true
  12175. },
  12176. {
  12177. name: "Playful Loom",
  12178. height: math.unit(80, "feet")
  12179. },
  12180. {
  12181. name: "City Leaner",
  12182. height: math.unit(230, "feet")
  12183. },
  12184. {
  12185. name: "Megamacro",
  12186. height: math.unit(2500, "feet")
  12187. },
  12188. {
  12189. name: "Gigamacro",
  12190. height: math.unit(26400, "feet")
  12191. },
  12192. {
  12193. name: "Tectonic Shifter",
  12194. height: math.unit(1.7, "megameters")
  12195. },
  12196. {
  12197. name: "Planet Carer",
  12198. height: math.unit(21, "megameters")
  12199. },
  12200. {
  12201. name: "God",
  12202. height: math.unit(11157.22, "parsecs")
  12203. },
  12204. ]
  12205. ))
  12206. characterMakers.push(() => makeCharacter(
  12207. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12208. {
  12209. front: {
  12210. height: math.unit(6, "feet"),
  12211. weight: math.unit(120, "lb"),
  12212. name: "Front",
  12213. image: {
  12214. source: "./media/characters/neo/front.svg"
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Micro",
  12221. height: math.unit(2, "inches"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Human Size",
  12226. height: math.unit(5 + 8 / 12, "feet")
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(13 + 10 / 12, "feet"),
  12235. weight: math.unit(5320, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/chauncey-chantz/front.svg",
  12239. extra: 1587 / 1435,
  12240. bottom: 0.02
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Normal",
  12247. height: math.unit(13 + 10 / 12, "feet"),
  12248. default: true
  12249. },
  12250. {
  12251. name: "Macro",
  12252. height: math.unit(45, "feet")
  12253. },
  12254. {
  12255. name: "Megamacro",
  12256. height: math.unit(250, "miles")
  12257. },
  12258. {
  12259. name: "Planetary",
  12260. height: math.unit(10000, "miles")
  12261. },
  12262. {
  12263. name: "Galactic",
  12264. height: math.unit(40000, "parsecs")
  12265. },
  12266. {
  12267. name: "Universal",
  12268. height: math.unit(1, "yottameter")
  12269. },
  12270. ]
  12271. ))
  12272. characterMakers.push(() => makeCharacter(
  12273. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12274. {
  12275. front: {
  12276. height: math.unit(6, "feet"),
  12277. weight: math.unit(150, "lb"),
  12278. name: "Front",
  12279. image: {
  12280. source: "./media/characters/epifox/front.svg",
  12281. extra: 1,
  12282. bottom: 0.075
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Micro",
  12289. height: math.unit(6, "inches")
  12290. },
  12291. {
  12292. name: "Normal",
  12293. height: math.unit(12, "feet"),
  12294. default: true
  12295. },
  12296. {
  12297. name: "Macro",
  12298. height: math.unit(3810, "feet")
  12299. },
  12300. {
  12301. name: "Megamacro",
  12302. height: math.unit(500, "miles")
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12308. {
  12309. front: {
  12310. height: math.unit(1.8796, "m"),
  12311. weight: math.unit(230, "lb"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/colin-t/front.svg",
  12315. extra: 1272 / 1193,
  12316. bottom: 0.07
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Micro",
  12323. height: math.unit(0.571, "meters")
  12324. },
  12325. {
  12326. name: "Normal",
  12327. height: math.unit(1.8796, "meters"),
  12328. default: true
  12329. },
  12330. {
  12331. name: "Tall",
  12332. height: math.unit(4, "meters")
  12333. },
  12334. {
  12335. name: "Macro",
  12336. height: math.unit(67.241, "meters")
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(371.856, "meters")
  12341. },
  12342. {
  12343. name: "Planetary",
  12344. height: math.unit(12631.5689, "km")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(1.85, "meters"),
  12353. weight: math.unit(80, "kg"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/matvei/front.svg",
  12357. extra: 614 / 594,
  12358. bottom: 0.01
  12359. }
  12360. },
  12361. },
  12362. [
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(1.85, "meters"),
  12366. default: true
  12367. },
  12368. ]
  12369. ))
  12370. characterMakers.push(() => makeCharacter(
  12371. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12372. {
  12373. front: {
  12374. height: math.unit(5 + 9 / 12, "feet"),
  12375. weight: math.unit(70, "lb"),
  12376. name: "Front",
  12377. image: {
  12378. source: "./media/characters/quincy/front.svg",
  12379. extra: 3041 / 2751
  12380. }
  12381. },
  12382. back: {
  12383. height: math.unit(5 + 9 / 12, "feet"),
  12384. weight: math.unit(70, "lb"),
  12385. name: "Back",
  12386. image: {
  12387. source: "./media/characters/quincy/back.svg",
  12388. extra: 3041 / 2751
  12389. }
  12390. },
  12391. flying: {
  12392. height: math.unit(5 + 4 / 12, "feet"),
  12393. weight: math.unit(70, "lb"),
  12394. name: "Flying",
  12395. image: {
  12396. source: "./media/characters/quincy/flying.svg",
  12397. extra: 1044 / 930
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Micro",
  12404. height: math.unit(3, "cm")
  12405. },
  12406. {
  12407. name: "Normal",
  12408. height: math.unit(5 + 9 / 12, "feet")
  12409. },
  12410. {
  12411. name: "Macro",
  12412. height: math.unit(200, "meters"),
  12413. default: true
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(1000, "meters")
  12418. },
  12419. ]
  12420. ))
  12421. characterMakers.push(() => makeCharacter(
  12422. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12423. {
  12424. front: {
  12425. height: math.unit(3 + 11/12, "feet"),
  12426. weight: math.unit(50, "lb"),
  12427. name: "Front",
  12428. image: {
  12429. source: "./media/characters/vanrel/front.svg",
  12430. extra: 1104/949,
  12431. bottom: 52/1156
  12432. }
  12433. },
  12434. back: {
  12435. height: math.unit(3 + 11/12, "feet"),
  12436. weight: math.unit(50, "lb"),
  12437. name: "Back",
  12438. image: {
  12439. source: "./media/characters/vanrel/back.svg",
  12440. extra: 1119/976,
  12441. bottom: 37/1156
  12442. }
  12443. },
  12444. tome: {
  12445. height: math.unit(1.35, "feet"),
  12446. weight: math.unit(10, "lb"),
  12447. name: "Vanrel's Tome",
  12448. rename: true,
  12449. image: {
  12450. source: "./media/characters/vanrel/tome.svg"
  12451. }
  12452. },
  12453. beans: {
  12454. height: math.unit(0.89, "feet"),
  12455. name: "Beans",
  12456. image: {
  12457. source: "./media/characters/vanrel/beans.svg"
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Normal",
  12464. height: math.unit(3 + 11/12, "feet"),
  12465. default: true
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12471. {
  12472. front: {
  12473. height: math.unit(7 + 5 / 12, "feet"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/kuiper-vanrel/front.svg",
  12477. extra: 1219/1169,
  12478. bottom: 69/1288
  12479. }
  12480. },
  12481. back: {
  12482. height: math.unit(7 + 5 / 12, "feet"),
  12483. name: "Back",
  12484. image: {
  12485. source: "./media/characters/kuiper-vanrel/back.svg",
  12486. extra: 1236/1193,
  12487. bottom: 27/1263
  12488. }
  12489. },
  12490. foot: {
  12491. height: math.unit(0.55, "meters"),
  12492. name: "Foot",
  12493. image: {
  12494. source: "./media/characters/kuiper-vanrel/foot.svg",
  12495. }
  12496. },
  12497. battle: {
  12498. height: math.unit(6.824, "feet"),
  12499. name: "Battle",
  12500. image: {
  12501. source: "./media/characters/kuiper-vanrel/battle.svg",
  12502. extra: 1466 / 1327,
  12503. bottom: 29 / 1492.5
  12504. }
  12505. },
  12506. meerkui: {
  12507. height: math.unit(18, "inches"),
  12508. name: "Meerkui",
  12509. image: {
  12510. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12511. extra: 1354/1289,
  12512. bottom: 69/1423
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(7 + 5 / 12, "feet"),
  12520. default: true
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(8 + 5 / 12, "feet"),
  12529. name: "Front",
  12530. image: {
  12531. source: "./media/characters/keset-vanrel/front.svg",
  12532. extra: 1231/1148,
  12533. bottom: 82/1313
  12534. }
  12535. },
  12536. back: {
  12537. height: math.unit(8 + 5 / 12, "feet"),
  12538. name: "Back",
  12539. image: {
  12540. source: "./media/characters/keset-vanrel/back.svg",
  12541. extra: 1240/1174,
  12542. bottom: 33/1273
  12543. }
  12544. },
  12545. hand: {
  12546. height: math.unit(0.6, "meters"),
  12547. name: "Hand",
  12548. image: {
  12549. source: "./media/characters/keset-vanrel/hand.svg"
  12550. }
  12551. },
  12552. foot: {
  12553. height: math.unit(0.94978, "meters"),
  12554. name: "Foot",
  12555. image: {
  12556. source: "./media/characters/keset-vanrel/foot.svg"
  12557. }
  12558. },
  12559. battle: {
  12560. height: math.unit(7.408, "feet"),
  12561. name: "Battle",
  12562. image: {
  12563. source: "./media/characters/keset-vanrel/battle.svg",
  12564. extra: 1890 / 1386,
  12565. bottom: 73.28 / 1970
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Normal",
  12572. height: math.unit(8 + 5 / 12, "feet"),
  12573. default: true
  12574. },
  12575. ]
  12576. ))
  12577. characterMakers.push(() => makeCharacter(
  12578. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12579. {
  12580. front: {
  12581. height: math.unit(6, "feet"),
  12582. weight: math.unit(150, "lb"),
  12583. name: "Front",
  12584. image: {
  12585. source: "./media/characters/neos/front.svg",
  12586. extra: 1696 / 992,
  12587. bottom: 0.14
  12588. }
  12589. },
  12590. },
  12591. [
  12592. {
  12593. name: "Normal",
  12594. height: math.unit(54, "cm"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Macro",
  12599. height: math.unit(100, "m")
  12600. },
  12601. {
  12602. name: "Megamacro",
  12603. height: math.unit(10, "km")
  12604. },
  12605. {
  12606. name: "Megamacro+",
  12607. height: math.unit(100, "km")
  12608. },
  12609. {
  12610. name: "Gigamacro",
  12611. height: math.unit(100, "Mm")
  12612. },
  12613. {
  12614. name: "Teramacro",
  12615. height: math.unit(100, "Gm")
  12616. },
  12617. {
  12618. name: "Examacro",
  12619. height: math.unit(100, "Em")
  12620. },
  12621. {
  12622. name: "Godly",
  12623. height: math.unit(10000, "Ym")
  12624. },
  12625. {
  12626. name: "Beyond Godly",
  12627. height: math.unit(25, "multiverses")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12633. {
  12634. feminine: {
  12635. height: math.unit(5, "feet"),
  12636. weight: math.unit(100, "lb"),
  12637. name: "Feminine",
  12638. image: {
  12639. source: "./media/characters/sammy-mouse/feminine.svg",
  12640. extra: 2526 / 2425,
  12641. bottom: 0.123
  12642. }
  12643. },
  12644. masculine: {
  12645. height: math.unit(5, "feet"),
  12646. weight: math.unit(100, "lb"),
  12647. name: "Masculine",
  12648. image: {
  12649. source: "./media/characters/sammy-mouse/masculine.svg",
  12650. extra: 2526 / 2425,
  12651. bottom: 0.123
  12652. }
  12653. },
  12654. },
  12655. [
  12656. {
  12657. name: "Micro",
  12658. height: math.unit(5, "inches")
  12659. },
  12660. {
  12661. name: "Normal",
  12662. height: math.unit(5, "feet"),
  12663. default: true
  12664. },
  12665. {
  12666. name: "Macro",
  12667. height: math.unit(60, "feet")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(4, "feet"),
  12676. weight: math.unit(50, "lb"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/kole/front.svg",
  12680. extra: 1423 / 1303,
  12681. bottom: 0.025
  12682. }
  12683. },
  12684. back: {
  12685. height: math.unit(4, "feet"),
  12686. weight: math.unit(50, "lb"),
  12687. name: "Back",
  12688. image: {
  12689. source: "./media/characters/kole/back.svg",
  12690. extra: 1426 / 1280,
  12691. bottom: 0.02
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Normal",
  12698. height: math.unit(4, "feet"),
  12699. default: true
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12705. {
  12706. front: {
  12707. height: math.unit(2.5, "feet"),
  12708. weight: math.unit(32, "lb"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/rufran/front.svg",
  12712. extra: 1313/885,
  12713. bottom: 94/1407
  12714. }
  12715. },
  12716. side: {
  12717. height: math.unit(2.5, "feet"),
  12718. weight: math.unit(32, "lb"),
  12719. name: "Side",
  12720. image: {
  12721. source: "./media/characters/rufran/side.svg",
  12722. extra: 1109/852,
  12723. bottom: 118/1227
  12724. }
  12725. },
  12726. back: {
  12727. height: math.unit(2.5, "feet"),
  12728. weight: math.unit(32, "lb"),
  12729. name: "Back",
  12730. image: {
  12731. source: "./media/characters/rufran/back.svg",
  12732. extra: 1280/878,
  12733. bottom: 131/1411
  12734. }
  12735. },
  12736. mouth: {
  12737. height: math.unit(1.13, "feet"),
  12738. name: "Mouth",
  12739. image: {
  12740. source: "./media/characters/rufran/mouth.svg"
  12741. }
  12742. },
  12743. foot: {
  12744. height: math.unit(1.33, "feet"),
  12745. name: "Foot",
  12746. image: {
  12747. source: "./media/characters/rufran/foot.svg"
  12748. }
  12749. },
  12750. koboldFront: {
  12751. height: math.unit(2 + 6 / 12, "feet"),
  12752. weight: math.unit(20, "lb"),
  12753. name: "Front (Kobold)",
  12754. image: {
  12755. source: "./media/characters/rufran/kobold-front.svg",
  12756. extra: 2041 / 1839,
  12757. bottom: 0.055
  12758. }
  12759. },
  12760. koboldBack: {
  12761. height: math.unit(2 + 6 / 12, "feet"),
  12762. weight: math.unit(20, "lb"),
  12763. name: "Back (Kobold)",
  12764. image: {
  12765. source: "./media/characters/rufran/kobold-back.svg",
  12766. extra: 2054 / 1839,
  12767. bottom: 0.01
  12768. }
  12769. },
  12770. koboldHand: {
  12771. height: math.unit(0.2166, "meters"),
  12772. name: "Hand (Kobold)",
  12773. image: {
  12774. source: "./media/characters/rufran/kobold-hand.svg"
  12775. }
  12776. },
  12777. koboldFoot: {
  12778. height: math.unit(0.185, "meters"),
  12779. name: "Foot (Kobold)",
  12780. image: {
  12781. source: "./media/characters/rufran/kobold-foot.svg"
  12782. }
  12783. },
  12784. },
  12785. [
  12786. {
  12787. name: "Micro",
  12788. height: math.unit(1, "inch")
  12789. },
  12790. {
  12791. name: "Normal",
  12792. height: math.unit(2 + 6 / 12, "feet"),
  12793. default: true
  12794. },
  12795. {
  12796. name: "Big",
  12797. height: math.unit(60, "feet")
  12798. },
  12799. {
  12800. name: "Macro",
  12801. height: math.unit(325, "feet")
  12802. },
  12803. ]
  12804. ))
  12805. characterMakers.push(() => makeCharacter(
  12806. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12807. {
  12808. front: {
  12809. height: math.unit(0.3, "meters"),
  12810. weight: math.unit(3.5, "kg"),
  12811. name: "Front",
  12812. image: {
  12813. source: "./media/characters/chip/front.svg",
  12814. extra: 748 / 674
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Micro",
  12821. height: math.unit(1, "inch"),
  12822. default: true
  12823. },
  12824. ]
  12825. ))
  12826. characterMakers.push(() => makeCharacter(
  12827. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12828. {
  12829. side: {
  12830. height: math.unit(2.3, "meters"),
  12831. weight: math.unit(3500, "lb"),
  12832. name: "Side",
  12833. image: {
  12834. source: "./media/characters/torvid/side.svg",
  12835. extra: 1972 / 722,
  12836. bottom: 0.035
  12837. }
  12838. },
  12839. },
  12840. [
  12841. {
  12842. name: "Normal",
  12843. height: math.unit(2.3, "meters"),
  12844. default: true
  12845. },
  12846. ]
  12847. ))
  12848. characterMakers.push(() => makeCharacter(
  12849. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12850. {
  12851. front: {
  12852. height: math.unit(2, "meters"),
  12853. weight: math.unit(150.5, "kg"),
  12854. name: "Front",
  12855. image: {
  12856. source: "./media/characters/susan/front.svg",
  12857. extra: 693 / 635,
  12858. bottom: 0.05
  12859. }
  12860. },
  12861. },
  12862. [
  12863. {
  12864. name: "Megamacro",
  12865. height: math.unit(505, "miles"),
  12866. default: true
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(6, "feet"),
  12875. weight: math.unit(150, "lb"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/raindrops/front.svg",
  12879. extra: 2655 / 2461,
  12880. bottom: 49 / 2705
  12881. }
  12882. },
  12883. back: {
  12884. height: math.unit(6, "feet"),
  12885. weight: math.unit(150, "lb"),
  12886. name: "Back",
  12887. image: {
  12888. source: "./media/characters/raindrops/back.svg",
  12889. extra: 2574 / 2400,
  12890. bottom: 65 / 2634
  12891. }
  12892. },
  12893. },
  12894. [
  12895. {
  12896. name: "Micro",
  12897. height: math.unit(6, "inches")
  12898. },
  12899. {
  12900. name: "Normal",
  12901. height: math.unit(6 + 2 / 12, "feet")
  12902. },
  12903. {
  12904. name: "Macro",
  12905. height: math.unit(131, "feet"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Megamacro",
  12910. height: math.unit(15, "miles")
  12911. },
  12912. {
  12913. name: "Gigamacro",
  12914. height: math.unit(4000, "miles")
  12915. },
  12916. {
  12917. name: "Teramacro",
  12918. height: math.unit(315000, "miles")
  12919. },
  12920. ]
  12921. ))
  12922. characterMakers.push(() => makeCharacter(
  12923. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12924. {
  12925. front: {
  12926. height: math.unit(2.794, "meters"),
  12927. weight: math.unit(325, "kg"),
  12928. name: "Front",
  12929. image: {
  12930. source: "./media/characters/tezwa/front.svg",
  12931. extra: 2083 / 1906,
  12932. bottom: 0.031
  12933. }
  12934. },
  12935. foot: {
  12936. height: math.unit(0.687, "meters"),
  12937. name: "Foot",
  12938. image: {
  12939. source: "./media/characters/tezwa/foot.svg"
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Normal",
  12946. height: math.unit(9 + 2 / 12, "feet"),
  12947. default: true
  12948. },
  12949. ]
  12950. ))
  12951. characterMakers.push(() => makeCharacter(
  12952. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12953. {
  12954. front: {
  12955. height: math.unit(58, "feet"),
  12956. weight: math.unit(89000, "lb"),
  12957. name: "Front",
  12958. image: {
  12959. source: "./media/characters/typhus/front.svg",
  12960. extra: 816 / 800,
  12961. bottom: 0.065
  12962. }
  12963. },
  12964. },
  12965. [
  12966. {
  12967. name: "Macro",
  12968. height: math.unit(58, "feet"),
  12969. default: true
  12970. },
  12971. ]
  12972. ))
  12973. characterMakers.push(() => makeCharacter(
  12974. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12975. {
  12976. front: {
  12977. height: math.unit(12, "feet"),
  12978. weight: math.unit(6, "tonnes"),
  12979. name: "Front",
  12980. image: {
  12981. source: "./media/characters/lyra-von-wulf/front.svg",
  12982. extra: 1,
  12983. bottom: 0.10
  12984. }
  12985. },
  12986. frontMecha: {
  12987. height: math.unit(12, "feet"),
  12988. weight: math.unit(12, "tonnes"),
  12989. name: "Front (Mecha)",
  12990. image: {
  12991. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12992. extra: 1,
  12993. bottom: 0.042
  12994. }
  12995. },
  12996. maw: {
  12997. height: math.unit(2.2, "feet"),
  12998. name: "Maw",
  12999. image: {
  13000. source: "./media/characters/lyra-von-wulf/maw.svg"
  13001. }
  13002. },
  13003. },
  13004. [
  13005. {
  13006. name: "Normal",
  13007. height: math.unit(12, "feet"),
  13008. default: true
  13009. },
  13010. {
  13011. name: "Classic",
  13012. height: math.unit(50, "feet")
  13013. },
  13014. {
  13015. name: "Macro",
  13016. height: math.unit(500, "feet")
  13017. },
  13018. {
  13019. name: "Megamacro",
  13020. height: math.unit(1, "mile")
  13021. },
  13022. {
  13023. name: "Gigamacro",
  13024. height: math.unit(400, "miles")
  13025. },
  13026. {
  13027. name: "Teramacro",
  13028. height: math.unit(22000, "miles")
  13029. },
  13030. {
  13031. name: "Solarmacro",
  13032. height: math.unit(8600000, "miles")
  13033. },
  13034. {
  13035. name: "Galactic",
  13036. height: math.unit(1057000, "lightyears")
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13042. {
  13043. front: {
  13044. height: math.unit(6 + 10 / 12, "feet"),
  13045. weight: math.unit(150, "lb"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/dixon/front.svg",
  13049. extra: 3361 / 3209,
  13050. bottom: 0.01
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Normal",
  13057. height: math.unit(6 + 10 / 12, "feet"),
  13058. default: true
  13059. },
  13060. {
  13061. name: "Big",
  13062. height: math.unit(12, "meters")
  13063. },
  13064. {
  13065. name: "Macro",
  13066. height: math.unit(500, "meters")
  13067. },
  13068. {
  13069. name: "Megamacro",
  13070. height: math.unit(2, "km")
  13071. },
  13072. ]
  13073. ))
  13074. characterMakers.push(() => makeCharacter(
  13075. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13076. {
  13077. front: {
  13078. height: math.unit(185, "cm"),
  13079. weight: math.unit(68, "kg"),
  13080. name: "Front",
  13081. image: {
  13082. source: "./media/characters/kauko/front.svg",
  13083. extra: 1455 / 1421,
  13084. bottom: 0.03
  13085. }
  13086. },
  13087. back: {
  13088. height: math.unit(185, "cm"),
  13089. weight: math.unit(68, "kg"),
  13090. name: "Back",
  13091. image: {
  13092. source: "./media/characters/kauko/back.svg",
  13093. extra: 1455 / 1421,
  13094. bottom: 0.004
  13095. }
  13096. },
  13097. },
  13098. [
  13099. {
  13100. name: "Normal",
  13101. height: math.unit(185, "cm"),
  13102. default: true
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(6, "feet"),
  13111. weight: math.unit(150, "kg"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/varg/front.svg",
  13115. extra: 1108 / 1018,
  13116. bottom: 0.0375
  13117. }
  13118. },
  13119. },
  13120. [
  13121. {
  13122. name: "Normal",
  13123. height: math.unit(5, "meters")
  13124. },
  13125. {
  13126. name: "Macro",
  13127. height: math.unit(200, "meters")
  13128. },
  13129. {
  13130. name: "Megamacro",
  13131. height: math.unit(20, "kilometers")
  13132. },
  13133. {
  13134. name: "True Size",
  13135. height: math.unit(211, "km"),
  13136. default: true
  13137. },
  13138. {
  13139. name: "Gigamacro",
  13140. height: math.unit(1000, "km")
  13141. },
  13142. {
  13143. name: "Gigamacro+",
  13144. height: math.unit(8000, "km")
  13145. },
  13146. {
  13147. name: "Teramacro",
  13148. height: math.unit(1000000, "km")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(7 + 7 / 12, "feet"),
  13157. weight: math.unit(267, "lb"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/dayza/front.svg",
  13161. extra: 1262 / 1200,
  13162. bottom: 0.035
  13163. }
  13164. },
  13165. side: {
  13166. height: math.unit(7 + 7 / 12, "feet"),
  13167. weight: math.unit(267, "lb"),
  13168. name: "Side",
  13169. image: {
  13170. source: "./media/characters/dayza/side.svg",
  13171. extra: 1295 / 1245,
  13172. bottom: 0.05
  13173. }
  13174. },
  13175. back: {
  13176. height: math.unit(7 + 7 / 12, "feet"),
  13177. weight: math.unit(267, "lb"),
  13178. name: "Back",
  13179. image: {
  13180. source: "./media/characters/dayza/back.svg",
  13181. extra: 1241 / 1170
  13182. }
  13183. },
  13184. },
  13185. [
  13186. {
  13187. name: "Normal",
  13188. height: math.unit(7 + 7 / 12, "feet"),
  13189. default: true
  13190. },
  13191. {
  13192. name: "Macro",
  13193. height: math.unit(155, "feet")
  13194. },
  13195. ]
  13196. ))
  13197. characterMakers.push(() => makeCharacter(
  13198. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13199. {
  13200. front: {
  13201. height: math.unit(6 + 5 / 12, "feet"),
  13202. weight: math.unit(160, "lb"),
  13203. name: "Front",
  13204. image: {
  13205. source: "./media/characters/xanthos/front.svg",
  13206. extra: 1,
  13207. bottom: 0.04
  13208. }
  13209. },
  13210. back: {
  13211. height: math.unit(6 + 5 / 12, "feet"),
  13212. weight: math.unit(160, "lb"),
  13213. name: "Back",
  13214. image: {
  13215. source: "./media/characters/xanthos/back.svg",
  13216. extra: 1,
  13217. bottom: 0.03
  13218. }
  13219. },
  13220. hand: {
  13221. height: math.unit(0.928, "feet"),
  13222. name: "Hand",
  13223. image: {
  13224. source: "./media/characters/xanthos/hand.svg"
  13225. }
  13226. },
  13227. foot: {
  13228. height: math.unit(1.286, "feet"),
  13229. name: "Foot",
  13230. image: {
  13231. source: "./media/characters/xanthos/foot.svg"
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(6 + 5 / 12, "feet"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Normal+",
  13243. height: math.unit(6, "meters")
  13244. },
  13245. {
  13246. name: "Macro",
  13247. height: math.unit(40, "feet")
  13248. },
  13249. {
  13250. name: "Macro+",
  13251. height: math.unit(200, "meters")
  13252. },
  13253. {
  13254. name: "Megamacro",
  13255. height: math.unit(20, "km")
  13256. },
  13257. {
  13258. name: "Megamacro+",
  13259. height: math.unit(100, "km")
  13260. },
  13261. {
  13262. name: "Gigamacro",
  13263. height: math.unit(200, "megameters")
  13264. },
  13265. {
  13266. name: "Gigamacro+",
  13267. height: math.unit(1.5, "gigameters")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(6 + 3 / 12, "feet"),
  13276. weight: math.unit(215, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/grynn/front.svg",
  13280. extra: 4627 / 4209,
  13281. bottom: 0.047
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Micro",
  13288. height: math.unit(6, "inches")
  13289. },
  13290. {
  13291. name: "Normal",
  13292. height: math.unit(6 + 3 / 12, "feet"),
  13293. default: true
  13294. },
  13295. {
  13296. name: "Big",
  13297. height: math.unit(104, "feet")
  13298. },
  13299. {
  13300. name: "Macro",
  13301. height: math.unit(944, "feet")
  13302. },
  13303. {
  13304. name: "Macro+",
  13305. height: math.unit(9480, "feet")
  13306. },
  13307. {
  13308. name: "Megamacro",
  13309. height: math.unit(78752, "feet")
  13310. },
  13311. {
  13312. name: "Megamacro+",
  13313. height: math.unit(630128, "feet")
  13314. },
  13315. {
  13316. name: "Megamacro++",
  13317. height: math.unit(3150695, "feet")
  13318. },
  13319. ]
  13320. ))
  13321. characterMakers.push(() => makeCharacter(
  13322. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13323. {
  13324. front: {
  13325. height: math.unit(7 + 5 / 12, "feet"),
  13326. weight: math.unit(450, "lb"),
  13327. name: "Front",
  13328. image: {
  13329. source: "./media/characters/mocha-aura/front.svg",
  13330. extra: 1907 / 1817,
  13331. bottom: 0.04
  13332. }
  13333. },
  13334. back: {
  13335. height: math.unit(7 + 5 / 12, "feet"),
  13336. weight: math.unit(450, "lb"),
  13337. name: "Back",
  13338. image: {
  13339. source: "./media/characters/mocha-aura/back.svg",
  13340. extra: 1900 / 1825,
  13341. bottom: 0.045
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Nano",
  13348. height: math.unit(1, "nm")
  13349. },
  13350. {
  13351. name: "Megamicro",
  13352. height: math.unit(1, "mm")
  13353. },
  13354. {
  13355. name: "Micro",
  13356. height: math.unit(3, "inches")
  13357. },
  13358. {
  13359. name: "Normal",
  13360. height: math.unit(7 + 5 / 12, "feet"),
  13361. default: true
  13362. },
  13363. {
  13364. name: "Macro",
  13365. height: math.unit(30, "feet")
  13366. },
  13367. {
  13368. name: "Megamacro",
  13369. height: math.unit(3500, "feet")
  13370. },
  13371. {
  13372. name: "Teramacro",
  13373. height: math.unit(500000, "miles")
  13374. },
  13375. {
  13376. name: "Petamacro",
  13377. height: math.unit(50000000000000000, "parsecs")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(150, "lb"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/ilisha-devya/front.svg",
  13390. extra: 1053/1049,
  13391. bottom: 270/1323
  13392. }
  13393. },
  13394. back: {
  13395. height: math.unit(6, "feet"),
  13396. weight: math.unit(150, "lb"),
  13397. name: "Back",
  13398. image: {
  13399. source: "./media/characters/ilisha-devya/back.svg",
  13400. extra: 1131/1128,
  13401. bottom: 39/1170
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Macro",
  13408. height: math.unit(500, "feet"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Megamacro",
  13413. height: math.unit(10, "miles")
  13414. },
  13415. {
  13416. name: "Gigamacro",
  13417. height: math.unit(100000, "miles")
  13418. },
  13419. {
  13420. name: "Examacro",
  13421. height: math.unit(1e9, "lightyears")
  13422. },
  13423. {
  13424. name: "Omniversal",
  13425. height: math.unit(1e33, "lightyears")
  13426. },
  13427. {
  13428. name: "Beyond Infinite",
  13429. height: math.unit(1e100, "lightyears")
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13435. {
  13436. Side: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Side",
  13440. image: {
  13441. source: "./media/characters/mira/side.svg",
  13442. extra: 900 / 799,
  13443. bottom: 0.02
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Human Size",
  13450. height: math.unit(6, "feet")
  13451. },
  13452. {
  13453. name: "Macro",
  13454. height: math.unit(100, "feet"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Megamacro",
  13459. height: math.unit(10, "miles")
  13460. },
  13461. {
  13462. name: "Gigamacro",
  13463. height: math.unit(25000, "miles")
  13464. },
  13465. {
  13466. name: "Teramacro",
  13467. height: math.unit(300, "AU")
  13468. },
  13469. {
  13470. name: "Full Size",
  13471. height: math.unit(4.5e10, "lightyears")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(6, "feet"),
  13480. weight: math.unit(150, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/holly/front.svg",
  13484. extra: 639 / 606
  13485. }
  13486. },
  13487. back: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Back",
  13491. image: {
  13492. source: "./media/characters/holly/back.svg",
  13493. extra: 623 / 598
  13494. }
  13495. },
  13496. frontWorking: {
  13497. height: math.unit(6, "feet"),
  13498. weight: math.unit(150, "lb"),
  13499. name: "Front (Working)",
  13500. image: {
  13501. source: "./media/characters/holly/front-working.svg",
  13502. extra: 607 / 577,
  13503. bottom: 0.048
  13504. }
  13505. },
  13506. },
  13507. [
  13508. {
  13509. name: "Normal",
  13510. height: math.unit(12 + 3 / 12, "feet"),
  13511. default: true
  13512. },
  13513. ]
  13514. ))
  13515. characterMakers.push(() => makeCharacter(
  13516. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13517. {
  13518. front: {
  13519. height: math.unit(6, "feet"),
  13520. weight: math.unit(150, "lb"),
  13521. name: "Front",
  13522. image: {
  13523. source: "./media/characters/porter/front.svg",
  13524. extra: 1,
  13525. bottom: 0.01
  13526. }
  13527. },
  13528. frontRobes: {
  13529. height: math.unit(6, "feet"),
  13530. weight: math.unit(150, "lb"),
  13531. name: "Front (Robes)",
  13532. image: {
  13533. source: "./media/characters/porter/front-robes.svg",
  13534. extra: 1.01,
  13535. bottom: 0.01
  13536. }
  13537. },
  13538. },
  13539. [
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(11 + 9 / 12, "feet"),
  13543. default: true
  13544. },
  13545. ]
  13546. ))
  13547. characterMakers.push(() => makeCharacter(
  13548. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13549. {
  13550. legendary: {
  13551. height: math.unit(6, "feet"),
  13552. weight: math.unit(150, "lb"),
  13553. name: "Legendary",
  13554. image: {
  13555. source: "./media/characters/lucy/legendary.svg",
  13556. extra: 1355 / 1100,
  13557. bottom: 0.045
  13558. }
  13559. },
  13560. },
  13561. [
  13562. {
  13563. name: "Legendary",
  13564. height: math.unit(86882 * 2, "miles"),
  13565. default: true
  13566. },
  13567. ]
  13568. ))
  13569. characterMakers.push(() => makeCharacter(
  13570. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13571. {
  13572. front: {
  13573. height: math.unit(6, "feet"),
  13574. weight: math.unit(150, "lb"),
  13575. name: "Front",
  13576. image: {
  13577. source: "./media/characters/drusilla/front.svg",
  13578. extra: 678 / 635,
  13579. bottom: 0.03
  13580. }
  13581. },
  13582. back: {
  13583. height: math.unit(6, "feet"),
  13584. weight: math.unit(150, "lb"),
  13585. name: "Back",
  13586. image: {
  13587. source: "./media/characters/drusilla/back.svg",
  13588. extra: 678 / 635,
  13589. bottom: 0.005
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "Macro",
  13596. height: math.unit(100, "feet")
  13597. },
  13598. {
  13599. name: "Canon Height",
  13600. height: math.unit(2000, "feet"),
  13601. default: true
  13602. },
  13603. ]
  13604. ))
  13605. characterMakers.push(() => makeCharacter(
  13606. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13607. {
  13608. front: {
  13609. height: math.unit(6, "feet"),
  13610. weight: math.unit(180, "lb"),
  13611. name: "Front",
  13612. image: {
  13613. source: "./media/characters/renard-thatch/front.svg",
  13614. extra: 2411 / 2275,
  13615. bottom: 0.01
  13616. }
  13617. },
  13618. frontPosing: {
  13619. height: math.unit(6, "feet"),
  13620. weight: math.unit(180, "lb"),
  13621. name: "Front (Posing)",
  13622. image: {
  13623. source: "./media/characters/renard-thatch/front-posing.svg",
  13624. extra: 2381 / 2261,
  13625. bottom: 0.01
  13626. }
  13627. },
  13628. back: {
  13629. height: math.unit(6, "feet"),
  13630. weight: math.unit(180, "lb"),
  13631. name: "Back",
  13632. image: {
  13633. source: "./media/characters/renard-thatch/back.svg",
  13634. extra: 2428 / 2288
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Micro",
  13641. height: math.unit(3, "inches")
  13642. },
  13643. {
  13644. name: "Default",
  13645. height: math.unit(6, "feet"),
  13646. default: true
  13647. },
  13648. {
  13649. name: "Macro",
  13650. height: math.unit(75, "feet")
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13656. {
  13657. front: {
  13658. height: math.unit(1450, "feet"),
  13659. weight: math.unit(1.21e6, "tons"),
  13660. name: "Front",
  13661. image: {
  13662. source: "./media/characters/sekvra/front.svg",
  13663. extra: 1193/1190,
  13664. bottom: 78/1271
  13665. }
  13666. },
  13667. side: {
  13668. height: math.unit(1450, "feet"),
  13669. weight: math.unit(1.21e6, "tons"),
  13670. name: "Side",
  13671. image: {
  13672. source: "./media/characters/sekvra/side.svg",
  13673. extra: 1193/1190,
  13674. bottom: 52/1245
  13675. }
  13676. },
  13677. back: {
  13678. height: math.unit(1450, "feet"),
  13679. weight: math.unit(1.21e6, "tons"),
  13680. name: "Back",
  13681. image: {
  13682. source: "./media/characters/sekvra/back.svg",
  13683. extra: 1219/1216,
  13684. bottom: 21/1240
  13685. }
  13686. },
  13687. frontClothed: {
  13688. height: math.unit(1450, "feet"),
  13689. weight: math.unit(1.21e6, "tons"),
  13690. name: "Front (Clothed)",
  13691. image: {
  13692. source: "./media/characters/sekvra/front-clothed.svg",
  13693. extra: 1192/1189,
  13694. bottom: 79/1271
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Macro",
  13701. height: math.unit(1450, "feet"),
  13702. default: true
  13703. },
  13704. {
  13705. name: "Megamacro",
  13706. height: math.unit(15000, "feet")
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13712. {
  13713. front: {
  13714. height: math.unit(6, "feet"),
  13715. weight: math.unit(150, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/carmine/front.svg",
  13719. extra: 1,
  13720. bottom: 0.035
  13721. }
  13722. },
  13723. frontArmor: {
  13724. height: math.unit(6, "feet"),
  13725. weight: math.unit(150, "lb"),
  13726. name: "Front (Armor)",
  13727. image: {
  13728. source: "./media/characters/carmine/front-armor.svg",
  13729. extra: 1,
  13730. bottom: 0.035
  13731. }
  13732. },
  13733. },
  13734. [
  13735. {
  13736. name: "Large",
  13737. height: math.unit(1, "mile")
  13738. },
  13739. {
  13740. name: "Huge",
  13741. height: math.unit(40, "miles"),
  13742. default: true
  13743. },
  13744. {
  13745. name: "Colossal",
  13746. height: math.unit(2500, "miles")
  13747. },
  13748. ]
  13749. ))
  13750. characterMakers.push(() => makeCharacter(
  13751. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13752. {
  13753. front: {
  13754. height: math.unit(6, "feet"),
  13755. weight: math.unit(150, "lb"),
  13756. name: "Front",
  13757. image: {
  13758. source: "./media/characters/elyssia/front.svg",
  13759. extra: 2201 / 2035,
  13760. bottom: 0.05
  13761. }
  13762. },
  13763. frontClothed: {
  13764. height: math.unit(6, "feet"),
  13765. weight: math.unit(150, "lb"),
  13766. name: "Front (Clothed)",
  13767. image: {
  13768. source: "./media/characters/elyssia/front-clothed.svg",
  13769. extra: 2201 / 2035,
  13770. bottom: 0.05
  13771. }
  13772. },
  13773. back: {
  13774. height: math.unit(6, "feet"),
  13775. weight: math.unit(150, "lb"),
  13776. name: "Back",
  13777. image: {
  13778. source: "./media/characters/elyssia/back.svg",
  13779. extra: 2201 / 2035,
  13780. bottom: 0.013
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Smaller",
  13787. height: math.unit(150, "feet")
  13788. },
  13789. {
  13790. name: "Standard",
  13791. height: math.unit(1400, "feet"),
  13792. default: true
  13793. },
  13794. {
  13795. name: "Distracted",
  13796. height: math.unit(15000, "feet")
  13797. },
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(7 + 4/12, "feet"),
  13805. weight: math.unit(690, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/geno-maxwell/front.svg",
  13809. extra: 984/856,
  13810. bottom: 87/1071
  13811. }
  13812. },
  13813. back: {
  13814. height: math.unit(7 + 4/12, "feet"),
  13815. weight: math.unit(690, "lb"),
  13816. name: "Back",
  13817. image: {
  13818. source: "./media/characters/geno-maxwell/back.svg",
  13819. extra: 981/854,
  13820. bottom: 57/1038
  13821. }
  13822. },
  13823. frontCostume: {
  13824. height: math.unit(7 + 4/12, "feet"),
  13825. weight: math.unit(690, "lb"),
  13826. name: "Front (Costume)",
  13827. image: {
  13828. source: "./media/characters/geno-maxwell/front-costume.svg",
  13829. extra: 984/856,
  13830. bottom: 87/1071
  13831. }
  13832. },
  13833. backcostume: {
  13834. height: math.unit(7 + 4/12, "feet"),
  13835. weight: math.unit(690, "lb"),
  13836. name: "Back (Costume)",
  13837. image: {
  13838. source: "./media/characters/geno-maxwell/back-costume.svg",
  13839. extra: 981/854,
  13840. bottom: 57/1038
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Micro",
  13847. height: math.unit(3, "inches")
  13848. },
  13849. {
  13850. name: "Normal",
  13851. height: math.unit(7 + 4 / 12, "feet"),
  13852. default: true
  13853. },
  13854. {
  13855. name: "Macro",
  13856. height: math.unit(220, "feet")
  13857. },
  13858. {
  13859. name: "Megamacro",
  13860. height: math.unit(11, "miles")
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13866. {
  13867. front: {
  13868. height: math.unit(7 + 4/12, "feet"),
  13869. weight: math.unit(750, "lb"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/regena-maxwell/front.svg",
  13873. extra: 984/856,
  13874. bottom: 87/1071
  13875. }
  13876. },
  13877. back: {
  13878. height: math.unit(7 + 4/12, "feet"),
  13879. weight: math.unit(750, "lb"),
  13880. name: "Back",
  13881. image: {
  13882. source: "./media/characters/regena-maxwell/back.svg",
  13883. extra: 981/854,
  13884. bottom: 57/1038
  13885. }
  13886. },
  13887. frontCostume: {
  13888. height: math.unit(7 + 4/12, "feet"),
  13889. weight: math.unit(750, "lb"),
  13890. name: "Front (Costume)",
  13891. image: {
  13892. source: "./media/characters/regena-maxwell/front-costume.svg",
  13893. extra: 984/856,
  13894. bottom: 87/1071
  13895. }
  13896. },
  13897. backcostume: {
  13898. height: math.unit(7 + 4/12, "feet"),
  13899. weight: math.unit(750, "lb"),
  13900. name: "Back (Costume)",
  13901. image: {
  13902. source: "./media/characters/regena-maxwell/back-costume.svg",
  13903. extra: 981/854,
  13904. bottom: 57/1038
  13905. }
  13906. },
  13907. },
  13908. [
  13909. {
  13910. name: "Normal",
  13911. height: math.unit(7 + 4 / 12, "feet"),
  13912. default: true
  13913. },
  13914. {
  13915. name: "Macro",
  13916. height: math.unit(220, "feet")
  13917. },
  13918. {
  13919. name: "Megamacro",
  13920. height: math.unit(11, "miles")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(150, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13933. extra: 860 / 690,
  13934. bottom: 0.03
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(1.7, "meters"),
  13942. default: true
  13943. },
  13944. ]
  13945. ))
  13946. characterMakers.push(() => makeCharacter(
  13947. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13948. {
  13949. front: {
  13950. height: math.unit(6, "feet"),
  13951. weight: math.unit(150, "lb"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/quilly/front.svg",
  13955. extra: 890 / 776
  13956. }
  13957. },
  13958. },
  13959. [
  13960. {
  13961. name: "Gigamacro",
  13962. height: math.unit(404090, "miles"),
  13963. default: true
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13969. {
  13970. front: {
  13971. height: math.unit(7 + 8 / 12, "feet"),
  13972. weight: math.unit(350, "lb"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/tempest/front.svg",
  13976. extra: 1175 / 1086,
  13977. bottom: 0.02
  13978. }
  13979. },
  13980. },
  13981. [
  13982. {
  13983. name: "Normal",
  13984. height: math.unit(7 + 8 / 12, "feet"),
  13985. default: true
  13986. },
  13987. ]
  13988. ))
  13989. characterMakers.push(() => makeCharacter(
  13990. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13991. {
  13992. side: {
  13993. height: math.unit(4 + 5 / 12, "feet"),
  13994. weight: math.unit(80, "lb"),
  13995. name: "Side",
  13996. image: {
  13997. source: "./media/characters/rodger/side.svg",
  13998. extra: 1235 / 1118
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Micro",
  14005. height: math.unit(1, "inch")
  14006. },
  14007. {
  14008. name: "Normal",
  14009. height: math.unit(4 + 5 / 12, "feet"),
  14010. default: true
  14011. },
  14012. {
  14013. name: "Macro",
  14014. height: math.unit(120, "feet")
  14015. },
  14016. ]
  14017. ))
  14018. characterMakers.push(() => makeCharacter(
  14019. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14020. {
  14021. front: {
  14022. height: math.unit(6, "feet"),
  14023. weight: math.unit(150, "lb"),
  14024. name: "Front",
  14025. image: {
  14026. source: "./media/characters/danyel/front.svg",
  14027. extra: 1185 / 1123,
  14028. bottom: 0.05
  14029. }
  14030. },
  14031. },
  14032. [
  14033. {
  14034. name: "Shrunken",
  14035. height: math.unit(0.5, "mm")
  14036. },
  14037. {
  14038. name: "Micro",
  14039. height: math.unit(1, "mm"),
  14040. default: true
  14041. },
  14042. {
  14043. name: "Upsized",
  14044. height: math.unit(5 + 5 / 12, "feet")
  14045. },
  14046. ]
  14047. ))
  14048. characterMakers.push(() => makeCharacter(
  14049. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14050. {
  14051. front: {
  14052. height: math.unit(5 + 6 / 12, "feet"),
  14053. weight: math.unit(200, "lb"),
  14054. name: "Front",
  14055. image: {
  14056. source: "./media/characters/vivian-bijoux/front.svg",
  14057. extra: 1217/1209,
  14058. bottom: 76/1293
  14059. }
  14060. },
  14061. back: {
  14062. height: math.unit(5 + 6 / 12, "feet"),
  14063. weight: math.unit(200, "lb"),
  14064. name: "Back",
  14065. image: {
  14066. source: "./media/characters/vivian-bijoux/back.svg",
  14067. extra: 1214/1208,
  14068. bottom: 51/1265
  14069. }
  14070. },
  14071. dressed: {
  14072. height: math.unit(5 + 6 / 12, "feet"),
  14073. weight: math.unit(200, "lb"),
  14074. name: "Dressed",
  14075. image: {
  14076. source: "./media/characters/vivian-bijoux/dressed.svg",
  14077. extra: 1217/1209,
  14078. bottom: 76/1293
  14079. }
  14080. },
  14081. },
  14082. [
  14083. {
  14084. name: "Normal",
  14085. height: math.unit(5 + 6 / 12, "feet"),
  14086. default: true
  14087. },
  14088. {
  14089. name: "Bad Dream",
  14090. height: math.unit(500, "feet")
  14091. },
  14092. {
  14093. name: "Nightmare",
  14094. height: math.unit(500, "miles")
  14095. },
  14096. ]
  14097. ))
  14098. characterMakers.push(() => makeCharacter(
  14099. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14100. {
  14101. front: {
  14102. height: math.unit(6 + 1 / 12, "feet"),
  14103. weight: math.unit(260, "lb"),
  14104. name: "Front",
  14105. image: {
  14106. source: "./media/characters/zeta/front.svg",
  14107. extra: 1968 / 1889,
  14108. bottom: 0.06
  14109. }
  14110. },
  14111. back: {
  14112. height: math.unit(6 + 1 / 12, "feet"),
  14113. weight: math.unit(260, "lb"),
  14114. name: "Back",
  14115. image: {
  14116. source: "./media/characters/zeta/back.svg",
  14117. extra: 1944 / 1858,
  14118. bottom: 0.03
  14119. }
  14120. },
  14121. hand: {
  14122. height: math.unit(1.112, "feet"),
  14123. name: "Hand",
  14124. image: {
  14125. source: "./media/characters/zeta/hand.svg"
  14126. }
  14127. },
  14128. foot: {
  14129. height: math.unit(1.48, "feet"),
  14130. name: "Foot",
  14131. image: {
  14132. source: "./media/characters/zeta/foot.svg"
  14133. }
  14134. },
  14135. },
  14136. [
  14137. {
  14138. name: "Micro",
  14139. height: math.unit(6, "inches")
  14140. },
  14141. {
  14142. name: "Normal",
  14143. height: math.unit(6 + 1 / 12, "feet"),
  14144. default: true
  14145. },
  14146. {
  14147. name: "Macro",
  14148. height: math.unit(20, "feet")
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(6, "feet"),
  14157. weight: math.unit(150, "lb"),
  14158. name: "Front",
  14159. image: {
  14160. source: "./media/characters/jamie-larsen/front.svg",
  14161. extra: 962 / 933,
  14162. bottom: 0.02
  14163. }
  14164. },
  14165. back: {
  14166. height: math.unit(6, "feet"),
  14167. weight: math.unit(150, "lb"),
  14168. name: "Back",
  14169. image: {
  14170. source: "./media/characters/jamie-larsen/back.svg",
  14171. extra: 997 / 946
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Macro",
  14178. height: math.unit(28 + 7 / 12, "feet"),
  14179. default: true
  14180. },
  14181. {
  14182. name: "Macro+",
  14183. height: math.unit(180, "feet")
  14184. },
  14185. {
  14186. name: "Megamacro",
  14187. height: math.unit(10, "miles")
  14188. },
  14189. {
  14190. name: "Gigamacro",
  14191. height: math.unit(200000, "miles")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(6, "feet"),
  14200. weight: math.unit(120, "lb"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/vance/front.svg",
  14204. extra: 1980 / 1890,
  14205. bottom: 0.09
  14206. }
  14207. },
  14208. back: {
  14209. height: math.unit(6, "feet"),
  14210. weight: math.unit(120, "lb"),
  14211. name: "Back",
  14212. image: {
  14213. source: "./media/characters/vance/back.svg",
  14214. extra: 2081 / 1994,
  14215. bottom: 0.014
  14216. }
  14217. },
  14218. hand: {
  14219. height: math.unit(0.88, "feet"),
  14220. name: "Hand",
  14221. image: {
  14222. source: "./media/characters/vance/hand.svg"
  14223. }
  14224. },
  14225. foot: {
  14226. height: math.unit(0.64, "feet"),
  14227. name: "Foot",
  14228. image: {
  14229. source: "./media/characters/vance/foot.svg"
  14230. }
  14231. },
  14232. },
  14233. [
  14234. {
  14235. name: "Small",
  14236. height: math.unit(90, "feet"),
  14237. default: true
  14238. },
  14239. {
  14240. name: "Macro",
  14241. height: math.unit(100, "meters")
  14242. },
  14243. {
  14244. name: "Megamacro",
  14245. height: math.unit(15, "miles")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(6, "feet"),
  14254. weight: math.unit(180, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/xochitl/front.svg",
  14258. extra: 2297 / 2261,
  14259. bottom: 0.065
  14260. }
  14261. },
  14262. back: {
  14263. height: math.unit(6, "feet"),
  14264. weight: math.unit(180, "lb"),
  14265. name: "Back",
  14266. image: {
  14267. source: "./media/characters/xochitl/back.svg",
  14268. extra: 2386 / 2354,
  14269. bottom: 0.01
  14270. }
  14271. },
  14272. foot: {
  14273. height: math.unit(6 / 5 * 1.15, "feet"),
  14274. weight: math.unit(150, "lb"),
  14275. name: "Foot",
  14276. image: {
  14277. source: "./media/characters/xochitl/foot.svg"
  14278. }
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Macro",
  14284. height: math.unit(80, "feet")
  14285. },
  14286. {
  14287. name: "Macro+",
  14288. height: math.unit(400, "feet"),
  14289. default: true
  14290. },
  14291. {
  14292. name: "Gigamacro",
  14293. height: math.unit(80000, "miles")
  14294. },
  14295. {
  14296. name: "Gigamacro+",
  14297. height: math.unit(400000, "miles")
  14298. },
  14299. {
  14300. name: "Teramacro",
  14301. height: math.unit(300, "AU")
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(150, "lb"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/vincent/front.svg",
  14314. extra: 1130 / 1080,
  14315. bottom: 0.055
  14316. }
  14317. },
  14318. beak: {
  14319. height: math.unit(6 * 0.1, "feet"),
  14320. name: "Beak",
  14321. image: {
  14322. source: "./media/characters/vincent/beak.svg"
  14323. }
  14324. },
  14325. hand: {
  14326. height: math.unit(6 * 0.85, "feet"),
  14327. weight: math.unit(150, "lb"),
  14328. name: "Hand",
  14329. image: {
  14330. source: "./media/characters/vincent/hand.svg"
  14331. }
  14332. },
  14333. foot: {
  14334. height: math.unit(6 * 0.19, "feet"),
  14335. weight: math.unit(150, "lb"),
  14336. name: "Foot",
  14337. image: {
  14338. source: "./media/characters/vincent/foot.svg"
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Base",
  14345. height: math.unit(6 + 5 / 12, "feet"),
  14346. default: true
  14347. },
  14348. {
  14349. name: "Macro",
  14350. height: math.unit(300, "feet")
  14351. },
  14352. {
  14353. name: "Megamacro",
  14354. height: math.unit(2, "miles")
  14355. },
  14356. {
  14357. name: "Gigamacro",
  14358. height: math.unit(1000, "miles")
  14359. },
  14360. ]
  14361. ))
  14362. characterMakers.push(() => makeCharacter(
  14363. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14364. {
  14365. front: {
  14366. height: math.unit(2, "meters"),
  14367. weight: math.unit(500, "kg"),
  14368. name: "Front",
  14369. image: {
  14370. source: "./media/characters/coatl/front.svg",
  14371. extra: 3948 / 3500,
  14372. bottom: 0.082
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Normal",
  14379. height: math.unit(4, "meters")
  14380. },
  14381. {
  14382. name: "Macro",
  14383. height: math.unit(100, "meters"),
  14384. default: true
  14385. },
  14386. {
  14387. name: "Macro+",
  14388. height: math.unit(300, "meters")
  14389. },
  14390. {
  14391. name: "Megamacro",
  14392. height: math.unit(3, "gigameters")
  14393. },
  14394. {
  14395. name: "Megamacro+",
  14396. height: math.unit(300, "terameters")
  14397. },
  14398. {
  14399. name: "Megamacro++",
  14400. height: math.unit(3, "lightyears")
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14406. {
  14407. front: {
  14408. height: math.unit(6, "feet"),
  14409. weight: math.unit(50, "kg"),
  14410. name: "front",
  14411. image: {
  14412. source: "./media/characters/shiroryu/front.svg",
  14413. extra: 1990 / 1935
  14414. }
  14415. },
  14416. },
  14417. [
  14418. {
  14419. name: "Mortal Mingling",
  14420. height: math.unit(3, "meters")
  14421. },
  14422. {
  14423. name: "Kaiju-ish",
  14424. height: math.unit(250, "meters")
  14425. },
  14426. {
  14427. name: "Somewhat Godly",
  14428. height: math.unit(400, "km"),
  14429. default: true
  14430. },
  14431. {
  14432. name: "Planetary",
  14433. height: math.unit(300, "megameters")
  14434. },
  14435. {
  14436. name: "Galaxy-dwarfing",
  14437. height: math.unit(450, "kiloparsecs")
  14438. },
  14439. {
  14440. name: "Universe Eater",
  14441. height: math.unit(150, "gigaparsecs")
  14442. },
  14443. {
  14444. name: "Almost Immeasurable",
  14445. height: math.unit(1.3e266, "yottaparsecs")
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/umeko/front.svg",
  14458. extra: 1,
  14459. bottom: 0.019
  14460. }
  14461. },
  14462. frontArmored: {
  14463. height: math.unit(6, "feet"),
  14464. weight: math.unit(150, "lb"),
  14465. name: "Front (Armored)",
  14466. image: {
  14467. source: "./media/characters/umeko/front-armored.svg",
  14468. extra: 1,
  14469. bottom: 0.021
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Macro",
  14476. height: math.unit(220, "feet"),
  14477. default: true
  14478. },
  14479. {
  14480. name: "Guardian Dragon",
  14481. height: math.unit(50, "miles")
  14482. },
  14483. {
  14484. name: "Cosmic",
  14485. height: math.unit(800000, "miles")
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6, "feet"),
  14494. weight: math.unit(150, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/cassidy/front.svg",
  14498. extra: 810/808,
  14499. bottom: 41/851
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Canon Height",
  14506. height: math.unit(120, "feet"),
  14507. default: true
  14508. },
  14509. {
  14510. name: "Macro+",
  14511. height: math.unit(400, "feet")
  14512. },
  14513. {
  14514. name: "Macro++",
  14515. height: math.unit(4000, "feet")
  14516. },
  14517. {
  14518. name: "Megamacro",
  14519. height: math.unit(3, "miles")
  14520. },
  14521. ]
  14522. ))
  14523. characterMakers.push(() => makeCharacter(
  14524. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14525. {
  14526. front: {
  14527. height: math.unit(6, "feet"),
  14528. weight: math.unit(150, "lb"),
  14529. name: "Front",
  14530. image: {
  14531. source: "./media/characters/isaac/front.svg",
  14532. extra: 896 / 815,
  14533. bottom: 0.11
  14534. }
  14535. },
  14536. },
  14537. [
  14538. {
  14539. name: "Human Size",
  14540. height: math.unit(8, "feet"),
  14541. default: true
  14542. },
  14543. {
  14544. name: "Macro",
  14545. height: math.unit(400, "feet")
  14546. },
  14547. {
  14548. name: "Megamacro",
  14549. height: math.unit(50, "miles")
  14550. },
  14551. {
  14552. name: "Canon Height",
  14553. height: math.unit(200, "AU")
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14559. {
  14560. front: {
  14561. height: math.unit(6, "feet"),
  14562. weight: math.unit(72, "kg"),
  14563. name: "Front",
  14564. image: {
  14565. source: "./media/characters/sleekit/front.svg",
  14566. extra: 4693 / 4487,
  14567. bottom: 0.012
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Minimum Height",
  14574. height: math.unit(10, "meters")
  14575. },
  14576. {
  14577. name: "Smaller",
  14578. height: math.unit(25, "meters")
  14579. },
  14580. {
  14581. name: "Larger",
  14582. height: math.unit(38, "meters"),
  14583. default: true
  14584. },
  14585. {
  14586. name: "Maximum height",
  14587. height: math.unit(100, "meters")
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14593. {
  14594. front: {
  14595. height: math.unit(6, "feet"),
  14596. weight: math.unit(150, "lb"),
  14597. name: "Front",
  14598. image: {
  14599. source: "./media/characters/nillia/front.svg",
  14600. extra: 2195 / 2037,
  14601. bottom: 0.005
  14602. }
  14603. },
  14604. back: {
  14605. height: math.unit(6, "feet"),
  14606. weight: math.unit(150, "lb"),
  14607. name: "Back",
  14608. image: {
  14609. source: "./media/characters/nillia/back.svg",
  14610. extra: 2195 / 2037,
  14611. bottom: 0.005
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Canon Height",
  14618. height: math.unit(489, "feet"),
  14619. default: true
  14620. }
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(6, "feet"),
  14628. weight: math.unit(150, "lb"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/mesmyriza/front.svg",
  14632. extra: 2067 / 1784,
  14633. bottom: 0.035
  14634. }
  14635. },
  14636. foot: {
  14637. height: math.unit(6 / (250 / 35), "feet"),
  14638. name: "Foot",
  14639. image: {
  14640. source: "./media/characters/mesmyriza/foot.svg"
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Macro",
  14647. height: math.unit(457, "meters"),
  14648. default: true
  14649. },
  14650. {
  14651. name: "Megamacro",
  14652. height: math.unit(8, "megameters")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(250, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/saudade/front.svg",
  14665. extra: 1172 / 1139,
  14666. bottom: 0.035
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Micro",
  14673. height: math.unit(3, "inches")
  14674. },
  14675. {
  14676. name: "Normal",
  14677. height: math.unit(6, "feet"),
  14678. default: true
  14679. },
  14680. {
  14681. name: "Macro",
  14682. height: math.unit(50, "feet")
  14683. },
  14684. {
  14685. name: "Megamacro",
  14686. height: math.unit(2800, "feet")
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14692. {
  14693. front: {
  14694. height: math.unit(5 + 4 / 12, "feet"),
  14695. weight: math.unit(100, "lb"),
  14696. name: "Front",
  14697. image: {
  14698. source: "./media/characters/keireer/front.svg",
  14699. extra: 716 / 666,
  14700. bottom: 0.05
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Normal",
  14707. height: math.unit(5 + 4 / 12, "feet"),
  14708. default: true
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14714. {
  14715. front: {
  14716. height: math.unit(6, "feet"),
  14717. weight: math.unit(90, "kg"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/mirja/front.svg",
  14721. extra: 1789 / 1683,
  14722. bottom: 0.05
  14723. }
  14724. },
  14725. frontDressed: {
  14726. height: math.unit(6, "feet"),
  14727. weight: math.unit(90, "lb"),
  14728. name: "Front (Dressed)",
  14729. image: {
  14730. source: "./media/characters/mirja/front-dressed.svg",
  14731. extra: 1789 / 1683,
  14732. bottom: 0.05
  14733. }
  14734. },
  14735. back: {
  14736. height: math.unit(6, "feet"),
  14737. weight: math.unit(90, "lb"),
  14738. name: "Back",
  14739. image: {
  14740. source: "./media/characters/mirja/back.svg",
  14741. extra: 953 / 917,
  14742. bottom: 0.017
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "\"Incognito\"",
  14749. height: math.unit(3, "meters")
  14750. },
  14751. {
  14752. name: "Strolling Size",
  14753. height: math.unit(15, "km")
  14754. },
  14755. {
  14756. name: "Larger Strolling Size",
  14757. height: math.unit(400, "km")
  14758. },
  14759. {
  14760. name: "Preferred Size",
  14761. height: math.unit(5000, "km")
  14762. },
  14763. {
  14764. name: "True Size",
  14765. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14766. default: true
  14767. },
  14768. ]
  14769. ))
  14770. characterMakers.push(() => makeCharacter(
  14771. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14772. {
  14773. front: {
  14774. height: math.unit(15, "feet"),
  14775. weight: math.unit(880, "kg"),
  14776. name: "Front",
  14777. image: {
  14778. source: "./media/characters/nightraver/front.svg",
  14779. extra: 2444 / 2160,
  14780. bottom: 0.027
  14781. }
  14782. },
  14783. back: {
  14784. height: math.unit(15, "feet"),
  14785. weight: math.unit(880, "kg"),
  14786. name: "Back",
  14787. image: {
  14788. source: "./media/characters/nightraver/back.svg",
  14789. extra: 2309 / 2180,
  14790. bottom: 0.005
  14791. }
  14792. },
  14793. sole: {
  14794. height: math.unit(2.878, "feet"),
  14795. name: "Sole",
  14796. image: {
  14797. source: "./media/characters/nightraver/sole.svg"
  14798. }
  14799. },
  14800. foot: {
  14801. height: math.unit(2.285, "feet"),
  14802. name: "Foot",
  14803. image: {
  14804. source: "./media/characters/nightraver/foot.svg"
  14805. }
  14806. },
  14807. maw: {
  14808. height: math.unit(2.67, "feet"),
  14809. name: "Maw",
  14810. image: {
  14811. source: "./media/characters/nightraver/maw.svg"
  14812. }
  14813. },
  14814. },
  14815. [
  14816. {
  14817. name: "Micro",
  14818. height: math.unit(1, "cm")
  14819. },
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(15, "feet"),
  14823. default: true
  14824. },
  14825. {
  14826. name: "Macro",
  14827. height: math.unit(300, "feet")
  14828. },
  14829. {
  14830. name: "Megamacro",
  14831. height: math.unit(300, "miles")
  14832. },
  14833. {
  14834. name: "Gigamacro",
  14835. height: math.unit(10000, "miles")
  14836. },
  14837. ]
  14838. ))
  14839. characterMakers.push(() => makeCharacter(
  14840. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14841. {
  14842. side: {
  14843. height: math.unit(2, "inches"),
  14844. weight: math.unit(5, "grams"),
  14845. name: "Side",
  14846. image: {
  14847. source: "./media/characters/arc/side.svg"
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Micro",
  14854. height: math.unit(2, "inches"),
  14855. default: true
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(1.1938, "meters"),
  14864. weight: math.unit(54, "kg"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/nebula-shahar/front.svg",
  14868. extra: 1642 / 1436,
  14869. bottom: 0.06
  14870. }
  14871. },
  14872. },
  14873. [
  14874. {
  14875. name: "Megamicro",
  14876. height: math.unit(0.3, "mm")
  14877. },
  14878. {
  14879. name: "Micro",
  14880. height: math.unit(3, "cm")
  14881. },
  14882. {
  14883. name: "Normal",
  14884. height: math.unit(138, "cm"),
  14885. default: true
  14886. },
  14887. {
  14888. name: "Macro",
  14889. height: math.unit(30, "m")
  14890. },
  14891. ]
  14892. ))
  14893. characterMakers.push(() => makeCharacter(
  14894. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14895. {
  14896. front: {
  14897. height: math.unit(5.24, "feet"),
  14898. weight: math.unit(150, "lb"),
  14899. name: "Front",
  14900. image: {
  14901. source: "./media/characters/shayla/front.svg",
  14902. extra: 1512 / 1414,
  14903. bottom: 0.01
  14904. }
  14905. },
  14906. back: {
  14907. height: math.unit(5.24, "feet"),
  14908. weight: math.unit(150, "lb"),
  14909. name: "Back",
  14910. image: {
  14911. source: "./media/characters/shayla/back.svg",
  14912. extra: 1512 / 1414
  14913. }
  14914. },
  14915. hand: {
  14916. height: math.unit(0.7781496062992126, "feet"),
  14917. name: "Hand",
  14918. image: {
  14919. source: "./media/characters/shayla/hand.svg"
  14920. }
  14921. },
  14922. foot: {
  14923. height: math.unit(1.4206036745406823, "feet"),
  14924. name: "Foot",
  14925. image: {
  14926. source: "./media/characters/shayla/foot.svg"
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Micro",
  14933. height: math.unit(0.32, "feet")
  14934. },
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(5.24, "feet"),
  14938. default: true
  14939. },
  14940. {
  14941. name: "Macro",
  14942. height: math.unit(492.12, "feet")
  14943. },
  14944. {
  14945. name: "Megamacro",
  14946. height: math.unit(186.41, "miles")
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(2.2, "m"),
  14955. weight: math.unit(120, "kg"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/pia-jr/front.svg",
  14959. extra: 1000 / 970,
  14960. bottom: 0.035
  14961. }
  14962. },
  14963. hand: {
  14964. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14965. name: "Hand",
  14966. image: {
  14967. source: "./media/characters/pia-jr/hand.svg"
  14968. }
  14969. },
  14970. paw: {
  14971. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14972. name: "Paw",
  14973. image: {
  14974. source: "./media/characters/pia-jr/paw.svg"
  14975. }
  14976. },
  14977. },
  14978. [
  14979. {
  14980. name: "Micro",
  14981. height: math.unit(1.2, "cm")
  14982. },
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(2.2, "m"),
  14986. default: true
  14987. },
  14988. {
  14989. name: "Macro",
  14990. height: math.unit(180, "m")
  14991. },
  14992. {
  14993. name: "Megamacro",
  14994. height: math.unit(420, "km")
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(2, "m"),
  15003. weight: math.unit(115, "kg"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/pia-sr/front.svg",
  15007. extra: 760 / 730,
  15008. bottom: 0.015
  15009. }
  15010. },
  15011. back: {
  15012. height: math.unit(2, "m"),
  15013. weight: math.unit(115, "kg"),
  15014. name: "Back",
  15015. image: {
  15016. source: "./media/characters/pia-sr/back.svg",
  15017. extra: 760 / 730,
  15018. bottom: 0.01
  15019. }
  15020. },
  15021. hand: {
  15022. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15023. name: "Hand",
  15024. image: {
  15025. source: "./media/characters/pia-sr/hand.svg"
  15026. }
  15027. },
  15028. foot: {
  15029. height: math.unit(1.83, "feet"),
  15030. name: "Foot",
  15031. image: {
  15032. source: "./media/characters/pia-sr/foot.svg"
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Micro",
  15039. height: math.unit(88, "mm")
  15040. },
  15041. {
  15042. name: "Normal",
  15043. height: math.unit(2, "m"),
  15044. default: true
  15045. },
  15046. {
  15047. name: "Macro",
  15048. height: math.unit(200, "m")
  15049. },
  15050. {
  15051. name: "Megamacro",
  15052. height: math.unit(420, "km")
  15053. },
  15054. ]
  15055. ))
  15056. characterMakers.push(() => makeCharacter(
  15057. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15058. {
  15059. front: {
  15060. height: math.unit(8 + 2 / 12, "feet"),
  15061. weight: math.unit(300, "lb"),
  15062. name: "Front",
  15063. image: {
  15064. source: "./media/characters/kibibyte/front.svg",
  15065. extra: 2221 / 2098,
  15066. bottom: 0.04
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(8 + 2 / 12, "feet"),
  15074. default: true
  15075. },
  15076. {
  15077. name: "Socialable Macro",
  15078. height: math.unit(50, "feet")
  15079. },
  15080. {
  15081. name: "Macro",
  15082. height: math.unit(300, "feet")
  15083. },
  15084. {
  15085. name: "Megamacro",
  15086. height: math.unit(500, "miles")
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(6, "feet"),
  15095. weight: math.unit(150, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/felix/front.svg",
  15099. extra: 762 / 722,
  15100. bottom: 0.02
  15101. }
  15102. },
  15103. frontClothed: {
  15104. height: math.unit(6, "feet"),
  15105. weight: math.unit(150, "lb"),
  15106. name: "Front (Clothed)",
  15107. image: {
  15108. source: "./media/characters/felix/front-clothed.svg",
  15109. extra: 762 / 722,
  15110. bottom: 0.02
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(6 + 8 / 12, "feet"),
  15118. default: true
  15119. },
  15120. {
  15121. name: "Macro",
  15122. height: math.unit(2600, "feet")
  15123. },
  15124. {
  15125. name: "Megamacro",
  15126. height: math.unit(450, "miles")
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15132. {
  15133. front: {
  15134. height: math.unit(6 + 1 / 12, "feet"),
  15135. weight: math.unit(250, "lb"),
  15136. name: "Front",
  15137. image: {
  15138. source: "./media/characters/tobo/front.svg",
  15139. extra: 608 / 586,
  15140. bottom: 0.023
  15141. }
  15142. },
  15143. back: {
  15144. height: math.unit(6 + 1 / 12, "feet"),
  15145. weight: math.unit(250, "lb"),
  15146. name: "Back",
  15147. image: {
  15148. source: "./media/characters/tobo/back.svg",
  15149. extra: 608 / 586
  15150. }
  15151. },
  15152. },
  15153. [
  15154. {
  15155. name: "Nano",
  15156. height: math.unit(2, "nm")
  15157. },
  15158. {
  15159. name: "Megamicro",
  15160. height: math.unit(0.1, "mm")
  15161. },
  15162. {
  15163. name: "Micro",
  15164. height: math.unit(1, "inch"),
  15165. default: true
  15166. },
  15167. {
  15168. name: "Human-sized",
  15169. height: math.unit(6 + 1 / 12, "feet")
  15170. },
  15171. {
  15172. name: "Macro",
  15173. height: math.unit(250, "feet")
  15174. },
  15175. {
  15176. name: "Megamacro",
  15177. height: math.unit(75, "miles")
  15178. },
  15179. {
  15180. name: "Texas-sized",
  15181. height: math.unit(750, "miles")
  15182. },
  15183. {
  15184. name: "Teramacro",
  15185. height: math.unit(50000, "miles")
  15186. },
  15187. ]
  15188. ))
  15189. characterMakers.push(() => makeCharacter(
  15190. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15191. {
  15192. front: {
  15193. height: math.unit(6, "feet"),
  15194. weight: math.unit(269, "lb"),
  15195. name: "Front",
  15196. image: {
  15197. source: "./media/characters/danny-kapowsky/front.svg",
  15198. extra: 766 / 736,
  15199. bottom: 0.044
  15200. }
  15201. },
  15202. back: {
  15203. height: math.unit(6, "feet"),
  15204. weight: math.unit(269, "lb"),
  15205. name: "Back",
  15206. image: {
  15207. source: "./media/characters/danny-kapowsky/back.svg",
  15208. extra: 797 / 760,
  15209. bottom: 0.025
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Macro",
  15216. height: math.unit(150, "feet"),
  15217. default: true
  15218. },
  15219. {
  15220. name: "Macro+",
  15221. height: math.unit(200, "feet")
  15222. },
  15223. {
  15224. name: "Macro++",
  15225. height: math.unit(300, "feet")
  15226. },
  15227. {
  15228. name: "Macro+++",
  15229. height: math.unit(400, "feet")
  15230. },
  15231. ]
  15232. ))
  15233. characterMakers.push(() => makeCharacter(
  15234. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15235. {
  15236. side: {
  15237. height: math.unit(6, "feet"),
  15238. weight: math.unit(170, "lb"),
  15239. name: "Side",
  15240. image: {
  15241. source: "./media/characters/finn/side.svg",
  15242. extra: 1953 / 1807,
  15243. bottom: 0.057
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Megamacro",
  15250. height: math.unit(14445, "feet"),
  15251. default: true
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(5 + 6 / 12, "feet"),
  15260. weight: math.unit(125, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/roy/front.svg",
  15264. extra: 1,
  15265. bottom: 0.11
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Micro",
  15272. height: math.unit(3, "inches"),
  15273. default: true
  15274. },
  15275. {
  15276. name: "Normal",
  15277. height: math.unit(5 + 6 / 12, "feet")
  15278. },
  15279. {
  15280. name: "Lesser Macro",
  15281. height: math.unit(60, "feet")
  15282. },
  15283. {
  15284. name: "Greater Macro",
  15285. height: math.unit(120, "feet")
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(6, "feet"),
  15294. weight: math.unit(100, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/aevsivs/front.svg",
  15298. extra: 1,
  15299. bottom: 0.03
  15300. }
  15301. },
  15302. back: {
  15303. height: math.unit(6, "feet"),
  15304. weight: math.unit(100, "lb"),
  15305. name: "Back",
  15306. image: {
  15307. source: "./media/characters/aevsivs/back.svg"
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Micro",
  15314. height: math.unit(2, "inches"),
  15315. default: true
  15316. },
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(5, "feet")
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(5 + 7 / 12, "feet"),
  15328. weight: math.unit(159, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/hildegard/front.svg",
  15332. extra: 289 / 269,
  15333. bottom: 7.63 / 297.8
  15334. }
  15335. },
  15336. back: {
  15337. height: math.unit(5 + 7 / 12, "feet"),
  15338. weight: math.unit(159, "lb"),
  15339. name: "Back",
  15340. image: {
  15341. source: "./media/characters/hildegard/back.svg",
  15342. extra: 280 / 260,
  15343. bottom: 2.3 / 282
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Normal",
  15350. height: math.unit(5 + 7 / 12, "feet"),
  15351. default: true
  15352. },
  15353. ]
  15354. ))
  15355. characterMakers.push(() => makeCharacter(
  15356. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15357. {
  15358. bernard: {
  15359. height: math.unit(2 + 7 / 12, "feet"),
  15360. weight: math.unit(66, "lb"),
  15361. name: "Bernard",
  15362. rename: true,
  15363. image: {
  15364. source: "./media/characters/bernard-wilder/bernard.svg",
  15365. extra: 192 / 128,
  15366. bottom: 0.05
  15367. }
  15368. },
  15369. wilder: {
  15370. height: math.unit(5 + 8 / 12, "feet"),
  15371. weight: math.unit(143, "lb"),
  15372. name: "Wilder",
  15373. rename: true,
  15374. image: {
  15375. source: "./media/characters/bernard-wilder/wilder.svg",
  15376. extra: 361 / 312,
  15377. bottom: 0.02
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(2 + 7 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15391. {
  15392. anthro: {
  15393. height: math.unit(6 + 1 / 12, "feet"),
  15394. weight: math.unit(155, "lb"),
  15395. name: "Anthro",
  15396. image: {
  15397. source: "./media/characters/hearth/anthro.svg",
  15398. extra: 1178/1136,
  15399. bottom: 28/1206
  15400. }
  15401. },
  15402. feral: {
  15403. height: math.unit(3.78, "feet"),
  15404. weight: math.unit(35, "kg"),
  15405. name: "Feral",
  15406. image: {
  15407. source: "./media/characters/hearth/feral.svg",
  15408. extra: 153 / 135,
  15409. bottom: 0.03
  15410. }
  15411. },
  15412. },
  15413. [
  15414. {
  15415. name: "Normal",
  15416. height: math.unit(6 + 1 / 12, "feet"),
  15417. default: true
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15423. {
  15424. front: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(182, "lb"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/ingrid/front.svg",
  15430. extra: 294 / 268,
  15431. bottom: 0.027
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Normal",
  15438. height: math.unit(6, "feet"),
  15439. default: true
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15445. {
  15446. eevee: {
  15447. height: math.unit(2 + 10 / 12, "feet"),
  15448. weight: math.unit(86, "lb"),
  15449. name: "Malgam",
  15450. image: {
  15451. source: "./media/characters/malgam/eevee.svg",
  15452. extra: 952/784,
  15453. bottom: 38/990
  15454. }
  15455. },
  15456. sylveon: {
  15457. height: math.unit(4, "feet"),
  15458. weight: math.unit(101, "lb"),
  15459. name: "Future Malgam",
  15460. rename: true,
  15461. image: {
  15462. source: "./media/characters/malgam/sylveon.svg",
  15463. extra: 371 / 325,
  15464. bottom: 0.015
  15465. }
  15466. },
  15467. gigantamax: {
  15468. height: math.unit(50, "feet"),
  15469. name: "Gigantamax Malgam",
  15470. rename: true,
  15471. image: {
  15472. source: "./media/characters/malgam/gigantamax.svg"
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(2 + 10 / 12, "feet"),
  15480. default: true
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(5 + 11 / 12, "feet"),
  15489. weight: math.unit(188, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/fleur/front.svg",
  15493. extra: 309 / 283,
  15494. bottom: 0.007
  15495. }
  15496. },
  15497. },
  15498. [
  15499. {
  15500. name: "Normal",
  15501. height: math.unit(5 + 11 / 12, "feet"),
  15502. default: true
  15503. },
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15508. {
  15509. front: {
  15510. height: math.unit(5 + 4 / 12, "feet"),
  15511. weight: math.unit(122, "lb"),
  15512. name: "Front",
  15513. image: {
  15514. source: "./media/characters/jude/front.svg",
  15515. extra: 288 / 273,
  15516. bottom: 0.03
  15517. }
  15518. },
  15519. },
  15520. [
  15521. {
  15522. name: "Normal",
  15523. height: math.unit(5 + 4 / 12, "feet"),
  15524. default: true
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15530. {
  15531. front: {
  15532. height: math.unit(5 + 11 / 12, "feet"),
  15533. weight: math.unit(190, "lb"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/seara/front.svg",
  15537. extra: 1,
  15538. bottom: 0.05
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(5 + 11 / 12, "feet"),
  15546. default: true
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15552. {
  15553. front: {
  15554. height: math.unit(16 + 5 / 12, "feet"),
  15555. weight: math.unit(524, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/caspian/front.svg",
  15559. extra: 1,
  15560. bottom: 0.04
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(16 + 5 / 12, "feet"),
  15568. default: true
  15569. },
  15570. ]
  15571. ))
  15572. characterMakers.push(() => makeCharacter(
  15573. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15574. {
  15575. front: {
  15576. height: math.unit(5 + 7 / 12, "feet"),
  15577. weight: math.unit(170, "lb"),
  15578. name: "Front",
  15579. image: {
  15580. source: "./media/characters/mika/front.svg",
  15581. extra: 1,
  15582. bottom: 0.016
  15583. }
  15584. },
  15585. },
  15586. [
  15587. {
  15588. name: "Normal",
  15589. height: math.unit(5 + 7 / 12, "feet"),
  15590. default: true
  15591. },
  15592. ]
  15593. ))
  15594. characterMakers.push(() => makeCharacter(
  15595. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15596. {
  15597. front: {
  15598. height: math.unit(6 + 2 / 12, "feet"),
  15599. weight: math.unit(268, "lb"),
  15600. name: "Front",
  15601. image: {
  15602. source: "./media/characters/sol/front.svg",
  15603. extra: 247 / 231,
  15604. bottom: 0.05
  15605. }
  15606. },
  15607. },
  15608. [
  15609. {
  15610. name: "Normal",
  15611. height: math.unit(6 + 2 / 12, "feet"),
  15612. default: true
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15618. {
  15619. buizel: {
  15620. height: math.unit(2 + 5 / 12, "feet"),
  15621. weight: math.unit(87, "lb"),
  15622. name: "Front",
  15623. image: {
  15624. source: "./media/characters/umiko/buizel.svg",
  15625. extra: 172 / 157,
  15626. bottom: 0.01
  15627. },
  15628. form: "buizel",
  15629. default: true
  15630. },
  15631. floatzel: {
  15632. height: math.unit(5 + 9 / 12, "feet"),
  15633. weight: math.unit(250, "lb"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/umiko/floatzel.svg",
  15637. extra: 1076/1006,
  15638. bottom: 15/1091
  15639. },
  15640. form: "floatzel",
  15641. default: true
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Normal",
  15647. height: math.unit(2 + 5 / 12, "feet"),
  15648. form: "buizel",
  15649. default: true
  15650. },
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(5 + 9 / 12, "feet"),
  15654. form: "floatzel",
  15655. default: true
  15656. },
  15657. ],
  15658. {
  15659. "buizel": {
  15660. name: "Buizel"
  15661. },
  15662. "floatzel": {
  15663. name: "Floatzel",
  15664. default: true
  15665. }
  15666. }
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(6 + 2 / 12, "feet"),
  15673. weight: math.unit(146, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/iliac/front.svg",
  15677. extra: 389 / 365,
  15678. bottom: 0.035
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(6 + 2 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(6, "feet"),
  15695. weight: math.unit(170, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/topaz/front.svg",
  15699. extra: 317 / 303,
  15700. bottom: 0.055
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(6, "feet"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(5 + 11 / 12, "feet"),
  15717. weight: math.unit(144, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/gabriel/front.svg",
  15721. extra: 285 / 262,
  15722. bottom: 0.004
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(5 + 11 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15736. {
  15737. side: {
  15738. height: math.unit(6 + 5 / 12, "feet"),
  15739. weight: math.unit(300, "lb"),
  15740. name: "Side",
  15741. image: {
  15742. source: "./media/characters/tempest-suicune/side.svg",
  15743. extra: 195 / 154,
  15744. bottom: 0.04
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(6 + 5 / 12, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15758. {
  15759. front: {
  15760. height: math.unit(7 + 2 / 12, "feet"),
  15761. weight: math.unit(322, "lb"),
  15762. name: "Front",
  15763. image: {
  15764. source: "./media/characters/vulcan/front.svg",
  15765. extra: 154 / 147,
  15766. bottom: 0.04
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Normal",
  15773. height: math.unit(7 + 2 / 12, "feet"),
  15774. default: true
  15775. },
  15776. ]
  15777. ))
  15778. characterMakers.push(() => makeCharacter(
  15779. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15780. {
  15781. front: {
  15782. height: math.unit(5 + 10 / 12, "feet"),
  15783. weight: math.unit(264, "lb"),
  15784. name: "Front",
  15785. image: {
  15786. source: "./media/characters/gault/front.svg",
  15787. extra: 161 / 140,
  15788. bottom: 0.028
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(5 + 10 / 12, "feet"),
  15796. default: true
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15802. {
  15803. front: {
  15804. height: math.unit(6, "feet"),
  15805. weight: math.unit(150, "lb"),
  15806. name: "Front",
  15807. image: {
  15808. source: "./media/characters/shard/front.svg",
  15809. extra: 273 / 238,
  15810. bottom: 0.02
  15811. }
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Normal",
  15817. height: math.unit(3 + 6 / 12, "feet"),
  15818. default: true
  15819. },
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(5 + 11 / 12, "feet"),
  15827. weight: math.unit(146, "lb"),
  15828. name: "Front",
  15829. image: {
  15830. source: "./media/characters/ashe/front.svg",
  15831. extra: 400 / 373,
  15832. bottom: 0.01
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Normal",
  15839. height: math.unit(5 + 11 / 12, "feet"),
  15840. default: true
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15846. {
  15847. front: {
  15848. height: math.unit(5 + 5 / 12, "feet"),
  15849. weight: math.unit(135, "lb"),
  15850. name: "Front",
  15851. image: {
  15852. source: "./media/characters/beatrix/front.svg",
  15853. extra: 392 / 379,
  15854. bottom: 0.01
  15855. }
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Normal",
  15861. height: math.unit(6, "feet"),
  15862. default: true
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(6 + 2/12, "feet"),
  15871. weight: math.unit(135, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/ignatius/front.svg",
  15875. extra: 1380/1259,
  15876. bottom: 27/1407
  15877. }
  15878. },
  15879. },
  15880. [
  15881. {
  15882. name: "Normal",
  15883. height: math.unit(6 + 2/12, "feet"),
  15884. default: true
  15885. },
  15886. ]
  15887. ))
  15888. characterMakers.push(() => makeCharacter(
  15889. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15890. {
  15891. front: {
  15892. height: math.unit(6 + 2 / 12, "feet"),
  15893. weight: math.unit(138, "lb"),
  15894. name: "Front",
  15895. image: {
  15896. source: "./media/characters/mei-li/front.svg",
  15897. extra: 237 / 229,
  15898. bottom: 0.03
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Normal",
  15905. height: math.unit(6 + 2 / 12, "feet"),
  15906. default: true
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15912. {
  15913. front: {
  15914. height: math.unit(2 + 4 / 12, "feet"),
  15915. weight: math.unit(62, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/puru/front.svg",
  15919. extra: 206 / 149,
  15920. bottom: 0.06
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Normal",
  15927. height: math.unit(2 + 4 / 12, "feet"),
  15928. default: true
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15934. {
  15935. anthro: {
  15936. height: math.unit(5 + 8/12, "feet"),
  15937. weight: math.unit(200, "lb"),
  15938. energyNeed: math.unit(2000, "kcal"),
  15939. name: "Anthro",
  15940. image: {
  15941. source: "./media/characters/kee/anthro.svg",
  15942. extra: 3251/3184,
  15943. bottom: 250/3501
  15944. }
  15945. },
  15946. taur: {
  15947. height: math.unit(11, "feet"),
  15948. weight: math.unit(500, "lb"),
  15949. energyNeed: math.unit(5000, "kcal"),
  15950. name: "Taur",
  15951. image: {
  15952. source: "./media/characters/kee/taur.svg",
  15953. extra: 1362/1320,
  15954. bottom: 83/1445
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(5 + 8/12, "feet"),
  15962. default: true
  15963. },
  15964. {
  15965. name: "Macro",
  15966. height: math.unit(35, "feet")
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15972. {
  15973. anthro: {
  15974. height: math.unit(7, "feet"),
  15975. weight: math.unit(190, "lb"),
  15976. name: "Anthro",
  15977. image: {
  15978. source: "./media/characters/cobalt-dracha/anthro.svg",
  15979. extra: 231 / 225,
  15980. bottom: 0.04
  15981. }
  15982. },
  15983. feral: {
  15984. height: math.unit(9 + 7 / 12, "feet"),
  15985. weight: math.unit(294, "lb"),
  15986. name: "Feral",
  15987. image: {
  15988. source: "./media/characters/cobalt-dracha/feral.svg",
  15989. extra: 692 / 633,
  15990. bottom: 0.05
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(7, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16004. {
  16005. fallen: {
  16006. height: math.unit(11 + 8 / 12, "feet"),
  16007. weight: math.unit(485, "lb"),
  16008. name: "Java (Fallen)",
  16009. rename: true,
  16010. image: {
  16011. source: "./media/characters/java/fallen.svg",
  16012. extra: 226 / 208,
  16013. bottom: 0.005
  16014. }
  16015. },
  16016. godkin: {
  16017. height: math.unit(10 + 6 / 12, "feet"),
  16018. weight: math.unit(328, "lb"),
  16019. name: "Java (Godkin)",
  16020. rename: true,
  16021. image: {
  16022. source: "./media/characters/java/godkin.svg",
  16023. extra: 1104/1068,
  16024. bottom: 36/1140
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(11 + 8 / 12, "feet"),
  16032. default: true
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(5 + 9 / 12, "feet"),
  16041. weight: math.unit(170, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/purna/front.svg",
  16045. extra: 239 / 229,
  16046. bottom: 0.01
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(5 + 9 / 12, "feet"),
  16054. default: true
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(5 + 9 / 12, "feet"),
  16063. weight: math.unit(142, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/kuva/front.svg",
  16067. extra: 281 / 271,
  16068. bottom: 0.006
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(5 + 9 / 12, "feet"),
  16076. default: true
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16082. {
  16083. anthro: {
  16084. height: math.unit(9 + 2 / 12, "feet"),
  16085. weight: math.unit(270, "lb"),
  16086. name: "Anthro",
  16087. image: {
  16088. source: "./media/characters/embra/anthro.svg",
  16089. extra: 200 / 187,
  16090. bottom: 0.02
  16091. }
  16092. },
  16093. feral: {
  16094. height: math.unit(18 + 8 / 12, "feet"),
  16095. weight: math.unit(576, "lb"),
  16096. name: "Feral",
  16097. image: {
  16098. source: "./media/characters/embra/feral.svg",
  16099. extra: 152 / 137,
  16100. bottom: 0.037
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Normal",
  16107. height: math.unit(9 + 2 / 12, "feet"),
  16108. default: true
  16109. },
  16110. ]
  16111. ))
  16112. characterMakers.push(() => makeCharacter(
  16113. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16114. {
  16115. anthro: {
  16116. height: math.unit(10 + 9 / 12, "feet"),
  16117. weight: math.unit(224, "lb"),
  16118. name: "Anthro",
  16119. image: {
  16120. source: "./media/characters/grottos/anthro.svg",
  16121. extra: 350 / 332,
  16122. bottom: 0.045
  16123. }
  16124. },
  16125. feral: {
  16126. height: math.unit(20 + 7 / 12, "feet"),
  16127. weight: math.unit(629, "lb"),
  16128. name: "Feral",
  16129. image: {
  16130. source: "./media/characters/grottos/feral.svg",
  16131. extra: 207 / 190,
  16132. bottom: 0.05
  16133. }
  16134. },
  16135. },
  16136. [
  16137. {
  16138. name: "Normal",
  16139. height: math.unit(10 + 9 / 12, "feet"),
  16140. default: true
  16141. },
  16142. ]
  16143. ))
  16144. characterMakers.push(() => makeCharacter(
  16145. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16146. {
  16147. anthro: {
  16148. height: math.unit(9 + 6 / 12, "feet"),
  16149. weight: math.unit(298, "lb"),
  16150. name: "Anthro",
  16151. image: {
  16152. source: "./media/characters/frifna/anthro.svg",
  16153. extra: 282 / 269,
  16154. bottom: 0.015
  16155. }
  16156. },
  16157. feral: {
  16158. height: math.unit(16 + 2 / 12, "feet"),
  16159. weight: math.unit(624, "lb"),
  16160. name: "Feral",
  16161. image: {
  16162. source: "./media/characters/frifna/feral.svg"
  16163. }
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Normal",
  16169. height: math.unit(9 + 6 / 12, "feet"),
  16170. default: true
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(6 + 2 / 12, "feet"),
  16179. weight: math.unit(168, "lb"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/elise/front.svg",
  16183. extra: 276 / 271
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Normal",
  16190. height: math.unit(6 + 2 / 12, "feet"),
  16191. default: true
  16192. },
  16193. ]
  16194. ))
  16195. characterMakers.push(() => makeCharacter(
  16196. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16197. {
  16198. front: {
  16199. height: math.unit(5 + 10 / 12, "feet"),
  16200. weight: math.unit(210, "lb"),
  16201. name: "Front",
  16202. image: {
  16203. source: "./media/characters/glade/front.svg",
  16204. extra: 258 / 247,
  16205. bottom: 0.008
  16206. }
  16207. },
  16208. },
  16209. [
  16210. {
  16211. name: "Normal",
  16212. height: math.unit(5 + 10 / 12, "feet"),
  16213. default: true
  16214. },
  16215. ]
  16216. ))
  16217. characterMakers.push(() => makeCharacter(
  16218. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16219. {
  16220. front: {
  16221. height: math.unit(5 + 10 / 12, "feet"),
  16222. weight: math.unit(129, "lb"),
  16223. name: "Front",
  16224. image: {
  16225. source: "./media/characters/rina/front.svg",
  16226. extra: 266 / 255,
  16227. bottom: 0.005
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Normal",
  16234. height: math.unit(5 + 10 / 12, "feet"),
  16235. default: true
  16236. },
  16237. ]
  16238. ))
  16239. characterMakers.push(() => makeCharacter(
  16240. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16241. {
  16242. front: {
  16243. height: math.unit(6 + 1 / 12, "feet"),
  16244. weight: math.unit(192, "lb"),
  16245. name: "Front",
  16246. image: {
  16247. source: "./media/characters/veronica/front.svg",
  16248. extra: 319 / 309,
  16249. bottom: 0.005
  16250. }
  16251. },
  16252. },
  16253. [
  16254. {
  16255. name: "Normal",
  16256. height: math.unit(6 + 1 / 12, "feet"),
  16257. default: true
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16263. {
  16264. front: {
  16265. height: math.unit(9 + 3 / 12, "feet"),
  16266. weight: math.unit(1100, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/braxton/front.svg",
  16270. extra: 1057 / 984,
  16271. bottom: 0.05
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(9 + 3 / 12, "feet")
  16279. },
  16280. {
  16281. name: "Giant",
  16282. height: math.unit(300, "feet"),
  16283. default: true
  16284. },
  16285. {
  16286. name: "Macro",
  16287. height: math.unit(700, "feet")
  16288. },
  16289. {
  16290. name: "Megamacro",
  16291. height: math.unit(6000, "feet")
  16292. },
  16293. ]
  16294. ))
  16295. characterMakers.push(() => makeCharacter(
  16296. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16297. {
  16298. front: {
  16299. height: math.unit(6 + 7 / 12, "feet"),
  16300. weight: math.unit(150, "lb"),
  16301. name: "Front",
  16302. image: {
  16303. source: "./media/characters/blue-feyonics/front.svg",
  16304. extra: 1403 / 1306,
  16305. bottom: 0.047
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Normal",
  16312. height: math.unit(6 + 7 / 12, "feet"),
  16313. default: true
  16314. },
  16315. ]
  16316. ))
  16317. characterMakers.push(() => makeCharacter(
  16318. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16319. {
  16320. front: {
  16321. height: math.unit(1.8, "meters"),
  16322. weight: math.unit(60, "kg"),
  16323. name: "Front",
  16324. image: {
  16325. source: "./media/characters/maxwell/front.svg",
  16326. extra: 2060 / 1873
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Micro",
  16333. height: math.unit(1, "mm")
  16334. },
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(1.8, "meter"),
  16338. default: true
  16339. },
  16340. {
  16341. name: "Macro",
  16342. height: math.unit(30, "meters")
  16343. },
  16344. {
  16345. name: "Megamacro",
  16346. height: math.unit(10, "km")
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(6, "feet"),
  16355. weight: math.unit(150, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/jack/front.svg",
  16359. extra: 1754 / 1640,
  16360. bottom: 0.01
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(80000, "feet"),
  16368. default: true
  16369. },
  16370. {
  16371. name: "Max size",
  16372. height: math.unit(10, "lightyears")
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16378. {
  16379. urban: {
  16380. height: math.unit(5, "feet"),
  16381. weight: math.unit(240, "lb"),
  16382. name: "Urban",
  16383. image: {
  16384. source: "./media/characters/cafat/urban.svg",
  16385. extra: 1223/1126,
  16386. bottom: 205/1428
  16387. }
  16388. },
  16389. summer: {
  16390. height: math.unit(5, "feet"),
  16391. weight: math.unit(240, "lb"),
  16392. name: "Summer",
  16393. image: {
  16394. source: "./media/characters/cafat/summer.svg",
  16395. extra: 1223/1126,
  16396. bottom: 205/1428
  16397. }
  16398. },
  16399. winter: {
  16400. height: math.unit(5, "feet"),
  16401. weight: math.unit(240, "lb"),
  16402. name: "Winter",
  16403. image: {
  16404. source: "./media/characters/cafat/winter.svg",
  16405. extra: 1223/1126,
  16406. bottom: 205/1428
  16407. }
  16408. },
  16409. lingerie: {
  16410. height: math.unit(5, "feet"),
  16411. weight: math.unit(240, "lb"),
  16412. name: "Lingerie",
  16413. image: {
  16414. source: "./media/characters/cafat/lingerie.svg",
  16415. extra: 1223/1126,
  16416. bottom: 205/1428
  16417. }
  16418. },
  16419. upright: {
  16420. height: math.unit(6.3, "feet"),
  16421. weight: math.unit(240, "lb"),
  16422. name: "Upright",
  16423. image: {
  16424. source: "./media/characters/cafat/upright.svg",
  16425. bottom: 0.01
  16426. }
  16427. },
  16428. uprightFull: {
  16429. height: math.unit(6.3, "feet"),
  16430. weight: math.unit(240, "lb"),
  16431. name: "Upright (Full)",
  16432. image: {
  16433. source: "./media/characters/cafat/upright-full.svg",
  16434. bottom: 0.01
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Small",
  16441. height: math.unit(5, "feet"),
  16442. default: true
  16443. },
  16444. {
  16445. name: "Large",
  16446. height: math.unit(13, "feet")
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16452. {
  16453. front: {
  16454. height: math.unit(6, "feet"),
  16455. weight: math.unit(150, "lb"),
  16456. name: "Front",
  16457. image: {
  16458. source: "./media/characters/verin-raharra/front.svg",
  16459. extra: 5019 / 4835,
  16460. bottom: 0.023
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(7 + 5 / 12, "feet"),
  16468. default: true
  16469. },
  16470. {
  16471. name: "Upsized",
  16472. height: math.unit(20, "feet")
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16478. {
  16479. front: {
  16480. height: math.unit(7, "feet"),
  16481. weight: math.unit(230, "lb"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/nakata/front.svg",
  16485. extra: 1.005,
  16486. bottom: 0.01
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Normal",
  16493. height: math.unit(7, "feet"),
  16494. default: true
  16495. },
  16496. {
  16497. name: "Big",
  16498. height: math.unit(14, "feet")
  16499. },
  16500. {
  16501. name: "Macro",
  16502. height: math.unit(400, "feet")
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16508. {
  16509. front: {
  16510. height: math.unit(4.91, "feet"),
  16511. weight: math.unit(100, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/lily/front.svg",
  16515. extra: 1585 / 1415,
  16516. bottom: 0.02
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Normal",
  16523. height: math.unit(4.91, "feet"),
  16524. default: true
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16530. {
  16531. laying: {
  16532. height: math.unit(4 + 4 / 12, "feet"),
  16533. weight: math.unit(600, "lb"),
  16534. name: "Laying",
  16535. image: {
  16536. source: "./media/characters/sheila/laying.svg",
  16537. extra: 1333 / 1265,
  16538. bottom: 0.16
  16539. }
  16540. },
  16541. },
  16542. [
  16543. {
  16544. name: "Normal",
  16545. height: math.unit(4 + 4 / 12, "feet"),
  16546. default: true
  16547. },
  16548. ]
  16549. ))
  16550. characterMakers.push(() => makeCharacter(
  16551. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16552. {
  16553. front: {
  16554. height: math.unit(6, "feet"),
  16555. weight: math.unit(190, "lb"),
  16556. name: "Front",
  16557. image: {
  16558. source: "./media/characters/sax/front.svg",
  16559. extra: 1187 / 973,
  16560. bottom: 0.042
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Micro",
  16567. height: math.unit(4, "inches"),
  16568. default: true
  16569. },
  16570. ]
  16571. ))
  16572. characterMakers.push(() => makeCharacter(
  16573. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16574. {
  16575. front: {
  16576. height: math.unit(6, "feet"),
  16577. weight: math.unit(150, "lb"),
  16578. name: "Front",
  16579. image: {
  16580. source: "./media/characters/pandora/front.svg",
  16581. extra: 2720 / 2556,
  16582. bottom: 0.015
  16583. }
  16584. },
  16585. back: {
  16586. height: math.unit(6, "feet"),
  16587. weight: math.unit(150, "lb"),
  16588. name: "Back",
  16589. image: {
  16590. source: "./media/characters/pandora/back.svg",
  16591. extra: 2720 / 2556,
  16592. bottom: 0.01
  16593. }
  16594. },
  16595. beans: {
  16596. height: math.unit(6 / 8, "feet"),
  16597. name: "Beans",
  16598. image: {
  16599. source: "./media/characters/pandora/beans.svg"
  16600. }
  16601. },
  16602. collar: {
  16603. height: math.unit(0.31, "feet"),
  16604. name: "Collar",
  16605. image: {
  16606. source: "./media/characters/pandora/collar.svg"
  16607. }
  16608. },
  16609. skirt: {
  16610. height: math.unit(6, "feet"),
  16611. weight: math.unit(150, "lb"),
  16612. name: "Skirt",
  16613. image: {
  16614. source: "./media/characters/pandora/skirt.svg",
  16615. extra: 1622 / 1525,
  16616. bottom: 0.015
  16617. }
  16618. },
  16619. hoodie: {
  16620. height: math.unit(6, "feet"),
  16621. weight: math.unit(150, "lb"),
  16622. name: "Hoodie",
  16623. image: {
  16624. source: "./media/characters/pandora/hoodie.svg",
  16625. extra: 1622 / 1525,
  16626. bottom: 0.015
  16627. }
  16628. },
  16629. casual: {
  16630. height: math.unit(6, "feet"),
  16631. weight: math.unit(150, "lb"),
  16632. name: "Casual",
  16633. image: {
  16634. source: "./media/characters/pandora/casual.svg",
  16635. extra: 1622 / 1525,
  16636. bottom: 0.015
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Normal",
  16643. height: math.unit(6, "feet")
  16644. },
  16645. {
  16646. name: "Big Steppy",
  16647. height: math.unit(1, "km"),
  16648. default: true
  16649. },
  16650. {
  16651. name: "Galactic Steppy",
  16652. height: math.unit(2, "gigameters")
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16658. {
  16659. side: {
  16660. height: math.unit(10, "feet"),
  16661. weight: math.unit(800, "kg"),
  16662. name: "Side",
  16663. image: {
  16664. source: "./media/characters/venio-darcony/side.svg",
  16665. extra: 1373 / 1003,
  16666. bottom: 0.037
  16667. }
  16668. },
  16669. front: {
  16670. height: math.unit(19, "feet"),
  16671. weight: math.unit(800, "kg"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/venio-darcony/front.svg"
  16675. }
  16676. },
  16677. back: {
  16678. height: math.unit(19, "feet"),
  16679. weight: math.unit(800, "kg"),
  16680. name: "Back",
  16681. image: {
  16682. source: "./media/characters/venio-darcony/back.svg"
  16683. }
  16684. },
  16685. sideNsfw: {
  16686. height: math.unit(10, "feet"),
  16687. weight: math.unit(800, "kg"),
  16688. name: "Side (NSFW)",
  16689. image: {
  16690. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16691. extra: 1373 / 1003,
  16692. bottom: 0.037
  16693. }
  16694. },
  16695. frontNsfw: {
  16696. height: math.unit(19, "feet"),
  16697. weight: math.unit(800, "kg"),
  16698. name: "Front (NSFW)",
  16699. image: {
  16700. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16701. }
  16702. },
  16703. backNsfw: {
  16704. height: math.unit(19, "feet"),
  16705. weight: math.unit(800, "kg"),
  16706. name: "Back (NSFW)",
  16707. image: {
  16708. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16709. }
  16710. },
  16711. sideArmored: {
  16712. height: math.unit(10, "feet"),
  16713. weight: math.unit(800, "kg"),
  16714. name: "Side (Armored)",
  16715. image: {
  16716. source: "./media/characters/venio-darcony/side-armored.svg",
  16717. extra: 1373 / 1003,
  16718. bottom: 0.037
  16719. }
  16720. },
  16721. frontArmored: {
  16722. height: math.unit(19, "feet"),
  16723. weight: math.unit(900, "kg"),
  16724. name: "Front (Armored)",
  16725. image: {
  16726. source: "./media/characters/venio-darcony/front-armored.svg"
  16727. }
  16728. },
  16729. backArmored: {
  16730. height: math.unit(19, "feet"),
  16731. weight: math.unit(900, "kg"),
  16732. name: "Back (Armored)",
  16733. image: {
  16734. source: "./media/characters/venio-darcony/back-armored.svg"
  16735. }
  16736. },
  16737. sword: {
  16738. height: math.unit(10, "feet"),
  16739. weight: math.unit(50, "lb"),
  16740. name: "Sword",
  16741. image: {
  16742. source: "./media/characters/venio-darcony/sword.svg"
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Normal",
  16749. height: math.unit(10, "feet")
  16750. },
  16751. {
  16752. name: "Macro",
  16753. height: math.unit(130, "feet"),
  16754. default: true
  16755. },
  16756. {
  16757. name: "Macro+",
  16758. height: math.unit(240, "feet")
  16759. },
  16760. ]
  16761. ))
  16762. characterMakers.push(() => makeCharacter(
  16763. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16764. {
  16765. front: {
  16766. height: math.unit(6, "feet"),
  16767. weight: math.unit(150, "lb"),
  16768. name: "Front",
  16769. image: {
  16770. source: "./media/characters/veski/front.svg",
  16771. extra: 1299 / 1225,
  16772. bottom: 0.04
  16773. }
  16774. },
  16775. back: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(150, "lb"),
  16778. name: "Back",
  16779. image: {
  16780. source: "./media/characters/veski/back.svg",
  16781. extra: 1299 / 1225,
  16782. bottom: 0.008
  16783. }
  16784. },
  16785. maw: {
  16786. height: math.unit(1.5 * 1.21, "feet"),
  16787. name: "Maw",
  16788. image: {
  16789. source: "./media/characters/veski/maw.svg"
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Macro",
  16796. height: math.unit(2, "km"),
  16797. default: true
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(5 + 7 / 12, "feet"),
  16806. name: "Front",
  16807. image: {
  16808. source: "./media/characters/isabelle/front.svg",
  16809. extra: 2130 / 1976,
  16810. bottom: 0.05
  16811. }
  16812. },
  16813. },
  16814. [
  16815. {
  16816. name: "Supermicro",
  16817. height: math.unit(10, "micrometers")
  16818. },
  16819. {
  16820. name: "Micro",
  16821. height: math.unit(1, "inch")
  16822. },
  16823. {
  16824. name: "Tiny",
  16825. height: math.unit(5, "inches")
  16826. },
  16827. {
  16828. name: "Standard",
  16829. height: math.unit(5 + 7 / 12, "inches")
  16830. },
  16831. {
  16832. name: "Macro",
  16833. height: math.unit(80, "meters"),
  16834. default: true
  16835. },
  16836. {
  16837. name: "Megamacro",
  16838. height: math.unit(250, "meters")
  16839. },
  16840. {
  16841. name: "Gigamacro",
  16842. height: math.unit(5, "km")
  16843. },
  16844. {
  16845. name: "Cosmic",
  16846. height: math.unit(2.5e6, "miles")
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16852. {
  16853. front: {
  16854. height: math.unit(6, "feet"),
  16855. weight: math.unit(150, "lb"),
  16856. name: "Front",
  16857. image: {
  16858. source: "./media/characters/hanzo/front.svg",
  16859. extra: 374 / 344,
  16860. bottom: 0.02
  16861. }
  16862. },
  16863. },
  16864. [
  16865. {
  16866. name: "Normal",
  16867. height: math.unit(8, "feet"),
  16868. default: true
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16874. {
  16875. front: {
  16876. height: math.unit(7, "feet"),
  16877. weight: math.unit(130, "lb"),
  16878. name: "Front",
  16879. image: {
  16880. source: "./media/characters/anna/front.svg",
  16881. extra: 169 / 145,
  16882. bottom: 0.06
  16883. }
  16884. },
  16885. full: {
  16886. height: math.unit(4.96, "feet"),
  16887. weight: math.unit(220, "lb"),
  16888. name: "Full",
  16889. image: {
  16890. source: "./media/characters/anna/full.svg",
  16891. extra: 138 / 114,
  16892. bottom: 0.15
  16893. }
  16894. },
  16895. tongue: {
  16896. height: math.unit(2.53, "feet"),
  16897. name: "Tongue",
  16898. image: {
  16899. source: "./media/characters/anna/tongue.svg"
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(7, "feet"),
  16907. default: true
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16913. {
  16914. front: {
  16915. height: math.unit(7, "feet"),
  16916. weight: math.unit(150, "lb"),
  16917. name: "Front",
  16918. image: {
  16919. source: "./media/characters/ian-corvid/front.svg",
  16920. extra: 150 / 142,
  16921. bottom: 0.02
  16922. }
  16923. },
  16924. back: {
  16925. height: math.unit(7, "feet"),
  16926. weight: math.unit(150, "lb"),
  16927. name: "Back",
  16928. image: {
  16929. source: "./media/characters/ian-corvid/back.svg",
  16930. extra: 150 / 143,
  16931. bottom: 0.01
  16932. }
  16933. },
  16934. stomping: {
  16935. height: math.unit(7, "feet"),
  16936. weight: math.unit(150, "lb"),
  16937. name: "Stomping",
  16938. image: {
  16939. source: "./media/characters/ian-corvid/stomping.svg",
  16940. extra: 76 / 72
  16941. }
  16942. },
  16943. sitting: {
  16944. height: math.unit(7 / 1.8, "feet"),
  16945. weight: math.unit(150, "lb"),
  16946. name: "Sitting",
  16947. image: {
  16948. source: "./media/characters/ian-corvid/sitting.svg",
  16949. extra: 1400 / 1269,
  16950. bottom: 0.15
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Tiny Microw",
  16957. height: math.unit(1, "inch")
  16958. },
  16959. {
  16960. name: "Microw",
  16961. height: math.unit(6, "inches")
  16962. },
  16963. {
  16964. name: "Crow",
  16965. height: math.unit(7 + 1 / 12, "feet"),
  16966. default: true
  16967. },
  16968. {
  16969. name: "Macrow",
  16970. height: math.unit(176, "feet")
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(5 + 7 / 12, "feet"),
  16979. weight: math.unit(147, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/natalie-kellon/front.svg",
  16983. extra: 1214 / 1141,
  16984. bottom: 0.02
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Micro",
  16991. height: math.unit(1 / 16, "inch")
  16992. },
  16993. {
  16994. name: "Tiny",
  16995. height: math.unit(4, "inches")
  16996. },
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(5 + 7 / 12, "feet"),
  17000. default: true
  17001. },
  17002. {
  17003. name: "Amazon",
  17004. height: math.unit(12, "feet")
  17005. },
  17006. {
  17007. name: "Giantess",
  17008. height: math.unit(160, "meters")
  17009. },
  17010. {
  17011. name: "Titaness",
  17012. height: math.unit(800, "meters")
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17018. {
  17019. front: {
  17020. height: math.unit(6, "feet"),
  17021. weight: math.unit(150, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/alluria/front.svg",
  17025. extra: 806 / 738,
  17026. bottom: 0.01
  17027. }
  17028. },
  17029. side: {
  17030. height: math.unit(6, "feet"),
  17031. weight: math.unit(150, "lb"),
  17032. name: "Side",
  17033. image: {
  17034. source: "./media/characters/alluria/side.svg",
  17035. extra: 800 / 750,
  17036. }
  17037. },
  17038. back: {
  17039. height: math.unit(6, "feet"),
  17040. weight: math.unit(150, "lb"),
  17041. name: "Back",
  17042. image: {
  17043. source: "./media/characters/alluria/back.svg",
  17044. extra: 806 / 738,
  17045. }
  17046. },
  17047. frontMaid: {
  17048. height: math.unit(6, "feet"),
  17049. weight: math.unit(150, "lb"),
  17050. name: "Front (Maid)",
  17051. image: {
  17052. source: "./media/characters/alluria/front-maid.svg",
  17053. extra: 806 / 738,
  17054. bottom: 0.01
  17055. }
  17056. },
  17057. sideMaid: {
  17058. height: math.unit(6, "feet"),
  17059. weight: math.unit(150, "lb"),
  17060. name: "Side (Maid)",
  17061. image: {
  17062. source: "./media/characters/alluria/side-maid.svg",
  17063. extra: 800 / 750,
  17064. bottom: 0.005
  17065. }
  17066. },
  17067. backMaid: {
  17068. height: math.unit(6, "feet"),
  17069. weight: math.unit(150, "lb"),
  17070. name: "Back (Maid)",
  17071. image: {
  17072. source: "./media/characters/alluria/back-maid.svg",
  17073. extra: 806 / 738,
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Micro",
  17080. height: math.unit(6, "inches"),
  17081. default: true
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17087. {
  17088. front: {
  17089. height: math.unit(6, "feet"),
  17090. weight: math.unit(150, "lb"),
  17091. name: "Front",
  17092. image: {
  17093. source: "./media/characters/kyle/front.svg",
  17094. extra: 1069 / 962,
  17095. bottom: 77.228 / 1727.45
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Macro",
  17102. height: math.unit(150, "feet"),
  17103. default: true
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17109. {
  17110. front: {
  17111. height: math.unit(6, "feet"),
  17112. weight: math.unit(300, "lb"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/duncan/front.svg",
  17116. extra: 1650 / 1482,
  17117. bottom: 0.05
  17118. }
  17119. },
  17120. },
  17121. [
  17122. {
  17123. name: "Macro",
  17124. height: math.unit(100, "feet"),
  17125. default: true
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17131. {
  17132. front: {
  17133. height: math.unit(5 + 4 / 12, "feet"),
  17134. weight: math.unit(220, "lb"),
  17135. name: "Front",
  17136. image: {
  17137. source: "./media/characters/memory/front.svg",
  17138. extra: 3641 / 3545,
  17139. bottom: 0.03
  17140. }
  17141. },
  17142. back: {
  17143. height: math.unit(5 + 4 / 12, "feet"),
  17144. weight: math.unit(220, "lb"),
  17145. name: "Back",
  17146. image: {
  17147. source: "./media/characters/memory/back.svg",
  17148. extra: 3641 / 3545,
  17149. bottom: 0.025
  17150. }
  17151. },
  17152. frontSkirt: {
  17153. height: math.unit(5 + 4 / 12, "feet"),
  17154. weight: math.unit(220, "lb"),
  17155. name: "Front (Skirt)",
  17156. image: {
  17157. source: "./media/characters/memory/front-skirt.svg",
  17158. extra: 3641 / 3545,
  17159. bottom: 0.03
  17160. }
  17161. },
  17162. frontDress: {
  17163. height: math.unit(5 + 4 / 12, "feet"),
  17164. weight: math.unit(220, "lb"),
  17165. name: "Front (Dress)",
  17166. image: {
  17167. source: "./media/characters/memory/front-dress.svg",
  17168. extra: 3641 / 3545,
  17169. bottom: 0.03
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Micro",
  17176. height: math.unit(6, "inches"),
  17177. default: true
  17178. },
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(5 + 4 / 12, "feet")
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(4 + 11 / 12, "feet"),
  17190. weight: math.unit(100, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/luno/front.svg",
  17194. extra: 1535 / 1487,
  17195. bottom: 0.03
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Micro",
  17202. height: math.unit(3, "inches")
  17203. },
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(4 + 11 / 12, "feet"),
  17207. default: true
  17208. },
  17209. {
  17210. name: "Macro",
  17211. height: math.unit(300, "feet")
  17212. },
  17213. {
  17214. name: "Megamacro",
  17215. height: math.unit(700, "miles")
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(6 + 2 / 12, "feet"),
  17224. weight: math.unit(170, "lb"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/jamesy/front.svg",
  17228. extra: 440 / 382,
  17229. bottom: 0.005
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Micro",
  17236. height: math.unit(3, "inches")
  17237. },
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(6 + 2 / 12, "feet"),
  17241. default: true
  17242. },
  17243. {
  17244. name: "Macro",
  17245. height: math.unit(300, "feet")
  17246. },
  17247. {
  17248. name: "Megamacro",
  17249. height: math.unit(700, "miles")
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(6, "feet"),
  17258. weight: math.unit(160, "lb"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/mark/front.svg",
  17262. extra: 3300 / 3100,
  17263. bottom: 136.42 / 3440.47
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Macro",
  17270. height: math.unit(120, "meters")
  17271. },
  17272. {
  17273. name: "Bigger Macro",
  17274. height: math.unit(350, "meters")
  17275. },
  17276. {
  17277. name: "Megamacro",
  17278. height: math.unit(8, "km"),
  17279. default: true
  17280. },
  17281. {
  17282. name: "Continental",
  17283. height: math.unit(4550, "km")
  17284. },
  17285. {
  17286. name: "Planetary",
  17287. height: math.unit(65000, "km")
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(6, "feet"),
  17296. weight: math.unit(400, "lb"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/mac/front.svg",
  17300. extra: 1048 / 987.7,
  17301. bottom: 60 / 1107.6,
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Macro",
  17308. height: math.unit(500, "feet"),
  17309. default: true
  17310. },
  17311. ]
  17312. ))
  17313. characterMakers.push(() => makeCharacter(
  17314. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17315. {
  17316. front: {
  17317. height: math.unit(5 + 2 / 12, "feet"),
  17318. weight: math.unit(190, "lb"),
  17319. name: "Front",
  17320. image: {
  17321. source: "./media/characters/bari/front.svg",
  17322. extra: 3156 / 2880,
  17323. bottom: 0.03
  17324. }
  17325. },
  17326. back: {
  17327. height: math.unit(5 + 2 / 12, "feet"),
  17328. weight: math.unit(190, "lb"),
  17329. name: "Back",
  17330. image: {
  17331. source: "./media/characters/bari/back.svg",
  17332. extra: 3260 / 2834,
  17333. bottom: 0.025
  17334. }
  17335. },
  17336. frontPlush: {
  17337. height: math.unit(5 + 2 / 12, "feet"),
  17338. weight: math.unit(190, "lb"),
  17339. name: "Front (Plush)",
  17340. image: {
  17341. source: "./media/characters/bari/front-plush.svg",
  17342. extra: 1112 / 1061,
  17343. bottom: 0.002
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Micro",
  17350. height: math.unit(3, "inches")
  17351. },
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(5 + 2 / 12, "feet"),
  17355. default: true
  17356. },
  17357. {
  17358. name: "Macro",
  17359. height: math.unit(20, "feet")
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(6 + 1 / 12, "feet"),
  17368. weight: math.unit(275, "lb"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/hunter-misha-raven/front.svg"
  17372. }
  17373. },
  17374. },
  17375. [
  17376. {
  17377. name: "Mortal",
  17378. height: math.unit(6 + 1 / 12, "feet")
  17379. },
  17380. {
  17381. name: "Divine",
  17382. height: math.unit(1.12134e34, "parsecs"),
  17383. default: true
  17384. },
  17385. ]
  17386. ))
  17387. characterMakers.push(() => makeCharacter(
  17388. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17389. {
  17390. front: {
  17391. height: math.unit(6 + 3 / 12, "feet"),
  17392. weight: math.unit(220, "lb"),
  17393. name: "Front",
  17394. image: {
  17395. source: "./media/characters/max-calore/front.svg",
  17396. extra: 1700 / 1648,
  17397. bottom: 0.01
  17398. }
  17399. },
  17400. back: {
  17401. height: math.unit(6 + 3 / 12, "feet"),
  17402. weight: math.unit(220, "lb"),
  17403. name: "Back",
  17404. image: {
  17405. source: "./media/characters/max-calore/back.svg",
  17406. extra: 1700 / 1648,
  17407. bottom: 0.01
  17408. }
  17409. },
  17410. },
  17411. [
  17412. {
  17413. name: "Normal",
  17414. height: math.unit(6 + 3 / 12, "feet"),
  17415. default: true
  17416. },
  17417. ]
  17418. ))
  17419. characterMakers.push(() => makeCharacter(
  17420. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17421. {
  17422. side: {
  17423. height: math.unit(2 + 8 / 12, "feet"),
  17424. weight: math.unit(99, "lb"),
  17425. name: "Side",
  17426. image: {
  17427. source: "./media/characters/aspen/side.svg",
  17428. extra: 152 / 138,
  17429. bottom: 0.032
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(2 + 8 / 12, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17443. {
  17444. side: {
  17445. height: math.unit(3 + 2 / 12, "feet"),
  17446. weight: math.unit(224, "lb"),
  17447. name: "Side",
  17448. image: {
  17449. source: "./media/characters/sheila-feral-wolf/side.svg",
  17450. extra: 179 / 166,
  17451. bottom: 0.03
  17452. }
  17453. },
  17454. },
  17455. [
  17456. {
  17457. name: "Normal",
  17458. height: math.unit(3 + 2 / 12, "feet"),
  17459. default: true
  17460. },
  17461. ]
  17462. ))
  17463. characterMakers.push(() => makeCharacter(
  17464. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17465. {
  17466. side: {
  17467. height: math.unit(1 + 9 / 12, "feet"),
  17468. weight: math.unit(38, "lb"),
  17469. name: "Side",
  17470. image: {
  17471. source: "./media/characters/michelle/side.svg",
  17472. extra: 147 / 136.7,
  17473. bottom: 0.03
  17474. }
  17475. },
  17476. },
  17477. [
  17478. {
  17479. name: "Normal",
  17480. height: math.unit(1 + 9 / 12, "feet"),
  17481. default: true
  17482. },
  17483. ]
  17484. ))
  17485. characterMakers.push(() => makeCharacter(
  17486. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17487. {
  17488. front: {
  17489. height: math.unit(1.54, "feet"),
  17490. weight: math.unit(50, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/nino/front.svg"
  17494. }
  17495. },
  17496. },
  17497. [
  17498. {
  17499. name: "Normal",
  17500. height: math.unit(1.54, "feet"),
  17501. default: true
  17502. },
  17503. ]
  17504. ))
  17505. characterMakers.push(() => makeCharacter(
  17506. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17507. {
  17508. front: {
  17509. height: math.unit(1.49, "feet"),
  17510. weight: math.unit(45, "lb"),
  17511. name: "Front",
  17512. image: {
  17513. source: "./media/characters/viola/front.svg"
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(1.49, "feet"),
  17521. default: true
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17527. {
  17528. front: {
  17529. height: math.unit(6 + 5 / 12, "feet"),
  17530. weight: math.unit(580, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/atlas/front.svg",
  17534. extra: 298.5 / 290,
  17535. bottom: 0.015
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(6 + 5 / 12, "feet"),
  17543. default: true
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17549. {
  17550. side: {
  17551. height: math.unit(15.6, "inches"),
  17552. weight: math.unit(10, "lb"),
  17553. name: "Side",
  17554. image: {
  17555. source: "./media/characters/davy/side.svg",
  17556. extra: 200 / 170,
  17557. bottom: 0.01
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Normal",
  17564. height: math.unit(15.6, "inches"),
  17565. default: true
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17571. {
  17572. side: {
  17573. height: math.unit(4 + 8 / 12, "feet"),
  17574. weight: math.unit(166, "lb"),
  17575. name: "Side",
  17576. image: {
  17577. source: "./media/characters/fiona/side.svg",
  17578. extra: 232 / 220,
  17579. bottom: 0.03
  17580. }
  17581. },
  17582. },
  17583. [
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(4 + 8 / 12, "feet"),
  17587. default: true
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17593. {
  17594. front: {
  17595. height: math.unit(26, "inches"),
  17596. weight: math.unit(35, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/lyla/front.svg",
  17600. bottom: 0.1
  17601. }
  17602. },
  17603. },
  17604. [
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(3, "feet"),
  17608. default: true
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17614. {
  17615. side: {
  17616. height: math.unit(1.8, "feet"),
  17617. weight: math.unit(44, "lb"),
  17618. name: "Side",
  17619. image: {
  17620. source: "./media/characters/perseus/side.svg",
  17621. bottom: 0.21
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(1.8, "feet"),
  17629. default: true
  17630. },
  17631. ]
  17632. ))
  17633. characterMakers.push(() => makeCharacter(
  17634. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17635. {
  17636. side: {
  17637. height: math.unit(4 + 2 / 12, "feet"),
  17638. weight: math.unit(20, "lb"),
  17639. name: "Side",
  17640. image: {
  17641. source: "./media/characters/remus/side.svg"
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(4 + 2 / 12, "feet"),
  17649. default: true
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17655. {
  17656. front: {
  17657. height: math.unit(4 + 11 / 12, "feet"),
  17658. weight: math.unit(114, "lb"),
  17659. name: "Front",
  17660. image: {
  17661. source: "./media/characters/raf/front.svg",
  17662. extra: 1504/1339,
  17663. bottom: 26/1530
  17664. }
  17665. },
  17666. side: {
  17667. height: math.unit(4 + 11 / 12, "feet"),
  17668. weight: math.unit(114, "lb"),
  17669. name: "Side",
  17670. image: {
  17671. source: "./media/characters/raf/side.svg",
  17672. extra: 1466/1316,
  17673. bottom: 29/1495
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Micro",
  17680. height: math.unit(2, "inches")
  17681. },
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(4 + 11 / 12, "feet"),
  17685. default: true
  17686. },
  17687. {
  17688. name: "Macro",
  17689. height: math.unit(70, "feet")
  17690. },
  17691. ]
  17692. ))
  17693. characterMakers.push(() => makeCharacter(
  17694. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17695. {
  17696. front: {
  17697. height: math.unit(1.5, "meters"),
  17698. weight: math.unit(68, "kg"),
  17699. name: "Front",
  17700. image: {
  17701. source: "./media/characters/liam-einarr/front.svg",
  17702. extra: 2822 / 2666
  17703. }
  17704. },
  17705. back: {
  17706. height: math.unit(1.5, "meters"),
  17707. weight: math.unit(68, "kg"),
  17708. name: "Back",
  17709. image: {
  17710. source: "./media/characters/liam-einarr/back.svg",
  17711. extra: 2822 / 2666,
  17712. bottom: 0.015
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(1.5, "meters"),
  17720. default: true
  17721. },
  17722. {
  17723. name: "Macro",
  17724. height: math.unit(150, "meters")
  17725. },
  17726. {
  17727. name: "Megamacro",
  17728. height: math.unit(35, "km")
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17734. {
  17735. front: {
  17736. height: math.unit(6, "feet"),
  17737. weight: math.unit(75, "kg"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/linda/front.svg",
  17741. extra: 930 / 874,
  17742. bottom: 0.004
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(6, "feet"),
  17750. default: true
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17756. {
  17757. front: {
  17758. height: math.unit(6 + 8 / 12, "feet"),
  17759. weight: math.unit(220, "lb"),
  17760. name: "Front",
  17761. image: {
  17762. source: "./media/characters/caylex/front.svg",
  17763. extra: 821 / 772,
  17764. bottom: 0.07
  17765. }
  17766. },
  17767. back: {
  17768. height: math.unit(6 + 8 / 12, "feet"),
  17769. weight: math.unit(220, "lb"),
  17770. name: "Back",
  17771. image: {
  17772. source: "./media/characters/caylex/back.svg",
  17773. extra: 821 / 772,
  17774. bottom: 0.022
  17775. }
  17776. },
  17777. hand: {
  17778. height: math.unit(1.25, "feet"),
  17779. name: "Hand",
  17780. image: {
  17781. source: "./media/characters/caylex/hand.svg"
  17782. }
  17783. },
  17784. foot: {
  17785. height: math.unit(1.6, "feet"),
  17786. name: "Foot",
  17787. image: {
  17788. source: "./media/characters/caylex/foot.svg"
  17789. }
  17790. },
  17791. armored: {
  17792. height: math.unit(6 + 8 / 12, "feet"),
  17793. weight: math.unit(250, "lb"),
  17794. name: "Armored",
  17795. image: {
  17796. source: "./media/characters/caylex/armored.svg",
  17797. extra: 1420 / 1310,
  17798. bottom: 0.045
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(6 + 8 / 12, "feet"),
  17806. default: true
  17807. },
  17808. {
  17809. name: "Normal+",
  17810. height: math.unit(12, "feet")
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17816. {
  17817. front: {
  17818. height: math.unit(7 + 6 / 12, "feet"),
  17819. weight: math.unit(288, "lb"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/alana/front.svg",
  17823. extra: 679 / 653,
  17824. bottom: 22.5 / 701
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(7 + 6 / 12, "feet")
  17832. },
  17833. {
  17834. name: "Large",
  17835. height: math.unit(50, "feet")
  17836. },
  17837. {
  17838. name: "Macro",
  17839. height: math.unit(100, "feet"),
  17840. default: true
  17841. },
  17842. {
  17843. name: "Macro+",
  17844. height: math.unit(200, "feet")
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17850. {
  17851. front: {
  17852. height: math.unit(6 + 1 / 12, "feet"),
  17853. weight: math.unit(210, "lb"),
  17854. name: "Front",
  17855. image: {
  17856. source: "./media/characters/hasani/front.svg",
  17857. extra: 244 / 232,
  17858. bottom: 0.01
  17859. }
  17860. },
  17861. back: {
  17862. height: math.unit(6 + 1 / 12, "feet"),
  17863. weight: math.unit(210, "lb"),
  17864. name: "Back",
  17865. image: {
  17866. source: "./media/characters/hasani/back.svg",
  17867. extra: 244 / 232,
  17868. bottom: 0.01
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(6 + 1 / 12, "feet")
  17876. },
  17877. {
  17878. name: "Macro",
  17879. height: math.unit(175, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(1.82, "meters"),
  17889. weight: math.unit(140, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/nita/front.svg",
  17893. extra: 2473 / 2363,
  17894. bottom: 0.01
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(1.82, "m")
  17902. },
  17903. {
  17904. name: "Macro",
  17905. height: math.unit(300, "m")
  17906. },
  17907. {
  17908. name: "Mistake Canon",
  17909. height: math.unit(0.5, "miles"),
  17910. default: true
  17911. },
  17912. {
  17913. name: "Big Mistake",
  17914. height: math.unit(13, "miles")
  17915. },
  17916. {
  17917. name: "Playing God",
  17918. height: math.unit(2450, "miles")
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17924. {
  17925. front: {
  17926. height: math.unit(4, "feet"),
  17927. weight: math.unit(120, "lb"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/shiriko/front.svg",
  17931. extra: 970/934,
  17932. bottom: 5/975
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(4, "feet"),
  17940. default: true
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17946. {
  17947. front: {
  17948. height: math.unit(6, "feet"),
  17949. name: "front",
  17950. image: {
  17951. source: "./media/characters/deja/front.svg",
  17952. extra: 926 / 840,
  17953. bottom: 0.07
  17954. }
  17955. },
  17956. },
  17957. [
  17958. {
  17959. name: "Planck Length",
  17960. height: math.unit(1.6e-35, "meters")
  17961. },
  17962. {
  17963. name: "Normal",
  17964. height: math.unit(30.48, "meters"),
  17965. default: true
  17966. },
  17967. {
  17968. name: "Universal",
  17969. height: math.unit(8.8e26, "meters")
  17970. },
  17971. ]
  17972. ))
  17973. characterMakers.push(() => makeCharacter(
  17974. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17975. {
  17976. side: {
  17977. height: math.unit(8, "feet"),
  17978. weight: math.unit(6300, "lb"),
  17979. name: "Side",
  17980. image: {
  17981. source: "./media/characters/anima/side.svg",
  17982. bottom: 0.035
  17983. }
  17984. },
  17985. },
  17986. [
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(8, "feet"),
  17990. default: true
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(8, "feet"),
  17999. weight: math.unit(350, "lb"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/bianca/front.svg",
  18003. extra: 234 / 225,
  18004. bottom: 0.03
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Normal",
  18011. height: math.unit(8, "feet"),
  18012. default: true
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18018. {
  18019. front: {
  18020. height: math.unit(6, "feet"),
  18021. weight: math.unit(150, "lb"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/adinia/front.svg",
  18025. extra: 1845 / 1672,
  18026. bottom: 0.02
  18027. }
  18028. },
  18029. back: {
  18030. height: math.unit(6, "feet"),
  18031. weight: math.unit(150, "lb"),
  18032. name: "Back",
  18033. image: {
  18034. source: "./media/characters/adinia/back.svg",
  18035. extra: 1845 / 1672,
  18036. bottom: 0.002
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(11 + 5 / 12, "feet"),
  18044. default: true
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18050. {
  18051. front: {
  18052. height: math.unit(3, "meters"),
  18053. weight: math.unit(200, "kg"),
  18054. name: "Front",
  18055. image: {
  18056. source: "./media/characters/lykasa/front.svg",
  18057. extra: 1076 / 976,
  18058. bottom: 0.06
  18059. }
  18060. },
  18061. },
  18062. [
  18063. {
  18064. name: "Normal",
  18065. height: math.unit(3, "meters")
  18066. },
  18067. {
  18068. name: "Kaiju",
  18069. height: math.unit(120, "meters"),
  18070. default: true
  18071. },
  18072. {
  18073. name: "Mega Kaiju",
  18074. height: math.unit(240, "km")
  18075. },
  18076. {
  18077. name: "Giga Kaiju",
  18078. height: math.unit(400, "megameters")
  18079. },
  18080. {
  18081. name: "Tera Kaiju",
  18082. height: math.unit(800, "gigameters")
  18083. },
  18084. {
  18085. name: "Kaiju Dragon Goddess",
  18086. height: math.unit(26, "zettaparsecs")
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18092. {
  18093. side: {
  18094. height: math.unit(283 / 124 * 6, "feet"),
  18095. weight: math.unit(35000, "lb"),
  18096. name: "Side",
  18097. image: {
  18098. source: "./media/characters/malfaren/side.svg",
  18099. extra: 1310/529,
  18100. bottom: 24/1334
  18101. }
  18102. },
  18103. front: {
  18104. height: math.unit(22.36, "feet"),
  18105. weight: math.unit(35000, "lb"),
  18106. name: "Front",
  18107. image: {
  18108. source: "./media/characters/malfaren/front.svg",
  18109. extra: 1237/1115,
  18110. bottom: 32/1269
  18111. }
  18112. },
  18113. maw: {
  18114. height: math.unit(6.9, "feet"),
  18115. name: "Maw",
  18116. image: {
  18117. source: "./media/characters/malfaren/maw.svg"
  18118. }
  18119. },
  18120. dick: {
  18121. height: math.unit(6.19, "feet"),
  18122. name: "Dick",
  18123. image: {
  18124. source: "./media/characters/malfaren/dick.svg"
  18125. }
  18126. },
  18127. eye: {
  18128. height: math.unit(0.69, "feet"),
  18129. name: "Eye",
  18130. image: {
  18131. source: "./media/characters/malfaren/eye.svg"
  18132. }
  18133. },
  18134. },
  18135. [
  18136. {
  18137. name: "Big",
  18138. height: math.unit(283 / 162 * 6, "feet"),
  18139. },
  18140. {
  18141. name: "Bigger",
  18142. height: math.unit(283 / 124 * 6, "feet")
  18143. },
  18144. {
  18145. name: "Massive",
  18146. height: math.unit(283 / 92 * 6, "feet"),
  18147. default: true
  18148. },
  18149. {
  18150. name: "👀💦",
  18151. height: math.unit(283 / 73 * 6, "feet"),
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18157. {
  18158. front: {
  18159. height: math.unit(1.7, "m"),
  18160. weight: math.unit(70, "kg"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/kernel/front.svg",
  18164. extra: 222 / 210,
  18165. bottom: 0.007
  18166. }
  18167. },
  18168. },
  18169. [
  18170. {
  18171. name: "Nano",
  18172. height: math.unit(17, "micrometers")
  18173. },
  18174. {
  18175. name: "Micro",
  18176. height: math.unit(1.7, "mm")
  18177. },
  18178. {
  18179. name: "Small",
  18180. height: math.unit(1.7, "cm")
  18181. },
  18182. {
  18183. name: "Normal",
  18184. height: math.unit(1.7, "m"),
  18185. default: true
  18186. },
  18187. ]
  18188. ))
  18189. characterMakers.push(() => makeCharacter(
  18190. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18191. {
  18192. front: {
  18193. height: math.unit(1.75, "meters"),
  18194. weight: math.unit(65, "kg"),
  18195. name: "Front",
  18196. image: {
  18197. source: "./media/characters/jayne-folest/front.svg",
  18198. extra: 2115 / 2007,
  18199. bottom: 0.02
  18200. }
  18201. },
  18202. back: {
  18203. height: math.unit(1.75, "meters"),
  18204. weight: math.unit(65, "kg"),
  18205. name: "Back",
  18206. image: {
  18207. source: "./media/characters/jayne-folest/back.svg",
  18208. extra: 2115 / 2007,
  18209. bottom: 0.005
  18210. }
  18211. },
  18212. frontClothed: {
  18213. height: math.unit(1.75, "meters"),
  18214. weight: math.unit(65, "kg"),
  18215. name: "Front (Clothed)",
  18216. image: {
  18217. source: "./media/characters/jayne-folest/front-clothed.svg",
  18218. extra: 2115 / 2007,
  18219. bottom: 0.035
  18220. }
  18221. },
  18222. hand: {
  18223. height: math.unit(1 / 1.260, "feet"),
  18224. name: "Hand",
  18225. image: {
  18226. source: "./media/characters/jayne-folest/hand.svg"
  18227. }
  18228. },
  18229. foot: {
  18230. height: math.unit(1 / 0.918, "feet"),
  18231. name: "Foot",
  18232. image: {
  18233. source: "./media/characters/jayne-folest/foot.svg"
  18234. }
  18235. },
  18236. },
  18237. [
  18238. {
  18239. name: "Micro",
  18240. height: math.unit(4, "cm")
  18241. },
  18242. {
  18243. name: "Normal",
  18244. height: math.unit(1.75, "meters")
  18245. },
  18246. {
  18247. name: "Macro",
  18248. height: math.unit(47.5, "meters"),
  18249. default: true
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18255. {
  18256. front: {
  18257. height: math.unit(180, "cm"),
  18258. weight: math.unit(70, "kg"),
  18259. name: "Front",
  18260. image: {
  18261. source: "./media/characters/algier/front.svg",
  18262. extra: 596 / 572,
  18263. bottom: 0.04
  18264. }
  18265. },
  18266. back: {
  18267. height: math.unit(180, "cm"),
  18268. weight: math.unit(70, "kg"),
  18269. name: "Back",
  18270. image: {
  18271. source: "./media/characters/algier/back.svg",
  18272. extra: 596 / 572,
  18273. bottom: 0.025
  18274. }
  18275. },
  18276. frontdressed: {
  18277. height: math.unit(180, "cm"),
  18278. weight: math.unit(150, "kg"),
  18279. name: "Front-dressed",
  18280. image: {
  18281. source: "./media/characters/algier/front-dressed.svg",
  18282. extra: 596 / 572,
  18283. bottom: 0.038
  18284. }
  18285. },
  18286. },
  18287. [
  18288. {
  18289. name: "Micro",
  18290. height: math.unit(5, "cm")
  18291. },
  18292. {
  18293. name: "Normal",
  18294. height: math.unit(180, "cm"),
  18295. default: true
  18296. },
  18297. {
  18298. name: "Macro",
  18299. height: math.unit(64, "m")
  18300. },
  18301. ]
  18302. ))
  18303. characterMakers.push(() => makeCharacter(
  18304. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18305. {
  18306. upright: {
  18307. height: math.unit(7, "feet"),
  18308. weight: math.unit(300, "lb"),
  18309. name: "Upright",
  18310. image: {
  18311. source: "./media/characters/pretzel/upright.svg",
  18312. extra: 534 / 522,
  18313. bottom: 0.065
  18314. }
  18315. },
  18316. sprawling: {
  18317. height: math.unit(3.75, "feet"),
  18318. weight: math.unit(300, "lb"),
  18319. name: "Sprawling",
  18320. image: {
  18321. source: "./media/characters/pretzel/sprawling.svg",
  18322. extra: 314 / 281,
  18323. bottom: 0.1
  18324. }
  18325. },
  18326. tongue: {
  18327. height: math.unit(2, "feet"),
  18328. name: "Tongue",
  18329. image: {
  18330. source: "./media/characters/pretzel/tongue.svg"
  18331. }
  18332. },
  18333. },
  18334. [
  18335. {
  18336. name: "Normal",
  18337. height: math.unit(7, "feet"),
  18338. default: true
  18339. },
  18340. {
  18341. name: "Oversized",
  18342. height: math.unit(15, "feet")
  18343. },
  18344. {
  18345. name: "Huge",
  18346. height: math.unit(30, "feet")
  18347. },
  18348. {
  18349. name: "Macro",
  18350. height: math.unit(250, "feet")
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18356. {
  18357. sideFront: {
  18358. height: math.unit(5 + 2 / 12, "feet"),
  18359. weight: math.unit(120, "lb"),
  18360. name: "Front Side",
  18361. image: {
  18362. source: "./media/characters/roxi/side-front.svg",
  18363. extra: 2924 / 2717,
  18364. bottom: 0.08
  18365. }
  18366. },
  18367. sideBack: {
  18368. height: math.unit(5 + 2 / 12, "feet"),
  18369. weight: math.unit(120, "lb"),
  18370. name: "Back Side",
  18371. image: {
  18372. source: "./media/characters/roxi/side-back.svg",
  18373. extra: 2904 / 2693,
  18374. bottom: 0.06
  18375. }
  18376. },
  18377. front: {
  18378. height: math.unit(5 + 2 / 12, "feet"),
  18379. weight: math.unit(120, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/roxi/front.svg",
  18383. extra: 2028 / 1907,
  18384. bottom: 0.01
  18385. }
  18386. },
  18387. frontAlt: {
  18388. height: math.unit(5 + 2 / 12, "feet"),
  18389. weight: math.unit(120, "lb"),
  18390. name: "Front (Alt)",
  18391. image: {
  18392. source: "./media/characters/roxi/front-alt.svg",
  18393. extra: 1828 / 1798,
  18394. bottom: 0.01
  18395. }
  18396. },
  18397. sitting: {
  18398. height: math.unit(2.8, "feet"),
  18399. weight: math.unit(120, "lb"),
  18400. name: "Sitting",
  18401. image: {
  18402. source: "./media/characters/roxi/sitting.svg",
  18403. extra: 2660 / 2462,
  18404. bottom: 0.1
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(5 + 2 / 12, "feet"),
  18412. default: true
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18418. {
  18419. side: {
  18420. height: math.unit(55, "feet"),
  18421. weight: math.unit(153, "tons"),
  18422. name: "Side",
  18423. image: {
  18424. source: "./media/characters/shadow/side.svg",
  18425. extra: 701 / 628,
  18426. bottom: 0.02
  18427. }
  18428. },
  18429. flying: {
  18430. height: math.unit(145, "feet"),
  18431. weight: math.unit(153, "tons"),
  18432. name: "Flying",
  18433. image: {
  18434. source: "./media/characters/shadow/flying.svg"
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "Normal",
  18441. height: math.unit(55, "feet"),
  18442. default: true
  18443. },
  18444. ]
  18445. ))
  18446. characterMakers.push(() => makeCharacter(
  18447. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18448. {
  18449. front: {
  18450. height: math.unit(6, "feet"),
  18451. weight: math.unit(200, "lb"),
  18452. name: "Front",
  18453. image: {
  18454. source: "./media/characters/marcie/front.svg",
  18455. extra: 960 / 876,
  18456. bottom: 58 / 1017.87
  18457. }
  18458. },
  18459. },
  18460. [
  18461. {
  18462. name: "Macro",
  18463. height: math.unit(1, "mile"),
  18464. default: true
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18470. {
  18471. front: {
  18472. height: math.unit(7, "feet"),
  18473. weight: math.unit(200, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/kachina/front.svg",
  18477. extra: 1290.68 / 1119,
  18478. bottom: 36.5 / 1327.18
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(7, "feet"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18492. {
  18493. looking: {
  18494. height: math.unit(2, "meters"),
  18495. weight: math.unit(300, "kg"),
  18496. name: "Looking",
  18497. image: {
  18498. source: "./media/characters/kash/looking.svg",
  18499. extra: 474 / 344,
  18500. bottom: 0.03
  18501. }
  18502. },
  18503. side: {
  18504. height: math.unit(2, "meters"),
  18505. weight: math.unit(300, "kg"),
  18506. name: "Side",
  18507. image: {
  18508. source: "./media/characters/kash/side.svg",
  18509. extra: 302 / 251,
  18510. bottom: 0.03
  18511. }
  18512. },
  18513. front: {
  18514. height: math.unit(2, "meters"),
  18515. weight: math.unit(300, "kg"),
  18516. name: "Front",
  18517. image: {
  18518. source: "./media/characters/kash/front.svg",
  18519. extra: 495 / 360,
  18520. bottom: 0.015
  18521. }
  18522. },
  18523. },
  18524. [
  18525. {
  18526. name: "Normal",
  18527. height: math.unit(2, "meters"),
  18528. default: true
  18529. },
  18530. {
  18531. name: "Big",
  18532. height: math.unit(3, "meters")
  18533. },
  18534. {
  18535. name: "Large",
  18536. height: math.unit(5, "meters")
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18542. {
  18543. feeding: {
  18544. height: math.unit(6.7, "feet"),
  18545. weight: math.unit(350, "lb"),
  18546. name: "Feeding",
  18547. image: {
  18548. source: "./media/characters/lalim/feeding.svg",
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(6.7, "feet"),
  18556. default: true
  18557. },
  18558. ]
  18559. ))
  18560. characterMakers.push(() => makeCharacter(
  18561. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18562. {
  18563. front: {
  18564. height: math.unit(9.5, "feet"),
  18565. weight: math.unit(600, "lb"),
  18566. name: "Front",
  18567. image: {
  18568. source: "./media/characters/de'vout/front.svg",
  18569. extra: 1443 / 1328,
  18570. bottom: 0.025
  18571. }
  18572. },
  18573. back: {
  18574. height: math.unit(9.5, "feet"),
  18575. weight: math.unit(600, "lb"),
  18576. name: "Back",
  18577. image: {
  18578. source: "./media/characters/de'vout/back.svg",
  18579. extra: 1443 / 1328
  18580. }
  18581. },
  18582. frontDressed: {
  18583. height: math.unit(9.5, "feet"),
  18584. weight: math.unit(600, "lb"),
  18585. name: "Front (Dressed",
  18586. image: {
  18587. source: "./media/characters/de'vout/front-dressed.svg",
  18588. extra: 1443 / 1328,
  18589. bottom: 0.025
  18590. }
  18591. },
  18592. backDressed: {
  18593. height: math.unit(9.5, "feet"),
  18594. weight: math.unit(600, "lb"),
  18595. name: "Back (Dressed",
  18596. image: {
  18597. source: "./media/characters/de'vout/back-dressed.svg",
  18598. extra: 1443 / 1328
  18599. }
  18600. },
  18601. },
  18602. [
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(9.5, "feet"),
  18606. default: true
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18612. {
  18613. front: {
  18614. height: math.unit(8, "feet"),
  18615. weight: math.unit(225, "lb"),
  18616. name: "Front",
  18617. image: {
  18618. source: "./media/characters/talana/front.svg",
  18619. extra: 1410 / 1300,
  18620. bottom: 0.015
  18621. }
  18622. },
  18623. frontDressed: {
  18624. height: math.unit(8, "feet"),
  18625. weight: math.unit(225, "lb"),
  18626. name: "Front (Dressed",
  18627. image: {
  18628. source: "./media/characters/talana/front-dressed.svg",
  18629. extra: 1410 / 1300,
  18630. bottom: 0.015
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Normal",
  18637. height: math.unit(8, "feet"),
  18638. default: true
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18644. {
  18645. side: {
  18646. height: math.unit(7.2, "feet"),
  18647. weight: math.unit(150, "lb"),
  18648. name: "Side",
  18649. image: {
  18650. source: "./media/characters/xeauvok/side.svg",
  18651. extra: 1975 / 1523,
  18652. bottom: 0.07
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Normal",
  18659. height: math.unit(7.2, "feet"),
  18660. default: true
  18661. },
  18662. ]
  18663. ))
  18664. characterMakers.push(() => makeCharacter(
  18665. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18666. {
  18667. side: {
  18668. height: math.unit(10, "feet"),
  18669. weight: math.unit(900, "kg"),
  18670. name: "Side",
  18671. image: {
  18672. source: "./media/characters/zara/side.svg",
  18673. extra: 504 / 498
  18674. }
  18675. },
  18676. },
  18677. [
  18678. {
  18679. name: "Normal",
  18680. height: math.unit(10, "feet"),
  18681. default: true
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18687. {
  18688. side: {
  18689. height: math.unit(6, "feet"),
  18690. weight: math.unit(150, "lb"),
  18691. name: "Side",
  18692. image: {
  18693. source: "./media/characters/richard-dragon/side.svg",
  18694. extra: 845 / 340,
  18695. bottom: 0.017
  18696. }
  18697. },
  18698. maw: {
  18699. height: math.unit(2.97, "feet"),
  18700. name: "Maw",
  18701. image: {
  18702. source: "./media/characters/richard-dragon/maw.svg"
  18703. }
  18704. },
  18705. },
  18706. [
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(4, "feet"),
  18714. weight: math.unit(100, "lb"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/richard-smeargle/front.svg",
  18718. extra: 2952 / 2820,
  18719. bottom: 0.028
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Normal",
  18726. height: math.unit(4, "feet"),
  18727. default: true
  18728. },
  18729. {
  18730. name: "Dynamax",
  18731. height: math.unit(20, "meters")
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18737. {
  18738. front: {
  18739. height: math.unit(6, "feet"),
  18740. weight: math.unit(110, "lb"),
  18741. name: "Front",
  18742. image: {
  18743. source: "./media/characters/klay/front.svg",
  18744. extra: 962 / 883,
  18745. bottom: 0.04
  18746. }
  18747. },
  18748. back: {
  18749. height: math.unit(6, "feet"),
  18750. weight: math.unit(110, "lb"),
  18751. name: "Back",
  18752. image: {
  18753. source: "./media/characters/klay/back.svg",
  18754. extra: 962 / 883
  18755. }
  18756. },
  18757. beans: {
  18758. height: math.unit(1.15, "feet"),
  18759. name: "Beans",
  18760. image: {
  18761. source: "./media/characters/klay/beans.svg"
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Micro",
  18768. height: math.unit(6, "inches")
  18769. },
  18770. {
  18771. name: "Mini",
  18772. height: math.unit(3, "feet")
  18773. },
  18774. {
  18775. name: "Normal",
  18776. height: math.unit(6, "feet"),
  18777. default: true
  18778. },
  18779. {
  18780. name: "Big",
  18781. height: math.unit(25, "feet")
  18782. },
  18783. {
  18784. name: "Macro",
  18785. height: math.unit(100, "feet")
  18786. },
  18787. {
  18788. name: "Megamacro",
  18789. height: math.unit(400, "feet")
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(6, "feet"),
  18798. weight: math.unit(160, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/marcus/front.svg",
  18802. extra: 734 / 676,
  18803. bottom: 0.03
  18804. }
  18805. },
  18806. },
  18807. [
  18808. {
  18809. name: "Little",
  18810. height: math.unit(6, "feet")
  18811. },
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(110, "feet"),
  18815. default: true
  18816. },
  18817. {
  18818. name: "Macro",
  18819. height: math.unit(250, "feet")
  18820. },
  18821. {
  18822. name: "Megamacro",
  18823. height: math.unit(1000, "feet")
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18829. {
  18830. front: {
  18831. height: math.unit(7, "feet"),
  18832. weight: math.unit(275, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/claude-delroute/front.svg",
  18836. extra: 902/827,
  18837. bottom: 26/928
  18838. }
  18839. },
  18840. side: {
  18841. height: math.unit(7, "feet"),
  18842. weight: math.unit(275, "lb"),
  18843. name: "Side",
  18844. image: {
  18845. source: "./media/characters/claude-delroute/side.svg",
  18846. extra: 908/853,
  18847. bottom: 16/924
  18848. }
  18849. },
  18850. back: {
  18851. height: math.unit(7, "feet"),
  18852. weight: math.unit(275, "lb"),
  18853. name: "Back",
  18854. image: {
  18855. source: "./media/characters/claude-delroute/back.svg",
  18856. extra: 911/829,
  18857. bottom: 18/929
  18858. }
  18859. },
  18860. maw: {
  18861. height: math.unit(0.6407, "meters"),
  18862. name: "Maw",
  18863. image: {
  18864. source: "./media/characters/claude-delroute/maw.svg"
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(7, "feet"),
  18872. default: true
  18873. },
  18874. {
  18875. name: "Lorge",
  18876. height: math.unit(20, "feet")
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(8 + 4 / 12, "feet"),
  18885. weight: math.unit(600, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/dragonien/front.svg",
  18889. extra: 100 / 94,
  18890. bottom: 3.3 / 103.3445
  18891. }
  18892. },
  18893. back: {
  18894. height: math.unit(8 + 4 / 12, "feet"),
  18895. weight: math.unit(600, "lb"),
  18896. name: "Back",
  18897. image: {
  18898. source: "./media/characters/dragonien/back.svg",
  18899. extra: 776 / 746,
  18900. bottom: 6.4 / 782.0616
  18901. }
  18902. },
  18903. foot: {
  18904. height: math.unit(1.54, "feet"),
  18905. name: "Foot",
  18906. image: {
  18907. source: "./media/characters/dragonien/foot.svg",
  18908. }
  18909. },
  18910. },
  18911. [
  18912. {
  18913. name: "Normal",
  18914. height: math.unit(8 + 4 / 12, "feet"),
  18915. default: true
  18916. },
  18917. {
  18918. name: "Macro",
  18919. height: math.unit(200, "feet")
  18920. },
  18921. {
  18922. name: "Megamacro",
  18923. height: math.unit(1, "mile")
  18924. },
  18925. {
  18926. name: "Gigamacro",
  18927. height: math.unit(1000, "miles")
  18928. },
  18929. ]
  18930. ))
  18931. characterMakers.push(() => makeCharacter(
  18932. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18933. {
  18934. front: {
  18935. height: math.unit(5 + 2 / 12, "feet"),
  18936. weight: math.unit(110, "lb"),
  18937. name: "Front",
  18938. image: {
  18939. source: "./media/characters/desta/front.svg",
  18940. extra: 767 / 726,
  18941. bottom: 11.7 / 779
  18942. }
  18943. },
  18944. back: {
  18945. height: math.unit(5 + 2 / 12, "feet"),
  18946. weight: math.unit(110, "lb"),
  18947. name: "Back",
  18948. image: {
  18949. source: "./media/characters/desta/back.svg",
  18950. extra: 777 / 728,
  18951. bottom: 6 / 784
  18952. }
  18953. },
  18954. frontAlt: {
  18955. height: math.unit(5 + 2 / 12, "feet"),
  18956. weight: math.unit(110, "lb"),
  18957. name: "Front",
  18958. image: {
  18959. source: "./media/characters/desta/front-alt.svg",
  18960. extra: 1482 / 1417
  18961. }
  18962. },
  18963. side: {
  18964. height: math.unit(5 + 2 / 12, "feet"),
  18965. weight: math.unit(110, "lb"),
  18966. name: "Side",
  18967. image: {
  18968. source: "./media/characters/desta/side.svg",
  18969. extra: 2579 / 2491,
  18970. bottom: 0.053
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Micro",
  18977. height: math.unit(6, "inches")
  18978. },
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(5 + 2 / 12, "feet"),
  18982. default: true
  18983. },
  18984. {
  18985. name: "Macro",
  18986. height: math.unit(62, "feet")
  18987. },
  18988. {
  18989. name: "Megamacro",
  18990. height: math.unit(1800, "feet")
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(10, "feet"),
  18999. weight: math.unit(700, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/storm-alystar/front.svg",
  19003. extra: 2112 / 1898,
  19004. bottom: 0.034
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Micro",
  19011. height: math.unit(3.5, "inches")
  19012. },
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(10, "feet"),
  19016. default: true
  19017. },
  19018. {
  19019. name: "Macro",
  19020. height: math.unit(400, "feet")
  19021. },
  19022. {
  19023. name: "Deific",
  19024. height: math.unit(60, "miles")
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(2.35, "meters"),
  19033. weight: math.unit(119, "kg"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/ilia/front.svg",
  19037. extra: 1285 / 1255,
  19038. bottom: 0.06
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(2.35, "meters")
  19046. },
  19047. {
  19048. name: "Macro",
  19049. height: math.unit(140, "meters"),
  19050. default: true
  19051. },
  19052. {
  19053. name: "Megamacro",
  19054. height: math.unit(100, "miles")
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19060. {
  19061. front: {
  19062. height: math.unit(6 + 5 / 12, "feet"),
  19063. weight: math.unit(190, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/kingdead/front.svg",
  19067. extra: 1228 / 1177
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Micro",
  19074. height: math.unit(7, "inches")
  19075. },
  19076. {
  19077. name: "Normal",
  19078. height: math.unit(6 + 5 / 12, "feet")
  19079. },
  19080. {
  19081. name: "Macro",
  19082. height: math.unit(150, "feet"),
  19083. default: true
  19084. },
  19085. {
  19086. name: "Megamacro",
  19087. height: math.unit(200, "miles")
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(8, "feet"),
  19096. weight: math.unit(600, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/kyrehx/front.svg",
  19100. extra: 1195 / 1095,
  19101. bottom: 0.034
  19102. }
  19103. },
  19104. },
  19105. [
  19106. {
  19107. name: "Micro",
  19108. height: math.unit(2, "inches")
  19109. },
  19110. {
  19111. name: "Normal",
  19112. height: math.unit(8, "feet"),
  19113. default: true
  19114. },
  19115. {
  19116. name: "Macro",
  19117. height: math.unit(255, "feet")
  19118. },
  19119. ]
  19120. ))
  19121. characterMakers.push(() => makeCharacter(
  19122. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19123. {
  19124. front: {
  19125. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19126. weight: math.unit(184, "lb"),
  19127. name: "Front",
  19128. image: {
  19129. source: "./media/characters/xang/front.svg",
  19130. extra: 845 / 755
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19138. default: true
  19139. },
  19140. {
  19141. name: "Macro",
  19142. height: math.unit(0.935 * 146, "feet")
  19143. },
  19144. {
  19145. name: "Megamacro",
  19146. height: math.unit(0.935 * 3, "miles")
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19152. {
  19153. frontDressed: {
  19154. height: math.unit(5 + 7 / 12, "feet"),
  19155. weight: math.unit(140, "lb"),
  19156. name: "Front (Dressed)",
  19157. image: {
  19158. source: "./media/characters/doc-weardno/front-dressed.svg",
  19159. extra: 263 / 234
  19160. }
  19161. },
  19162. backDressed: {
  19163. height: math.unit(5 + 7 / 12, "feet"),
  19164. weight: math.unit(140, "lb"),
  19165. name: "Back (Dressed)",
  19166. image: {
  19167. source: "./media/characters/doc-weardno/back-dressed.svg",
  19168. extra: 266 / 238
  19169. }
  19170. },
  19171. front: {
  19172. height: math.unit(5 + 7 / 12, "feet"),
  19173. weight: math.unit(140, "lb"),
  19174. name: "Front",
  19175. image: {
  19176. source: "./media/characters/doc-weardno/front.svg",
  19177. extra: 254 / 233
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Micro",
  19184. height: math.unit(3, "inches")
  19185. },
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(5 + 7 / 12, "feet"),
  19189. default: true
  19190. },
  19191. {
  19192. name: "Macro",
  19193. height: math.unit(25, "feet")
  19194. },
  19195. {
  19196. name: "Megamacro",
  19197. height: math.unit(2, "miles")
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19203. {
  19204. front: {
  19205. height: math.unit(6 + 2 / 12, "feet"),
  19206. weight: math.unit(153, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/seth-whilst/front.svg",
  19210. bottom: 0.07
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Micro",
  19217. height: math.unit(5, "inches")
  19218. },
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(6 + 2 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(3, "inches"),
  19231. weight: math.unit(8, "grams"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/pocket-jabari/front.svg",
  19235. extra: 1024 / 974,
  19236. bottom: 0.039
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Minimicro",
  19243. height: math.unit(8, "mm")
  19244. },
  19245. {
  19246. name: "Micro",
  19247. height: math.unit(3, "inches"),
  19248. default: true
  19249. },
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(3, "feet")
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19258. {
  19259. frontDressed: {
  19260. height: math.unit(15, "feet"),
  19261. weight: math.unit(3280, "lb"),
  19262. name: "Front (Dressed)",
  19263. image: {
  19264. source: "./media/characters/sapphy/front-dressed.svg",
  19265. extra: 1951/1654,
  19266. bottom: 194/2145
  19267. },
  19268. form: "anthro",
  19269. default: true
  19270. },
  19271. backDressed: {
  19272. height: math.unit(15, "feet"),
  19273. weight: math.unit(3280, "lb"),
  19274. name: "Back (Dressed)",
  19275. image: {
  19276. source: "./media/characters/sapphy/back-dressed.svg",
  19277. extra: 2058/1918,
  19278. bottom: 125/2183
  19279. },
  19280. form: "anthro"
  19281. },
  19282. frontNude: {
  19283. height: math.unit(15, "feet"),
  19284. weight: math.unit(3280, "lb"),
  19285. name: "Front (Nude)",
  19286. image: {
  19287. source: "./media/characters/sapphy/front-nude.svg",
  19288. extra: 1951/1654,
  19289. bottom: 194/2145
  19290. },
  19291. form: "anthro"
  19292. },
  19293. backNude: {
  19294. height: math.unit(15, "feet"),
  19295. weight: math.unit(3280, "lb"),
  19296. name: "Back (Nude)",
  19297. image: {
  19298. source: "./media/characters/sapphy/back-nude.svg",
  19299. extra: 2058/1918,
  19300. bottom: 125/2183
  19301. },
  19302. form: "anthro"
  19303. },
  19304. full: {
  19305. height: math.unit(15, "feet"),
  19306. weight: math.unit(3280, "lb"),
  19307. name: "Full",
  19308. image: {
  19309. source: "./media/characters/sapphy/full.svg",
  19310. extra: 1396/1317,
  19311. bottom: 44/1440
  19312. },
  19313. form: "anthro"
  19314. },
  19315. dick: {
  19316. height: math.unit(3.8, "feet"),
  19317. name: "Dick",
  19318. image: {
  19319. source: "./media/characters/sapphy/dick.svg"
  19320. },
  19321. form: "anthro"
  19322. },
  19323. feral: {
  19324. height: math.unit(35, "feet"),
  19325. weight: math.unit(160, "tons"),
  19326. name: "Feral",
  19327. image: {
  19328. source: "./media/characters/sapphy/feral.svg",
  19329. extra: 1050/573,
  19330. bottom: 60/1110
  19331. },
  19332. form: "feral",
  19333. default: true
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(15, "feet"),
  19340. form: "anthro"
  19341. },
  19342. {
  19343. name: "Casual Macro",
  19344. height: math.unit(120, "feet"),
  19345. form: "anthro"
  19346. },
  19347. {
  19348. name: "Macro",
  19349. height: math.unit(2150, "feet"),
  19350. default: true,
  19351. form: "anthro"
  19352. },
  19353. {
  19354. name: "Megamacro",
  19355. height: math.unit(8, "miles"),
  19356. form: "anthro"
  19357. },
  19358. {
  19359. name: "Galaxy Mom",
  19360. height: math.unit(6, "megalightyears"),
  19361. form: "anthro"
  19362. },
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(35, "feet"),
  19366. form: "feral",
  19367. default: true
  19368. },
  19369. {
  19370. name: "Macro",
  19371. height: math.unit(300, "feet"),
  19372. form: "feral"
  19373. },
  19374. {
  19375. name: "Galaxy Mom",
  19376. height: math.unit(10, "megalightyears"),
  19377. form: "feral"
  19378. },
  19379. ],
  19380. {
  19381. "anthro": {
  19382. name: "Anthro",
  19383. default: true
  19384. },
  19385. "feral": {
  19386. name: "Feral"
  19387. }
  19388. }
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19392. {
  19393. front: {
  19394. height: math.unit(6, "feet"),
  19395. weight: math.unit(170, "lb"),
  19396. name: "Front",
  19397. image: {
  19398. source: "./media/characters/kiro/front.svg",
  19399. extra: 1064 / 1012,
  19400. bottom: 0.052
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Micro",
  19407. height: math.unit(6, "inches")
  19408. },
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(6, "feet"),
  19412. default: true
  19413. },
  19414. {
  19415. name: "Macro",
  19416. height: math.unit(72, "feet")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(5 + 9 / 12, "feet"),
  19425. weight: math.unit(175, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/irishfox/front.svg",
  19429. extra: 1912 / 1680,
  19430. bottom: 0.02
  19431. }
  19432. },
  19433. },
  19434. [
  19435. {
  19436. name: "Nano",
  19437. height: math.unit(1, "mm")
  19438. },
  19439. {
  19440. name: "Micro",
  19441. height: math.unit(2, "inches")
  19442. },
  19443. {
  19444. name: "Normal",
  19445. height: math.unit(5 + 9 / 12, "feet"),
  19446. default: true
  19447. },
  19448. {
  19449. name: "Macro",
  19450. height: math.unit(45, "feet")
  19451. },
  19452. ]
  19453. ))
  19454. characterMakers.push(() => makeCharacter(
  19455. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19456. {
  19457. front: {
  19458. height: math.unit(6 + 1 / 12, "feet"),
  19459. weight: math.unit(75, "lb"),
  19460. name: "Front",
  19461. image: {
  19462. source: "./media/characters/aronai-sieyes/front.svg",
  19463. extra: 1532/1450,
  19464. bottom: 42/1574
  19465. }
  19466. },
  19467. side: {
  19468. height: math.unit(6 + 1 / 12, "feet"),
  19469. weight: math.unit(75, "lb"),
  19470. name: "Side",
  19471. image: {
  19472. source: "./media/characters/aronai-sieyes/side.svg",
  19473. extra: 1422/1365,
  19474. bottom: 148/1570
  19475. }
  19476. },
  19477. back: {
  19478. height: math.unit(6 + 1 / 12, "feet"),
  19479. weight: math.unit(75, "lb"),
  19480. name: "Back",
  19481. image: {
  19482. source: "./media/characters/aronai-sieyes/back.svg",
  19483. extra: 1526/1464,
  19484. bottom: 51/1577
  19485. }
  19486. },
  19487. dressed: {
  19488. height: math.unit(6 + 1 / 12, "feet"),
  19489. weight: math.unit(75, "lb"),
  19490. name: "Dressed",
  19491. image: {
  19492. source: "./media/characters/aronai-sieyes/dressed.svg",
  19493. extra: 1559/1483,
  19494. bottom: 39/1598
  19495. }
  19496. },
  19497. slit: {
  19498. height: math.unit(1.3, "feet"),
  19499. name: "Slit",
  19500. image: {
  19501. source: "./media/characters/aronai-sieyes/slit.svg"
  19502. }
  19503. },
  19504. slitSpread: {
  19505. height: math.unit(0.9, "feet"),
  19506. name: "Slit (Spread)",
  19507. image: {
  19508. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19509. }
  19510. },
  19511. rump: {
  19512. height: math.unit(1.3, "feet"),
  19513. name: "Rump",
  19514. image: {
  19515. source: "./media/characters/aronai-sieyes/rump.svg"
  19516. }
  19517. },
  19518. maw: {
  19519. height: math.unit(1.25, "feet"),
  19520. name: "Maw",
  19521. image: {
  19522. source: "./media/characters/aronai-sieyes/maw.svg"
  19523. }
  19524. },
  19525. feral: {
  19526. height: math.unit(18, "feet"),
  19527. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19528. name: "Feral",
  19529. image: {
  19530. source: "./media/characters/aronai-sieyes/feral.svg",
  19531. extra: 1530 / 1240,
  19532. bottom: 0.035
  19533. }
  19534. },
  19535. },
  19536. [
  19537. {
  19538. name: "Micro",
  19539. height: math.unit(2, "inches")
  19540. },
  19541. {
  19542. name: "Normal",
  19543. height: math.unit(6 + 1 / 12, "feet"),
  19544. default: true
  19545. }
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19550. {
  19551. front: {
  19552. height: math.unit(12, "feet"),
  19553. weight: math.unit(410, "kg"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/xuna/front.svg",
  19557. extra: 2184 / 1980
  19558. }
  19559. },
  19560. side: {
  19561. height: math.unit(12, "feet"),
  19562. weight: math.unit(410, "kg"),
  19563. name: "Side",
  19564. image: {
  19565. source: "./media/characters/xuna/side.svg",
  19566. extra: 2184 / 1980
  19567. }
  19568. },
  19569. back: {
  19570. height: math.unit(12, "feet"),
  19571. weight: math.unit(410, "kg"),
  19572. name: "Back",
  19573. image: {
  19574. source: "./media/characters/xuna/back.svg",
  19575. extra: 2184 / 1980
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Nano glow",
  19582. height: math.unit(10, "nm")
  19583. },
  19584. {
  19585. name: "Micro floof",
  19586. height: math.unit(0.3, "m")
  19587. },
  19588. {
  19589. name: "Huggable softy boi",
  19590. height: math.unit(3.6576, "m"),
  19591. default: true
  19592. },
  19593. {
  19594. name: "Admirable floof",
  19595. height: math.unit(80, "meters")
  19596. },
  19597. {
  19598. name: "Gentle macro",
  19599. height: math.unit(300, "meters")
  19600. },
  19601. {
  19602. name: "Very careful floof",
  19603. height: math.unit(3200, "meters")
  19604. },
  19605. {
  19606. name: "The mega floof",
  19607. height: math.unit(36000, "meters")
  19608. },
  19609. {
  19610. name: "Giga-fur-Wicker",
  19611. height: math.unit(4800000, "meters")
  19612. },
  19613. {
  19614. name: "Licky world",
  19615. height: math.unit(20000000, "meters")
  19616. },
  19617. {
  19618. name: "Floofy cyan sun",
  19619. height: math.unit(1500000000, "meters")
  19620. },
  19621. {
  19622. name: "Milky Wicker",
  19623. height: math.unit(1000000000000000000000, "meters")
  19624. },
  19625. {
  19626. name: "The observing Wicker",
  19627. height: math.unit(999999999999999999999999999, "meters")
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19633. {
  19634. front: {
  19635. height: math.unit(5 + 9 / 12, "feet"),
  19636. weight: math.unit(150, "lb"),
  19637. name: "Front",
  19638. image: {
  19639. source: "./media/characters/arokha-sieyes/front.svg",
  19640. extra: 1425 / 1284,
  19641. bottom: 0.05
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(5 + 9 / 12, "feet")
  19649. },
  19650. {
  19651. name: "Macro",
  19652. height: math.unit(30, "meters"),
  19653. default: true
  19654. },
  19655. ]
  19656. ))
  19657. characterMakers.push(() => makeCharacter(
  19658. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19659. {
  19660. front: {
  19661. height: math.unit(6, "feet"),
  19662. weight: math.unit(180, "lb"),
  19663. name: "Front",
  19664. image: {
  19665. source: "./media/characters/arokh-sieyes/front.svg",
  19666. extra: 1830 / 1769,
  19667. bottom: 0.01
  19668. }
  19669. },
  19670. },
  19671. [
  19672. {
  19673. name: "Normal",
  19674. height: math.unit(6, "feet")
  19675. },
  19676. {
  19677. name: "Macro",
  19678. height: math.unit(30, "meters"),
  19679. default: true
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19685. {
  19686. side: {
  19687. height: math.unit(13 + 1 / 12, "feet"),
  19688. weight: math.unit(8.5, "tonnes"),
  19689. name: "Side",
  19690. image: {
  19691. source: "./media/characters/goldeneye/side.svg",
  19692. extra: 1182 / 778,
  19693. bottom: 0.067
  19694. }
  19695. },
  19696. paw: {
  19697. height: math.unit(3.4, "feet"),
  19698. name: "Paw",
  19699. image: {
  19700. source: "./media/characters/goldeneye/paw.svg"
  19701. }
  19702. },
  19703. },
  19704. [
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(13 + 1 / 12, "feet"),
  19708. default: true
  19709. },
  19710. ]
  19711. ))
  19712. characterMakers.push(() => makeCharacter(
  19713. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19714. {
  19715. front: {
  19716. height: math.unit(6 + 1 / 12, "feet"),
  19717. weight: math.unit(210, "lb"),
  19718. name: "Front",
  19719. image: {
  19720. source: "./media/characters/leonardo-lycheborne/front.svg",
  19721. extra: 776/723,
  19722. bottom: 34/810
  19723. }
  19724. },
  19725. side: {
  19726. height: math.unit(6 + 1 / 12, "feet"),
  19727. weight: math.unit(210, "lb"),
  19728. name: "Side",
  19729. image: {
  19730. source: "./media/characters/leonardo-lycheborne/side.svg",
  19731. extra: 780/728,
  19732. bottom: 12/792
  19733. }
  19734. },
  19735. back: {
  19736. height: math.unit(6 + 1 / 12, "feet"),
  19737. weight: math.unit(210, "lb"),
  19738. name: "Back",
  19739. image: {
  19740. source: "./media/characters/leonardo-lycheborne/back.svg",
  19741. extra: 775/721,
  19742. bottom: 17/792
  19743. }
  19744. },
  19745. hand: {
  19746. height: math.unit(1.08, "feet"),
  19747. name: "Hand",
  19748. image: {
  19749. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19750. }
  19751. },
  19752. foot: {
  19753. height: math.unit(1.32, "feet"),
  19754. name: "Foot",
  19755. image: {
  19756. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19757. }
  19758. },
  19759. maw: {
  19760. height: math.unit(1, "feet"),
  19761. name: "Maw",
  19762. image: {
  19763. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19764. }
  19765. },
  19766. were: {
  19767. height: math.unit(20, "feet"),
  19768. weight: math.unit(7800, "lb"),
  19769. name: "Were",
  19770. image: {
  19771. source: "./media/characters/leonardo-lycheborne/were.svg",
  19772. extra: 1224/1165,
  19773. bottom: 72/1296
  19774. }
  19775. },
  19776. feral: {
  19777. height: math.unit(7.5, "feet"),
  19778. weight: math.unit(600, "lb"),
  19779. name: "Feral",
  19780. image: {
  19781. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19782. extra: 797/702,
  19783. bottom: 139/936
  19784. }
  19785. },
  19786. taur: {
  19787. height: math.unit(11, "feet"),
  19788. weight: math.unit(3300, "lb"),
  19789. name: "Taur",
  19790. image: {
  19791. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19792. extra: 1271/1197,
  19793. bottom: 47/1318
  19794. }
  19795. },
  19796. barghest: {
  19797. height: math.unit(11, "feet"),
  19798. weight: math.unit(1300, "lb"),
  19799. name: "Barghest",
  19800. image: {
  19801. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19802. extra: 1291/1204,
  19803. bottom: 37/1328
  19804. }
  19805. },
  19806. dick: {
  19807. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19808. name: "Dick",
  19809. image: {
  19810. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19811. }
  19812. },
  19813. dickWere: {
  19814. height: math.unit((20) / 3.8, "feet"),
  19815. name: "Dick (Were)",
  19816. image: {
  19817. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(6 + 1 / 12, "feet"),
  19825. default: true
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(10, "feet"),
  19834. weight: math.unit(350, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/jet/front.svg",
  19838. extra: 2050 / 1980,
  19839. bottom: 0.013
  19840. }
  19841. },
  19842. back: {
  19843. height: math.unit(10, "feet"),
  19844. weight: math.unit(350, "lb"),
  19845. name: "Back",
  19846. image: {
  19847. source: "./media/characters/jet/back.svg",
  19848. extra: 2050 / 1980,
  19849. bottom: 0.013
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Micro",
  19856. height: math.unit(6, "inches")
  19857. },
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(10, "feet"),
  19861. default: true
  19862. },
  19863. {
  19864. name: "Macro",
  19865. height: math.unit(100, "feet")
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(15, "feet"),
  19874. weight: math.unit(2800, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/tanarath/front.svg",
  19878. extra: 2392 / 2220,
  19879. bottom: 0.03
  19880. }
  19881. },
  19882. back: {
  19883. height: math.unit(15, "feet"),
  19884. weight: math.unit(2800, "lb"),
  19885. name: "Back",
  19886. image: {
  19887. source: "./media/characters/tanarath/back.svg",
  19888. extra: 2392 / 2220,
  19889. bottom: 0.03
  19890. }
  19891. },
  19892. },
  19893. [
  19894. {
  19895. name: "Normal",
  19896. height: math.unit(15, "feet"),
  19897. default: true
  19898. },
  19899. ]
  19900. ))
  19901. characterMakers.push(() => makeCharacter(
  19902. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19903. {
  19904. front: {
  19905. height: math.unit(7 + 1 / 12, "feet"),
  19906. weight: math.unit(175, "lb"),
  19907. name: "Front",
  19908. image: {
  19909. source: "./media/characters/patty-cattybatty/front.svg",
  19910. extra: 908 / 874,
  19911. bottom: 0.025
  19912. }
  19913. },
  19914. },
  19915. [
  19916. {
  19917. name: "Micro",
  19918. height: math.unit(1, "inch")
  19919. },
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(7 + 1 / 12, "feet")
  19923. },
  19924. {
  19925. name: "Mini Macro",
  19926. height: math.unit(155, "feet")
  19927. },
  19928. {
  19929. name: "Macro",
  19930. height: math.unit(1077, "feet")
  19931. },
  19932. {
  19933. name: "Mega Macro",
  19934. height: math.unit(47650, "feet"),
  19935. default: true
  19936. },
  19937. {
  19938. name: "Giga Macro",
  19939. height: math.unit(440, "miles")
  19940. },
  19941. {
  19942. name: "Tera Macro",
  19943. height: math.unit(8700, "miles")
  19944. },
  19945. {
  19946. name: "Planetary Macro",
  19947. height: math.unit(32700, "miles")
  19948. },
  19949. {
  19950. name: "Solar Macro",
  19951. height: math.unit(550000, "miles")
  19952. },
  19953. {
  19954. name: "Celestial Macro",
  19955. height: math.unit(2.5, "AU")
  19956. },
  19957. ]
  19958. ))
  19959. characterMakers.push(() => makeCharacter(
  19960. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19961. {
  19962. front: {
  19963. height: math.unit(4 + 5 / 12, "feet"),
  19964. weight: math.unit(90, "lb"),
  19965. name: "Front",
  19966. image: {
  19967. source: "./media/characters/cappu/front.svg",
  19968. extra: 1247 / 1152,
  19969. bottom: 0.012
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(4 + 5 / 12, "feet"),
  19977. default: true
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19983. {
  19984. frontDressed: {
  19985. height: math.unit(70, "cm"),
  19986. weight: math.unit(6, "kg"),
  19987. name: "Front (Dressed)",
  19988. image: {
  19989. source: "./media/characters/sebi/front-dressed.svg",
  19990. extra: 713.5 / 686.5,
  19991. bottom: 0.003
  19992. }
  19993. },
  19994. front: {
  19995. height: math.unit(70, "cm"),
  19996. weight: math.unit(5, "kg"),
  19997. name: "Front",
  19998. image: {
  19999. source: "./media/characters/sebi/front.svg",
  20000. extra: 713.5 / 686.5,
  20001. bottom: 0.003
  20002. }
  20003. }
  20004. },
  20005. [
  20006. {
  20007. name: "Normal",
  20008. height: math.unit(70, "cm"),
  20009. default: true
  20010. },
  20011. {
  20012. name: "Macro",
  20013. height: math.unit(8, "meters")
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20019. {
  20020. front: {
  20021. height: math.unit(6, "feet"),
  20022. weight: math.unit(150, "lb"),
  20023. name: "Front",
  20024. image: {
  20025. source: "./media/characters/typhek/front.svg",
  20026. extra: 1948 / 1929,
  20027. bottom: 0.025
  20028. }
  20029. },
  20030. side: {
  20031. height: math.unit(6, "feet"),
  20032. weight: math.unit(150, "lb"),
  20033. name: "Side",
  20034. image: {
  20035. source: "./media/characters/typhek/side.svg",
  20036. extra: 2034 / 2010,
  20037. bottom: 0.003
  20038. }
  20039. },
  20040. back: {
  20041. height: math.unit(6, "feet"),
  20042. weight: math.unit(150, "lb"),
  20043. name: "Back",
  20044. image: {
  20045. source: "./media/characters/typhek/back.svg",
  20046. extra: 2005 / 1978,
  20047. bottom: 0.004
  20048. }
  20049. },
  20050. palm: {
  20051. height: math.unit(1.2, "feet"),
  20052. name: "Palm",
  20053. image: {
  20054. source: "./media/characters/typhek/palm.svg"
  20055. }
  20056. },
  20057. fist: {
  20058. height: math.unit(1.1, "feet"),
  20059. name: "Fist",
  20060. image: {
  20061. source: "./media/characters/typhek/fist.svg"
  20062. }
  20063. },
  20064. foot: {
  20065. height: math.unit(1.57, "feet"),
  20066. name: "Foot",
  20067. image: {
  20068. source: "./media/characters/typhek/foot.svg"
  20069. }
  20070. },
  20071. sole: {
  20072. height: math.unit(2.05, "feet"),
  20073. name: "Sole",
  20074. image: {
  20075. source: "./media/characters/typhek/sole.svg"
  20076. }
  20077. },
  20078. },
  20079. [
  20080. {
  20081. name: "Macro",
  20082. height: math.unit(40, "stories"),
  20083. default: true
  20084. },
  20085. {
  20086. name: "Megamacro",
  20087. height: math.unit(1, "mile")
  20088. },
  20089. {
  20090. name: "Gigamacro",
  20091. height: math.unit(4000, "solarradii")
  20092. },
  20093. {
  20094. name: "Universal",
  20095. height: math.unit(1.1, "universes")
  20096. }
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20101. {
  20102. side: {
  20103. height: math.unit(5 + 7 / 12, "feet"),
  20104. weight: math.unit(150, "lb"),
  20105. name: "Side",
  20106. image: {
  20107. source: "./media/characters/kassy/side.svg",
  20108. extra: 1280 / 1225,
  20109. bottom: 0.002
  20110. }
  20111. },
  20112. front: {
  20113. height: math.unit(5 + 7 / 12, "feet"),
  20114. weight: math.unit(150, "lb"),
  20115. name: "Front",
  20116. image: {
  20117. source: "./media/characters/kassy/front.svg",
  20118. extra: 1280 / 1225,
  20119. bottom: 0.025
  20120. }
  20121. },
  20122. back: {
  20123. height: math.unit(5 + 7 / 12, "feet"),
  20124. weight: math.unit(150, "lb"),
  20125. name: "Back",
  20126. image: {
  20127. source: "./media/characters/kassy/back.svg",
  20128. extra: 1280 / 1225,
  20129. bottom: 0.002
  20130. }
  20131. },
  20132. foot: {
  20133. height: math.unit(1.266, "feet"),
  20134. name: "Foot",
  20135. image: {
  20136. source: "./media/characters/kassy/foot.svg"
  20137. }
  20138. },
  20139. },
  20140. [
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(5 + 7 / 12, "feet")
  20144. },
  20145. {
  20146. name: "Macro",
  20147. height: math.unit(137, "feet"),
  20148. default: true
  20149. },
  20150. {
  20151. name: "Megamacro",
  20152. height: math.unit(1, "mile")
  20153. },
  20154. ]
  20155. ))
  20156. characterMakers.push(() => makeCharacter(
  20157. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20158. {
  20159. front: {
  20160. height: math.unit(6 + 1 / 12, "feet"),
  20161. weight: math.unit(200, "lb"),
  20162. name: "Front",
  20163. image: {
  20164. source: "./media/characters/neil/front.svg",
  20165. extra: 1326 / 1250,
  20166. bottom: 0.023
  20167. }
  20168. },
  20169. },
  20170. [
  20171. {
  20172. name: "Normal",
  20173. height: math.unit(6 + 1 / 12, "feet"),
  20174. default: true
  20175. },
  20176. {
  20177. name: "Macro",
  20178. height: math.unit(200, "feet")
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(5 + 9 / 12, "feet"),
  20187. weight: math.unit(190, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/atticus/front.svg",
  20191. extra: 2934 / 2785,
  20192. bottom: 0.025
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(5 + 9 / 12, "feet"),
  20200. default: true
  20201. },
  20202. {
  20203. name: "Macro",
  20204. height: math.unit(180, "feet")
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20210. {
  20211. side: {
  20212. height: math.unit(9, "feet"),
  20213. weight: math.unit(650, "lb"),
  20214. name: "Side",
  20215. image: {
  20216. source: "./media/characters/milo/side.svg",
  20217. extra: 2644 / 2310,
  20218. bottom: 0.032
  20219. }
  20220. },
  20221. },
  20222. [
  20223. {
  20224. name: "Normal",
  20225. height: math.unit(9, "feet"),
  20226. default: true
  20227. },
  20228. {
  20229. name: "Macro",
  20230. height: math.unit(300, "feet")
  20231. },
  20232. ]
  20233. ))
  20234. characterMakers.push(() => makeCharacter(
  20235. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20236. {
  20237. side: {
  20238. height: math.unit(8, "meters"),
  20239. weight: math.unit(90000, "kg"),
  20240. name: "Side",
  20241. image: {
  20242. source: "./media/characters/ijzer/side.svg",
  20243. extra: 2756 / 1600,
  20244. bottom: 0.01
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Small",
  20251. height: math.unit(3, "meters")
  20252. },
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(8, "meters"),
  20256. default: true
  20257. },
  20258. {
  20259. name: "Normal+",
  20260. height: math.unit(10, "meters")
  20261. },
  20262. {
  20263. name: "Bigger",
  20264. height: math.unit(24, "meters")
  20265. },
  20266. {
  20267. name: "Huge",
  20268. height: math.unit(80, "meters")
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20274. {
  20275. front: {
  20276. height: math.unit(6 + 2 / 12, "feet"),
  20277. weight: math.unit(153, "lb"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/luca-cervicum/front.svg",
  20281. extra: 370 / 327,
  20282. bottom: 0.015
  20283. }
  20284. },
  20285. back: {
  20286. height: math.unit(6 + 2 / 12, "feet"),
  20287. weight: math.unit(153, "lb"),
  20288. name: "Back",
  20289. image: {
  20290. source: "./media/characters/luca-cervicum/back.svg",
  20291. extra: 367 / 333,
  20292. bottom: 0.005
  20293. }
  20294. },
  20295. frontGear: {
  20296. height: math.unit(6 + 2 / 12, "feet"),
  20297. weight: math.unit(173, "lb"),
  20298. name: "Front (Gear)",
  20299. image: {
  20300. source: "./media/characters/luca-cervicum/front-gear.svg",
  20301. extra: 377 / 333,
  20302. bottom: 0.006
  20303. }
  20304. },
  20305. },
  20306. [
  20307. {
  20308. name: "Normal",
  20309. height: math.unit(6 + 2 / 12, "feet"),
  20310. default: true
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(6 + 1 / 12, "feet"),
  20319. weight: math.unit(304, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/oliver/front.svg",
  20323. extra: 157 / 143,
  20324. bottom: 0.08
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(6 + 1 / 12, "feet"),
  20332. default: true
  20333. },
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20338. {
  20339. front: {
  20340. height: math.unit(5 + 7 / 12, "feet"),
  20341. weight: math.unit(140, "lb"),
  20342. name: "Front",
  20343. image: {
  20344. source: "./media/characters/shane/front.svg",
  20345. extra: 304 / 289,
  20346. bottom: 0.005
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(5 + 7 / 12, "feet"),
  20354. default: true
  20355. },
  20356. ]
  20357. ))
  20358. characterMakers.push(() => makeCharacter(
  20359. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20360. {
  20361. front: {
  20362. height: math.unit(5 + 9 / 12, "feet"),
  20363. weight: math.unit(178, "lb"),
  20364. name: "Front",
  20365. image: {
  20366. source: "./media/characters/shin/front.svg",
  20367. extra: 159 / 151,
  20368. bottom: 0.015
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(5 + 9 / 12, "feet"),
  20376. default: true
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20382. {
  20383. front: {
  20384. height: math.unit(5 + 10 / 12, "feet"),
  20385. weight: math.unit(168, "lb"),
  20386. name: "Front",
  20387. image: {
  20388. source: "./media/characters/xerxes/front.svg",
  20389. extra: 282 / 260,
  20390. bottom: 0.045
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(5 + 10 / 12, "feet"),
  20398. default: true
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(6 + 7 / 12, "feet"),
  20407. weight: math.unit(208, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/chaska/front.svg",
  20411. extra: 332 / 319,
  20412. bottom: 0.015
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(6 + 7 / 12, "feet"),
  20420. default: true
  20421. },
  20422. ]
  20423. ))
  20424. characterMakers.push(() => makeCharacter(
  20425. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20426. {
  20427. front: {
  20428. height: math.unit(5 + 8 / 12, "feet"),
  20429. weight: math.unit(208, "lb"),
  20430. name: "Front",
  20431. image: {
  20432. source: "./media/characters/enuk/front.svg",
  20433. extra: 437 / 406,
  20434. bottom: 0.02
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(5 + 8 / 12, "feet"),
  20442. default: true
  20443. },
  20444. ]
  20445. ))
  20446. characterMakers.push(() => makeCharacter(
  20447. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20448. {
  20449. front: {
  20450. height: math.unit(5 + 10 / 12, "feet"),
  20451. weight: math.unit(252, "lb"),
  20452. name: "Front",
  20453. image: {
  20454. source: "./media/characters/bruun/front.svg",
  20455. extra: 197 / 187,
  20456. bottom: 0.012
  20457. }
  20458. },
  20459. },
  20460. [
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(5 + 10 / 12, "feet"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20470. {
  20471. front: {
  20472. height: math.unit(6 + 10 / 12, "feet"),
  20473. weight: math.unit(255, "lb"),
  20474. name: "Front",
  20475. image: {
  20476. source: "./media/characters/alexeev/front.svg",
  20477. extra: 213 / 200,
  20478. bottom: 0.05
  20479. }
  20480. },
  20481. },
  20482. [
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(6 + 10 / 12, "feet"),
  20486. default: true
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20492. {
  20493. front: {
  20494. height: math.unit(2 + 8 / 12, "feet"),
  20495. weight: math.unit(22, "lb"),
  20496. name: "Front",
  20497. image: {
  20498. source: "./media/characters/evelyn/front.svg",
  20499. extra: 208 / 180
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(2 + 8 / 12, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(5 + 9 / 12, "feet"),
  20516. weight: math.unit(139, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/inca/front.svg",
  20520. extra: 294 / 291,
  20521. bottom: 0.03
  20522. }
  20523. },
  20524. },
  20525. [
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(5 + 9 / 12, "feet"),
  20529. default: true
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20535. {
  20536. front: {
  20537. height: math.unit(6 + 3 / 12, "feet"),
  20538. weight: math.unit(185, "lb"),
  20539. name: "Front",
  20540. image: {
  20541. source: "./media/characters/mera/front.svg",
  20542. extra: 291 / 277,
  20543. bottom: 0.03
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(6 + 3 / 12, "feet"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(6 + 7 / 12, "feet"),
  20560. weight: math.unit(160, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/ceres/front.svg",
  20564. extra: 1023 / 950,
  20565. bottom: 0.027
  20566. }
  20567. },
  20568. back: {
  20569. height: math.unit(6 + 7 / 12, "feet"),
  20570. weight: math.unit(160, "lb"),
  20571. name: "Back",
  20572. image: {
  20573. source: "./media/characters/ceres/back.svg",
  20574. extra: 1023 / 950
  20575. }
  20576. },
  20577. },
  20578. [
  20579. {
  20580. name: "Normal",
  20581. height: math.unit(6 + 7 / 12, "feet"),
  20582. default: true
  20583. },
  20584. ]
  20585. ))
  20586. characterMakers.push(() => makeCharacter(
  20587. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20588. {
  20589. front: {
  20590. height: math.unit(5 + 10 / 12, "feet"),
  20591. weight: math.unit(150, "lb"),
  20592. name: "Front",
  20593. image: {
  20594. source: "./media/characters/kris/front.svg",
  20595. extra: 885 / 803,
  20596. bottom: 0.03
  20597. }
  20598. },
  20599. },
  20600. [
  20601. {
  20602. name: "Normal",
  20603. height: math.unit(5 + 10 / 12, "feet"),
  20604. default: true
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20610. {
  20611. front: {
  20612. height: math.unit(7, "feet"),
  20613. weight: math.unit(120, "kg"),
  20614. name: "Front",
  20615. image: {
  20616. source: "./media/characters/taluthus/front.svg",
  20617. extra: 903 / 833,
  20618. bottom: 0.015
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Normal",
  20625. height: math.unit(7, "feet"),
  20626. default: true
  20627. },
  20628. {
  20629. name: "Macro",
  20630. height: math.unit(300, "feet")
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20636. {
  20637. front: {
  20638. height: math.unit(5 + 9 / 12, "feet"),
  20639. weight: math.unit(145, "lb"),
  20640. name: "Front",
  20641. image: {
  20642. source: "./media/characters/dawn/front.svg",
  20643. extra: 2094 / 2016,
  20644. bottom: 0.025
  20645. }
  20646. },
  20647. back: {
  20648. height: math.unit(5 + 9 / 12, "feet"),
  20649. weight: math.unit(160, "lb"),
  20650. name: "Back",
  20651. image: {
  20652. source: "./media/characters/dawn/back.svg",
  20653. extra: 2112 / 2080,
  20654. bottom: 0.005
  20655. }
  20656. },
  20657. },
  20658. [
  20659. {
  20660. name: "Normal",
  20661. height: math.unit(6 + 7 / 12, "feet"),
  20662. default: true
  20663. },
  20664. ]
  20665. ))
  20666. characterMakers.push(() => makeCharacter(
  20667. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20668. {
  20669. anthro: {
  20670. height: math.unit(8 + 3 / 12, "feet"),
  20671. weight: math.unit(450, "lb"),
  20672. name: "Anthro",
  20673. image: {
  20674. source: "./media/characters/arador/anthro.svg",
  20675. extra: 1835 / 1718,
  20676. bottom: 0.025
  20677. }
  20678. },
  20679. feral: {
  20680. height: math.unit(4, "feet"),
  20681. weight: math.unit(200, "lb"),
  20682. name: "Feral",
  20683. image: {
  20684. source: "./media/characters/arador/feral.svg",
  20685. extra: 1683 / 1514,
  20686. bottom: 0.07
  20687. }
  20688. },
  20689. },
  20690. [
  20691. {
  20692. name: "Normal",
  20693. height: math.unit(8 + 3 / 12, "feet")
  20694. },
  20695. {
  20696. name: "Macro",
  20697. height: math.unit(82.5, "feet"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(5 + 10 / 12, "feet"),
  20707. weight: math.unit(125, "lb"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/dharsi/front.svg",
  20711. extra: 716 / 630,
  20712. bottom: 0.035
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Nano",
  20719. height: math.unit(100, "nm")
  20720. },
  20721. {
  20722. name: "Micro",
  20723. height: math.unit(2, "inches")
  20724. },
  20725. {
  20726. name: "Normal",
  20727. height: math.unit(5 + 10 / 12, "feet"),
  20728. default: true
  20729. },
  20730. {
  20731. name: "Macro",
  20732. height: math.unit(1000, "feet")
  20733. },
  20734. {
  20735. name: "Megamacro",
  20736. height: math.unit(10, "miles")
  20737. },
  20738. {
  20739. name: "Gigamacro",
  20740. height: math.unit(3000, "miles")
  20741. },
  20742. {
  20743. name: "Teramacro",
  20744. height: math.unit(500000, "miles")
  20745. },
  20746. {
  20747. name: "Teramacro+",
  20748. height: math.unit(30, "galaxies")
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20754. {
  20755. front: {
  20756. height: math.unit(6, "feet"),
  20757. weight: math.unit(150, "lb"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/deathy/front.svg",
  20761. extra: 1552 / 1463,
  20762. bottom: 0.025
  20763. }
  20764. },
  20765. side: {
  20766. height: math.unit(6, "feet"),
  20767. weight: math.unit(150, "lb"),
  20768. name: "Side",
  20769. image: {
  20770. source: "./media/characters/deathy/side.svg",
  20771. extra: 1604 / 1455,
  20772. bottom: 0.025
  20773. }
  20774. },
  20775. back: {
  20776. height: math.unit(6, "feet"),
  20777. weight: math.unit(150, "lb"),
  20778. name: "Back",
  20779. image: {
  20780. source: "./media/characters/deathy/back.svg",
  20781. extra: 1580 / 1463,
  20782. bottom: 0.005
  20783. }
  20784. },
  20785. },
  20786. [
  20787. {
  20788. name: "Micro",
  20789. height: math.unit(5, "millimeters")
  20790. },
  20791. {
  20792. name: "Normal",
  20793. height: math.unit(6 + 5 / 12, "feet"),
  20794. default: true
  20795. },
  20796. ]
  20797. ))
  20798. characterMakers.push(() => makeCharacter(
  20799. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20800. {
  20801. front: {
  20802. height: math.unit(16, "feet"),
  20803. weight: math.unit(4000, "lb"),
  20804. name: "Front",
  20805. image: {
  20806. source: "./media/characters/juniper/front.svg",
  20807. bottom: 0.04
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "Normal",
  20814. height: math.unit(16, "feet"),
  20815. default: true
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20821. {
  20822. front: {
  20823. height: math.unit(6, "feet"),
  20824. weight: math.unit(150, "lb"),
  20825. name: "Front",
  20826. image: {
  20827. source: "./media/characters/hipster/front.svg",
  20828. extra: 1312 / 1209,
  20829. bottom: 0.025
  20830. }
  20831. },
  20832. back: {
  20833. height: math.unit(6, "feet"),
  20834. weight: math.unit(150, "lb"),
  20835. name: "Back",
  20836. image: {
  20837. source: "./media/characters/hipster/back.svg",
  20838. extra: 1281 / 1196,
  20839. bottom: 0.01
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Micro",
  20846. height: math.unit(1, "mm")
  20847. },
  20848. {
  20849. name: "Normal",
  20850. height: math.unit(4, "inches"),
  20851. default: true
  20852. },
  20853. {
  20854. name: "Macro",
  20855. height: math.unit(500, "feet")
  20856. },
  20857. {
  20858. name: "Megamacro",
  20859. height: math.unit(1000, "miles")
  20860. },
  20861. ]
  20862. ))
  20863. characterMakers.push(() => makeCharacter(
  20864. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20865. {
  20866. front: {
  20867. height: math.unit(6, "feet"),
  20868. weight: math.unit(150, "lb"),
  20869. name: "Front",
  20870. image: {
  20871. source: "./media/characters/tendirmuldr/front.svg",
  20872. extra: 1878 / 1772,
  20873. bottom: 0.015
  20874. }
  20875. },
  20876. },
  20877. [
  20878. {
  20879. name: "Megamacro",
  20880. height: math.unit(1500, "miles"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20887. {
  20888. front: {
  20889. height: math.unit(14, "feet"),
  20890. weight: math.unit(12000, "lb"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/mort/front.svg",
  20894. extra: 365 / 318,
  20895. bottom: 0.01
  20896. }
  20897. },
  20898. side: {
  20899. height: math.unit(14, "feet"),
  20900. weight: math.unit(12000, "lb"),
  20901. name: "Side",
  20902. image: {
  20903. source: "./media/characters/mort/side.svg",
  20904. extra: 365 / 318,
  20905. bottom: 0.052
  20906. },
  20907. default: true
  20908. },
  20909. back: {
  20910. height: math.unit(14, "feet"),
  20911. weight: math.unit(12000, "lb"),
  20912. name: "Back",
  20913. image: {
  20914. source: "./media/characters/mort/back.svg",
  20915. extra: 371 / 332,
  20916. bottom: 0.18
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(14, "feet"),
  20924. default: true
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20930. {
  20931. front: {
  20932. height: math.unit(8, "feet"),
  20933. weight: math.unit(1, "ton"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/lycoa/front.svg",
  20937. extra: 1836/1728,
  20938. bottom: 81/1917
  20939. }
  20940. },
  20941. back: {
  20942. height: math.unit(8, "feet"),
  20943. weight: math.unit(1, "ton"),
  20944. name: "Back",
  20945. image: {
  20946. source: "./media/characters/lycoa/back.svg",
  20947. extra: 1785/1720,
  20948. bottom: 91/1876
  20949. }
  20950. },
  20951. head: {
  20952. height: math.unit(1.6243, "feet"),
  20953. name: "Head",
  20954. image: {
  20955. source: "./media/characters/lycoa/head.svg",
  20956. extra: 1011/782,
  20957. bottom: 0/1011
  20958. }
  20959. },
  20960. tailmaw: {
  20961. height: math.unit(1.9, "feet"),
  20962. name: "Tailmaw",
  20963. image: {
  20964. source: "./media/characters/lycoa/tailmaw.svg"
  20965. }
  20966. },
  20967. tentacles: {
  20968. height: math.unit(2.1, "feet"),
  20969. name: "Tentacles",
  20970. image: {
  20971. source: "./media/characters/lycoa/tentacles.svg"
  20972. }
  20973. },
  20974. dick: {
  20975. height: math.unit(1.73, "feet"),
  20976. name: "Dick",
  20977. image: {
  20978. source: "./media/characters/lycoa/dick.svg"
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(8, "feet"),
  20986. default: true
  20987. },
  20988. {
  20989. name: "Macro",
  20990. height: math.unit(30, "feet")
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20996. {
  20997. front: {
  20998. height: math.unit(4 + 2 / 12, "feet"),
  20999. weight: math.unit(70, "lb"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/naldara/front.svg",
  21003. extra: 1664/1387,
  21004. bottom: 81/1745
  21005. },
  21006. form: "anthro",
  21007. default: true
  21008. },
  21009. naga: {
  21010. height: math.unit(20, "feet"),
  21011. weight: math.unit(15000, "kg"),
  21012. name: "Front",
  21013. image: {
  21014. source: "./media/characters/naldara/naga.svg",
  21015. extra: 1590/1396,
  21016. bottom: 285/1875
  21017. },
  21018. form: "naga",
  21019. default: true
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(4 + 2 / 12, "feet"),
  21026. form: "anthro",
  21027. default: true
  21028. },
  21029. {
  21030. name: "Normal",
  21031. height: math.unit(20, "feet"),
  21032. form: "naga",
  21033. default: true
  21034. },
  21035. ],
  21036. {
  21037. "anthro": {
  21038. name: "Anthro",
  21039. default: true
  21040. },
  21041. "naga": {
  21042. name: "Naga"
  21043. }
  21044. }
  21045. ))
  21046. characterMakers.push(() => makeCharacter(
  21047. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21048. {
  21049. front: {
  21050. height: math.unit(13 + 7 / 12, "feet"),
  21051. weight: math.unit(1500, "lb"),
  21052. name: "Front",
  21053. image: {
  21054. source: "./media/characters/briar/front.svg",
  21055. extra: 1223/1157,
  21056. bottom: 123/1346
  21057. }
  21058. },
  21059. },
  21060. [
  21061. {
  21062. name: "Normal",
  21063. height: math.unit(13 + 7 / 12, "feet"),
  21064. default: true
  21065. },
  21066. ]
  21067. ))
  21068. characterMakers.push(() => makeCharacter(
  21069. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21070. {
  21071. side: {
  21072. height: math.unit(16, "feet"),
  21073. weight: math.unit(500, "lb"),
  21074. name: "Side",
  21075. image: {
  21076. source: "./media/characters/vanguard/side.svg",
  21077. extra: 1022/914,
  21078. bottom: 30/1052
  21079. }
  21080. },
  21081. sideAlt: {
  21082. height: math.unit(10, "feet"),
  21083. weight: math.unit(500, "lb"),
  21084. name: "Side (Alt)",
  21085. image: {
  21086. source: "./media/characters/vanguard/side-alt.svg",
  21087. extra: 502 / 425,
  21088. bottom: 0.087
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Normal",
  21095. height: math.unit(17.71, "feet"),
  21096. default: true
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21102. {
  21103. front: {
  21104. height: math.unit(7.5, "feet"),
  21105. weight: math.unit(2, "lb"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/artemis/work-safe-front.svg",
  21109. extra: 1192 / 1075,
  21110. bottom: 0.07
  21111. },
  21112. form: "work-safe",
  21113. default: true
  21114. },
  21115. frontNsfw: {
  21116. height: math.unit(7.5, "feet"),
  21117. weight: math.unit(2, "lb"),
  21118. name: "Front",
  21119. image: {
  21120. source: "./media/characters/artemis/calibrating-front.svg",
  21121. extra: 1192 / 1075,
  21122. bottom: 0.07
  21123. },
  21124. form: "calibrating",
  21125. default: true
  21126. },
  21127. frontNsfwer: {
  21128. height: math.unit(7.5, "feet"),
  21129. weight: math.unit(2, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/artemis/oversize-load-front.svg",
  21133. extra: 1192 / 1075,
  21134. bottom: 0.07
  21135. },
  21136. form: "oversize-load",
  21137. default: true
  21138. },
  21139. side: {
  21140. height: math.unit(7.5, "feet"),
  21141. weight: math.unit(2, "lb"),
  21142. name: "Side",
  21143. image: {
  21144. source: "./media/characters/artemis/work-safe-side.svg",
  21145. extra: 1192 / 1075,
  21146. bottom: 0.07
  21147. },
  21148. form: "work-safe"
  21149. },
  21150. sideNsfw: {
  21151. height: math.unit(7.5, "feet"),
  21152. weight: math.unit(2, "lb"),
  21153. name: "Side",
  21154. image: {
  21155. source: "./media/characters/artemis/calibrating-side.svg",
  21156. extra: 1192 / 1075,
  21157. bottom: 0.07
  21158. },
  21159. form: "calibrating"
  21160. },
  21161. sideNsfwer: {
  21162. height: math.unit(7.5, "feet"),
  21163. weight: math.unit(2, "lb"),
  21164. name: "Side",
  21165. image: {
  21166. source: "./media/characters/artemis/oversize-load-side.svg",
  21167. extra: 1192 / 1075,
  21168. bottom: 0.07
  21169. },
  21170. form: "oversize-load"
  21171. },
  21172. maw: {
  21173. height: math.unit(1.1, "feet"),
  21174. name: "Maw",
  21175. image: {
  21176. source: "./media/characters/artemis/maw.svg"
  21177. },
  21178. form: "work-safe"
  21179. },
  21180. stomach: {
  21181. height: math.unit(0.95, "feet"),
  21182. name: "Stomach",
  21183. image: {
  21184. source: "./media/characters/artemis/stomach.svg"
  21185. },
  21186. form: "work-safe"
  21187. },
  21188. dickCanine: {
  21189. height: math.unit(1, "feet"),
  21190. name: "Dick (Canine)",
  21191. image: {
  21192. source: "./media/characters/artemis/dick-canine.svg"
  21193. },
  21194. form: "calibrating"
  21195. },
  21196. dickEquine: {
  21197. height: math.unit(0.85, "feet"),
  21198. name: "Dick (Equine)",
  21199. image: {
  21200. source: "./media/characters/artemis/dick-equine.svg"
  21201. },
  21202. form: "calibrating"
  21203. },
  21204. dickExotic: {
  21205. height: math.unit(0.85, "feet"),
  21206. name: "Dick (Exotic)",
  21207. image: {
  21208. source: "./media/characters/artemis/dick-exotic.svg"
  21209. },
  21210. form: "calibrating"
  21211. },
  21212. dickCanineBigger: {
  21213. height: math.unit(1 * 1.33, "feet"),
  21214. name: "Dick (Canine)",
  21215. image: {
  21216. source: "./media/characters/artemis/dick-canine.svg"
  21217. },
  21218. form: "oversize-load"
  21219. },
  21220. dickEquineBigger: {
  21221. height: math.unit(0.85 * 1.33, "feet"),
  21222. name: "Dick (Equine)",
  21223. image: {
  21224. source: "./media/characters/artemis/dick-equine.svg"
  21225. },
  21226. form: "oversize-load"
  21227. },
  21228. dickExoticBigger: {
  21229. height: math.unit(0.85 * 1.33, "feet"),
  21230. name: "Dick (Exotic)",
  21231. image: {
  21232. source: "./media/characters/artemis/dick-exotic.svg"
  21233. },
  21234. form: "oversize-load"
  21235. },
  21236. },
  21237. [
  21238. {
  21239. name: "Normal",
  21240. height: math.unit(7.5, "feet"),
  21241. form: "work-safe",
  21242. default: true
  21243. },
  21244. {
  21245. name: "Normal",
  21246. height: math.unit(7.5, "feet"),
  21247. form: "calibrating",
  21248. default: true
  21249. },
  21250. {
  21251. name: "Normal",
  21252. height: math.unit(7.5, "feet"),
  21253. form: "oversize-load",
  21254. default: true
  21255. },
  21256. {
  21257. name: "Enlarged",
  21258. height: math.unit(12, "feet"),
  21259. form: "work-safe",
  21260. },
  21261. {
  21262. name: "Enlarged",
  21263. height: math.unit(12, "feet"),
  21264. form: "calibrating",
  21265. },
  21266. {
  21267. name: "Enlarged",
  21268. height: math.unit(12, "feet"),
  21269. form: "oversize-load",
  21270. },
  21271. ],
  21272. {
  21273. "work-safe": {
  21274. name: "Work-Safe",
  21275. default: true
  21276. },
  21277. "calibrating": {
  21278. name: "Calibrating"
  21279. },
  21280. "oversize-load": {
  21281. name: "Oversize Load"
  21282. }
  21283. }
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21287. {
  21288. front: {
  21289. height: math.unit(5 + 3 / 12, "feet"),
  21290. weight: math.unit(160, "lb"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/kira/front.svg",
  21294. extra: 906 / 786,
  21295. bottom: 0.01
  21296. }
  21297. },
  21298. back: {
  21299. height: math.unit(5 + 3 / 12, "feet"),
  21300. weight: math.unit(160, "lb"),
  21301. name: "Back",
  21302. image: {
  21303. source: "./media/characters/kira/back.svg",
  21304. extra: 882 / 757,
  21305. bottom: 0.005
  21306. }
  21307. },
  21308. frontDressed: {
  21309. height: math.unit(5 + 3 / 12, "feet"),
  21310. weight: math.unit(160, "lb"),
  21311. name: "Front (Dressed)",
  21312. image: {
  21313. source: "./media/characters/kira/front-dressed.svg",
  21314. extra: 906 / 786,
  21315. bottom: 0.01
  21316. }
  21317. },
  21318. beans: {
  21319. height: math.unit(0.92, "feet"),
  21320. name: "Beans",
  21321. image: {
  21322. source: "./media/characters/kira/beans.svg"
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Normal",
  21329. height: math.unit(5 + 3 / 12, "feet"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21336. {
  21337. front: {
  21338. height: math.unit(5 + 4 / 12, "feet"),
  21339. weight: math.unit(145, "lb"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/scramble/front.svg",
  21343. extra: 763 / 727,
  21344. bottom: 0.05
  21345. }
  21346. },
  21347. back: {
  21348. height: math.unit(5 + 4 / 12, "feet"),
  21349. weight: math.unit(145, "lb"),
  21350. name: "Back",
  21351. image: {
  21352. source: "./media/characters/scramble/back.svg",
  21353. extra: 826 / 737,
  21354. bottom: 0.002
  21355. }
  21356. },
  21357. },
  21358. [
  21359. {
  21360. name: "Normal",
  21361. height: math.unit(5 + 4 / 12, "feet"),
  21362. default: true
  21363. },
  21364. ]
  21365. ))
  21366. characterMakers.push(() => makeCharacter(
  21367. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21368. {
  21369. side: {
  21370. height: math.unit(6 + 2 / 12, "feet"),
  21371. weight: math.unit(190, "lb"),
  21372. name: "Side",
  21373. image: {
  21374. source: "./media/characters/biscuit/side.svg",
  21375. extra: 858 / 791,
  21376. bottom: 0.044
  21377. }
  21378. },
  21379. },
  21380. [
  21381. {
  21382. name: "Normal",
  21383. height: math.unit(6 + 2 / 12, "feet"),
  21384. default: true
  21385. },
  21386. ]
  21387. ))
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21390. {
  21391. front: {
  21392. height: math.unit(5 + 2 / 12, "feet"),
  21393. weight: math.unit(120, "lb"),
  21394. name: "Front",
  21395. image: {
  21396. source: "./media/characters/poffin/front.svg",
  21397. extra: 786 / 680,
  21398. bottom: 0.005
  21399. }
  21400. },
  21401. },
  21402. [
  21403. {
  21404. name: "Normal",
  21405. height: math.unit(5 + 2 / 12, "feet"),
  21406. default: true
  21407. },
  21408. ]
  21409. ))
  21410. characterMakers.push(() => makeCharacter(
  21411. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21412. {
  21413. front: {
  21414. height: math.unit(6 + 3 / 12, "feet"),
  21415. weight: math.unit(519, "lb"),
  21416. name: "Front",
  21417. image: {
  21418. source: "./media/characters/dhari/front.svg",
  21419. extra: 1048 / 946,
  21420. bottom: 0.015
  21421. }
  21422. },
  21423. back: {
  21424. height: math.unit(6 + 3 / 12, "feet"),
  21425. weight: math.unit(519, "lb"),
  21426. name: "Back",
  21427. image: {
  21428. source: "./media/characters/dhari/back.svg",
  21429. extra: 1048 / 931,
  21430. bottom: 0.005
  21431. }
  21432. },
  21433. frontDressed: {
  21434. height: math.unit(6 + 3 / 12, "feet"),
  21435. weight: math.unit(519, "lb"),
  21436. name: "Front (Dressed)",
  21437. image: {
  21438. source: "./media/characters/dhari/front-dressed.svg",
  21439. extra: 1713 / 1546,
  21440. bottom: 0.02
  21441. }
  21442. },
  21443. backDressed: {
  21444. height: math.unit(6 + 3 / 12, "feet"),
  21445. weight: math.unit(519, "lb"),
  21446. name: "Back (Dressed)",
  21447. image: {
  21448. source: "./media/characters/dhari/back-dressed.svg",
  21449. extra: 1699 / 1537,
  21450. bottom: 0.01
  21451. }
  21452. },
  21453. maw: {
  21454. height: math.unit(0.95, "feet"),
  21455. name: "Maw",
  21456. image: {
  21457. source: "./media/characters/dhari/maw.svg"
  21458. }
  21459. },
  21460. wereFront: {
  21461. height: math.unit(12 + 8 / 12, "feet"),
  21462. weight: math.unit(4000, "lb"),
  21463. name: "Front (Were)",
  21464. image: {
  21465. source: "./media/characters/dhari/were-front.svg",
  21466. extra: 1065 / 969,
  21467. bottom: 0.015
  21468. }
  21469. },
  21470. wereBack: {
  21471. height: math.unit(12 + 8 / 12, "feet"),
  21472. weight: math.unit(4000, "lb"),
  21473. name: "Back (Were)",
  21474. image: {
  21475. source: "./media/characters/dhari/were-back.svg",
  21476. extra: 1065 / 969,
  21477. bottom: 0.012
  21478. }
  21479. },
  21480. wereMaw: {
  21481. height: math.unit(0.625, "meters"),
  21482. name: "Maw (Were)",
  21483. image: {
  21484. source: "./media/characters/dhari/were-maw.svg"
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(6 + 3 / 12, "feet"),
  21492. default: true
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21498. {
  21499. anthro: {
  21500. height: math.unit(5 + 7 / 12, "feet"),
  21501. weight: math.unit(175, "lb"),
  21502. name: "Anthro",
  21503. image: {
  21504. source: "./media/characters/rena-dyne/anthro.svg",
  21505. extra: 1849 / 1785,
  21506. bottom: 0.005
  21507. }
  21508. },
  21509. taur: {
  21510. height: math.unit(15 + 6 / 12, "feet"),
  21511. weight: math.unit(8000, "lb"),
  21512. name: "Taur",
  21513. image: {
  21514. source: "./media/characters/rena-dyne/taur.svg",
  21515. extra: 2315 / 2234,
  21516. bottom: 0.033
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Normal",
  21523. height: math.unit(5 + 7 / 12, "feet"),
  21524. default: true
  21525. },
  21526. ]
  21527. ))
  21528. characterMakers.push(() => makeCharacter(
  21529. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21530. {
  21531. front: {
  21532. height: math.unit(8, "feet"),
  21533. weight: math.unit(600, "lb"),
  21534. name: "Front",
  21535. image: {
  21536. source: "./media/characters/weremeep/front.svg",
  21537. extra: 967 / 862,
  21538. bottom: 0.01
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(8, "feet"),
  21546. default: true
  21547. },
  21548. {
  21549. name: "Lorg",
  21550. height: math.unit(12, "feet")
  21551. },
  21552. {
  21553. name: "Oh Lawd She Comin'",
  21554. height: math.unit(20, "feet")
  21555. },
  21556. ]
  21557. ))
  21558. characterMakers.push(() => makeCharacter(
  21559. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21560. {
  21561. front: {
  21562. height: math.unit(4, "feet"),
  21563. weight: math.unit(90, "lb"),
  21564. name: "Front",
  21565. image: {
  21566. source: "./media/characters/reza/front.svg",
  21567. extra: 1183 / 1111,
  21568. bottom: 0.017
  21569. }
  21570. },
  21571. back: {
  21572. height: math.unit(4, "feet"),
  21573. weight: math.unit(90, "lb"),
  21574. name: "Back",
  21575. image: {
  21576. source: "./media/characters/reza/back.svg",
  21577. extra: 1183 / 1111,
  21578. bottom: 0.01
  21579. }
  21580. },
  21581. drake: {
  21582. height: math.unit(30, "feet"),
  21583. weight: math.unit(246960, "lb"),
  21584. name: "Drake",
  21585. image: {
  21586. source: "./media/characters/reza/drake.svg",
  21587. extra: 2350 / 2024,
  21588. bottom: 60.7 / 2403
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(4, "feet"),
  21596. default: true
  21597. },
  21598. ]
  21599. ))
  21600. characterMakers.push(() => makeCharacter(
  21601. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21602. {
  21603. side: {
  21604. height: math.unit(15, "feet"),
  21605. weight: math.unit(14, "tons"),
  21606. name: "Side",
  21607. image: {
  21608. source: "./media/characters/athea/side.svg",
  21609. extra: 960 / 540,
  21610. bottom: 0.003
  21611. }
  21612. },
  21613. sitting: {
  21614. height: math.unit(6 * 2.85, "feet"),
  21615. weight: math.unit(14, "tons"),
  21616. name: "Sitting",
  21617. image: {
  21618. source: "./media/characters/athea/sitting.svg",
  21619. extra: 621 / 581,
  21620. bottom: 0.075
  21621. }
  21622. },
  21623. maw: {
  21624. height: math.unit(7.59498031496063, "feet"),
  21625. name: "Maw",
  21626. image: {
  21627. source: "./media/characters/athea/maw.svg"
  21628. }
  21629. },
  21630. },
  21631. [
  21632. {
  21633. name: "Lap Cat",
  21634. height: math.unit(2.5, "feet")
  21635. },
  21636. {
  21637. name: "Minimacro",
  21638. height: math.unit(15, "feet"),
  21639. default: true
  21640. },
  21641. {
  21642. name: "Macro",
  21643. height: math.unit(120, "feet")
  21644. },
  21645. {
  21646. name: "Macro+",
  21647. height: math.unit(640, "feet")
  21648. },
  21649. {
  21650. name: "Colossus",
  21651. height: math.unit(2.2, "miles")
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21657. {
  21658. front: {
  21659. height: math.unit(8 + 8 / 12, "feet"),
  21660. weight: math.unit(130, "kg"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/seroko/front.svg",
  21664. extra: 1385 / 1280,
  21665. bottom: 0.025
  21666. }
  21667. },
  21668. back: {
  21669. height: math.unit(8 + 8 / 12, "feet"),
  21670. weight: math.unit(130, "kg"),
  21671. name: "Back",
  21672. image: {
  21673. source: "./media/characters/seroko/back.svg",
  21674. extra: 1369 / 1238,
  21675. bottom: 0.018
  21676. }
  21677. },
  21678. frontDressed: {
  21679. height: math.unit(8 + 8 / 12, "feet"),
  21680. weight: math.unit(130, "kg"),
  21681. name: "Front (Dressed)",
  21682. image: {
  21683. source: "./media/characters/seroko/front-dressed.svg",
  21684. extra: 1366 / 1275,
  21685. bottom: 0.03
  21686. }
  21687. },
  21688. },
  21689. [
  21690. {
  21691. name: "Normal",
  21692. height: math.unit(8 + 8 / 12, "feet"),
  21693. default: true
  21694. },
  21695. ]
  21696. ))
  21697. characterMakers.push(() => makeCharacter(
  21698. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21699. {
  21700. front: {
  21701. height: math.unit(5.5, "feet"),
  21702. weight: math.unit(160, "lb"),
  21703. name: "Front",
  21704. image: {
  21705. source: "./media/characters/quatzi/front.svg",
  21706. extra: 2346 / 2242,
  21707. bottom: 0.015
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Normal",
  21714. height: math.unit(5.5, "feet"),
  21715. default: true
  21716. },
  21717. {
  21718. name: "Big",
  21719. height: math.unit(7.7, "feet")
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(5 + 11 / 12, "feet"),
  21728. weight: math.unit(180, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/sen/front.svg",
  21732. extra: 1321 / 1254,
  21733. bottom: 0.015
  21734. }
  21735. },
  21736. side: {
  21737. height: math.unit(5 + 11 / 12, "feet"),
  21738. weight: math.unit(180, "lb"),
  21739. name: "Side",
  21740. image: {
  21741. source: "./media/characters/sen/side.svg",
  21742. extra: 1321 / 1254,
  21743. bottom: 0.007
  21744. }
  21745. },
  21746. back: {
  21747. height: math.unit(5 + 11 / 12, "feet"),
  21748. weight: math.unit(180, "lb"),
  21749. name: "Back",
  21750. image: {
  21751. source: "./media/characters/sen/back.svg",
  21752. extra: 1321 / 1254
  21753. }
  21754. },
  21755. },
  21756. [
  21757. {
  21758. name: "Normal",
  21759. height: math.unit(5 + 11 / 12, "feet"),
  21760. default: true
  21761. },
  21762. ]
  21763. ))
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21766. {
  21767. front: {
  21768. height: math.unit(166.6, "cm"),
  21769. weight: math.unit(66.6, "kg"),
  21770. name: "Front",
  21771. image: {
  21772. source: "./media/characters/fruity/front.svg",
  21773. extra: 1510 / 1386,
  21774. bottom: 0.04
  21775. }
  21776. },
  21777. back: {
  21778. height: math.unit(166.6, "cm"),
  21779. weight: math.unit(66.6, "lb"),
  21780. name: "Back",
  21781. image: {
  21782. source: "./media/characters/fruity/back.svg",
  21783. extra: 1563 / 1435,
  21784. bottom: 0.005
  21785. }
  21786. },
  21787. },
  21788. [
  21789. {
  21790. name: "Normal",
  21791. height: math.unit(166.6, "cm"),
  21792. default: true
  21793. },
  21794. {
  21795. name: "Demonic",
  21796. height: math.unit(166.6, "feet")
  21797. },
  21798. ]
  21799. ))
  21800. characterMakers.push(() => makeCharacter(
  21801. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21802. {
  21803. side: {
  21804. height: math.unit(10, "feet"),
  21805. weight: math.unit(500, "lb"),
  21806. name: "Side",
  21807. image: {
  21808. source: "./media/characters/zost/side.svg",
  21809. extra: 2870/2533,
  21810. bottom: 252/3122
  21811. }
  21812. },
  21813. mawFront: {
  21814. height: math.unit(1.08, "meters"),
  21815. name: "Maw (Front)",
  21816. image: {
  21817. source: "./media/characters/zost/maw-front.svg"
  21818. }
  21819. },
  21820. mawSide: {
  21821. height: math.unit(2.66, "feet"),
  21822. name: "Maw (Side)",
  21823. image: {
  21824. source: "./media/characters/zost/maw-side.svg"
  21825. }
  21826. },
  21827. wingspan: {
  21828. height: math.unit(7.4, "feet"),
  21829. name: "Wingspan",
  21830. image: {
  21831. source: "./media/characters/zost/wingspan.svg"
  21832. }
  21833. },
  21834. },
  21835. [
  21836. {
  21837. name: "Normal",
  21838. height: math.unit(10, "feet"),
  21839. default: true
  21840. },
  21841. ]
  21842. ))
  21843. characterMakers.push(() => makeCharacter(
  21844. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21845. {
  21846. front: {
  21847. height: math.unit(5 + 4 / 12, "feet"),
  21848. weight: math.unit(120, "lb"),
  21849. name: "Front",
  21850. image: {
  21851. source: "./media/characters/luci/front.svg",
  21852. extra: 1985 / 1884,
  21853. bottom: 0.04
  21854. }
  21855. },
  21856. back: {
  21857. height: math.unit(5 + 4 / 12, "feet"),
  21858. weight: math.unit(120, "lb"),
  21859. name: "Back",
  21860. image: {
  21861. source: "./media/characters/luci/back.svg",
  21862. extra: 1892 / 1791,
  21863. bottom: 0.002
  21864. }
  21865. },
  21866. },
  21867. [
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(5 + 4 / 12, "feet"),
  21871. default: true
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21877. {
  21878. front: {
  21879. height: math.unit(1500, "feet"),
  21880. weight: math.unit(3.8e6, "tons"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/2th/front.svg",
  21884. extra: 3489 / 3350,
  21885. bottom: 0.1
  21886. }
  21887. },
  21888. foot: {
  21889. height: math.unit(461, "feet"),
  21890. name: "Foot",
  21891. image: {
  21892. source: "./media/characters/2th/foot.svg"
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "\"Micro\"",
  21899. height: math.unit(15 + 7 / 12, "feet")
  21900. },
  21901. {
  21902. name: "Normal",
  21903. height: math.unit(1500, "feet"),
  21904. default: true
  21905. },
  21906. {
  21907. name: "Macro",
  21908. height: math.unit(5000, "feet")
  21909. },
  21910. {
  21911. name: "Megamacro",
  21912. height: math.unit(15, "miles")
  21913. },
  21914. {
  21915. name: "Gigamacro",
  21916. height: math.unit(4000, "miles")
  21917. },
  21918. {
  21919. name: "Galactic",
  21920. height: math.unit(50, "AU")
  21921. },
  21922. ]
  21923. ))
  21924. characterMakers.push(() => makeCharacter(
  21925. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21926. {
  21927. front: {
  21928. height: math.unit(5 + 6 / 12, "feet"),
  21929. weight: math.unit(220, "lb"),
  21930. name: "Front",
  21931. image: {
  21932. source: "./media/characters/amethyst/front.svg",
  21933. extra: 2078 / 2040,
  21934. bottom: 0.045
  21935. }
  21936. },
  21937. back: {
  21938. height: math.unit(5 + 6 / 12, "feet"),
  21939. weight: math.unit(220, "lb"),
  21940. name: "Back",
  21941. image: {
  21942. source: "./media/characters/amethyst/back.svg",
  21943. extra: 2021 / 1989,
  21944. bottom: 0.02
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Normal",
  21951. height: math.unit(5 + 6 / 12, "feet"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21958. {
  21959. front: {
  21960. height: math.unit(4 + 11 / 12, "feet"),
  21961. weight: math.unit(120, "lb"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/yumi-akiyama/front.svg",
  21965. extra: 1327 / 1235,
  21966. bottom: 0.02
  21967. }
  21968. },
  21969. back: {
  21970. height: math.unit(4 + 11 / 12, "feet"),
  21971. weight: math.unit(120, "lb"),
  21972. name: "Back",
  21973. image: {
  21974. source: "./media/characters/yumi-akiyama/back.svg",
  21975. extra: 1287 / 1245,
  21976. bottom: 0.002
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Galactic",
  21983. height: math.unit(50, "galaxies"),
  21984. default: true
  21985. },
  21986. {
  21987. name: "Universal",
  21988. height: math.unit(100, "universes")
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21994. {
  21995. front: {
  21996. height: math.unit(8, "feet"),
  21997. weight: math.unit(500, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/rifter-yrmori/front.svg",
  22001. extra: 1180 / 1125,
  22002. bottom: 0.02
  22003. }
  22004. },
  22005. back: {
  22006. height: math.unit(8, "feet"),
  22007. weight: math.unit(500, "lb"),
  22008. name: "Back",
  22009. image: {
  22010. source: "./media/characters/rifter-yrmori/back.svg",
  22011. extra: 1190 / 1145,
  22012. bottom: 0.001
  22013. }
  22014. },
  22015. wings: {
  22016. height: math.unit(7.75, "feet"),
  22017. weight: math.unit(500, "lb"),
  22018. name: "Wings",
  22019. image: {
  22020. source: "./media/characters/rifter-yrmori/wings.svg",
  22021. extra: 1357 / 1285
  22022. }
  22023. },
  22024. maw: {
  22025. height: math.unit(0.8, "feet"),
  22026. name: "Maw",
  22027. image: {
  22028. source: "./media/characters/rifter-yrmori/maw.svg"
  22029. }
  22030. },
  22031. mawfront: {
  22032. height: math.unit(1.45, "feet"),
  22033. name: "Maw (Front)",
  22034. image: {
  22035. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22036. }
  22037. },
  22038. },
  22039. [
  22040. {
  22041. name: "Normal",
  22042. height: math.unit(8, "feet"),
  22043. default: true
  22044. },
  22045. {
  22046. name: "Macro",
  22047. height: math.unit(42, "meters")
  22048. },
  22049. ]
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22053. {
  22054. were: {
  22055. height: math.unit(25 + 6 / 12, "feet"),
  22056. weight: math.unit(10000, "lb"),
  22057. name: "Were",
  22058. image: {
  22059. source: "./media/characters/tahajin/were.svg",
  22060. extra: 801 / 770,
  22061. bottom: 0.042
  22062. }
  22063. },
  22064. aquatic: {
  22065. height: math.unit(6 + 4 / 12, "feet"),
  22066. weight: math.unit(160, "lb"),
  22067. name: "Aquatic",
  22068. image: {
  22069. source: "./media/characters/tahajin/aquatic.svg",
  22070. extra: 572 / 542,
  22071. bottom: 0.04
  22072. }
  22073. },
  22074. chow: {
  22075. height: math.unit(8 + 11 / 12, "feet"),
  22076. weight: math.unit(450, "lb"),
  22077. name: "Chow",
  22078. image: {
  22079. source: "./media/characters/tahajin/chow.svg",
  22080. extra: 660 / 640,
  22081. bottom: 0.015
  22082. }
  22083. },
  22084. demiNaga: {
  22085. height: math.unit(6 + 8 / 12, "feet"),
  22086. weight: math.unit(300, "lb"),
  22087. name: "Demi Naga",
  22088. image: {
  22089. source: "./media/characters/tahajin/demi-naga.svg",
  22090. extra: 643 / 615,
  22091. bottom: 0.1
  22092. }
  22093. },
  22094. data: {
  22095. height: math.unit(5, "inches"),
  22096. weight: math.unit(0.1, "lb"),
  22097. name: "Data",
  22098. image: {
  22099. source: "./media/characters/tahajin/data.svg"
  22100. }
  22101. },
  22102. fluu: {
  22103. height: math.unit(5 + 7 / 12, "feet"),
  22104. weight: math.unit(140, "lb"),
  22105. name: "Fluu",
  22106. image: {
  22107. source: "./media/characters/tahajin/fluu.svg",
  22108. extra: 628 / 592,
  22109. bottom: 0.02
  22110. }
  22111. },
  22112. starWarrior: {
  22113. height: math.unit(4 + 5 / 12, "feet"),
  22114. weight: math.unit(50, "lb"),
  22115. name: "Star Warrior",
  22116. image: {
  22117. source: "./media/characters/tahajin/star-warrior.svg"
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(25 + 6 / 12, "feet"),
  22125. default: true
  22126. },
  22127. ]
  22128. ))
  22129. characterMakers.push(() => makeCharacter(
  22130. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22131. {
  22132. front: {
  22133. height: math.unit(8, "feet"),
  22134. weight: math.unit(350, "lb"),
  22135. name: "Front",
  22136. image: {
  22137. source: "./media/characters/gabira/front.svg",
  22138. extra: 608 / 580,
  22139. bottom: 0.03
  22140. }
  22141. },
  22142. back: {
  22143. height: math.unit(8, "feet"),
  22144. weight: math.unit(350, "lb"),
  22145. name: "Back",
  22146. image: {
  22147. source: "./media/characters/gabira/back.svg",
  22148. extra: 608 / 580,
  22149. bottom: 0.03
  22150. }
  22151. },
  22152. },
  22153. [
  22154. {
  22155. name: "Normal",
  22156. height: math.unit(8, "feet"),
  22157. default: true
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22163. {
  22164. front: {
  22165. height: math.unit(5 + 3 / 12, "feet"),
  22166. weight: math.unit(137, "lb"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/sasha-katraine/front.svg",
  22170. extra: 1745/1694,
  22171. bottom: 37/1782
  22172. }
  22173. },
  22174. back: {
  22175. height: math.unit(5 + 3 / 12, "feet"),
  22176. weight: math.unit(137, "lb"),
  22177. name: "Back",
  22178. image: {
  22179. source: "./media/characters/sasha-katraine/back.svg",
  22180. extra: 1776/1699,
  22181. bottom: 26/1802
  22182. }
  22183. },
  22184. },
  22185. [
  22186. {
  22187. name: "Micro",
  22188. height: math.unit(5, "inches")
  22189. },
  22190. {
  22191. name: "Normal",
  22192. height: math.unit(5 + 3 / 12, "feet"),
  22193. default: true
  22194. },
  22195. ]
  22196. ))
  22197. characterMakers.push(() => makeCharacter(
  22198. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22199. {
  22200. side: {
  22201. height: math.unit(4, "inches"),
  22202. weight: math.unit(200, "grams"),
  22203. name: "Side",
  22204. image: {
  22205. source: "./media/characters/der/side.svg",
  22206. extra: 719 / 400,
  22207. bottom: 30.6 / 749.9187
  22208. }
  22209. },
  22210. },
  22211. [
  22212. {
  22213. name: "Micro",
  22214. height: math.unit(4, "inches"),
  22215. default: true
  22216. },
  22217. ]
  22218. ))
  22219. characterMakers.push(() => makeCharacter(
  22220. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22221. {
  22222. side: {
  22223. height: math.unit(30, "meters"),
  22224. weight: math.unit(700, "tonnes"),
  22225. name: "Side",
  22226. image: {
  22227. source: "./media/characters/fixerdragon/side.svg",
  22228. extra: (1293.0514 - 116.03) / 1106.86,
  22229. bottom: 116.03 / 1293.0514
  22230. }
  22231. },
  22232. },
  22233. [
  22234. {
  22235. name: "Planck",
  22236. height: math.unit(1.6e-35, "meters")
  22237. },
  22238. {
  22239. name: "Micro",
  22240. height: math.unit(0.4, "meters")
  22241. },
  22242. {
  22243. name: "Normal",
  22244. height: math.unit(30, "meters"),
  22245. default: true
  22246. },
  22247. {
  22248. name: "Megamacro",
  22249. height: math.unit(1.2, "megameters")
  22250. },
  22251. {
  22252. name: "Teramacro",
  22253. height: math.unit(130, "terameters")
  22254. },
  22255. {
  22256. name: "Yottamacro",
  22257. height: math.unit(6200, "yottameters")
  22258. },
  22259. ]
  22260. ));
  22261. characterMakers.push(() => makeCharacter(
  22262. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22263. {
  22264. front: {
  22265. height: math.unit(8, "feet"),
  22266. weight: math.unit(250, "lb"),
  22267. name: "Front",
  22268. image: {
  22269. source: "./media/characters/kite/front.svg",
  22270. extra: 2796 / 2659,
  22271. bottom: 0.002
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(8, "feet"),
  22279. default: true
  22280. },
  22281. {
  22282. name: "Macro",
  22283. height: math.unit(360, "feet")
  22284. },
  22285. {
  22286. name: "Megamacro",
  22287. height: math.unit(1500, "feet")
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22293. {
  22294. front: {
  22295. height: math.unit(5 + 11/12, "feet"),
  22296. weight: math.unit(170, "lb"),
  22297. name: "Front",
  22298. image: {
  22299. source: "./media/characters/poojawa-vynar/front.svg",
  22300. extra: 1735/1585,
  22301. bottom: 96/1831
  22302. }
  22303. },
  22304. back: {
  22305. height: math.unit(5 + 11/12, "feet"),
  22306. weight: math.unit(170, "lb"),
  22307. name: "Back",
  22308. image: {
  22309. source: "./media/characters/poojawa-vynar/back.svg",
  22310. extra: 1749/1607,
  22311. bottom: 28/1777
  22312. }
  22313. },
  22314. male: {
  22315. height: math.unit(5 + 11/12, "feet"),
  22316. weight: math.unit(170, "lb"),
  22317. name: "Male",
  22318. image: {
  22319. source: "./media/characters/poojawa-vynar/male.svg",
  22320. extra: 1855/1713,
  22321. bottom: 63/1918
  22322. }
  22323. },
  22324. taur: {
  22325. height: math.unit(5 + 11/12, "feet"),
  22326. weight: math.unit(170, "lb"),
  22327. name: "Taur",
  22328. image: {
  22329. source: "./media/characters/poojawa-vynar/taur.svg",
  22330. extra: 1151/1059,
  22331. bottom: 356/1507
  22332. }
  22333. },
  22334. frontDressed: {
  22335. height: math.unit(5 + 11/12, "feet"),
  22336. weight: math.unit(170, "lb"),
  22337. name: "Front (Dressed)",
  22338. image: {
  22339. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22340. extra: 1735/1585,
  22341. bottom: 96/1831
  22342. }
  22343. },
  22344. backDressed: {
  22345. height: math.unit(5 + 11/12, "feet"),
  22346. weight: math.unit(170, "lb"),
  22347. name: "Back (Dressed)",
  22348. image: {
  22349. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22350. extra: 1749/1607,
  22351. bottom: 28/1777
  22352. }
  22353. },
  22354. maleDressed: {
  22355. height: math.unit(5 + 11/12, "feet"),
  22356. weight: math.unit(170, "lb"),
  22357. name: "Male (Dressed)",
  22358. image: {
  22359. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22360. extra: 1855/1713,
  22361. bottom: 63/1918
  22362. }
  22363. },
  22364. taurDressed: {
  22365. height: math.unit(5 + 11/12, "feet"),
  22366. weight: math.unit(170, "lb"),
  22367. name: "Taur (Dressed)",
  22368. image: {
  22369. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22370. extra: 1151/1059,
  22371. bottom: 356/1507
  22372. }
  22373. },
  22374. maw: {
  22375. height: math.unit(1.46, "feet"),
  22376. name: "Maw",
  22377. image: {
  22378. source: "./media/characters/poojawa-vynar/maw.svg"
  22379. }
  22380. },
  22381. head: {
  22382. height: math.unit(2.34, "feet"),
  22383. name: "Head",
  22384. image: {
  22385. source: "./media/characters/poojawa-vynar/head.svg"
  22386. }
  22387. },
  22388. paw: {
  22389. height: math.unit(1.61, "feet"),
  22390. name: "Paw",
  22391. image: {
  22392. source: "./media/characters/poojawa-vynar/paw.svg"
  22393. }
  22394. },
  22395. pawToering: {
  22396. height: math.unit(1.72, "feet"),
  22397. name: "Paw (Toering)",
  22398. image: {
  22399. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22400. }
  22401. },
  22402. toering: {
  22403. height: math.unit(2.9, "inches"),
  22404. name: "Toering",
  22405. image: {
  22406. source: "./media/characters/poojawa-vynar/toering.svg"
  22407. }
  22408. },
  22409. shaft: {
  22410. height: math.unit(0.625, "feet"),
  22411. name: "Shaft",
  22412. image: {
  22413. source: "./media/characters/poojawa-vynar/shaft.svg"
  22414. }
  22415. },
  22416. spade: {
  22417. height: math.unit(0.42, "feet"),
  22418. name: "Spade",
  22419. image: {
  22420. source: "./media/characters/poojawa-vynar/spade.svg"
  22421. }
  22422. },
  22423. },
  22424. [
  22425. {
  22426. name: "Shortstack",
  22427. height: math.unit(4, "feet")
  22428. },
  22429. {
  22430. name: "Normal",
  22431. height: math.unit(5 + 11 / 12, "feet"),
  22432. default: true
  22433. },
  22434. {
  22435. name: "Tauric",
  22436. height: math.unit(4, "meters")
  22437. },
  22438. ]
  22439. ))
  22440. characterMakers.push(() => makeCharacter(
  22441. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22442. {
  22443. front: {
  22444. height: math.unit(293, "meters"),
  22445. weight: math.unit(70400, "tons"),
  22446. name: "Front",
  22447. image: {
  22448. source: "./media/characters/violette/front.svg",
  22449. extra: 1227 / 1180,
  22450. bottom: 0.005
  22451. }
  22452. },
  22453. back: {
  22454. height: math.unit(293, "meters"),
  22455. weight: math.unit(70400, "tons"),
  22456. name: "Back",
  22457. image: {
  22458. source: "./media/characters/violette/back.svg",
  22459. extra: 1227 / 1180,
  22460. bottom: 0.005
  22461. }
  22462. },
  22463. },
  22464. [
  22465. {
  22466. name: "Macro",
  22467. height: math.unit(293, "meters"),
  22468. default: true
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22474. {
  22475. front: {
  22476. height: math.unit(1050, "feet"),
  22477. weight: math.unit(200000, "tons"),
  22478. name: "Front",
  22479. image: {
  22480. source: "./media/characters/alessandra/front.svg",
  22481. extra: 960 / 912,
  22482. bottom: 0.06
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Macro",
  22489. height: math.unit(1050, "feet")
  22490. },
  22491. {
  22492. name: "Macro+",
  22493. height: math.unit(900, "meters"),
  22494. default: true
  22495. },
  22496. ]
  22497. ))
  22498. characterMakers.push(() => makeCharacter(
  22499. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22500. {
  22501. front: {
  22502. height: math.unit(5, "feet"),
  22503. weight: math.unit(187, "lb"),
  22504. name: "Front",
  22505. image: {
  22506. source: "./media/characters/person/front.svg",
  22507. extra: 3087 / 2945,
  22508. bottom: 91 / 3181
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Micro",
  22515. height: math.unit(3, "inches")
  22516. },
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(5, "feet"),
  22520. default: true
  22521. },
  22522. {
  22523. name: "Macro",
  22524. height: math.unit(90, "feet")
  22525. },
  22526. {
  22527. name: "Max Size",
  22528. height: math.unit(280, "feet")
  22529. },
  22530. ]
  22531. ))
  22532. characterMakers.push(() => makeCharacter(
  22533. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22534. {
  22535. front: {
  22536. height: math.unit(4.5, "meters"),
  22537. weight: math.unit(3200, "lb"),
  22538. name: "Front",
  22539. image: {
  22540. source: "./media/characters/ty/front.svg",
  22541. extra: 1038 / 960,
  22542. bottom: 31.156 / 1068
  22543. }
  22544. },
  22545. back: {
  22546. height: math.unit(4.5, "meters"),
  22547. weight: math.unit(3200, "lb"),
  22548. name: "Back",
  22549. image: {
  22550. source: "./media/characters/ty/back.svg",
  22551. extra: 1044 / 966,
  22552. bottom: 7.48 / 1049
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Normal",
  22559. height: math.unit(4.5, "meters"),
  22560. default: true
  22561. },
  22562. ]
  22563. ))
  22564. characterMakers.push(() => makeCharacter(
  22565. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22566. {
  22567. front: {
  22568. height: math.unit(5 + 4 / 12, "feet"),
  22569. weight: math.unit(115, "lb"),
  22570. name: "Front",
  22571. image: {
  22572. source: "./media/characters/rocky/front.svg",
  22573. extra: 1012 / 975,
  22574. bottom: 54 / 1066
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Normal",
  22581. height: math.unit(5 + 4 / 12, "feet"),
  22582. default: true
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22588. {
  22589. upright: {
  22590. height: math.unit(6, "meters"),
  22591. weight: math.unit(4000, "kg"),
  22592. name: "Upright",
  22593. image: {
  22594. source: "./media/characters/ruin/upright.svg",
  22595. extra: 668 / 661,
  22596. bottom: 42 / 799.8396
  22597. }
  22598. },
  22599. },
  22600. [
  22601. {
  22602. name: "Normal",
  22603. height: math.unit(6, "meters"),
  22604. default: true
  22605. },
  22606. ]
  22607. ))
  22608. characterMakers.push(() => makeCharacter(
  22609. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22610. {
  22611. front: {
  22612. height: math.unit(5, "feet"),
  22613. weight: math.unit(106, "lb"),
  22614. name: "Front",
  22615. image: {
  22616. source: "./media/characters/robin/front.svg",
  22617. extra: 862 / 799,
  22618. bottom: 42.4 / 914.8856
  22619. }
  22620. },
  22621. },
  22622. [
  22623. {
  22624. name: "Normal",
  22625. height: math.unit(5, "feet"),
  22626. default: true
  22627. },
  22628. ]
  22629. ))
  22630. characterMakers.push(() => makeCharacter(
  22631. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22632. {
  22633. side: {
  22634. height: math.unit(3, "feet"),
  22635. weight: math.unit(225, "lb"),
  22636. name: "Side",
  22637. image: {
  22638. source: "./media/characters/saian/side.svg",
  22639. extra: 566 / 356,
  22640. bottom: 79.7 / 643
  22641. }
  22642. },
  22643. maw: {
  22644. height: math.unit(2.85, "feet"),
  22645. name: "Maw",
  22646. image: {
  22647. source: "./media/characters/saian/maw.svg"
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(3, "feet"),
  22655. default: true
  22656. },
  22657. ]
  22658. ))
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22661. {
  22662. side: {
  22663. height: math.unit(8, "feet"),
  22664. weight: math.unit(300, "lb"),
  22665. name: "Side",
  22666. image: {
  22667. source: "./media/characters/equus-silvermane/side.svg",
  22668. extra: 2176 / 2050,
  22669. bottom: 65.7 / 2245
  22670. }
  22671. },
  22672. front: {
  22673. height: math.unit(8, "feet"),
  22674. weight: math.unit(300, "lb"),
  22675. name: "Front",
  22676. image: {
  22677. source: "./media/characters/equus-silvermane/front.svg",
  22678. extra: 4633 / 4400,
  22679. bottom: 71.3 / 4706.915
  22680. }
  22681. },
  22682. sideStepping: {
  22683. height: math.unit(8, "feet"),
  22684. weight: math.unit(300, "lb"),
  22685. name: "Side (Stepping)",
  22686. image: {
  22687. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22688. extra: 1968 / 1860,
  22689. bottom: 16.4 / 1989
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(8, "feet")
  22697. },
  22698. {
  22699. name: "Minimacro",
  22700. height: math.unit(75, "feet"),
  22701. default: true
  22702. },
  22703. {
  22704. name: "Macro",
  22705. height: math.unit(150, "feet")
  22706. },
  22707. {
  22708. name: "Macro+",
  22709. height: math.unit(1000, "feet")
  22710. },
  22711. {
  22712. name: "Megamacro",
  22713. height: math.unit(1, "mile")
  22714. },
  22715. ]
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22719. {
  22720. side: {
  22721. height: math.unit(20, "feet"),
  22722. weight: math.unit(30000, "kg"),
  22723. name: "Side",
  22724. image: {
  22725. source: "./media/characters/windar/side.svg",
  22726. extra: 1491 / 1248,
  22727. bottom: 82.56 / 1568
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Normal",
  22734. height: math.unit(20, "feet"),
  22735. default: true
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22741. {
  22742. side: {
  22743. height: math.unit(15.66, "feet"),
  22744. weight: math.unit(150, "lb"),
  22745. name: "Side",
  22746. image: {
  22747. source: "./media/characters/melody/side.svg",
  22748. extra: 1097 / 944,
  22749. bottom: 11.8 / 1109
  22750. }
  22751. },
  22752. sideOutfit: {
  22753. height: math.unit(15.66, "feet"),
  22754. weight: math.unit(150, "lb"),
  22755. name: "Side (Outfit)",
  22756. image: {
  22757. source: "./media/characters/melody/side-outfit.svg",
  22758. extra: 1097 / 944,
  22759. bottom: 11.8 / 1109
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Normal",
  22766. height: math.unit(15.66, "feet"),
  22767. default: true
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22773. {
  22774. front: {
  22775. height: math.unit(8, "feet"),
  22776. weight: math.unit(325, "lb"),
  22777. name: "Front",
  22778. image: {
  22779. source: "./media/characters/windera/front.svg",
  22780. extra: 3180 / 2845,
  22781. bottom: 178 / 3365
  22782. }
  22783. },
  22784. },
  22785. [
  22786. {
  22787. name: "Normal",
  22788. height: math.unit(8, "feet"),
  22789. default: true
  22790. },
  22791. ]
  22792. ))
  22793. characterMakers.push(() => makeCharacter(
  22794. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22795. {
  22796. front: {
  22797. height: math.unit(28.75, "feet"),
  22798. weight: math.unit(2000, "kg"),
  22799. name: "Front",
  22800. image: {
  22801. source: "./media/characters/sonear/front.svg",
  22802. extra: 1041.1 / 964.9,
  22803. bottom: 53.7 / 1096.6
  22804. }
  22805. },
  22806. },
  22807. [
  22808. {
  22809. name: "Normal",
  22810. height: math.unit(28.75, "feet"),
  22811. default: true
  22812. },
  22813. ]
  22814. ))
  22815. characterMakers.push(() => makeCharacter(
  22816. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22817. {
  22818. side: {
  22819. height: math.unit(25.5, "feet"),
  22820. weight: math.unit(23000, "kg"),
  22821. name: "Side",
  22822. image: {
  22823. source: "./media/characters/kanara/side.svg"
  22824. }
  22825. },
  22826. },
  22827. [
  22828. {
  22829. name: "Normal",
  22830. height: math.unit(25.5, "feet"),
  22831. default: true
  22832. },
  22833. ]
  22834. ))
  22835. characterMakers.push(() => makeCharacter(
  22836. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22837. {
  22838. side: {
  22839. height: math.unit(10, "feet"),
  22840. weight: math.unit(1000, "kg"),
  22841. name: "Side",
  22842. image: {
  22843. source: "./media/characters/ereus/side.svg",
  22844. extra: 1157 / 959,
  22845. bottom: 153 / 1312.5
  22846. }
  22847. },
  22848. },
  22849. [
  22850. {
  22851. name: "Normal",
  22852. height: math.unit(10, "feet"),
  22853. default: true
  22854. },
  22855. ]
  22856. ))
  22857. characterMakers.push(() => makeCharacter(
  22858. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22859. {
  22860. side: {
  22861. height: math.unit(4.5, "feet"),
  22862. weight: math.unit(500, "lb"),
  22863. name: "Side",
  22864. image: {
  22865. source: "./media/characters/e-ter/side.svg",
  22866. extra: 1550 / 1248,
  22867. bottom: 146 / 1694
  22868. }
  22869. },
  22870. },
  22871. [
  22872. {
  22873. name: "Normal",
  22874. height: math.unit(4.5, "feet"),
  22875. default: true
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22881. {
  22882. side: {
  22883. height: math.unit(9.7, "feet"),
  22884. weight: math.unit(4000, "kg"),
  22885. name: "Side",
  22886. image: {
  22887. source: "./media/characters/yamie/side.svg"
  22888. }
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(9.7, "feet"),
  22895. default: true
  22896. },
  22897. ]
  22898. ))
  22899. characterMakers.push(() => makeCharacter(
  22900. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22901. {
  22902. front: {
  22903. height: math.unit(50, "feet"),
  22904. weight: math.unit(50000, "kg"),
  22905. name: "Front",
  22906. image: {
  22907. source: "./media/characters/anders/front.svg",
  22908. extra: 570 / 539,
  22909. bottom: 14.7 / 586.7
  22910. }
  22911. },
  22912. },
  22913. [
  22914. {
  22915. name: "Large",
  22916. height: math.unit(50, "feet")
  22917. },
  22918. {
  22919. name: "Macro",
  22920. height: math.unit(2000, "feet"),
  22921. default: true
  22922. },
  22923. {
  22924. name: "Megamacro",
  22925. height: math.unit(12, "miles")
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22931. {
  22932. front: {
  22933. height: math.unit(7 + 2 / 12, "feet"),
  22934. weight: math.unit(300, "lb"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/reban/front.svg",
  22938. extra: 1287/1212,
  22939. bottom: 148/1435
  22940. }
  22941. },
  22942. head: {
  22943. height: math.unit(1.95, "feet"),
  22944. name: "Head",
  22945. image: {
  22946. source: "./media/characters/reban/head.svg"
  22947. }
  22948. },
  22949. maw: {
  22950. height: math.unit(0.95, "feet"),
  22951. name: "Maw",
  22952. image: {
  22953. source: "./media/characters/reban/maw.svg"
  22954. }
  22955. },
  22956. foot: {
  22957. height: math.unit(1.65, "feet"),
  22958. name: "Foot",
  22959. image: {
  22960. source: "./media/characters/reban/foot.svg"
  22961. }
  22962. },
  22963. dick: {
  22964. height: math.unit(7 / 5, "feet"),
  22965. name: "Dick",
  22966. image: {
  22967. source: "./media/characters/reban/dick.svg"
  22968. }
  22969. },
  22970. },
  22971. [
  22972. {
  22973. name: "Natural Height",
  22974. height: math.unit(7 + 2 / 12, "feet")
  22975. },
  22976. {
  22977. name: "Macro",
  22978. height: math.unit(500, "feet"),
  22979. default: true
  22980. },
  22981. {
  22982. name: "Canon Height",
  22983. height: math.unit(50, "AU")
  22984. },
  22985. ]
  22986. ))
  22987. characterMakers.push(() => makeCharacter(
  22988. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22989. {
  22990. front: {
  22991. height: math.unit(6, "feet"),
  22992. weight: math.unit(150, "lb"),
  22993. name: "Front",
  22994. image: {
  22995. source: "./media/characters/terrance-keayes/front.svg",
  22996. extra: 1.005,
  22997. bottom: 151 / 1615
  22998. }
  22999. },
  23000. side: {
  23001. height: math.unit(6, "feet"),
  23002. weight: math.unit(150, "lb"),
  23003. name: "Side",
  23004. image: {
  23005. source: "./media/characters/terrance-keayes/side.svg",
  23006. extra: 1.005,
  23007. bottom: 129.4 / 1544
  23008. }
  23009. },
  23010. back: {
  23011. height: math.unit(6, "feet"),
  23012. weight: math.unit(150, "lb"),
  23013. name: "Back",
  23014. image: {
  23015. source: "./media/characters/terrance-keayes/back.svg",
  23016. extra: 1.005,
  23017. bottom: 58.4 / 1557.3
  23018. }
  23019. },
  23020. dick: {
  23021. height: math.unit(6 * 0.208, "feet"),
  23022. name: "Dick",
  23023. image: {
  23024. source: "./media/characters/terrance-keayes/dick.svg"
  23025. }
  23026. },
  23027. },
  23028. [
  23029. {
  23030. name: "Canon Height",
  23031. height: math.unit(35, "miles"),
  23032. default: true
  23033. },
  23034. ]
  23035. ))
  23036. characterMakers.push(() => makeCharacter(
  23037. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23038. {
  23039. front: {
  23040. height: math.unit(6, "feet"),
  23041. weight: math.unit(150, "lb"),
  23042. name: "Front",
  23043. image: {
  23044. source: "./media/characters/ofelia/front.svg",
  23045. extra: 1130/1117,
  23046. bottom: 91/1221
  23047. }
  23048. },
  23049. back: {
  23050. height: math.unit(6, "feet"),
  23051. weight: math.unit(150, "lb"),
  23052. name: "Back",
  23053. image: {
  23054. source: "./media/characters/ofelia/back.svg",
  23055. extra: 1172/1159,
  23056. bottom: 28/1200
  23057. }
  23058. },
  23059. maw: {
  23060. height: math.unit(1, "feet"),
  23061. name: "Maw",
  23062. image: {
  23063. source: "./media/characters/ofelia/maw.svg"
  23064. }
  23065. },
  23066. foot: {
  23067. height: math.unit(1.949, "feet"),
  23068. name: "Foot",
  23069. image: {
  23070. source: "./media/characters/ofelia/foot.svg"
  23071. }
  23072. },
  23073. },
  23074. [
  23075. {
  23076. name: "Canon Height",
  23077. height: math.unit(2000, "miles"),
  23078. default: true
  23079. },
  23080. ]
  23081. ))
  23082. characterMakers.push(() => makeCharacter(
  23083. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23084. {
  23085. front: {
  23086. height: math.unit(6, "feet"),
  23087. weight: math.unit(150, "lb"),
  23088. name: "Front",
  23089. image: {
  23090. source: "./media/characters/samuel/front.svg",
  23091. extra: 265 / 258,
  23092. bottom: 2 / 266.1566
  23093. }
  23094. },
  23095. },
  23096. [
  23097. {
  23098. name: "Macro",
  23099. height: math.unit(100, "feet"),
  23100. default: true
  23101. },
  23102. {
  23103. name: "Full Size",
  23104. height: math.unit(1000, "miles")
  23105. },
  23106. ]
  23107. ))
  23108. characterMakers.push(() => makeCharacter(
  23109. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23110. {
  23111. front: {
  23112. height: math.unit(6, "feet"),
  23113. weight: math.unit(300, "lb"),
  23114. name: "Front",
  23115. image: {
  23116. source: "./media/characters/beishir-kiel/front.svg",
  23117. extra: 569 / 547,
  23118. bottom: 41.9 / 609
  23119. }
  23120. },
  23121. maw: {
  23122. height: math.unit(6 * 0.202, "feet"),
  23123. name: "Maw",
  23124. image: {
  23125. source: "./media/characters/beishir-kiel/maw.svg"
  23126. }
  23127. },
  23128. },
  23129. [
  23130. {
  23131. name: "Macro",
  23132. height: math.unit(300, "feet"),
  23133. default: true
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23139. {
  23140. front: {
  23141. height: math.unit(5 + 7/12, "feet"),
  23142. weight: math.unit(120, "lb"),
  23143. name: "Front",
  23144. image: {
  23145. source: "./media/characters/logan-grey/front.svg",
  23146. extra: 1836/1738,
  23147. bottom: 108/1944
  23148. }
  23149. },
  23150. back: {
  23151. height: math.unit(5 + 7/12, "feet"),
  23152. weight: math.unit(120, "lb"),
  23153. name: "Back",
  23154. image: {
  23155. source: "./media/characters/logan-grey/back.svg",
  23156. extra: 1880/1794,
  23157. bottom: 24/1904
  23158. }
  23159. },
  23160. frontSfw: {
  23161. height: math.unit(5 + 7/12, "feet"),
  23162. weight: math.unit(120, "lb"),
  23163. name: "Front (SFW)",
  23164. image: {
  23165. source: "./media/characters/logan-grey/front-sfw.svg",
  23166. extra: 1836/1738,
  23167. bottom: 108/1944
  23168. }
  23169. },
  23170. backSfw: {
  23171. height: math.unit(5 + 7/12, "feet"),
  23172. weight: math.unit(120, "lb"),
  23173. name: "Back (SFW)",
  23174. image: {
  23175. source: "./media/characters/logan-grey/back-sfw.svg",
  23176. extra: 1880/1794,
  23177. bottom: 24/1904
  23178. }
  23179. },
  23180. hands: {
  23181. height: math.unit(0.84, "feet"),
  23182. name: "Hands",
  23183. image: {
  23184. source: "./media/characters/logan-grey/hands.svg"
  23185. }
  23186. },
  23187. paws: {
  23188. height: math.unit(0.72, "feet"),
  23189. name: "Paws",
  23190. image: {
  23191. source: "./media/characters/logan-grey/paws.svg"
  23192. }
  23193. },
  23194. cock: {
  23195. height: math.unit(1.45, "feet"),
  23196. name: "Cock",
  23197. image: {
  23198. source: "./media/characters/logan-grey/cock.svg"
  23199. }
  23200. },
  23201. cockAlt: {
  23202. height: math.unit(1.437, "feet"),
  23203. name: "Cock (alt)",
  23204. image: {
  23205. source: "./media/characters/logan-grey/cock-alt.svg"
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Normal",
  23212. height: math.unit(5 + 8 / 12, "feet")
  23213. },
  23214. {
  23215. name: "The 500 Foot Femboy",
  23216. height: math.unit(500, "feet"),
  23217. default: true
  23218. },
  23219. {
  23220. name: "Megmacro",
  23221. height: math.unit(20, "miles")
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(8 + 2 / 12, "feet"),
  23230. weight: math.unit(275, "lb"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/draganta/front.svg",
  23234. extra: 1177 / 1135,
  23235. bottom: 33.46 / 1212.1
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(8 + 6 / 12, "feet"),
  23243. default: true
  23244. },
  23245. {
  23246. name: "Macro",
  23247. height: math.unit(150, "feet")
  23248. },
  23249. {
  23250. name: "Megamacro",
  23251. height: math.unit(1000, "miles")
  23252. },
  23253. ]
  23254. ))
  23255. characterMakers.push(() => makeCharacter(
  23256. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23257. {
  23258. front: {
  23259. height: math.unit(1.72, "m"),
  23260. weight: math.unit(80, "lb"),
  23261. name: "Front",
  23262. image: {
  23263. source: "./media/characters/voski/front.svg",
  23264. extra: 2076.22 / 2022.4,
  23265. bottom: 102.7 / 2177.3866
  23266. }
  23267. },
  23268. frontFlaccid: {
  23269. height: math.unit(1.72, "m"),
  23270. weight: math.unit(80, "lb"),
  23271. name: "Front (Flaccid)",
  23272. image: {
  23273. source: "./media/characters/voski/front-flaccid.svg",
  23274. extra: 2076.22 / 2022.4,
  23275. bottom: 102.7 / 2177.3866
  23276. }
  23277. },
  23278. frontErect: {
  23279. height: math.unit(1.72, "m"),
  23280. weight: math.unit(80, "lb"),
  23281. name: "Front (Erect)",
  23282. image: {
  23283. source: "./media/characters/voski/front-erect.svg",
  23284. extra: 2076.22 / 2022.4,
  23285. bottom: 102.7 / 2177.3866
  23286. }
  23287. },
  23288. back: {
  23289. height: math.unit(1.72, "m"),
  23290. weight: math.unit(80, "lb"),
  23291. name: "Back",
  23292. image: {
  23293. source: "./media/characters/voski/back.svg",
  23294. extra: 2104 / 2051,
  23295. bottom: 10.45 / 2113.63
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Normal",
  23302. height: math.unit(1.72, "m")
  23303. },
  23304. {
  23305. name: "Macro",
  23306. height: math.unit(55, "m"),
  23307. default: true
  23308. },
  23309. {
  23310. name: "Macro+",
  23311. height: math.unit(300, "m")
  23312. },
  23313. {
  23314. name: "Macro++",
  23315. height: math.unit(700, "m")
  23316. },
  23317. {
  23318. name: "Macro+++",
  23319. height: math.unit(4500, "m")
  23320. },
  23321. {
  23322. name: "Macro++++",
  23323. height: math.unit(45, "km")
  23324. },
  23325. {
  23326. name: "Macro+++++",
  23327. height: math.unit(1220, "km")
  23328. },
  23329. ]
  23330. ))
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23333. {
  23334. front: {
  23335. height: math.unit(2.3, "m"),
  23336. weight: math.unit(304, "kg"),
  23337. name: "Front",
  23338. image: {
  23339. source: "./media/characters/icowom-lee/front.svg",
  23340. extra: 985 / 955,
  23341. bottom: 25.4 / 1012
  23342. }
  23343. },
  23344. fronttentacles: {
  23345. height: math.unit(2.3, "m"),
  23346. weight: math.unit(304, "kg"),
  23347. name: "Front-tentacles",
  23348. image: {
  23349. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23350. extra: 985 / 955,
  23351. bottom: 25.4 / 1012
  23352. }
  23353. },
  23354. back: {
  23355. height: math.unit(2.3, "m"),
  23356. weight: math.unit(304, "kg"),
  23357. name: "Back",
  23358. image: {
  23359. source: "./media/characters/icowom-lee/back.svg",
  23360. extra: 975 / 954,
  23361. bottom: 9.5 / 985
  23362. }
  23363. },
  23364. backtentacles: {
  23365. height: math.unit(2.3, "m"),
  23366. weight: math.unit(304, "kg"),
  23367. name: "Back-tentacles",
  23368. image: {
  23369. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23370. extra: 975 / 954,
  23371. bottom: 9.5 / 985
  23372. }
  23373. },
  23374. frontDressed: {
  23375. height: math.unit(2.3, "m"),
  23376. weight: math.unit(304, "kg"),
  23377. name: "Front (Dressed)",
  23378. image: {
  23379. source: "./media/characters/icowom-lee/front-dressed.svg",
  23380. extra: 3076 / 2933,
  23381. bottom: 51.4 / 3125.1889
  23382. }
  23383. },
  23384. rump: {
  23385. height: math.unit(0.776, "meters"),
  23386. name: "Rump",
  23387. image: {
  23388. source: "./media/characters/icowom-lee/rump.svg"
  23389. }
  23390. },
  23391. genitals: {
  23392. height: math.unit(0.78, "meters"),
  23393. name: "Genitals",
  23394. image: {
  23395. source: "./media/characters/icowom-lee/genitals.svg"
  23396. }
  23397. },
  23398. },
  23399. [
  23400. {
  23401. name: "Normal",
  23402. height: math.unit(2.3, "meters"),
  23403. default: true
  23404. },
  23405. {
  23406. name: "Macro",
  23407. height: math.unit(94, "meters"),
  23408. default: true
  23409. },
  23410. ]
  23411. ))
  23412. characterMakers.push(() => makeCharacter(
  23413. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23414. {
  23415. front: {
  23416. height: math.unit(22, "meters"),
  23417. weight: math.unit(21000, "kg"),
  23418. name: "Front",
  23419. image: {
  23420. source: "./media/characters/shock-diamond/front.svg",
  23421. extra: 2204 / 2053,
  23422. bottom: 65 / 2239.47
  23423. }
  23424. },
  23425. frontNude: {
  23426. height: math.unit(22, "meters"),
  23427. weight: math.unit(21000, "kg"),
  23428. name: "Front (Nude)",
  23429. image: {
  23430. source: "./media/characters/shock-diamond/front-nude.svg",
  23431. extra: 2514 / 2285,
  23432. bottom: 13 / 2527.56
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Normal",
  23439. height: math.unit(3, "meters")
  23440. },
  23441. {
  23442. name: "Macro",
  23443. height: math.unit(22, "meters"),
  23444. default: true
  23445. },
  23446. ]
  23447. ))
  23448. characterMakers.push(() => makeCharacter(
  23449. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23450. {
  23451. front: {
  23452. height: math.unit(5 + 4 / 12, "feet"),
  23453. weight: math.unit(120, "lb"),
  23454. name: "Front",
  23455. image: {
  23456. source: "./media/characters/rory/front.svg",
  23457. extra: 1318/1241,
  23458. bottom: 42/1360
  23459. }
  23460. },
  23461. back: {
  23462. height: math.unit(5 + 4 / 12, "feet"),
  23463. weight: math.unit(120, "lb"),
  23464. name: "Back",
  23465. image: {
  23466. source: "./media/characters/rory/back.svg",
  23467. extra: 1318/1241,
  23468. bottom: 42/1360
  23469. }
  23470. },
  23471. butt: {
  23472. height: math.unit(1.74, "feet"),
  23473. name: "Butt",
  23474. image: {
  23475. source: "./media/characters/rory/butt.svg"
  23476. }
  23477. },
  23478. dick: {
  23479. height: math.unit(1.02, "feet"),
  23480. name: "Dick",
  23481. image: {
  23482. source: "./media/characters/rory/dick.svg"
  23483. }
  23484. },
  23485. paws: {
  23486. height: math.unit(1, "feet"),
  23487. name: "Paws",
  23488. image: {
  23489. source: "./media/characters/rory/paws.svg"
  23490. }
  23491. },
  23492. frontAlt: {
  23493. height: math.unit(5 + 4 / 12, "feet"),
  23494. weight: math.unit(120, "lb"),
  23495. name: "Front (Alt)",
  23496. image: {
  23497. source: "./media/characters/rory/front-alt.svg",
  23498. extra: 589 / 556,
  23499. bottom: 45.7 / 635.76
  23500. }
  23501. },
  23502. frontAltNude: {
  23503. height: math.unit(5 + 4 / 12, "feet"),
  23504. weight: math.unit(120, "lb"),
  23505. name: "Front (Alt, Nude)",
  23506. image: {
  23507. source: "./media/characters/rory/front-alt-nude.svg",
  23508. extra: 589 / 556,
  23509. bottom: 45.7 / 635.76
  23510. }
  23511. },
  23512. side: {
  23513. height: math.unit(5 + 4 / 12, "feet"),
  23514. weight: math.unit(120, "lb"),
  23515. name: "Side",
  23516. image: {
  23517. source: "./media/characters/rory/side.svg",
  23518. extra: 597 / 564,
  23519. bottom: 55 / 653
  23520. }
  23521. },
  23522. backAlt: {
  23523. height: math.unit(5 + 4 / 12, "feet"),
  23524. weight: math.unit(120, "lb"),
  23525. name: "Back (Alt)",
  23526. image: {
  23527. source: "./media/characters/rory/back-alt.svg",
  23528. extra: 620 / 585,
  23529. bottom: 8.86 / 630.43
  23530. }
  23531. },
  23532. dickAlt: {
  23533. height: math.unit(0.86, "feet"),
  23534. name: "Dick (Alt)",
  23535. image: {
  23536. source: "./media/characters/rory/dick-alt.svg"
  23537. }
  23538. },
  23539. },
  23540. [
  23541. {
  23542. name: "Normal",
  23543. height: math.unit(5 + 4 / 12, "feet"),
  23544. default: true
  23545. },
  23546. {
  23547. name: "Macro",
  23548. height: math.unit(100, "feet")
  23549. },
  23550. {
  23551. name: "Macro+",
  23552. height: math.unit(140, "feet")
  23553. },
  23554. {
  23555. name: "Macro++",
  23556. height: math.unit(300, "feet")
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23562. {
  23563. front: {
  23564. height: math.unit(5 + 9 / 12, "feet"),
  23565. weight: math.unit(190, "lb"),
  23566. name: "Front",
  23567. image: {
  23568. source: "./media/characters/sprisk/front.svg",
  23569. extra: 1225 / 1180,
  23570. bottom: 42.7 / 1266.4
  23571. }
  23572. },
  23573. frontNsfw: {
  23574. height: math.unit(5 + 9 / 12, "feet"),
  23575. weight: math.unit(190, "lb"),
  23576. name: "Front (NSFW)",
  23577. image: {
  23578. source: "./media/characters/sprisk/front-nsfw.svg",
  23579. extra: 1225 / 1180,
  23580. bottom: 42.7 / 1266.4
  23581. }
  23582. },
  23583. back: {
  23584. height: math.unit(5 + 9 / 12, "feet"),
  23585. weight: math.unit(190, "lb"),
  23586. name: "Back",
  23587. image: {
  23588. source: "./media/characters/sprisk/back.svg",
  23589. extra: 1247 / 1200,
  23590. bottom: 5.6 / 1253.04
  23591. }
  23592. },
  23593. },
  23594. [
  23595. {
  23596. name: "Tiny",
  23597. height: math.unit(2, "inches")
  23598. },
  23599. {
  23600. name: "Normal",
  23601. height: math.unit(5 + 9 / 12, "feet"),
  23602. default: true
  23603. },
  23604. {
  23605. name: "Mini Macro",
  23606. height: math.unit(18, "feet")
  23607. },
  23608. {
  23609. name: "Macro",
  23610. height: math.unit(100, "feet")
  23611. },
  23612. {
  23613. name: "MACRO",
  23614. height: math.unit(50, "miles")
  23615. },
  23616. {
  23617. name: "M A C R O",
  23618. height: math.unit(300, "miles")
  23619. },
  23620. ]
  23621. ))
  23622. characterMakers.push(() => makeCharacter(
  23623. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23624. {
  23625. side: {
  23626. height: math.unit(15.6, "meters"),
  23627. weight: math.unit(700000, "kg"),
  23628. name: "Side",
  23629. image: {
  23630. source: "./media/characters/bunsen/side.svg",
  23631. extra: 1644 / 358
  23632. }
  23633. },
  23634. foot: {
  23635. height: math.unit(1.611 * 1644 / 358, "meter"),
  23636. name: "Foot",
  23637. image: {
  23638. source: "./media/characters/bunsen/foot.svg"
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Small",
  23645. height: math.unit(10, "feet")
  23646. },
  23647. {
  23648. name: "Normal",
  23649. height: math.unit(15.6, "meters"),
  23650. default: true
  23651. },
  23652. ]
  23653. ))
  23654. characterMakers.push(() => makeCharacter(
  23655. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23656. {
  23657. front: {
  23658. height: math.unit(4 + 11 / 12, "feet"),
  23659. weight: math.unit(140, "lb"),
  23660. name: "Front",
  23661. image: {
  23662. source: "./media/characters/sesh/front.svg",
  23663. extra: 3420 / 3231,
  23664. bottom: 72 / 3949.5
  23665. }
  23666. },
  23667. },
  23668. [
  23669. {
  23670. name: "Normal",
  23671. height: math.unit(4 + 11 / 12, "feet")
  23672. },
  23673. {
  23674. name: "Grown",
  23675. height: math.unit(15, "feet"),
  23676. default: true
  23677. },
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(1500, "feet")
  23681. },
  23682. {
  23683. name: "Megamacro",
  23684. height: math.unit(30, "miles")
  23685. },
  23686. {
  23687. name: "Continental",
  23688. height: math.unit(3000, "miles")
  23689. },
  23690. {
  23691. name: "Gravity Mass",
  23692. height: math.unit(300000, "miles")
  23693. },
  23694. {
  23695. name: "Planet Buster",
  23696. height: math.unit(30000000, "miles")
  23697. },
  23698. {
  23699. name: "Big",
  23700. height: math.unit(3000000000, "miles")
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23706. {
  23707. front: {
  23708. height: math.unit(9, "feet"),
  23709. weight: math.unit(350, "lb"),
  23710. name: "Front",
  23711. image: {
  23712. source: "./media/characters/pepper/front.svg",
  23713. extra: 1448 / 1312,
  23714. bottom: 9.4 / 1457.88
  23715. }
  23716. },
  23717. back: {
  23718. height: math.unit(9, "feet"),
  23719. weight: math.unit(350, "lb"),
  23720. name: "Back",
  23721. image: {
  23722. source: "./media/characters/pepper/back.svg",
  23723. extra: 1423 / 1300,
  23724. bottom: 4.6 / 1429
  23725. }
  23726. },
  23727. maw: {
  23728. height: math.unit(0.932, "feet"),
  23729. name: "Maw",
  23730. image: {
  23731. source: "./media/characters/pepper/maw.svg"
  23732. }
  23733. },
  23734. },
  23735. [
  23736. {
  23737. name: "Normal",
  23738. height: math.unit(9, "feet"),
  23739. default: true
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23745. {
  23746. front: {
  23747. height: math.unit(6, "feet"),
  23748. weight: math.unit(150, "lb"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/maelstrom/front.svg",
  23752. extra: 2100 / 1883,
  23753. bottom: 94 / 2196.7
  23754. }
  23755. },
  23756. },
  23757. [
  23758. {
  23759. name: "Less Kaiju",
  23760. height: math.unit(200, "feet")
  23761. },
  23762. {
  23763. name: "Kaiju",
  23764. height: math.unit(400, "feet"),
  23765. default: true
  23766. },
  23767. {
  23768. name: "Kaiju-er",
  23769. height: math.unit(600, "feet")
  23770. },
  23771. ]
  23772. ))
  23773. characterMakers.push(() => makeCharacter(
  23774. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23775. {
  23776. front: {
  23777. height: math.unit(6 + 5 / 12, "feet"),
  23778. weight: math.unit(180, "lb"),
  23779. name: "Front",
  23780. image: {
  23781. source: "./media/characters/lexir/front.svg",
  23782. extra: 180 / 172,
  23783. bottom: 12 / 192
  23784. }
  23785. },
  23786. back: {
  23787. height: math.unit(6 + 5 / 12, "feet"),
  23788. weight: math.unit(180, "lb"),
  23789. name: "Back",
  23790. image: {
  23791. source: "./media/characters/lexir/back.svg",
  23792. extra: 1273/1201,
  23793. bottom: 39/1312
  23794. }
  23795. },
  23796. },
  23797. [
  23798. {
  23799. name: "Very Smal",
  23800. height: math.unit(1, "nm")
  23801. },
  23802. {
  23803. name: "Normal",
  23804. height: math.unit(6 + 5 / 12, "feet"),
  23805. default: true
  23806. },
  23807. {
  23808. name: "Macro",
  23809. height: math.unit(1, "mile")
  23810. },
  23811. {
  23812. name: "Megamacro",
  23813. height: math.unit(50, "miles")
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23819. {
  23820. front: {
  23821. height: math.unit(1.5, "meters"),
  23822. weight: math.unit(100, "lb"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/maksio/front.svg",
  23826. extra: 1549 / 1531,
  23827. bottom: 123.7 / 1674.5429
  23828. }
  23829. },
  23830. back: {
  23831. height: math.unit(1.5, "meters"),
  23832. weight: math.unit(100, "lb"),
  23833. name: "Back",
  23834. image: {
  23835. source: "./media/characters/maksio/back.svg",
  23836. extra: 1541 / 1509,
  23837. bottom: 97 / 1639
  23838. }
  23839. },
  23840. hand: {
  23841. height: math.unit(0.621, "feet"),
  23842. name: "Hand",
  23843. image: {
  23844. source: "./media/characters/maksio/hand.svg"
  23845. }
  23846. },
  23847. foot: {
  23848. height: math.unit(1.611, "feet"),
  23849. name: "Foot",
  23850. image: {
  23851. source: "./media/characters/maksio/foot.svg"
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Shrunken",
  23858. height: math.unit(10, "cm")
  23859. },
  23860. {
  23861. name: "Normal",
  23862. height: math.unit(150, "cm"),
  23863. default: true
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23869. {
  23870. front: {
  23871. height: math.unit(100, "feet"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/erza-bear/front.svg",
  23875. extra: 2449 / 2390,
  23876. bottom: 46 / 2494
  23877. }
  23878. },
  23879. back: {
  23880. height: math.unit(100, "feet"),
  23881. name: "Back",
  23882. image: {
  23883. source: "./media/characters/erza-bear/back.svg",
  23884. extra: 2489 / 2430,
  23885. bottom: 85.4 / 2480
  23886. }
  23887. },
  23888. tail: {
  23889. height: math.unit(42, "feet"),
  23890. name: "Tail",
  23891. image: {
  23892. source: "./media/characters/erza-bear/tail.svg"
  23893. }
  23894. },
  23895. tongue: {
  23896. height: math.unit(8, "feet"),
  23897. name: "Tongue",
  23898. image: {
  23899. source: "./media/characters/erza-bear/tongue.svg"
  23900. }
  23901. },
  23902. dick: {
  23903. height: math.unit(10.5, "feet"),
  23904. name: "Dick",
  23905. image: {
  23906. source: "./media/characters/erza-bear/dick.svg"
  23907. }
  23908. },
  23909. dickVertical: {
  23910. height: math.unit(16.9, "feet"),
  23911. name: "Dick (Vertical)",
  23912. image: {
  23913. source: "./media/characters/erza-bear/dick-vertical.svg"
  23914. }
  23915. },
  23916. },
  23917. [
  23918. {
  23919. name: "Macro",
  23920. height: math.unit(100, "feet"),
  23921. default: true
  23922. },
  23923. ]
  23924. ))
  23925. characterMakers.push(() => makeCharacter(
  23926. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23927. {
  23928. front: {
  23929. height: math.unit(172, "cm"),
  23930. weight: math.unit(73, "kg"),
  23931. name: "Front",
  23932. image: {
  23933. source: "./media/characters/violet-flor/front.svg",
  23934. extra: 1530 / 1442,
  23935. bottom: 61.9 / 1588.8
  23936. }
  23937. },
  23938. back: {
  23939. height: math.unit(180, "cm"),
  23940. weight: math.unit(73, "kg"),
  23941. name: "Back",
  23942. image: {
  23943. source: "./media/characters/violet-flor/back.svg",
  23944. extra: 1692 / 1630,
  23945. bottom: 20 / 1712
  23946. }
  23947. },
  23948. },
  23949. [
  23950. {
  23951. name: "Normal",
  23952. height: math.unit(172, "cm"),
  23953. default: true
  23954. },
  23955. ]
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23959. {
  23960. front: {
  23961. height: math.unit(6, "feet"),
  23962. weight: math.unit(220, "lb"),
  23963. name: "Front",
  23964. image: {
  23965. source: "./media/characters/lynn-rhea/front.svg",
  23966. extra: 310 / 273
  23967. }
  23968. },
  23969. back: {
  23970. height: math.unit(6, "feet"),
  23971. weight: math.unit(220, "lb"),
  23972. name: "Back",
  23973. image: {
  23974. source: "./media/characters/lynn-rhea/back.svg",
  23975. extra: 310 / 273
  23976. }
  23977. },
  23978. dicks: {
  23979. height: math.unit(0.9, "feet"),
  23980. name: "Dicks",
  23981. image: {
  23982. source: "./media/characters/lynn-rhea/dicks.svg"
  23983. }
  23984. },
  23985. slit: {
  23986. height: math.unit(0.4, "feet"),
  23987. name: "Slit",
  23988. image: {
  23989. source: "./media/characters/lynn-rhea/slit.svg"
  23990. }
  23991. },
  23992. },
  23993. [
  23994. {
  23995. name: "Micro",
  23996. height: math.unit(1, "inch")
  23997. },
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(60, "feet"),
  24001. default: true
  24002. },
  24003. {
  24004. name: "Megamacro",
  24005. height: math.unit(2, "miles")
  24006. },
  24007. {
  24008. name: "Gigamacro",
  24009. height: math.unit(3, "earths")
  24010. },
  24011. {
  24012. name: "Galactic",
  24013. height: math.unit(0.8, "galaxies")
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24019. {
  24020. front: {
  24021. height: math.unit(1600, "feet"),
  24022. weight: math.unit(85758785169, "kg"),
  24023. name: "Front",
  24024. image: {
  24025. source: "./media/characters/valathos/front.svg",
  24026. extra: 1451 / 1339
  24027. }
  24028. },
  24029. },
  24030. [
  24031. {
  24032. name: "Macro",
  24033. height: math.unit(1600, "feet"),
  24034. default: true
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24040. {
  24041. front: {
  24042. height: math.unit(7 + 5 / 12, "feet"),
  24043. weight: math.unit(300, "lb"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/azula/front.svg",
  24047. extra: 3208 / 2880,
  24048. bottom: 80.2 / 3277
  24049. }
  24050. },
  24051. back: {
  24052. height: math.unit(7 + 5 / 12, "feet"),
  24053. weight: math.unit(300, "lb"),
  24054. name: "Back",
  24055. image: {
  24056. source: "./media/characters/azula/back.svg",
  24057. extra: 3169 / 2822,
  24058. bottom: 150.6 / 3321
  24059. }
  24060. },
  24061. },
  24062. [
  24063. {
  24064. name: "Normal",
  24065. height: math.unit(7 + 5 / 12, "feet"),
  24066. default: true
  24067. },
  24068. {
  24069. name: "Big",
  24070. height: math.unit(20, "feet")
  24071. },
  24072. ]
  24073. ))
  24074. characterMakers.push(() => makeCharacter(
  24075. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24076. {
  24077. front: {
  24078. height: math.unit(5 + 1 / 12, "feet"),
  24079. weight: math.unit(110, "lb"),
  24080. name: "Front",
  24081. image: {
  24082. source: "./media/characters/rupert/front.svg",
  24083. extra: 1549 / 1495,
  24084. bottom: 54.2 / 1604.4
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Normal",
  24091. height: math.unit(5 + 1 / 12, "feet"),
  24092. default: true
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24098. {
  24099. front: {
  24100. height: math.unit(8 + 4 / 12, "feet"),
  24101. weight: math.unit(350, "lb"),
  24102. name: "Front",
  24103. image: {
  24104. source: "./media/characters/sheera-castellar/front.svg",
  24105. extra: 1957 / 1894,
  24106. bottom: 26.97 / 1975.017
  24107. }
  24108. },
  24109. side: {
  24110. height: math.unit(8 + 4 / 12, "feet"),
  24111. weight: math.unit(350, "lb"),
  24112. name: "Side",
  24113. image: {
  24114. source: "./media/characters/sheera-castellar/side.svg",
  24115. extra: 1957 / 1894
  24116. }
  24117. },
  24118. back: {
  24119. height: math.unit(8 + 4 / 12, "feet"),
  24120. weight: math.unit(350, "lb"),
  24121. name: "Back",
  24122. image: {
  24123. source: "./media/characters/sheera-castellar/back.svg",
  24124. extra: 1957 / 1894
  24125. }
  24126. },
  24127. angled: {
  24128. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24129. weight: math.unit(350, "lb"),
  24130. name: "Angled",
  24131. image: {
  24132. source: "./media/characters/sheera-castellar/angled.svg",
  24133. extra: 1807 / 1707,
  24134. bottom: 68 / 1875
  24135. }
  24136. },
  24137. genitals: {
  24138. height: math.unit(2.2, "feet"),
  24139. name: "Genitals",
  24140. image: {
  24141. source: "./media/characters/sheera-castellar/genitals.svg"
  24142. }
  24143. },
  24144. taur: {
  24145. height: math.unit(10 + 6/12, "feet"),
  24146. name: "Taur",
  24147. image: {
  24148. source: "./media/characters/sheera-castellar/taur.svg",
  24149. extra: 2017/1909,
  24150. bottom: 185/2202
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Normal",
  24157. height: math.unit(8 + 4 / 12, "feet")
  24158. },
  24159. {
  24160. name: "Macro",
  24161. height: math.unit(150, "feet"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Macro+",
  24166. height: math.unit(800, "feet")
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24172. {
  24173. front: {
  24174. height: math.unit(6, "feet"),
  24175. weight: math.unit(150, "lb"),
  24176. name: "Front",
  24177. image: {
  24178. source: "./media/characters/jaipur/front.svg",
  24179. extra: 3860 / 3731,
  24180. bottom: 287 / 4140
  24181. }
  24182. },
  24183. back: {
  24184. height: math.unit(6, "feet"),
  24185. weight: math.unit(150, "lb"),
  24186. name: "Back",
  24187. image: {
  24188. source: "./media/characters/jaipur/back.svg",
  24189. extra: 1637/1561,
  24190. bottom: 154/1791
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(1.85, "meters"),
  24198. default: true
  24199. },
  24200. {
  24201. name: "Macro",
  24202. height: math.unit(150, "meters")
  24203. },
  24204. {
  24205. name: "Macro+",
  24206. height: math.unit(0.5, "miles")
  24207. },
  24208. {
  24209. name: "Macro++",
  24210. height: math.unit(2.5, "miles")
  24211. },
  24212. {
  24213. name: "Macro+++",
  24214. height: math.unit(12, "miles")
  24215. },
  24216. {
  24217. name: "Macro++++",
  24218. height: math.unit(120, "miles")
  24219. },
  24220. {
  24221. name: "Macro+++++",
  24222. height: math.unit(1200, "miles")
  24223. },
  24224. ]
  24225. ))
  24226. characterMakers.push(() => makeCharacter(
  24227. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24228. {
  24229. front: {
  24230. height: math.unit(6, "feet"),
  24231. weight: math.unit(150, "lb"),
  24232. name: "Front",
  24233. image: {
  24234. source: "./media/characters/sheila-wolf/front.svg",
  24235. extra: 1931 / 1808,
  24236. bottom: 29.5 / 1960
  24237. }
  24238. },
  24239. dick: {
  24240. height: math.unit(1.464, "feet"),
  24241. name: "Dick",
  24242. image: {
  24243. source: "./media/characters/sheila-wolf/dick.svg"
  24244. }
  24245. },
  24246. muzzle: {
  24247. height: math.unit(0.513, "feet"),
  24248. name: "Muzzle",
  24249. image: {
  24250. source: "./media/characters/sheila-wolf/muzzle.svg"
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Macro",
  24257. height: math.unit(70, "feet"),
  24258. default: true
  24259. },
  24260. ]
  24261. ))
  24262. characterMakers.push(() => makeCharacter(
  24263. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24264. {
  24265. front: {
  24266. height: math.unit(32, "meters"),
  24267. weight: math.unit(300000, "kg"),
  24268. name: "Front",
  24269. image: {
  24270. source: "./media/characters/almor/front.svg",
  24271. extra: 1408 / 1322,
  24272. bottom: 94.6 / 1506.5
  24273. }
  24274. },
  24275. },
  24276. [
  24277. {
  24278. name: "Macro",
  24279. height: math.unit(32, "meters"),
  24280. default: true
  24281. },
  24282. ]
  24283. ))
  24284. characterMakers.push(() => makeCharacter(
  24285. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24286. {
  24287. front: {
  24288. height: math.unit(7, "feet"),
  24289. weight: math.unit(200, "lb"),
  24290. name: "Front",
  24291. image: {
  24292. source: "./media/characters/silver/front.svg",
  24293. extra: 472.1 / 450.5,
  24294. bottom: 26.5 / 499.424
  24295. }
  24296. },
  24297. },
  24298. [
  24299. {
  24300. name: "Normal",
  24301. height: math.unit(7, "feet"),
  24302. default: true
  24303. },
  24304. {
  24305. name: "Macro",
  24306. height: math.unit(800, "feet")
  24307. },
  24308. {
  24309. name: "Megamacro",
  24310. height: math.unit(250, "miles")
  24311. },
  24312. ]
  24313. ))
  24314. characterMakers.push(() => makeCharacter(
  24315. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24316. {
  24317. front: {
  24318. height: math.unit(6, "feet"),
  24319. weight: math.unit(150, "lb"),
  24320. name: "Front",
  24321. image: {
  24322. source: "./media/characters/pliskin/front.svg",
  24323. extra: 1469 / 1359,
  24324. bottom: 70 / 1540
  24325. }
  24326. },
  24327. },
  24328. [
  24329. {
  24330. name: "Micro",
  24331. height: math.unit(3, "inches")
  24332. },
  24333. {
  24334. name: "Normal",
  24335. height: math.unit(5 + 11 / 12, "feet"),
  24336. default: true
  24337. },
  24338. {
  24339. name: "Macro",
  24340. height: math.unit(120, "feet")
  24341. },
  24342. ]
  24343. ))
  24344. characterMakers.push(() => makeCharacter(
  24345. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24346. {
  24347. front: {
  24348. height: math.unit(6, "feet"),
  24349. weight: math.unit(150, "lb"),
  24350. name: "Front",
  24351. image: {
  24352. source: "./media/characters/sammy/front.svg",
  24353. extra: 1193 / 1089,
  24354. bottom: 30.5 / 1226
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Macro",
  24361. height: math.unit(1700, "feet"),
  24362. default: true
  24363. },
  24364. {
  24365. name: "Examacro",
  24366. height: math.unit(2.5e9, "lightyears")
  24367. },
  24368. ]
  24369. ))
  24370. characterMakers.push(() => makeCharacter(
  24371. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24372. {
  24373. front: {
  24374. height: math.unit(21, "meters"),
  24375. weight: math.unit(12, "tonnes"),
  24376. name: "Front",
  24377. image: {
  24378. source: "./media/characters/kuru/front.svg",
  24379. extra: 4301 / 3785,
  24380. bottom: 371.3 / 4691
  24381. }
  24382. },
  24383. },
  24384. [
  24385. {
  24386. name: "Macro",
  24387. height: math.unit(21, "meters"),
  24388. default: true
  24389. },
  24390. ]
  24391. ))
  24392. characterMakers.push(() => makeCharacter(
  24393. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24394. {
  24395. front: {
  24396. height: math.unit(23, "meters"),
  24397. weight: math.unit(12.2, "tonnes"),
  24398. name: "Front",
  24399. image: {
  24400. source: "./media/characters/rakka/front.svg",
  24401. extra: 4670 / 4169,
  24402. bottom: 301 / 4968.7
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Macro",
  24409. height: math.unit(23, "meters"),
  24410. default: true
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24416. {
  24417. front: {
  24418. height: math.unit(6, "feet"),
  24419. weight: math.unit(150, "lb"),
  24420. name: "Front",
  24421. image: {
  24422. source: "./media/characters/rhys-feline/front.svg",
  24423. extra: 2488 / 2308,
  24424. bottom: 35.67 / 2519.19
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Really Small",
  24431. height: math.unit(1, "nm")
  24432. },
  24433. {
  24434. name: "Micro",
  24435. height: math.unit(4, "inches")
  24436. },
  24437. {
  24438. name: "Normal",
  24439. height: math.unit(4 + 10 / 12, "feet"),
  24440. default: true
  24441. },
  24442. {
  24443. name: "Macro",
  24444. height: math.unit(100, "feet")
  24445. },
  24446. {
  24447. name: "Megamacto",
  24448. height: math.unit(50, "miles")
  24449. },
  24450. ]
  24451. ))
  24452. characterMakers.push(() => makeCharacter(
  24453. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24454. {
  24455. side: {
  24456. height: math.unit(30, "feet"),
  24457. weight: math.unit(35000, "kg"),
  24458. name: "Side",
  24459. image: {
  24460. source: "./media/characters/alydar/side.svg",
  24461. extra: 234 / 222,
  24462. bottom: 6.5 / 241
  24463. }
  24464. },
  24465. front: {
  24466. height: math.unit(30, "feet"),
  24467. weight: math.unit(35000, "kg"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/alydar/front.svg",
  24471. extra: 223.37 / 210.2,
  24472. bottom: 22.3 / 246.76
  24473. }
  24474. },
  24475. top: {
  24476. height: math.unit(64.54, "feet"),
  24477. weight: math.unit(35000, "kg"),
  24478. name: "Top",
  24479. image: {
  24480. source: "./media/characters/alydar/top.svg"
  24481. }
  24482. },
  24483. anthro: {
  24484. height: math.unit(30, "feet"),
  24485. weight: math.unit(9000, "kg"),
  24486. name: "Anthro",
  24487. image: {
  24488. source: "./media/characters/alydar/anthro.svg",
  24489. extra: 432 / 421,
  24490. bottom: 7.18 / 440
  24491. }
  24492. },
  24493. maw: {
  24494. height: math.unit(11.693, "feet"),
  24495. name: "Maw",
  24496. image: {
  24497. source: "./media/characters/alydar/maw.svg"
  24498. }
  24499. },
  24500. head: {
  24501. height: math.unit(11.693, "feet"),
  24502. name: "Head",
  24503. image: {
  24504. source: "./media/characters/alydar/head.svg"
  24505. }
  24506. },
  24507. headAlt: {
  24508. height: math.unit(12.861, "feet"),
  24509. name: "Head (Alt)",
  24510. image: {
  24511. source: "./media/characters/alydar/head-alt.svg"
  24512. }
  24513. },
  24514. wing: {
  24515. height: math.unit(20.712, "feet"),
  24516. name: "Wing",
  24517. image: {
  24518. source: "./media/characters/alydar/wing.svg"
  24519. }
  24520. },
  24521. wingFeather: {
  24522. height: math.unit(9.662, "feet"),
  24523. name: "Wing Feather",
  24524. image: {
  24525. source: "./media/characters/alydar/wing-feather.svg"
  24526. }
  24527. },
  24528. countourFeather: {
  24529. height: math.unit(4.154, "feet"),
  24530. name: "Contour Feather",
  24531. image: {
  24532. source: "./media/characters/alydar/contour-feather.svg"
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "Diplomatic",
  24539. height: math.unit(13, "feet"),
  24540. default: true
  24541. },
  24542. {
  24543. name: "Small",
  24544. height: math.unit(30, "feet")
  24545. },
  24546. {
  24547. name: "Normal",
  24548. height: math.unit(95, "feet"),
  24549. default: true
  24550. },
  24551. {
  24552. name: "Large",
  24553. height: math.unit(285, "feet")
  24554. },
  24555. {
  24556. name: "Incomprehensible",
  24557. height: math.unit(450, "megameters")
  24558. },
  24559. ]
  24560. ))
  24561. characterMakers.push(() => makeCharacter(
  24562. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24563. {
  24564. side: {
  24565. height: math.unit(11, "feet"),
  24566. weight: math.unit(1750, "kg"),
  24567. name: "Side",
  24568. image: {
  24569. source: "./media/characters/selicia/side.svg",
  24570. extra: 440 / 396,
  24571. bottom: 24.8 / 465.979
  24572. }
  24573. },
  24574. maw: {
  24575. height: math.unit(4.665, "feet"),
  24576. name: "Maw",
  24577. image: {
  24578. source: "./media/characters/selicia/maw.svg"
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(11, "feet"),
  24586. default: true
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24592. {
  24593. side: {
  24594. height: math.unit(2 + 6 / 12, "feet"),
  24595. weight: math.unit(30, "lb"),
  24596. name: "Side",
  24597. image: {
  24598. source: "./media/characters/layla/side.svg",
  24599. extra: 244 / 188,
  24600. bottom: 18.2 / 262.1
  24601. }
  24602. },
  24603. back: {
  24604. height: math.unit(2 + 6 / 12, "feet"),
  24605. weight: math.unit(30, "lb"),
  24606. name: "Back",
  24607. image: {
  24608. source: "./media/characters/layla/back.svg",
  24609. extra: 308 / 241.5,
  24610. bottom: 8.9 / 316.8
  24611. }
  24612. },
  24613. cumming: {
  24614. height: math.unit(2 + 6 / 12, "feet"),
  24615. weight: math.unit(30, "lb"),
  24616. name: "Cumming",
  24617. image: {
  24618. source: "./media/characters/layla/cumming.svg",
  24619. extra: 342 / 279,
  24620. bottom: 595 / 938
  24621. }
  24622. },
  24623. dickFlaccid: {
  24624. height: math.unit(2.595, "feet"),
  24625. name: "Flaccid Genitals",
  24626. image: {
  24627. source: "./media/characters/layla/dick-flaccid.svg"
  24628. }
  24629. },
  24630. dickErect: {
  24631. height: math.unit(2.359, "feet"),
  24632. name: "Erect Genitals",
  24633. image: {
  24634. source: "./media/characters/layla/dick-erect.svg"
  24635. }
  24636. },
  24637. dragon: {
  24638. height: math.unit(40, "feet"),
  24639. name: "Dragon",
  24640. image: {
  24641. source: "./media/characters/layla/dragon.svg",
  24642. extra: 610/535,
  24643. bottom: 367/977
  24644. }
  24645. },
  24646. taur: {
  24647. height: math.unit(30, "feet"),
  24648. name: "Taur",
  24649. image: {
  24650. source: "./media/characters/layla/taur.svg",
  24651. extra: 1268/1199,
  24652. bottom: 112/1380
  24653. }
  24654. },
  24655. },
  24656. [
  24657. {
  24658. name: "Micro",
  24659. height: math.unit(1, "inch")
  24660. },
  24661. {
  24662. name: "Small",
  24663. height: math.unit(1, "foot")
  24664. },
  24665. {
  24666. name: "Normal",
  24667. height: math.unit(2 + 6 / 12, "feet"),
  24668. default: true
  24669. },
  24670. {
  24671. name: "Macro",
  24672. height: math.unit(200, "feet")
  24673. },
  24674. {
  24675. name: "Megamacro",
  24676. height: math.unit(1000, "miles")
  24677. },
  24678. {
  24679. name: "Planetary",
  24680. height: math.unit(8000, "miles")
  24681. },
  24682. {
  24683. name: "True Layla",
  24684. height: math.unit(200000 * 7, "multiverses")
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24690. {
  24691. back: {
  24692. height: math.unit(10.5, "feet"),
  24693. weight: math.unit(800, "lb"),
  24694. name: "Back",
  24695. image: {
  24696. source: "./media/characters/knox/back.svg",
  24697. extra: 1486 / 1089,
  24698. bottom: 107 / 1601.4
  24699. }
  24700. },
  24701. side: {
  24702. height: math.unit(10.5, "feet"),
  24703. weight: math.unit(800, "lb"),
  24704. name: "Side",
  24705. image: {
  24706. source: "./media/characters/knox/side.svg",
  24707. extra: 244 / 218,
  24708. bottom: 14 / 260
  24709. }
  24710. },
  24711. },
  24712. [
  24713. {
  24714. name: "Compact",
  24715. height: math.unit(10.5, "feet"),
  24716. default: true
  24717. },
  24718. {
  24719. name: "Dynamax",
  24720. height: math.unit(210, "feet")
  24721. },
  24722. {
  24723. name: "Full Macro",
  24724. height: math.unit(850, "feet")
  24725. },
  24726. ]
  24727. ))
  24728. characterMakers.push(() => makeCharacter(
  24729. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24730. {
  24731. front: {
  24732. height: math.unit(28, "feet"),
  24733. weight: math.unit(10500, "lb"),
  24734. name: "Front",
  24735. image: {
  24736. source: "./media/characters/kayda/front.svg",
  24737. extra: 1536 / 1428,
  24738. bottom: 68.7 / 1603
  24739. }
  24740. },
  24741. back: {
  24742. height: math.unit(28, "feet"),
  24743. weight: math.unit(10500, "lb"),
  24744. name: "Back",
  24745. image: {
  24746. source: "./media/characters/kayda/back.svg",
  24747. extra: 1557 / 1464,
  24748. bottom: 39.5 / 1597.49
  24749. }
  24750. },
  24751. dick: {
  24752. height: math.unit(3.858, "feet"),
  24753. name: "Dick",
  24754. image: {
  24755. source: "./media/characters/kayda/dick.svg"
  24756. }
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Macro",
  24762. height: math.unit(28, "feet"),
  24763. default: true
  24764. },
  24765. ]
  24766. ))
  24767. characterMakers.push(() => makeCharacter(
  24768. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24769. {
  24770. front: {
  24771. height: math.unit(10 + 11 / 12, "feet"),
  24772. weight: math.unit(1400, "lb"),
  24773. name: "Front",
  24774. image: {
  24775. source: "./media/characters/brian/front.svg",
  24776. extra: 737 / 692,
  24777. bottom: 55.4 / 785
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Normal",
  24784. height: math.unit(10 + 11 / 12, "feet"),
  24785. default: true
  24786. },
  24787. ]
  24788. ))
  24789. characterMakers.push(() => makeCharacter(
  24790. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24791. {
  24792. front: {
  24793. height: math.unit(5 + 8 / 12, "feet"),
  24794. weight: math.unit(140, "lb"),
  24795. name: "Front",
  24796. image: {
  24797. source: "./media/characters/khemri/front.svg",
  24798. extra: 4780 / 4059,
  24799. bottom: 80.1 / 4859.25
  24800. }
  24801. },
  24802. },
  24803. [
  24804. {
  24805. name: "Micro",
  24806. height: math.unit(6, "inches")
  24807. },
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(5 + 8 / 12, "feet"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24817. {
  24818. front: {
  24819. height: math.unit(13, "feet"),
  24820. weight: math.unit(1700, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/felix-braveheart/front.svg",
  24824. extra: 1222 / 1157,
  24825. bottom: 53.2 / 1280
  24826. }
  24827. },
  24828. back: {
  24829. height: math.unit(13, "feet"),
  24830. weight: math.unit(1700, "lb"),
  24831. name: "Back",
  24832. image: {
  24833. source: "./media/characters/felix-braveheart/back.svg",
  24834. extra: 1277 / 1203,
  24835. bottom: 50.2 / 1327
  24836. }
  24837. },
  24838. feral: {
  24839. height: math.unit(6, "feet"),
  24840. weight: math.unit(400, "lb"),
  24841. name: "Feral",
  24842. image: {
  24843. source: "./media/characters/felix-braveheart/feral.svg",
  24844. extra: 682 / 625,
  24845. bottom: 6.9 / 688
  24846. }
  24847. },
  24848. },
  24849. [
  24850. {
  24851. name: "Normal",
  24852. height: math.unit(13, "feet"),
  24853. default: true
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24859. {
  24860. side: {
  24861. height: math.unit(5 + 11 / 12, "feet"),
  24862. weight: math.unit(1400, "lb"),
  24863. name: "Side",
  24864. image: {
  24865. source: "./media/characters/shadow-blade/side.svg",
  24866. extra: 1726 / 1267,
  24867. bottom: 58.4 / 1785
  24868. }
  24869. },
  24870. },
  24871. [
  24872. {
  24873. name: "Normal",
  24874. height: math.unit(5 + 11 / 12, "feet"),
  24875. default: true
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24881. {
  24882. front: {
  24883. height: math.unit(1 + 6 / 12, "feet"),
  24884. weight: math.unit(25, "lb"),
  24885. name: "Front",
  24886. image: {
  24887. source: "./media/characters/karla-halldor/front.svg",
  24888. extra: 1459 / 1383,
  24889. bottom: 12 / 1472
  24890. }
  24891. },
  24892. },
  24893. [
  24894. {
  24895. name: "Normal",
  24896. height: math.unit(1 + 6 / 12, "feet"),
  24897. default: true
  24898. },
  24899. ]
  24900. ))
  24901. characterMakers.push(() => makeCharacter(
  24902. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24903. {
  24904. front: {
  24905. height: math.unit(6 + 2 / 12, "feet"),
  24906. weight: math.unit(160, "lb"),
  24907. name: "Front",
  24908. image: {
  24909. source: "./media/characters/ariam/front.svg",
  24910. extra: 1073/976,
  24911. bottom: 52/1125
  24912. }
  24913. },
  24914. back: {
  24915. height: math.unit(6 + 2/12, "feet"),
  24916. weight: math.unit(160, "lb"),
  24917. name: "Back",
  24918. image: {
  24919. source: "./media/characters/ariam/back.svg",
  24920. extra: 1103/1023,
  24921. bottom: 9/1112
  24922. }
  24923. },
  24924. dressed: {
  24925. height: math.unit(6 + 2/12, "feet"),
  24926. weight: math.unit(160, "lb"),
  24927. name: "Dressed",
  24928. image: {
  24929. source: "./media/characters/ariam/dressed.svg",
  24930. extra: 1099/1009,
  24931. bottom: 25/1124
  24932. }
  24933. },
  24934. squatting: {
  24935. height: math.unit(4.1, "feet"),
  24936. weight: math.unit(160, "lb"),
  24937. name: "Squatting",
  24938. image: {
  24939. source: "./media/characters/ariam/squatting.svg",
  24940. extra: 2617 / 2112,
  24941. bottom: 61.2 / 2681,
  24942. }
  24943. },
  24944. },
  24945. [
  24946. {
  24947. name: "Normal",
  24948. height: math.unit(6 + 2 / 12, "feet"),
  24949. default: true
  24950. },
  24951. {
  24952. name: "Normal+",
  24953. height: math.unit(4, "meters")
  24954. },
  24955. {
  24956. name: "Macro",
  24957. height: math.unit(50, "meters")
  24958. },
  24959. {
  24960. name: "Macro+",
  24961. height: math.unit(100, "meters")
  24962. },
  24963. {
  24964. name: "Megamacro",
  24965. height: math.unit(20, "km")
  24966. },
  24967. {
  24968. name: "Caretaker",
  24969. height: math.unit(444, "megameters")
  24970. },
  24971. ]
  24972. ))
  24973. characterMakers.push(() => makeCharacter(
  24974. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24975. {
  24976. front: {
  24977. height: math.unit(1.67, "meters"),
  24978. weight: math.unit(140, "lb"),
  24979. name: "Front",
  24980. image: {
  24981. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24982. extra: 438 / 410,
  24983. bottom: 0.75 / 439
  24984. }
  24985. },
  24986. },
  24987. [
  24988. {
  24989. name: "Shrunken",
  24990. height: math.unit(7.6, "cm")
  24991. },
  24992. {
  24993. name: "Human Scale",
  24994. height: math.unit(1.67, "meters")
  24995. },
  24996. {
  24997. name: "Wolxi Scale",
  24998. height: math.unit(36.7, "meters"),
  24999. default: true
  25000. },
  25001. ]
  25002. ))
  25003. characterMakers.push(() => makeCharacter(
  25004. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25005. {
  25006. front: {
  25007. height: math.unit(1.73, "meters"),
  25008. weight: math.unit(240, "lb"),
  25009. name: "Front",
  25010. image: {
  25011. source: "./media/characters/izue-two-mothers/front.svg",
  25012. extra: 469 / 437,
  25013. bottom: 1.24 / 470.6
  25014. }
  25015. },
  25016. },
  25017. [
  25018. {
  25019. name: "Shrunken",
  25020. height: math.unit(7.86, "cm")
  25021. },
  25022. {
  25023. name: "Human Scale",
  25024. height: math.unit(1.73, "meters")
  25025. },
  25026. {
  25027. name: "Wolxi Scale",
  25028. height: math.unit(38, "meters"),
  25029. default: true
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25035. {
  25036. front: {
  25037. height: math.unit(1.55, "meters"),
  25038. weight: math.unit(120, "lb"),
  25039. name: "Front",
  25040. image: {
  25041. source: "./media/characters/teeku-love-shack/front.svg",
  25042. extra: 387 / 362,
  25043. bottom: 1.51 / 388
  25044. }
  25045. },
  25046. },
  25047. [
  25048. {
  25049. name: "Shrunken",
  25050. height: math.unit(7, "cm")
  25051. },
  25052. {
  25053. name: "Human Scale",
  25054. height: math.unit(1.55, "meters")
  25055. },
  25056. {
  25057. name: "Wolxi Scale",
  25058. height: math.unit(34.1, "meters"),
  25059. default: true
  25060. },
  25061. ]
  25062. ))
  25063. characterMakers.push(() => makeCharacter(
  25064. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25065. {
  25066. front: {
  25067. height: math.unit(1.83, "meters"),
  25068. weight: math.unit(135, "lb"),
  25069. name: "Front",
  25070. image: {
  25071. source: "./media/characters/dejma-the-red/front.svg",
  25072. extra: 480 / 458,
  25073. bottom: 1.8 / 482
  25074. }
  25075. },
  25076. },
  25077. [
  25078. {
  25079. name: "Shrunken",
  25080. height: math.unit(8.3, "cm")
  25081. },
  25082. {
  25083. name: "Human Scale",
  25084. height: math.unit(1.83, "meters")
  25085. },
  25086. {
  25087. name: "Wolxi Scale",
  25088. height: math.unit(40, "meters"),
  25089. default: true
  25090. },
  25091. ]
  25092. ))
  25093. characterMakers.push(() => makeCharacter(
  25094. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25095. {
  25096. front: {
  25097. height: math.unit(1.78, "meters"),
  25098. weight: math.unit(65, "kg"),
  25099. name: "Front",
  25100. image: {
  25101. source: "./media/characters/aki/front.svg",
  25102. extra: 452 / 415
  25103. }
  25104. },
  25105. frontNsfw: {
  25106. height: math.unit(1.78, "meters"),
  25107. weight: math.unit(65, "kg"),
  25108. name: "Front (NSFW)",
  25109. image: {
  25110. source: "./media/characters/aki/front-nsfw.svg",
  25111. extra: 452 / 415
  25112. }
  25113. },
  25114. back: {
  25115. height: math.unit(1.78, "meters"),
  25116. weight: math.unit(65, "kg"),
  25117. name: "Back",
  25118. image: {
  25119. source: "./media/characters/aki/back.svg",
  25120. extra: 452 / 415
  25121. }
  25122. },
  25123. rump: {
  25124. height: math.unit(2.05, "feet"),
  25125. name: "Rump",
  25126. image: {
  25127. source: "./media/characters/aki/rump.svg"
  25128. }
  25129. },
  25130. dick: {
  25131. height: math.unit(0.95, "feet"),
  25132. name: "Dick",
  25133. image: {
  25134. source: "./media/characters/aki/dick.svg"
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Micro",
  25141. height: math.unit(15, "cm")
  25142. },
  25143. {
  25144. name: "Normal",
  25145. height: math.unit(178, "cm"),
  25146. default: true
  25147. },
  25148. {
  25149. name: "Macro",
  25150. height: math.unit(214, "m")
  25151. },
  25152. {
  25153. name: "Macro+",
  25154. height: math.unit(534, "m")
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25160. {
  25161. front: {
  25162. height: math.unit(5 + 5 / 12, "feet"),
  25163. weight: math.unit(120, "lb"),
  25164. name: "Front",
  25165. image: {
  25166. source: "./media/characters/ari/front.svg",
  25167. extra: 1550/1471,
  25168. bottom: 39/1589
  25169. }
  25170. },
  25171. },
  25172. [
  25173. {
  25174. name: "Normal",
  25175. height: math.unit(5 + 5 / 12, "feet")
  25176. },
  25177. {
  25178. name: "Macro",
  25179. height: math.unit(100, "feet"),
  25180. default: true
  25181. },
  25182. {
  25183. name: "Megamacro",
  25184. height: math.unit(100, "miles")
  25185. },
  25186. {
  25187. name: "Gigamacro",
  25188. height: math.unit(80000, "miles")
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25194. {
  25195. side: {
  25196. height: math.unit(9, "feet"),
  25197. weight: math.unit(400, "kg"),
  25198. name: "Side",
  25199. image: {
  25200. source: "./media/characters/bolt/side.svg",
  25201. extra: 1126 / 896,
  25202. bottom: 60 / 1187.3,
  25203. }
  25204. },
  25205. },
  25206. [
  25207. {
  25208. name: "Micro",
  25209. height: math.unit(5, "inches")
  25210. },
  25211. {
  25212. name: "Normal",
  25213. height: math.unit(9, "feet"),
  25214. default: true
  25215. },
  25216. {
  25217. name: "Macro",
  25218. height: math.unit(700, "feet")
  25219. },
  25220. {
  25221. name: "Max Size",
  25222. height: math.unit(1.52e22, "yottameters")
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25228. {
  25229. front: {
  25230. height: math.unit(4.3, "meters"),
  25231. weight: math.unit(3, "tons"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/draekon-sylviar/front.svg",
  25235. extra: 2072/1512,
  25236. bottom: 74/2146
  25237. }
  25238. },
  25239. back: {
  25240. height: math.unit(4.3, "meters"),
  25241. weight: math.unit(3, "tons"),
  25242. name: "Back",
  25243. image: {
  25244. source: "./media/characters/draekon-sylviar/back.svg",
  25245. extra: 1639/1483,
  25246. bottom: 41/1680
  25247. }
  25248. },
  25249. feral: {
  25250. height: math.unit(1.15, "meters"),
  25251. weight: math.unit(3, "tons"),
  25252. name: "Feral",
  25253. image: {
  25254. source: "./media/characters/draekon-sylviar/feral.svg",
  25255. extra: 1033/395,
  25256. bottom: 130/1163
  25257. }
  25258. },
  25259. maw: {
  25260. height: math.unit(1.3, "meters"),
  25261. name: "Maw",
  25262. image: {
  25263. source: "./media/characters/draekon-sylviar/maw.svg"
  25264. }
  25265. },
  25266. mawSeparated: {
  25267. height: math.unit(1.53, "meters"),
  25268. name: "Separated Maw",
  25269. image: {
  25270. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25271. }
  25272. },
  25273. tail: {
  25274. height: math.unit(1.15, "meters"),
  25275. name: "Tail",
  25276. image: {
  25277. source: "./media/characters/draekon-sylviar/tail.svg"
  25278. }
  25279. },
  25280. tailDick: {
  25281. height: math.unit(1.15, "meters"),
  25282. name: "Tail (Dick)",
  25283. image: {
  25284. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25285. }
  25286. },
  25287. tailDickSeparated: {
  25288. height: math.unit(1.19, "meters"),
  25289. name: "Tail (Separated Dick)",
  25290. image: {
  25291. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25292. }
  25293. },
  25294. slit: {
  25295. height: math.unit(1, "meters"),
  25296. name: "Slit",
  25297. image: {
  25298. source: "./media/characters/draekon-sylviar/slit.svg"
  25299. }
  25300. },
  25301. dick: {
  25302. height: math.unit(1.15, "meters"),
  25303. name: "Dick",
  25304. image: {
  25305. source: "./media/characters/draekon-sylviar/dick.svg"
  25306. }
  25307. },
  25308. dickSeparated: {
  25309. height: math.unit(1.1, "meters"),
  25310. name: "Separated Dick",
  25311. image: {
  25312. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25313. }
  25314. },
  25315. sheath: {
  25316. height: math.unit(1.15, "meters"),
  25317. name: "Sheath",
  25318. image: {
  25319. source: "./media/characters/draekon-sylviar/sheath.svg"
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Small",
  25326. height: math.unit(4.53 / 2, "meters"),
  25327. default: true
  25328. },
  25329. {
  25330. name: "Normal",
  25331. height: math.unit(4.53, "meters"),
  25332. default: true
  25333. },
  25334. {
  25335. name: "Large",
  25336. height: math.unit(4.53 * 2, "meters"),
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(6 + 2 / 12, "feet"),
  25345. weight: math.unit(180, "lb"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/brawler/front.svg",
  25349. extra: 3301 / 3027,
  25350. bottom: 138 / 3439
  25351. }
  25352. },
  25353. },
  25354. [
  25355. {
  25356. name: "Normal",
  25357. height: math.unit(6 + 2 / 12, "feet"),
  25358. default: true
  25359. },
  25360. ]
  25361. ))
  25362. characterMakers.push(() => makeCharacter(
  25363. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25364. {
  25365. front: {
  25366. height: math.unit(11, "feet"),
  25367. weight: math.unit(1000, "lb"),
  25368. name: "Front",
  25369. image: {
  25370. source: "./media/characters/alex/front.svg",
  25371. bottom: 44.5 / 620
  25372. }
  25373. },
  25374. },
  25375. [
  25376. {
  25377. name: "Micro",
  25378. height: math.unit(5, "inches")
  25379. },
  25380. {
  25381. name: "Normal",
  25382. height: math.unit(11, "feet"),
  25383. default: true
  25384. },
  25385. {
  25386. name: "Macro",
  25387. height: math.unit(9.5e9, "feet")
  25388. },
  25389. {
  25390. name: "Max Size",
  25391. height: math.unit(1.4e283, "yottameters")
  25392. },
  25393. ]
  25394. ))
  25395. characterMakers.push(() => makeCharacter(
  25396. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25397. {
  25398. female: {
  25399. height: math.unit(29.9, "m"),
  25400. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25401. name: "Female",
  25402. image: {
  25403. source: "./media/characters/zenari/female.svg",
  25404. extra: 3281.6 / 3217,
  25405. bottom: 72.2 / 3353
  25406. }
  25407. },
  25408. male: {
  25409. height: math.unit(27.7, "m"),
  25410. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25411. name: "Male",
  25412. image: {
  25413. source: "./media/characters/zenari/male.svg",
  25414. extra: 3008 / 2991,
  25415. bottom: 54.6 / 3069
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Macro",
  25422. height: math.unit(29.7, "meters"),
  25423. default: true
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25429. {
  25430. female: {
  25431. height: math.unit(23.8, "m"),
  25432. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25433. name: "Female",
  25434. image: {
  25435. source: "./media/characters/mactarian/female.svg",
  25436. extra: 2662 / 2569,
  25437. bottom: 73 / 2736
  25438. }
  25439. },
  25440. male: {
  25441. height: math.unit(23.8, "m"),
  25442. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25443. name: "Male",
  25444. image: {
  25445. source: "./media/characters/mactarian/male.svg",
  25446. extra: 2673 / 2600,
  25447. bottom: 76 / 2750
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Macro",
  25454. height: math.unit(23.8, "meters"),
  25455. default: true
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25461. {
  25462. female: {
  25463. height: math.unit(19.3, "m"),
  25464. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25465. name: "Female",
  25466. image: {
  25467. source: "./media/characters/umok/female.svg",
  25468. extra: 2186 / 2078,
  25469. bottom: 87 / 2277
  25470. }
  25471. },
  25472. male: {
  25473. height: math.unit(19.5, "m"),
  25474. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25475. name: "Male",
  25476. image: {
  25477. source: "./media/characters/umok/male.svg",
  25478. extra: 2233 / 2140,
  25479. bottom: 24.4 / 2258
  25480. }
  25481. },
  25482. },
  25483. [
  25484. {
  25485. name: "Macro",
  25486. height: math.unit(19.3, "meters"),
  25487. default: true
  25488. },
  25489. ]
  25490. ))
  25491. characterMakers.push(() => makeCharacter(
  25492. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25493. {
  25494. female: {
  25495. height: math.unit(26.15, "m"),
  25496. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25497. name: "Female",
  25498. image: {
  25499. source: "./media/characters/joraxian/female.svg",
  25500. extra: 2912 / 2824,
  25501. bottom: 36 / 2956
  25502. }
  25503. },
  25504. male: {
  25505. height: math.unit(25.4, "m"),
  25506. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25507. name: "Male",
  25508. image: {
  25509. source: "./media/characters/joraxian/male.svg",
  25510. extra: 2877 / 2721,
  25511. bottom: 82 / 2967
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Macro",
  25518. height: math.unit(26.15, "meters"),
  25519. default: true
  25520. },
  25521. ]
  25522. ))
  25523. characterMakers.push(() => makeCharacter(
  25524. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25525. {
  25526. female: {
  25527. height: math.unit(21.6, "m"),
  25528. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25529. name: "Female",
  25530. image: {
  25531. source: "./media/characters/sthara/female.svg",
  25532. extra: 2516 / 2347,
  25533. bottom: 21.5 / 2537
  25534. }
  25535. },
  25536. male: {
  25537. height: math.unit(24, "m"),
  25538. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25539. name: "Male",
  25540. image: {
  25541. source: "./media/characters/sthara/male.svg",
  25542. extra: 2732 / 2607,
  25543. bottom: 23 / 2732
  25544. }
  25545. },
  25546. },
  25547. [
  25548. {
  25549. name: "Macro",
  25550. height: math.unit(21.6, "meters"),
  25551. default: true
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25557. {
  25558. front: {
  25559. height: math.unit(6 + 4 / 12, "feet"),
  25560. weight: math.unit(175, "lb"),
  25561. name: "Front",
  25562. image: {
  25563. source: "./media/characters/luka-bryzant/front.svg",
  25564. extra: 311 / 289,
  25565. bottom: 4 / 315
  25566. }
  25567. },
  25568. back: {
  25569. height: math.unit(6 + 4 / 12, "feet"),
  25570. weight: math.unit(175, "lb"),
  25571. name: "Back",
  25572. image: {
  25573. source: "./media/characters/luka-bryzant/back.svg",
  25574. extra: 311 / 289,
  25575. bottom: 3.8 / 313.7
  25576. }
  25577. },
  25578. },
  25579. [
  25580. {
  25581. name: "Micro",
  25582. height: math.unit(10, "inches")
  25583. },
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(6 + 4 / 12, "feet"),
  25587. default: true
  25588. },
  25589. {
  25590. name: "Large",
  25591. height: math.unit(12, "feet")
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25597. {
  25598. front: {
  25599. height: math.unit(5 + 7 / 12, "feet"),
  25600. weight: math.unit(185, "lb"),
  25601. name: "Front",
  25602. image: {
  25603. source: "./media/characters/aman-aquila/front.svg",
  25604. extra: 1013 / 976,
  25605. bottom: 45.6 / 1057
  25606. }
  25607. },
  25608. side: {
  25609. height: math.unit(5 + 7 / 12, "feet"),
  25610. weight: math.unit(185, "lb"),
  25611. name: "Side",
  25612. image: {
  25613. source: "./media/characters/aman-aquila/side.svg",
  25614. extra: 1054 / 1011,
  25615. bottom: 15 / 1070
  25616. }
  25617. },
  25618. back: {
  25619. height: math.unit(5 + 7 / 12, "feet"),
  25620. weight: math.unit(185, "lb"),
  25621. name: "Back",
  25622. image: {
  25623. source: "./media/characters/aman-aquila/back.svg",
  25624. extra: 1026 / 970,
  25625. bottom: 12 / 1039
  25626. }
  25627. },
  25628. head: {
  25629. height: math.unit(1.211, "feet"),
  25630. name: "Head",
  25631. image: {
  25632. source: "./media/characters/aman-aquila/head.svg",
  25633. }
  25634. },
  25635. },
  25636. [
  25637. {
  25638. name: "Minimicro",
  25639. height: math.unit(0.057, "inches")
  25640. },
  25641. {
  25642. name: "Micro",
  25643. height: math.unit(7, "inches")
  25644. },
  25645. {
  25646. name: "Mini",
  25647. height: math.unit(3 + 7 / 12, "feet")
  25648. },
  25649. {
  25650. name: "Normal",
  25651. height: math.unit(5 + 7 / 12, "feet"),
  25652. default: true
  25653. },
  25654. {
  25655. name: "Macro",
  25656. height: math.unit(157 + 7 / 12, "feet")
  25657. },
  25658. {
  25659. name: "Megamacro",
  25660. height: math.unit(1557 + 7 / 12, "feet")
  25661. },
  25662. {
  25663. name: "Gigamacro",
  25664. height: math.unit(15557 + 7 / 12, "feet")
  25665. },
  25666. ]
  25667. ))
  25668. characterMakers.push(() => makeCharacter(
  25669. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25670. {
  25671. front: {
  25672. height: math.unit(3 + 2 / 12, "inches"),
  25673. weight: math.unit(0.3, "ounces"),
  25674. name: "Front",
  25675. image: {
  25676. source: "./media/characters/hiphae/front.svg",
  25677. extra: 1931 / 1683,
  25678. bottom: 24 / 1955
  25679. }
  25680. },
  25681. },
  25682. [
  25683. {
  25684. name: "Normal",
  25685. height: math.unit(3 + 1 / 2, "inches"),
  25686. default: true
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(5 + 10 / 12, "feet"),
  25695. weight: math.unit(165, "lb"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/nicky/front.svg",
  25699. extra: 3144 / 2886,
  25700. bottom: 45.6 / 3192
  25701. }
  25702. },
  25703. back: {
  25704. height: math.unit(5 + 10 / 12, "feet"),
  25705. weight: math.unit(165, "lb"),
  25706. name: "Back",
  25707. image: {
  25708. source: "./media/characters/nicky/back.svg",
  25709. extra: 3055 / 2804,
  25710. bottom: 28.4 / 3087
  25711. }
  25712. },
  25713. frontclothed: {
  25714. height: math.unit(5 + 10 / 12, "feet"),
  25715. weight: math.unit(165, "lb"),
  25716. name: "Front-clothed",
  25717. image: {
  25718. source: "./media/characters/nicky/front-clothed.svg",
  25719. extra: 3184.9 / 2926.9,
  25720. bottom: 86.5 / 3239.9
  25721. }
  25722. },
  25723. foot: {
  25724. height: math.unit(1.16, "feet"),
  25725. name: "Foot",
  25726. image: {
  25727. source: "./media/characters/nicky/foot.svg"
  25728. }
  25729. },
  25730. feet: {
  25731. height: math.unit(1.34, "feet"),
  25732. name: "Feet",
  25733. image: {
  25734. source: "./media/characters/nicky/feet.svg"
  25735. }
  25736. },
  25737. maw: {
  25738. height: math.unit(0.9, "feet"),
  25739. name: "Maw",
  25740. image: {
  25741. source: "./media/characters/nicky/maw.svg"
  25742. }
  25743. },
  25744. },
  25745. [
  25746. {
  25747. name: "Normal",
  25748. height: math.unit(5 + 10 / 12, "feet"),
  25749. default: true
  25750. },
  25751. {
  25752. name: "Macro",
  25753. height: math.unit(60, "feet")
  25754. },
  25755. {
  25756. name: "Megamacro",
  25757. height: math.unit(1, "mile")
  25758. },
  25759. ]
  25760. ))
  25761. characterMakers.push(() => makeCharacter(
  25762. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25763. {
  25764. side: {
  25765. height: math.unit(10, "feet"),
  25766. weight: math.unit(600, "lb"),
  25767. name: "Side",
  25768. image: {
  25769. source: "./media/characters/blair/side.svg",
  25770. bottom: 16.6 / 475,
  25771. extra: 458 / 431
  25772. }
  25773. },
  25774. },
  25775. [
  25776. {
  25777. name: "Micro",
  25778. height: math.unit(8, "inches")
  25779. },
  25780. {
  25781. name: "Normal",
  25782. height: math.unit(10, "feet"),
  25783. default: true
  25784. },
  25785. {
  25786. name: "Macro",
  25787. height: math.unit(180, "feet")
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(5 + 4 / 12, "feet"),
  25796. weight: math.unit(125, "lb"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/fisher/front.svg",
  25800. extra: 444 / 390,
  25801. bottom: 2 / 444.8
  25802. }
  25803. },
  25804. },
  25805. [
  25806. {
  25807. name: "Micro",
  25808. height: math.unit(4, "inches")
  25809. },
  25810. {
  25811. name: "Normal",
  25812. height: math.unit(5 + 4 / 12, "feet"),
  25813. default: true
  25814. },
  25815. {
  25816. name: "Macro",
  25817. height: math.unit(100, "feet")
  25818. },
  25819. ]
  25820. ))
  25821. characterMakers.push(() => makeCharacter(
  25822. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25823. {
  25824. front: {
  25825. height: math.unit(6.71, "feet"),
  25826. weight: math.unit(200, "lb"),
  25827. capacity: math.unit(1000000, "people"),
  25828. name: "Front",
  25829. image: {
  25830. source: "./media/characters/gliss/front.svg",
  25831. extra: 2347 / 2231,
  25832. bottom: 113 / 2462
  25833. }
  25834. },
  25835. hammerspaceSize: {
  25836. height: math.unit(6.71 * 717, "feet"),
  25837. weight: math.unit(200, "lb"),
  25838. capacity: math.unit(1000000, "people"),
  25839. name: "Hammerspace Size",
  25840. image: {
  25841. source: "./media/characters/gliss/front.svg",
  25842. extra: 2347 / 2231,
  25843. bottom: 113 / 2462
  25844. }
  25845. },
  25846. },
  25847. [
  25848. {
  25849. name: "Normal",
  25850. height: math.unit(6.71, "feet"),
  25851. default: true
  25852. },
  25853. ]
  25854. ))
  25855. characterMakers.push(() => makeCharacter(
  25856. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25857. {
  25858. side: {
  25859. height: math.unit(1.44, "m"),
  25860. weight: math.unit(80, "kg"),
  25861. name: "Side",
  25862. image: {
  25863. source: "./media/characters/dune-anderson/side.svg",
  25864. bottom: 49 / 1426
  25865. }
  25866. },
  25867. },
  25868. [
  25869. {
  25870. name: "Wolf-sized",
  25871. height: math.unit(1.44, "meters")
  25872. },
  25873. {
  25874. name: "Normal",
  25875. height: math.unit(5.05, "meters"),
  25876. default: true
  25877. },
  25878. {
  25879. name: "Big",
  25880. height: math.unit(14.4, "meters")
  25881. },
  25882. {
  25883. name: "Huge",
  25884. height: math.unit(144, "meters")
  25885. },
  25886. ]
  25887. ))
  25888. characterMakers.push(() => makeCharacter(
  25889. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25890. {
  25891. front: {
  25892. height: math.unit(7, "feet"),
  25893. weight: math.unit(425, "lb"),
  25894. name: "Front",
  25895. image: {
  25896. source: "./media/characters/hind/front.svg",
  25897. extra: 2091 / 1860,
  25898. bottom: 129 / 2220
  25899. }
  25900. },
  25901. back: {
  25902. height: math.unit(7, "feet"),
  25903. weight: math.unit(425, "lb"),
  25904. name: "Back",
  25905. image: {
  25906. source: "./media/characters/hind/back.svg",
  25907. extra: 2091 / 1860,
  25908. bottom: 24.6 / 2309
  25909. }
  25910. },
  25911. tail: {
  25912. height: math.unit(2.8, "feet"),
  25913. name: "Tail",
  25914. image: {
  25915. source: "./media/characters/hind/tail.svg"
  25916. }
  25917. },
  25918. head: {
  25919. height: math.unit(2.55, "feet"),
  25920. name: "Head",
  25921. image: {
  25922. source: "./media/characters/hind/head.svg"
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "XS",
  25929. height: math.unit(0.7, "feet")
  25930. },
  25931. {
  25932. name: "Normal",
  25933. height: math.unit(7, "feet"),
  25934. default: true
  25935. },
  25936. {
  25937. name: "XL",
  25938. height: math.unit(70, "feet")
  25939. },
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25944. {
  25945. front: {
  25946. height: math.unit(2.1, "meters"),
  25947. weight: math.unit(150, "lb"),
  25948. name: "Front",
  25949. image: {
  25950. source: "./media/characters/tharquench-sizestealer/front.svg",
  25951. extra: 1605/1470,
  25952. bottom: 36/1641
  25953. }
  25954. },
  25955. frontAlt: {
  25956. height: math.unit(2.1, "meters"),
  25957. weight: math.unit(150, "lb"),
  25958. name: "Front (Alt)",
  25959. image: {
  25960. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25961. extra: 2318 / 2063,
  25962. bottom: 93.4 / 2410
  25963. }
  25964. },
  25965. },
  25966. [
  25967. {
  25968. name: "Nano",
  25969. height: math.unit(1, "mm")
  25970. },
  25971. {
  25972. name: "Micro",
  25973. height: math.unit(1, "cm")
  25974. },
  25975. {
  25976. name: "Normal",
  25977. height: math.unit(2.1, "meters"),
  25978. default: true
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(7 + 5 / 12, "feet"),
  25987. weight: math.unit(357, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/solex-draconov/front.svg",
  25991. extra: 1993 / 1865,
  25992. bottom: 117 / 2111
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Natural Height",
  25999. height: math.unit(7 + 5 / 12, "feet"),
  26000. default: true
  26001. },
  26002. {
  26003. name: "Macro",
  26004. height: math.unit(350, "feet")
  26005. },
  26006. {
  26007. name: "Macro+",
  26008. height: math.unit(1000, "feet")
  26009. },
  26010. {
  26011. name: "Megamacro",
  26012. height: math.unit(20, "km")
  26013. },
  26014. {
  26015. name: "Megamacro+",
  26016. height: math.unit(1000, "km")
  26017. },
  26018. {
  26019. name: "Gigamacro",
  26020. height: math.unit(2.5, "Gm")
  26021. },
  26022. {
  26023. name: "Teramacro",
  26024. height: math.unit(15, "Tm")
  26025. },
  26026. {
  26027. name: "Galactic",
  26028. height: math.unit(30, "Zm")
  26029. },
  26030. {
  26031. name: "Universal",
  26032. height: math.unit(21000, "Ym")
  26033. },
  26034. {
  26035. name: "Omniversal",
  26036. height: math.unit(9.861e50, "Ym")
  26037. },
  26038. {
  26039. name: "Existential",
  26040. height: math.unit(1e300, "meters")
  26041. },
  26042. ]
  26043. ))
  26044. characterMakers.push(() => makeCharacter(
  26045. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26046. {
  26047. side: {
  26048. height: math.unit(25, "feet"),
  26049. weight: math.unit(90000, "lb"),
  26050. name: "Side",
  26051. image: {
  26052. source: "./media/characters/mandarax/side.svg",
  26053. extra: 614 / 332,
  26054. bottom: 55 / 630
  26055. }
  26056. },
  26057. lounging: {
  26058. height: math.unit(15.4, "feet"),
  26059. weight: math.unit(90000, "lb"),
  26060. name: "Lounging",
  26061. image: {
  26062. source: "./media/characters/mandarax/lounging.svg",
  26063. extra: 817/609,
  26064. bottom: 685/1502
  26065. }
  26066. },
  26067. head: {
  26068. height: math.unit(11.4, "feet"),
  26069. name: "Head",
  26070. image: {
  26071. source: "./media/characters/mandarax/head.svg"
  26072. }
  26073. },
  26074. belly: {
  26075. height: math.unit(33, "feet"),
  26076. name: "Belly",
  26077. capacity: math.unit(500, "people"),
  26078. image: {
  26079. source: "./media/characters/mandarax/belly.svg"
  26080. }
  26081. },
  26082. dick: {
  26083. height: math.unit(8.46, "feet"),
  26084. name: "Dick",
  26085. image: {
  26086. source: "./media/characters/mandarax/dick.svg"
  26087. }
  26088. },
  26089. top: {
  26090. height: math.unit(28, "meters"),
  26091. name: "Top",
  26092. image: {
  26093. source: "./media/characters/mandarax/top.svg"
  26094. }
  26095. },
  26096. },
  26097. [
  26098. {
  26099. name: "Normal",
  26100. height: math.unit(25, "feet"),
  26101. default: true
  26102. },
  26103. ]
  26104. ))
  26105. characterMakers.push(() => makeCharacter(
  26106. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26107. {
  26108. front: {
  26109. height: math.unit(5, "feet"),
  26110. weight: math.unit(90, "lb"),
  26111. name: "Front",
  26112. image: {
  26113. source: "./media/characters/pixil/front.svg",
  26114. extra: 2000 / 1618,
  26115. bottom: 12.3 / 2011
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(5, "feet"),
  26123. default: true
  26124. },
  26125. {
  26126. name: "Megamacro",
  26127. height: math.unit(10, "miles"),
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26133. {
  26134. front: {
  26135. height: math.unit(7 + 2 / 12, "feet"),
  26136. weight: math.unit(200, "lb"),
  26137. name: "Front",
  26138. image: {
  26139. source: "./media/characters/angel/front.svg",
  26140. extra: 1830 / 1737,
  26141. bottom: 22.6 / 1854,
  26142. }
  26143. },
  26144. },
  26145. [
  26146. {
  26147. name: "Normal",
  26148. height: math.unit(7 + 2 / 12, "feet"),
  26149. default: true
  26150. },
  26151. {
  26152. name: "Macro",
  26153. height: math.unit(1000, "feet")
  26154. },
  26155. {
  26156. name: "Megamacro",
  26157. height: math.unit(2, "miles")
  26158. },
  26159. {
  26160. name: "Gigamacro",
  26161. height: math.unit(20, "earths")
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26167. {
  26168. front: {
  26169. height: math.unit(5, "feet"),
  26170. weight: math.unit(180, "lb"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/mekana/front.svg",
  26174. extra: 1671 / 1605,
  26175. bottom: 3.5 / 1691
  26176. }
  26177. },
  26178. side: {
  26179. height: math.unit(5, "feet"),
  26180. weight: math.unit(180, "lb"),
  26181. name: "Side",
  26182. image: {
  26183. source: "./media/characters/mekana/side.svg",
  26184. extra: 1671 / 1605,
  26185. bottom: 3.5 / 1691
  26186. }
  26187. },
  26188. back: {
  26189. height: math.unit(5, "feet"),
  26190. weight: math.unit(180, "lb"),
  26191. name: "Back",
  26192. image: {
  26193. source: "./media/characters/mekana/back.svg",
  26194. extra: 1671 / 1605,
  26195. bottom: 3.5 / 1691
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Normal",
  26202. height: math.unit(5, "feet"),
  26203. default: true
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(4 + 6 / 12, "feet"),
  26212. weight: math.unit(80, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/pixie/front.svg",
  26216. extra: 1924 / 1825,
  26217. bottom: 22.4 / 1946
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Normal",
  26224. height: math.unit(4 + 6 / 12, "feet"),
  26225. default: true
  26226. },
  26227. {
  26228. name: "Macro",
  26229. height: math.unit(40, "feet")
  26230. },
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26235. {
  26236. front: {
  26237. height: math.unit(2.1, "meters"),
  26238. weight: math.unit(200, "lb"),
  26239. name: "Front",
  26240. image: {
  26241. source: "./media/characters/the-lascivious/front.svg",
  26242. extra: 1 / 0.893,
  26243. bottom: 3.5 / 573.7
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Human Scale",
  26250. height: math.unit(2.1, "meters")
  26251. },
  26252. {
  26253. name: "Wolxi Scale",
  26254. height: math.unit(46.2, "m"),
  26255. default: true
  26256. },
  26257. {
  26258. name: "Boinker of Buildings",
  26259. height: math.unit(10, "km")
  26260. },
  26261. {
  26262. name: "Shagger of Skyscrapers",
  26263. height: math.unit(40, "km")
  26264. },
  26265. {
  26266. name: "Banger of Boroughs",
  26267. height: math.unit(4000, "km")
  26268. },
  26269. {
  26270. name: "Screwer of States",
  26271. height: math.unit(100000, "km")
  26272. },
  26273. {
  26274. name: "Pounder of Planets",
  26275. height: math.unit(2000000, "km")
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26281. {
  26282. front: {
  26283. height: math.unit(6, "feet"),
  26284. weight: math.unit(150, "lb"),
  26285. name: "Front",
  26286. image: {
  26287. source: "./media/characters/aj/front.svg",
  26288. extra: 2039 / 1562,
  26289. bottom: 40 / 2079
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(11 + 6 / 12, "feet"),
  26297. default: true
  26298. },
  26299. {
  26300. name: "Megamacro",
  26301. height: math.unit(60, "megameters")
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26307. {
  26308. side: {
  26309. height: math.unit(31 + 8 / 12, "feet"),
  26310. weight: math.unit(75000, "kg"),
  26311. name: "Side",
  26312. image: {
  26313. source: "./media/characters/koros/side.svg",
  26314. extra: 1442 / 1297,
  26315. bottom: 122.7 / 1562
  26316. }
  26317. },
  26318. dicksKingsCrown: {
  26319. height: math.unit(6, "feet"),
  26320. name: "Dicks (King's Crown)",
  26321. image: {
  26322. source: "./media/characters/koros/dicks-kings-crown.svg"
  26323. }
  26324. },
  26325. dicksTailSet: {
  26326. height: math.unit(3, "feet"),
  26327. name: "Dicks (Tail Set)",
  26328. image: {
  26329. source: "./media/characters/koros/dicks-tail-set.svg"
  26330. }
  26331. },
  26332. dickCumming: {
  26333. height: math.unit(7.98, "feet"),
  26334. name: "Dick (Cumming)",
  26335. image: {
  26336. source: "./media/characters/koros/dick-cumming.svg"
  26337. }
  26338. },
  26339. dicksBack: {
  26340. height: math.unit(5.9, "feet"),
  26341. name: "Dicks (Back)",
  26342. image: {
  26343. source: "./media/characters/koros/dicks-back.svg"
  26344. }
  26345. },
  26346. dicksFront: {
  26347. height: math.unit(3.72, "feet"),
  26348. name: "Dicks (Front)",
  26349. image: {
  26350. source: "./media/characters/koros/dicks-front.svg"
  26351. }
  26352. },
  26353. dicksPeeking: {
  26354. height: math.unit(3.0, "feet"),
  26355. name: "Dicks (Peeking)",
  26356. image: {
  26357. source: "./media/characters/koros/dicks-peeking.svg"
  26358. }
  26359. },
  26360. eye: {
  26361. height: math.unit(1.7, "feet"),
  26362. name: "Eye",
  26363. image: {
  26364. source: "./media/characters/koros/eye.svg"
  26365. }
  26366. },
  26367. headFront: {
  26368. height: math.unit(11.69, "feet"),
  26369. name: "Head (Front)",
  26370. image: {
  26371. source: "./media/characters/koros/head-front.svg"
  26372. }
  26373. },
  26374. headSide: {
  26375. height: math.unit(14, "feet"),
  26376. name: "Head (Side)",
  26377. image: {
  26378. source: "./media/characters/koros/head-side.svg"
  26379. }
  26380. },
  26381. leg: {
  26382. height: math.unit(17, "feet"),
  26383. name: "Leg",
  26384. image: {
  26385. source: "./media/characters/koros/leg.svg"
  26386. }
  26387. },
  26388. mawSide: {
  26389. height: math.unit(12.8, "feet"),
  26390. name: "Maw (Side)",
  26391. image: {
  26392. source: "./media/characters/koros/maw-side.svg"
  26393. }
  26394. },
  26395. mawSpitting: {
  26396. height: math.unit(17, "feet"),
  26397. name: "Maw (Spitting)",
  26398. image: {
  26399. source: "./media/characters/koros/maw-spitting.svg"
  26400. }
  26401. },
  26402. slit: {
  26403. height: math.unit(2.8, "feet"),
  26404. name: "Slit",
  26405. image: {
  26406. source: "./media/characters/koros/slit.svg"
  26407. }
  26408. },
  26409. stomach: {
  26410. height: math.unit(6.8, "feet"),
  26411. capacity: math.unit(20, "people"),
  26412. name: "Stomach",
  26413. image: {
  26414. source: "./media/characters/koros/stomach.svg"
  26415. }
  26416. },
  26417. wingspanBottom: {
  26418. height: math.unit(114, "feet"),
  26419. name: "Wingspan (Bottom)",
  26420. image: {
  26421. source: "./media/characters/koros/wingspan-bottom.svg"
  26422. }
  26423. },
  26424. wingspanTop: {
  26425. height: math.unit(104, "feet"),
  26426. name: "Wingspan (Top)",
  26427. image: {
  26428. source: "./media/characters/koros/wingspan-top.svg"
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(31 + 8 / 12, "feet"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(18 + 5 / 12, "feet"),
  26445. weight: math.unit(3750, "kg"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/vexx/front.svg",
  26449. extra: 426 / 396,
  26450. bottom: 31.5 / 458
  26451. }
  26452. },
  26453. maw: {
  26454. height: math.unit(6, "feet"),
  26455. name: "Maw",
  26456. image: {
  26457. source: "./media/characters/vexx/maw.svg"
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Normal",
  26464. height: math.unit(18 + 5 / 12, "feet"),
  26465. default: true
  26466. },
  26467. ]
  26468. ))
  26469. characterMakers.push(() => makeCharacter(
  26470. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26471. {
  26472. front: {
  26473. height: math.unit(17 + 6 / 12, "feet"),
  26474. weight: math.unit(150, "lb"),
  26475. name: "Front",
  26476. image: {
  26477. source: "./media/characters/baadra/front.svg",
  26478. extra: 1694/1553,
  26479. bottom: 179/1873
  26480. }
  26481. },
  26482. frontAlt: {
  26483. height: math.unit(17 + 6 / 12, "feet"),
  26484. weight: math.unit(150, "lb"),
  26485. name: "Front (Alt)",
  26486. image: {
  26487. source: "./media/characters/baadra/front-alt.svg",
  26488. extra: 3137 / 2890,
  26489. bottom: 168.4 / 3305
  26490. }
  26491. },
  26492. back: {
  26493. height: math.unit(17 + 6 / 12, "feet"),
  26494. weight: math.unit(150, "lb"),
  26495. name: "Back",
  26496. image: {
  26497. source: "./media/characters/baadra/back.svg",
  26498. extra: 3142 / 2890,
  26499. bottom: 220 / 3371
  26500. }
  26501. },
  26502. head: {
  26503. height: math.unit(5.45, "feet"),
  26504. name: "Head",
  26505. image: {
  26506. source: "./media/characters/baadra/head.svg"
  26507. }
  26508. },
  26509. headAngry: {
  26510. height: math.unit(4.95, "feet"),
  26511. name: "Head (Angry)",
  26512. image: {
  26513. source: "./media/characters/baadra/head-angry.svg"
  26514. }
  26515. },
  26516. headOpen: {
  26517. height: math.unit(6, "feet"),
  26518. name: "Head (Open)",
  26519. image: {
  26520. source: "./media/characters/baadra/head-open.svg"
  26521. }
  26522. },
  26523. },
  26524. [
  26525. {
  26526. name: "Normal",
  26527. height: math.unit(17 + 6 / 12, "feet"),
  26528. default: true
  26529. },
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(7 + 3 / 12, "feet"),
  26537. weight: math.unit(180, "lb"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/juri/front.svg",
  26541. extra: 1401 / 1237,
  26542. bottom: 18.5 / 1418
  26543. }
  26544. },
  26545. side: {
  26546. height: math.unit(7 + 3 / 12, "feet"),
  26547. weight: math.unit(180, "lb"),
  26548. name: "Side",
  26549. image: {
  26550. source: "./media/characters/juri/side.svg",
  26551. extra: 1424 / 1242,
  26552. bottom: 18.5 / 1447
  26553. }
  26554. },
  26555. sitting: {
  26556. height: math.unit(6, "feet"),
  26557. weight: math.unit(180, "lb"),
  26558. name: "Sitting",
  26559. image: {
  26560. source: "./media/characters/juri/sitting.svg",
  26561. extra: 1270 / 1143,
  26562. bottom: 100 / 1343
  26563. }
  26564. },
  26565. back: {
  26566. height: math.unit(7 + 3 / 12, "feet"),
  26567. weight: math.unit(180, "lb"),
  26568. name: "Back",
  26569. image: {
  26570. source: "./media/characters/juri/back.svg",
  26571. extra: 1377 / 1240,
  26572. bottom: 23.7 / 1405
  26573. }
  26574. },
  26575. maw: {
  26576. height: math.unit(2.8, "feet"),
  26577. name: "Maw",
  26578. image: {
  26579. source: "./media/characters/juri/maw.svg"
  26580. }
  26581. },
  26582. stomach: {
  26583. height: math.unit(0.89, "feet"),
  26584. capacity: math.unit(4, "liters"),
  26585. name: "Stomach",
  26586. image: {
  26587. source: "./media/characters/juri/stomach.svg"
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Normal",
  26594. height: math.unit(7 + 3 / 12, "feet"),
  26595. default: true
  26596. },
  26597. ]
  26598. ))
  26599. characterMakers.push(() => makeCharacter(
  26600. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26601. {
  26602. fox: {
  26603. height: math.unit(5 + 6 / 12, "feet"),
  26604. weight: math.unit(140, "lb"),
  26605. name: "Fox",
  26606. image: {
  26607. source: "./media/characters/maxene-sita/fox.svg",
  26608. extra: 146 / 138,
  26609. bottom: 2.1 / 148.19
  26610. }
  26611. },
  26612. foxLaying: {
  26613. height: math.unit(1.70, "feet"),
  26614. weight: math.unit(140, "lb"),
  26615. name: "Fox (Laying)",
  26616. image: {
  26617. source: "./media/characters/maxene-sita/fox-laying.svg",
  26618. extra: 910 / 572,
  26619. bottom: 71 / 981
  26620. }
  26621. },
  26622. kitsune: {
  26623. height: math.unit(10, "feet"),
  26624. weight: math.unit(800, "lb"),
  26625. name: "Kitsune",
  26626. image: {
  26627. source: "./media/characters/maxene-sita/kitsune.svg",
  26628. extra: 185 / 176,
  26629. bottom: 4.7 / 189.9
  26630. }
  26631. },
  26632. hellhound: {
  26633. height: math.unit(10, "feet"),
  26634. weight: math.unit(700, "lb"),
  26635. name: "Hellhound",
  26636. image: {
  26637. source: "./media/characters/maxene-sita/hellhound.svg",
  26638. extra: 1600 / 1545,
  26639. bottom: 81 / 1681
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Normal",
  26646. height: math.unit(5 + 6 / 12, "feet"),
  26647. default: true
  26648. },
  26649. ]
  26650. ))
  26651. characterMakers.push(() => makeCharacter(
  26652. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26653. {
  26654. front: {
  26655. height: math.unit(3 + 4 / 12, "feet"),
  26656. weight: math.unit(70, "lb"),
  26657. name: "Front",
  26658. image: {
  26659. source: "./media/characters/maia/front.svg",
  26660. extra: 227 / 219.5,
  26661. bottom: 40 / 267
  26662. }
  26663. },
  26664. back: {
  26665. height: math.unit(3 + 4 / 12, "feet"),
  26666. weight: math.unit(70, "lb"),
  26667. name: "Back",
  26668. image: {
  26669. source: "./media/characters/maia/back.svg",
  26670. extra: 237 / 225
  26671. }
  26672. },
  26673. },
  26674. [
  26675. {
  26676. name: "Normal",
  26677. height: math.unit(3 + 4 / 12, "feet"),
  26678. default: true
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26684. {
  26685. front: {
  26686. height: math.unit(5 + 10 / 12, "feet"),
  26687. weight: math.unit(197, "lb"),
  26688. name: "Front",
  26689. image: {
  26690. source: "./media/characters/jabaro/front.svg",
  26691. extra: 225 / 216,
  26692. bottom: 5.06 / 230
  26693. }
  26694. },
  26695. back: {
  26696. height: math.unit(5 + 10 / 12, "feet"),
  26697. weight: math.unit(197, "lb"),
  26698. name: "Back",
  26699. image: {
  26700. source: "./media/characters/jabaro/back.svg",
  26701. extra: 225 / 219,
  26702. bottom: 1.9 / 227
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Normal",
  26709. height: math.unit(5 + 10 / 12, "feet"),
  26710. default: true
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(5 + 8 / 12, "feet"),
  26719. weight: math.unit(139, "lb"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/risa/front.svg",
  26723. extra: 270 / 260,
  26724. bottom: 11.2 / 282
  26725. }
  26726. },
  26727. back: {
  26728. height: math.unit(5 + 8 / 12, "feet"),
  26729. weight: math.unit(139, "lb"),
  26730. name: "Back",
  26731. image: {
  26732. source: "./media/characters/risa/back.svg",
  26733. extra: 264 / 255,
  26734. bottom: 4 / 268
  26735. }
  26736. },
  26737. },
  26738. [
  26739. {
  26740. name: "Normal",
  26741. height: math.unit(5 + 8 / 12, "feet"),
  26742. default: true
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26748. {
  26749. front: {
  26750. height: math.unit(2 + 11 / 12, "feet"),
  26751. weight: math.unit(30, "lb"),
  26752. name: "Front",
  26753. image: {
  26754. source: "./media/characters/weatley/front.svg",
  26755. bottom: 10.7 / 414,
  26756. extra: 403.5 / 362
  26757. }
  26758. },
  26759. back: {
  26760. height: math.unit(2 + 11 / 12, "feet"),
  26761. weight: math.unit(30, "lb"),
  26762. name: "Back",
  26763. image: {
  26764. source: "./media/characters/weatley/back.svg",
  26765. bottom: 10.7 / 414,
  26766. extra: 403.5 / 362
  26767. }
  26768. },
  26769. },
  26770. [
  26771. {
  26772. name: "Normal",
  26773. height: math.unit(2 + 11 / 12, "feet"),
  26774. default: true
  26775. },
  26776. ]
  26777. ))
  26778. characterMakers.push(() => makeCharacter(
  26779. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26780. {
  26781. front: {
  26782. height: math.unit(5 + 2 / 12, "feet"),
  26783. weight: math.unit(50, "kg"),
  26784. name: "Front",
  26785. image: {
  26786. source: "./media/characters/mercury-crescent/front.svg",
  26787. extra: 1088 / 1033,
  26788. bottom: 18.9 / 1109
  26789. }
  26790. },
  26791. },
  26792. [
  26793. {
  26794. name: "Normal",
  26795. height: math.unit(5 + 2 / 12, "feet"),
  26796. default: true
  26797. },
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26802. {
  26803. front: {
  26804. height: math.unit(2, "feet"),
  26805. weight: math.unit(15, "kg"),
  26806. name: "Front",
  26807. image: {
  26808. source: "./media/characters/diamond-jones/front.svg",
  26809. extra: 727/723,
  26810. bottom: 46/773
  26811. }
  26812. },
  26813. },
  26814. [
  26815. {
  26816. name: "Normal",
  26817. height: math.unit(2, "feet"),
  26818. default: true
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26824. {
  26825. front: {
  26826. height: math.unit(3, "feet"),
  26827. weight: math.unit(30, "kg"),
  26828. name: "Front",
  26829. image: {
  26830. source: "./media/characters/sweet-bit/front.svg",
  26831. extra: 675 / 567,
  26832. bottom: 27.7 / 703
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Normal",
  26839. height: math.unit(3, "feet"),
  26840. default: true
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26846. {
  26847. side: {
  26848. height: math.unit(9.178, "feet"),
  26849. weight: math.unit(500, "lb"),
  26850. name: "Side",
  26851. image: {
  26852. source: "./media/characters/umbrazen/side.svg",
  26853. extra: 1730 / 1473,
  26854. bottom: 34.6 / 1765
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Normal",
  26861. height: math.unit(9.178, "feet"),
  26862. default: true
  26863. },
  26864. ]
  26865. ))
  26866. characterMakers.push(() => makeCharacter(
  26867. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26868. {
  26869. front: {
  26870. height: math.unit(10, "feet"),
  26871. weight: math.unit(750, "lb"),
  26872. name: "Front",
  26873. image: {
  26874. source: "./media/characters/arlist/front.svg",
  26875. extra: 961 / 778,
  26876. bottom: 6.2 / 986
  26877. }
  26878. },
  26879. },
  26880. [
  26881. {
  26882. name: "Normal",
  26883. height: math.unit(10, "feet"),
  26884. default: true
  26885. },
  26886. ]
  26887. ))
  26888. characterMakers.push(() => makeCharacter(
  26889. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26890. {
  26891. front: {
  26892. height: math.unit(5 + 1 / 12, "feet"),
  26893. weight: math.unit(110, "lb"),
  26894. name: "Front",
  26895. image: {
  26896. source: "./media/characters/aradel/front.svg",
  26897. extra: 324 / 303,
  26898. bottom: 3.6 / 329.4
  26899. }
  26900. },
  26901. },
  26902. [
  26903. {
  26904. name: "Normal",
  26905. height: math.unit(5 + 1 / 12, "feet"),
  26906. default: true
  26907. },
  26908. ]
  26909. ))
  26910. characterMakers.push(() => makeCharacter(
  26911. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26912. {
  26913. dressed: {
  26914. height: math.unit(3 + 8 / 12, "feet"),
  26915. weight: math.unit(50, "lb"),
  26916. name: "Dressed",
  26917. image: {
  26918. source: "./media/characters/serryn/dressed.svg",
  26919. extra: 1792 / 1656,
  26920. bottom: 43.5 / 1840
  26921. }
  26922. },
  26923. nude: {
  26924. height: math.unit(3 + 8 / 12, "feet"),
  26925. weight: math.unit(50, "lb"),
  26926. name: "Nude",
  26927. image: {
  26928. source: "./media/characters/serryn/nude.svg",
  26929. extra: 1792 / 1656,
  26930. bottom: 43.5 / 1840
  26931. }
  26932. },
  26933. },
  26934. [
  26935. {
  26936. name: "Normal",
  26937. height: math.unit(3 + 8 / 12, "feet"),
  26938. default: true
  26939. },
  26940. ]
  26941. ))
  26942. characterMakers.push(() => makeCharacter(
  26943. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26944. {
  26945. front: {
  26946. height: math.unit(7 + 10 / 12, "feet"),
  26947. weight: math.unit(255, "lb"),
  26948. name: "Front",
  26949. image: {
  26950. source: "./media/characters/xavier-thyme/front.svg",
  26951. extra: 3733 / 3642,
  26952. bottom: 131 / 3869
  26953. }
  26954. },
  26955. frontRaven: {
  26956. height: math.unit(7 + 10 / 12, "feet"),
  26957. weight: math.unit(255, "lb"),
  26958. name: "Front (Raven)",
  26959. image: {
  26960. source: "./media/characters/xavier-thyme/front-raven.svg",
  26961. extra: 4385 / 3642,
  26962. bottom: 131 / 4517
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(7 + 10 / 12, "feet"),
  26970. default: true
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26976. {
  26977. front: {
  26978. height: math.unit(1.6, "m"),
  26979. weight: math.unit(50, "kg"),
  26980. name: "Front",
  26981. image: {
  26982. source: "./media/characters/kiki/front.svg",
  26983. extra: 4682 / 3610,
  26984. bottom: 115 / 4777
  26985. }
  26986. },
  26987. },
  26988. [
  26989. {
  26990. name: "Normal",
  26991. height: math.unit(1.6, "meters"),
  26992. default: true
  26993. },
  26994. ]
  26995. ))
  26996. characterMakers.push(() => makeCharacter(
  26997. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26998. {
  26999. front: {
  27000. height: math.unit(50, "m"),
  27001. weight: math.unit(500, "tonnes"),
  27002. name: "Front",
  27003. image: {
  27004. source: "./media/characters/ryoko/front.svg",
  27005. extra: 4632 / 3926,
  27006. bottom: 193 / 4823
  27007. }
  27008. },
  27009. },
  27010. [
  27011. {
  27012. name: "Normal",
  27013. height: math.unit(50, "meters"),
  27014. default: true
  27015. },
  27016. ]
  27017. ))
  27018. characterMakers.push(() => makeCharacter(
  27019. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27020. {
  27021. front: {
  27022. height: math.unit(30, "m"),
  27023. weight: math.unit(22, "tonnes"),
  27024. name: "Front",
  27025. image: {
  27026. source: "./media/characters/elio/front.svg",
  27027. extra: 4582 / 3720,
  27028. bottom: 236 / 4828
  27029. }
  27030. },
  27031. },
  27032. [
  27033. {
  27034. name: "Normal",
  27035. height: math.unit(30, "meters"),
  27036. default: true
  27037. },
  27038. ]
  27039. ))
  27040. characterMakers.push(() => makeCharacter(
  27041. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27042. {
  27043. front: {
  27044. height: math.unit(6 + 3 / 12, "feet"),
  27045. weight: math.unit(120, "lb"),
  27046. name: "Front",
  27047. image: {
  27048. source: "./media/characters/azura/front.svg",
  27049. extra: 1149 / 1135,
  27050. bottom: 45 / 1194
  27051. }
  27052. },
  27053. frontClothed: {
  27054. height: math.unit(6 + 3 / 12, "feet"),
  27055. weight: math.unit(120, "lb"),
  27056. name: "Front (Clothed)",
  27057. image: {
  27058. source: "./media/characters/azura/front-clothed.svg",
  27059. extra: 1149 / 1135,
  27060. bottom: 45 / 1194
  27061. }
  27062. },
  27063. },
  27064. [
  27065. {
  27066. name: "Normal",
  27067. height: math.unit(6 + 3 / 12, "feet"),
  27068. default: true
  27069. },
  27070. {
  27071. name: "Macro",
  27072. height: math.unit(20 + 6 / 12, "feet")
  27073. },
  27074. {
  27075. name: "Megamacro",
  27076. height: math.unit(12, "miles")
  27077. },
  27078. {
  27079. name: "Gigamacro",
  27080. height: math.unit(10000, "miles")
  27081. },
  27082. {
  27083. name: "Teramacro",
  27084. height: math.unit(900000, "miles")
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(12, "feet"),
  27093. weight: math.unit(1, "ton"),
  27094. capacity: math.unit(660000, "gallons"),
  27095. name: "Front",
  27096. image: {
  27097. source: "./media/characters/zeus/front.svg",
  27098. extra: 5005 / 4717,
  27099. bottom: 363 / 5388
  27100. }
  27101. },
  27102. },
  27103. [
  27104. {
  27105. name: "Normal",
  27106. height: math.unit(12, "feet")
  27107. },
  27108. {
  27109. name: "Preferred Size",
  27110. height: math.unit(0.5, "miles"),
  27111. default: true
  27112. },
  27113. {
  27114. name: "Giga Horse",
  27115. height: math.unit(300, "miles")
  27116. },
  27117. {
  27118. name: "Riding Planets",
  27119. height: math.unit(30, "megameters")
  27120. },
  27121. {
  27122. name: "Cosmic Giant",
  27123. height: math.unit(3, "zettameters")
  27124. },
  27125. {
  27126. name: "Breeding God",
  27127. height: math.unit(9.92e22, "yottameters")
  27128. },
  27129. ]
  27130. ))
  27131. characterMakers.push(() => makeCharacter(
  27132. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27133. {
  27134. side: {
  27135. height: math.unit(9, "feet"),
  27136. weight: math.unit(1500, "kg"),
  27137. name: "Side",
  27138. image: {
  27139. source: "./media/characters/fang/side.svg",
  27140. extra: 924 / 866,
  27141. bottom: 47.5 / 972.3
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "Normal",
  27148. height: math.unit(9, "feet"),
  27149. default: true
  27150. },
  27151. {
  27152. name: "Macro",
  27153. height: math.unit(75 + 6 / 12, "feet")
  27154. },
  27155. {
  27156. name: "Teramacro",
  27157. height: math.unit(50000, "miles")
  27158. },
  27159. ]
  27160. ))
  27161. characterMakers.push(() => makeCharacter(
  27162. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27163. {
  27164. front: {
  27165. height: math.unit(10, "feet"),
  27166. weight: math.unit(2, "tons"),
  27167. name: "Front",
  27168. image: {
  27169. source: "./media/characters/rekhit/front.svg",
  27170. extra: 2796 / 2590,
  27171. bottom: 225 / 3022
  27172. }
  27173. },
  27174. },
  27175. [
  27176. {
  27177. name: "Normal",
  27178. height: math.unit(10, "feet"),
  27179. default: true
  27180. },
  27181. {
  27182. name: "Macro",
  27183. height: math.unit(500, "feet")
  27184. },
  27185. ]
  27186. ))
  27187. characterMakers.push(() => makeCharacter(
  27188. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27189. {
  27190. front: {
  27191. height: math.unit(7 + 6.451 / 12, "feet"),
  27192. weight: math.unit(310, "lb"),
  27193. name: "Front",
  27194. image: {
  27195. source: "./media/characters/dahlia-verrick/front.svg",
  27196. extra: 1488 / 1365,
  27197. bottom: 6.2 / 1495
  27198. }
  27199. },
  27200. back: {
  27201. height: math.unit(7 + 6.451 / 12, "feet"),
  27202. weight: math.unit(310, "lb"),
  27203. name: "Back",
  27204. image: {
  27205. source: "./media/characters/dahlia-verrick/back.svg",
  27206. extra: 1472 / 1351,
  27207. bottom: 5.28 / 1477
  27208. }
  27209. },
  27210. frontBusiness: {
  27211. height: math.unit(7 + 6.451 / 12, "feet"),
  27212. weight: math.unit(200, "lb"),
  27213. name: "Front (Business)",
  27214. image: {
  27215. source: "./media/characters/dahlia-verrick/front-business.svg",
  27216. extra: 1478 / 1381,
  27217. bottom: 5.5 / 1484
  27218. }
  27219. },
  27220. frontCasual: {
  27221. height: math.unit(7 + 6.451 / 12, "feet"),
  27222. weight: math.unit(200, "lb"),
  27223. name: "Front (Casual)",
  27224. image: {
  27225. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27226. extra: 1478 / 1381,
  27227. bottom: 5.5 / 1484
  27228. }
  27229. },
  27230. },
  27231. [
  27232. {
  27233. name: "Travel-Sized",
  27234. height: math.unit(7.45, "inches")
  27235. },
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(7 + 6.451 / 12, "feet"),
  27239. default: true
  27240. },
  27241. {
  27242. name: "Hitting the Town",
  27243. height: math.unit(37 + 8 / 12, "feet")
  27244. },
  27245. {
  27246. name: "Stomp in the Suburbs",
  27247. height: math.unit(964 + 9.728 / 12, "feet")
  27248. },
  27249. {
  27250. name: "Sit on the City",
  27251. height: math.unit(61747 + 10.592 / 12, "feet")
  27252. },
  27253. {
  27254. name: "Glomp the Globe",
  27255. height: math.unit(252919327 + 4.832 / 12, "feet")
  27256. },
  27257. ]
  27258. ))
  27259. characterMakers.push(() => makeCharacter(
  27260. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27261. {
  27262. front: {
  27263. height: math.unit(6 + 4 / 12, "feet"),
  27264. weight: math.unit(320, "lb"),
  27265. name: "Front",
  27266. image: {
  27267. source: "./media/characters/balina-mahigan/front.svg",
  27268. extra: 447 / 428,
  27269. bottom: 18 / 466
  27270. }
  27271. },
  27272. back: {
  27273. height: math.unit(6 + 4 / 12, "feet"),
  27274. weight: math.unit(320, "lb"),
  27275. name: "Back",
  27276. image: {
  27277. source: "./media/characters/balina-mahigan/back.svg",
  27278. extra: 445 / 428,
  27279. bottom: 4.07 / 448
  27280. }
  27281. },
  27282. arm: {
  27283. height: math.unit(1.88, "feet"),
  27284. name: "Arm",
  27285. image: {
  27286. source: "./media/characters/balina-mahigan/arm.svg"
  27287. }
  27288. },
  27289. backPort: {
  27290. height: math.unit(0.685, "feet"),
  27291. name: "Back Port",
  27292. image: {
  27293. source: "./media/characters/balina-mahigan/back-port.svg"
  27294. }
  27295. },
  27296. hoofpaw: {
  27297. height: math.unit(1.41, "feet"),
  27298. name: "Hoofpaw",
  27299. image: {
  27300. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27301. }
  27302. },
  27303. leftHandBack: {
  27304. height: math.unit(0.938, "feet"),
  27305. name: "Left Hand (Back)",
  27306. image: {
  27307. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27308. }
  27309. },
  27310. leftHandFront: {
  27311. height: math.unit(0.938, "feet"),
  27312. name: "Left Hand (Front)",
  27313. image: {
  27314. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27315. }
  27316. },
  27317. rightHandBack: {
  27318. height: math.unit(0.95, "feet"),
  27319. name: "Right Hand (Back)",
  27320. image: {
  27321. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27322. }
  27323. },
  27324. rightHandFront: {
  27325. height: math.unit(0.95, "feet"),
  27326. name: "Right Hand (Front)",
  27327. image: {
  27328. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27329. }
  27330. },
  27331. },
  27332. [
  27333. {
  27334. name: "Normal",
  27335. height: math.unit(6 + 4 / 12, "feet"),
  27336. default: true
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27342. {
  27343. front: {
  27344. height: math.unit(6, "feet"),
  27345. weight: math.unit(320, "lb"),
  27346. name: "Front",
  27347. image: {
  27348. source: "./media/characters/balina-mejeri/front.svg",
  27349. extra: 517 / 488,
  27350. bottom: 44.2 / 561
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(6 + 4 / 12, "feet")
  27358. },
  27359. {
  27360. name: "Business",
  27361. height: math.unit(155, "feet"),
  27362. default: true
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27368. {
  27369. kneeling: {
  27370. height: math.unit(6 + 4 / 12, "feet"),
  27371. weight: math.unit(300 * 20, "lb"),
  27372. name: "Kneeling",
  27373. image: {
  27374. source: "./media/characters/balbarian/kneeling.svg",
  27375. extra: 922 / 862,
  27376. bottom: 42.4 / 965
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Normal",
  27383. height: math.unit(6 + 4 / 12, "feet")
  27384. },
  27385. {
  27386. name: "Treasured",
  27387. height: math.unit(18 + 9 / 12, "feet"),
  27388. default: true
  27389. },
  27390. {
  27391. name: "Macro",
  27392. height: math.unit(900, "feet")
  27393. },
  27394. ]
  27395. ))
  27396. characterMakers.push(() => makeCharacter(
  27397. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27398. {
  27399. front: {
  27400. height: math.unit(6 + 4 / 12, "feet"),
  27401. weight: math.unit(325, "lb"),
  27402. name: "Front",
  27403. image: {
  27404. source: "./media/characters/balina-amarini/front.svg",
  27405. extra: 415 / 403,
  27406. bottom: 19 / 433.4
  27407. }
  27408. },
  27409. back: {
  27410. height: math.unit(6 + 4 / 12, "feet"),
  27411. weight: math.unit(325, "lb"),
  27412. name: "Back",
  27413. image: {
  27414. source: "./media/characters/balina-amarini/back.svg",
  27415. extra: 415 / 403,
  27416. bottom: 13.5 / 432
  27417. }
  27418. },
  27419. overdrive: {
  27420. height: math.unit(6 + 4 / 12, "feet"),
  27421. weight: math.unit(400, "lb"),
  27422. name: "Overdrive",
  27423. image: {
  27424. source: "./media/characters/balina-amarini/overdrive.svg",
  27425. extra: 269 / 259,
  27426. bottom: 12 / 282
  27427. }
  27428. },
  27429. },
  27430. [
  27431. {
  27432. name: "Boom",
  27433. height: math.unit(9 + 10 / 12, "feet"),
  27434. default: true
  27435. },
  27436. {
  27437. name: "Macro",
  27438. height: math.unit(280, "feet")
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27444. {
  27445. goddess: {
  27446. height: math.unit(600, "feet"),
  27447. weight: math.unit(2000000, "tons"),
  27448. name: "Goddess",
  27449. image: {
  27450. source: "./media/characters/lady-kubwa/goddess.svg",
  27451. extra: 1240.5 / 1223,
  27452. bottom: 22 / 1263
  27453. }
  27454. },
  27455. goddesser: {
  27456. height: math.unit(900, "feet"),
  27457. weight: math.unit(20000000, "lb"),
  27458. name: "Goddess-er",
  27459. image: {
  27460. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27461. extra: 899 / 888,
  27462. bottom: 12.6 / 912
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Macro",
  27469. height: math.unit(600, "feet"),
  27470. default: true
  27471. },
  27472. {
  27473. name: "Megamacro",
  27474. height: math.unit(250, "miles")
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(7 + 7 / 12, "feet"),
  27483. weight: math.unit(250, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/tala-grovehorn/front.svg",
  27487. extra: 2636 / 2525,
  27488. bottom: 147 / 2781
  27489. }
  27490. },
  27491. back: {
  27492. height: math.unit(7 + 7 / 12, "feet"),
  27493. weight: math.unit(250, "lb"),
  27494. name: "Back",
  27495. image: {
  27496. source: "./media/characters/tala-grovehorn/back.svg",
  27497. extra: 2635 / 2539,
  27498. bottom: 100 / 2732.8
  27499. }
  27500. },
  27501. mouth: {
  27502. height: math.unit(1.15, "feet"),
  27503. name: "Mouth",
  27504. image: {
  27505. source: "./media/characters/tala-grovehorn/mouth.svg"
  27506. }
  27507. },
  27508. dick: {
  27509. height: math.unit(2.36, "feet"),
  27510. name: "Dick",
  27511. image: {
  27512. source: "./media/characters/tala-grovehorn/dick.svg"
  27513. }
  27514. },
  27515. slit: {
  27516. height: math.unit(0.61, "feet"),
  27517. name: "Slit",
  27518. image: {
  27519. source: "./media/characters/tala-grovehorn/slit.svg"
  27520. }
  27521. },
  27522. },
  27523. [
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27528. {
  27529. front: {
  27530. height: math.unit(7 + 7 / 12, "feet"),
  27531. weight: math.unit(225, "lb"),
  27532. name: "Front",
  27533. image: {
  27534. source: "./media/characters/epona/front.svg",
  27535. extra: 2445 / 2290,
  27536. bottom: 251 / 2696
  27537. }
  27538. },
  27539. back: {
  27540. height: math.unit(7 + 7 / 12, "feet"),
  27541. weight: math.unit(225, "lb"),
  27542. name: "Back",
  27543. image: {
  27544. source: "./media/characters/epona/back.svg",
  27545. extra: 2546 / 2408,
  27546. bottom: 44 / 2589
  27547. }
  27548. },
  27549. genitals: {
  27550. height: math.unit(1.5, "feet"),
  27551. name: "Genitals",
  27552. image: {
  27553. source: "./media/characters/epona/genitals.svg"
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Normal",
  27560. height: math.unit(7 + 7 / 12, "feet"),
  27561. default: true
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27567. {
  27568. front: {
  27569. height: math.unit(7, "feet"),
  27570. weight: math.unit(518, "lb"),
  27571. name: "Front",
  27572. image: {
  27573. source: "./media/characters/avia-bloodbourn/front.svg",
  27574. extra: 1466 / 1350,
  27575. bottom: 65 / 1527
  27576. }
  27577. },
  27578. },
  27579. [
  27580. ]
  27581. ))
  27582. characterMakers.push(() => makeCharacter(
  27583. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27584. {
  27585. front: {
  27586. height: math.unit(9.35, "feet"),
  27587. weight: math.unit(600, "lb"),
  27588. name: "Front",
  27589. image: {
  27590. source: "./media/characters/amera/front.svg",
  27591. extra: 891 / 818,
  27592. bottom: 30 / 922.7
  27593. }
  27594. },
  27595. back: {
  27596. height: math.unit(9.35, "feet"),
  27597. weight: math.unit(600, "lb"),
  27598. name: "Back",
  27599. image: {
  27600. source: "./media/characters/amera/back.svg",
  27601. extra: 876 / 824,
  27602. bottom: 6.8 / 884
  27603. }
  27604. },
  27605. dick: {
  27606. height: math.unit(2.14, "feet"),
  27607. name: "Dick",
  27608. image: {
  27609. source: "./media/characters/amera/dick.svg"
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(9.35, "feet"),
  27617. default: true
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27623. {
  27624. kneeling: {
  27625. height: math.unit(3 + 4 / 12, "feet"),
  27626. weight: math.unit(90, "lb"),
  27627. name: "Kneeling",
  27628. image: {
  27629. source: "./media/characters/rosewen/kneeling.svg",
  27630. extra: 1835 / 1571,
  27631. bottom: 27.7 / 1862
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Normal",
  27638. height: math.unit(3 + 4 / 12, "feet"),
  27639. default: true
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27645. {
  27646. front: {
  27647. height: math.unit(5 + 10 / 12, "feet"),
  27648. weight: math.unit(200, "lb"),
  27649. name: "Front",
  27650. image: {
  27651. source: "./media/characters/sabah/front.svg",
  27652. extra: 849 / 763,
  27653. bottom: 33.9 / 881
  27654. }
  27655. },
  27656. },
  27657. [
  27658. {
  27659. name: "Normal",
  27660. height: math.unit(5 + 10 / 12, "feet"),
  27661. default: true
  27662. },
  27663. ]
  27664. ))
  27665. characterMakers.push(() => makeCharacter(
  27666. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27667. {
  27668. front: {
  27669. height: math.unit(3 + 5 / 12, "feet"),
  27670. weight: math.unit(40, "kg"),
  27671. name: "Front",
  27672. image: {
  27673. source: "./media/characters/purple-flame/front.svg",
  27674. extra: 1577 / 1412,
  27675. bottom: 97 / 1694
  27676. }
  27677. },
  27678. frontDressed: {
  27679. height: math.unit(3 + 5 / 12, "feet"),
  27680. weight: math.unit(40, "kg"),
  27681. name: "Front (Dressed)",
  27682. image: {
  27683. source: "./media/characters/purple-flame/front-dressed.svg",
  27684. extra: 1577 / 1412,
  27685. bottom: 97 / 1694
  27686. }
  27687. },
  27688. headphones: {
  27689. height: math.unit(0.85, "feet"),
  27690. name: "Headphones",
  27691. image: {
  27692. source: "./media/characters/purple-flame/headphones.svg"
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Really Small",
  27699. height: math.unit(5, "cm")
  27700. },
  27701. {
  27702. name: "Micro",
  27703. height: math.unit(1 + 5 / 12, "feet")
  27704. },
  27705. {
  27706. name: "Normal",
  27707. height: math.unit(3 + 5 / 12, "feet"),
  27708. default: true
  27709. },
  27710. {
  27711. name: "Minimacro",
  27712. height: math.unit(125, "feet")
  27713. },
  27714. {
  27715. name: "Macro",
  27716. height: math.unit(0.5, "miles")
  27717. },
  27718. {
  27719. name: "Megamacro",
  27720. height: math.unit(50, "miles")
  27721. },
  27722. {
  27723. name: "Gigantic",
  27724. height: math.unit(750, "miles")
  27725. },
  27726. {
  27727. name: "Planetary",
  27728. height: math.unit(15000, "miles")
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(14, "feet"),
  27737. weight: math.unit(959, "lb"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/arsenal/front.svg",
  27741. extra: 2357 / 2157,
  27742. bottom: 93 / 2458
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Normal",
  27749. height: math.unit(14, "feet"),
  27750. default: true
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27756. {
  27757. front: {
  27758. height: math.unit(6, "feet"),
  27759. weight: math.unit(150, "lb"),
  27760. name: "Front",
  27761. image: {
  27762. source: "./media/characters/adira/front.svg",
  27763. extra: 1078 / 1029,
  27764. bottom: 87 / 1166
  27765. }
  27766. },
  27767. },
  27768. [
  27769. {
  27770. name: "Micro",
  27771. height: math.unit(4, "inches"),
  27772. default: true
  27773. },
  27774. {
  27775. name: "Macro",
  27776. height: math.unit(50, "feet")
  27777. },
  27778. ]
  27779. ))
  27780. characterMakers.push(() => makeCharacter(
  27781. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27782. {
  27783. front: {
  27784. height: math.unit(16, "feet"),
  27785. weight: math.unit(1000, "lb"),
  27786. name: "Front",
  27787. image: {
  27788. source: "./media/characters/grim/front.svg",
  27789. extra: 622 / 614,
  27790. bottom: 18.1 / 642
  27791. }
  27792. },
  27793. back: {
  27794. height: math.unit(16, "feet"),
  27795. weight: math.unit(1000, "lb"),
  27796. name: "Back",
  27797. image: {
  27798. source: "./media/characters/grim/back.svg",
  27799. extra: 610.6 / 602,
  27800. bottom: 40.8 / 652
  27801. }
  27802. },
  27803. hunched: {
  27804. height: math.unit(9.75, "feet"),
  27805. weight: math.unit(1000, "lb"),
  27806. name: "Hunched",
  27807. image: {
  27808. source: "./media/characters/grim/hunched.svg",
  27809. extra: 304 / 297,
  27810. bottom: 35.4 / 394
  27811. }
  27812. },
  27813. },
  27814. [
  27815. {
  27816. name: "Normal",
  27817. height: math.unit(16, "feet"),
  27818. default: true
  27819. },
  27820. ]
  27821. ))
  27822. characterMakers.push(() => makeCharacter(
  27823. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27824. {
  27825. front: {
  27826. height: math.unit(2.3, "meters"),
  27827. weight: math.unit(300, "lb"),
  27828. name: "Front",
  27829. image: {
  27830. source: "./media/characters/sinja/front-sfw.svg",
  27831. extra: 1393 / 1294,
  27832. bottom: 70 / 1463
  27833. }
  27834. },
  27835. frontNsfw: {
  27836. height: math.unit(2.3, "meters"),
  27837. weight: math.unit(300, "lb"),
  27838. name: "Front (NSFW)",
  27839. image: {
  27840. source: "./media/characters/sinja/front-nsfw.svg",
  27841. extra: 1393 / 1294,
  27842. bottom: 70 / 1463
  27843. }
  27844. },
  27845. back: {
  27846. height: math.unit(2.3, "meters"),
  27847. weight: math.unit(300, "lb"),
  27848. name: "Back",
  27849. image: {
  27850. source: "./media/characters/sinja/back.svg",
  27851. extra: 1393 / 1294,
  27852. bottom: 70 / 1463
  27853. }
  27854. },
  27855. head: {
  27856. height: math.unit(1.771, "feet"),
  27857. name: "Head",
  27858. image: {
  27859. source: "./media/characters/sinja/head.svg"
  27860. }
  27861. },
  27862. slit: {
  27863. height: math.unit(0.8, "feet"),
  27864. name: "Slit",
  27865. image: {
  27866. source: "./media/characters/sinja/slit.svg"
  27867. }
  27868. },
  27869. },
  27870. [
  27871. {
  27872. name: "Normal",
  27873. height: math.unit(2.3, "meters")
  27874. },
  27875. {
  27876. name: "Macro",
  27877. height: math.unit(91, "meters"),
  27878. default: true
  27879. },
  27880. {
  27881. name: "Megamacro",
  27882. height: math.unit(91440, "meters")
  27883. },
  27884. {
  27885. name: "Gigamacro",
  27886. height: math.unit(60960000, "meters")
  27887. },
  27888. {
  27889. name: "Teramacro",
  27890. height: math.unit(9144000000, "meters")
  27891. },
  27892. ]
  27893. ))
  27894. characterMakers.push(() => makeCharacter(
  27895. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27896. {
  27897. front: {
  27898. height: math.unit(1.7, "meters"),
  27899. weight: math.unit(130, "lb"),
  27900. name: "Front",
  27901. image: {
  27902. source: "./media/characters/kyu/front.svg",
  27903. extra: 415 / 395,
  27904. bottom: 5 / 420
  27905. }
  27906. },
  27907. head: {
  27908. height: math.unit(1.75, "feet"),
  27909. name: "Head",
  27910. image: {
  27911. source: "./media/characters/kyu/head.svg"
  27912. }
  27913. },
  27914. foot: {
  27915. height: math.unit(0.81, "feet"),
  27916. name: "Foot",
  27917. image: {
  27918. source: "./media/characters/kyu/foot.svg"
  27919. }
  27920. },
  27921. },
  27922. [
  27923. {
  27924. name: "Normal",
  27925. height: math.unit(1.7, "meters")
  27926. },
  27927. {
  27928. name: "Macro",
  27929. height: math.unit(131, "feet"),
  27930. default: true
  27931. },
  27932. {
  27933. name: "Megamacro",
  27934. height: math.unit(91440, "meters")
  27935. },
  27936. {
  27937. name: "Gigamacro",
  27938. height: math.unit(60960000, "meters")
  27939. },
  27940. {
  27941. name: "Teramacro",
  27942. height: math.unit(9144000000, "meters")
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27948. {
  27949. front: {
  27950. height: math.unit(7 + 1 / 12, "feet"),
  27951. weight: math.unit(250, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/joey/front.svg",
  27955. extra: 1791 / 1537,
  27956. bottom: 28 / 1816
  27957. }
  27958. },
  27959. },
  27960. [
  27961. {
  27962. name: "Micro",
  27963. height: math.unit(3, "inches")
  27964. },
  27965. {
  27966. name: "Normal",
  27967. height: math.unit(7 + 1 / 12, "feet"),
  27968. default: true
  27969. },
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(165, "cm"),
  27977. weight: math.unit(140, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/sam-evans/front.svg",
  27981. extra: 3417 / 3230,
  27982. bottom: 41.3 / 3417
  27983. }
  27984. },
  27985. frontSixTails: {
  27986. height: math.unit(165, "cm"),
  27987. weight: math.unit(140, "lb"),
  27988. name: "Front-six-tails",
  27989. image: {
  27990. source: "./media/characters/sam-evans/front-six-tails.svg",
  27991. extra: 3417 / 3230,
  27992. bottom: 41.3 / 3417
  27993. }
  27994. },
  27995. back: {
  27996. height: math.unit(165, "cm"),
  27997. weight: math.unit(140, "lb"),
  27998. name: "Back",
  27999. image: {
  28000. source: "./media/characters/sam-evans/back.svg",
  28001. extra: 3227 / 3032,
  28002. bottom: 6.8 / 3234
  28003. }
  28004. },
  28005. face: {
  28006. height: math.unit(0.68, "feet"),
  28007. name: "Face",
  28008. image: {
  28009. source: "./media/characters/sam-evans/face.svg"
  28010. }
  28011. },
  28012. },
  28013. [
  28014. {
  28015. name: "Normal",
  28016. height: math.unit(165, "cm"),
  28017. default: true
  28018. },
  28019. {
  28020. name: "Macro",
  28021. height: math.unit(100, "meters")
  28022. },
  28023. {
  28024. name: "Macro+",
  28025. height: math.unit(800, "meters")
  28026. },
  28027. {
  28028. name: "Macro++",
  28029. height: math.unit(3, "km")
  28030. },
  28031. {
  28032. name: "Macro+++",
  28033. height: math.unit(30, "km")
  28034. },
  28035. ]
  28036. ))
  28037. characterMakers.push(() => makeCharacter(
  28038. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28039. {
  28040. front: {
  28041. height: math.unit(10, "feet"),
  28042. weight: math.unit(750, "lb"),
  28043. name: "Front",
  28044. image: {
  28045. source: "./media/characters/juliet-a/front.svg",
  28046. extra: 1766 / 1720,
  28047. bottom: 43 / 1809
  28048. }
  28049. },
  28050. back: {
  28051. height: math.unit(10, "feet"),
  28052. weight: math.unit(750, "lb"),
  28053. name: "Back",
  28054. image: {
  28055. source: "./media/characters/juliet-a/back.svg",
  28056. extra: 1781 / 1734,
  28057. bottom: 35 / 1810,
  28058. }
  28059. },
  28060. },
  28061. [
  28062. {
  28063. name: "Normal",
  28064. height: math.unit(10, "feet"),
  28065. default: true
  28066. },
  28067. {
  28068. name: "Dragon Form",
  28069. height: math.unit(250, "feet")
  28070. },
  28071. {
  28072. name: "Macro",
  28073. height: math.unit(1000, "feet")
  28074. },
  28075. {
  28076. name: "Megamacro",
  28077. height: math.unit(10000, "feet")
  28078. }
  28079. ]
  28080. ))
  28081. characterMakers.push(() => makeCharacter(
  28082. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28083. {
  28084. regular: {
  28085. height: math.unit(7 + 3 / 12, "feet"),
  28086. weight: math.unit(260, "lb"),
  28087. name: "Regular",
  28088. image: {
  28089. source: "./media/characters/wild/regular.svg",
  28090. extra: 97.45 / 92,
  28091. bottom: 6.8 / 104.3
  28092. }
  28093. },
  28094. biggums: {
  28095. height: math.unit(8 + 6 / 12, "feet"),
  28096. weight: math.unit(425, "lb"),
  28097. name: "Biggums",
  28098. image: {
  28099. source: "./media/characters/wild/biggums.svg",
  28100. extra: 97.45 / 92,
  28101. bottom: 7.5 / 132.34
  28102. }
  28103. },
  28104. mawRegular: {
  28105. height: math.unit(1.24, "feet"),
  28106. name: "Maw (Regular)",
  28107. image: {
  28108. source: "./media/characters/wild/maw.svg"
  28109. }
  28110. },
  28111. mawBiggums: {
  28112. height: math.unit(1.47, "feet"),
  28113. name: "Maw (Biggums)",
  28114. image: {
  28115. source: "./media/characters/wild/maw.svg"
  28116. }
  28117. },
  28118. },
  28119. [
  28120. {
  28121. name: "Normal",
  28122. height: math.unit(7 + 3 / 12, "feet"),
  28123. default: true
  28124. },
  28125. ]
  28126. ))
  28127. characterMakers.push(() => makeCharacter(
  28128. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28129. {
  28130. front: {
  28131. height: math.unit(2.5, "meters"),
  28132. weight: math.unit(200, "kg"),
  28133. name: "Front",
  28134. image: {
  28135. source: "./media/characters/vidar/front.svg",
  28136. extra: 2994 / 2795,
  28137. bottom: 56 / 3061
  28138. }
  28139. },
  28140. back: {
  28141. height: math.unit(2.5, "meters"),
  28142. weight: math.unit(200, "kg"),
  28143. name: "Back",
  28144. image: {
  28145. source: "./media/characters/vidar/back.svg",
  28146. extra: 3131 / 2928,
  28147. bottom: 13.5 / 3141.5
  28148. }
  28149. },
  28150. feral: {
  28151. height: math.unit(2.5, "meters"),
  28152. weight: math.unit(2000, "kg"),
  28153. name: "Feral",
  28154. image: {
  28155. source: "./media/characters/vidar/feral.svg",
  28156. extra: 2790 / 1765,
  28157. bottom: 6 / 2796
  28158. }
  28159. },
  28160. },
  28161. [
  28162. {
  28163. name: "Normal",
  28164. height: math.unit(2.5, "meters"),
  28165. default: true
  28166. },
  28167. {
  28168. name: "Macro",
  28169. height: math.unit(100, "meters")
  28170. },
  28171. ]
  28172. ))
  28173. characterMakers.push(() => makeCharacter(
  28174. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28175. {
  28176. front: {
  28177. height: math.unit(5 + 9 / 12, "feet"),
  28178. weight: math.unit(120, "lb"),
  28179. name: "Front",
  28180. image: {
  28181. source: "./media/characters/ash/front.svg",
  28182. extra: 2189 / 1961,
  28183. bottom: 5.2 / 2194
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Normal",
  28190. height: math.unit(5 + 9 / 12, "feet"),
  28191. default: true
  28192. },
  28193. ]
  28194. ))
  28195. characterMakers.push(() => makeCharacter(
  28196. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28197. {
  28198. front: {
  28199. height: math.unit(9, "feet"),
  28200. weight: math.unit(10000, "lb"),
  28201. name: "Front",
  28202. image: {
  28203. source: "./media/characters/gygabite/front.svg",
  28204. bottom: 31.7 / 537.8,
  28205. extra: 505 / 370
  28206. }
  28207. },
  28208. },
  28209. [
  28210. {
  28211. name: "Normal",
  28212. height: math.unit(9, "feet"),
  28213. default: true
  28214. },
  28215. ]
  28216. ))
  28217. characterMakers.push(() => makeCharacter(
  28218. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28219. {
  28220. front: {
  28221. height: math.unit(12, "feet"),
  28222. weight: math.unit(35000, "lb"),
  28223. name: "Front",
  28224. image: {
  28225. source: "./media/characters/p0tat0/front.svg",
  28226. extra: 1065 / 921,
  28227. bottom: 55.7 / 1121.25
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(12, "feet"),
  28235. default: true
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28241. {
  28242. side: {
  28243. height: math.unit(6.5, "feet"),
  28244. weight: math.unit(800, "lb"),
  28245. name: "Side",
  28246. image: {
  28247. source: "./media/characters/dusk/side.svg",
  28248. extra: 615 / 373,
  28249. bottom: 53 / 664
  28250. }
  28251. },
  28252. sitting: {
  28253. height: math.unit(7, "feet"),
  28254. weight: math.unit(800, "lb"),
  28255. name: "Sitting",
  28256. image: {
  28257. source: "./media/characters/dusk/sitting.svg",
  28258. extra: 753 / 425,
  28259. bottom: 33 / 774
  28260. }
  28261. },
  28262. head: {
  28263. height: math.unit(6.1, "feet"),
  28264. name: "Head",
  28265. image: {
  28266. source: "./media/characters/dusk/head.svg"
  28267. }
  28268. },
  28269. },
  28270. [
  28271. {
  28272. name: "Normal",
  28273. height: math.unit(7, "feet"),
  28274. default: true
  28275. },
  28276. ]
  28277. ))
  28278. characterMakers.push(() => makeCharacter(
  28279. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28280. {
  28281. front: {
  28282. height: math.unit(15, "feet"),
  28283. weight: math.unit(7000, "lb"),
  28284. name: "Front",
  28285. image: {
  28286. source: "./media/characters/jay-direwolf/front.svg",
  28287. extra: 1810 / 1732,
  28288. bottom: 66 / 1892
  28289. }
  28290. },
  28291. },
  28292. [
  28293. {
  28294. name: "Normal",
  28295. height: math.unit(15, "feet"),
  28296. default: true
  28297. },
  28298. ]
  28299. ))
  28300. characterMakers.push(() => makeCharacter(
  28301. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28302. {
  28303. front: {
  28304. height: math.unit(4 + 9 / 12, "feet"),
  28305. weight: math.unit(130, "lb"),
  28306. name: "Front",
  28307. image: {
  28308. source: "./media/characters/anchovie/front.svg",
  28309. extra: 382 / 350,
  28310. bottom: 25 / 409
  28311. }
  28312. },
  28313. back: {
  28314. height: math.unit(4 + 9 / 12, "feet"),
  28315. weight: math.unit(130, "lb"),
  28316. name: "Back",
  28317. image: {
  28318. source: "./media/characters/anchovie/back.svg",
  28319. extra: 385 / 352,
  28320. bottom: 16.6 / 402
  28321. }
  28322. },
  28323. frontDressed: {
  28324. height: math.unit(4 + 9 / 12, "feet"),
  28325. weight: math.unit(130, "lb"),
  28326. name: "Front (Dressed)",
  28327. image: {
  28328. source: "./media/characters/anchovie/front-dressed.svg",
  28329. extra: 382 / 350,
  28330. bottom: 25 / 409
  28331. }
  28332. },
  28333. backDressed: {
  28334. height: math.unit(4 + 9 / 12, "feet"),
  28335. weight: math.unit(130, "lb"),
  28336. name: "Back (Dressed)",
  28337. image: {
  28338. source: "./media/characters/anchovie/back-dressed.svg",
  28339. extra: 385 / 352,
  28340. bottom: 16.6 / 402
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Micro",
  28347. height: math.unit(6.4, "inches")
  28348. },
  28349. {
  28350. name: "Normal",
  28351. height: math.unit(4 + 9 / 12, "feet"),
  28352. default: true
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(2, "meters"),
  28361. weight: math.unit(180, "lb"),
  28362. name: "Front",
  28363. image: {
  28364. source: "./media/characters/acidrenamon/front.svg",
  28365. extra: 987 / 890,
  28366. bottom: 22.8 / 1009
  28367. }
  28368. },
  28369. back: {
  28370. height: math.unit(2, "meters"),
  28371. weight: math.unit(180, "lb"),
  28372. name: "Back",
  28373. image: {
  28374. source: "./media/characters/acidrenamon/back.svg",
  28375. extra: 983 / 891,
  28376. bottom: 8.4 / 992
  28377. }
  28378. },
  28379. head: {
  28380. height: math.unit(1.92, "feet"),
  28381. name: "Head",
  28382. image: {
  28383. source: "./media/characters/acidrenamon/head.svg"
  28384. }
  28385. },
  28386. rump: {
  28387. height: math.unit(1.72, "feet"),
  28388. name: "Rump",
  28389. image: {
  28390. source: "./media/characters/acidrenamon/rump.svg"
  28391. }
  28392. },
  28393. tail: {
  28394. height: math.unit(4.2, "feet"),
  28395. name: "Tail",
  28396. image: {
  28397. source: "./media/characters/acidrenamon/tail.svg"
  28398. }
  28399. },
  28400. },
  28401. [
  28402. {
  28403. name: "Normal",
  28404. height: math.unit(2, "meters"),
  28405. default: true
  28406. },
  28407. {
  28408. name: "Minimacro",
  28409. height: math.unit(7, "meters")
  28410. },
  28411. {
  28412. name: "Macro",
  28413. height: math.unit(200, "meters")
  28414. },
  28415. {
  28416. name: "Gigamacro",
  28417. height: math.unit(0.2, "earths")
  28418. },
  28419. ]
  28420. ))
  28421. characterMakers.push(() => makeCharacter(
  28422. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28423. {
  28424. front: {
  28425. height: math.unit(152, "feet"),
  28426. name: "Front",
  28427. image: {
  28428. source: "./media/characters/kenzie-lee/front.svg",
  28429. extra: 1869/1774,
  28430. bottom: 128/1997
  28431. }
  28432. },
  28433. side: {
  28434. height: math.unit(86, "feet"),
  28435. name: "Side",
  28436. image: {
  28437. source: "./media/characters/kenzie-lee/side.svg",
  28438. extra: 930/815,
  28439. bottom: 177/1107
  28440. }
  28441. },
  28442. paw: {
  28443. height: math.unit(15, "feet"),
  28444. name: "Paw",
  28445. image: {
  28446. source: "./media/characters/kenzie-lee/paw.svg"
  28447. }
  28448. },
  28449. },
  28450. [
  28451. {
  28452. name: "Micro",
  28453. height: math.unit(1.5, "inches")
  28454. },
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(152, "feet"),
  28458. default: true
  28459. },
  28460. {
  28461. name: "Megamacro",
  28462. height: math.unit(7, "miles")
  28463. },
  28464. {
  28465. name: "Gigamacro",
  28466. height: math.unit(8000, "miles")
  28467. },
  28468. ]
  28469. ))
  28470. characterMakers.push(() => makeCharacter(
  28471. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28472. {
  28473. side: {
  28474. height: math.unit(6, "feet"),
  28475. weight: math.unit(150, "lb"),
  28476. name: "Side",
  28477. image: {
  28478. source: "./media/characters/withers/side.svg",
  28479. extra: 1830 / 1728,
  28480. bottom: 96 / 1927
  28481. }
  28482. },
  28483. front: {
  28484. height: math.unit(6, "feet"),
  28485. weight: math.unit(150, "lb"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/withers/front.svg",
  28489. extra: 1514 / 1438,
  28490. bottom: 118 / 1632
  28491. }
  28492. },
  28493. },
  28494. [
  28495. {
  28496. name: "Macro",
  28497. height: math.unit(168, "feet"),
  28498. default: true
  28499. },
  28500. {
  28501. name: "Megamacro",
  28502. height: math.unit(15, "miles")
  28503. }
  28504. ]
  28505. ))
  28506. characterMakers.push(() => makeCharacter(
  28507. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28508. {
  28509. front: {
  28510. height: math.unit(6 + 7 / 12, "feet"),
  28511. weight: math.unit(250, "lb"),
  28512. name: "Front",
  28513. image: {
  28514. source: "./media/characters/nemoskii/front.svg",
  28515. extra: 2270 / 1734,
  28516. bottom: 86 / 2354
  28517. }
  28518. },
  28519. back: {
  28520. height: math.unit(6 + 7 / 12, "feet"),
  28521. weight: math.unit(250, "lb"),
  28522. name: "Back",
  28523. image: {
  28524. source: "./media/characters/nemoskii/back.svg",
  28525. extra: 1845 / 1788,
  28526. bottom: 10.5 / 1852
  28527. }
  28528. },
  28529. head: {
  28530. height: math.unit(1.31, "feet"),
  28531. name: "Head",
  28532. image: {
  28533. source: "./media/characters/nemoskii/head.svg"
  28534. }
  28535. },
  28536. },
  28537. [
  28538. {
  28539. name: "Micro",
  28540. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28541. },
  28542. {
  28543. name: "Normal",
  28544. height: math.unit(6 + 7 / 12, "feet"),
  28545. default: true
  28546. },
  28547. {
  28548. name: "Macro",
  28549. height: math.unit((6 + 7 / 12) * 150, "feet")
  28550. },
  28551. {
  28552. name: "Macro+",
  28553. height: math.unit((6 + 7 / 12) * 500, "feet")
  28554. },
  28555. {
  28556. name: "Megamacro",
  28557. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28563. {
  28564. front: {
  28565. height: math.unit(1, "mile"),
  28566. weight: math.unit(265261.9, "lb"),
  28567. name: "Front",
  28568. image: {
  28569. source: "./media/characters/shui/front.svg",
  28570. extra: 1633 / 1564,
  28571. bottom: 91.5 / 1726
  28572. }
  28573. },
  28574. },
  28575. [
  28576. {
  28577. name: "Macro",
  28578. height: math.unit(1, "mile"),
  28579. default: true
  28580. },
  28581. ]
  28582. ))
  28583. characterMakers.push(() => makeCharacter(
  28584. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28585. {
  28586. front: {
  28587. height: math.unit(12 + 6 / 12, "feet"),
  28588. weight: math.unit(1342, "lb"),
  28589. name: "Front",
  28590. image: {
  28591. source: "./media/characters/arokh-takakura/front.svg",
  28592. extra: 1089 / 1043,
  28593. bottom: 77.4 / 1176.7
  28594. }
  28595. },
  28596. back: {
  28597. height: math.unit(12 + 6 / 12, "feet"),
  28598. weight: math.unit(1342, "lb"),
  28599. name: "Back",
  28600. image: {
  28601. source: "./media/characters/arokh-takakura/back.svg",
  28602. extra: 1046 / 1019,
  28603. bottom: 102 / 1150
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Big",
  28610. height: math.unit(12 + 6 / 12, "feet"),
  28611. default: true
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(5 + 6 / 12, "feet"),
  28620. weight: math.unit(150, "lb"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/theo/front.svg",
  28624. extra: 1184 / 1131,
  28625. bottom: 7.4 / 1191
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Micro",
  28632. height: math.unit(5, "inches")
  28633. },
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(5 + 6 / 12, "feet"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(5 + 9 / 12, "feet"),
  28646. weight: math.unit(130, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/cecelia-swift/front.svg",
  28650. extra: 502 / 484,
  28651. bottom: 23 / 523
  28652. }
  28653. },
  28654. back: {
  28655. height: math.unit(5 + 9 / 12, "feet"),
  28656. weight: math.unit(130, "lb"),
  28657. name: "Back",
  28658. image: {
  28659. source: "./media/characters/cecelia-swift/back.svg",
  28660. extra: 499 / 485,
  28661. bottom: 12 / 511
  28662. }
  28663. },
  28664. head: {
  28665. height: math.unit(0.90, "feet"),
  28666. name: "Head",
  28667. image: {
  28668. source: "./media/characters/cecelia-swift/head.svg"
  28669. }
  28670. },
  28671. rump: {
  28672. height: math.unit(1.75, "feet"),
  28673. name: "Rump",
  28674. image: {
  28675. source: "./media/characters/cecelia-swift/rump.svg"
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(5 + 9 / 12, "feet"),
  28683. default: true
  28684. },
  28685. {
  28686. name: "Big",
  28687. height: math.unit(50, "feet")
  28688. },
  28689. {
  28690. name: "Macro",
  28691. height: math.unit(100, "feet")
  28692. },
  28693. {
  28694. name: "Macro+",
  28695. height: math.unit(500, "feet")
  28696. },
  28697. {
  28698. name: "Macro++",
  28699. height: math.unit(1000, "feet")
  28700. },
  28701. ]
  28702. ))
  28703. characterMakers.push(() => makeCharacter(
  28704. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28705. {
  28706. front: {
  28707. height: math.unit(6, "feet"),
  28708. weight: math.unit(150, "lb"),
  28709. name: "Front",
  28710. image: {
  28711. source: "./media/characters/kaunan/front.svg",
  28712. extra: 2890 / 2523,
  28713. bottom: 49 / 2939
  28714. }
  28715. },
  28716. },
  28717. [
  28718. {
  28719. name: "Macro",
  28720. height: math.unit(150, "feet"),
  28721. default: true
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28727. {
  28728. front: {
  28729. height: math.unit(175, "cm"),
  28730. weight: math.unit(60, "kg"),
  28731. name: "Front",
  28732. image: {
  28733. source: "./media/characters/fei/front.svg",
  28734. extra: 1873/1723,
  28735. bottom: 53/1926
  28736. }
  28737. },
  28738. },
  28739. [
  28740. {
  28741. name: "Mortal",
  28742. height: math.unit(175, "cm")
  28743. },
  28744. {
  28745. name: "Normal",
  28746. height: math.unit(3500, "m"),
  28747. default: true
  28748. },
  28749. {
  28750. name: "Stroll",
  28751. height: math.unit(17.5, "km")
  28752. },
  28753. {
  28754. name: "Showoff",
  28755. height: math.unit(175, "km")
  28756. },
  28757. ]
  28758. ))
  28759. characterMakers.push(() => makeCharacter(
  28760. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28761. {
  28762. front: {
  28763. height: math.unit(7, "feet"),
  28764. weight: math.unit(1000, "kg"),
  28765. name: "Front",
  28766. image: {
  28767. source: "./media/characters/edrax/front.svg",
  28768. extra: 2838 / 2550,
  28769. bottom: 130 / 2968
  28770. }
  28771. },
  28772. },
  28773. [
  28774. {
  28775. name: "Small",
  28776. height: math.unit(7, "feet")
  28777. },
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(1500, "meters")
  28781. },
  28782. {
  28783. name: "Mega",
  28784. height: math.unit(12000000, "km"),
  28785. default: true
  28786. },
  28787. {
  28788. name: "Megamacro",
  28789. height: math.unit(10600000, "lightyears")
  28790. },
  28791. {
  28792. name: "Hypermacro",
  28793. height: math.unit(256, "yottameters")
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(10, "feet"),
  28802. weight: math.unit(750, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/clove/front.svg",
  28806. extra: 1918/1751,
  28807. bottom: 52/1970
  28808. }
  28809. },
  28810. back: {
  28811. height: math.unit(10, "feet"),
  28812. weight: math.unit(750, "lb"),
  28813. name: "Back",
  28814. image: {
  28815. source: "./media/characters/clove/back.svg",
  28816. extra: 1912/1747,
  28817. bottom: 50/1962
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Normal",
  28824. height: math.unit(10, "feet"),
  28825. default: true
  28826. },
  28827. ]
  28828. ))
  28829. characterMakers.push(() => makeCharacter(
  28830. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28831. {
  28832. front: {
  28833. height: math.unit(4, "feet"),
  28834. weight: math.unit(50, "lb"),
  28835. name: "Front",
  28836. image: {
  28837. source: "./media/characters/alex-rabbit/front.svg",
  28838. extra: 507 / 458,
  28839. bottom: 18.5 / 527
  28840. }
  28841. },
  28842. back: {
  28843. height: math.unit(4, "feet"),
  28844. weight: math.unit(50, "lb"),
  28845. name: "Back",
  28846. image: {
  28847. source: "./media/characters/alex-rabbit/back.svg",
  28848. extra: 502 / 460,
  28849. bottom: 18.9 / 521
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(4, "feet"),
  28857. default: true
  28858. },
  28859. ]
  28860. ))
  28861. characterMakers.push(() => makeCharacter(
  28862. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28863. {
  28864. front: {
  28865. height: math.unit(1 + 3 / 12, "feet"),
  28866. weight: math.unit(80, "lb"),
  28867. name: "Front",
  28868. image: {
  28869. source: "./media/characters/zander-rose/front.svg",
  28870. extra: 916 / 797,
  28871. bottom: 17 / 933
  28872. }
  28873. },
  28874. back: {
  28875. height: math.unit(1 + 3 / 12, "feet"),
  28876. weight: math.unit(80, "lb"),
  28877. name: "Back",
  28878. image: {
  28879. source: "./media/characters/zander-rose/back.svg",
  28880. extra: 903 / 779,
  28881. bottom: 31 / 934
  28882. }
  28883. },
  28884. },
  28885. [
  28886. {
  28887. name: "Normal",
  28888. height: math.unit(1 + 3 / 12, "feet"),
  28889. default: true
  28890. },
  28891. ]
  28892. ))
  28893. characterMakers.push(() => makeCharacter(
  28894. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28895. {
  28896. anthro: {
  28897. height: math.unit(6, "feet"),
  28898. weight: math.unit(150, "lb"),
  28899. name: "Anthro",
  28900. image: {
  28901. source: "./media/characters/razz/anthro.svg",
  28902. extra: 1437 / 1343,
  28903. bottom: 48 / 1485
  28904. }
  28905. },
  28906. feral: {
  28907. height: math.unit(6, "feet"),
  28908. weight: math.unit(150, "lb"),
  28909. name: "Feral",
  28910. image: {
  28911. source: "./media/characters/razz/feral.svg",
  28912. extra: 2569 / 1385,
  28913. bottom: 95 / 2664
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Normal",
  28920. height: math.unit(6, "feet"),
  28921. default: true
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28927. {
  28928. front: {
  28929. height: math.unit(9 + 4 / 12, "feet"),
  28930. weight: math.unit(500, "lb"),
  28931. name: "Front",
  28932. image: {
  28933. source: "./media/characters/morrigan/front.svg",
  28934. extra: 2707 / 2579,
  28935. bottom: 156 / 2863
  28936. }
  28937. },
  28938. },
  28939. [
  28940. {
  28941. name: "Normal",
  28942. height: math.unit(9 + 4 / 12, "feet"),
  28943. default: true
  28944. },
  28945. ]
  28946. ))
  28947. characterMakers.push(() => makeCharacter(
  28948. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28949. {
  28950. front: {
  28951. height: math.unit(5, "stories"),
  28952. weight: math.unit(4000, "lb"),
  28953. name: "Front",
  28954. image: {
  28955. source: "./media/characters/jenene/front.svg",
  28956. extra: 1780 / 1710,
  28957. bottom: 57 / 1837
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(5, "stories"),
  28965. default: true
  28966. },
  28967. ]
  28968. ))
  28969. characterMakers.push(() => makeCharacter(
  28970. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28971. {
  28972. taurSfw: {
  28973. height: math.unit(10, "meters"),
  28974. weight: math.unit(17500, "kg"),
  28975. name: "Taur",
  28976. image: {
  28977. source: "./media/characters/faey/taur-sfw.svg",
  28978. extra: 1200 / 968,
  28979. bottom: 41 / 1241
  28980. }
  28981. },
  28982. chestmaw: {
  28983. height: math.unit(2.01, "meters"),
  28984. name: "Chestmaw",
  28985. image: {
  28986. source: "./media/characters/faey/chestmaw.svg"
  28987. }
  28988. },
  28989. foot: {
  28990. height: math.unit(2.43, "meters"),
  28991. name: "Foot",
  28992. image: {
  28993. source: "./media/characters/faey/foot.svg"
  28994. }
  28995. },
  28996. jaws: {
  28997. height: math.unit(1.66, "meters"),
  28998. name: "Jaws",
  28999. image: {
  29000. source: "./media/characters/faey/jaws.svg"
  29001. }
  29002. },
  29003. tongues: {
  29004. height: math.unit(2.01, "meters"),
  29005. name: "Tongues",
  29006. image: {
  29007. source: "./media/characters/faey/tongues.svg"
  29008. }
  29009. },
  29010. },
  29011. [
  29012. {
  29013. name: "Small",
  29014. height: math.unit(10, "meters"),
  29015. default: true
  29016. },
  29017. {
  29018. name: "Big",
  29019. height: math.unit(500000, "km")
  29020. },
  29021. ]
  29022. ))
  29023. characterMakers.push(() => makeCharacter(
  29024. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29025. {
  29026. front: {
  29027. height: math.unit(7, "feet"),
  29028. weight: math.unit(275, "lb"),
  29029. name: "Front",
  29030. image: {
  29031. source: "./media/characters/roku/front.svg",
  29032. extra: 903 / 878,
  29033. bottom: 37 / 940
  29034. }
  29035. },
  29036. },
  29037. [
  29038. {
  29039. name: "Normal",
  29040. height: math.unit(7, "feet"),
  29041. default: true
  29042. },
  29043. {
  29044. name: "Macro",
  29045. height: math.unit(500, "feet")
  29046. },
  29047. {
  29048. name: "Megamacro",
  29049. height: math.unit(200, "miles")
  29050. },
  29051. ]
  29052. ))
  29053. characterMakers.push(() => makeCharacter(
  29054. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29055. {
  29056. front: {
  29057. height: math.unit(6 + 2 / 12, "feet"),
  29058. weight: math.unit(150, "lb"),
  29059. name: "Front",
  29060. image: {
  29061. source: "./media/characters/lira/front.svg",
  29062. extra: 1727 / 1605,
  29063. bottom: 26 / 1753
  29064. }
  29065. },
  29066. back: {
  29067. height: math.unit(6 + 2 / 12, "feet"),
  29068. weight: math.unit(150, "lb"),
  29069. name: "Back",
  29070. image: {
  29071. source: "./media/characters/lira/back.svg",
  29072. extra: 1713/1621,
  29073. bottom: 20/1733
  29074. }
  29075. },
  29076. hand: {
  29077. height: math.unit(0.75, "feet"),
  29078. name: "Hand",
  29079. image: {
  29080. source: "./media/characters/lira/hand.svg"
  29081. }
  29082. },
  29083. maw: {
  29084. height: math.unit(0.65, "feet"),
  29085. name: "Maw",
  29086. image: {
  29087. source: "./media/characters/lira/maw.svg"
  29088. }
  29089. },
  29090. pawDigi: {
  29091. height: math.unit(1.6, "feet"),
  29092. name: "Paw Digi",
  29093. image: {
  29094. source: "./media/characters/lira/paw-digi.svg"
  29095. }
  29096. },
  29097. pawPlanti: {
  29098. height: math.unit(1.4, "feet"),
  29099. name: "Paw Planti",
  29100. image: {
  29101. source: "./media/characters/lira/paw-planti.svg"
  29102. }
  29103. },
  29104. },
  29105. [
  29106. {
  29107. name: "Normal",
  29108. height: math.unit(6 + 2 / 12, "feet"),
  29109. default: true
  29110. },
  29111. {
  29112. name: "Macro",
  29113. height: math.unit(100, "feet")
  29114. },
  29115. {
  29116. name: "Macro²",
  29117. height: math.unit(1600, "feet")
  29118. },
  29119. {
  29120. name: "Planetary",
  29121. height: math.unit(20, "earths")
  29122. },
  29123. ]
  29124. ))
  29125. characterMakers.push(() => makeCharacter(
  29126. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29127. {
  29128. front: {
  29129. height: math.unit(6, "feet"),
  29130. weight: math.unit(150, "lb"),
  29131. name: "Front",
  29132. image: {
  29133. source: "./media/characters/hadjet/front.svg",
  29134. extra: 1480 / 1346,
  29135. bottom: 26 / 1506
  29136. }
  29137. },
  29138. frontNsfw: {
  29139. height: math.unit(6, "feet"),
  29140. weight: math.unit(150, "lb"),
  29141. name: "Front (NSFW)",
  29142. image: {
  29143. source: "./media/characters/hadjet/front-nsfw.svg",
  29144. extra: 1440 / 1358,
  29145. bottom: 52 / 1492
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Macro",
  29152. height: math.unit(10, "stories"),
  29153. default: true
  29154. },
  29155. {
  29156. name: "Megamacro",
  29157. height: math.unit(1.5, "miles")
  29158. },
  29159. {
  29160. name: "Megamacro+",
  29161. height: math.unit(5, "miles")
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29167. {
  29168. side: {
  29169. height: math.unit(106, "feet"),
  29170. weight: math.unit(500, "tonnes"),
  29171. name: "Side",
  29172. image: {
  29173. source: "./media/characters/kodran/side.svg",
  29174. extra: 553 / 480,
  29175. bottom: 33 / 586
  29176. }
  29177. },
  29178. front: {
  29179. height: math.unit(132, "feet"),
  29180. weight: math.unit(500, "tonnes"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/kodran/front.svg",
  29184. extra: 667 / 643,
  29185. bottom: 42 / 709
  29186. }
  29187. },
  29188. flying: {
  29189. height: math.unit(350, "feet"),
  29190. weight: math.unit(500, "tonnes"),
  29191. name: "Flying",
  29192. image: {
  29193. source: "./media/characters/kodran/flying.svg"
  29194. }
  29195. },
  29196. foot: {
  29197. height: math.unit(33, "feet"),
  29198. name: "Foot",
  29199. image: {
  29200. source: "./media/characters/kodran/foot.svg"
  29201. }
  29202. },
  29203. footFront: {
  29204. height: math.unit(19, "feet"),
  29205. name: "Foot (Front)",
  29206. image: {
  29207. source: "./media/characters/kodran/foot-front.svg",
  29208. extra: 261 / 261,
  29209. bottom: 91 / 352
  29210. }
  29211. },
  29212. headFront: {
  29213. height: math.unit(53, "feet"),
  29214. name: "Head (Front)",
  29215. image: {
  29216. source: "./media/characters/kodran/head-front.svg"
  29217. }
  29218. },
  29219. headSide: {
  29220. height: math.unit(65, "feet"),
  29221. name: "Head (Side)",
  29222. image: {
  29223. source: "./media/characters/kodran/head-side.svg"
  29224. }
  29225. },
  29226. throat: {
  29227. height: math.unit(79, "feet"),
  29228. name: "Throat",
  29229. image: {
  29230. source: "./media/characters/kodran/throat.svg"
  29231. }
  29232. },
  29233. },
  29234. [
  29235. {
  29236. name: "Large",
  29237. height: math.unit(106, "feet"),
  29238. default: true
  29239. },
  29240. ]
  29241. ))
  29242. characterMakers.push(() => makeCharacter(
  29243. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29244. {
  29245. side: {
  29246. height: math.unit(11, "feet"),
  29247. weight: math.unit(150, "lb"),
  29248. name: "Side",
  29249. image: {
  29250. source: "./media/characters/pyxaron/side.svg",
  29251. extra: 305 / 195,
  29252. bottom: 17 / 322
  29253. }
  29254. },
  29255. },
  29256. [
  29257. {
  29258. name: "Normal",
  29259. height: math.unit(11, "feet"),
  29260. default: true
  29261. },
  29262. ]
  29263. ))
  29264. characterMakers.push(() => makeCharacter(
  29265. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29266. {
  29267. front: {
  29268. height: math.unit(6, "feet"),
  29269. weight: math.unit(150, "lb"),
  29270. name: "Front",
  29271. image: {
  29272. source: "./media/characters/meep/front.svg",
  29273. extra: 88 / 80,
  29274. bottom: 6 / 94
  29275. }
  29276. },
  29277. },
  29278. [
  29279. {
  29280. name: "Fun Sized",
  29281. height: math.unit(2, "inches"),
  29282. default: true
  29283. },
  29284. {
  29285. name: "Friend Sized",
  29286. height: math.unit(8, "inches")
  29287. },
  29288. ]
  29289. ))
  29290. characterMakers.push(() => makeCharacter(
  29291. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29292. {
  29293. front: {
  29294. height: math.unit(15, "feet"),
  29295. weight: math.unit(2500, "lb"),
  29296. name: "Front",
  29297. image: {
  29298. source: "./media/characters/holly-rabbit/front.svg",
  29299. extra: 1433 / 1233,
  29300. bottom: 125 / 1558
  29301. }
  29302. },
  29303. dick: {
  29304. height: math.unit(4.6, "feet"),
  29305. name: "Dick",
  29306. image: {
  29307. source: "./media/characters/holly-rabbit/dick.svg"
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Normal",
  29314. height: math.unit(15, "feet"),
  29315. default: true
  29316. },
  29317. {
  29318. name: "Macro",
  29319. height: math.unit(250, "feet")
  29320. },
  29321. {
  29322. name: "Macro+",
  29323. height: math.unit(2500, "feet")
  29324. },
  29325. ]
  29326. ))
  29327. characterMakers.push(() => makeCharacter(
  29328. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29329. {
  29330. front: {
  29331. height: math.unit(3.02, "meters"),
  29332. weight: math.unit(500, "kg"),
  29333. name: "Front",
  29334. image: {
  29335. source: "./media/characters/drena/front.svg",
  29336. extra: 282 / 243,
  29337. bottom: 8 / 290
  29338. }
  29339. },
  29340. side: {
  29341. height: math.unit(3.02, "meters"),
  29342. weight: math.unit(500, "kg"),
  29343. name: "Side",
  29344. image: {
  29345. source: "./media/characters/drena/side.svg",
  29346. extra: 280 / 245,
  29347. bottom: 10 / 290
  29348. }
  29349. },
  29350. back: {
  29351. height: math.unit(3.02, "meters"),
  29352. weight: math.unit(500, "kg"),
  29353. name: "Back",
  29354. image: {
  29355. source: "./media/characters/drena/back.svg",
  29356. extra: 278 / 243,
  29357. bottom: 2 / 280
  29358. }
  29359. },
  29360. foot: {
  29361. height: math.unit(0.75, "meters"),
  29362. name: "Foot",
  29363. image: {
  29364. source: "./media/characters/drena/foot.svg"
  29365. }
  29366. },
  29367. maw: {
  29368. height: math.unit(0.82, "meters"),
  29369. name: "Maw",
  29370. image: {
  29371. source: "./media/characters/drena/maw.svg"
  29372. }
  29373. },
  29374. eating: {
  29375. height: math.unit(0.75, "meters"),
  29376. name: "Eating",
  29377. image: {
  29378. source: "./media/characters/drena/eating.svg"
  29379. }
  29380. },
  29381. rump: {
  29382. height: math.unit(0.93, "meters"),
  29383. name: "Rump",
  29384. image: {
  29385. source: "./media/characters/drena/rump.svg"
  29386. }
  29387. },
  29388. },
  29389. [
  29390. {
  29391. name: "Normal",
  29392. height: math.unit(3.02, "meters"),
  29393. default: true
  29394. },
  29395. ]
  29396. ))
  29397. characterMakers.push(() => makeCharacter(
  29398. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29399. {
  29400. front: {
  29401. height: math.unit(6 + 4 / 12, "feet"),
  29402. weight: math.unit(250, "lb"),
  29403. name: "Front",
  29404. image: {
  29405. source: "./media/characters/remmyzilla/front.svg",
  29406. extra: 4033 / 3588,
  29407. bottom: 123 / 4156
  29408. }
  29409. },
  29410. back: {
  29411. height: math.unit(6 + 4 / 12, "feet"),
  29412. weight: math.unit(250, "lb"),
  29413. name: "Back",
  29414. image: {
  29415. source: "./media/characters/remmyzilla/back.svg",
  29416. extra: 2687 / 2555,
  29417. bottom: 48 / 2735
  29418. }
  29419. },
  29420. paw: {
  29421. height: math.unit(1.73, "feet"),
  29422. name: "Paw",
  29423. image: {
  29424. source: "./media/characters/remmyzilla/paw.svg"
  29425. }
  29426. },
  29427. maw: {
  29428. height: math.unit(1.73, "feet"),
  29429. name: "Maw",
  29430. image: {
  29431. source: "./media/characters/remmyzilla/maw.svg"
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "Normal",
  29438. height: math.unit(6 + 4 / 12, "feet")
  29439. },
  29440. {
  29441. name: "Minimacro",
  29442. height: math.unit(12 + 8 / 12, "feet")
  29443. },
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(640, "feet"),
  29447. default: true
  29448. },
  29449. {
  29450. name: "Megamacro",
  29451. height: math.unit(6400, "feet")
  29452. },
  29453. {
  29454. name: "Gigamacro",
  29455. height: math.unit(64000, "miles")
  29456. },
  29457. ]
  29458. ))
  29459. characterMakers.push(() => makeCharacter(
  29460. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29461. {
  29462. front: {
  29463. height: math.unit(2.5, "meters"),
  29464. weight: math.unit(300, "lb"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/lawrence/front.svg",
  29468. extra: 357 / 335,
  29469. bottom: 30 / 387
  29470. }
  29471. },
  29472. back: {
  29473. height: math.unit(2.5, "meters"),
  29474. weight: math.unit(300, "lb"),
  29475. name: "Back",
  29476. image: {
  29477. source: "./media/characters/lawrence/back.svg",
  29478. extra: 357 / 338,
  29479. bottom: 16 / 373
  29480. }
  29481. },
  29482. head: {
  29483. height: math.unit(0.9, "meter"),
  29484. name: "Head",
  29485. image: {
  29486. source: "./media/characters/lawrence/head.svg"
  29487. }
  29488. },
  29489. maw: {
  29490. height: math.unit(0.7, "meter"),
  29491. name: "Maw",
  29492. image: {
  29493. source: "./media/characters/lawrence/maw.svg"
  29494. }
  29495. },
  29496. footBottom: {
  29497. height: math.unit(0.5, "meter"),
  29498. name: "Foot (Bottom)",
  29499. image: {
  29500. source: "./media/characters/lawrence/foot-bottom.svg"
  29501. }
  29502. },
  29503. footTop: {
  29504. height: math.unit(0.5, "meter"),
  29505. name: "Foot (Top)",
  29506. image: {
  29507. source: "./media/characters/lawrence/foot-top.svg"
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Normal",
  29514. height: math.unit(2.5, "meters"),
  29515. default: true
  29516. },
  29517. {
  29518. name: "Macro",
  29519. height: math.unit(95, "meters")
  29520. },
  29521. {
  29522. name: "Megamacro",
  29523. height: math.unit(150, "km")
  29524. },
  29525. ]
  29526. ))
  29527. characterMakers.push(() => makeCharacter(
  29528. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29529. {
  29530. front: {
  29531. height: math.unit(4.2, "meters"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/sydney/front.svg",
  29535. extra: 1323 / 1277,
  29536. bottom: 111 / 1434
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Normal",
  29543. height: math.unit(4.2, "meters"),
  29544. default: true
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29550. {
  29551. back: {
  29552. height: math.unit(201, "feet"),
  29553. name: "Back",
  29554. image: {
  29555. source: "./media/characters/jessica/back.svg",
  29556. extra: 273 / 259,
  29557. bottom: 7 / 280
  29558. }
  29559. },
  29560. },
  29561. [
  29562. {
  29563. name: "Normal",
  29564. height: math.unit(201, "feet"),
  29565. default: true
  29566. },
  29567. {
  29568. name: "Megamacro",
  29569. height: math.unit(8, "miles")
  29570. },
  29571. ]
  29572. ))
  29573. characterMakers.push(() => makeCharacter(
  29574. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29575. {
  29576. side: {
  29577. height: math.unit(5.6, "m"),
  29578. weight: math.unit(8000, "kg"),
  29579. name: "Side",
  29580. image: {
  29581. source: "./media/characters/victoria/side.svg",
  29582. extra: 1542/1229,
  29583. bottom: 124/1666
  29584. }
  29585. },
  29586. maw: {
  29587. height: math.unit(7.14, "feet"),
  29588. name: "Maw",
  29589. image: {
  29590. source: "./media/characters/victoria/maw.svg"
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Normal",
  29597. height: math.unit(5.6, "m"),
  29598. default: true
  29599. },
  29600. ]
  29601. ))
  29602. characterMakers.push(() => makeCharacter(
  29603. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29604. {
  29605. front: {
  29606. height: math.unit(5 + 6 / 12, "feet"),
  29607. name: "Front",
  29608. image: {
  29609. source: "./media/characters/cat/front.svg",
  29610. extra: 1449/1295,
  29611. bottom: 34/1483
  29612. },
  29613. form: "cat",
  29614. default: true
  29615. },
  29616. back: {
  29617. height: math.unit(5 + 6 / 12, "feet"),
  29618. name: "Back",
  29619. image: {
  29620. source: "./media/characters/cat/back.svg",
  29621. extra: 1466/1301,
  29622. bottom: 19/1485
  29623. },
  29624. form: "cat"
  29625. },
  29626. taur: {
  29627. height: math.unit(7, "feet"),
  29628. name: "Taur",
  29629. image: {
  29630. source: "./media/characters/cat/taur.svg",
  29631. extra: 1389/1233,
  29632. bottom: 83/1472
  29633. },
  29634. form: "taur",
  29635. default: true
  29636. },
  29637. lucarioFront: {
  29638. height: math.unit(4, "feet"),
  29639. name: "Lucario (Front)",
  29640. image: {
  29641. source: "./media/characters/cat/lucario-front.svg",
  29642. extra: 1149/1019,
  29643. bottom: 84/1233
  29644. },
  29645. form: "lucario",
  29646. default: true
  29647. },
  29648. lucarioBack: {
  29649. height: math.unit(4, "feet"),
  29650. name: "Lucario (Back)",
  29651. image: {
  29652. source: "./media/characters/cat/lucario-back.svg",
  29653. extra: 1190/1059,
  29654. bottom: 33/1223
  29655. },
  29656. form: "lucario"
  29657. },
  29658. megaLucario: {
  29659. height: math.unit(4, "feet"),
  29660. name: "Mega Lucario",
  29661. image: {
  29662. source: "./media/characters/cat/mega-lucario.svg",
  29663. extra: 1515 / 1319,
  29664. bottom: 63 / 1578
  29665. },
  29666. form: "lucario"
  29667. },
  29668. nickit: {
  29669. height: math.unit(2, "feet"),
  29670. name: "Nickit",
  29671. image: {
  29672. source: "./media/characters/cat/nickit.svg",
  29673. extra: 1980 / 1585,
  29674. bottom: 102 / 2082
  29675. },
  29676. form: "nickit",
  29677. default: true
  29678. },
  29679. lopunnyFront: {
  29680. height: math.unit(5, "feet"),
  29681. name: "Lopunny (Front)",
  29682. image: {
  29683. source: "./media/characters/cat/lopunny-front.svg",
  29684. extra: 1782 / 1469,
  29685. bottom: 38 / 1820
  29686. },
  29687. form: "lopunny",
  29688. default: true
  29689. },
  29690. lopunnyBack: {
  29691. height: math.unit(5, "feet"),
  29692. name: "Lopunny (Back)",
  29693. image: {
  29694. source: "./media/characters/cat/lopunny-back.svg",
  29695. extra: 1660 / 1490,
  29696. bottom: 25 / 1685
  29697. },
  29698. form: "lopunny"
  29699. },
  29700. },
  29701. [
  29702. {
  29703. name: "Really small",
  29704. height: math.unit(1, "nm")
  29705. },
  29706. {
  29707. name: "Micro",
  29708. height: math.unit(5, "inches")
  29709. },
  29710. {
  29711. name: "Normal",
  29712. height: math.unit(5 + 6 / 12, "feet"),
  29713. default: true
  29714. },
  29715. {
  29716. name: "Macro",
  29717. height: math.unit(50, "feet")
  29718. },
  29719. {
  29720. name: "Macro+",
  29721. height: math.unit(150, "feet")
  29722. },
  29723. {
  29724. name: "Megamacro",
  29725. height: math.unit(100, "miles")
  29726. },
  29727. ]
  29728. ))
  29729. characterMakers.push(() => makeCharacter(
  29730. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29731. {
  29732. front: {
  29733. height: math.unit(63.4, "meters"),
  29734. weight: math.unit(3.28349e+6, "kilograms"),
  29735. name: "Front",
  29736. image: {
  29737. source: "./media/characters/kirina-violet/front.svg",
  29738. extra: 2812 / 2725,
  29739. bottom: 0 / 2812
  29740. }
  29741. },
  29742. back: {
  29743. height: math.unit(63.4, "meters"),
  29744. weight: math.unit(3.28349e+6, "kilograms"),
  29745. name: "Back",
  29746. image: {
  29747. source: "./media/characters/kirina-violet/back.svg",
  29748. extra: 2812 / 2725,
  29749. bottom: 0 / 2812
  29750. }
  29751. },
  29752. mouth: {
  29753. height: math.unit(4.35, "meters"),
  29754. name: "Mouth",
  29755. image: {
  29756. source: "./media/characters/kirina-violet/mouth.svg"
  29757. }
  29758. },
  29759. paw: {
  29760. height: math.unit(5.6, "meters"),
  29761. name: "Paw",
  29762. image: {
  29763. source: "./media/characters/kirina-violet/paw.svg"
  29764. }
  29765. },
  29766. tail: {
  29767. height: math.unit(18, "meters"),
  29768. name: "Tail",
  29769. image: {
  29770. source: "./media/characters/kirina-violet/tail.svg"
  29771. }
  29772. },
  29773. },
  29774. [
  29775. {
  29776. name: "Macro",
  29777. height: math.unit(63.4, "meters"),
  29778. default: true
  29779. },
  29780. ]
  29781. ))
  29782. characterMakers.push(() => makeCharacter(
  29783. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29784. {
  29785. front: {
  29786. height: math.unit(75, "feet"),
  29787. name: "Front",
  29788. image: {
  29789. source: "./media/characters/cat-gigachu/front.svg",
  29790. extra: 1239/1027,
  29791. bottom: 32/1271
  29792. }
  29793. },
  29794. back: {
  29795. height: math.unit(75, "feet"),
  29796. name: "Back",
  29797. image: {
  29798. source: "./media/characters/cat-gigachu/back.svg",
  29799. extra: 1229/1030,
  29800. bottom: 9/1238
  29801. }
  29802. },
  29803. },
  29804. [
  29805. {
  29806. name: "Dynamax",
  29807. height: math.unit(75, "feet"),
  29808. default: true
  29809. },
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29814. {
  29815. front: {
  29816. height: math.unit(6, "feet"),
  29817. weight: math.unit(150, "lb"),
  29818. name: "Front",
  29819. image: {
  29820. source: "./media/characters/sfaiyan/front.svg",
  29821. extra: 999 / 978,
  29822. bottom: 5 / 1004
  29823. }
  29824. },
  29825. },
  29826. [
  29827. {
  29828. name: "Normal",
  29829. height: math.unit(1.82, "meters")
  29830. },
  29831. {
  29832. name: "Giant",
  29833. height: math.unit(2.27, "km"),
  29834. default: true
  29835. },
  29836. ]
  29837. ))
  29838. characterMakers.push(() => makeCharacter(
  29839. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29840. {
  29841. front: {
  29842. height: math.unit(179, "cm"),
  29843. weight: math.unit(100, "kg"),
  29844. name: "Front",
  29845. image: {
  29846. source: "./media/characters/raunehkeli/front.svg",
  29847. extra: 1934 / 1926,
  29848. bottom: 0 / 1934
  29849. }
  29850. },
  29851. },
  29852. [
  29853. {
  29854. name: "Normal",
  29855. height: math.unit(179, "cm")
  29856. },
  29857. {
  29858. name: "Maximum",
  29859. height: math.unit(575, "meters"),
  29860. default: true
  29861. },
  29862. ]
  29863. ))
  29864. characterMakers.push(() => makeCharacter(
  29865. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29866. {
  29867. front: {
  29868. height: math.unit(6, "feet"),
  29869. weight: math.unit(150, "lb"),
  29870. name: "Front",
  29871. image: {
  29872. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29873. extra: 2625 / 2518,
  29874. bottom: 60 / 2685
  29875. }
  29876. },
  29877. },
  29878. [
  29879. {
  29880. name: "Normal",
  29881. height: math.unit(6 + 2 / 12, "feet")
  29882. },
  29883. {
  29884. name: "Macro",
  29885. height: math.unit(1180, "feet"),
  29886. default: true
  29887. },
  29888. ]
  29889. ))
  29890. characterMakers.push(() => makeCharacter(
  29891. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29892. {
  29893. front: {
  29894. height: math.unit(5 + 6 / 12, "feet"),
  29895. weight: math.unit(108, "lb"),
  29896. name: "Front",
  29897. image: {
  29898. source: "./media/characters/lilith-zott/front.svg",
  29899. extra: 2510 / 2238,
  29900. bottom: 100 / 2610
  29901. }
  29902. },
  29903. frontDressed: {
  29904. height: math.unit(5 + 6 / 12, "feet"),
  29905. weight: math.unit(108, "lb"),
  29906. name: "Front (Dressed)",
  29907. image: {
  29908. source: "./media/characters/lilith-zott/front-dressed.svg",
  29909. extra: 2510 / 2238,
  29910. bottom: 100 / 2610
  29911. }
  29912. },
  29913. },
  29914. [
  29915. {
  29916. name: "Normal",
  29917. height: math.unit(5 + 6 / 12, "feet")
  29918. },
  29919. {
  29920. name: "Macro",
  29921. height: math.unit(1030, "feet"),
  29922. default: true
  29923. },
  29924. ]
  29925. ))
  29926. characterMakers.push(() => makeCharacter(
  29927. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29928. {
  29929. front: {
  29930. height: math.unit(6, "feet"),
  29931. weight: math.unit(150, "lb"),
  29932. name: "Front",
  29933. image: {
  29934. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29935. extra: 2567 / 2435,
  29936. bottom: 39 / 2606
  29937. }
  29938. },
  29939. frontSuper: {
  29940. height: math.unit(6, "feet"),
  29941. name: "Front (Super)",
  29942. image: {
  29943. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29944. extra: 2567 / 2435,
  29945. bottom: 39 / 2606
  29946. }
  29947. },
  29948. },
  29949. [
  29950. {
  29951. name: "Normal",
  29952. height: math.unit(5 + 10 / 12, "feet")
  29953. },
  29954. {
  29955. name: "Macro",
  29956. height: math.unit(1100, "feet"),
  29957. default: true
  29958. },
  29959. ]
  29960. ))
  29961. characterMakers.push(() => makeCharacter(
  29962. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29963. {
  29964. front: {
  29965. height: math.unit(100, "miles"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/sona/front.svg",
  29969. extra: 2433 / 2201,
  29970. bottom: 53 / 2486
  29971. }
  29972. },
  29973. foot: {
  29974. height: math.unit(16.1, "miles"),
  29975. name: "Foot",
  29976. image: {
  29977. source: "./media/characters/sona/foot.svg"
  29978. }
  29979. },
  29980. },
  29981. [
  29982. {
  29983. name: "Macro",
  29984. height: math.unit(100, "miles"),
  29985. default: true
  29986. },
  29987. ]
  29988. ))
  29989. characterMakers.push(() => makeCharacter(
  29990. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29991. {
  29992. front: {
  29993. height: math.unit(6, "feet"),
  29994. weight: math.unit(150, "lb"),
  29995. name: "Front",
  29996. image: {
  29997. source: "./media/characters/bailey/front.svg",
  29998. extra: 1778 / 1724,
  29999. bottom: 30 / 1808
  30000. }
  30001. },
  30002. },
  30003. [
  30004. {
  30005. name: "Micro",
  30006. height: math.unit(4, "inches")
  30007. },
  30008. {
  30009. name: "Normal",
  30010. height: math.unit(5 + 5 / 12, "feet"),
  30011. default: true
  30012. },
  30013. {
  30014. name: "Macro",
  30015. height: math.unit(250, "feet")
  30016. },
  30017. {
  30018. name: "Megamacro",
  30019. height: math.unit(100, "miles")
  30020. },
  30021. ]
  30022. ))
  30023. characterMakers.push(() => makeCharacter(
  30024. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30025. {
  30026. front: {
  30027. height: math.unit(5 + 2 / 12, "feet"),
  30028. weight: math.unit(120, "lb"),
  30029. name: "Front",
  30030. image: {
  30031. source: "./media/characters/snaps/front.svg",
  30032. extra: 2370 / 2177,
  30033. bottom: 48 / 2418
  30034. }
  30035. },
  30036. back: {
  30037. height: math.unit(5 + 2 / 12, "feet"),
  30038. weight: math.unit(120, "lb"),
  30039. name: "Back",
  30040. image: {
  30041. source: "./media/characters/snaps/back.svg",
  30042. extra: 2408 / 2258,
  30043. bottom: 15 / 2423
  30044. }
  30045. },
  30046. },
  30047. [
  30048. {
  30049. name: "Micro",
  30050. height: math.unit(9, "inches")
  30051. },
  30052. {
  30053. name: "Normal",
  30054. height: math.unit(5 + 2 / 12, "feet"),
  30055. default: true
  30056. },
  30057. {
  30058. name: "Mini Macro",
  30059. height: math.unit(10, "feet")
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30065. {
  30066. front: {
  30067. height: math.unit(1.8, "meters"),
  30068. weight: math.unit(85, "kg"),
  30069. name: "Front",
  30070. image: {
  30071. source: "./media/characters/azteck/front.svg",
  30072. extra: 2815 / 2625,
  30073. bottom: 89 / 2904
  30074. }
  30075. },
  30076. back: {
  30077. height: math.unit(1.8, "meters"),
  30078. weight: math.unit(85, "kg"),
  30079. name: "Back",
  30080. image: {
  30081. source: "./media/characters/azteck/back.svg",
  30082. extra: 2856 / 2648,
  30083. bottom: 85 / 2941
  30084. }
  30085. },
  30086. frontDressed: {
  30087. height: math.unit(1.8, "meters"),
  30088. weight: math.unit(85, "kg"),
  30089. name: "Front (Dressed)",
  30090. image: {
  30091. source: "./media/characters/azteck/front-dressed.svg",
  30092. extra: 2147 / 2003,
  30093. bottom: 68 / 2215
  30094. }
  30095. },
  30096. head: {
  30097. height: math.unit(0.47, "meters"),
  30098. weight: math.unit(85, "kg"),
  30099. name: "Head",
  30100. image: {
  30101. source: "./media/characters/azteck/head.svg"
  30102. }
  30103. },
  30104. },
  30105. [
  30106. {
  30107. name: "Bite sized",
  30108. height: math.unit(16, "cm")
  30109. },
  30110. {
  30111. name: "Normal",
  30112. height: math.unit(1.8, "meters"),
  30113. default: true
  30114. },
  30115. ]
  30116. ))
  30117. characterMakers.push(() => makeCharacter(
  30118. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30119. {
  30120. front: {
  30121. height: math.unit(6, "feet"),
  30122. weight: math.unit(150, "lb"),
  30123. name: "Front",
  30124. image: {
  30125. source: "./media/characters/pidge/front.svg",
  30126. extra: 620 / 588,
  30127. bottom: 9 / 629
  30128. }
  30129. },
  30130. back: {
  30131. height: math.unit(6, "feet"),
  30132. weight: math.unit(150, "lb"),
  30133. name: "Back",
  30134. image: {
  30135. source: "./media/characters/pidge/back.svg",
  30136. extra: 620 / 588,
  30137. bottom: 9 / 629
  30138. }
  30139. },
  30140. },
  30141. [
  30142. {
  30143. name: "Macro",
  30144. height: math.unit(1, "mile"),
  30145. default: true
  30146. },
  30147. ]
  30148. ))
  30149. characterMakers.push(() => makeCharacter(
  30150. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30151. {
  30152. front: {
  30153. height: math.unit(6, "feet"),
  30154. weight: math.unit(150, "lb"),
  30155. name: "Front",
  30156. image: {
  30157. source: "./media/characters/en/front.svg",
  30158. extra: 1697 / 1563,
  30159. bottom: 103 / 1800
  30160. }
  30161. },
  30162. back: {
  30163. height: math.unit(6, "feet"),
  30164. weight: math.unit(150, "lb"),
  30165. name: "Back",
  30166. image: {
  30167. source: "./media/characters/en/back.svg",
  30168. extra: 1700 / 1570,
  30169. bottom: 51 / 1751
  30170. }
  30171. },
  30172. frontDressed: {
  30173. height: math.unit(6, "feet"),
  30174. weight: math.unit(150, "lb"),
  30175. name: "Front (Dressed)",
  30176. image: {
  30177. source: "./media/characters/en/front-dressed.svg",
  30178. extra: 1697 / 1563,
  30179. bottom: 103 / 1800
  30180. }
  30181. },
  30182. backDressed: {
  30183. height: math.unit(6, "feet"),
  30184. weight: math.unit(150, "lb"),
  30185. name: "Back (Dressed)",
  30186. image: {
  30187. source: "./media/characters/en/back-dressed.svg",
  30188. extra: 1700 / 1570,
  30189. bottom: 51 / 1751
  30190. }
  30191. },
  30192. },
  30193. [
  30194. {
  30195. name: "Macro",
  30196. height: math.unit(210, "feet"),
  30197. default: true
  30198. },
  30199. ]
  30200. ))
  30201. characterMakers.push(() => makeCharacter(
  30202. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30203. {
  30204. front: {
  30205. height: math.unit(6, "feet"),
  30206. weight: math.unit(150, "lb"),
  30207. name: "Front",
  30208. image: {
  30209. source: "./media/characters/haze-orris/front.svg",
  30210. extra: 3975 / 3525,
  30211. bottom: 137 / 4112
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Micro",
  30218. height: math.unit(150, "mm"),
  30219. default: true
  30220. },
  30221. ]
  30222. ))
  30223. characterMakers.push(() => makeCharacter(
  30224. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30225. {
  30226. front: {
  30227. height: math.unit(6, "feet"),
  30228. weight: math.unit(150, "lb"),
  30229. name: "Front",
  30230. image: {
  30231. source: "./media/characters/casselene-yaro/front.svg",
  30232. extra: 4721 / 4541,
  30233. bottom: 82 / 4803
  30234. }
  30235. },
  30236. back: {
  30237. height: math.unit(6, "feet"),
  30238. weight: math.unit(150, "lb"),
  30239. name: "Back",
  30240. image: {
  30241. source: "./media/characters/casselene-yaro/back.svg",
  30242. extra: 4569 / 4377,
  30243. bottom: 69 / 4638
  30244. }
  30245. },
  30246. frontDressed: {
  30247. height: math.unit(6, "feet"),
  30248. weight: math.unit(150, "lb"),
  30249. name: "Front-dressed",
  30250. image: {
  30251. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30252. extra: 4721 / 4541,
  30253. bottom: 82 / 4803
  30254. }
  30255. },
  30256. },
  30257. [
  30258. {
  30259. name: "Macro",
  30260. height: math.unit(190, "feet"),
  30261. default: true
  30262. },
  30263. ]
  30264. ))
  30265. characterMakers.push(() => makeCharacter(
  30266. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30267. {
  30268. front: {
  30269. height: math.unit(6, "feet"),
  30270. weight: math.unit(150, "lb"),
  30271. name: "Front",
  30272. image: {
  30273. source: "./media/characters/myra-rue-delore/front.svg",
  30274. extra: 1340 / 1308,
  30275. bottom: 67 / 1407
  30276. }
  30277. },
  30278. back: {
  30279. height: math.unit(6, "feet"),
  30280. weight: math.unit(150, "lb"),
  30281. name: "Back",
  30282. image: {
  30283. source: "./media/characters/myra-rue-delore/back.svg",
  30284. extra: 1341 / 1310,
  30285. bottom: 40 / 1381
  30286. }
  30287. },
  30288. frontDressed: {
  30289. height: math.unit(6, "feet"),
  30290. weight: math.unit(150, "lb"),
  30291. name: "Front (Dressed)",
  30292. image: {
  30293. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30294. extra: 1340 / 1308,
  30295. bottom: 67 / 1407
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Macro",
  30302. height: math.unit(150, "feet"),
  30303. default: true
  30304. },
  30305. ]
  30306. ))
  30307. characterMakers.push(() => makeCharacter(
  30308. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30309. {
  30310. front: {
  30311. height: math.unit(10, "feet"),
  30312. weight: math.unit(15015, "lb"),
  30313. name: "Front",
  30314. image: {
  30315. source: "./media/characters/fem!plat/front.svg",
  30316. extra: 2799 / 2604,
  30317. bottom: 149 / 2948
  30318. }
  30319. },
  30320. },
  30321. [
  30322. {
  30323. name: "Normal",
  30324. height: math.unit(10, "feet"),
  30325. default: true
  30326. },
  30327. {
  30328. name: "Macro",
  30329. height: math.unit(100, "feet")
  30330. },
  30331. {
  30332. name: "Megamacro",
  30333. height: math.unit(1000, "feet")
  30334. },
  30335. ]
  30336. ))
  30337. characterMakers.push(() => makeCharacter(
  30338. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30339. {
  30340. front: {
  30341. height: math.unit(15 + 5 / 12, "feet"),
  30342. weight: math.unit(4600, "lb"),
  30343. name: "Front",
  30344. image: {
  30345. source: "./media/characters/neapolitan-ananassa/front.svg",
  30346. extra: 2903 / 2736,
  30347. bottom: 0 / 2903
  30348. }
  30349. },
  30350. side: {
  30351. height: math.unit(15 + 5 / 12, "feet"),
  30352. weight: math.unit(4600, "lb"),
  30353. name: "Side",
  30354. image: {
  30355. source: "./media/characters/neapolitan-ananassa/side.svg",
  30356. extra: 2925 / 2719,
  30357. bottom: 0 / 2925
  30358. }
  30359. },
  30360. back: {
  30361. height: math.unit(15 + 5 / 12, "feet"),
  30362. weight: math.unit(4600, "lb"),
  30363. name: "Back",
  30364. image: {
  30365. source: "./media/characters/neapolitan-ananassa/back.svg",
  30366. extra: 2903 / 2736,
  30367. bottom: 0 / 2903
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Normal",
  30374. height: math.unit(15 + 5 / 12, "feet"),
  30375. default: true
  30376. },
  30377. {
  30378. name: "Post-Millenium",
  30379. height: math.unit(35 + 5 / 12, "feet")
  30380. },
  30381. {
  30382. name: "Post-Era",
  30383. height: math.unit(450 + 5 / 12, "feet")
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(300, "meters"),
  30392. weight: math.unit(125000, "tonnes"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/pazuzu/front.svg",
  30396. extra: 877 / 794,
  30397. bottom: 47 / 924
  30398. }
  30399. },
  30400. },
  30401. [
  30402. {
  30403. name: "Macro",
  30404. height: math.unit(300, "meters"),
  30405. default: true
  30406. },
  30407. ]
  30408. ))
  30409. characterMakers.push(() => makeCharacter(
  30410. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30411. {
  30412. side: {
  30413. height: math.unit(10 + 7 / 12, "feet"),
  30414. weight: math.unit(2.5, "tons"),
  30415. name: "Side",
  30416. image: {
  30417. source: "./media/characters/aasha/side.svg",
  30418. extra: 1345 / 1245,
  30419. bottom: 111 / 1456
  30420. }
  30421. },
  30422. back: {
  30423. height: math.unit(10 + 7 / 12, "feet"),
  30424. weight: math.unit(2.5, "tons"),
  30425. name: "Back",
  30426. image: {
  30427. source: "./media/characters/aasha/back.svg",
  30428. extra: 1133 / 1057,
  30429. bottom: 257 / 1390
  30430. }
  30431. },
  30432. },
  30433. [
  30434. {
  30435. name: "Normal",
  30436. height: math.unit(10 + 7 / 12, "feet"),
  30437. default: true
  30438. },
  30439. ]
  30440. ))
  30441. characterMakers.push(() => makeCharacter(
  30442. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30443. {
  30444. front: {
  30445. height: math.unit(6 + 3 / 12, "feet"),
  30446. name: "Front",
  30447. image: {
  30448. source: "./media/characters/nevan/front.svg",
  30449. extra: 704 / 704,
  30450. bottom: 28 / 732
  30451. }
  30452. },
  30453. back: {
  30454. height: math.unit(6 + 3 / 12, "feet"),
  30455. name: "Back",
  30456. image: {
  30457. source: "./media/characters/nevan/back.svg",
  30458. extra: 714 / 714,
  30459. bottom: 21 / 735
  30460. }
  30461. },
  30462. frontFlaccid: {
  30463. height: math.unit(6 + 3 / 12, "feet"),
  30464. name: "Front (Flaccid)",
  30465. image: {
  30466. source: "./media/characters/nevan/front-flaccid.svg",
  30467. extra: 704 / 704,
  30468. bottom: 28 / 732
  30469. }
  30470. },
  30471. frontErect: {
  30472. height: math.unit(6 + 3 / 12, "feet"),
  30473. name: "Front (Erect)",
  30474. image: {
  30475. source: "./media/characters/nevan/front-erect.svg",
  30476. extra: 704 / 704,
  30477. bottom: 28 / 732
  30478. }
  30479. },
  30480. backFlaccid: {
  30481. height: math.unit(6 + 3 / 12, "feet"),
  30482. name: "Back (Flaccid)",
  30483. image: {
  30484. source: "./media/characters/nevan/back-flaccid.svg",
  30485. extra: 714 / 714,
  30486. bottom: 21 / 735
  30487. }
  30488. },
  30489. },
  30490. [
  30491. {
  30492. name: "Normal",
  30493. height: math.unit(6 + 3 / 12, "feet"),
  30494. default: true
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30500. {
  30501. front: {
  30502. height: math.unit(4, "feet"),
  30503. name: "Front",
  30504. image: {
  30505. source: "./media/characters/arhan/front.svg",
  30506. extra: 3368 / 3133,
  30507. bottom: 0 / 3368
  30508. }
  30509. },
  30510. side: {
  30511. height: math.unit(4, "feet"),
  30512. name: "Side",
  30513. image: {
  30514. source: "./media/characters/arhan/side.svg",
  30515. extra: 3347 / 3105,
  30516. bottom: 0 / 3347
  30517. }
  30518. },
  30519. tongue: {
  30520. height: math.unit(1.42, "feet"),
  30521. name: "Tongue",
  30522. image: {
  30523. source: "./media/characters/arhan/tongue.svg"
  30524. }
  30525. },
  30526. head: {
  30527. height: math.unit(0.85, "feet"),
  30528. name: "Head",
  30529. image: {
  30530. source: "./media/characters/arhan/head.svg"
  30531. }
  30532. },
  30533. },
  30534. [
  30535. {
  30536. name: "Normal",
  30537. height: math.unit(4, "feet"),
  30538. default: true
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30544. {
  30545. front: {
  30546. height: math.unit(5 + 7.5 / 12, "feet"),
  30547. weight: math.unit(120, "lb"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/digi-duncan/front.svg",
  30551. extra: 330 / 326,
  30552. bottom: 16 / 346
  30553. }
  30554. },
  30555. side: {
  30556. height: math.unit(5 + 7.5 / 12, "feet"),
  30557. weight: math.unit(120, "lb"),
  30558. name: "Side",
  30559. image: {
  30560. source: "./media/characters/digi-duncan/side.svg",
  30561. extra: 341 / 337,
  30562. bottom: 1 / 342
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(5 + 7.5 / 12, "feet"),
  30567. weight: math.unit(120, "lb"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/digi-duncan/back.svg",
  30571. extra: 330 / 326,
  30572. bottom: 12 / 342
  30573. }
  30574. },
  30575. },
  30576. [
  30577. {
  30578. name: "Speck",
  30579. height: math.unit(0.25, "mm")
  30580. },
  30581. {
  30582. name: "Micro",
  30583. height: math.unit(5, "mm")
  30584. },
  30585. {
  30586. name: "Tiny",
  30587. height: math.unit(0.5, "inches"),
  30588. default: true
  30589. },
  30590. {
  30591. name: "Human",
  30592. height: math.unit(5 + 7.5 / 12, "feet")
  30593. },
  30594. {
  30595. name: "Minigiant",
  30596. height: math.unit(8 + 5.25, "feet")
  30597. },
  30598. {
  30599. name: "Giant",
  30600. height: math.unit(2000, "feet")
  30601. },
  30602. {
  30603. name: "Mega",
  30604. height: math.unit(371.1, "miles")
  30605. },
  30606. ]
  30607. ))
  30608. characterMakers.push(() => makeCharacter(
  30609. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30610. {
  30611. front: {
  30612. height: math.unit(2, "meters"),
  30613. weight: math.unit(350, "kg"),
  30614. name: "Front",
  30615. image: {
  30616. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30617. extra: 898 / 838,
  30618. bottom: 9 / 907
  30619. }
  30620. },
  30621. },
  30622. [
  30623. {
  30624. name: "Micro",
  30625. height: math.unit(8, "meters")
  30626. },
  30627. {
  30628. name: "Normal",
  30629. height: math.unit(50, "meters"),
  30630. default: true
  30631. },
  30632. {
  30633. name: "Macro",
  30634. height: math.unit(500, "meters")
  30635. },
  30636. ]
  30637. ))
  30638. characterMakers.push(() => makeCharacter(
  30639. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30640. {
  30641. front: {
  30642. height: math.unit(6 + 6 / 12, "feet"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/khardesh/front.svg",
  30646. extra: 1788/1596,
  30647. bottom: 66/1854
  30648. }
  30649. },
  30650. back: {
  30651. height: math.unit(6 + 6 / 12, "feet"),
  30652. name: "Back",
  30653. image: {
  30654. source: "./media/characters/khardesh/back.svg",
  30655. extra: 1781/1584,
  30656. bottom: 68/1849
  30657. }
  30658. },
  30659. },
  30660. [
  30661. {
  30662. name: "Normal",
  30663. height: math.unit(6 + 6 / 12, "feet"),
  30664. default: true
  30665. },
  30666. {
  30667. name: "Normal+",
  30668. height: math.unit(4, "meters")
  30669. },
  30670. {
  30671. name: "Macro",
  30672. height: math.unit(50, "meters")
  30673. },
  30674. {
  30675. name: "Macro+",
  30676. height: math.unit(100, "meters")
  30677. },
  30678. {
  30679. name: "Megamacro",
  30680. height: math.unit(20, "km")
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30686. {
  30687. front: {
  30688. height: math.unit(6, "feet"),
  30689. weight: math.unit(150, "lb"),
  30690. name: "Front",
  30691. image: {
  30692. source: "./media/characters/kosho/front.svg",
  30693. extra: 1847 / 1847,
  30694. bottom: 86 / 1933
  30695. }
  30696. },
  30697. },
  30698. [
  30699. {
  30700. name: "Second-stage micro",
  30701. height: math.unit(0.5, "inches")
  30702. },
  30703. {
  30704. name: "First-stage micro",
  30705. height: math.unit(6, "inches")
  30706. },
  30707. {
  30708. name: "Normal",
  30709. height: math.unit(6, "feet"),
  30710. default: true
  30711. },
  30712. {
  30713. name: "First-stage macro",
  30714. height: math.unit(72, "feet")
  30715. },
  30716. {
  30717. name: "Second-stage macro",
  30718. height: math.unit(864, "feet")
  30719. },
  30720. ]
  30721. ))
  30722. characterMakers.push(() => makeCharacter(
  30723. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30724. {
  30725. normal: {
  30726. height: math.unit(4 + 6 / 12, "feet"),
  30727. name: "Normal",
  30728. image: {
  30729. source: "./media/characters/hydra/normal.svg",
  30730. extra: 2833 / 2634,
  30731. bottom: 68 / 2901
  30732. }
  30733. },
  30734. smol: {
  30735. height: math.unit(0.705, "inches"),
  30736. name: "Smol",
  30737. image: {
  30738. source: "./media/characters/hydra/smol.svg",
  30739. extra: 2715 / 2540,
  30740. bottom: 0 / 2715
  30741. }
  30742. },
  30743. },
  30744. [
  30745. {
  30746. name: "Normal",
  30747. height: math.unit(4 + 6 / 12, "feet"),
  30748. default: true
  30749. }
  30750. ]
  30751. ))
  30752. characterMakers.push(() => makeCharacter(
  30753. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30754. {
  30755. front: {
  30756. height: math.unit(0.6, "cm"),
  30757. name: "Front",
  30758. image: {
  30759. source: "./media/characters/daz/front.svg",
  30760. extra: 1682 / 1164,
  30761. bottom: 42 / 1724
  30762. }
  30763. },
  30764. },
  30765. [
  30766. {
  30767. name: "Normal",
  30768. height: math.unit(0.6, "cm"),
  30769. default: true
  30770. },
  30771. ]
  30772. ))
  30773. characterMakers.push(() => makeCharacter(
  30774. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30775. {
  30776. front: {
  30777. height: math.unit(6, "feet"),
  30778. weight: math.unit(235, "lb"),
  30779. name: "Front",
  30780. image: {
  30781. source: "./media/characters/theo-pangolin/front.svg",
  30782. extra: 1996 / 1969,
  30783. bottom: 115 / 2111
  30784. }
  30785. },
  30786. back: {
  30787. height: math.unit(6, "feet"),
  30788. weight: math.unit(235, "lb"),
  30789. name: "Back",
  30790. image: {
  30791. source: "./media/characters/theo-pangolin/back.svg",
  30792. extra: 1979 / 1979,
  30793. bottom: 40 / 2019
  30794. }
  30795. },
  30796. feral: {
  30797. height: math.unit(2, "feet"),
  30798. weight: math.unit(30, "lb"),
  30799. name: "Feral",
  30800. image: {
  30801. source: "./media/characters/theo-pangolin/feral.svg",
  30802. extra: 803 / 791,
  30803. bottom: 181 / 984
  30804. }
  30805. },
  30806. footFive: {
  30807. height: math.unit(1.43, "feet"),
  30808. name: "Foot (Five Toes)",
  30809. image: {
  30810. source: "./media/characters/theo-pangolin/foot-five.svg"
  30811. }
  30812. },
  30813. footFour: {
  30814. height: math.unit(1.43, "feet"),
  30815. name: "Foot (Four Toes)",
  30816. image: {
  30817. source: "./media/characters/theo-pangolin/foot-four.svg"
  30818. }
  30819. },
  30820. handFour: {
  30821. height: math.unit(0.81, "feet"),
  30822. name: "Hand (Four Fingers)",
  30823. image: {
  30824. source: "./media/characters/theo-pangolin/hand-four.svg"
  30825. }
  30826. },
  30827. handThree: {
  30828. height: math.unit(0.81, "feet"),
  30829. name: "Hand (Three Fingers)",
  30830. image: {
  30831. source: "./media/characters/theo-pangolin/hand-three.svg"
  30832. }
  30833. },
  30834. headFront: {
  30835. height: math.unit(1.37, "feet"),
  30836. name: "Head (Front)",
  30837. image: {
  30838. source: "./media/characters/theo-pangolin/head-front.svg"
  30839. }
  30840. },
  30841. headSide: {
  30842. height: math.unit(1.43, "feet"),
  30843. name: "Head (Side)",
  30844. image: {
  30845. source: "./media/characters/theo-pangolin/head-side.svg"
  30846. }
  30847. },
  30848. tongue: {
  30849. height: math.unit(2.29, "feet"),
  30850. name: "Tongue",
  30851. image: {
  30852. source: "./media/characters/theo-pangolin/tongue.svg"
  30853. }
  30854. },
  30855. },
  30856. [
  30857. {
  30858. name: "Normal",
  30859. height: math.unit(6, "feet")
  30860. },
  30861. {
  30862. name: "Macro",
  30863. height: math.unit(400, "feet"),
  30864. default: true
  30865. },
  30866. ]
  30867. ))
  30868. characterMakers.push(() => makeCharacter(
  30869. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30870. {
  30871. front: {
  30872. height: math.unit(6, "inches"),
  30873. weight: math.unit(0.036, "kg"),
  30874. name: "Front",
  30875. image: {
  30876. source: "./media/characters/renée/front.svg",
  30877. extra: 900 / 886,
  30878. bottom: 8 / 908
  30879. }
  30880. },
  30881. },
  30882. [
  30883. {
  30884. name: "Nano",
  30885. height: math.unit(1, "nm")
  30886. },
  30887. {
  30888. name: "Micro",
  30889. height: math.unit(1, "mm")
  30890. },
  30891. {
  30892. name: "Normal",
  30893. height: math.unit(6, "inches")
  30894. },
  30895. {
  30896. name: "Macro",
  30897. height: math.unit(2000, "feet"),
  30898. default: true
  30899. },
  30900. {
  30901. name: "Megamacro",
  30902. height: math.unit(2, "km")
  30903. },
  30904. {
  30905. name: "Gigamacro",
  30906. height: math.unit(2000, "km")
  30907. },
  30908. {
  30909. name: "Teramacro",
  30910. height: math.unit(250000, "km")
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30916. {
  30917. front: {
  30918. height: math.unit(4, "meters"),
  30919. weight: math.unit(150, "kg"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/caledvwlch/front.svg",
  30923. extra: 1760 / 1551,
  30924. bottom: 28 / 1788
  30925. }
  30926. },
  30927. side: {
  30928. height: math.unit(4, "meters"),
  30929. weight: math.unit(150, "kg"),
  30930. name: "Side",
  30931. image: {
  30932. source: "./media/characters/caledvwlch/side.svg",
  30933. extra: 1605 / 1536,
  30934. bottom: 31 / 1636
  30935. }
  30936. },
  30937. back: {
  30938. height: math.unit(4, "meters"),
  30939. weight: math.unit(150, "kg"),
  30940. name: "Back",
  30941. image: {
  30942. source: "./media/characters/caledvwlch/back.svg",
  30943. extra: 1635 / 1565,
  30944. bottom: 27 / 1662
  30945. }
  30946. },
  30947. },
  30948. [
  30949. {
  30950. name: "\"Incognito\"",
  30951. height: math.unit(4, "meters")
  30952. },
  30953. {
  30954. name: "Small rampage",
  30955. height: math.unit(600, "meters")
  30956. },
  30957. {
  30958. name: "Mega",
  30959. height: math.unit(30, "km")
  30960. },
  30961. {
  30962. name: "Home-size",
  30963. height: math.unit(50, "km"),
  30964. default: true
  30965. },
  30966. {
  30967. name: "Giga",
  30968. height: math.unit(300, "km")
  30969. },
  30970. {
  30971. name: "Lounging",
  30972. height: math.unit(11000, "km")
  30973. },
  30974. {
  30975. name: "Planet snacking",
  30976. height: math.unit(2000000, "km")
  30977. },
  30978. ]
  30979. ))
  30980. characterMakers.push(() => makeCharacter(
  30981. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30982. {
  30983. front: {
  30984. height: math.unit(6, "feet"),
  30985. weight: math.unit(215, "lb"),
  30986. name: "Front",
  30987. image: {
  30988. source: "./media/characters/sapphire-svell/front.svg",
  30989. extra: 495 / 455,
  30990. bottom: 20 / 515
  30991. }
  30992. },
  30993. back: {
  30994. height: math.unit(6, "feet"),
  30995. weight: math.unit(216, "lb"),
  30996. name: "Back",
  30997. image: {
  30998. source: "./media/characters/sapphire-svell/back.svg",
  30999. extra: 497 / 477,
  31000. bottom: 7 / 504
  31001. }
  31002. },
  31003. maw: {
  31004. height: math.unit(1.57, "feet"),
  31005. name: "Maw",
  31006. image: {
  31007. source: "./media/characters/sapphire-svell/maw.svg"
  31008. }
  31009. },
  31010. foot: {
  31011. height: math.unit(1.07, "feet"),
  31012. name: "Foot",
  31013. image: {
  31014. source: "./media/characters/sapphire-svell/foot.svg"
  31015. }
  31016. },
  31017. toering: {
  31018. height: math.unit(1.7, "inch"),
  31019. name: "Toering",
  31020. image: {
  31021. source: "./media/characters/sapphire-svell/toering.svg"
  31022. }
  31023. },
  31024. },
  31025. [
  31026. {
  31027. name: "Normal",
  31028. height: math.unit(300, "feet"),
  31029. default: true
  31030. },
  31031. {
  31032. name: "Augmented",
  31033. height: math.unit(1250, "feet")
  31034. },
  31035. {
  31036. name: "Unleashed",
  31037. height: math.unit(3000, "feet")
  31038. },
  31039. ]
  31040. ))
  31041. characterMakers.push(() => makeCharacter(
  31042. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31043. {
  31044. side: {
  31045. height: math.unit(2 + 3 / 12, "feet"),
  31046. weight: math.unit(110, "lb"),
  31047. name: "Side",
  31048. image: {
  31049. source: "./media/characters/glitch-flux/side.svg",
  31050. extra: 997 / 805,
  31051. bottom: 20 / 1017
  31052. }
  31053. },
  31054. },
  31055. [
  31056. {
  31057. name: "Normal",
  31058. height: math.unit(2 + 3 / 12, "feet"),
  31059. default: true
  31060. },
  31061. ]
  31062. ))
  31063. characterMakers.push(() => makeCharacter(
  31064. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31065. {
  31066. front: {
  31067. height: math.unit(4, "meters"),
  31068. name: "Front",
  31069. image: {
  31070. source: "./media/characters/mid/front.svg",
  31071. extra: 507 / 476,
  31072. bottom: 17 / 524
  31073. }
  31074. },
  31075. back: {
  31076. height: math.unit(4, "meters"),
  31077. name: "Back",
  31078. image: {
  31079. source: "./media/characters/mid/back.svg",
  31080. extra: 519 / 487,
  31081. bottom: 7 / 526
  31082. }
  31083. },
  31084. stuck: {
  31085. height: math.unit(2.2, "meters"),
  31086. name: "Stuck",
  31087. image: {
  31088. source: "./media/characters/mid/stuck.svg",
  31089. extra: 1951 / 1869,
  31090. bottom: 88 / 2039
  31091. }
  31092. }
  31093. },
  31094. [
  31095. {
  31096. name: "Normal",
  31097. height: math.unit(4, "meters"),
  31098. default: true
  31099. },
  31100. {
  31101. name: "Big",
  31102. height: math.unit(10, "meters")
  31103. },
  31104. {
  31105. name: "Macro",
  31106. height: math.unit(800, "meters")
  31107. },
  31108. {
  31109. name: "Megamacro",
  31110. height: math.unit(100, "km")
  31111. },
  31112. {
  31113. name: "Overgrown",
  31114. height: math.unit(1, "parsec")
  31115. },
  31116. ]
  31117. ))
  31118. characterMakers.push(() => makeCharacter(
  31119. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31120. {
  31121. front: {
  31122. height: math.unit(2.5, "meters"),
  31123. weight: math.unit(225, "kg"),
  31124. name: "Front",
  31125. image: {
  31126. source: "./media/characters/iris/front.svg",
  31127. extra: 3348 / 3251,
  31128. bottom: 205 / 3553
  31129. }
  31130. },
  31131. maw: {
  31132. height: math.unit(0.56, "meter"),
  31133. name: "Maw",
  31134. image: {
  31135. source: "./media/characters/iris/maw.svg"
  31136. }
  31137. },
  31138. },
  31139. [
  31140. {
  31141. name: "Mewter cat",
  31142. height: math.unit(1.2, "meters")
  31143. },
  31144. {
  31145. name: "Minimacro",
  31146. height: math.unit(2.5, "meters"),
  31147. default: true
  31148. },
  31149. {
  31150. name: "Macro",
  31151. height: math.unit(180, "meters")
  31152. },
  31153. {
  31154. name: "Megamacro",
  31155. height: math.unit(2746, "meters")
  31156. },
  31157. ]
  31158. ))
  31159. characterMakers.push(() => makeCharacter(
  31160. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31161. {
  31162. front: {
  31163. height: math.unit(6, "feet"),
  31164. weight: math.unit(135, "lb"),
  31165. name: "Front",
  31166. image: {
  31167. source: "./media/characters/axel/front.svg",
  31168. extra: 908 / 908,
  31169. bottom: 58 / 966
  31170. }
  31171. },
  31172. side: {
  31173. height: math.unit(6, "feet"),
  31174. weight: math.unit(135, "lb"),
  31175. name: "Side",
  31176. image: {
  31177. source: "./media/characters/axel/side.svg",
  31178. extra: 958 / 958,
  31179. bottom: 11 / 969
  31180. }
  31181. },
  31182. back: {
  31183. height: math.unit(6, "feet"),
  31184. weight: math.unit(135, "lb"),
  31185. name: "Back",
  31186. image: {
  31187. source: "./media/characters/axel/back.svg",
  31188. extra: 887 / 887,
  31189. bottom: 34 / 921
  31190. }
  31191. },
  31192. head: {
  31193. height: math.unit(1.07, "feet"),
  31194. name: "Head",
  31195. image: {
  31196. source: "./media/characters/axel/head.svg"
  31197. }
  31198. },
  31199. beak: {
  31200. height: math.unit(1.4, "feet"),
  31201. name: "Beak",
  31202. image: {
  31203. source: "./media/characters/axel/beak.svg"
  31204. }
  31205. },
  31206. beakSide: {
  31207. height: math.unit(1.4, "feet"),
  31208. name: "Beak Side",
  31209. image: {
  31210. source: "./media/characters/axel/beak-side.svg"
  31211. }
  31212. },
  31213. sheath: {
  31214. height: math.unit(0.5, "feet"),
  31215. name: "Sheath",
  31216. image: {
  31217. source: "./media/characters/axel/sheath.svg"
  31218. }
  31219. },
  31220. dick: {
  31221. height: math.unit(0.98, "feet"),
  31222. name: "Dick",
  31223. image: {
  31224. source: "./media/characters/axel/dick.svg"
  31225. }
  31226. },
  31227. },
  31228. [
  31229. {
  31230. name: "Macro",
  31231. height: math.unit(68, "meters"),
  31232. default: true
  31233. },
  31234. ]
  31235. ))
  31236. characterMakers.push(() => makeCharacter(
  31237. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31238. {
  31239. front: {
  31240. height: math.unit(3.5, "meters"),
  31241. weight: math.unit(1200, "kg"),
  31242. name: "Front",
  31243. image: {
  31244. source: "./media/characters/joanna/front.svg",
  31245. extra: 1596 / 1488,
  31246. bottom: 29 / 1625
  31247. }
  31248. },
  31249. back: {
  31250. height: math.unit(3.5, "meters"),
  31251. weight: math.unit(1200, "kg"),
  31252. name: "Back",
  31253. image: {
  31254. source: "./media/characters/joanna/back.svg",
  31255. extra: 1594 / 1495,
  31256. bottom: 26 / 1620
  31257. }
  31258. },
  31259. frontShorts: {
  31260. height: math.unit(3.5, "meters"),
  31261. weight: math.unit(1200, "kg"),
  31262. name: "Front (Shorts)",
  31263. image: {
  31264. source: "./media/characters/joanna/front-shorts.svg",
  31265. extra: 1596 / 1488,
  31266. bottom: 29 / 1625
  31267. }
  31268. },
  31269. frontBiker: {
  31270. height: math.unit(3.5, "meters"),
  31271. weight: math.unit(1200, "kg"),
  31272. name: "Front (Biker)",
  31273. image: {
  31274. source: "./media/characters/joanna/front-biker.svg",
  31275. extra: 1596 / 1488,
  31276. bottom: 29 / 1625
  31277. }
  31278. },
  31279. backBiker: {
  31280. height: math.unit(3.5, "meters"),
  31281. weight: math.unit(1200, "kg"),
  31282. name: "Back (Biker)",
  31283. image: {
  31284. source: "./media/characters/joanna/back-biker.svg",
  31285. extra: 1594 / 1495,
  31286. bottom: 88 / 1682
  31287. }
  31288. },
  31289. bikeLeft: {
  31290. height: math.unit(2.4, "meters"),
  31291. weight: math.unit(1600, "kg"),
  31292. name: "Bike (Left)",
  31293. image: {
  31294. source: "./media/characters/joanna/bike-left.svg",
  31295. extra: 720 / 720,
  31296. bottom: 8 / 728
  31297. }
  31298. },
  31299. bikeRight: {
  31300. height: math.unit(2.4, "meters"),
  31301. weight: math.unit(1600, "kg"),
  31302. name: "Bike (Right)",
  31303. image: {
  31304. source: "./media/characters/joanna/bike-right.svg",
  31305. extra: 720 / 720,
  31306. bottom: 8 / 728
  31307. }
  31308. },
  31309. },
  31310. [
  31311. {
  31312. name: "Incognito",
  31313. height: math.unit(3.5, "meters")
  31314. },
  31315. {
  31316. name: "Casual Big",
  31317. height: math.unit(200, "meters")
  31318. },
  31319. {
  31320. name: "Macro",
  31321. height: math.unit(600, "meters")
  31322. },
  31323. {
  31324. name: "Original",
  31325. height: math.unit(20, "km"),
  31326. default: true
  31327. },
  31328. {
  31329. name: "Giga",
  31330. height: math.unit(400, "km")
  31331. },
  31332. {
  31333. name: "Lounging",
  31334. height: math.unit(1500, "km")
  31335. },
  31336. {
  31337. name: "Planetary",
  31338. height: math.unit(200000, "km")
  31339. },
  31340. ]
  31341. ))
  31342. characterMakers.push(() => makeCharacter(
  31343. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31344. {
  31345. front: {
  31346. height: math.unit(6, "feet"),
  31347. weight: math.unit(150, "lb"),
  31348. name: "Front",
  31349. image: {
  31350. source: "./media/characters/hugo-sigil/front.svg",
  31351. extra: 522 / 500,
  31352. bottom: 2 / 524
  31353. }
  31354. },
  31355. back: {
  31356. height: math.unit(6, "feet"),
  31357. weight: math.unit(150, "lb"),
  31358. name: "Back",
  31359. image: {
  31360. source: "./media/characters/hugo-sigil/back.svg",
  31361. extra: 519 / 495,
  31362. bottom: 5 / 524
  31363. }
  31364. },
  31365. maw: {
  31366. height: math.unit(1.4, "feet"),
  31367. weight: math.unit(150, "lb"),
  31368. name: "Maw",
  31369. image: {
  31370. source: "./media/characters/hugo-sigil/maw.svg"
  31371. }
  31372. },
  31373. feet: {
  31374. height: math.unit(1.56, "feet"),
  31375. weight: math.unit(150, "lb"),
  31376. name: "Feet",
  31377. image: {
  31378. source: "./media/characters/hugo-sigil/feet.svg",
  31379. extra: 177 / 177,
  31380. bottom: 12 / 189
  31381. }
  31382. },
  31383. },
  31384. [
  31385. {
  31386. name: "Normal",
  31387. height: math.unit(6, "feet")
  31388. },
  31389. {
  31390. name: "Macro",
  31391. height: math.unit(200, "feet"),
  31392. default: true
  31393. },
  31394. ]
  31395. ))
  31396. characterMakers.push(() => makeCharacter(
  31397. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31398. {
  31399. front: {
  31400. height: math.unit(6, "feet"),
  31401. weight: math.unit(150, "lb"),
  31402. name: "Front",
  31403. image: {
  31404. source: "./media/characters/peri/front.svg",
  31405. extra: 2354 / 2233,
  31406. bottom: 49 / 2403
  31407. }
  31408. },
  31409. },
  31410. [
  31411. {
  31412. name: "Really Small",
  31413. height: math.unit(1, "nm")
  31414. },
  31415. {
  31416. name: "Micro",
  31417. height: math.unit(4, "inches")
  31418. },
  31419. {
  31420. name: "Normal",
  31421. height: math.unit(7, "inches"),
  31422. default: true
  31423. },
  31424. {
  31425. name: "Macro",
  31426. height: math.unit(400, "feet")
  31427. },
  31428. {
  31429. name: "Megamacro",
  31430. height: math.unit(100, "miles")
  31431. },
  31432. ]
  31433. ))
  31434. characterMakers.push(() => makeCharacter(
  31435. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31436. {
  31437. frontSlim: {
  31438. height: math.unit(7, "feet"),
  31439. name: "Front (Slim)",
  31440. image: {
  31441. source: "./media/characters/issilora/front-slim.svg",
  31442. extra: 529 / 449,
  31443. bottom: 53 / 582
  31444. }
  31445. },
  31446. sideSlim: {
  31447. height: math.unit(7, "feet"),
  31448. name: "Side (Slim)",
  31449. image: {
  31450. source: "./media/characters/issilora/side-slim.svg",
  31451. extra: 570 / 480,
  31452. bottom: 30 / 600
  31453. }
  31454. },
  31455. backSlim: {
  31456. height: math.unit(7, "feet"),
  31457. name: "Back (Slim)",
  31458. image: {
  31459. source: "./media/characters/issilora/back-slim.svg",
  31460. extra: 537 / 455,
  31461. bottom: 46 / 583
  31462. }
  31463. },
  31464. frontBuff: {
  31465. height: math.unit(7, "feet"),
  31466. name: "Front (Buff)",
  31467. image: {
  31468. source: "./media/characters/issilora/front-buff.svg",
  31469. extra: 2310 / 2035,
  31470. bottom: 335 / 2645
  31471. }
  31472. },
  31473. head: {
  31474. height: math.unit(1.94, "feet"),
  31475. name: "Head",
  31476. image: {
  31477. source: "./media/characters/issilora/head.svg"
  31478. }
  31479. },
  31480. },
  31481. [
  31482. {
  31483. name: "Minimum",
  31484. height: math.unit(7, "feet")
  31485. },
  31486. {
  31487. name: "Comfortable",
  31488. height: math.unit(17, "feet")
  31489. },
  31490. {
  31491. name: "Fun Size",
  31492. height: math.unit(47, "feet")
  31493. },
  31494. {
  31495. name: "Natural Macro",
  31496. height: math.unit(137, "feet"),
  31497. default: true
  31498. },
  31499. {
  31500. name: "Maximum Kaiju",
  31501. height: math.unit(397, "feet")
  31502. },
  31503. ]
  31504. ))
  31505. characterMakers.push(() => makeCharacter(
  31506. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31507. {
  31508. front: {
  31509. height: math.unit(50 + 9/12, "feet"),
  31510. weight: math.unit(32.8, "tons"),
  31511. name: "Front",
  31512. image: {
  31513. source: "./media/characters/irb'iiritaahn/front.svg",
  31514. extra: 1878/1826,
  31515. bottom: 326/2204
  31516. }
  31517. },
  31518. back: {
  31519. height: math.unit(50 + 9/12, "feet"),
  31520. weight: math.unit(32.8, "tons"),
  31521. name: "Back",
  31522. image: {
  31523. source: "./media/characters/irb'iiritaahn/back.svg",
  31524. extra: 2052/2018,
  31525. bottom: 152/2204
  31526. }
  31527. },
  31528. head: {
  31529. height: math.unit(12.86, "feet"),
  31530. name: "Head",
  31531. image: {
  31532. source: "./media/characters/irb'iiritaahn/head.svg"
  31533. }
  31534. },
  31535. maw: {
  31536. height: math.unit(9.66, "feet"),
  31537. name: "Maw",
  31538. image: {
  31539. source: "./media/characters/irb'iiritaahn/maw.svg"
  31540. }
  31541. },
  31542. frontDick: {
  31543. height: math.unit(8.78461, "feet"),
  31544. name: "Front Dick",
  31545. image: {
  31546. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31547. }
  31548. },
  31549. rearDick: {
  31550. height: math.unit(8.78461, "feet"),
  31551. name: "Rear Dick",
  31552. image: {
  31553. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31554. }
  31555. },
  31556. rearDickUnfolded: {
  31557. height: math.unit(8.78, "feet"),
  31558. name: "Rear Dick (Unfolded)",
  31559. image: {
  31560. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31561. }
  31562. },
  31563. wings: {
  31564. height: math.unit(43, "feet"),
  31565. name: "Wings",
  31566. image: {
  31567. source: "./media/characters/irb'iiritaahn/wings.svg"
  31568. }
  31569. },
  31570. },
  31571. [
  31572. {
  31573. name: "Macro",
  31574. height: math.unit(50 + 9/12, "feet"),
  31575. default: true
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(205, "cm"),
  31584. weight: math.unit(102, "kg"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/irbisgreif/front.svg",
  31588. extra: 785/706,
  31589. bottom: 13/798
  31590. }
  31591. },
  31592. back: {
  31593. height: math.unit(205, "cm"),
  31594. weight: math.unit(102, "kg"),
  31595. name: "Back",
  31596. image: {
  31597. source: "./media/characters/irbisgreif/back.svg",
  31598. extra: 713/701,
  31599. bottom: 26/739
  31600. }
  31601. },
  31602. frontDressed: {
  31603. height: math.unit(216, "cm"),
  31604. weight: math.unit(102, "kg"),
  31605. name: "Front-dressed",
  31606. image: {
  31607. source: "./media/characters/irbisgreif/front-dressed.svg",
  31608. extra: 902/776,
  31609. bottom: 14/916
  31610. }
  31611. },
  31612. sideDressed: {
  31613. height: math.unit(195, "cm"),
  31614. weight: math.unit(102, "kg"),
  31615. name: "Side-dressed",
  31616. image: {
  31617. source: "./media/characters/irbisgreif/side-dressed.svg",
  31618. extra: 788/688,
  31619. bottom: 21/809
  31620. }
  31621. },
  31622. backDressed: {
  31623. height: math.unit(216, "cm"),
  31624. weight: math.unit(102, "kg"),
  31625. name: "Back-dressed",
  31626. image: {
  31627. source: "./media/characters/irbisgreif/back-dressed.svg",
  31628. extra: 901/783,
  31629. bottom: 10/911
  31630. }
  31631. },
  31632. dick: {
  31633. height: math.unit(0.49, "feet"),
  31634. name: "Dick",
  31635. image: {
  31636. source: "./media/characters/irbisgreif/dick.svg"
  31637. }
  31638. },
  31639. wingTop: {
  31640. height: math.unit(1.93 , "feet"),
  31641. name: "Wing-top",
  31642. image: {
  31643. source: "./media/characters/irbisgreif/wing-top.svg"
  31644. }
  31645. },
  31646. wingBottom: {
  31647. height: math.unit(1.93 , "feet"),
  31648. name: "Wing-bottom",
  31649. image: {
  31650. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31651. }
  31652. },
  31653. },
  31654. [
  31655. {
  31656. name: "Normal",
  31657. height: math.unit(216, "cm"),
  31658. default: true
  31659. },
  31660. ]
  31661. ))
  31662. characterMakers.push(() => makeCharacter(
  31663. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31664. {
  31665. front: {
  31666. height: math.unit(6, "feet"),
  31667. weight: math.unit(150, "lb"),
  31668. name: "Front",
  31669. image: {
  31670. source: "./media/characters/pride/front.svg",
  31671. extra: 1299/1230,
  31672. bottom: 18/1317
  31673. }
  31674. },
  31675. },
  31676. [
  31677. {
  31678. name: "Normal",
  31679. height: math.unit(7, "feet")
  31680. },
  31681. {
  31682. name: "Mini-macro",
  31683. height: math.unit(11, "feet")
  31684. },
  31685. {
  31686. name: "Macro",
  31687. height: math.unit(15, "meters"),
  31688. default: true
  31689. },
  31690. {
  31691. name: "Macro+",
  31692. height: math.unit(40, "meters")
  31693. },
  31694. ]
  31695. ))
  31696. characterMakers.push(() => makeCharacter(
  31697. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31698. {
  31699. front: {
  31700. height: math.unit(4 + 2 / 12, "feet"),
  31701. weight: math.unit(95, "lb"),
  31702. name: "Front",
  31703. image: {
  31704. source: "./media/characters/vaelophis-nyx/front.svg",
  31705. extra: 2532/2330,
  31706. bottom: 0/2532
  31707. }
  31708. },
  31709. back: {
  31710. height: math.unit(4 + 2 / 12, "feet"),
  31711. weight: math.unit(95, "lb"),
  31712. name: "Back",
  31713. image: {
  31714. source: "./media/characters/vaelophis-nyx/back.svg",
  31715. extra: 2484/2361,
  31716. bottom: 0/2484
  31717. }
  31718. },
  31719. feralSide: {
  31720. height: math.unit(2 + 1/12, "feet"),
  31721. weight: math.unit(20, "lb"),
  31722. name: "Feral (Side)",
  31723. image: {
  31724. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31725. extra: 1721/1581,
  31726. bottom: 70/1791
  31727. }
  31728. },
  31729. feralLazing: {
  31730. height: math.unit(1.08, "feet"),
  31731. weight: math.unit(20, "lb"),
  31732. name: "Feral (Lazing)",
  31733. image: {
  31734. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31735. extra: 822/822,
  31736. bottom: 248/1070
  31737. }
  31738. },
  31739. ear: {
  31740. height: math.unit(0.416, "feet"),
  31741. name: "Ear",
  31742. image: {
  31743. source: "./media/characters/vaelophis-nyx/ear.svg"
  31744. }
  31745. },
  31746. eye: {
  31747. height: math.unit(0.0748, "feet"),
  31748. name: "Eye",
  31749. image: {
  31750. source: "./media/characters/vaelophis-nyx/eye.svg"
  31751. }
  31752. },
  31753. mouth: {
  31754. height: math.unit(0.378, "feet"),
  31755. name: "Mouth",
  31756. image: {
  31757. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31758. }
  31759. },
  31760. spade: {
  31761. height: math.unit(0.55, "feet"),
  31762. name: "Spade",
  31763. image: {
  31764. source: "./media/characters/vaelophis-nyx/spade.svg"
  31765. }
  31766. },
  31767. },
  31768. [
  31769. {
  31770. name: "Normal",
  31771. height: math.unit(4 + 2/12, "feet"),
  31772. default: true
  31773. },
  31774. ]
  31775. ))
  31776. characterMakers.push(() => makeCharacter(
  31777. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31778. {
  31779. front: {
  31780. height: math.unit(7, "feet"),
  31781. weight: math.unit(231, "lb"),
  31782. name: "Front",
  31783. image: {
  31784. source: "./media/characters/flux/front.svg",
  31785. extra: 919/871,
  31786. bottom: 0/919
  31787. }
  31788. },
  31789. back: {
  31790. height: math.unit(7, "feet"),
  31791. weight: math.unit(231, "lb"),
  31792. name: "Back",
  31793. image: {
  31794. source: "./media/characters/flux/back.svg",
  31795. extra: 1040/992,
  31796. bottom: 0/1040
  31797. }
  31798. },
  31799. frontDressed: {
  31800. height: math.unit(7, "feet"),
  31801. weight: math.unit(231, "lb"),
  31802. name: "Front (Dressed)",
  31803. image: {
  31804. source: "./media/characters/flux/front-dressed.svg",
  31805. extra: 919/871,
  31806. bottom: 0/919
  31807. }
  31808. },
  31809. feralSide: {
  31810. height: math.unit(5, "feet"),
  31811. weight: math.unit(150, "lb"),
  31812. name: "Feral (Side)",
  31813. image: {
  31814. source: "./media/characters/flux/feral-side.svg",
  31815. extra: 598/528,
  31816. bottom: 28/626
  31817. }
  31818. },
  31819. head: {
  31820. height: math.unit(1.585, "feet"),
  31821. name: "Head",
  31822. image: {
  31823. source: "./media/characters/flux/head.svg"
  31824. }
  31825. },
  31826. headSide: {
  31827. height: math.unit(1.74, "feet"),
  31828. name: "Head (Side)",
  31829. image: {
  31830. source: "./media/characters/flux/head-side.svg"
  31831. }
  31832. },
  31833. headSideFire: {
  31834. height: math.unit(1.76, "feet"),
  31835. name: "Head (Side, Fire)",
  31836. image: {
  31837. source: "./media/characters/flux/head-side-fire.svg"
  31838. }
  31839. },
  31840. },
  31841. [
  31842. {
  31843. name: "Normal",
  31844. height: math.unit(7, "feet"),
  31845. default: true
  31846. },
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31851. {
  31852. front: {
  31853. height: math.unit(9, "feet"),
  31854. weight: math.unit(1012, "lb"),
  31855. name: "Front",
  31856. image: {
  31857. source: "./media/characters/ulfra-lupae/front.svg",
  31858. extra: 1083/1011,
  31859. bottom: 67/1150
  31860. }
  31861. },
  31862. },
  31863. [
  31864. {
  31865. name: "Micro",
  31866. height: math.unit(6, "inches")
  31867. },
  31868. {
  31869. name: "Socializing",
  31870. height: math.unit(6 + 5/12, "feet")
  31871. },
  31872. {
  31873. name: "Normal",
  31874. height: math.unit(9, "feet"),
  31875. default: true
  31876. },
  31877. {
  31878. name: "Macro",
  31879. height: math.unit(150, "feet")
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31885. {
  31886. front: {
  31887. height: math.unit(5 + 2/12, "feet"),
  31888. weight: math.unit(120, "lb"),
  31889. name: "Front",
  31890. image: {
  31891. source: "./media/characters/timber/front.svg",
  31892. extra: 2814/2705,
  31893. bottom: 181/2995
  31894. }
  31895. },
  31896. },
  31897. [
  31898. {
  31899. name: "Normal",
  31900. height: math.unit(5 + 2/12, "feet"),
  31901. default: true
  31902. },
  31903. ]
  31904. ))
  31905. characterMakers.push(() => makeCharacter(
  31906. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31907. {
  31908. front: {
  31909. height: math.unit(9, "feet"),
  31910. name: "Front",
  31911. image: {
  31912. source: "./media/characters/nicki/front.svg",
  31913. extra: 1240/990,
  31914. bottom: 45/1285
  31915. },
  31916. form: "anthro",
  31917. default: true
  31918. },
  31919. side: {
  31920. height: math.unit(9, "feet"),
  31921. name: "Side",
  31922. image: {
  31923. source: "./media/characters/nicki/side.svg",
  31924. extra: 1047/973,
  31925. bottom: 61/1108
  31926. },
  31927. form: "anthro"
  31928. },
  31929. back: {
  31930. height: math.unit(9, "feet"),
  31931. name: "Back",
  31932. image: {
  31933. source: "./media/characters/nicki/back.svg",
  31934. extra: 1006/965,
  31935. bottom: 39/1045
  31936. },
  31937. form: "anthro"
  31938. },
  31939. taur: {
  31940. height: math.unit(15, "feet"),
  31941. name: "Taur",
  31942. image: {
  31943. source: "./media/characters/nicki/taur.svg",
  31944. extra: 1592/1347,
  31945. bottom: 0/1592
  31946. },
  31947. form: "taur",
  31948. default: true
  31949. },
  31950. },
  31951. [
  31952. {
  31953. name: "Normal",
  31954. height: math.unit(9, "feet"),
  31955. form: "anthro",
  31956. default: true
  31957. },
  31958. {
  31959. name: "Normal",
  31960. height: math.unit(15, "feet"),
  31961. form: "taur",
  31962. default: true
  31963. }
  31964. ],
  31965. {
  31966. "anthro": {
  31967. name: "Anthro",
  31968. default: true
  31969. },
  31970. "taur": {
  31971. name: "Taur"
  31972. }
  31973. }
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31977. {
  31978. front: {
  31979. height: math.unit(7 + 10/12, "feet"),
  31980. weight: math.unit(3.5, "tons"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/lee/front.svg",
  31984. extra: 1773/1615,
  31985. bottom: 86/1859
  31986. }
  31987. },
  31988. hand: {
  31989. height: math.unit(1.78, "feet"),
  31990. name: "Hand",
  31991. image: {
  31992. source: "./media/characters/lee/hand.svg"
  31993. }
  31994. },
  31995. maw: {
  31996. height: math.unit(1.18, "feet"),
  31997. name: "Maw",
  31998. image: {
  31999. source: "./media/characters/lee/maw.svg"
  32000. }
  32001. },
  32002. },
  32003. [
  32004. {
  32005. name: "Normal",
  32006. height: math.unit(7 + 10/12, "feet"),
  32007. default: true
  32008. },
  32009. ]
  32010. ))
  32011. characterMakers.push(() => makeCharacter(
  32012. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32013. {
  32014. front: {
  32015. height: math.unit(9, "feet"),
  32016. name: "Front",
  32017. image: {
  32018. source: "./media/characters/guti/front.svg",
  32019. extra: 4551/4355,
  32020. bottom: 123/4674
  32021. }
  32022. },
  32023. tongue: {
  32024. height: math.unit(1, "feet"),
  32025. name: "Tongue",
  32026. image: {
  32027. source: "./media/characters/guti/tongue.svg"
  32028. }
  32029. },
  32030. paw: {
  32031. height: math.unit(1.18, "feet"),
  32032. name: "Paw",
  32033. image: {
  32034. source: "./media/characters/guti/paw.svg"
  32035. }
  32036. },
  32037. },
  32038. [
  32039. {
  32040. name: "Normal",
  32041. height: math.unit(9, "feet"),
  32042. default: true
  32043. },
  32044. ]
  32045. ))
  32046. characterMakers.push(() => makeCharacter(
  32047. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32048. {
  32049. side: {
  32050. height: math.unit(5, "meters"),
  32051. name: "Side",
  32052. image: {
  32053. source: "./media/characters/vesper/side.svg",
  32054. extra: 1605/1518,
  32055. bottom: 0/1605
  32056. }
  32057. },
  32058. },
  32059. [
  32060. {
  32061. name: "Small",
  32062. height: math.unit(5, "meters")
  32063. },
  32064. {
  32065. name: "Sage",
  32066. height: math.unit(100, "meters"),
  32067. default: true
  32068. },
  32069. {
  32070. name: "Fun Size",
  32071. height: math.unit(600, "meters")
  32072. },
  32073. {
  32074. name: "Goddess",
  32075. height: math.unit(20000, "km")
  32076. },
  32077. {
  32078. name: "Maximum",
  32079. height: math.unit(5, "galaxies")
  32080. },
  32081. ]
  32082. ))
  32083. characterMakers.push(() => makeCharacter(
  32084. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32085. {
  32086. front: {
  32087. height: math.unit(6 + 3/12, "feet"),
  32088. weight: math.unit(190, "lb"),
  32089. name: "Front",
  32090. image: {
  32091. source: "./media/characters/gawain/front.svg",
  32092. extra: 2222/2139,
  32093. bottom: 90/2312
  32094. }
  32095. },
  32096. back: {
  32097. height: math.unit(6 + 3/12, "feet"),
  32098. weight: math.unit(190, "lb"),
  32099. name: "Back",
  32100. image: {
  32101. source: "./media/characters/gawain/back.svg",
  32102. extra: 2199/2111,
  32103. bottom: 73/2272
  32104. }
  32105. },
  32106. },
  32107. [
  32108. {
  32109. name: "Normal",
  32110. height: math.unit(6 + 3/12, "feet"),
  32111. default: true
  32112. },
  32113. ]
  32114. ))
  32115. characterMakers.push(() => makeCharacter(
  32116. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32117. {
  32118. side: {
  32119. height: math.unit(3.5, "meters"),
  32120. weight: math.unit(16000, "lb"),
  32121. name: "Side",
  32122. image: {
  32123. source: "./media/characters/dascalti/side.svg",
  32124. extra: 392/273,
  32125. bottom: 47/439
  32126. }
  32127. },
  32128. breath: {
  32129. height: math.unit(7.4, "feet"),
  32130. name: "Breath",
  32131. image: {
  32132. source: "./media/characters/dascalti/breath.svg"
  32133. }
  32134. },
  32135. fed: {
  32136. height: math.unit(3.6, "meters"),
  32137. weight: math.unit(16000, "lb"),
  32138. name: "Fed",
  32139. image: {
  32140. source: "./media/characters/dascalti/fed.svg",
  32141. extra: 1419/820,
  32142. bottom: 95/1514
  32143. }
  32144. },
  32145. },
  32146. [
  32147. {
  32148. name: "Normal",
  32149. height: math.unit(3.5, "meters"),
  32150. default: true
  32151. },
  32152. ]
  32153. ))
  32154. characterMakers.push(() => makeCharacter(
  32155. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32156. {
  32157. front: {
  32158. height: math.unit(3 + 5/12, "feet"),
  32159. name: "Front",
  32160. image: {
  32161. source: "./media/characters/mauve/front.svg",
  32162. extra: 1126/1033,
  32163. bottom: 65/1191
  32164. }
  32165. },
  32166. side: {
  32167. height: math.unit(3 + 5/12, "feet"),
  32168. name: "Side",
  32169. image: {
  32170. source: "./media/characters/mauve/side.svg",
  32171. extra: 1089/1001,
  32172. bottom: 29/1118
  32173. }
  32174. },
  32175. back: {
  32176. height: math.unit(3 + 5/12, "feet"),
  32177. name: "Back",
  32178. image: {
  32179. source: "./media/characters/mauve/back.svg",
  32180. extra: 1173/1053,
  32181. bottom: 109/1282
  32182. }
  32183. },
  32184. },
  32185. [
  32186. {
  32187. name: "Normal",
  32188. height: math.unit(3 + 5/12, "feet"),
  32189. default: true
  32190. },
  32191. ]
  32192. ))
  32193. characterMakers.push(() => makeCharacter(
  32194. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32195. {
  32196. front: {
  32197. height: math.unit(6 + 3/12, "feet"),
  32198. weight: math.unit(430, "lb"),
  32199. name: "Front",
  32200. image: {
  32201. source: "./media/characters/carlos/front.svg",
  32202. extra: 1964/1913,
  32203. bottom: 70/2034
  32204. }
  32205. },
  32206. },
  32207. [
  32208. {
  32209. name: "Normal",
  32210. height: math.unit(6 + 3/12, "feet"),
  32211. default: true
  32212. },
  32213. ]
  32214. ))
  32215. characterMakers.push(() => makeCharacter(
  32216. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32217. {
  32218. back: {
  32219. height: math.unit(5 + 10/12, "feet"),
  32220. weight: math.unit(200, "lb"),
  32221. name: "Back",
  32222. image: {
  32223. source: "./media/characters/jax/back.svg",
  32224. extra: 764/739,
  32225. bottom: 25/789
  32226. }
  32227. },
  32228. },
  32229. [
  32230. {
  32231. name: "Normal",
  32232. height: math.unit(5 + 10/12, "feet"),
  32233. default: true
  32234. },
  32235. ]
  32236. ))
  32237. characterMakers.push(() => makeCharacter(
  32238. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32239. {
  32240. front: {
  32241. height: math.unit(8, "feet"),
  32242. weight: math.unit(250, "lb"),
  32243. name: "Front",
  32244. image: {
  32245. source: "./media/characters/eikthynir/front.svg",
  32246. extra: 1332/1166,
  32247. bottom: 82/1414
  32248. }
  32249. },
  32250. back: {
  32251. height: math.unit(8, "feet"),
  32252. weight: math.unit(250, "lb"),
  32253. name: "Back",
  32254. image: {
  32255. source: "./media/characters/eikthynir/back.svg",
  32256. extra: 1342/1190,
  32257. bottom: 19/1361
  32258. }
  32259. },
  32260. dick: {
  32261. height: math.unit(2.35, "feet"),
  32262. name: "Dick",
  32263. image: {
  32264. source: "./media/characters/eikthynir/dick.svg"
  32265. }
  32266. },
  32267. },
  32268. [
  32269. {
  32270. name: "Normal",
  32271. height: math.unit(8, "feet"),
  32272. default: true
  32273. },
  32274. ]
  32275. ))
  32276. characterMakers.push(() => makeCharacter(
  32277. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32278. {
  32279. front: {
  32280. height: math.unit(99, "meters"),
  32281. weight: math.unit(13000, "tons"),
  32282. name: "Front",
  32283. image: {
  32284. source: "./media/characters/zlmos/front.svg",
  32285. extra: 2202/1992,
  32286. bottom: 315/2517
  32287. }
  32288. },
  32289. },
  32290. [
  32291. {
  32292. name: "Macro",
  32293. height: math.unit(99, "meters"),
  32294. default: true
  32295. },
  32296. ]
  32297. ))
  32298. characterMakers.push(() => makeCharacter(
  32299. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32300. {
  32301. front: {
  32302. height: math.unit(6 + 5/12, "feet"),
  32303. name: "Front",
  32304. image: {
  32305. source: "./media/characters/purri/front.svg",
  32306. extra: 1698/1610,
  32307. bottom: 32/1730
  32308. }
  32309. },
  32310. frontAlt: {
  32311. height: math.unit(6 + 5/12, "feet"),
  32312. name: "Front (Alt)",
  32313. image: {
  32314. source: "./media/characters/purri/front-alt.svg",
  32315. extra: 450/420,
  32316. bottom: 26/476
  32317. }
  32318. },
  32319. boots: {
  32320. height: math.unit(5.5, "feet"),
  32321. name: "Boots",
  32322. image: {
  32323. source: "./media/characters/purri/boots.svg",
  32324. extra: 905/853,
  32325. bottom: 18/923
  32326. }
  32327. },
  32328. lying: {
  32329. height: math.unit(2, "feet"),
  32330. name: "Lying",
  32331. image: {
  32332. source: "./media/characters/purri/lying.svg",
  32333. extra: 940/843,
  32334. bottom: 146/1086
  32335. }
  32336. },
  32337. devious: {
  32338. height: math.unit(1.77, "feet"),
  32339. name: "Devious",
  32340. image: {
  32341. source: "./media/characters/purri/devious.svg",
  32342. extra: 1440/1155,
  32343. bottom: 147/1587
  32344. }
  32345. },
  32346. bean: {
  32347. height: math.unit(1.94, "feet"),
  32348. name: "Bean",
  32349. image: {
  32350. source: "./media/characters/purri/bean.svg"
  32351. }
  32352. },
  32353. },
  32354. [
  32355. {
  32356. name: "Micro",
  32357. height: math.unit(1, "mm")
  32358. },
  32359. {
  32360. name: "Normal",
  32361. height: math.unit(6 + 5/12, "feet"),
  32362. default: true
  32363. },
  32364. {
  32365. name: "Macro :3c",
  32366. height: math.unit(2, "miles")
  32367. },
  32368. ]
  32369. ))
  32370. characterMakers.push(() => makeCharacter(
  32371. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32372. {
  32373. front: {
  32374. height: math.unit(6 + 2/12, "feet"),
  32375. weight: math.unit(250, "lb"),
  32376. name: "Front",
  32377. image: {
  32378. source: "./media/characters/moonlight/front.svg",
  32379. extra: 1044/908,
  32380. bottom: 56/1100
  32381. }
  32382. },
  32383. feral: {
  32384. height: math.unit(3 + 1/12, "feet"),
  32385. weight: math.unit(50, "kg"),
  32386. name: "Feral",
  32387. image: {
  32388. source: "./media/characters/moonlight/feral.svg",
  32389. extra: 3705/2791,
  32390. bottom: 145/3850
  32391. }
  32392. },
  32393. paw: {
  32394. height: math.unit(1, "feet"),
  32395. name: "Paw",
  32396. image: {
  32397. source: "./media/characters/moonlight/paw.svg"
  32398. }
  32399. },
  32400. paws: {
  32401. height: math.unit(0.98, "feet"),
  32402. name: "Paws",
  32403. image: {
  32404. source: "./media/characters/moonlight/paws.svg",
  32405. extra: 939/939,
  32406. bottom: 50/989
  32407. }
  32408. },
  32409. mouth: {
  32410. height: math.unit(0.48, "feet"),
  32411. name: "Mouth",
  32412. image: {
  32413. source: "./media/characters/moonlight/mouth.svg"
  32414. }
  32415. },
  32416. dick: {
  32417. height: math.unit(1.46, "feet"),
  32418. name: "Dick",
  32419. image: {
  32420. source: "./media/characters/moonlight/dick.svg"
  32421. }
  32422. },
  32423. },
  32424. [
  32425. {
  32426. name: "Normal",
  32427. height: math.unit(6 + 2/12, "feet"),
  32428. default: true
  32429. },
  32430. {
  32431. name: "Macro",
  32432. height: math.unit(300, "feet")
  32433. },
  32434. {
  32435. name: "Macro+",
  32436. height: math.unit(1, "mile")
  32437. },
  32438. {
  32439. name: "Mt. Moon",
  32440. height: math.unit(5, "miles")
  32441. },
  32442. {
  32443. name: "Megamacro",
  32444. height: math.unit(15, "miles")
  32445. },
  32446. ]
  32447. ))
  32448. characterMakers.push(() => makeCharacter(
  32449. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32450. {
  32451. back: {
  32452. height: math.unit(6, "feet"),
  32453. weight: math.unit(150, "lb"),
  32454. name: "Back",
  32455. image: {
  32456. source: "./media/characters/sylen/back.svg",
  32457. extra: 1335/1273,
  32458. bottom: 107/1442
  32459. }
  32460. },
  32461. },
  32462. [
  32463. {
  32464. name: "Normal",
  32465. height: math.unit(5 + 5/12, "feet")
  32466. },
  32467. {
  32468. name: "Megamacro",
  32469. height: math.unit(3, "miles"),
  32470. default: true
  32471. },
  32472. ]
  32473. ))
  32474. characterMakers.push(() => makeCharacter(
  32475. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32476. {
  32477. front: {
  32478. height: math.unit(6, "feet"),
  32479. weight: math.unit(190, "lb"),
  32480. name: "Front",
  32481. image: {
  32482. source: "./media/characters/huttser/front.svg",
  32483. extra: 1152/1058,
  32484. bottom: 23/1175
  32485. }
  32486. },
  32487. side: {
  32488. height: math.unit(6, "feet"),
  32489. weight: math.unit(190, "lb"),
  32490. name: "Side",
  32491. image: {
  32492. source: "./media/characters/huttser/side.svg",
  32493. extra: 1174/1065,
  32494. bottom: 18/1192
  32495. }
  32496. },
  32497. back: {
  32498. height: math.unit(6, "feet"),
  32499. weight: math.unit(190, "lb"),
  32500. name: "Back",
  32501. image: {
  32502. source: "./media/characters/huttser/back.svg",
  32503. extra: 1158/1056,
  32504. bottom: 12/1170
  32505. }
  32506. },
  32507. },
  32508. [
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32513. {
  32514. side: {
  32515. height: math.unit(12 + 9/12, "feet"),
  32516. weight: math.unit(15000, "lb"),
  32517. name: "Side",
  32518. image: {
  32519. source: "./media/characters/faan/side.svg",
  32520. extra: 2747/2697,
  32521. bottom: 0/2747
  32522. }
  32523. },
  32524. front: {
  32525. height: math.unit(12 + 9/12, "feet"),
  32526. weight: math.unit(15000, "lb"),
  32527. name: "Front",
  32528. image: {
  32529. source: "./media/characters/faan/front.svg",
  32530. extra: 607/571,
  32531. bottom: 24/631
  32532. }
  32533. },
  32534. head: {
  32535. height: math.unit(2.85, "feet"),
  32536. name: "Head",
  32537. image: {
  32538. source: "./media/characters/faan/head.svg"
  32539. }
  32540. },
  32541. headAlt: {
  32542. height: math.unit(3.13, "feet"),
  32543. name: "Head-alt",
  32544. image: {
  32545. source: "./media/characters/faan/head-alt.svg"
  32546. }
  32547. },
  32548. },
  32549. [
  32550. {
  32551. name: "Normal",
  32552. height: math.unit(12 + 9/12, "feet"),
  32553. default: true
  32554. },
  32555. ]
  32556. ))
  32557. characterMakers.push(() => makeCharacter(
  32558. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32559. {
  32560. front: {
  32561. height: math.unit(6, "feet"),
  32562. weight: math.unit(300, "lb"),
  32563. name: "Front",
  32564. image: {
  32565. source: "./media/characters/tanio/front.svg",
  32566. extra: 711/673,
  32567. bottom: 25/736
  32568. }
  32569. },
  32570. },
  32571. [
  32572. {
  32573. name: "Normal",
  32574. height: math.unit(6, "feet"),
  32575. default: true
  32576. },
  32577. ]
  32578. ))
  32579. characterMakers.push(() => makeCharacter(
  32580. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32581. {
  32582. front: {
  32583. height: math.unit(3, "inches"),
  32584. name: "Front",
  32585. image: {
  32586. source: "./media/characters/noboru/front.svg",
  32587. extra: 1039/932,
  32588. bottom: 18/1057
  32589. }
  32590. },
  32591. },
  32592. [
  32593. {
  32594. name: "Micro",
  32595. height: math.unit(3, "inches"),
  32596. default: true
  32597. },
  32598. ]
  32599. ))
  32600. characterMakers.push(() => makeCharacter(
  32601. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32602. {
  32603. front: {
  32604. height: math.unit(1.85, "meters"),
  32605. weight: math.unit(80, "kg"),
  32606. name: "Front",
  32607. image: {
  32608. source: "./media/characters/daniel-barrett/front.svg",
  32609. extra: 355/337,
  32610. bottom: 9/364
  32611. }
  32612. },
  32613. },
  32614. [
  32615. {
  32616. name: "Pico",
  32617. height: math.unit(0.0433, "mm")
  32618. },
  32619. {
  32620. name: "Nano",
  32621. height: math.unit(1.5, "mm")
  32622. },
  32623. {
  32624. name: "Micro",
  32625. height: math.unit(5.3, "cm"),
  32626. default: true
  32627. },
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(1.85, "meters")
  32631. },
  32632. {
  32633. name: "Macro",
  32634. height: math.unit(64.7, "meters")
  32635. },
  32636. {
  32637. name: "Megamacro",
  32638. height: math.unit(2.26, "km")
  32639. },
  32640. {
  32641. name: "Gigamacro",
  32642. height: math.unit(79, "km")
  32643. },
  32644. {
  32645. name: "Teramacro",
  32646. height: math.unit(2765, "km")
  32647. },
  32648. {
  32649. name: "Petamacro",
  32650. height: math.unit(96678, "km")
  32651. },
  32652. ]
  32653. ))
  32654. characterMakers.push(() => makeCharacter(
  32655. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32656. {
  32657. front: {
  32658. height: math.unit(30, "meters"),
  32659. weight: math.unit(400, "tons"),
  32660. name: "Front",
  32661. image: {
  32662. source: "./media/characters/zeel/front.svg",
  32663. extra: 2599/2599,
  32664. bottom: 226/2825
  32665. }
  32666. },
  32667. },
  32668. [
  32669. {
  32670. name: "Macro",
  32671. height: math.unit(30, "meters"),
  32672. default: true
  32673. },
  32674. ]
  32675. ))
  32676. characterMakers.push(() => makeCharacter(
  32677. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32678. {
  32679. front: {
  32680. height: math.unit(6 + 7/12, "feet"),
  32681. weight: math.unit(210, "lb"),
  32682. name: "Front",
  32683. image: {
  32684. source: "./media/characters/tarn/front.svg",
  32685. extra: 3517/3220,
  32686. bottom: 91/3608
  32687. }
  32688. },
  32689. back: {
  32690. height: math.unit(6 + 7/12, "feet"),
  32691. weight: math.unit(210, "lb"),
  32692. name: "Back",
  32693. image: {
  32694. source: "./media/characters/tarn/back.svg",
  32695. extra: 3566/3241,
  32696. bottom: 34/3600
  32697. }
  32698. },
  32699. dick: {
  32700. height: math.unit(1.65, "feet"),
  32701. name: "Dick",
  32702. image: {
  32703. source: "./media/characters/tarn/dick.svg"
  32704. }
  32705. },
  32706. paw: {
  32707. height: math.unit(1.80, "feet"),
  32708. name: "Paw",
  32709. image: {
  32710. source: "./media/characters/tarn/paw.svg"
  32711. }
  32712. },
  32713. tongue: {
  32714. height: math.unit(0.97, "feet"),
  32715. name: "Tongue",
  32716. image: {
  32717. source: "./media/characters/tarn/tongue.svg"
  32718. }
  32719. },
  32720. },
  32721. [
  32722. {
  32723. name: "Micro",
  32724. height: math.unit(4, "inches")
  32725. },
  32726. {
  32727. name: "Normal",
  32728. height: math.unit(6 + 7/12, "feet"),
  32729. default: true
  32730. },
  32731. {
  32732. name: "Macro",
  32733. height: math.unit(300, "feet")
  32734. },
  32735. ]
  32736. ))
  32737. characterMakers.push(() => makeCharacter(
  32738. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32739. {
  32740. front: {
  32741. height: math.unit(5 + 7/12, "feet"),
  32742. weight: math.unit(80, "kg"),
  32743. name: "Front",
  32744. image: {
  32745. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32746. extra: 3023/2865,
  32747. bottom: 33/3056
  32748. }
  32749. },
  32750. back: {
  32751. height: math.unit(5 + 7/12, "feet"),
  32752. weight: math.unit(80, "kg"),
  32753. name: "Back",
  32754. image: {
  32755. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32756. extra: 3020/2886,
  32757. bottom: 30/3050
  32758. }
  32759. },
  32760. dick: {
  32761. height: math.unit(0.98, "feet"),
  32762. name: "Dick",
  32763. image: {
  32764. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32765. }
  32766. },
  32767. anatomy: {
  32768. height: math.unit(2.86, "feet"),
  32769. name: "Anatomy",
  32770. image: {
  32771. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32772. }
  32773. },
  32774. },
  32775. [
  32776. {
  32777. name: "Really Small",
  32778. height: math.unit(2, "inches")
  32779. },
  32780. {
  32781. name: "Micro",
  32782. height: math.unit(5.583, "inches")
  32783. },
  32784. {
  32785. name: "Normal",
  32786. height: math.unit(5 + 7/12, "feet"),
  32787. default: true
  32788. },
  32789. {
  32790. name: "Macro",
  32791. height: math.unit(67, "feet")
  32792. },
  32793. {
  32794. name: "Megamacro",
  32795. height: math.unit(134, "feet")
  32796. },
  32797. ]
  32798. ))
  32799. characterMakers.push(() => makeCharacter(
  32800. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32801. {
  32802. front: {
  32803. height: math.unit(9, "feet"),
  32804. weight: math.unit(120, "lb"),
  32805. name: "Front",
  32806. image: {
  32807. source: "./media/characters/sally/front.svg",
  32808. extra: 1506/1349,
  32809. bottom: 66/1572
  32810. }
  32811. },
  32812. },
  32813. [
  32814. {
  32815. name: "Normal",
  32816. height: math.unit(9, "feet"),
  32817. default: true
  32818. },
  32819. ]
  32820. ))
  32821. characterMakers.push(() => makeCharacter(
  32822. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32823. {
  32824. front: {
  32825. height: math.unit(8, "feet"),
  32826. weight: math.unit(900, "lb"),
  32827. name: "Front",
  32828. image: {
  32829. source: "./media/characters/owen/front.svg",
  32830. extra: 1761/1657,
  32831. bottom: 74/1835
  32832. }
  32833. },
  32834. side: {
  32835. height: math.unit(8, "feet"),
  32836. weight: math.unit(900, "lb"),
  32837. name: "Side",
  32838. image: {
  32839. source: "./media/characters/owen/side.svg",
  32840. extra: 1797/1734,
  32841. bottom: 30/1827
  32842. }
  32843. },
  32844. back: {
  32845. height: math.unit(8, "feet"),
  32846. weight: math.unit(900, "lb"),
  32847. name: "Back",
  32848. image: {
  32849. source: "./media/characters/owen/back.svg",
  32850. extra: 1796/1706,
  32851. bottom: 59/1855
  32852. }
  32853. },
  32854. maw: {
  32855. height: math.unit(1.76, "feet"),
  32856. name: "Maw",
  32857. image: {
  32858. source: "./media/characters/owen/maw.svg"
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Normal",
  32865. height: math.unit(8, "feet"),
  32866. default: true
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32872. {
  32873. front: {
  32874. height: math.unit(4, "feet"),
  32875. weight: math.unit(400, "lb"),
  32876. name: "Front",
  32877. image: {
  32878. source: "./media/characters/ryth/front.svg",
  32879. extra: 1920/1748,
  32880. bottom: 42/1962
  32881. }
  32882. },
  32883. back: {
  32884. height: math.unit(4, "feet"),
  32885. weight: math.unit(400, "lb"),
  32886. name: "Back",
  32887. image: {
  32888. source: "./media/characters/ryth/back.svg",
  32889. extra: 1897/1690,
  32890. bottom: 89/1986
  32891. }
  32892. },
  32893. mouth: {
  32894. height: math.unit(1.39, "feet"),
  32895. name: "Mouth",
  32896. image: {
  32897. source: "./media/characters/ryth/mouth.svg"
  32898. }
  32899. },
  32900. tailmaw: {
  32901. height: math.unit(1.23, "feet"),
  32902. name: "Tailmaw",
  32903. image: {
  32904. source: "./media/characters/ryth/tailmaw.svg"
  32905. }
  32906. },
  32907. goia: {
  32908. height: math.unit(4, "meters"),
  32909. weight: math.unit(10800, "lb"),
  32910. name: "Goia",
  32911. image: {
  32912. source: "./media/characters/ryth/goia.svg",
  32913. extra: 745/640,
  32914. bottom: 107/852
  32915. }
  32916. },
  32917. goiaFront: {
  32918. height: math.unit(4, "meters"),
  32919. weight: math.unit(10800, "lb"),
  32920. name: "Goia (Front)",
  32921. image: {
  32922. source: "./media/characters/ryth/goia-front.svg",
  32923. extra: 750/586,
  32924. bottom: 114/864
  32925. }
  32926. },
  32927. goiaMaw: {
  32928. height: math.unit(5.55, "feet"),
  32929. name: "Goia Maw",
  32930. image: {
  32931. source: "./media/characters/ryth/goia-maw.svg"
  32932. }
  32933. },
  32934. goiaForepaw: {
  32935. height: math.unit(3.5, "feet"),
  32936. name: "Goia Forepaw",
  32937. image: {
  32938. source: "./media/characters/ryth/goia-forepaw.svg"
  32939. }
  32940. },
  32941. goiaHindpaw: {
  32942. height: math.unit(5.55, "feet"),
  32943. name: "Goia Hindpaw",
  32944. image: {
  32945. source: "./media/characters/ryth/goia-hindpaw.svg"
  32946. }
  32947. },
  32948. },
  32949. [
  32950. {
  32951. name: "Normal",
  32952. height: math.unit(4, "feet"),
  32953. default: true
  32954. },
  32955. ]
  32956. ))
  32957. characterMakers.push(() => makeCharacter(
  32958. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32959. {
  32960. front: {
  32961. height: math.unit(7, "feet"),
  32962. weight: math.unit(180, "lb"),
  32963. name: "Front",
  32964. image: {
  32965. source: "./media/characters/necrolance/front.svg",
  32966. extra: 1062/947,
  32967. bottom: 41/1103
  32968. }
  32969. },
  32970. back: {
  32971. height: math.unit(7, "feet"),
  32972. weight: math.unit(180, "lb"),
  32973. name: "Back",
  32974. image: {
  32975. source: "./media/characters/necrolance/back.svg",
  32976. extra: 1045/984,
  32977. bottom: 14/1059
  32978. }
  32979. },
  32980. wing: {
  32981. height: math.unit(2.67, "feet"),
  32982. name: "Wing",
  32983. image: {
  32984. source: "./media/characters/necrolance/wing.svg"
  32985. }
  32986. },
  32987. },
  32988. [
  32989. {
  32990. name: "Normal",
  32991. height: math.unit(7, "feet"),
  32992. default: true
  32993. },
  32994. ]
  32995. ))
  32996. characterMakers.push(() => makeCharacter(
  32997. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32998. {
  32999. front: {
  33000. height: math.unit(76, "meters"),
  33001. weight: math.unit(30000, "tons"),
  33002. name: "Front",
  33003. image: {
  33004. source: "./media/characters/tyler/front.svg",
  33005. extra: 1640/1640,
  33006. bottom: 114/1754
  33007. }
  33008. },
  33009. },
  33010. [
  33011. {
  33012. name: "Macro",
  33013. height: math.unit(76, "meters"),
  33014. default: true
  33015. },
  33016. ]
  33017. ))
  33018. characterMakers.push(() => makeCharacter(
  33019. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33020. {
  33021. front: {
  33022. height: math.unit(4 + 11/12, "feet"),
  33023. weight: math.unit(132, "lb"),
  33024. name: "Front",
  33025. image: {
  33026. source: "./media/characters/icey/front.svg",
  33027. extra: 2750/2550,
  33028. bottom: 33/2783
  33029. }
  33030. },
  33031. back: {
  33032. height: math.unit(4 + 11/12, "feet"),
  33033. weight: math.unit(132, "lb"),
  33034. name: "Back",
  33035. image: {
  33036. source: "./media/characters/icey/back.svg",
  33037. extra: 2624/2481,
  33038. bottom: 35/2659
  33039. }
  33040. },
  33041. },
  33042. [
  33043. {
  33044. name: "Normal",
  33045. height: math.unit(4 + 11/12, "feet"),
  33046. default: true
  33047. },
  33048. ]
  33049. ))
  33050. characterMakers.push(() => makeCharacter(
  33051. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33052. {
  33053. front: {
  33054. height: math.unit(100, "feet"),
  33055. weight: math.unit(0, "lb"),
  33056. name: "Front",
  33057. image: {
  33058. source: "./media/characters/smile/front.svg",
  33059. extra: 2983/2912,
  33060. bottom: 162/3145
  33061. }
  33062. },
  33063. back: {
  33064. height: math.unit(100, "feet"),
  33065. weight: math.unit(0, "lb"),
  33066. name: "Back",
  33067. image: {
  33068. source: "./media/characters/smile/back.svg",
  33069. extra: 3143/3031,
  33070. bottom: 91/3234
  33071. }
  33072. },
  33073. head: {
  33074. height: math.unit(26.3, "feet"),
  33075. weight: math.unit(0, "lb"),
  33076. name: "Head",
  33077. image: {
  33078. source: "./media/characters/smile/head.svg"
  33079. }
  33080. },
  33081. collar: {
  33082. height: math.unit(5.3, "feet"),
  33083. weight: math.unit(0, "lb"),
  33084. name: "Collar",
  33085. image: {
  33086. source: "./media/characters/smile/collar.svg"
  33087. }
  33088. },
  33089. },
  33090. [
  33091. {
  33092. name: "Macro",
  33093. height: math.unit(100, "feet"),
  33094. default: true
  33095. },
  33096. ]
  33097. ))
  33098. characterMakers.push(() => makeCharacter(
  33099. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33100. {
  33101. dragon: {
  33102. height: math.unit(26, "feet"),
  33103. weight: math.unit(36, "tons"),
  33104. name: "Dragon",
  33105. image: {
  33106. source: "./media/characters/arimphae/dragon.svg",
  33107. extra: 1574/983,
  33108. bottom: 357/1931
  33109. }
  33110. },
  33111. drake: {
  33112. height: math.unit(9, "feet"),
  33113. weight: math.unit(1.5, "tons"),
  33114. name: "Drake",
  33115. image: {
  33116. source: "./media/characters/arimphae/drake.svg",
  33117. extra: 1120/925,
  33118. bottom: 435/1555
  33119. }
  33120. },
  33121. },
  33122. [
  33123. {
  33124. name: "Small",
  33125. height: math.unit(26*5/9, "feet")
  33126. },
  33127. {
  33128. name: "Normal",
  33129. height: math.unit(26, "feet"),
  33130. default: true
  33131. },
  33132. ]
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33136. {
  33137. front: {
  33138. height: math.unit(8 + 9/12, "feet"),
  33139. name: "Front",
  33140. image: {
  33141. source: "./media/characters/xander/front.svg",
  33142. extra: 1237/974,
  33143. bottom: 94/1331
  33144. }
  33145. },
  33146. },
  33147. [
  33148. {
  33149. name: "Normal",
  33150. height: math.unit(8 + 9/12, "feet"),
  33151. default: true
  33152. },
  33153. {
  33154. name: "Gaze Grabber",
  33155. height: math.unit(13 + 8/12, "feet")
  33156. },
  33157. {
  33158. name: "Jaw Dropper",
  33159. height: math.unit(27, "feet")
  33160. },
  33161. {
  33162. name: "Show Stopper",
  33163. height: math.unit(136, "feet")
  33164. },
  33165. {
  33166. name: "Superstar",
  33167. height: math.unit(1.9e6, "miles")
  33168. },
  33169. ]
  33170. ))
  33171. characterMakers.push(() => makeCharacter(
  33172. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33173. {
  33174. side: {
  33175. height: math.unit(2100, "feet"),
  33176. name: "Side",
  33177. image: {
  33178. source: "./media/characters/osiris/side.svg",
  33179. extra: 1105/939,
  33180. bottom: 167/1272
  33181. }
  33182. },
  33183. },
  33184. [
  33185. {
  33186. name: "Macro",
  33187. height: math.unit(2100, "feet"),
  33188. default: true
  33189. },
  33190. ]
  33191. ))
  33192. characterMakers.push(() => makeCharacter(
  33193. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33194. {
  33195. front: {
  33196. height: math.unit(6 + 8/12, "feet"),
  33197. weight: math.unit(225, "lb"),
  33198. name: "Front",
  33199. image: {
  33200. source: "./media/characters/rhys-londe/front.svg",
  33201. extra: 2258/2141,
  33202. bottom: 188/2446
  33203. }
  33204. },
  33205. back: {
  33206. height: math.unit(6 + 8/12, "feet"),
  33207. weight: math.unit(225, "lb"),
  33208. name: "Back",
  33209. image: {
  33210. source: "./media/characters/rhys-londe/back.svg",
  33211. extra: 2237/2137,
  33212. bottom: 63/2300
  33213. }
  33214. },
  33215. frontNsfw: {
  33216. height: math.unit(6 + 8/12, "feet"),
  33217. weight: math.unit(225, "lb"),
  33218. name: "Front (NSFW)",
  33219. image: {
  33220. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33221. extra: 2258/2141,
  33222. bottom: 188/2446
  33223. }
  33224. },
  33225. backNsfw: {
  33226. height: math.unit(6 + 8/12, "feet"),
  33227. weight: math.unit(225, "lb"),
  33228. name: "Back (NSFW)",
  33229. image: {
  33230. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33231. extra: 2237/2137,
  33232. bottom: 63/2300
  33233. }
  33234. },
  33235. dick: {
  33236. height: math.unit(30, "inches"),
  33237. name: "Dick",
  33238. image: {
  33239. source: "./media/characters/rhys-londe/dick.svg"
  33240. }
  33241. },
  33242. maw: {
  33243. height: math.unit(1.6, "feet"),
  33244. name: "Maw",
  33245. image: {
  33246. source: "./media/characters/rhys-londe/maw.svg"
  33247. }
  33248. },
  33249. },
  33250. [
  33251. {
  33252. name: "Normal",
  33253. height: math.unit(6 + 8/12, "feet"),
  33254. default: true
  33255. },
  33256. ]
  33257. ))
  33258. characterMakers.push(() => makeCharacter(
  33259. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33260. {
  33261. front: {
  33262. height: math.unit(3 + 10/12, "feet"),
  33263. weight: math.unit(90, "lb"),
  33264. name: "Front",
  33265. image: {
  33266. source: "./media/characters/taivas-ensim/front.svg",
  33267. extra: 1327/1216,
  33268. bottom: 96/1423
  33269. }
  33270. },
  33271. back: {
  33272. height: math.unit(3 + 10/12, "feet"),
  33273. weight: math.unit(90, "lb"),
  33274. name: "Back",
  33275. image: {
  33276. source: "./media/characters/taivas-ensim/back.svg",
  33277. extra: 1355/1247,
  33278. bottom: 11/1366
  33279. }
  33280. },
  33281. frontNsfw: {
  33282. height: math.unit(3 + 10/12, "feet"),
  33283. weight: math.unit(90, "lb"),
  33284. name: "Front (NSFW)",
  33285. image: {
  33286. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33287. extra: 1327/1216,
  33288. bottom: 96/1423
  33289. }
  33290. },
  33291. backNsfw: {
  33292. height: math.unit(3 + 10/12, "feet"),
  33293. weight: math.unit(90, "lb"),
  33294. name: "Back (NSFW)",
  33295. image: {
  33296. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33297. extra: 1355/1247,
  33298. bottom: 11/1366
  33299. }
  33300. },
  33301. },
  33302. [
  33303. {
  33304. name: "Normal",
  33305. height: math.unit(3 + 10/12, "feet"),
  33306. default: true
  33307. },
  33308. ]
  33309. ))
  33310. characterMakers.push(() => makeCharacter(
  33311. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33312. {
  33313. front: {
  33314. height: math.unit(9 + 6/12, "feet"),
  33315. weight: math.unit(940, "lb"),
  33316. name: "Front",
  33317. image: {
  33318. source: "./media/characters/byliss/front.svg",
  33319. extra: 1327/1290,
  33320. bottom: 82/1409
  33321. }
  33322. },
  33323. back: {
  33324. height: math.unit(9 + 6/12, "feet"),
  33325. weight: math.unit(940, "lb"),
  33326. name: "Back",
  33327. image: {
  33328. source: "./media/characters/byliss/back.svg",
  33329. extra: 1376/1349,
  33330. bottom: 9/1385
  33331. }
  33332. },
  33333. frontNsfw: {
  33334. height: math.unit(9 + 6/12, "feet"),
  33335. weight: math.unit(940, "lb"),
  33336. name: "Front (NSFW)",
  33337. image: {
  33338. source: "./media/characters/byliss/front-nsfw.svg",
  33339. extra: 1327/1290,
  33340. bottom: 82/1409
  33341. }
  33342. },
  33343. backNsfw: {
  33344. height: math.unit(9 + 6/12, "feet"),
  33345. weight: math.unit(940, "lb"),
  33346. name: "Back (NSFW)",
  33347. image: {
  33348. source: "./media/characters/byliss/back-nsfw.svg",
  33349. extra: 1376/1349,
  33350. bottom: 9/1385
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Normal",
  33357. height: math.unit(9 + 6/12, "feet"),
  33358. default: true
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33364. {
  33365. front: {
  33366. height: math.unit(5 + 2/12, "feet"),
  33367. weight: math.unit(200, "lb"),
  33368. name: "Front",
  33369. image: {
  33370. source: "./media/characters/noraly/front.svg",
  33371. extra: 4985/4773,
  33372. bottom: 150/5135
  33373. }
  33374. },
  33375. full: {
  33376. height: math.unit(5 + 2/12, "feet"),
  33377. weight: math.unit(164, "lb"),
  33378. name: "Full",
  33379. image: {
  33380. source: "./media/characters/noraly/full.svg",
  33381. extra: 1114/1059,
  33382. bottom: 35/1149
  33383. }
  33384. },
  33385. fuller: {
  33386. height: math.unit(5 + 2/12, "feet"),
  33387. weight: math.unit(230, "lb"),
  33388. name: "Fuller",
  33389. image: {
  33390. source: "./media/characters/noraly/fuller.svg",
  33391. extra: 1114/1059,
  33392. bottom: 35/1149
  33393. }
  33394. },
  33395. fullest: {
  33396. height: math.unit(5 + 2/12, "feet"),
  33397. weight: math.unit(300, "lb"),
  33398. name: "Fullest",
  33399. image: {
  33400. source: "./media/characters/noraly/fullest.svg",
  33401. extra: 1114/1059,
  33402. bottom: 35/1149
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Normal",
  33409. height: math.unit(5 + 2/12, "feet"),
  33410. default: true
  33411. },
  33412. ]
  33413. ))
  33414. characterMakers.push(() => makeCharacter(
  33415. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33416. {
  33417. front: {
  33418. height: math.unit(5 + 2/12, "feet"),
  33419. weight: math.unit(210, "lb"),
  33420. name: "Front",
  33421. image: {
  33422. source: "./media/characters/pera/front.svg",
  33423. extra: 1560/1531,
  33424. bottom: 165/1725
  33425. }
  33426. },
  33427. back: {
  33428. height: math.unit(5 + 2/12, "feet"),
  33429. weight: math.unit(210, "lb"),
  33430. name: "Back",
  33431. image: {
  33432. source: "./media/characters/pera/back.svg",
  33433. extra: 1523/1493,
  33434. bottom: 152/1675
  33435. }
  33436. },
  33437. dick: {
  33438. height: math.unit(2.4, "feet"),
  33439. name: "Dick",
  33440. image: {
  33441. source: "./media/characters/pera/dick.svg"
  33442. }
  33443. },
  33444. },
  33445. [
  33446. {
  33447. name: "Normal",
  33448. height: math.unit(5 + 2/12, "feet"),
  33449. default: true
  33450. },
  33451. ]
  33452. ))
  33453. characterMakers.push(() => makeCharacter(
  33454. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33455. {
  33456. front: {
  33457. height: math.unit(12, "feet"),
  33458. weight: math.unit(3200, "lb"),
  33459. name: "Front",
  33460. image: {
  33461. source: "./media/characters/julian/front.svg",
  33462. extra: 2962/2701,
  33463. bottom: 184/3146
  33464. }
  33465. },
  33466. maw: {
  33467. height: math.unit(5.35, "feet"),
  33468. name: "Maw",
  33469. image: {
  33470. source: "./media/characters/julian/maw.svg"
  33471. }
  33472. },
  33473. paw: {
  33474. height: math.unit(3.07, "feet"),
  33475. name: "Paw",
  33476. image: {
  33477. source: "./media/characters/julian/paw.svg"
  33478. }
  33479. },
  33480. },
  33481. [
  33482. {
  33483. name: "Default",
  33484. height: math.unit(12, "feet"),
  33485. default: true
  33486. },
  33487. {
  33488. name: "Big",
  33489. height: math.unit(50, "feet")
  33490. },
  33491. {
  33492. name: "Really Big",
  33493. height: math.unit(1, "mile")
  33494. },
  33495. {
  33496. name: "Extremely Big",
  33497. height: math.unit(100, "miles")
  33498. },
  33499. {
  33500. name: "Planet Hugger",
  33501. height: math.unit(200, "megameters")
  33502. },
  33503. {
  33504. name: "Unreasonably Big",
  33505. height: math.unit(1e300, "meters")
  33506. },
  33507. ]
  33508. ))
  33509. characterMakers.push(() => makeCharacter(
  33510. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33511. {
  33512. solgooleo: {
  33513. height: math.unit(4, "meters"),
  33514. weight: math.unit(6000*1.5, "kg"),
  33515. volume: math.unit(6000, "liters"),
  33516. name: "Solgooleo",
  33517. image: {
  33518. source: "./media/characters/pi/solgooleo.svg",
  33519. extra: 388/331,
  33520. bottom: 29/417
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Normal",
  33527. height: math.unit(4, "meters"),
  33528. default: true
  33529. },
  33530. ]
  33531. ))
  33532. characterMakers.push(() => makeCharacter(
  33533. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33534. {
  33535. front: {
  33536. height: math.unit(8, "feet"),
  33537. weight: math.unit(4, "tons"),
  33538. name: "Front",
  33539. image: {
  33540. source: "./media/characters/shaun/front.svg",
  33541. extra: 503/495,
  33542. bottom: 20/523
  33543. }
  33544. },
  33545. back: {
  33546. height: math.unit(8, "feet"),
  33547. weight: math.unit(4, "tons"),
  33548. name: "Back",
  33549. image: {
  33550. source: "./media/characters/shaun/back.svg",
  33551. extra: 487/480,
  33552. bottom: 20/507
  33553. }
  33554. },
  33555. },
  33556. [
  33557. {
  33558. name: "Lorg",
  33559. height: math.unit(8, "feet"),
  33560. default: true
  33561. },
  33562. ]
  33563. ))
  33564. characterMakers.push(() => makeCharacter(
  33565. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33566. {
  33567. frontAnthro: {
  33568. height: math.unit(7, "feet"),
  33569. name: "Front",
  33570. image: {
  33571. source: "./media/characters/sini/front-anthro.svg",
  33572. extra: 726/678,
  33573. bottom: 35/761
  33574. },
  33575. form: "anthro",
  33576. default: true
  33577. },
  33578. backAnthro: {
  33579. height: math.unit(7, "feet"),
  33580. name: "Back",
  33581. image: {
  33582. source: "./media/characters/sini/back-anthro.svg",
  33583. extra: 743/701,
  33584. bottom: 12/755
  33585. },
  33586. form: "anthro",
  33587. },
  33588. frontAnthroNsfw: {
  33589. height: math.unit(7, "feet"),
  33590. name: "Front (NSFW)",
  33591. image: {
  33592. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33593. extra: 726/678,
  33594. bottom: 35/761
  33595. },
  33596. form: "anthro"
  33597. },
  33598. backAnthroNsfw: {
  33599. height: math.unit(7, "feet"),
  33600. name: "Back (NSFW)",
  33601. image: {
  33602. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33603. extra: 743/701,
  33604. bottom: 12/755
  33605. },
  33606. form: "anthro",
  33607. },
  33608. mawAnthro: {
  33609. height: math.unit(2.14, "feet"),
  33610. name: "Maw",
  33611. image: {
  33612. source: "./media/characters/sini/maw-anthro.svg"
  33613. },
  33614. form: "anthro"
  33615. },
  33616. dick: {
  33617. height: math.unit(1.45, "feet"),
  33618. name: "Dick",
  33619. image: {
  33620. source: "./media/characters/sini/dick-anthro.svg"
  33621. },
  33622. form: "anthro"
  33623. },
  33624. feral: {
  33625. height: math.unit(16, "feet"),
  33626. name: "Feral",
  33627. image: {
  33628. source: "./media/characters/sini/feral.svg",
  33629. extra: 814/605,
  33630. bottom: 11/825
  33631. },
  33632. form: "feral",
  33633. default: true
  33634. },
  33635. feralNsfw: {
  33636. height: math.unit(16, "feet"),
  33637. name: "Feral (NSFW)",
  33638. image: {
  33639. source: "./media/characters/sini/feral-nsfw.svg",
  33640. extra: 814/605,
  33641. bottom: 11/825
  33642. },
  33643. form: "feral"
  33644. },
  33645. mawFeral: {
  33646. height: math.unit(5.66, "feet"),
  33647. name: "Maw",
  33648. image: {
  33649. source: "./media/characters/sini/maw-feral.svg"
  33650. },
  33651. form: "feral",
  33652. },
  33653. pawFeral: {
  33654. height: math.unit(5.17, "feet"),
  33655. name: "Paw",
  33656. image: {
  33657. source: "./media/characters/sini/paw-feral.svg"
  33658. },
  33659. form: "feral",
  33660. },
  33661. rumpFeral: {
  33662. height: math.unit(13.11, "feet"),
  33663. name: "Rump",
  33664. image: {
  33665. source: "./media/characters/sini/rump-feral.svg"
  33666. },
  33667. form: "feral",
  33668. },
  33669. dickFeral: {
  33670. height: math.unit(1, "feet"),
  33671. name: "Dick",
  33672. image: {
  33673. source: "./media/characters/sini/dick-feral.svg"
  33674. },
  33675. form: "feral",
  33676. },
  33677. eyeFeral: {
  33678. height: math.unit(1.23, "feet"),
  33679. name: "Eye",
  33680. image: {
  33681. source: "./media/characters/sini/eye-feral.svg"
  33682. },
  33683. form: "feral",
  33684. },
  33685. },
  33686. [
  33687. {
  33688. name: "Normal",
  33689. height: math.unit(7, "feet"),
  33690. default: true,
  33691. form: "anthro"
  33692. },
  33693. {
  33694. name: "Normal",
  33695. height: math.unit(16, "feet"),
  33696. default: true,
  33697. form: "feral"
  33698. },
  33699. ],
  33700. {
  33701. "anthro": {
  33702. name: "Anthro",
  33703. default: true
  33704. },
  33705. "feral": {
  33706. name: "Feral",
  33707. }
  33708. }
  33709. ))
  33710. characterMakers.push(() => makeCharacter(
  33711. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33712. {
  33713. side: {
  33714. height: math.unit(13, "meters"),
  33715. weight: math.unit(9072, "kg"),
  33716. name: "Side",
  33717. image: {
  33718. source: "./media/characters/raylldo/side.svg",
  33719. extra: 403/344,
  33720. bottom: 42/445
  33721. }
  33722. },
  33723. leaping: {
  33724. height: math.unit(12.3, "meters"),
  33725. weight: math.unit(9072, "kg"),
  33726. name: "Leaping",
  33727. image: {
  33728. source: "./media/characters/raylldo/leaping.svg",
  33729. extra: 470/249,
  33730. bottom: 13/483
  33731. }
  33732. },
  33733. flying: {
  33734. height: math.unit(18, "meters"),
  33735. weight: math.unit(9072, "kg"),
  33736. name: "Flying",
  33737. image: {
  33738. source: "./media/characters/raylldo/flying.svg"
  33739. }
  33740. },
  33741. head: {
  33742. height: math.unit(5.85, "meters"),
  33743. name: "Head",
  33744. image: {
  33745. source: "./media/characters/raylldo/head.svg"
  33746. }
  33747. },
  33748. maw: {
  33749. height: math.unit(5.32, "meters"),
  33750. name: "Maw",
  33751. image: {
  33752. source: "./media/characters/raylldo/maw.svg"
  33753. }
  33754. },
  33755. eye: {
  33756. height: math.unit(0.54, "meters"),
  33757. name: "Eye",
  33758. image: {
  33759. source: "./media/characters/raylldo/eye.svg"
  33760. }
  33761. },
  33762. },
  33763. [
  33764. {
  33765. name: "Normal",
  33766. height: math.unit(13, "meters"),
  33767. default: true
  33768. },
  33769. ]
  33770. ))
  33771. characterMakers.push(() => makeCharacter(
  33772. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33773. {
  33774. anthroFront: {
  33775. height: math.unit(9, "feet"),
  33776. weight: math.unit(600, "lb"),
  33777. name: "Anthro (Front)",
  33778. image: {
  33779. source: "./media/characters/glint/anthro-front.svg",
  33780. extra: 1097/1018,
  33781. bottom: 28/1125
  33782. }
  33783. },
  33784. anthroBack: {
  33785. height: math.unit(9, "feet"),
  33786. weight: math.unit(600, "lb"),
  33787. name: "Anthro (Back)",
  33788. image: {
  33789. source: "./media/characters/glint/anthro-back.svg",
  33790. extra: 1154/997,
  33791. bottom: 36/1190
  33792. }
  33793. },
  33794. feral: {
  33795. height: math.unit(11, "feet"),
  33796. weight: math.unit(50000, "lb"),
  33797. name: "Feral",
  33798. image: {
  33799. source: "./media/characters/glint/feral.svg",
  33800. extra: 3035/1585,
  33801. bottom: 1169/4204
  33802. }
  33803. },
  33804. dickAnthro: {
  33805. height: math.unit(0.7, "meters"),
  33806. name: "Dick (Anthro)",
  33807. image: {
  33808. source: "./media/characters/glint/dick-anthro.svg"
  33809. }
  33810. },
  33811. dickFeral: {
  33812. height: math.unit(2.65, "meters"),
  33813. name: "Dick (Feral)",
  33814. image: {
  33815. source: "./media/characters/glint/dick-feral.svg"
  33816. }
  33817. },
  33818. slitHidden: {
  33819. height: math.unit(5.85, "meters"),
  33820. name: "Slit (Hidden)",
  33821. image: {
  33822. source: "./media/characters/glint/slit-hidden.svg"
  33823. }
  33824. },
  33825. slitErect: {
  33826. height: math.unit(5.85, "meters"),
  33827. name: "Slit (Erect)",
  33828. image: {
  33829. source: "./media/characters/glint/slit-erect.svg"
  33830. }
  33831. },
  33832. mawAnthro: {
  33833. height: math.unit(0.63, "meters"),
  33834. name: "Maw (Anthro)",
  33835. image: {
  33836. source: "./media/characters/glint/maw.svg"
  33837. }
  33838. },
  33839. mawFeral: {
  33840. height: math.unit(2.89, "meters"),
  33841. name: "Maw (Feral)",
  33842. image: {
  33843. source: "./media/characters/glint/maw.svg"
  33844. }
  33845. },
  33846. },
  33847. [
  33848. {
  33849. name: "Normal",
  33850. height: math.unit(9, "feet"),
  33851. default: true
  33852. },
  33853. ]
  33854. ))
  33855. characterMakers.push(() => makeCharacter(
  33856. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33857. {
  33858. side: {
  33859. height: math.unit(15, "feet"),
  33860. weight: math.unit(5000, "kg"),
  33861. name: "Side",
  33862. image: {
  33863. source: "./media/characters/kairne/side.svg",
  33864. extra: 979/811,
  33865. bottom: 13/992
  33866. }
  33867. },
  33868. front: {
  33869. height: math.unit(15, "feet"),
  33870. weight: math.unit(5000, "kg"),
  33871. name: "Front",
  33872. image: {
  33873. source: "./media/characters/kairne/front.svg",
  33874. extra: 908/814,
  33875. bottom: 26/934
  33876. }
  33877. },
  33878. sideNsfw: {
  33879. height: math.unit(15, "feet"),
  33880. weight: math.unit(5000, "kg"),
  33881. name: "Side (NSFW)",
  33882. image: {
  33883. source: "./media/characters/kairne/side-nsfw.svg",
  33884. extra: 979/811,
  33885. bottom: 13/992
  33886. }
  33887. },
  33888. frontNsfw: {
  33889. height: math.unit(15, "feet"),
  33890. weight: math.unit(5000, "kg"),
  33891. name: "Front (NSFW)",
  33892. image: {
  33893. source: "./media/characters/kairne/front-nsfw.svg",
  33894. extra: 908/814,
  33895. bottom: 26/934
  33896. }
  33897. },
  33898. dickCaged: {
  33899. height: math.unit(0.65, "meters"),
  33900. name: "Dick-caged",
  33901. image: {
  33902. source: "./media/characters/kairne/dick-caged.svg"
  33903. }
  33904. },
  33905. dick: {
  33906. height: math.unit(0.79, "meters"),
  33907. name: "Dick",
  33908. image: {
  33909. source: "./media/characters/kairne/dick.svg"
  33910. }
  33911. },
  33912. genitals: {
  33913. height: math.unit(1.29, "meters"),
  33914. name: "Genitals",
  33915. image: {
  33916. source: "./media/characters/kairne/genitals.svg"
  33917. }
  33918. },
  33919. maw: {
  33920. height: math.unit(1.73, "meters"),
  33921. name: "Maw",
  33922. image: {
  33923. source: "./media/characters/kairne/maw.svg"
  33924. }
  33925. },
  33926. },
  33927. [
  33928. {
  33929. name: "Normal",
  33930. height: math.unit(15, "feet"),
  33931. default: true
  33932. },
  33933. ]
  33934. ))
  33935. characterMakers.push(() => makeCharacter(
  33936. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33937. {
  33938. front: {
  33939. height: math.unit(5 + 8/12, "feet"),
  33940. weight: math.unit(139, "lb"),
  33941. name: "Front",
  33942. image: {
  33943. source: "./media/characters/biscuit-jackal/front.svg",
  33944. extra: 2106/1961,
  33945. bottom: 58/2164
  33946. }
  33947. },
  33948. back: {
  33949. height: math.unit(5 + 8/12, "feet"),
  33950. weight: math.unit(139, "lb"),
  33951. name: "Back",
  33952. image: {
  33953. source: "./media/characters/biscuit-jackal/back.svg",
  33954. extra: 2132/1976,
  33955. bottom: 57/2189
  33956. }
  33957. },
  33958. werejackal: {
  33959. height: math.unit(6 + 3/12, "feet"),
  33960. weight: math.unit(188, "lb"),
  33961. name: "Werejackal",
  33962. image: {
  33963. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33964. extra: 2373/2178,
  33965. bottom: 53/2426
  33966. }
  33967. },
  33968. },
  33969. [
  33970. {
  33971. name: "Normal",
  33972. height: math.unit(5 + 8/12, "feet"),
  33973. default: true
  33974. },
  33975. ]
  33976. ))
  33977. characterMakers.push(() => makeCharacter(
  33978. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33979. {
  33980. front: {
  33981. height: math.unit(140, "cm"),
  33982. weight: math.unit(45, "kg"),
  33983. name: "Front",
  33984. image: {
  33985. source: "./media/characters/tayra-white/front.svg",
  33986. extra: 2229/2192,
  33987. bottom: 75/2304
  33988. }
  33989. },
  33990. },
  33991. [
  33992. {
  33993. name: "Normal",
  33994. height: math.unit(140, "cm"),
  33995. default: true
  33996. },
  33997. ]
  33998. ))
  33999. characterMakers.push(() => makeCharacter(
  34000. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34001. {
  34002. front: {
  34003. height: math.unit(4 + 5/12, "feet"),
  34004. name: "Front",
  34005. image: {
  34006. source: "./media/characters/scoop/front.svg",
  34007. extra: 1257/1136,
  34008. bottom: 69/1326
  34009. }
  34010. },
  34011. back: {
  34012. height: math.unit(4 + 5/12, "feet"),
  34013. name: "Back",
  34014. image: {
  34015. source: "./media/characters/scoop/back.svg",
  34016. extra: 1321/1152,
  34017. bottom: 32/1353
  34018. }
  34019. },
  34020. maw: {
  34021. height: math.unit(0.68, "feet"),
  34022. name: "Maw",
  34023. image: {
  34024. source: "./media/characters/scoop/maw.svg"
  34025. }
  34026. },
  34027. },
  34028. [
  34029. {
  34030. name: "Really Small",
  34031. height: math.unit(1, "mm")
  34032. },
  34033. {
  34034. name: "Micro",
  34035. height: math.unit(1, "inch")
  34036. },
  34037. {
  34038. name: "Normal",
  34039. height: math.unit(4 + 5/12, "feet"),
  34040. default: true
  34041. },
  34042. {
  34043. name: "Macro",
  34044. height: math.unit(200, "feet")
  34045. },
  34046. {
  34047. name: "Megamacro",
  34048. height: math.unit(3240, "feet")
  34049. },
  34050. {
  34051. name: "Teramacro",
  34052. height: math.unit(2500, "miles")
  34053. },
  34054. ]
  34055. ))
  34056. characterMakers.push(() => makeCharacter(
  34057. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34058. {
  34059. front: {
  34060. height: math.unit(15 + 7/12, "feet"),
  34061. weight: math.unit(1150, "tons"),
  34062. name: "Front",
  34063. image: {
  34064. source: "./media/characters/saphinara/front.svg",
  34065. extra: 1837/1643,
  34066. bottom: 84/1921
  34067. },
  34068. form: "normal",
  34069. default: true
  34070. },
  34071. side: {
  34072. height: math.unit(15 + 7/12, "feet"),
  34073. weight: math.unit(1150, "tons"),
  34074. name: "Side",
  34075. image: {
  34076. source: "./media/characters/saphinara/side.svg",
  34077. extra: 605/547,
  34078. bottom: 6/611
  34079. },
  34080. form: "normal"
  34081. },
  34082. back: {
  34083. height: math.unit(15 + 7/12, "feet"),
  34084. weight: math.unit(1150, "tons"),
  34085. name: "Back",
  34086. image: {
  34087. source: "./media/characters/saphinara/back.svg",
  34088. extra: 591/531,
  34089. bottom: 13/604
  34090. },
  34091. form: "normal"
  34092. },
  34093. frontTail: {
  34094. height: math.unit(15 + 7/12, "feet"),
  34095. weight: math.unit(1150, "tons"),
  34096. name: "Front (Full Tail)",
  34097. image: {
  34098. source: "./media/characters/saphinara/front-tail.svg",
  34099. extra: 2256/1630,
  34100. bottom: 261/2517
  34101. },
  34102. form: "normal"
  34103. },
  34104. insides: {
  34105. height: math.unit(11.92, "feet"),
  34106. name: "Insides",
  34107. image: {
  34108. source: "./media/characters/saphinara/insides.svg"
  34109. },
  34110. form: "normal"
  34111. },
  34112. head: {
  34113. height: math.unit(4.17, "feet"),
  34114. name: "Head",
  34115. image: {
  34116. source: "./media/characters/saphinara/head.svg"
  34117. },
  34118. form: "normal"
  34119. },
  34120. tongue: {
  34121. height: math.unit(4.60, "feet"),
  34122. name: "Tongue",
  34123. image: {
  34124. source: "./media/characters/saphinara/tongue.svg"
  34125. },
  34126. form: "normal"
  34127. },
  34128. headEnraged: {
  34129. height: math.unit(5.55, "feet"),
  34130. name: "Head (Enraged)",
  34131. image: {
  34132. source: "./media/characters/saphinara/head-enraged.svg"
  34133. },
  34134. form: "normal"
  34135. },
  34136. wings: {
  34137. height: math.unit(11.95, "feet"),
  34138. name: "Wings",
  34139. image: {
  34140. source: "./media/characters/saphinara/wings.svg"
  34141. },
  34142. form: "normal"
  34143. },
  34144. feathers: {
  34145. height: math.unit(8.92, "feet"),
  34146. name: "Feathers",
  34147. image: {
  34148. source: "./media/characters/saphinara/feathers.svg"
  34149. },
  34150. form: "normal"
  34151. },
  34152. shackles: {
  34153. height: math.unit(2, "feet"),
  34154. name: "Shackles",
  34155. image: {
  34156. source: "./media/characters/saphinara/shackles.svg"
  34157. },
  34158. form: "normal"
  34159. },
  34160. eyes: {
  34161. height: math.unit(1.331, "feet"),
  34162. name: "Eyes",
  34163. image: {
  34164. source: "./media/characters/saphinara/eyes.svg"
  34165. },
  34166. form: "normal"
  34167. },
  34168. eyesEnraged: {
  34169. height: math.unit(1.331, "feet"),
  34170. name: "Eyes (Enraged)",
  34171. image: {
  34172. source: "./media/characters/saphinara/eyes-enraged.svg"
  34173. },
  34174. form: "normal"
  34175. },
  34176. trueFormSide: {
  34177. height: math.unit(200, "feet"),
  34178. weight: math.unit(1e7, "tons"),
  34179. name: "Side",
  34180. image: {
  34181. source: "./media/characters/saphinara/true-form-side.svg",
  34182. extra: 1399/770,
  34183. bottom: 97/1496
  34184. },
  34185. form: "true-form",
  34186. default: true
  34187. },
  34188. trueFormMaw: {
  34189. height: math.unit(71.5, "feet"),
  34190. name: "Maw",
  34191. image: {
  34192. source: "./media/characters/saphinara/true-form-maw.svg",
  34193. extra: 2302/1453,
  34194. bottom: 0/2302
  34195. },
  34196. form: "true-form"
  34197. },
  34198. },
  34199. [
  34200. {
  34201. name: "Normal",
  34202. height: math.unit(15 + 7/12, "feet"),
  34203. default: true,
  34204. form: "normal"
  34205. },
  34206. {
  34207. name: "Angry",
  34208. height: math.unit(30 + 6/12, "feet"),
  34209. form: "normal"
  34210. },
  34211. {
  34212. name: "Enraged",
  34213. height: math.unit(102 + 1/12, "feet"),
  34214. form: "normal"
  34215. },
  34216. {
  34217. name: "True",
  34218. height: math.unit(200, "feet"),
  34219. default: true,
  34220. form: "true-form"
  34221. }
  34222. ],
  34223. {
  34224. "normal": {
  34225. name: "Normal",
  34226. default: true
  34227. },
  34228. "true-form": {
  34229. name: "True Form"
  34230. }
  34231. }
  34232. ))
  34233. characterMakers.push(() => makeCharacter(
  34234. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34235. {
  34236. front: {
  34237. height: math.unit(6 + 8/12, "feet"),
  34238. weight: math.unit(300, "lb"),
  34239. name: "Front",
  34240. image: {
  34241. source: "./media/characters/jrain/front.svg",
  34242. extra: 3039/2865,
  34243. bottom: 399/3438
  34244. }
  34245. },
  34246. back: {
  34247. height: math.unit(6 + 8/12, "feet"),
  34248. weight: math.unit(300, "lb"),
  34249. name: "Back",
  34250. image: {
  34251. source: "./media/characters/jrain/back.svg",
  34252. extra: 3089/2938,
  34253. bottom: 172/3261
  34254. }
  34255. },
  34256. head: {
  34257. height: math.unit(2.14, "feet"),
  34258. name: "Head",
  34259. image: {
  34260. source: "./media/characters/jrain/head.svg"
  34261. }
  34262. },
  34263. maw: {
  34264. height: math.unit(1.77, "feet"),
  34265. name: "Maw",
  34266. image: {
  34267. source: "./media/characters/jrain/maw.svg"
  34268. }
  34269. },
  34270. leftHand: {
  34271. height: math.unit(1.1, "feet"),
  34272. name: "Left Hand",
  34273. image: {
  34274. source: "./media/characters/jrain/left-hand.svg"
  34275. }
  34276. },
  34277. rightHand: {
  34278. height: math.unit(1.1, "feet"),
  34279. name: "Right Hand",
  34280. image: {
  34281. source: "./media/characters/jrain/right-hand.svg"
  34282. }
  34283. },
  34284. eye: {
  34285. height: math.unit(0.35, "feet"),
  34286. name: "Eye",
  34287. image: {
  34288. source: "./media/characters/jrain/eye.svg"
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Normal",
  34295. height: math.unit(6 + 8/12, "feet"),
  34296. default: true
  34297. },
  34298. {
  34299. name: "Casually Large",
  34300. height: math.unit(25, "feet")
  34301. },
  34302. {
  34303. name: "Giant",
  34304. height: math.unit(100, "feet")
  34305. },
  34306. {
  34307. name: "Kaiju",
  34308. height: math.unit(300, "feet")
  34309. },
  34310. ]
  34311. ))
  34312. characterMakers.push(() => makeCharacter(
  34313. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34314. {
  34315. dragon: {
  34316. height: math.unit(5, "meters"),
  34317. name: "Dragon",
  34318. image: {
  34319. source: "./media/characters/sabrina/dragon.svg",
  34320. extra: 3670 / 2365,
  34321. bottom: 333 / 4003
  34322. }
  34323. },
  34324. gryphon: {
  34325. height: math.unit(3, "meters"),
  34326. name: "Gryphon",
  34327. image: {
  34328. source: "./media/characters/sabrina/gryphon.svg",
  34329. extra: 1576 / 945,
  34330. bottom: 71 / 1647
  34331. }
  34332. },
  34333. snake: {
  34334. height: math.unit(12, "meters"),
  34335. name: "Snake",
  34336. image: {
  34337. source: "./media/characters/sabrina/snake.svg",
  34338. extra: 1758 / 1320,
  34339. bottom: 186 / 1944
  34340. }
  34341. },
  34342. collar: {
  34343. height: math.unit(1.86, "meters"),
  34344. name: "Collar",
  34345. image: {
  34346. source: "./media/characters/sabrina/collar.svg"
  34347. }
  34348. },
  34349. eye: {
  34350. height: math.unit(0.53, "meters"),
  34351. name: "Eye",
  34352. image: {
  34353. source: "./media/characters/sabrina/eye.svg"
  34354. }
  34355. },
  34356. foot: {
  34357. height: math.unit(1.86, "meters"),
  34358. name: "Foot",
  34359. image: {
  34360. source: "./media/characters/sabrina/foot.svg"
  34361. }
  34362. },
  34363. hand: {
  34364. height: math.unit(1.32, "meters"),
  34365. name: "Hand",
  34366. image: {
  34367. source: "./media/characters/sabrina/hand.svg"
  34368. }
  34369. },
  34370. head: {
  34371. height: math.unit(2.44, "meters"),
  34372. name: "Head",
  34373. image: {
  34374. source: "./media/characters/sabrina/head.svg"
  34375. }
  34376. },
  34377. headAngry: {
  34378. height: math.unit(2.44, "meters"),
  34379. name: "Head (Angry))",
  34380. image: {
  34381. source: "./media/characters/sabrina/head-angry.svg"
  34382. }
  34383. },
  34384. maw: {
  34385. height: math.unit(1.65, "meters"),
  34386. name: "Maw",
  34387. image: {
  34388. source: "./media/characters/sabrina/maw.svg"
  34389. }
  34390. },
  34391. spikes: {
  34392. height: math.unit(1.69, "meters"),
  34393. name: "Spikes",
  34394. image: {
  34395. source: "./media/characters/sabrina/spikes.svg"
  34396. }
  34397. },
  34398. stomach: {
  34399. height: math.unit(1.15, "meters"),
  34400. name: "Stomach",
  34401. image: {
  34402. source: "./media/characters/sabrina/stomach.svg"
  34403. }
  34404. },
  34405. tongue: {
  34406. height: math.unit(1.27, "meters"),
  34407. name: "Tongue",
  34408. image: {
  34409. source: "./media/characters/sabrina/tongue.svg"
  34410. }
  34411. },
  34412. wingDorsal: {
  34413. height: math.unit(4.85, "meters"),
  34414. name: "Wing (Dorsal)",
  34415. image: {
  34416. source: "./media/characters/sabrina/wing-dorsal.svg"
  34417. }
  34418. },
  34419. wingVentral: {
  34420. height: math.unit(4.85, "meters"),
  34421. name: "Wing (Ventral)",
  34422. image: {
  34423. source: "./media/characters/sabrina/wing-ventral.svg"
  34424. }
  34425. },
  34426. },
  34427. [
  34428. {
  34429. name: "Normal",
  34430. height: math.unit(5, "meters"),
  34431. default: true
  34432. },
  34433. ]
  34434. ))
  34435. characterMakers.push(() => makeCharacter(
  34436. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34437. {
  34438. frontMaid: {
  34439. height: math.unit(5 + 5/12, "feet"),
  34440. weight: math.unit(130, "lb"),
  34441. name: "Front (Maid)",
  34442. image: {
  34443. source: "./media/characters/midnight-tales/front-maid.svg",
  34444. extra: 489/454,
  34445. bottom: 61/550
  34446. }
  34447. },
  34448. frontFormal: {
  34449. height: math.unit(5 + 5/12, "feet"),
  34450. weight: math.unit(130, "lb"),
  34451. name: "Front (Formal)",
  34452. image: {
  34453. source: "./media/characters/midnight-tales/front-formal.svg",
  34454. extra: 489/454,
  34455. bottom: 61/550
  34456. }
  34457. },
  34458. back: {
  34459. height: math.unit(5 + 5/12, "feet"),
  34460. weight: math.unit(130, "lb"),
  34461. name: "Back",
  34462. image: {
  34463. source: "./media/characters/midnight-tales/back.svg",
  34464. extra: 498/456,
  34465. bottom: 33/531
  34466. }
  34467. },
  34468. frontBeast: {
  34469. height: math.unit(40, "feet"),
  34470. weight: math.unit(64000, "lb"),
  34471. name: "Front (Beast)",
  34472. image: {
  34473. source: "./media/characters/midnight-tales/front-beast.svg",
  34474. extra: 927/860,
  34475. bottom: 53/980
  34476. }
  34477. },
  34478. backBeast: {
  34479. height: math.unit(40, "feet"),
  34480. weight: math.unit(64000, "lb"),
  34481. name: "Back (Beast)",
  34482. image: {
  34483. source: "./media/characters/midnight-tales/back-beast.svg",
  34484. extra: 929/855,
  34485. bottom: 16/945
  34486. }
  34487. },
  34488. footBeast: {
  34489. height: math.unit(6.7, "feet"),
  34490. name: "Foot (Beast)",
  34491. image: {
  34492. source: "./media/characters/midnight-tales/foot-beast.svg"
  34493. }
  34494. },
  34495. headBeast: {
  34496. height: math.unit(8, "feet"),
  34497. name: "Head (Beast)",
  34498. image: {
  34499. source: "./media/characters/midnight-tales/head-beast.svg"
  34500. }
  34501. },
  34502. },
  34503. [
  34504. {
  34505. name: "Normal",
  34506. height: math.unit(5 + 5 / 12, "feet"),
  34507. default: true
  34508. },
  34509. {
  34510. name: "Macro",
  34511. height: math.unit(25, "feet")
  34512. },
  34513. ]
  34514. ))
  34515. characterMakers.push(() => makeCharacter(
  34516. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34517. {
  34518. front: {
  34519. height: math.unit(5 + 10/12, "feet"),
  34520. name: "Front",
  34521. image: {
  34522. source: "./media/characters/argon/front.svg",
  34523. extra: 2009/1935,
  34524. bottom: 118/2127
  34525. }
  34526. },
  34527. back: {
  34528. height: math.unit(5 + 10/12, "feet"),
  34529. name: "Back",
  34530. image: {
  34531. source: "./media/characters/argon/back.svg",
  34532. extra: 2047/1992,
  34533. bottom: 20/2067
  34534. }
  34535. },
  34536. frontDressed: {
  34537. height: math.unit(5 + 10/12, "feet"),
  34538. name: "Front (Dressed)",
  34539. image: {
  34540. source: "./media/characters/argon/front-dressed.svg",
  34541. extra: 2009/1935,
  34542. bottom: 118/2127
  34543. }
  34544. },
  34545. },
  34546. [
  34547. {
  34548. name: "Normal",
  34549. height: math.unit(5 + 10/12, "feet"),
  34550. default: true
  34551. },
  34552. ]
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34556. {
  34557. front: {
  34558. height: math.unit(8 + 6/12, "feet"),
  34559. weight: math.unit(1150, "lb"),
  34560. name: "Front",
  34561. image: {
  34562. source: "./media/characters/kichi/front.svg",
  34563. extra: 1267/1164,
  34564. bottom: 61/1328
  34565. }
  34566. },
  34567. back: {
  34568. height: math.unit(8 + 6/12, "feet"),
  34569. weight: math.unit(1150, "lb"),
  34570. name: "Back",
  34571. image: {
  34572. source: "./media/characters/kichi/back.svg",
  34573. extra: 1273/1166,
  34574. bottom: 33/1306
  34575. }
  34576. },
  34577. },
  34578. [
  34579. {
  34580. name: "Normal",
  34581. height: math.unit(8 + 6/12, "feet"),
  34582. default: true
  34583. },
  34584. ]
  34585. ))
  34586. characterMakers.push(() => makeCharacter(
  34587. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34588. {
  34589. front: {
  34590. height: math.unit(6, "feet"),
  34591. weight: math.unit(210, "lb"),
  34592. name: "Front",
  34593. image: {
  34594. source: "./media/characters/manetel-greyscale/front.svg",
  34595. extra: 350/312,
  34596. bottom: 8/358
  34597. }
  34598. },
  34599. },
  34600. [
  34601. {
  34602. name: "Micro",
  34603. height: math.unit(2, "inches")
  34604. },
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(6, "feet"),
  34608. default: true
  34609. },
  34610. {
  34611. name: "Minimacro",
  34612. height: math.unit(17, "feet")
  34613. },
  34614. {
  34615. name: "Macro",
  34616. height: math.unit(117, "feet")
  34617. },
  34618. ]
  34619. ))
  34620. characterMakers.push(() => makeCharacter(
  34621. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34622. {
  34623. side: {
  34624. height: math.unit(5 + 1/12, "feet"),
  34625. weight: math.unit(418, "lb"),
  34626. name: "Side",
  34627. image: {
  34628. source: "./media/characters/softpurr/side.svg",
  34629. extra: 1993/1945,
  34630. bottom: 134/2127
  34631. }
  34632. },
  34633. front: {
  34634. height: math.unit(5 + 1/12, "feet"),
  34635. weight: math.unit(418, "lb"),
  34636. name: "Front",
  34637. image: {
  34638. source: "./media/characters/softpurr/front.svg",
  34639. extra: 1950/1856,
  34640. bottom: 174/2124
  34641. }
  34642. },
  34643. paw: {
  34644. height: math.unit(1, "feet"),
  34645. name: "Paw",
  34646. image: {
  34647. source: "./media/characters/softpurr/paw.svg"
  34648. }
  34649. },
  34650. },
  34651. [
  34652. {
  34653. name: "Normal",
  34654. height: math.unit(5 + 1/12, "feet"),
  34655. default: true
  34656. },
  34657. ]
  34658. ))
  34659. characterMakers.push(() => makeCharacter(
  34660. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34661. {
  34662. front: {
  34663. height: math.unit(260, "meters"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/anahita/front.svg",
  34667. extra: 665/635,
  34668. bottom: 89/754
  34669. }
  34670. },
  34671. },
  34672. [
  34673. {
  34674. name: "Macro",
  34675. height: math.unit(260, "meters"),
  34676. default: true
  34677. },
  34678. ]
  34679. ))
  34680. characterMakers.push(() => makeCharacter(
  34681. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34682. {
  34683. front: {
  34684. height: math.unit(4 + 10/12, "feet"),
  34685. weight: math.unit(160, "lb"),
  34686. name: "Front",
  34687. image: {
  34688. source: "./media/characters/chip-mouse/front.svg",
  34689. extra: 3528/3408,
  34690. bottom: 0/3528
  34691. }
  34692. },
  34693. frontNsfw: {
  34694. height: math.unit(4 + 10/12, "feet"),
  34695. weight: math.unit(160, "lb"),
  34696. name: "Front (NSFW)",
  34697. image: {
  34698. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34699. extra: 3528/3408,
  34700. bottom: 0/3528
  34701. }
  34702. },
  34703. },
  34704. [
  34705. {
  34706. name: "Normal",
  34707. height: math.unit(4 + 10/12, "feet"),
  34708. default: true
  34709. },
  34710. ]
  34711. ))
  34712. characterMakers.push(() => makeCharacter(
  34713. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34714. {
  34715. side: {
  34716. height: math.unit(10, "feet"),
  34717. weight: math.unit(14000, "lb"),
  34718. name: "Side",
  34719. image: {
  34720. source: "./media/characters/kremm/side.svg",
  34721. extra: 1390/1053,
  34722. bottom: 90/1480
  34723. }
  34724. },
  34725. gut: {
  34726. height: math.unit(5.8, "feet"),
  34727. name: "Gut",
  34728. image: {
  34729. source: "./media/characters/kremm/gut.svg"
  34730. }
  34731. },
  34732. ass: {
  34733. height: math.unit(6.1, "feet"),
  34734. name: "Ass",
  34735. image: {
  34736. source: "./media/characters/kremm/ass.svg"
  34737. }
  34738. },
  34739. jaws: {
  34740. height: math.unit(2.2, "feet"),
  34741. name: "Jaws",
  34742. image: {
  34743. source: "./media/characters/kremm/jaws.svg"
  34744. }
  34745. },
  34746. dick: {
  34747. height: math.unit(4.26, "feet"),
  34748. name: "Dick",
  34749. image: {
  34750. source: "./media/characters/kremm/dick.svg"
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Normal",
  34757. height: math.unit(10, "feet"),
  34758. default: true
  34759. },
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34764. {
  34765. front: {
  34766. height: math.unit(30, "stories"),
  34767. name: "Front",
  34768. image: {
  34769. source: "./media/characters/kai/front.svg",
  34770. extra: 1892/1718,
  34771. bottom: 162/2054
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Macro",
  34778. height: math.unit(30, "stories"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(6 + 4/12, "feet"),
  34788. weight: math.unit(145, "lb"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/sykes/front.svg",
  34792. extra: 1321 / 1187,
  34793. bottom: 66 / 1387
  34794. }
  34795. },
  34796. back: {
  34797. height: math.unit(6 + 4/12, "feet"),
  34798. weight: math.unit(145, "lb"),
  34799. name: "Back",
  34800. image: {
  34801. source: "./media/characters/sykes/back.svg",
  34802. extra: 1326/1181,
  34803. bottom: 31/1357
  34804. }
  34805. },
  34806. traditionalOutfit: {
  34807. height: math.unit(6 + 4/12, "feet"),
  34808. weight: math.unit(145, "lb"),
  34809. name: "Traditional Outfit",
  34810. image: {
  34811. source: "./media/characters/sykes/traditional-outfit.svg",
  34812. extra: 1321 / 1187,
  34813. bottom: 66 / 1387
  34814. }
  34815. },
  34816. adventureOutfit: {
  34817. height: math.unit(6 + 4/12, "feet"),
  34818. weight: math.unit(145, "lb"),
  34819. name: "Adventure Outfit",
  34820. image: {
  34821. source: "./media/characters/sykes/adventure-outfit.svg",
  34822. extra: 1321 / 1187,
  34823. bottom: 66 / 1387
  34824. }
  34825. },
  34826. handLeft: {
  34827. height: math.unit(0.9, "feet"),
  34828. name: "Hand (Left)",
  34829. image: {
  34830. source: "./media/characters/sykes/hand-left.svg"
  34831. }
  34832. },
  34833. handRight: {
  34834. height: math.unit(0.839, "feet"),
  34835. name: "Hand (Right)",
  34836. image: {
  34837. source: "./media/characters/sykes/hand-right.svg"
  34838. }
  34839. },
  34840. leftFoot: {
  34841. height: math.unit(1.2, "feet"),
  34842. name: "Foot (Left)",
  34843. image: {
  34844. source: "./media/characters/sykes/foot-left.svg"
  34845. }
  34846. },
  34847. rightFoot: {
  34848. height: math.unit(1.2, "feet"),
  34849. name: "Foot (Right)",
  34850. image: {
  34851. source: "./media/characters/sykes/foot-right.svg"
  34852. }
  34853. },
  34854. maw: {
  34855. height: math.unit(1.93, "feet"),
  34856. name: "Maw",
  34857. image: {
  34858. source: "./media/characters/sykes/maw.svg"
  34859. }
  34860. },
  34861. teeth: {
  34862. height: math.unit(0.51, "feet"),
  34863. name: "Teeth",
  34864. image: {
  34865. source: "./media/characters/sykes/teeth.svg"
  34866. }
  34867. },
  34868. tongue: {
  34869. height: math.unit(2.13, "feet"),
  34870. name: "Tongue",
  34871. image: {
  34872. source: "./media/characters/sykes/tongue.svg"
  34873. }
  34874. },
  34875. uvula: {
  34876. height: math.unit(0.16, "feet"),
  34877. name: "Uvula",
  34878. image: {
  34879. source: "./media/characters/sykes/uvula.svg"
  34880. }
  34881. },
  34882. collar: {
  34883. height: math.unit(0.287, "feet"),
  34884. name: "Collar",
  34885. image: {
  34886. source: "./media/characters/sykes/collar.svg"
  34887. }
  34888. },
  34889. tail: {
  34890. height: math.unit(3.8, "feet"),
  34891. name: "Tail",
  34892. image: {
  34893. source: "./media/characters/sykes/tail.svg"
  34894. }
  34895. },
  34896. },
  34897. [
  34898. {
  34899. name: "Shrunken",
  34900. height: math.unit(5, "inches")
  34901. },
  34902. {
  34903. name: "Normal",
  34904. height: math.unit(6 + 4 / 12, "feet"),
  34905. default: true
  34906. },
  34907. {
  34908. name: "Big",
  34909. height: math.unit(15, "feet")
  34910. },
  34911. ]
  34912. ))
  34913. characterMakers.push(() => makeCharacter(
  34914. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34915. {
  34916. front: {
  34917. height: math.unit(5 + 8/12, "feet"),
  34918. weight: math.unit(190, "lb"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/oven-otter/front.svg",
  34922. extra: 1809/1740,
  34923. bottom: 181/1990
  34924. }
  34925. },
  34926. back: {
  34927. height: math.unit(5 + 8/12, "feet"),
  34928. weight: math.unit(190, "lb"),
  34929. name: "Back",
  34930. image: {
  34931. source: "./media/characters/oven-otter/back.svg",
  34932. extra: 1709/1635,
  34933. bottom: 118/1827
  34934. }
  34935. },
  34936. hand: {
  34937. height: math.unit(1.07, "feet"),
  34938. name: "Hand",
  34939. image: {
  34940. source: "./media/characters/oven-otter/hand.svg"
  34941. }
  34942. },
  34943. beans: {
  34944. height: math.unit(1.74, "feet"),
  34945. name: "Beans",
  34946. image: {
  34947. source: "./media/characters/oven-otter/beans.svg"
  34948. }
  34949. },
  34950. },
  34951. [
  34952. {
  34953. name: "Micro",
  34954. height: math.unit(0.5, "inches")
  34955. },
  34956. {
  34957. name: "Normal",
  34958. height: math.unit(5 + 8/12, "feet"),
  34959. default: true
  34960. },
  34961. {
  34962. name: "Macro",
  34963. height: math.unit(250, "feet")
  34964. },
  34965. {
  34966. name: "Really High",
  34967. height: math.unit(420, "feet")
  34968. },
  34969. ]
  34970. ))
  34971. characterMakers.push(() => makeCharacter(
  34972. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34973. {
  34974. front: {
  34975. height: math.unit(5, "meters"),
  34976. weight: math.unit(292000000000000, "kg"),
  34977. name: "Front",
  34978. image: {
  34979. source: "./media/characters/devourer/front.svg",
  34980. extra: 1800/1733,
  34981. bottom: 211/2011
  34982. }
  34983. },
  34984. maw: {
  34985. height: math.unit(1.1, "meter"),
  34986. name: "Maw",
  34987. image: {
  34988. source: "./media/characters/devourer/maw.svg"
  34989. }
  34990. },
  34991. },
  34992. [
  34993. {
  34994. name: "Small",
  34995. height: math.unit(3, "meters")
  34996. },
  34997. {
  34998. name: "Large",
  34999. height: math.unit(5, "meters"),
  35000. default: true
  35001. },
  35002. ]
  35003. ))
  35004. characterMakers.push(() => makeCharacter(
  35005. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35006. {
  35007. front: {
  35008. height: math.unit(6, "feet"),
  35009. weight: math.unit(400, "lb"),
  35010. name: "Front",
  35011. image: {
  35012. source: "./media/characters/ellarby/front.svg",
  35013. extra: 1909/1763,
  35014. bottom: 80/1989
  35015. }
  35016. },
  35017. back: {
  35018. height: math.unit(6, "feet"),
  35019. weight: math.unit(400, "lb"),
  35020. name: "Back",
  35021. image: {
  35022. source: "./media/characters/ellarby/back.svg",
  35023. extra: 1914/1784,
  35024. bottom: 172/2086
  35025. }
  35026. },
  35027. },
  35028. [
  35029. {
  35030. name: "Mischief",
  35031. height: math.unit(18, "inches")
  35032. },
  35033. {
  35034. name: "Trouble",
  35035. height: math.unit(12, "feet")
  35036. },
  35037. {
  35038. name: "Havoc",
  35039. height: math.unit(200, "feet"),
  35040. default: true
  35041. },
  35042. {
  35043. name: "Pandemonium",
  35044. height: math.unit(1, "mile")
  35045. },
  35046. {
  35047. name: "Catastrophe",
  35048. height: math.unit(100, "miles")
  35049. },
  35050. ]
  35051. ))
  35052. characterMakers.push(() => makeCharacter(
  35053. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35054. {
  35055. front: {
  35056. height: math.unit(4.7, "meters"),
  35057. weight: math.unit(6500, "kg"),
  35058. name: "Front",
  35059. image: {
  35060. source: "./media/characters/vex/front.svg",
  35061. extra: 1288/1140,
  35062. bottom: 100/1388
  35063. }
  35064. },
  35065. },
  35066. [
  35067. {
  35068. name: "Normal",
  35069. height: math.unit(4.7, "meters"),
  35070. default: true
  35071. },
  35072. ]
  35073. ))
  35074. characterMakers.push(() => makeCharacter(
  35075. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35076. {
  35077. normal: {
  35078. height: math.unit(6, "feet"),
  35079. weight: math.unit(350, "lb"),
  35080. name: "Normal",
  35081. image: {
  35082. source: "./media/characters/teshy/normal.svg",
  35083. extra: 1795/1735,
  35084. bottom: 16/1811
  35085. }
  35086. },
  35087. monsterFront: {
  35088. height: math.unit(12, "feet"),
  35089. weight: math.unit(4700, "lb"),
  35090. name: "Monster (Front)",
  35091. image: {
  35092. source: "./media/characters/teshy/monster-front.svg",
  35093. extra: 2042/2034,
  35094. bottom: 128/2170
  35095. }
  35096. },
  35097. monsterSide: {
  35098. height: math.unit(12, "feet"),
  35099. weight: math.unit(4700, "lb"),
  35100. name: "Monster (Side)",
  35101. image: {
  35102. source: "./media/characters/teshy/monster-side.svg",
  35103. extra: 2067/2056,
  35104. bottom: 70/2137
  35105. }
  35106. },
  35107. monsterBack: {
  35108. height: math.unit(12, "feet"),
  35109. weight: math.unit(4700, "lb"),
  35110. name: "Monster (Back)",
  35111. image: {
  35112. source: "./media/characters/teshy/monster-back.svg",
  35113. extra: 1921/1914,
  35114. bottom: 171/2092
  35115. }
  35116. },
  35117. },
  35118. [
  35119. {
  35120. name: "Normal",
  35121. height: math.unit(6, "feet"),
  35122. default: true
  35123. },
  35124. ]
  35125. ))
  35126. characterMakers.push(() => makeCharacter(
  35127. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35128. {
  35129. front: {
  35130. height: math.unit(6, "feet"),
  35131. name: "Front",
  35132. image: {
  35133. source: "./media/characters/ramey/front.svg",
  35134. extra: 790/787,
  35135. bottom: 27/817
  35136. }
  35137. },
  35138. },
  35139. [
  35140. {
  35141. name: "Normal",
  35142. height: math.unit(6, "feet"),
  35143. default: true
  35144. },
  35145. ]
  35146. ))
  35147. characterMakers.push(() => makeCharacter(
  35148. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35149. {
  35150. front: {
  35151. height: math.unit(5 + 5/12, "feet"),
  35152. weight: math.unit(120, "lb"),
  35153. name: "Front",
  35154. image: {
  35155. source: "./media/characters/phirae/front.svg",
  35156. extra: 2491/2436,
  35157. bottom: 38/2529
  35158. }
  35159. },
  35160. },
  35161. [
  35162. {
  35163. name: "Normal",
  35164. height: math.unit(5 + 5/12, "feet"),
  35165. default: true
  35166. },
  35167. ]
  35168. ))
  35169. characterMakers.push(() => makeCharacter(
  35170. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35171. {
  35172. front: {
  35173. height: math.unit(5 + 3/12, "feet"),
  35174. name: "Front",
  35175. image: {
  35176. source: "./media/characters/stagglas/front.svg",
  35177. extra: 962/882,
  35178. bottom: 53/1015
  35179. }
  35180. },
  35181. feral: {
  35182. height: math.unit(335, "cm"),
  35183. name: "Feral",
  35184. image: {
  35185. source: "./media/characters/stagglas/feral.svg",
  35186. extra: 1732/1090,
  35187. bottom: 48/1780
  35188. }
  35189. },
  35190. },
  35191. [
  35192. {
  35193. name: "Normal",
  35194. height: math.unit(5 + 3/12, "feet"),
  35195. default: true
  35196. },
  35197. ]
  35198. ))
  35199. characterMakers.push(() => makeCharacter(
  35200. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35201. {
  35202. front: {
  35203. height: math.unit(5 + 4/12, "feet"),
  35204. weight: math.unit(145, "lb"),
  35205. name: "Front",
  35206. image: {
  35207. source: "./media/characters/starra/front.svg",
  35208. extra: 1790/1691,
  35209. bottom: 91/1881
  35210. }
  35211. },
  35212. },
  35213. [
  35214. {
  35215. name: "Normal",
  35216. height: math.unit(5 + 4/12, "feet"),
  35217. default: true
  35218. },
  35219. ]
  35220. ))
  35221. characterMakers.push(() => makeCharacter(
  35222. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35223. {
  35224. front: {
  35225. height: math.unit(2.2, "meters"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35229. extra: 1194/1005,
  35230. bottom: 25/1219
  35231. }
  35232. },
  35233. },
  35234. [
  35235. {
  35236. name: "Normal",
  35237. height: math.unit(2.2, "meters"),
  35238. default: true
  35239. },
  35240. ]
  35241. ))
  35242. characterMakers.push(() => makeCharacter(
  35243. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35244. {
  35245. side: {
  35246. height: math.unit(8 + 2/12, "feet"),
  35247. weight: math.unit(1240, "lb"),
  35248. name: "Side",
  35249. image: {
  35250. source: "./media/characters/mika-valentine/side.svg",
  35251. extra: 2670/2501,
  35252. bottom: 250/2920
  35253. }
  35254. },
  35255. },
  35256. [
  35257. {
  35258. name: "Normal",
  35259. height: math.unit(8 + 2/12, "feet"),
  35260. default: true
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35266. {
  35267. front: {
  35268. height: math.unit(7 + 2/12, "feet"),
  35269. name: "Front",
  35270. image: {
  35271. source: "./media/characters/xoltol/front.svg",
  35272. extra: 2212/2124,
  35273. bottom: 84/2296
  35274. }
  35275. },
  35276. side: {
  35277. height: math.unit(7 + 2/12, "feet"),
  35278. name: "Side",
  35279. image: {
  35280. source: "./media/characters/xoltol/side.svg",
  35281. extra: 2273/2197,
  35282. bottom: 26/2299
  35283. }
  35284. },
  35285. hand: {
  35286. height: math.unit(2.5, "feet"),
  35287. name: "Hand",
  35288. image: {
  35289. source: "./media/characters/xoltol/hand.svg"
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Small-ish",
  35296. height: math.unit(5 + 11/12, "feet")
  35297. },
  35298. {
  35299. name: "Normal",
  35300. height: math.unit(7 + 2/12, "feet")
  35301. },
  35302. {
  35303. name: "\"Macro\"",
  35304. height: math.unit(14 + 9/12, "feet"),
  35305. default: true
  35306. },
  35307. {
  35308. name: "Alternate Height",
  35309. height: math.unit(20, "feet")
  35310. },
  35311. {
  35312. name: "Actually Macro",
  35313. height: math.unit(100, "feet")
  35314. },
  35315. ]
  35316. ))
  35317. characterMakers.push(() => makeCharacter(
  35318. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35319. {
  35320. front: {
  35321. height: math.unit(5 + 2/12, "feet"),
  35322. name: "Front",
  35323. image: {
  35324. source: "./media/characters/kotetsu-redwood/front.svg",
  35325. extra: 1053/942,
  35326. bottom: 60/1113
  35327. }
  35328. },
  35329. },
  35330. [
  35331. {
  35332. name: "Normal",
  35333. height: math.unit(5 + 2/12, "feet"),
  35334. default: true
  35335. },
  35336. ]
  35337. ))
  35338. characterMakers.push(() => makeCharacter(
  35339. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35340. {
  35341. front: {
  35342. height: math.unit(2.4, "meters"),
  35343. weight: math.unit(125, "kg"),
  35344. name: "Front",
  35345. image: {
  35346. source: "./media/characters/lilith/front.svg",
  35347. extra: 1590/1513,
  35348. bottom: 203/1793
  35349. }
  35350. },
  35351. },
  35352. [
  35353. {
  35354. name: "Humanoid",
  35355. height: math.unit(2.4, "meters")
  35356. },
  35357. {
  35358. name: "Normal",
  35359. height: math.unit(6, "meters"),
  35360. default: true
  35361. },
  35362. {
  35363. name: "Largest",
  35364. height: math.unit(55, "meters")
  35365. },
  35366. ]
  35367. ))
  35368. characterMakers.push(() => makeCharacter(
  35369. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35370. {
  35371. front: {
  35372. height: math.unit(8 + 4/12, "feet"),
  35373. weight: math.unit(535, "lb"),
  35374. name: "Front",
  35375. image: {
  35376. source: "./media/characters/beh'kah-bolger/front.svg",
  35377. extra: 1660/1603,
  35378. bottom: 37/1697
  35379. }
  35380. },
  35381. },
  35382. [
  35383. {
  35384. name: "Normal",
  35385. height: math.unit(8 + 4/12, "feet"),
  35386. default: true
  35387. },
  35388. {
  35389. name: "Kaiju",
  35390. height: math.unit(250, "feet")
  35391. },
  35392. {
  35393. name: "Still Growing",
  35394. height: math.unit(10, "miles")
  35395. },
  35396. {
  35397. name: "Continental",
  35398. height: math.unit(5000, "miles")
  35399. },
  35400. {
  35401. name: "Final Form",
  35402. height: math.unit(2500000, "miles")
  35403. },
  35404. ]
  35405. ))
  35406. characterMakers.push(() => makeCharacter(
  35407. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35408. {
  35409. front: {
  35410. height: math.unit(7 + 2/12, "feet"),
  35411. weight: math.unit(230, "kg"),
  35412. name: "Front",
  35413. image: {
  35414. source: "./media/characters/tatyana-milewska/front.svg",
  35415. extra: 1199/1150,
  35416. bottom: 86/1285
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(7 + 2/12, "feet"),
  35424. default: true
  35425. },
  35426. {
  35427. name: "Big",
  35428. height: math.unit(12, "feet")
  35429. },
  35430. {
  35431. name: "Minimacro",
  35432. height: math.unit(20, "feet")
  35433. },
  35434. {
  35435. name: "Macro",
  35436. height: math.unit(120, "feet")
  35437. },
  35438. ]
  35439. ))
  35440. characterMakers.push(() => makeCharacter(
  35441. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35442. {
  35443. front: {
  35444. height: math.unit(7 + 8/12, "feet"),
  35445. weight: math.unit(152, "kg"),
  35446. name: "Front",
  35447. image: {
  35448. source: "./media/characters/helen-arri/front.svg",
  35449. extra: 440/423,
  35450. bottom: 14/454
  35451. }
  35452. },
  35453. back: {
  35454. height: math.unit(7 + 8/12, "feet"),
  35455. weight: math.unit(152, "kg"),
  35456. name: "Back",
  35457. image: {
  35458. source: "./media/characters/helen-arri/back.svg",
  35459. extra: 443/426,
  35460. bottom: 8/451
  35461. }
  35462. },
  35463. },
  35464. [
  35465. {
  35466. name: "Normal",
  35467. height: math.unit(7 + 8/12, "feet"),
  35468. default: true
  35469. },
  35470. {
  35471. name: "Big",
  35472. height: math.unit(14, "feet")
  35473. },
  35474. {
  35475. name: "Minimacro",
  35476. height: math.unit(24, "feet")
  35477. },
  35478. {
  35479. name: "Macro",
  35480. height: math.unit(140, "feet")
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35486. {
  35487. front: {
  35488. height: math.unit(6, "meters"),
  35489. name: "Front",
  35490. image: {
  35491. source: "./media/characters/ehanu-rehu/front.svg",
  35492. extra: 1800/1800,
  35493. bottom: 59/1859
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Normal",
  35500. height: math.unit(6, "meters"),
  35501. default: true
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35507. {
  35508. front: {
  35509. height: math.unit(7 + 3/12, "feet"),
  35510. name: "Front",
  35511. image: {
  35512. source: "./media/characters/renholder/front.svg",
  35513. extra: 3096/2960,
  35514. bottom: 250/3346
  35515. }
  35516. },
  35517. },
  35518. [
  35519. {
  35520. name: "Normal Bat",
  35521. height: math.unit(7 + 3/12, "feet"),
  35522. default: true
  35523. },
  35524. {
  35525. name: "Slightly Tall Bat",
  35526. height: math.unit(100, "feet")
  35527. },
  35528. {
  35529. name: "Big Bat",
  35530. height: math.unit(1000, "feet")
  35531. },
  35532. {
  35533. name: "City-Sized Bat",
  35534. height: math.unit(200000, "feet")
  35535. },
  35536. {
  35537. name: "Bigger Bat",
  35538. height: math.unit(10000, "miles")
  35539. },
  35540. {
  35541. name: "Solar Sized Bat",
  35542. height: math.unit(100, "AU")
  35543. },
  35544. {
  35545. name: "Galactic Bat",
  35546. height: math.unit(200000, "lightyears")
  35547. },
  35548. {
  35549. name: "Universally Known Bat",
  35550. height: math.unit(1, "universe")
  35551. },
  35552. ]
  35553. ))
  35554. characterMakers.push(() => makeCharacter(
  35555. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35556. {
  35557. front: {
  35558. height: math.unit(6 + 11/12, "feet"),
  35559. weight: math.unit(250, "lb"),
  35560. name: "Front",
  35561. image: {
  35562. source: "./media/characters/cookiecat/front.svg",
  35563. extra: 893/827,
  35564. bottom: 14/907
  35565. }
  35566. },
  35567. },
  35568. [
  35569. {
  35570. name: "Micro",
  35571. height: math.unit(3, "inches")
  35572. },
  35573. {
  35574. name: "Normal",
  35575. height: math.unit(6 + 11/12, "feet"),
  35576. default: true
  35577. },
  35578. {
  35579. name: "Macro",
  35580. height: math.unit(100, "feet")
  35581. },
  35582. {
  35583. name: "Macro+",
  35584. height: math.unit(404, "feet")
  35585. },
  35586. {
  35587. name: "Megamacro",
  35588. height: math.unit(165, "miles")
  35589. },
  35590. {
  35591. name: "Planetary",
  35592. height: math.unit(4600, "miles")
  35593. },
  35594. ]
  35595. ))
  35596. characterMakers.push(() => makeCharacter(
  35597. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35598. {
  35599. front: {
  35600. height: math.unit(10 + 3/12, "feet"),
  35601. weight: math.unit(1500, "lb"),
  35602. name: "Front",
  35603. image: {
  35604. source: "./media/characters/tux-kusanagi/front.svg",
  35605. extra: 944/840,
  35606. bottom: 39/983
  35607. }
  35608. },
  35609. back: {
  35610. height: math.unit(10 + 3/12, "feet"),
  35611. weight: math.unit(1500, "lb"),
  35612. name: "Back",
  35613. image: {
  35614. source: "./media/characters/tux-kusanagi/back.svg",
  35615. extra: 941/842,
  35616. bottom: 28/969
  35617. }
  35618. },
  35619. rump: {
  35620. height: math.unit(5.25, "feet"),
  35621. name: "Rump",
  35622. image: {
  35623. source: "./media/characters/tux-kusanagi/rump.svg"
  35624. }
  35625. },
  35626. beak: {
  35627. height: math.unit(1.54, "feet"),
  35628. name: "Beak",
  35629. image: {
  35630. source: "./media/characters/tux-kusanagi/beak.svg"
  35631. }
  35632. },
  35633. },
  35634. [
  35635. {
  35636. name: "Normal",
  35637. height: math.unit(10 + 3/12, "feet"),
  35638. default: true
  35639. },
  35640. ]
  35641. ))
  35642. characterMakers.push(() => makeCharacter(
  35643. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35644. {
  35645. front: {
  35646. height: math.unit(58, "feet"),
  35647. weight: math.unit(200, "tons"),
  35648. name: "Front",
  35649. image: {
  35650. source: "./media/characters/uzarmazari/front.svg",
  35651. extra: 1575/1455,
  35652. bottom: 152/1727
  35653. }
  35654. },
  35655. back: {
  35656. height: math.unit(58, "feet"),
  35657. weight: math.unit(200, "tons"),
  35658. name: "Back",
  35659. image: {
  35660. source: "./media/characters/uzarmazari/back.svg",
  35661. extra: 1585/1510,
  35662. bottom: 157/1742
  35663. }
  35664. },
  35665. head: {
  35666. height: math.unit(26, "feet"),
  35667. name: "Head",
  35668. image: {
  35669. source: "./media/characters/uzarmazari/head.svg"
  35670. }
  35671. },
  35672. },
  35673. [
  35674. {
  35675. name: "Normal",
  35676. height: math.unit(58, "feet"),
  35677. default: true
  35678. },
  35679. ]
  35680. ))
  35681. characterMakers.push(() => makeCharacter(
  35682. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35683. {
  35684. side: {
  35685. height: math.unit(15, "feet"),
  35686. name: "Side",
  35687. image: {
  35688. source: "./media/characters/akitu/side.svg",
  35689. extra: 1421/1321,
  35690. bottom: 157/1578
  35691. }
  35692. },
  35693. front: {
  35694. height: math.unit(15, "feet"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/akitu/front.svg",
  35698. extra: 1435/1326,
  35699. bottom: 232/1667
  35700. }
  35701. },
  35702. },
  35703. [
  35704. {
  35705. name: "Normal",
  35706. height: math.unit(15, "feet"),
  35707. default: true
  35708. },
  35709. ]
  35710. ))
  35711. characterMakers.push(() => makeCharacter(
  35712. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35713. {
  35714. front: {
  35715. height: math.unit(10 + 8/12, "feet"),
  35716. name: "Front",
  35717. image: {
  35718. source: "./media/characters/azalie-croixland/front.svg",
  35719. extra: 1972/1856,
  35720. bottom: 31/2003
  35721. }
  35722. },
  35723. },
  35724. [
  35725. {
  35726. name: "Original Height",
  35727. height: math.unit(5 + 4/12, "feet")
  35728. },
  35729. {
  35730. name: "Normal Height",
  35731. height: math.unit(10 + 8/12, "feet"),
  35732. default: true
  35733. },
  35734. ]
  35735. ))
  35736. characterMakers.push(() => makeCharacter(
  35737. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35738. {
  35739. side: {
  35740. height: math.unit(7 + 1/12, "feet"),
  35741. weight: math.unit(245, "lb"),
  35742. name: "Side",
  35743. image: {
  35744. source: "./media/characters/kavus-kazian/side.svg",
  35745. extra: 349/342,
  35746. bottom: 15/364
  35747. }
  35748. },
  35749. },
  35750. [
  35751. {
  35752. name: "Normal",
  35753. height: math.unit(7 + 1/12, "feet"),
  35754. default: true
  35755. },
  35756. ]
  35757. ))
  35758. characterMakers.push(() => makeCharacter(
  35759. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35760. {
  35761. normalFront: {
  35762. height: math.unit(5 + 11/12, "feet"),
  35763. name: "Front",
  35764. image: {
  35765. source: "./media/characters/moonlight-rose/normal-front.svg",
  35766. extra: 1980/1825,
  35767. bottom: 18/1998
  35768. },
  35769. form: "normal",
  35770. default: true
  35771. },
  35772. normalBack: {
  35773. height: math.unit(5 + 11/12, "feet"),
  35774. name: "Back",
  35775. image: {
  35776. source: "./media/characters/moonlight-rose/normal-back.svg",
  35777. extra: 2010/1839,
  35778. bottom: 10/2020
  35779. },
  35780. form: "normal"
  35781. },
  35782. demonFront: {
  35783. height: math.unit(1.5, "earths"),
  35784. name: "Front",
  35785. image: {
  35786. source: "./media/characters/moonlight-rose/demon.svg",
  35787. extra: 1400/1294,
  35788. bottom: 45/1445
  35789. },
  35790. form: "demon",
  35791. default: true
  35792. },
  35793. terraFront: {
  35794. height: math.unit(1.5, "earths"),
  35795. name: "Front",
  35796. image: {
  35797. source: "./media/characters/moonlight-rose/terra.svg"
  35798. },
  35799. form: "terra",
  35800. default: true
  35801. },
  35802. jupiterFront: {
  35803. height: math.unit(69911*2, "km"),
  35804. name: "Front",
  35805. image: {
  35806. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35807. extra: 1367/1286,
  35808. bottom: 55/1422
  35809. },
  35810. form: "jupiter",
  35811. default: true
  35812. },
  35813. neptuneFront: {
  35814. height: math.unit(24622*2, "feet"),
  35815. name: "Front",
  35816. image: {
  35817. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35818. extra: 1851/1712,
  35819. bottom: 0/1851
  35820. },
  35821. form: "neptune",
  35822. default: true
  35823. },
  35824. },
  35825. [
  35826. {
  35827. name: "\"Natural\" Height",
  35828. height: math.unit(5 + 11/12, "feet"),
  35829. form: "normal"
  35830. },
  35831. {
  35832. name: "Smallest comfortable size",
  35833. height: math.unit(40, "meters"),
  35834. form: "normal"
  35835. },
  35836. {
  35837. name: "Common size",
  35838. height: math.unit(50, "km"),
  35839. form: "normal",
  35840. default: true
  35841. },
  35842. {
  35843. name: "Normal",
  35844. height: math.unit(1.5, "earths"),
  35845. form: "demon",
  35846. default: true
  35847. },
  35848. {
  35849. name: "Universal",
  35850. height: math.unit(15, "universes"),
  35851. form: "demon"
  35852. },
  35853. {
  35854. name: "Earth",
  35855. height: math.unit(1.5, "earths"),
  35856. form: "terra",
  35857. default: true
  35858. },
  35859. {
  35860. name: "Super Earth",
  35861. height: math.unit(67.5, "earths"),
  35862. form: "terra"
  35863. },
  35864. {
  35865. name: "Doesn't fit in a solar system...",
  35866. height: math.unit(1, "galaxy"),
  35867. form: "terra"
  35868. },
  35869. {
  35870. name: "Saturn",
  35871. height: math.unit(58232*2, "km"),
  35872. form: "jupiter"
  35873. },
  35874. {
  35875. name: "Jupiter",
  35876. height: math.unit(69911*2, "km"),
  35877. form: "jupiter",
  35878. default: true
  35879. },
  35880. {
  35881. name: "HD 100546 b",
  35882. height: math.unit(482938, "km"),
  35883. form: "jupiter"
  35884. },
  35885. {
  35886. name: "Enceladus",
  35887. height: math.unit(513*2, "km"),
  35888. form: "neptune"
  35889. },
  35890. {
  35891. name: "Europe",
  35892. height: math.unit(1560*2, "km"),
  35893. form: "neptune"
  35894. },
  35895. {
  35896. name: "Neptune",
  35897. height: math.unit(24622*2, "km"),
  35898. form: "neptune",
  35899. default: true
  35900. },
  35901. {
  35902. name: "CoRoT-9b",
  35903. height: math.unit(75067*2, "km"),
  35904. form: "neptune"
  35905. },
  35906. ],
  35907. {
  35908. "normal": {
  35909. name: "Normal",
  35910. default: true
  35911. },
  35912. "demon": {
  35913. name: "Demon"
  35914. },
  35915. "terra": {
  35916. name: "Terra"
  35917. },
  35918. "jupiter": {
  35919. name: "Jupiter"
  35920. },
  35921. "neptune": {
  35922. name: "Neptune"
  35923. }
  35924. }
  35925. ))
  35926. characterMakers.push(() => makeCharacter(
  35927. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35928. {
  35929. front: {
  35930. height: math.unit(16, "feet"),
  35931. weight: math.unit(610, "kg"),
  35932. name: "Front",
  35933. image: {
  35934. source: "./media/characters/huckle/front.svg",
  35935. extra: 1731/1625,
  35936. bottom: 33/1764
  35937. }
  35938. },
  35939. back: {
  35940. height: math.unit(16, "feet"),
  35941. weight: math.unit(610, "kg"),
  35942. name: "Back",
  35943. image: {
  35944. source: "./media/characters/huckle/back.svg",
  35945. extra: 1738/1651,
  35946. bottom: 37/1775
  35947. }
  35948. },
  35949. laughing: {
  35950. height: math.unit(3.75, "feet"),
  35951. name: "Laughing",
  35952. image: {
  35953. source: "./media/characters/huckle/laughing.svg"
  35954. }
  35955. },
  35956. angry: {
  35957. height: math.unit(4.15, "feet"),
  35958. name: "Angry",
  35959. image: {
  35960. source: "./media/characters/huckle/angry.svg"
  35961. }
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(16, "feet"),
  35968. default: true
  35969. },
  35970. {
  35971. name: "Mini Macro",
  35972. height: math.unit(463, "feet")
  35973. },
  35974. {
  35975. name: "Macro",
  35976. height: math.unit(1680, "meters")
  35977. },
  35978. {
  35979. name: "Mega Macro",
  35980. height: math.unit(175, "km")
  35981. },
  35982. {
  35983. name: "Terra Macro",
  35984. height: math.unit(32, "gigameters")
  35985. },
  35986. {
  35987. name: "Multiverse+",
  35988. height: math.unit(2.56e23, "yottameters")
  35989. },
  35990. ]
  35991. ))
  35992. characterMakers.push(() => makeCharacter(
  35993. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35994. {
  35995. front: {
  35996. height: math.unit(6 + 9/12, "feet"),
  35997. weight: math.unit(280, "lb"),
  35998. name: "Front",
  35999. image: {
  36000. source: "./media/characters/candy/front.svg",
  36001. extra: 234/217,
  36002. bottom: 11/245
  36003. }
  36004. },
  36005. },
  36006. [
  36007. {
  36008. name: "Really Small",
  36009. height: math.unit(0.1, "nm")
  36010. },
  36011. {
  36012. name: "Micro",
  36013. height: math.unit(2, "inches")
  36014. },
  36015. {
  36016. name: "Normal",
  36017. height: math.unit(6 + 9/12, "feet"),
  36018. default: true
  36019. },
  36020. {
  36021. name: "Small Macro",
  36022. height: math.unit(69, "feet")
  36023. },
  36024. {
  36025. name: "Macro",
  36026. height: math.unit(160, "feet")
  36027. },
  36028. {
  36029. name: "Megamacro",
  36030. height: math.unit(22000, "miles")
  36031. },
  36032. {
  36033. name: "Gigamacro",
  36034. height: math.unit(50000, "miles")
  36035. },
  36036. ]
  36037. ))
  36038. characterMakers.push(() => makeCharacter(
  36039. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36040. {
  36041. front: {
  36042. height: math.unit(4, "feet"),
  36043. weight: math.unit(90, "lb"),
  36044. name: "Front",
  36045. image: {
  36046. source: "./media/characters/joey-mcdonald/front.svg",
  36047. extra: 1059/852,
  36048. bottom: 33/1092
  36049. }
  36050. },
  36051. back: {
  36052. height: math.unit(4, "feet"),
  36053. weight: math.unit(90, "lb"),
  36054. name: "Back",
  36055. image: {
  36056. source: "./media/characters/joey-mcdonald/back.svg",
  36057. extra: 1077/879,
  36058. bottom: 5/1082
  36059. }
  36060. },
  36061. frontKobold: {
  36062. height: math.unit(4, "feet"),
  36063. weight: math.unit(100, "lb"),
  36064. name: "Front-kobold",
  36065. image: {
  36066. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36067. extra: 1480/1367,
  36068. bottom: 0/1480
  36069. }
  36070. },
  36071. backKobold: {
  36072. height: math.unit(4, "feet"),
  36073. weight: math.unit(100, "lb"),
  36074. name: "Back-kobold",
  36075. image: {
  36076. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36077. extra: 1449/1361,
  36078. bottom: 0/1449
  36079. }
  36080. },
  36081. },
  36082. [
  36083. {
  36084. name: "Normal",
  36085. height: math.unit(4, "feet"),
  36086. default: true
  36087. },
  36088. ]
  36089. ))
  36090. characterMakers.push(() => makeCharacter(
  36091. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36092. {
  36093. front: {
  36094. height: math.unit(12 + 6/12, "feet"),
  36095. name: "Front",
  36096. image: {
  36097. source: "./media/characters/kass-lockheed/front.svg",
  36098. extra: 354/343,
  36099. bottom: 9/363
  36100. }
  36101. },
  36102. back: {
  36103. height: math.unit(12 + 6/12, "feet"),
  36104. name: "Back",
  36105. image: {
  36106. source: "./media/characters/kass-lockheed/back.svg",
  36107. extra: 364/352,
  36108. bottom: 3/367
  36109. }
  36110. },
  36111. dick: {
  36112. height: math.unit(3.12, "feet"),
  36113. name: "Dick",
  36114. image: {
  36115. source: "./media/characters/kass-lockheed/dick.svg"
  36116. }
  36117. },
  36118. head: {
  36119. height: math.unit(2.6, "feet"),
  36120. name: "Head",
  36121. image: {
  36122. source: "./media/characters/kass-lockheed/head.svg"
  36123. }
  36124. },
  36125. bleh: {
  36126. height: math.unit(2.85, "feet"),
  36127. name: "Bleh",
  36128. image: {
  36129. source: "./media/characters/kass-lockheed/bleh.svg"
  36130. }
  36131. },
  36132. smug: {
  36133. height: math.unit(2.85, "feet"),
  36134. name: "Smug",
  36135. image: {
  36136. source: "./media/characters/kass-lockheed/smug.svg"
  36137. }
  36138. },
  36139. },
  36140. [
  36141. {
  36142. name: "Normal",
  36143. height: math.unit(12 + 6/12, "feet"),
  36144. default: true
  36145. },
  36146. ]
  36147. ))
  36148. characterMakers.push(() => makeCharacter(
  36149. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36150. {
  36151. front: {
  36152. height: math.unit(6 + 2/12, "feet"),
  36153. name: "Front",
  36154. image: {
  36155. source: "./media/characters/taylor/front.svg",
  36156. extra: 639/495,
  36157. bottom: 12/651
  36158. }
  36159. },
  36160. },
  36161. [
  36162. {
  36163. name: "Normal",
  36164. height: math.unit(6 + 2/12, "feet"),
  36165. default: true
  36166. },
  36167. {
  36168. name: "Big",
  36169. height: math.unit(15, "feet")
  36170. },
  36171. {
  36172. name: "Lorg",
  36173. height: math.unit(80, "feet")
  36174. },
  36175. {
  36176. name: "Too Lorg",
  36177. height: math.unit(120, "feet")
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(15, "feet"),
  36186. name: "Front",
  36187. image: {
  36188. source: "./media/characters/kaizer/front.svg",
  36189. extra: 1612/1436,
  36190. bottom: 43/1655
  36191. }
  36192. },
  36193. },
  36194. [
  36195. {
  36196. name: "Normal",
  36197. height: math.unit(15, "feet"),
  36198. default: true
  36199. },
  36200. ]
  36201. ))
  36202. characterMakers.push(() => makeCharacter(
  36203. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36204. {
  36205. front: {
  36206. height: math.unit(2, "feet"),
  36207. weight: math.unit(30, "lb"),
  36208. name: "Front",
  36209. image: {
  36210. source: "./media/characters/sandy/front.svg",
  36211. extra: 1439/1307,
  36212. bottom: 194/1633
  36213. }
  36214. },
  36215. },
  36216. [
  36217. {
  36218. name: "Normal",
  36219. height: math.unit(2, "feet"),
  36220. default: true
  36221. },
  36222. ]
  36223. ))
  36224. characterMakers.push(() => makeCharacter(
  36225. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36226. {
  36227. front: {
  36228. height: math.unit(3, "feet"),
  36229. name: "Front",
  36230. image: {
  36231. source: "./media/characters/mellvi/front.svg",
  36232. extra: 1831/1630,
  36233. bottom: 58/1889
  36234. }
  36235. },
  36236. },
  36237. [
  36238. {
  36239. name: "Normal",
  36240. height: math.unit(3, "feet"),
  36241. default: true
  36242. },
  36243. ]
  36244. ))
  36245. characterMakers.push(() => makeCharacter(
  36246. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36247. {
  36248. front: {
  36249. height: math.unit(5 + 11/12, "feet"),
  36250. weight: math.unit(200, "lb"),
  36251. name: "Front",
  36252. image: {
  36253. source: "./media/characters/shirou/front.svg",
  36254. extra: 2491/2383,
  36255. bottom: 189/2680
  36256. }
  36257. },
  36258. back: {
  36259. height: math.unit(5 + 11/12, "feet"),
  36260. weight: math.unit(200, "lb"),
  36261. name: "Back",
  36262. image: {
  36263. source: "./media/characters/shirou/back.svg",
  36264. extra: 2554/2450,
  36265. bottom: 76/2630
  36266. }
  36267. },
  36268. },
  36269. [
  36270. {
  36271. name: "Normal",
  36272. height: math.unit(5 + 11/12, "feet"),
  36273. default: true
  36274. },
  36275. ]
  36276. ))
  36277. characterMakers.push(() => makeCharacter(
  36278. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36279. {
  36280. front: {
  36281. height: math.unit(6 + 3/12, "feet"),
  36282. weight: math.unit(177, "lb"),
  36283. name: "Front",
  36284. image: {
  36285. source: "./media/characters/noryu/front.svg",
  36286. extra: 973/885,
  36287. bottom: 10/983
  36288. }
  36289. },
  36290. },
  36291. [
  36292. {
  36293. name: "Normal",
  36294. height: math.unit(6 + 3/12, "feet"),
  36295. default: true
  36296. },
  36297. ]
  36298. ))
  36299. characterMakers.push(() => makeCharacter(
  36300. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36301. {
  36302. front: {
  36303. height: math.unit(5 + 6/12, "feet"),
  36304. weight: math.unit(170, "lb"),
  36305. name: "Front",
  36306. image: {
  36307. source: "./media/characters/mevolas-rubenido/front.svg",
  36308. extra: 2109/1901,
  36309. bottom: 96/2205
  36310. }
  36311. },
  36312. },
  36313. [
  36314. {
  36315. name: "Normal",
  36316. height: math.unit(5 + 6/12, "feet"),
  36317. default: true
  36318. },
  36319. ]
  36320. ))
  36321. characterMakers.push(() => makeCharacter(
  36322. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36323. {
  36324. front: {
  36325. height: math.unit(100, "feet"),
  36326. name: "Front",
  36327. image: {
  36328. source: "./media/characters/dee/front.svg",
  36329. extra: 2153/2036,
  36330. bottom: 59/2212
  36331. }
  36332. },
  36333. back: {
  36334. height: math.unit(100, "feet"),
  36335. name: "Back",
  36336. image: {
  36337. source: "./media/characters/dee/back.svg",
  36338. extra: 2183/2058,
  36339. bottom: 75/2258
  36340. }
  36341. },
  36342. foot: {
  36343. height: math.unit(19.43, "feet"),
  36344. name: "Foot",
  36345. image: {
  36346. source: "./media/characters/dee/foot.svg"
  36347. }
  36348. },
  36349. hoof: {
  36350. height: math.unit(20.6, "feet"),
  36351. name: "Hoof",
  36352. image: {
  36353. source: "./media/characters/dee/hoof.svg"
  36354. }
  36355. },
  36356. },
  36357. [
  36358. {
  36359. name: "Macro",
  36360. height: math.unit(100, "feet"),
  36361. default: true
  36362. },
  36363. ]
  36364. ))
  36365. characterMakers.push(() => makeCharacter(
  36366. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36367. {
  36368. front: {
  36369. height: math.unit(5 + 6/12, "feet"),
  36370. name: "Front",
  36371. image: {
  36372. source: "./media/characters/teh/front.svg",
  36373. extra: 1002/847,
  36374. bottom: 62/1064
  36375. }
  36376. },
  36377. },
  36378. [
  36379. {
  36380. name: "Normal",
  36381. height: math.unit(5 + 6/12, "feet"),
  36382. default: true
  36383. },
  36384. ]
  36385. ))
  36386. characterMakers.push(() => makeCharacter(
  36387. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36388. {
  36389. side: {
  36390. height: math.unit(6 + 1/12, "feet"),
  36391. weight: math.unit(204, "lb"),
  36392. name: "Side",
  36393. image: {
  36394. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36395. extra: 974/775,
  36396. bottom: 169/1143
  36397. }
  36398. },
  36399. sitting: {
  36400. height: math.unit(6 + 2/12, "feet"),
  36401. weight: math.unit(204, "lb"),
  36402. name: "Sitting",
  36403. image: {
  36404. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36405. extra: 1175/964,
  36406. bottom: 378/1553
  36407. }
  36408. },
  36409. },
  36410. [
  36411. {
  36412. name: "Normal",
  36413. height: math.unit(6 + 1/12, "feet"),
  36414. default: true
  36415. },
  36416. ]
  36417. ))
  36418. characterMakers.push(() => makeCharacter(
  36419. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36420. {
  36421. front: {
  36422. height: math.unit(6, "inches"),
  36423. name: "Front",
  36424. image: {
  36425. source: "./media/characters/tululi/front.svg",
  36426. extra: 1997/1876,
  36427. bottom: 20/2017
  36428. }
  36429. },
  36430. },
  36431. [
  36432. {
  36433. name: "Normal",
  36434. height: math.unit(6, "inches"),
  36435. default: true
  36436. },
  36437. ]
  36438. ))
  36439. characterMakers.push(() => makeCharacter(
  36440. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36441. {
  36442. front: {
  36443. height: math.unit(4 + 1/12, "feet"),
  36444. name: "Front",
  36445. image: {
  36446. source: "./media/characters/star/front.svg",
  36447. extra: 1493/1189,
  36448. bottom: 48/1541
  36449. }
  36450. },
  36451. },
  36452. [
  36453. {
  36454. name: "Normal",
  36455. height: math.unit(4 + 1/12, "feet"),
  36456. default: true
  36457. },
  36458. ]
  36459. ))
  36460. characterMakers.push(() => makeCharacter(
  36461. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36462. {
  36463. front: {
  36464. height: math.unit(6 + 3/12, "feet"),
  36465. name: "Front",
  36466. image: {
  36467. source: "./media/characters/comet/front.svg",
  36468. extra: 1681/1462,
  36469. bottom: 26/1707
  36470. }
  36471. },
  36472. },
  36473. [
  36474. {
  36475. name: "Normal",
  36476. height: math.unit(6 + 3/12, "feet"),
  36477. default: true
  36478. },
  36479. ]
  36480. ))
  36481. characterMakers.push(() => makeCharacter(
  36482. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36483. {
  36484. front: {
  36485. height: math.unit(950, "feet"),
  36486. name: "Front",
  36487. image: {
  36488. source: "./media/characters/vortex/front.svg",
  36489. extra: 1497/1434,
  36490. bottom: 56/1553
  36491. }
  36492. },
  36493. maw: {
  36494. height: math.unit(285, "feet"),
  36495. name: "Maw",
  36496. image: {
  36497. source: "./media/characters/vortex/maw.svg"
  36498. }
  36499. },
  36500. },
  36501. [
  36502. {
  36503. name: "Macro",
  36504. height: math.unit(950, "feet"),
  36505. default: true
  36506. },
  36507. ]
  36508. ))
  36509. characterMakers.push(() => makeCharacter(
  36510. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36511. {
  36512. front: {
  36513. height: math.unit(600, "feet"),
  36514. weight: math.unit(0.02, "grams"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/doodle/front.svg",
  36518. extra: 1578/1413,
  36519. bottom: 37/1615
  36520. }
  36521. },
  36522. },
  36523. [
  36524. {
  36525. name: "Macro",
  36526. height: math.unit(600, "feet"),
  36527. default: true
  36528. },
  36529. ]
  36530. ))
  36531. characterMakers.push(() => makeCharacter(
  36532. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36533. {
  36534. front: {
  36535. height: math.unit(6 + 6/12, "feet"),
  36536. name: "Front",
  36537. image: {
  36538. source: "./media/characters/jai/front.svg",
  36539. extra: 1645/1534,
  36540. bottom: 115/1760
  36541. }
  36542. },
  36543. },
  36544. [
  36545. {
  36546. name: "Normal",
  36547. height: math.unit(6 + 6/12, "feet"),
  36548. default: true
  36549. },
  36550. ]
  36551. ))
  36552. characterMakers.push(() => makeCharacter(
  36553. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36554. {
  36555. front: {
  36556. height: math.unit(6 + 8/12, "feet"),
  36557. name: "Front",
  36558. image: {
  36559. source: "./media/characters/pixel/front.svg",
  36560. extra: 1900/1735,
  36561. bottom: 63/1963
  36562. }
  36563. },
  36564. },
  36565. [
  36566. {
  36567. name: "Normal",
  36568. height: math.unit(6 + 8/12, "feet"),
  36569. default: true
  36570. },
  36571. ]
  36572. ))
  36573. characterMakers.push(() => makeCharacter(
  36574. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36575. {
  36576. back: {
  36577. height: math.unit(4 + 1/12, "feet"),
  36578. weight: math.unit(75, "lb"),
  36579. name: "Back",
  36580. image: {
  36581. source: "./media/characters/rhett/back.svg",
  36582. extra: 930/878,
  36583. bottom: 25/955
  36584. }
  36585. },
  36586. front: {
  36587. height: math.unit(4 + 1/12, "feet"),
  36588. weight: math.unit(75, "lb"),
  36589. name: "Front",
  36590. image: {
  36591. source: "./media/characters/rhett/front.svg",
  36592. extra: 1682/1586,
  36593. bottom: 92/1774
  36594. }
  36595. },
  36596. },
  36597. [
  36598. {
  36599. name: "Micro",
  36600. height: math.unit(8, "inches")
  36601. },
  36602. {
  36603. name: "Tiny",
  36604. height: math.unit(2, "feet")
  36605. },
  36606. {
  36607. name: "Normal",
  36608. height: math.unit(4 + 1/12, "feet"),
  36609. default: true
  36610. },
  36611. ]
  36612. ))
  36613. characterMakers.push(() => makeCharacter(
  36614. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36615. {
  36616. front: {
  36617. height: math.unit(3 + 3/12, "feet"),
  36618. name: "Front",
  36619. image: {
  36620. source: "./media/characters/penny/front.svg",
  36621. extra: 1406/1311,
  36622. bottom: 26/1432
  36623. }
  36624. },
  36625. },
  36626. [
  36627. {
  36628. name: "Normal",
  36629. height: math.unit(3 + 3/12, "feet"),
  36630. default: true
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36636. {
  36637. front: {
  36638. height: math.unit(4 + 11/12, "feet"),
  36639. name: "Front",
  36640. image: {
  36641. source: "./media/characters/monty/front.svg",
  36642. extra: 1479/1209,
  36643. bottom: 0/1479
  36644. }
  36645. },
  36646. },
  36647. [
  36648. {
  36649. name: "Normal",
  36650. height: math.unit(4 + 11/12, "feet"),
  36651. default: true
  36652. },
  36653. ]
  36654. ))
  36655. characterMakers.push(() => makeCharacter(
  36656. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36657. {
  36658. front: {
  36659. height: math.unit(8 + 4/12, "feet"),
  36660. name: "Front",
  36661. image: {
  36662. source: "./media/characters/sterling/front.svg",
  36663. extra: 1420/1236,
  36664. bottom: 27/1447
  36665. }
  36666. },
  36667. },
  36668. [
  36669. {
  36670. name: "Normal",
  36671. height: math.unit(8 + 4/12, "feet"),
  36672. default: true
  36673. },
  36674. ]
  36675. ))
  36676. characterMakers.push(() => makeCharacter(
  36677. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36678. {
  36679. front: {
  36680. height: math.unit(15, "feet"),
  36681. name: "Front",
  36682. image: {
  36683. source: "./media/characters/marble/front.svg",
  36684. extra: 973/937,
  36685. bottom: 32/1005
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Normal",
  36692. height: math.unit(15, "feet"),
  36693. default: true
  36694. },
  36695. ]
  36696. ))
  36697. characterMakers.push(() => makeCharacter(
  36698. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36699. {
  36700. front: {
  36701. height: math.unit(3, "inches"),
  36702. name: "Front",
  36703. image: {
  36704. source: "./media/characters/powder/front.svg",
  36705. extra: 1504/1334,
  36706. bottom: 518/2022
  36707. }
  36708. },
  36709. },
  36710. [
  36711. {
  36712. name: "Normal",
  36713. height: math.unit(3, "inches"),
  36714. default: true
  36715. },
  36716. ]
  36717. ))
  36718. characterMakers.push(() => makeCharacter(
  36719. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36720. {
  36721. front: {
  36722. height: math.unit(4 + 5/12, "feet"),
  36723. name: "Front",
  36724. image: {
  36725. source: "./media/characters/joey-raccoon/front.svg",
  36726. extra: 1273/1197,
  36727. bottom: 0/1273
  36728. }
  36729. },
  36730. },
  36731. [
  36732. {
  36733. name: "Normal",
  36734. height: math.unit(4 + 5/12, "feet"),
  36735. default: true
  36736. },
  36737. ]
  36738. ))
  36739. characterMakers.push(() => makeCharacter(
  36740. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36741. {
  36742. front: {
  36743. height: math.unit(8 + 4/12, "feet"),
  36744. name: "Front",
  36745. image: {
  36746. source: "./media/characters/vick/front.svg",
  36747. extra: 2187/2118,
  36748. bottom: 47/2234
  36749. }
  36750. },
  36751. },
  36752. [
  36753. {
  36754. name: "Normal",
  36755. height: math.unit(8 + 4/12, "feet"),
  36756. default: true
  36757. },
  36758. ]
  36759. ))
  36760. characterMakers.push(() => makeCharacter(
  36761. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36762. {
  36763. front: {
  36764. height: math.unit(5 + 5/12, "feet"),
  36765. name: "Front",
  36766. image: {
  36767. source: "./media/characters/mitsy/front.svg",
  36768. extra: 1842/1695,
  36769. bottom: 0/1842
  36770. }
  36771. },
  36772. },
  36773. [
  36774. {
  36775. name: "Normal",
  36776. height: math.unit(5 + 5/12, "feet"),
  36777. default: true
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(6 + 3/12, "feet"),
  36786. name: "Front",
  36787. image: {
  36788. source: "./media/characters/silvy/front.svg",
  36789. extra: 1995/1836,
  36790. bottom: 225/2220
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(6 + 3/12, "feet"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(3 + 8/12, "feet"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/rodney/front.svg",
  36810. extra: 1956/1747,
  36811. bottom: 31/1987
  36812. }
  36813. },
  36814. frontDressed: {
  36815. height: math.unit(2.9, "feet"),
  36816. name: "Front (Dressed)",
  36817. image: {
  36818. source: "./media/characters/rodney/front-dressed.svg",
  36819. extra: 1382/1241,
  36820. bottom: 385/1767
  36821. }
  36822. },
  36823. },
  36824. [
  36825. {
  36826. name: "Normal",
  36827. height: math.unit(3 + 8/12, "feet"),
  36828. default: true
  36829. },
  36830. ]
  36831. ))
  36832. characterMakers.push(() => makeCharacter(
  36833. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36834. {
  36835. front: {
  36836. height: math.unit(5 + 9/12, "feet"),
  36837. weight: math.unit(194, "lbs"),
  36838. name: "Front",
  36839. image: {
  36840. source: "./media/characters/zakail-sudekai/front.svg",
  36841. extra: 2696/2533,
  36842. bottom: 248/2944
  36843. }
  36844. },
  36845. maw: {
  36846. height: math.unit(1.35, "feet"),
  36847. name: "Maw",
  36848. image: {
  36849. source: "./media/characters/zakail-sudekai/maw.svg"
  36850. }
  36851. },
  36852. },
  36853. [
  36854. {
  36855. name: "Normal",
  36856. height: math.unit(5 + 9/12, "feet"),
  36857. default: true
  36858. },
  36859. ]
  36860. ))
  36861. characterMakers.push(() => makeCharacter(
  36862. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36863. {
  36864. front: {
  36865. height: math.unit(8 + 4/12, "feet"),
  36866. weight: math.unit(1200, "lb"),
  36867. name: "Front",
  36868. image: {
  36869. source: "./media/characters/eleanor/front.svg",
  36870. extra: 1226/1192,
  36871. bottom: 52/1278
  36872. }
  36873. },
  36874. back: {
  36875. height: math.unit(8 + 4/12, "feet"),
  36876. weight: math.unit(1200, "lb"),
  36877. name: "Back",
  36878. image: {
  36879. source: "./media/characters/eleanor/back.svg",
  36880. extra: 1242/1184,
  36881. bottom: 60/1302
  36882. }
  36883. },
  36884. head: {
  36885. height: math.unit(2.62, "feet"),
  36886. name: "Head",
  36887. image: {
  36888. source: "./media/characters/eleanor/head.svg"
  36889. }
  36890. },
  36891. },
  36892. [
  36893. {
  36894. name: "Normal",
  36895. height: math.unit(8 + 4/12, "feet"),
  36896. default: true
  36897. },
  36898. ]
  36899. ))
  36900. characterMakers.push(() => makeCharacter(
  36901. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36902. {
  36903. front: {
  36904. height: math.unit(8 + 4/12, "feet"),
  36905. weight: math.unit(750, "lb"),
  36906. name: "Front",
  36907. image: {
  36908. source: "./media/characters/tanya/front.svg",
  36909. extra: 1749/1615,
  36910. bottom: 33/1782
  36911. }
  36912. },
  36913. },
  36914. [
  36915. {
  36916. name: "Normal",
  36917. height: math.unit(8 + 4/12, "feet"),
  36918. default: true
  36919. },
  36920. ]
  36921. ))
  36922. characterMakers.push(() => makeCharacter(
  36923. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36924. {
  36925. front: {
  36926. height: math.unit(5, "feet"),
  36927. weight: math.unit(225, "lb"),
  36928. name: "Front",
  36929. image: {
  36930. source: "./media/characters/cindy/front.svg",
  36931. extra: 1320/1250,
  36932. bottom: 42/1362
  36933. }
  36934. },
  36935. frontDressed: {
  36936. height: math.unit(5, "feet"),
  36937. weight: math.unit(225, "lb"),
  36938. name: "Front (Dressed)",
  36939. image: {
  36940. source: "./media/characters/cindy/front-dressed.svg",
  36941. extra: 1320/1250,
  36942. bottom: 42/1362
  36943. }
  36944. },
  36945. back: {
  36946. height: math.unit(5, "feet"),
  36947. weight: math.unit(225, "lb"),
  36948. name: "Back",
  36949. image: {
  36950. source: "./media/characters/cindy/back.svg",
  36951. extra: 1384/1346,
  36952. bottom: 14/1398
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Normal",
  36959. height: math.unit(5, "feet"),
  36960. default: true
  36961. },
  36962. ]
  36963. ))
  36964. characterMakers.push(() => makeCharacter(
  36965. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36966. {
  36967. front: {
  36968. height: math.unit(6 + 9/12, "feet"),
  36969. weight: math.unit(440, "lb"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/wilbur-owen/front.svg",
  36973. extra: 1575/1448,
  36974. bottom: 72/1647
  36975. }
  36976. },
  36977. back: {
  36978. height: math.unit(6 + 9/12, "feet"),
  36979. weight: math.unit(440, "lb"),
  36980. name: "Back",
  36981. image: {
  36982. source: "./media/characters/wilbur-owen/back.svg",
  36983. extra: 1578/1445,
  36984. bottom: 36/1614
  36985. }
  36986. },
  36987. },
  36988. [
  36989. {
  36990. name: "Normal",
  36991. height: math.unit(6 + 9/12, "feet"),
  36992. default: true
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36998. {
  36999. front: {
  37000. height: math.unit(6 + 5/12, "feet"),
  37001. weight: math.unit(650, "lb"),
  37002. name: "Front",
  37003. image: {
  37004. source: "./media/characters/keegan/front.svg",
  37005. extra: 2387/2198,
  37006. bottom: 33/2420
  37007. }
  37008. },
  37009. side: {
  37010. height: math.unit(6 + 5/12, "feet"),
  37011. weight: math.unit(650, "lb"),
  37012. name: "Side",
  37013. image: {
  37014. source: "./media/characters/keegan/side.svg",
  37015. extra: 2390/2202,
  37016. bottom: 47/2437
  37017. }
  37018. },
  37019. back: {
  37020. height: math.unit(6 + 5/12, "feet"),
  37021. weight: math.unit(650, "lb"),
  37022. name: "Back",
  37023. image: {
  37024. source: "./media/characters/keegan/back.svg",
  37025. extra: 2418/2268,
  37026. bottom: 15/2433
  37027. }
  37028. },
  37029. frontSfw: {
  37030. height: math.unit(6 + 5/12, "feet"),
  37031. weight: math.unit(650, "lb"),
  37032. name: "Front (SFW)",
  37033. image: {
  37034. source: "./media/characters/keegan/front-sfw.svg",
  37035. extra: 2387/2198,
  37036. bottom: 33/2420
  37037. }
  37038. },
  37039. beans: {
  37040. height: math.unit(1.85, "feet"),
  37041. name: "Beans",
  37042. image: {
  37043. source: "./media/characters/keegan/beans.svg"
  37044. }
  37045. },
  37046. },
  37047. [
  37048. {
  37049. name: "Normal",
  37050. height: math.unit(6 + 5/12, "feet"),
  37051. default: true
  37052. },
  37053. ]
  37054. ))
  37055. characterMakers.push(() => makeCharacter(
  37056. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37057. {
  37058. front: {
  37059. height: math.unit(9, "feet"),
  37060. name: "Front",
  37061. image: {
  37062. source: "./media/characters/colton/front.svg",
  37063. extra: 1589/1326,
  37064. bottom: 139/1728
  37065. }
  37066. },
  37067. },
  37068. [
  37069. {
  37070. name: "Normal",
  37071. height: math.unit(9, "feet"),
  37072. default: true
  37073. },
  37074. ]
  37075. ))
  37076. characterMakers.push(() => makeCharacter(
  37077. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37078. {
  37079. front: {
  37080. height: math.unit(2 + 9/12, "feet"),
  37081. name: "Front",
  37082. image: {
  37083. source: "./media/characters/bora/front.svg",
  37084. extra: 1265/1250,
  37085. bottom: 24/1289
  37086. }
  37087. },
  37088. },
  37089. [
  37090. {
  37091. name: "Normal",
  37092. height: math.unit(2 + 9/12, "feet"),
  37093. default: true
  37094. },
  37095. ]
  37096. ))
  37097. characterMakers.push(() => makeCharacter(
  37098. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37099. {
  37100. front: {
  37101. height: math.unit(8, "feet"),
  37102. name: "Front",
  37103. image: {
  37104. source: "./media/characters/myu-myu/front.svg",
  37105. extra: 1949/1857,
  37106. bottom: 90/2039
  37107. }
  37108. },
  37109. },
  37110. [
  37111. {
  37112. name: "Normal",
  37113. height: math.unit(8, "feet"),
  37114. default: true
  37115. },
  37116. {
  37117. name: "Big",
  37118. height: math.unit(15, "feet")
  37119. },
  37120. {
  37121. name: "BIG",
  37122. height: math.unit(25, "feet")
  37123. },
  37124. ]
  37125. ))
  37126. characterMakers.push(() => makeCharacter(
  37127. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37128. {
  37129. side: {
  37130. height: math.unit(7 + 5/12, "feet"),
  37131. weight: math.unit(2800, "lb"),
  37132. name: "Side",
  37133. image: {
  37134. source: "./media/characters/haloren/side.svg",
  37135. extra: 1793/409,
  37136. bottom: 59/1852
  37137. }
  37138. },
  37139. frontPaw: {
  37140. height: math.unit(2.36, "feet"),
  37141. name: "Front paw",
  37142. image: {
  37143. source: "./media/characters/haloren/front-paw.svg"
  37144. }
  37145. },
  37146. hindPaw: {
  37147. height: math.unit(3.18, "feet"),
  37148. name: "Hind paw",
  37149. image: {
  37150. source: "./media/characters/haloren/hind-paw.svg"
  37151. }
  37152. },
  37153. maw: {
  37154. height: math.unit(5.05, "feet"),
  37155. name: "Maw",
  37156. image: {
  37157. source: "./media/characters/haloren/maw.svg"
  37158. }
  37159. },
  37160. dick: {
  37161. height: math.unit(2.90, "feet"),
  37162. name: "Dick",
  37163. image: {
  37164. source: "./media/characters/haloren/dick.svg"
  37165. }
  37166. },
  37167. },
  37168. [
  37169. {
  37170. name: "Normal",
  37171. height: math.unit(7 + 5/12, "feet"),
  37172. default: true
  37173. },
  37174. {
  37175. name: "Enhanced",
  37176. height: math.unit(14 + 3/12, "feet")
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(171, "cm"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/kimmy/front.svg",
  37188. extra: 1491/1435,
  37189. bottom: 53/1544
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Small",
  37196. height: math.unit(9, "cm")
  37197. },
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(171, "cm"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(8, "feet"),
  37210. weight: math.unit(300, "lb"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/galeboomer/front.svg",
  37214. extra: 4651/4415,
  37215. bottom: 162/4813
  37216. }
  37217. },
  37218. back: {
  37219. height: math.unit(8, "feet"),
  37220. weight: math.unit(300, "lb"),
  37221. name: "Back",
  37222. image: {
  37223. source: "./media/characters/galeboomer/back.svg",
  37224. extra: 4544/4314,
  37225. bottom: 16/4560
  37226. }
  37227. },
  37228. frontAlt: {
  37229. height: math.unit(8, "feet"),
  37230. weight: math.unit(300, "lb"),
  37231. name: "Front (Alt)",
  37232. image: {
  37233. source: "./media/characters/galeboomer/front-alt.svg",
  37234. extra: 4458/4228,
  37235. bottom: 68/4526
  37236. }
  37237. },
  37238. maw: {
  37239. height: math.unit(1.2, "feet"),
  37240. name: "Maw",
  37241. image: {
  37242. source: "./media/characters/galeboomer/maw.svg"
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(8, "feet"),
  37250. default: true
  37251. },
  37252. ]
  37253. ))
  37254. characterMakers.push(() => makeCharacter(
  37255. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37256. {
  37257. front: {
  37258. height: math.unit(5 + 9/12, "feet"),
  37259. weight: math.unit(120, "lb"),
  37260. name: "Front",
  37261. image: {
  37262. source: "./media/characters/chyr/front.svg",
  37263. extra: 1323/1254,
  37264. bottom: 63/1386
  37265. }
  37266. },
  37267. back: {
  37268. height: math.unit(5 + 9/12, "feet"),
  37269. weight: math.unit(120, "lb"),
  37270. name: "Back",
  37271. image: {
  37272. source: "./media/characters/chyr/back.svg",
  37273. extra: 1323/1252,
  37274. bottom: 48/1371
  37275. }
  37276. },
  37277. },
  37278. [
  37279. {
  37280. name: "Normal",
  37281. height: math.unit(5 + 9/12, "feet"),
  37282. default: true
  37283. },
  37284. ]
  37285. ))
  37286. characterMakers.push(() => makeCharacter(
  37287. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37288. {
  37289. front: {
  37290. height: math.unit(7, "feet"),
  37291. weight: math.unit(310, "lb"),
  37292. name: "Front",
  37293. image: {
  37294. source: "./media/characters/solarus/front.svg",
  37295. extra: 2415/2021,
  37296. bottom: 103/2518
  37297. }
  37298. },
  37299. back: {
  37300. height: math.unit(7, "feet"),
  37301. weight: math.unit(310, "lb"),
  37302. name: "Back",
  37303. image: {
  37304. source: "./media/characters/solarus/back.svg",
  37305. extra: 2463/2089,
  37306. bottom: 79/2542
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(7, "feet"),
  37314. default: true
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37320. {
  37321. front: {
  37322. height: math.unit(16, "feet"),
  37323. name: "Front",
  37324. image: {
  37325. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37326. extra: 1844/1780,
  37327. bottom: 58/1902
  37328. }
  37329. },
  37330. winterCoat: {
  37331. height: math.unit(16, "feet"),
  37332. name: "Winter Coat",
  37333. image: {
  37334. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37335. extra: 1807/1775,
  37336. bottom: 69/1876
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Normal",
  37343. height: math.unit(16, "feet"),
  37344. default: true
  37345. },
  37346. {
  37347. name: "Chicago Size",
  37348. height: math.unit(560, "feet")
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37354. {
  37355. front: {
  37356. height: math.unit(11 + 6/12, "feet"),
  37357. weight: math.unit(1366, "lb"),
  37358. name: "Front",
  37359. image: {
  37360. source: "./media/characters/lexor/front.svg",
  37361. extra: 1560/1481,
  37362. bottom: 211/1771
  37363. }
  37364. },
  37365. back: {
  37366. height: math.unit(11 + 6/12, "feet"),
  37367. weight: math.unit(1366, "lb"),
  37368. name: "Back",
  37369. image: {
  37370. source: "./media/characters/lexor/back.svg",
  37371. extra: 1614/1533,
  37372. bottom: 76/1690
  37373. }
  37374. },
  37375. maw: {
  37376. height: math.unit(3, "feet"),
  37377. name: "Maw",
  37378. image: {
  37379. source: "./media/characters/lexor/maw.svg"
  37380. }
  37381. },
  37382. dick: {
  37383. height: math.unit(2.59, "feet"),
  37384. name: "Dick",
  37385. image: {
  37386. source: "./media/characters/lexor/dick.svg"
  37387. }
  37388. },
  37389. },
  37390. [
  37391. {
  37392. name: "Normal",
  37393. height: math.unit(11 + 6/12, "feet"),
  37394. default: true
  37395. },
  37396. ]
  37397. ))
  37398. characterMakers.push(() => makeCharacter(
  37399. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37400. {
  37401. front: {
  37402. height: math.unit(5 + 8/12, "feet"),
  37403. name: "Front",
  37404. image: {
  37405. source: "./media/characters/magnum/front.svg",
  37406. extra: 942/855,
  37407. bottom: 26/968
  37408. }
  37409. },
  37410. },
  37411. [
  37412. {
  37413. name: "Normal",
  37414. height: math.unit(5 + 8/12, "feet"),
  37415. default: true
  37416. },
  37417. ]
  37418. ))
  37419. characterMakers.push(() => makeCharacter(
  37420. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37421. {
  37422. front: {
  37423. height: math.unit(18 + 4/12, "feet"),
  37424. weight: math.unit(1500, "kg"),
  37425. name: "Front",
  37426. image: {
  37427. source: "./media/characters/solas-sharpsman/front.svg",
  37428. extra: 1698/1589,
  37429. bottom: 0/1698
  37430. }
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "Normal",
  37436. height: math.unit(18 + 4/12, "feet"),
  37437. default: true
  37438. },
  37439. ]
  37440. ))
  37441. characterMakers.push(() => makeCharacter(
  37442. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37443. {
  37444. front: {
  37445. height: math.unit(5 + 5/12, "feet"),
  37446. weight: math.unit(180, "lb"),
  37447. name: "Front",
  37448. image: {
  37449. source: "./media/characters/october/front.svg",
  37450. extra: 1800/1650,
  37451. bottom: 0/1800
  37452. }
  37453. },
  37454. frontNsfw: {
  37455. height: math.unit(5 + 5/12, "feet"),
  37456. weight: math.unit(180, "lb"),
  37457. name: "Front (NSFW)",
  37458. image: {
  37459. source: "./media/characters/october/front-nsfw.svg",
  37460. extra: 1392/1307,
  37461. bottom: 42/1434
  37462. }
  37463. },
  37464. },
  37465. [
  37466. {
  37467. name: "Normal",
  37468. height: math.unit(5 + 5/12, "feet"),
  37469. default: true
  37470. },
  37471. ]
  37472. ))
  37473. characterMakers.push(() => makeCharacter(
  37474. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37475. {
  37476. front: {
  37477. height: math.unit(8 + 6/12, "feet"),
  37478. name: "Front",
  37479. image: {
  37480. source: "./media/characters/essynkardi/front.svg",
  37481. extra: 1914/1846,
  37482. bottom: 22/1936
  37483. }
  37484. },
  37485. },
  37486. [
  37487. {
  37488. name: "Normal",
  37489. height: math.unit(8 + 6/12, "feet"),
  37490. default: true
  37491. },
  37492. ]
  37493. ))
  37494. characterMakers.push(() => makeCharacter(
  37495. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37496. {
  37497. front: {
  37498. height: math.unit(6 + 6/12, "feet"),
  37499. weight: math.unit(7, "lb"),
  37500. name: "Front",
  37501. image: {
  37502. source: "./media/characters/icky/front.svg",
  37503. extra: 813/782,
  37504. bottom: 66/879
  37505. }
  37506. },
  37507. back: {
  37508. height: math.unit(6 + 6/12, "feet"),
  37509. weight: math.unit(7, "lb"),
  37510. name: "Back",
  37511. image: {
  37512. source: "./media/characters/icky/back.svg",
  37513. extra: 754/735,
  37514. bottom: 56/810
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(6 + 6/12, "feet"),
  37522. default: true
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37528. {
  37529. front: {
  37530. height: math.unit(15, "feet"),
  37531. name: "Front",
  37532. image: {
  37533. source: "./media/characters/rojas/front.svg",
  37534. extra: 1462/1408,
  37535. bottom: 95/1557
  37536. }
  37537. },
  37538. back: {
  37539. height: math.unit(15, "feet"),
  37540. name: "Back",
  37541. image: {
  37542. source: "./media/characters/rojas/back.svg",
  37543. extra: 1023/954,
  37544. bottom: 28/1051
  37545. }
  37546. },
  37547. },
  37548. [
  37549. {
  37550. name: "Normal",
  37551. height: math.unit(15, "feet"),
  37552. default: true
  37553. },
  37554. ]
  37555. ))
  37556. characterMakers.push(() => makeCharacter(
  37557. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37558. {
  37559. frontHuman: {
  37560. height: math.unit(5 + 7/12, "feet"),
  37561. name: "Front (Human)",
  37562. image: {
  37563. source: "./media/characters/alek-dryagan/front-human.svg",
  37564. extra: 1687/1667,
  37565. bottom: 69/1756
  37566. }
  37567. },
  37568. backHuman: {
  37569. height: math.unit(5 + 7/12, "feet"),
  37570. name: "Back (Human)",
  37571. image: {
  37572. source: "./media/characters/alek-dryagan/back-human.svg",
  37573. extra: 1670/1649,
  37574. bottom: 65/1735
  37575. }
  37576. },
  37577. frontDemi: {
  37578. height: math.unit(65, "feet"),
  37579. name: "Front (Demi)",
  37580. image: {
  37581. source: "./media/characters/alek-dryagan/front-demi.svg",
  37582. extra: 1669/1642,
  37583. bottom: 49/1718
  37584. }
  37585. },
  37586. backDemi: {
  37587. height: math.unit(65, "feet"),
  37588. name: "Back (Demi)",
  37589. image: {
  37590. source: "./media/characters/alek-dryagan/back-demi.svg",
  37591. extra: 1658/1637,
  37592. bottom: 40/1698
  37593. }
  37594. },
  37595. mawHuman: {
  37596. height: math.unit(0.3, "feet"),
  37597. name: "Maw (Human)",
  37598. image: {
  37599. source: "./media/characters/alek-dryagan/maw-human.svg"
  37600. }
  37601. },
  37602. mawDemi: {
  37603. height: math.unit(3.8, "feet"),
  37604. name: "Maw (Demi)",
  37605. image: {
  37606. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37607. }
  37608. },
  37609. },
  37610. [
  37611. {
  37612. name: "Normal",
  37613. height: math.unit(5 + 7/12, "feet"),
  37614. default: true
  37615. },
  37616. ]
  37617. ))
  37618. characterMakers.push(() => makeCharacter(
  37619. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37620. {
  37621. frontHuman: {
  37622. height: math.unit(5 + 2/12, "feet"),
  37623. name: "Front (Human)",
  37624. image: {
  37625. source: "./media/characters/gen/front-human.svg",
  37626. extra: 1627/1538,
  37627. bottom: 71/1698
  37628. }
  37629. },
  37630. backHuman: {
  37631. height: math.unit(5 + 2/12, "feet"),
  37632. name: "Back (Human)",
  37633. image: {
  37634. source: "./media/characters/gen/back-human.svg",
  37635. extra: 1638/1548,
  37636. bottom: 69/1707
  37637. }
  37638. },
  37639. frontDemi: {
  37640. height: math.unit(5 + 2/12, "feet"),
  37641. name: "Front (Demi)",
  37642. image: {
  37643. source: "./media/characters/gen/front-demi.svg",
  37644. extra: 1627/1538,
  37645. bottom: 71/1698
  37646. }
  37647. },
  37648. backDemi: {
  37649. height: math.unit(5 + 2/12, "feet"),
  37650. name: "Back (Demi)",
  37651. image: {
  37652. source: "./media/characters/gen/back-demi.svg",
  37653. extra: 1638/1548,
  37654. bottom: 69/1707
  37655. }
  37656. },
  37657. },
  37658. [
  37659. {
  37660. name: "Normal",
  37661. height: math.unit(5 + 2/12, "feet"),
  37662. default: true
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37668. {
  37669. frontImp: {
  37670. height: math.unit(1 + 11/12, "feet"),
  37671. name: "Front (Imp)",
  37672. image: {
  37673. source: "./media/characters/max-kobold/front-imp.svg",
  37674. extra: 1238/1134,
  37675. bottom: 81/1319
  37676. }
  37677. },
  37678. backImp: {
  37679. height: math.unit(1 + 11/12, "feet"),
  37680. name: "Back (Imp)",
  37681. image: {
  37682. source: "./media/characters/max-kobold/back-imp.svg",
  37683. extra: 1334/1175,
  37684. bottom: 34/1368
  37685. }
  37686. },
  37687. frontDemi: {
  37688. height: math.unit(5 + 9/12, "feet"),
  37689. name: "Front (Demi)",
  37690. image: {
  37691. source: "./media/characters/max-kobold/front-demi.svg",
  37692. extra: 1715/1685,
  37693. bottom: 54/1769
  37694. }
  37695. },
  37696. backDemi: {
  37697. height: math.unit(5 + 9/12, "feet"),
  37698. name: "Back (Demi)",
  37699. image: {
  37700. source: "./media/characters/max-kobold/back-demi.svg",
  37701. extra: 1752/1729,
  37702. bottom: 41/1793
  37703. }
  37704. },
  37705. handImp: {
  37706. height: math.unit(0.45, "feet"),
  37707. name: "Hand (Imp)",
  37708. image: {
  37709. source: "./media/characters/max-kobold/hand.svg"
  37710. }
  37711. },
  37712. pawImp: {
  37713. height: math.unit(0.46, "feet"),
  37714. name: "Paw (Imp)",
  37715. image: {
  37716. source: "./media/characters/max-kobold/paw.svg"
  37717. }
  37718. },
  37719. handDemi: {
  37720. height: math.unit(0.80, "feet"),
  37721. name: "Hand (Demi)",
  37722. image: {
  37723. source: "./media/characters/max-kobold/hand.svg"
  37724. }
  37725. },
  37726. pawDemi: {
  37727. height: math.unit(1.1, "feet"),
  37728. name: "Paw (Demi)",
  37729. image: {
  37730. source: "./media/characters/max-kobold/paw.svg"
  37731. }
  37732. },
  37733. headImp: {
  37734. height: math.unit(1.33, "feet"),
  37735. name: "Head (Imp)",
  37736. image: {
  37737. source: "./media/characters/max-kobold/head-imp.svg"
  37738. }
  37739. },
  37740. mawImp: {
  37741. height: math.unit(0.75, "feet"),
  37742. name: "Maw (Imp)",
  37743. image: {
  37744. source: "./media/characters/max-kobold/maw-imp.svg"
  37745. }
  37746. },
  37747. mawDemi: {
  37748. height: math.unit(0.42, "feet"),
  37749. name: "Maw (Demi)",
  37750. image: {
  37751. source: "./media/characters/max-kobold/maw-demi.svg"
  37752. }
  37753. },
  37754. },
  37755. [
  37756. {
  37757. name: "Normal",
  37758. height: math.unit(1 + 11/12, "feet"),
  37759. default: true
  37760. },
  37761. ]
  37762. ))
  37763. characterMakers.push(() => makeCharacter(
  37764. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37765. {
  37766. front: {
  37767. height: math.unit(7 + 5/12, "feet"),
  37768. name: "Front",
  37769. image: {
  37770. source: "./media/characters/carbon/front.svg",
  37771. extra: 1754/1689,
  37772. bottom: 65/1819
  37773. }
  37774. },
  37775. back: {
  37776. height: math.unit(7 + 5/12, "feet"),
  37777. name: "Back",
  37778. image: {
  37779. source: "./media/characters/carbon/back.svg",
  37780. extra: 1762/1695,
  37781. bottom: 24/1786
  37782. }
  37783. },
  37784. frontGigantamax: {
  37785. height: math.unit(150, "feet"),
  37786. name: "Front (Gigantamax)",
  37787. image: {
  37788. source: "./media/characters/carbon/front-gigantamax.svg",
  37789. extra: 1826/1669,
  37790. bottom: 59/1885
  37791. }
  37792. },
  37793. backGigantamax: {
  37794. height: math.unit(150, "feet"),
  37795. name: "Back (Gigantamax)",
  37796. image: {
  37797. source: "./media/characters/carbon/back-gigantamax.svg",
  37798. extra: 1796/1653,
  37799. bottom: 53/1849
  37800. }
  37801. },
  37802. maw: {
  37803. height: math.unit(0.48, "feet"),
  37804. name: "Maw",
  37805. image: {
  37806. source: "./media/characters/carbon/maw.svg"
  37807. }
  37808. },
  37809. mawGigantamax: {
  37810. height: math.unit(7.5, "feet"),
  37811. name: "Maw (Gigantamax)",
  37812. image: {
  37813. source: "./media/characters/carbon/maw-gigantamax.svg"
  37814. }
  37815. },
  37816. },
  37817. [
  37818. {
  37819. name: "Normal",
  37820. height: math.unit(7 + 5/12, "feet"),
  37821. default: true
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(6, "feet"),
  37830. name: "Front",
  37831. image: {
  37832. source: "./media/characters/maverick/front.svg",
  37833. extra: 1672/1661,
  37834. bottom: 85/1757
  37835. }
  37836. },
  37837. back: {
  37838. height: math.unit(6, "feet"),
  37839. name: "Back",
  37840. image: {
  37841. source: "./media/characters/maverick/back.svg",
  37842. extra: 1642/1631,
  37843. bottom: 38/1680
  37844. }
  37845. },
  37846. },
  37847. [
  37848. {
  37849. name: "Normal",
  37850. height: math.unit(6, "feet"),
  37851. default: true
  37852. },
  37853. ]
  37854. ))
  37855. characterMakers.push(() => makeCharacter(
  37856. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37857. {
  37858. front: {
  37859. height: math.unit(15, "feet"),
  37860. weight: math.unit(615, "lb"),
  37861. name: "Front",
  37862. image: {
  37863. source: "./media/characters/grockle/front.svg",
  37864. extra: 1535/1427,
  37865. bottom: 56/1591
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Normal",
  37872. height: math.unit(15, "feet"),
  37873. default: true
  37874. },
  37875. {
  37876. name: "Large",
  37877. height: math.unit(150, "feet")
  37878. },
  37879. {
  37880. name: "Macro",
  37881. height: math.unit(1876, "feet")
  37882. },
  37883. {
  37884. name: "Mega Macro",
  37885. height: math.unit(121940, "feet")
  37886. },
  37887. {
  37888. name: "Giga Macro",
  37889. height: math.unit(750, "km")
  37890. },
  37891. {
  37892. name: "Tera Macro",
  37893. height: math.unit(750000, "km")
  37894. },
  37895. {
  37896. name: "Galactic",
  37897. height: math.unit(1.4e5, "km")
  37898. },
  37899. {
  37900. name: "Godlike",
  37901. height: math.unit(9.8e280, "galaxies")
  37902. },
  37903. ]
  37904. ))
  37905. characterMakers.push(() => makeCharacter(
  37906. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37907. {
  37908. front: {
  37909. height: math.unit(11, "meters"),
  37910. weight: math.unit(20, "tonnes"),
  37911. name: "Front",
  37912. image: {
  37913. source: "./media/characters/alistair/front.svg",
  37914. extra: 1265/1009,
  37915. bottom: 93/1358
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(11, "meters"),
  37923. default: true
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(5 + 8/12, "feet"),
  37932. name: "Front",
  37933. image: {
  37934. source: "./media/characters/haruka/front.svg",
  37935. extra: 2012/1952,
  37936. bottom: 0/2012
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(5 + 8/12, "feet"),
  37944. default: true
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37950. {
  37951. back: {
  37952. height: math.unit(9, "feet"),
  37953. name: "Back",
  37954. image: {
  37955. source: "./media/characters/vivian-sylveon/back.svg",
  37956. extra: 1853/1714,
  37957. bottom: 0/1853
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal",
  37964. height: math.unit(9, "feet"),
  37965. default: true
  37966. },
  37967. {
  37968. name: "Macro",
  37969. height: math.unit(500, "feet")
  37970. },
  37971. {
  37972. name: "Megamacro",
  37973. height: math.unit(600, "miles")
  37974. },
  37975. {
  37976. name: "Gigamacro",
  37977. height: math.unit(30000, "miles")
  37978. },
  37979. ]
  37980. ))
  37981. characterMakers.push(() => makeCharacter(
  37982. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37983. {
  37984. anthro: {
  37985. height: math.unit(5 + 10/12, "feet"),
  37986. weight: math.unit(100, "lb"),
  37987. name: "Anthro",
  37988. image: {
  37989. source: "./media/characters/daiki/anthro.svg",
  37990. extra: 1115/1027,
  37991. bottom: 69/1184
  37992. }
  37993. },
  37994. feral: {
  37995. height: math.unit(200, "feet"),
  37996. name: "Feral",
  37997. image: {
  37998. source: "./media/characters/daiki/feral.svg",
  37999. extra: 1256/313,
  38000. bottom: 39/1295
  38001. }
  38002. },
  38003. feralHead: {
  38004. height: math.unit(171, "feet"),
  38005. name: "Feral Head",
  38006. image: {
  38007. source: "./media/characters/daiki/feral-head.svg"
  38008. }
  38009. },
  38010. manaDragon: {
  38011. height: math.unit(170, "meters"),
  38012. name: "Mana-dragon",
  38013. image: {
  38014. source: "./media/characters/daiki/mana-dragon.svg",
  38015. extra: 763/420,
  38016. bottom: 97/860
  38017. }
  38018. },
  38019. },
  38020. [
  38021. {
  38022. name: "Normal",
  38023. height: math.unit(5 + 10/12, "feet"),
  38024. default: true
  38025. },
  38026. ]
  38027. ))
  38028. characterMakers.push(() => makeCharacter(
  38029. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38030. {
  38031. fullyEquippedFront: {
  38032. height: math.unit(3 + 1/12, "feet"),
  38033. weight: math.unit(24, "lb"),
  38034. name: "Fully Equipped (Front)",
  38035. image: {
  38036. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38037. extra: 687/605,
  38038. bottom: 18/705
  38039. }
  38040. },
  38041. fullyEquippedBack: {
  38042. height: math.unit(3 + 1/12, "feet"),
  38043. weight: math.unit(24, "lb"),
  38044. name: "Fully Equipped (Back)",
  38045. image: {
  38046. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38047. extra: 689/590,
  38048. bottom: 18/707
  38049. }
  38050. },
  38051. dailyWear: {
  38052. height: math.unit(3 + 1/12, "feet"),
  38053. weight: math.unit(24, "lb"),
  38054. name: "Daily Wear",
  38055. image: {
  38056. source: "./media/characters/tea-spot/daily-wear.svg",
  38057. extra: 701/620,
  38058. bottom: 21/722
  38059. }
  38060. },
  38061. maidWork: {
  38062. height: math.unit(3 + 1/12, "feet"),
  38063. weight: math.unit(24, "lb"),
  38064. name: "Maid Work",
  38065. image: {
  38066. source: "./media/characters/tea-spot/maid-work.svg",
  38067. extra: 693/609,
  38068. bottom: 15/708
  38069. }
  38070. },
  38071. },
  38072. [
  38073. {
  38074. name: "Normal",
  38075. height: math.unit(3 + 1/12, "feet"),
  38076. default: true
  38077. },
  38078. ]
  38079. ))
  38080. characterMakers.push(() => makeCharacter(
  38081. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38082. {
  38083. front: {
  38084. height: math.unit(175, "cm"),
  38085. weight: math.unit(75, "kg"),
  38086. name: "Front",
  38087. image: {
  38088. source: "./media/characters/chee/front.svg",
  38089. extra: 1796/1740,
  38090. bottom: 40/1836
  38091. }
  38092. },
  38093. },
  38094. [
  38095. {
  38096. name: "Micro-Micro",
  38097. height: math.unit(1, "nm")
  38098. },
  38099. {
  38100. name: "Micro-erst",
  38101. height: math.unit(1, "micrometer")
  38102. },
  38103. {
  38104. name: "Micro-er",
  38105. height: math.unit(1, "cm")
  38106. },
  38107. {
  38108. name: "Normal",
  38109. height: math.unit(175, "cm"),
  38110. default: true
  38111. },
  38112. {
  38113. name: "Macro",
  38114. height: math.unit(100, "m")
  38115. },
  38116. {
  38117. name: "Macro-er",
  38118. height: math.unit(1, "km")
  38119. },
  38120. {
  38121. name: "Macro-erst",
  38122. height: math.unit(10, "km")
  38123. },
  38124. {
  38125. name: "Macro-Macro",
  38126. height: math.unit(100, "km")
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38132. {
  38133. front: {
  38134. height: math.unit(11 + 9/12, "feet"),
  38135. weight: math.unit(935, "lb"),
  38136. name: "Front",
  38137. image: {
  38138. source: "./media/characters/kingsley/front.svg",
  38139. extra: 1803/1674,
  38140. bottom: 127/1930
  38141. }
  38142. },
  38143. frontNude: {
  38144. height: math.unit(11 + 9/12, "feet"),
  38145. weight: math.unit(935, "lb"),
  38146. name: "Front (Nude)",
  38147. image: {
  38148. source: "./media/characters/kingsley/front-nude.svg",
  38149. extra: 1803/1674,
  38150. bottom: 127/1930
  38151. }
  38152. },
  38153. },
  38154. [
  38155. {
  38156. name: "Normal",
  38157. height: math.unit(11 + 9/12, "feet"),
  38158. default: true
  38159. },
  38160. ]
  38161. ))
  38162. characterMakers.push(() => makeCharacter(
  38163. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38164. {
  38165. side: {
  38166. height: math.unit(9, "feet"),
  38167. name: "Side",
  38168. image: {
  38169. source: "./media/characters/rymel/side.svg",
  38170. extra: 792/469,
  38171. bottom: 121/913
  38172. }
  38173. },
  38174. maw: {
  38175. height: math.unit(2.4, "meters"),
  38176. name: "Maw",
  38177. image: {
  38178. source: "./media/characters/rymel/maw.svg"
  38179. }
  38180. },
  38181. },
  38182. [
  38183. {
  38184. name: "House Drake",
  38185. height: math.unit(2, "feet")
  38186. },
  38187. {
  38188. name: "Reduced",
  38189. height: math.unit(4.5, "feet")
  38190. },
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(9, "feet"),
  38194. default: true
  38195. },
  38196. ]
  38197. ))
  38198. characterMakers.push(() => makeCharacter(
  38199. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38200. {
  38201. front: {
  38202. height: math.unit(1.74, "meters"),
  38203. weight: math.unit(55, "kg"),
  38204. name: "Front",
  38205. image: {
  38206. source: "./media/characters/rubus/front.svg",
  38207. extra: 1894/1742,
  38208. bottom: 44/1938
  38209. }
  38210. },
  38211. },
  38212. [
  38213. {
  38214. name: "Normal",
  38215. height: math.unit(1.74, "meters"),
  38216. default: true
  38217. },
  38218. ]
  38219. ))
  38220. characterMakers.push(() => makeCharacter(
  38221. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38222. {
  38223. front: {
  38224. height: math.unit(5 + 2/12, "feet"),
  38225. weight: math.unit(112, "lb"),
  38226. name: "Front",
  38227. image: {
  38228. source: "./media/characters/cassie-kingston/front.svg",
  38229. extra: 1438/1390,
  38230. bottom: 47/1485
  38231. }
  38232. },
  38233. },
  38234. [
  38235. {
  38236. name: "Normal",
  38237. height: math.unit(5 + 2/12, "feet"),
  38238. default: true
  38239. },
  38240. {
  38241. name: "Macro",
  38242. height: math.unit(128, "feet")
  38243. },
  38244. {
  38245. name: "Megamacro",
  38246. height: math.unit(2.56, "miles")
  38247. },
  38248. ]
  38249. ))
  38250. characterMakers.push(() => makeCharacter(
  38251. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38252. {
  38253. front: {
  38254. height: math.unit(7, "feet"),
  38255. name: "Front",
  38256. image: {
  38257. source: "./media/characters/fox/front.svg",
  38258. extra: 1798/1703,
  38259. bottom: 55/1853
  38260. }
  38261. },
  38262. back: {
  38263. height: math.unit(7, "feet"),
  38264. name: "Back",
  38265. image: {
  38266. source: "./media/characters/fox/back.svg",
  38267. extra: 1748/1649,
  38268. bottom: 32/1780
  38269. }
  38270. },
  38271. head: {
  38272. height: math.unit(1.95, "feet"),
  38273. name: "Head",
  38274. image: {
  38275. source: "./media/characters/fox/head.svg"
  38276. }
  38277. },
  38278. dick: {
  38279. height: math.unit(1.33, "feet"),
  38280. name: "Dick",
  38281. image: {
  38282. source: "./media/characters/fox/dick.svg"
  38283. }
  38284. },
  38285. foot: {
  38286. height: math.unit(1, "feet"),
  38287. name: "Foot",
  38288. image: {
  38289. source: "./media/characters/fox/foot.svg"
  38290. }
  38291. },
  38292. paw: {
  38293. height: math.unit(0.92, "feet"),
  38294. name: "Paw",
  38295. image: {
  38296. source: "./media/characters/fox/paw.svg"
  38297. }
  38298. },
  38299. },
  38300. [
  38301. {
  38302. name: "Small",
  38303. height: math.unit(3, "inches")
  38304. },
  38305. {
  38306. name: "\"Realistic\"",
  38307. height: math.unit(7, "feet")
  38308. },
  38309. {
  38310. name: "Normal",
  38311. height: math.unit(150, "feet"),
  38312. default: true
  38313. },
  38314. {
  38315. name: "BIG",
  38316. height: math.unit(1200, "feet")
  38317. },
  38318. {
  38319. name: "👀",
  38320. height: math.unit(5, "miles")
  38321. },
  38322. {
  38323. name: "👀👀👀",
  38324. height: math.unit(64, "miles")
  38325. },
  38326. ]
  38327. ))
  38328. characterMakers.push(() => makeCharacter(
  38329. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38330. {
  38331. front: {
  38332. height: math.unit(625, "feet"),
  38333. name: "Front",
  38334. image: {
  38335. source: "./media/characters/asonja-rossa/front.svg",
  38336. extra: 1833/1686,
  38337. bottom: 24/1857
  38338. }
  38339. },
  38340. back: {
  38341. height: math.unit(625, "feet"),
  38342. name: "Back",
  38343. image: {
  38344. source: "./media/characters/asonja-rossa/back.svg",
  38345. extra: 1852/1753,
  38346. bottom: 26/1878
  38347. }
  38348. },
  38349. },
  38350. [
  38351. {
  38352. name: "Macro",
  38353. height: math.unit(625, "feet"),
  38354. default: true
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38360. {
  38361. side: {
  38362. height: math.unit(8, "feet"),
  38363. name: "Side",
  38364. image: {
  38365. source: "./media/characters/rezukii/side.svg",
  38366. extra: 979/542,
  38367. bottom: 87/1066
  38368. }
  38369. },
  38370. sitting: {
  38371. height: math.unit(14.6, "feet"),
  38372. name: "Sitting",
  38373. image: {
  38374. source: "./media/characters/rezukii/sitting.svg",
  38375. extra: 1023/813,
  38376. bottom: 45/1068
  38377. }
  38378. },
  38379. },
  38380. [
  38381. {
  38382. name: "Tiny",
  38383. height: math.unit(2, "feet")
  38384. },
  38385. {
  38386. name: "Smol",
  38387. height: math.unit(4, "feet")
  38388. },
  38389. {
  38390. name: "Normal",
  38391. height: math.unit(8, "feet"),
  38392. default: true
  38393. },
  38394. {
  38395. name: "Big",
  38396. height: math.unit(12, "feet")
  38397. },
  38398. {
  38399. name: "Macro",
  38400. height: math.unit(30, "feet")
  38401. },
  38402. ]
  38403. ))
  38404. characterMakers.push(() => makeCharacter(
  38405. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38406. {
  38407. front: {
  38408. height: math.unit(14, "feet"),
  38409. weight: math.unit(9.5, "tonnes"),
  38410. name: "Front",
  38411. image: {
  38412. source: "./media/characters/dawnheart/front.svg",
  38413. extra: 2792/2675,
  38414. bottom: 64/2856
  38415. }
  38416. },
  38417. },
  38418. [
  38419. {
  38420. name: "Normal",
  38421. height: math.unit(14, "feet"),
  38422. default: true
  38423. },
  38424. ]
  38425. ))
  38426. characterMakers.push(() => makeCharacter(
  38427. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38428. {
  38429. front: {
  38430. height: math.unit(1.7, "m"),
  38431. name: "Front",
  38432. image: {
  38433. source: "./media/characters/gladi/front.svg",
  38434. extra: 1460/1362,
  38435. bottom: 19/1479
  38436. }
  38437. },
  38438. back: {
  38439. height: math.unit(1.7, "m"),
  38440. name: "Back",
  38441. image: {
  38442. source: "./media/characters/gladi/back.svg",
  38443. extra: 1459/1357,
  38444. bottom: 12/1471
  38445. }
  38446. },
  38447. feral: {
  38448. height: math.unit(2.05, "m"),
  38449. name: "Feral",
  38450. image: {
  38451. source: "./media/characters/gladi/feral.svg",
  38452. extra: 821/557,
  38453. bottom: 91/912
  38454. }
  38455. },
  38456. },
  38457. [
  38458. {
  38459. name: "Shortest",
  38460. height: math.unit(70, "cm")
  38461. },
  38462. {
  38463. name: "Normal",
  38464. height: math.unit(1.7, "m")
  38465. },
  38466. {
  38467. name: "Macro",
  38468. height: math.unit(10, "m"),
  38469. default: true
  38470. },
  38471. {
  38472. name: "Tallest",
  38473. height: math.unit(200, "m")
  38474. },
  38475. ]
  38476. ))
  38477. characterMakers.push(() => makeCharacter(
  38478. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38479. {
  38480. front: {
  38481. height: math.unit(5 + 7/12, "feet"),
  38482. weight: math.unit(2, "tons"),
  38483. name: "Front",
  38484. image: {
  38485. source: "./media/characters/erdno/front.svg",
  38486. extra: 1234/1129,
  38487. bottom: 35/1269
  38488. }
  38489. },
  38490. angled: {
  38491. height: math.unit(5 + 7/12, "feet"),
  38492. weight: math.unit(2, "tons"),
  38493. name: "Angled",
  38494. image: {
  38495. source: "./media/characters/erdno/angled.svg",
  38496. extra: 1185/1139,
  38497. bottom: 36/1221
  38498. }
  38499. },
  38500. side: {
  38501. height: math.unit(5 + 7/12, "feet"),
  38502. weight: math.unit(2, "tons"),
  38503. name: "Side",
  38504. image: {
  38505. source: "./media/characters/erdno/side.svg",
  38506. extra: 1191/1144,
  38507. bottom: 40/1231
  38508. }
  38509. },
  38510. back: {
  38511. height: math.unit(5 + 7/12, "feet"),
  38512. weight: math.unit(2, "tons"),
  38513. name: "Back",
  38514. image: {
  38515. source: "./media/characters/erdno/back.svg",
  38516. extra: 1202/1146,
  38517. bottom: 17/1219
  38518. }
  38519. },
  38520. frontNsfw: {
  38521. height: math.unit(5 + 7/12, "feet"),
  38522. weight: math.unit(2, "tons"),
  38523. name: "Front (NSFW)",
  38524. image: {
  38525. source: "./media/characters/erdno/front-nsfw.svg",
  38526. extra: 1234/1129,
  38527. bottom: 35/1269
  38528. }
  38529. },
  38530. angledNsfw: {
  38531. height: math.unit(5 + 7/12, "feet"),
  38532. weight: math.unit(2, "tons"),
  38533. name: "Angled (NSFW)",
  38534. image: {
  38535. source: "./media/characters/erdno/angled-nsfw.svg",
  38536. extra: 1185/1139,
  38537. bottom: 36/1221
  38538. }
  38539. },
  38540. sideNsfw: {
  38541. height: math.unit(5 + 7/12, "feet"),
  38542. weight: math.unit(2, "tons"),
  38543. name: "Side (NSFW)",
  38544. image: {
  38545. source: "./media/characters/erdno/side-nsfw.svg",
  38546. extra: 1191/1144,
  38547. bottom: 40/1231
  38548. }
  38549. },
  38550. backNsfw: {
  38551. height: math.unit(5 + 7/12, "feet"),
  38552. weight: math.unit(2, "tons"),
  38553. name: "Back (NSFW)",
  38554. image: {
  38555. source: "./media/characters/erdno/back-nsfw.svg",
  38556. extra: 1202/1146,
  38557. bottom: 17/1219
  38558. }
  38559. },
  38560. frontHyper: {
  38561. height: math.unit(5 + 7/12, "feet"),
  38562. weight: math.unit(2, "tons"),
  38563. name: "Front (Hyper)",
  38564. image: {
  38565. source: "./media/characters/erdno/front-hyper.svg",
  38566. extra: 1298/1136,
  38567. bottom: 35/1333
  38568. }
  38569. },
  38570. },
  38571. [
  38572. {
  38573. name: "Normal",
  38574. height: math.unit(5 + 7/12, "feet"),
  38575. default: true
  38576. },
  38577. {
  38578. name: "Big",
  38579. height: math.unit(5.7, "meters")
  38580. },
  38581. {
  38582. name: "Macro",
  38583. height: math.unit(5.7, "kilometers")
  38584. },
  38585. {
  38586. name: "Megamacro",
  38587. height: math.unit(5.7, "earths")
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(5 + 10/12, "feet"),
  38596. weight: math.unit(150, "lb"),
  38597. name: "Front",
  38598. image: {
  38599. source: "./media/characters/jamie/front.svg",
  38600. extra: 1908/1768,
  38601. bottom: 19/1927
  38602. }
  38603. },
  38604. },
  38605. [
  38606. {
  38607. name: "Minimum",
  38608. height: math.unit(2, "cm")
  38609. },
  38610. {
  38611. name: "Micro",
  38612. height: math.unit(3, "inches")
  38613. },
  38614. {
  38615. name: "Normal",
  38616. height: math.unit(5 + 10/12, "feet"),
  38617. default: true
  38618. },
  38619. {
  38620. name: "Macro",
  38621. height: math.unit(150, "feet")
  38622. },
  38623. {
  38624. name: "Megamacro",
  38625. height: math.unit(10000, "m")
  38626. },
  38627. ]
  38628. ))
  38629. characterMakers.push(() => makeCharacter(
  38630. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38631. {
  38632. front: {
  38633. height: math.unit(2, "meters"),
  38634. weight: math.unit(100, "kg"),
  38635. name: "Front",
  38636. image: {
  38637. source: "./media/characters/shiron/front.svg",
  38638. extra: 2103/1985,
  38639. bottom: 98/2201
  38640. }
  38641. },
  38642. back: {
  38643. height: math.unit(2, "meters"),
  38644. weight: math.unit(100, "kg"),
  38645. name: "Back",
  38646. image: {
  38647. source: "./media/characters/shiron/back.svg",
  38648. extra: 2110/2015,
  38649. bottom: 89/2199
  38650. }
  38651. },
  38652. hand: {
  38653. height: math.unit(0.96, "feet"),
  38654. name: "Hand",
  38655. image: {
  38656. source: "./media/characters/shiron/hand.svg"
  38657. }
  38658. },
  38659. foot: {
  38660. height: math.unit(1.464, "feet"),
  38661. name: "Foot",
  38662. image: {
  38663. source: "./media/characters/shiron/foot.svg"
  38664. }
  38665. },
  38666. },
  38667. [
  38668. {
  38669. name: "Normal",
  38670. height: math.unit(2, "meters")
  38671. },
  38672. {
  38673. name: "Macro",
  38674. height: math.unit(500, "meters"),
  38675. default: true
  38676. },
  38677. {
  38678. name: "Megamacro",
  38679. height: math.unit(20, "km")
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38685. {
  38686. front: {
  38687. height: math.unit(6, "feet"),
  38688. name: "Front",
  38689. image: {
  38690. source: "./media/characters/sam/front.svg",
  38691. extra: 849/826,
  38692. bottom: 19/868
  38693. }
  38694. },
  38695. },
  38696. [
  38697. {
  38698. name: "Normal",
  38699. height: math.unit(6, "feet"),
  38700. default: true
  38701. },
  38702. ]
  38703. ))
  38704. characterMakers.push(() => makeCharacter(
  38705. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38706. {
  38707. front: {
  38708. height: math.unit(8 + 4/12, "feet"),
  38709. weight: math.unit(122, "kg"),
  38710. name: "Front",
  38711. image: {
  38712. source: "./media/characters/namori-kurogawa/front.svg",
  38713. extra: 1894/1576,
  38714. bottom: 34/1928
  38715. }
  38716. },
  38717. },
  38718. [
  38719. {
  38720. name: "Normal",
  38721. height: math.unit(8 + 4/12, "feet"),
  38722. default: true
  38723. },
  38724. ]
  38725. ))
  38726. characterMakers.push(() => makeCharacter(
  38727. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38728. {
  38729. front: {
  38730. height: math.unit(9, "feet"),
  38731. weight: math.unit(621, "lb"),
  38732. name: "Front",
  38733. image: {
  38734. source: "./media/characters/unmru/front.svg",
  38735. extra: 1853/1747,
  38736. bottom: 73/1926
  38737. }
  38738. },
  38739. side: {
  38740. height: math.unit(9, "feet"),
  38741. weight: math.unit(621, "lb"),
  38742. name: "Side",
  38743. image: {
  38744. source: "./media/characters/unmru/side.svg",
  38745. extra: 1781/1671,
  38746. bottom: 127/1908
  38747. }
  38748. },
  38749. back: {
  38750. height: math.unit(9, "feet"),
  38751. weight: math.unit(621, "lb"),
  38752. name: "Back",
  38753. image: {
  38754. source: "./media/characters/unmru/back.svg",
  38755. extra: 1894/1765,
  38756. bottom: 75/1969
  38757. }
  38758. },
  38759. dick: {
  38760. height: math.unit(3, "feet"),
  38761. weight: math.unit(35, "lb"),
  38762. name: "Dick",
  38763. image: {
  38764. source: "./media/characters/unmru/dick.svg"
  38765. }
  38766. },
  38767. },
  38768. [
  38769. {
  38770. name: "Normal",
  38771. height: math.unit(9, "feet")
  38772. },
  38773. {
  38774. name: "Natural",
  38775. height: math.unit(27, "feet"),
  38776. default: true
  38777. },
  38778. {
  38779. name: "Giant",
  38780. height: math.unit(90, "feet")
  38781. },
  38782. {
  38783. name: "Kaiju",
  38784. height: math.unit(270, "feet")
  38785. },
  38786. {
  38787. name: "Macro",
  38788. height: math.unit(900, "feet")
  38789. },
  38790. {
  38791. name: "Macro+",
  38792. height: math.unit(2700, "feet")
  38793. },
  38794. {
  38795. name: "Megamacro",
  38796. height: math.unit(9000, "feet")
  38797. },
  38798. {
  38799. name: "City-Crushing",
  38800. height: math.unit(27000, "feet")
  38801. },
  38802. {
  38803. name: "Mountain-Mashing",
  38804. height: math.unit(90000, "feet")
  38805. },
  38806. {
  38807. name: "Earth-Eclipsing",
  38808. height: math.unit(2.7e8, "feet")
  38809. },
  38810. {
  38811. name: "Sol-Swallowing",
  38812. height: math.unit(9e10, "feet")
  38813. },
  38814. {
  38815. name: "Majoris-Munching",
  38816. height: math.unit(2.7e13, "feet")
  38817. },
  38818. ]
  38819. ))
  38820. characterMakers.push(() => makeCharacter(
  38821. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38822. {
  38823. front: {
  38824. height: math.unit(1, "inch"),
  38825. name: "Front",
  38826. image: {
  38827. source: "./media/characters/squeaks-mouse/front.svg",
  38828. extra: 352/308,
  38829. bottom: 25/377
  38830. }
  38831. },
  38832. },
  38833. [
  38834. {
  38835. name: "Micro",
  38836. height: math.unit(1, "inch"),
  38837. default: true
  38838. },
  38839. ]
  38840. ))
  38841. characterMakers.push(() => makeCharacter(
  38842. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38843. {
  38844. side: {
  38845. height: math.unit(35, "feet"),
  38846. name: "Side",
  38847. image: {
  38848. source: "./media/characters/sayko/side.svg",
  38849. extra: 1697/1021,
  38850. bottom: 82/1779
  38851. }
  38852. },
  38853. head: {
  38854. height: math.unit(16, "feet"),
  38855. name: "Head",
  38856. image: {
  38857. source: "./media/characters/sayko/head.svg"
  38858. }
  38859. },
  38860. forepaw: {
  38861. height: math.unit(7.85, "feet"),
  38862. name: "Forepaw",
  38863. image: {
  38864. source: "./media/characters/sayko/forepaw.svg"
  38865. }
  38866. },
  38867. hindpaw: {
  38868. height: math.unit(8.8, "feet"),
  38869. name: "Hindpaw",
  38870. image: {
  38871. source: "./media/characters/sayko/hindpaw.svg"
  38872. }
  38873. },
  38874. },
  38875. [
  38876. {
  38877. name: "Normal",
  38878. height: math.unit(35, "feet"),
  38879. default: true
  38880. },
  38881. {
  38882. name: "Colossus",
  38883. height: math.unit(100, "meters")
  38884. },
  38885. {
  38886. name: "\"Small\" Deity",
  38887. height: math.unit(1, "km")
  38888. },
  38889. {
  38890. name: "\"Large\" Deity",
  38891. height: math.unit(15, "km")
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38897. {
  38898. front: {
  38899. height: math.unit(6, "feet"),
  38900. weight: math.unit(250, "lb"),
  38901. name: "Front",
  38902. image: {
  38903. source: "./media/characters/mukiro/front.svg",
  38904. extra: 1368/1310,
  38905. bottom: 34/1402
  38906. }
  38907. },
  38908. },
  38909. [
  38910. {
  38911. name: "Normal",
  38912. height: math.unit(6, "feet"),
  38913. default: true
  38914. },
  38915. ]
  38916. ))
  38917. characterMakers.push(() => makeCharacter(
  38918. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38919. {
  38920. front: {
  38921. height: math.unit(12 + 4/12, "feet"),
  38922. name: "Front",
  38923. image: {
  38924. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38925. extra: 1346/1311,
  38926. bottom: 65/1411
  38927. }
  38928. },
  38929. },
  38930. [
  38931. {
  38932. name: "Base",
  38933. height: math.unit(12 + 4/12, "feet"),
  38934. default: true
  38935. },
  38936. {
  38937. name: "Macro",
  38938. height: math.unit(150, "feet")
  38939. },
  38940. {
  38941. name: "Mega",
  38942. height: math.unit(2, "miles")
  38943. },
  38944. {
  38945. name: "Demi God",
  38946. height: math.unit(4, "AU")
  38947. },
  38948. {
  38949. name: "God Size",
  38950. height: math.unit(1, "universe")
  38951. },
  38952. ]
  38953. ))
  38954. characterMakers.push(() => makeCharacter(
  38955. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38956. {
  38957. front: {
  38958. height: math.unit(3 + 3/12, "feet"),
  38959. weight: math.unit(88, "lb"),
  38960. name: "Front",
  38961. image: {
  38962. source: "./media/characters/trey/front.svg",
  38963. extra: 1815/1509,
  38964. bottom: 60/1875
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Normal",
  38971. height: math.unit(3 + 3/12, "feet"),
  38972. default: true
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38978. {
  38979. front: {
  38980. height: math.unit(4, "meters"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/adelonda/front.svg",
  38984. extra: 1077/982,
  38985. bottom: 39/1116
  38986. }
  38987. },
  38988. back: {
  38989. height: math.unit(4, "meters"),
  38990. name: "Back",
  38991. image: {
  38992. source: "./media/characters/adelonda/back.svg",
  38993. extra: 1105/1003,
  38994. bottom: 25/1130
  38995. }
  38996. },
  38997. feral: {
  38998. height: math.unit(40/1.5, "meters"),
  38999. name: "Feral",
  39000. image: {
  39001. source: "./media/characters/adelonda/feral.svg",
  39002. extra: 597/271,
  39003. bottom: 387/984
  39004. }
  39005. },
  39006. },
  39007. [
  39008. {
  39009. name: "Normal",
  39010. height: math.unit(4, "meters"),
  39011. default: true
  39012. },
  39013. ]
  39014. ))
  39015. characterMakers.push(() => makeCharacter(
  39016. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39017. {
  39018. front: {
  39019. height: math.unit(8 + 4/12, "feet"),
  39020. weight: math.unit(670, "lb"),
  39021. name: "Front",
  39022. image: {
  39023. source: "./media/characters/acadiel/front.svg",
  39024. extra: 1901/1595,
  39025. bottom: 142/2043
  39026. }
  39027. },
  39028. },
  39029. [
  39030. {
  39031. name: "Normal",
  39032. height: math.unit(8 + 4/12, "feet"),
  39033. default: true
  39034. },
  39035. {
  39036. name: "Macro",
  39037. height: math.unit(200, "feet")
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(6 + 2/12, "feet"),
  39046. weight: math.unit(185, "lb"),
  39047. name: "Front",
  39048. image: {
  39049. source: "./media/characters/kayne-ein/front.svg",
  39050. extra: 1780/1560,
  39051. bottom: 81/1861
  39052. }
  39053. },
  39054. },
  39055. [
  39056. {
  39057. name: "Normal",
  39058. height: math.unit(6 + 2/12, "feet"),
  39059. default: true
  39060. },
  39061. {
  39062. name: "Transformation Stage",
  39063. height: math.unit(15, "feet")
  39064. },
  39065. {
  39066. name: "Macro",
  39067. height: math.unit(150, "feet")
  39068. },
  39069. {
  39070. name: "Earth's Shadow",
  39071. height: math.unit(6200, "miles")
  39072. },
  39073. {
  39074. name: "Universal Demon",
  39075. height: math.unit(28e9, "parsecs")
  39076. },
  39077. {
  39078. name: "Multiverse God",
  39079. height: math.unit(3, "multiverses")
  39080. },
  39081. ]
  39082. ))
  39083. characterMakers.push(() => makeCharacter(
  39084. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39085. {
  39086. front: {
  39087. height: math.unit(5 + 5/12, "feet"),
  39088. name: "Front",
  39089. image: {
  39090. source: "./media/characters/fawn/front.svg",
  39091. extra: 1873/1731,
  39092. bottom: 95/1968
  39093. }
  39094. },
  39095. back: {
  39096. height: math.unit(5 + 5/12, "feet"),
  39097. name: "Back",
  39098. image: {
  39099. source: "./media/characters/fawn/back.svg",
  39100. extra: 1813/1700,
  39101. bottom: 14/1827
  39102. }
  39103. },
  39104. hoof: {
  39105. height: math.unit(1.45, "feet"),
  39106. name: "Hoof",
  39107. image: {
  39108. source: "./media/characters/fawn/hoof.svg"
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Normal",
  39115. height: math.unit(5 + 5/12, "feet"),
  39116. default: true
  39117. },
  39118. ]
  39119. ))
  39120. characterMakers.push(() => makeCharacter(
  39121. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39122. {
  39123. front: {
  39124. height: math.unit(2 + 5/12, "feet"),
  39125. name: "Front",
  39126. image: {
  39127. source: "./media/characters/orion/front.svg",
  39128. extra: 1366/1304,
  39129. bottom: 43/1409
  39130. }
  39131. },
  39132. paw: {
  39133. height: math.unit(0.52, "feet"),
  39134. name: "Paw",
  39135. image: {
  39136. source: "./media/characters/orion/paw.svg"
  39137. }
  39138. },
  39139. },
  39140. [
  39141. {
  39142. name: "Normal",
  39143. height: math.unit(2 + 5/12, "feet"),
  39144. default: true
  39145. },
  39146. ]
  39147. ))
  39148. characterMakers.push(() => makeCharacter(
  39149. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39150. {
  39151. front: {
  39152. height: math.unit(5 + 10/12, "feet"),
  39153. name: "Front",
  39154. image: {
  39155. source: "./media/characters/vera/front.svg",
  39156. extra: 1680/1575,
  39157. bottom: 49/1729
  39158. }
  39159. },
  39160. back: {
  39161. height: math.unit(5 + 10/12, "feet"),
  39162. name: "Back",
  39163. image: {
  39164. source: "./media/characters/vera/back.svg",
  39165. extra: 1700/1588,
  39166. bottom: 18/1718
  39167. }
  39168. },
  39169. arcanine: {
  39170. height: math.unit(6 + 8/12, "feet"),
  39171. name: "Arcanine",
  39172. image: {
  39173. source: "./media/characters/vera/arcanine.svg",
  39174. extra: 1590/1511,
  39175. bottom: 71/1661
  39176. }
  39177. },
  39178. maw: {
  39179. height: math.unit(0.82, "feet"),
  39180. name: "Maw",
  39181. image: {
  39182. source: "./media/characters/vera/maw.svg"
  39183. }
  39184. },
  39185. mawArcanine: {
  39186. height: math.unit(0.97, "feet"),
  39187. name: "Maw (Arcanine)",
  39188. image: {
  39189. source: "./media/characters/vera/maw-arcanine.svg"
  39190. }
  39191. },
  39192. paw: {
  39193. height: math.unit(0.75, "feet"),
  39194. name: "Paw",
  39195. image: {
  39196. source: "./media/characters/vera/paw.svg"
  39197. }
  39198. },
  39199. pawprint: {
  39200. height: math.unit(0.52, "feet"),
  39201. name: "Pawprint",
  39202. image: {
  39203. source: "./media/characters/vera/pawprint.svg"
  39204. }
  39205. },
  39206. },
  39207. [
  39208. {
  39209. name: "Normal",
  39210. height: math.unit(5 + 10/12, "feet"),
  39211. default: true
  39212. },
  39213. {
  39214. name: "Macro",
  39215. height: math.unit(75, "feet")
  39216. },
  39217. ]
  39218. ))
  39219. characterMakers.push(() => makeCharacter(
  39220. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39221. {
  39222. front: {
  39223. height: math.unit(4, "feet"),
  39224. weight: math.unit(40, "lb"),
  39225. name: "Front",
  39226. image: {
  39227. source: "./media/characters/orvan-rabbit/front.svg",
  39228. extra: 1896/1642,
  39229. bottom: 29/1925
  39230. }
  39231. },
  39232. },
  39233. [
  39234. {
  39235. name: "Normal",
  39236. height: math.unit(4, "feet"),
  39237. default: true
  39238. },
  39239. ]
  39240. ))
  39241. characterMakers.push(() => makeCharacter(
  39242. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39243. {
  39244. front: {
  39245. height: math.unit(6, "feet"),
  39246. weight: math.unit(168, "lb"),
  39247. name: "Front",
  39248. image: {
  39249. source: "./media/characters/lisa/front.svg",
  39250. extra: 2065/1867,
  39251. bottom: 46/2111
  39252. }
  39253. },
  39254. back: {
  39255. height: math.unit(6, "feet"),
  39256. weight: math.unit(168, "lb"),
  39257. name: "Back",
  39258. image: {
  39259. source: "./media/characters/lisa/back.svg",
  39260. extra: 1982/1838,
  39261. bottom: 29/2011
  39262. }
  39263. },
  39264. maw: {
  39265. height: math.unit(0.81, "feet"),
  39266. name: "Maw",
  39267. image: {
  39268. source: "./media/characters/lisa/maw.svg"
  39269. }
  39270. },
  39271. paw: {
  39272. height: math.unit(0.9, "feet"),
  39273. name: "Paw",
  39274. image: {
  39275. source: "./media/characters/lisa/paw.svg"
  39276. }
  39277. },
  39278. caribousune: {
  39279. height: math.unit(7 + 2/12, "feet"),
  39280. weight: math.unit(268, "lb"),
  39281. name: "Caribousune",
  39282. image: {
  39283. source: "./media/characters/lisa/caribousune.svg",
  39284. extra: 1843/1633,
  39285. bottom: 29/1872
  39286. }
  39287. },
  39288. frontCaribousune: {
  39289. height: math.unit(7 + 2/12, "feet"),
  39290. weight: math.unit(268, "lb"),
  39291. name: "Front (Caribousune)",
  39292. image: {
  39293. source: "./media/characters/lisa/front-caribousune.svg",
  39294. extra: 1818/1638,
  39295. bottom: 52/1870
  39296. }
  39297. },
  39298. sideCaribousune: {
  39299. height: math.unit(7 + 2/12, "feet"),
  39300. weight: math.unit(268, "lb"),
  39301. name: "Side (Caribousune)",
  39302. image: {
  39303. source: "./media/characters/lisa/side-caribousune.svg",
  39304. extra: 1851/1635,
  39305. bottom: 16/1867
  39306. }
  39307. },
  39308. backCaribousune: {
  39309. height: math.unit(7 + 2/12, "feet"),
  39310. weight: math.unit(268, "lb"),
  39311. name: "Back (Caribousune)",
  39312. image: {
  39313. source: "./media/characters/lisa/back-caribousune.svg",
  39314. extra: 1801/1604,
  39315. bottom: 44/1845
  39316. }
  39317. },
  39318. caribou: {
  39319. height: math.unit(7 + 2/12, "feet"),
  39320. weight: math.unit(268, "lb"),
  39321. name: "Caribou",
  39322. image: {
  39323. source: "./media/characters/lisa/caribou.svg",
  39324. extra: 1843/1633,
  39325. bottom: 29/1872
  39326. }
  39327. },
  39328. frontCaribou: {
  39329. height: math.unit(7 + 2/12, "feet"),
  39330. weight: math.unit(268, "lb"),
  39331. name: "Front (Caribou)",
  39332. image: {
  39333. source: "./media/characters/lisa/front-caribou.svg",
  39334. extra: 1818/1638,
  39335. bottom: 52/1870
  39336. }
  39337. },
  39338. sideCaribou: {
  39339. height: math.unit(7 + 2/12, "feet"),
  39340. weight: math.unit(268, "lb"),
  39341. name: "Side (Caribou)",
  39342. image: {
  39343. source: "./media/characters/lisa/side-caribou.svg",
  39344. extra: 1851/1635,
  39345. bottom: 16/1867
  39346. }
  39347. },
  39348. backCaribou: {
  39349. height: math.unit(7 + 2/12, "feet"),
  39350. weight: math.unit(268, "lb"),
  39351. name: "Back (Caribou)",
  39352. image: {
  39353. source: "./media/characters/lisa/back-caribou.svg",
  39354. extra: 1801/1604,
  39355. bottom: 44/1845
  39356. }
  39357. },
  39358. mawCaribou: {
  39359. height: math.unit(1.45, "feet"),
  39360. name: "Maw (Caribou)",
  39361. image: {
  39362. source: "./media/characters/lisa/maw-caribou.svg"
  39363. }
  39364. },
  39365. mawCaribousune: {
  39366. height: math.unit(1.45, "feet"),
  39367. name: "Maw (Caribousune)",
  39368. image: {
  39369. source: "./media/characters/lisa/maw-caribousune.svg"
  39370. }
  39371. },
  39372. pawCaribousune: {
  39373. height: math.unit(1.61, "feet"),
  39374. name: "Paw (Caribou)",
  39375. image: {
  39376. source: "./media/characters/lisa/paw-caribousune.svg"
  39377. }
  39378. },
  39379. },
  39380. [
  39381. {
  39382. name: "Normal",
  39383. height: math.unit(6, "feet")
  39384. },
  39385. {
  39386. name: "God Size",
  39387. height: math.unit(72, "feet"),
  39388. default: true
  39389. },
  39390. {
  39391. name: "Towering",
  39392. height: math.unit(288, "feet")
  39393. },
  39394. {
  39395. name: "City Size",
  39396. height: math.unit(48384, "feet")
  39397. },
  39398. {
  39399. name: "Continental",
  39400. height: math.unit(4200, "miles")
  39401. },
  39402. {
  39403. name: "Planet Eater",
  39404. height: math.unit(42, "earths")
  39405. },
  39406. {
  39407. name: "Star Swallower",
  39408. height: math.unit(42, "solarradii")
  39409. },
  39410. {
  39411. name: "System Swallower",
  39412. height: math.unit(84000, "AU")
  39413. },
  39414. {
  39415. name: "Galaxy Gobbler",
  39416. height: math.unit(42, "galaxies")
  39417. },
  39418. {
  39419. name: "Universe Devourer",
  39420. height: math.unit(42, "universes")
  39421. },
  39422. {
  39423. name: "Multiverse Muncher",
  39424. height: math.unit(42, "multiverses")
  39425. },
  39426. ]
  39427. ))
  39428. characterMakers.push(() => makeCharacter(
  39429. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39430. {
  39431. front: {
  39432. height: math.unit(36, "feet"),
  39433. name: "Front",
  39434. image: {
  39435. source: "./media/characters/shadow-rat/front.svg",
  39436. extra: 1845/1758,
  39437. bottom: 83/1928
  39438. }
  39439. },
  39440. },
  39441. [
  39442. {
  39443. name: "Macro",
  39444. height: math.unit(36, "feet"),
  39445. default: true
  39446. },
  39447. ]
  39448. ))
  39449. characterMakers.push(() => makeCharacter(
  39450. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39451. {
  39452. side: {
  39453. height: math.unit(8, "feet"),
  39454. weight: math.unit(2630, "lb"),
  39455. name: "Side",
  39456. image: {
  39457. source: "./media/characters/torallia/side.svg",
  39458. extra: 2164/2021,
  39459. bottom: 371/2535
  39460. }
  39461. },
  39462. },
  39463. [
  39464. {
  39465. name: "Mortal Interaction",
  39466. height: math.unit(8, "feet")
  39467. },
  39468. {
  39469. name: "Natural",
  39470. height: math.unit(24, "feet"),
  39471. default: true
  39472. },
  39473. {
  39474. name: "Giant",
  39475. height: math.unit(80, "feet")
  39476. },
  39477. {
  39478. name: "Kaiju",
  39479. height: math.unit(240, "feet")
  39480. },
  39481. {
  39482. name: "Macro",
  39483. height: math.unit(800, "feet")
  39484. },
  39485. {
  39486. name: "Macro+",
  39487. height: math.unit(2400, "feet")
  39488. },
  39489. {
  39490. name: "Macro++",
  39491. height: math.unit(8000, "feet")
  39492. },
  39493. {
  39494. name: "City-Crushing",
  39495. height: math.unit(24000, "feet")
  39496. },
  39497. {
  39498. name: "Mountain-Mashing",
  39499. height: math.unit(80000, "feet")
  39500. },
  39501. {
  39502. name: "District Demolisher",
  39503. height: math.unit(240000, "feet")
  39504. },
  39505. {
  39506. name: "Tri-County Terror",
  39507. height: math.unit(800000, "feet")
  39508. },
  39509. {
  39510. name: "State Smasher",
  39511. height: math.unit(2.4e6, "feet")
  39512. },
  39513. {
  39514. name: "Nation Nemesis",
  39515. height: math.unit(8e6, "feet")
  39516. },
  39517. {
  39518. name: "Continent Cracker",
  39519. height: math.unit(2.4e7, "feet")
  39520. },
  39521. {
  39522. name: "Planet-Pillaging",
  39523. height: math.unit(8e7, "feet")
  39524. },
  39525. {
  39526. name: "Earth-Eclipsing",
  39527. height: math.unit(2.4e8, "feet")
  39528. },
  39529. {
  39530. name: "Jovian-Jostling",
  39531. height: math.unit(8e8, "feet")
  39532. },
  39533. {
  39534. name: "Gas Giant Gulper",
  39535. height: math.unit(2.4e9, "feet")
  39536. },
  39537. {
  39538. name: "Astral Annihilator",
  39539. height: math.unit(8e9, "feet")
  39540. },
  39541. {
  39542. name: "Celestial Conqueror",
  39543. height: math.unit(2.4e10, "feet")
  39544. },
  39545. {
  39546. name: "Sol-Swallowing",
  39547. height: math.unit(8e10, "feet")
  39548. },
  39549. {
  39550. name: "Hunter of the Heavens",
  39551. height: math.unit(2.4e13, "feet")
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39557. {
  39558. front: {
  39559. height: math.unit(6 + 8/12, "feet"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/rebecca-pawlson/front.svg",
  39563. extra: 1737/1596,
  39564. bottom: 107/1844
  39565. }
  39566. },
  39567. back: {
  39568. height: math.unit(6 + 8/12, "feet"),
  39569. name: "Back",
  39570. image: {
  39571. source: "./media/characters/rebecca-pawlson/back.svg",
  39572. extra: 1702/1523,
  39573. bottom: 86/1788
  39574. }
  39575. },
  39576. },
  39577. [
  39578. {
  39579. name: "Normal",
  39580. height: math.unit(6 + 8/12, "feet")
  39581. },
  39582. {
  39583. name: "Mini Macro",
  39584. height: math.unit(10, "feet"),
  39585. default: true
  39586. },
  39587. {
  39588. name: "Macro",
  39589. height: math.unit(100, "feet")
  39590. },
  39591. {
  39592. name: "Mega Macro",
  39593. height: math.unit(2500, "feet")
  39594. },
  39595. {
  39596. name: "Giga Macro",
  39597. height: math.unit(50, "miles")
  39598. },
  39599. ]
  39600. ))
  39601. characterMakers.push(() => makeCharacter(
  39602. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39603. {
  39604. front: {
  39605. height: math.unit(7 + 6/12, "feet"),
  39606. weight: math.unit(600, "lb"),
  39607. name: "Front",
  39608. image: {
  39609. source: "./media/characters/moxie-nova/front.svg",
  39610. extra: 1734/1652,
  39611. bottom: 41/1775
  39612. }
  39613. },
  39614. },
  39615. [
  39616. {
  39617. name: "Normal",
  39618. height: math.unit(7 + 6/12, "feet"),
  39619. default: true
  39620. },
  39621. ]
  39622. ))
  39623. characterMakers.push(() => makeCharacter(
  39624. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39625. {
  39626. goat: {
  39627. height: math.unit(4, "feet"),
  39628. weight: math.unit(180, "lb"),
  39629. name: "Goat",
  39630. image: {
  39631. source: "./media/characters/tiffany/goat.svg",
  39632. extra: 1845/1595,
  39633. bottom: 106/1951
  39634. }
  39635. },
  39636. front: {
  39637. height: math.unit(5, "feet"),
  39638. weight: math.unit(150, "lb"),
  39639. name: "Foxcoon",
  39640. image: {
  39641. source: "./media/characters/tiffany/foxcoon.svg",
  39642. extra: 1941/1845,
  39643. bottom: 58/1999
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Normal",
  39650. height: math.unit(5, "feet"),
  39651. default: true
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39657. {
  39658. front: {
  39659. height: math.unit(8, "feet"),
  39660. weight: math.unit(300, "lb"),
  39661. name: "Front",
  39662. image: {
  39663. source: "./media/characters/raxinath/front.svg",
  39664. extra: 1407/1309,
  39665. bottom: 39/1446
  39666. }
  39667. },
  39668. back: {
  39669. height: math.unit(8, "feet"),
  39670. weight: math.unit(300, "lb"),
  39671. name: "Back",
  39672. image: {
  39673. source: "./media/characters/raxinath/back.svg",
  39674. extra: 1405/1315,
  39675. bottom: 9/1414
  39676. }
  39677. },
  39678. },
  39679. [
  39680. {
  39681. name: "Speck",
  39682. height: math.unit(0.5, "nm")
  39683. },
  39684. {
  39685. name: "Micro",
  39686. height: math.unit(3, "inches")
  39687. },
  39688. {
  39689. name: "Kobold",
  39690. height: math.unit(3, "feet")
  39691. },
  39692. {
  39693. name: "Normal",
  39694. height: math.unit(8, "feet"),
  39695. default: true
  39696. },
  39697. {
  39698. name: "Giant",
  39699. height: math.unit(50, "feet")
  39700. },
  39701. {
  39702. name: "Macro",
  39703. height: math.unit(1000, "feet")
  39704. },
  39705. {
  39706. name: "Megamacro",
  39707. height: math.unit(1, "mile")
  39708. },
  39709. ]
  39710. ))
  39711. characterMakers.push(() => makeCharacter(
  39712. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39713. {
  39714. front: {
  39715. height: math.unit(10, "feet"),
  39716. weight: math.unit(1442, "lb"),
  39717. name: "Front",
  39718. image: {
  39719. source: "./media/characters/mal-dragon/front.svg",
  39720. extra: 1515/1444,
  39721. bottom: 113/1628
  39722. }
  39723. },
  39724. back: {
  39725. height: math.unit(10, "feet"),
  39726. weight: math.unit(1442, "lb"),
  39727. name: "Back",
  39728. image: {
  39729. source: "./media/characters/mal-dragon/back.svg",
  39730. extra: 1527/1434,
  39731. bottom: 25/1552
  39732. }
  39733. },
  39734. },
  39735. [
  39736. {
  39737. name: "Mortal Interaction",
  39738. height: math.unit(10, "feet"),
  39739. default: true
  39740. },
  39741. {
  39742. name: "Large",
  39743. height: math.unit(30, "feet")
  39744. },
  39745. {
  39746. name: "Kaiju",
  39747. height: math.unit(300, "feet")
  39748. },
  39749. {
  39750. name: "Megamacro",
  39751. height: math.unit(10000, "feet")
  39752. },
  39753. {
  39754. name: "Continent Cracker",
  39755. height: math.unit(30000000, "feet")
  39756. },
  39757. {
  39758. name: "Sol-Swallowing",
  39759. height: math.unit(1e11, "feet")
  39760. },
  39761. {
  39762. name: "Light Universal",
  39763. height: math.unit(5, "universes")
  39764. },
  39765. {
  39766. name: "Universe Atoms",
  39767. height: math.unit(1.829e9, "universes")
  39768. },
  39769. {
  39770. name: "Light Multiversal",
  39771. height: math.unit(5, "multiverses")
  39772. },
  39773. {
  39774. name: "Multiverse Atoms",
  39775. height: math.unit(1.829e9, "multiverses")
  39776. },
  39777. {
  39778. name: "Fabric of Time",
  39779. height: math.unit(1e262, "multiverses")
  39780. },
  39781. ]
  39782. ))
  39783. characterMakers.push(() => makeCharacter(
  39784. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39785. {
  39786. front: {
  39787. height: math.unit(9, "feet"),
  39788. weight: math.unit(1050, "lb"),
  39789. name: "Front",
  39790. image: {
  39791. source: "./media/characters/tabitha/front.svg",
  39792. extra: 2083/1994,
  39793. bottom: 68/2151
  39794. }
  39795. },
  39796. },
  39797. [
  39798. {
  39799. name: "Baseline",
  39800. height: math.unit(9, "feet"),
  39801. default: true
  39802. },
  39803. {
  39804. name: "Giant",
  39805. height: math.unit(90, "feet")
  39806. },
  39807. {
  39808. name: "Macro",
  39809. height: math.unit(900, "feet")
  39810. },
  39811. {
  39812. name: "Megamacro",
  39813. height: math.unit(9000, "feet")
  39814. },
  39815. {
  39816. name: "City-Crushing",
  39817. height: math.unit(27000, "feet")
  39818. },
  39819. {
  39820. name: "Mountain-Mashing",
  39821. height: math.unit(90000, "feet")
  39822. },
  39823. {
  39824. name: "Nation Nemesis",
  39825. height: math.unit(9e6, "feet")
  39826. },
  39827. {
  39828. name: "Continent Cracker",
  39829. height: math.unit(27e6, "feet")
  39830. },
  39831. {
  39832. name: "Earth-Eclipsing",
  39833. height: math.unit(2.7e8, "feet")
  39834. },
  39835. {
  39836. name: "Gas Giant Gulper",
  39837. height: math.unit(2.7e9, "feet")
  39838. },
  39839. {
  39840. name: "Sol-Swallowing",
  39841. height: math.unit(9e10, "feet")
  39842. },
  39843. {
  39844. name: "Galaxy Gulper",
  39845. height: math.unit(9, "galaxies")
  39846. },
  39847. {
  39848. name: "Cosmos Churner",
  39849. height: math.unit(9, "universes")
  39850. },
  39851. ]
  39852. ))
  39853. characterMakers.push(() => makeCharacter(
  39854. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39855. {
  39856. front: {
  39857. height: math.unit(160, "cm"),
  39858. weight: math.unit(55, "kg"),
  39859. name: "Front",
  39860. image: {
  39861. source: "./media/characters/tow/front.svg",
  39862. extra: 1751/1722,
  39863. bottom: 74/1825
  39864. }
  39865. },
  39866. },
  39867. [
  39868. {
  39869. name: "Norm",
  39870. height: math.unit(160, "cm")
  39871. },
  39872. {
  39873. name: "Casual",
  39874. height: math.unit(3200, "m"),
  39875. default: true
  39876. },
  39877. {
  39878. name: "Show-Off",
  39879. height: math.unit(160, "km")
  39880. },
  39881. ]
  39882. ))
  39883. characterMakers.push(() => makeCharacter(
  39884. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39885. {
  39886. front: {
  39887. height: math.unit(7 + 11/12, "feet"),
  39888. weight: math.unit(342.8, "lb"),
  39889. name: "Front",
  39890. image: {
  39891. source: "./media/characters/vivian-orca-dragon/front.svg",
  39892. extra: 1890/1865,
  39893. bottom: 28/1918
  39894. }
  39895. },
  39896. },
  39897. [
  39898. {
  39899. name: "Micro",
  39900. height: math.unit(5, "inches")
  39901. },
  39902. {
  39903. name: "Normal",
  39904. height: math.unit(7 + 11/12, "feet"),
  39905. default: true
  39906. },
  39907. {
  39908. name: "Macro",
  39909. height: math.unit(395 + 7/12, "feet")
  39910. },
  39911. ]
  39912. ))
  39913. characterMakers.push(() => makeCharacter(
  39914. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39915. {
  39916. side: {
  39917. height: math.unit(10, "feet"),
  39918. weight: math.unit(1442, "lb"),
  39919. name: "Side",
  39920. image: {
  39921. source: "./media/characters/lotherakon/side.svg",
  39922. extra: 1604/1497,
  39923. bottom: 89/1693
  39924. }
  39925. },
  39926. },
  39927. [
  39928. {
  39929. name: "Mortal Interaction",
  39930. height: math.unit(10, "feet")
  39931. },
  39932. {
  39933. name: "Large",
  39934. height: math.unit(30, "feet"),
  39935. default: true
  39936. },
  39937. {
  39938. name: "Giant",
  39939. height: math.unit(100, "feet")
  39940. },
  39941. {
  39942. name: "Kaiju",
  39943. height: math.unit(300, "feet")
  39944. },
  39945. {
  39946. name: "Macro",
  39947. height: math.unit(1000, "feet")
  39948. },
  39949. {
  39950. name: "Macro+",
  39951. height: math.unit(3000, "feet")
  39952. },
  39953. {
  39954. name: "Megamacro",
  39955. height: math.unit(10000, "feet")
  39956. },
  39957. {
  39958. name: "City-Crushing",
  39959. height: math.unit(30000, "feet")
  39960. },
  39961. {
  39962. name: "Continent Cracker",
  39963. height: math.unit(30e6, "feet")
  39964. },
  39965. {
  39966. name: "Earth Eclipsing",
  39967. height: math.unit(3e8, "feet")
  39968. },
  39969. {
  39970. name: "Gas Giant Gulper",
  39971. height: math.unit(3e9, "feet")
  39972. },
  39973. {
  39974. name: "Sol-Swallowing",
  39975. height: math.unit(1e11, "feet")
  39976. },
  39977. {
  39978. name: "System Swallower",
  39979. height: math.unit(3e14, "feet")
  39980. },
  39981. {
  39982. name: "Galaxy Gulper",
  39983. height: math.unit(10, "galaxies")
  39984. },
  39985. {
  39986. name: "Light Universal",
  39987. height: math.unit(5, "universes")
  39988. },
  39989. {
  39990. name: "Universe Palm",
  39991. height: math.unit(20, "universes")
  39992. },
  39993. {
  39994. name: "Light Multiversal",
  39995. height: math.unit(5, "multiverses")
  39996. },
  39997. {
  39998. name: "Multiverse Palm",
  39999. height: math.unit(20, "multiverses")
  40000. },
  40001. {
  40002. name: "Inferno Incarnate",
  40003. height: math.unit(1e7, "multiverses")
  40004. },
  40005. ]
  40006. ))
  40007. characterMakers.push(() => makeCharacter(
  40008. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40009. {
  40010. front: {
  40011. height: math.unit(8, "feet"),
  40012. weight: math.unit(1200, "lb"),
  40013. name: "Front",
  40014. image: {
  40015. source: "./media/characters/malithee/front.svg",
  40016. extra: 1675/1640,
  40017. bottom: 162/1837
  40018. }
  40019. },
  40020. },
  40021. [
  40022. {
  40023. name: "Mortal Interaction",
  40024. height: math.unit(8, "feet"),
  40025. default: true
  40026. },
  40027. {
  40028. name: "Large",
  40029. height: math.unit(24, "feet")
  40030. },
  40031. {
  40032. name: "Kaiju",
  40033. height: math.unit(240, "feet")
  40034. },
  40035. {
  40036. name: "Megamacro",
  40037. height: math.unit(8000, "feet")
  40038. },
  40039. {
  40040. name: "Continent Cracker",
  40041. height: math.unit(24e6, "feet")
  40042. },
  40043. {
  40044. name: "Earth-Eclipsing",
  40045. height: math.unit(2.4e8, "feet")
  40046. },
  40047. {
  40048. name: "Sol-Swallowing",
  40049. height: math.unit(8e10, "feet")
  40050. },
  40051. {
  40052. name: "Galaxy Gulper",
  40053. height: math.unit(8, "galaxies")
  40054. },
  40055. {
  40056. name: "Light Universal",
  40057. height: math.unit(4, "universes")
  40058. },
  40059. {
  40060. name: "Universe Atoms",
  40061. height: math.unit(1.829e9, "universes")
  40062. },
  40063. {
  40064. name: "Light Multiversal",
  40065. height: math.unit(4, "multiverses")
  40066. },
  40067. {
  40068. name: "Multiverse Atoms",
  40069. height: math.unit(1.829e9, "multiverses")
  40070. },
  40071. {
  40072. name: "Nigh-Omnipresence",
  40073. height: math.unit(8e261, "multiverses")
  40074. },
  40075. ]
  40076. ))
  40077. characterMakers.push(() => makeCharacter(
  40078. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40079. {
  40080. front: {
  40081. height: math.unit(10, "feet"),
  40082. weight: math.unit(1500, "lb"),
  40083. name: "Front",
  40084. image: {
  40085. source: "./media/characters/miles-thestia/front.svg",
  40086. extra: 1812/1727,
  40087. bottom: 86/1898
  40088. }
  40089. },
  40090. back: {
  40091. height: math.unit(10, "feet"),
  40092. weight: math.unit(1500, "lb"),
  40093. name: "Back",
  40094. image: {
  40095. source: "./media/characters/miles-thestia/back.svg",
  40096. extra: 1799/1690,
  40097. bottom: 47/1846
  40098. }
  40099. },
  40100. frontNsfw: {
  40101. height: math.unit(10, "feet"),
  40102. weight: math.unit(1500, "lb"),
  40103. name: "Front (NSFW)",
  40104. image: {
  40105. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40106. extra: 1812/1727,
  40107. bottom: 86/1898
  40108. }
  40109. },
  40110. },
  40111. [
  40112. {
  40113. name: "Mini-Macro",
  40114. height: math.unit(10, "feet"),
  40115. default: true
  40116. },
  40117. ]
  40118. ))
  40119. characterMakers.push(() => makeCharacter(
  40120. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40121. {
  40122. front: {
  40123. height: math.unit(25, "feet"),
  40124. name: "Front",
  40125. image: {
  40126. source: "./media/characters/titan-s-wulf/front.svg",
  40127. extra: 1560/1484,
  40128. bottom: 76/1636
  40129. }
  40130. },
  40131. },
  40132. [
  40133. {
  40134. name: "Smallest",
  40135. height: math.unit(25, "feet"),
  40136. default: true
  40137. },
  40138. {
  40139. name: "Normal",
  40140. height: math.unit(200, "feet")
  40141. },
  40142. {
  40143. name: "Macro",
  40144. height: math.unit(200000, "feet")
  40145. },
  40146. {
  40147. name: "Multiversal Original",
  40148. height: math.unit(10000, "multiverses")
  40149. },
  40150. ]
  40151. ))
  40152. characterMakers.push(() => makeCharacter(
  40153. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40154. {
  40155. front: {
  40156. height: math.unit(8, "feet"),
  40157. weight: math.unit(553, "lb"),
  40158. name: "Front",
  40159. image: {
  40160. source: "./media/characters/tawendeh/front.svg",
  40161. extra: 2365/2268,
  40162. bottom: 83/2448
  40163. }
  40164. },
  40165. frontClothed: {
  40166. height: math.unit(8, "feet"),
  40167. weight: math.unit(553, "lb"),
  40168. name: "Front (Clothed)",
  40169. image: {
  40170. source: "./media/characters/tawendeh/front-clothed.svg",
  40171. extra: 2365/2268,
  40172. bottom: 83/2448
  40173. }
  40174. },
  40175. back: {
  40176. height: math.unit(8, "feet"),
  40177. weight: math.unit(553, "lb"),
  40178. name: "Back",
  40179. image: {
  40180. source: "./media/characters/tawendeh/back.svg",
  40181. extra: 2397/2294,
  40182. bottom: 42/2439
  40183. }
  40184. },
  40185. },
  40186. [
  40187. {
  40188. name: "Mortal Interaction",
  40189. height: math.unit(8, "feet"),
  40190. default: true
  40191. },
  40192. {
  40193. name: "Giant",
  40194. height: math.unit(80, "feet")
  40195. },
  40196. {
  40197. name: "Macro",
  40198. height: math.unit(800, "feet")
  40199. },
  40200. {
  40201. name: "Megamacro",
  40202. height: math.unit(8000, "feet")
  40203. },
  40204. {
  40205. name: "City-Crushing",
  40206. height: math.unit(24000, "feet")
  40207. },
  40208. {
  40209. name: "Mountain-Mashing",
  40210. height: math.unit(80000, "feet")
  40211. },
  40212. {
  40213. name: "Nation Nemesis",
  40214. height: math.unit(8e6, "feet")
  40215. },
  40216. {
  40217. name: "Continent Cracker",
  40218. height: math.unit(24e6, "feet")
  40219. },
  40220. {
  40221. name: "Earth-Eclipsing",
  40222. height: math.unit(2.4e8, "feet")
  40223. },
  40224. {
  40225. name: "Gas Giant Gulper",
  40226. height: math.unit(2.4e9, "feet")
  40227. },
  40228. {
  40229. name: "Sol-Swallowing",
  40230. height: math.unit(8e10, "feet")
  40231. },
  40232. {
  40233. name: "Galaxy Gulper",
  40234. height: math.unit(8, "galaxies")
  40235. },
  40236. {
  40237. name: "Cosmos Churner",
  40238. height: math.unit(8, "universes")
  40239. },
  40240. {
  40241. name: "Omnipotent Otter",
  40242. height: math.unit(80, "universes")
  40243. },
  40244. ]
  40245. ))
  40246. characterMakers.push(() => makeCharacter(
  40247. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40248. {
  40249. front: {
  40250. height: math.unit(2.6, "meters"),
  40251. weight: math.unit(900, "kg"),
  40252. name: "Front",
  40253. image: {
  40254. source: "./media/characters/neesha/front.svg",
  40255. extra: 1803/1653,
  40256. bottom: 128/1931
  40257. }
  40258. },
  40259. },
  40260. [
  40261. {
  40262. name: "Normal",
  40263. height: math.unit(2.6, "meters"),
  40264. default: true
  40265. },
  40266. {
  40267. name: "Macro",
  40268. height: math.unit(50, "meters")
  40269. },
  40270. ]
  40271. ))
  40272. characterMakers.push(() => makeCharacter(
  40273. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40274. {
  40275. front: {
  40276. height: math.unit(5, "feet"),
  40277. weight: math.unit(185, "lb"),
  40278. name: "Front",
  40279. image: {
  40280. source: "./media/characters/kyera/front.svg",
  40281. extra: 1875/1790,
  40282. bottom: 96/1971
  40283. }
  40284. },
  40285. },
  40286. [
  40287. {
  40288. name: "Normal",
  40289. height: math.unit(5, "feet"),
  40290. default: true
  40291. },
  40292. ]
  40293. ))
  40294. characterMakers.push(() => makeCharacter(
  40295. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40296. {
  40297. front: {
  40298. height: math.unit(7 + 6/12, "feet"),
  40299. weight: math.unit(540, "lb"),
  40300. name: "Front",
  40301. image: {
  40302. source: "./media/characters/yuko/front.svg",
  40303. extra: 1282/1222,
  40304. bottom: 101/1383
  40305. }
  40306. },
  40307. frontClothed: {
  40308. height: math.unit(7 + 6/12, "feet"),
  40309. weight: math.unit(540, "lb"),
  40310. name: "Front (Clothed)",
  40311. image: {
  40312. source: "./media/characters/yuko/front-clothed.svg",
  40313. extra: 1282/1222,
  40314. bottom: 101/1383
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Normal",
  40321. height: math.unit(7 + 6/12, "feet"),
  40322. default: true
  40323. },
  40324. {
  40325. name: "Macro",
  40326. height: math.unit(26 + 9/12, "feet")
  40327. },
  40328. {
  40329. name: "Megamacro",
  40330. height: math.unit(300, "feet")
  40331. },
  40332. {
  40333. name: "Gigamacro",
  40334. height: math.unit(5000, "feet")
  40335. },
  40336. {
  40337. name: "Planetary",
  40338. height: math.unit(10000, "miles")
  40339. },
  40340. ]
  40341. ))
  40342. characterMakers.push(() => makeCharacter(
  40343. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40344. {
  40345. front: {
  40346. height: math.unit(8 + 2/12, "feet"),
  40347. weight: math.unit(600, "lb"),
  40348. name: "Front",
  40349. image: {
  40350. source: "./media/characters/deam-nitrel/front.svg",
  40351. extra: 1308/1234,
  40352. bottom: 125/1433
  40353. }
  40354. },
  40355. },
  40356. [
  40357. {
  40358. name: "Normal",
  40359. height: math.unit(8 + 2/12, "feet"),
  40360. default: true
  40361. },
  40362. ]
  40363. ))
  40364. characterMakers.push(() => makeCharacter(
  40365. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40366. {
  40367. front: {
  40368. height: math.unit(6.1, "feet"),
  40369. weight: math.unit(180, "lb"),
  40370. name: "Front",
  40371. image: {
  40372. source: "./media/characters/skyress/front.svg",
  40373. extra: 1045/915,
  40374. bottom: 28/1073
  40375. }
  40376. },
  40377. maw: {
  40378. height: math.unit(1, "feet"),
  40379. name: "Maw",
  40380. image: {
  40381. source: "./media/characters/skyress/maw.svg"
  40382. }
  40383. },
  40384. },
  40385. [
  40386. {
  40387. name: "Normal",
  40388. height: math.unit(6.1, "feet"),
  40389. default: true
  40390. },
  40391. {
  40392. name: "Macro",
  40393. height: math.unit(200, "feet")
  40394. },
  40395. ]
  40396. ))
  40397. characterMakers.push(() => makeCharacter(
  40398. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40399. {
  40400. front: {
  40401. height: math.unit(4 + 2/12, "feet"),
  40402. weight: math.unit(40, "kg"),
  40403. name: "Front",
  40404. image: {
  40405. source: "./media/characters/amethyst-jones/front.svg",
  40406. extra: 1220/1150,
  40407. bottom: 101/1321
  40408. }
  40409. },
  40410. },
  40411. [
  40412. {
  40413. name: "Normal",
  40414. height: math.unit(4 + 2/12, "feet"),
  40415. default: true
  40416. },
  40417. ]
  40418. ))
  40419. characterMakers.push(() => makeCharacter(
  40420. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40421. {
  40422. front: {
  40423. height: math.unit(1.7, "m"),
  40424. weight: math.unit(135, "lb"),
  40425. name: "Front",
  40426. image: {
  40427. source: "./media/characters/jade/front.svg",
  40428. extra: 1818/1767,
  40429. bottom: 32/1850
  40430. }
  40431. },
  40432. back: {
  40433. height: math.unit(1.7, "m"),
  40434. weight: math.unit(135, "lb"),
  40435. name: "Back",
  40436. image: {
  40437. source: "./media/characters/jade/back.svg",
  40438. extra: 1869/1809,
  40439. bottom: 35/1904
  40440. }
  40441. },
  40442. hand: {
  40443. height: math.unit(0.24, "m"),
  40444. name: "Hand",
  40445. image: {
  40446. source: "./media/characters/jade/hand.svg"
  40447. }
  40448. },
  40449. foot: {
  40450. height: math.unit(0.263, "m"),
  40451. name: "Foot",
  40452. image: {
  40453. source: "./media/characters/jade/foot.svg"
  40454. }
  40455. },
  40456. dick: {
  40457. height: math.unit(0.47, "m"),
  40458. name: "Dick",
  40459. image: {
  40460. source: "./media/characters/jade/dick.svg"
  40461. }
  40462. },
  40463. },
  40464. [
  40465. {
  40466. name: "Micro",
  40467. height: math.unit(22, "cm")
  40468. },
  40469. {
  40470. name: "Normal",
  40471. height: math.unit(1.7, "m"),
  40472. default: true
  40473. },
  40474. {
  40475. name: "Macro",
  40476. height: math.unit(152, "m")
  40477. },
  40478. ]
  40479. ))
  40480. characterMakers.push(() => makeCharacter(
  40481. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40482. {
  40483. front: {
  40484. height: math.unit(100, "miles"),
  40485. weight: math.unit(20000, "tons"),
  40486. name: "Front",
  40487. image: {
  40488. source: "./media/characters/cookie/front.svg",
  40489. extra: 1125/1070,
  40490. bottom: 30/1155
  40491. }
  40492. },
  40493. },
  40494. [
  40495. {
  40496. name: "Big",
  40497. height: math.unit(50, "feet")
  40498. },
  40499. {
  40500. name: "Macro",
  40501. height: math.unit(100, "miles"),
  40502. default: true
  40503. },
  40504. {
  40505. name: "Megamacro",
  40506. height: math.unit(90000, "miles")
  40507. },
  40508. ]
  40509. ))
  40510. characterMakers.push(() => makeCharacter(
  40511. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40512. {
  40513. front: {
  40514. height: math.unit(6, "feet"),
  40515. weight: math.unit(145, "lb"),
  40516. name: "Front",
  40517. image: {
  40518. source: "./media/characters/farzian/front.svg",
  40519. extra: 1902/1693,
  40520. bottom: 108/2010
  40521. }
  40522. },
  40523. },
  40524. [
  40525. {
  40526. name: "Macro",
  40527. height: math.unit(500, "feet"),
  40528. default: true
  40529. },
  40530. ]
  40531. ))
  40532. characterMakers.push(() => makeCharacter(
  40533. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40534. {
  40535. front: {
  40536. height: math.unit(3 + 6/12, "feet"),
  40537. weight: math.unit(50, "lb"),
  40538. name: "Front",
  40539. image: {
  40540. source: "./media/characters/kimberly-tilson/front.svg",
  40541. extra: 1400/1322,
  40542. bottom: 36/1436
  40543. }
  40544. },
  40545. back: {
  40546. height: math.unit(3 + 6/12, "feet"),
  40547. weight: math.unit(50, "lb"),
  40548. name: "Back",
  40549. image: {
  40550. source: "./media/characters/kimberly-tilson/back.svg",
  40551. extra: 1370/1307,
  40552. bottom: 20/1390
  40553. }
  40554. },
  40555. },
  40556. [
  40557. {
  40558. name: "Normal",
  40559. height: math.unit(3 + 6/12, "feet"),
  40560. default: true
  40561. },
  40562. ]
  40563. ))
  40564. characterMakers.push(() => makeCharacter(
  40565. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40566. {
  40567. front: {
  40568. height: math.unit(1148, "feet"),
  40569. weight: math.unit(34057, "lb"),
  40570. name: "Front",
  40571. image: {
  40572. source: "./media/characters/harthos/front.svg",
  40573. extra: 1391/1339,
  40574. bottom: 13/1404
  40575. }
  40576. },
  40577. },
  40578. [
  40579. {
  40580. name: "Macro",
  40581. height: math.unit(1148, "feet"),
  40582. default: true
  40583. },
  40584. ]
  40585. ))
  40586. characterMakers.push(() => makeCharacter(
  40587. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40588. {
  40589. front: {
  40590. height: math.unit(15, "feet"),
  40591. name: "Front",
  40592. image: {
  40593. source: "./media/characters/hypatia/front.svg",
  40594. extra: 1653/1591,
  40595. bottom: 79/1732
  40596. }
  40597. },
  40598. },
  40599. [
  40600. {
  40601. name: "Normal",
  40602. height: math.unit(15, "feet")
  40603. },
  40604. {
  40605. name: "Small",
  40606. height: math.unit(300, "feet")
  40607. },
  40608. {
  40609. name: "Macro",
  40610. height: math.unit(2500, "feet"),
  40611. default: true
  40612. },
  40613. {
  40614. name: "Mega Macro",
  40615. height: math.unit(1500, "miles")
  40616. },
  40617. {
  40618. name: "Giga Macro",
  40619. height: math.unit(1.5e6, "miles")
  40620. },
  40621. ]
  40622. ))
  40623. characterMakers.push(() => makeCharacter(
  40624. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40625. {
  40626. front: {
  40627. height: math.unit(6, "feet"),
  40628. weight: math.unit(200, "lb"),
  40629. name: "Front",
  40630. image: {
  40631. source: "./media/characters/wulver/front.svg",
  40632. extra: 1724/1632,
  40633. bottom: 130/1854
  40634. }
  40635. },
  40636. frontNsfw: {
  40637. height: math.unit(6, "feet"),
  40638. weight: math.unit(200, "lb"),
  40639. name: "Front (NSFW)",
  40640. image: {
  40641. source: "./media/characters/wulver/front-nsfw.svg",
  40642. extra: 1724/1632,
  40643. bottom: 130/1854
  40644. }
  40645. },
  40646. },
  40647. [
  40648. {
  40649. name: "Human-Sized",
  40650. height: math.unit(6, "feet")
  40651. },
  40652. {
  40653. name: "Normal",
  40654. height: math.unit(4, "meters"),
  40655. default: true
  40656. },
  40657. {
  40658. name: "Large",
  40659. height: math.unit(6, "m")
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40665. {
  40666. front: {
  40667. height: math.unit(7, "feet"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/maru/front.svg",
  40671. extra: 1595/1570,
  40672. bottom: 0/1595
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Normal",
  40679. height: math.unit(7, "feet"),
  40680. default: true
  40681. },
  40682. {
  40683. name: "Macro",
  40684. height: math.unit(700, "feet")
  40685. },
  40686. {
  40687. name: "Mega Macro",
  40688. height: math.unit(25, "miles")
  40689. },
  40690. ]
  40691. ))
  40692. characterMakers.push(() => makeCharacter(
  40693. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40694. {
  40695. front: {
  40696. height: math.unit(6, "feet"),
  40697. weight: math.unit(170, "lb"),
  40698. name: "Front",
  40699. image: {
  40700. source: "./media/characters/xenon/front.svg",
  40701. extra: 1376/1305,
  40702. bottom: 56/1432
  40703. }
  40704. },
  40705. back: {
  40706. height: math.unit(6, "feet"),
  40707. weight: math.unit(170, "lb"),
  40708. name: "Back",
  40709. image: {
  40710. source: "./media/characters/xenon/back.svg",
  40711. extra: 1328/1259,
  40712. bottom: 95/1423
  40713. }
  40714. },
  40715. maw: {
  40716. height: math.unit(0.52, "feet"),
  40717. name: "Maw",
  40718. image: {
  40719. source: "./media/characters/xenon/maw.svg"
  40720. }
  40721. },
  40722. hand: {
  40723. height: math.unit(0.82, "feet"),
  40724. name: "Hand",
  40725. image: {
  40726. source: "./media/characters/xenon/hand.svg"
  40727. }
  40728. },
  40729. foot: {
  40730. height: math.unit(1.13, "feet"),
  40731. name: "Foot",
  40732. image: {
  40733. source: "./media/characters/xenon/foot.svg"
  40734. }
  40735. },
  40736. },
  40737. [
  40738. {
  40739. name: "Micro",
  40740. height: math.unit(0.8, "inches")
  40741. },
  40742. {
  40743. name: "Normal",
  40744. height: math.unit(6, "feet")
  40745. },
  40746. {
  40747. name: "Macro",
  40748. height: math.unit(50, "feet"),
  40749. default: true
  40750. },
  40751. {
  40752. name: "Macro+",
  40753. height: math.unit(250, "feet")
  40754. },
  40755. {
  40756. name: "Megamacro",
  40757. height: math.unit(1500, "feet")
  40758. },
  40759. ]
  40760. ))
  40761. characterMakers.push(() => makeCharacter(
  40762. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40763. {
  40764. front: {
  40765. height: math.unit(7 + 5/12, "feet"),
  40766. name: "Front",
  40767. image: {
  40768. source: "./media/characters/zane/front.svg",
  40769. extra: 1260/1203,
  40770. bottom: 94/1354
  40771. }
  40772. },
  40773. back: {
  40774. height: math.unit(5.05, "feet"),
  40775. name: "Back",
  40776. image: {
  40777. source: "./media/characters/zane/back.svg",
  40778. extra: 893/829,
  40779. bottom: 30/923
  40780. }
  40781. },
  40782. werewolf: {
  40783. height: math.unit(11, "feet"),
  40784. name: "Werewolf",
  40785. image: {
  40786. source: "./media/characters/zane/werewolf.svg",
  40787. extra: 1383/1323,
  40788. bottom: 89/1472
  40789. }
  40790. },
  40791. foot: {
  40792. height: math.unit(1.46, "feet"),
  40793. name: "Foot",
  40794. image: {
  40795. source: "./media/characters/zane/foot.svg"
  40796. }
  40797. },
  40798. footFront: {
  40799. height: math.unit(0.784, "feet"),
  40800. name: "Foot (Front)",
  40801. image: {
  40802. source: "./media/characters/zane/foot-front.svg"
  40803. }
  40804. },
  40805. dick: {
  40806. height: math.unit(1.95, "feet"),
  40807. name: "Dick",
  40808. image: {
  40809. source: "./media/characters/zane/dick.svg"
  40810. }
  40811. },
  40812. dickWerewolf: {
  40813. height: math.unit(3.77, "feet"),
  40814. name: "Dick (Werewolf)",
  40815. image: {
  40816. source: "./media/characters/zane/dick.svg"
  40817. }
  40818. },
  40819. },
  40820. [
  40821. {
  40822. name: "Normal",
  40823. height: math.unit(7 + 5/12, "feet"),
  40824. default: true
  40825. },
  40826. ]
  40827. ))
  40828. characterMakers.push(() => makeCharacter(
  40829. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40830. {
  40831. front: {
  40832. height: math.unit(6 + 2/12, "feet"),
  40833. weight: math.unit(284, "lb"),
  40834. name: "Front",
  40835. image: {
  40836. source: "./media/characters/benni-desparque/front.svg",
  40837. extra: 1353/1126,
  40838. bottom: 69/1422
  40839. }
  40840. },
  40841. },
  40842. [
  40843. {
  40844. name: "Civilian",
  40845. height: math.unit(6 + 2/12, "feet")
  40846. },
  40847. {
  40848. name: "Normal",
  40849. height: math.unit(98, "feet"),
  40850. default: true
  40851. },
  40852. {
  40853. name: "Kaiju Fighter",
  40854. height: math.unit(268, "feet")
  40855. },
  40856. ]
  40857. ))
  40858. characterMakers.push(() => makeCharacter(
  40859. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40860. {
  40861. front: {
  40862. height: math.unit(5, "feet"),
  40863. weight: math.unit(105, "lb"),
  40864. name: "Front",
  40865. image: {
  40866. source: "./media/characters/maxine/front.svg",
  40867. extra: 1386/1250,
  40868. bottom: 71/1457
  40869. }
  40870. },
  40871. },
  40872. [
  40873. {
  40874. name: "Normal",
  40875. height: math.unit(5, "feet"),
  40876. default: true
  40877. },
  40878. ]
  40879. ))
  40880. characterMakers.push(() => makeCharacter(
  40881. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40882. {
  40883. front: {
  40884. height: math.unit(11 + 7/12, "feet"),
  40885. weight: math.unit(9576, "lb"),
  40886. name: "Front",
  40887. image: {
  40888. source: "./media/characters/scaly/front.svg",
  40889. extra: 888/867,
  40890. bottom: 36/924
  40891. }
  40892. },
  40893. },
  40894. [
  40895. {
  40896. name: "Normal",
  40897. height: math.unit(11 + 7/12, "feet"),
  40898. default: true
  40899. },
  40900. ]
  40901. ))
  40902. characterMakers.push(() => makeCharacter(
  40903. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40904. {
  40905. front: {
  40906. height: math.unit(6 + 3/12, "feet"),
  40907. name: "Front",
  40908. image: {
  40909. source: "./media/characters/saelria/front.svg",
  40910. extra: 1243/1138,
  40911. bottom: 46/1289
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Micro",
  40918. height: math.unit(6, "inches"),
  40919. },
  40920. {
  40921. name: "Normal",
  40922. height: math.unit(6 + 3/12, "feet"),
  40923. default: true
  40924. },
  40925. {
  40926. name: "Macro",
  40927. height: math.unit(25, "feet")
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40933. {
  40934. front: {
  40935. height: math.unit(80, "meters"),
  40936. weight: math.unit(7000, "tonnes"),
  40937. name: "Front",
  40938. image: {
  40939. source: "./media/characters/tef/front.svg",
  40940. extra: 2036/1991,
  40941. bottom: 54/2090
  40942. }
  40943. },
  40944. back: {
  40945. height: math.unit(80, "meters"),
  40946. weight: math.unit(7000, "tonnes"),
  40947. name: "Back",
  40948. image: {
  40949. source: "./media/characters/tef/back.svg",
  40950. extra: 2036/1991,
  40951. bottom: 54/2090
  40952. }
  40953. },
  40954. },
  40955. [
  40956. {
  40957. name: "Macro",
  40958. height: math.unit(80, "meters"),
  40959. default: true
  40960. },
  40961. ]
  40962. ))
  40963. characterMakers.push(() => makeCharacter(
  40964. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40965. {
  40966. front: {
  40967. height: math.unit(13, "feet"),
  40968. weight: math.unit(6, "tons"),
  40969. name: "Front",
  40970. image: {
  40971. source: "./media/characters/rover/front.svg",
  40972. extra: 1233/1156,
  40973. bottom: 50/1283
  40974. }
  40975. },
  40976. back: {
  40977. height: math.unit(13, "feet"),
  40978. weight: math.unit(6, "tons"),
  40979. name: "Back",
  40980. image: {
  40981. source: "./media/characters/rover/back.svg",
  40982. extra: 1327/1258,
  40983. bottom: 39/1366
  40984. }
  40985. },
  40986. },
  40987. [
  40988. {
  40989. name: "Normal",
  40990. height: math.unit(13, "feet"),
  40991. default: true
  40992. },
  40993. {
  40994. name: "Macro",
  40995. height: math.unit(1300, "feet")
  40996. },
  40997. {
  40998. name: "Megamacro",
  40999. height: math.unit(1300, "miles")
  41000. },
  41001. {
  41002. name: "Gigamacro",
  41003. height: math.unit(1300000, "miles")
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41009. {
  41010. front: {
  41011. height: math.unit(6, "feet"),
  41012. weight: math.unit(150, "lb"),
  41013. name: "Front",
  41014. image: {
  41015. source: "./media/characters/ariz/front.svg",
  41016. extra: 1401/1346,
  41017. bottom: 5/1406
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Normal",
  41024. height: math.unit(10, "feet"),
  41025. default: true
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41031. {
  41032. front: {
  41033. height: math.unit(6, "feet"),
  41034. weight: math.unit(140, "lb"),
  41035. name: "Front",
  41036. image: {
  41037. source: "./media/characters/sigrun/front.svg",
  41038. extra: 1418/1359,
  41039. bottom: 27/1445
  41040. }
  41041. },
  41042. },
  41043. [
  41044. {
  41045. name: "Macro",
  41046. height: math.unit(35, "feet"),
  41047. default: true
  41048. },
  41049. ]
  41050. ))
  41051. characterMakers.push(() => makeCharacter(
  41052. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41053. {
  41054. front: {
  41055. height: math.unit(6, "feet"),
  41056. weight: math.unit(150, "lb"),
  41057. name: "Front",
  41058. image: {
  41059. source: "./media/characters/numin/front.svg",
  41060. extra: 1433/1388,
  41061. bottom: 12/1445
  41062. }
  41063. },
  41064. },
  41065. [
  41066. {
  41067. name: "Macro",
  41068. height: math.unit(21.5, "km"),
  41069. default: true
  41070. },
  41071. ]
  41072. ))
  41073. characterMakers.push(() => makeCharacter(
  41074. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41075. {
  41076. front: {
  41077. height: math.unit(6, "feet"),
  41078. weight: math.unit(463, "lb"),
  41079. name: "Front",
  41080. image: {
  41081. source: "./media/characters/melwa/front.svg",
  41082. extra: 1307/1248,
  41083. bottom: 93/1400
  41084. }
  41085. },
  41086. },
  41087. [
  41088. {
  41089. name: "Macro",
  41090. height: math.unit(50, "meters"),
  41091. default: true
  41092. },
  41093. ]
  41094. ))
  41095. characterMakers.push(() => makeCharacter(
  41096. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41097. {
  41098. front: {
  41099. height: math.unit(325, "feet"),
  41100. name: "Front",
  41101. image: {
  41102. source: "./media/characters/zorkaiju/front.svg",
  41103. extra: 1955/1814,
  41104. bottom: 40/1995
  41105. }
  41106. },
  41107. frontExtended: {
  41108. height: math.unit(325, "feet"),
  41109. name: "Front (Extended)",
  41110. image: {
  41111. source: "./media/characters/zorkaiju/front-extended.svg",
  41112. extra: 1955/1814,
  41113. bottom: 40/1995
  41114. }
  41115. },
  41116. side: {
  41117. height: math.unit(325, "feet"),
  41118. name: "Side",
  41119. image: {
  41120. source: "./media/characters/zorkaiju/side.svg",
  41121. extra: 1495/1396,
  41122. bottom: 17/1512
  41123. }
  41124. },
  41125. sideExtended: {
  41126. height: math.unit(325, "feet"),
  41127. name: "Side (Extended)",
  41128. image: {
  41129. source: "./media/characters/zorkaiju/side-extended.svg",
  41130. extra: 1495/1396,
  41131. bottom: 17/1512
  41132. }
  41133. },
  41134. back: {
  41135. height: math.unit(325, "feet"),
  41136. name: "Back",
  41137. image: {
  41138. source: "./media/characters/zorkaiju/back.svg",
  41139. extra: 1959/1821,
  41140. bottom: 31/1990
  41141. }
  41142. },
  41143. backExtended: {
  41144. height: math.unit(325, "feet"),
  41145. name: "Back (Extended)",
  41146. image: {
  41147. source: "./media/characters/zorkaiju/back-extended.svg",
  41148. extra: 1959/1821,
  41149. bottom: 31/1990
  41150. }
  41151. },
  41152. hand: {
  41153. height: math.unit(58.4, "feet"),
  41154. name: "Hand",
  41155. image: {
  41156. source: "./media/characters/zorkaiju/hand.svg"
  41157. }
  41158. },
  41159. handExtended: {
  41160. height: math.unit(61.4, "feet"),
  41161. name: "Hand (Extended)",
  41162. image: {
  41163. source: "./media/characters/zorkaiju/hand-extended.svg"
  41164. }
  41165. },
  41166. foot: {
  41167. height: math.unit(95, "feet"),
  41168. name: "Foot",
  41169. image: {
  41170. source: "./media/characters/zorkaiju/foot.svg"
  41171. }
  41172. },
  41173. leftArm: {
  41174. height: math.unit(59, "feet"),
  41175. name: "Left Arm",
  41176. image: {
  41177. source: "./media/characters/zorkaiju/left-arm.svg"
  41178. }
  41179. },
  41180. rightArm: {
  41181. height: math.unit(59, "feet"),
  41182. name: "Right Arm",
  41183. image: {
  41184. source: "./media/characters/zorkaiju/right-arm.svg"
  41185. }
  41186. },
  41187. tail: {
  41188. height: math.unit(104, "feet"),
  41189. name: "Tail",
  41190. image: {
  41191. source: "./media/characters/zorkaiju/tail.svg"
  41192. }
  41193. },
  41194. tailExtended: {
  41195. height: math.unit(104, "feet"),
  41196. name: "Tail (Extended)",
  41197. image: {
  41198. source: "./media/characters/zorkaiju/tail-extended.svg"
  41199. }
  41200. },
  41201. tailBottom: {
  41202. height: math.unit(104, "feet"),
  41203. name: "Tail Bottom",
  41204. image: {
  41205. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41206. }
  41207. },
  41208. crystal: {
  41209. height: math.unit(27.54, "feet"),
  41210. name: "Crystal",
  41211. image: {
  41212. source: "./media/characters/zorkaiju/crystal.svg"
  41213. }
  41214. },
  41215. },
  41216. [
  41217. {
  41218. name: "Kaiju",
  41219. height: math.unit(325, "feet"),
  41220. default: true
  41221. },
  41222. ]
  41223. ))
  41224. characterMakers.push(() => makeCharacter(
  41225. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41226. {
  41227. front: {
  41228. height: math.unit(6 + 1/12, "feet"),
  41229. weight: math.unit(115, "lb"),
  41230. name: "Front",
  41231. image: {
  41232. source: "./media/characters/bailey-belfry/front.svg",
  41233. extra: 1240/1121,
  41234. bottom: 101/1341
  41235. }
  41236. },
  41237. },
  41238. [
  41239. {
  41240. name: "Normal",
  41241. height: math.unit(6 + 1/12, "feet"),
  41242. default: true
  41243. },
  41244. ]
  41245. ))
  41246. characterMakers.push(() => makeCharacter(
  41247. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41248. {
  41249. side: {
  41250. height: math.unit(4, "meters"),
  41251. weight: math.unit(250, "kg"),
  41252. name: "Side",
  41253. image: {
  41254. source: "./media/characters/blacky/side.svg",
  41255. extra: 1027/919,
  41256. bottom: 43/1070
  41257. }
  41258. },
  41259. maw: {
  41260. height: math.unit(1, "meters"),
  41261. name: "Maw",
  41262. image: {
  41263. source: "./media/characters/blacky/maw.svg"
  41264. }
  41265. },
  41266. paw: {
  41267. height: math.unit(1, "meters"),
  41268. name: "Paw",
  41269. image: {
  41270. source: "./media/characters/blacky/paw.svg"
  41271. }
  41272. },
  41273. },
  41274. [
  41275. {
  41276. name: "Normal",
  41277. height: math.unit(4, "meters"),
  41278. default: true
  41279. },
  41280. ]
  41281. ))
  41282. characterMakers.push(() => makeCharacter(
  41283. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41284. {
  41285. front: {
  41286. height: math.unit(170, "cm"),
  41287. weight: math.unit(66, "kg"),
  41288. name: "Front",
  41289. image: {
  41290. source: "./media/characters/thux-ei/front.svg",
  41291. extra: 1109/1011,
  41292. bottom: 8/1117
  41293. }
  41294. },
  41295. },
  41296. [
  41297. {
  41298. name: "Normal",
  41299. height: math.unit(170, "cm"),
  41300. default: true
  41301. },
  41302. ]
  41303. ))
  41304. characterMakers.push(() => makeCharacter(
  41305. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41306. {
  41307. front: {
  41308. height: math.unit(5, "feet"),
  41309. weight: math.unit(120, "lb"),
  41310. name: "Front",
  41311. image: {
  41312. source: "./media/characters/roxanne-voltaire/front.svg",
  41313. extra: 1901/1779,
  41314. bottom: 53/1954
  41315. }
  41316. },
  41317. },
  41318. [
  41319. {
  41320. name: "Normal",
  41321. height: math.unit(5, "feet"),
  41322. default: true
  41323. },
  41324. {
  41325. name: "Giant",
  41326. height: math.unit(50, "feet")
  41327. },
  41328. {
  41329. name: "Titan",
  41330. height: math.unit(500, "feet")
  41331. },
  41332. {
  41333. name: "Macro",
  41334. height: math.unit(5000, "feet")
  41335. },
  41336. {
  41337. name: "Megamacro",
  41338. height: math.unit(50000, "feet")
  41339. },
  41340. {
  41341. name: "Gigamacro",
  41342. height: math.unit(500000, "feet")
  41343. },
  41344. {
  41345. name: "Teramacro",
  41346. height: math.unit(5e6, "feet")
  41347. },
  41348. ]
  41349. ))
  41350. characterMakers.push(() => makeCharacter(
  41351. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41352. {
  41353. front: {
  41354. height: math.unit(6 + 2/12, "feet"),
  41355. name: "Front",
  41356. image: {
  41357. source: "./media/characters/squeaks/front.svg",
  41358. extra: 1823/1768,
  41359. bottom: 138/1961
  41360. }
  41361. },
  41362. },
  41363. [
  41364. {
  41365. name: "Micro",
  41366. height: math.unit(0.5, "inches")
  41367. },
  41368. {
  41369. name: "Normal",
  41370. height: math.unit(6 + 2/12, "feet"),
  41371. default: true
  41372. },
  41373. {
  41374. name: "Macro",
  41375. height: math.unit(600, "feet")
  41376. },
  41377. ]
  41378. ))
  41379. characterMakers.push(() => makeCharacter(
  41380. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41381. {
  41382. front: {
  41383. height: math.unit(1.72, "meters"),
  41384. name: "Front",
  41385. image: {
  41386. source: "./media/characters/archinger/front.svg",
  41387. extra: 1861/1675,
  41388. bottom: 125/1986
  41389. }
  41390. },
  41391. back: {
  41392. height: math.unit(1.72, "meters"),
  41393. name: "Back",
  41394. image: {
  41395. source: "./media/characters/archinger/back.svg",
  41396. extra: 1844/1701,
  41397. bottom: 104/1948
  41398. }
  41399. },
  41400. cock: {
  41401. height: math.unit(0.59, "feet"),
  41402. name: "Cock",
  41403. image: {
  41404. source: "./media/characters/archinger/cock.svg"
  41405. }
  41406. },
  41407. },
  41408. [
  41409. {
  41410. name: "Normal",
  41411. height: math.unit(1.72, "meters"),
  41412. default: true
  41413. },
  41414. {
  41415. name: "Macro",
  41416. height: math.unit(84, "meters")
  41417. },
  41418. {
  41419. name: "Macro+",
  41420. height: math.unit(112, "meters")
  41421. },
  41422. {
  41423. name: "Macro++",
  41424. height: math.unit(960, "meters")
  41425. },
  41426. {
  41427. name: "Macro+++",
  41428. height: math.unit(4, "km")
  41429. },
  41430. {
  41431. name: "Macro++++",
  41432. height: math.unit(48, "km")
  41433. },
  41434. {
  41435. name: "Macro+++++",
  41436. height: math.unit(4500, "km")
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41442. {
  41443. front: {
  41444. height: math.unit(5 + 5/12, "feet"),
  41445. name: "Front",
  41446. image: {
  41447. source: "./media/characters/alsnapz/front.svg",
  41448. extra: 1157/1065,
  41449. bottom: 42/1199
  41450. }
  41451. },
  41452. },
  41453. [
  41454. {
  41455. name: "Normal",
  41456. height: math.unit(5 + 5/12, "feet"),
  41457. default: true
  41458. },
  41459. ]
  41460. ))
  41461. characterMakers.push(() => makeCharacter(
  41462. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41463. {
  41464. side: {
  41465. height: math.unit(3.2, "earths"),
  41466. name: "Side",
  41467. image: {
  41468. source: "./media/characters/mag/side.svg",
  41469. extra: 1331/1008,
  41470. bottom: 52/1383
  41471. }
  41472. },
  41473. wing: {
  41474. height: math.unit(1.94, "earths"),
  41475. name: "Wing",
  41476. image: {
  41477. source: "./media/characters/mag/wing.svg"
  41478. }
  41479. },
  41480. dick: {
  41481. height: math.unit(1.8, "earths"),
  41482. name: "Dick",
  41483. image: {
  41484. source: "./media/characters/mag/dick.svg"
  41485. }
  41486. },
  41487. ass: {
  41488. height: math.unit(1.33, "earths"),
  41489. name: "Ass",
  41490. image: {
  41491. source: "./media/characters/mag/ass.svg"
  41492. }
  41493. },
  41494. head: {
  41495. height: math.unit(1.1, "earths"),
  41496. name: "Head",
  41497. image: {
  41498. source: "./media/characters/mag/head.svg"
  41499. }
  41500. },
  41501. maw: {
  41502. height: math.unit(1.62, "earths"),
  41503. name: "Maw",
  41504. image: {
  41505. source: "./media/characters/mag/maw.svg"
  41506. }
  41507. },
  41508. },
  41509. [
  41510. {
  41511. name: "Small",
  41512. height: math.unit(162, "feet")
  41513. },
  41514. {
  41515. name: "Normal",
  41516. height: math.unit(3.2, "earths"),
  41517. default: true
  41518. },
  41519. ]
  41520. ))
  41521. characterMakers.push(() => makeCharacter(
  41522. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41523. {
  41524. front: {
  41525. height: math.unit(512, "feet"),
  41526. weight: math.unit(63509, "tonnes"),
  41527. name: "Front",
  41528. image: {
  41529. source: "./media/characters/vorrel-harroc/front.svg",
  41530. extra: 1075/1063,
  41531. bottom: 62/1137
  41532. }
  41533. },
  41534. },
  41535. [
  41536. {
  41537. name: "Normal",
  41538. height: math.unit(10, "feet")
  41539. },
  41540. {
  41541. name: "Macro",
  41542. height: math.unit(512, "feet"),
  41543. default: true
  41544. },
  41545. {
  41546. name: "Megamacro",
  41547. height: math.unit(256, "miles")
  41548. },
  41549. {
  41550. name: "Gigamacro",
  41551. height: math.unit(4096, "miles")
  41552. },
  41553. ]
  41554. ))
  41555. characterMakers.push(() => makeCharacter(
  41556. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41557. {
  41558. side: {
  41559. height: math.unit(50, "feet"),
  41560. name: "Side",
  41561. image: {
  41562. source: "./media/characters/froimar/side.svg",
  41563. extra: 855/638,
  41564. bottom: 99/954
  41565. }
  41566. },
  41567. },
  41568. [
  41569. {
  41570. name: "Macro",
  41571. height: math.unit(50, "feet"),
  41572. default: true
  41573. },
  41574. ]
  41575. ))
  41576. characterMakers.push(() => makeCharacter(
  41577. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41578. {
  41579. front: {
  41580. height: math.unit(210, "miles"),
  41581. name: "Front",
  41582. image: {
  41583. source: "./media/characters/timothy/front.svg",
  41584. extra: 1007/943,
  41585. bottom: 62/1069
  41586. }
  41587. },
  41588. frontSkirt: {
  41589. height: math.unit(210, "miles"),
  41590. name: "Front (Skirt)",
  41591. image: {
  41592. source: "./media/characters/timothy/front-skirt.svg",
  41593. extra: 1007/943,
  41594. bottom: 62/1069
  41595. }
  41596. },
  41597. frontCoat: {
  41598. height: math.unit(210, "miles"),
  41599. name: "Front (Coat)",
  41600. image: {
  41601. source: "./media/characters/timothy/front-coat.svg",
  41602. extra: 1007/943,
  41603. bottom: 62/1069
  41604. }
  41605. },
  41606. },
  41607. [
  41608. {
  41609. name: "Macro",
  41610. height: math.unit(210, "miles"),
  41611. default: true
  41612. },
  41613. {
  41614. name: "Megamacro",
  41615. height: math.unit(210000, "miles")
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41621. {
  41622. front: {
  41623. height: math.unit(188, "feet"),
  41624. name: "Front",
  41625. image: {
  41626. source: "./media/characters/pyotr/front.svg",
  41627. extra: 1912/1826,
  41628. bottom: 18/1930
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Macro",
  41635. height: math.unit(188, "feet"),
  41636. default: true
  41637. },
  41638. {
  41639. name: "Megamacro",
  41640. height: math.unit(8, "miles")
  41641. },
  41642. ]
  41643. ))
  41644. characterMakers.push(() => makeCharacter(
  41645. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41646. {
  41647. side: {
  41648. height: math.unit(10, "feet"),
  41649. weight: math.unit(4500, "lb"),
  41650. name: "Side",
  41651. image: {
  41652. source: "./media/characters/ackart/side.svg",
  41653. extra: 1776/1668,
  41654. bottom: 116/1892
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Normal",
  41661. height: math.unit(10, "feet"),
  41662. default: true
  41663. },
  41664. ]
  41665. ))
  41666. characterMakers.push(() => makeCharacter(
  41667. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41668. {
  41669. side: {
  41670. height: math.unit(21, "feet"),
  41671. name: "Side",
  41672. image: {
  41673. source: "./media/characters/nolow/side.svg",
  41674. extra: 1484/1434,
  41675. bottom: 85/1569
  41676. }
  41677. },
  41678. sideErect: {
  41679. height: math.unit(21, "feet"),
  41680. name: "Side-erect",
  41681. image: {
  41682. source: "./media/characters/nolow/side-erect.svg",
  41683. extra: 1484/1434,
  41684. bottom: 85/1569
  41685. }
  41686. },
  41687. },
  41688. [
  41689. {
  41690. name: "Regular",
  41691. height: math.unit(12, "feet")
  41692. },
  41693. {
  41694. name: "Big Chee",
  41695. height: math.unit(21, "feet"),
  41696. default: true
  41697. },
  41698. ]
  41699. ))
  41700. characterMakers.push(() => makeCharacter(
  41701. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41702. {
  41703. front: {
  41704. height: math.unit(7, "feet"),
  41705. weight: math.unit(250, "lb"),
  41706. name: "Front",
  41707. image: {
  41708. source: "./media/characters/nines/front.svg",
  41709. extra: 1741/1607,
  41710. bottom: 41/1782
  41711. }
  41712. },
  41713. side: {
  41714. height: math.unit(7, "feet"),
  41715. weight: math.unit(250, "lb"),
  41716. name: "Side",
  41717. image: {
  41718. source: "./media/characters/nines/side.svg",
  41719. extra: 1854/1735,
  41720. bottom: 93/1947
  41721. }
  41722. },
  41723. back: {
  41724. height: math.unit(7, "feet"),
  41725. weight: math.unit(250, "lb"),
  41726. name: "Back",
  41727. image: {
  41728. source: "./media/characters/nines/back.svg",
  41729. extra: 1748/1615,
  41730. bottom: 20/1768
  41731. }
  41732. },
  41733. },
  41734. [
  41735. {
  41736. name: "Megamacro",
  41737. height: math.unit(99, "km"),
  41738. default: true
  41739. },
  41740. ]
  41741. ))
  41742. characterMakers.push(() => makeCharacter(
  41743. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41744. {
  41745. front: {
  41746. height: math.unit(5 + 10/12, "feet"),
  41747. weight: math.unit(210, "lb"),
  41748. name: "Front",
  41749. image: {
  41750. source: "./media/characters/zenith/front.svg",
  41751. extra: 1531/1452,
  41752. bottom: 198/1729
  41753. }
  41754. },
  41755. back: {
  41756. height: math.unit(5 + 10/12, "feet"),
  41757. weight: math.unit(210, "lb"),
  41758. name: "Back",
  41759. image: {
  41760. source: "./media/characters/zenith/back.svg",
  41761. extra: 1571/1487,
  41762. bottom: 75/1646
  41763. }
  41764. },
  41765. },
  41766. [
  41767. {
  41768. name: "Normal",
  41769. height: math.unit(5 + 10/12, "feet"),
  41770. default: true
  41771. }
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41776. {
  41777. front: {
  41778. height: math.unit(4, "feet"),
  41779. weight: math.unit(60, "lb"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/jasper/front.svg",
  41783. extra: 1450/1379,
  41784. bottom: 19/1469
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Normal",
  41791. height: math.unit(4, "feet"),
  41792. default: true
  41793. },
  41794. ]
  41795. ))
  41796. characterMakers.push(() => makeCharacter(
  41797. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41798. {
  41799. front: {
  41800. height: math.unit(6 + 5/12, "feet"),
  41801. weight: math.unit(290, "lb"),
  41802. name: "Front",
  41803. image: {
  41804. source: "./media/characters/tiberius-thyben/front.svg",
  41805. extra: 757/739,
  41806. bottom: 39/796
  41807. }
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Micro",
  41813. height: math.unit(1.5, "inches")
  41814. },
  41815. {
  41816. name: "Normal",
  41817. height: math.unit(6 + 5/12, "feet"),
  41818. default: true
  41819. },
  41820. {
  41821. name: "Macro",
  41822. height: math.unit(300, "feet")
  41823. },
  41824. ]
  41825. ))
  41826. characterMakers.push(() => makeCharacter(
  41827. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41828. {
  41829. front: {
  41830. height: math.unit(5 + 6/12, "feet"),
  41831. weight: math.unit(60, "kg"),
  41832. name: "Front",
  41833. image: {
  41834. source: "./media/characters/sabre/front.svg",
  41835. extra: 738/671,
  41836. bottom: 27/765
  41837. }
  41838. },
  41839. },
  41840. [
  41841. {
  41842. name: "Teeny",
  41843. height: math.unit(2, "inches")
  41844. },
  41845. {
  41846. name: "Smol",
  41847. height: math.unit(8, "inches")
  41848. },
  41849. {
  41850. name: "Normal",
  41851. height: math.unit(5 + 6/12, "feet"),
  41852. default: true
  41853. },
  41854. {
  41855. name: "Mini-Macro",
  41856. height: math.unit(15, "feet")
  41857. },
  41858. {
  41859. name: "Macro",
  41860. height: math.unit(50, "feet")
  41861. },
  41862. ]
  41863. ))
  41864. characterMakers.push(() => makeCharacter(
  41865. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41866. {
  41867. front: {
  41868. height: math.unit(6 + 4/12, "feet"),
  41869. weight: math.unit(170, "lb"),
  41870. name: "Front",
  41871. image: {
  41872. source: "./media/characters/charlie/front.svg",
  41873. extra: 1348/1228,
  41874. bottom: 15/1363
  41875. }
  41876. },
  41877. },
  41878. [
  41879. {
  41880. name: "Macro",
  41881. height: math.unit(1700, "meters"),
  41882. default: true
  41883. },
  41884. {
  41885. name: "MegaMacro",
  41886. height: math.unit(20400, "meters")
  41887. },
  41888. ]
  41889. ))
  41890. characterMakers.push(() => makeCharacter(
  41891. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41892. {
  41893. front: {
  41894. height: math.unit(6 + 3/12, "feet"),
  41895. weight: math.unit(185, "lb"),
  41896. name: "Front",
  41897. image: {
  41898. source: "./media/characters/susan-grant/front.svg",
  41899. extra: 1351/1327,
  41900. bottom: 26/1377
  41901. }
  41902. },
  41903. },
  41904. [
  41905. {
  41906. name: "Normal",
  41907. height: math.unit(6 + 3/12, "feet"),
  41908. default: true
  41909. },
  41910. {
  41911. name: "Macro",
  41912. height: math.unit(225, "feet")
  41913. },
  41914. {
  41915. name: "Macro+",
  41916. height: math.unit(900, "feet")
  41917. },
  41918. {
  41919. name: "MegaMacro",
  41920. height: math.unit(14400, "feet")
  41921. },
  41922. ]
  41923. ))
  41924. characterMakers.push(() => makeCharacter(
  41925. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41926. {
  41927. front: {
  41928. height: math.unit(5 + 4/12, "feet"),
  41929. weight: math.unit(110, "lb"),
  41930. name: "Front",
  41931. image: {
  41932. source: "./media/characters/axel-isanov/front.svg",
  41933. extra: 1096/1065,
  41934. bottom: 13/1109
  41935. }
  41936. },
  41937. },
  41938. [
  41939. {
  41940. name: "Normal",
  41941. height: math.unit(5 + 4/12, "feet"),
  41942. default: true
  41943. },
  41944. ]
  41945. ))
  41946. characterMakers.push(() => makeCharacter(
  41947. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41948. {
  41949. front: {
  41950. height: math.unit(9, "feet"),
  41951. weight: math.unit(467, "lb"),
  41952. name: "Front",
  41953. image: {
  41954. source: "./media/characters/necahual/front.svg",
  41955. extra: 920/873,
  41956. bottom: 26/946
  41957. }
  41958. },
  41959. back: {
  41960. height: math.unit(9, "feet"),
  41961. weight: math.unit(467, "lb"),
  41962. name: "Back",
  41963. image: {
  41964. source: "./media/characters/necahual/back.svg",
  41965. extra: 930/884,
  41966. bottom: 16/946
  41967. }
  41968. },
  41969. frontUnderwear: {
  41970. height: math.unit(9, "feet"),
  41971. weight: math.unit(467, "lb"),
  41972. name: "Front (Underwear)",
  41973. image: {
  41974. source: "./media/characters/necahual/front-underwear.svg",
  41975. extra: 920/873,
  41976. bottom: 26/946
  41977. }
  41978. },
  41979. frontDressed: {
  41980. height: math.unit(9, "feet"),
  41981. weight: math.unit(467, "lb"),
  41982. name: "Front (Dressed)",
  41983. image: {
  41984. source: "./media/characters/necahual/front-dressed.svg",
  41985. extra: 920/873,
  41986. bottom: 26/946
  41987. }
  41988. },
  41989. },
  41990. [
  41991. {
  41992. name: "Comprsesed",
  41993. height: math.unit(9, "feet")
  41994. },
  41995. {
  41996. name: "Natural",
  41997. height: math.unit(15, "feet"),
  41998. default: true
  41999. },
  42000. {
  42001. name: "Boosted",
  42002. height: math.unit(50, "feet")
  42003. },
  42004. {
  42005. name: "Boosted+",
  42006. height: math.unit(150, "feet")
  42007. },
  42008. {
  42009. name: "Max",
  42010. height: math.unit(500, "feet")
  42011. },
  42012. ]
  42013. ))
  42014. characterMakers.push(() => makeCharacter(
  42015. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42016. {
  42017. front: {
  42018. height: math.unit(22 + 1/12, "feet"),
  42019. weight: math.unit(3200, "lb"),
  42020. name: "Front",
  42021. image: {
  42022. source: "./media/characters/theo-acacia/front.svg",
  42023. extra: 1796/1741,
  42024. bottom: 83/1879
  42025. }
  42026. },
  42027. frontUnderwear: {
  42028. height: math.unit(22 + 1/12, "feet"),
  42029. weight: math.unit(3200, "lb"),
  42030. name: "Front (Underwear)",
  42031. image: {
  42032. source: "./media/characters/theo-acacia/front-underwear.svg",
  42033. extra: 1796/1741,
  42034. bottom: 83/1879
  42035. }
  42036. },
  42037. frontNude: {
  42038. height: math.unit(22 + 1/12, "feet"),
  42039. weight: math.unit(3200, "lb"),
  42040. name: "Front (Nude)",
  42041. image: {
  42042. source: "./media/characters/theo-acacia/front-nude.svg",
  42043. extra: 1796/1741,
  42044. bottom: 83/1879
  42045. }
  42046. },
  42047. },
  42048. [
  42049. {
  42050. name: "Normal",
  42051. height: math.unit(22 + 1/12, "feet"),
  42052. default: true
  42053. },
  42054. ]
  42055. ))
  42056. characterMakers.push(() => makeCharacter(
  42057. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42058. {
  42059. front: {
  42060. height: math.unit(20, "feet"),
  42061. name: "Front",
  42062. image: {
  42063. source: "./media/characters/astra/front.svg",
  42064. extra: 1850/1714,
  42065. bottom: 106/1956
  42066. }
  42067. },
  42068. frontUndressed: {
  42069. height: math.unit(20, "feet"),
  42070. name: "Front (Undressed)",
  42071. image: {
  42072. source: "./media/characters/astra/front-undressed.svg",
  42073. extra: 1926/1749,
  42074. bottom: 0/1926
  42075. }
  42076. },
  42077. hand: {
  42078. height: math.unit(1.53, "feet"),
  42079. name: "Hand",
  42080. image: {
  42081. source: "./media/characters/astra/hand.svg"
  42082. }
  42083. },
  42084. paw: {
  42085. height: math.unit(1.53, "feet"),
  42086. name: "Paw",
  42087. image: {
  42088. source: "./media/characters/astra/paw.svg"
  42089. }
  42090. },
  42091. },
  42092. [
  42093. {
  42094. name: "Smallest",
  42095. height: math.unit(20, "feet")
  42096. },
  42097. {
  42098. name: "Normal",
  42099. height: math.unit(1e9, "miles"),
  42100. default: true
  42101. },
  42102. {
  42103. name: "Larger",
  42104. height: math.unit(5, "multiverses")
  42105. },
  42106. {
  42107. name: "Largest",
  42108. height: math.unit(1e9, "multiverses")
  42109. },
  42110. ]
  42111. ))
  42112. characterMakers.push(() => makeCharacter(
  42113. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42114. {
  42115. front: {
  42116. height: math.unit(8, "feet"),
  42117. name: "Front",
  42118. image: {
  42119. source: "./media/characters/breanna/front.svg",
  42120. extra: 1912/1632,
  42121. bottom: 33/1945
  42122. }
  42123. },
  42124. },
  42125. [
  42126. {
  42127. name: "Smallest",
  42128. height: math.unit(8, "feet")
  42129. },
  42130. {
  42131. name: "Normal",
  42132. height: math.unit(1, "mile"),
  42133. default: true
  42134. },
  42135. {
  42136. name: "Maximum",
  42137. height: math.unit(1500000000000, "lightyears")
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(5 + 11/12, "feet"),
  42146. weight: math.unit(155, "lb"),
  42147. name: "Front",
  42148. image: {
  42149. source: "./media/characters/cai/front.svg",
  42150. extra: 1823/1702,
  42151. bottom: 32/1855
  42152. }
  42153. },
  42154. back: {
  42155. height: math.unit(5 + 11/12, "feet"),
  42156. weight: math.unit(155, "lb"),
  42157. name: "Back",
  42158. image: {
  42159. source: "./media/characters/cai/back.svg",
  42160. extra: 1809/1708,
  42161. bottom: 31/1840
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Normal",
  42168. height: math.unit(5 + 11/12, "feet"),
  42169. default: true
  42170. },
  42171. {
  42172. name: "Big",
  42173. height: math.unit(15, "feet")
  42174. },
  42175. {
  42176. name: "Macro",
  42177. height: math.unit(200, "feet")
  42178. },
  42179. ]
  42180. ))
  42181. characterMakers.push(() => makeCharacter(
  42182. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42183. {
  42184. front: {
  42185. height: math.unit(5 + 6/12, "feet"),
  42186. weight: math.unit(160, "lb"),
  42187. name: "Front",
  42188. image: {
  42189. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42190. extra: 1227/1174,
  42191. bottom: 37/1264
  42192. }
  42193. },
  42194. },
  42195. [
  42196. {
  42197. name: "Macro",
  42198. height: math.unit(444, "meters"),
  42199. default: true
  42200. },
  42201. ]
  42202. ))
  42203. characterMakers.push(() => makeCharacter(
  42204. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42205. {
  42206. front: {
  42207. height: math.unit(18 + 7/12, "feet"),
  42208. name: "Front",
  42209. image: {
  42210. source: "./media/characters/rex/front.svg",
  42211. extra: 1941/1807,
  42212. bottom: 66/2007
  42213. }
  42214. },
  42215. back: {
  42216. height: math.unit(18 + 7/12, "feet"),
  42217. name: "Back",
  42218. image: {
  42219. source: "./media/characters/rex/back.svg",
  42220. extra: 1937/1822,
  42221. bottom: 42/1979
  42222. }
  42223. },
  42224. boot: {
  42225. height: math.unit(3.45, "feet"),
  42226. name: "Boot",
  42227. image: {
  42228. source: "./media/characters/rex/boot.svg"
  42229. }
  42230. },
  42231. paw: {
  42232. height: math.unit(4.17, "feet"),
  42233. name: "Paw",
  42234. image: {
  42235. source: "./media/characters/rex/paw.svg"
  42236. }
  42237. },
  42238. head: {
  42239. height: math.unit(6.728, "feet"),
  42240. name: "Head",
  42241. image: {
  42242. source: "./media/characters/rex/head.svg"
  42243. }
  42244. },
  42245. },
  42246. [
  42247. {
  42248. name: "Nano",
  42249. height: math.unit(18 + 7/12, "feet")
  42250. },
  42251. {
  42252. name: "Micro",
  42253. height: math.unit(1.5, "megameters")
  42254. },
  42255. {
  42256. name: "Normal",
  42257. height: math.unit(440, "megameters"),
  42258. default: true
  42259. },
  42260. {
  42261. name: "Macro",
  42262. height: math.unit(2.5, "gigameters")
  42263. },
  42264. {
  42265. name: "Gigamacro",
  42266. height: math.unit(2, "galaxies")
  42267. },
  42268. ]
  42269. ))
  42270. characterMakers.push(() => makeCharacter(
  42271. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42272. {
  42273. side: {
  42274. height: math.unit(32, "feet"),
  42275. weight: math.unit(250000, "lb"),
  42276. name: "Side",
  42277. image: {
  42278. source: "./media/characters/silverwing/side.svg",
  42279. extra: 1100/1019,
  42280. bottom: 204/1304
  42281. }
  42282. },
  42283. },
  42284. [
  42285. {
  42286. name: "Normal",
  42287. height: math.unit(32, "feet"),
  42288. default: true
  42289. },
  42290. ]
  42291. ))
  42292. characterMakers.push(() => makeCharacter(
  42293. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42294. {
  42295. front: {
  42296. height: math.unit(6 + 6/12, "feet"),
  42297. weight: math.unit(350, "lb"),
  42298. name: "Front",
  42299. image: {
  42300. source: "./media/characters/tristan-hawthorne/front.svg",
  42301. extra: 1159/1124,
  42302. bottom: 37/1196
  42303. },
  42304. form: "labrador",
  42305. default: true
  42306. },
  42307. skunkFront: {
  42308. height: math.unit(4 + 6/12, "feet"),
  42309. weight: math.unit(120, "lb"),
  42310. name: "Front",
  42311. image: {
  42312. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42313. extra: 1609/1551,
  42314. bottom: 169/1778
  42315. },
  42316. form: "skunk",
  42317. default: true
  42318. },
  42319. },
  42320. [
  42321. {
  42322. name: "Normal",
  42323. height: math.unit(6 + 6/12, "feet"),
  42324. form: "labrador",
  42325. default: true
  42326. },
  42327. {
  42328. name: "Normal",
  42329. height: math.unit(4 + 6/12, "feet"),
  42330. form: "skunk",
  42331. default: true
  42332. },
  42333. ],
  42334. {
  42335. "labrador": {
  42336. name: "Labrador",
  42337. default: true
  42338. },
  42339. "skunk": {
  42340. name: "Skunk"
  42341. }
  42342. }
  42343. ))
  42344. characterMakers.push(() => makeCharacter(
  42345. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42346. {
  42347. front: {
  42348. height: math.unit(5 + 11/12, "feet"),
  42349. weight: math.unit(190, "lb"),
  42350. name: "Front",
  42351. image: {
  42352. source: "./media/characters/mizu/front.svg",
  42353. extra: 1988/1788,
  42354. bottom: 14/2002
  42355. }
  42356. },
  42357. },
  42358. [
  42359. {
  42360. name: "Normal",
  42361. height: math.unit(5 + 11/12, "feet"),
  42362. default: true
  42363. },
  42364. ]
  42365. ))
  42366. characterMakers.push(() => makeCharacter(
  42367. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42368. {
  42369. front: {
  42370. height: math.unit(1.7, "feet"),
  42371. weight: math.unit(50, "lb"),
  42372. name: "Front",
  42373. image: {
  42374. source: "./media/characters/dechroma/front.svg",
  42375. extra: 1095/859,
  42376. bottom: 64/1159
  42377. }
  42378. },
  42379. },
  42380. [
  42381. {
  42382. name: "Normal",
  42383. height: math.unit(1.7, "feet"),
  42384. default: true
  42385. },
  42386. ]
  42387. ))
  42388. characterMakers.push(() => makeCharacter(
  42389. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42390. {
  42391. side: {
  42392. height: math.unit(30, "feet"),
  42393. name: "Side",
  42394. image: {
  42395. source: "./media/characters/veluren-thanazel/side.svg",
  42396. extra: 1611/633,
  42397. bottom: 118/1729
  42398. }
  42399. },
  42400. front: {
  42401. height: math.unit(30, "feet"),
  42402. name: "Front",
  42403. image: {
  42404. source: "./media/characters/veluren-thanazel/front.svg",
  42405. extra: 1486/636,
  42406. bottom: 238/1724
  42407. }
  42408. },
  42409. head: {
  42410. height: math.unit(21.4, "feet"),
  42411. name: "Head",
  42412. image: {
  42413. source: "./media/characters/veluren-thanazel/head.svg"
  42414. }
  42415. },
  42416. genitals: {
  42417. height: math.unit(19.4, "feet"),
  42418. name: "Genitals",
  42419. image: {
  42420. source: "./media/characters/veluren-thanazel/genitals.svg"
  42421. }
  42422. },
  42423. },
  42424. [
  42425. {
  42426. name: "Social",
  42427. height: math.unit(6, "feet")
  42428. },
  42429. {
  42430. name: "Play",
  42431. height: math.unit(12, "feet")
  42432. },
  42433. {
  42434. name: "True",
  42435. height: math.unit(30, "feet"),
  42436. default: true
  42437. },
  42438. ]
  42439. ))
  42440. characterMakers.push(() => makeCharacter(
  42441. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42442. {
  42443. front: {
  42444. height: math.unit(7 + 6/12, "feet"),
  42445. weight: math.unit(500, "kg"),
  42446. name: "Front",
  42447. image: {
  42448. source: "./media/characters/arcturas/front.svg",
  42449. extra: 1700/1500,
  42450. bottom: 145/1845
  42451. }
  42452. },
  42453. },
  42454. [
  42455. {
  42456. name: "Normal",
  42457. height: math.unit(7 + 6/12, "feet"),
  42458. default: true
  42459. },
  42460. ]
  42461. ))
  42462. characterMakers.push(() => makeCharacter(
  42463. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42464. {
  42465. side: {
  42466. height: math.unit(6, "feet"),
  42467. weight: math.unit(2, "tons"),
  42468. name: "Side",
  42469. image: {
  42470. source: "./media/characters/vitaen/side.svg",
  42471. extra: 1157/617,
  42472. bottom: 122/1279
  42473. }
  42474. },
  42475. },
  42476. [
  42477. {
  42478. name: "Normal",
  42479. height: math.unit(6, "feet"),
  42480. default: true
  42481. },
  42482. ]
  42483. ))
  42484. characterMakers.push(() => makeCharacter(
  42485. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42486. {
  42487. front: {
  42488. height: math.unit(19, "feet"),
  42489. name: "Front",
  42490. image: {
  42491. source: "./media/characters/fia-dreamweaver/front.svg",
  42492. extra: 1630/1504,
  42493. bottom: 25/1655
  42494. }
  42495. },
  42496. },
  42497. [
  42498. {
  42499. name: "Normal",
  42500. height: math.unit(19, "feet"),
  42501. default: true
  42502. },
  42503. ]
  42504. ))
  42505. characterMakers.push(() => makeCharacter(
  42506. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42507. {
  42508. front: {
  42509. height: math.unit(5 + 4/12, "feet"),
  42510. name: "Front",
  42511. image: {
  42512. source: "./media/characters/artan/front.svg",
  42513. extra: 1618/1535,
  42514. bottom: 46/1664
  42515. }
  42516. },
  42517. back: {
  42518. height: math.unit(5 + 4/12, "feet"),
  42519. name: "Back",
  42520. image: {
  42521. source: "./media/characters/artan/back.svg",
  42522. extra: 1618/1543,
  42523. bottom: 31/1649
  42524. }
  42525. },
  42526. },
  42527. [
  42528. {
  42529. name: "Normal",
  42530. height: math.unit(5 + 4/12, "feet"),
  42531. default: true
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42537. {
  42538. side: {
  42539. height: math.unit(182, "cm"),
  42540. weight: math.unit(1000, "lb"),
  42541. name: "Side",
  42542. image: {
  42543. source: "./media/characters/silver-dragon/side.svg",
  42544. extra: 710/287,
  42545. bottom: 88/798
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(182, "cm"),
  42553. default: true
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42559. {
  42560. side: {
  42561. height: math.unit(6 + 6/12, "feet"),
  42562. weight: math.unit(1.5, "tons"),
  42563. name: "Side",
  42564. image: {
  42565. source: "./media/characters/zephyr/side.svg",
  42566. extra: 1433/586,
  42567. bottom: 109/1542
  42568. }
  42569. },
  42570. },
  42571. [
  42572. {
  42573. name: "Normal",
  42574. height: math.unit(6 + 6/12, "feet"),
  42575. default: true
  42576. },
  42577. ]
  42578. ))
  42579. characterMakers.push(() => makeCharacter(
  42580. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42581. {
  42582. side: {
  42583. height: math.unit(1, "feet"),
  42584. name: "Side",
  42585. image: {
  42586. source: "./media/characters/vixye/side.svg",
  42587. extra: 632/541,
  42588. bottom: 0/632
  42589. }
  42590. },
  42591. },
  42592. [
  42593. {
  42594. name: "Normal",
  42595. height: math.unit(1, "feet"),
  42596. default: true
  42597. },
  42598. {
  42599. name: "True",
  42600. height: math.unit(1e15, "multiverses")
  42601. },
  42602. ]
  42603. ))
  42604. characterMakers.push(() => makeCharacter(
  42605. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42606. {
  42607. front: {
  42608. height: math.unit(8 + 2/12, "feet"),
  42609. weight: math.unit(650, "lb"),
  42610. name: "Front",
  42611. image: {
  42612. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42613. extra: 1174/1137,
  42614. bottom: 82/1256
  42615. }
  42616. },
  42617. back: {
  42618. height: math.unit(8 + 2/12, "feet"),
  42619. weight: math.unit(650, "lb"),
  42620. name: "Back",
  42621. image: {
  42622. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42623. extra: 1204/1157,
  42624. bottom: 46/1250
  42625. }
  42626. },
  42627. },
  42628. [
  42629. {
  42630. name: "Wildform",
  42631. height: math.unit(8 + 2/12, "feet"),
  42632. default: true
  42633. },
  42634. ]
  42635. ))
  42636. characterMakers.push(() => makeCharacter(
  42637. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42638. {
  42639. front: {
  42640. height: math.unit(18, "feet"),
  42641. name: "Front",
  42642. image: {
  42643. source: "./media/characters/cyphin/front.svg",
  42644. extra: 970/886,
  42645. bottom: 42/1012
  42646. }
  42647. },
  42648. back: {
  42649. height: math.unit(18, "feet"),
  42650. name: "Back",
  42651. image: {
  42652. source: "./media/characters/cyphin/back.svg",
  42653. extra: 1009/894,
  42654. bottom: 24/1033
  42655. }
  42656. },
  42657. head: {
  42658. height: math.unit(5.05, "feet"),
  42659. name: "Head",
  42660. image: {
  42661. source: "./media/characters/cyphin/head.svg"
  42662. }
  42663. },
  42664. tailbud: {
  42665. height: math.unit(5, "feet"),
  42666. name: "Tailbud",
  42667. image: {
  42668. source: "./media/characters/cyphin/tailbud.svg"
  42669. }
  42670. },
  42671. },
  42672. [
  42673. ]
  42674. ))
  42675. characterMakers.push(() => makeCharacter(
  42676. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42677. {
  42678. side: {
  42679. height: math.unit(10, "feet"),
  42680. weight: math.unit(6, "tons"),
  42681. name: "Side",
  42682. image: {
  42683. source: "./media/characters/raijin/side.svg",
  42684. extra: 1529/613,
  42685. bottom: 337/1866
  42686. }
  42687. },
  42688. },
  42689. [
  42690. {
  42691. name: "Normal",
  42692. height: math.unit(10, "feet"),
  42693. default: true
  42694. },
  42695. ]
  42696. ))
  42697. characterMakers.push(() => makeCharacter(
  42698. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42699. {
  42700. side: {
  42701. height: math.unit(9, "feet"),
  42702. name: "Side",
  42703. image: {
  42704. source: "./media/characters/nilghais/side.svg",
  42705. extra: 1047/744,
  42706. bottom: 91/1138
  42707. }
  42708. },
  42709. head: {
  42710. height: math.unit(3.14, "feet"),
  42711. name: "Head",
  42712. image: {
  42713. source: "./media/characters/nilghais/head.svg"
  42714. }
  42715. },
  42716. mouth: {
  42717. height: math.unit(4.6, "feet"),
  42718. name: "Mouth",
  42719. image: {
  42720. source: "./media/characters/nilghais/mouth.svg"
  42721. }
  42722. },
  42723. wings: {
  42724. height: math.unit(24, "feet"),
  42725. name: "Wings",
  42726. image: {
  42727. source: "./media/characters/nilghais/wings.svg"
  42728. }
  42729. },
  42730. ass: {
  42731. height: math.unit(6.12, "feet"),
  42732. name: "Ass",
  42733. image: {
  42734. source: "./media/characters/nilghais/ass.svg"
  42735. }
  42736. },
  42737. },
  42738. [
  42739. {
  42740. name: "Normal",
  42741. height: math.unit(9, "feet"),
  42742. default: true
  42743. },
  42744. ]
  42745. ))
  42746. characterMakers.push(() => makeCharacter(
  42747. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42748. {
  42749. regular: {
  42750. height: math.unit(16 + 2/12, "feet"),
  42751. weight: math.unit(2300, "lb"),
  42752. name: "Regular",
  42753. image: {
  42754. source: "./media/characters/zolgar/regular.svg",
  42755. extra: 1246/1004,
  42756. bottom: 124/1370
  42757. }
  42758. },
  42759. boxers: {
  42760. height: math.unit(16 + 2/12, "feet"),
  42761. weight: math.unit(2300, "lb"),
  42762. name: "Boxers",
  42763. image: {
  42764. source: "./media/characters/zolgar/boxers.svg",
  42765. extra: 1246/1004,
  42766. bottom: 124/1370
  42767. }
  42768. },
  42769. armored: {
  42770. height: math.unit(16 + 2/12, "feet"),
  42771. weight: math.unit(2300, "lb"),
  42772. name: "Armored",
  42773. image: {
  42774. source: "./media/characters/zolgar/armored.svg",
  42775. extra: 1246/1004,
  42776. bottom: 124/1370
  42777. }
  42778. },
  42779. goth: {
  42780. height: math.unit(16 + 2/12, "feet"),
  42781. weight: math.unit(2300, "lb"),
  42782. name: "Goth",
  42783. image: {
  42784. source: "./media/characters/zolgar/goth.svg",
  42785. extra: 1246/1004,
  42786. bottom: 124/1370
  42787. }
  42788. },
  42789. },
  42790. [
  42791. {
  42792. name: "Shrunken Down",
  42793. height: math.unit(9 + 2/12, "feet")
  42794. },
  42795. {
  42796. name: "Normal",
  42797. height: math.unit(16 + 2/12, "feet"),
  42798. default: true
  42799. },
  42800. ]
  42801. ))
  42802. characterMakers.push(() => makeCharacter(
  42803. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42804. {
  42805. front: {
  42806. height: math.unit(6, "feet"),
  42807. weight: math.unit(168, "lb"),
  42808. name: "Front",
  42809. image: {
  42810. source: "./media/characters/luca/front.svg",
  42811. extra: 841/667,
  42812. bottom: 102/943
  42813. }
  42814. },
  42815. },
  42816. [
  42817. {
  42818. name: "Normal",
  42819. height: math.unit(6, "feet"),
  42820. default: true
  42821. },
  42822. ]
  42823. ))
  42824. characterMakers.push(() => makeCharacter(
  42825. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42826. {
  42827. side: {
  42828. height: math.unit(7 + 3/12, "feet"),
  42829. weight: math.unit(312, "lb"),
  42830. name: "Side",
  42831. image: {
  42832. source: "./media/characters/zezo/side.svg",
  42833. extra: 1192/1067,
  42834. bottom: 63/1255
  42835. }
  42836. },
  42837. },
  42838. [
  42839. {
  42840. name: "Normal",
  42841. height: math.unit(7 + 3/12, "feet"),
  42842. default: true
  42843. },
  42844. ]
  42845. ))
  42846. characterMakers.push(() => makeCharacter(
  42847. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42848. {
  42849. front: {
  42850. height: math.unit(5 + 5/12, "feet"),
  42851. weight: math.unit(170, "lb"),
  42852. name: "Front",
  42853. image: {
  42854. source: "./media/characters/mayso/front.svg",
  42855. extra: 1215/1108,
  42856. bottom: 16/1231
  42857. }
  42858. },
  42859. },
  42860. [
  42861. {
  42862. name: "Normal",
  42863. height: math.unit(5 + 5/12, "feet"),
  42864. default: true
  42865. },
  42866. ]
  42867. ))
  42868. characterMakers.push(() => makeCharacter(
  42869. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42870. {
  42871. front: {
  42872. height: math.unit(4 + 3/12, "feet"),
  42873. weight: math.unit(80, "lb"),
  42874. name: "Front",
  42875. image: {
  42876. source: "./media/characters/hess/front.svg",
  42877. extra: 1200/1123,
  42878. bottom: 16/1216
  42879. }
  42880. },
  42881. },
  42882. [
  42883. {
  42884. name: "Normal",
  42885. height: math.unit(4 + 3/12, "feet"),
  42886. default: true
  42887. },
  42888. ]
  42889. ))
  42890. characterMakers.push(() => makeCharacter(
  42891. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42892. {
  42893. front: {
  42894. height: math.unit(1.9, "meters"),
  42895. name: "Front",
  42896. image: {
  42897. source: "./media/characters/ashgar/front.svg",
  42898. extra: 1177/1146,
  42899. bottom: 99/1276
  42900. }
  42901. },
  42902. back: {
  42903. height: math.unit(1.9, "meters"),
  42904. name: "Back",
  42905. image: {
  42906. source: "./media/characters/ashgar/back.svg",
  42907. extra: 1201/1183,
  42908. bottom: 53/1254
  42909. }
  42910. },
  42911. feral: {
  42912. height: math.unit(1.4, "meters"),
  42913. name: "Feral",
  42914. image: {
  42915. source: "./media/characters/ashgar/feral.svg",
  42916. extra: 370/345,
  42917. bottom: 45/415
  42918. }
  42919. },
  42920. },
  42921. [
  42922. {
  42923. name: "Normal",
  42924. height: math.unit(1.9, "meters"),
  42925. default: true
  42926. },
  42927. ]
  42928. ))
  42929. characterMakers.push(() => makeCharacter(
  42930. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42931. {
  42932. regular: {
  42933. height: math.unit(6, "feet"),
  42934. weight: math.unit(220, "lb"),
  42935. name: "Regular",
  42936. image: {
  42937. source: "./media/characters/phillip/regular.svg",
  42938. extra: 1373/1277,
  42939. bottom: 75/1448
  42940. }
  42941. },
  42942. dressed: {
  42943. height: math.unit(6, "feet"),
  42944. weight: math.unit(220, "lb"),
  42945. name: "Dressed",
  42946. image: {
  42947. source: "./media/characters/phillip/dressed.svg",
  42948. extra: 1373/1277,
  42949. bottom: 75/1448
  42950. }
  42951. },
  42952. paw: {
  42953. height: math.unit(1.44, "feet"),
  42954. name: "Paw",
  42955. image: {
  42956. source: "./media/characters/phillip/paw.svg"
  42957. }
  42958. },
  42959. },
  42960. [
  42961. {
  42962. name: "Normal",
  42963. height: math.unit(6, "feet"),
  42964. default: true
  42965. },
  42966. ]
  42967. ))
  42968. characterMakers.push(() => makeCharacter(
  42969. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42970. {
  42971. side: {
  42972. height: math.unit(42, "feet"),
  42973. name: "Side",
  42974. image: {
  42975. source: "./media/characters/uvula/side.svg",
  42976. extra: 683/586,
  42977. bottom: 60/743
  42978. }
  42979. },
  42980. front: {
  42981. height: math.unit(42, "feet"),
  42982. name: "Front",
  42983. image: {
  42984. source: "./media/characters/uvula/front.svg",
  42985. extra: 705/613,
  42986. bottom: 54/759
  42987. }
  42988. },
  42989. maw: {
  42990. height: math.unit(23.5, "feet"),
  42991. name: "Maw",
  42992. image: {
  42993. source: "./media/characters/uvula/maw.svg"
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Original Size",
  43000. height: math.unit(14, "inches")
  43001. },
  43002. {
  43003. name: "Human Size",
  43004. height: math.unit(6, "feet")
  43005. },
  43006. {
  43007. name: "Big",
  43008. height: math.unit(42, "feet"),
  43009. default: true
  43010. },
  43011. {
  43012. name: "Bigger",
  43013. height: math.unit(100, "feet")
  43014. },
  43015. ]
  43016. ))
  43017. characterMakers.push(() => makeCharacter(
  43018. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43019. {
  43020. front: {
  43021. height: math.unit(5 + 11/12, "feet"),
  43022. name: "Front",
  43023. image: {
  43024. source: "./media/characters/lannah/front.svg",
  43025. extra: 1208/1113,
  43026. bottom: 97/1305
  43027. }
  43028. },
  43029. },
  43030. [
  43031. {
  43032. name: "Normal",
  43033. height: math.unit(5 + 11/12, "feet"),
  43034. default: true
  43035. },
  43036. ]
  43037. ))
  43038. characterMakers.push(() => makeCharacter(
  43039. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43040. {
  43041. front: {
  43042. height: math.unit(6 + 3/12, "feet"),
  43043. weight: math.unit(3.5, "tons"),
  43044. name: "Front",
  43045. image: {
  43046. source: "./media/characters/emberflame/front.svg",
  43047. extra: 1198/672,
  43048. bottom: 82/1280
  43049. }
  43050. },
  43051. side: {
  43052. height: math.unit(6 + 3/12, "feet"),
  43053. weight: math.unit(3.5, "tons"),
  43054. name: "Side",
  43055. image: {
  43056. source: "./media/characters/emberflame/side.svg",
  43057. extra: 938/527,
  43058. bottom: 56/994
  43059. }
  43060. },
  43061. },
  43062. [
  43063. {
  43064. name: "Normal",
  43065. height: math.unit(6 + 3/12, "feet"),
  43066. default: true
  43067. },
  43068. ]
  43069. ))
  43070. characterMakers.push(() => makeCharacter(
  43071. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43072. {
  43073. side: {
  43074. height: math.unit(17.5, "feet"),
  43075. weight: math.unit(35, "tons"),
  43076. name: "Side",
  43077. image: {
  43078. source: "./media/characters/sophie-ambrose/side.svg",
  43079. extra: 1573/1242,
  43080. bottom: 71/1644
  43081. }
  43082. },
  43083. maw: {
  43084. height: math.unit(7.4, "feet"),
  43085. name: "Maw",
  43086. image: {
  43087. source: "./media/characters/sophie-ambrose/maw.svg"
  43088. }
  43089. },
  43090. },
  43091. [
  43092. {
  43093. name: "Normal",
  43094. height: math.unit(17.5, "feet"),
  43095. default: true
  43096. },
  43097. ]
  43098. ))
  43099. characterMakers.push(() => makeCharacter(
  43100. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43101. {
  43102. front: {
  43103. height: math.unit(280, "feet"),
  43104. weight: math.unit(550, "tons"),
  43105. name: "Front",
  43106. image: {
  43107. source: "./media/characters/king-mugi/front.svg",
  43108. extra: 1102/947,
  43109. bottom: 104/1206
  43110. }
  43111. },
  43112. },
  43113. [
  43114. {
  43115. name: "King Mugi",
  43116. height: math.unit(280, "feet"),
  43117. default: true
  43118. },
  43119. ]
  43120. ))
  43121. characterMakers.push(() => makeCharacter(
  43122. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43123. {
  43124. front: {
  43125. height: math.unit(64, "meters"),
  43126. name: "Front",
  43127. image: {
  43128. source: "./media/characters/nova-fox/front.svg",
  43129. extra: 1310/1246,
  43130. bottom: 65/1375
  43131. }
  43132. },
  43133. },
  43134. [
  43135. {
  43136. name: "Macro",
  43137. height: math.unit(64, "meters"),
  43138. default: true
  43139. },
  43140. ]
  43141. ))
  43142. characterMakers.push(() => makeCharacter(
  43143. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43144. {
  43145. front: {
  43146. height: math.unit(6 + 3/12, "feet"),
  43147. weight: math.unit(170, "lb"),
  43148. name: "Front",
  43149. image: {
  43150. source: "./media/characters/sam-bat/front.svg",
  43151. extra: 1601/1411,
  43152. bottom: 125/1726
  43153. }
  43154. },
  43155. back: {
  43156. height: math.unit(6 + 3/12, "feet"),
  43157. weight: math.unit(170, "lb"),
  43158. name: "Back",
  43159. image: {
  43160. source: "./media/characters/sam-bat/back.svg",
  43161. extra: 1577/1405,
  43162. bottom: 58/1635
  43163. }
  43164. },
  43165. },
  43166. [
  43167. {
  43168. name: "Normal",
  43169. height: math.unit(6 + 3/12, "feet"),
  43170. default: true
  43171. },
  43172. ]
  43173. ))
  43174. characterMakers.push(() => makeCharacter(
  43175. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43176. {
  43177. front: {
  43178. height: math.unit(59, "feet"),
  43179. weight: math.unit(40000, "lb"),
  43180. name: "Front",
  43181. image: {
  43182. source: "./media/characters/inari/front.svg",
  43183. extra: 1884/1350,
  43184. bottom: 95/1979
  43185. }
  43186. },
  43187. },
  43188. [
  43189. {
  43190. name: "Gigantamax",
  43191. height: math.unit(59, "feet"),
  43192. default: true
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43198. {
  43199. front: {
  43200. height: math.unit(5 + 8/12, "feet"),
  43201. name: "Front",
  43202. image: {
  43203. source: "./media/characters/elizabeth/front.svg",
  43204. extra: 1395/1298,
  43205. bottom: 54/1449
  43206. }
  43207. },
  43208. mouth: {
  43209. height: math.unit(1.97, "feet"),
  43210. name: "Mouth",
  43211. image: {
  43212. source: "./media/characters/elizabeth/mouth.svg"
  43213. }
  43214. },
  43215. foot: {
  43216. height: math.unit(1.17, "feet"),
  43217. name: "Foot",
  43218. image: {
  43219. source: "./media/characters/elizabeth/foot.svg"
  43220. }
  43221. },
  43222. },
  43223. [
  43224. {
  43225. name: "Normal",
  43226. height: math.unit(5 + 8/12, "feet"),
  43227. default: true
  43228. },
  43229. {
  43230. name: "Minimacro",
  43231. height: math.unit(18, "feet")
  43232. },
  43233. {
  43234. name: "Macro",
  43235. height: math.unit(180, "feet")
  43236. },
  43237. ]
  43238. ))
  43239. characterMakers.push(() => makeCharacter(
  43240. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43241. {
  43242. front: {
  43243. height: math.unit(5 + 2/12, "feet"),
  43244. name: "Front",
  43245. image: {
  43246. source: "./media/characters/october-gossamer/front.svg",
  43247. extra: 505/454,
  43248. bottom: 7/512
  43249. }
  43250. },
  43251. back: {
  43252. height: math.unit(5 + 2/12, "feet"),
  43253. name: "Back",
  43254. image: {
  43255. source: "./media/characters/october-gossamer/back.svg",
  43256. extra: 501/454,
  43257. bottom: 11/512
  43258. }
  43259. },
  43260. },
  43261. [
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(5 + 2/12, "feet"),
  43265. default: true
  43266. },
  43267. ]
  43268. ))
  43269. characterMakers.push(() => makeCharacter(
  43270. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43271. {
  43272. front: {
  43273. height: math.unit(5, "feet"),
  43274. name: "Front",
  43275. image: {
  43276. source: "./media/characters/epiglottis/front.svg",
  43277. extra: 923/849,
  43278. bottom: 17/940
  43279. }
  43280. },
  43281. },
  43282. [
  43283. {
  43284. name: "Original Size",
  43285. height: math.unit(10, "inches")
  43286. },
  43287. {
  43288. name: "Human Size",
  43289. height: math.unit(5, "feet"),
  43290. default: true
  43291. },
  43292. {
  43293. name: "Big",
  43294. height: math.unit(25, "feet")
  43295. },
  43296. {
  43297. name: "Bigger",
  43298. height: math.unit(50, "feet")
  43299. },
  43300. {
  43301. name: "oh lawd",
  43302. height: math.unit(75, "feet")
  43303. },
  43304. ]
  43305. ))
  43306. characterMakers.push(() => makeCharacter(
  43307. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43308. {
  43309. front: {
  43310. height: math.unit(2 + 4/12, "feet"),
  43311. weight: math.unit(60, "lb"),
  43312. name: "Front",
  43313. image: {
  43314. source: "./media/characters/lerm/front.svg",
  43315. extra: 796/790,
  43316. bottom: 79/875
  43317. }
  43318. },
  43319. },
  43320. [
  43321. {
  43322. name: "Normal",
  43323. height: math.unit(2 + 4/12, "feet"),
  43324. default: true
  43325. },
  43326. ]
  43327. ))
  43328. characterMakers.push(() => makeCharacter(
  43329. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43330. {
  43331. front: {
  43332. height: math.unit(5.5, "feet"),
  43333. weight: math.unit(130, "lb"),
  43334. name: "Front",
  43335. image: {
  43336. source: "./media/characters/xena-nebadon/front.svg",
  43337. extra: 1828/1730,
  43338. bottom: 79/1907
  43339. }
  43340. },
  43341. },
  43342. [
  43343. {
  43344. name: "Tiny Puppy",
  43345. height: math.unit(3, "inches")
  43346. },
  43347. {
  43348. name: "Normal",
  43349. height: math.unit(5.5, "feet"),
  43350. default: true
  43351. },
  43352. {
  43353. name: "Lotta Lady",
  43354. height: math.unit(12, "feet")
  43355. },
  43356. {
  43357. name: "Pretty Big",
  43358. height: math.unit(100, "feet")
  43359. },
  43360. {
  43361. name: "Big",
  43362. height: math.unit(500, "feet")
  43363. },
  43364. {
  43365. name: "Skyscraper Toys",
  43366. height: math.unit(2500, "feet")
  43367. },
  43368. {
  43369. name: "Plane Catcher",
  43370. height: math.unit(8, "miles")
  43371. },
  43372. {
  43373. name: "Planet Toys",
  43374. height: math.unit(15, "earths")
  43375. },
  43376. {
  43377. name: "Stardust",
  43378. height: math.unit(0.25, "galaxies")
  43379. },
  43380. {
  43381. name: "Snacks",
  43382. height: math.unit(70, "universes")
  43383. },
  43384. ]
  43385. ))
  43386. characterMakers.push(() => makeCharacter(
  43387. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43388. {
  43389. front: {
  43390. height: math.unit(1.6, "meters"),
  43391. weight: math.unit(60, "kg"),
  43392. name: "Front",
  43393. image: {
  43394. source: "./media/characters/bounty/front.svg",
  43395. extra: 1426/1308,
  43396. bottom: 15/1441
  43397. }
  43398. },
  43399. back: {
  43400. height: math.unit(1.6, "meters"),
  43401. weight: math.unit(60, "kg"),
  43402. name: "Back",
  43403. image: {
  43404. source: "./media/characters/bounty/back.svg",
  43405. extra: 1417/1307,
  43406. bottom: 8/1425
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "Normal",
  43413. height: math.unit(1.6, "meters"),
  43414. default: true
  43415. },
  43416. {
  43417. name: "Macro",
  43418. height: math.unit(300, "meters")
  43419. },
  43420. ]
  43421. ))
  43422. characterMakers.push(() => makeCharacter(
  43423. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43424. {
  43425. front: {
  43426. height: math.unit(2 + 8/12, "feet"),
  43427. weight: math.unit(15, "lb"),
  43428. name: "Front",
  43429. image: {
  43430. source: "./media/characters/mochi/front.svg",
  43431. extra: 1022/852,
  43432. bottom: 435/1457
  43433. }
  43434. },
  43435. back: {
  43436. height: math.unit(2 + 8/12, "feet"),
  43437. weight: math.unit(15, "lb"),
  43438. name: "Back",
  43439. image: {
  43440. source: "./media/characters/mochi/back.svg",
  43441. extra: 1335/1119,
  43442. bottom: 39/1374
  43443. }
  43444. },
  43445. bird: {
  43446. height: math.unit(2 + 8/12, "feet"),
  43447. weight: math.unit(15, "lb"),
  43448. name: "Bird",
  43449. image: {
  43450. source: "./media/characters/mochi/bird.svg",
  43451. extra: 1251/1113,
  43452. bottom: 178/1429
  43453. }
  43454. },
  43455. kaiju: {
  43456. height: math.unit(154, "feet"),
  43457. weight: math.unit(1e7, "lb"),
  43458. name: "Kaiju",
  43459. image: {
  43460. source: "./media/characters/mochi/kaiju.svg",
  43461. extra: 460/324,
  43462. bottom: 40/500
  43463. }
  43464. },
  43465. head: {
  43466. height: math.unit(1.21, "feet"),
  43467. name: "Head",
  43468. image: {
  43469. source: "./media/characters/mochi/head.svg"
  43470. }
  43471. },
  43472. alternateTail: {
  43473. height: math.unit(2 + 8/12, "feet"),
  43474. weight: math.unit(45, "lb"),
  43475. name: "Alternate Tail",
  43476. image: {
  43477. source: "./media/characters/mochi/alternate-tail.svg",
  43478. extra: 139/76,
  43479. bottom: 45/184
  43480. }
  43481. },
  43482. },
  43483. [
  43484. {
  43485. name: "Micro",
  43486. height: math.unit(2, "inches")
  43487. },
  43488. {
  43489. name: "Normal",
  43490. height: math.unit(2 + 8/12, "feet"),
  43491. default: true
  43492. },
  43493. {
  43494. name: "Macro",
  43495. height: math.unit(106, "feet")
  43496. },
  43497. ]
  43498. ))
  43499. characterMakers.push(() => makeCharacter(
  43500. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43501. {
  43502. front: {
  43503. height: math.unit(5.67, "feet"),
  43504. weight: math.unit(135, "lb"),
  43505. name: "Front",
  43506. image: {
  43507. source: "./media/characters/sarel/front.svg",
  43508. extra: 865/788,
  43509. bottom: 97/962
  43510. }
  43511. },
  43512. back: {
  43513. height: math.unit(5.67, "feet"),
  43514. weight: math.unit(135, "lb"),
  43515. name: "Back",
  43516. image: {
  43517. source: "./media/characters/sarel/back.svg",
  43518. extra: 857/777,
  43519. bottom: 32/889
  43520. }
  43521. },
  43522. chozoan: {
  43523. height: math.unit(5.67, "feet"),
  43524. weight: math.unit(135, "lb"),
  43525. name: "Chozoan",
  43526. image: {
  43527. source: "./media/characters/sarel/chozoan.svg",
  43528. extra: 865/788,
  43529. bottom: 97/962
  43530. }
  43531. },
  43532. current: {
  43533. height: math.unit(5.67, "feet"),
  43534. weight: math.unit(135, "lb"),
  43535. name: "Current",
  43536. image: {
  43537. source: "./media/characters/sarel/current.svg",
  43538. extra: 865/788,
  43539. bottom: 97/962
  43540. }
  43541. },
  43542. head: {
  43543. height: math.unit(1.77, "feet"),
  43544. name: "Head",
  43545. image: {
  43546. source: "./media/characters/sarel/head.svg"
  43547. }
  43548. },
  43549. claws: {
  43550. height: math.unit(1.8, "feet"),
  43551. name: "Claws",
  43552. image: {
  43553. source: "./media/characters/sarel/claws.svg"
  43554. }
  43555. },
  43556. clawsAlt: {
  43557. height: math.unit(1.8, "feet"),
  43558. name: "Claws-alt",
  43559. image: {
  43560. source: "./media/characters/sarel/claws-alt.svg"
  43561. }
  43562. },
  43563. },
  43564. [
  43565. {
  43566. name: "Normal",
  43567. height: math.unit(5.67, "feet"),
  43568. default: true
  43569. },
  43570. ]
  43571. ))
  43572. characterMakers.push(() => makeCharacter(
  43573. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43574. {
  43575. front: {
  43576. height: math.unit(5500, "feet"),
  43577. name: "Front",
  43578. image: {
  43579. source: "./media/characters/alyonia/front.svg",
  43580. extra: 1200/1135,
  43581. bottom: 29/1229
  43582. }
  43583. },
  43584. back: {
  43585. height: math.unit(5500, "feet"),
  43586. name: "Back",
  43587. image: {
  43588. source: "./media/characters/alyonia/back.svg",
  43589. extra: 1205/1138,
  43590. bottom: 10/1215
  43591. }
  43592. },
  43593. },
  43594. [
  43595. {
  43596. name: "Small",
  43597. height: math.unit(10, "feet")
  43598. },
  43599. {
  43600. name: "Macro",
  43601. height: math.unit(500, "feet")
  43602. },
  43603. {
  43604. name: "Mega Macro",
  43605. height: math.unit(5500, "feet"),
  43606. default: true
  43607. },
  43608. {
  43609. name: "Mega Macro+",
  43610. height: math.unit(500000, "feet")
  43611. },
  43612. {
  43613. name: "Giga Macro",
  43614. height: math.unit(3000, "miles")
  43615. },
  43616. {
  43617. name: "Tera Macro",
  43618. height: math.unit(2.8e6, "miles")
  43619. },
  43620. {
  43621. name: "Galactic",
  43622. height: math.unit(120000, "lightyears")
  43623. },
  43624. ]
  43625. ))
  43626. characterMakers.push(() => makeCharacter(
  43627. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43628. {
  43629. werewolf: {
  43630. height: math.unit(8, "feet"),
  43631. weight: math.unit(425, "lb"),
  43632. name: "Werewolf",
  43633. image: {
  43634. source: "./media/characters/autumn/werewolf.svg",
  43635. extra: 2154/2031,
  43636. bottom: 160/2314
  43637. }
  43638. },
  43639. human: {
  43640. height: math.unit(5 + 8/12, "feet"),
  43641. weight: math.unit(150, "lb"),
  43642. name: "Human",
  43643. image: {
  43644. source: "./media/characters/autumn/human.svg",
  43645. extra: 1200/1149,
  43646. bottom: 30/1230
  43647. }
  43648. },
  43649. },
  43650. [
  43651. {
  43652. name: "Normal",
  43653. height: math.unit(8, "feet"),
  43654. default: true
  43655. },
  43656. ]
  43657. ))
  43658. characterMakers.push(() => makeCharacter(
  43659. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43660. {
  43661. front: {
  43662. height: math.unit(8 + 5/12, "feet"),
  43663. weight: math.unit(825, "lb"),
  43664. name: "Front",
  43665. image: {
  43666. source: "./media/characters/cobalt-charizard/front.svg",
  43667. extra: 1268/1155,
  43668. bottom: 122/1390
  43669. }
  43670. },
  43671. side: {
  43672. height: math.unit(8 + 5/12, "feet"),
  43673. weight: math.unit(825, "lb"),
  43674. name: "Side",
  43675. image: {
  43676. source: "./media/characters/cobalt-charizard/side.svg",
  43677. extra: 1348/1257,
  43678. bottom: 58/1406
  43679. }
  43680. },
  43681. gMax: {
  43682. height: math.unit(134 + 11/12, "feet"),
  43683. name: "G-Max",
  43684. image: {
  43685. source: "./media/characters/cobalt-charizard/g-max.svg",
  43686. extra: 1835/1541,
  43687. bottom: 151/1986
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(8 + 5/12, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43701. {
  43702. front: {
  43703. height: math.unit(6 + 3/12, "feet"),
  43704. weight: math.unit(210, "lb"),
  43705. name: "Front",
  43706. image: {
  43707. source: "./media/characters/stella/front.svg",
  43708. extra: 3549/3335,
  43709. bottom: 51/3600
  43710. }
  43711. },
  43712. },
  43713. [
  43714. {
  43715. name: "Normal",
  43716. height: math.unit(6 + 3/12, "feet"),
  43717. default: true
  43718. },
  43719. ]
  43720. ))
  43721. characterMakers.push(() => makeCharacter(
  43722. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43723. {
  43724. front: {
  43725. height: math.unit(5, "feet"),
  43726. weight: math.unit(90, "lb"),
  43727. name: "Front",
  43728. image: {
  43729. source: "./media/characters/riley-bishop/front.svg",
  43730. extra: 1450/1428,
  43731. bottom: 152/1602
  43732. }
  43733. },
  43734. },
  43735. [
  43736. {
  43737. name: "Normal",
  43738. height: math.unit(5, "feet"),
  43739. default: true
  43740. },
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43745. {
  43746. side: {
  43747. height: math.unit(8 + 2/12, "feet"),
  43748. weight: math.unit(500, "kg"),
  43749. name: "Side",
  43750. image: {
  43751. source: "./media/characters/theo-arcanine/side.svg",
  43752. extra: 1342/1074,
  43753. bottom: 111/1453
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(8 + 2/12, "feet"),
  43761. default: true
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43767. {
  43768. front: {
  43769. height: math.unit(4, "feet"),
  43770. name: "Front",
  43771. image: {
  43772. source: "./media/characters/kali/front.svg",
  43773. extra: 1921/1357,
  43774. bottom: 70/1991
  43775. }
  43776. },
  43777. },
  43778. [
  43779. {
  43780. name: "Normal",
  43781. height: math.unit(4, "feet"),
  43782. default: true
  43783. },
  43784. {
  43785. name: "Macro",
  43786. height: math.unit(32, "meters")
  43787. },
  43788. {
  43789. name: "Macro+",
  43790. height: math.unit(150, "meters")
  43791. },
  43792. {
  43793. name: "Megamacro",
  43794. height: math.unit(7500, "meters")
  43795. },
  43796. {
  43797. name: "Megamacro+",
  43798. height: math.unit(80, "kilometers")
  43799. },
  43800. ]
  43801. ))
  43802. characterMakers.push(() => makeCharacter(
  43803. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43804. {
  43805. side: {
  43806. height: math.unit(5 + 11/12, "feet"),
  43807. weight: math.unit(236, "lb"),
  43808. name: "Side",
  43809. image: {
  43810. source: "./media/characters/gapp/side.svg",
  43811. extra: 775/340,
  43812. bottom: 58/833
  43813. }
  43814. },
  43815. mouth: {
  43816. height: math.unit(2.98, "feet"),
  43817. name: "Mouth",
  43818. image: {
  43819. source: "./media/characters/gapp/mouth.svg"
  43820. }
  43821. },
  43822. },
  43823. [
  43824. {
  43825. name: "Normal",
  43826. height: math.unit(5 + 1/12, "feet"),
  43827. default: true
  43828. },
  43829. ]
  43830. ))
  43831. characterMakers.push(() => makeCharacter(
  43832. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43833. {
  43834. front: {
  43835. height: math.unit(6, "feet"),
  43836. name: "Front",
  43837. image: {
  43838. source: "./media/characters/persephone/front.svg",
  43839. extra: 1895/1717,
  43840. bottom: 96/1991
  43841. }
  43842. },
  43843. back: {
  43844. height: math.unit(6, "feet"),
  43845. name: "Back",
  43846. image: {
  43847. source: "./media/characters/persephone/back.svg",
  43848. extra: 1868/1679,
  43849. bottom: 26/1894
  43850. }
  43851. },
  43852. casual: {
  43853. height: math.unit(6, "feet"),
  43854. name: "Casual",
  43855. image: {
  43856. source: "./media/characters/persephone/casual.svg",
  43857. extra: 1713/1541,
  43858. bottom: 76/1789
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Human Size",
  43865. height: math.unit(6, "feet")
  43866. },
  43867. {
  43868. name: "Big Steppy",
  43869. height: math.unit(600, "meters"),
  43870. default: true
  43871. },
  43872. {
  43873. name: "Galaxy Brain",
  43874. height: math.unit(1, "zettameter")
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43880. {
  43881. front: {
  43882. height: math.unit(1.85, "meters"),
  43883. name: "Front",
  43884. image: {
  43885. source: "./media/characters/riley-foxthing/front.svg",
  43886. extra: 1495/1354,
  43887. bottom: 122/1617
  43888. }
  43889. },
  43890. frontAlt: {
  43891. height: math.unit(1.85, "meters"),
  43892. name: "Front (Alt)",
  43893. image: {
  43894. source: "./media/characters/riley-foxthing/front-alt.svg",
  43895. extra: 1572/1389,
  43896. bottom: 116/1688
  43897. }
  43898. },
  43899. },
  43900. [
  43901. {
  43902. name: "Normal Sized",
  43903. height: math.unit(1.85, "meters"),
  43904. default: true
  43905. },
  43906. {
  43907. name: "Quite Sizable",
  43908. height: math.unit(5, "meters")
  43909. },
  43910. {
  43911. name: "Rather Large",
  43912. height: math.unit(20, "meters")
  43913. },
  43914. {
  43915. name: "Macro",
  43916. height: math.unit(450, "meters")
  43917. },
  43918. {
  43919. name: "Giga",
  43920. height: math.unit(5, "km")
  43921. },
  43922. ]
  43923. ))
  43924. characterMakers.push(() => makeCharacter(
  43925. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43926. {
  43927. front: {
  43928. height: math.unit(6, "feet"),
  43929. weight: math.unit(200, "lb"),
  43930. name: "Front",
  43931. image: {
  43932. source: "./media/characters/blizzard/front.svg",
  43933. extra: 1136/990,
  43934. bottom: 136/1272
  43935. }
  43936. },
  43937. back: {
  43938. height: math.unit(6, "feet"),
  43939. weight: math.unit(200, "lb"),
  43940. name: "Back",
  43941. image: {
  43942. source: "./media/characters/blizzard/back.svg",
  43943. extra: 1175/1034,
  43944. bottom: 97/1272
  43945. }
  43946. },
  43947. sitting: {
  43948. height: math.unit(3.725, "feet"),
  43949. weight: math.unit(200, "lb"),
  43950. name: "Sitting",
  43951. image: {
  43952. source: "./media/characters/blizzard/sitting.svg",
  43953. extra: 581/485,
  43954. bottom: 90/671
  43955. }
  43956. },
  43957. frontWizard: {
  43958. height: math.unit(7.9, "feet"),
  43959. weight: math.unit(200, "lb"),
  43960. name: "Front (Wizard)",
  43961. image: {
  43962. source: "./media/characters/blizzard/front-wizard.svg"
  43963. }
  43964. },
  43965. backWizard: {
  43966. height: math.unit(7.9, "feet"),
  43967. weight: math.unit(200, "lb"),
  43968. name: "Back (Wizard)",
  43969. image: {
  43970. source: "./media/characters/blizzard/back-wizard.svg"
  43971. }
  43972. },
  43973. frontNsfw: {
  43974. height: math.unit(6, "feet"),
  43975. weight: math.unit(200, "lb"),
  43976. name: "Front (NSFW)",
  43977. image: {
  43978. source: "./media/characters/blizzard/front-nsfw.svg",
  43979. extra: 1136/990,
  43980. bottom: 136/1272
  43981. }
  43982. },
  43983. backNsfw: {
  43984. height: math.unit(6, "feet"),
  43985. weight: math.unit(200, "lb"),
  43986. name: "Back (NSFW)",
  43987. image: {
  43988. source: "./media/characters/blizzard/back-nsfw.svg",
  43989. extra: 1175/1034,
  43990. bottom: 97/1272
  43991. }
  43992. },
  43993. sittingNsfw: {
  43994. height: math.unit(3.725, "feet"),
  43995. weight: math.unit(200, "lb"),
  43996. name: "Sitting (NSFW)",
  43997. image: {
  43998. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43999. extra: 581/485,
  44000. bottom: 90/671
  44001. }
  44002. },
  44003. wizardFrontNsfw: {
  44004. height: math.unit(7.9, "feet"),
  44005. weight: math.unit(200, "lb"),
  44006. name: "Wizard (Front, NSFW)",
  44007. image: {
  44008. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44009. }
  44010. },
  44011. },
  44012. [
  44013. {
  44014. name: "Normal",
  44015. height: math.unit(6, "feet"),
  44016. default: true
  44017. },
  44018. ]
  44019. ))
  44020. characterMakers.push(() => makeCharacter(
  44021. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44022. {
  44023. front: {
  44024. height: math.unit(5 + 2/12, "feet"),
  44025. name: "Front",
  44026. image: {
  44027. source: "./media/characters/lumi/front.svg",
  44028. extra: 1328/1268,
  44029. bottom: 103/1431
  44030. }
  44031. },
  44032. back: {
  44033. height: math.unit(5 + 2/12, "feet"),
  44034. name: "Back",
  44035. image: {
  44036. source: "./media/characters/lumi/back.svg",
  44037. extra: 1381/1327,
  44038. bottom: 43/1424
  44039. }
  44040. },
  44041. },
  44042. [
  44043. {
  44044. name: "Normal",
  44045. height: math.unit(5 + 2/12, "feet"),
  44046. default: true
  44047. },
  44048. ]
  44049. ))
  44050. characterMakers.push(() => makeCharacter(
  44051. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44052. {
  44053. front: {
  44054. height: math.unit(5 + 9/12, "feet"),
  44055. name: "Front",
  44056. image: {
  44057. source: "./media/characters/aliya-cotton/front.svg",
  44058. extra: 577/564,
  44059. bottom: 29/606
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Normal",
  44066. height: math.unit(5 + 9/12, "feet"),
  44067. default: true
  44068. },
  44069. ]
  44070. ))
  44071. characterMakers.push(() => makeCharacter(
  44072. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44073. {
  44074. front: {
  44075. height: math.unit(2.7, "meters"),
  44076. weight: math.unit(25000, "lb"),
  44077. name: "Front",
  44078. image: {
  44079. source: "./media/characters/noah-luxray/front.svg",
  44080. extra: 1644/825,
  44081. bottom: 339/1983
  44082. }
  44083. },
  44084. side: {
  44085. height: math.unit(2.97, "meters"),
  44086. weight: math.unit(25000, "lb"),
  44087. name: "Side",
  44088. image: {
  44089. source: "./media/characters/noah-luxray/side.svg",
  44090. extra: 1319/650,
  44091. bottom: 163/1482
  44092. }
  44093. },
  44094. dick: {
  44095. height: math.unit(7.4, "feet"),
  44096. weight: math.unit(2500, "lb"),
  44097. name: "Dick",
  44098. image: {
  44099. source: "./media/characters/noah-luxray/dick.svg"
  44100. }
  44101. },
  44102. dickAlt: {
  44103. height: math.unit(10.83, "feet"),
  44104. weight: math.unit(2500, "lb"),
  44105. name: "Dick-alt",
  44106. image: {
  44107. source: "./media/characters/noah-luxray/dick-alt.svg"
  44108. }
  44109. },
  44110. },
  44111. [
  44112. {
  44113. name: "BIG",
  44114. height: math.unit(2.7, "meters"),
  44115. default: true
  44116. },
  44117. ]
  44118. ))
  44119. characterMakers.push(() => makeCharacter(
  44120. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44121. {
  44122. standing: {
  44123. height: math.unit(183, "cm"),
  44124. weight: math.unit(68, "kg"),
  44125. name: "Standing",
  44126. image: {
  44127. source: "./media/characters/arion/standing.svg",
  44128. extra: 1869/1807,
  44129. bottom: 93/1962
  44130. }
  44131. },
  44132. reclining: {
  44133. height: math.unit(70.5, "cm"),
  44134. weight: math.unit(68, "lb"),
  44135. name: "Reclining",
  44136. image: {
  44137. source: "./media/characters/arion/reclining.svg",
  44138. extra: 937/870,
  44139. bottom: 63/1000
  44140. }
  44141. },
  44142. },
  44143. [
  44144. {
  44145. name: "Colossus Size, Low",
  44146. height: math.unit(33, "meters"),
  44147. default: true
  44148. },
  44149. {
  44150. name: "Colossus Size, Mid",
  44151. height: math.unit(52, "meters")
  44152. },
  44153. {
  44154. name: "Colossus Size, High",
  44155. height: math.unit(60, "meters")
  44156. },
  44157. {
  44158. name: "Titan Size, Low",
  44159. height: math.unit(91, "meters"),
  44160. },
  44161. {
  44162. name: "Titan Size, Mid",
  44163. height: math.unit(122, "meters")
  44164. },
  44165. {
  44166. name: "Titan Size, High",
  44167. height: math.unit(162, "meters")
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44173. {
  44174. front: {
  44175. height: math.unit(53, "meters"),
  44176. name: "Front",
  44177. image: {
  44178. source: "./media/characters/stellar-marbey/front.svg",
  44179. extra: 1913/1805,
  44180. bottom: 92/2005
  44181. }
  44182. },
  44183. back: {
  44184. height: math.unit(53, "meters"),
  44185. name: "Back",
  44186. image: {
  44187. source: "./media/characters/stellar-marbey/back.svg",
  44188. extra: 1960/1851,
  44189. bottom: 28/1988
  44190. }
  44191. },
  44192. mouth: {
  44193. height: math.unit(3.5, "meters"),
  44194. name: "Mouth",
  44195. image: {
  44196. source: "./media/characters/stellar-marbey/mouth.svg"
  44197. }
  44198. },
  44199. },
  44200. [
  44201. {
  44202. name: "Macro",
  44203. height: math.unit(53, "meters"),
  44204. default: true
  44205. },
  44206. ]
  44207. ))
  44208. characterMakers.push(() => makeCharacter(
  44209. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44210. {
  44211. front: {
  44212. height: math.unit(8 + 1/12, "feet"),
  44213. weight: math.unit(233, "lb"),
  44214. name: "Front",
  44215. image: {
  44216. source: "./media/characters/matsu/front.svg",
  44217. extra: 832/772,
  44218. bottom: 40/872
  44219. }
  44220. },
  44221. back: {
  44222. height: math.unit(8 + 1/12, "feet"),
  44223. weight: math.unit(233, "lb"),
  44224. name: "Back",
  44225. image: {
  44226. source: "./media/characters/matsu/back.svg",
  44227. extra: 839/780,
  44228. bottom: 47/886
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(8 + 1/12, "feet"),
  44236. default: true
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44242. {
  44243. front: {
  44244. height: math.unit(4, "feet"),
  44245. weight: math.unit(148, "lb"),
  44246. name: "Front",
  44247. image: {
  44248. source: "./media/characters/thiz/front.svg",
  44249. extra: 1913/1748,
  44250. bottom: 62/1975
  44251. }
  44252. },
  44253. },
  44254. [
  44255. {
  44256. name: "Normal",
  44257. height: math.unit(4, "feet"),
  44258. default: true
  44259. },
  44260. ]
  44261. ))
  44262. characterMakers.push(() => makeCharacter(
  44263. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44264. {
  44265. front: {
  44266. height: math.unit(7 + 6/12, "feet"),
  44267. weight: math.unit(267, "lb"),
  44268. name: "Front",
  44269. image: {
  44270. source: "./media/characters/marcel/front.svg",
  44271. extra: 1221/1096,
  44272. bottom: 76/1297
  44273. }
  44274. },
  44275. },
  44276. [
  44277. {
  44278. name: "Normal",
  44279. height: math.unit(7 + 6/12, "feet"),
  44280. default: true
  44281. },
  44282. ]
  44283. ))
  44284. characterMakers.push(() => makeCharacter(
  44285. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44286. {
  44287. side: {
  44288. height: math.unit(42, "meters"),
  44289. name: "Side",
  44290. image: {
  44291. source: "./media/characters/flake/side.svg",
  44292. extra: 1525/1306,
  44293. bottom: 209/1734
  44294. }
  44295. },
  44296. },
  44297. [
  44298. {
  44299. name: "Normal",
  44300. height: math.unit(42, "meters"),
  44301. default: true
  44302. },
  44303. ]
  44304. ))
  44305. characterMakers.push(() => makeCharacter(
  44306. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44307. {
  44308. dressed: {
  44309. height: math.unit(6 + 4/12, "feet"),
  44310. weight: math.unit(520, "lb"),
  44311. name: "Dressed",
  44312. image: {
  44313. source: "./media/characters/someonne/dressed.svg",
  44314. extra: 1020/1010,
  44315. bottom: 178/1198
  44316. }
  44317. },
  44318. undressed: {
  44319. height: math.unit(6 + 4/12, "feet"),
  44320. weight: math.unit(520, "lb"),
  44321. name: "Undressed",
  44322. image: {
  44323. source: "./media/characters/someonne/undressed.svg",
  44324. extra: 1019/1014,
  44325. bottom: 169/1188
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(6 + 4/12, "feet"),
  44333. default: true
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44339. {
  44340. front: {
  44341. height: math.unit(3, "feet"),
  44342. weight: math.unit(30, "lb"),
  44343. name: "Front",
  44344. image: {
  44345. source: "./media/characters/till/front.svg",
  44346. extra: 892/823,
  44347. bottom: 55/947
  44348. }
  44349. },
  44350. },
  44351. [
  44352. {
  44353. name: "Normal",
  44354. height: math.unit(3, "feet"),
  44355. default: true
  44356. },
  44357. ]
  44358. ))
  44359. characterMakers.push(() => makeCharacter(
  44360. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44361. {
  44362. front: {
  44363. height: math.unit(9 + 8/12, "feet"),
  44364. weight: math.unit(800, "lb"),
  44365. name: "Front",
  44366. image: {
  44367. source: "./media/characters/sydney-heki/front.svg",
  44368. extra: 1360/1300,
  44369. bottom: 22/1382
  44370. }
  44371. },
  44372. back: {
  44373. height: math.unit(9 + 8/12, "feet"),
  44374. weight: math.unit(800, "lb"),
  44375. name: "Back",
  44376. image: {
  44377. source: "./media/characters/sydney-heki/back.svg",
  44378. extra: 1356/1293,
  44379. bottom: 12/1368
  44380. }
  44381. },
  44382. frontDressed: {
  44383. height: math.unit(9 + 8/12, "feet"),
  44384. weight: math.unit(800, "lb"),
  44385. name: "Front-dressed",
  44386. image: {
  44387. source: "./media/characters/sydney-heki/front-dressed.svg",
  44388. extra: 1360/1300,
  44389. bottom: 22/1382
  44390. }
  44391. },
  44392. },
  44393. [
  44394. {
  44395. name: "Normal",
  44396. height: math.unit(9 + 8/12, "feet"),
  44397. default: true
  44398. },
  44399. {
  44400. name: "Macro",
  44401. height: math.unit(500, "feet")
  44402. },
  44403. {
  44404. name: "Megamacro",
  44405. height: math.unit(3.6, "miles")
  44406. },
  44407. ]
  44408. ))
  44409. characterMakers.push(() => makeCharacter(
  44410. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44411. {
  44412. front: {
  44413. height: math.unit(200, "cm"),
  44414. weight: math.unit(250, "lb"),
  44415. name: "Front",
  44416. image: {
  44417. source: "./media/characters/fowler-karlsson/front.svg",
  44418. extra: 897/845,
  44419. bottom: 123/1020
  44420. }
  44421. },
  44422. back: {
  44423. height: math.unit(200, "cm"),
  44424. weight: math.unit(250, "lb"),
  44425. name: "Back",
  44426. image: {
  44427. source: "./media/characters/fowler-karlsson/back.svg",
  44428. extra: 999/944,
  44429. bottom: 26/1025
  44430. }
  44431. },
  44432. dick: {
  44433. height: math.unit(1.92, "feet"),
  44434. weight: math.unit(150, "lb"),
  44435. name: "Dick",
  44436. image: {
  44437. source: "./media/characters/fowler-karlsson/dick.svg"
  44438. }
  44439. },
  44440. },
  44441. [
  44442. {
  44443. name: "Normal",
  44444. height: math.unit(200, "cm"),
  44445. default: true
  44446. },
  44447. {
  44448. name: "Smaller Macro",
  44449. height: math.unit(90, "m")
  44450. },
  44451. {
  44452. name: "Macro",
  44453. height: math.unit(150, "m")
  44454. },
  44455. {
  44456. name: "Bigger Macro",
  44457. height: math.unit(300, "m")
  44458. },
  44459. ]
  44460. ))
  44461. characterMakers.push(() => makeCharacter(
  44462. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44463. {
  44464. side: {
  44465. height: math.unit(8 + 2/12, "feet"),
  44466. weight: math.unit(1, "tonne"),
  44467. name: "Side",
  44468. image: {
  44469. source: "./media/characters/rylide/side.svg",
  44470. extra: 1318/1034,
  44471. bottom: 106/1424
  44472. }
  44473. },
  44474. sitting: {
  44475. height: math.unit(303, "cm"),
  44476. weight: math.unit(1, "tonne"),
  44477. name: "Sitting",
  44478. image: {
  44479. source: "./media/characters/rylide/sitting.svg",
  44480. extra: 1303/1103,
  44481. bottom: 36/1339
  44482. }
  44483. },
  44484. },
  44485. [
  44486. {
  44487. name: "Normal",
  44488. height: math.unit(8 + 2/12, "feet"),
  44489. default: true
  44490. },
  44491. ]
  44492. ))
  44493. characterMakers.push(() => makeCharacter(
  44494. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44495. {
  44496. front: {
  44497. height: math.unit(5 + 10/12, "feet"),
  44498. weight: math.unit(160, "lb"),
  44499. name: "Front",
  44500. image: {
  44501. source: "./media/characters/pudask/front.svg",
  44502. extra: 1616/1590,
  44503. bottom: 161/1777
  44504. }
  44505. },
  44506. },
  44507. [
  44508. {
  44509. name: "Ferret Height",
  44510. height: math.unit(2 + 5/12, "feet")
  44511. },
  44512. {
  44513. name: "Canon Height",
  44514. height: math.unit(5 + 10/12, "feet"),
  44515. default: true
  44516. },
  44517. ]
  44518. ))
  44519. characterMakers.push(() => makeCharacter(
  44520. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44521. {
  44522. front: {
  44523. height: math.unit(3 + 6/12, "feet"),
  44524. weight: math.unit(60, "lb"),
  44525. name: "Front",
  44526. image: {
  44527. source: "./media/characters/ramita/front.svg",
  44528. extra: 1402/1232,
  44529. bottom: 62/1464
  44530. }
  44531. },
  44532. dressed: {
  44533. height: math.unit(3 + 6/12, "feet"),
  44534. weight: math.unit(60, "lb"),
  44535. name: "Dressed",
  44536. image: {
  44537. source: "./media/characters/ramita/dressed.svg",
  44538. extra: 1534/1249,
  44539. bottom: 50/1584
  44540. }
  44541. },
  44542. },
  44543. [
  44544. {
  44545. name: "Normal",
  44546. height: math.unit(3 + 6/12, "feet"),
  44547. default: true
  44548. },
  44549. ]
  44550. ))
  44551. characterMakers.push(() => makeCharacter(
  44552. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44553. {
  44554. front: {
  44555. height: math.unit(8, "feet"),
  44556. name: "Front",
  44557. image: {
  44558. source: "./media/characters/ark/front.svg",
  44559. extra: 772/693,
  44560. bottom: 45/817
  44561. }
  44562. },
  44563. },
  44564. [
  44565. {
  44566. name: "Normal",
  44567. height: math.unit(8, "feet"),
  44568. default: true
  44569. },
  44570. ]
  44571. ))
  44572. characterMakers.push(() => makeCharacter(
  44573. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44574. {
  44575. front: {
  44576. height: math.unit(6, "feet"),
  44577. weight: math.unit(250, "lb"),
  44578. volume: math.unit(5/8, "gallons"),
  44579. name: "Front",
  44580. image: {
  44581. source: "./media/characters/ludwig-horn/front.svg",
  44582. extra: 1782/1635,
  44583. bottom: 96/1878
  44584. }
  44585. },
  44586. back: {
  44587. height: math.unit(6, "feet"),
  44588. weight: math.unit(250, "lb"),
  44589. volume: math.unit(5/8, "gallons"),
  44590. name: "Back",
  44591. image: {
  44592. source: "./media/characters/ludwig-horn/back.svg",
  44593. extra: 1874/1729,
  44594. bottom: 27/1901
  44595. }
  44596. },
  44597. dick: {
  44598. height: math.unit(1.05, "feet"),
  44599. weight: math.unit(15, "lb"),
  44600. volume: math.unit(5/8, "gallons"),
  44601. name: "Dick",
  44602. image: {
  44603. source: "./media/characters/ludwig-horn/dick.svg"
  44604. }
  44605. },
  44606. },
  44607. [
  44608. {
  44609. name: "Small",
  44610. height: math.unit(6, "feet")
  44611. },
  44612. {
  44613. name: "Typical",
  44614. height: math.unit(12, "feet"),
  44615. default: true
  44616. },
  44617. {
  44618. name: "Building",
  44619. height: math.unit(80, "feet")
  44620. },
  44621. {
  44622. name: "Town",
  44623. height: math.unit(800, "feet")
  44624. },
  44625. {
  44626. name: "Kingdom",
  44627. height: math.unit(80000, "feet")
  44628. },
  44629. {
  44630. name: "Planet",
  44631. height: math.unit(8000000, "feet")
  44632. },
  44633. {
  44634. name: "Universe",
  44635. height: math.unit(8000000000, "feet")
  44636. },
  44637. {
  44638. name: "Transcended",
  44639. height: math.unit(8e27, "feet")
  44640. },
  44641. ]
  44642. ))
  44643. characterMakers.push(() => makeCharacter(
  44644. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44645. {
  44646. front: {
  44647. height: math.unit(5, "feet"),
  44648. weight: math.unit(50, "kg"),
  44649. name: "Front",
  44650. image: {
  44651. source: "./media/characters/biot-avery/front.svg",
  44652. extra: 1295/1232,
  44653. bottom: 86/1381
  44654. }
  44655. },
  44656. },
  44657. [
  44658. {
  44659. name: "Normal",
  44660. height: math.unit(5, "feet"),
  44661. default: true
  44662. },
  44663. ]
  44664. ))
  44665. characterMakers.push(() => makeCharacter(
  44666. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44667. {
  44668. front: {
  44669. height: math.unit(6, "feet"),
  44670. name: "Front",
  44671. image: {
  44672. source: "./media/characters/kitsune-kiro/front.svg",
  44673. extra: 1270/1158,
  44674. bottom: 42/1312
  44675. }
  44676. },
  44677. frontAlt: {
  44678. height: math.unit(6, "feet"),
  44679. name: "Front-alt",
  44680. image: {
  44681. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44682. extra: 1130/1081,
  44683. bottom: 36/1166
  44684. }
  44685. },
  44686. },
  44687. [
  44688. {
  44689. name: "Smol",
  44690. height: math.unit(3, "feet")
  44691. },
  44692. {
  44693. name: "Normal",
  44694. height: math.unit(6, "feet"),
  44695. default: true
  44696. },
  44697. ]
  44698. ))
  44699. characterMakers.push(() => makeCharacter(
  44700. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44701. {
  44702. front: {
  44703. height: math.unit(6, "feet"),
  44704. weight: math.unit(125, "lb"),
  44705. name: "Front",
  44706. image: {
  44707. source: "./media/characters/jack-thatcher/front.svg",
  44708. extra: 1474/1370,
  44709. bottom: 26/1500
  44710. }
  44711. },
  44712. back: {
  44713. height: math.unit(6, "feet"),
  44714. weight: math.unit(125, "lb"),
  44715. name: "Back",
  44716. image: {
  44717. source: "./media/characters/jack-thatcher/back.svg",
  44718. extra: 1489/1384,
  44719. bottom: 18/1507
  44720. }
  44721. },
  44722. },
  44723. [
  44724. {
  44725. name: "Normal",
  44726. height: math.unit(6, "feet"),
  44727. default: true
  44728. },
  44729. {
  44730. name: "Macro",
  44731. height: math.unit(75, "feet")
  44732. },
  44733. {
  44734. name: "Macro-er",
  44735. height: math.unit(250, "feet")
  44736. },
  44737. ]
  44738. ))
  44739. characterMakers.push(() => makeCharacter(
  44740. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44741. {
  44742. front: {
  44743. height: math.unit(7, "feet"),
  44744. weight: math.unit(110, "kg"),
  44745. name: "Front",
  44746. image: {
  44747. source: "./media/characters/max-hyper/front.svg",
  44748. extra: 1969/1881,
  44749. bottom: 49/2018
  44750. }
  44751. },
  44752. },
  44753. [
  44754. {
  44755. name: "Normal",
  44756. height: math.unit(7, "feet"),
  44757. default: true
  44758. },
  44759. ]
  44760. ))
  44761. characterMakers.push(() => makeCharacter(
  44762. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44763. {
  44764. front: {
  44765. height: math.unit(5 + 5/12, "feet"),
  44766. weight: math.unit(160, "lb"),
  44767. name: "Front",
  44768. image: {
  44769. source: "./media/characters/spook/front.svg",
  44770. extra: 794/791,
  44771. bottom: 54/848
  44772. }
  44773. },
  44774. back: {
  44775. height: math.unit(5 + 5/12, "feet"),
  44776. weight: math.unit(160, "lb"),
  44777. name: "Back",
  44778. image: {
  44779. source: "./media/characters/spook/back.svg",
  44780. extra: 812/798,
  44781. bottom: 32/844
  44782. }
  44783. },
  44784. },
  44785. [
  44786. {
  44787. name: "Normal",
  44788. height: math.unit(5 + 5/12, "feet"),
  44789. default: true
  44790. },
  44791. ]
  44792. ))
  44793. characterMakers.push(() => makeCharacter(
  44794. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44795. {
  44796. front: {
  44797. height: math.unit(18, "feet"),
  44798. name: "Front",
  44799. image: {
  44800. source: "./media/characters/xeaduulix/front.svg",
  44801. extra: 1380/1166,
  44802. bottom: 110/1490
  44803. }
  44804. },
  44805. back: {
  44806. height: math.unit(18, "feet"),
  44807. name: "Back",
  44808. image: {
  44809. source: "./media/characters/xeaduulix/back.svg",
  44810. extra: 1592/1170,
  44811. bottom: 128/1720
  44812. }
  44813. },
  44814. frontNsfw: {
  44815. height: math.unit(18, "feet"),
  44816. name: "Front (NSFW)",
  44817. image: {
  44818. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44819. extra: 1380/1166,
  44820. bottom: 110/1490
  44821. }
  44822. },
  44823. backNsfw: {
  44824. height: math.unit(18, "feet"),
  44825. name: "Back (NSFW)",
  44826. image: {
  44827. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44828. extra: 1592/1170,
  44829. bottom: 128/1720
  44830. }
  44831. },
  44832. },
  44833. [
  44834. {
  44835. name: "Normal",
  44836. height: math.unit(18, "feet"),
  44837. default: true
  44838. },
  44839. ]
  44840. ))
  44841. characterMakers.push(() => makeCharacter(
  44842. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44843. {
  44844. spreadWings: {
  44845. height: math.unit(20, "feet"),
  44846. name: "Spread Wings",
  44847. image: {
  44848. source: "./media/characters/fledge/spread-wings.svg",
  44849. extra: 693/635,
  44850. bottom: 26/719
  44851. }
  44852. },
  44853. front: {
  44854. height: math.unit(20, "feet"),
  44855. name: "Front",
  44856. image: {
  44857. source: "./media/characters/fledge/front.svg",
  44858. extra: 684/637,
  44859. bottom: 18/702
  44860. }
  44861. },
  44862. frontAlt: {
  44863. height: math.unit(20, "feet"),
  44864. name: "Front (Alt)",
  44865. image: {
  44866. source: "./media/characters/fledge/front-alt.svg",
  44867. extra: 708/664,
  44868. bottom: 13/721
  44869. }
  44870. },
  44871. back: {
  44872. height: math.unit(20, "feet"),
  44873. name: "Back",
  44874. image: {
  44875. source: "./media/characters/fledge/back.svg",
  44876. extra: 718/634,
  44877. bottom: 22/740
  44878. }
  44879. },
  44880. head: {
  44881. height: math.unit(5.55, "feet"),
  44882. name: "Head",
  44883. image: {
  44884. source: "./media/characters/fledge/head.svg"
  44885. }
  44886. },
  44887. headAlt: {
  44888. height: math.unit(5.1, "feet"),
  44889. name: "Head (Alt)",
  44890. image: {
  44891. source: "./media/characters/fledge/head-alt.svg"
  44892. }
  44893. },
  44894. },
  44895. [
  44896. {
  44897. name: "Small",
  44898. height: math.unit(6 + 2/12, "feet")
  44899. },
  44900. {
  44901. name: "Big",
  44902. height: math.unit(20, "feet"),
  44903. default: true
  44904. },
  44905. {
  44906. name: "Giant",
  44907. height: math.unit(100, "feet")
  44908. },
  44909. {
  44910. name: "Macro",
  44911. height: math.unit(200, "feet")
  44912. },
  44913. ]
  44914. ))
  44915. characterMakers.push(() => makeCharacter(
  44916. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44917. {
  44918. front: {
  44919. height: math.unit(1, "meter"),
  44920. name: "Front",
  44921. image: {
  44922. source: "./media/characters/atlas-morenai/front.svg",
  44923. extra: 1275/1043,
  44924. bottom: 19/1294
  44925. }
  44926. },
  44927. back: {
  44928. height: math.unit(1, "meter"),
  44929. name: "Back",
  44930. image: {
  44931. source: "./media/characters/atlas-morenai/back.svg",
  44932. extra: 1141/1001,
  44933. bottom: 25/1166
  44934. }
  44935. },
  44936. },
  44937. [
  44938. {
  44939. name: "Normal",
  44940. height: math.unit(1, "meter"),
  44941. default: true
  44942. },
  44943. {
  44944. name: "Magic-Infused",
  44945. height: math.unit(5, "meters")
  44946. },
  44947. ]
  44948. ))
  44949. characterMakers.push(() => makeCharacter(
  44950. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44951. {
  44952. front: {
  44953. height: math.unit(5, "meters"),
  44954. name: "Front",
  44955. image: {
  44956. source: "./media/characters/cintia/front.svg",
  44957. extra: 1312/1228,
  44958. bottom: 38/1350
  44959. }
  44960. },
  44961. back: {
  44962. height: math.unit(5, "meters"),
  44963. name: "Back",
  44964. image: {
  44965. source: "./media/characters/cintia/back.svg",
  44966. extra: 1260/1166,
  44967. bottom: 98/1358
  44968. }
  44969. },
  44970. frontDick: {
  44971. height: math.unit(5, "meters"),
  44972. name: "Front (Dick)",
  44973. image: {
  44974. source: "./media/characters/cintia/front-dick.svg",
  44975. extra: 1312/1228,
  44976. bottom: 38/1350
  44977. }
  44978. },
  44979. backDick: {
  44980. height: math.unit(5, "meters"),
  44981. name: "Back (Dick)",
  44982. image: {
  44983. source: "./media/characters/cintia/back-dick.svg",
  44984. extra: 1260/1166,
  44985. bottom: 98/1358
  44986. }
  44987. },
  44988. bust: {
  44989. height: math.unit(1.97, "meters"),
  44990. name: "Bust",
  44991. image: {
  44992. source: "./media/characters/cintia/bust.svg",
  44993. extra: 617/565,
  44994. bottom: 0/617
  44995. }
  44996. },
  44997. },
  44998. [
  44999. {
  45000. name: "Normal",
  45001. height: math.unit(5, "meters"),
  45002. default: true
  45003. },
  45004. ]
  45005. ))
  45006. characterMakers.push(() => makeCharacter(
  45007. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45008. {
  45009. side: {
  45010. height: math.unit(100, "feet"),
  45011. name: "Side",
  45012. image: {
  45013. source: "./media/characters/denora/side.svg",
  45014. extra: 875/803,
  45015. bottom: 9/884
  45016. }
  45017. },
  45018. },
  45019. [
  45020. {
  45021. name: "Standard",
  45022. height: math.unit(100, "feet"),
  45023. default: true
  45024. },
  45025. {
  45026. name: "Grand",
  45027. height: math.unit(1000, "feet")
  45028. },
  45029. {
  45030. name: "Conquering",
  45031. height: math.unit(10000, "feet")
  45032. },
  45033. ]
  45034. ))
  45035. characterMakers.push(() => makeCharacter(
  45036. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45037. {
  45038. dressed: {
  45039. height: math.unit(8 + 5/12, "feet"),
  45040. weight: math.unit(700, "lb"),
  45041. name: "Dressed",
  45042. image: {
  45043. source: "./media/characters/kiva/dressed.svg",
  45044. extra: 1102/1055,
  45045. bottom: 60/1162
  45046. }
  45047. },
  45048. nude: {
  45049. height: math.unit(8 + 5/12, "feet"),
  45050. weight: math.unit(700, "lb"),
  45051. name: "Nude",
  45052. image: {
  45053. source: "./media/characters/kiva/nude.svg",
  45054. extra: 1102/1055,
  45055. bottom: 60/1162
  45056. }
  45057. },
  45058. },
  45059. [
  45060. {
  45061. name: "Base Height",
  45062. height: math.unit(8 + 5/12, "feet"),
  45063. default: true
  45064. },
  45065. {
  45066. name: "Macro",
  45067. height: math.unit(100, "feet")
  45068. },
  45069. {
  45070. name: "Max",
  45071. height: math.unit(3280, "feet")
  45072. },
  45073. ]
  45074. ))
  45075. characterMakers.push(() => makeCharacter(
  45076. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45077. {
  45078. front: {
  45079. height: math.unit(6 + 8/12, "feet"),
  45080. weight: math.unit(250, "lb"),
  45081. name: "Front",
  45082. image: {
  45083. source: "./media/characters/ztragon/front.svg",
  45084. extra: 1825/1684,
  45085. bottom: 98/1923
  45086. }
  45087. },
  45088. },
  45089. [
  45090. {
  45091. name: "Normal",
  45092. height: math.unit(6 + 8/12, "feet"),
  45093. default: true
  45094. },
  45095. {
  45096. name: "Macro",
  45097. height: math.unit(80, "feet")
  45098. },
  45099. ]
  45100. ))
  45101. characterMakers.push(() => makeCharacter(
  45102. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45103. {
  45104. front: {
  45105. height: math.unit(10.4, "feet"),
  45106. weight: math.unit(2, "tons"),
  45107. name: "Front",
  45108. image: {
  45109. source: "./media/characters/yesenia/front.svg",
  45110. extra: 1479/1474,
  45111. bottom: 233/1712
  45112. }
  45113. },
  45114. },
  45115. [
  45116. {
  45117. name: "Normal",
  45118. height: math.unit(10.4, "feet"),
  45119. default: true
  45120. },
  45121. ]
  45122. ))
  45123. characterMakers.push(() => makeCharacter(
  45124. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45125. {
  45126. normal: {
  45127. height: math.unit(6 + 1/12, "feet"),
  45128. weight: math.unit(180, "lb"),
  45129. name: "Normal",
  45130. image: {
  45131. source: "./media/characters/leanne-lycheborne/normal.svg",
  45132. extra: 1748/1660,
  45133. bottom: 98/1846
  45134. }
  45135. },
  45136. were: {
  45137. height: math.unit(12, "feet"),
  45138. weight: math.unit(1600, "lb"),
  45139. name: "Were",
  45140. image: {
  45141. source: "./media/characters/leanne-lycheborne/were.svg",
  45142. extra: 1485/1432,
  45143. bottom: 66/1551
  45144. }
  45145. },
  45146. },
  45147. [
  45148. {
  45149. name: "Normal",
  45150. height: math.unit(6 + 1/12, "feet"),
  45151. default: true
  45152. },
  45153. ]
  45154. ))
  45155. characterMakers.push(() => makeCharacter(
  45156. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45157. {
  45158. side: {
  45159. height: math.unit(13, "feet"),
  45160. name: "Side",
  45161. image: {
  45162. source: "./media/characters/kira-tyler/side.svg",
  45163. extra: 693/393,
  45164. bottom: 58/751
  45165. }
  45166. },
  45167. },
  45168. [
  45169. {
  45170. name: "Normal",
  45171. height: math.unit(13, "feet"),
  45172. default: true
  45173. },
  45174. ]
  45175. ))
  45176. characterMakers.push(() => makeCharacter(
  45177. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45178. {
  45179. front: {
  45180. height: math.unit(10.3, "feet"),
  45181. weight: math.unit(150, "lb"),
  45182. name: "Front",
  45183. image: {
  45184. source: "./media/characters/blaze/front.svg",
  45185. extra: 1378/1286,
  45186. bottom: 172/1550
  45187. }
  45188. },
  45189. },
  45190. [
  45191. {
  45192. name: "Normal",
  45193. height: math.unit(10.3, "feet"),
  45194. default: true
  45195. },
  45196. ]
  45197. ))
  45198. characterMakers.push(() => makeCharacter(
  45199. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45200. {
  45201. side: {
  45202. height: math.unit(2, "meters"),
  45203. weight: math.unit(400, "kg"),
  45204. name: "Side",
  45205. image: {
  45206. source: "./media/characters/anu/side.svg",
  45207. extra: 506/394,
  45208. bottom: 18/524
  45209. }
  45210. },
  45211. },
  45212. [
  45213. {
  45214. name: "Humanoid",
  45215. height: math.unit(2, "meters")
  45216. },
  45217. {
  45218. name: "Normal",
  45219. height: math.unit(5, "meters"),
  45220. default: true
  45221. },
  45222. ]
  45223. ))
  45224. characterMakers.push(() => makeCharacter(
  45225. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45226. {
  45227. front: {
  45228. height: math.unit(5 + 5/12, "feet"),
  45229. weight: math.unit(170, "lb"),
  45230. name: "Front",
  45231. image: {
  45232. source: "./media/characters/synx-the-lynx/front.svg",
  45233. extra: 1893/1745,
  45234. bottom: 17/1910
  45235. }
  45236. },
  45237. side: {
  45238. height: math.unit(5 + 5/12, "feet"),
  45239. weight: math.unit(170, "lb"),
  45240. name: "Side",
  45241. image: {
  45242. source: "./media/characters/synx-the-lynx/side.svg",
  45243. extra: 1884/1740,
  45244. bottom: 39/1923
  45245. }
  45246. },
  45247. back: {
  45248. height: math.unit(5 + 5/12, "feet"),
  45249. weight: math.unit(170, "lb"),
  45250. name: "Back",
  45251. image: {
  45252. source: "./media/characters/synx-the-lynx/back.svg",
  45253. extra: 1903/1755,
  45254. bottom: 14/1917
  45255. }
  45256. },
  45257. },
  45258. [
  45259. {
  45260. name: "Normal",
  45261. height: math.unit(5 + 5/12, "feet"),
  45262. default: true
  45263. },
  45264. ]
  45265. ))
  45266. characterMakers.push(() => makeCharacter(
  45267. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45268. {
  45269. back: {
  45270. height: math.unit(15, "feet"),
  45271. name: "Back",
  45272. image: {
  45273. source: "./media/characters/nadezda-fex/back.svg",
  45274. extra: 1695/1481,
  45275. bottom: 25/1720
  45276. }
  45277. },
  45278. },
  45279. [
  45280. {
  45281. name: "Normal",
  45282. height: math.unit(15, "feet"),
  45283. default: true
  45284. },
  45285. {
  45286. name: "Macro",
  45287. height: math.unit(2.5, "miles")
  45288. },
  45289. {
  45290. name: "Goddess",
  45291. height: math.unit(2, "multiverses")
  45292. },
  45293. ]
  45294. ))
  45295. characterMakers.push(() => makeCharacter(
  45296. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45297. {
  45298. front: {
  45299. height: math.unit(216, "cm"),
  45300. name: "Front",
  45301. image: {
  45302. source: "./media/characters/lev/front.svg",
  45303. extra: 1728/1670,
  45304. bottom: 82/1810
  45305. }
  45306. },
  45307. back: {
  45308. height: math.unit(216, "cm"),
  45309. name: "Back",
  45310. image: {
  45311. source: "./media/characters/lev/back.svg",
  45312. extra: 1738/1675,
  45313. bottom: 24/1762
  45314. }
  45315. },
  45316. dressed: {
  45317. height: math.unit(216, "cm"),
  45318. name: "Dressed",
  45319. image: {
  45320. source: "./media/characters/lev/dressed.svg",
  45321. extra: 1397/1351,
  45322. bottom: 73/1470
  45323. }
  45324. },
  45325. head: {
  45326. height: math.unit(0.51, "meter"),
  45327. name: "Head",
  45328. image: {
  45329. source: "./media/characters/lev/head.svg"
  45330. }
  45331. },
  45332. },
  45333. [
  45334. {
  45335. name: "Normal",
  45336. height: math.unit(216, "cm"),
  45337. default: true
  45338. },
  45339. {
  45340. name: "Relatively Macro",
  45341. height: math.unit(80, "meters")
  45342. },
  45343. {
  45344. name: "Megamacro",
  45345. height: math.unit(21600, "meters")
  45346. },
  45347. {
  45348. name: "Megamacro+",
  45349. height: math.unit(64800, "meters")
  45350. },
  45351. ]
  45352. ))
  45353. characterMakers.push(() => makeCharacter(
  45354. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45355. {
  45356. front: {
  45357. height: math.unit(2, "meters"),
  45358. weight: math.unit(80, "kg"),
  45359. name: "Front",
  45360. image: {
  45361. source: "./media/characters/moka/front.svg",
  45362. extra: 1337/1255,
  45363. bottom: 58/1395
  45364. }
  45365. },
  45366. },
  45367. [
  45368. {
  45369. name: "Micro",
  45370. height: math.unit(15, "cm")
  45371. },
  45372. {
  45373. name: "Normal",
  45374. height: math.unit(2, "meters"),
  45375. default: true
  45376. },
  45377. {
  45378. name: "Macro",
  45379. height: math.unit(20, "meters"),
  45380. },
  45381. ]
  45382. ))
  45383. characterMakers.push(() => makeCharacter(
  45384. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45385. {
  45386. front: {
  45387. height: math.unit(9, "feet"),
  45388. weight: math.unit(240, "lb"),
  45389. name: "Front",
  45390. image: {
  45391. source: "./media/characters/kuzco/front.svg",
  45392. extra: 1593/1487,
  45393. bottom: 32/1625
  45394. }
  45395. },
  45396. side: {
  45397. height: math.unit(9, "feet"),
  45398. weight: math.unit(240, "lb"),
  45399. name: "Side",
  45400. image: {
  45401. source: "./media/characters/kuzco/side.svg",
  45402. extra: 1575/1485,
  45403. bottom: 30/1605
  45404. }
  45405. },
  45406. back: {
  45407. height: math.unit(9, "feet"),
  45408. weight: math.unit(240, "lb"),
  45409. name: "Back",
  45410. image: {
  45411. source: "./media/characters/kuzco/back.svg",
  45412. extra: 1603/1514,
  45413. bottom: 14/1617
  45414. }
  45415. },
  45416. },
  45417. [
  45418. {
  45419. name: "Normal",
  45420. height: math.unit(9, "feet"),
  45421. default: true
  45422. },
  45423. ]
  45424. ))
  45425. characterMakers.push(() => makeCharacter(
  45426. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45427. {
  45428. side: {
  45429. height: math.unit(2, "meters"),
  45430. weight: math.unit(300, "kg"),
  45431. name: "Side",
  45432. image: {
  45433. source: "./media/characters/ceruleus/side.svg",
  45434. extra: 1068/974,
  45435. bottom: 126/1194
  45436. }
  45437. },
  45438. },
  45439. [
  45440. {
  45441. name: "Normal",
  45442. height: math.unit(16, "meters"),
  45443. default: true
  45444. },
  45445. ]
  45446. ))
  45447. characterMakers.push(() => makeCharacter(
  45448. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45449. {
  45450. front: {
  45451. height: math.unit(9, "feet"),
  45452. weight: math.unit(500, "kg"),
  45453. name: "Front",
  45454. image: {
  45455. source: "./media/characters/acouya/front.svg",
  45456. extra: 1660/1473,
  45457. bottom: 28/1688
  45458. }
  45459. },
  45460. },
  45461. [
  45462. {
  45463. name: "Normal",
  45464. height: math.unit(9, "feet"),
  45465. default: true
  45466. },
  45467. ]
  45468. ))
  45469. characterMakers.push(() => makeCharacter(
  45470. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45471. {
  45472. front: {
  45473. height: math.unit(5 + 6/12, "feet"),
  45474. weight: math.unit(195, "lb"),
  45475. name: "Front",
  45476. image: {
  45477. source: "./media/characters/vant/front.svg",
  45478. extra: 1396/1320,
  45479. bottom: 20/1416
  45480. }
  45481. },
  45482. back: {
  45483. height: math.unit(5 + 6/12, "feet"),
  45484. weight: math.unit(195, "lb"),
  45485. name: "Back",
  45486. image: {
  45487. source: "./media/characters/vant/back.svg",
  45488. extra: 1396/1320,
  45489. bottom: 20/1416
  45490. }
  45491. },
  45492. maw: {
  45493. height: math.unit(0.75, "feet"),
  45494. name: "Maw",
  45495. image: {
  45496. source: "./media/characters/vant/maw.svg"
  45497. }
  45498. },
  45499. paw: {
  45500. height: math.unit(1.07, "feet"),
  45501. name: "Paw",
  45502. image: {
  45503. source: "./media/characters/vant/paw.svg"
  45504. }
  45505. },
  45506. },
  45507. [
  45508. {
  45509. name: "Micro",
  45510. height: math.unit(0.25, "inches")
  45511. },
  45512. {
  45513. name: "Normal",
  45514. height: math.unit(5 + 6/12, "feet"),
  45515. default: true
  45516. },
  45517. {
  45518. name: "Macro",
  45519. height: math.unit(75, "feet")
  45520. },
  45521. ]
  45522. ))
  45523. characterMakers.push(() => makeCharacter(
  45524. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45525. {
  45526. front: {
  45527. height: math.unit(30, "meters"),
  45528. weight: math.unit(363, "tons"),
  45529. name: "Front",
  45530. image: {
  45531. source: "./media/characters/ahra/front.svg",
  45532. extra: 1914/1814,
  45533. bottom: 46/1960
  45534. }
  45535. },
  45536. },
  45537. [
  45538. {
  45539. name: "Macro",
  45540. height: math.unit(30, "meters"),
  45541. default: true
  45542. },
  45543. ]
  45544. ))
  45545. characterMakers.push(() => makeCharacter(
  45546. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45547. {
  45548. undressed: {
  45549. height: math.unit(2, "m"),
  45550. weight: math.unit(250, "kg"),
  45551. name: "Undressed",
  45552. image: {
  45553. source: "./media/characters/coriander/undressed.svg",
  45554. extra: 1757/1606,
  45555. bottom: 107/1864
  45556. }
  45557. },
  45558. dressed: {
  45559. height: math.unit(2, "m"),
  45560. weight: math.unit(250, "kg"),
  45561. name: "Dressed",
  45562. image: {
  45563. source: "./media/characters/coriander/dressed.svg",
  45564. extra: 1757/1606,
  45565. bottom: 107/1864
  45566. }
  45567. },
  45568. },
  45569. [
  45570. {
  45571. name: "Normal",
  45572. height: math.unit(4, "meters"),
  45573. default: true
  45574. },
  45575. {
  45576. name: "XL",
  45577. height: math.unit(6, "meters")
  45578. },
  45579. {
  45580. name: "XXL",
  45581. height: math.unit(8, "meters")
  45582. },
  45583. ]
  45584. ))
  45585. characterMakers.push(() => makeCharacter(
  45586. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45587. {
  45588. front: {
  45589. height: math.unit(6, "feet"),
  45590. name: "Front",
  45591. image: {
  45592. source: "./media/characters/syrinx/front.svg",
  45593. extra: 1557/1259,
  45594. bottom: 171/1728
  45595. }
  45596. },
  45597. },
  45598. [
  45599. {
  45600. name: "Normal",
  45601. height: math.unit(6 + 3/12, "feet"),
  45602. default: true
  45603. },
  45604. ]
  45605. ))
  45606. characterMakers.push(() => makeCharacter(
  45607. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45608. {
  45609. front: {
  45610. height: math.unit(11 + 6/12, "feet"),
  45611. weight: math.unit(1.5, "tons"),
  45612. name: "Front",
  45613. image: {
  45614. source: "./media/characters/bor/front.svg",
  45615. extra: 1189/1109,
  45616. bottom: 170/1359
  45617. }
  45618. },
  45619. },
  45620. [
  45621. {
  45622. name: "Normal",
  45623. height: math.unit(11 + 6/12, "feet"),
  45624. default: true
  45625. },
  45626. {
  45627. name: "Macro",
  45628. height: math.unit(32 + 9/12, "feet")
  45629. },
  45630. ]
  45631. ))
  45632. characterMakers.push(() => makeCharacter(
  45633. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45634. {
  45635. anthro: {
  45636. height: math.unit(9, "feet"),
  45637. weight: math.unit(2076, "lb"),
  45638. name: "Anthro",
  45639. image: {
  45640. source: "./media/characters/abacus/anthro.svg",
  45641. extra: 1540/1494,
  45642. bottom: 233/1773
  45643. }
  45644. },
  45645. pigeon: {
  45646. height: math.unit(1, "feet"),
  45647. name: "Pigeon",
  45648. image: {
  45649. source: "./media/characters/abacus/pigeon.svg",
  45650. extra: 528/525,
  45651. bottom: 46/574
  45652. }
  45653. },
  45654. },
  45655. [
  45656. {
  45657. name: "Normal",
  45658. height: math.unit(9, "feet"),
  45659. default: true
  45660. },
  45661. ]
  45662. ))
  45663. characterMakers.push(() => makeCharacter(
  45664. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45665. {
  45666. side: {
  45667. height: math.unit(6, "feet"),
  45668. name: "Side",
  45669. image: {
  45670. source: "./media/characters/delkhan/side.svg",
  45671. extra: 1884/1786,
  45672. bottom: 308/2192
  45673. }
  45674. },
  45675. head: {
  45676. height: math.unit(3.38, "feet"),
  45677. name: "Head",
  45678. image: {
  45679. source: "./media/characters/delkhan/head.svg"
  45680. }
  45681. },
  45682. },
  45683. [
  45684. {
  45685. name: "Normal",
  45686. height: math.unit(72, "feet"),
  45687. default: true
  45688. },
  45689. {
  45690. name: "Giant",
  45691. height: math.unit(172, "feet")
  45692. },
  45693. ]
  45694. ))
  45695. characterMakers.push(() => makeCharacter(
  45696. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45697. {
  45698. standing: {
  45699. height: math.unit(6, "feet"),
  45700. name: "Standing",
  45701. image: {
  45702. source: "./media/characters/euchidat/standing.svg",
  45703. extra: 1612/1553,
  45704. bottom: 116/1728
  45705. }
  45706. },
  45707. leaning: {
  45708. height: math.unit(6, "feet"),
  45709. name: "Leaning",
  45710. image: {
  45711. source: "./media/characters/euchidat/leaning.svg",
  45712. extra: 1719/1674,
  45713. bottom: 27/1746
  45714. }
  45715. },
  45716. },
  45717. [
  45718. {
  45719. name: "Normal",
  45720. height: math.unit(175, "feet"),
  45721. default: true
  45722. },
  45723. {
  45724. name: "Megamacro",
  45725. height: math.unit(190, "miles")
  45726. },
  45727. {
  45728. name: "Gigamacro",
  45729. height: math.unit(190000, "miles")
  45730. },
  45731. ]
  45732. ))
  45733. characterMakers.push(() => makeCharacter(
  45734. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45735. {
  45736. front: {
  45737. height: math.unit(6, "feet"),
  45738. weight: math.unit(150, "lb"),
  45739. name: "Front",
  45740. image: {
  45741. source: "./media/characters/rebecca-stack/front.svg",
  45742. extra: 1256/1201,
  45743. bottom: 18/1274
  45744. }
  45745. },
  45746. },
  45747. [
  45748. {
  45749. name: "Normal",
  45750. height: math.unit(5 + 8/12, "feet"),
  45751. default: true
  45752. },
  45753. {
  45754. name: "Demolitionist",
  45755. height: math.unit(200, "feet")
  45756. },
  45757. {
  45758. name: "Out of Control",
  45759. height: math.unit(2, "miles")
  45760. },
  45761. {
  45762. name: "Giga",
  45763. height: math.unit(7200, "miles")
  45764. },
  45765. ]
  45766. ))
  45767. characterMakers.push(() => makeCharacter(
  45768. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45769. {
  45770. front: {
  45771. height: math.unit(6, "feet"),
  45772. weight: math.unit(150, "lb"),
  45773. name: "Front",
  45774. image: {
  45775. source: "./media/characters/jenny-cartwright/front.svg",
  45776. extra: 1384/1376,
  45777. bottom: 58/1442
  45778. }
  45779. },
  45780. },
  45781. [
  45782. {
  45783. name: "Normal",
  45784. height: math.unit(6 + 7/12, "feet"),
  45785. default: true
  45786. },
  45787. {
  45788. name: "Librarian",
  45789. height: math.unit(55, "feet")
  45790. },
  45791. {
  45792. name: "Sightseer",
  45793. height: math.unit(50, "miles")
  45794. },
  45795. {
  45796. name: "Giga",
  45797. height: math.unit(30000, "miles")
  45798. },
  45799. ]
  45800. ))
  45801. characterMakers.push(() => makeCharacter(
  45802. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45803. {
  45804. nude: {
  45805. height: math.unit(8, "feet"),
  45806. weight: math.unit(225, "lb"),
  45807. name: "Nude",
  45808. image: {
  45809. source: "./media/characters/marvy/nude.svg",
  45810. extra: 1900/1683,
  45811. bottom: 89/1989
  45812. }
  45813. },
  45814. dressed: {
  45815. height: math.unit(8, "feet"),
  45816. weight: math.unit(225, "lb"),
  45817. name: "Dressed",
  45818. image: {
  45819. source: "./media/characters/marvy/dressed.svg",
  45820. extra: 1900/1683,
  45821. bottom: 89/1989
  45822. }
  45823. },
  45824. head: {
  45825. height: math.unit(2.85, "feet"),
  45826. name: "Head",
  45827. image: {
  45828. source: "./media/characters/marvy/head.svg"
  45829. }
  45830. },
  45831. },
  45832. [
  45833. {
  45834. name: "Normal",
  45835. height: math.unit(8, "feet"),
  45836. default: true
  45837. },
  45838. ]
  45839. ))
  45840. characterMakers.push(() => makeCharacter(
  45841. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45842. {
  45843. front: {
  45844. height: math.unit(8, "feet"),
  45845. weight: math.unit(250, "lb"),
  45846. name: "Front",
  45847. image: {
  45848. source: "./media/characters/leah/front.svg",
  45849. extra: 1257/1149,
  45850. bottom: 109/1366
  45851. }
  45852. },
  45853. },
  45854. [
  45855. {
  45856. name: "Normal",
  45857. height: math.unit(8, "feet"),
  45858. default: true
  45859. },
  45860. {
  45861. name: "Minimacro",
  45862. height: math.unit(40, "feet")
  45863. },
  45864. {
  45865. name: "Macro",
  45866. height: math.unit(124, "feet")
  45867. },
  45868. {
  45869. name: "Megamacro",
  45870. height: math.unit(850, "feet")
  45871. },
  45872. ]
  45873. ))
  45874. characterMakers.push(() => makeCharacter(
  45875. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45876. {
  45877. side: {
  45878. height: math.unit(13 + 6/12, "feet"),
  45879. weight: math.unit(3200, "lb"),
  45880. name: "Side",
  45881. image: {
  45882. source: "./media/characters/alvir/side.svg",
  45883. extra: 896/589,
  45884. bottom: 26/922
  45885. }
  45886. },
  45887. },
  45888. [
  45889. {
  45890. name: "Normal",
  45891. height: math.unit(13 + 6/12, "feet"),
  45892. default: true
  45893. },
  45894. ]
  45895. ))
  45896. characterMakers.push(() => makeCharacter(
  45897. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45898. {
  45899. front: {
  45900. height: math.unit(5 + 4/12, "feet"),
  45901. weight: math.unit(236, "lb"),
  45902. name: "Front",
  45903. image: {
  45904. source: "./media/characters/zaina-khalil/front.svg",
  45905. extra: 1533/1485,
  45906. bottom: 94/1627
  45907. }
  45908. },
  45909. side: {
  45910. height: math.unit(5 + 4/12, "feet"),
  45911. weight: math.unit(236, "lb"),
  45912. name: "Side",
  45913. image: {
  45914. source: "./media/characters/zaina-khalil/side.svg",
  45915. extra: 1537/1498,
  45916. bottom: 66/1603
  45917. }
  45918. },
  45919. back: {
  45920. height: math.unit(5 + 4/12, "feet"),
  45921. weight: math.unit(236, "lb"),
  45922. name: "Back",
  45923. image: {
  45924. source: "./media/characters/zaina-khalil/back.svg",
  45925. extra: 1546/1494,
  45926. bottom: 89/1635
  45927. }
  45928. },
  45929. },
  45930. [
  45931. {
  45932. name: "Normal",
  45933. height: math.unit(5 + 4/12, "feet"),
  45934. default: true
  45935. },
  45936. ]
  45937. ))
  45938. characterMakers.push(() => makeCharacter(
  45939. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45940. {
  45941. side: {
  45942. height: math.unit(12, "feet"),
  45943. weight: math.unit(4000, "lb"),
  45944. name: "Side",
  45945. image: {
  45946. source: "./media/characters/terry/side.svg",
  45947. extra: 1518/1439,
  45948. bottom: 149/1667
  45949. }
  45950. },
  45951. },
  45952. [
  45953. {
  45954. name: "Normal",
  45955. height: math.unit(12, "feet"),
  45956. default: true
  45957. },
  45958. ]
  45959. ))
  45960. characterMakers.push(() => makeCharacter(
  45961. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45962. {
  45963. front: {
  45964. height: math.unit(12, "feet"),
  45965. weight: math.unit(1500, "lb"),
  45966. name: "Front",
  45967. image: {
  45968. source: "./media/characters/kahea/front.svg",
  45969. extra: 1722/1617,
  45970. bottom: 179/1901
  45971. }
  45972. },
  45973. },
  45974. [
  45975. {
  45976. name: "Normal",
  45977. height: math.unit(12, "feet"),
  45978. default: true
  45979. },
  45980. ]
  45981. ))
  45982. characterMakers.push(() => makeCharacter(
  45983. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45984. {
  45985. demonFront: {
  45986. height: math.unit(36, "feet"),
  45987. name: "Front",
  45988. image: {
  45989. source: "./media/characters/alex-xuria/demon-front.svg",
  45990. extra: 1705/1673,
  45991. bottom: 198/1903
  45992. },
  45993. form: "demon",
  45994. default: true
  45995. },
  45996. demonBack: {
  45997. height: math.unit(36, "feet"),
  45998. name: "Back",
  45999. image: {
  46000. source: "./media/characters/alex-xuria/demon-back.svg",
  46001. extra: 1725/1693,
  46002. bottom: 70/1795
  46003. },
  46004. form: "demon"
  46005. },
  46006. demonHead: {
  46007. height: math.unit(2.14, "meters"),
  46008. name: "Head",
  46009. image: {
  46010. source: "./media/characters/alex-xuria/demon-head.svg"
  46011. },
  46012. form: "demon"
  46013. },
  46014. demonHand: {
  46015. height: math.unit(1.61, "meters"),
  46016. name: "Hand",
  46017. image: {
  46018. source: "./media/characters/alex-xuria/demon-hand.svg"
  46019. },
  46020. form: "demon"
  46021. },
  46022. demonPaw: {
  46023. height: math.unit(1.35, "meters"),
  46024. name: "Paw",
  46025. image: {
  46026. source: "./media/characters/alex-xuria/demon-paw.svg"
  46027. },
  46028. form: "demon"
  46029. },
  46030. demonFoot: {
  46031. height: math.unit(2.2, "meters"),
  46032. name: "Foot",
  46033. image: {
  46034. source: "./media/characters/alex-xuria/demon-foot.svg"
  46035. },
  46036. form: "demon"
  46037. },
  46038. demonCock: {
  46039. height: math.unit(1.74, "meters"),
  46040. name: "Cock",
  46041. image: {
  46042. source: "./media/characters/alex-xuria/demon-cock.svg"
  46043. },
  46044. form: "demon"
  46045. },
  46046. demonTailClosed: {
  46047. height: math.unit(1.47, "meters"),
  46048. name: "Tail (Closed)",
  46049. image: {
  46050. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46051. },
  46052. form: "demon"
  46053. },
  46054. demonTailOpen: {
  46055. height: math.unit(2.85, "meters"),
  46056. name: "Tail (Open)",
  46057. image: {
  46058. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46059. },
  46060. form: "demon"
  46061. },
  46062. incubusFront: {
  46063. height: math.unit(12, "feet"),
  46064. name: "Front",
  46065. image: {
  46066. source: "./media/characters/alex-xuria/incubus-front.svg",
  46067. extra: 1754/1677,
  46068. bottom: 125/1879
  46069. },
  46070. form: "incubus",
  46071. default: true
  46072. },
  46073. incubusBack: {
  46074. height: math.unit(12, "feet"),
  46075. name: "Back",
  46076. image: {
  46077. source: "./media/characters/alex-xuria/incubus-back.svg",
  46078. extra: 1702/1647,
  46079. bottom: 30/1732
  46080. },
  46081. form: "incubus"
  46082. },
  46083. incubusHead: {
  46084. height: math.unit(3.45, "feet"),
  46085. name: "Head",
  46086. image: {
  46087. source: "./media/characters/alex-xuria/incubus-head.svg"
  46088. },
  46089. form: "incubus"
  46090. },
  46091. rabbitFront: {
  46092. height: math.unit(6, "feet"),
  46093. name: "Front",
  46094. image: {
  46095. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46096. extra: 1369/1349,
  46097. bottom: 45/1414
  46098. },
  46099. form: "rabbit",
  46100. default: true
  46101. },
  46102. rabbitSide: {
  46103. height: math.unit(6, "feet"),
  46104. name: "Side",
  46105. image: {
  46106. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46107. extra: 1370/1356,
  46108. bottom: 37/1407
  46109. },
  46110. form: "rabbit"
  46111. },
  46112. rabbitBack: {
  46113. height: math.unit(6, "feet"),
  46114. name: "Back",
  46115. image: {
  46116. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46117. extra: 1375/1358,
  46118. bottom: 43/1418
  46119. },
  46120. form: "rabbit"
  46121. },
  46122. },
  46123. [
  46124. {
  46125. name: "Normal",
  46126. height: math.unit(6, "feet"),
  46127. default: true,
  46128. form: "rabbit"
  46129. },
  46130. {
  46131. name: "Incubus",
  46132. height: math.unit(12, "feet"),
  46133. default: true,
  46134. form: "incubus"
  46135. },
  46136. {
  46137. name: "Demon",
  46138. height: math.unit(36, "feet"),
  46139. default: true,
  46140. form: "demon"
  46141. }
  46142. ],
  46143. {
  46144. "demon": {
  46145. name: "Demon",
  46146. default: true
  46147. },
  46148. "incubus": {
  46149. name: "Incubus",
  46150. },
  46151. "rabbit": {
  46152. name: "Rabbit"
  46153. }
  46154. }
  46155. ))
  46156. characterMakers.push(() => makeCharacter(
  46157. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46158. {
  46159. front: {
  46160. height: math.unit(7 + 5/12, "feet"),
  46161. weight: math.unit(510, "lb"),
  46162. name: "Front",
  46163. image: {
  46164. source: "./media/characters/syrup/front.svg",
  46165. extra: 932/916,
  46166. bottom: 26/958
  46167. }
  46168. },
  46169. },
  46170. [
  46171. {
  46172. name: "Normal",
  46173. height: math.unit(7 + 5/12, "feet"),
  46174. default: true
  46175. },
  46176. {
  46177. name: "Big",
  46178. height: math.unit(50, "feet")
  46179. },
  46180. {
  46181. name: "Macro",
  46182. height: math.unit(300, "feet")
  46183. },
  46184. {
  46185. name: "Megamacro",
  46186. height: math.unit(1, "mile")
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46192. {
  46193. front: {
  46194. height: math.unit(6 + 9/12, "feet"),
  46195. name: "Front",
  46196. image: {
  46197. source: "./media/characters/zeimne/front.svg",
  46198. extra: 1969/1806,
  46199. bottom: 53/2022
  46200. }
  46201. },
  46202. },
  46203. [
  46204. {
  46205. name: "Normal",
  46206. height: math.unit(6 + 9/12, "feet"),
  46207. default: true
  46208. },
  46209. {
  46210. name: "Giant",
  46211. height: math.unit(550, "feet")
  46212. },
  46213. {
  46214. name: "Mega",
  46215. height: math.unit(3, "miles")
  46216. },
  46217. {
  46218. name: "Giga",
  46219. height: math.unit(250, "miles")
  46220. },
  46221. {
  46222. name: "Tera",
  46223. height: math.unit(1, "AU")
  46224. },
  46225. ]
  46226. ))
  46227. characterMakers.push(() => makeCharacter(
  46228. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46229. {
  46230. front: {
  46231. height: math.unit(5 + 2/12, "feet"),
  46232. name: "Front",
  46233. image: {
  46234. source: "./media/characters/grar/front.svg",
  46235. extra: 1331/1119,
  46236. bottom: 60/1391
  46237. }
  46238. },
  46239. back: {
  46240. height: math.unit(5 + 2/12, "feet"),
  46241. name: "Back",
  46242. image: {
  46243. source: "./media/characters/grar/back.svg",
  46244. extra: 1385/1169,
  46245. bottom: 23/1408
  46246. }
  46247. },
  46248. },
  46249. [
  46250. {
  46251. name: "Normal",
  46252. height: math.unit(5 + 2/12, "feet"),
  46253. default: true
  46254. },
  46255. ]
  46256. ))
  46257. characterMakers.push(() => makeCharacter(
  46258. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46259. {
  46260. front: {
  46261. height: math.unit(13 + 7/12, "feet"),
  46262. weight: math.unit(2200, "lb"),
  46263. name: "Front",
  46264. image: {
  46265. source: "./media/characters/endraya/front.svg",
  46266. extra: 1289/1215,
  46267. bottom: 50/1339
  46268. }
  46269. },
  46270. nude: {
  46271. height: math.unit(13 + 7/12, "feet"),
  46272. weight: math.unit(2200, "lb"),
  46273. name: "Nude",
  46274. image: {
  46275. source: "./media/characters/endraya/nude.svg",
  46276. extra: 1247/1171,
  46277. bottom: 40/1287
  46278. }
  46279. },
  46280. head: {
  46281. height: math.unit(2.6, "feet"),
  46282. name: "Head",
  46283. image: {
  46284. source: "./media/characters/endraya/head.svg"
  46285. }
  46286. },
  46287. slit: {
  46288. height: math.unit(3.4, "feet"),
  46289. name: "Slit",
  46290. image: {
  46291. source: "./media/characters/endraya/slit.svg"
  46292. }
  46293. },
  46294. },
  46295. [
  46296. {
  46297. name: "Normal",
  46298. height: math.unit(13 + 7/12, "feet"),
  46299. default: true
  46300. },
  46301. {
  46302. name: "Macro",
  46303. height: math.unit(200, "feet")
  46304. },
  46305. ]
  46306. ))
  46307. characterMakers.push(() => makeCharacter(
  46308. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46309. {
  46310. front: {
  46311. height: math.unit(1.81, "meters"),
  46312. weight: math.unit(69, "kg"),
  46313. name: "Front",
  46314. image: {
  46315. source: "./media/characters/rodryana/front.svg",
  46316. extra: 2002/1921,
  46317. bottom: 53/2055
  46318. }
  46319. },
  46320. back: {
  46321. height: math.unit(1.81, "meters"),
  46322. weight: math.unit(69, "kg"),
  46323. name: "Back",
  46324. image: {
  46325. source: "./media/characters/rodryana/back.svg",
  46326. extra: 1993/1926,
  46327. bottom: 48/2041
  46328. }
  46329. },
  46330. maw: {
  46331. height: math.unit(0.19769417475, "meters"),
  46332. name: "Maw",
  46333. image: {
  46334. source: "./media/characters/rodryana/maw.svg"
  46335. }
  46336. },
  46337. slit: {
  46338. height: math.unit(0.31631067961, "meters"),
  46339. name: "Slit",
  46340. image: {
  46341. source: "./media/characters/rodryana/slit.svg"
  46342. }
  46343. },
  46344. },
  46345. [
  46346. {
  46347. name: "Normal",
  46348. height: math.unit(1.81, "meters")
  46349. },
  46350. {
  46351. name: "Mini Macro",
  46352. height: math.unit(181, "meters")
  46353. },
  46354. {
  46355. name: "Macro",
  46356. height: math.unit(452, "meters"),
  46357. default: true
  46358. },
  46359. {
  46360. name: "Mega Macro",
  46361. height: math.unit(1.375, "km")
  46362. },
  46363. {
  46364. name: "Giga Macro",
  46365. height: math.unit(13.575, "km")
  46366. },
  46367. ]
  46368. ))
  46369. characterMakers.push(() => makeCharacter(
  46370. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46371. {
  46372. front: {
  46373. height: math.unit(6, "feet"),
  46374. weight: math.unit(1000, "lb"),
  46375. name: "Front",
  46376. image: {
  46377. source: "./media/characters/asaya/front.svg",
  46378. extra: 1460/1200,
  46379. bottom: 71/1531
  46380. }
  46381. },
  46382. },
  46383. [
  46384. {
  46385. name: "Normal",
  46386. height: math.unit(8, "km"),
  46387. default: true
  46388. },
  46389. ]
  46390. ))
  46391. characterMakers.push(() => makeCharacter(
  46392. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46393. {
  46394. front: {
  46395. height: math.unit(3.5, "meters"),
  46396. name: "Front",
  46397. image: {
  46398. source: "./media/characters/sarzu-and-israz/front.svg",
  46399. extra: 1570/1558,
  46400. bottom: 150/1720
  46401. },
  46402. },
  46403. back: {
  46404. height: math.unit(3.5, "meters"),
  46405. name: "Back",
  46406. image: {
  46407. source: "./media/characters/sarzu-and-israz/back.svg",
  46408. extra: 1523/1509,
  46409. bottom: 132/1655
  46410. },
  46411. },
  46412. frontFemale: {
  46413. height: math.unit(3.5, "meters"),
  46414. name: "Front (Female)",
  46415. image: {
  46416. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46417. extra: 1570/1558,
  46418. bottom: 150/1720
  46419. },
  46420. },
  46421. frontHerm: {
  46422. height: math.unit(3.5, "meters"),
  46423. name: "Front (Herm)",
  46424. image: {
  46425. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46426. extra: 1570/1558,
  46427. bottom: 150/1720
  46428. },
  46429. },
  46430. },
  46431. [
  46432. {
  46433. name: "Normal",
  46434. height: math.unit(3.5, "meters"),
  46435. default: true,
  46436. },
  46437. {
  46438. name: "Macro",
  46439. height: math.unit(65.5, "meters"),
  46440. },
  46441. ],
  46442. ))
  46443. characterMakers.push(() => makeCharacter(
  46444. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46445. {
  46446. front: {
  46447. height: math.unit(6, "feet"),
  46448. weight: math.unit(250, "lb"),
  46449. name: "Front",
  46450. image: {
  46451. source: "./media/characters/zenimma/front.svg",
  46452. extra: 1346/1320,
  46453. bottom: 58/1404
  46454. }
  46455. },
  46456. back: {
  46457. height: math.unit(6, "feet"),
  46458. weight: math.unit(250, "lb"),
  46459. name: "Back",
  46460. image: {
  46461. source: "./media/characters/zenimma/back.svg",
  46462. extra: 1324/1308,
  46463. bottom: 44/1368
  46464. }
  46465. },
  46466. dick: {
  46467. height: math.unit(1.44, "feet"),
  46468. name: "Dick",
  46469. image: {
  46470. source: "./media/characters/zenimma/dick.svg"
  46471. }
  46472. },
  46473. },
  46474. [
  46475. {
  46476. name: "Canon Height",
  46477. height: math.unit(66, "miles"),
  46478. default: true
  46479. },
  46480. ]
  46481. ))
  46482. characterMakers.push(() => makeCharacter(
  46483. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46484. {
  46485. nude: {
  46486. height: math.unit(6, "feet"),
  46487. weight: math.unit(150, "lb"),
  46488. name: "Nude",
  46489. image: {
  46490. source: "./media/characters/shavon/nude.svg",
  46491. extra: 1242/1096,
  46492. bottom: 98/1340
  46493. }
  46494. },
  46495. dressed: {
  46496. height: math.unit(6, "feet"),
  46497. weight: math.unit(150, "lb"),
  46498. name: "Dressed",
  46499. image: {
  46500. source: "./media/characters/shavon/dressed.svg",
  46501. extra: 1242/1096,
  46502. bottom: 98/1340
  46503. }
  46504. },
  46505. },
  46506. [
  46507. {
  46508. name: "Macro",
  46509. height: math.unit(255, "feet"),
  46510. default: true
  46511. },
  46512. ]
  46513. ))
  46514. characterMakers.push(() => makeCharacter(
  46515. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46516. {
  46517. front: {
  46518. height: math.unit(6, "feet"),
  46519. name: "Front",
  46520. image: {
  46521. source: "./media/characters/steph/front.svg",
  46522. extra: 1430/1330,
  46523. bottom: 54/1484
  46524. }
  46525. },
  46526. },
  46527. [
  46528. {
  46529. name: "Normal",
  46530. height: math.unit(6, "feet"),
  46531. default: true
  46532. },
  46533. ]
  46534. ))
  46535. characterMakers.push(() => makeCharacter(
  46536. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46537. {
  46538. front: {
  46539. height: math.unit(9, "feet"),
  46540. weight: math.unit(400, "lb"),
  46541. name: "Front",
  46542. image: {
  46543. source: "./media/characters/kil'aman/front.svg",
  46544. extra: 1210/1159,
  46545. bottom: 109/1319
  46546. }
  46547. },
  46548. head: {
  46549. height: math.unit(2.14, "feet"),
  46550. name: "Head",
  46551. image: {
  46552. source: "./media/characters/kil'aman/head.svg"
  46553. }
  46554. },
  46555. maw: {
  46556. height: math.unit(1.21, "feet"),
  46557. name: "Maw",
  46558. image: {
  46559. source: "./media/characters/kil'aman/maw.svg"
  46560. }
  46561. },
  46562. foot: {
  46563. height: math.unit(1.7, "feet"),
  46564. name: "Foot",
  46565. image: {
  46566. source: "./media/characters/kil'aman/foot.svg"
  46567. }
  46568. },
  46569. dick: {
  46570. height: math.unit(2.1, "feet"),
  46571. name: "Dick",
  46572. image: {
  46573. source: "./media/characters/kil'aman/dick.svg"
  46574. }
  46575. },
  46576. },
  46577. [
  46578. {
  46579. name: "Normal",
  46580. height: math.unit(9, "feet")
  46581. },
  46582. {
  46583. name: "Canon Height",
  46584. height: math.unit(10, "miles"),
  46585. default: true
  46586. },
  46587. {
  46588. name: "Maximum",
  46589. height: math.unit(6e9, "miles")
  46590. },
  46591. ]
  46592. ))
  46593. characterMakers.push(() => makeCharacter(
  46594. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46595. {
  46596. front: {
  46597. height: math.unit(90, "feet"),
  46598. weight: math.unit(675000, "lb"),
  46599. name: "Front",
  46600. image: {
  46601. source: "./media/characters/qadan/front.svg",
  46602. extra: 1012/1004,
  46603. bottom: 78/1090
  46604. }
  46605. },
  46606. back: {
  46607. height: math.unit(90, "feet"),
  46608. weight: math.unit(675000, "lb"),
  46609. name: "Back",
  46610. image: {
  46611. source: "./media/characters/qadan/back.svg",
  46612. extra: 1042/1031,
  46613. bottom: 55/1097
  46614. }
  46615. },
  46616. armored: {
  46617. height: math.unit(90, "feet"),
  46618. weight: math.unit(675000, "lb"),
  46619. name: "Armored",
  46620. image: {
  46621. source: "./media/characters/qadan/armored.svg",
  46622. extra: 1047/1037,
  46623. bottom: 48/1095
  46624. }
  46625. },
  46626. },
  46627. [
  46628. {
  46629. name: "Normal",
  46630. height: math.unit(90, "feet"),
  46631. default: true
  46632. },
  46633. ]
  46634. ))
  46635. characterMakers.push(() => makeCharacter(
  46636. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46637. {
  46638. front: {
  46639. height: math.unit(6, "feet"),
  46640. weight: math.unit(225, "lb"),
  46641. name: "Front",
  46642. image: {
  46643. source: "./media/characters/brooke/front.svg",
  46644. extra: 1050/1010,
  46645. bottom: 66/1116
  46646. }
  46647. },
  46648. back: {
  46649. height: math.unit(6, "feet"),
  46650. weight: math.unit(225, "lb"),
  46651. name: "Back",
  46652. image: {
  46653. source: "./media/characters/brooke/back.svg",
  46654. extra: 1053/1013,
  46655. bottom: 41/1094
  46656. }
  46657. },
  46658. dressed: {
  46659. height: math.unit(6, "feet"),
  46660. weight: math.unit(225, "lb"),
  46661. name: "Dressed",
  46662. image: {
  46663. source: "./media/characters/brooke/dressed.svg",
  46664. extra: 1050/1010,
  46665. bottom: 66/1116
  46666. }
  46667. },
  46668. },
  46669. [
  46670. {
  46671. name: "Canon Height",
  46672. height: math.unit(500, "miles"),
  46673. default: true
  46674. },
  46675. ]
  46676. ))
  46677. characterMakers.push(() => makeCharacter(
  46678. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46679. {
  46680. front: {
  46681. height: math.unit(6 + 2/12, "feet"),
  46682. weight: math.unit(210, "lb"),
  46683. name: "Front",
  46684. image: {
  46685. source: "./media/characters/wubs/front.svg",
  46686. extra: 1345/1325,
  46687. bottom: 70/1415
  46688. }
  46689. },
  46690. back: {
  46691. height: math.unit(6 + 2/12, "feet"),
  46692. weight: math.unit(210, "lb"),
  46693. name: "Back",
  46694. image: {
  46695. source: "./media/characters/wubs/back.svg",
  46696. extra: 1296/1275,
  46697. bottom: 58/1354
  46698. }
  46699. },
  46700. },
  46701. [
  46702. {
  46703. name: "Normal",
  46704. height: math.unit(6 + 2/12, "feet"),
  46705. default: true
  46706. },
  46707. {
  46708. name: "Macro",
  46709. height: math.unit(1000, "feet")
  46710. },
  46711. {
  46712. name: "Megamacro",
  46713. height: math.unit(1, "mile")
  46714. },
  46715. ]
  46716. ))
  46717. characterMakers.push(() => makeCharacter(
  46718. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46719. {
  46720. front: {
  46721. height: math.unit(4, "feet"),
  46722. weight: math.unit(120, "lb"),
  46723. name: "Front",
  46724. image: {
  46725. source: "./media/characters/blue/front.svg",
  46726. extra: 1636/1525,
  46727. bottom: 43/1679
  46728. }
  46729. },
  46730. back: {
  46731. height: math.unit(4, "feet"),
  46732. weight: math.unit(120, "lb"),
  46733. name: "Back",
  46734. image: {
  46735. source: "./media/characters/blue/back.svg",
  46736. extra: 1660/1560,
  46737. bottom: 57/1717
  46738. }
  46739. },
  46740. paws: {
  46741. height: math.unit(0.826, "feet"),
  46742. name: "Paws",
  46743. image: {
  46744. source: "./media/characters/blue/paws.svg"
  46745. }
  46746. },
  46747. },
  46748. [
  46749. {
  46750. name: "Micro",
  46751. height: math.unit(3, "inches")
  46752. },
  46753. {
  46754. name: "Normal",
  46755. height: math.unit(4, "feet"),
  46756. default: true
  46757. },
  46758. {
  46759. name: "Femenine Form",
  46760. height: math.unit(14, "feet")
  46761. },
  46762. {
  46763. name: "Werebat Form",
  46764. height: math.unit(18, "feet")
  46765. },
  46766. ]
  46767. ))
  46768. characterMakers.push(() => makeCharacter(
  46769. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46770. {
  46771. female: {
  46772. height: math.unit(7 + 4/12, "feet"),
  46773. weight: math.unit(243, "lb"),
  46774. name: "Female",
  46775. image: {
  46776. source: "./media/characters/kaya/female.svg",
  46777. extra: 975/898,
  46778. bottom: 34/1009
  46779. }
  46780. },
  46781. herm: {
  46782. height: math.unit(7 + 4/12, "feet"),
  46783. weight: math.unit(243, "lb"),
  46784. name: "Herm",
  46785. image: {
  46786. source: "./media/characters/kaya/herm.svg",
  46787. extra: 975/898,
  46788. bottom: 34/1009
  46789. }
  46790. },
  46791. },
  46792. [
  46793. {
  46794. name: "Normal",
  46795. height: math.unit(7 + 4/12, "feet"),
  46796. default: true
  46797. },
  46798. ]
  46799. ))
  46800. characterMakers.push(() => makeCharacter(
  46801. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46802. {
  46803. female: {
  46804. height: math.unit(9 + 4/12, "feet"),
  46805. weight: math.unit(398, "lb"),
  46806. name: "Female",
  46807. image: {
  46808. source: "./media/characters/kassandra/female.svg",
  46809. extra: 908/839,
  46810. bottom: 61/969
  46811. }
  46812. },
  46813. intersex: {
  46814. height: math.unit(9 + 4/12, "feet"),
  46815. weight: math.unit(398, "lb"),
  46816. name: "Intersex",
  46817. image: {
  46818. source: "./media/characters/kassandra/intersex.svg",
  46819. extra: 908/839,
  46820. bottom: 61/969
  46821. }
  46822. },
  46823. },
  46824. [
  46825. {
  46826. name: "Normal",
  46827. height: math.unit(9 + 4/12, "feet"),
  46828. default: true
  46829. },
  46830. ]
  46831. ))
  46832. characterMakers.push(() => makeCharacter(
  46833. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46834. {
  46835. front: {
  46836. height: math.unit(3, "meters"),
  46837. name: "Front",
  46838. image: {
  46839. source: "./media/characters/amy/front.svg",
  46840. extra: 1380/1343,
  46841. bottom: 70/1450
  46842. }
  46843. },
  46844. back: {
  46845. height: math.unit(3, "meters"),
  46846. name: "Back",
  46847. image: {
  46848. source: "./media/characters/amy/back.svg",
  46849. extra: 1380/1347,
  46850. bottom: 66/1446
  46851. }
  46852. },
  46853. },
  46854. [
  46855. {
  46856. name: "Normal",
  46857. height: math.unit(3, "meters"),
  46858. default: true
  46859. },
  46860. ]
  46861. ))
  46862. characterMakers.push(() => makeCharacter(
  46863. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46864. {
  46865. side: {
  46866. height: math.unit(47, "cm"),
  46867. weight: math.unit(10.8, "kg"),
  46868. name: "Side",
  46869. image: {
  46870. source: "./media/characters/alphaschakal/side.svg",
  46871. extra: 1058/568,
  46872. bottom: 62/1120
  46873. }
  46874. },
  46875. back: {
  46876. height: math.unit(78, "cm"),
  46877. weight: math.unit(10.8, "kg"),
  46878. name: "Back",
  46879. image: {
  46880. source: "./media/characters/alphaschakal/back.svg",
  46881. extra: 1102/942,
  46882. bottom: 185/1287
  46883. }
  46884. },
  46885. head: {
  46886. height: math.unit(28, "cm"),
  46887. name: "Head",
  46888. image: {
  46889. source: "./media/characters/alphaschakal/head.svg",
  46890. extra: 696/508,
  46891. bottom: 0/696
  46892. }
  46893. },
  46894. paw: {
  46895. height: math.unit(16, "cm"),
  46896. name: "Paw",
  46897. image: {
  46898. source: "./media/characters/alphaschakal/paw.svg"
  46899. }
  46900. },
  46901. },
  46902. [
  46903. {
  46904. name: "Normal",
  46905. height: math.unit(47, "cm"),
  46906. default: true
  46907. },
  46908. {
  46909. name: "Macro",
  46910. height: math.unit(340, "cm")
  46911. },
  46912. ]
  46913. ))
  46914. characterMakers.push(() => makeCharacter(
  46915. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46916. {
  46917. front: {
  46918. height: math.unit(36, "earths"),
  46919. name: "Front",
  46920. image: {
  46921. source: "./media/characters/ecobyss/front.svg",
  46922. extra: 1282/1215,
  46923. bottom: 11/1293
  46924. }
  46925. },
  46926. back: {
  46927. height: math.unit(36, "earths"),
  46928. name: "Back",
  46929. image: {
  46930. source: "./media/characters/ecobyss/back.svg",
  46931. extra: 1291/1222,
  46932. bottom: 8/1299
  46933. }
  46934. },
  46935. },
  46936. [
  46937. {
  46938. name: "Normal",
  46939. height: math.unit(36, "earths"),
  46940. default: true
  46941. },
  46942. ]
  46943. ))
  46944. characterMakers.push(() => makeCharacter(
  46945. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46946. {
  46947. front: {
  46948. height: math.unit(12, "feet"),
  46949. name: "Front",
  46950. image: {
  46951. source: "./media/characters/vasuk/front.svg",
  46952. extra: 1326/1207,
  46953. bottom: 64/1390
  46954. }
  46955. },
  46956. },
  46957. [
  46958. {
  46959. name: "Normal",
  46960. height: math.unit(12, "feet"),
  46961. default: true
  46962. },
  46963. ]
  46964. ))
  46965. characterMakers.push(() => makeCharacter(
  46966. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46967. {
  46968. side: {
  46969. height: math.unit(100, "feet"),
  46970. name: "Side",
  46971. image: {
  46972. source: "./media/characters/linneaus/side.svg",
  46973. extra: 987/807,
  46974. bottom: 47/1034
  46975. }
  46976. },
  46977. },
  46978. [
  46979. {
  46980. name: "Macro",
  46981. height: math.unit(100, "feet"),
  46982. default: true
  46983. },
  46984. ]
  46985. ))
  46986. characterMakers.push(() => makeCharacter(
  46987. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46988. {
  46989. front: {
  46990. height: math.unit(8, "feet"),
  46991. weight: math.unit(1200, "lb"),
  46992. name: "Front",
  46993. image: {
  46994. source: "./media/characters/nyterious-daligdig/front.svg",
  46995. extra: 1284/1094,
  46996. bottom: 84/1368
  46997. }
  46998. },
  46999. back: {
  47000. height: math.unit(8, "feet"),
  47001. weight: math.unit(1200, "lb"),
  47002. name: "Back",
  47003. image: {
  47004. source: "./media/characters/nyterious-daligdig/back.svg",
  47005. extra: 1301/1121,
  47006. bottom: 129/1430
  47007. }
  47008. },
  47009. mouth: {
  47010. height: math.unit(1.464, "feet"),
  47011. name: "Mouth",
  47012. image: {
  47013. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47014. }
  47015. },
  47016. },
  47017. [
  47018. {
  47019. name: "Small",
  47020. height: math.unit(8, "feet"),
  47021. default: true
  47022. },
  47023. {
  47024. name: "Normal",
  47025. height: math.unit(15, "feet")
  47026. },
  47027. {
  47028. name: "Macro",
  47029. height: math.unit(90, "feet")
  47030. },
  47031. ]
  47032. ))
  47033. characterMakers.push(() => makeCharacter(
  47034. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47035. {
  47036. front: {
  47037. height: math.unit(7 + 4/12, "feet"),
  47038. weight: math.unit(252, "lb"),
  47039. name: "Front",
  47040. image: {
  47041. source: "./media/characters/bandel/front.svg",
  47042. extra: 1946/1775,
  47043. bottom: 26/1972
  47044. }
  47045. },
  47046. back: {
  47047. height: math.unit(7 + 4/12, "feet"),
  47048. weight: math.unit(252, "lb"),
  47049. name: "Back",
  47050. image: {
  47051. source: "./media/characters/bandel/back.svg",
  47052. extra: 1940/1770,
  47053. bottom: 25/1965
  47054. }
  47055. },
  47056. maw: {
  47057. height: math.unit(2.15, "feet"),
  47058. name: "Maw",
  47059. image: {
  47060. source: "./media/characters/bandel/maw.svg"
  47061. }
  47062. },
  47063. stomach: {
  47064. height: math.unit(1.95, "feet"),
  47065. name: "Stomach",
  47066. image: {
  47067. source: "./media/characters/bandel/stomach.svg"
  47068. }
  47069. },
  47070. },
  47071. [
  47072. {
  47073. name: "Normal",
  47074. height: math.unit(7 + 4/12, "feet"),
  47075. default: true
  47076. },
  47077. ]
  47078. ))
  47079. characterMakers.push(() => makeCharacter(
  47080. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47081. {
  47082. front: {
  47083. height: math.unit(10 + 5/12, "feet"),
  47084. weight: math.unit(773.5, "kg"),
  47085. name: "Front",
  47086. image: {
  47087. source: "./media/characters/zed/front.svg",
  47088. extra: 987/941,
  47089. bottom: 52/1039
  47090. }
  47091. },
  47092. },
  47093. [
  47094. {
  47095. name: "Short",
  47096. height: math.unit(5 + 4/12, "feet")
  47097. },
  47098. {
  47099. name: "Average",
  47100. height: math.unit(10 + 5/12, "feet"),
  47101. default: true
  47102. },
  47103. {
  47104. name: "Mini-Macro",
  47105. height: math.unit(24 + 9/12, "feet")
  47106. },
  47107. {
  47108. name: "Macro",
  47109. height: math.unit(249, "feet")
  47110. },
  47111. {
  47112. name: "Mega-Macro",
  47113. height: math.unit(12490, "feet")
  47114. },
  47115. {
  47116. name: "Giga-Macro",
  47117. height: math.unit(24.9, "miles")
  47118. },
  47119. {
  47120. name: "Tera-Macro",
  47121. height: math.unit(24900, "miles")
  47122. },
  47123. {
  47124. name: "Cosmic Scale",
  47125. height: math.unit(38.9, "lightyears")
  47126. },
  47127. {
  47128. name: "Universal Scale",
  47129. height: math.unit(138e12, "lightyears")
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47135. {
  47136. front: {
  47137. height: math.unit(1561, "inches"),
  47138. name: "Front",
  47139. image: {
  47140. source: "./media/characters/ivan/front.svg",
  47141. extra: 1126/1071,
  47142. bottom: 26/1152
  47143. }
  47144. },
  47145. back: {
  47146. height: math.unit(1561, "inches"),
  47147. name: "Back",
  47148. image: {
  47149. source: "./media/characters/ivan/back.svg",
  47150. extra: 1134/1079,
  47151. bottom: 30/1164
  47152. }
  47153. },
  47154. },
  47155. [
  47156. {
  47157. name: "Normal",
  47158. height: math.unit(1561, "inches"),
  47159. default: true
  47160. },
  47161. ]
  47162. ))
  47163. characterMakers.push(() => makeCharacter(
  47164. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47165. {
  47166. front: {
  47167. height: math.unit(5 + 7/12, "feet"),
  47168. weight: math.unit(150, "lb"),
  47169. name: "Front",
  47170. image: {
  47171. source: "./media/characters/robin-arctic-hare/front.svg",
  47172. extra: 1148/974,
  47173. bottom: 20/1168
  47174. }
  47175. },
  47176. },
  47177. [
  47178. {
  47179. name: "Normal",
  47180. height: math.unit(5 + 7/12, "feet"),
  47181. default: true
  47182. },
  47183. ]
  47184. ))
  47185. characterMakers.push(() => makeCharacter(
  47186. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47187. {
  47188. side: {
  47189. height: math.unit(5, "feet"),
  47190. name: "Side",
  47191. image: {
  47192. source: "./media/characters/birch/side.svg",
  47193. extra: 985/796,
  47194. bottom: 111/1096
  47195. }
  47196. },
  47197. },
  47198. [
  47199. {
  47200. name: "Normal",
  47201. height: math.unit(5, "feet"),
  47202. default: true
  47203. },
  47204. ]
  47205. ))
  47206. characterMakers.push(() => makeCharacter(
  47207. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47208. {
  47209. front: {
  47210. height: math.unit(4, "feet"),
  47211. name: "Front",
  47212. image: {
  47213. source: "./media/characters/rasp/front.svg",
  47214. extra: 561/478,
  47215. bottom: 74/635
  47216. }
  47217. },
  47218. },
  47219. [
  47220. {
  47221. name: "Normal",
  47222. height: math.unit(4, "feet"),
  47223. default: true
  47224. },
  47225. ]
  47226. ))
  47227. characterMakers.push(() => makeCharacter(
  47228. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47229. {
  47230. front: {
  47231. height: math.unit(4 + 6/12, "feet"),
  47232. name: "Front",
  47233. image: {
  47234. source: "./media/characters/agatha/front.svg",
  47235. extra: 947/933,
  47236. bottom: 42/989
  47237. }
  47238. },
  47239. back: {
  47240. height: math.unit(4 + 6/12, "feet"),
  47241. name: "Back",
  47242. image: {
  47243. source: "./media/characters/agatha/back.svg",
  47244. extra: 935/922,
  47245. bottom: 48/983
  47246. }
  47247. },
  47248. },
  47249. [
  47250. {
  47251. name: "Normal",
  47252. height: math.unit(4 + 6 /12, "feet"),
  47253. default: true
  47254. },
  47255. {
  47256. name: "Max Size",
  47257. height: math.unit(500, "feet")
  47258. },
  47259. ]
  47260. ))
  47261. characterMakers.push(() => makeCharacter(
  47262. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47263. {
  47264. side: {
  47265. height: math.unit(30, "feet"),
  47266. name: "Side",
  47267. image: {
  47268. source: "./media/characters/roggy/side.svg",
  47269. extra: 909/643,
  47270. bottom: 63/972
  47271. }
  47272. },
  47273. lounging: {
  47274. height: math.unit(20, "feet"),
  47275. name: "Lounging",
  47276. image: {
  47277. source: "./media/characters/roggy/lounging.svg",
  47278. extra: 643/479,
  47279. bottom: 145/788
  47280. }
  47281. },
  47282. handpaw: {
  47283. height: math.unit(13.1, "feet"),
  47284. name: "Handpaw",
  47285. image: {
  47286. source: "./media/characters/roggy/handpaw.svg"
  47287. }
  47288. },
  47289. footpaw: {
  47290. height: math.unit(15.8, "feet"),
  47291. name: "Footpaw",
  47292. image: {
  47293. source: "./media/characters/roggy/footpaw.svg"
  47294. }
  47295. },
  47296. },
  47297. [
  47298. {
  47299. name: "Menacing",
  47300. height: math.unit(30, "feet"),
  47301. default: true
  47302. },
  47303. ]
  47304. ))
  47305. characterMakers.push(() => makeCharacter(
  47306. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47307. {
  47308. front: {
  47309. height: math.unit(5 + 7/12, "feet"),
  47310. weight: math.unit(135, "lb"),
  47311. name: "Front",
  47312. image: {
  47313. source: "./media/characters/naomi/front.svg",
  47314. extra: 1209/1154,
  47315. bottom: 129/1338
  47316. }
  47317. },
  47318. back: {
  47319. height: math.unit(5 + 7/12, "feet"),
  47320. weight: math.unit(135, "lb"),
  47321. name: "Back",
  47322. image: {
  47323. source: "./media/characters/naomi/back.svg",
  47324. extra: 1252/1190,
  47325. bottom: 23/1275
  47326. }
  47327. },
  47328. },
  47329. [
  47330. {
  47331. name: "Normal",
  47332. height: math.unit(5 + 7 /12, "feet"),
  47333. default: true
  47334. },
  47335. ]
  47336. ))
  47337. characterMakers.push(() => makeCharacter(
  47338. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47339. {
  47340. side: {
  47341. height: math.unit(35, "meters"),
  47342. name: "Side",
  47343. image: {
  47344. source: "./media/characters/kimpi/side.svg",
  47345. extra: 419/382,
  47346. bottom: 63/482
  47347. }
  47348. },
  47349. hand: {
  47350. height: math.unit(8.96, "meters"),
  47351. name: "Hand",
  47352. image: {
  47353. source: "./media/characters/kimpi/hand.svg"
  47354. }
  47355. },
  47356. },
  47357. [
  47358. {
  47359. name: "Normal",
  47360. height: math.unit(35, "meters"),
  47361. default: true
  47362. },
  47363. ]
  47364. ))
  47365. characterMakers.push(() => makeCharacter(
  47366. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47367. {
  47368. front: {
  47369. height: math.unit(4 + 4/12, "feet"),
  47370. name: "Front",
  47371. image: {
  47372. source: "./media/characters/pepper-purrloin/front.svg",
  47373. extra: 1141/1024,
  47374. bottom: 21/1162
  47375. }
  47376. },
  47377. },
  47378. [
  47379. {
  47380. name: "Normal",
  47381. height: math.unit(4 + 4/12, "feet"),
  47382. default: true
  47383. },
  47384. ]
  47385. ))
  47386. characterMakers.push(() => makeCharacter(
  47387. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47388. {
  47389. front: {
  47390. height: math.unit(6 + 2/12, "feet"),
  47391. name: "Front",
  47392. image: {
  47393. source: "./media/characters/raphael/front.svg",
  47394. extra: 1101/962,
  47395. bottom: 59/1160
  47396. }
  47397. },
  47398. },
  47399. [
  47400. {
  47401. name: "Normal",
  47402. height: math.unit(6 + 2/12, "feet"),
  47403. default: true
  47404. },
  47405. ]
  47406. ))
  47407. characterMakers.push(() => makeCharacter(
  47408. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47409. {
  47410. front: {
  47411. height: math.unit(6, "feet"),
  47412. weight: math.unit(150, "lb"),
  47413. name: "Front",
  47414. image: {
  47415. source: "./media/characters/victor-williams/front.svg",
  47416. extra: 1894/1825,
  47417. bottom: 67/1961
  47418. }
  47419. },
  47420. },
  47421. [
  47422. {
  47423. name: "Normal",
  47424. height: math.unit(6, "feet"),
  47425. default: true
  47426. },
  47427. ]
  47428. ))
  47429. characterMakers.push(() => makeCharacter(
  47430. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47431. {
  47432. front: {
  47433. height: math.unit(5 + 8/12, "feet"),
  47434. weight: math.unit(150, "lb"),
  47435. name: "Front",
  47436. image: {
  47437. source: "./media/characters/rachel/front.svg",
  47438. extra: 1902/1787,
  47439. bottom: 46/1948
  47440. }
  47441. },
  47442. },
  47443. [
  47444. {
  47445. name: "Base Height",
  47446. height: math.unit(5 + 8/12, "feet"),
  47447. default: true
  47448. },
  47449. {
  47450. name: "Macro",
  47451. height: math.unit(200, "feet")
  47452. },
  47453. {
  47454. name: "Mega Macro",
  47455. height: math.unit(1, "mile")
  47456. },
  47457. {
  47458. name: "Giga Macro",
  47459. height: math.unit(1500, "miles")
  47460. },
  47461. {
  47462. name: "Tera Macro",
  47463. height: math.unit(8000, "miles")
  47464. },
  47465. {
  47466. name: "Tera Macro+",
  47467. height: math.unit(2e5, "miles")
  47468. },
  47469. ]
  47470. ))
  47471. characterMakers.push(() => makeCharacter(
  47472. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47473. {
  47474. front: {
  47475. height: math.unit(6.5, "feet"),
  47476. name: "Front",
  47477. image: {
  47478. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47479. extra: 860/819,
  47480. bottom: 307/1167
  47481. }
  47482. },
  47483. back: {
  47484. height: math.unit(6.5, "feet"),
  47485. name: "Back",
  47486. image: {
  47487. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47488. extra: 880/837,
  47489. bottom: 395/1275
  47490. }
  47491. },
  47492. sleeping: {
  47493. height: math.unit(2.79, "feet"),
  47494. name: "Sleeping",
  47495. image: {
  47496. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47497. extra: 465/383,
  47498. bottom: 263/728
  47499. }
  47500. },
  47501. maw: {
  47502. height: math.unit(2.52, "feet"),
  47503. name: "Maw",
  47504. image: {
  47505. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47506. }
  47507. },
  47508. },
  47509. [
  47510. {
  47511. name: "Normal",
  47512. height: math.unit(6.5, "feet"),
  47513. default: true
  47514. },
  47515. ]
  47516. ))
  47517. characterMakers.push(() => makeCharacter(
  47518. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47519. {
  47520. front: {
  47521. height: math.unit(5, "feet"),
  47522. name: "Front",
  47523. image: {
  47524. source: "./media/characters/nova-nerium/front.svg",
  47525. extra: 1548/1392,
  47526. bottom: 374/1922
  47527. }
  47528. },
  47529. back: {
  47530. height: math.unit(5, "feet"),
  47531. name: "Back",
  47532. image: {
  47533. source: "./media/characters/nova-nerium/back.svg",
  47534. extra: 1658/1468,
  47535. bottom: 257/1915
  47536. }
  47537. },
  47538. },
  47539. [
  47540. {
  47541. name: "Normal",
  47542. height: math.unit(5, "feet"),
  47543. default: true
  47544. },
  47545. ]
  47546. ))
  47547. characterMakers.push(() => makeCharacter(
  47548. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47549. {
  47550. front: {
  47551. height: math.unit(5 + 4/12, "feet"),
  47552. name: "Front",
  47553. image: {
  47554. source: "./media/characters/ashe-pyriph/front.svg",
  47555. extra: 1935/1747,
  47556. bottom: 60/1995
  47557. }
  47558. },
  47559. },
  47560. [
  47561. {
  47562. name: "Normal",
  47563. height: math.unit(5 + 4/12, "feet"),
  47564. default: true
  47565. },
  47566. ]
  47567. ))
  47568. characterMakers.push(() => makeCharacter(
  47569. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47570. {
  47571. front: {
  47572. height: math.unit(8.7, "feet"),
  47573. name: "Front",
  47574. image: {
  47575. source: "./media/characters/flicker-wisp/front.svg",
  47576. extra: 1835/1613,
  47577. bottom: 449/2284
  47578. }
  47579. },
  47580. side: {
  47581. height: math.unit(8.7, "feet"),
  47582. name: "Side",
  47583. image: {
  47584. source: "./media/characters/flicker-wisp/side.svg",
  47585. extra: 1841/1642,
  47586. bottom: 336/2177
  47587. },
  47588. default: true
  47589. },
  47590. maw: {
  47591. height: math.unit(3.35, "feet"),
  47592. name: "Maw",
  47593. image: {
  47594. source: "./media/characters/flicker-wisp/maw.svg",
  47595. extra: 2338/1506,
  47596. bottom: 0/2338
  47597. }
  47598. },
  47599. ovipositor: {
  47600. height: math.unit(4.95, "feet"),
  47601. name: "Ovipositor",
  47602. image: {
  47603. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47604. }
  47605. },
  47606. egg: {
  47607. height: math.unit(0.385, "feet"),
  47608. weight: math.unit(2, "lb"),
  47609. name: "Egg",
  47610. image: {
  47611. source: "./media/characters/flicker-wisp/egg.svg"
  47612. }
  47613. },
  47614. },
  47615. [
  47616. {
  47617. name: "Normal",
  47618. height: math.unit(8.7, "feet"),
  47619. default: true
  47620. },
  47621. ]
  47622. ))
  47623. characterMakers.push(() => makeCharacter(
  47624. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47625. {
  47626. side: {
  47627. height: math.unit(11, "feet"),
  47628. name: "Side",
  47629. image: {
  47630. source: "./media/characters/faefnul/side.svg",
  47631. extra: 1100/1007,
  47632. bottom: 0/1100
  47633. }
  47634. },
  47635. },
  47636. [
  47637. {
  47638. name: "Normal",
  47639. height: math.unit(11, "feet"),
  47640. default: true
  47641. },
  47642. ]
  47643. ))
  47644. characterMakers.push(() => makeCharacter(
  47645. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47646. {
  47647. front: {
  47648. height: math.unit(6 + 2/12, "feet"),
  47649. name: "Front",
  47650. image: {
  47651. source: "./media/characters/shady/front.svg",
  47652. extra: 502/461,
  47653. bottom: 9/511
  47654. }
  47655. },
  47656. kneeling: {
  47657. height: math.unit(4.6, "feet"),
  47658. name: "Kneeling",
  47659. image: {
  47660. source: "./media/characters/shady/kneeling.svg",
  47661. extra: 1328/1219,
  47662. bottom: 117/1445
  47663. }
  47664. },
  47665. maw: {
  47666. height: math.unit(2, "feet"),
  47667. name: "Maw",
  47668. image: {
  47669. source: "./media/characters/shady/maw.svg"
  47670. }
  47671. },
  47672. },
  47673. [
  47674. {
  47675. name: "Nano",
  47676. height: math.unit(1, "mm")
  47677. },
  47678. {
  47679. name: "Micro",
  47680. height: math.unit(12, "mm")
  47681. },
  47682. {
  47683. name: "Tiny",
  47684. height: math.unit(3, "inches")
  47685. },
  47686. {
  47687. name: "Normal",
  47688. height: math.unit(6 + 2/12, "feet"),
  47689. default: true
  47690. },
  47691. {
  47692. name: "Big",
  47693. height: math.unit(15, "feet")
  47694. },
  47695. {
  47696. name: "Macro",
  47697. height: math.unit(150, "feet")
  47698. },
  47699. {
  47700. name: "Titanic",
  47701. height: math.unit(500, "feet")
  47702. },
  47703. ]
  47704. ))
  47705. characterMakers.push(() => makeCharacter(
  47706. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47707. {
  47708. front: {
  47709. height: math.unit(12, "feet"),
  47710. name: "Front",
  47711. image: {
  47712. source: "./media/characters/fenrir/front.svg",
  47713. extra: 968/875,
  47714. bottom: 22/990
  47715. }
  47716. },
  47717. },
  47718. [
  47719. {
  47720. name: "Big",
  47721. height: math.unit(12, "feet"),
  47722. default: true
  47723. },
  47724. ]
  47725. ))
  47726. characterMakers.push(() => makeCharacter(
  47727. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47728. {
  47729. front: {
  47730. height: math.unit(5 + 4/12, "feet"),
  47731. name: "Front",
  47732. image: {
  47733. source: "./media/characters/makar/front.svg",
  47734. extra: 1181/1112,
  47735. bottom: 78/1259
  47736. }
  47737. },
  47738. },
  47739. [
  47740. {
  47741. name: "Normal",
  47742. height: math.unit(5 + 4/12, "feet"),
  47743. default: true
  47744. },
  47745. ]
  47746. ))
  47747. characterMakers.push(() => makeCharacter(
  47748. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47749. {
  47750. front: {
  47751. height: math.unit(5 + 7/12, "feet"),
  47752. name: "Front",
  47753. image: {
  47754. source: "./media/characters/callow/front.svg",
  47755. extra: 1482/1304,
  47756. bottom: 23/1505
  47757. }
  47758. },
  47759. back: {
  47760. height: math.unit(5 + 7/12, "feet"),
  47761. name: "Back",
  47762. image: {
  47763. source: "./media/characters/callow/back.svg",
  47764. extra: 1484/1296,
  47765. bottom: 25/1509
  47766. }
  47767. },
  47768. },
  47769. [
  47770. {
  47771. name: "Micro",
  47772. height: math.unit(3, "inches"),
  47773. default: true
  47774. },
  47775. {
  47776. name: "Normal",
  47777. height: math.unit(5 + 7/12, "feet")
  47778. },
  47779. ]
  47780. ))
  47781. characterMakers.push(() => makeCharacter(
  47782. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47783. {
  47784. front: {
  47785. height: math.unit(6 + 2/12, "feet"),
  47786. name: "Front",
  47787. image: {
  47788. source: "./media/characters/natel/front.svg",
  47789. extra: 1833/1692,
  47790. bottom: 166/1999
  47791. }
  47792. },
  47793. },
  47794. [
  47795. {
  47796. name: "Normal",
  47797. height: math.unit(6 + 2/12, "feet"),
  47798. default: true
  47799. },
  47800. ]
  47801. ))
  47802. characterMakers.push(() => makeCharacter(
  47803. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47804. {
  47805. front: {
  47806. height: math.unit(1.75, "meters"),
  47807. name: "Front",
  47808. image: {
  47809. source: "./media/characters/misu/front.svg",
  47810. extra: 1690/1558,
  47811. bottom: 234/1924
  47812. }
  47813. },
  47814. back: {
  47815. height: math.unit(1.75, "meters"),
  47816. name: "Back",
  47817. image: {
  47818. source: "./media/characters/misu/back.svg",
  47819. extra: 1762/1618,
  47820. bottom: 146/1908
  47821. }
  47822. },
  47823. frontNude: {
  47824. height: math.unit(1.75, "meters"),
  47825. name: "Front (Nude)",
  47826. image: {
  47827. source: "./media/characters/misu/front-nude.svg",
  47828. extra: 1690/1558,
  47829. bottom: 234/1924
  47830. }
  47831. },
  47832. backNude: {
  47833. height: math.unit(1.75, "meters"),
  47834. name: "Back (Nude)",
  47835. image: {
  47836. source: "./media/characters/misu/back-nude.svg",
  47837. extra: 1762/1618,
  47838. bottom: 146/1908
  47839. }
  47840. },
  47841. frontErect: {
  47842. height: math.unit(1.75, "meters"),
  47843. name: "Front (Erect)",
  47844. image: {
  47845. source: "./media/characters/misu/front-erect.svg",
  47846. extra: 1690/1558,
  47847. bottom: 234/1924
  47848. }
  47849. },
  47850. maw: {
  47851. height: math.unit(0.47, "meters"),
  47852. name: "Maw",
  47853. image: {
  47854. source: "./media/characters/misu/maw.svg"
  47855. }
  47856. },
  47857. head: {
  47858. height: math.unit(0.35, "meters"),
  47859. name: "Head",
  47860. image: {
  47861. source: "./media/characters/misu/head.svg"
  47862. }
  47863. },
  47864. rear: {
  47865. height: math.unit(0.47, "meters"),
  47866. name: "Rear",
  47867. image: {
  47868. source: "./media/characters/misu/rear.svg"
  47869. }
  47870. },
  47871. },
  47872. [
  47873. {
  47874. name: "Normal",
  47875. height: math.unit(1.75, "meters")
  47876. },
  47877. {
  47878. name: "Not good for the people",
  47879. height: math.unit(42, "meters")
  47880. },
  47881. {
  47882. name: "Not good for the neighborhood",
  47883. height: math.unit(135, "meters")
  47884. },
  47885. {
  47886. name: "Bit bigger problem",
  47887. height: math.unit(380, "meters"),
  47888. default: true
  47889. },
  47890. {
  47891. name: "Not good for the city",
  47892. height: math.unit(1.5, "km")
  47893. },
  47894. {
  47895. name: "Not good for the county",
  47896. height: math.unit(5.5, "km")
  47897. },
  47898. {
  47899. name: "Not good for the state",
  47900. height: math.unit(25, "km")
  47901. },
  47902. {
  47903. name: "Not good for the country",
  47904. height: math.unit(125, "km")
  47905. },
  47906. {
  47907. name: "Not good for the continent",
  47908. height: math.unit(2100, "km")
  47909. },
  47910. {
  47911. name: "Not good for the planet",
  47912. height: math.unit(35000, "km")
  47913. },
  47914. {
  47915. name: "Just no",
  47916. height: math.unit(8.5e18, "km")
  47917. },
  47918. ]
  47919. ))
  47920. characterMakers.push(() => makeCharacter(
  47921. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47922. {
  47923. front: {
  47924. height: math.unit(6.5, "feet"),
  47925. name: "Front",
  47926. image: {
  47927. source: "./media/characters/poppy/front.svg",
  47928. extra: 1878/1812,
  47929. bottom: 43/1921
  47930. }
  47931. },
  47932. feet: {
  47933. height: math.unit(1.06, "feet"),
  47934. name: "Feet",
  47935. image: {
  47936. source: "./media/characters/poppy/feet.svg",
  47937. extra: 1083/1083,
  47938. bottom: 87/1170
  47939. }
  47940. },
  47941. },
  47942. [
  47943. {
  47944. name: "Human",
  47945. height: math.unit(6.5, "feet")
  47946. },
  47947. {
  47948. name: "Default",
  47949. height: math.unit(300, "feet"),
  47950. default: true
  47951. },
  47952. {
  47953. name: "Huge",
  47954. height: math.unit(850, "feet")
  47955. },
  47956. {
  47957. name: "Mega",
  47958. height: math.unit(8000, "feet")
  47959. },
  47960. {
  47961. name: "Giga",
  47962. height: math.unit(300, "miles")
  47963. },
  47964. ]
  47965. ))
  47966. characterMakers.push(() => makeCharacter(
  47967. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47968. {
  47969. bipedal: {
  47970. height: math.unit(7, "feet"),
  47971. name: "Bipedal",
  47972. image: {
  47973. source: "./media/characters/zener/bipedal.svg",
  47974. extra: 874/805,
  47975. bottom: 109/983
  47976. }
  47977. },
  47978. quadrupedal: {
  47979. height: math.unit(4.64, "feet"),
  47980. name: "Quadrupedal",
  47981. image: {
  47982. source: "./media/characters/zener/quadrupedal.svg",
  47983. extra: 638/507,
  47984. bottom: 190/828
  47985. }
  47986. },
  47987. cock: {
  47988. height: math.unit(18, "inches"),
  47989. name: "Cock",
  47990. image: {
  47991. source: "./media/characters/zener/cock.svg"
  47992. }
  47993. },
  47994. },
  47995. [
  47996. {
  47997. name: "Normal",
  47998. height: math.unit(7, "feet"),
  47999. default: true
  48000. },
  48001. ]
  48002. ))
  48003. characterMakers.push(() => makeCharacter(
  48004. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48005. {
  48006. nude: {
  48007. height: math.unit(5 + 6/12, "feet"),
  48008. name: "Nude",
  48009. image: {
  48010. source: "./media/characters/charlie-dog/nude.svg",
  48011. extra: 768/734,
  48012. bottom: 26/794
  48013. }
  48014. },
  48015. dressed: {
  48016. height: math.unit(5 + 6/12, "feet"),
  48017. name: "Dressed",
  48018. image: {
  48019. source: "./media/characters/charlie-dog/dressed.svg",
  48020. extra: 768/734,
  48021. bottom: 26/794
  48022. }
  48023. },
  48024. },
  48025. [
  48026. {
  48027. name: "Normal",
  48028. height: math.unit(5 + 6/12, "feet"),
  48029. default: true
  48030. },
  48031. ]
  48032. ))
  48033. characterMakers.push(() => makeCharacter(
  48034. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48035. {
  48036. front: {
  48037. height: math.unit(6 + 4/12, "feet"),
  48038. name: "Front",
  48039. image: {
  48040. source: "./media/characters/ir'istrasz/front.svg",
  48041. extra: 1014/977,
  48042. bottom: 65/1079
  48043. }
  48044. },
  48045. back: {
  48046. height: math.unit(6 + 4/12, "feet"),
  48047. name: "Back",
  48048. image: {
  48049. source: "./media/characters/ir'istrasz/back.svg",
  48050. extra: 1024/992,
  48051. bottom: 34/1058
  48052. }
  48053. },
  48054. },
  48055. [
  48056. {
  48057. name: "Normal",
  48058. height: math.unit(6 + 4/12, "feet"),
  48059. default: true
  48060. },
  48061. ]
  48062. ))
  48063. characterMakers.push(() => makeCharacter(
  48064. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48065. {
  48066. front: {
  48067. height: math.unit(5 + 8/12, "feet"),
  48068. name: "Front",
  48069. image: {
  48070. source: "./media/characters/dee-ditto/front.svg",
  48071. extra: 1874/1785,
  48072. bottom: 68/1942
  48073. }
  48074. },
  48075. back: {
  48076. height: math.unit(5 + 8/12, "feet"),
  48077. name: "Back",
  48078. image: {
  48079. source: "./media/characters/dee-ditto/back.svg",
  48080. extra: 1870/1783,
  48081. bottom: 77/1947
  48082. }
  48083. },
  48084. },
  48085. [
  48086. {
  48087. name: "Normal",
  48088. height: math.unit(5 + 8/12, "feet"),
  48089. default: true
  48090. },
  48091. ]
  48092. ))
  48093. characterMakers.push(() => makeCharacter(
  48094. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48095. {
  48096. front: {
  48097. height: math.unit(7 + 6/12, "feet"),
  48098. name: "Front",
  48099. image: {
  48100. source: "./media/characters/fey/front.svg",
  48101. extra: 995/979,
  48102. bottom: 30/1025
  48103. }
  48104. },
  48105. back: {
  48106. height: math.unit(7 + 6/12, "feet"),
  48107. name: "Back",
  48108. image: {
  48109. source: "./media/characters/fey/back.svg",
  48110. extra: 1079/1008,
  48111. bottom: 5/1084
  48112. }
  48113. },
  48114. dressed: {
  48115. height: math.unit(7 + 6/12, "feet"),
  48116. name: "Dressed",
  48117. image: {
  48118. source: "./media/characters/fey/dressed.svg",
  48119. extra: 995/979,
  48120. bottom: 30/1025
  48121. }
  48122. },
  48123. },
  48124. [
  48125. {
  48126. name: "Normal",
  48127. height: math.unit(7 + 6/12, "feet"),
  48128. default: true
  48129. },
  48130. ]
  48131. ))
  48132. characterMakers.push(() => makeCharacter(
  48133. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48134. {
  48135. standing: {
  48136. height: math.unit(17, "feet"),
  48137. name: "Standing",
  48138. image: {
  48139. source: "./media/characters/aster/standing.svg",
  48140. extra: 1798/1598,
  48141. bottom: 117/1915
  48142. }
  48143. },
  48144. },
  48145. [
  48146. {
  48147. name: "Normal",
  48148. height: math.unit(17, "feet"),
  48149. default: true
  48150. },
  48151. {
  48152. name: "Homewrecker",
  48153. height: math.unit(95, "feet")
  48154. },
  48155. {
  48156. name: "Planet Devourer",
  48157. height: math.unit(1008000, "miles")
  48158. },
  48159. ]
  48160. ))
  48161. characterMakers.push(() => makeCharacter(
  48162. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48163. {
  48164. front: {
  48165. height: math.unit(6 + 5/12, "feet"),
  48166. weight: math.unit(265, "lb"),
  48167. name: "Front",
  48168. image: {
  48169. source: "./media/characters/devon-childs/front.svg",
  48170. extra: 1795/1721,
  48171. bottom: 41/1836
  48172. }
  48173. },
  48174. side: {
  48175. height: math.unit(6 + 5/12, "feet"),
  48176. weight: math.unit(265, "lb"),
  48177. name: "Side",
  48178. image: {
  48179. source: "./media/characters/devon-childs/side.svg",
  48180. extra: 1812/1738,
  48181. bottom: 30/1842
  48182. }
  48183. },
  48184. back: {
  48185. height: math.unit(6 + 5/12, "feet"),
  48186. weight: math.unit(265, "lb"),
  48187. name: "Back",
  48188. image: {
  48189. source: "./media/characters/devon-childs/back.svg",
  48190. extra: 1808/1735,
  48191. bottom: 23/1831
  48192. }
  48193. },
  48194. hand: {
  48195. height: math.unit(1.464, "feet"),
  48196. name: "Hand",
  48197. image: {
  48198. source: "./media/characters/devon-childs/hand.svg"
  48199. }
  48200. },
  48201. foot: {
  48202. height: math.unit(1.6, "feet"),
  48203. name: "Foot",
  48204. image: {
  48205. source: "./media/characters/devon-childs/foot.svg"
  48206. }
  48207. },
  48208. },
  48209. [
  48210. {
  48211. name: "Micro",
  48212. height: math.unit(7, "cm")
  48213. },
  48214. {
  48215. name: "Normal",
  48216. height: math.unit(6 + 5/12, "feet"),
  48217. default: true
  48218. },
  48219. {
  48220. name: "Macro",
  48221. height: math.unit(154, "feet")
  48222. },
  48223. ]
  48224. ))
  48225. characterMakers.push(() => makeCharacter(
  48226. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48227. {
  48228. front: {
  48229. height: math.unit(6, "feet"),
  48230. weight: math.unit(180, "lb"),
  48231. name: "Front",
  48232. image: {
  48233. source: "./media/characters/lydemox-vir/front.svg",
  48234. extra: 1632/1435,
  48235. bottom: 58/1690
  48236. }
  48237. },
  48238. frontSFW: {
  48239. height: math.unit(6, "feet"),
  48240. weight: math.unit(180, "lb"),
  48241. name: "Front (SFW)",
  48242. image: {
  48243. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48244. extra: 1632/1435,
  48245. bottom: 58/1690
  48246. }
  48247. },
  48248. back: {
  48249. height: math.unit(6, "feet"),
  48250. weight: math.unit(180, "lb"),
  48251. name: "Back",
  48252. image: {
  48253. source: "./media/characters/lydemox-vir/back.svg",
  48254. extra: 1593/1408,
  48255. bottom: 31/1624
  48256. }
  48257. },
  48258. paw: {
  48259. height: math.unit(1.85, "feet"),
  48260. name: "Paw",
  48261. image: {
  48262. source: "./media/characters/lydemox-vir/paw.svg"
  48263. }
  48264. },
  48265. dick: {
  48266. height: math.unit(1.8, "feet"),
  48267. name: "Dick",
  48268. image: {
  48269. source: "./media/characters/lydemox-vir/dick.svg"
  48270. }
  48271. },
  48272. },
  48273. [
  48274. {
  48275. name: "Macro",
  48276. height: math.unit(100, "feet"),
  48277. default: true
  48278. },
  48279. {
  48280. name: "Teramacro",
  48281. height: math.unit(1, "earth")
  48282. },
  48283. {
  48284. name: "Planetary",
  48285. height: math.unit(20, "earths")
  48286. },
  48287. ]
  48288. ))
  48289. characterMakers.push(() => makeCharacter(
  48290. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48291. {
  48292. front: {
  48293. height: math.unit(15 + 8/12, "feet"),
  48294. weight: math.unit(1237, "kg"),
  48295. name: "Front",
  48296. image: {
  48297. source: "./media/characters/mia/front.svg",
  48298. extra: 1573/1446,
  48299. bottom: 58/1631
  48300. }
  48301. },
  48302. },
  48303. [
  48304. {
  48305. name: "Small",
  48306. height: math.unit(9 + 5/12, "feet")
  48307. },
  48308. {
  48309. name: "Normal",
  48310. height: math.unit(15 + 8/12, "feet"),
  48311. default: true
  48312. },
  48313. ]
  48314. ))
  48315. characterMakers.push(() => makeCharacter(
  48316. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48317. {
  48318. front: {
  48319. height: math.unit(10 + 6/12, "feet"),
  48320. weight: math.unit(1.3, "tons"),
  48321. name: "Front",
  48322. image: {
  48323. source: "./media/characters/mr-graves/front.svg",
  48324. extra: 1779/1695,
  48325. bottom: 198/1977
  48326. }
  48327. },
  48328. },
  48329. [
  48330. {
  48331. name: "Normal",
  48332. height: math.unit(10 + 6 /12, "feet"),
  48333. default: true
  48334. },
  48335. ]
  48336. ))
  48337. characterMakers.push(() => makeCharacter(
  48338. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48339. {
  48340. dressedFront: {
  48341. height: math.unit(5 + 8/12, "feet"),
  48342. weight: math.unit(125, "lb"),
  48343. name: "Dressed (Front)",
  48344. image: {
  48345. source: "./media/characters/jess/dressed-front.svg",
  48346. extra: 1176/1152,
  48347. bottom: 42/1218
  48348. }
  48349. },
  48350. dressedSide: {
  48351. height: math.unit(5 + 8/12, "feet"),
  48352. weight: math.unit(125, "lb"),
  48353. name: "Dressed (Side)",
  48354. image: {
  48355. source: "./media/characters/jess/dressed-side.svg",
  48356. extra: 1204/1190,
  48357. bottom: 6/1210
  48358. }
  48359. },
  48360. nudeFront: {
  48361. height: math.unit(5 + 8/12, "feet"),
  48362. weight: math.unit(125, "lb"),
  48363. name: "Nude (Front)",
  48364. image: {
  48365. source: "./media/characters/jess/nude-front.svg",
  48366. extra: 1176/1152,
  48367. bottom: 42/1218
  48368. }
  48369. },
  48370. nudeSide: {
  48371. height: math.unit(5 + 8/12, "feet"),
  48372. weight: math.unit(125, "lb"),
  48373. name: "Nude (Side)",
  48374. image: {
  48375. source: "./media/characters/jess/nude-side.svg",
  48376. extra: 1204/1190,
  48377. bottom: 6/1210
  48378. }
  48379. },
  48380. organsFront: {
  48381. height: math.unit(2.83799342105, "feet"),
  48382. name: "Organs (Front)",
  48383. image: {
  48384. source: "./media/characters/jess/organs-front.svg"
  48385. }
  48386. },
  48387. organsSide: {
  48388. height: math.unit(2.64225290474, "feet"),
  48389. name: "Organs (Side)",
  48390. image: {
  48391. source: "./media/characters/jess/organs-side.svg"
  48392. }
  48393. },
  48394. digestiveTractFront: {
  48395. height: math.unit(2.8106580871, "feet"),
  48396. name: "Digestive Tract (Front)",
  48397. image: {
  48398. source: "./media/characters/jess/digestive-tract-front.svg"
  48399. }
  48400. },
  48401. digestiveTractSide: {
  48402. height: math.unit(2.54365045014, "feet"),
  48403. name: "Digestive Tract (Side)",
  48404. image: {
  48405. source: "./media/characters/jess/digestive-tract-side.svg"
  48406. }
  48407. },
  48408. respiratorySystemFront: {
  48409. height: math.unit(1.11196233456, "feet"),
  48410. name: "Respiratory System (Front)",
  48411. image: {
  48412. source: "./media/characters/jess/respiratory-system-front.svg"
  48413. }
  48414. },
  48415. respiratorySystemSide: {
  48416. height: math.unit(0.89327966297, "feet"),
  48417. name: "Respiratory System (Side)",
  48418. image: {
  48419. source: "./media/characters/jess/respiratory-system-side.svg"
  48420. }
  48421. },
  48422. urinaryTractFront: {
  48423. height: math.unit(1.16126356186, "feet"),
  48424. name: "Urinary Tract (Front)",
  48425. image: {
  48426. source: "./media/characters/jess/urinary-tract-front.svg"
  48427. }
  48428. },
  48429. urinaryTractSide: {
  48430. height: math.unit(1.20910039627, "feet"),
  48431. name: "Urinary Tract (Side)",
  48432. image: {
  48433. source: "./media/characters/jess/urinary-tract-side.svg"
  48434. }
  48435. },
  48436. reproductiveOrgansFront: {
  48437. height: math.unit(0.48422591566, "feet"),
  48438. name: "Reproductive Organs (Front)",
  48439. image: {
  48440. source: "./media/characters/jess/reproductive-organs-front.svg"
  48441. }
  48442. },
  48443. reproductiveOrgansSide: {
  48444. height: math.unit(0.61553314481, "feet"),
  48445. name: "Reproductive Organs (Side)",
  48446. image: {
  48447. source: "./media/characters/jess/reproductive-organs-side.svg"
  48448. }
  48449. },
  48450. breastsFront: {
  48451. height: math.unit(0.47690395121, "feet"),
  48452. name: "Breasts (Front)",
  48453. image: {
  48454. source: "./media/characters/jess/breasts-front.svg"
  48455. }
  48456. },
  48457. breastsSide: {
  48458. height: math.unit(0.30556998307, "feet"),
  48459. name: "Breasts (Side)",
  48460. image: {
  48461. source: "./media/characters/jess/breasts-side.svg"
  48462. }
  48463. },
  48464. heartFront: {
  48465. height: math.unit(0.53011022622, "feet"),
  48466. name: "Heart (Front)",
  48467. image: {
  48468. source: "./media/characters/jess/heart-front.svg"
  48469. }
  48470. },
  48471. heartSide: {
  48472. height: math.unit(0.51790695213, "feet"),
  48473. name: "Heart (Side)",
  48474. image: {
  48475. source: "./media/characters/jess/heart-side.svg"
  48476. }
  48477. },
  48478. earsAndNoseFront: {
  48479. height: math.unit(0.29385483995, "feet"),
  48480. name: "Ears and Nose (Front)",
  48481. image: {
  48482. source: "./media/characters/jess/ears-and-nose-front.svg"
  48483. }
  48484. },
  48485. earsAndNoseSide: {
  48486. height: math.unit(0.18109658741, "feet"),
  48487. name: "Ears and Nose (Side)",
  48488. image: {
  48489. source: "./media/characters/jess/ears-and-nose-side.svg"
  48490. }
  48491. },
  48492. },
  48493. [
  48494. {
  48495. name: "Normal",
  48496. height: math.unit(5 + 8/12, "feet"),
  48497. default: true
  48498. },
  48499. ]
  48500. ))
  48501. characterMakers.push(() => makeCharacter(
  48502. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48503. {
  48504. front: {
  48505. height: math.unit(6, "feet"),
  48506. weight: math.unit(6.64467e-7, "grams"),
  48507. name: "Front",
  48508. image: {
  48509. source: "./media/characters/wimpering/front.svg",
  48510. extra: 597/587,
  48511. bottom: 34/631
  48512. }
  48513. },
  48514. },
  48515. [
  48516. {
  48517. name: "Micro",
  48518. height: math.unit(0.4, "mm"),
  48519. default: true
  48520. },
  48521. ]
  48522. ))
  48523. //characters
  48524. function makeCharacters() {
  48525. const results = [];
  48526. characterMakers.forEach(character => {
  48527. results.push(character());
  48528. });
  48529. return results;
  48530. }